-- MySQL dump 10.13 Distrib 8.0.31, for Linux (aarch64) -- -- Host: localhost Database: zabbix -- ------------------------------------------------------ -- Server version 8.0.31-0ubuntu0.22.04.1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `acknowledges` -- DROP TABLE IF EXISTS `acknowledges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `acknowledges` ( `acknowledgeid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `message` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `action` int NOT NULL DEFAULT '0', `old_severity` int NOT NULL DEFAULT '0', `new_severity` int NOT NULL DEFAULT '0', `suppress_until` int NOT NULL DEFAULT '0', `taskid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`acknowledgeid`), KEY `acknowledges_1` (`userid`), KEY `acknowledges_2` (`eventid`), KEY `acknowledges_3` (`clock`), CONSTRAINT `c_acknowledges_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_acknowledges_2` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `acknowledges` -- LOCK TABLES `acknowledges` WRITE; /*!40000 ALTER TABLE `acknowledges` DISABLE KEYS */; /*!40000 ALTER TABLE `acknowledges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `actions` -- DROP TABLE IF EXISTS `actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `actions` ( `actionid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `eventsource` int NOT NULL DEFAULT '0', `evaltype` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `esc_period` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1h', `formula` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `pause_suppressed` int NOT NULL DEFAULT '1', `notify_if_canceled` int NOT NULL DEFAULT '1', `pause_symptoms` int NOT NULL DEFAULT '1', PRIMARY KEY (`actionid`), UNIQUE KEY `actions_2` (`name`), KEY `actions_1` (`eventsource`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `actions` -- LOCK TABLES `actions` WRITE; /*!40000 ALTER TABLE `actions` DISABLE KEYS */; INSERT INTO `actions` VALUES (2,'Auto discovery. Linux servers.',1,0,1,'0','',1,1,1),(3,'Report problems to Zabbix administrators',0,0,1,'1h','',1,1,1),(4,'Report not supported items',3,0,1,'1h','',1,1,1),(5,'Report not supported low level discovery rules',3,0,1,'1h','',1,1,1),(6,'Report unknown triggers',3,0,1,'1h','',1,1,1); /*!40000 ALTER TABLE `actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alerts` -- DROP TABLE IF EXISTS `alerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `alerts` ( `alertid` bigint unsigned NOT NULL, `actionid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `userid` bigint unsigned DEFAULT NULL, `clock` int NOT NULL DEFAULT '0', `mediatypeid` bigint unsigned DEFAULT NULL, `sendto` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `status` int NOT NULL DEFAULT '0', `retries` int NOT NULL DEFAULT '0', `error` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `esc_step` int NOT NULL DEFAULT '0', `alerttype` int NOT NULL DEFAULT '0', `p_eventid` bigint unsigned DEFAULT NULL, `acknowledgeid` bigint unsigned DEFAULT NULL, `parameters` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`alertid`), KEY `alerts_1` (`actionid`), KEY `alerts_2` (`clock`), KEY `alerts_3` (`eventid`), KEY `alerts_4` (`status`), KEY `alerts_5` (`mediatypeid`), KEY `alerts_6` (`userid`), KEY `alerts_7` (`p_eventid`), KEY `alerts_8` (`acknowledgeid`), CONSTRAINT `c_alerts_1` FOREIGN KEY (`actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_2` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_3` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_4` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_5` FOREIGN KEY (`p_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_6` FOREIGN KEY (`acknowledgeid`) REFERENCES `acknowledges` (`acknowledgeid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alerts` -- LOCK TABLES `alerts` WRITE; /*!40000 ALTER TABLE `alerts` DISABLE KEYS */; /*!40000 ALTER TABLE `alerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `auditlog` -- DROP TABLE IF EXISTS `auditlog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `auditlog` ( `auditid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `userid` bigint unsigned DEFAULT NULL, `username` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `clock` int NOT NULL DEFAULT '0', `ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `action` int NOT NULL DEFAULT '0', `resourcetype` int NOT NULL DEFAULT '0', `resourceid` bigint unsigned DEFAULT NULL, `resource_cuid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `resourcename` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `recordsetid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`auditid`), KEY `auditlog_1` (`userid`,`clock`), KEY `auditlog_2` (`clock`), KEY `auditlog_3` (`resourcetype`,`resourceid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `auditlog` -- LOCK TABLES `auditlog` WRITE; /*!40000 ALTER TABLE `auditlog` DISABLE KEYS */; INSERT INTO `auditlog` VALUES ('clc93hwep00014ciyszbn58a7',2,'guest',1672318903,'192.168.64.1',9,0,2,NULL,'','clc93hwep00004ciy5wprwe34',''),('clc93iek800017kiy0vm2k0b2',2,'guest',1672318927,'192.168.64.1',9,0,2,NULL,'','clc93iek800007kiyi7sj340l',''),('clc93ifo600014xiyemdwakwr',2,'guest',1672318928,'192.168.64.1',9,0,2,NULL,'','clc93ifo600004xiymbmk1gzb',''),('clc93igmx00014ciyakw081at',2,'guest',1672318929,'192.168.64.1',9,0,2,NULL,'','clc93igmx00004ciyckaw58c5',''),('clc93igp900024ciyzl243hq3',1,'Admin',1672318929,'192.168.64.1',8,0,1,NULL,'','clc93igmx00004ciyckaw58c5',''),('clc93inj500014ciy3zrpcgng',1,'Admin',1672318938,'192.168.64.1',2,36,39812,NULL,'Cluster node [{#NODE.NAME}]: Address','clc93inj500004ciy9r276evm',''),('clc93inj500024ciykhixxu1j',1,'Admin',1672318938,'192.168.64.1',2,36,39813,NULL,'Cluster node [{#NODE.NAME}]: Last access age','clc93inj500004ciy9r276evm',''),('clc93inj500034ciyvqydgnzf',1,'Admin',1672318938,'192.168.64.1',2,36,39814,NULL,'Cluster node [{#NODE.NAME}]: Last access time','clc93inj500004ciy9r276evm',''),('clc93inj500044ciyb8dg4kdo',1,'Admin',1672318938,'192.168.64.1',2,36,39815,NULL,'Cluster node [{#NODE.NAME}]: Status','clc93inj500004ciy9r276evm',''),('clc93inj500054ciycaw7qnze',1,'Admin',1672318938,'192.168.64.1',2,36,42292,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93inj500004ciy9r276evm',''),('clc93inj500064ciykmecf1rx',1,'Admin',1672318938,'192.168.64.1',2,36,42293,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93inj500004ciy9r276evm',''),('clc93inj500074ciyw7d2bjfx',1,'Admin',1672318938,'192.168.64.1',2,36,42294,NULL,'Interface {#IFNAME}: Bits received','clc93inj500004ciy9r276evm',''),('clc93inj500084ciy77766s75',1,'Admin',1672318938,'192.168.64.1',2,36,42295,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93inj500004ciy9r276evm',''),('clc93inj500094ciyjglaf90h',1,'Admin',1672318938,'192.168.64.1',2,36,42296,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93inj500004ciy9r276evm',''),('clc93inj5000a4ciy6hkx9juu',1,'Admin',1672318938,'192.168.64.1',2,36,42297,NULL,'Interface {#IFNAME}: Bits sent','clc93inj500004ciy9r276evm',''),('clc93inj5000b4ciyn53ajv65',1,'Admin',1672318938,'192.168.64.1',2,36,42298,NULL,'Interface {#IFNAME}: Operational status','clc93inj500004ciy9r276evm',''),('clc93inj5000c4ciytzclajet',1,'Admin',1672318938,'192.168.64.1',2,36,42299,NULL,'Interface {#IFNAME}: Interface type','clc93inj500004ciy9r276evm',''),('clc93inj5000d4ciy0xxv1ven',1,'Admin',1672318938,'192.168.64.1',2,36,42681,NULL,'Interface {#IFNAME}: Speed','clc93inj500004ciy9r276evm',''),('clc93inj5000e4ciy59lwc52v',1,'Admin',1672318938,'192.168.64.1',2,36,42300,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93inj500004ciy9r276evm',''),('clc93inj5000f4ciyjdt7dcim',1,'Admin',1672318938,'192.168.64.1',2,36,42301,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93inj500004ciy9r276evm',''),('clc93inj5000g4ciy702e5oos',1,'Admin',1672318938,'192.168.64.1',2,36,42302,NULL,'{#DEVNAME}: Get stats','clc93inj500004ciy9r276evm',''),('clc93inj5000h4ciy5oygvgng',1,'Admin',1672318938,'192.168.64.1',2,36,42313,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93inj500004ciy9r276evm',''),('clc93inj5000i4ciy5raerhnm',1,'Admin',1672318938,'192.168.64.1',2,36,42314,NULL,'{#DEVNAME}: Disk read rate','clc93inj500004ciy9r276evm',''),('clc93inj5000j4ciyjjvuyjlf',1,'Admin',1672318938,'192.168.64.1',2,36,42315,NULL,'{#DEVNAME}: Disk read time (rate)','clc93inj500004ciy9r276evm',''),('clc93inj5000k4ciyzb5w3iv9',1,'Admin',1672318938,'192.168.64.1',2,36,42316,NULL,'{#DEVNAME}: Disk utilization','clc93inj500004ciy9r276evm',''),('clc93inj5000l4ciyylergdy7',1,'Admin',1672318938,'192.168.64.1',2,36,42317,NULL,'{#DEVNAME}: Disk write rate','clc93inj500004ciy9r276evm',''),('clc93inj5000m4ciyooo0b64f',1,'Admin',1672318938,'192.168.64.1',2,36,42318,NULL,'{#DEVNAME}: Disk write time (rate)','clc93inj500004ciy9r276evm',''),('clc93inj5000n4ciyyw21rye5',1,'Admin',1672318938,'192.168.64.1',2,36,42303,NULL,'{#FSNAME}: Free inodes in %','clc93inj500004ciy9r276evm',''),('clc93inj5000o4ciy1tjfjgkp',1,'Admin',1672318938,'192.168.64.1',2,36,42304,NULL,'{#FSNAME}: Space utilization','clc93inj500004ciy9r276evm',''),('clc93inj5000p4ciyzkkkr07n',1,'Admin',1672318938,'192.168.64.1',2,36,42305,NULL,'{#FSNAME}: Total space','clc93inj500004ciy9r276evm',''),('clc93inj5000q4ciy533bbsj2',1,'Admin',1672318938,'192.168.64.1',2,36,42306,NULL,'{#FSNAME}: Used space','clc93inj500004ciy9r276evm',''),('clc93inj5000r4ciyhtyc8pwd',1,'Admin',1672318938,'192.168.64.1',2,36,44439,NULL,'{#FSNAME}: Get filesystem data','clc93inj500004ciy9r276evm',''),('clc93inj5000s4ciyjpjke4ut',1,'Admin',1672318938,'192.168.64.1',2,36,44441,NULL,'{#FSNAME}: Filesystem is read-only','clc93inj500004ciy9r276evm',''),('clc93inj5000t4ciymt5b9dce',1,'Admin',1672318938,'192.168.64.1',2,36,44070,NULL,'Proxy [{#PROXY.NAME}]: Certificate','clc93inj500004ciy9r276evm',''),('clc93inj5000u4ciyvs305v9j',1,'Admin',1672318938,'192.168.64.1',2,36,44071,NULL,'Proxy [{#PROXY.NAME}]: Compatibility','clc93inj500004ciy9r276evm',''),('clc93inj5000v4ciypuwlur7p',1,'Admin',1672318938,'192.168.64.1',2,36,44072,NULL,'Proxy [{#PROXY.NAME}]: Compression','clc93inj500004ciy9r276evm',''),('clc93inj5000w4ciyhfayy3d9',1,'Admin',1672318938,'192.168.64.1',2,36,44073,NULL,'Proxy [{#PROXY.NAME}]: Host count','clc93inj500004ciy9r276evm',''),('clc93inj5000x4ciyux976wna',1,'Admin',1672318938,'192.168.64.1',2,36,44074,NULL,'Proxy [{#PROXY.NAME}]: Item count','clc93inj500004ciy9r276evm',''),('clc93inj5000y4ciy3mtiigf0',1,'Admin',1672318938,'192.168.64.1',2,36,44075,NULL,'Proxy [{#PROXY.NAME}]: Last seen, in seconds','clc93inj500004ciy9r276evm',''),('clc93inj5000z4ciymu9e59xz',1,'Admin',1672318938,'192.168.64.1',2,36,44076,NULL,'Proxy [{#PROXY.NAME}]: Mode','clc93inj500004ciy9r276evm',''),('clc93inj500104ciy2kje93un',1,'Admin',1672318938,'192.168.64.1',2,36,44077,NULL,'Proxy [{#PROXY.NAME}]: PSK','clc93inj500004ciy9r276evm',''),('clc93inj500114ciyb9glstml',1,'Admin',1672318938,'192.168.64.1',2,36,44078,NULL,'Proxy [{#PROXY.NAME}]: Required VPS','clc93inj500004ciy9r276evm',''),('clc93inj500124ciyi91pg9i6',1,'Admin',1672318938,'192.168.64.1',2,36,44079,NULL,'Proxy [{#PROXY.NAME}]: Unencrypted','clc93inj500004ciy9r276evm',''),('clc93inj500134ciy9l98f1lr',1,'Admin',1672318938,'192.168.64.1',2,36,44080,NULL,'Proxy [{#PROXY.NAME}]: Version','clc93inj500004ciy9r276evm',''),('clc93inku00144ciysdxz09co',1,'Admin',1672318938,'192.168.64.1',2,15,42227,NULL,'Host name of Zabbix agent running','clc93inj500004ciy9r276evm',''),('clc93inku00154ciy6zaqkt1q',1,'Admin',1672318938,'192.168.64.1',2,15,42237,NULL,'Zabbix agent ping','clc93inj500004ciy9r276evm',''),('clc93inku00164ciy2e2yeha5',1,'Admin',1672318938,'192.168.64.1',2,15,42250,NULL,'Version of Zabbix agent running','clc93inj500004ciy9r276evm',''),('clc93inku00174ciys6kpoj0g',1,'Admin',1672318938,'192.168.64.1',2,15,42251,NULL,'Maximum number of open file descriptors','clc93inj500004ciy9r276evm',''),('clc93inku00184ciy4q8kp9sc',1,'Admin',1672318938,'192.168.64.1',2,15,42252,NULL,'Maximum number of processes','clc93inj500004ciy9r276evm',''),('clc93inku00194ciyrjyej75l',1,'Admin',1672318938,'192.168.64.1',2,15,42253,NULL,'Number of processes','clc93inj500004ciy9r276evm',''),('clc93inku001a4ciyut40y6a6',1,'Admin',1672318938,'192.168.64.1',2,15,42254,NULL,'Number of running processes','clc93inj500004ciy9r276evm',''),('clc93inku001b4ciy9gujdnb2',1,'Admin',1672318938,'192.168.64.1',2,15,42255,NULL,'System boot time','clc93inj500004ciy9r276evm',''),('clc93inku001c4ciyhb25vpe3',1,'Admin',1672318938,'192.168.64.1',2,15,42256,NULL,'Interrupts per second','clc93inj500004ciy9r276evm',''),('clc93inku001d4ciy322dwc43',1,'Admin',1672318938,'192.168.64.1',2,15,42259,NULL,'Load average (15m avg)','clc93inj500004ciy9r276evm',''),('clc93inku001e4ciya46ehya0',1,'Admin',1672318938,'192.168.64.1',2,15,42249,NULL,'Load average (1m avg)','clc93inj500004ciy9r276evm',''),('clc93inku001f4ciyx6x7mt2r',1,'Admin',1672318938,'192.168.64.1',2,15,42257,NULL,'Load average (5m avg)','clc93inj500004ciy9r276evm',''),('clc93inku001g4ciy6ltr33c8',1,'Admin',1672318938,'192.168.64.1',2,15,42260,NULL,'Number of CPUs','clc93inj500004ciy9r276evm',''),('clc93inku001h4ciy87l7phw3',1,'Admin',1672318938,'192.168.64.1',2,15,42261,NULL,'Context switches per second','clc93inj500004ciy9r276evm',''),('clc93inku001i4ciycrhiohnp',1,'Admin',1672318938,'192.168.64.1',2,15,42269,NULL,'CPU utilization','clc93inj500004ciy9r276evm',''),('clc93inku001j4ciyc5qgh7wr',1,'Admin',1672318938,'192.168.64.1',2,15,42262,NULL,'CPU guest time','clc93inj500004ciy9r276evm',''),('clc93inku001k4ciyxskhp9rq',1,'Admin',1672318938,'192.168.64.1',2,15,42263,NULL,'CPU guest nice time','clc93inj500004ciy9r276evm',''),('clc93inku001l4ciyiu8v1787',1,'Admin',1672318938,'192.168.64.1',2,15,42264,NULL,'CPU idle time','clc93inj500004ciy9r276evm',''),('clc93inku001m4ciy4wvbhg43',1,'Admin',1672318938,'192.168.64.1',2,15,42265,NULL,'CPU interrupt time','clc93inj500004ciy9r276evm',''),('clc93inku001n4ciyyur2fyvg',1,'Admin',1672318938,'192.168.64.1',2,15,42258,NULL,'CPU iowait time','clc93inj500004ciy9r276evm',''),('clc93inku001o4ciy363j4546',1,'Admin',1672318938,'192.168.64.1',2,15,42248,NULL,'CPU nice time','clc93inj500004ciy9r276evm',''),('clc93inku001p4ciy0xkqqz0w',1,'Admin',1672318938,'192.168.64.1',2,15,42247,NULL,'CPU softirq time','clc93inj500004ciy9r276evm',''),('clc93inku001q4ciyz805xu3p',1,'Admin',1672318938,'192.168.64.1',2,15,42246,NULL,'CPU steal time','clc93inj500004ciy9r276evm',''),('clc93inku001r4ciyekn88t9x',1,'Admin',1672318938,'192.168.64.1',2,15,42229,NULL,'CPU system time','clc93inj500004ciy9r276evm',''),('clc93inku001s4ciyolfyjzxp',1,'Admin',1672318938,'192.168.64.1',2,15,42230,NULL,'CPU user time','clc93inj500004ciy9r276evm',''),('clc93inku001t4ciyrbcnpjlg',1,'Admin',1672318938,'192.168.64.1',2,15,42231,NULL,'System name','clc93inj500004ciy9r276evm',''),('clc93inku001u4ciy1wqdj5wl',1,'Admin',1672318938,'192.168.64.1',2,15,42232,NULL,'System local time','clc93inj500004ciy9r276evm',''),('clc93inku001v4ciy4fvra31d',1,'Admin',1672318938,'192.168.64.1',2,15,42233,NULL,'Operating system architecture','clc93inj500004ciy9r276evm',''),('clc93inku001w4ciyrdszskx6',1,'Admin',1672318938,'192.168.64.1',2,15,42234,NULL,'Operating system','clc93inj500004ciy9r276evm',''),('clc93inku001x4ciypv2euxux',1,'Admin',1672318938,'192.168.64.1',2,15,42235,NULL,'Software installed','clc93inj500004ciy9r276evm',''),('clc93inku001y4ciyqa7iq1mv',1,'Admin',1672318938,'192.168.64.1',2,15,42228,NULL,'Free swap space','clc93inj500004ciy9r276evm',''),('clc93inku001z4ciyxnsjb63a',1,'Admin',1672318938,'192.168.64.1',2,15,42236,NULL,'Free swap space in %','clc93inj500004ciy9r276evm',''),('clc93inku00204ciytfwqy4d9',1,'Admin',1672318938,'192.168.64.1',2,15,42238,NULL,'Total swap space','clc93inj500004ciy9r276evm',''),('clc93inku00214ciyro3mws2j',1,'Admin',1672318938,'192.168.64.1',2,15,42239,NULL,'System description','clc93inj500004ciy9r276evm',''),('clc93inku00224ciy2u5u75sd',1,'Admin',1672318938,'192.168.64.1',2,15,42240,NULL,'System uptime','clc93inj500004ciy9r276evm',''),('clc93inku00234ciyxv1tq9cr',1,'Admin',1672318938,'192.168.64.1',2,15,42241,NULL,'Number of logged in users','clc93inj500004ciy9r276evm',''),('clc93inku00244ciyabu5ljz4',1,'Admin',1672318938,'192.168.64.1',2,15,42242,NULL,'Checksum of /etc/passwd','clc93inj500004ciy9r276evm',''),('clc93inku00254ciy4ojrv3xm',1,'Admin',1672318938,'192.168.64.1',2,15,44437,NULL,'Get filesystems','clc93inj500004ciy9r276evm',''),('clc93inku00264ciyvdao66da',1,'Admin',1672318938,'192.168.64.1',2,15,42243,NULL,'Available memory','clc93inj500004ciy9r276evm',''),('clc93inku00274ciyh351d317',1,'Admin',1672318938,'192.168.64.1',2,15,42244,NULL,'Available memory in %','clc93inj500004ciy9r276evm',''),('clc93inku00284ciyli1xd2pk',1,'Admin',1672318938,'192.168.64.1',2,15,42245,NULL,'Total memory','clc93inj500004ciy9r276evm',''),('clc93inku00294ciyx4ue5df7',1,'Admin',1672318938,'192.168.64.1',2,15,42270,NULL,'Memory utilization','clc93inj500004ciy9r276evm',''),('clc93inku002a4ciyoztly7ah',1,'Admin',1672318938,'192.168.64.1',2,15,39805,NULL,'Zabbix stats cluster','clc93inj500004ciy9r276evm',''),('clc93inku002b4ciyysdnuvsm',1,'Admin',1672318938,'192.168.64.1',2,15,42266,NULL,'Zabbix agent availability','clc93inj500004ciy9r276evm',''),('clc93inku002c4ciy7kcgne9c',1,'Admin',1672318938,'192.168.64.1',2,15,28534,NULL,'Zabbix server: LLD queue','clc93inj500004ciy9r276evm',''),('clc93inku002d4ciyekvylwpa',1,'Admin',1672318938,'192.168.64.1',2,15,28249,NULL,'Zabbix server: Preprocessing queue','clc93inj500004ciy9r276evm',''),('clc93inku002e4ciyh3v7oaci',1,'Admin',1672318938,'192.168.64.1',2,15,25371,NULL,'Zabbix server: Utilization of alert manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002f4ciynqxht892',1,'Admin',1672318938,'192.168.64.1',2,15,29823,NULL,'Zabbix server: Utilization of alert syncer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002g4ciyy3j0dh2u',1,'Admin',1672318938,'192.168.64.1',2,15,23252,NULL,'Zabbix server: Utilization of alerter internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002h4ciyz3xaoe1z',1,'Admin',1672318938,'192.168.64.1',2,15,33026,NULL,'Zabbix server: Utilization of availability manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002i4ciyzk9vhi4q',1,'Admin',1672318938,'192.168.64.1',2,15,23253,NULL,'Zabbix server: Utilization of configuration syncer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002j4ciypvlmt3aj',1,'Admin',1672318938,'192.168.64.1',2,15,23255,NULL,'Zabbix server: Utilization of discoverer data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002k4ciywd5063h8',1,'Admin',1672318938,'192.168.64.1',2,15,23256,NULL,'Zabbix server: Utilization of escalator internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002l4ciyjnp2m0po',1,'Admin',1672318938,'192.168.64.1',2,15,33027,NULL,'Zabbix server: Utilization of history poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002m4ciy1w4af1qt',1,'Admin',1672318938,'192.168.64.1',2,15,23257,NULL,'Zabbix server: Utilization of history syncer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002n4ciyae7z53tw',1,'Admin',1672318938,'192.168.64.1',2,15,23258,NULL,'Zabbix server: Utilization of housekeeper internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002o4ciyxhyuzyk0',1,'Admin',1672318938,'192.168.64.1',2,15,23259,NULL,'Zabbix server: Utilization of http poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002p4ciyulnlthhw',1,'Admin',1672318938,'192.168.64.1',2,15,23260,NULL,'Zabbix server: Utilization of icmp pinger data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002q4ciymqod31hc',1,'Admin',1672318938,'192.168.64.1',2,15,25367,NULL,'Zabbix server: Utilization of ipmi manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002r4ciyj6iwmaoj',1,'Admin',1672318938,'192.168.64.1',2,15,23261,NULL,'Zabbix server: Utilization of ipmi poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002s4ciy5jqkrdm0',1,'Admin',1672318938,'192.168.64.1',2,15,23262,NULL,'Zabbix server: Utilization of java poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002t4ciyfm8iwtj9',1,'Admin',1672318938,'192.168.64.1',2,15,28536,NULL,'Zabbix server: Utilization of LLD manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002u4ciy8i2lwf60',1,'Admin',1672318938,'192.168.64.1',2,15,28538,NULL,'Zabbix server: Utilization of LLD worker internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002v4ciypjph1z1q',1,'Admin',1672318938,'192.168.64.1',2,15,39823,NULL,'Zabbix server: Utilization of ODBC poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002w4ciyqmwxrsfa',1,'Admin',1672318938,'192.168.64.1',2,15,23264,NULL,'Zabbix server: Utilization of poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002x4ciyv09fofmn',1,'Admin',1672318938,'192.168.64.1',2,15,25667,NULL,'Zabbix server: Utilization of preprocessing manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002y4ciyt1hn51n2',1,'Admin',1672318938,'192.168.64.1',2,15,25668,NULL,'Zabbix server: Utilization of preprocessing worker internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002z4ciyigrpq6d7',1,'Admin',1672318938,'192.168.64.1',2,15,23265,NULL,'Zabbix server: Utilization of proxy poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00304ciy8i5afduj',1,'Admin',1672318938,'192.168.64.1',2,15,34319,NULL,'Zabbix server: Utilization of report manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00314ciy18xl757c',1,'Admin',1672318938,'192.168.64.1',2,15,34318,NULL,'Zabbix server: Utilization of report writer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00324ciynbqqe7wd',1,'Admin',1672318938,'192.168.64.1',2,15,23266,NULL,'Zabbix server: Utilization of self-monitoring internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00334ciy9rhu16kv',1,'Admin',1672318938,'192.168.64.1',2,15,35277,NULL,'Zabbix server: Utilization of service manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00344ciycoutuhnm',1,'Admin',1672318938,'192.168.64.1',2,15,23267,NULL,'Zabbix server: Utilization of snmp trapper data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00354ciysveyvrsy',1,'Admin',1672318938,'192.168.64.1',2,15,23664,NULL,'Zabbix server: Utilization of task manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00364ciy2xhrw9gj',1,'Admin',1672318938,'192.168.64.1',2,15,23268,NULL,'Zabbix server: Utilization of timer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00374ciy18jrmwsu',1,'Admin',1672318938,'192.168.64.1',2,15,23269,NULL,'Zabbix server: Utilization of trapper data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00384ciyvpdxd8uu',1,'Admin',1672318938,'192.168.64.1',2,15,35275,NULL,'Zabbix server: Utilization of trigger housekeeper internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00394ciyky7n0oh2',1,'Admin',1672318938,'192.168.64.1',2,15,23270,NULL,'Zabbix server: Utilization of unreachable poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku003a4ciy211368t3',1,'Admin',1672318938,'192.168.64.1',2,15,23328,NULL,'Zabbix server: Utilization of vmware data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku003b4ciy1fmvd9z9',1,'Admin',1672318938,'192.168.64.1',2,15,44056,NULL,'Zabbix stats proxy','clc93inj500004ciy9r276evm',''),('clc93inku003c4ciy2hwfruae',1,'Admin',1672318938,'192.168.64.1',2,15,23271,NULL,'Zabbix server: Queue over 10 minutes','clc93inj500004ciy9r276evm',''),('clc93inku003d4ciyz7195z00',1,'Admin',1672318938,'192.168.64.1',2,15,23272,NULL,'Zabbix server: Queue','clc93inj500004ciy9r276evm',''),('clc93inku003e4ciyvq83o003',1,'Admin',1672318938,'192.168.64.1',2,15,23273,NULL,'Zabbix server: Configuration cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003f4ciywa7z614k',1,'Admin',1672318938,'192.168.64.1',2,15,33024,NULL,'Zabbix server: Trend function cache, % unique requests','clc93inj500004ciy9r276evm',''),('clc93inku003g4ciybipno2ky',1,'Admin',1672318938,'192.168.64.1',2,15,33025,NULL,'Zabbix server: Trend function cache, % misses','clc93inj500004ciy9r276evm',''),('clc93inku003h4ciylgc0cf5t',1,'Admin',1672318938,'192.168.64.1',2,15,23620,NULL,'Zabbix server: Value cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003i4ciypv1yzolb',1,'Admin',1672318938,'192.168.64.1',2,15,23625,NULL,'Zabbix server: Value cache hits','clc93inj500004ciy9r276evm',''),('clc93inku003j4ciybah4w7cz',1,'Admin',1672318938,'192.168.64.1',2,15,23628,NULL,'Zabbix server: Value cache misses','clc93inj500004ciy9r276evm',''),('clc93inku003k4ciylj31thyl',1,'Admin',1672318938,'192.168.64.1',2,15,23662,NULL,'Zabbix server: Value cache operating mode','clc93inj500004ciy9r276evm',''),('clc93inku003l4ciyv4updjue',1,'Admin',1672318938,'192.168.64.1',2,15,35276,NULL,'Zabbix server: Version','clc93inj500004ciy9r276evm',''),('clc93inku003m4ciyjlnsuc0j',1,'Admin',1672318938,'192.168.64.1',2,15,23635,NULL,'Zabbix server: VMware cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003n4ciyop9af955',1,'Admin',1672318938,'192.168.64.1',2,15,23274,NULL,'Zabbix server: History write cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003o4ciy7uxoea28',1,'Admin',1672318938,'192.168.64.1',2,15,23275,NULL,'Zabbix server: History index cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003p4ciyfky76den',1,'Admin',1672318938,'192.168.64.1',2,15,23276,NULL,'Zabbix server: Trend write cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003q4ciyies4f4w2',1,'Admin',1672318938,'192.168.64.1',2,15,10073,NULL,'Zabbix server: Number of processed numeric (float) values per second','clc93inj500004ciy9r276evm',''),('clc93inku003r4ciyr3zx94hn',1,'Admin',1672318938,'192.168.64.1',2,15,10075,NULL,'Zabbix server: Number of processed log values per second','clc93inj500004ciy9r276evm',''),('clc93inku003s4ciy5ewzrshn',1,'Admin',1672318938,'192.168.64.1',2,15,10078,NULL,'Zabbix server: Number of processed not supported values per second','clc93inj500004ciy9r276evm',''),('clc93inku003t4ciy4nadcz1r',1,'Admin',1672318938,'192.168.64.1',2,15,10074,NULL,'Zabbix server: Number of processed character values per second','clc93inj500004ciy9r276evm',''),('clc93inku003u4ciy02ubn94w',1,'Admin',1672318938,'192.168.64.1',2,15,10077,NULL,'Zabbix server: Number of processed text values per second','clc93inj500004ciy9r276evm',''),('clc93inku003v4ciyy0bsnehs',1,'Admin',1672318938,'192.168.64.1',2,15,10076,NULL,'Zabbix server: Number of processed numeric (unsigned) values per second','clc93inj500004ciy9r276evm',''),('clc93inku003w4ciy1bcflxev',1,'Admin',1672318938,'192.168.64.1',2,15,23277,NULL,'Zabbix server: Number of processed values per second','clc93inj500004ciy9r276evm',''),('clc93inla003x4ciytf5ai8od',1,'Admin',1672318938,'192.168.64.1',2,4,10084,NULL,'Zabbix server','clc93inj500004ciy9r276evm',''),('clc93sewa00014ciy2rvgqxwd',1,'Admin',1672319394,'192.168.64.1',2,36,22945,NULL,'Interface {#IFNAME}: Incoming network traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00024ciylu6lom9g',1,'Admin',1672319394,'192.168.64.1',2,36,22946,NULL,'Interface {#IFNAME}: Outgoing network traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00034ciyxomqnv62',1,'Admin',1672319394,'192.168.64.1',2,36,22948,NULL,'{#FSNAME}: Free disk space','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00044ciyhajxvmyp',1,'Admin',1672319394,'192.168.64.1',2,36,22949,NULL,'{#FSNAME}: Free inodes, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00054ciyil4lpwzl',1,'Admin',1672319394,'192.168.64.1',2,36,22950,NULL,'{#FSNAME}: Total disk space','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00064ciyef636vha',1,'Admin',1672319394,'192.168.64.1',2,36,22951,NULL,'{#FSNAME}: Used disk space','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00074ciy7i1lze90',1,'Admin',1672319394,'192.168.64.1',2,36,22952,NULL,'{#FSNAME}: Free disk space, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00084ciy6lrifja1',1,'Admin',1672319394,'192.168.64.1',2,36,44428,NULL,'{#FSNAME}: Get filesystem data','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00094ciy3x44vedk',1,'Admin',1672319394,'192.168.64.1',2,36,44429,NULL,'{#FSNAME}: Filesystem is read-only','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000a4ciyb8hy5yzz',1,'Admin',1672319394,'192.168.64.1',2,36,27212,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000b4ciyo7x9nb27',1,'Admin',1672319394,'192.168.64.1',2,36,27213,NULL,'#{#SNMPINDEX}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000c4ciycfpn5eo9',1,'Admin',1672319394,'192.168.64.1',2,36,27214,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000d4ciy6qo0kekj',1,'Admin',1672319394,'192.168.64.1',2,36,27246,NULL,'{#SENSOR_INFO}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000e4ciyd3jgdkep',1,'Admin',1672319394,'192.168.64.1',2,36,27247,NULL,'{#SENSOR_INFO}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000f4ciy4nyvmtt5',1,'Admin',1672319394,'192.168.64.1',2,36,27248,NULL,'{#SENSOR_INFO}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000g4ciydbijkrx2',1,'Admin',1672319394,'192.168.64.1',2,36,27249,NULL,'{#SENSOR_INFO}: Fan speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000h4ciy6fnehagq',1,'Admin',1672319394,'192.168.64.1',2,36,27250,NULL,'{#SENSOR_INFO}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000i4ciyulen4a1h',1,'Admin',1672319394,'192.168.64.1',2,36,27312,NULL,'PSU {#PSU_INDEX}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000j4ciyiozg0fqq',1,'Admin',1672319394,'192.168.64.1',2,36,27313,NULL,'Fan {#FAN_INDEX}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000k4ciyhwezwgab',1,'Admin',1672319394,'192.168.64.1',2,36,27314,NULL,'{#SENSOR_DESCR}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000l4ciyfw2omia8',1,'Admin',1672319394,'192.168.64.1',2,36,27315,NULL,'Chassis #{#SNMPINDEX}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000m4ciygna0sxcn',1,'Admin',1672319394,'192.168.64.1',2,36,27316,NULL,'Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000n4ciyzv67gf6e',1,'Admin',1672319394,'192.168.64.1',2,36,27317,NULL,'Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000o4ciyx2pnlod4',1,'Admin',1672319394,'192.168.64.1',2,36,27318,NULL,'{#SENSOR_DESCR}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000p4ciyy3i6fxf6',1,'Admin',1672319394,'192.168.64.1',2,36,27319,NULL,'Unit {#SNMPINDEX}: Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000q4ciyg33jjyor',1,'Admin',1672319394,'192.168.64.1',2,36,27320,NULL,'Unit {#SNMPVALUE}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000r4ciyu5uqm6w2',1,'Admin',1672319394,'192.168.64.1',2,36,27415,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000s4ciyqmgt58f4',1,'Admin',1672319394,'192.168.64.1',2,36,27416,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000t4ciy8srcdk6f',1,'Admin',1672319394,'192.168.64.1',2,36,30101,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000u4ciymb2pchz4',1,'Admin',1672319394,'192.168.64.1',2,36,27417,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000v4ciyt8mg0kw6',1,'Admin',1672319394,'192.168.64.1',2,36,27419,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000w4ciyxpwec2am',1,'Admin',1672319394,'192.168.64.1',2,36,27420,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000x4ciyyuxm8mga',1,'Admin',1672319394,'192.168.64.1',2,36,27421,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000y4ciy0j6o2a85',1,'Admin',1672319394,'192.168.64.1',2,36,27422,NULL,'{#SENSOR_INFO}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000z4ciysqc52l4f',1,'Admin',1672319394,'192.168.64.1',2,36,27423,NULL,'{#SENSOR_INFO}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00104ciyfycrnk1r',1,'Admin',1672319394,'192.168.64.1',2,36,28246,NULL,'{#SNMPVALUE}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00114ciyaec6uahk',1,'Admin',1672319394,'192.168.64.1',2,36,28323,NULL,'{#SENSOR_INFO}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00124ciyqwbgoiu3',1,'Admin',1672319394,'192.168.64.1',2,36,28324,NULL,'{#SENSOR_INFO}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00134ciylj2xruqp',1,'Admin',1672319394,'192.168.64.1',2,36,28325,NULL,'{#SENSOR_INFO}: Fan speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00144ciyw8gxlyin',1,'Admin',1672319394,'192.168.64.1',2,36,28326,NULL,'{#SENSOR_INFO}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00154ciy9gi901m3',1,'Admin',1672319394,'192.168.64.1',2,36,28327,NULL,'{#ENT_NAME}: Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00164ciybd349ens',1,'Admin',1672319394,'192.168.64.1',2,36,28328,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00174ciyxgp5wr5a',1,'Admin',1672319394,'192.168.64.1',2,36,28329,NULL,'{#ENT_NAME}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00184ciyqldw4a93',1,'Admin',1672319394,'192.168.64.1',2,36,28798,NULL,'Apache: Connections async closing','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00194ciy28io6fh8',1,'Admin',1672319394,'192.168.64.1',2,36,28799,NULL,'Apache: Connections async keep alive','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001a4ciyqwnxm4hs',1,'Admin',1672319394,'192.168.64.1',2,36,28800,NULL,'Apache: Connections async writing','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001b4ciy1w2ax6z8',1,'Admin',1672319394,'192.168.64.1',2,36,28801,NULL,'Apache: Connections total','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001c4ciyqacszs59',1,'Admin',1672319394,'192.168.64.1',2,36,28802,NULL,'Apache: Bytes per request','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001d4ciya1ym8acl',1,'Admin',1672319394,'192.168.64.1',2,36,28803,NULL,'Apache: Number of async processes','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001e4ciy18poy6nq',1,'Admin',1672319394,'192.168.64.1',2,36,30091,NULL,'#{#SNMPINDEX}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001f4ciy2rbahlx0',1,'Admin',1672319394,'192.168.64.1',2,36,30092,NULL,'#{#SNMPINDEX}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001g4ciydm4r4duv',1,'Admin',1672319394,'192.168.64.1',2,36,30688,NULL,'IPMI: {#SENSOR_ID}','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001h4ciyueovqjzn',1,'Admin',1672319394,'192.168.64.1',2,36,30689,NULL,'IPMI: {#SENSOR_ID}, {#SENSOR_UNIT}','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001i4ciyidaon0ud',1,'Admin',1672319394,'192.168.64.1',2,36,30917,NULL,'Apache: Bytes per request','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001j4ciy22iobzdx',1,'Admin',1672319394,'192.168.64.1',2,36,30918,NULL,'Apache: Connections async closing','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001k4ciybbrku127',1,'Admin',1672319394,'192.168.64.1',2,36,30919,NULL,'Apache: Connections async keepalive','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001l4ciyr9g77m1c',1,'Admin',1672319394,'192.168.64.1',2,36,30920,NULL,'Apache: Connections async writing','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001m4ciyh6cnibne',1,'Admin',1672319394,'192.168.64.1',2,36,30921,NULL,'Apache: Connections total','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001n4ciyz6zs7dr0',1,'Admin',1672319394,'192.168.64.1',2,36,30922,NULL,'Apache: Number of async processes','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001o4ciy5o2z15qx',1,'Admin',1672319394,'192.168.64.1',2,36,31807,NULL,'IAX trunk \"{#OBJECTNAME}\": Active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001p4ciyfid9hpqx',1,'Admin',1672319394,'192.168.64.1',2,36,31808,NULL,'IAX trunk \"{#OBJECTNAME}\": Status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001q4ciyjqzpye6w',1,'Admin',1672319394,'192.168.64.1',2,36,31809,NULL,'PJSIP trunk \"{#OBJECTNAME}\": Active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001r4ciycb4bxzc7',1,'Admin',1672319394,'192.168.64.1',2,36,31810,NULL,'PJSIP trunk \"{#OBJECTNAME}\": Device state','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001s4ciyg74pidq6',1,'Admin',1672319394,'192.168.64.1',2,36,31811,NULL,'\"{#QUEUE}\": Available','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001t4ciyqpggfk5x',1,'Admin',1672319394,'192.168.64.1',2,36,31812,NULL,'\"{#QUEUE}\": Callers','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001u4ciym7gqbvfu',1,'Admin',1672319394,'192.168.64.1',2,36,31813,NULL,'\"{#QUEUE}\": Logged in','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001v4ciyzratu6zv',1,'Admin',1672319394,'192.168.64.1',2,36,31814,NULL,'SIP trunk \"{#OBJECTNAME}\": Active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001w4ciybf4zh8j0',1,'Admin',1672319394,'192.168.64.1',2,36,31815,NULL,'SIP trunk \"{#OBJECTNAME}\": Status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001x4ciy66oxklbf',1,'Admin',1672319394,'192.168.64.1',2,36,32170,NULL,'Ceph: [osd.{#OSDNAME}] OSD fill','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001y4ciytypccotr',1,'Admin',1672319394,'192.168.64.1',2,36,32171,NULL,'Ceph: [osd.{#OSDNAME}] OSD in','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001z4ciy9iwahonx',1,'Admin',1672319394,'192.168.64.1',2,36,32172,NULL,'Ceph: [osd.{#OSDNAME}] OSD latency apply','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00204ciyrlfbwato',1,'Admin',1672319394,'192.168.64.1',2,36,32173,NULL,'Ceph: [osd.{#OSDNAME}] OSD latency commit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00214ciyjsmzxmt7',1,'Admin',1672319394,'192.168.64.1',2,36,32174,NULL,'Ceph: [osd.{#OSDNAME}] OSD PGs','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00224ciynfpn7zi5',1,'Admin',1672319394,'192.168.64.1',2,36,32175,NULL,'Ceph: [osd.{#OSDNAME}] OSD up','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00234ciyrowg121g',1,'Admin',1672319394,'192.168.64.1',2,36,32507,NULL,'Ceph: [{#POOLNAME}] Pool Used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00244ciy2za8fzz5',1,'Admin',1672319394,'192.168.64.1',2,36,32508,NULL,'Ceph: [{#POOLNAME}] Max available','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00254ciyo3awlee4',1,'Admin',1672319394,'192.168.64.1',2,36,32509,NULL,'Ceph: [{#POOLNAME}] Pool objects','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00264ciy1fppu066',1,'Admin',1672319394,'192.168.64.1',2,36,32510,NULL,'Ceph: [{#POOLNAME}] Pool Percent Used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00274ciyja0kdhrk',1,'Admin',1672319394,'192.168.64.1',2,36,32511,NULL,'Ceph: [{#POOLNAME}] Pool Read bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00284ciys7n5035l',1,'Admin',1672319394,'192.168.64.1',2,36,32512,NULL,'Ceph: [{#POOLNAME}] Pool Read operations','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00294ciye3g7xoxg',1,'Admin',1672319394,'192.168.64.1',2,36,32513,NULL,'Ceph: [{#POOLNAME}] Pool RAW Used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002a4ciyv5o7mrqp',1,'Admin',1672319394,'192.168.64.1',2,36,32514,NULL,'Ceph: [{#POOLNAME}] Pool Write bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002b4ciyncro0ci1',1,'Admin',1672319394,'192.168.64.1',2,36,32515,NULL,'Ceph: [{#POOLNAME}] Pool Write operations','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002c4ciyvadeb1cm',1,'Admin',1672319394,'192.168.64.1',2,36,32442,NULL,'Broker {#JMXBROKERNAME}: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002d4ciymp264pln',1,'Admin',1672319394,'192.168.64.1',2,36,32443,NULL,'Broker {#JMXBROKERNAME}: Memory limit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002e4ciy1k3idna1',1,'Admin',1672319394,'192.168.64.1',2,36,32444,NULL,'Broker {#JMXBROKERNAME}: Memory usage in percents','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002f4ciyrbq746ls',1,'Admin',1672319394,'192.168.64.1',2,36,32445,NULL,'Broker {#JMXBROKERNAME}: Storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002g4ciynlzwbzeq',1,'Admin',1672319394,'192.168.64.1',2,36,32446,NULL,'Broker {#JMXBROKERNAME}: Storage usage in percents','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002h4ciyk6s62jp4',1,'Admin',1672319394,'192.168.64.1',2,36,32447,NULL,'Broker {#JMXBROKERNAME}: Temp limit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002i4ciyeeulboul',1,'Admin',1672319394,'192.168.64.1',2,36,32448,NULL,'Broker {#JMXBROKERNAME}: Temp usage in percents','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002j4ciy3uh92qy8',1,'Admin',1672319394,'192.168.64.1',2,36,32449,NULL,'Broker {#JMXBROKERNAME}: Consumers count total','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002k4ciyk86zwirm',1,'Admin',1672319394,'192.168.64.1',2,36,32450,NULL,'Broker {#JMXBROKERNAME}: Messages dequeue rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002l4ciylqxqwmcw',1,'Admin',1672319394,'192.168.64.1',2,36,32451,NULL,'Broker {#JMXBROKERNAME}: Messages enqueue rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002m4ciyzom4v9o7',1,'Admin',1672319394,'192.168.64.1',2,36,32452,NULL,'Broker {#JMXBROKERNAME}: Producers count total','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002n4ciybsds0k9e',1,'Admin',1672319394,'192.168.64.1',2,36,32453,NULL,'Broker {#JMXBROKERNAME}: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002o4ciyvvz5dmke',1,'Admin',1672319394,'192.168.64.1',2,36,32454,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count total on {#JMXBROKERNAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002p4ciylhwwdz48',1,'Admin',1672319394,'192.168.64.1',2,36,32455,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count total on {#JMXBROKERNAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002q4ciygkavd18v',1,'Admin',1672319394,'192.168.64.1',2,36,32456,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002r4ciygxjs0y5m',1,'Admin',1672319394,'192.168.64.1',2,36,32457,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages dequeue rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002s4ciycs96p3xj',1,'Admin',1672319394,'192.168.64.1',2,36,32458,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages enqueue rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002t4ciycg6xj2u7',1,'Admin',1672319394,'192.168.64.1',2,36,32459,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002u4ciyetl36kc2',1,'Admin',1672319394,'192.168.64.1',2,36,32460,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage in percents','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002v4ciymcwrqkb1',1,'Admin',1672319394,'192.168.64.1',2,36,32461,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002w4ciyvi934q1t',1,'Admin',1672319394,'192.168.64.1',2,36,32462,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002x4ciy4uz5nniy',1,'Admin',1672319394,'192.168.64.1',2,36,32486,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002y4ciyxjvci7cl',1,'Admin',1672319394,'192.168.64.1',2,36,32487,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002z4ciy6um5ciuf',1,'Admin',1672319394,'192.168.64.1',2,36,32488,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00304ciygjj6f1a9',1,'Admin',1672319394,'192.168.64.1',2,36,32489,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00314ciydrm6a07e',1,'Admin',1672319394,'192.168.64.1',2,36,32490,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00324ciy3k2t24ex',1,'Admin',1672319394,'192.168.64.1',2,36,32491,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00334ciyu1z3x7au',1,'Admin',1672319394,'192.168.64.1',2,36,32492,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00344ciybd79kwjg',1,'Admin',1672319394,'192.168.64.1',2,36,32493,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00354ciyr9srb6t4',1,'Admin',1672319394,'192.168.64.1',2,36,32494,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00364ciygp8n8kb8',1,'Admin',1672319394,'192.168.64.1',2,36,32495,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00374ciyfeyjo9nt',1,'Admin',1672319394,'192.168.64.1',2,36,32496,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00384ciy2znj2lsy',1,'Admin',1672319394,'192.168.64.1',2,36,32497,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00394ciyphkvnn9b',1,'Admin',1672319394,'192.168.64.1',2,36,32498,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003a4ciy49njafho',1,'Admin',1672319394,'192.168.64.1',2,36,32499,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003b4ciyfbfdpcz6',1,'Admin',1672319394,'192.168.64.1',2,36,32500,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003c4ciy7hna5l13',1,'Admin',1672319394,'192.168.64.1',2,36,32501,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003d4ciyq1vzt5md',1,'Admin',1672319394,'192.168.64.1',2,36,32502,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003e4ciyn28srrxx',1,'Admin',1672319394,'192.168.64.1',2,36,32503,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003f4ciyihq4yone',1,'Admin',1672319394,'192.168.64.1',2,36,32504,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003g4ciyx6vcx7on',1,'Admin',1672319394,'192.168.64.1',2,36,32505,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003h4ciy9li0v7v7',1,'Admin',1672319394,'192.168.64.1',2,36,32506,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003i4ciyd4e9o82p',1,'Admin',1672319394,'192.168.64.1',2,36,32758,NULL,'Kafka {#JMXTOPIC}: Bytes out per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003j4ciy120hy0wr',1,'Admin',1672319394,'192.168.64.1',2,36,32759,NULL,'Kafka {#JMXTOPIC}: Bytes rejected per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003k4ciy9w7cuznu',1,'Admin',1672319394,'192.168.64.1',2,36,32760,NULL,'Kafka {#JMXTOPIC}: Bytes in per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003l4ciyprr5m6dl',1,'Admin',1672319394,'192.168.64.1',2,36,32761,NULL,'Kafka {#JMXTOPIC}: Messages in per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003m4ciykk8ra11f',1,'Admin',1672319394,'192.168.64.1',2,36,32766,NULL,'{#JMXVALUE}: Gzip compression status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003n4ciyn0p4faxp',1,'Admin',1672319394,'192.168.64.1',2,36,32767,NULL,'{#JMXNAME}: Bytes received per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003o4ciyok8qgwr6',1,'Admin',1672319394,'192.168.64.1',2,36,32768,NULL,'{#JMXNAME}: Bytes sent per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003p4ciyzsauo9l4',1,'Admin',1672319394,'192.168.64.1',2,36,32769,NULL,'{#JMXNAME}: Errors per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003q4ciye1di89hi',1,'Admin',1672319394,'192.168.64.1',2,36,32770,NULL,'{#JMXNAME}: Requests processing time','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003r4ciy991qs1ff',1,'Admin',1672319394,'192.168.64.1',2,36,32771,NULL,'{#JMXNAME}: Requests per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003s4ciyrb6507pv',1,'Admin',1672319394,'192.168.64.1',2,36,32772,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions active','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003t4ciybyzwj05x',1,'Admin',1672319394,'192.168.64.1',2,36,32773,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions allowed maximum','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003u4ciy3729gxw5',1,'Admin',1672319394,'192.168.64.1',2,36,32774,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions active maximum so far','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003v4ciyulkkk7fy',1,'Admin',1672319394,'192.168.64.1',2,36,32775,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions rejected per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003w4ciy0sdrgqnp',1,'Admin',1672319394,'192.168.64.1',2,36,32776,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions created per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003x4ciys26piaq1',1,'Admin',1672319394,'192.168.64.1',2,36,32777,NULL,'{#JMXNAME}: Threads count','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003y4ciy9asg170s',1,'Admin',1672319394,'192.168.64.1',2,36,32778,NULL,'{#JMXNAME}: Threads busy','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003z4ciyat25yyhf',1,'Admin',1672319394,'192.168.64.1',2,36,32779,NULL,'{#JMXNAME}: Threads limit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00404ciyej39x9t1',1,'Admin',1672319394,'192.168.64.1',2,36,33096,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Bloom filter false ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00414ciytw535erw',1,'Admin',1672319394,'192.168.64.1',2,36,33097,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache hits','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00424ciyssg2790u',1,'Admin',1672319394,'192.168.64.1',2,36,33098,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00434ciyir7kctkv',1,'Admin',1672319394,'192.168.64.1',2,36,33099,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00444ciymogn31zq',1,'Admin',1672319394,'192.168.64.1',2,36,33100,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00454ciyeiag898p',1,'Admin',1672319394,'192.168.64.1',2,36,33101,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00464ciymyetz7zm',1,'Admin',1672319394,'192.168.64.1',2,36,33102,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Disk space used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00474ciyvn0rul31',1,'Admin',1672319394,'192.168.64.1',2,36,33103,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00484ciy6prvhegj',1,'Admin',1672319394,'192.168.64.1',2,36,33104,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00494ciyz0hrngim',1,'Admin',1672319394,'192.168.64.1',2,36,33105,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004a4ciy10u7w4ip',1,'Admin',1672319394,'192.168.64.1',2,36,33106,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004b4ciybwuypcm5',1,'Admin',1672319394,'192.168.64.1',2,36,33107,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Snapshots size','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004c4ciyuupetsc2',1,'Admin',1672319394,'192.168.64.1',2,36,33108,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache misses','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004d4ciyjqnc2t0q',1,'Admin',1672319394,'192.168.64.1',2,36,33109,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Out of row cache hits','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004e4ciyggh22nqn',1,'Admin',1672319394,'192.168.64.1',2,36,33110,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Read per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004f4ciy4g3xhq29',1,'Admin',1672319394,'192.168.64.1',2,36,33111,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Bytes flushed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004g4ciyc6zyl1g6',1,'Admin',1672319394,'192.168.64.1',2,36,33112,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004h4ciy8x9blm3t',1,'Admin',1672319394,'192.168.64.1',2,36,33113,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004i4ciykzyd3lgw',1,'Admin',1672319394,'192.168.64.1',2,36,33114,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Pending flushes','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004j4ciypt3iejaf',1,'Admin',1672319394,'192.168.64.1',2,36,33115,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Pending compactions','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004k4ciy8qh1r45f',1,'Admin',1672319394,'192.168.64.1',2,36,33116,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Mean partition size','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004l4ciymqqbfv0q',1,'Admin',1672319394,'192.168.64.1',2,36,33117,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Max sartition size','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004m4ciystas4bid',1,'Admin',1672319394,'192.168.64.1',2,36,33118,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Live SS Table','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004n4ciy2n60d880',1,'Admin',1672319394,'192.168.64.1',2,36,33119,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Live disk space used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004o4ciy901vy9fm',1,'Admin',1672319394,'192.168.64.1',2,36,33120,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: KeyCache hit rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004p4ciy6igdare8',1,'Admin',1672319394,'192.168.64.1',2,36,33121,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Compression ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004q4ciybf89xw0a',1,'Admin',1672319394,'192.168.64.1',2,36,33122,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Compaction bytes written','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004r4ciy59rfp3fr',1,'Admin',1672319394,'192.168.64.1',2,36,33123,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004s4ciy4fk1h5ri',1,'Admin',1672319394,'192.168.64.1',2,36,33124,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004t4ciy2ltmmylj',1,'Admin',1672319394,'192.168.64.1',2,36,33125,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Write per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004u4ciy96gqgmid',1,'Admin',1672319394,'192.168.64.1',2,36,33183,NULL,'{#SENSOR_INFO}: Voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004v4ciyf2llrkyk',1,'Admin',1672319394,'192.168.64.1',2,36,33966,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004w4ciyf0bfafj7',1,'Admin',1672319394,'192.168.64.1',2,36,33967,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004x4ciyg4jc8siu',1,'Admin',1672319394,'192.168.64.1',2,36,33968,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004y4ciy0i16v8no',1,'Admin',1672319394,'192.168.64.1',2,36,33969,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004z4ciyd4mo1a7f',1,'Admin',1672319394,'192.168.64.1',2,36,33970,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00504ciyelutc19v',1,'Admin',1672319394,'192.168.64.1',2,36,33971,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00514ciyfmn3c4rx',1,'Admin',1672319394,'192.168.64.1',2,36,33972,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00524ciyyf0fy1ck',1,'Admin',1672319394,'192.168.64.1',2,36,33973,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00534ciyxr9jq2bw',1,'Admin',1672319394,'192.168.64.1',2,36,33974,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00544ciynet0q8ln',1,'Admin',1672319394,'192.168.64.1',2,36,33975,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00554ciypk0iv5ta',1,'Admin',1672319394,'192.168.64.1',2,36,33976,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00564ciyh52bjlih',1,'Admin',1672319394,'192.168.64.1',2,36,33977,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00574ciyf78ku644',1,'Admin',1672319394,'192.168.64.1',2,36,33978,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00584ciy899klsrc',1,'Admin',1672319394,'192.168.64.1',2,36,33979,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00594ciyb3j5wvwn',1,'Admin',1672319394,'192.168.64.1',2,36,33980,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005a4ciyfoiky3jz',1,'Admin',1672319394,'192.168.64.1',2,36,33981,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005b4ciynyy2kc9n',1,'Admin',1672319394,'192.168.64.1',2,36,33982,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005c4ciyyc9gwaki',1,'Admin',1672319394,'192.168.64.1',2,36,33983,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005d4ciyr335ama9',1,'Admin',1672319394,'192.168.64.1',2,36,33984,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005e4ciyh6bllwld',1,'Admin',1672319394,'192.168.64.1',2,36,34007,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005f4ciypuam0fmy',1,'Admin',1672319394,'192.168.64.1',2,36,34008,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005g4ciyn2tvu2f9',1,'Admin',1672319394,'192.168.64.1',2,36,34009,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005h4ciyzh23v38o',1,'Admin',1672319394,'192.168.64.1',2,36,34010,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005i4ciyg73lx5p0',1,'Admin',1672319394,'192.168.64.1',2,36,34011,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005j4ciyx8roj1o7',1,'Admin',1672319394,'192.168.64.1',2,36,34012,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005k4ciy9g0u7u40',1,'Admin',1672319394,'192.168.64.1',2,36,34013,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005l4ciyan7zvwto',1,'Admin',1672319394,'192.168.64.1',2,36,34014,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005m4ciyapm9extj',1,'Admin',1672319394,'192.168.64.1',2,36,34015,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005n4ciyz5j7d9m0',1,'Admin',1672319394,'192.168.64.1',2,36,34016,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005o4ciylio3zvph',1,'Admin',1672319394,'192.168.64.1',2,36,34017,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005p4ciy6q9mgdux',1,'Admin',1672319394,'192.168.64.1',2,36,34018,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005q4ciy40jt9gf9',1,'Admin',1672319394,'192.168.64.1',2,36,34019,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005r4ciyx1yeuvak',1,'Admin',1672319394,'192.168.64.1',2,36,34020,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005s4ciycbv3u213',1,'Admin',1672319394,'192.168.64.1',2,36,34021,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005t4ciytp83zccx',1,'Admin',1672319394,'192.168.64.1',2,36,34022,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005u4ciypocpa570',1,'Admin',1672319394,'192.168.64.1',2,36,34023,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005v4ciy2gqida4a',1,'Admin',1672319394,'192.168.64.1',2,36,34024,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005w4ciys4i9167h',1,'Admin',1672319394,'192.168.64.1',2,36,34025,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005x4ciykivogxbj',1,'Admin',1672319394,'192.168.64.1',2,36,34048,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005y4ciyxvp3l3zd',1,'Admin',1672319394,'192.168.64.1',2,36,34049,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005z4ciy5pohagrh',1,'Admin',1672319394,'192.168.64.1',2,36,34050,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00604ciyr6mlmukh',1,'Admin',1672319394,'192.168.64.1',2,36,34051,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00614ciy1hy2enfl',1,'Admin',1672319394,'192.168.64.1',2,36,34052,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00624ciybbzc6lq9',1,'Admin',1672319394,'192.168.64.1',2,36,34053,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00634ciyrgww0jo5',1,'Admin',1672319394,'192.168.64.1',2,36,34054,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00644ciylqd5dvhj',1,'Admin',1672319394,'192.168.64.1',2,36,34055,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00654ciync1yppk4',1,'Admin',1672319394,'192.168.64.1',2,36,34056,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00664ciyjqlbejng',1,'Admin',1672319394,'192.168.64.1',2,36,34057,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00674ciy6dtvbpmd',1,'Admin',1672319394,'192.168.64.1',2,36,34058,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00684ciyyvhuvhbv',1,'Admin',1672319394,'192.168.64.1',2,36,34059,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00694ciyiyo7gd2s',1,'Admin',1672319394,'192.168.64.1',2,36,34060,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006a4ciyx9wjgx5u',1,'Admin',1672319394,'192.168.64.1',2,36,34061,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006b4ciyc6vicgcp',1,'Admin',1672319394,'192.168.64.1',2,36,34062,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006c4ciy7rppsoko',1,'Admin',1672319394,'192.168.64.1',2,36,34063,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006d4ciygdd0bc2t',1,'Admin',1672319394,'192.168.64.1',2,36,34064,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006e4ciy4bzbbbst',1,'Admin',1672319394,'192.168.64.1',2,36,34065,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006f4ciy0galvs3x',1,'Admin',1672319394,'192.168.64.1',2,36,34066,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006g4ciyfui2ad1e',1,'Admin',1672319394,'192.168.64.1',2,36,34089,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006h4ciyrn84h91s',1,'Admin',1672319394,'192.168.64.1',2,36,34090,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006i4ciys97eev2k',1,'Admin',1672319394,'192.168.64.1',2,36,34091,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006j4ciyoim9jrqb',1,'Admin',1672319394,'192.168.64.1',2,36,34092,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006k4ciy0i6508aj',1,'Admin',1672319394,'192.168.64.1',2,36,34093,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006l4ciywh4neea7',1,'Admin',1672319394,'192.168.64.1',2,36,34094,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006m4ciypv1xnxvf',1,'Admin',1672319394,'192.168.64.1',2,36,34095,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006n4ciytd7ul588',1,'Admin',1672319394,'192.168.64.1',2,36,34096,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006o4ciyb9qy6ayv',1,'Admin',1672319394,'192.168.64.1',2,36,34097,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006p4ciycq9hudf9',1,'Admin',1672319394,'192.168.64.1',2,36,34098,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006q4ciyupgsqflr',1,'Admin',1672319394,'192.168.64.1',2,36,34099,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006r4ciyl1fl6rwj',1,'Admin',1672319394,'192.168.64.1',2,36,34100,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006s4ciyaa3y4lzr',1,'Admin',1672319394,'192.168.64.1',2,36,34101,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006t4ciyno4p8cs5',1,'Admin',1672319394,'192.168.64.1',2,36,34102,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006u4ciy29kh1kqf',1,'Admin',1672319394,'192.168.64.1',2,36,34103,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006v4ciyj9ue0dou',1,'Admin',1672319394,'192.168.64.1',2,36,34104,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006w4ciy276ah24v',1,'Admin',1672319394,'192.168.64.1',2,36,34105,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006x4ciyfnlr1al3',1,'Admin',1672319394,'192.168.64.1',2,36,34106,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006y4ciy8sx8zlpp',1,'Admin',1672319394,'192.168.64.1',2,36,34107,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006z4ciyez5vv028',1,'Admin',1672319394,'192.168.64.1',2,36,34130,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00704ciyj232bqnu',1,'Admin',1672319394,'192.168.64.1',2,36,34131,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00714ciyv70ar5a3',1,'Admin',1672319394,'192.168.64.1',2,36,34132,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00724ciymtpeymbn',1,'Admin',1672319394,'192.168.64.1',2,36,34133,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00734ciy7xeiyzi6',1,'Admin',1672319394,'192.168.64.1',2,36,34134,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00744ciy32x7ioda',1,'Admin',1672319394,'192.168.64.1',2,36,34135,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00754ciyphweodkv',1,'Admin',1672319394,'192.168.64.1',2,36,34136,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00764ciy66iun2u9',1,'Admin',1672319394,'192.168.64.1',2,36,34137,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00774ciyobhlmjxr',1,'Admin',1672319394,'192.168.64.1',2,36,34138,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00784ciya0e0kfcr',1,'Admin',1672319394,'192.168.64.1',2,36,34139,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00794ciyo6kwxmfu',1,'Admin',1672319394,'192.168.64.1',2,36,34140,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007a4ciyjz9bt5mw',1,'Admin',1672319394,'192.168.64.1',2,36,34141,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007b4ciy71uhqcgt',1,'Admin',1672319394,'192.168.64.1',2,36,34142,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007c4ciyo7hsrlw0',1,'Admin',1672319394,'192.168.64.1',2,36,34143,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007d4ciyi2jlrzaa',1,'Admin',1672319394,'192.168.64.1',2,36,34144,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007e4ciyxim3job4',1,'Admin',1672319394,'192.168.64.1',2,36,34145,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007f4ciycnr4upln',1,'Admin',1672319394,'192.168.64.1',2,36,34146,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007g4ciy215o49y1',1,'Admin',1672319394,'192.168.64.1',2,36,34147,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007h4ciyyhnf1ykq',1,'Admin',1672319394,'192.168.64.1',2,36,34148,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007i4ciyn0folva0',1,'Admin',1672319394,'192.168.64.1',2,36,34212,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007j4ciy7aie27zo',1,'Admin',1672319394,'192.168.64.1',2,36,34213,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007k4ciyir59smkv',1,'Admin',1672319394,'192.168.64.1',2,36,34214,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007l4ciyoca47twj',1,'Admin',1672319394,'192.168.64.1',2,36,34215,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007m4ciyggig5wv5',1,'Admin',1672319394,'192.168.64.1',2,36,34216,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007n4ciykl5tif8p',1,'Admin',1672319394,'192.168.64.1',2,36,34217,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007o4ciy8m6la6b4',1,'Admin',1672319394,'192.168.64.1',2,36,34218,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007p4ciyh57ub63a',1,'Admin',1672319394,'192.168.64.1',2,36,34219,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007q4ciynkjwwh7q',1,'Admin',1672319394,'192.168.64.1',2,36,34220,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007r4ciy8ctxxk85',1,'Admin',1672319394,'192.168.64.1',2,36,34221,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007s4ciy9z2hij2e',1,'Admin',1672319394,'192.168.64.1',2,36,34222,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007t4ciyg81fjvqw',1,'Admin',1672319394,'192.168.64.1',2,36,34223,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007u4ciydpqak0hn',1,'Admin',1672319394,'192.168.64.1',2,36,34224,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007v4ciymhi4jw8f',1,'Admin',1672319394,'192.168.64.1',2,36,34225,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007w4ciyyried5ic',1,'Admin',1672319394,'192.168.64.1',2,36,34482,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007x4ciy97xwt5vy',1,'Admin',1672319394,'192.168.64.1',2,36,34483,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007y4ciy7ku9q7pa',1,'Admin',1672319394,'192.168.64.1',2,36,34484,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007z4ciysrweom5a',1,'Admin',1672319394,'192.168.64.1',2,36,34485,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00804ciyqlkdguev',1,'Admin',1672319394,'192.168.64.1',2,36,34486,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00814ciye747rn2a',1,'Admin',1672319394,'192.168.64.1',2,36,34487,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00824ciy3w323k2d',1,'Admin',1672319394,'192.168.64.1',2,36,34488,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00834ciyqebyt3db',1,'Admin',1672319394,'192.168.64.1',2,36,34489,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00844ciyv7wexvsa',1,'Admin',1672319394,'192.168.64.1',2,36,34490,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00854ciy7w8oyieo',1,'Admin',1672319394,'192.168.64.1',2,36,34491,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00864ciyeosxp5xv',1,'Admin',1672319394,'192.168.64.1',2,36,34492,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00874ciy9v72e000',1,'Admin',1672319394,'192.168.64.1',2,36,34493,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00884ciyzbmouvw3',1,'Admin',1672319394,'192.168.64.1',2,36,34494,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00894ciygpfn2t4v',1,'Admin',1672319394,'192.168.64.1',2,36,34495,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008a4ciy2ii2rv4j',1,'Admin',1672319394,'192.168.64.1',2,36,34496,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008b4ciyfy9ok7ao',1,'Admin',1672319394,'192.168.64.1',2,36,34497,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008c4ciy2u2by1xj',1,'Admin',1672319394,'192.168.64.1',2,36,34498,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008d4ciym8te9ui8',1,'Admin',1672319394,'192.168.64.1',2,36,34530,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008e4ciyn9mahdlk',1,'Admin',1672319394,'192.168.64.1',2,36,34531,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008f4ciy77fs6q4y',1,'Admin',1672319394,'192.168.64.1',2,36,34532,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008g4ciyvt64pt5g',1,'Admin',1672319394,'192.168.64.1',2,36,34533,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008h4ciydnjtez6b',1,'Admin',1672319394,'192.168.64.1',2,36,34534,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008i4ciygtt7nmxy',1,'Admin',1672319394,'192.168.64.1',2,36,34535,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008j4ciys76abkxc',1,'Admin',1672319394,'192.168.64.1',2,36,34536,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008k4ciyouei2upg',1,'Admin',1672319394,'192.168.64.1',2,36,34537,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008l4ciymlhy06xq',1,'Admin',1672319394,'192.168.64.1',2,36,34538,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008m4ciyiwkr2ozp',1,'Admin',1672319394,'192.168.64.1',2,36,34539,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008n4ciyt4rpeaek',1,'Admin',1672319394,'192.168.64.1',2,36,34540,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008o4ciyx9ejlg5a',1,'Admin',1672319394,'192.168.64.1',2,36,34541,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008p4ciydrg1xila',1,'Admin',1672319394,'192.168.64.1',2,36,34542,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008q4ciyih2usxeg',1,'Admin',1672319394,'192.168.64.1',2,36,34543,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008r4ciylg9i7p6v',1,'Admin',1672319394,'192.168.64.1',2,36,34544,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008s4ciy5ueikl9r',1,'Admin',1672319394,'192.168.64.1',2,36,34545,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008t4ciy1gaynuf2',1,'Admin',1672319394,'192.168.64.1',2,36,34546,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008u4ciyplm5pjxj',1,'Admin',1672319394,'192.168.64.1',2,36,34578,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008v4ciy7dk1qxn4',1,'Admin',1672319394,'192.168.64.1',2,36,34579,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008w4ciycnk2hlkm',1,'Admin',1672319394,'192.168.64.1',2,36,34580,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008x4ciyt530c12i',1,'Admin',1672319394,'192.168.64.1',2,36,34581,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008y4ciyb5altmuy',1,'Admin',1672319394,'192.168.64.1',2,36,34582,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008z4ciydfa8knm1',1,'Admin',1672319394,'192.168.64.1',2,36,34583,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00904ciyypx4828y',1,'Admin',1672319394,'192.168.64.1',2,36,34584,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00914ciyd0rozl9c',1,'Admin',1672319394,'192.168.64.1',2,36,34585,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00924ciyzf9x98w7',1,'Admin',1672319394,'192.168.64.1',2,36,34586,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00934ciyk7jilr00',1,'Admin',1672319394,'192.168.64.1',2,36,34587,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00944ciyt1csscf4',1,'Admin',1672319394,'192.168.64.1',2,36,34588,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00954ciyd79xhib4',1,'Admin',1672319394,'192.168.64.1',2,36,34589,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00964ciycffwxf2d',1,'Admin',1672319394,'192.168.64.1',2,36,34590,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00974ciywclsyuwd',1,'Admin',1672319394,'192.168.64.1',2,36,34591,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00984ciypbkof8z6',1,'Admin',1672319394,'192.168.64.1',2,36,34592,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00994ciygd3r2jtr',1,'Admin',1672319394,'192.168.64.1',2,36,34593,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009a4ciy1gccuiaf',1,'Admin',1672319394,'192.168.64.1',2,36,34594,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009b4ciyv2bm4bht',1,'Admin',1672319394,'192.168.64.1',2,36,34626,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009c4ciypo8pcwfr',1,'Admin',1672319394,'192.168.64.1',2,36,34627,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009d4ciyavjxvzwy',1,'Admin',1672319394,'192.168.64.1',2,36,34628,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009e4ciy93v3ml7v',1,'Admin',1672319394,'192.168.64.1',2,36,34629,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009f4ciyw9cxn9gx',1,'Admin',1672319394,'192.168.64.1',2,36,34630,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009g4ciy38rq0bpv',1,'Admin',1672319394,'192.168.64.1',2,36,34631,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009h4ciyf1em649u',1,'Admin',1672319394,'192.168.64.1',2,36,34632,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009i4ciyv5ips3ir',1,'Admin',1672319394,'192.168.64.1',2,36,34633,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009j4ciyeb6jnvd1',1,'Admin',1672319394,'192.168.64.1',2,36,34634,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009k4ciygbvs33nk',1,'Admin',1672319394,'192.168.64.1',2,36,34635,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009l4ciyioi72oln',1,'Admin',1672319394,'192.168.64.1',2,36,34636,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009m4ciym83wgo0j',1,'Admin',1672319394,'192.168.64.1',2,36,34637,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009n4ciyl6rxqacp',1,'Admin',1672319394,'192.168.64.1',2,36,34638,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009o4ciy0df6we55',1,'Admin',1672319394,'192.168.64.1',2,36,34639,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009p4ciy89qwi0xh',1,'Admin',1672319394,'192.168.64.1',2,36,34640,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009q4ciyefp4sxmo',1,'Admin',1672319394,'192.168.64.1',2,36,34641,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009r4ciygb57cc2t',1,'Admin',1672319394,'192.168.64.1',2,36,34642,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009s4ciygflutsdv',1,'Admin',1672319394,'192.168.64.1',2,36,34674,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009t4ciykicm0elb',1,'Admin',1672319394,'192.168.64.1',2,36,34675,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009u4ciy8s8aqpnj',1,'Admin',1672319394,'192.168.64.1',2,36,34676,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009v4ciyc3jxpkrb',1,'Admin',1672319394,'192.168.64.1',2,36,34677,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009w4ciylf5fb2oz',1,'Admin',1672319394,'192.168.64.1',2,36,34678,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009x4ciyxuej0glc',1,'Admin',1672319394,'192.168.64.1',2,36,34679,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009y4ciymjfha0lz',1,'Admin',1672319394,'192.168.64.1',2,36,34680,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009z4ciywscpd34l',1,'Admin',1672319394,'192.168.64.1',2,36,34681,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a04ciyt2pg0wb0',1,'Admin',1672319394,'192.168.64.1',2,36,34682,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a14ciyom05bqms',1,'Admin',1672319394,'192.168.64.1',2,36,34683,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a24ciysp91nhwg',1,'Admin',1672319394,'192.168.64.1',2,36,34684,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a34ciy28qil913',1,'Admin',1672319394,'192.168.64.1',2,36,34685,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a44ciyahklnnf8',1,'Admin',1672319394,'192.168.64.1',2,36,34686,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a54ciyd2t4b47w',1,'Admin',1672319394,'192.168.64.1',2,36,34687,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a64ciy0svmksyd',1,'Admin',1672319394,'192.168.64.1',2,36,34688,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a74ciyrhco1if9',1,'Admin',1672319394,'192.168.64.1',2,36,34689,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00a84ciymws1ntmg',1,'Admin',1672319394,'192.168.64.1',2,36,34690,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00a94ciyym539tkc',1,'Admin',1672319394,'192.168.64.1',2,36,34770,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00aa4ciymm0yzuy9',1,'Admin',1672319394,'192.168.64.1',2,36,34771,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ab4ciy4o63cno6',1,'Admin',1672319394,'192.168.64.1',2,36,34772,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ac4ciyfxsudg8g',1,'Admin',1672319394,'192.168.64.1',2,36,34773,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ad4ciyf6gth7s3',1,'Admin',1672319394,'192.168.64.1',2,36,34774,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ae4ciy5zu918pa',1,'Admin',1672319394,'192.168.64.1',2,36,34775,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00af4ciy9wngu7dj',1,'Admin',1672319394,'192.168.64.1',2,36,34776,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ag4ciyusoxowmu',1,'Admin',1672319394,'192.168.64.1',2,36,34777,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ah4ciyddryz7i8',1,'Admin',1672319394,'192.168.64.1',2,36,34778,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ai4ciy4lyrnc1w',1,'Admin',1672319394,'192.168.64.1',2,36,34779,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00aj4ciy5xewwyr6',1,'Admin',1672319394,'192.168.64.1',2,36,34780,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ak4ciyqy38hw9z',1,'Admin',1672319394,'192.168.64.1',2,36,34781,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00al4ciyjrcp5bgt',1,'Admin',1672319394,'192.168.64.1',2,36,34782,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00am4ciy49tmwrez',1,'Admin',1672319394,'192.168.64.1',2,36,34783,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00an4ciyin6w09mr',1,'Admin',1672319394,'192.168.64.1',2,36,34784,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ao4ciywf3xq8zi',1,'Admin',1672319394,'192.168.64.1',2,36,34785,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ap4ciynoxgy4tr',1,'Admin',1672319394,'192.168.64.1',2,36,34786,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00aq4ciylay9akj3',1,'Admin',1672319394,'192.168.64.1',2,36,34790,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ar4ciyw0kzbd8w',1,'Admin',1672319394,'192.168.64.1',2,36,34791,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00as4ciyn8qld30w',1,'Admin',1672319394,'192.168.64.1',2,36,34792,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00at4ciyowqn9f5q',1,'Admin',1672319394,'192.168.64.1',2,36,34824,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00au4ciy2hdph05e',1,'Admin',1672319394,'192.168.64.1',2,36,34825,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00av4ciy6ai6qdgh',1,'Admin',1672319394,'192.168.64.1',2,36,34826,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00aw4ciywg3ywajt',1,'Admin',1672319394,'192.168.64.1',2,36,34827,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ax4ciy6h9r74z3',1,'Admin',1672319394,'192.168.64.1',2,36,34828,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ay4ciyhivyg5te',1,'Admin',1672319394,'192.168.64.1',2,36,34829,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00az4ciy0l9ye9pw',1,'Admin',1672319394,'192.168.64.1',2,36,34830,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b04ciy1p70ek72',1,'Admin',1672319394,'192.168.64.1',2,36,34831,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b14ciyjvjsyr2x',1,'Admin',1672319394,'192.168.64.1',2,36,34832,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b24ciyttf9x7v8',1,'Admin',1672319394,'192.168.64.1',2,36,34833,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b34ciy5gqh5nq5',1,'Admin',1672319394,'192.168.64.1',2,36,34834,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b44ciyhux8shjj',1,'Admin',1672319394,'192.168.64.1',2,36,34835,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b54ciy78quuk3i',1,'Admin',1672319394,'192.168.64.1',2,36,34836,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b64ciy8iv3y9ey',1,'Admin',1672319394,'192.168.64.1',2,36,34837,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b74ciy6kj36ork',1,'Admin',1672319394,'192.168.64.1',2,36,34838,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b84ciyydqd8zla',1,'Admin',1672319394,'192.168.64.1',2,36,34839,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b94ciy8dfita1e',1,'Admin',1672319394,'192.168.64.1',2,36,34840,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ba4ciy4lam3lr5',1,'Admin',1672319394,'192.168.64.1',2,36,34872,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bb4ciysqrkx1x6',1,'Admin',1672319394,'192.168.64.1',2,36,34873,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bc4ciygv9mwc9h',1,'Admin',1672319394,'192.168.64.1',2,36,34874,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bd4ciy638w66gg',1,'Admin',1672319394,'192.168.64.1',2,36,34875,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00be4ciy8942mepk',1,'Admin',1672319394,'192.168.64.1',2,36,34876,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bf4ciybcwzthxh',1,'Admin',1672319394,'192.168.64.1',2,36,34877,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bg4ciy7e7oom2o',1,'Admin',1672319394,'192.168.64.1',2,36,34878,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bh4ciyqtdoh2k7',1,'Admin',1672319394,'192.168.64.1',2,36,34879,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bi4ciyga6xi54m',1,'Admin',1672319394,'192.168.64.1',2,36,34880,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bj4ciyw8gug8z6',1,'Admin',1672319394,'192.168.64.1',2,36,34881,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bk4ciyn4urr0w3',1,'Admin',1672319394,'192.168.64.1',2,36,34882,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bl4ciy7cv37o2j',1,'Admin',1672319394,'192.168.64.1',2,36,34883,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bm4ciyg693g6y1',1,'Admin',1672319394,'192.168.64.1',2,36,34884,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bn4ciyc4ahcrku',1,'Admin',1672319394,'192.168.64.1',2,36,34885,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bo4ciytoiymu1f',1,'Admin',1672319394,'192.168.64.1',2,36,34886,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bp4ciy9vi8hkrr',1,'Admin',1672319394,'192.168.64.1',2,36,34887,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bq4ciyucu9bpmw',1,'Admin',1672319394,'192.168.64.1',2,36,34888,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00br4ciywg3h6gja',1,'Admin',1672319394,'192.168.64.1',2,36,34920,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bs4ciy9ev1t5di',1,'Admin',1672319394,'192.168.64.1',2,36,34921,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bt4ciyn2lkc0mc',1,'Admin',1672319394,'192.168.64.1',2,36,34922,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bu4ciyci3bixzu',1,'Admin',1672319394,'192.168.64.1',2,36,34923,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bv4ciy2m93dn5x',1,'Admin',1672319394,'192.168.64.1',2,36,34924,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bw4ciywrwulay2',1,'Admin',1672319394,'192.168.64.1',2,36,34925,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bx4ciy6fsm6pyl',1,'Admin',1672319394,'192.168.64.1',2,36,34926,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00by4ciy3sfnxf3k',1,'Admin',1672319394,'192.168.64.1',2,36,34927,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bz4ciyi4nfnxmg',1,'Admin',1672319394,'192.168.64.1',2,36,34928,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c04ciyb8ueoooc',1,'Admin',1672319394,'192.168.64.1',2,36,34929,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c14ciyovr9zwev',1,'Admin',1672319394,'192.168.64.1',2,36,34930,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c24ciykml6dmbl',1,'Admin',1672319394,'192.168.64.1',2,36,34931,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c34ciyrk4mss4p',1,'Admin',1672319394,'192.168.64.1',2,36,34932,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c44ciyz3dz6cr4',1,'Admin',1672319394,'192.168.64.1',2,36,34933,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c54ciyul75lrsx',1,'Admin',1672319394,'192.168.64.1',2,36,34934,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c64ciy5aani0o8',1,'Admin',1672319394,'192.168.64.1',2,36,34935,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c74ciyf9em4048',1,'Admin',1672319394,'192.168.64.1',2,36,34936,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c84ciy197f41ys',1,'Admin',1672319394,'192.168.64.1',2,36,35047,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c94ciyyx5sddy7',1,'Admin',1672319394,'192.168.64.1',2,36,35048,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ca4ciy3b9hncag',1,'Admin',1672319394,'192.168.64.1',2,36,35049,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cb4ciyh0dev7td',1,'Admin',1672319394,'192.168.64.1',2,36,35050,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cc4ciyeexagvfj',1,'Admin',1672319394,'192.168.64.1',2,36,35051,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cd4ciyyigwzbm1',1,'Admin',1672319394,'192.168.64.1',2,36,35052,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ce4ciyecgsv3ea',1,'Admin',1672319394,'192.168.64.1',2,36,35053,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cf4ciyd051o6dl',1,'Admin',1672319394,'192.168.64.1',2,36,35054,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cg4ciy2z2qw1n1',1,'Admin',1672319394,'192.168.64.1',2,36,35055,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ch4ciy8hxbtmyu',1,'Admin',1672319394,'192.168.64.1',2,36,35056,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ci4ciypr6l8o9y',1,'Admin',1672319394,'192.168.64.1',2,36,35057,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cj4ciyu7yh0li5',1,'Admin',1672319394,'192.168.64.1',2,36,35058,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ck4ciyarbwuw00',1,'Admin',1672319394,'192.168.64.1',2,36,35059,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cl4ciyurdy2pd2',1,'Admin',1672319394,'192.168.64.1',2,36,35060,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cm4ciy3mtkiozz',1,'Admin',1672319394,'192.168.64.1',2,36,35061,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cn4ciyuxh50gq7',1,'Admin',1672319394,'192.168.64.1',2,36,35062,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00co4ciy8ny00p7t',1,'Admin',1672319394,'192.168.64.1',2,36,35063,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cp4ciylt86mk86',1,'Admin',1672319394,'192.168.64.1',2,36,35369,NULL,'Cisco ASAv: CPU [{#SNMPINDEX}] Utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cq4ciycqw0wej7',1,'Admin',1672319394,'192.168.64.1',2,36,35370,NULL,'Cisco ASAv: {#SNMPVALUE} Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cr4ciy8dk6m70x',1,'Admin',1672319394,'192.168.64.1',2,36,35371,NULL,'Cisco ASAv: {#SNMPVALUE} Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cs4ciyszeihggi',1,'Admin',1672319394,'192.168.64.1',2,36,35372,NULL,'Cisco ASAv: {#SNMPVALUE} Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ct4ciy32snwoav',1,'Admin',1672319394,'192.168.64.1',2,36,35373,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Administrative status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cu4ciyzfsmj8fb',1,'Admin',1672319394,'192.168.64.1',2,36,35374,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Interface description','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cv4ciyng0teqhu',1,'Admin',1672319394,'192.168.64.1',2,36,35375,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Link speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cw4ciycd8ubxwz',1,'Admin',1672319394,'192.168.64.1',2,36,35376,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming broadcast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cx4ciysfunqp7e',1,'Admin',1672319394,'192.168.64.1',2,36,35377,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming multicast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cy4ciyiyxyfqwj',1,'Admin',1672319394,'192.168.64.1',2,36,35378,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cz4ciypozxkqn3',1,'Admin',1672319394,'192.168.64.1',2,36,35379,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming unicast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d04ciybfsbegbp',1,'Admin',1672319394,'192.168.64.1',2,36,35380,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d14ciypatjweuc',1,'Admin',1672319394,'192.168.64.1',2,36,35381,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Interface name','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d24ciyh6p65oi2',1,'Admin',1672319394,'192.168.64.1',2,36,35382,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d34ciybbwqd33i',1,'Admin',1672319394,'192.168.64.1',2,36,35383,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing broadcast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d44ciybm4gqghb',1,'Admin',1672319394,'192.168.64.1',2,36,35384,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing multicast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d54ciyyr1vfmky',1,'Admin',1672319394,'192.168.64.1',2,36,35385,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d64ciydxwn7jeo',1,'Admin',1672319394,'192.168.64.1',2,36,35386,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing unicast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d74ciym99pby06',1,'Admin',1672319394,'192.168.64.1',2,36,35387,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d84ciypzd45jwt',1,'Admin',1672319394,'192.168.64.1',2,36,35388,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical class','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d94ciysofpgust',1,'Admin',1672319394,'192.168.64.1',2,36,35389,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical description','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00da4ciy8db032jf',1,'Admin',1672319394,'192.168.64.1',2,36,35390,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Hardware revision','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00db4ciyusrk0jni',1,'Admin',1672319394,'192.168.64.1',2,36,35391,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Manufacturer name','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dc4ciy13fg9wq9',1,'Admin',1672319394,'192.168.64.1',2,36,35392,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Model name','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dd4ciyv2n803he',1,'Admin',1672319394,'192.168.64.1',2,36,35393,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical name','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00de4ciy210u5gei',1,'Admin',1672319394,'192.168.64.1',2,36,35394,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00df4ciy98933ijq',1,'Admin',1672319394,'192.168.64.1',2,36,35395,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Software revision','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dg4ciyhvdzc0y2',1,'Admin',1672319394,'192.168.64.1',2,36,35396,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] ISP address','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dh4ciyufbdd650',1,'Admin',1672319394,'192.168.64.1',2,36,35397,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Local address','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00di4ciytresck09',1,'Admin',1672319394,'192.168.64.1',2,36,35398,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Algorithm validate packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dj4ciyrgb2jfg9',1,'Admin',1672319394,'192.168.64.1',2,36,35399,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authenticate method','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dk4ciyg2vptwzb',1,'Admin',1672319394,'192.168.64.1',2,36,35400,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authorize method','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dl4ciy0s9rz3xj',1,'Admin',1672319394,'192.168.64.1',2,36,35401,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session duration','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dm4ciyed9iz9ss',1,'Admin',1672319394,'192.168.64.1',2,36,35402,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Encryption algorithm','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dn4ciyj2jk8jf1',1,'Admin',1672319394,'192.168.64.1',2,36,35403,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Incoming traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00do4ciyulwefrln',1,'Admin',1672319394,'192.168.64.1',2,36,35404,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Outgoing traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dp4ciy0etslbrw',1,'Admin',1672319394,'192.168.64.1',2,36,35405,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session protocol','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dq4ciynrm2ntng',1,'Admin',1672319394,'192.168.64.1',2,36,40491,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dr4ciyvqag0zew',1,'Admin',1672319394,'192.168.64.1',2,36,40492,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ds4ciyv46uipa5',1,'Admin',1672319394,'192.168.64.1',2,36,40493,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dt4ciyzw0ixapb',1,'Admin',1672319394,'192.168.64.1',2,36,40494,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00du4ciyion542eh',1,'Admin',1672319394,'192.168.64.1',2,36,40495,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dv4ciy97wn5tom',1,'Admin',1672319394,'192.168.64.1',2,36,40496,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dw4ciy5rjafh3f',1,'Admin',1672319394,'192.168.64.1',2,36,40497,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dx4ciyrxync6de',1,'Admin',1672319394,'192.168.64.1',2,36,40498,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dy4ciyhm584ods',1,'Admin',1672319394,'192.168.64.1',2,36,40499,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dz4ciy809vzl2r',1,'Admin',1672319394,'192.168.64.1',2,36,40500,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e04ciyavi1ajop',1,'Admin',1672319394,'192.168.64.1',2,36,40517,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e14ciyw66kzfvc',1,'Admin',1672319394,'192.168.64.1',2,36,40518,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e24ciynrynvb33',1,'Admin',1672319394,'192.168.64.1',2,36,40519,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e34ciya4xtu2ho',1,'Admin',1672319394,'192.168.64.1',2,36,40520,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e44ciy0ehksgwj',1,'Admin',1672319394,'192.168.64.1',2,36,40521,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e54ciyfr4rwvvc',1,'Admin',1672319394,'192.168.64.1',2,36,40522,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e64ciyv7a3lfei',1,'Admin',1672319394,'192.168.64.1',2,36,40523,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e74ciycswkehd3',1,'Admin',1672319394,'192.168.64.1',2,36,40524,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e84ciykfrwtgpm',1,'Admin',1672319394,'192.168.64.1',2,36,40525,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e94ciy9q00x86w',1,'Admin',1672319394,'192.168.64.1',2,36,40526,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ea4ciyd12jfuum',1,'Admin',1672319394,'192.168.64.1',2,36,40527,NULL,'{#FSNAME}: Space utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eb4ciym3tamtlv',1,'Admin',1672319394,'192.168.64.1',2,36,40528,NULL,'{#FSNAME}: Total space','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ec4ciyymcdhkqr',1,'Admin',1672319394,'192.168.64.1',2,36,40529,NULL,'{#FSNAME}: Used space','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ed4ciykosnx620',1,'Admin',1672319394,'192.168.64.1',2,36,40530,NULL,'{#MEMNAME}: Total memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ee4ciycqqaycr6',1,'Admin',1672319394,'192.168.64.1',2,36,40531,NULL,'{#MEMNAME}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ef4ciybg77y8ve',1,'Admin',1672319394,'192.168.64.1',2,36,40532,NULL,'{#MEMNAME}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eg4ciy3cn207sz',1,'Admin',1672319394,'192.168.64.1',2,36,40545,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eh4ciy38daytbm',1,'Admin',1672319394,'192.168.64.1',2,36,40546,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ei4ciykh8fk447',1,'Admin',1672319394,'192.168.64.1',2,36,40547,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ej4ciyusf9y8ht',1,'Admin',1672319394,'192.168.64.1',2,36,40548,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ek4ciydhmzwsnf',1,'Admin',1672319394,'192.168.64.1',2,36,40549,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00el4ciy3z0reo00',1,'Admin',1672319394,'192.168.64.1',2,36,40550,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00em4ciywm96zvri',1,'Admin',1672319394,'192.168.64.1',2,36,40551,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00en4ciy0a9mruza',1,'Admin',1672319394,'192.168.64.1',2,36,40552,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eo4ciy38tdtpd2',1,'Admin',1672319394,'192.168.64.1',2,36,40553,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ep4ciymmpqcc9h',1,'Admin',1672319394,'192.168.64.1',2,36,40582,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eq4ciyetzq4ouk',1,'Admin',1672319394,'192.168.64.1',2,36,40583,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00er4ciy31hg0v7b',1,'Admin',1672319394,'192.168.64.1',2,36,40584,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00es4ciyr4vguxqa',1,'Admin',1672319394,'192.168.64.1',2,36,40585,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00et4ciygldubj9x',1,'Admin',1672319394,'192.168.64.1',2,36,40586,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eu4ciy7o8k9dft',1,'Admin',1672319394,'192.168.64.1',2,36,40587,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ev4ciyn4tsm9db',1,'Admin',1672319394,'192.168.64.1',2,36,40588,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ew4ciyk10jj0l8',1,'Admin',1672319394,'192.168.64.1',2,36,40589,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ex4ciy2f0oxum1',1,'Admin',1672319394,'192.168.64.1',2,36,40590,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ey4ciyh1x2stf8',1,'Admin',1672319394,'192.168.64.1',2,36,40591,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ez4ciyj1iheg2f',1,'Admin',1672319394,'192.168.64.1',2,36,40592,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f04ciyzhnhuau0',1,'Admin',1672319394,'192.168.64.1',2,36,40593,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f14ciyrp4trxof',1,'Admin',1672319394,'192.168.64.1',2,36,40594,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f24ciyfxlviww9',1,'Admin',1672319394,'192.168.64.1',2,36,40595,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f34ciy2a4rftez',1,'Admin',1672319394,'192.168.64.1',2,36,40596,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f44ciykvhoiu71',1,'Admin',1672319394,'192.168.64.1',2,36,40597,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f54ciy3zr2n0hh',1,'Admin',1672319394,'192.168.64.1',2,36,40598,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f64ciyl4ka9jw0',1,'Admin',1672319394,'192.168.64.1',2,36,40599,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f74ciyttnzv7jm',1,'Admin',1672319394,'192.168.64.1',2,36,40671,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f84ciytg3fiid0',1,'Admin',1672319394,'192.168.64.1',2,36,40672,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f94ciyi3ipusk6',1,'Admin',1672319394,'192.168.64.1',2,36,40673,NULL,'{#SENSOR_INFO}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fa4ciy1fpmcxjk',1,'Admin',1672319394,'192.168.64.1',2,36,40674,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fb4ciyii9g13t7',1,'Admin',1672319394,'192.168.64.1',2,36,40675,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fc4ciynsl9majk',1,'Admin',1672319394,'192.168.64.1',2,36,40676,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fd4ciy6e5djuap',1,'Admin',1672319394,'192.168.64.1',2,36,40677,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fe4ciywti27fei',1,'Admin',1672319394,'192.168.64.1',2,36,40678,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ff4ciyp870dkg2',1,'Admin',1672319394,'192.168.64.1',2,36,40679,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fg4ciy5pkk90li',1,'Admin',1672319394,'192.168.64.1',2,36,40680,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fh4ciyyemu8od3',1,'Admin',1672319394,'192.168.64.1',2,36,40681,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fi4ciys9r4p5g2',1,'Admin',1672319394,'192.168.64.1',2,36,40682,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fj4ciy65jx5336',1,'Admin',1672319394,'192.168.64.1',2,36,40683,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fk4ciysccaunmb',1,'Admin',1672319394,'192.168.64.1',2,36,40684,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fl4ciyhm6mqshg',1,'Admin',1672319394,'192.168.64.1',2,36,40685,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fm4ciykuot81fr',1,'Admin',1672319394,'192.168.64.1',2,36,40686,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fn4ciy5y2xkfr9',1,'Admin',1672319394,'192.168.64.1',2,36,40687,NULL,'{#SENSOR_INFO}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fo4ciyo56elkyx',1,'Admin',1672319394,'192.168.64.1',2,36,40688,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fp4ciy4o5el326',1,'Admin',1672319394,'192.168.64.1',2,36,40689,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fq4ciys6wxsedk',1,'Admin',1672319394,'192.168.64.1',2,36,43529,NULL,'AWS EC2 Alarms: [\"{#ALARM_NAME}\"]: State','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fr4ciyjweu69hb',1,'Admin',1672319394,'192.168.64.1',2,36,43530,NULL,'AWS EC2 Alarms: [\"{#ALARM_NAME}\"]: State reason','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fs4ciysc5iqd1r',1,'Admin',1672319394,'192.168.64.1',2,36,43528,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Get metrics','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ft4ciy6vfk4t3g',1,'Admin',1672319394,'192.168.64.1',2,36,43531,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Read, bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fu4ciy80s9c1ck',1,'Admin',1672319394,'192.168.64.1',2,36,43532,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Write, ops','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fv4ciy2ebrxz48',1,'Admin',1672319394,'192.168.64.1',2,36,43533,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Write, bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fw4ciyuno4tbvm',1,'Admin',1672319394,'192.168.64.1',2,36,43534,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Write time, total','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fx4ciyhyoduhkq',1,'Admin',1672319394,'192.168.64.1',2,36,43535,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Read time, total','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fy4ciyvpbcmxwe',1,'Admin',1672319394,'192.168.64.1',2,36,43536,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Throughput, pct','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fz4ciyme2hjfbe',1,'Admin',1672319394,'192.168.64.1',2,36,43537,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Read, ops','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g04ciymoduj6nj',1,'Admin',1672319394,'192.168.64.1',2,36,43538,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Attachment state','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g14ciyrfrr8urj',1,'Admin',1672319394,'192.168.64.1',2,36,43539,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Attachment time','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g24ciy1fecp4mr',1,'Admin',1672319394,'192.168.64.1',2,36,43540,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Idle time','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g34ciybe4ys4dk',1,'Admin',1672319394,'192.168.64.1',2,36,43541,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Consumed Read/Write, ops','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g44ciyhe8fbcbk',1,'Admin',1672319394,'192.168.64.1',2,36,43542,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Burst balance','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g54ciy0x2n8v64',1,'Admin',1672319394,'192.168.64.1',2,36,43543,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g64ciyb6lwn67f',1,'Admin',1672319394,'192.168.64.1',2,36,43544,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Device','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g74ciyvmgnf1ne',1,'Admin',1672319394,'192.168.64.1',2,36,43545,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Create time','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g84ciymo4zwr8i',1,'Admin',1672319394,'192.168.64.1',2,36,43546,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Queue length','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g94ciy5k653whf',1,'Admin',1672319394,'192.168.64.1',2,36,43646,NULL,'AWS RDS Alarms: [\"{#ALARM_NAME}\"]: State','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ga4ciy2kthkm0k',1,'Admin',1672319394,'192.168.64.1',2,36,43647,NULL,'AWS RDS Alarms: [\"{#ALARM_NAME}\"]: State reason','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gb4ciyptjuemas',1,'Admin',1672319394,'192.168.64.1',2,36,43648,NULL,'AWS RDS: Replication: Lag, max','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gc4ciy8s24gg9j',1,'Admin',1672319394,'192.168.64.1',2,36,43649,NULL,'AWS RDS: Replication: Lag, min','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gd4ciyw22avzpj',1,'Admin',1672319394,'192.168.64.1',2,36,43650,NULL,'AWS RDS: Replication: Lag','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ge4ciy3rcwb0zq',1,'Admin',1672319394,'192.168.64.1',2,36,43651,NULL,'AWS RDS: Buffer Cache hit ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gf4ciydfcz9hzo',1,'Admin',1672319394,'192.168.64.1',2,36,43652,NULL,'AWS RDS: Operations: Commit latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gg4ciy64kv57of',1,'Admin',1672319394,'192.168.64.1',2,36,43653,NULL,'AWS RDS: Operations: Commit throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gh4ciyih4lavku',1,'Admin',1672319394,'192.168.64.1',2,36,43654,NULL,'AWS RDS: Deadlocks, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gi4ciyl0y780s3',1,'Admin',1672319394,'192.168.64.1',2,36,43655,NULL,'AWS RDS: Engine uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gj4ciyo8pgdgk8',1,'Admin',1672319394,'192.168.64.1',2,36,43656,NULL,'AWS RDS: Rollback segment history list length','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gk4ciy7yqaumpe',1,'Admin',1672319394,'192.168.64.1',2,36,43657,NULL,'AWS RDS: Row lock time','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gl4ciyvgwgmity',1,'Admin',1672319394,'192.168.64.1',2,36,43658,NULL,'AWS RDS: Operations: Select latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gm4ciyfsgyj8at',1,'Admin',1672319394,'192.168.64.1',2,36,43659,NULL,'AWS RDS: Operations: Select throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gn4ciyb4sz87md',1,'Admin',1672319394,'192.168.64.1',2,36,43660,NULL,'AWS RDS: Network: Throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00go4ciyfvmzmr4o',1,'Admin',1672319394,'192.168.64.1',2,36,43661,NULL,'AWS RDS Events: [{#EVENT_CATEGORY}]: {#EVENT_SOURCE_TYPE}/{#EVENT_SOURCE_ID} : Date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gp4ciy0tqemlt2',1,'Admin',1672319394,'192.168.64.1',2,36,43662,NULL,'AWS RDS Events: [{#EVENT_CATEGORY}]: {#EVENT_SOURCE_TYPE}/{#EVENT_SOURCE_ID}: Message','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gq4ciyra96q9vw',1,'Admin',1672319394,'192.168.64.1',2,36,43663,NULL,'AWS RDS: Connections: Aborted','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gr4ciywxixwh91',1,'Admin',1672319394,'192.168.64.1',2,36,43664,NULL,'AWS RDS: DML: Throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gs4ciydthxirfl',1,'Admin',1672319394,'192.168.64.1',2,36,43665,NULL,'AWS RDS: Operations: Update latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gt4ciy3piifrhb',1,'Admin',1672319394,'192.168.64.1',2,36,43666,NULL,'AWS RDS: Binary log files, size','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gu4ciykb3rdjxh',1,'Admin',1672319394,'192.168.64.1',2,36,43667,NULL,'AWS RDS: Resultset cache hit ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gv4ciyd99ccghd',1,'Admin',1672319394,'192.168.64.1',2,36,43668,NULL,'AWS RDS: Queries, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gw4ciyp4nfzio8',1,'Admin',1672319394,'192.168.64.1',2,36,43669,NULL,'AWS RDS: Binary log files, number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gx4ciyemextog3',1,'Admin',1672319394,'192.168.64.1',2,36,43670,NULL,'AWS RDS: Login failures, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gy4ciyjteyjs2m',1,'Admin',1672319394,'192.168.64.1',2,36,43671,NULL,'AWS RDS: Operations: Insert throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gz4ciydg0qfuge',1,'Admin',1672319394,'192.168.64.1',2,36,43672,NULL,'AWS RDS: Operations: Insert latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h04ciyeap63xy9',1,'Admin',1672319394,'192.168.64.1',2,36,43673,NULL,'AWS RDS: DML: Latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h14ciy7qo94ej2',1,'Admin',1672319394,'192.168.64.1',2,36,43674,NULL,'AWS RDS: Replication: Binlog lag','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h24ciy7vk2tbx9',1,'Admin',1672319394,'192.168.64.1',2,36,43675,NULL,'AWS RDS: Operations: Delete throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h34ciy5aac1s4j',1,'Admin',1672319394,'192.168.64.1',2,36,43676,NULL,'AWS RDS: Operations: Delete latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h44ciywrr9umqy',1,'Admin',1672319394,'192.168.64.1',2,36,43677,NULL,'AWS RDS: DDL: Throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h54ciyet90600l',1,'Admin',1672319394,'192.168.64.1',2,36,43678,NULL,'AWS RDS: DDL: Latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h64ciyxarlwfj4',1,'Admin',1672319394,'192.168.64.1',2,36,43679,NULL,'AWS RDS: Transactions: Blocked, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h74ciyx6vjgwyq',1,'Admin',1672319394,'192.168.64.1',2,36,43680,NULL,'AWS RDS: Backtrack: Window, alert','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h84ciywwiuuda0',1,'Admin',1672319394,'192.168.64.1',2,36,43681,NULL,'AWS RDS: Backtrack: Window, actual','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h94ciyer7mnu7m',1,'Admin',1672319394,'192.168.64.1',2,36,43682,NULL,'AWS RDS: Transactions: Active, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ha4ciy7gxptaw0',1,'Admin',1672319394,'192.168.64.1',2,36,43683,NULL,'AWS RDS: Operations: Update throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hb4ciydezojmqh',1,'Admin',1672319394,'192.168.64.1',2,36,43712,NULL,'AWS S3 Alarms: [\"{#ALARM_NAME}\"]: State','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hc4ciyc7h5jl5d',1,'Admin',1672319394,'192.168.64.1',2,36,43713,NULL,'AWS S3 Alarms: [\"{#ALARM_NAME}\"]: State reason','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hd4ciy68mtd1v2',1,'Admin',1672319394,'192.168.64.1',2,36,44337,NULL,'Apache: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00he4ciyxdk7ae5f',1,'Admin',1672319394,'192.168.64.1',2,36,44338,NULL,'Apache: Get process data','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hf4ciy24omumzp',1,'Admin',1672319394,'192.168.64.1',2,36,44339,NULL,'Apache: Number of running processes','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hg4ciygpzxwfmd',1,'Admin',1672319394,'192.168.64.1',2,36,44340,NULL,'Apache: Memory usage, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hh4ciy4r96o4d6',1,'Admin',1672319394,'192.168.64.1',2,36,44341,NULL,'Apache: Memory usage (rss)','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hi4ciype6fn4t5',1,'Admin',1672319394,'192.168.64.1',2,36,44342,NULL,'Apache: Memory usage (vsize)','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hj4ciy17focv7c',1,'Admin',1672319394,'192.168.64.1',2,37,10533,NULL,'Azure virtual machine {#NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hk4ciydkzc9eb4',1,'Admin',1672319394,'192.168.64.1',2,37,10536,NULL,'{#AWS.EC2.INSTANCE.ID}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hl4ciyiwl5j8a2',1,'Admin',1672319394,'192.168.64.1',2,37,10537,NULL,'{#AWS.RDS.INSTANCE.ID}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hm4ciycpb0ebra',1,'Admin',1672319394,'192.168.64.1',2,37,10538,NULL,'{#AWS.S3.NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hn4ciymra0ykap',1,'Admin',1672319394,'192.168.64.1',2,37,10541,NULL,'Azure MySQL server {#NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00ho4ciyon6s7zxb',1,'Admin',1672319394,'192.168.64.1',2,37,10545,NULL,'Azure PostgreSQL server {#NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hp4ciy0oym97ii',1,'Admin',1672319394,'192.168.64.1',2,15,42175,NULL,'Host name of Zabbix agent running','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hq4ciyqli8sb1v',1,'Admin',1672319394,'192.168.64.1',2,15,42176,NULL,'Zabbix agent ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hr4ciyl0m55dip',1,'Admin',1672319394,'192.168.64.1',2,15,42177,NULL,'Version of Zabbix agent running','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hs4ciyh2qrgm9v',1,'Admin',1672319394,'192.168.64.1',2,15,22917,NULL,'Number of running processes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ht4ciym5ptc24v',1,'Admin',1672319394,'192.168.64.1',2,15,22918,NULL,'Number of processes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hu4ciysnlaofzs',1,'Admin',1672319394,'192.168.64.1',2,15,22920,NULL,'Interrupts per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hv4ciyooopdwfv',1,'Admin',1672319394,'192.168.64.1',2,15,22921,NULL,'Processor load (15 min average per core)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hw4ciy1vm5ufhj',1,'Admin',1672319394,'192.168.64.1',2,15,22922,NULL,'Processor load (1 min average per core)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hx4ciyiwv6evt8',1,'Admin',1672319394,'192.168.64.1',2,15,22923,NULL,'Processor load (5 min average per core)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hy4ciyfyx816ti',1,'Admin',1672319394,'192.168.64.1',2,15,22924,NULL,'Context switches per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hz4ciyw8o980wf',1,'Admin',1672319394,'192.168.64.1',2,15,22933,NULL,'Host name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i04ciyaejg7y2y',1,'Admin',1672319394,'192.168.64.1',2,15,22934,NULL,'Host local time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i14ciyr3z5n9ia',1,'Admin',1672319394,'192.168.64.1',2,15,23108,NULL,'CPU available physical processors in the shared pool','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i24ciyreczjvd9',1,'Admin',1672319394,'192.168.64.1',2,15,23109,NULL,'CPU entitled capacity consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i34ciyb6nyhr1q',1,'Admin',1672319394,'192.168.64.1',2,15,23110,NULL,'CPU idle time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i44ciyh170tu0y',1,'Admin',1672319394,'192.168.64.1',2,15,23111,NULL,'CPU logical processor utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i54ciy11um1vq9',1,'Admin',1672319394,'192.168.64.1',2,15,23112,NULL,'CPU number of physical processors consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i64ciyqfe37m9x',1,'Admin',1672319394,'192.168.64.1',2,15,23113,NULL,'CPU system time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i74ciya7taq7m0',1,'Admin',1672319394,'192.168.64.1',2,15,23114,NULL,'CPU user time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i84ciyd01hiv68',1,'Admin',1672319394,'192.168.64.1',2,15,23115,NULL,'CPU iowait time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i94ciy3ie05iho',1,'Admin',1672319394,'192.168.64.1',2,15,23116,NULL,'Amount of data transferred','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ia4ciyyh9dqyq3',1,'Admin',1672319394,'192.168.64.1',2,15,23117,NULL,'Number of transfers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ib4ciyp95htqxw',1,'Admin',1672319394,'192.168.64.1',2,15,23118,NULL,'Processor units is entitled to receive','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ic4ciyfia03c83',1,'Admin',1672319394,'192.168.64.1',2,15,23119,NULL,'Kernel thread context switches','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00id4ciys9vmygbv',1,'Admin',1672319394,'192.168.64.1',2,15,23120,NULL,'Device interrupts','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ie4ciyhr9gg9aa',1,'Admin',1672319394,'192.168.64.1',2,15,23121,NULL,'System calls','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00if4ciy4fvf4kb9',1,'Admin',1672319394,'192.168.64.1',2,15,23122,NULL,'Length of the swap queue','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ig4ciy065zfwsz',1,'Admin',1672319394,'192.168.64.1',2,15,23123,NULL,'Length of the run queue','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ih4ciyeu9ij7l2',1,'Admin',1672319394,'192.168.64.1',2,15,23124,NULL,'Active virtual pages','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ii4ciy78q45nen',1,'Admin',1672319394,'192.168.64.1',2,15,23125,NULL,'Free real memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ij4ciyz30j1fst',1,'Admin',1672319394,'192.168.64.1',2,15,23126,NULL,'File page-ins per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ik4ciy73qed66f',1,'Admin',1672319394,'192.168.64.1',2,15,23127,NULL,'File page-outs per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00il4ciy4hlqlp3n',1,'Admin',1672319394,'192.168.64.1',2,15,23128,NULL,'Pages freed (page replacement)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00im4ciy1c2jdmw7',1,'Admin',1672319394,'192.168.64.1',2,15,23129,NULL,'Pages paged in from paging space','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00in4ciyxfpkx2ab',1,'Admin',1672319394,'192.168.64.1',2,15,23130,NULL,'Pages paged out to paging space','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00io4ciyzkmfmp0b',1,'Admin',1672319394,'192.168.64.1',2,15,23131,NULL,'Pages scanned by page-replacement algorithm','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ip4ciy3gdy87jy',1,'Admin',1672319394,'192.168.64.1',2,15,22938,NULL,'System information','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iq4ciytzset3pt',1,'Admin',1672319394,'192.168.64.1',2,15,22939,NULL,'System uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ir4ciyeqkfxouy',1,'Admin',1672319394,'192.168.64.1',2,15,22940,NULL,'Number of logged in users','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00is4ciy876e7k3c',1,'Admin',1672319394,'192.168.64.1',2,15,22941,NULL,'Checksum of /etc/passwd','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00it4ciyyuexq8q9',1,'Admin',1672319394,'192.168.64.1',2,15,44427,NULL,'Get filesystems','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iu4ciybec3tuxc',1,'Admin',1672319394,'192.168.64.1',2,15,22942,NULL,'Available memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iv4ciyfkrzwh7u',1,'Admin',1672319394,'192.168.64.1',2,15,22943,NULL,'Total memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iw4ciyzeu1zb83',1,'Admin',1672319394,'192.168.64.1',2,15,42178,NULL,'Zabbix agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ix4ciy9wpl64w4',1,'Admin',1672319394,'192.168.64.1',2,15,40478,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iy4ciyonz2xi5z',1,'Admin',1672319394,'192.168.64.1',2,15,40482,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iz4ciy5dfuk5ge',1,'Admin',1672319394,'192.168.64.1',2,15,40487,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j04ciyg8iadc4f',1,'Admin',1672319394,'192.168.64.1',2,15,40486,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j14ciyexgfg9bk',1,'Admin',1672319394,'192.168.64.1',2,15,40485,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j24ciyk1zut487',1,'Admin',1672319394,'192.168.64.1',2,15,27208,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j34ciyajw5uu3k',1,'Admin',1672319394,'192.168.64.1',2,15,40484,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j44ciyzarl3vyv',1,'Admin',1672319394,'192.168.64.1',2,15,27203,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j54ciyuevjz9q1',1,'Admin',1672319394,'192.168.64.1',2,15,43770,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j64ciyo436tbz3',1,'Admin',1672319394,'192.168.64.1',2,15,40483,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j74ciyhil4uk25',1,'Admin',1672319394,'192.168.64.1',2,15,40481,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j84ciynmnxs8vc',1,'Admin',1672319394,'192.168.64.1',2,15,40480,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j94ciyyhm9s8vz',1,'Admin',1672319394,'192.168.64.1',2,15,40479,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ja4ciy3sycum3t',1,'Admin',1672319394,'192.168.64.1',2,15,30086,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jb4ciyauml8ejd',1,'Admin',1672319394,'192.168.64.1',2,15,30087,NULL,'Available memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jc4ciy2vw1jn86',1,'Admin',1672319394,'192.168.64.1',2,15,30088,NULL,'Total memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jd4ciyse8a48dr',1,'Admin',1672319394,'192.168.64.1',2,15,27207,NULL,'Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00je4ciycaa67hzu',1,'Admin',1672319394,'192.168.64.1',2,15,30089,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jf4ciy91rbofzd',1,'Admin',1672319394,'192.168.64.1',2,15,40488,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jg4ciy9m7wos08',1,'Admin',1672319394,'192.168.64.1',2,15,40533,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jh4ciylv414txt',1,'Admin',1672319394,'192.168.64.1',2,15,40534,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ji4ciyixdisnpa',1,'Admin',1672319394,'192.168.64.1',2,15,40535,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jj4ciy8v1gnh6w',1,'Admin',1672319394,'192.168.64.1',2,15,40536,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jk4ciyl6cc1bt3',1,'Admin',1672319394,'192.168.64.1',2,15,40537,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jl4ciy8bmt1z76',1,'Admin',1672319394,'192.168.64.1',2,15,27240,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jm4ciycorxz84c',1,'Admin',1672319394,'192.168.64.1',2,15,40538,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jn4ciyxhv9zlpd',1,'Admin',1672319394,'192.168.64.1',2,15,27236,NULL,'Firmware version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jo4ciyejucddjd',1,'Admin',1672319394,'192.168.64.1',2,15,27237,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jp4ciylj9fq3ta',1,'Admin',1672319394,'192.168.64.1',2,15,43772,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jq4ciyalg05hqe',1,'Admin',1672319394,'192.168.64.1',2,15,40539,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jr4ciy20t7hoyi',1,'Admin',1672319394,'192.168.64.1',2,15,40540,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00js4ciyswon7nra',1,'Admin',1672319394,'192.168.64.1',2,15,40542,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jt4ciyvoqla72s',1,'Admin',1672319394,'192.168.64.1',2,15,40541,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ju4ciymo4jrm0p',1,'Admin',1672319394,'192.168.64.1',2,15,27238,NULL,'Overall system health status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jv4ciy0nw7cvsy',1,'Admin',1672319394,'192.168.64.1',2,15,30093,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jw4ciy8owgbodm',1,'Admin',1672319394,'192.168.64.1',2,15,40543,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jx4ciy91227v1n',1,'Admin',1672319394,'192.168.64.1',2,15,27294,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jy4ciy4ccwwzqz',1,'Admin',1672319394,'192.168.64.1',2,15,30094,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jz4ciy4mqddojh',1,'Admin',1672319394,'192.168.64.1',2,15,40554,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k04ciyd35q5m7o',1,'Admin',1672319394,'192.168.64.1',2,15,40555,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k14ciy6biaf0j2',1,'Admin',1672319394,'192.168.64.1',2,15,40556,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k24ciym0jzyv9r',1,'Admin',1672319394,'192.168.64.1',2,15,40557,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k34ciyo6vyxfxj',1,'Admin',1672319394,'192.168.64.1',2,15,40558,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k44ciy4cx9yvr1',1,'Admin',1672319394,'192.168.64.1',2,15,40559,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k54ciyhbaukmxz',1,'Admin',1672319394,'192.168.64.1',2,15,40560,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k64ciyo04pcxno',1,'Admin',1672319394,'192.168.64.1',2,15,27295,NULL,'Firmware version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k74ciyhv2ffilx',1,'Admin',1672319394,'192.168.64.1',2,15,27296,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k84ciys84dnjkp',1,'Admin',1672319394,'192.168.64.1',2,15,43773,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k94ciy6qu5jnhb',1,'Admin',1672319394,'192.168.64.1',2,15,40561,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ka4ciy9gteesz8',1,'Admin',1672319394,'192.168.64.1',2,15,40562,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kb4ciyjloz1rwy',1,'Admin',1672319394,'192.168.64.1',2,15,40564,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kc4ciy28i0uasg',1,'Admin',1672319394,'192.168.64.1',2,15,40563,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kd4ciy40n958iw',1,'Admin',1672319394,'192.168.64.1',2,15,40565,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ke4ciygw270h4c',1,'Admin',1672319394,'192.168.64.1',2,15,40566,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kf4ciy6kb654x3',1,'Admin',1672319394,'192.168.64.1',2,15,40567,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kg4ciyykygrjsa',1,'Admin',1672319394,'192.168.64.1',2,15,40568,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kh4ciyd2n840rd',1,'Admin',1672319394,'192.168.64.1',2,15,40569,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ki4ciydqv1kflj',1,'Admin',1672319394,'192.168.64.1',2,15,40570,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kj4ciyqif0ch2i',1,'Admin',1672319394,'192.168.64.1',2,15,40571,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kk4ciynautsp3s',1,'Admin',1672319394,'192.168.64.1',2,15,40572,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kl4ciy08735x8s',1,'Admin',1672319394,'192.168.64.1',2,15,40573,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00km4ciywua0zdao',1,'Admin',1672319394,'192.168.64.1',2,15,27297,NULL,'Firmware version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kn4ciyp54s9oij',1,'Admin',1672319394,'192.168.64.1',2,15,43774,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ko4ciy3silplhp',1,'Admin',1672319394,'192.168.64.1',2,15,40574,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kp4ciyx1b2aec6',1,'Admin',1672319394,'192.168.64.1',2,15,40575,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kq4ciyrjsrz6jp',1,'Admin',1672319394,'192.168.64.1',2,15,40577,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kr4ciyfo74nl1x',1,'Admin',1672319394,'192.168.64.1',2,15,40576,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ks4ciyewwv67gj',1,'Admin',1672319394,'192.168.64.1',2,15,40578,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kt4ciym53g56ty',1,'Admin',1672319394,'192.168.64.1',2,15,40579,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ku4ciy1wsrgqk9',1,'Admin',1672319394,'192.168.64.1',2,15,27379,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kv4ciy9vjz9pgn',1,'Admin',1672319394,'192.168.64.1',2,15,27378,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kw4ciyqev106sg',1,'Admin',1672319394,'192.168.64.1',2,15,30097,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kx4ciyhpgysyil',1,'Admin',1672319394,'192.168.64.1',2,15,40615,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ky4ciym9vdzunb',1,'Admin',1672319394,'192.168.64.1',2,15,40616,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kz4ciyjr2qm3wd',1,'Admin',1672319394,'192.168.64.1',2,15,40617,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l04ciy3lcdkkr9',1,'Admin',1672319394,'192.168.64.1',2,15,40618,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l14ciy40kvgzxc',1,'Admin',1672319394,'192.168.64.1',2,15,40619,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l24ciyiz1f64pq',1,'Admin',1672319394,'192.168.64.1',2,15,40620,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l34ciytmod48c1',1,'Admin',1672319394,'192.168.64.1',2,15,40621,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l44ciyr3ukme35',1,'Admin',1672319394,'192.168.64.1',2,15,40622,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l54ciy9xekjmcu',1,'Admin',1672319394,'192.168.64.1',2,15,43781,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l64ciy1px0mt64',1,'Admin',1672319394,'192.168.64.1',2,15,40623,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l74ciy3vv81y29',1,'Admin',1672319394,'192.168.64.1',2,15,40624,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l84ciya3pb44dw',1,'Admin',1672319394,'192.168.64.1',2,15,40627,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l94ciytoppkw8y',1,'Admin',1672319394,'192.168.64.1',2,15,40625,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00la4ciyutsv7ber',1,'Admin',1672319394,'192.168.64.1',2,15,40626,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lb4ciyn6wievty',1,'Admin',1672319394,'192.168.64.1',2,15,40628,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lc4ciyvrebs6jo',1,'Admin',1672319394,'192.168.64.1',2,15,40501,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ld4ciyga6zijov',1,'Admin',1672319394,'192.168.64.1',2,15,40502,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00le4ciylfjrqjpl',1,'Admin',1672319394,'192.168.64.1',2,15,40503,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lf4ciyt7idwqzl',1,'Admin',1672319394,'192.168.64.1',2,15,33181,NULL,'Get sensors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lg4ciyttctui2e',1,'Admin',1672319394,'192.168.64.1',2,15,40504,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lh4ciy3eodv5zp',1,'Admin',1672319394,'192.168.64.1',2,15,40505,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00li4ciy0cpy58wm',1,'Admin',1672319394,'192.168.64.1',2,15,40506,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lj4ciyyvnr1gtw',1,'Admin',1672319394,'192.168.64.1',2,15,40507,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lk4ciy28bqte19',1,'Admin',1672319394,'192.168.64.1',2,15,43771,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ll4ciyjyuybxo8',1,'Admin',1672319394,'192.168.64.1',2,15,40508,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lm4ciy02hruuew',1,'Admin',1672319394,'192.168.64.1',2,15,40509,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ln4ciyutxpwmn0',1,'Admin',1672319394,'192.168.64.1',2,15,40511,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lo4ciy1nze7ih0',1,'Admin',1672319394,'192.168.64.1',2,15,40510,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lp4ciy736myovl',1,'Admin',1672319394,'192.168.64.1',2,15,40512,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lq4ciy0lmz3l19',1,'Admin',1672319394,'192.168.64.1',2,15,28511,NULL,'Tomcat: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lr4ciy4ib27axo',1,'Admin',1672319394,'192.168.64.1',2,15,30902,NULL,'Apache: Total bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ls4ciy7qz6zoyo',1,'Admin',1672319394,'192.168.64.1',2,15,30903,NULL,'Apache: Bytes per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lt4ciyuxx6fg96',1,'Admin',1672319394,'192.168.64.1',2,15,30914,NULL,'Apache: Total requests','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lu4ciy5btmbf4x',1,'Admin',1672319394,'192.168.64.1',2,15,30913,NULL,'Apache: Requests per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lv4ciyevtn9bkz',1,'Admin',1672319394,'192.168.64.1',2,15,30912,NULL,'Apache: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lw4ciyt8sr2v5q',1,'Admin',1672319394,'192.168.64.1',2,15,30911,NULL,'Apache: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lx4ciyrie4uedj',1,'Admin',1672319394,'192.168.64.1',2,15,30908,NULL,'Apache: Workers idle cleanup','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ly4ciyp8oc795b',1,'Admin',1672319394,'192.168.64.1',2,15,30907,NULL,'Apache: Workers closing connection','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lz4ciyrdzx1375',1,'Admin',1672319394,'192.168.64.1',2,15,30906,NULL,'Apache: Workers DNS lookup','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m04ciy8nv3koob',1,'Admin',1672319394,'192.168.64.1',2,15,30905,NULL,'Apache: Workers finishing','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m14ciy51mtdzn7',1,'Admin',1672319394,'192.168.64.1',2,15,30904,NULL,'Apache: Workers keepalive (read)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m24ciy3yx4gqnq',1,'Admin',1672319394,'192.168.64.1',2,15,30915,NULL,'Apache: Workers logging','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m34ciyod4mr51n',1,'Admin',1672319394,'192.168.64.1',2,15,30897,NULL,'Apache: Workers reading request','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m44ciy7aujjf8c',1,'Admin',1672319394,'192.168.64.1',2,15,30901,NULL,'Apache: Workers sending reply','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m54ciyx9kr53pe',1,'Admin',1672319394,'192.168.64.1',2,15,30900,NULL,'Apache: Workers slot with no current process','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m64ciyssk5brw3',1,'Admin',1672319394,'192.168.64.1',2,15,30899,NULL,'Apache: Workers starting up','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m74ciyaol5b2cn',1,'Admin',1672319394,'192.168.64.1',2,15,30898,NULL,'Apache: Workers waiting for connection','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m84ciyb62dvauq',1,'Admin',1672319394,'192.168.64.1',2,15,30910,NULL,'Apache: Total workers busy','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m94ciy92zy86mn',1,'Admin',1672319394,'192.168.64.1',2,15,30909,NULL,'Apache: Total workers idle','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ma4ciyo4ouw3wm',1,'Admin',1672319394,'192.168.64.1',2,15,28748,NULL,'Apache: Service response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mb4ciyje1qpxnh',1,'Admin',1672319394,'192.168.64.1',2,15,28743,NULL,'Apache: Service ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mc4ciy0cyo2l40',1,'Admin',1672319394,'192.168.64.1',2,15,44335,NULL,'Apache: Get processes summary','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00md4ciycmulxy4d',1,'Admin',1672319394,'192.168.64.1',2,15,30896,NULL,'Apache: Get status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00me4ciyxka2j68b',1,'Admin',1672319394,'192.168.64.1',2,15,28795,NULL,'Apache: Total bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mf4ciyoa005tll',1,'Admin',1672319394,'192.168.64.1',2,15,28794,NULL,'Apache: Bytes per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mg4ciy6spknp7y',1,'Admin',1672319394,'192.168.64.1',2,15,28775,NULL,'Apache: Get status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mh4ciya83hwp08',1,'Admin',1672319394,'192.168.64.1',2,15,28792,NULL,'Apache: Total requests','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mi4ciyjzp4fzvn',1,'Admin',1672319394,'192.168.64.1',2,15,28793,NULL,'Apache: Requests per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mj4ciy7tqju9my',1,'Admin',1672319394,'192.168.64.1',2,15,28791,NULL,'Apache: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mk4ciyr5uu69kn',1,'Admin',1672319394,'192.168.64.1',2,15,28790,NULL,'Apache: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ml4ciywosthwme',1,'Admin',1672319394,'192.168.64.1',2,15,28784,NULL,'Apache: Workers idle cleanup','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mm4ciy1uzuyyac',1,'Admin',1672319394,'192.168.64.1',2,15,28786,NULL,'Apache: Workers closing connection','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mn4ciyc9rzarnm',1,'Admin',1672319394,'192.168.64.1',2,15,28787,NULL,'Apache: Workers DNS lookup','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mo4ciyvjod6oo4',1,'Admin',1672319394,'192.168.64.1',2,15,28785,NULL,'Apache: Workers finishing','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mp4ciylygftqkx',1,'Admin',1672319394,'192.168.64.1',2,15,28783,NULL,'Apache: Workers keepalive (read)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mq4ciy6woe8knc',1,'Admin',1672319394,'192.168.64.1',2,15,28782,NULL,'Apache: Workers logging','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mr4ciy6ss0oom8',1,'Admin',1672319394,'192.168.64.1',2,15,28781,NULL,'Apache: Workers reading request','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ms4ciy3z5navgz',1,'Admin',1672319394,'192.168.64.1',2,15,28780,NULL,'Apache: Workers sending reply','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mt4ciyll41egvy',1,'Admin',1672319394,'192.168.64.1',2,15,28779,NULL,'Apache: Workers slot with no current process','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mu4ciy55377d8x',1,'Admin',1672319394,'192.168.64.1',2,15,28778,NULL,'Apache: Workers starting up','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mv4ciyjgkw74qd',1,'Admin',1672319394,'192.168.64.1',2,15,28796,NULL,'Apache: Workers waiting for connection','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mw4ciyejvaszjp',1,'Admin',1672319394,'192.168.64.1',2,15,28789,NULL,'Apache: Total workers busy','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mx4ciy5k0oy3a3',1,'Admin',1672319394,'192.168.64.1',2,15,28788,NULL,'Apache: Total workers idle','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00my4ciyx9r0db5w',1,'Admin',1672319394,'192.168.64.1',2,15,28777,NULL,'Apache: Service response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mz4ciyjy2srz5s',1,'Admin',1672319394,'192.168.64.1',2,15,28776,NULL,'Apache: Service ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n04ciy9ngy241p',1,'Admin',1672319394,'192.168.64.1',2,15,30685,NULL,'Get IPMI sensors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n14ciyouxav0qo',1,'Admin',1672319394,'192.168.64.1',2,15,31792,NULL,'Asterisk: Active calls','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n24ciyd075sovs',1,'Admin',1672319394,'192.168.64.1',2,15,31794,NULL,'Asterisk: Active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n34ciyft75gfxq',1,'Admin',1672319394,'192.168.64.1',2,15,31801,NULL,'Asterisk: Calls processed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n44ciyfquqq11q',1,'Admin',1672319394,'192.168.64.1',2,15,31800,NULL,'Asterisk: Calls processed per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n54ciypebjhhh6',1,'Admin',1672319394,'192.168.64.1',2,15,31784,NULL,'Asterisk: Get stats','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n64ciy0rplgsn5',1,'Admin',1672319394,'192.168.64.1',2,15,36771,NULL,'Asterisk: IAX trunks active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n74ciycv91b4i1',1,'Admin',1672319394,'192.168.64.1',2,15,31799,NULL,'Asterisk: IAX offline peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n84ciyir1j2y1d',1,'Admin',1672319394,'192.168.64.1',2,15,33390,NULL,'Asterisk: IAX online peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n94ciy0ycp97a6',1,'Admin',1672319394,'192.168.64.1',2,15,31798,NULL,'Asterisk: IAX peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00na4ciyxcim1nf6',1,'Admin',1672319394,'192.168.64.1',2,15,31797,NULL,'Asterisk: IAX unmonitored peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nb4ciy9qsp4qjd',1,'Admin',1672319394,'192.168.64.1',2,15,36770,NULL,'Asterisk: PJSIP trunks active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nc4ciyqn7qg405',1,'Admin',1672319394,'192.168.64.1',2,15,33389,NULL,'Asterisk: PJSIP available endpoints','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nd4ciyg28ycici',1,'Admin',1672319394,'192.168.64.1',2,15,31796,NULL,'Asterisk: PJSIP endpoints','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ne4ciym2x1lfho',1,'Admin',1672319394,'192.168.64.1',2,15,31795,NULL,'Asterisk: PJSIP unavailable endpoints','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nf4ciy2we8pdi4',1,'Admin',1672319394,'192.168.64.1',2,15,36769,NULL,'Asterisk: SIP trunks active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ng4ciyqoucqhf0',1,'Admin',1672319394,'192.168.64.1',2,15,31802,NULL,'Asterisk: SIP monitored offline','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nh4ciyfgerpcmz',1,'Admin',1672319394,'192.168.64.1',2,15,31793,NULL,'Asterisk: SIP monitored online','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ni4ciy2my3iwm5',1,'Admin',1672319394,'192.168.64.1',2,15,31785,NULL,'Asterisk: SIP peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nj4ciymmbpky6n',1,'Admin',1672319394,'192.168.64.1',2,15,31791,NULL,'Asterisk: SIP unmonitored offline','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nk4ciy4oxi7yiy',1,'Admin',1672319394,'192.168.64.1',2,15,31790,NULL,'Asterisk: SIP unmonitored online','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nl4ciycccj1b6f',1,'Admin',1672319394,'192.168.64.1',2,15,31789,NULL,'Asterisk: Total queues','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nm4ciyribs52ed',1,'Admin',1672319394,'192.168.64.1',2,15,31788,NULL,'Asterisk: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nn4ciyvyfyrm30',1,'Admin',1672319394,'192.168.64.1',2,15,31787,NULL,'Asterisk: Uptime after reload','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00no4ciy2zftben9',1,'Admin',1672319394,'192.168.64.1',2,15,31786,NULL,'Asterisk: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00np4ciyhsbv4uja',1,'Admin',1672319394,'192.168.64.1',2,15,31783,NULL,'Asterisk: Service response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nq4ciywhdm22h7',1,'Admin',1672319394,'192.168.64.1',2,15,31782,NULL,'Asterisk: Service status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nr4ciy2kcjeq2r',1,'Admin',1672319394,'192.168.64.1',2,15,32117,NULL,'Ceph: Get df','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ns4ciyclb7hext',1,'Admin',1672319394,'192.168.64.1',2,15,32165,NULL,'Ceph: Minimum Mon release version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nt4ciyoh46zwfl',1,'Admin',1672319394,'192.168.64.1',2,15,32137,NULL,'Ceph: Number of Monitors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nu4ciyxydeffj5',1,'Admin',1672319394,'192.168.64.1',2,15,32134,NULL,'Ceph: Number of OSDs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00nv4ciy2111hbmt',1,'Admin',1672319394,'192.168.64.1',2,15,32164,NULL,'Ceph: Number of OSDs in state: IN','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00nw4ciys388z1u9',1,'Admin',1672319394,'192.168.64.1',2,15,32122,NULL,'Ceph: Number of OSDs in state: UP','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00nx4ciyy144spiw',1,'Admin',1672319394,'192.168.64.1',2,15,32145,NULL,'Ceph: Number of Placement Groups','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ny4ciy4pg8sm7n',1,'Admin',1672319394,'192.168.64.1',2,15,32147,NULL,'Ceph: Number of Placement Groups in Temporary state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00nz4ciyel9jbf95',1,'Admin',1672319394,'192.168.64.1',2,15,32148,NULL,'Ceph: Number of Pools','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o04ciycfxgsaz7',1,'Admin',1672319394,'192.168.64.1',2,15,32118,NULL,'Ceph: Get OSD dump','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o14ciyuuukfxn3',1,'Admin',1672319394,'192.168.64.1',2,15,32121,NULL,'Ceph: Get OSD stats','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o24ciy4rwtywkq',1,'Admin',1672319394,'192.168.64.1',2,15,32149,NULL,'Ceph: Ceph backfill full ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o34ciytq2kvo32',1,'Admin',1672319394,'192.168.64.1',2,15,32150,NULL,'Ceph: Ceph OSD avg fill','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o44ciyjx1580sl',1,'Admin',1672319394,'192.168.64.1',2,15,32151,NULL,'Ceph: Ceph OSD max fill','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o54ciyiuy7s9ez',1,'Admin',1672319394,'192.168.64.1',2,15,32152,NULL,'Ceph: Ceph OSD min fill','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o64ciyu1fkxf6x',1,'Admin',1672319394,'192.168.64.1',2,15,32153,NULL,'Ceph: Ceph full ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o74ciyowc7drm5',1,'Admin',1672319394,'192.168.64.1',2,15,32154,NULL,'Ceph: Ceph OSD Apply latency Avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o84ciyyf4z773k',1,'Admin',1672319394,'192.168.64.1',2,15,32155,NULL,'Ceph: Ceph OSD Apply latency Max','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o94ciyturb9eey',1,'Admin',1672319394,'192.168.64.1',2,15,32146,NULL,'Ceph: Ceph OSD Apply latency Min','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oa4ciyhwatq7e0',1,'Admin',1672319394,'192.168.64.1',2,15,32156,NULL,'Ceph: Ceph OSD Commit latency Avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ob4ciyjro4tc06',1,'Admin',1672319394,'192.168.64.1',2,15,32158,NULL,'Ceph: Ceph OSD Commit latency Max','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oc4ciy2bm9td32',1,'Admin',1672319394,'192.168.64.1',2,15,32159,NULL,'Ceph: Ceph OSD Commit latency Min','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00od4ciypiau9abl',1,'Admin',1672319394,'192.168.64.1',2,15,32160,NULL,'Ceph: Ceph nearfull ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oe4ciyh9ulghj1',1,'Admin',1672319394,'192.168.64.1',2,15,32161,NULL,'Ceph: Ceph OSD avg PGs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00of4ciyoac3xnoz',1,'Admin',1672319394,'192.168.64.1',2,15,32162,NULL,'Ceph: Ceph OSD max PGs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00og4ciy51a5h0cq',1,'Admin',1672319394,'192.168.64.1',2,15,32163,NULL,'Ceph: Ceph OSD min PGs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oh4ciytmzegmhh',1,'Admin',1672319394,'192.168.64.1',2,15,32166,NULL,'Ceph: Overall cluster status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oi4ciy5xnf05ac',1,'Admin',1672319394,'192.168.64.1',2,15,32157,NULL,'Ceph: Number of Placement Groups in Active state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oj4ciy5raaggzh',1,'Admin',1672319394,'192.168.64.1',2,15,32144,NULL,'Ceph: Number of Placement Groups in backfill_toofull state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ok4ciybto4cmt5',1,'Admin',1672319394,'192.168.64.1',2,15,32133,NULL,'Ceph: Number of Placement Groups in backfill_wait state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ol4ciy2e47eoxl',1,'Admin',1672319394,'192.168.64.1',2,15,32143,NULL,'Ceph: Number of Placement Groups in Backfilling state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00om4ciydswstuzf',1,'Admin',1672319394,'192.168.64.1',2,15,32124,NULL,'Ceph: Number of Placement Groups in Clean state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00on4ciyzz2t8lmf',1,'Admin',1672319394,'192.168.64.1',2,15,32125,NULL,'Ceph: Number of Placement Groups in degraded state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oo4ciyvikhrwdp',1,'Admin',1672319394,'192.168.64.1',2,15,32126,NULL,'Ceph: Number of Placement Groups in inconsistent state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00op4ciy1jjuvyxi',1,'Admin',1672319394,'192.168.64.1',2,15,32127,NULL,'Ceph: Number of Placement Groups in Peering state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oq4ciyol45b471',1,'Admin',1672319394,'192.168.64.1',2,15,32128,NULL,'Ceph: Number of Placement Groups in recovering state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00or4ciyc04q6mxu',1,'Admin',1672319394,'192.168.64.1',2,15,32129,NULL,'Ceph: Number of Placement Groups in recovery_wait state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00os4ciystr2bnke',1,'Admin',1672319394,'192.168.64.1',2,15,32130,NULL,'Ceph: Number of Placement Groups in remapped state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ot4ciy1imcfks4',1,'Admin',1672319394,'192.168.64.1',2,15,32131,NULL,'Ceph: Number of Placement Groups in Scrubbing state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ou4ciyjrk13vpx',1,'Admin',1672319394,'192.168.64.1',2,15,32123,NULL,'Ceph: Number of Placement Groups in Undersized state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ov4ciy5qq6jx6n',1,'Admin',1672319394,'192.168.64.1',2,15,32132,NULL,'Ceph: Number of Placement Groups in Unknown state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ow4ciy7tso107c',1,'Admin',1672319394,'192.168.64.1',2,15,32120,NULL,'Ceph: Ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ox4ciyeu7hws14',1,'Admin',1672319394,'192.168.64.1',2,15,32135,NULL,'Ceph: Ceph Read bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oy4ciyi153bw1e',1,'Admin',1672319394,'192.168.64.1',2,15,32136,NULL,'Ceph: Ceph Read operations per sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oz4ciyccsyg5ls',1,'Admin',1672319394,'192.168.64.1',2,15,32119,NULL,'Ceph: Get overall cluster status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p04ciy7jcx4g8r',1,'Admin',1672319394,'192.168.64.1',2,15,32138,NULL,'Ceph: Total bytes available','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p14ciy90f31u14',1,'Admin',1672319394,'192.168.64.1',2,15,32139,NULL,'Ceph: Total bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p24ciys3f1uxxs',1,'Admin',1672319394,'192.168.64.1',2,15,32140,NULL,'Ceph: Total number of objects','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p34ciydl22w3gy',1,'Admin',1672319394,'192.168.64.1',2,15,32141,NULL,'Ceph: Total bytes used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p44ciy8rv0zylt',1,'Admin',1672319394,'192.168.64.1',2,15,32142,NULL,'Ceph: Ceph Write bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p54ciye96nfqnd',1,'Admin',1672319394,'192.168.64.1',2,15,32167,NULL,'Ceph: Ceph Write operations per sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p64ciy66spd0ac',1,'Admin',1672319394,'192.168.64.1',2,15,32463,NULL,'Aranet: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p74ciy3pk5oxgd',1,'Admin',1672319394,'192.168.64.1',2,15,32464,NULL,'Aranet: Sensors discovery','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p84ciy29m7q389',1,'Admin',1672319394,'192.168.64.1',2,15,32693,NULL,'Kafka: Leader election per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p94ciyes58qsv9',1,'Admin',1672319394,'192.168.64.1',2,15,32724,NULL,'Kafka: Unclean leader election per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pa4ciyl7pgsdu4',1,'Admin',1672319394,'192.168.64.1',2,15,32726,NULL,'Kafka: Controller state on broker','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pb4ciyhmgwi1ta',1,'Admin',1672319394,'192.168.64.1',2,15,32727,NULL,'Kafka: Offline partitions count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pc4ciyno7xorhm',1,'Admin',1672319394,'192.168.64.1',2,15,32728,NULL,'Kafka: Ineligible pending replica deletes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pd4ciyt5ith6ye',1,'Admin',1672319394,'192.168.64.1',2,15,32729,NULL,'Kafka: Pending replica deletes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pe4ciy6ax5escl',1,'Admin',1672319394,'192.168.64.1',2,15,32730,NULL,'Kafka: Ineligible pending topic deletes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pf4ciy7lqk9l00',1,'Admin',1672319394,'192.168.64.1',2,15,32731,NULL,'Kafka: Pending topic deletes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pg4ciy30h0p71m',1,'Admin',1672319394,'192.168.64.1',2,15,32732,NULL,'Kafka: Offline log directory count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ph4ciyoqe1dnt8',1,'Admin',1672319394,'192.168.64.1',2,15,32733,NULL,'Kafka: Fetch-Consumer response send time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pi4ciyzvtl9hqm',1,'Admin',1672319394,'192.168.64.1',2,15,32734,NULL,'Kafka: Fetch-Consumer response send time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pj4ciyn4ft2aj4',1,'Admin',1672319394,'192.168.64.1',2,15,32735,NULL,'Kafka: Fetch-Consumer response send time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pk4ciyncaujgb5',1,'Admin',1672319394,'192.168.64.1',2,15,32736,NULL,'Kafka: Fetch-Follower response send time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pl4ciyqcmqlv1n',1,'Admin',1672319394,'192.168.64.1',2,15,32737,NULL,'Kafka: Fetch-Follower response send time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pm4ciyh2a6221m',1,'Admin',1672319394,'192.168.64.1',2,15,32738,NULL,'Kafka: Fetch-Follower response send time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pn4ciy33dkyewi',1,'Admin',1672319394,'192.168.64.1',2,15,32725,NULL,'Kafka: Produce response send time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00po4ciy71hxltwv',1,'Admin',1672319394,'192.168.64.1',2,15,32739,NULL,'Kafka: Produce response send time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pp4ciyljr5aw5t',1,'Admin',1672319394,'192.168.64.1',2,15,32741,NULL,'Kafka: Produce response send time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pq4ciyefm86kro',1,'Admin',1672319394,'192.168.64.1',2,15,32742,NULL,'Kafka: Temporary memory size in bytes (Fetch), max','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pr4ciy4izk3h82',1,'Admin',1672319394,'192.168.64.1',2,15,32743,NULL,'Kafka: Temporary memory size in bytes (Fetch), min','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ps4ciydj31vjec',1,'Admin',1672319394,'192.168.64.1',2,15,32744,NULL,'Kafka: Temporary memory size in bytes (Produce), max','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pt4ciyo6q5tb1w',1,'Admin',1672319394,'192.168.64.1',2,15,32745,NULL,'Kafka: Temporary memory size in bytes (Produce), avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pu4ciyrk741lty',1,'Admin',1672319394,'192.168.64.1',2,15,32746,NULL,'Kafka: Temporary memory size in bytes (Produce), min','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pv4ciyf060i9ic',1,'Admin',1672319394,'192.168.64.1',2,15,32747,NULL,'Kafka: Fetch-Consumer request total time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pw4ciymn3d186b',1,'Admin',1672319394,'192.168.64.1',2,15,32748,NULL,'Kafka: Fetch-Consumer request total time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00px4ciymcov21wr',1,'Admin',1672319394,'192.168.64.1',2,15,32749,NULL,'Kafka: Fetch-Consumer request total time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00py4ciyuyqlmjh6',1,'Admin',1672319394,'192.168.64.1',2,15,32750,NULL,'Kafka: Fetch-Follower request total time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pz4ciyinnmeqq7',1,'Admin',1672319394,'192.168.64.1',2,15,32751,NULL,'Kafka: Fetch-Follower request total time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q04ciy5zrodc9v',1,'Admin',1672319394,'192.168.64.1',2,15,32752,NULL,'Kafka: Fetch-Follower request total time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q14ciy4mp2v5yz',1,'Admin',1672319394,'192.168.64.1',2,15,32753,NULL,'Kafka: Produce request total time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q24ciyzcmuuv9s',1,'Admin',1672319394,'192.168.64.1',2,15,32740,NULL,'Kafka: Produce request total time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q34ciy64b781ae',1,'Admin',1672319394,'192.168.64.1',2,15,32723,NULL,'Kafka: Produce request total time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q44ciy0eveo0dv',1,'Admin',1672319394,'192.168.64.1',2,15,32708,NULL,'Kafka: UpdateMetadata request total time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q54ciytv9m2oer',1,'Admin',1672319394,'192.168.64.1',2,15,32722,NULL,'Kafka: UpdateMetadata request total time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q64ciyyp6q443a',1,'Admin',1672319394,'192.168.64.1',2,15,32695,NULL,'Kafka: Fetch-Consumer request total time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q74ciyhilhpnot',1,'Admin',1672319394,'192.168.64.1',2,15,32696,NULL,'Kafka: Network processor average idle percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q84ciybzdd6n6t',1,'Admin',1672319394,'192.168.64.1',2,15,32699,NULL,'Kafka: Bytes in per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q94ciylmnwgf95',1,'Admin',1672319394,'192.168.64.1',2,15,32700,NULL,'Kafka: Bytes out per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qa4ciy74jg0ep3',1,'Admin',1672319394,'192.168.64.1',2,15,32701,NULL,'Kafka: Bytes rejected per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qb4ciydjmpmsul',1,'Admin',1672319394,'192.168.64.1',2,15,32702,NULL,'Kafka: Client fetch request failed per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qc4ciyeho9dfvu',1,'Admin',1672319394,'192.168.64.1',2,15,32703,NULL,'Kafka: Produce requests failed per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qd4ciym24ib1ih',1,'Admin',1672319394,'192.168.64.1',2,15,32704,NULL,'Kafka: Messages in per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qe4ciy9iqq1msw',1,'Admin',1672319394,'192.168.64.1',2,15,32705,NULL,'Kafka: Requests in producer purgatory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qf4ciy2vgfdpz6',1,'Admin',1672319394,'192.168.64.1',2,15,32706,NULL,'Kafka: Requests in fetch purgatory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qg4ciydtmkczwu',1,'Admin',1672319394,'192.168.64.1',2,15,32694,NULL,'Kafka: Request handler average idle percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qh4ciy2lr6tzad',1,'Admin',1672319394,'192.168.64.1',2,15,32707,NULL,'Kafka: Replication maximum lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qi4ciywo4q64c1',1,'Admin',1672319394,'192.168.64.1',2,15,32709,NULL,'Kafka: ISR expands per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qj4ciyltmkhj68',1,'Admin',1672319394,'192.168.64.1',2,15,32710,NULL,'Kafka: ISR shrink per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qk4ciy16fpvb19',1,'Admin',1672319394,'192.168.64.1',2,15,32711,NULL,'Kafka: Leader count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ql4ciyavyl1znr',1,'Admin',1672319394,'192.168.64.1',2,15,32712,NULL,'Kafka: Partition count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qm4ciy7hcwm6n4',1,'Admin',1672319394,'192.168.64.1',2,15,32713,NULL,'Kafka: Number of reassigning partitions','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qn4ciylyajjmc1',1,'Admin',1672319394,'192.168.64.1',2,15,32714,NULL,'Kafka: Under minimum ISR partition count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qo4ciys9fcdluf',1,'Admin',1672319394,'192.168.64.1',2,15,32715,NULL,'Kafka: Under replicated partitions','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qp4ciybn3raifo',1,'Admin',1672319394,'192.168.64.1',2,15,32716,NULL,'Kafka: Request queue size','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qq4ciyoj5x9sgz',1,'Admin',1672319394,'192.168.64.1',2,15,32717,NULL,'Kafka: ZooKeeper connection status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qr4ciycd0hgiy0',1,'Admin',1672319394,'192.168.64.1',2,15,32718,NULL,'Kafka: ZooKeeper disconnect rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qs4ciyul7049bj',1,'Admin',1672319394,'192.168.64.1',2,15,32719,NULL,'Kafka: ZooKeeper session expiration rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qt4ciyu1r3ueip',1,'Admin',1672319394,'192.168.64.1',2,15,32720,NULL,'Kafka: ZooKeeper readonly rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qu4ciy9hwaeo04',1,'Admin',1672319394,'192.168.64.1',2,15,32721,NULL,'Kafka: ZooKeeper sync rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qv4ciyq623ihuf',1,'Admin',1672319394,'192.168.64.1',2,15,32754,NULL,'Kafka: ZooKeeper client request latency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qw4ciy5gjyn82p',1,'Admin',1672319394,'192.168.64.1',2,15,32697,NULL,'Kafka: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qx4ciyo9imwgcq',1,'Admin',1672319394,'192.168.64.1',2,15,32698,NULL,'Kafka: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qy4ciyajl05hnv',1,'Admin',1672319394,'192.168.64.1',2,15,33028,NULL,'Cluster: Name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qz4ciye7bf6163',1,'Admin',1672319394,'192.168.64.1',2,15,33062,NULL,'Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r04ciyfs9xv9l2',1,'Admin',1672319394,'192.168.64.1',2,15,33064,NULL,'Compaction: Number of completed tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r14ciy8jl0o1c1',1,'Admin',1672319394,'192.168.64.1',2,15,33065,NULL,'Commitlog: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r24ciyl2lms5b9',1,'Admin',1672319394,'192.168.64.1',2,15,33066,NULL,'Latency: Read median','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r34ciyzqxdr2cy',1,'Admin',1672319394,'192.168.64.1',2,15,33067,NULL,'Latency: Read 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r44ciybetrulnm',1,'Admin',1672319394,'192.168.64.1',2,15,33068,NULL,'Latency: Read 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r54ciy1182jdo7',1,'Admin',1672319394,'192.168.64.1',2,15,33069,NULL,'Commitlog: Total size','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r64ciylhzgxd93',1,'Admin',1672319394,'192.168.64.1',2,15,33070,NULL,'Compaction: Total compactions completed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r74ciy9s1n72af',1,'Admin',1672319394,'192.168.64.1',2,15,33071,NULL,'Latency: Write median','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r84ciydfxujabp',1,'Admin',1672319394,'192.168.64.1',2,15,33072,NULL,'Latency: Write 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r94ciyeul2xkde',1,'Admin',1672319394,'192.168.64.1',2,15,33073,NULL,'Latency: Write 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ra4ciydqquolpk',1,'Admin',1672319394,'192.168.64.1',2,15,33074,NULL,'KeyCache: Capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rb4ciyq4kiz06a',1,'Admin',1672319394,'192.168.64.1',2,15,33075,NULL,'KeyCache: Entries','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rc4ciyfpqa27q9',1,'Admin',1672319394,'192.168.64.1',2,15,33076,NULL,'KeyCache: HitRate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rd4ciyk4bdqo4n',1,'Admin',1672319394,'192.168.64.1',2,15,33077,NULL,'KeyCache: Hits per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00re4ciyof36c2yq',1,'Admin',1672319394,'192.168.64.1',2,15,33063,NULL,'KeyCache: requests per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rf4ciybw1nba45',1,'Admin',1672319394,'192.168.64.1',2,15,33078,NULL,'KeyCache: Size','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rg4ciyz1feu52c',1,'Admin',1672319394,'192.168.64.1',2,15,33080,NULL,'Client connections: Native','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rh4ciyvw3gxdq0',1,'Admin',1672319394,'192.168.64.1',2,15,33081,NULL,'Client connections: Trifts','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ri4ciy5nw0ziwt',1,'Admin',1672319394,'192.168.64.1',2,15,33082,NULL,'Latency: Client request read median','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rj4ciy7kynmbga',1,'Admin',1672319394,'192.168.64.1',2,15,33083,NULL,'Latency: Client request read 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rk4ciy33lw22t2',1,'Admin',1672319394,'192.168.64.1',2,15,33084,NULL,'Latency: Client request read 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rl4ciyu53vpriq',1,'Admin',1672319394,'192.168.64.1',2,15,33085,NULL,'Client request: Read per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rm4ciybavt3slv',1,'Admin',1672319394,'192.168.64.1',2,15,33086,NULL,'Latency: Client request write median','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rn4ciy3iadxh3s',1,'Admin',1672319394,'192.168.64.1',2,15,33087,NULL,'Latency: Client request write 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ro4ciyjw0v5o0m',1,'Admin',1672319394,'192.168.64.1',2,15,33088,NULL,'Latency: Client request write 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rp4ciyb8r47lc3',1,'Admin',1672319394,'192.168.64.1',2,15,33089,NULL,'Client request: Write per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rq4ciyf0zinm7l',1,'Admin',1672319394,'192.168.64.1',2,15,33090,NULL,'Client request: Write Timeouts','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rr4ciyzz471to6',1,'Admin',1672319394,'192.168.64.1',2,15,33091,NULL,'Compaction: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rs4ciy704zxeb6',1,'Admin',1672319394,'192.168.64.1',2,15,33092,NULL,'Dropped messages: Write (Mutation)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rt4ciy7nv0kdg8',1,'Admin',1672319394,'192.168.64.1',2,15,33093,NULL,'Dropped messages: Read','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ru4ciyxvjddhqc',1,'Admin',1672319394,'192.168.64.1',2,15,33079,NULL,'Storage: Errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rv4ciyhpzj975d',1,'Admin',1672319394,'192.168.64.1',2,15,33061,NULL,'Storage: Used (bytes)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rw4ciyq2uiz4v4',1,'Admin',1672319394,'192.168.64.1',2,15,33045,NULL,'Storage: Hints','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rx4ciy6apwibtc',1,'Admin',1672319394,'192.168.64.1',2,15,33060,NULL,'Thread pool HintsDispatcher: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ry4ciyuf4ydn08',1,'Admin',1672319394,'192.168.64.1',2,15,33030,NULL,'Thread pool HintsDispatcher: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rz4ciy15alcle2',1,'Admin',1672319394,'192.168.64.1',2,15,33031,NULL,'Thread pool HintsDispatcher: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s04ciyumh5y6xk',1,'Admin',1672319394,'192.168.64.1',2,15,33032,NULL,'Thread pool MemtableFlushWriter: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s14ciyqwnebc7a',1,'Admin',1672319394,'192.168.64.1',2,15,33033,NULL,'Thread pool MemtableFlushWriter: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s24ciypewrousj',1,'Admin',1672319394,'192.168.64.1',2,15,33034,NULL,'Thread pool MemtableFlushWriter: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s34ciyxi4cmhon',1,'Admin',1672319394,'192.168.64.1',2,15,33035,NULL,'Thread pool MemtablePostFlush: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s44ciyws5p6eh6',1,'Admin',1672319394,'192.168.64.1',2,15,33036,NULL,'Thread pool MemtablePostFlush: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s54ciymadyvvh3',1,'Admin',1672319394,'192.168.64.1',2,15,33037,NULL,'Thread pool MemtablePostFlush: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s64ciy6hmkqvup',1,'Admin',1672319394,'192.168.64.1',2,15,33038,NULL,'Thread pool MigrationStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s74ciymv31wnzf',1,'Admin',1672319394,'192.168.64.1',2,15,33039,NULL,'Thread pool MigrationStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s84ciyt1338r47',1,'Admin',1672319394,'192.168.64.1',2,15,33040,NULL,'Thread pool MigrationStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s94ciyhp3zepl7',1,'Admin',1672319394,'192.168.64.1',2,15,33041,NULL,'Thread pool MiscStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sa4ciy4w4jvxgb',1,'Admin',1672319394,'192.168.64.1',2,15,33042,NULL,'Thread pool MiscStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sb4ciyw5hulxp8',1,'Admin',1672319394,'192.168.64.1',2,15,33043,NULL,'Thread pool MiscStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sc4ciyum30toai',1,'Admin',1672319394,'192.168.64.1',2,15,33029,NULL,'Thread pool SecondaryIndexManagement: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sd4ciyqf0ysycf',1,'Admin',1672319394,'192.168.64.1',2,15,33044,NULL,'Thread pool SecondaryIndexManagement: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00se4ciyaiwt2qxy',1,'Admin',1672319394,'192.168.64.1',2,15,33046,NULL,'Thread pool SecondaryIndexManagement: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sf4ciyjmh5u810',1,'Admin',1672319394,'192.168.64.1',2,15,33047,NULL,'Thread pool CounterMutationStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sg4ciybwh9ek1o',1,'Admin',1672319394,'192.168.64.1',2,15,33048,NULL,'Thread pool CounterMutationStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sh4ciyc5ggya1r',1,'Admin',1672319394,'192.168.64.1',2,15,33049,NULL,'Thread pool CounterMutationStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00si4ciyqtolc4p9',1,'Admin',1672319394,'192.168.64.1',2,15,33050,NULL,'Thread pool MutationStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sj4ciy1uuzw2ot',1,'Admin',1672319394,'192.168.64.1',2,15,33051,NULL,'Thread pool.MutationStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sk4ciyh7d0r4m3',1,'Admin',1672319394,'192.168.64.1',2,15,33052,NULL,'Thread pool MutationStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sl4ciyqixqeo2p',1,'Admin',1672319394,'192.168.64.1',2,15,33053,NULL,'Thread pool ReadStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sm4ciyp2wjar4a',1,'Admin',1672319394,'192.168.64.1',2,15,33054,NULL,'Thread pool ReadStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sn4ciy1oewftws',1,'Admin',1672319394,'192.168.64.1',2,15,33055,NULL,'Thread pool ReadStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00so4ciy5mg0zq3x',1,'Admin',1672319394,'192.168.64.1',2,15,33056,NULL,'Thread pool ViewMutationStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sp4ciyhcgpf24g',1,'Admin',1672319394,'192.168.64.1',2,15,33057,NULL,'Thread pool ViewMutationStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sq4ciy6dwgf6c6',1,'Admin',1672319394,'192.168.64.1',2,15,33058,NULL,'Thread pool ViewMutationStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sr4ciyxmxcco6o',1,'Admin',1672319394,'192.168.64.1',2,15,33059,NULL,'Cluster: Nodes down','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ss4ciykxltaj8o',1,'Admin',1672319394,'192.168.64.1',2,15,33094,NULL,'Cluster: Nodes up','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00st4ciy77re44ja',1,'Admin',1672319394,'192.168.64.1',2,15,33944,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00su4ciyy0ug6qp0',1,'Admin',1672319394,'192.168.64.1',2,15,33945,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sv4ciyu0kbw5b5',1,'Admin',1672319394,'192.168.64.1',2,15,33946,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sw4ciy3jvm5mp7',1,'Admin',1672319394,'192.168.64.1',2,15,33947,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sx4ciy18kddld3',1,'Admin',1672319394,'192.168.64.1',2,15,33948,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sy4ciy5lz9p8xo',1,'Admin',1672319394,'192.168.64.1',2,15,33949,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sz4ciybbaj11mf',1,'Admin',1672319394,'192.168.64.1',2,15,33950,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t04ciyhfzmy87g',1,'Admin',1672319394,'192.168.64.1',2,15,33951,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t14ciynz6pe7ic',1,'Admin',1672319394,'192.168.64.1',2,15,43775,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t24ciy7jmsr73i',1,'Admin',1672319394,'192.168.64.1',2,15,33952,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t34ciyx3r9230j',1,'Admin',1672319394,'192.168.64.1',2,15,33953,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t44ciyzd1imc20',1,'Admin',1672319394,'192.168.64.1',2,15,33956,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t54ciy2knd6evo',1,'Admin',1672319394,'192.168.64.1',2,15,33954,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t64ciys49me2eu',1,'Admin',1672319394,'192.168.64.1',2,15,33955,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t74ciy5zmcd85a',1,'Admin',1672319394,'192.168.64.1',2,15,33957,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t84ciyvbozddkm',1,'Admin',1672319394,'192.168.64.1',2,15,33985,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t94ciybylt1q0g',1,'Admin',1672319394,'192.168.64.1',2,15,33986,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ta4ciyjt1gei53',1,'Admin',1672319394,'192.168.64.1',2,15,33987,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tb4ciyyb925yih',1,'Admin',1672319394,'192.168.64.1',2,15,33988,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tc4ciybm8y7bvb',1,'Admin',1672319394,'192.168.64.1',2,15,33989,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00td4ciymazzswue',1,'Admin',1672319394,'192.168.64.1',2,15,33990,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00te4ciyitwiak97',1,'Admin',1672319394,'192.168.64.1',2,15,33991,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tf4ciyzrdau5uf',1,'Admin',1672319394,'192.168.64.1',2,15,33992,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tg4ciy7ik6nyyf',1,'Admin',1672319394,'192.168.64.1',2,15,43776,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00th4ciyen40pugw',1,'Admin',1672319394,'192.168.64.1',2,15,33993,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ti4ciydvid3elp',1,'Admin',1672319394,'192.168.64.1',2,15,33994,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tj4ciygssmuu1t',1,'Admin',1672319394,'192.168.64.1',2,15,33997,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tk4ciybbzi2u7w',1,'Admin',1672319394,'192.168.64.1',2,15,33995,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tl4ciyr8su9fs2',1,'Admin',1672319394,'192.168.64.1',2,15,33996,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tm4ciy7haoie80',1,'Admin',1672319394,'192.168.64.1',2,15,33998,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tn4ciy93r06pfp',1,'Admin',1672319394,'192.168.64.1',2,15,34026,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00to4ciyxjy0e4pz',1,'Admin',1672319394,'192.168.64.1',2,15,34027,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tp4ciyjwsc5caz',1,'Admin',1672319394,'192.168.64.1',2,15,34028,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tq4ciydfixmvyx',1,'Admin',1672319394,'192.168.64.1',2,15,34029,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tr4ciy5ca65w3x',1,'Admin',1672319394,'192.168.64.1',2,15,34030,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ts4ciy2x6fk1bk',1,'Admin',1672319394,'192.168.64.1',2,15,34031,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tt4ciyhukut91l',1,'Admin',1672319394,'192.168.64.1',2,15,34032,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tu4ciykc2kqo0y',1,'Admin',1672319394,'192.168.64.1',2,15,34033,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tv4ciyuey9ixui',1,'Admin',1672319394,'192.168.64.1',2,15,43777,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tw4ciy0gi468jl',1,'Admin',1672319394,'192.168.64.1',2,15,34034,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tx4ciy1yi3xbj2',1,'Admin',1672319394,'192.168.64.1',2,15,34035,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ty4ciyxnb7ucv3',1,'Admin',1672319394,'192.168.64.1',2,15,34038,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tz4ciy5bd4xgw5',1,'Admin',1672319394,'192.168.64.1',2,15,34036,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u04ciyoytk3d2c',1,'Admin',1672319394,'192.168.64.1',2,15,34037,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u14ciyn419zpbk',1,'Admin',1672319394,'192.168.64.1',2,15,34039,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u24ciywk88xev3',1,'Admin',1672319394,'192.168.64.1',2,15,34067,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u34ciy02ghyg71',1,'Admin',1672319394,'192.168.64.1',2,15,34068,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u44ciydcyzh9zh',1,'Admin',1672319394,'192.168.64.1',2,15,34069,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u54ciyrh700n0f',1,'Admin',1672319394,'192.168.64.1',2,15,34070,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u64ciy4qj6k02i',1,'Admin',1672319394,'192.168.64.1',2,15,34071,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u74ciyl4mv6won',1,'Admin',1672319394,'192.168.64.1',2,15,34072,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u84ciygn9qyc5h',1,'Admin',1672319394,'192.168.64.1',2,15,34073,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u94ciyronlnjoj',1,'Admin',1672319394,'192.168.64.1',2,15,34074,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ua4ciycc5aw5rc',1,'Admin',1672319394,'192.168.64.1',2,15,43778,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ub4ciygkz57kf1',1,'Admin',1672319394,'192.168.64.1',2,15,34075,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uc4ciyibha3bda',1,'Admin',1672319394,'192.168.64.1',2,15,34076,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ud4ciyao0m649c',1,'Admin',1672319394,'192.168.64.1',2,15,34079,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ue4ciyzrtvkk55',1,'Admin',1672319394,'192.168.64.1',2,15,34077,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uf4ciy34cr7t49',1,'Admin',1672319394,'192.168.64.1',2,15,34078,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ug4ciy3c9sil8v',1,'Admin',1672319394,'192.168.64.1',2,15,34080,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uh4ciy1tqwoih2',1,'Admin',1672319394,'192.168.64.1',2,15,34108,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ui4ciyii15f6mw',1,'Admin',1672319394,'192.168.64.1',2,15,34109,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uj4ciyi0latopj',1,'Admin',1672319394,'192.168.64.1',2,15,34110,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uk4ciy5m5gg37u',1,'Admin',1672319394,'192.168.64.1',2,15,34111,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ul4ciyu8p1k4dt',1,'Admin',1672319394,'192.168.64.1',2,15,34112,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00um4ciyfdi3wl64',1,'Admin',1672319394,'192.168.64.1',2,15,34113,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00un4ciy7bfum03r',1,'Admin',1672319394,'192.168.64.1',2,15,34114,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uo4ciyp6zpo2pb',1,'Admin',1672319394,'192.168.64.1',2,15,34115,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00up4ciy8nvsrfce',1,'Admin',1672319394,'192.168.64.1',2,15,43779,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uq4ciyowqc7mxi',1,'Admin',1672319394,'192.168.64.1',2,15,34116,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ur4ciygn8xis4c',1,'Admin',1672319394,'192.168.64.1',2,15,34117,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00us4ciymxyft2yl',1,'Admin',1672319394,'192.168.64.1',2,15,34120,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ut4ciyxdoesbgi',1,'Admin',1672319394,'192.168.64.1',2,15,34118,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uu4ciyj1fs2l95',1,'Admin',1672319394,'192.168.64.1',2,15,34119,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uv4ciy2z3kmavx',1,'Admin',1672319394,'192.168.64.1',2,15,34121,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uw4ciyqeu381bu',1,'Admin',1672319394,'192.168.64.1',2,15,34787,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ux4ciycrfxro74',1,'Admin',1672319394,'192.168.64.1',2,15,34193,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uy4ciytmjf3hvg',1,'Admin',1672319394,'192.168.64.1',2,15,34205,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uz4ciye2odcirx',1,'Admin',1672319394,'192.168.64.1',2,15,34204,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v04ciybgu8oyfr',1,'Admin',1672319394,'192.168.64.1',2,15,34203,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v14ciyt1f6wzkt',1,'Admin',1672319394,'192.168.64.1',2,15,34202,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v24ciyivx47auf',1,'Admin',1672319394,'192.168.64.1',2,15,34201,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v34ciyr7mzhlwf',1,'Admin',1672319394,'192.168.64.1',2,15,34200,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v44ciyfyq7vksk',1,'Admin',1672319394,'192.168.64.1',2,15,34196,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v54ciyzjkbc8gv',1,'Admin',1672319394,'192.168.64.1',2,15,34195,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v64ciyecf2xpgp',1,'Admin',1672319394,'192.168.64.1',2,15,34194,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v74ciyxsw0crnf',1,'Admin',1672319394,'192.168.64.1',2,15,34192,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v84ciyr7zyu1og',1,'Admin',1672319394,'192.168.64.1',2,15,34180,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v94ciyat5xai37',1,'Admin',1672319394,'192.168.64.1',2,15,34191,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00va4ciy9yxn9d9p',1,'Admin',1672319394,'192.168.64.1',2,15,34190,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vb4ciyis8fj480',1,'Admin',1672319394,'192.168.64.1',2,15,34189,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vc4ciyh7ajs7lk',1,'Admin',1672319394,'192.168.64.1',2,15,34188,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vd4ciyiyqjlygt',1,'Admin',1672319394,'192.168.64.1',2,15,34187,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ve4ciydb5vum0o',1,'Admin',1672319394,'192.168.64.1',2,15,43883,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vf4ciyugrz1vn9',1,'Admin',1672319394,'192.168.64.1',2,15,34186,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vg4ciyz3hwntsx',1,'Admin',1672319394,'192.168.64.1',2,15,34185,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vh4ciyqgl087qd',1,'Admin',1672319394,'192.168.64.1',2,15,34788,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vi4ciyycgu1gtq',1,'Admin',1672319394,'192.168.64.1',2,15,34181,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vj4ciyq53935tz',1,'Admin',1672319394,'192.168.64.1',2,15,34183,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vk4ciysjjqaqq2',1,'Admin',1672319394,'192.168.64.1',2,15,34182,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vl4ciyw2p54ilu',1,'Admin',1672319394,'192.168.64.1',2,15,34206,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vm4ciywnofimtm',1,'Admin',1672319394,'192.168.64.1',2,15,34451,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vn4ciy85oyu4tf',1,'Admin',1672319394,'192.168.64.1',2,15,34464,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vo4ciysdzkhxen',1,'Admin',1672319394,'192.168.64.1',2,15,34474,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vp4ciytqzhws0m',1,'Admin',1672319394,'192.168.64.1',2,15,34473,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vq4ciy7hi0xpzz',1,'Admin',1672319394,'192.168.64.1',2,15,34472,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vr4ciyqzst2qrq',1,'Admin',1672319394,'192.168.64.1',2,15,34471,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vs4ciy5cyfqfxd',1,'Admin',1672319394,'192.168.64.1',2,15,34470,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vt4ciyky50fntt',1,'Admin',1672319394,'192.168.64.1',2,15,34469,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vu4ciylbo65kda',1,'Admin',1672319394,'192.168.64.1',2,15,34468,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vv4ciyu2n9kbeg',1,'Admin',1672319394,'192.168.64.1',2,15,34467,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vw4ciyfxtqu3yy',1,'Admin',1672319394,'192.168.64.1',2,15,34466,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vx4ciyx3pyhvyv',1,'Admin',1672319394,'192.168.64.1',2,15,34465,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vy4ciyfsgx29m8',1,'Admin',1672319394,'192.168.64.1',2,15,34463,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vz4ciyaj2wdth6',1,'Admin',1672319394,'192.168.64.1',2,15,34452,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w04ciyzerhnb42',1,'Admin',1672319394,'192.168.64.1',2,15,34462,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w14ciy7s6aih70',1,'Admin',1672319394,'192.168.64.1',2,15,34461,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w24ciy4geu675i',1,'Admin',1672319394,'192.168.64.1',2,15,34460,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w34ciyw6oen2xv',1,'Admin',1672319394,'192.168.64.1',2,15,34459,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w44ciy48mpl4nv',1,'Admin',1672319394,'192.168.64.1',2,15,43876,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w54ciyu7vkoh1p',1,'Admin',1672319394,'192.168.64.1',2,15,34458,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w64ciyvr6cjp3k',1,'Admin',1672319394,'192.168.64.1',2,15,34457,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w74ciysh55kocq',1,'Admin',1672319394,'192.168.64.1',2,15,34456,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w84ciyi8h9fa4t',1,'Admin',1672319394,'192.168.64.1',2,15,34453,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w94ciyu71aqz2b',1,'Admin',1672319394,'192.168.64.1',2,15,34455,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wa4ciyh781wshe',1,'Admin',1672319394,'192.168.64.1',2,15,34454,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wb4ciy52kuwb9z',1,'Admin',1672319394,'192.168.64.1',2,15,34475,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wc4ciy958uncee',1,'Admin',1672319394,'192.168.64.1',2,15,34499,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wd4ciym0obz5ml',1,'Admin',1672319394,'192.168.64.1',2,15,34512,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00we4ciycqy83ran',1,'Admin',1672319394,'192.168.64.1',2,15,34522,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wf4ciy1otp6mzl',1,'Admin',1672319394,'192.168.64.1',2,15,34521,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wg4ciy366ej9or',1,'Admin',1672319394,'192.168.64.1',2,15,34520,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wh4ciys3y3c5om',1,'Admin',1672319394,'192.168.64.1',2,15,34519,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wi4ciylsqqc2p4',1,'Admin',1672319394,'192.168.64.1',2,15,34518,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wj4ciyj90xwsoa',1,'Admin',1672319394,'192.168.64.1',2,15,34517,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wk4ciyebhf9fxt',1,'Admin',1672319394,'192.168.64.1',2,15,34516,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wl4ciywg7v89vg',1,'Admin',1672319394,'192.168.64.1',2,15,34515,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wm4ciy5wvxyaqu',1,'Admin',1672319394,'192.168.64.1',2,15,34514,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wn4ciysn239i18',1,'Admin',1672319394,'192.168.64.1',2,15,34513,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wo4ciyzfzl2xii',1,'Admin',1672319394,'192.168.64.1',2,15,34511,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wp4ciyrvpgs4ko',1,'Admin',1672319394,'192.168.64.1',2,15,34500,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wq4ciy9tkmv8gf',1,'Admin',1672319394,'192.168.64.1',2,15,34510,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wr4ciyq6fqzvn5',1,'Admin',1672319394,'192.168.64.1',2,15,34509,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ws4ciym2u7cypk',1,'Admin',1672319394,'192.168.64.1',2,15,34508,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wt4ciyktcpy8c2',1,'Admin',1672319394,'192.168.64.1',2,15,34507,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wu4ciyhiwmxu7m',1,'Admin',1672319394,'192.168.64.1',2,15,43877,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wv4ciyryk0gm5z',1,'Admin',1672319394,'192.168.64.1',2,15,34506,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ww4ciyks7b11co',1,'Admin',1672319394,'192.168.64.1',2,15,34505,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wx4ciyscwaeas1',1,'Admin',1672319394,'192.168.64.1',2,15,34504,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wy4ciyxm04mj64',1,'Admin',1672319394,'192.168.64.1',2,15,34501,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wz4ciy4yzmdptz',1,'Admin',1672319394,'192.168.64.1',2,15,34503,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x04ciy2om8r5l4',1,'Admin',1672319394,'192.168.64.1',2,15,34502,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x14ciygfb71kzr',1,'Admin',1672319394,'192.168.64.1',2,15,34523,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x24ciyz2gh9zvf',1,'Admin',1672319394,'192.168.64.1',2,15,34547,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x34ciyfdd8qpnx',1,'Admin',1672319394,'192.168.64.1',2,15,34560,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x44ciygofb43ng',1,'Admin',1672319394,'192.168.64.1',2,15,34570,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x54ciy6uokmxlw',1,'Admin',1672319394,'192.168.64.1',2,15,34569,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x64ciyyj0qb0tw',1,'Admin',1672319394,'192.168.64.1',2,15,34568,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x74ciyrpoj5z2b',1,'Admin',1672319394,'192.168.64.1',2,15,34567,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x84ciyf976yv0u',1,'Admin',1672319394,'192.168.64.1',2,15,34566,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x94ciybej1dqro',1,'Admin',1672319394,'192.168.64.1',2,15,34565,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xa4ciy0z2tragh',1,'Admin',1672319394,'192.168.64.1',2,15,34564,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xb4ciys6ozi3xr',1,'Admin',1672319394,'192.168.64.1',2,15,34563,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xc4ciy7dkay3ad',1,'Admin',1672319394,'192.168.64.1',2,15,34562,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xd4ciyef8tsf26',1,'Admin',1672319394,'192.168.64.1',2,15,34561,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xe4ciy0m9esg03',1,'Admin',1672319394,'192.168.64.1',2,15,34559,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xf4ciymun0q5go',1,'Admin',1672319394,'192.168.64.1',2,15,34548,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xg4ciy8j729liz',1,'Admin',1672319394,'192.168.64.1',2,15,34558,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xh4ciyzqod10yv',1,'Admin',1672319394,'192.168.64.1',2,15,34557,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xi4ciy3cq8ym6j',1,'Admin',1672319394,'192.168.64.1',2,15,34556,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xj4ciynnx60smc',1,'Admin',1672319394,'192.168.64.1',2,15,34555,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xk4ciytrcet9t0',1,'Admin',1672319394,'192.168.64.1',2,15,43878,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xl4ciycqf4mjzq',1,'Admin',1672319394,'192.168.64.1',2,15,34554,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xm4ciyryfj67ry',1,'Admin',1672319394,'192.168.64.1',2,15,34553,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xn4ciyazoqrnwo',1,'Admin',1672319394,'192.168.64.1',2,15,34552,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xo4ciygilz66ou',1,'Admin',1672319394,'192.168.64.1',2,15,34549,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xp4ciya2j2namz',1,'Admin',1672319394,'192.168.64.1',2,15,34551,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xq4ciyfhw5cpnh',1,'Admin',1672319394,'192.168.64.1',2,15,34550,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xr4ciyebax8p05',1,'Admin',1672319394,'192.168.64.1',2,15,34571,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xs4ciy3ra01md5',1,'Admin',1672319394,'192.168.64.1',2,15,34595,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xt4ciyn2mnj3n7',1,'Admin',1672319394,'192.168.64.1',2,15,34608,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xu4ciy6ia2m8ya',1,'Admin',1672319394,'192.168.64.1',2,15,34618,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xv4ciyqwujzv6y',1,'Admin',1672319394,'192.168.64.1',2,15,34617,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xw4ciy0pvj0acs',1,'Admin',1672319394,'192.168.64.1',2,15,34616,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xx4ciy4ac5qns8',1,'Admin',1672319394,'192.168.64.1',2,15,34615,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xy4ciy5s10zg55',1,'Admin',1672319394,'192.168.64.1',2,15,34614,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xz4ciy7m3otdqg',1,'Admin',1672319394,'192.168.64.1',2,15,34613,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y04ciyy2hajrq7',1,'Admin',1672319394,'192.168.64.1',2,15,34612,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y14ciyq78qvcal',1,'Admin',1672319394,'192.168.64.1',2,15,34611,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y24ciyn4lccde3',1,'Admin',1672319394,'192.168.64.1',2,15,34610,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y34ciy6nyxb2ke',1,'Admin',1672319394,'192.168.64.1',2,15,34609,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y44ciynazm6tum',1,'Admin',1672319394,'192.168.64.1',2,15,34607,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y54ciyjdsx09cl',1,'Admin',1672319394,'192.168.64.1',2,15,34596,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y64ciyntkc3fqz',1,'Admin',1672319394,'192.168.64.1',2,15,34606,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y74ciy98m7hq5a',1,'Admin',1672319394,'192.168.64.1',2,15,34605,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y84ciy3zhjxasc',1,'Admin',1672319394,'192.168.64.1',2,15,34604,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y94ciymiqtzmbq',1,'Admin',1672319394,'192.168.64.1',2,15,34603,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ya4ciy0pnr658t',1,'Admin',1672319394,'192.168.64.1',2,15,43879,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yb4ciyrt41andy',1,'Admin',1672319394,'192.168.64.1',2,15,34602,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yc4ciyfpqg3ni4',1,'Admin',1672319394,'192.168.64.1',2,15,34601,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yd4ciytotnh1z6',1,'Admin',1672319394,'192.168.64.1',2,15,34600,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ye4ciyod8gsqc2',1,'Admin',1672319394,'192.168.64.1',2,15,34597,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yf4ciyusraem9t',1,'Admin',1672319394,'192.168.64.1',2,15,34599,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yg4ciykset6713',1,'Admin',1672319394,'192.168.64.1',2,15,34598,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yh4ciyvuaysgwo',1,'Admin',1672319394,'192.168.64.1',2,15,34619,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yi4ciyvubhsxym',1,'Admin',1672319394,'192.168.64.1',2,15,34643,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yj4ciy0e1jyxvy',1,'Admin',1672319394,'192.168.64.1',2,15,34656,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yk4ciymk9s47h6',1,'Admin',1672319394,'192.168.64.1',2,15,34666,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yl4ciyvo2tn29y',1,'Admin',1672319394,'192.168.64.1',2,15,34665,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ym4ciymh71i0nq',1,'Admin',1672319394,'192.168.64.1',2,15,34664,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yn4ciy121nw5pk',1,'Admin',1672319394,'192.168.64.1',2,15,34663,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yo4ciy3sbapqrp',1,'Admin',1672319394,'192.168.64.1',2,15,34662,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yp4ciyzyqk48tq',1,'Admin',1672319394,'192.168.64.1',2,15,34661,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yq4ciyyfl315nf',1,'Admin',1672319394,'192.168.64.1',2,15,34660,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yr4ciy18gw3ss8',1,'Admin',1672319394,'192.168.64.1',2,15,34659,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00ys4ciyu54vug26',1,'Admin',1672319394,'192.168.64.1',2,15,34658,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yt4ciy81o7f023',1,'Admin',1672319394,'192.168.64.1',2,15,34657,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yu4ciycyvs2gc5',1,'Admin',1672319394,'192.168.64.1',2,15,34655,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yv4ciycn31nmyj',1,'Admin',1672319394,'192.168.64.1',2,15,34644,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yw4ciyk1k1t8lr',1,'Admin',1672319394,'192.168.64.1',2,15,34654,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yx4ciycoyrw60n',1,'Admin',1672319394,'192.168.64.1',2,15,34653,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yy4ciylgidqbuu',1,'Admin',1672319394,'192.168.64.1',2,15,34652,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yz4ciyr4mldsf2',1,'Admin',1672319394,'192.168.64.1',2,15,34651,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z04ciymab048c1',1,'Admin',1672319394,'192.168.64.1',2,15,43880,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z14ciy1rsq386u',1,'Admin',1672319394,'192.168.64.1',2,15,34650,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z24ciynjhxwto3',1,'Admin',1672319394,'192.168.64.1',2,15,34649,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z34ciyhlwckebj',1,'Admin',1672319394,'192.168.64.1',2,15,34648,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z44ciyu934r1c5',1,'Admin',1672319394,'192.168.64.1',2,15,34645,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z54ciyh1h2v2e9',1,'Admin',1672319394,'192.168.64.1',2,15,34647,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z64ciyyq34w7dq',1,'Admin',1672319394,'192.168.64.1',2,15,34646,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z74ciy7j661lvr',1,'Admin',1672319394,'192.168.64.1',2,15,34667,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z84ciy2nvtf4dw',1,'Admin',1672319394,'192.168.64.1',2,15,34739,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z94ciy9czxeak0',1,'Admin',1672319394,'192.168.64.1',2,15,34752,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00za4ciygarkgg0g',1,'Admin',1672319394,'192.168.64.1',2,15,34762,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zb4ciyagtajnjy',1,'Admin',1672319394,'192.168.64.1',2,15,34761,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zc4ciyvo1vvpbb',1,'Admin',1672319394,'192.168.64.1',2,15,34760,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zd4ciy7nxt8lul',1,'Admin',1672319394,'192.168.64.1',2,15,34759,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00ze4ciykh07t5ai',1,'Admin',1672319394,'192.168.64.1',2,15,34758,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zf4ciye3vmtg9y',1,'Admin',1672319394,'192.168.64.1',2,15,34757,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zg4ciynsnkz5ya',1,'Admin',1672319394,'192.168.64.1',2,15,34756,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zh4ciy6vmb3xc9',1,'Admin',1672319394,'192.168.64.1',2,15,34755,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zi4ciyd18xm3ar',1,'Admin',1672319394,'192.168.64.1',2,15,34754,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zj4ciyk7exvts7',1,'Admin',1672319394,'192.168.64.1',2,15,34753,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zk4ciy0r7t88ca',1,'Admin',1672319394,'192.168.64.1',2,15,34751,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zl4ciytljq90iz',1,'Admin',1672319394,'192.168.64.1',2,15,34740,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zm4ciyzngqvp3l',1,'Admin',1672319394,'192.168.64.1',2,15,34750,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zn4ciyzfned489',1,'Admin',1672319394,'192.168.64.1',2,15,34749,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zo4ciypucr262a',1,'Admin',1672319394,'192.168.64.1',2,15,34748,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zp4ciyazqglzoo',1,'Admin',1672319394,'192.168.64.1',2,15,34747,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zq4ciyd85gbcxn',1,'Admin',1672319394,'192.168.64.1',2,15,43882,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zr4ciyhs0f2e0k',1,'Admin',1672319394,'192.168.64.1',2,15,34746,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zs4ciy7es5p0m5',1,'Admin',1672319394,'192.168.64.1',2,15,34745,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zt4ciyeuc7o86v',1,'Admin',1672319394,'192.168.64.1',2,15,34744,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zu4ciyg83ql17p',1,'Admin',1672319394,'192.168.64.1',2,15,34741,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zv4ciyb5n9xjli',1,'Admin',1672319394,'192.168.64.1',2,15,34743,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zw4ciyq1f7pfiw',1,'Admin',1672319394,'192.168.64.1',2,15,34742,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zx4ciylz89pmeq',1,'Admin',1672319394,'192.168.64.1',2,15,34763,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zy4ciyj2wlls5f',1,'Admin',1672319394,'192.168.64.1',2,15,34793,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zz4ciylum9ac39',1,'Admin',1672319394,'192.168.64.1',2,15,34806,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01004ciyi52kz95r',1,'Admin',1672319394,'192.168.64.1',2,15,34816,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01014ciy2far07s3',1,'Admin',1672319394,'192.168.64.1',2,15,34815,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01024ciymfxmgrxk',1,'Admin',1672319394,'192.168.64.1',2,15,34814,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01034ciy1gk5ng4b',1,'Admin',1672319394,'192.168.64.1',2,15,34813,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01044ciy45vpn6e9',1,'Admin',1672319394,'192.168.64.1',2,15,34812,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01054ciypdqtue6h',1,'Admin',1672319394,'192.168.64.1',2,15,34811,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01064ciy08bppr0n',1,'Admin',1672319394,'192.168.64.1',2,15,34810,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01074ciyc2p9hge9',1,'Admin',1672319394,'192.168.64.1',2,15,34809,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01084ciypypdrk1f',1,'Admin',1672319394,'192.168.64.1',2,15,34808,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01094ciyn3qrajhw',1,'Admin',1672319394,'192.168.64.1',2,15,34807,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010a4ciymkdpdmuy',1,'Admin',1672319394,'192.168.64.1',2,15,34805,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010b4ciyh1u4s3vg',1,'Admin',1672319394,'192.168.64.1',2,15,34794,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010c4ciy4t2lng87',1,'Admin',1672319394,'192.168.64.1',2,15,34804,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010d4ciylkspn141',1,'Admin',1672319394,'192.168.64.1',2,15,34803,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010e4ciyfqnsohlv',1,'Admin',1672319394,'192.168.64.1',2,15,34802,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010f4ciyp1xh8aok',1,'Admin',1672319394,'192.168.64.1',2,15,34801,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010g4ciyd8xl20s0',1,'Admin',1672319394,'192.168.64.1',2,15,43884,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010h4ciyaki1c63m',1,'Admin',1672319394,'192.168.64.1',2,15,34800,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010i4ciyzhlabynl',1,'Admin',1672319394,'192.168.64.1',2,15,34799,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010j4ciyfkkgrarl',1,'Admin',1672319394,'192.168.64.1',2,15,34798,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010k4ciy1t1moapx',1,'Admin',1672319394,'192.168.64.1',2,15,34795,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010l4ciyiuriwo1t',1,'Admin',1672319394,'192.168.64.1',2,15,34797,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010m4ciyi3zrq9is',1,'Admin',1672319394,'192.168.64.1',2,15,34796,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010n4ciypkcuhh9s',1,'Admin',1672319394,'192.168.64.1',2,15,34817,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010o4ciyjhldw2od',1,'Admin',1672319394,'192.168.64.1',2,15,34841,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010p4ciy40lg5nqq',1,'Admin',1672319394,'192.168.64.1',2,15,34854,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010q4ciydfm7h6dq',1,'Admin',1672319394,'192.168.64.1',2,15,34864,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010r4ciyazfi423w',1,'Admin',1672319394,'192.168.64.1',2,15,34863,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010s4ciyzdm9emlr',1,'Admin',1672319394,'192.168.64.1',2,15,34862,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010t4ciyfv01yxv3',1,'Admin',1672319394,'192.168.64.1',2,15,34861,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010u4ciyulhe4nzb',1,'Admin',1672319394,'192.168.64.1',2,15,34860,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010v4ciycq3x1u5g',1,'Admin',1672319394,'192.168.64.1',2,15,34859,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010w4ciy44xnns2s',1,'Admin',1672319394,'192.168.64.1',2,15,34858,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010x4ciydcnp2n0u',1,'Admin',1672319394,'192.168.64.1',2,15,34857,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010y4ciyje69edgy',1,'Admin',1672319394,'192.168.64.1',2,15,34856,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010z4ciypvqq4yha',1,'Admin',1672319394,'192.168.64.1',2,15,34855,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01104ciy2l568gk9',1,'Admin',1672319394,'192.168.64.1',2,15,34853,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01114ciyi1dqax8f',1,'Admin',1672319394,'192.168.64.1',2,15,34842,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01124ciya8cj8ram',1,'Admin',1672319394,'192.168.64.1',2,15,34852,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01134ciyt0nitw0t',1,'Admin',1672319394,'192.168.64.1',2,15,34851,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01144ciy0t0tw15k',1,'Admin',1672319394,'192.168.64.1',2,15,34850,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01154ciykxhq4k6z',1,'Admin',1672319394,'192.168.64.1',2,15,34849,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01164ciyd72xw3rq',1,'Admin',1672319394,'192.168.64.1',2,15,43885,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01174ciyl4l3icjd',1,'Admin',1672319394,'192.168.64.1',2,15,34848,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01184ciyxs01tp77',1,'Admin',1672319394,'192.168.64.1',2,15,34847,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01194ciybhdou35y',1,'Admin',1672319394,'192.168.64.1',2,15,34846,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011a4ciyp4gxwqvp',1,'Admin',1672319394,'192.168.64.1',2,15,34843,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011b4ciydpmplt4j',1,'Admin',1672319394,'192.168.64.1',2,15,34845,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011c4ciyvwk99prq',1,'Admin',1672319394,'192.168.64.1',2,15,34844,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011d4ciyagdr4fnc',1,'Admin',1672319394,'192.168.64.1',2,15,34865,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011e4ciyj5zjmecy',1,'Admin',1672319394,'192.168.64.1',2,15,34889,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011f4ciy99jvq8uw',1,'Admin',1672319394,'192.168.64.1',2,15,34902,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011g4ciy5voc042i',1,'Admin',1672319394,'192.168.64.1',2,15,34912,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011h4ciyb8do0rg4',1,'Admin',1672319394,'192.168.64.1',2,15,34911,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011i4ciyia74imwr',1,'Admin',1672319394,'192.168.64.1',2,15,34910,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011j4ciysybh6aqy',1,'Admin',1672319394,'192.168.64.1',2,15,34909,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011k4ciyhejvbf46',1,'Admin',1672319394,'192.168.64.1',2,15,34908,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011l4ciyc0z9epgk',1,'Admin',1672319394,'192.168.64.1',2,15,34907,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011m4ciycs4gbibu',1,'Admin',1672319394,'192.168.64.1',2,15,34906,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011n4ciyhd37gkbw',1,'Admin',1672319394,'192.168.64.1',2,15,34905,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011o4ciy17wzvbly',1,'Admin',1672319394,'192.168.64.1',2,15,34904,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011p4ciysubir4wi',1,'Admin',1672319394,'192.168.64.1',2,15,34903,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011q4ciy32tiu4ex',1,'Admin',1672319394,'192.168.64.1',2,15,34901,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011r4ciyrtlqs1fq',1,'Admin',1672319394,'192.168.64.1',2,15,34890,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011s4ciyg2vaovtu',1,'Admin',1672319394,'192.168.64.1',2,15,34900,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011t4ciyifwrf1qz',1,'Admin',1672319394,'192.168.64.1',2,15,34899,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011u4ciyaubogcxf',1,'Admin',1672319394,'192.168.64.1',2,15,34898,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011v4ciy5qd1x4xe',1,'Admin',1672319394,'192.168.64.1',2,15,34897,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011w4ciy9w17qb12',1,'Admin',1672319394,'192.168.64.1',2,15,43886,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011x4ciyy42s9tk5',1,'Admin',1672319394,'192.168.64.1',2,15,34896,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011y4ciyzu2yv34n',1,'Admin',1672319394,'192.168.64.1',2,15,34895,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011z4ciy4uujqdha',1,'Admin',1672319394,'192.168.64.1',2,15,34894,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01204ciyzq5te109',1,'Admin',1672319394,'192.168.64.1',2,15,34891,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01214ciyjv6jcb2l',1,'Admin',1672319394,'192.168.64.1',2,15,34893,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01224ciy9w4xmllm',1,'Admin',1672319394,'192.168.64.1',2,15,34892,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01234ciy8xutq61u',1,'Admin',1672319394,'192.168.64.1',2,15,34913,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01244ciyngnltnd7',1,'Admin',1672319394,'192.168.64.1',2,15,35016,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01254ciyg5szucfo',1,'Admin',1672319394,'192.168.64.1',2,15,35029,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01264ciyqoof05om',1,'Admin',1672319394,'192.168.64.1',2,15,35039,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01274ciytx2zaj3s',1,'Admin',1672319394,'192.168.64.1',2,15,35038,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01284ciyarrth0gp',1,'Admin',1672319394,'192.168.64.1',2,15,35037,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01294ciylq2uecif',1,'Admin',1672319394,'192.168.64.1',2,15,35036,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012a4ciy76qmt208',1,'Admin',1672319394,'192.168.64.1',2,15,35035,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012b4ciy8ixtfsea',1,'Admin',1672319394,'192.168.64.1',2,15,35034,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012c4ciyrrrinxfs',1,'Admin',1672319394,'192.168.64.1',2,15,35033,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012d4ciyv1ubq5qz',1,'Admin',1672319394,'192.168.64.1',2,15,35032,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012e4ciy2shqsflp',1,'Admin',1672319394,'192.168.64.1',2,15,35031,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012f4ciyc5n1bpoj',1,'Admin',1672319394,'192.168.64.1',2,15,35030,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012g4ciya8o28jq1',1,'Admin',1672319394,'192.168.64.1',2,15,35028,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012h4ciypgx2sgoq',1,'Admin',1672319394,'192.168.64.1',2,15,35017,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012i4ciyg5oynxly',1,'Admin',1672319394,'192.168.64.1',2,15,35027,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012j4ciyl0bga2f0',1,'Admin',1672319394,'192.168.64.1',2,15,35026,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012k4ciy912tic9f',1,'Admin',1672319394,'192.168.64.1',2,15,35025,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012l4ciy7o0kxh8h',1,'Admin',1672319394,'192.168.64.1',2,15,35024,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012m4ciyhqgyssmn',1,'Admin',1672319394,'192.168.64.1',2,15,43881,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012n4ciy8trqe14m',1,'Admin',1672319394,'192.168.64.1',2,15,35023,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012o4ciyfuj0pv8r',1,'Admin',1672319394,'192.168.64.1',2,15,35022,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012p4ciyzowdqh3m',1,'Admin',1672319394,'192.168.64.1',2,15,35021,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012q4ciyoyzm6sqj',1,'Admin',1672319394,'192.168.64.1',2,15,35018,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012r4ciy12vjnl7v',1,'Admin',1672319394,'192.168.64.1',2,15,35020,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012s4ciy98ye2onz',1,'Admin',1672319394,'192.168.64.1',2,15,35019,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012t4ciyux9f8sbs',1,'Admin',1672319394,'192.168.64.1',2,15,35040,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012u4ciyktz29wgt',1,'Admin',1672319394,'192.168.64.1',2,15,35358,NULL,'Cisco ASAv: Contact','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012v4ciylffd8vgr',1,'Admin',1672319394,'192.168.64.1',2,15,35359,NULL,'Cisco ASAv: Location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012w4ciy2lpagyze',1,'Admin',1672319394,'192.168.64.1',2,15,35360,NULL,'Cisco ASAv: System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012x4ciywqzkmmmo',1,'Admin',1672319394,'192.168.64.1',2,15,35361,NULL,'Cisco ASAv: Host name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012y4ciynfc9v8j2',1,'Admin',1672319394,'192.168.64.1',2,15,35362,NULL,'Cisco ASAv: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012z4ciyw5rdz0y9',1,'Admin',1672319394,'192.168.64.1',2,15,35363,NULL,'Cisco ASAv: SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01304ciy1ii3vfyl',1,'Admin',1672319394,'192.168.64.1',2,15,43500,NULL,'AWS EC2: Get alarms check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01314ciyqbm94caa',1,'Admin',1672319394,'192.168.64.1',2,15,43512,NULL,'AWS EC2: Credit CPU: Balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01324ciy7sdxt7ly',1,'Admin',1672319394,'192.168.64.1',2,15,43524,NULL,'AWS EC2: Credit CPU: Usage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01334ciy55k26ulu',1,'Admin',1672319394,'192.168.64.1',2,15,43523,NULL,'AWS EC2: Credit CPU: Surplus balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01344ciyrx4pb1kj',1,'Admin',1672319394,'192.168.64.1',2,15,43522,NULL,'AWS EC2: Credit CPU: Surplus charged','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01354ciyl4k0mjjh',1,'Admin',1672319394,'192.168.64.1',2,15,43521,NULL,'AWS EC2: CPU: Utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01364ciysqcu5hjf',1,'Admin',1672319394,'192.168.64.1',2,15,43520,NULL,'AWS EC2: Disk: Read bytes, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01374ciyv76qak60',1,'Admin',1672319394,'192.168.64.1',2,15,43519,NULL,'AWS EC2: Disk: Read, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01384ciynxws32ep',1,'Admin',1672319394,'192.168.64.1',2,15,43518,NULL,'AWS EC2: Disk: Write bytes, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01394ciyx4tcry98',1,'Admin',1672319394,'192.168.64.1',2,15,43517,NULL,'AWS EC2: Disk: Write ops, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013a4ciy68ogctxa',1,'Admin',1672319394,'192.168.64.1',2,15,43516,NULL,'AWS EC2: EBS: Byte balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013b4ciyyqhzpqx0',1,'Admin',1672319394,'192.168.64.1',2,15,43515,NULL,'AWS EC2: EBS: IO balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013c4ciygerywtc4',1,'Admin',1672319394,'192.168.64.1',2,15,43514,NULL,'AWS EC2: EBS: Read bytes, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013d4ciy6bosdszp',1,'Admin',1672319394,'192.168.64.1',2,15,43513,NULL,'AWS EC2: EBS: Read, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013e4ciyb1637mwe',1,'Admin',1672319394,'192.168.64.1',2,15,43511,NULL,'AWS EC2: EBS: Write bytes, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013f4ciy8ntlfnav',1,'Admin',1672319394,'192.168.64.1',2,15,43501,NULL,'AWS EC2: EBS: Write, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013g4ciy1ngypq1z',1,'Admin',1672319394,'192.168.64.1',2,15,43499,NULL,'AWS CloudWatch: Get instance alarms data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013h4ciyu64czx5c',1,'Admin',1672319394,'192.168.64.1',2,15,43497,NULL,'AWS EC2: Get metrics data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013i4ciymzn2pc4p',1,'Admin',1672319394,'192.168.64.1',2,15,43498,NULL,'AWS EBS: Get volumes data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013j4ciy8nq8reo5',1,'Admin',1672319394,'192.168.64.1',2,15,43510,NULL,'AWS EC2: Metadata: No token','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013k4ciyy3ivy87o',1,'Admin',1672319394,'192.168.64.1',2,15,43509,NULL,'AWS EC2: Get metrics check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013l4ciyeqckqe7r',1,'Admin',1672319394,'192.168.64.1',2,15,43508,NULL,'AWS EC2: Network: Bytes in, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013m4ciyazmcmk92',1,'Admin',1672319394,'192.168.64.1',2,15,43507,NULL,'AWS EC2: Network: Bytes out, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013n4ciyvan4ir8t',1,'Admin',1672319394,'192.168.64.1',2,15,43506,NULL,'AWS EC2: Network: Packets in, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013o4ciy2jimox21',1,'Admin',1672319394,'192.168.64.1',2,15,43505,NULL,'AWS EC2: Network: Packets out, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013p4ciycn7nqnjc',1,'Admin',1672319394,'192.168.64.1',2,15,43504,NULL,'AWS EC2: Status: Check failed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013q4ciyygd3lz8a',1,'Admin',1672319394,'192.168.64.1',2,15,43503,NULL,'AWS EC2: Status: Check failed, instance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013r4ciyeb4o2h7f',1,'Admin',1672319394,'192.168.64.1',2,15,43502,NULL,'AWS EC2: Status: Check failed, system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013s4ciy9u6rpqy6',1,'Admin',1672319394,'192.168.64.1',2,15,43525,NULL,'AWS EC2: Get volumes info check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013t4ciyd2czf2ef',1,'Admin',1672319394,'192.168.64.1',2,15,43596,NULL,'AWS RDS: Get alarms check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013u4ciyk2h480ec',1,'Admin',1672319394,'192.168.64.1',2,15,43640,NULL,'AWS RDS: Disk: Binlog Usage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013v4ciycozbv9tb',1,'Admin',1672319394,'192.168.64.1',2,15,43621,NULL,'AWS RDS: Burst balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013w4ciy76hmpdq1',1,'Admin',1672319394,'192.168.64.1',2,15,43622,NULL,'AWS RDS: Class','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013x4ciyjt51cbjc',1,'Admin',1672319394,'192.168.64.1',2,15,43623,NULL,'AWS RDS: Credit CPU: Balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013y4ciy2izf0s99',1,'Admin',1672319394,'192.168.64.1',2,15,43624,NULL,'AWS RDS: Credit CPU: Usage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013z4ciy9v6eh35a',1,'Admin',1672319394,'192.168.64.1',2,15,43625,NULL,'AWS RDS: CPU: Utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01404ciy9vzw76hs',1,'Admin',1672319394,'192.168.64.1',2,15,43626,NULL,'AWS RDS: Create time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01414ciy4q0zslfs',1,'Admin',1672319394,'192.168.64.1',2,15,43627,NULL,'AWS RDS: Connections','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01424ciybh4k9evj',1,'Admin',1672319394,'192.168.64.1',2,15,43628,NULL,'AWS RDS: Disk: Queue depth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01434ciyj8953diz',1,'Admin',1672319394,'192.168.64.1',2,15,43629,NULL,'AWS RDS: EBS: Byte balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01444ciyopbezeco',1,'Admin',1672319394,'192.168.64.1',2,15,43620,NULL,'AWS RDS: EBS: IO balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01454ciyhanhtzih',1,'Admin',1672319394,'192.168.64.1',2,15,43630,NULL,'AWS RDS: Engine','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01464ciy8jsqhevk',1,'Admin',1672319394,'192.168.64.1',2,15,43632,NULL,'AWS RDS: Engine version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01474ciy6vm8ao0d',1,'Admin',1672319394,'192.168.64.1',2,15,43633,NULL,'AWS RDS: Get events check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01484ciyncyquu3k',1,'Admin',1672319394,'192.168.64.1',2,15,43634,NULL,'AWS RDS: SQLServer: Failed agent jobs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01494ciy7i2q43da',1,'Admin',1672319394,'192.168.64.1',2,15,43636,NULL,'AWS RDS: Storage: Local free','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014a4ciy81n6hpru',1,'Admin',1672319394,'192.168.64.1',2,15,43637,NULL,'AWS RDS: Storage: Space free','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014b4ciy70r7wr9q',1,'Admin',1672319394,'192.168.64.1',2,15,43635,NULL,'AWS RDS: Memory, freeable','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014c4ciy7y2izdo6',1,'Admin',1672319394,'192.168.64.1',2,15,43595,NULL,'AWS CloudWatch: Get instance alarms data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014d4ciyepvo5l1s',1,'Admin',1672319394,'192.168.64.1',2,15,43594,NULL,'AWS RDS: Get instance events data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014e4ciymhxub9kx',1,'Admin',1672319394,'192.168.64.1',2,15,43593,NULL,'AWS RDS: Get instance info','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014f4ciykgt7guyg',1,'Admin',1672319394,'192.168.64.1',2,15,43592,NULL,'AWS RDS: Get metrics data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014g4ciyxs70zd5c',1,'Admin',1672319394,'192.168.64.1',2,15,43638,NULL,'AWS RDS: Get instance info check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014h4ciy3inkunt6',1,'Admin',1672319394,'192.168.64.1',2,15,43639,NULL,'AWS RDS: Get metrics check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014i4ciyk9iao1xl',1,'Admin',1672319394,'192.168.64.1',2,15,43618,NULL,'AWS RDS: Network: Receive throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014j4ciy26vhy8el',1,'Admin',1672319394,'192.168.64.1',2,15,43631,NULL,'AWS RDS: Network: Throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014k4ciyks2q5u5s',1,'Admin',1672319394,'192.168.64.1',2,15,43619,NULL,'AWS RDS: Network: Transmit throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014l4ciyn49oqqtz',1,'Admin',1672319394,'192.168.64.1',2,15,43605,NULL,'AWS RDS: Disk: Read IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014m4ciyo5asbsyn',1,'Admin',1672319394,'192.168.64.1',2,15,43617,NULL,'AWS RDS: Disk: Read IOPS, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014n4ciyovk3l54r',1,'Admin',1672319394,'192.168.64.1',2,15,43598,NULL,'AWS RDS: Disk: Read latency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014o4ciyo8tnd10j',1,'Admin',1672319394,'192.168.64.1',2,15,43599,NULL,'AWS RDS: Disk: Read latency, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014p4ciyfdzf05q2',1,'Admin',1672319394,'192.168.64.1',2,15,43600,NULL,'AWS RDS: Read replica: State','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014q4ciy14h99zmd',1,'Admin',1672319394,'192.168.64.1',2,15,43601,NULL,'AWS RDS: Read replica: Status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014r4ciy93tf345r',1,'Admin',1672319394,'192.168.64.1',2,15,43602,NULL,'AWS RDS: Disk: Read throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014s4ciyv8omdvs4',1,'Admin',1672319394,'192.168.64.1',2,15,43603,NULL,'AWS RDS: Disk: Read throughput, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014t4ciygsly1yrj',1,'Admin',1672319394,'192.168.64.1',2,15,43597,NULL,'AWS RDS: Replication: Lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014u4ciygko5pk5h',1,'Admin',1672319394,'192.168.64.1',2,15,43604,NULL,'AWS RDS: Status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014v4ciyilkjo1ef',1,'Admin',1672319394,'192.168.64.1',2,15,43606,NULL,'AWS RDS: Storage: Allocated','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014w4ciya4t8dcrw',1,'Admin',1672319394,'192.168.64.1',2,15,43607,NULL,'AWS RDS: Storage: Max allocated','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014x4ciy6dpbncda',1,'Admin',1672319394,'192.168.64.1',2,15,43608,NULL,'AWS RDS: Network: Receive throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014y4ciybwzvk38d',1,'Admin',1672319394,'192.168.64.1',2,15,43609,NULL,'AWS RDS: Network: Transmit throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014z4ciyswi96a5o',1,'Admin',1672319394,'192.168.64.1',2,15,43610,NULL,'AWS RDS: Storage type','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01504ciyv2j3zief',1,'Admin',1672319394,'192.168.64.1',2,15,43611,NULL,'AWS RDS: Swap usage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01514ciyb1wz5hr1',1,'Admin',1672319394,'192.168.64.1',2,15,43612,NULL,'AWS RDS: Disk: Write IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01524ciyxk6hg14w',1,'Admin',1672319394,'192.168.64.1',2,15,43613,NULL,'AWS RDS: Disk: Write IOPS, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01534ciyeyomyrxu',1,'Admin',1672319394,'192.168.64.1',2,15,43614,NULL,'AWS RDS: Disk: Write latency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01544ciypy5asf7k',1,'Admin',1672319394,'192.168.64.1',2,15,43615,NULL,'AWS RDS: Disk: Write latency, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01554ciyvspi34vs',1,'Admin',1672319394,'192.168.64.1',2,15,43616,NULL,'AWS RDS: Disk: Write throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01564ciyd7b1nmns',1,'Admin',1672319394,'192.168.64.1',2,15,43641,NULL,'AWS RDS: Disk: Write throughput, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01574ciy0ok1tmbm',1,'Admin',1672319394,'192.168.64.1',2,15,43686,NULL,'AWS S3: Requests: Errors, 4xx','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01584ciy8k2ed7vy',1,'Admin',1672319394,'192.168.64.1',2,15,43700,NULL,'AWS S3: Requests: Errors, 5xx','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01594ciy9d1n1gvs',1,'Admin',1672319394,'192.168.64.1',2,15,43709,NULL,'AWS S3: Get alarms check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015a4ciya9rjtqt6',1,'Admin',1672319394,'192.168.64.1',2,15,43708,NULL,'AWS S3: Requests: All','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015b4ciyot308jgq',1,'Admin',1672319394,'192.168.64.1',2,15,43707,NULL,'AWS S3: Bucket Size','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015c4ciyaeglreor',1,'Admin',1672319394,'192.168.64.1',2,15,43706,NULL,'AWS S3: Requests: Bytes downloaded','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015d4ciyeg0e750d',1,'Admin',1672319394,'192.168.64.1',2,15,43705,NULL,'AWS S3: Replication: Bytes pending','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015e4ciyryww4kiz',1,'Admin',1672319394,'192.168.64.1',2,15,43704,NULL,'AWS S3: Requests: Bytes uploaded','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015f4ciyuhs9qj1g',1,'Admin',1672319394,'192.168.64.1',2,15,43703,NULL,'AWS S3: Requests: Delete','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015g4ciyexzazfww',1,'Admin',1672319394,'192.168.64.1',2,15,43702,NULL,'AWS S3: First byte latency, avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015h4ciyfzw24oye',1,'Admin',1672319394,'192.168.64.1',2,15,43701,NULL,'AWS S3: First byte latency, p90','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015i4ciyfdkkjgdw',1,'Admin',1672319394,'192.168.64.1',2,15,43685,NULL,'AWS S3: Get alarms data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015j4ciydockoaj7',1,'Admin',1672319394,'192.168.64.1',2,15,43684,NULL,'AWS S3: Get metrics data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015k4ciy4tq1vhbh',1,'Admin',1672319394,'192.168.64.1',2,15,43698,NULL,'AWS S3: Requests: Get','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015l4ciyj6ekirdq',1,'Admin',1672319394,'192.168.64.1',2,15,43699,NULL,'AWS S3: Requests: Head','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015m4ciyvx349pnl',1,'Admin',1672319394,'192.168.64.1',2,15,43687,NULL,'AWS S3: Requests: List','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015n4ciyrmru2gyx',1,'Admin',1672319394,'192.168.64.1',2,15,43697,NULL,'AWS S3: Get metrics check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015o4ciyubi7d0te',1,'Admin',1672319394,'192.168.64.1',2,15,43696,NULL,'AWS S3: Number of objects','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015p4ciyfn0fagdv',1,'Admin',1672319394,'192.168.64.1',2,15,43695,NULL,'AWS S3: Replication: Operations pending','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015q4ciy3t38l7mf',1,'Admin',1672319394,'192.168.64.1',2,15,43694,NULL,'AWS S3: Requests: Post','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015r4ciyc891guno',1,'Admin',1672319394,'192.168.64.1',2,15,43693,NULL,'AWS S3: Requests: Put','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015s4ciyll0vucbz',1,'Admin',1672319394,'192.168.64.1',2,15,43692,NULL,'AWS S3: Replication: Latency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015t4ciy1tymz7gw',1,'Admin',1672319394,'192.168.64.1',2,15,43691,NULL,'AWS S3: Requests: Select, bytes returned','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015u4ciy78qy3e1g',1,'Admin',1672319394,'192.168.64.1',2,15,43690,NULL,'AWS S3: Requests: Select, bytes scanned','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015v4ciycv3n1eqr',1,'Admin',1672319394,'192.168.64.1',2,15,43689,NULL,'AWS S3: Requests: Select','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015w4ciyexw8yfz6',1,'Admin',1672319394,'192.168.64.1',2,15,43688,NULL,'AWS S3: Total request latency, avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015x4ciy6pmtwphs',1,'Admin',1672319394,'192.168.64.1',2,15,43710,NULL,'AWS S3: Total request latency, p90','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015y4ciycu1xqjzv',1,'Admin',1672319394,'192.168.64.1',2,15,43716,NULL,'Azure: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015z4ciyryi7dm7p',1,'Admin',1672319394,'192.168.64.1',2,15,43714,NULL,'Azure: Get resources','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01604ciyxolsepfk',1,'Admin',1672319394,'192.168.64.1',2,15,43717,NULL,'Azure: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01614ciyz4ukl6sd',1,'Admin',1672319394,'192.168.64.1',2,15,43743,NULL,'Azure: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01624ciymtrp55kf',1,'Admin',1672319394,'192.168.64.1',2,15,43745,NULL,'Azure: VM cached bandwidth consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01634ciy1wmscz0c',1,'Admin',1672319394,'192.168.64.1',2,15,43746,NULL,'Azure: VM cached IOPS consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01644ciyuzba189v',1,'Admin',1672319394,'192.168.64.1',2,15,43747,NULL,'Azure: CPU credits consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01654ciy0g2nfz17',1,'Admin',1672319394,'192.168.64.1',2,15,43748,NULL,'Azure: CPU credits remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01664ciymzolyhix',1,'Admin',1672319394,'192.168.64.1',2,15,43749,NULL,'Azure: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01674ciyylm9ktpl',1,'Admin',1672319394,'192.168.64.1',2,15,43750,NULL,'Azure: Data disk bandwidth consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01684ciyjgxybkki',1,'Admin',1672319394,'192.168.64.1',2,15,43751,NULL,'Azure: Data disk IOPS consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01694ciy66jyswmp',1,'Admin',1672319394,'192.168.64.1',2,15,43752,NULL,'Azure: Data disk max burst bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016a4ciyv9bwhdb8',1,'Admin',1672319394,'192.168.64.1',2,15,43753,NULL,'Azure: Data disk max burst IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016b4ciyss70iz2i',1,'Admin',1672319394,'192.168.64.1',2,15,43754,NULL,'Azure: Data disk queue depth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016c4ciylwhlu5eb',1,'Admin',1672319394,'192.168.64.1',2,15,43744,NULL,'Azure: Data disk read rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016d4ciyi4l8yrqy',1,'Admin',1672319394,'192.168.64.1',2,15,43755,NULL,'Azure: Data disk read operations/sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016e4ciyxwst7hqy',1,'Admin',1672319394,'192.168.64.1',2,15,43757,NULL,'Azure: Data disk target bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016f4ciydxrpvn73',1,'Admin',1672319394,'192.168.64.1',2,15,43758,NULL,'Azure: Data disk target IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016g4ciy842wdqwr',1,'Admin',1672319394,'192.168.64.1',2,15,43759,NULL,'Azure: Data disk used burst BPS credits percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016h4ciyptcqnudn',1,'Admin',1672319394,'192.168.64.1',2,15,43760,NULL,'Azure: Data disk used burst IO credits percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016i4ciyv0bh76fa',1,'Admin',1672319394,'192.168.64.1',2,15,43761,NULL,'Azure: Data disk write rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016j4ciyvw9vf2ts',1,'Admin',1672319394,'192.168.64.1',2,15,43762,NULL,'Azure: Data disk write operations/sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016k4ciya6ohdpjv',1,'Admin',1672319394,'192.168.64.1',2,15,43763,NULL,'Azure: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016l4ciy87s4moot',1,'Admin',1672319394,'192.168.64.1',2,15,43715,NULL,'Azure: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016m4ciy6fzuexlm',1,'Admin',1672319394,'192.168.64.1',2,15,43764,NULL,'Azure: Disk read rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016n4ciyj7t7f7fa',1,'Admin',1672319394,'192.168.64.1',2,15,43765,NULL,'Azure: Disk read Operations/Sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016o4ciyxuvfig58',1,'Admin',1672319394,'192.168.64.1',2,15,43766,NULL,'Azure: Disk write rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016p4ciy30ifz0c0',1,'Admin',1672319394,'192.168.64.1',2,15,43756,NULL,'Azure: Disk write Operations/Sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016q4ciyqfajjkay',1,'Admin',1672319394,'192.168.64.1',2,15,43742,NULL,'Azure: Inbound flows','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016r4ciy1numn317',1,'Admin',1672319394,'192.168.64.1',2,15,43729,NULL,'Azure: Inbound flows max creation rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016s4ciy2eqzm44f',1,'Admin',1672319394,'192.168.64.1',2,15,43741,NULL,'Azure: Outbound flows','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016t4ciyzbglba7z',1,'Admin',1672319394,'192.168.64.1',2,15,43719,NULL,'Azure: Outbound flows max creation rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016u4ciy1que0nfa',1,'Admin',1672319394,'192.168.64.1',2,15,43720,NULL,'Azure: Available memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016v4ciy6akpqyth',1,'Admin',1672319394,'192.168.64.1',2,15,43721,NULL,'Azure: Network in total','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016w4ciy13v8s598',1,'Admin',1672319394,'192.168.64.1',2,15,43722,NULL,'Azure: Network out total','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016x4ciylxxdp5cj',1,'Admin',1672319394,'192.168.64.1',2,15,43723,NULL,'Azure: OS disk bandwidth consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016y4ciy9a9p5x1i',1,'Admin',1672319394,'192.168.64.1',2,15,43724,NULL,'Azure: OS disk IOPS consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016z4ciydchf8x44',1,'Admin',1672319394,'192.168.64.1',2,15,43725,NULL,'Azure: OS disk max burst bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01704ciyr4yc3b4h',1,'Admin',1672319394,'192.168.64.1',2,15,43726,NULL,'Azure: OS disk max burst IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01714ciyb0gtpd5t',1,'Admin',1672319394,'192.168.64.1',2,15,43727,NULL,'Azure: OS disk queue depth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01724ciykqoio1om',1,'Admin',1672319394,'192.168.64.1',2,15,43718,NULL,'Azure: OS disk read rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01734ciy6efijpvl',1,'Admin',1672319394,'192.168.64.1',2,15,43728,NULL,'Azure: OS disk read operations/sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01744ciyxst71mkk',1,'Admin',1672319394,'192.168.64.1',2,15,43730,NULL,'Azure: OS disk target bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01754ciyz3l40lq6',1,'Admin',1672319394,'192.168.64.1',2,15,43731,NULL,'Azure: OS disk target IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01764ciywrlcfgmf',1,'Admin',1672319394,'192.168.64.1',2,15,43732,NULL,'Azure: OS disk used burst BPS credits percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01774ciylh5pvdx3',1,'Admin',1672319394,'192.168.64.1',2,15,43733,NULL,'Azure: OS disk used burst IO credits percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01784ciyuzzk8bxk',1,'Admin',1672319394,'192.168.64.1',2,15,43734,NULL,'Azure: OS disk write rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01794ciy8dxottjg',1,'Admin',1672319394,'192.168.64.1',2,15,43735,NULL,'Azure: OS disk write operations/sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017a4ciyd1ofkyr2',1,'Admin',1672319394,'192.168.64.1',2,15,43736,NULL,'Azure: Premium data disk cache read hit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017b4ciy799r1s73',1,'Admin',1672319394,'192.168.64.1',2,15,43737,NULL,'Azure: Premium data disk cache read miss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017c4ciycron16jn',1,'Admin',1672319394,'192.168.64.1',2,15,43738,NULL,'Azure: Premium OS disk cache read hit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017d4ciykmf4zgot',1,'Admin',1672319394,'192.168.64.1',2,15,43739,NULL,'Azure: Premium OS disk cache read miss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017e4ciy57nuxgh4',1,'Admin',1672319394,'192.168.64.1',2,15,43740,NULL,'Azure: VM uncached bandwidth consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017f4ciy6t9j86bn',1,'Admin',1672319394,'192.168.64.1',2,15,43767,NULL,'Azure: VM uncached IOPS consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017g4ciy593trg49',1,'Admin',1672319394,'192.168.64.1',2,15,44163,NULL,'Azure MySQL: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017h4ciyq7lqr27l',1,'Admin',1672319394,'192.168.64.1',2,15,44173,NULL,'Azure MySQL: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017i4ciyizhlvf81',1,'Admin',1672319394,'192.168.64.1',2,15,44180,NULL,'Azure MySQL: Connections aborted','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017j4ciybp83y0mo',1,'Admin',1672319394,'192.168.64.1',2,15,44179,NULL,'Azure MySQL: Connections active','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017k4ciywmwtg9gf',1,'Admin',1672319394,'192.168.64.1',2,15,44178,NULL,'Azure MySQL: Connections total','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017l4ciypki6c5hu',1,'Admin',1672319394,'192.168.64.1',2,15,44177,NULL,'Azure MySQL: CPU credits consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017m4ciy02v9lzun',1,'Admin',1672319394,'192.168.64.1',2,15,44176,NULL,'Azure MySQL: CPU credits remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017n4ciyzc9cbsim',1,'Admin',1672319394,'192.168.64.1',2,15,44175,NULL,'Azure MySQL: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017o4ciysnyvaj4w',1,'Admin',1672319394,'192.168.64.1',2,15,44174,NULL,'Azure MySQL: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017p4ciy6u2s5b23',1,'Admin',1672319394,'192.168.64.1',2,15,44161,NULL,'Azure MySQL: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017q4ciyymocvjg4',1,'Admin',1672319394,'192.168.64.1',2,15,44172,NULL,'Azure MySQL: IO consumption percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017r4ciyzo0g64rv',1,'Admin',1672319394,'192.168.64.1',2,15,44164,NULL,'Azure MySQL: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017s4ciyi9a5z6vp',1,'Admin',1672319394,'192.168.64.1',2,15,44171,NULL,'Azure MySQL: Network out','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017t4ciycvhsuwre',1,'Admin',1672319394,'192.168.64.1',2,15,44170,NULL,'Azure MySQL: Network in','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017u4ciyteg1hdos',1,'Admin',1672319394,'192.168.64.1',2,15,44169,NULL,'Azure MySQL: Queries','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017v4ciyomodilfr',1,'Admin',1672319394,'192.168.64.1',2,15,44168,NULL,'Azure MySQL: Replication lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017w4ciyw32rl29l',1,'Admin',1672319394,'192.168.64.1',2,15,44167,NULL,'Azure MySQL: Backup storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017x4ciymxd8819a',1,'Admin',1672319394,'192.168.64.1',2,15,44166,NULL,'Azure MySQL: Storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017y4ciydnx5wq2s',1,'Admin',1672319394,'192.168.64.1',2,15,44165,NULL,'Azure MySQL: Storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017z4ciycdgdjil3',1,'Admin',1672319394,'192.168.64.1',2,15,44181,NULL,'Azure MySQL: Storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01804ciyja1bjyzs',1,'Admin',1672319394,'192.168.64.1',2,15,44182,NULL,'Azure MySQL: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01814ciyyg0i0qeg',1,'Admin',1672319394,'192.168.64.1',2,15,44192,NULL,'Azure MySQL: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01824ciyjvrf932r',1,'Admin',1672319394,'192.168.64.1',2,15,44198,NULL,'Azure MySQL: Connections active','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01834ciynt47f6zl',1,'Admin',1672319394,'192.168.64.1',2,15,44197,NULL,'Azure MySQL: Connections failed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01844ciyvr252fn9',1,'Admin',1672319394,'192.168.64.1',2,15,44196,NULL,'Azure MySQL: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01854ciyy2f1acf8',1,'Admin',1672319394,'192.168.64.1',2,15,44195,NULL,'Azure MySQL: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01864ciy189qgp28',1,'Admin',1672319394,'192.168.64.1',2,15,44162,NULL,'Azure MySQL: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01874ciyme46miim',1,'Admin',1672319394,'192.168.64.1',2,15,44194,NULL,'Azure MySQL: IO consumption percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01884ciyz9bdg19w',1,'Admin',1672319394,'192.168.64.1',2,15,44193,NULL,'Azure MySQL: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01894ciyx9rqxxri',1,'Admin',1672319394,'192.168.64.1',2,15,44190,NULL,'Azure MySQL: Network out','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018a4ciy4d1l3gzn',1,'Admin',1672319394,'192.168.64.1',2,15,44191,NULL,'Azure MySQL: Network in','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018b4ciytq6l5chk',1,'Admin',1672319394,'192.168.64.1',2,15,44183,NULL,'Azure MySQL: Replication lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018c4ciy97vha8cr',1,'Admin',1672319394,'192.168.64.1',2,15,44189,NULL,'Azure MySQL: Backup storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018d4ciytamwoyiq',1,'Admin',1672319394,'192.168.64.1',2,15,44188,NULL,'Azure MySQL: Storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018e4ciyv3mlex80',1,'Admin',1672319394,'192.168.64.1',2,15,44187,NULL,'Azure MySQL: Storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018f4ciyl6ac71p3',1,'Admin',1672319394,'192.168.64.1',2,15,44186,NULL,'Azure MySQL: Server log storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018g4ciyut4fj6vz',1,'Admin',1672319394,'192.168.64.1',2,15,44185,NULL,'Azure MySQL: Server log storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018h4ciy0zewbvvq',1,'Admin',1672319394,'192.168.64.1',2,15,44184,NULL,'Azure MySQL: Server log storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018i4ciy6sag2mfc',1,'Admin',1672319394,'192.168.64.1',2,15,44199,NULL,'Azure MySQL: Storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018j4ciy2x27054u',1,'Admin',1672319394,'192.168.64.1',2,15,44250,NULL,'Azure PostgreSQL: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018k4ciy6gi89rss',1,'Admin',1672319394,'192.168.64.1',2,15,44263,NULL,'Azure PostgreSQL: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018l4ciygjhhe4gs',1,'Admin',1672319394,'192.168.64.1',2,15,44272,NULL,'Azure PostgreSQL: Connections active','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018m4ciy129i0nud',1,'Admin',1672319394,'192.168.64.1',2,15,44271,NULL,'Azure PostgreSQL: Connections failed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018n4ciyxfazey3g',1,'Admin',1672319394,'192.168.64.1',2,15,44270,NULL,'Azure PostgreSQL: Connections succeeded','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018o4ciyqwc71r9e',1,'Admin',1672319394,'192.168.64.1',2,15,44269,NULL,'Azure PostgreSQL: CPU credits consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018p4ciyhsv79hur',1,'Admin',1672319394,'192.168.64.1',2,15,44268,NULL,'Azure PostgreSQL: CPU credits remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018q4ciyos7dao2t',1,'Admin',1672319394,'192.168.64.1',2,15,44267,NULL,'Azure PostgreSQL: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018r4ciy0d0w1dzw',1,'Admin',1672319394,'192.168.64.1',2,15,44266,NULL,'Azure PostgreSQL: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018s4ciy9ka8b6yd',1,'Admin',1672319394,'192.168.64.1',2,15,44248,NULL,'Azure PostgreSQL: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018t4ciyi8nsh203',1,'Admin',1672319394,'192.168.64.1',2,15,44265,NULL,'Azure PostgreSQL: Data disk read Bps','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018u4ciyrgck09u6',1,'Admin',1672319394,'192.168.64.1',2,15,44264,NULL,'Azure PostgreSQL: Data disk write Bps','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018v4ciy8yy7gfrc',1,'Admin',1672319394,'192.168.64.1',2,15,44261,NULL,'Azure PostgreSQL: Data disk queue depth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018w4ciyfy1se437',1,'Admin',1672319394,'192.168.64.1',2,15,44262,NULL,'Azure PostgreSQL: Data disk IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018x4ciykty5mru1',1,'Admin',1672319394,'192.168.64.1',2,15,44251,NULL,'Azure PostgreSQL: Data disk read IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018y4ciy8beslnsf',1,'Admin',1672319394,'192.168.64.1',2,15,44260,NULL,'Azure PostgreSQL: Data disk write IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018z4ciyknx2k49b',1,'Admin',1672319394,'192.168.64.1',2,15,44259,NULL,'Azure PostgreSQL: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01904ciynz8pj7h6',1,'Admin',1672319394,'192.168.64.1',2,15,44258,NULL,'Azure PostgreSQL: Network out','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01914ciy3c8m98ws',1,'Admin',1672319394,'192.168.64.1',2,15,44257,NULL,'Azure PostgreSQL: Network in','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01924ciydwzdzems',1,'Admin',1672319394,'192.168.64.1',2,15,44256,NULL,'Azure PostgreSQL: Backup storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01934ciygoip182z',1,'Admin',1672319394,'192.168.64.1',2,15,44255,NULL,'Azure PostgreSQL: Storage free','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01944ciy37fzwwci',1,'Admin',1672319394,'192.168.64.1',2,15,44254,NULL,'Azure PostgreSQL: Storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01954ciyzf7hwary',1,'Admin',1672319394,'192.168.64.1',2,15,44253,NULL,'Azure PostgreSQL: Transaction log storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01964ciyo5vpitx9',1,'Admin',1672319394,'192.168.64.1',2,15,44252,NULL,'Azure PostgreSQL: Storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01974ciym3qw5e2e',1,'Admin',1672319394,'192.168.64.1',2,15,44273,NULL,'Azure PostgreSQL: Maximum used transaction IDs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01984ciyeui3fo94',1,'Admin',1672319394,'192.168.64.1',2,15,44274,NULL,'Azure PostgreSQL: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01994ciyy4vhb8cu',1,'Admin',1672319394,'192.168.64.1',2,15,44284,NULL,'Azure PostgreSQL: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019a4ciyzub0kw3f',1,'Admin',1672319394,'192.168.64.1',2,15,44291,NULL,'Azure PostgreSQL: Connections active','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019b4ciy2fvi1t86',1,'Admin',1672319394,'192.168.64.1',2,15,44290,NULL,'Azure PostgreSQL: Connections failed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019c4ciy1jlydmjk',1,'Admin',1672319394,'192.168.64.1',2,15,44289,NULL,'Azure PostgreSQL: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019d4ciy8avqvs32',1,'Admin',1672319394,'192.168.64.1',2,15,44288,NULL,'Azure PostgreSQL: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019e4ciyko3i1e6z',1,'Admin',1672319394,'192.168.64.1',2,15,44249,NULL,'Azure PostgreSQL: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019f4ciyamvvexsl',1,'Admin',1672319394,'192.168.64.1',2,15,44287,NULL,'Azure PostgreSQL: IO consumption percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019g4ciyhbmtqc94',1,'Admin',1672319394,'192.168.64.1',2,15,44286,NULL,'Azure PsotgreSQL: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019h4ciyaca0xhkn',1,'Admin',1672319394,'192.168.64.1',2,15,44285,NULL,'Azure PostgreSQL: Network out','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019i4ciyuavik5u5',1,'Admin',1672319394,'192.168.64.1',2,15,44283,NULL,'Azure PosgtreSQL: Network in','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019j4ciylzw0shc3',1,'Admin',1672319394,'192.168.64.1',2,15,44275,NULL,'Azure PostgreSQL: Replication lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019k4ciy1x4dqmsz',1,'Admin',1672319394,'192.168.64.1',2,15,44282,NULL,'Azure PostgreSQL: Max lag across replicas in bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019l4ciyx7696qdr',1,'Admin',1672319394,'192.168.64.1',2,15,44281,NULL,'Azure PostgreSQL: Backup storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019m4ciy0fkbxtbv',1,'Admin',1672319394,'192.168.64.1',2,15,44280,NULL,'Azure PostgreSQL: Storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019n4ciyrua3uj5k',1,'Admin',1672319394,'192.168.64.1',2,15,44279,NULL,'Azure PostgreSQL: Storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019o4ciy30l7fmwc',1,'Admin',1672319394,'192.168.64.1',2,15,44278,NULL,'Azure PostgreSQL: Server log storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019p4ciyisrul9ry',1,'Admin',1672319394,'192.168.64.1',2,15,44277,NULL,'Azure PostgreSQL: Server log storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019q4ciyuh1mewnn',1,'Admin',1672319394,'192.168.64.1',2,15,44276,NULL,'Azure PostgreSQL: Server log storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019r4ciyot1h9syd',1,'Admin',1672319394,'192.168.64.1',2,15,44292,NULL,'Azure PostgreSQL: Storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019s4ciyomg3khyv',1,'Admin',1672319394,'192.168.64.1',2,30,10076,NULL,'AIX by Zabbix agent','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019t4ciy18vd8xeo',1,'Admin',1672319394,'192.168.64.1',2,30,10207,NULL,'Alcatel Timetra TiMOS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019u4ciygr67cwq3',1,'Admin',1672319394,'192.168.64.1',2,30,10208,NULL,'Brocade FC by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019v4ciys0xa0ek0',1,'Admin',1672319394,'192.168.64.1',2,30,10209,NULL,'Brocade_Foundry Performance by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019w4ciyrdamn22s',1,'Admin',1672319394,'192.168.64.1',2,30,10210,NULL,'Brocade_Foundry Nonstackable by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019x4ciybml58yc7',1,'Admin',1672319394,'192.168.64.1',2,30,10211,NULL,'Brocade_Foundry Stackable by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019y4ciyj0ka4qm4',1,'Admin',1672319394,'192.168.64.1',2,30,10212,NULL,'Cisco CISCO-MEMORY-POOL-MIB by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019z4ciymlb039xj',1,'Admin',1672319394,'192.168.64.1',2,30,10213,NULL,'Cisco CISCO-PROCESS-MIB by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a04ciyrsrh9n0s',1,'Admin',1672319394,'192.168.64.1',2,30,10216,NULL,'Cisco Inventory by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a14ciy9ckg3zg0',1,'Admin',1672319394,'192.168.64.1',2,30,10217,NULL,'Cisco CISCO-ENVMON-MIB by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a24ciywdh2ell7',1,'Admin',1672319394,'192.168.64.1',2,30,10218,NULL,'Cisco IOS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a34ciy9rpmg3lx',1,'Admin',1672319394,'192.168.64.1',2,30,10252,NULL,'Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a44ciyc7dd1hac',1,'Admin',1672319394,'192.168.64.1',2,30,10254,NULL,'Arista by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a54ciy6kccxm3l',1,'Admin',1672319394,'192.168.64.1',2,30,10260,NULL,'Apache Tomcat by JMX','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a64ciya4ovw8l5',1,'Admin',1672319394,'192.168.64.1',2,30,10264,NULL,'Apache by Zabbix agent','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a74ciymsa8omaz',1,'Admin',1672319394,'192.168.64.1',2,30,10265,NULL,'Apache by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a84ciy20mcwd33',1,'Admin',1672319394,'192.168.64.1',2,30,10321,NULL,'Chassis by IPMI','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a94ciyb96s1wxx',1,'Admin',1672319394,'192.168.64.1',2,30,10336,NULL,'Asterisk by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201aa4ciyqrpdtizg',1,'Admin',1672319394,'192.168.64.1',2,30,10353,NULL,'Ceph by Zabbix agent 2','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ab4ciykhd2spms',1,'Admin',1672319394,'192.168.64.1',2,30,10358,NULL,'Apache ActiveMQ by JMX','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ac4ciyxyqnldgq',1,'Admin',1672319394,'192.168.64.1',2,30,10359,NULL,'Aranet Cloud','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ad4ciyjkxedigu',1,'Admin',1672319394,'192.168.64.1',2,30,10364,NULL,'Apache Kafka by JMX','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ae4ciyuqtzp7bz',1,'Admin',1672319394,'192.168.64.1',2,30,10370,NULL,'Apache Cassandra by JMX','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201af4ciync01vw14',1,'Admin',1672319394,'192.168.64.1',2,30,10390,NULL,'Cisco Catalyst 3750V2-24FS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ag4ciyvvb07a7b',1,'Admin',1672319394,'192.168.64.1',2,30,10391,NULL,'Cisco Catalyst 3750V2-24PS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ah4ciy1pn55kf9',1,'Admin',1672319394,'192.168.64.1',2,30,10392,NULL,'Cisco Catalyst 3750V2-24TS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ai4ciyoyhza2ve',1,'Admin',1672319394,'192.168.64.1',2,30,10393,NULL,'Cisco Catalyst 3750V2-48PS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201aj4ciyho36imp8',1,'Admin',1672319394,'192.168.64.1',2,30,10394,NULL,'Cisco Catalyst 3750V2-48TS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ak4ciyy7teki63',1,'Admin',1672319394,'192.168.64.1',2,30,10395,NULL,'APC UPS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201al4ciy8u3qz4np',1,'Admin',1672319394,'192.168.64.1',2,30,10400,NULL,'APC UPS Galaxy 3500 by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201am4ciyzry24tub',1,'Admin',1672319394,'192.168.64.1',2,30,10401,NULL,'APC Smart-UPS 2200 RM by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201an4ciyhq2zngrb',1,'Admin',1672319394,'192.168.64.1',2,30,10402,NULL,'APC Smart-UPS 3000 XLM by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ao4ciyz4f8pay0',1,'Admin',1672319394,'192.168.64.1',2,30,10403,NULL,'APC Smart-UPS RT 1000 RM XL by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ap4ciyn7knvlig',1,'Admin',1672319394,'192.168.64.1',2,30,10404,NULL,'APC Smart-UPS RT 1000 XL by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201aq4ciyza9r005u',1,'Admin',1672319394,'192.168.64.1',2,30,10406,NULL,'APC Smart-UPS SRT 8000 by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ar4ciyp1ukawdw',1,'Admin',1672319394,'192.168.64.1',2,30,10407,NULL,'APC UPS Symmetra LX by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201as4ciyopkv4w2a',1,'Admin',1672319394,'192.168.64.1',2,30,10408,NULL,'APC UPS Symmetra RM by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201at4ciyqw3bnfd2',1,'Admin',1672319394,'192.168.64.1',2,30,10409,NULL,'APC UPS Symmetra RX by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201au4ciyo4e8oz3y',1,'Admin',1672319394,'192.168.64.1',2,30,10412,NULL,'APC Smart-UPS SRT 5000 by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201av4ciyg04tyvpq',1,'Admin',1672319394,'192.168.64.1',2,30,10418,NULL,'Cisco ASAv by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201aw4ciyeo65ni2p',1,'Admin',1672319394,'192.168.64.1',2,30,10527,NULL,'AWS EC2 by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ax4ciyk5whchhm',1,'Admin',1672319394,'192.168.64.1',2,30,10529,NULL,'AWS RDS instance by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ay4ciy1ymqetev',1,'Admin',1672319394,'192.168.64.1',2,30,10530,NULL,'AWS S3 bucket by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201az4ciyiy7tb1y3',1,'Admin',1672319394,'192.168.64.1',2,30,10531,NULL,'Azure by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b04ciyiomogae0',1,'Admin',1672319394,'192.168.64.1',2,30,10532,NULL,'Azure virtual machine by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b14ciycviluu2k',1,'Admin',1672319394,'192.168.64.1',2,30,10535,NULL,'AWS by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b24ciycdlyrqzr',1,'Admin',1672319394,'192.168.64.1',2,30,10539,NULL,'Azure MySQL flexible server by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b34ciy2cnztk4h',1,'Admin',1672319394,'192.168.64.1',2,30,10540,NULL,'Azure MySQL single server by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b44ciywesewd59',1,'Admin',1672319394,'192.168.64.1',2,30,10543,NULL,'Azure PostgreSQL flexible server by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b54ciypxo543h6',1,'Admin',1672319394,'192.168.64.1',2,30,10544,NULL,'Azure PostgreSQL single server by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sism00014xiygfbk6zpo',1,'Admin',1672319399,'192.168.64.1',2,36,22908,NULL,'{#FSNAME}: Free disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism00024xiy552w2b5z',1,'Admin',1672319399,'192.168.64.1',2,36,22909,NULL,'{#FSNAME}: Free inodes, %','clc93sisl00004xiyevwovlv0',''),('clc93sism00034xiygjmirkf4',1,'Admin',1672319399,'192.168.64.1',2,36,22910,NULL,'{#FSNAME}: Total disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism00044xiyweypmabn',1,'Admin',1672319399,'192.168.64.1',2,36,22911,NULL,'{#FSNAME}: Used disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism00054xiyxoqfvn4j',1,'Admin',1672319399,'192.168.64.1',2,36,22912,NULL,'{#FSNAME}: Free disk space, %','clc93sisl00004xiyevwovlv0',''),('clc93sism00064xiym7rvbvtf',1,'Admin',1672319399,'192.168.64.1',2,36,44431,NULL,'{#FSNAME}: Get filesystem data','clc93sisl00004xiyevwovlv0',''),('clc93sism00074xiyixsuacxy',1,'Admin',1672319399,'192.168.64.1',2,36,44432,NULL,'{#FSNAME}: Filesystem is read-only','clc93sisl00004xiyevwovlv0',''),('clc93sism00084xiyluc2qzbb',1,'Admin',1672319399,'192.168.64.1',2,36,22985,NULL,'Interface {#IFNAME}: Incoming network traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00094xiycexq3ex3',1,'Admin',1672319399,'192.168.64.1',2,36,22986,NULL,'Interface {#IFNAME}: Outgoing network traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism000a4xiyevp9c6pd',1,'Admin',1672319399,'192.168.64.1',2,36,22988,NULL,'{#FSNAME}: Free disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism000b4xiyay3supx4',1,'Admin',1672319399,'192.168.64.1',2,36,22989,NULL,'{#FSNAME}: Free inodes, %','clc93sisl00004xiyevwovlv0',''),('clc93sism000c4xiyigdhk0ei',1,'Admin',1672319399,'192.168.64.1',2,36,22990,NULL,'{#FSNAME}: Total disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism000d4xiy6fomjyam',1,'Admin',1672319399,'192.168.64.1',2,36,22991,NULL,'{#FSNAME}: Used disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism000e4xiy89w6be30',1,'Admin',1672319399,'192.168.64.1',2,36,22992,NULL,'{#FSNAME}: Free disk space, %','clc93sisl00004xiyevwovlv0',''),('clc93sism000f4xiyn1sph9av',1,'Admin',1672319399,'192.168.64.1',2,36,44434,NULL,'{#FSNAME}: Get filesystem data','clc93sisl00004xiyevwovlv0',''),('clc93sism000g4xiyahpv11sv',1,'Admin',1672319399,'192.168.64.1',2,36,44435,NULL,'{#FSNAME}: Filesystem is read-only','clc93sisl00004xiyevwovlv0',''),('clc93sism000h4xiyf2s8jtv2',1,'Admin',1672319399,'192.168.64.1',2,36,23073,NULL,'Network interfaces: Incoming network traffic on {#IFNAME}','clc93sisl00004xiyevwovlv0',''),('clc93sism000i4xiyo3eg1uxe',1,'Admin',1672319399,'192.168.64.1',2,36,23074,NULL,'Network interfaces: Outgoing network traffic on {#IFNAME}','clc93sisl00004xiyevwovlv0',''),('clc93sism000j4xiy1p61g2xl',1,'Admin',1672319399,'192.168.64.1',2,36,27032,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93sism000k4xiyc6hla6wv',1,'Admin',1672319399,'192.168.64.1',2,36,27478,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism000l4xiyyz0inz2l',1,'Admin',1672319399,'192.168.64.1',2,36,30105,NULL,'#{#SNMPINDEX}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism000m4xiy2vbu4qgr',1,'Admin',1672319399,'192.168.64.1',2,36,27479,NULL,'PSU {#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism000n4xiysjl7fkch',1,'Admin',1672319399,'192.168.64.1',2,36,27480,NULL,'Fan {#SNMPVALUE}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism000o4xiyj2owd72b',1,'Admin',1672319399,'192.168.64.1',2,36,27481,NULL,'#{#SNMPVALUE}: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93sism000p4xiy8a2kzy8b',1,'Admin',1672319399,'192.168.64.1',2,36,27482,NULL,'#{#SNMPVALUE}: Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93sism000q4xiyrnvmikn8',1,'Admin',1672319399,'192.168.64.1',2,36,27483,NULL,'#{#SNMPVALUE}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93sism000r4xiy0j4f0x0a',1,'Admin',1672319399,'192.168.64.1',2,36,27484,NULL,'#{#SNMPVALUE}: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93sism000s4xiy26z5gr7x',1,'Admin',1672319399,'192.168.64.1',2,36,27485,NULL,'Device {#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism000t4xiyqmqmr0ph',1,'Admin',1672319399,'192.168.64.1',2,36,30107,NULL,'{#SNMPINDEX}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism000u4xiyfi7kxwr7',1,'Admin',1672319399,'192.168.64.1',2,36,27517,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism000v4xiy18vud3ag',1,'Admin',1672319399,'192.168.64.1',2,36,27518,NULL,'{#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism000w4xiymoprolis',1,'Admin',1672319399,'192.168.64.1',2,36,27519,NULL,'{#SNMPVALUE}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism000x4xiyrkgs9ees',1,'Admin',1672319399,'192.168.64.1',2,36,30108,NULL,'#{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism000y4xiykvlelmc2',1,'Admin',1672319399,'192.168.64.1',2,36,27553,NULL,'#{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism000z4xiyro48bc2a',1,'Admin',1672319399,'192.168.64.1',2,36,27554,NULL,'#{#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism00104xiy6wnu8v67',1,'Admin',1672319399,'192.168.64.1',2,36,27555,NULL,'#{#SNMPVALUE}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism00114xiytokybtbm',1,'Admin',1672319399,'192.168.64.1',2,36,27591,NULL,'#{#SNMPVALUE}: Total memory','clc93sisl00004xiyevwovlv0',''),('clc93sism00124xiyf955p1no',1,'Admin',1672319399,'192.168.64.1',2,36,30110,NULL,'#{#SNMPVALUE}: Available memory','clc93sisl00004xiyevwovlv0',''),('clc93sism00134xiy29sz6gur',1,'Admin',1672319399,'192.168.64.1',2,36,30111,NULL,'#{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism00144xiygyaqysf5',1,'Admin',1672319399,'192.168.64.1',2,36,27593,NULL,'PSU {#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism00154xiyoq9jj1dq',1,'Admin',1672319399,'192.168.64.1',2,36,27594,NULL,'Fan {#SNMPVALUE}: Fan speed','clc93sisl00004xiyevwovlv0',''),('clc93sism00164xiy7r2kf2i9',1,'Admin',1672319399,'192.168.64.1',2,36,27595,NULL,'Fan {#SNMPVALUE}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism00174xiyrxokgjhh',1,'Admin',1672319399,'192.168.64.1',2,36,27671,NULL,'{#MODULE_NAME}: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism00184xiyxkxx1iux',1,'Admin',1672319399,'192.168.64.1',2,36,30112,NULL,'{#MODULE_NAME}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism00194xiykkn9px0v',1,'Admin',1672319399,'192.168.64.1',2,36,27672,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism001a4xiyymrd4l3g',1,'Admin',1672319399,'192.168.64.1',2,36,27673,NULL,'{#ENT_NAME}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism001b4xiy04ltudrm',1,'Admin',1672319399,'192.168.64.1',2,36,27674,NULL,'{#ENT_NAME}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism001c4xiyatcs6dhi',1,'Admin',1672319399,'192.168.64.1',2,36,27675,NULL,'{#ENT_NAME}: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93sism001d4xiynlywosg3',1,'Admin',1672319399,'192.168.64.1',2,36,27676,NULL,'{#ENT_NAME}: Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93sism001e4xiyz9jlgvyc',1,'Admin',1672319399,'192.168.64.1',2,36,27677,NULL,'{#ENT_NAME}: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93sism001f4xiyypz748ty',1,'Admin',1672319399,'192.168.64.1',2,36,27678,NULL,'{#ENT_NAME}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93sism001g4xiy4hft7lxo',1,'Admin',1672319399,'192.168.64.1',2,36,27679,NULL,'{#ENT_NAME}: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93sism001h4xiy60ncoqr2',1,'Admin',1672319399,'192.168.64.1',2,36,28354,NULL,'{#SENSOR_LOCALE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism001i4xiy0sk6tv3f',1,'Admin',1672319399,'192.168.64.1',2,36,28355,NULL,'{#SENSOR_LOCALE}: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93sism001j4xiyyv4vvvnu',1,'Admin',1672319399,'192.168.64.1',2,36,28356,NULL,'{#SENSOR_LOCALE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism001k4xiyxqpvniz9',1,'Admin',1672319399,'192.168.64.1',2,36,28357,NULL,'{#SENSOR_LOCALE}: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93sism001l4xiyx2kglarm',1,'Admin',1672319399,'192.168.64.1',2,36,28358,NULL,'{#PSU_DESCR}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism001m4xiy2ozrw3zg',1,'Admin',1672319399,'192.168.64.1',2,36,28359,NULL,'{#FAN_DESCR}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism001n4xiywornicfw',1,'Admin',1672319399,'192.168.64.1',2,36,28360,NULL,'{#FAN_DESCR}: Fan speed','clc93sisl00004xiyevwovlv0',''),('clc93sism001o4xiytylp82mb',1,'Admin',1672319399,'192.168.64.1',2,36,28361,NULL,'{#DISK_NAME}: Physical disk status','clc93sisl00004xiyevwovlv0',''),('clc93sism001p4xiyk3vfeb4k',1,'Admin',1672319399,'192.168.64.1',2,36,28362,NULL,'{#DISK_NAME}: Physical disk serial number','clc93sisl00004xiyevwovlv0',''),('clc93sism001q4xiyqmg0gmi0',1,'Admin',1672319399,'192.168.64.1',2,36,28363,NULL,'{#DISK_NAME}: Physical disk S.M.A.R.T. status','clc93sisl00004xiyevwovlv0',''),('clc93sism001r4xiyw6fgaf5c',1,'Admin',1672319399,'192.168.64.1',2,36,28364,NULL,'{#DISK_NAME}: Physical disk model name','clc93sisl00004xiyevwovlv0',''),('clc93sism001s4xiygozm8hvh',1,'Admin',1672319399,'192.168.64.1',2,36,28365,NULL,'{#DISK_NAME}: Physical disk part number','clc93sisl00004xiyevwovlv0',''),('clc93sism001t4xiyujt5nium',1,'Admin',1672319399,'192.168.64.1',2,36,28366,NULL,'{#DISK_NAME}: Physical disk media type','clc93sisl00004xiyevwovlv0',''),('clc93sism001u4xiyftbf8rny',1,'Admin',1672319399,'192.168.64.1',2,36,28367,NULL,'{#DISK_NAME}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sism001v4xiylu318b5l',1,'Admin',1672319399,'192.168.64.1',2,36,28368,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Layout type','clc93sisl00004xiyevwovlv0',''),('clc93sism001w4xiyw22wwmq9',1,'Admin',1672319399,'192.168.64.1',2,36,28369,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Current state','clc93sisl00004xiyevwovlv0',''),('clc93sism001x4xiydp1zfy9x',1,'Admin',1672319399,'192.168.64.1',2,36,28370,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Read policy','clc93sisl00004xiyevwovlv0',''),('clc93sism001y4xiyb73640vv',1,'Admin',1672319399,'192.168.64.1',2,36,28371,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Write policy','clc93sisl00004xiyevwovlv0',''),('clc93sism001z4xiyk79dlmko',1,'Admin',1672319399,'192.168.64.1',2,36,28372,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sism00204xiyxwhha0om',1,'Admin',1672319399,'192.168.64.1',2,36,28373,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Status','clc93sisl00004xiyevwovlv0',''),('clc93sism00214xiy8t08xrwf',1,'Admin',1672319399,'192.168.64.1',2,36,28374,NULL,'{#CNTLR_NAME}: Disk array controller status','clc93sisl00004xiyevwovlv0',''),('clc93sism00224xiyz2pgzv94',1,'Admin',1672319399,'192.168.64.1',2,36,28375,NULL,'{#CNTLR_NAME}: Disk array controller model','clc93sisl00004xiyevwovlv0',''),('clc93sism00234xiy2rhequu4',1,'Admin',1672319399,'192.168.64.1',2,36,28376,NULL,'Battery {#BATTERY_NUM}: Disk array cache controller battery status','clc93sisl00004xiyevwovlv0',''),('clc93sism00244xiyvoawzfp2',1,'Admin',1672319399,'192.168.64.1',2,36,30066,NULL,'{#SENSOR_LOCATION}.Ambient: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00254xiy1abnlwlp',1,'Admin',1672319399,'192.168.64.1',2,36,30067,NULL,'{#SENSOR_LOCATION}.Front: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00264xiyqrsso9d4',1,'Admin',1672319399,'192.168.64.1',2,36,30068,NULL,'{#SENSOR_LOCATION}.Rear: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00274xiyka6fpekh',1,'Admin',1672319399,'192.168.64.1',2,36,30069,NULL,'{#SENSOR_LOCATION}.IOH: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00284xiydm8nyemv',1,'Admin',1672319399,'192.168.64.1',2,36,30070,NULL,'{#SENSOR_LOCATION}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00294xiyr9c31bmv',1,'Admin',1672319399,'192.168.64.1',2,36,30071,NULL,'{#PSU_LOCATION}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism002a4xiyg99skirn',1,'Admin',1672319399,'192.168.64.1',2,36,30072,NULL,'{#UNIT_LOCATION}: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93sism002b4xiybdb87f6v',1,'Admin',1672319399,'192.168.64.1',2,36,30073,NULL,'{#UNIT_LOCATION}: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93sism002c4xiyhdyo7bi7',1,'Admin',1672319399,'192.168.64.1',2,36,30074,NULL,'{#UNIT_LOCATION}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93sism002d4xiy3i7s141q',1,'Admin',1672319399,'192.168.64.1',2,36,30075,NULL,'{#FAN_LOCATION}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism002e4xiyukorh563',1,'Admin',1672319399,'192.168.64.1',2,36,30076,NULL,'{#DISK_LOCATION}: Physical disk status','clc93sisl00004xiyevwovlv0',''),('clc93sism002f4xiyawhxw63a',1,'Admin',1672319399,'192.168.64.1',2,36,30077,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93sisl00004xiyevwovlv0',''),('clc93sism002g4xiyr0vo3u73',1,'Admin',1672319399,'192.168.64.1',2,36,30078,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93sisl00004xiyevwovlv0',''),('clc93sism002h4xiyfpx7b45v',1,'Admin',1672319399,'192.168.64.1',2,36,30079,NULL,'{#DISK_LOCATION}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sism002i4xiyvkmipnhk',1,'Admin',1672319399,'192.168.64.1',2,36,30080,NULL,'{#VDISK_LOCATION}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism002j4xiyk7s5zoyc',1,'Admin',1672319399,'192.168.64.1',2,36,30081,NULL,'{#VDISK_LOCATION}: Layout type','clc93sisl00004xiyevwovlv0',''),('clc93sism002k4xiy4vx6lsxc',1,'Admin',1672319399,'192.168.64.1',2,36,30082,NULL,'{#VDISK_LOCATION}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sism002l4xiyi01ovcel',1,'Admin',1672319399,'192.168.64.1',2,36,30083,NULL,'{#DISKARRAY_LOCATION}: Disk array controller status','clc93sisl00004xiyevwovlv0',''),('clc93sism002m4xiydotxmj5n',1,'Admin',1672319399,'192.168.64.1',2,36,30084,NULL,'{#DISKARRAY_LOCATION}: Disk array controller model','clc93sisl00004xiyevwovlv0',''),('clc93sism002n4xiyf7vvyudd',1,'Admin',1672319399,'192.168.64.1',2,36,30085,NULL,'{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status','clc93sisl00004xiyevwovlv0',''),('clc93sism002o4xiymj4gr3n9',1,'Admin',1672319399,'192.168.64.1',2,36,30157,NULL,'{#MEMNAME}: Total memory','clc93sisl00004xiyevwovlv0',''),('clc93sism002p4xiyxp0ydj6c',1,'Admin',1672319399,'192.168.64.1',2,36,30158,NULL,'{#MEMNAME}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93sism002q4xiy51gqge42',1,'Admin',1672319399,'192.168.64.1',2,36,30159,NULL,'{#MEMNAME}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism002r4xiyocuhxlff',1,'Admin',1672319399,'192.168.64.1',2,36,30160,NULL,'{#FSNAME}: Space utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism002s4xiyd9mi6txh',1,'Admin',1672319399,'192.168.64.1',2,36,30161,NULL,'{#FSNAME}: Total space','clc93sisl00004xiyevwovlv0',''),('clc93sism002t4xiyxppmcma0',1,'Admin',1672319399,'192.168.64.1',2,36,30162,NULL,'{#FSNAME}: Used space','clc93sisl00004xiyevwovlv0',''),('clc93sism002u4xiy249gxwyp',1,'Admin',1672319399,'192.168.64.1',2,36,30197,NULL,'HAProxy Backend {#PXNAME}: Responses denied per second','clc93sisl00004xiyevwovlv0',''),('clc93sism002v4xiy4w7h64rf',1,'Admin',1672319399,'192.168.64.1',2,36,30198,NULL,'HAProxy Backend {#PXNAME}: Errors connection per second','clc93sisl00004xiyevwovlv0',''),('clc93sism002w4xiyi3wwzgod',1,'Admin',1672319399,'192.168.64.1',2,36,30199,NULL,'HAProxy Backend {#PXNAME}: Response errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism002x4xiytd8uy7vm',1,'Admin',1672319399,'192.168.64.1',2,36,30200,NULL,'HAProxy Backend {#PXNAME}: Unassigned requests','clc93sisl00004xiyevwovlv0',''),('clc93sism002y4xiyjbr8wrdm',1,'Admin',1672319399,'192.168.64.1',2,36,30201,NULL,'HAProxy Backend {#PXNAME}: Time in queue','clc93sisl00004xiyevwovlv0',''),('clc93sism002z4xiyobij9fiz',1,'Admin',1672319399,'192.168.64.1',2,36,30202,NULL,'HAProxy Backend {#PXNAME}: Responses time','clc93sisl00004xiyevwovlv0',''),('clc93sism00304xiytj3eku26',1,'Admin',1672319399,'192.168.64.1',2,36,30203,NULL,'HAProxy Backend {#PXNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism00314xiym9g1x6tk',1,'Admin',1672319399,'192.168.64.1',2,36,30204,NULL,'HAProxy Backend {#PXNAME}: Redispatched requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00324xiyygl8te3y',1,'Admin',1672319399,'192.168.64.1',2,36,30205,NULL,'HAProxy Backend {#PXNAME}: Retried connections per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00334xiy8xpvplas',1,'Admin',1672319399,'192.168.64.1',2,36,35104,NULL,'HAProxy Backend {#PXNAME}: Number of active servers','clc93sisl00004xiyevwovlv0',''),('clc93sism00344xiycqta1dt6',1,'Admin',1672319399,'192.168.64.1',2,36,35105,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00354xiyokcb83i9',1,'Admin',1672319399,'192.168.64.1',2,36,35106,NULL,'HAProxy Backend {#PXNAME}: Weight','clc93sisl00004xiyevwovlv0',''),('clc93sism00364xiyclubyc47',1,'Admin',1672319399,'192.168.64.1',2,36,35107,NULL,'HAProxy Backend {#PXNAME}: Sessions per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00374xiyr35psw40',1,'Admin',1672319399,'192.168.64.1',2,36,35108,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00384xiy5hg28r55',1,'Admin',1672319399,'192.168.64.1',2,36,35109,NULL,'HAProxy Backend {#PXNAME}: Number of backup servers','clc93sisl00004xiyevwovlv0',''),('clc93sism00394xiyh81zhcdd',1,'Admin',1672319399,'192.168.64.1',2,36,35110,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003a4xiyq6eedoml',1,'Admin',1672319399,'192.168.64.1',2,36,35111,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003b4xiygs74rple',1,'Admin',1672319399,'192.168.64.1',2,36,35112,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003c4xiyasq14j7d',1,'Admin',1672319399,'192.168.64.1',2,36,35113,NULL,'HAProxy Backend {#PXNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism003d4xiyashjodic',1,'Admin',1672319399,'192.168.64.1',2,36,35114,NULL,'HAProxy Backend {#PXNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism003e4xiyb6vogy7j',1,'Admin',1672319399,'192.168.64.1',2,36,30196,NULL,'HAProxy Frontend {#PXNAME}: Session utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism003f4xiypurx6and',1,'Admin',1672319399,'192.168.64.1',2,36,30206,NULL,'HAProxy Frontend {#PXNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism003g4xiyw0srvkn6',1,'Admin',1672319399,'192.168.64.1',2,36,30207,NULL,'HAProxy Frontend {#PXNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism003h4xiy14i2dqxz',1,'Admin',1672319399,'192.168.64.1',2,36,30208,NULL,'HAProxy Frontend {#PXNAME}: Denied requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003i4xiyy0bahwzb',1,'Admin',1672319399,'192.168.64.1',2,36,30209,NULL,'HAProxy Frontend {#PXNAME}: Request errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003j4xiy1b6i2d1d',1,'Admin',1672319399,'192.168.64.1',2,36,30210,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003k4xiy3pxvhxvu',1,'Admin',1672319399,'192.168.64.1',2,36,30211,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003l4xiy8flhfa3g',1,'Admin',1672319399,'192.168.64.1',2,36,30212,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003m4xiyw15z45mk',1,'Admin',1672319399,'192.168.64.1',2,36,30213,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003n4xiyu6s4v7hv',1,'Admin',1672319399,'192.168.64.1',2,36,30214,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003o4xiyzzymnk8j',1,'Admin',1672319399,'192.168.64.1',2,36,30215,NULL,'HAProxy Frontend {#PXNAME}: Sessions rate','clc93sisl00004xiyevwovlv0',''),('clc93sism003p4xiyi4i3vzet',1,'Admin',1672319399,'192.168.64.1',2,36,30216,NULL,'HAProxy Frontend {#PXNAME}: Requests rate','clc93sisl00004xiyevwovlv0',''),('clc93sism003q4xiy1zn3eb4d',1,'Admin',1672319399,'192.168.64.1',2,36,30217,NULL,'HAProxy Frontend {#PXNAME}: Established sessions','clc93sisl00004xiyevwovlv0',''),('clc93sism003r4xiy6a4rx9h6',1,'Admin',1672319399,'192.168.64.1',2,36,30218,NULL,'HAProxy Frontend {#PXNAME}: Session limits','clc93sisl00004xiyevwovlv0',''),('clc93sism003s4xiyhhva3k6o',1,'Admin',1672319399,'192.168.64.1',2,36,35115,NULL,'HAProxy Frontend {#PXNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism003t4xiyzks24zxr',1,'Admin',1672319399,'192.168.64.1',2,36,30219,NULL,'HAProxy {#PXNAME} {#SVNAME}: Responses denied per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003u4xiy0pd8xmr5',1,'Admin',1672319399,'192.168.64.1',2,36,30220,NULL,'HAProxy {#PXNAME} {#SVNAME}: Errors connection per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003v4xiyb9qu0g6s',1,'Admin',1672319399,'192.168.64.1',2,36,30221,NULL,'HAProxy {#PXNAME} {#SVNAME}: Response errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003w4xiyulepa0ms',1,'Admin',1672319399,'192.168.64.1',2,36,30222,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003x4xiyil8p24t1',1,'Admin',1672319399,'192.168.64.1',2,36,30223,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003y4xiymctz247e',1,'Admin',1672319399,'192.168.64.1',2,36,30224,NULL,'HAProxy {#PXNAME} {#SVNAME}: Unassigned requests','clc93sisl00004xiyevwovlv0',''),('clc93sism003z4xiyv4hr2d5m',1,'Admin',1672319399,'192.168.64.1',2,36,30225,NULL,'HAProxy {#PXNAME} {#SVNAME}: Time in queue','clc93sisl00004xiyevwovlv0',''),('clc93sism00404xiyshu68rlx',1,'Admin',1672319399,'192.168.64.1',2,36,30226,NULL,'HAProxy {#PXNAME} {#SVNAME}: Responses time','clc93sisl00004xiyevwovlv0',''),('clc93sism00414xiytvx8z5cr',1,'Admin',1672319399,'192.168.64.1',2,36,30227,NULL,'HAProxy {#PXNAME} {#SVNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism00424xiypew4jbu5',1,'Admin',1672319399,'192.168.64.1',2,36,30228,NULL,'HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00434xiyz0khlj98',1,'Admin',1672319399,'192.168.64.1',2,36,30229,NULL,'HAProxy {#PXNAME} {#SVNAME}: Retried connections per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00444xiyvil2xnf6',1,'Admin',1672319399,'192.168.64.1',2,36,35116,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server is active','clc93sisl00004xiyevwovlv0',''),('clc93sism00454xiy6r7icv5b',1,'Admin',1672319399,'192.168.64.1',2,36,35117,NULL,'HAProxy {#PXNAME} {#SVNAME}: Weight','clc93sisl00004xiyevwovlv0',''),('clc93sism00464xiy6mekioj0',1,'Admin',1672319399,'192.168.64.1',2,36,35118,NULL,'HAProxy {#PXNAME} {#SVNAME}: Sessions per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00474xiyl9fd9dzw',1,'Admin',1672319399,'192.168.64.1',2,36,35119,NULL,'HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue','clc93sisl00004xiyevwovlv0',''),('clc93sism00484xiyetis5iu2',1,'Admin',1672319399,'192.168.64.1',2,36,35120,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server was selected per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00494xiy2pvowtsi',1,'Admin',1672319399,'192.168.64.1',2,36,35121,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server is backup','clc93sisl00004xiyevwovlv0',''),('clc93sism004a4xiymsgii8f1',1,'Admin',1672319399,'192.168.64.1',2,36,35122,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004b4xiyna75gdd1',1,'Admin',1672319399,'192.168.64.1',2,36,35123,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004c4xiy0eo7za27',1,'Admin',1672319399,'192.168.64.1',2,36,35124,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004d4xiycwc6mncn',1,'Admin',1672319399,'192.168.64.1',2,36,35125,NULL,'HAProxy {#PXNAME} {#SVNAME}: Status of last health check','clc93sisl00004xiyevwovlv0',''),('clc93sism004e4xiys6oh0zwn',1,'Admin',1672319399,'192.168.64.1',2,36,35126,NULL,'HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism004f4xiyqq7jocot',1,'Admin',1672319399,'192.168.64.1',2,36,35127,NULL,'HAProxy {#PXNAME} {#SVNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism004g4xiyqtwy07i6',1,'Admin',1672319399,'192.168.64.1',2,36,30240,NULL,'HAProxy Backend {#PXNAME}: Responses denied per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004h4xiy04ue6dsr',1,'Admin',1672319399,'192.168.64.1',2,36,30241,NULL,'HAProxy Backend {#PXNAME}: Errors connection per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004i4xiy9zrz1hi6',1,'Admin',1672319399,'192.168.64.1',2,36,30242,NULL,'HAProxy Backend {#PXNAME}: Response errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004j4xiyjsm5k8ra',1,'Admin',1672319399,'192.168.64.1',2,36,30243,NULL,'HAProxy Backend {#PXNAME}: Unassigned requests','clc93sisl00004xiyevwovlv0',''),('clc93sism004k4xiyz2vilx4a',1,'Admin',1672319399,'192.168.64.1',2,36,30244,NULL,'HAProxy Backend {#PXNAME}: Time in queue','clc93sisl00004xiyevwovlv0',''),('clc93sism004l4xiyy013hkl9',1,'Admin',1672319399,'192.168.64.1',2,36,30245,NULL,'HAProxy Backend {#PXNAME}: Responses time','clc93sisl00004xiyevwovlv0',''),('clc93sism004m4xiy6yfxsd27',1,'Admin',1672319399,'192.168.64.1',2,36,30246,NULL,'HAProxy Backend {#PXNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism004n4xiygj37ye22',1,'Admin',1672319399,'192.168.64.1',2,36,30247,NULL,'HAProxy Backend {#PXNAME}: Redispatched requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004o4xiyjizcse2u',1,'Admin',1672319399,'192.168.64.1',2,36,30248,NULL,'HAProxy Backend {#PXNAME}: Retried connections per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004p4xiyjxovg1fl',1,'Admin',1672319399,'192.168.64.1',2,36,35129,NULL,'HAProxy Backend {#PXNAME}: Number of active servers','clc93sisl00004xiyevwovlv0',''),('clc93sism004q4xiy98myaldm',1,'Admin',1672319399,'192.168.64.1',2,36,35130,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004r4xiyzew3nawi',1,'Admin',1672319399,'192.168.64.1',2,36,35131,NULL,'HAProxy Backend {#PXNAME}: Weight','clc93sisl00004xiyevwovlv0',''),('clc93sism004s4xiya2rmz93w',1,'Admin',1672319399,'192.168.64.1',2,36,35132,NULL,'HAProxy Backend {#PXNAME}: Sessions per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004t4xiytqu1m04x',1,'Admin',1672319399,'192.168.64.1',2,36,35133,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004u4xiybehzbtk5',1,'Admin',1672319399,'192.168.64.1',2,36,35134,NULL,'HAProxy Backend {#PXNAME}: Number of backup servers','clc93sisl00004xiyevwovlv0',''),('clc93sism004v4xiyzbck4c9u',1,'Admin',1672319399,'192.168.64.1',2,36,35135,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004w4xiyy8vjoeuo',1,'Admin',1672319399,'192.168.64.1',2,36,35136,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004x4xiywvufcufb',1,'Admin',1672319399,'192.168.64.1',2,36,35137,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004y4xiyoum4m62z',1,'Admin',1672319399,'192.168.64.1',2,36,35138,NULL,'HAProxy Backend {#PXNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism004z4xiykzb6l5th',1,'Admin',1672319399,'192.168.64.1',2,36,35139,NULL,'HAProxy Backend {#PXNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00504xiyat1bonqd',1,'Admin',1672319399,'192.168.64.1',2,36,30239,NULL,'HAProxy Frontend {#PXNAME}: Session utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism00514xiyvtnmbf6r',1,'Admin',1672319399,'192.168.64.1',2,36,30249,NULL,'HAProxy Frontend {#PXNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00524xiyva0ea3u4',1,'Admin',1672319399,'192.168.64.1',2,36,30250,NULL,'HAProxy Frontend {#PXNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00534xiy1amcqp5n',1,'Admin',1672319399,'192.168.64.1',2,36,30251,NULL,'HAProxy Frontend {#PXNAME}: Denied requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00544xiy1ookoxm8',1,'Admin',1672319399,'192.168.64.1',2,36,30252,NULL,'HAProxy Frontend {#PXNAME}: Request errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00554xiy62hv9vv6',1,'Admin',1672319399,'192.168.64.1',2,36,30253,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00564xiynazs93ox',1,'Admin',1672319399,'192.168.64.1',2,36,30254,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00574xiy1r64vrs6',1,'Admin',1672319399,'192.168.64.1',2,36,30255,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00584xiy1np47152',1,'Admin',1672319399,'192.168.64.1',2,36,30256,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00594xiynsw058cf',1,'Admin',1672319399,'192.168.64.1',2,36,30257,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005a4xiyygtu8gpc',1,'Admin',1672319399,'192.168.64.1',2,36,30258,NULL,'HAProxy Frontend {#PXNAME}: Sessions rate','clc93sisl00004xiyevwovlv0',''),('clc93sism005b4xiybijw2owk',1,'Admin',1672319399,'192.168.64.1',2,36,30259,NULL,'HAProxy Frontend {#PXNAME}: Requests rate','clc93sisl00004xiyevwovlv0',''),('clc93sism005c4xiyv8h45wlu',1,'Admin',1672319399,'192.168.64.1',2,36,30260,NULL,'HAProxy Frontend {#PXNAME}: Established sessions','clc93sisl00004xiyevwovlv0',''),('clc93sism005d4xiygfnzy5ws',1,'Admin',1672319399,'192.168.64.1',2,36,30261,NULL,'HAProxy Frontend {#PXNAME}: Session limits','clc93sisl00004xiyevwovlv0',''),('clc93sism005e4xiyervqg04i',1,'Admin',1672319399,'192.168.64.1',2,36,35140,NULL,'HAProxy Frontend {#PXNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism005f4xiy95i5w4jm',1,'Admin',1672319399,'192.168.64.1',2,36,30262,NULL,'HAProxy {#PXNAME} {#SVNAME}: Responses denied per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005g4xiygl55n6r1',1,'Admin',1672319399,'192.168.64.1',2,36,30263,NULL,'HAProxy {#PXNAME} {#SVNAME}: Errors connection per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005h4xiyf31ex90w',1,'Admin',1672319399,'192.168.64.1',2,36,30264,NULL,'HAProxy {#PXNAME} {#SVNAME}: Response errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005i4xiy6bo0iany',1,'Admin',1672319399,'192.168.64.1',2,36,30265,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005j4xiy9mjmqiev',1,'Admin',1672319399,'192.168.64.1',2,36,30266,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005k4xiyow51z92o',1,'Admin',1672319399,'192.168.64.1',2,36,30267,NULL,'HAProxy {#PXNAME} {#SVNAME}: Unassigned requests','clc93sisl00004xiyevwovlv0',''),('clc93sism005l4xiyrour3tbf',1,'Admin',1672319399,'192.168.64.1',2,36,30268,NULL,'HAProxy {#PXNAME} {#SVNAME}: Time in queue','clc93sisl00004xiyevwovlv0',''),('clc93sism005m4xiysljuy1nv',1,'Admin',1672319399,'192.168.64.1',2,36,30269,NULL,'HAProxy {#PXNAME} {#SVNAME}: Responses time','clc93sisl00004xiyevwovlv0',''),('clc93sism005n4xiyhwvji6bn',1,'Admin',1672319399,'192.168.64.1',2,36,30270,NULL,'HAProxy {#PXNAME} {#SVNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism005o4xiya5y6lk5q',1,'Admin',1672319399,'192.168.64.1',2,36,30271,NULL,'HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005p4xiyl50k5lnx',1,'Admin',1672319399,'192.168.64.1',2,36,30272,NULL,'HAProxy {#PXNAME} {#SVNAME}: Retried connections per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005q4xiyfivpdlqc',1,'Admin',1672319399,'192.168.64.1',2,36,35141,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server is active','clc93sisl00004xiyevwovlv0',''),('clc93sism005r4xiy118144p5',1,'Admin',1672319399,'192.168.64.1',2,36,35142,NULL,'HAProxy {#PXNAME} {#SVNAME}: Weight','clc93sisl00004xiyevwovlv0',''),('clc93sism005s4xiy86di537c',1,'Admin',1672319399,'192.168.64.1',2,36,35143,NULL,'HAProxy {#PXNAME} {#SVNAME}: Sessions per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005t4xiyllxt9l55',1,'Admin',1672319399,'192.168.64.1',2,36,35144,NULL,'HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue','clc93sisl00004xiyevwovlv0',''),('clc93sism005u4xiyjicrsg33',1,'Admin',1672319399,'192.168.64.1',2,36,35145,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server was selected per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005v4xiyocyw7yuo',1,'Admin',1672319399,'192.168.64.1',2,36,35146,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server is backup','clc93sisl00004xiyevwovlv0',''),('clc93sism005w4xiyu8q43jkq',1,'Admin',1672319399,'192.168.64.1',2,36,35147,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005x4xiy4fmrx0o8',1,'Admin',1672319399,'192.168.64.1',2,36,35148,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005y4xiyqgodxfd5',1,'Admin',1672319399,'192.168.64.1',2,36,35149,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005z4xiynzfcr2gc',1,'Admin',1672319399,'192.168.64.1',2,36,35150,NULL,'HAProxy {#PXNAME} {#SVNAME}: Status of last health check','clc93sisl00004xiyevwovlv0',''),('clc93sism00604xiyivu2uqck',1,'Admin',1672319399,'192.168.64.1',2,36,35151,NULL,'HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00614xiynv4yq49o',1,'Admin',1672319399,'192.168.64.1',2,36,35152,NULL,'HAProxy {#PXNAME} {#SVNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00624xiy9fkq12pi',1,'Admin',1672319399,'192.168.64.1',2,36,30573,NULL,'Container {#NAME}: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93sism00634xiybyfa43oc',1,'Admin',1672319399,'192.168.64.1',2,36,30574,NULL,'Container {#NAME}: Get info','clc93sisl00004xiyevwovlv0',''),('clc93sism00644xiyrxegv573',1,'Admin',1672319399,'192.168.64.1',2,36,30575,NULL,'Container {#NAME}: Online CPUs','clc93sisl00004xiyevwovlv0',''),('clc93sism00654xiy7swim7p9',1,'Admin',1672319399,'192.168.64.1',2,36,30576,NULL,'Container {#NAME}: Memory commit bytes','clc93sisl00004xiyevwovlv0',''),('clc93sism00664xiyk0jy54gz',1,'Admin',1672319399,'192.168.64.1',2,36,30577,NULL,'Container {#NAME}: Memory commit peak bytes','clc93sisl00004xiyevwovlv0',''),('clc93sism00674xiyttf3rqbf',1,'Admin',1672319399,'192.168.64.1',2,36,30578,NULL,'Container {#NAME}: Memory maximum usage','clc93sisl00004xiyevwovlv0',''),('clc93sism00684xiyeew52z7p',1,'Admin',1672319399,'192.168.64.1',2,36,30579,NULL,'Container {#NAME}: Memory private working set','clc93sisl00004xiyevwovlv0',''),('clc93sism00694xiy0e41dlq3',1,'Admin',1672319399,'192.168.64.1',2,36,30580,NULL,'Container {#NAME}: Memory usage','clc93sisl00004xiyevwovlv0',''),('clc93sism006a4xiy0u4k5751',1,'Admin',1672319399,'192.168.64.1',2,36,30581,NULL,'Container {#NAME}: Created','clc93sisl00004xiyevwovlv0',''),('clc93sism006b4xiyvrpsc9bt',1,'Admin',1672319399,'192.168.64.1',2,36,30582,NULL,'Container {#NAME}: CPU total usage per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006c4xiy363uumij',1,'Admin',1672319399,'192.168.64.1',2,36,30583,NULL,'Container {#NAME}: Networks bytes received per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006d4xiydcbj9a6x',1,'Admin',1672319399,'192.168.64.1',2,36,30584,NULL,'Container {#NAME}: Networks incoming packets dropped per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006e4xiy4twjkuu2',1,'Admin',1672319399,'192.168.64.1',2,36,30585,NULL,'Container {#NAME}: Networks errors received per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006f4xiyhuhmyfpm',1,'Admin',1672319399,'192.168.64.1',2,36,30586,NULL,'Container {#NAME}: Networks packets received per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006g4xiyp0kvwcvf',1,'Admin',1672319399,'192.168.64.1',2,36,30587,NULL,'Container {#NAME}: Networks bytes sent per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006h4xiye13jbtbr',1,'Admin',1672319399,'192.168.64.1',2,36,30588,NULL,'Container {#NAME}: Networks outgoing packets dropped per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006i4xiyb6t3m5t7',1,'Admin',1672319399,'192.168.64.1',2,36,30589,NULL,'Container {#NAME}: Networks errors sent per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006j4xiyox4b9tyl',1,'Admin',1672319399,'192.168.64.1',2,36,30590,NULL,'Container {#NAME}: CPU usermode usage per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006k4xiyf7jg35nf',1,'Admin',1672319399,'192.168.64.1',2,36,30591,NULL,'Container {#NAME}: Throttling periods','clc93sisl00004xiyevwovlv0',''),('clc93sism006l4xiyg4m3ur96',1,'Admin',1672319399,'192.168.64.1',2,36,30592,NULL,'Container {#NAME}: Finished at','clc93sisl00004xiyevwovlv0',''),('clc93sism006m4xiy2dj3dgt5',1,'Admin',1672319399,'192.168.64.1',2,36,30593,NULL,'Container {#NAME}: OOMKilled','clc93sisl00004xiyevwovlv0',''),('clc93sism006n4xiy7u7ton0m',1,'Admin',1672319399,'192.168.64.1',2,36,30594,NULL,'Container {#NAME}: Image','clc93sisl00004xiyevwovlv0',''),('clc93sisn006o4xiyztd6cx8r',1,'Admin',1672319399,'192.168.64.1',2,36,30595,NULL,'Container {#NAME}: Restart count','clc93sisl00004xiyevwovlv0',''),('clc93sisn006p4xiyc1w6zo04',1,'Admin',1672319399,'192.168.64.1',2,36,30596,NULL,'Container {#NAME}: Started at','clc93sisl00004xiyevwovlv0',''),('clc93sisn006q4xiyk7mi28xk',1,'Admin',1672319399,'192.168.64.1',2,36,30597,NULL,'Container {#NAME}: Dead','clc93sisl00004xiyevwovlv0',''),('clc93sisn006r4xiy4dt1o327',1,'Admin',1672319399,'192.168.64.1',2,36,30598,NULL,'Container {#NAME}: Error','clc93sisl00004xiyevwovlv0',''),('clc93sisn006s4xiytperig0q',1,'Admin',1672319399,'192.168.64.1',2,36,30599,NULL,'Container {#NAME}: Exit code','clc93sisl00004xiyevwovlv0',''),('clc93sisn006t4xiyvmio4199',1,'Admin',1672319399,'192.168.64.1',2,36,30600,NULL,'Container {#NAME}: Paused','clc93sisl00004xiyevwovlv0',''),('clc93sisn006u4xiypmr6xi6f',1,'Admin',1672319399,'192.168.64.1',2,36,30601,NULL,'Container {#NAME}: Throttled time','clc93sisl00004xiyevwovlv0',''),('clc93sisn006v4xiyxtyz5yxg',1,'Admin',1672319399,'192.168.64.1',2,36,30602,NULL,'Container {#NAME}: Pid','clc93sisl00004xiyevwovlv0',''),('clc93sisn006w4xiyz7s0gcpl',1,'Admin',1672319399,'192.168.64.1',2,36,30603,NULL,'Container {#NAME}: Restarting','clc93sisl00004xiyevwovlv0',''),('clc93sisn006x4xiyqf87e5y1',1,'Admin',1672319399,'192.168.64.1',2,36,30604,NULL,'Container {#NAME}: Running','clc93sisl00004xiyevwovlv0',''),('clc93sisn006y4xiy7rydltv0',1,'Admin',1672319399,'192.168.64.1',2,36,30605,NULL,'Container {#NAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn006z4xiyolnl2lzy',1,'Admin',1672319399,'192.168.64.1',2,36,30606,NULL,'Container {#NAME}: CPU kernelmode usage per second','clc93sisl00004xiyevwovlv0',''),('clc93sisn00704xiynoxqeqfn',1,'Admin',1672319399,'192.168.64.1',2,36,30607,NULL,'Container {#NAME}: Throttled periods','clc93sisl00004xiyevwovlv0',''),('clc93sisn00714xiywpzhuf3e',1,'Admin',1672319399,'192.168.64.1',2,36,30608,NULL,'Container {#NAME}: Networks packets sent per second','clc93sisl00004xiyevwovlv0',''),('clc93sisn00724xiyi9ez9lbe',1,'Admin',1672319399,'192.168.64.1',2,36,39803,NULL,'Container {#NAME}: CPU percent usage','clc93sisl00004xiyevwovlv0',''),('clc93sisn00734xiyevxb89vq',1,'Admin',1672319399,'192.168.64.1',2,36,30609,NULL,'Image {#NAME}: Created','clc93sisl00004xiyevwovlv0',''),('clc93sisn00744xiy2s666hur',1,'Admin',1672319399,'192.168.64.1',2,36,30610,NULL,'Image {#NAME}: Size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00754xiynb56t65f',1,'Admin',1672319399,'192.168.64.1',2,36,30714,NULL,'ES {#ES.NODE}: Query latency','clc93sisl00004xiyevwovlv0',''),('clc93sisn00764xiydamghw4k',1,'Admin',1672319399,'192.168.64.1',2,36,30715,NULL,'ES {#ES.NODE}: Flush latency','clc93sisl00004xiyevwovlv0',''),('clc93sisn00774xiykyzrxmun',1,'Admin',1672319399,'192.168.64.1',2,36,30716,NULL,'ES {#ES.NODE}: Indexing latency','clc93sisl00004xiyevwovlv0',''),('clc93sisn00784xiyvknireep',1,'Admin',1672319399,'192.168.64.1',2,36,30717,NULL,'ES {#ES.NODE}: Fetch latency','clc93sisl00004xiyevwovlv0',''),('clc93sisn00794xiyz1hj5fmo',1,'Admin',1672319399,'192.168.64.1',2,36,30718,NULL,'ES {#ES.NODE}: Refresh thread pool active threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn007a4xiyfa7o9vtw',1,'Admin',1672319399,'192.168.64.1',2,36,30719,NULL,'ES {#ES.NODE}: Total number of query','clc93sisl00004xiyevwovlv0',''),('clc93sisn007b4xiygygrw8wq',1,'Admin',1672319399,'192.168.64.1',2,36,30720,NULL,'ES {#ES.NODE}: Rate of queries','clc93sisl00004xiyevwovlv0',''),('clc93sisn007c4xiyu9tqvxpl',1,'Admin',1672319399,'192.168.64.1',2,36,30721,NULL,'ES {#ES.NODE}: Amount of JVM heap committed','clc93sisl00004xiyevwovlv0',''),('clc93sisn007d4xiy2jocj8d6',1,'Admin',1672319399,'192.168.64.1',2,36,30722,NULL,'ES {#ES.NODE}: Maximum JVM memory available for use','clc93sisl00004xiyevwovlv0',''),('clc93sisn007e4xiy02si6m97',1,'Admin',1672319399,'192.168.64.1',2,36,30723,NULL,'ES {#ES.NODE}: Amount of JVM heap currently in use','clc93sisl00004xiyevwovlv0',''),('clc93sisn007f4xiyjtq20z6k',1,'Admin',1672319399,'192.168.64.1',2,36,30724,NULL,'ES {#ES.NODE}: Percent of JVM heap currently in use','clc93sisl00004xiyevwovlv0',''),('clc93sisn007g4xiyexpv33o8',1,'Admin',1672319399,'192.168.64.1',2,36,30725,NULL,'ES {#ES.NODE}: Node uptime','clc93sisl00004xiyevwovlv0',''),('clc93sisn007h4xiy5402h24o',1,'Admin',1672319399,'192.168.64.1',2,36,30726,NULL,'ES {#ES.NODE}: Total available size','clc93sisl00004xiyevwovlv0',''),('clc93sisn007i4xiyq82jhxpb',1,'Admin',1672319399,'192.168.64.1',2,36,30727,NULL,'ES {#ES.NODE}: Refresh thread pool executor tasks completed','clc93sisl00004xiyevwovlv0',''),('clc93sisn007j4xiyeccdzjrr',1,'Admin',1672319399,'192.168.64.1',2,36,30728,NULL,'ES {#ES.NODE}: Time spent performing query','clc93sisl00004xiyevwovlv0',''),('clc93sisn007k4xiykswqbrcz',1,'Admin',1672319399,'192.168.64.1',2,36,30729,NULL,'ES {#ES.NODE}: Refresh thread pool executor tasks rejected','clc93sisl00004xiyevwovlv0',''),('clc93sisn007l4xiyfd50wz8f',1,'Admin',1672319399,'192.168.64.1',2,36,30730,NULL,'ES {#ES.NODE}: Search thread pool active threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn007m4xiyjdhrrpfj',1,'Admin',1672319399,'192.168.64.1',2,36,30731,NULL,'ES {#ES.NODE}: Search thread pool executor tasks completed','clc93sisl00004xiyevwovlv0',''),('clc93sisn007n4xiy3a2tg7eq',1,'Admin',1672319399,'192.168.64.1',2,36,30732,NULL,'ES {#ES.NODE}: Search thread pool tasks in queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn007o4xiy3e82qv3o',1,'Admin',1672319399,'192.168.64.1',2,36,30733,NULL,'ES {#ES.NODE}: Search thread pool executor tasks rejected','clc93sisl00004xiyevwovlv0',''),('clc93sisn007p4xiy7mzwvjmx',1,'Admin',1672319399,'192.168.64.1',2,36,30734,NULL,'ES {#ES.NODE}: Write thread pool active threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn007q4xiy7szu7223',1,'Admin',1672319399,'192.168.64.1',2,36,30735,NULL,'ES {#ES.NODE}: Write thread pool executor tasks completed','clc93sisl00004xiyevwovlv0',''),('clc93sisn007r4xiyllf6xiui',1,'Admin',1672319399,'192.168.64.1',2,36,30736,NULL,'ES {#ES.NODE}: Write thread pool tasks in queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn007s4xiyejsayyyn',1,'Admin',1672319399,'192.168.64.1',2,36,30737,NULL,'ES {#ES.NODE}: Refresh thread pool tasks in queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn007t4xiywbodmt5l',1,'Admin',1672319399,'192.168.64.1',2,36,30738,NULL,'ES {#ES.NODE}: Current query operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn007u4xiyo6f9w8z7',1,'Admin',1672319399,'192.168.64.1',2,36,30739,NULL,'ES {#ES.NODE}: Total time spent performing query','clc93sisl00004xiyevwovlv0',''),('clc93sisn007v4xiy5ahnt2vh',1,'Admin',1672319399,'192.168.64.1',2,36,30740,NULL,'ES {#ES.NODE}: Time spent throttling operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn007w4xiye85g0513',1,'Admin',1672319399,'192.168.64.1',2,36,30741,NULL,'ES {#ES.NODE}: Number of open HTTP connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn007x4xiywkpjlszz',1,'Admin',1672319399,'192.168.64.1',2,36,30742,NULL,'ES {#ES.NODE}: Rate of HTTP connections opened','clc93sisl00004xiyevwovlv0',''),('clc93sisn007y4xiyc6tvtk5b',1,'Admin',1672319399,'192.168.64.1',2,36,30743,NULL,'ES {#ES.NODE}: Total time spent on flushing indices to disk','clc93sisl00004xiyevwovlv0',''),('clc93sisn007z4xiy89nlf5yn',1,'Admin',1672319399,'192.168.64.1',2,36,30744,NULL,'ES {#ES.NODE}: Total number of index flushes to disk','clc93sisl00004xiyevwovlv0',''),('clc93sisn00804xiyxmn5p7pm',1,'Admin',1672319399,'192.168.64.1',2,36,30745,NULL,'ES {#ES.NODE}: Current indexing operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn00814xiydeg0tmop',1,'Admin',1672319399,'192.168.64.1',2,36,30746,NULL,'ES {#ES.NODE}: Total time spent performing indexing','clc93sisl00004xiyevwovlv0',''),('clc93sisn00824xiyvk17fnfb',1,'Admin',1672319399,'192.168.64.1',2,36,30747,NULL,'ES {#ES.NODE}: Total number of indexing','clc93sisl00004xiyevwovlv0',''),('clc93sisn00834xiyim7xi3ya',1,'Admin',1672319399,'192.168.64.1',2,36,30748,NULL,'ES {#ES.NODE}: Time spent throttling merge operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn00844xiyn8j19bzi',1,'Admin',1672319399,'192.168.64.1',2,36,30749,NULL,'ES {#ES.NODE}: Total size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00854xiyo884al34',1,'Admin',1672319399,'192.168.64.1',2,36,30750,NULL,'ES {#ES.NODE}: Time spent throttling recovery operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn00864xiyga6kz7fa',1,'Admin',1672319399,'192.168.64.1',2,36,30751,NULL,'ES {#ES.NODE}: Rate of index refreshes','clc93sisl00004xiyevwovlv0',''),('clc93sisn00874xiyt92g88sa',1,'Admin',1672319399,'192.168.64.1',2,36,30752,NULL,'ES {#ES.NODE}: Time spent performing refresh','clc93sisl00004xiyevwovlv0',''),('clc93sisn00884xiygs0pp6fp',1,'Admin',1672319399,'192.168.64.1',2,36,30753,NULL,'ES {#ES.NODE}: Current fetch operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn00894xiyo5mo4uo2',1,'Admin',1672319399,'192.168.64.1',2,36,30754,NULL,'ES {#ES.NODE}: Total time spent performing fetch','clc93sisl00004xiyevwovlv0',''),('clc93sisn008a4xiy48o2qlk8',1,'Admin',1672319399,'192.168.64.1',2,36,30755,NULL,'ES {#ES.NODE}: Time spent performing fetch','clc93sisl00004xiyevwovlv0',''),('clc93sisn008b4xiy7ftw1vb8',1,'Admin',1672319399,'192.168.64.1',2,36,30756,NULL,'ES {#ES.NODE}: Total number of fetch','clc93sisl00004xiyevwovlv0',''),('clc93sisn008c4xiyyp2m41sk',1,'Admin',1672319399,'192.168.64.1',2,36,30757,NULL,'ES {#ES.NODE}: Rate of fetch','clc93sisl00004xiyevwovlv0',''),('clc93sisn008d4xiyvb9k89ib',1,'Admin',1672319399,'192.168.64.1',2,36,30758,NULL,'ES {#ES.NODE}: Write thread pool executor tasks rejected','clc93sisl00004xiyevwovlv0',''),('clc93sisn008e4xiyzhuxk7cd',1,'Admin',1672319399,'192.168.64.1',2,36,30877,NULL,'ClickHouse: Dictionary {#NAME}: Bytes allocated','clc93sisl00004xiyevwovlv0',''),('clc93sisn008f4xiy8458abnd',1,'Admin',1672319399,'192.168.64.1',2,36,30878,NULL,'ClickHouse: Dictionary {#NAME}: Element count','clc93sisl00004xiyevwovlv0',''),('clc93sisn008g4xiyf7bx8914',1,'Admin',1672319399,'192.168.64.1',2,36,30879,NULL,'ClickHouse: Dictionary {#NAME}: Load factor','clc93sisl00004xiyevwovlv0',''),('clc93sisn008h4xiyh9on464r',1,'Admin',1672319399,'192.168.64.1',2,36,30880,NULL,'ClickHouse: {#DB}.{#TABLE}: Active replicas','clc93sisl00004xiyevwovlv0',''),('clc93sisn008i4xiyy8yopde7',1,'Admin',1672319399,'192.168.64.1',2,36,30881,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica future parts','clc93sisl00004xiyevwovlv0',''),('clc93sisn008j4xiy9yamfcxn',1,'Admin',1672319399,'192.168.64.1',2,36,30882,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size','clc93sisl00004xiyevwovlv0',''),('clc93sisn008k4xiyw7mp9m4r',1,'Admin',1672319399,'192.168.64.1',2,36,30883,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica readonly','clc93sisl00004xiyevwovlv0',''),('clc93sisn008l4xiydz354i9x',1,'Admin',1672319399,'192.168.64.1',2,36,30884,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica session expired','clc93sisl00004xiyevwovlv0',''),('clc93sisn008m4xiygnof7gpl',1,'Admin',1672319399,'192.168.64.1',2,36,30885,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica lag','clc93sisl00004xiyevwovlv0',''),('clc93sisn008n4xiydr8yf1u8',1,'Admin',1672319399,'192.168.64.1',2,36,30886,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica log max index','clc93sisl00004xiyevwovlv0',''),('clc93sisn008o4xiy1qowp212',1,'Admin',1672319399,'192.168.64.1',2,36,30887,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica log pointer','clc93sisl00004xiyevwovlv0',''),('clc93sisn008p4xiy92y8xcsr',1,'Admin',1672319399,'192.168.64.1',2,36,30888,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica queue merges size','clc93sisl00004xiyevwovlv0',''),('clc93sisn008q4xiy5v9sjj8n',1,'Admin',1672319399,'192.168.64.1',2,36,30889,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica parts to check','clc93sisl00004xiyevwovlv0',''),('clc93sisn008r4xiyrk48uurb',1,'Admin',1672319399,'192.168.64.1',2,36,30890,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica queue size','clc93sisl00004xiyevwovlv0',''),('clc93sisn008s4xiyfytrb1j9',1,'Admin',1672319399,'192.168.64.1',2,36,30891,NULL,'ClickHouse: {#DB}.{#TABLE}: Total replicas','clc93sisl00004xiyevwovlv0',''),('clc93sisn008t4xiytlxzcqek',1,'Admin',1672319399,'192.168.64.1',2,36,30892,NULL,'ClickHouse: {#DB}: Bytes','clc93sisl00004xiyevwovlv0',''),('clc93sisn008u4xiy17czcep1',1,'Admin',1672319399,'192.168.64.1',2,36,30893,NULL,'ClickHouse: {#DB}.{#TABLE}: Bytes','clc93sisl00004xiyevwovlv0',''),('clc93sisn008v4xiyl70vgajo',1,'Admin',1672319399,'192.168.64.1',2,36,30894,NULL,'ClickHouse: {#DB}.{#TABLE}: Parts','clc93sisl00004xiyevwovlv0',''),('clc93sisn008w4xiyt5xaxakw',1,'Admin',1672319399,'192.168.64.1',2,36,30895,NULL,'ClickHouse: {#DB}.{#TABLE}: Rows','clc93sisl00004xiyevwovlv0',''),('clc93sisn008x4xiyh8l7nkbt',1,'Admin',1672319399,'192.168.64.1',2,36,30963,NULL,'Etcd: RPCs completed with code {#GRPC.CODE}','clc93sisl00004xiyevwovlv0',''),('clc93sisn008y4xiynizga9f2',1,'Admin',1672319399,'192.168.64.1',2,36,30964,NULL,'Etcd: Etcd peer {#ETCD.PEER}: Bytes received','clc93sisl00004xiyevwovlv0',''),('clc93sisn008z4xiyu8uxr67c',1,'Admin',1672319399,'192.168.64.1',2,36,30965,NULL,'Etcd: Etcd peer {#ETCD.PEER}: Bytes sent','clc93sisl00004xiyevwovlv0',''),('clc93sisn00904xiyazxhms7q',1,'Admin',1672319399,'192.168.64.1',2,36,30966,NULL,'Etcd: Etcd peer {#ETCD.PEER}: Receive failures','clc93sisl00004xiyevwovlv0',''),('clc93sisn00914xiywcxntof8',1,'Admin',1672319399,'192.168.64.1',2,36,30967,NULL,'Etcd: Etcd peer {#ETCD.PEER}: Send failures','clc93sisl00004xiyevwovlv0',''),('clc93sisn00924xiydo6uxbud',1,'Admin',1672319399,'192.168.64.1',2,36,32621,NULL,'GitLab: Active connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00934xiyxmfxx9nt',1,'Admin',1672319399,'192.168.64.1',2,36,32622,NULL,'GitLab: Idle threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn00944xiyfuqvvt5d',1,'Admin',1672319399,'192.168.64.1',2,36,32623,NULL,'GitLab: Killer terminations, total','clc93sisl00004xiyevwovlv0',''),('clc93sisn00954xiyd8plbjy5',1,'Admin',1672319399,'192.168.64.1',2,36,32624,NULL,'GitLab: Max threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn00964xiykid0faja',1,'Admin',1672319399,'192.168.64.1',2,36,32625,NULL,'GitLab: Pool capacity','clc93sisl00004xiyevwovlv0',''),('clc93sisn00974xiyeaoccdiw',1,'Admin',1672319399,'192.168.64.1',2,36,32626,NULL,'GitLab: Queued connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00984xiycy7gto6j',1,'Admin',1672319399,'192.168.64.1',2,36,32627,NULL,'GitLab: Running threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn00994xiy6dae6zqi',1,'Admin',1672319399,'192.168.64.1',2,36,32628,NULL,'GitLab: Running workers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009a4xiymqnr6d2s',1,'Admin',1672319399,'192.168.64.1',2,36,32629,NULL,'GitLab: Stale workers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009b4xiyoldcrpr0',1,'Admin',1672319399,'192.168.64.1',2,36,32630,NULL,'GitLab: Workers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009c4xiy2wmfkgoe',1,'Admin',1672319399,'192.168.64.1',2,36,32631,NULL,'GitLab: Unicorn: Active connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn009d4xiyfunvampl',1,'Admin',1672319399,'192.168.64.1',2,36,32632,NULL,'GitLab: Unicorn: Queued connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn009e4xiyi0qylf6x',1,'Admin',1672319399,'192.168.64.1',2,36,32633,NULL,'GitLab: Unicorn: Workers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009f4xiydc9wbv6f',1,'Admin',1672319399,'192.168.64.1',2,36,32670,NULL,'Hadoop DataNode {#HOSTNAME}: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93sisn009g4xiywbzwhq5c',1,'Admin',1672319399,'192.168.64.1',2,36,32672,NULL,'{#HOSTNAME}: Admin state','clc93sisl00004xiyevwovlv0',''),('clc93sisn009h4xiyyz24m462',1,'Admin',1672319399,'192.168.64.1',2,36,32673,NULL,'{#HOSTNAME}: Used','clc93sisl00004xiyevwovlv0',''),('clc93sisn009i4xiy0tadn1q3',1,'Admin',1672319399,'192.168.64.1',2,36,32674,NULL,'{#HOSTNAME}: JVM Garbage collection time','clc93sisl00004xiyevwovlv0',''),('clc93sisn009j4xiy87i3q2jj',1,'Admin',1672319399,'192.168.64.1',2,36,32675,NULL,'{#HOSTNAME}: JVM Heap usage','clc93sisl00004xiyevwovlv0',''),('clc93sisn009k4xiyzh2cip1r',1,'Admin',1672319399,'192.168.64.1',2,36,32676,NULL,'{#HOSTNAME}: JVM Threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn009l4xiycktplm97',1,'Admin',1672319399,'192.168.64.1',2,36,32677,NULL,'{#HOSTNAME}: Number of failed volumes','clc93sisl00004xiyevwovlv0',''),('clc93sisn009m4xiyb9nkgxci',1,'Admin',1672319399,'192.168.64.1',2,36,32678,NULL,'{#HOSTNAME}: Oper state','clc93sisl00004xiyevwovlv0',''),('clc93sisn009n4xiy2lupgb0r',1,'Admin',1672319399,'192.168.64.1',2,36,32679,NULL,'{#HOSTNAME}: Remaining','clc93sisl00004xiyevwovlv0',''),('clc93sisn009o4xiyrgddacxa',1,'Admin',1672319399,'192.168.64.1',2,36,32680,NULL,'{#HOSTNAME}: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93sisn009p4xiyl609v8tx',1,'Admin',1672319399,'192.168.64.1',2,36,32681,NULL,'{#HOSTNAME}: Version','clc93sisl00004xiyevwovlv0',''),('clc93sisn009q4xiy9zown2h9',1,'Admin',1672319399,'192.168.64.1',2,36,32671,NULL,'Hadoop NodeManager {#HOSTNAME}: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93sisn009r4xiyfki6wbgm',1,'Admin',1672319399,'192.168.64.1',2,36,32682,NULL,'{#HOSTNAME}: Available memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn009s4xiyog5c1mvg',1,'Admin',1672319399,'192.168.64.1',2,36,32683,NULL,'{#HOSTNAME}: Container launch avg duration','clc93sisl00004xiyevwovlv0',''),('clc93sisn009t4xiyn21wyqlt',1,'Admin',1672319399,'192.168.64.1',2,36,32684,NULL,'{#HOSTNAME}: JVM Garbage collection time','clc93sisl00004xiyevwovlv0',''),('clc93sisn009u4xiyj31fkaqh',1,'Admin',1672319399,'192.168.64.1',2,36,32685,NULL,'{#HOSTNAME}: JVM Heap usage','clc93sisl00004xiyevwovlv0',''),('clc93sisn009v4xiy5sxg0kbc',1,'Admin',1672319399,'192.168.64.1',2,36,32686,NULL,'{#HOSTNAME}: JVM Threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn009w4xiynlu0p8gl',1,'Admin',1672319399,'192.168.64.1',2,36,32687,NULL,'{#HOSTNAME}: Number of containers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009x4xiyykv64do8',1,'Admin',1672319399,'192.168.64.1',2,36,32688,NULL,'{#HOSTNAME}: RPC queue & processing time','clc93sisl00004xiyevwovlv0',''),('clc93sisn009y4xiy63lwhep5',1,'Admin',1672319399,'192.168.64.1',2,36,32689,NULL,'{#HOSTNAME}: State','clc93sisl00004xiyevwovlv0',''),('clc93sisn009z4xiy2f767lv8',1,'Admin',1672319399,'192.168.64.1',2,36,32690,NULL,'{#HOSTNAME}: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a04xiy304xp512',1,'Admin',1672319399,'192.168.64.1',2,36,32691,NULL,'{#HOSTNAME}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a14xiy98d0oajd',1,'Admin',1672319399,'192.168.64.1',2,36,32692,NULL,'{#HOSTNAME}: Version','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a24xiy6vyi8pxr',1,'Admin',1672319399,'192.168.64.1',2,36,32874,NULL,'Vault: Rollback attempt [{#MOUNTPOINT}] ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a34xiy7ok1yr9a',1,'Admin',1672319399,'192.168.64.1',2,36,32875,NULL,'Vault: Route rollback [{#MOUNTPOINT}] ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a44xiyalkk3ibo',1,'Admin',1672319399,'192.168.64.1',2,36,32876,NULL,'Vault: Stream WAL guard found, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a54xiy2r43ogra',1,'Admin',1672319399,'192.168.64.1',2,36,32877,NULL,'Vault: Stream WAL missing guard, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a64xiyp26mmhpc',1,'Admin',1672319399,'192.168.64.1',2,36,32878,NULL,'Vault: Last remote WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a74xiy539mtfvf',1,'Admin',1672319399,'192.168.64.1',2,36,32879,NULL,'Vault: Merkle commit index{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a84xiy3lzh2u72',1,'Admin',1672319399,'192.168.64.1',2,36,32880,NULL,'Vault: Last DR WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a94xiy8kntwsfv',1,'Admin',1672319399,'192.168.64.1',2,36,32881,NULL,'Vault: Last performance WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00aa4xiyi3g3iiup',1,'Admin',1672319399,'192.168.64.1',2,36,32882,NULL,'Vault: Last WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ab4xiy9q6whaft',1,'Admin',1672319399,'192.168.64.1',2,36,32883,NULL,'Vault: Storage [{#STORAGE}] {#OPERATION} ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ac4xiy0nz2dtdl',1,'Admin',1672319399,'192.168.64.1',2,36,32871,NULL,'Vault: Token [{#TOKEN_NAME}] error','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ad4xiyexfie3al',1,'Admin',1672319399,'192.168.64.1',2,36,32872,NULL,'Vault: Token [{#TOKEN_NAME}] has TTL','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ae4xiyrpc2xcjd',1,'Admin',1672319399,'192.168.64.1',2,36,32873,NULL,'Vault: Token [{#TOKEN_NAME}] TTL','clc93sisl00004xiyevwovlv0',''),('clc93sisn00af4xiy28gvivnd',1,'Admin',1672319399,'192.168.64.1',2,36,32884,NULL,'Vault: Delete WALs, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ag4xiy1m7mkcua',1,'Admin',1672319399,'192.168.64.1',2,36,32885,NULL,'Vault: Flush ready WAL, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ah4xiy7m63bjyb',1,'Admin',1672319399,'192.168.64.1',2,36,32886,NULL,'Vault: GC deleted WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ai4xiy6r0f6ic5',1,'Admin',1672319399,'192.168.64.1',2,36,32887,NULL,'Vault: WALs on disk, total{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00aj4xiysdjjgbde',1,'Admin',1672319399,'192.168.64.1',2,36,32888,NULL,'Vault: Load WALs, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ak4xiy64pdmvsf',1,'Admin',1672319399,'192.168.64.1',2,36,32889,NULL,'Vault: Persist WALs, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00al4xiyu57vmc0h',1,'Admin',1672319399,'192.168.64.1',2,36,33522,NULL,'Hikvision camera: Get PTZ info','clc93sisl00004xiyevwovlv0',''),('clc93sisn00am4xiya1o28kfd',1,'Admin',1672319399,'192.168.64.1',2,36,33523,NULL,'Hikvision camera: Get PTZ info: Channel \"{#PTZ_CHANNEL_ID}\": Login status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00an4xiyocqya5a4',1,'Admin',1672319399,'192.168.64.1',2,36,33524,NULL,'Channel \"{#PTZ_CHANNEL_ID}\": Absolute zoom','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ao4xiy6hf6ofud',1,'Admin',1672319399,'192.168.64.1',2,36,33525,NULL,'Channel \"{#PTZ_CHANNEL_ID}\": Azimuth','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ap4xiy4e33xghh',1,'Admin',1672319399,'192.168.64.1',2,36,33526,NULL,'Channel \"{#PTZ_CHANNEL_ID}\": Elevation','clc93sisl00004xiyevwovlv0',''),('clc93sisn00aq4xiyvf6fgmy2',1,'Admin',1672319399,'192.168.64.1',2,36,33527,NULL,'Channel \"{#CHANNEL_ID}\": Constant bitRate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ar4xiy9bb3bj4r',1,'Admin',1672319399,'192.168.64.1',2,36,33528,NULL,'Channel \"{#CHANNEL_ID}\": Fixed quality','clc93sisl00004xiyevwovlv0',''),('clc93sisn00as4xiymo8chen6',1,'Admin',1672319399,'192.168.64.1',2,36,33529,NULL,'Channel \"{#CHANNEL_ID}\": GovLength','clc93sisl00004xiyevwovlv0',''),('clc93sisn00at4xiyejdx5wov',1,'Admin',1672319399,'192.168.64.1',2,36,33530,NULL,'Channel \"{#CHANNEL_ID}\": H264Profile','clc93sisl00004xiyevwovlv0',''),('clc93sisn00au4xiy4jl4na5q',1,'Admin',1672319399,'192.168.64.1',2,36,33531,NULL,'Channel \"{#CHANNEL_ID}\": Key frame interval','clc93sisl00004xiyevwovlv0',''),('clc93sisn00av4xiyy1vdqt2m',1,'Admin',1672319399,'192.168.64.1',2,36,33532,NULL,'Channel \"{#CHANNEL_ID}\": Frame rate (max)','clc93sisl00004xiyevwovlv0',''),('clc93sisn00aw4xiy8f47fsmw',1,'Admin',1672319399,'192.168.64.1',2,36,33533,NULL,'Channel \"{#CHANNEL_ID}\": Smoothing','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ax4xiy40tapsgj',1,'Admin',1672319399,'192.168.64.1',2,36,33534,NULL,'Channel \"{#CHANNEL_ID}\": Snapshot image type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ay4xiy733jwkx8',1,'Admin',1672319399,'192.168.64.1',2,36,33535,NULL,'Channel \"{#CHANNEL_ID}\": VBR lower','clc93sisl00004xiyevwovlv0',''),('clc93sisn00az4xiy4auzr4cm',1,'Admin',1672319399,'192.168.64.1',2,36,33536,NULL,'Channel \"{#CHANNEL_ID}\": VBR upper','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b04xiyslsz788m',1,'Admin',1672319399,'192.168.64.1',2,36,33537,NULL,'Channel \"{#CHANNEL_ID}\": Video codec type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b14xiy8i7uv53n',1,'Admin',1672319399,'192.168.64.1',2,36,33538,NULL,'Channel \"{#CHANNEL_ID}\": Video quality control type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b24xiyyacmz2nx',1,'Admin',1672319399,'192.168.64.1',2,36,33539,NULL,'Channel \"{#CHANNEL_ID}\": Resolution height','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b34xiy7rleyoif',1,'Admin',1672319399,'192.168.64.1',2,36,33540,NULL,'Channel \"{#CHANNEL_ID}\": Resolution width','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b44xiyaidgj6iw',1,'Admin',1672319399,'192.168.64.1',2,36,33541,NULL,'Channel \"{#CHANNEL_ID}\": Video scan type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b54xiyb3o9z395',1,'Admin',1672319399,'192.168.64.1',2,36,35290,NULL,'Data region {#JMXNAME}: Allocation, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b64xiygkysu9fg',1,'Admin',1672319399,'192.168.64.1',2,36,35291,NULL,'Data region {#JMXNAME}: Checkpoint buffer size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b74xiy7e5q4cby',1,'Admin',1672319399,'192.168.64.1',2,36,35292,NULL,'Data region {#JMXNAME}: Dirty pages','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b84xiy8hfcuds3',1,'Admin',1672319399,'192.168.64.1',2,36,35293,NULL,'Data region {#JMXNAME}: Eviction, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b94xiyuqvd30vs',1,'Admin',1672319399,'192.168.64.1',2,36,35294,NULL,'Data region {#JMXNAME}: Size, max','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ba4xiy0qf32l29',1,'Admin',1672319399,'192.168.64.1',2,36,35295,NULL,'Data region {#JMXNAME}: Offheap size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bb4xiy4b6op1lh',1,'Admin',1672319399,'192.168.64.1',2,36,35296,NULL,'Data region {#JMXNAME}: Offheap used size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bc4xiyqmvjyqru',1,'Admin',1672319399,'192.168.64.1',2,36,35297,NULL,'Data region {#JMXNAME}: Pages fill factor','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bd4xiyldfs5x87',1,'Admin',1672319399,'192.168.64.1',2,36,35298,NULL,'Data region {#JMXNAME}: Pages replace, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00be4xiy9gotibh1',1,'Admin',1672319399,'192.168.64.1',2,36,35299,NULL,'Data region {#JMXNAME}: Allocated, bytes','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bf4xiyzdd1pk0y',1,'Admin',1672319399,'192.168.64.1',2,36,35300,NULL,'Data region {#JMXNAME}: Used checkpoint buffer size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bg4xiyh53kj96o',1,'Admin',1672319399,'192.168.64.1',2,36,35301,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs active, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bh4xiyz9o9qwil',1,'Admin',1672319399,'192.168.64.1',2,36,35302,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bi4xiyrxe0lqaf',1,'Admin',1672319399,'192.168.64.1',2,36,35303,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bj4xiyxpgg4id4',1,'Admin',1672319399,'192.168.64.1',2,36,35304,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bk4xiyg3bt0wrx',1,'Admin',1672319399,'192.168.64.1',2,36,35305,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Threads count, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bl4xiy8xh2g0b3',1,'Admin',1672319399,'192.168.64.1',2,36,35306,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bm4xiyxyzfkyet',1,'Admin',1672319399,'192.168.64.1',2,36,35307,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Heap memory used','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bn4xiyydan16ty',1,'Admin',1672319399,'192.168.64.1',2,36,35308,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bo4xiyxcejoeqt',1,'Admin',1672319399,'192.168.64.1',2,36,35309,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bp4xiyo843dhrv',1,'Admin',1672319399,'192.168.64.1',2,36,35310,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bq4xiy07sheq8w',1,'Admin',1672319399,'192.168.64.1',2,36,35311,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline','clc93sisl00004xiyevwovlv0',''),('clc93sisn00br4xiyug0iynqp',1,'Admin',1672319399,'192.168.64.1',2,36,35312,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bs4xiyx0urmaiu',1,'Admin',1672319399,'192.168.64.1',2,36,35313,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Client','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bt4xiypw54msg6',1,'Admin',1672319399,'192.168.64.1',2,36,35314,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, total','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bu4xiyc7pjqe4u',1,'Admin',1672319399,'192.168.64.1',2,36,35315,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Server','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bv4xiyutz8ictm',1,'Admin',1672319399,'192.168.64.1',2,36,35316,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Version','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bw4xiynk39jmwp',1,'Admin',1672319399,'192.168.64.1',2,36,35317,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Local node ID','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bx4xiyqxqb4ojy',1,'Admin',1672319399,'192.168.64.1',2,36,35318,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93sisn00by4xiydtk9drx5',1,'Admin',1672319399,'192.168.64.1',2,36,35319,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bz4xiy5z3hmd1c',1,'Admin',1672319399,'192.168.64.1',2,36,35320,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c04xiy9mol56av',1,'Admin',1672319399,'192.168.64.1',2,36,35321,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Communication reconnect rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c14xiy5wpp69xn',1,'Admin',1672319399,'192.168.64.1',2,36,35322,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c24xiyqbs2t2be',1,'Admin',1672319399,'192.168.64.1',2,36,35323,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c34xiykbq2iz03',1,'Admin',1672319399,'192.168.64.1',2,36,35324,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c44xiynfnatcfr',1,'Admin',1672319399,'192.168.64.1',2,36,35325,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes failed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c54xiyg0gqcjk1',1,'Admin',1672319399,'192.168.64.1',2,36,35326,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes joined','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c64xiy2z0ytcdn',1,'Admin',1672319399,'192.168.64.1',2,36,35327,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes left','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c74xiysw4ett6h',1,'Admin',1672319399,'192.168.64.1',2,36,35328,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c84xiyp5i4nj26',1,'Admin',1672319399,'192.168.64.1',2,36,35329,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c94xiyt7oqvt83',1,'Admin',1672319399,'192.168.64.1',2,36,35330,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ca4xiyxsxrpo05',1,'Admin',1672319399,'192.168.64.1',2,36,35331,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Locked keys','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cb4xiy0i35vjz1',1,'Admin',1672319399,'192.168.64.1',2,36,35332,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cc4xiye4qg8x1w',1,'Admin',1672319399,'192.168.64.1',2,36,35333,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cd4xiyler9lav6',1,'Admin',1672319399,'192.168.64.1',2,36,35334,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ce4xiy5406qx8s',1,'Admin',1672319399,'192.168.64.1',2,36,35335,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cf4xiyabbcaczb',1,'Admin',1672319399,'192.168.64.1',2,36,35336,NULL,'Cache group [{#JMXNAME}]: Backups','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cg4xiyzr76aas0',1,'Admin',1672319399,'192.168.64.1',2,36,35337,NULL,'Cache group [{#JMXNAME}]: Caches','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ch4xiymnsghr7a',1,'Admin',1672319399,'192.168.64.1',2,36,35338,NULL,'Cache group [{#JMXNAME}]: Local node partitions, moving','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ci4xiy3xs4t9th',1,'Admin',1672319399,'192.168.64.1',2,36,35339,NULL,'Cache group [{#JMXNAME}]: Local node partitions, owning','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cj4xiyrltdclsu',1,'Admin',1672319399,'192.168.64.1',2,36,35340,NULL,'Cache group [{#JMXNAME}]: Local node entries, renting','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ck4xiylj295qu5',1,'Admin',1672319399,'192.168.64.1',2,36,35341,NULL,'Cache group [{#JMXNAME}]: Local node partitions, renting','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cl4xiyj7z76h2e',1,'Admin',1672319399,'192.168.64.1',2,36,35342,NULL,'Cache group [{#JMXNAME}]: Partition copies, max','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cm4xiycj18frtd',1,'Admin',1672319399,'192.168.64.1',2,36,35343,NULL,'Cache group [{#JMXNAME}]: Partition copies, min','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cn4xiyzx7vhzqn',1,'Admin',1672319399,'192.168.64.1',2,36,35344,NULL,'Cache group [{#JMXNAME}]: Partitions','clc93sisl00004xiyevwovlv0',''),('clc93sisn00co4xiy7vd3s0pv',1,'Admin',1672319399,'192.168.64.1',2,36,35345,NULL,'Thread pool [{#JMXNAME}]: Pool size, core','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cp4xiy2jz8pci9',1,'Admin',1672319399,'192.168.64.1',2,36,35346,NULL,'Thread pool [{#JMXNAME}]: Pool size, max','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cq4xiy89v5hrc5',1,'Admin',1672319399,'192.168.64.1',2,36,35347,NULL,'Thread pool [{#JMXNAME}]: Pool size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cr4xiymgomguoc',1,'Admin',1672319399,'192.168.64.1',2,36,35348,NULL,'Thread pool [{#JMXNAME}]: Queue size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cs4xiyahuvud0a',1,'Admin',1672319399,'192.168.64.1',2,36,35349,NULL,'Cache group [{#JMXGROUP}]: Cache gets, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ct4xiyib8ozkfk',1,'Admin',1672319399,'192.168.64.1',2,36,35350,NULL,'Cache group [{#JMXGROUP}]: Cache hits, pct','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cu4xiy5s7p8by7',1,'Admin',1672319399,'192.168.64.1',2,36,35351,NULL,'Cache group [{#JMXGROUP}]: Cache misses, pct','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cv4xiyakxtzr8t',1,'Admin',1672319399,'192.168.64.1',2,36,35352,NULL,'Cache group [{#JMXGROUP}]: Cache puts, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cw4xiy58w1wt0g',1,'Admin',1672319399,'192.168.64.1',2,36,35353,NULL,'Cache group [{#JMXGROUP}]: Cache removals, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cx4xiyp7e31fzk',1,'Admin',1672319399,'192.168.64.1',2,36,35354,NULL,'Cache group [{#JMXGROUP}]: Cache size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cy4xiy17xezf0y',1,'Admin',1672319399,'192.168.64.1',2,36,35355,NULL,'Cache group [{#JMXGROUP}]: Cache transaction commits, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cz4xiyenakt403',1,'Admin',1672319399,'192.168.64.1',2,36,35356,NULL,'Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d04xiy5ehnn5gd',1,'Admin',1672319399,'192.168.64.1',2,36,35357,NULL,'Cache group [{#JMXGROUP}]: Cache heap entries','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d14xiyapd5c2a7',1,'Admin',1672319399,'192.168.64.1',2,36,35439,NULL,'F5 BIG-IP: Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}]: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d24xiyk80chcpq',1,'Admin',1672319399,'192.168.64.1',2,36,35440,NULL,'F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Slot','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d34xiyzvbx27wq',1,'Admin',1672319399,'192.168.64.1',2,36,35441,NULL,'F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Value','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d44xiy8h7ctw1u',1,'Admin',1672319399,'192.168.64.1',2,36,35442,NULL,'F5 BIG-IP: Certificate [{#CERT.NAME}]: Expiration date','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d54xiyvjvv1sbk',1,'Admin',1672319399,'192.168.64.1',2,36,35443,NULL,'F5 BIG-IP: FAN [{#FAN.INDEX}]: Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d64xiy4uf537me',1,'Admin',1672319399,'192.168.64.1',2,36,35444,NULL,'F5 BIG-IP: FAN [{#FAN.INDEX}]: Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d74xiyqk7dmm4e',1,'Admin',1672319399,'192.168.64.1',2,36,35445,NULL,'F5 BIG-IP: Power supply [{#POWER.INDEX}]: Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d84xiy1gf6f1zf',1,'Admin',1672319399,'192.168.64.1',2,36,35446,NULL,'F5 BIG-IP: Sensor [{#TEMP.INDEX}]: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d94xiy3qzwld9p',1,'Admin',1672319399,'192.168.64.1',2,36,35447,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00da4xiydygtdm7w',1,'Admin',1672319399,'192.168.64.1',2,36,35448,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00db4xiye4kas3jc',1,'Admin',1672319399,'192.168.64.1',2,36,35449,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dc4xiyl738da30',1,'Admin',1672319399,'192.168.64.1',2,36,35450,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dd4xiyzow8j34j',1,'Admin',1672319399,'192.168.64.1',2,36,35451,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00de4xiyjezyh4dk',1,'Admin',1672319399,'192.168.64.1',2,36,35452,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00df4xiyya69e3sq',1,'Admin',1672319399,'192.168.64.1',2,36,35453,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dg4xiygx3mvi4e',1,'Admin',1672319399,'192.168.64.1',2,36,35454,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dh4xiypcd8inkm',1,'Admin',1672319399,'192.168.64.1',2,36,35455,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00di4xiyk60l84tn',1,'Admin',1672319399,'192.168.64.1',2,36,35456,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dj4xiyrrmjr65t',1,'Admin',1672319399,'192.168.64.1',2,36,35457,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dk4xiyp8f4ytp5',1,'Admin',1672319399,'192.168.64.1',2,36,35458,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1s)','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dl4xiyb5rwj7gq',1,'Admin',1672319399,'192.168.64.1',2,36,35459,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dm4xiycl8ov9em',1,'Admin',1672319399,'192.168.64.1',2,36,35460,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dn4xiyz7u30rem',1,'Admin',1672319399,'192.168.64.1',2,36,35461,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00do4xiy260hlw2x',1,'Admin',1672319399,'192.168.64.1',2,36,35462,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dp4xiykglcx4o4',1,'Admin',1672319399,'192.168.64.1',2,36,35463,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dq4xiybrqg6oiq',1,'Admin',1672319399,'192.168.64.1',2,36,35464,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dr4xiyvmsvmcec',1,'Admin',1672319399,'192.168.64.1',2,36,35465,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ds4xiyz2eqor0d',1,'Admin',1672319399,'192.168.64.1',2,36,35466,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dt4xiy5nlki76c',1,'Admin',1672319399,'192.168.64.1',2,36,35467,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00du4xiyaffdumkv',1,'Admin',1672319399,'192.168.64.1',2,36,35468,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dv4xiyszhc2ovq',1,'Admin',1672319399,'192.168.64.1',2,36,35469,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dw4xiyai566te5',1,'Admin',1672319399,'192.168.64.1',2,36,35470,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dx4xiy0jclpiwi',1,'Admin',1672319399,'192.168.64.1',2,36,35471,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dy4xiybansgjxf',1,'Admin',1672319399,'192.168.64.1',2,36,35472,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dz4xiyc5bnvtzt',1,'Admin',1672319399,'192.168.64.1',2,36,35473,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e04xiyycg90og2',1,'Admin',1672319399,'192.168.64.1',2,36,35474,NULL,'F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: FAN speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e14xiyranlmlqn',1,'Admin',1672319399,'192.168.64.1',2,36,35475,NULL,'F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Name','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e24xiykxjjw30a',1,'Admin',1672319399,'192.168.64.1',2,36,35476,NULL,'F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e34xiyih3vf3l5',1,'Admin',1672319399,'192.168.64.1',2,36,35477,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Block size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e44xiyrcbdyvb7',1,'Admin',1672319399,'192.168.64.1',2,36,35478,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Free blocks','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e54xiyc3388b34',1,'Admin',1672319399,'192.168.64.1',2,36,35479,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Free nodes','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e64xiyo8j161cs',1,'Admin',1672319399,'192.168.64.1',2,36,35480,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Total blocks','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e74xiynz2c299p',1,'Admin',1672319399,'192.168.64.1',2,36,35481,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Total nodes','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e84xiy3a4ugm8d',1,'Admin',1672319399,'192.168.64.1',2,36,35482,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Total other non-TMM memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e94xiyjs6aauxg',1,'Admin',1672319399,'192.168.64.1',2,36,35483,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Total swap','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ea4xiy7tww42kk',1,'Admin',1672319399,'192.168.64.1',2,36,35484,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Total memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eb4xiy9ubudwzf',1,'Admin',1672319399,'192.168.64.1',2,36,35485,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Used other non-TMM memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ec4xiy4xqgrj1d',1,'Admin',1672319399,'192.168.64.1',2,36,35486,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Used swap','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ed4xiyxaxibtdg',1,'Admin',1672319399,'192.168.64.1',2,36,35487,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ee4xiyzpin5mhk',1,'Admin',1672319399,'192.168.64.1',2,36,35488,NULL,'F5 BIG-IP: Module [{#MODULE.NAME}]: CPU ratio','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ef4xiykj1dxzvn',1,'Admin',1672319399,'192.168.64.1',2,36,35489,NULL,'F5 BIG-IP: Module [{#MODULE.NAME}]: Disk ratio','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eg4xiy9nxwbzo5',1,'Admin',1672319399,'192.168.64.1',2,36,35490,NULL,'F5 BIG-IP: Module [{#MODULE.NAME}]: Memory ratio','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eh4xiymdh9tpk7',1,'Admin',1672319399,'192.168.64.1',2,36,35491,NULL,'F5 BIG-IP: Module [{#MODULE.NAME}]: Provision level','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ei4xiyohshwz50',1,'Admin',1672319399,'192.168.64.1',2,36,35492,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Collisions','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ej4xiy6di4jxwx',1,'Admin',1672319399,'192.168.64.1',2,36,35493,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ek4xiy10rywfy7',1,'Admin',1672319399,'192.168.64.1',2,36,35494,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet drops','clc93sisl00004xiyevwovlv0',''),('clc93sisn00el4xiybccqrn95',1,'Admin',1672319399,'192.168.64.1',2,36,35495,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet error','clc93sisl00004xiyevwovlv0',''),('clc93sisn00em4xiym1ox9p6d',1,'Admin',1672319399,'192.168.64.1',2,36,35496,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming multicast packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00en4xiyeejj72zq',1,'Admin',1672319399,'192.168.64.1',2,36,35497,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eo4xiyhdtzx21z',1,'Admin',1672319399,'192.168.64.1',2,36,35498,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming QnQ packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ep4xiy4vm4z625',1,'Admin',1672319399,'192.168.64.1',2,36,35499,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eq4xiy8kyaqp2n',1,'Admin',1672319399,'192.168.64.1',2,36,35500,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet drops','clc93sisl00004xiyevwovlv0',''),('clc93sisn00er4xiyjh4lxgce',1,'Admin',1672319399,'192.168.64.1',2,36,35501,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet error','clc93sisl00004xiyevwovlv0',''),('clc93sisn00es4xiy1pnzcw49',1,'Admin',1672319399,'192.168.64.1',2,36,35502,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing multicast packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00et4xiyc2w9gxnc',1,'Admin',1672319399,'192.168.64.1',2,36,35503,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eu4xiyo7jeps8f',1,'Admin',1672319399,'192.168.64.1',2,36,35504,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing QnQ packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ev4xiyarcp4qso',1,'Admin',1672319399,'192.168.64.1',2,36,35505,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Pause state','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ew4xiyw2do33lz',1,'Admin',1672319399,'192.168.64.1',2,36,35506,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Current connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ex4xiyklidbsf8',1,'Admin',1672319399,'192.168.64.1',2,36,35507,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Incoming traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ey4xiyarf0lhnr',1,'Admin',1672319399,'192.168.64.1',2,36,35508,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Incoming packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ez4xiy5qpds3iu',1,'Admin',1672319399,'192.168.64.1',2,36,35509,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f04xiy1r1ojwcy',1,'Admin',1672319399,'192.168.64.1',2,36,35510,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f14xiygbhf0swk',1,'Admin',1672319399,'192.168.64.1',2,36,35511,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Current sessions','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f24xiy4xlqwfvx',1,'Admin',1672319399,'192.168.64.1',2,36,35512,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Connections hit a rate limit','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f34xiyr4oqtiv3',1,'Admin',1672319399,'192.168.64.1',2,36,35513,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Duration of exceeding rate limit','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f44xiygz0c2623',1,'Admin',1672319399,'192.168.64.1',2,36,35514,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Current connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f54xiyuwzp6ypf',1,'Admin',1672319399,'192.168.64.1',2,36,35515,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f64xiykn2f12ag',1,'Admin',1672319399,'192.168.64.1',2,36,35516,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f74xiylynu7591',1,'Admin',1672319399,'192.168.64.1',2,36,35517,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f84xiymp4964y2',1,'Admin',1672319399,'192.168.64.1',2,36,35518,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f94xiy0bmvuebb',1,'Admin',1672319399,'192.168.64.1',2,36,35519,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Current sessions','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fa4xiylde13m9n',1,'Admin',1672319399,'192.168.64.1',2,36,35520,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Age of the oldest queue entry','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fb4xiyc4g2a499',1,'Admin',1672319399,'192.168.64.1',2,36,35521,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fc4xiyl4fyjxe7',1,'Admin',1672319399,'192.168.64.1',2,36,36824,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Status available','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fd4xiytk5vvm04',1,'Admin',1672319399,'192.168.64.1',2,36,36825,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Status enabled','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fe4xiyvtrgwm7g',1,'Admin',1672319399,'192.168.64.1',2,36,35522,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Current connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ff4xiy16bd17g3',1,'Admin',1672319399,'192.168.64.1',2,36,35523,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fg4xiygd94wub2',1,'Admin',1672319399,'192.168.64.1',2,36,35524,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fh4xiyfc7rae1l',1,'Admin',1672319399,'192.168.64.1',2,36,35525,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fi4xiyt141anvm',1,'Admin',1672319399,'192.168.64.1',2,36,35526,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fj4xiyk0dcbkvm',1,'Admin',1672319399,'192.168.64.1',2,36,35527,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Connections hit a rate limit','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fk4xiyr3zsz5cp',1,'Admin',1672319399,'192.168.64.1',2,36,35528,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Duration of exceeding rate limit','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fl4xiyialevlne',1,'Admin',1672319399,'192.168.64.1',2,36,35529,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fm4xiyrex1v32t',1,'Admin',1672319399,'192.168.64.1',2,36,35530,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fn4xiypdlid9d9',1,'Admin',1672319399,'192.168.64.1',2,36,35531,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fo4xiyqicdju5o',1,'Admin',1672319399,'192.168.64.1',2,36,36178,NULL,'{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fp4xiy93a1a0we',1,'Admin',1672319399,'192.168.64.1',2,36,36179,NULL,'{#DISKARRAY_LOCATION}: Disk array controller model','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fq4xiyeetax7sg',1,'Admin',1672319399,'192.168.64.1',2,36,36180,NULL,'{#DISKARRAY_LOCATION}: Disk array controller status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fr4xiyqdksyx42',1,'Admin',1672319399,'192.168.64.1',2,36,36181,NULL,'{#FAN_LOCATION}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fs4xiyuj8xmjzy',1,'Admin',1672319399,'192.168.64.1',2,36,36182,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface description','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ft4xiywumv6069',1,'Admin',1672319399,'192.168.64.1',2,36,36183,NULL,'Interface {#IFNAME}({#IFALIAS}): Broadcast packets received','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fu4xiyvodgwxkx',1,'Admin',1672319399,'192.168.64.1',2,36,36184,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fv4xiy2942u4hl',1,'Admin',1672319399,'192.168.64.1',2,36,36185,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fw4xiyh6bd7r56',1,'Admin',1672319399,'192.168.64.1',2,36,36186,NULL,'Interface {#IFNAME}({#IFALIAS}): Multicast packets received','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fx4xiyh7nl4aeq',1,'Admin',1672319399,'192.168.64.1',2,36,36187,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fy4xiyvn9kh4px',1,'Admin',1672319399,'192.168.64.1',2,36,36188,NULL,'Interface {#IFNAME}({#IFALIAS}): Broadcast packets sent','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fz4xiyvfcdjnmo',1,'Admin',1672319399,'192.168.64.1',2,36,36189,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g04xiyuj8z9z7m',1,'Admin',1672319399,'192.168.64.1',2,36,36190,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g14xiy7n0p84vc',1,'Admin',1672319399,'192.168.64.1',2,36,36191,NULL,'Interface {#IFNAME}({#IFALIAS}): Multicast packets sent','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g24xiy6aigyyiy',1,'Admin',1672319399,'192.168.64.1',2,36,36192,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g34xiyjaiauo1w',1,'Admin',1672319399,'192.168.64.1',2,36,36193,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g44xiynssahawv',1,'Admin',1672319399,'192.168.64.1',2,36,36194,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g54xiyqao9klyl',1,'Admin',1672319399,'192.168.64.1',2,36,36195,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g64xiyz469ji0x',1,'Admin',1672319399,'192.168.64.1',2,36,36196,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g74xiys3su437n',1,'Admin',1672319399,'192.168.64.1',2,36,36197,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g84xiyysyciiyk',1,'Admin',1672319399,'192.168.64.1',2,36,36198,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g94xiyhatq8ueu',1,'Admin',1672319399,'192.168.64.1',2,36,36199,NULL,'{#DISK_LOCATION}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ga4xiyuzwubv8e',1,'Admin',1672319399,'192.168.64.1',2,36,36200,NULL,'{#DISK_LOCATION}: Physical disk status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gb4xiyajmbf1ws',1,'Admin',1672319399,'192.168.64.1',2,36,36201,NULL,'{#PSU_LOCATION}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gc4xiyi87o5vmt',1,'Admin',1672319399,'192.168.64.1',2,36,36202,NULL,'{#SENSOR_LOCATION}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gd4xiy5k801wbm',1,'Admin',1672319399,'192.168.64.1',2,36,36203,NULL,'{#SENSOR_LOCATION}.IOH: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ge4xiyqbhte18u',1,'Admin',1672319399,'192.168.64.1',2,36,36204,NULL,'{#SENSOR_LOCATION}.Ambient: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gf4xiyxi20cj90',1,'Admin',1672319399,'192.168.64.1',2,36,36205,NULL,'{#SENSOR_LOCATION}.Front: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gg4xiymz5r8jxy',1,'Admin',1672319399,'192.168.64.1',2,36,36206,NULL,'{#SENSOR_LOCATION}.Rear: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gh4xiyq6szo3ol',1,'Admin',1672319399,'192.168.64.1',2,36,36207,NULL,'{#UNIT_LOCATION}: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gi4xiyo1y3cn4k',1,'Admin',1672319399,'192.168.64.1',2,36,36208,NULL,'{#UNIT_LOCATION}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gj4xiy0d47xahv',1,'Admin',1672319399,'192.168.64.1',2,36,36209,NULL,'{#UNIT_LOCATION}: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gk4xiyw42dlr8l',1,'Admin',1672319399,'192.168.64.1',2,36,36210,NULL,'{#VDISK_LOCATION}: Layout type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gl4xiy0qxkjzl9',1,'Admin',1672319399,'192.168.64.1',2,36,36211,NULL,'{#VDISK_LOCATION}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gm4xiy6ncco27x',1,'Admin',1672319399,'192.168.64.1',2,36,36212,NULL,'{#VDISK_LOCATION}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gn4xiy1z74kj6c',1,'Admin',1672319399,'192.168.64.1',2,36,36227,NULL,'Dell R720: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00go4xiydu01psl0',1,'Admin',1672319399,'192.168.64.1',2,36,36228,NULL,'Dell R720: {#CNTLR_NAME} in slot {#SLOT} Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gp4xiyrvk5m41k',1,'Admin',1672319399,'192.168.64.1',2,36,36229,NULL,'Dell R720: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gq4xiyzedy5uvg',1,'Admin',1672319399,'192.168.64.1',2,36,36235,NULL,'Dell R720: {#SENSOR_NAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gr4xiynh4accyv',1,'Admin',1672319399,'192.168.64.1',2,36,36236,NULL,'Dell R720: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gs4xiyxfc8j8rq',1,'Admin',1672319399,'192.168.64.1',2,36,36230,NULL,'Dell R720: {#IFNAME} Get interface','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gt4xiyybegelyy',1,'Admin',1672319399,'192.168.64.1',2,36,36237,NULL,'Dell R720: {#IFNAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gu4xiyxamcobun',1,'Admin',1672319399,'192.168.64.1',2,36,36238,NULL,'Dell R720: {#IFNAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gv4xiyfw8peb1l',1,'Admin',1672319399,'192.168.64.1',2,36,36239,NULL,'Dell R720: {#IFNAME} State','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gw4xiyafzcd043',1,'Admin',1672319399,'192.168.64.1',2,36,36240,NULL,'Dell R720: {#IFNAME} Link status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gx4xiy9olmmnvr',1,'Admin',1672319399,'192.168.64.1',2,36,36231,NULL,'Dell R720: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gy4xiyfkyeqsmr',1,'Admin',1672319399,'192.168.64.1',2,36,36241,NULL,'Dell R720: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gz4xiy3djjrs15',1,'Admin',1672319399,'192.168.64.1',2,36,36242,NULL,'Dell R720: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93sisn00h04xiyeemi2g47',1,'Admin',1672319399,'192.168.64.1',2,36,36243,NULL,'Dell R720: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93sisn00h14xiyfklv04bh',1,'Admin',1672319399,'192.168.64.1',2,36,36244,NULL,'Dell R720: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00h24xiydl371uka',1,'Admin',1672319399,'192.168.64.1',2,36,36245,NULL,'Dell R720: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00h34xiy5droxjaj',1,'Admin',1672319399,'192.168.64.1',2,36,36232,NULL,'Dell R720: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00h44xiy1ulrk2mq',1,'Admin',1672319399,'192.168.64.1',2,36,36246,NULL,'Dell R720: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00h54xiylfod4o8a',1,'Admin',1672319399,'192.168.64.1',2,36,36233,NULL,'Dell R720: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00h64xiyggortnq3',1,'Admin',1672319399,'192.168.64.1',2,36,36247,NULL,'Dell R720: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00h74xiy5bzqa7xu',1,'Admin',1672319399,'192.168.64.1',2,36,36248,NULL,'Dell R720: {#SENSOR_NAME} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00h84xiyl7nwsmkx',1,'Admin',1672319399,'192.168.64.1',2,36,36234,NULL,'Dell R720: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00h94xiy04h1d9q6',1,'Admin',1672319399,'192.168.64.1',2,36,36249,NULL,'Dell R720: {#DISK_NAME} RAID status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ha4xiysfqibmg9',1,'Admin',1672319399,'192.168.64.1',2,36,36250,NULL,'Dell R720: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00hb4xiyg7k9awng',1,'Admin',1672319399,'192.168.64.1',2,36,36251,NULL,'Dell R720: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00hc4xiyc6xge4ni',1,'Admin',1672319399,'192.168.64.1',2,36,36252,NULL,'Dell R720: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00hd4xiysy4gdq3q',1,'Admin',1672319399,'192.168.64.1',2,36,36253,NULL,'Dell R720: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00he4xiyjrmbg7ek',1,'Admin',1672319399,'192.168.64.1',2,36,36254,NULL,'Dell R720: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00hf4xiyepqutxei',1,'Admin',1672319399,'192.168.64.1',2,36,36275,NULL,'Dell R720: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hg4xiy79qbja61',1,'Admin',1672319399,'192.168.64.1',2,36,36276,NULL,'Dell R720: {#CNTLR_NAME} Model','clc93sisl00004xiyevwovlv0',''),('clc93siso00hh4xiyxb5gxrjs',1,'Admin',1672319399,'192.168.64.1',2,36,36277,NULL,'Dell R720: {#CNTLR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hi4xiyatuxs5xu',1,'Admin',1672319399,'192.168.64.1',2,36,36278,NULL,'Dell R720: {#FAN_DESCR} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00hj4xiye6pe7fss',1,'Admin',1672319399,'192.168.64.1',2,36,36279,NULL,'Dell R720: {#FAN_DESCR} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hk4xiyhwxxmncr',1,'Admin',1672319399,'192.168.64.1',2,36,36280,NULL,'Dell R720: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00hl4xiyttaitirh',1,'Admin',1672319399,'192.168.64.1',2,36,36281,NULL,'Dell R720: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00hm4xiydjpxzt2o',1,'Admin',1672319399,'192.168.64.1',2,36,36282,NULL,'Dell R720: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00hn4xiyzf605fut',1,'Admin',1672319399,'192.168.64.1',2,36,36283,NULL,'Dell R720: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00ho4xiy9g0snfmk',1,'Admin',1672319399,'192.168.64.1',2,36,36284,NULL,'Dell R720: {#DISK_NAME} S.M.A.R.T. Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hp4xiy69dd9dh0',1,'Admin',1672319399,'192.168.64.1',2,36,36285,NULL,'Dell R720: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hq4xiyg4b23wty',1,'Admin',1672319399,'192.168.64.1',2,36,36286,NULL,'Dell R720: {#PSU_DESCR}','clc93sisl00004xiyevwovlv0',''),('clc93siso00hr4xiybht9c6if',1,'Admin',1672319399,'192.168.64.1',2,36,36287,NULL,'Dell R720: {#SENSOR_LOCALE} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hs4xiyt4chea8f',1,'Admin',1672319399,'192.168.64.1',2,36,36288,NULL,'Dell R720: {#SENSOR_LOCALE} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00ht4xiy4jhbtdao',1,'Admin',1672319399,'192.168.64.1',2,36,36289,NULL,'Dell R720: {#DISK_NAME} Layout type','clc93sisl00004xiyevwovlv0',''),('clc93siso00hu4xiyosjhnb7k',1,'Admin',1672319399,'192.168.64.1',2,36,36290,NULL,'Dell R720: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00hv4xiyurr5258u',1,'Admin',1672319399,'192.168.64.1',2,36,36291,NULL,'Dell R720: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00hw4xiyhm1depgt',1,'Admin',1672319399,'192.168.64.1',2,36,36292,NULL,'Dell R720: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00hx4xiyy953n0ck',1,'Admin',1672319399,'192.168.64.1',2,36,36293,NULL,'Dell R720: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hy4xiyb4gbkgcg',1,'Admin',1672319399,'192.168.64.1',2,36,36294,NULL,'Dell R720: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00hz4xiyx1ler27c',1,'Admin',1672319399,'192.168.64.1',2,36,36309,NULL,'Dell R740: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i04xiymp32ivyz',1,'Admin',1672319399,'192.168.64.1',2,36,36310,NULL,'Dell R740: {#CNTLR_NAME} in slot {#SLOT} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i14xiytflg45wq',1,'Admin',1672319399,'192.168.64.1',2,36,36311,NULL,'Dell R740: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00i24xiyqlsfmh0x',1,'Admin',1672319399,'192.168.64.1',2,36,36317,NULL,'Dell R740: {#SENSOR_NAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00i34xiy7vwjx4tz',1,'Admin',1672319399,'192.168.64.1',2,36,36318,NULL,'Dell R740: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i44xiyqrmyomsf',1,'Admin',1672319399,'192.168.64.1',2,36,36312,NULL,'Dell R740: {#IFNAME} Get interface','clc93sisl00004xiyevwovlv0',''),('clc93siso00i54xiy87dikl55',1,'Admin',1672319399,'192.168.64.1',2,36,36319,NULL,'Dell R740: {#IFNAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i64xiyj2xq8ld7',1,'Admin',1672319399,'192.168.64.1',2,36,36320,NULL,'Dell R740: {#IFNAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00i74xiy8gnn1aor',1,'Admin',1672319399,'192.168.64.1',2,36,36321,NULL,'Dell R740: {#IFNAME} State','clc93sisl00004xiyevwovlv0',''),('clc93siso00i84xiy0gs25xmj',1,'Admin',1672319399,'192.168.64.1',2,36,36322,NULL,'Dell R740: {#IFNAME} Link status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i94xiym2t2pevq',1,'Admin',1672319399,'192.168.64.1',2,36,36313,NULL,'Dell R740: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00ia4xiyukg82w5v',1,'Admin',1672319399,'192.168.64.1',2,36,36323,NULL,'Dell R740: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ib4xiyat3ntf8k',1,'Admin',1672319399,'192.168.64.1',2,36,36324,NULL,'Dell R740: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00ic4xiyfmt0pmm7',1,'Admin',1672319399,'192.168.64.1',2,36,36325,NULL,'Dell R740: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00id4xiygwrt04qj',1,'Admin',1672319399,'192.168.64.1',2,36,36326,NULL,'Dell R740: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00ie4xiyx5zru738',1,'Admin',1672319399,'192.168.64.1',2,36,36327,NULL,'Dell R740: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00if4xiy9xxgcn3z',1,'Admin',1672319399,'192.168.64.1',2,36,36314,NULL,'Dell R740: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00ig4xiyvarpsr7e',1,'Admin',1672319399,'192.168.64.1',2,36,36328,NULL,'Dell R740: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ih4xiynyk6t8f3',1,'Admin',1672319399,'192.168.64.1',2,36,36315,NULL,'Dell R740: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00ii4xiyairk9igx',1,'Admin',1672319399,'192.168.64.1',2,36,36329,NULL,'Dell R740: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ij4xiyl6r9ir30',1,'Admin',1672319399,'192.168.64.1',2,36,36330,NULL,'Dell R740: {#SENSOR_NAME} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00ik4xiy9y67b5lb',1,'Admin',1672319399,'192.168.64.1',2,36,36316,NULL,'Dell R740: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00il4xiyode64ot7',1,'Admin',1672319399,'192.168.64.1',2,36,36331,NULL,'Dell R740: {#DISK_NAME} RAID status','clc93sisl00004xiyevwovlv0',''),('clc93siso00im4xiyj36spiar',1,'Admin',1672319399,'192.168.64.1',2,36,36332,NULL,'Dell R740: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00in4xiyfmv9f606',1,'Admin',1672319399,'192.168.64.1',2,36,36333,NULL,'Dell R740: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00io4xiyf2ki04hp',1,'Admin',1672319399,'192.168.64.1',2,36,36334,NULL,'Dell R740: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00ip4xiyr03h80n0',1,'Admin',1672319399,'192.168.64.1',2,36,36335,NULL,'Dell R740: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00iq4xiyycwlo7kq',1,'Admin',1672319399,'192.168.64.1',2,36,36336,NULL,'Dell R740: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00ir4xiydwj7kcqy',1,'Admin',1672319399,'192.168.64.1',2,36,36357,NULL,'Dell R740: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00is4xiyqsjhd5si',1,'Admin',1672319399,'192.168.64.1',2,36,36358,NULL,'Dell R740: {#CNTLR_NAME} Model','clc93sisl00004xiyevwovlv0',''),('clc93siso00it4xiyprnto1ml',1,'Admin',1672319399,'192.168.64.1',2,36,36359,NULL,'Dell R740: {#CNTLR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00iu4xiym9eiog0k',1,'Admin',1672319399,'192.168.64.1',2,36,36360,NULL,'Dell R740: {#FAN_DESCR} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00iv4xiywikfwg2g',1,'Admin',1672319399,'192.168.64.1',2,36,36361,NULL,'Dell R740: {#FAN_DESCR} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00iw4xiyljlp727b',1,'Admin',1672319399,'192.168.64.1',2,36,36362,NULL,'Dell R740: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ix4xiyh1ljsqan',1,'Admin',1672319399,'192.168.64.1',2,36,36363,NULL,'Dell R740: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00iy4xiyejt6h0za',1,'Admin',1672319399,'192.168.64.1',2,36,36364,NULL,'Dell R740: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00iz4xiy79yvgyz8',1,'Admin',1672319399,'192.168.64.1',2,36,36365,NULL,'Dell R740: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00j04xiyf6l0zakt',1,'Admin',1672319399,'192.168.64.1',2,36,36366,NULL,'Dell R740: {#DISK_NAME} S.M.A.R.T. Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00j14xiy5udqch58',1,'Admin',1672319399,'192.168.64.1',2,36,36367,NULL,'Dell R740: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00j24xiygboo5p6v',1,'Admin',1672319399,'192.168.64.1',2,36,36368,NULL,'Dell R740: {#PSU_DESCR}','clc93sisl00004xiyevwovlv0',''),('clc93siso00j34xiyxsehroml',1,'Admin',1672319399,'192.168.64.1',2,36,36369,NULL,'Dell R740: {#SENSOR_LOCALE} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00j44xiypoh00hxu',1,'Admin',1672319399,'192.168.64.1',2,36,36370,NULL,'Dell R740: {#SENSOR_LOCALE} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00j54xiypfvzmds1',1,'Admin',1672319399,'192.168.64.1',2,36,36371,NULL,'Dell R740: {#DISK_NAME} Layout type','clc93sisl00004xiyevwovlv0',''),('clc93siso00j64xiymqz8szuh',1,'Admin',1672319399,'192.168.64.1',2,36,36372,NULL,'Dell R740: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00j74xiyvgswro3r',1,'Admin',1672319399,'192.168.64.1',2,36,36373,NULL,'Dell R740: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00j84xiy0jru9x0m',1,'Admin',1672319399,'192.168.64.1',2,36,36374,NULL,'Dell R740: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00j94xiy1o4lpbxf',1,'Admin',1672319399,'192.168.64.1',2,36,36375,NULL,'Dell R740: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ja4xiykpzsl87q',1,'Admin',1672319399,'192.168.64.1',2,36,36376,NULL,'Dell R740: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00jb4xiycbkktl1l',1,'Admin',1672319399,'192.168.64.1',2,36,36391,NULL,'Dell R820: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jc4xiyavqsa5bz',1,'Admin',1672319399,'192.168.64.1',2,36,36392,NULL,'Dell R820: {#CNTLR_NAME} in slot {#SLOT} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jd4xiy88qc5m6d',1,'Admin',1672319399,'192.168.64.1',2,36,36393,NULL,'Dell R820: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00je4xiy75o72s27',1,'Admin',1672319399,'192.168.64.1',2,36,36399,NULL,'Dell R820: {#SENSOR_NAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00jf4xiy8qwa4860',1,'Admin',1672319399,'192.168.64.1',2,36,36400,NULL,'Dell R820: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jg4xiycykn7r8k',1,'Admin',1672319399,'192.168.64.1',2,36,36394,NULL,'Dell R820: {#IFNAME} Get interface','clc93sisl00004xiyevwovlv0',''),('clc93siso00jh4xiy7ej1gam9',1,'Admin',1672319399,'192.168.64.1',2,36,36401,NULL,'Dell R820: {#IFNAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ji4xiy7yafue06',1,'Admin',1672319399,'192.168.64.1',2,36,36402,NULL,'Dell R820: {#IFNAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00jj4xiyl4z9rq5c',1,'Admin',1672319399,'192.168.64.1',2,36,36403,NULL,'Dell R820: {#IFNAME} State','clc93sisl00004xiyevwovlv0',''),('clc93siso00jk4xiydz095y5k',1,'Admin',1672319399,'192.168.64.1',2,36,36404,NULL,'Dell R820: {#IFNAME} Link status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jl4xiymb5yp1m5',1,'Admin',1672319399,'192.168.64.1',2,36,36395,NULL,'Dell R820: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00jm4xiysgn9nem6',1,'Admin',1672319399,'192.168.64.1',2,36,36405,NULL,'Dell R820: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00jn4xiy4547tquy',1,'Admin',1672319399,'192.168.64.1',2,36,36406,NULL,'Dell R820: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00jo4xiyxf1h1g1h',1,'Admin',1672319399,'192.168.64.1',2,36,36407,NULL,'Dell R820: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00jp4xiyn0jpbp3v',1,'Admin',1672319399,'192.168.64.1',2,36,36408,NULL,'Dell R820: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00jq4xiy7aostu8j',1,'Admin',1672319399,'192.168.64.1',2,36,36409,NULL,'Dell R820: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jr4xiy0ql9lf6h',1,'Admin',1672319399,'192.168.64.1',2,36,36396,NULL,'Dell R820: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00js4xiy6fl6e3ph',1,'Admin',1672319399,'192.168.64.1',2,36,36410,NULL,'Dell R820: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jt4xiyg9n489ga',1,'Admin',1672319399,'192.168.64.1',2,36,36397,NULL,'Dell R820: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00ju4xiymnhtsko7',1,'Admin',1672319399,'192.168.64.1',2,36,36411,NULL,'Dell R820: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jv4xiyhv9u5aji',1,'Admin',1672319399,'192.168.64.1',2,36,36412,NULL,'Dell R820: {#SENSOR_NAME} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00jw4xiyu3eelafa',1,'Admin',1672319399,'192.168.64.1',2,36,36398,NULL,'Dell R820: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00jx4xiyfz8h6yqv',1,'Admin',1672319399,'192.168.64.1',2,36,36413,NULL,'Dell R820: {#DISK_NAME} RAID status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jy4xiyjgip0wv4',1,'Admin',1672319399,'192.168.64.1',2,36,36414,NULL,'Dell R820: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00jz4xiyjxjemmzf',1,'Admin',1672319399,'192.168.64.1',2,36,36415,NULL,'Dell R820: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00k04xiywtfipnmj',1,'Admin',1672319399,'192.168.64.1',2,36,36416,NULL,'Dell R820: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00k14xiy4uu5w1um',1,'Admin',1672319399,'192.168.64.1',2,36,36417,NULL,'Dell R820: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00k24xiy8p6xk02p',1,'Admin',1672319399,'192.168.64.1',2,36,36418,NULL,'Dell R820: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00k34xiy952xi3rh',1,'Admin',1672319399,'192.168.64.1',2,36,36439,NULL,'Dell R820: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00k44xiyrurkabuu',1,'Admin',1672319399,'192.168.64.1',2,36,36440,NULL,'Dell R820: {#CNTLR_NAME} Model','clc93sisl00004xiyevwovlv0',''),('clc93siso00k54xiy3yf2z3eu',1,'Admin',1672319399,'192.168.64.1',2,36,36441,NULL,'Dell R820: {#CNTLR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00k64xiy2dut0iwa',1,'Admin',1672319399,'192.168.64.1',2,36,36442,NULL,'Dell R820: {#FAN_DESCR} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00k74xiy7bx8bjw0',1,'Admin',1672319399,'192.168.64.1',2,36,36443,NULL,'Dell R820: {#FAN_DESCR} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00k84xiyvx04dg7b',1,'Admin',1672319399,'192.168.64.1',2,36,36444,NULL,'Dell R820: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00k94xiywblo35f8',1,'Admin',1672319399,'192.168.64.1',2,36,36445,NULL,'Dell R820: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00ka4xiyg9psfhj4',1,'Admin',1672319399,'192.168.64.1',2,36,36446,NULL,'Dell R820: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00kb4xiyjmc7157g',1,'Admin',1672319399,'192.168.64.1',2,36,36447,NULL,'Dell R820: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00kc4xiyrkslwxmz',1,'Admin',1672319399,'192.168.64.1',2,36,36448,NULL,'Dell R820: {#DISK_NAME} S.M.A.R.T. Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00kd4xiytgllx5zs',1,'Admin',1672319399,'192.168.64.1',2,36,36449,NULL,'Dell R820: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ke4xiyn6k64y2g',1,'Admin',1672319399,'192.168.64.1',2,36,36450,NULL,'Dell R820: {#PSU_DESCR}','clc93sisl00004xiyevwovlv0',''),('clc93siso00kf4xiy1f4125al',1,'Admin',1672319399,'192.168.64.1',2,36,36451,NULL,'Dell R820: {#SENSOR_LOCALE} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00kg4xiybaeqivm9',1,'Admin',1672319399,'192.168.64.1',2,36,36452,NULL,'Dell R820: {#SENSOR_LOCALE} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00kh4xiyb20f84vt',1,'Admin',1672319399,'192.168.64.1',2,36,36453,NULL,'Dell R820: {#DISK_NAME} Layout type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ki4xiylbvtnlj6',1,'Admin',1672319399,'192.168.64.1',2,36,36454,NULL,'Dell R820: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00kj4xiywrhddjp6',1,'Admin',1672319399,'192.168.64.1',2,36,36455,NULL,'Dell R820: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00kk4xiyet6myvj4',1,'Admin',1672319399,'192.168.64.1',2,36,36456,NULL,'Dell R820: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00kl4xiyrzus29g9',1,'Admin',1672319399,'192.168.64.1',2,36,36457,NULL,'Dell R820: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00km4xiy3k7uf1c3',1,'Admin',1672319399,'192.168.64.1',2,36,36458,NULL,'Dell R820: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00kn4xiy3hcutehx',1,'Admin',1672319399,'192.168.64.1',2,36,36473,NULL,'Dell R840: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ko4xiyz5m1drty',1,'Admin',1672319399,'192.168.64.1',2,36,36474,NULL,'Dell R840: {#CNTLR_NAME} in slot {#SLOT} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00kp4xiy595mm7tg',1,'Admin',1672319399,'192.168.64.1',2,36,36475,NULL,'Dell R840: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00kq4xiy77ge9105',1,'Admin',1672319399,'192.168.64.1',2,36,36481,NULL,'Dell R840: {#SENSOR_NAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00kr4xiyfw5i8soi',1,'Admin',1672319399,'192.168.64.1',2,36,36482,NULL,'Dell R840: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ks4xiyct7pgqe0',1,'Admin',1672319399,'192.168.64.1',2,36,36476,NULL,'Dell R840: {#IFNAME} Get interface','clc93sisl00004xiyevwovlv0',''),('clc93siso00kt4xiylbsyznho',1,'Admin',1672319399,'192.168.64.1',2,36,36483,NULL,'Dell R840: {#IFNAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ku4xiybj7io51y',1,'Admin',1672319399,'192.168.64.1',2,36,36484,NULL,'Dell R840: {#IFNAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00kv4xiy9uk1vm3m',1,'Admin',1672319399,'192.168.64.1',2,36,36485,NULL,'Dell R840: {#IFNAME} State','clc93sisl00004xiyevwovlv0',''),('clc93siso00kw4xiyekf5z0wp',1,'Admin',1672319399,'192.168.64.1',2,36,36486,NULL,'Dell R840: {#IFNAME} Link status','clc93sisl00004xiyevwovlv0',''),('clc93siso00kx4xiyn814o9hu',1,'Admin',1672319399,'192.168.64.1',2,36,36477,NULL,'Dell R840: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00ky4xiyzeve2arx',1,'Admin',1672319399,'192.168.64.1',2,36,36487,NULL,'Dell R840: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00kz4xiy30lpjnr5',1,'Admin',1672319399,'192.168.64.1',2,36,36488,NULL,'Dell R840: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00l04xiynzzuew9j',1,'Admin',1672319399,'192.168.64.1',2,36,36489,NULL,'Dell R840: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00l14xiyqem5uxa6',1,'Admin',1672319399,'192.168.64.1',2,36,36490,NULL,'Dell R840: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00l24xiygsnt9in4',1,'Admin',1672319399,'192.168.64.1',2,36,36491,NULL,'Dell R840: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00l34xiyd25169xx',1,'Admin',1672319399,'192.168.64.1',2,36,36478,NULL,'Dell R840: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00l44xiyhju90zq0',1,'Admin',1672319399,'192.168.64.1',2,36,36492,NULL,'Dell R840: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00l54xiyd2utdtmc',1,'Admin',1672319399,'192.168.64.1',2,36,36479,NULL,'Dell R840: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00l64xiyyexybudj',1,'Admin',1672319399,'192.168.64.1',2,36,36493,NULL,'Dell R840: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00l74xiy4adkrtzo',1,'Admin',1672319399,'192.168.64.1',2,36,36494,NULL,'Dell R840: {#SENSOR_NAME} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00l84xiypbtvwfxe',1,'Admin',1672319399,'192.168.64.1',2,36,36480,NULL,'Dell R840: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00l94xiyxdu3hg2s',1,'Admin',1672319399,'192.168.64.1',2,36,36495,NULL,'Dell R840: {#DISK_NAME} RAID status','clc93sisl00004xiyevwovlv0',''),('clc93siso00la4xiyauc9rcy1',1,'Admin',1672319399,'192.168.64.1',2,36,36496,NULL,'Dell R840: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00lb4xiyfr3tadc3',1,'Admin',1672319399,'192.168.64.1',2,36,36497,NULL,'Dell R840: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00lc4xiy0kabylhn',1,'Admin',1672319399,'192.168.64.1',2,36,36498,NULL,'Dell R840: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00ld4xiyo1m859rv',1,'Admin',1672319399,'192.168.64.1',2,36,36499,NULL,'Dell R840: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00le4xiyzht4c51f',1,'Admin',1672319399,'192.168.64.1',2,36,36500,NULL,'Dell R840: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00lf4xiyywuqx9qm',1,'Admin',1672319399,'192.168.64.1',2,36,36521,NULL,'Dell R840: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00lg4xiyksbww8m4',1,'Admin',1672319399,'192.168.64.1',2,36,36522,NULL,'Dell R840: {#CNTLR_NAME} Model','clc93sisl00004xiyevwovlv0',''),('clc93siso00lh4xiy7wv6byxk',1,'Admin',1672319399,'192.168.64.1',2,36,36523,NULL,'Dell R840: {#CNTLR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00li4xiybq146pa2',1,'Admin',1672319399,'192.168.64.1',2,36,36524,NULL,'Dell R840: {#FAN_DESCR} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00lj4xiyvor9vrlg',1,'Admin',1672319399,'192.168.64.1',2,36,36525,NULL,'Dell R840: {#FAN_DESCR} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00lk4xiysncwi57u',1,'Admin',1672319399,'192.168.64.1',2,36,36526,NULL,'Dell R840: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ll4xiyqqh2e9gv',1,'Admin',1672319399,'192.168.64.1',2,36,36527,NULL,'Dell R840: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00lm4xiys5q4bhy0',1,'Admin',1672319399,'192.168.64.1',2,36,36528,NULL,'Dell R840: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00ln4xiyun0p60h7',1,'Admin',1672319399,'192.168.64.1',2,36,36529,NULL,'Dell R840: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00lo4xiywpzajz5d',1,'Admin',1672319399,'192.168.64.1',2,36,36530,NULL,'Dell R840: {#DISK_NAME} S.M.A.R.T. Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00lp4xiydmb666cu',1,'Admin',1672319399,'192.168.64.1',2,36,36531,NULL,'Dell R840: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00lq4xiyaawfl366',1,'Admin',1672319399,'192.168.64.1',2,36,36532,NULL,'Dell R840: {#PSU_DESCR}','clc93sisl00004xiyevwovlv0',''),('clc93siso00lr4xiyrbdz7wd1',1,'Admin',1672319399,'192.168.64.1',2,36,36533,NULL,'Dell R840: {#SENSOR_LOCALE} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ls4xiy90pcbq5b',1,'Admin',1672319399,'192.168.64.1',2,36,36534,NULL,'Dell R840: {#SENSOR_LOCALE} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00lt4xiyhbvvqdod',1,'Admin',1672319399,'192.168.64.1',2,36,36535,NULL,'Dell R840: {#DISK_NAME} Layout type','clc93sisl00004xiyevwovlv0',''),('clc93siso00lu4xiy8w7f90k5',1,'Admin',1672319399,'192.168.64.1',2,36,36536,NULL,'Dell R840: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00lv4xiy74o9fqql',1,'Admin',1672319399,'192.168.64.1',2,36,36537,NULL,'Dell R840: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00lw4xiywyf9zcdq',1,'Admin',1672319399,'192.168.64.1',2,36,36538,NULL,'Dell R840: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00lx4xiyvp0ktrot',1,'Admin',1672319399,'192.168.64.1',2,36,36539,NULL,'Dell R840: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ly4xiyoc9e6za2',1,'Admin',1672319399,'192.168.64.1',2,36,36540,NULL,'Dell R840: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00lz4xiyeaftf3am',1,'Admin',1672319399,'192.168.64.1',2,36,40460,NULL,'{#FSNAME}: Space utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00m04xiya6xrllst',1,'Admin',1672319399,'192.168.64.1',2,36,40461,NULL,'{#FSNAME}: Total space','clc93sisl00004xiyevwovlv0',''),('clc93siso00m14xiyrhgt7tsf',1,'Admin',1672319399,'192.168.64.1',2,36,40462,NULL,'{#FSNAME}: Used space','clc93sisl00004xiyevwovlv0',''),('clc93siso00m24xiyq4izg2qc',1,'Admin',1672319399,'192.168.64.1',2,36,40463,NULL,'{#MEMNAME}: Total memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00m34xiyu03abwbb',1,'Admin',1672319399,'192.168.64.1',2,36,40464,NULL,'{#MEMNAME}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00m44xiyog1uhklm',1,'Admin',1672319399,'192.168.64.1',2,36,40465,NULL,'{#MEMNAME}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00m54xiyib19jwp4',1,'Admin',1672319399,'192.168.64.1',2,36,40663,NULL,'{#ENT_NAME}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00m64xiyp6khcfn2',1,'Admin',1672319399,'192.168.64.1',2,36,40664,NULL,'{#SENSOR_INFO}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93siso00m74xiy2saqiwn4',1,'Admin',1672319399,'192.168.64.1',2,36,40665,NULL,'{#SNMPVALUE}: Free memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00m84xiy0ta8a16f',1,'Admin',1672319399,'192.168.64.1',2,36,40666,NULL,'{#SNMPVALUE}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00m94xiyskce995q',1,'Admin',1672319399,'192.168.64.1',2,36,40667,NULL,'{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00ma4xiy9qvqkarl',1,'Admin',1672319399,'192.168.64.1',2,36,40668,NULL,'{#SENSOR_INFO}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mb4xiysxviny93',1,'Admin',1672319399,'192.168.64.1',2,36,40669,NULL,'{#SNMPVALUE}: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mc4xiyetapkx6b',1,'Admin',1672319399,'192.168.64.1',2,36,40670,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93siso00md4xiy7j1wmk5h',1,'Admin',1672319399,'192.168.64.1',2,36,40690,NULL,'{#SNMPVALUE}: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00me4xiy4b2qyw9n',1,'Admin',1672319399,'192.168.64.1',2,36,40691,NULL,'{#ENT_NAME}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00mf4xiyvekcp3yx',1,'Admin',1672319399,'192.168.64.1',2,36,40692,NULL,'{#SENSOR_INFO}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mg4xiyxiyd67r6',1,'Admin',1672319399,'192.168.64.1',2,36,40693,NULL,'{#SNMPVALUE}: Free memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00mh4xiyhvpjzooz',1,'Admin',1672319399,'192.168.64.1',2,36,40694,NULL,'{#SNMPVALUE}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00mi4xiybypbpdnz',1,'Admin',1672319399,'192.168.64.1',2,36,40695,NULL,'{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00mj4xiyruq9r2pn',1,'Admin',1672319399,'192.168.64.1',2,36,40696,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00mk4xiyveqhkhib',1,'Admin',1672319399,'192.168.64.1',2,36,40697,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00ml4xiy5yf912ch',1,'Admin',1672319399,'192.168.64.1',2,36,40698,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00mm4xiy1mri9gd4',1,'Admin',1672319399,'192.168.64.1',2,36,40699,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00mn4xiyycc61t1o',1,'Admin',1672319399,'192.168.64.1',2,36,40700,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00mo4xiycu0te0pq',1,'Admin',1672319399,'192.168.64.1',2,36,40701,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00mp4xiykhvvt097',1,'Admin',1672319399,'192.168.64.1',2,36,40702,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00mq4xiy3xp4w1p6',1,'Admin',1672319399,'192.168.64.1',2,36,40703,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mr4xiyf8trs8zn',1,'Admin',1672319399,'192.168.64.1',2,36,40704,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ms4xiyweunupw4',1,'Admin',1672319399,'192.168.64.1',2,36,40705,NULL,'{#SENSOR_INFO}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mt4xiy2n5helnt',1,'Admin',1672319399,'192.168.64.1',2,36,40706,NULL,'{#SNMPVALUE}: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mu4xiyao7uxzof',1,'Admin',1672319399,'192.168.64.1',2,36,40707,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93siso00mv4xiyyhojnnrw',1,'Admin',1672319399,'192.168.64.1',2,36,40721,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00mw4xiy1wgqf509',1,'Admin',1672319399,'192.168.64.1',2,36,40722,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00mx4xiyn9o8ovqz',1,'Admin',1672319399,'192.168.64.1',2,36,40723,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00my4xiyqyb2jho3',1,'Admin',1672319399,'192.168.64.1',2,36,40724,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00mz4xiy8tvf4750',1,'Admin',1672319399,'192.168.64.1',2,36,40725,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00n04xiyhoqb681r',1,'Admin',1672319399,'192.168.64.1',2,36,40726,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00n14xiy00hflf8z',1,'Admin',1672319399,'192.168.64.1',2,36,40727,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00n24xiyb0ih3wvl',1,'Admin',1672319399,'192.168.64.1',2,36,40728,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00n34xiyer6rnsxg',1,'Admin',1672319399,'192.168.64.1',2,36,40729,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00n44xiyvxu97mre',1,'Admin',1672319399,'192.168.64.1',2,36,40730,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93siso00n54xiyruzy3spy',1,'Admin',1672319399,'192.168.64.1',2,36,40743,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00n64xiyq19n9z3q',1,'Admin',1672319399,'192.168.64.1',2,36,40744,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00n74xiyrg5b5l9i',1,'Admin',1672319399,'192.168.64.1',2,36,40745,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00n84xiytvoxc3pw',1,'Admin',1672319399,'192.168.64.1',2,36,40746,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00n94xiyk18u2p3f',1,'Admin',1672319399,'192.168.64.1',2,36,40747,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00na4xiy42mc2u11',1,'Admin',1672319399,'192.168.64.1',2,36,40748,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00nb4xiyhf9ooknm',1,'Admin',1672319399,'192.168.64.1',2,36,40749,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00nc4xiy4sj1hdl5',1,'Admin',1672319399,'192.168.64.1',2,36,40750,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00nd4xiy2kt1t7yj',1,'Admin',1672319399,'192.168.64.1',2,36,40751,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ne4xiytuodrv7c',1,'Admin',1672319399,'192.168.64.1',2,36,40765,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00nf4xiygod06l57',1,'Admin',1672319399,'192.168.64.1',2,36,40766,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00ng4xiyv8e4cs6n',1,'Admin',1672319399,'192.168.64.1',2,36,40767,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00nh4xiyvmcwddop',1,'Admin',1672319399,'192.168.64.1',2,36,40768,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00ni4xiyuhnir0e7',1,'Admin',1672319399,'192.168.64.1',2,36,40769,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00nj4xiyu1ixnajm',1,'Admin',1672319399,'192.168.64.1',2,36,40770,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00nk4xiyupz1wxb3',1,'Admin',1672319399,'192.168.64.1',2,36,40771,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00nl4xiyju7glkhu',1,'Admin',1672319399,'192.168.64.1',2,36,40772,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00nm4xiyuxtgbkw3',1,'Admin',1672319399,'192.168.64.1',2,36,40773,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00nn4xiy3a111fc3',1,'Admin',1672319399,'192.168.64.1',2,36,40774,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93siso00no4xiyu67228h7',1,'Admin',1672319399,'192.168.64.1',2,36,40788,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00np4xiyrgtprgyl',1,'Admin',1672319399,'192.168.64.1',2,36,40789,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00nq4xiyw9yad210',1,'Admin',1672319399,'192.168.64.1',2,36,40790,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00nr4xiybsmkid5b',1,'Admin',1672319399,'192.168.64.1',2,36,40791,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00ns4xiyp6nz1os4',1,'Admin',1672319399,'192.168.64.1',2,36,40792,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00nt4xiyqyvysltd',1,'Admin',1672319399,'192.168.64.1',2,36,40793,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00nu4xiyuthjrreo',1,'Admin',1672319399,'192.168.64.1',2,36,40794,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00nv4xiye82qc7al',1,'Admin',1672319399,'192.168.64.1',2,36,40795,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00nw4xiypvcw2bm9',1,'Admin',1672319399,'192.168.64.1',2,36,40796,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00nx4xiy66bfjewz',1,'Admin',1672319399,'192.168.64.1',2,36,40797,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ny4xiypzskfbt0',1,'Admin',1672319399,'192.168.64.1',2,36,40834,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00nz4xiysvtb4f6k',1,'Admin',1672319399,'192.168.64.1',2,36,40835,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00o04xiy964k5lnz',1,'Admin',1672319399,'192.168.64.1',2,36,40836,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00o14xiyd5ydzojz',1,'Admin',1672319399,'192.168.64.1',2,36,40837,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00o24xiymcllgkcx',1,'Admin',1672319399,'192.168.64.1',2,36,40838,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00o34xiyjbvypy7s',1,'Admin',1672319399,'192.168.64.1',2,36,40839,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00o44xiyoliytjgm',1,'Admin',1672319399,'192.168.64.1',2,36,40840,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00o54xiyqsofuyml',1,'Admin',1672319399,'192.168.64.1',2,36,40841,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00o64xiywswkyt6p',1,'Admin',1672319399,'192.168.64.1',2,36,40842,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00o74xiyn5r5t8gt',1,'Admin',1672319399,'192.168.64.1',2,36,40843,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93siso00o84xiytsp02phn',1,'Admin',1672319399,'192.168.64.1',2,36,42686,NULL,'GarbageCollector: {#JMXNAME} number of collections per second','clc93sisl00004xiyevwovlv0',''),('clc93siso00o94xiy1b2u3wpg',1,'Admin',1672319399,'192.168.64.1',2,36,42687,NULL,'GarbageCollector: {#JMXNAME} accumulated time spent in collection','clc93sisl00004xiyevwovlv0',''),('clc93siso00oa4xiycbj68w21',1,'Admin',1672319399,'192.168.64.1',2,36,42688,NULL,'Memory pool: {#JMXNAME} committed','clc93sisl00004xiyevwovlv0',''),('clc93siso00ob4xiy7zh8zkr1',1,'Admin',1672319399,'192.168.64.1',2,36,42689,NULL,'Memory pool: {#JMXNAME} maximum size','clc93sisl00004xiyevwovlv0',''),('clc93siso00oc4xiyp5dnn5lx',1,'Admin',1672319399,'192.168.64.1',2,36,42690,NULL,'Memory pool: {#JMXNAME} used','clc93sisl00004xiyevwovlv0',''),('clc93siso00od4xiy49ks4tv9',1,'Admin',1672319399,'192.168.64.1',2,36,42987,NULL,'CockroachDB: Storage [{#STORE}]: Capacity available in %','clc93sisl00004xiyevwovlv0',''),('clc93siso00oe4xiyjx5hpam2',1,'Admin',1672319399,'192.168.64.1',2,36,42988,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB cache hit ratio','clc93sisl00004xiyevwovlv0',''),('clc93siso00of4xiytch85z18',1,'Admin',1672319399,'192.168.64.1',2,36,42989,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Consistency, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00og4xiytwe9imay',1,'Admin',1672319399,'192.168.64.1',2,36,42990,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB cache hits, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00oh4xiyhuxrtic4',1,'Admin',1672319399,'192.168.64.1',2,36,42991,NULL,'CockroachDB: Storage [{#STORE}]: Capacity total','clc93sisl00004xiyevwovlv0',''),('clc93siso00oi4xiyoen4w9lu',1,'Admin',1672319399,'192.168.64.1',2,36,42992,NULL,'CockroachDB: Storage [{#STORE}]: Capacity available','clc93sisl00004xiyevwovlv0',''),('clc93siso00oj4xiymwnaxgp4',1,'Admin',1672319399,'192.168.64.1',2,36,42993,NULL,'CockroachDB: Storage [{#STORE}]: Bytes: System','clc93sisl00004xiyevwovlv0',''),('clc93siso00ok4xiybcl7lb11',1,'Admin',1672319399,'192.168.64.1',2,36,42994,NULL,'CockroachDB: Storage [{#STORE}]: Bytes: Logical','clc93sisl00004xiyevwovlv0',''),('clc93siso00ol4xiycw3i4s1e',1,'Admin',1672319399,'192.168.64.1',2,36,42995,NULL,'CockroachDB: Storage [{#STORE}]: Bytes: Live','clc93sisl00004xiyevwovlv0',''),('clc93siso00om4xiy4m8ijajc',1,'Admin',1672319399,'192.168.64.1',2,36,42996,NULL,'CockroachDB: Storage [{#STORE}]: Slow requests: Raft proposals','clc93sisl00004xiyevwovlv0',''),('clc93siso00on4xiyiiyxj5h3',1,'Admin',1672319399,'192.168.64.1',2,36,42997,NULL,'CockroachDB: Storage [{#STORE}]: Slow requests: Lease acquisitions','clc93sisl00004xiyevwovlv0',''),('clc93siso00oo4xiyz3v8r9r5',1,'Admin',1672319399,'192.168.64.1',2,36,42998,NULL,'CockroachDB: Storage [{#STORE}]: Slow requests: Latch acquisitions','clc93sisl00004xiyevwovlv0',''),('clc93siso00op4xiygk6567ra',1,'Admin',1672319399,'192.168.64.1',2,36,42999,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB SSTables','clc93sisl00004xiyevwovlv0',''),('clc93siso00oq4xiyzpfrspm7',1,'Admin',1672319399,'192.168.64.1',2,36,43000,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB read amplification','clc93sisl00004xiyevwovlv0',''),('clc93siso00or4xiy886hvr4g',1,'Admin',1672319399,'192.168.64.1',2,36,43001,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB cache misses, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00os4xiyt9ppsu6r',1,'Admin',1672319399,'192.168.64.1',2,36,43002,NULL,'CockroachDB: Storage [{#STORE}]: Replication: Lease holders','clc93sisl00004xiyevwovlv0',''),('clc93siso00ot4xiy3xt5q9hx',1,'Admin',1672319399,'192.168.64.1',2,36,43003,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: GC, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00ou4xiykiukeyxq',1,'Admin',1672319399,'192.168.64.1',2,36,43004,NULL,'CockroachDB: Storage [{#STORE}]: Replication: Replicas quiesced','clc93sisl00004xiyevwovlv0',''),('clc93siso00ov4xiyhfhh324l',1,'Admin',1672319399,'192.168.64.1',2,36,43005,NULL,'CockroachDB: Storage [{#STORE}]: Replication: Replicas','clc93sisl00004xiyevwovlv0',''),('clc93siso00ow4xiy1lwpl5xt',1,'Admin',1672319399,'192.168.64.1',2,36,43006,NULL,'CockroachDB: Storage [{#STORE}]: Rebalancing: Average writes, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00ox4xiy6vbqklu0',1,'Admin',1672319399,'192.168.64.1',2,36,43007,NULL,'CockroachDB: Storage [{#STORE}]: Rebalancing: Average queries, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00oy4xiya71qp1ig',1,'Admin',1672319399,'192.168.64.1',2,36,43008,NULL,'CockroachDB: Storage [{#STORE}]: Ranges underreplicated','clc93sisl00004xiyevwovlv0',''),('clc93siso00oz4xiyhhwtn73i',1,'Admin',1672319399,'192.168.64.1',2,36,43009,NULL,'CockroachDB: Storage [{#STORE}]: Ranges unavailable','clc93sisl00004xiyevwovlv0',''),('clc93siso00p04xiy747euraw',1,'Admin',1672319399,'192.168.64.1',2,36,43010,NULL,'CockroachDB: Storage [{#STORE}]: Ranges count','clc93sisl00004xiyevwovlv0',''),('clc93siso00p14xiyazdiiuno',1,'Admin',1672319399,'192.168.64.1',2,36,43011,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Time series maintenance, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p24xiy3juxf8i9',1,'Admin',1672319399,'192.168.64.1',2,36,43012,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Split, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p34xiyb87kkf7j',1,'Admin',1672319399,'192.168.64.1',2,36,43013,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Replicate, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p44xiyv3zigacg',1,'Admin',1672319399,'192.168.64.1',2,36,43014,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Raft snapshot, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p54xiy9es1ahde',1,'Admin',1672319399,'192.168.64.1',2,36,43015,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Raft log, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p64xiyk1d87v8k',1,'Admin',1672319399,'192.168.64.1',2,36,43016,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Replica GC, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p74xiyedgm4opf',1,'Admin',1672319399,'192.168.64.1',2,36,43017,NULL,'CockroachDB: Storage [{#STORE}]: Capacity used','clc93sisl00004xiyevwovlv0',''),('clc93siso00p84xiygu5rvtub',1,'Admin',1672319399,'192.168.64.1',2,36,43050,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Membership, unhealthy','clc93sisl00004xiyevwovlv0',''),('clc93siso00p94xiywe1c6di0',1,'Admin',1672319399,'192.168.64.1',2,36,43051,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Membership, degraded','clc93sisl00004xiyevwovlv0',''),('clc93siso00pa4xiy7m5mnwbq',1,'Admin',1672319399,'192.168.64.1',2,36,43052,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests 4xx, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pb4xiyb0zfsxtv',1,'Admin',1672319399,'192.168.64.1',2,36,43053,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests timeout, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pc4xiyamf6fzey',1,'Admin',1672319399,'192.168.64.1',2,36,43054,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests pending','clc93sisl00004xiyevwovlv0',''),('clc93siso00pd4xiymdjhz3hv',1,'Admin',1672319399,'192.168.64.1',2,36,43055,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests completed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pe4xiypj4kqukm',1,'Admin',1672319399,'192.168.64.1',2,36,43056,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests active','clc93sisl00004xiyevwovlv0',''),('clc93siso00pf4xiy0erceitw',1,'Admin',1672319399,'192.168.64.1',2,36,43057,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests 5xx, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pg4xiy9m388hxq',1,'Admin',1672319399,'192.168.64.1',2,36,43058,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests 2xx, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00ph4xiymzi1o4hz',1,'Admin',1672319399,'192.168.64.1',2,36,43059,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests 3xx, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pi4xiypnsgw2r0',1,'Admin',1672319399,'192.168.64.1',2,36,43060,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Membership, healthy','clc93sisl00004xiyevwovlv0',''),('clc93siso00pj4xiyqjl1lffz',1,'Admin',1672319399,'192.168.64.1',2,36,43061,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Upstream bytes out, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pk4xiytx1tqovp',1,'Admin',1672319399,'192.168.64.1',2,36,43062,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Connections, total','clc93sisl00004xiyevwovlv0',''),('clc93siso00pl4xiyryn0mi93',1,'Admin',1672319399,'192.168.64.1',2,36,43063,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Upstream bytes in, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pm4xiy053dvkni',1,'Admin',1672319399,'192.168.64.1',2,36,43064,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Connections, active','clc93sisl00004xiyevwovlv0',''),('clc93siso00pn4xiyv41v6a6m',1,'Admin',1672319399,'192.168.64.1',2,36,43065,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Membership, total','clc93sisl00004xiyevwovlv0',''),('clc93siso00po4xiy2b2gpys7',1,'Admin',1672319399,'192.168.64.1',2,36,43066,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests total, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pp4xiyldkyy33j',1,'Admin',1672319399,'192.168.64.1',2,36,43067,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Connections, active','clc93sisl00004xiyevwovlv0',''),('clc93siso00pq4xiyoxay56eg',1,'Admin',1672319399,'192.168.64.1',2,36,43068,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Bytes in, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pr4xiyno9djcq8',1,'Admin',1672319399,'192.168.64.1',2,36,43069,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Connections, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00ps4xiydmbkv89k',1,'Admin',1672319399,'192.168.64.1',2,36,43070,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Bytes out, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pt4xiyge126xbt',1,'Admin',1672319399,'192.168.64.1',2,36,43071,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Requests, active','clc93sisl00004xiyevwovlv0',''),('clc93siso00pu4xiyoxuahaty',1,'Admin',1672319399,'192.168.64.1',2,36,43072,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Requests timeout, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pv4xiyowu4y0wy',1,'Admin',1672319399,'192.168.64.1',2,36,43073,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Requests, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pw4xiyzqi80zne',1,'Admin',1672319399,'192.168.64.1',2,36,43074,NULL,'Envoy Proxy: Listener [\"{#LISTENER_ADDRESS}\"]: Connections, active','clc93sisl00004xiyevwovlv0',''),('clc93siso00px4xiyawovqg6w',1,'Admin',1672319399,'192.168.64.1',2,36,43075,NULL,'Envoy Proxy: Listener [\"{#LISTENER_ADDRESS}\"]: Connections, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00py4xiyiqznnaan',1,'Admin',1672319399,'192.168.64.1',2,36,43076,NULL,'Envoy Proxy: Listener [\"{#LISTENER_ADDRESS}\"]: Sockets, undergoing','clc93sisl00004xiyevwovlv0',''),('clc93siso00pz4xiyhddotx89',1,'Admin',1672319399,'192.168.64.1',2,36,43137,NULL,'Consul: HTTP request: [\"{#HTTP_METHOD}\"], p50','clc93sisl00004xiyevwovlv0',''),('clc93siso00q04xiy7gmhmy5t',1,'Admin',1672319399,'192.168.64.1',2,36,43138,NULL,'Consul: HTTP request: [\"{#HTTP_METHOD}\"], p90','clc93sisl00004xiyevwovlv0',''),('clc93siso00q14xiyp97ijmai',1,'Admin',1672319399,'192.168.64.1',2,36,43139,NULL,'Consul: HTTP request: [\"{#HTTP_METHOD}\"], rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00q24xiypvuaf7d5',1,'Admin',1672319399,'192.168.64.1',2,36,43140,NULL,'Consul: [\"{#SERVICE_NAME}\"]: Aggregated status','clc93sisl00004xiyevwovlv0',''),('clc93siso00q34xiyopbfoy6p',1,'Admin',1672319399,'192.168.64.1',2,36,43141,NULL,'Consul: [\"{#SERVICE_NAME}\"]: Check [\"{#SERVICE_CHECK_NAME}\"]: Output','clc93sisl00004xiyevwovlv0',''),('clc93siso00q44xiyc5ewv2uv',1,'Admin',1672319399,'192.168.64.1',2,36,43142,NULL,'Consul: [\"{#SERVICE_NAME}\"]: Check [\"{#SERVICE_CHECK_NAME}\"]: Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00q54xiybp8qn4yp',1,'Admin',1672319399,'192.168.64.1',2,36,43143,NULL,'Consul: Autopilot healthy','clc93sisl00004xiyevwovlv0',''),('clc93siso00q64xiyxzwhifps',1,'Admin',1672319399,'192.168.64.1',2,36,43144,NULL,'Consul: Raft state: commit time, p50','clc93sisl00004xiyevwovlv0',''),('clc93siso00q74xiyn85l94ew',1,'Admin',1672319399,'192.168.64.1',2,36,43145,NULL,'Consul: Raft state: commit time, p90','clc93sisl00004xiyevwovlv0',''),('clc93siso00q84xiyui6i2avs',1,'Admin',1672319399,'192.168.64.1',2,36,43146,NULL,'Consul: Raft state: commit, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00q94xiycmhvlu1t',1,'Admin',1672319399,'192.168.64.1',2,36,43147,NULL,'Consul: Raft state: dispatch log, p50','clc93sisl00004xiyevwovlv0',''),('clc93siso00qa4xiya69xqjp0',1,'Admin',1672319399,'192.168.64.1',2,36,43148,NULL,'Consul: Raft state: dispatch log, p90','clc93sisl00004xiyevwovlv0',''),('clc93siso00qb4xiy10uqaa35',1,'Admin',1672319399,'192.168.64.1',2,36,43149,NULL,'Consul: Raft state: dispatch log, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00qc4xiytvpp2ulz',1,'Admin',1672319399,'192.168.64.1',2,36,43150,NULL,'Consul: Raft state: leader last contact, p50','clc93sisl00004xiyevwovlv0',''),('clc93siso00qd4xiymahju8a4',1,'Admin',1672319399,'192.168.64.1',2,36,43151,NULL,'Consul: Raft state: leader last contact, p90','clc93sisl00004xiyevwovlv0',''),('clc93siso00qe4xiy5vjyrrxe',1,'Admin',1672319399,'192.168.64.1',2,36,43152,NULL,'Consul: Raft: apply, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00qf4xiyj4037p58',1,'Admin',1672319399,'192.168.64.1',2,36,43153,NULL,'Consul: Raft state','clc93sisl00004xiyevwovlv0',''),('clc93siso00qg4xiyxejm8vff',1,'Admin',1672319399,'192.168.64.1',2,36,43154,NULL,'Consul: Raft state: candidate','clc93sisl00004xiyevwovlv0',''),('clc93siso00qh4xiynfdoycrk',1,'Admin',1672319399,'192.168.64.1',2,36,43155,NULL,'Consul: Raft state: leader','clc93sisl00004xiyevwovlv0',''),('clc93siso00qi4xiyvdktkzpv',1,'Admin',1672319399,'192.168.64.1',2,36,43169,NULL,'Consul: Node [\"{#NODE_NAME}\"]: Serf Health','clc93sisl00004xiyevwovlv0',''),('clc93siso00qj4xiy9xiw3xr2',1,'Admin',1672319399,'192.168.64.1',2,36,43168,NULL,'Consul cluster: [\"{#SERVICE_NAME}\"]: Get raw service state','clc93sisl00004xiyevwovlv0',''),('clc93siso00qk4xiyzefwaugi',1,'Admin',1672319399,'192.168.64.1',2,36,43170,NULL,'Consul: Service [\"{#SERVICE_NAME}\"]: Nodes critical','clc93sisl00004xiyevwovlv0',''),('clc93siso00ql4xiysu615007',1,'Admin',1672319399,'192.168.64.1',2,36,43171,NULL,'Consul: Service [\"{#SERVICE_NAME}\"]: Nodes passing','clc93sisl00004xiyevwovlv0',''),('clc93siso00qm4xiyxymbcq7d',1,'Admin',1672319399,'192.168.64.1',2,36,43172,NULL,'Consul: Service [\"{#SERVICE_NAME}\"]: Nodes warning','clc93sisl00004xiyevwovlv0',''),('clc93siso00qn4xiyy49z5iy0',1,'Admin',1672319399,'192.168.64.1',2,36,44319,NULL,'Uplink [{#IP}]: [{#UPLINK}]: Latency','clc93sisl00004xiyevwovlv0',''),('clc93siso00qo4xiymmr2547v',1,'Admin',1672319399,'192.168.64.1',2,36,44320,NULL,'Uplink [{#IP}]: [{#UPLINK}]: Loss, %','clc93sisl00004xiyevwovlv0',''),('clc93siso00qp4xiywe2sei5c',1,'Admin',1672319399,'192.168.64.1',2,36,44321,NULL,'Uplink [{#INTERFACE}]: [{#UPLINK.ROLE}]: [{#NETWORK.NAME}]: status','clc93sisl00004xiyevwovlv0',''),('clc93siso00qq4xiyxys2fbh6',1,'Admin',1672319399,'192.168.64.1',2,36,44322,NULL,'VPN [{#NETWORK.NAME}]=>[{#PEER.NETWORK.NAME}]: stats raw','clc93sisl00004xiyevwovlv0',''),('clc93siso00qr4xiygg5h7f37',1,'Admin',1672319399,'192.168.64.1',2,36,44323,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter avg','clc93sisl00004xiyevwovlv0',''),('clc93siso00qs4xiya4d9xcyq',1,'Admin',1672319399,'192.168.64.1',2,36,44324,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter max','clc93sisl00004xiyevwovlv0',''),('clc93siso00qt4xiy7smxm33r',1,'Admin',1672319399,'192.168.64.1',2,36,44325,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter min','clc93sisl00004xiyevwovlv0',''),('clc93siso00qu4xiy726xw310',1,'Admin',1672319399,'192.168.64.1',2,36,44326,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency avg','clc93sisl00004xiyevwovlv0',''),('clc93siso00qv4xiyswf7oxrf',1,'Admin',1672319399,'192.168.64.1',2,36,44327,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency max','clc93sisl00004xiyevwovlv0',''),('clc93siso00qw4xiyudokdt3b',1,'Admin',1672319399,'192.168.64.1',2,36,44328,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency min','clc93sisl00004xiyevwovlv0',''),('clc93siso00qx4xiy4269kvdq',1,'Admin',1672319399,'192.168.64.1',2,36,44329,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss avg, %','clc93sisl00004xiyevwovlv0',''),('clc93siso00qy4xiyki74yh3y',1,'Admin',1672319399,'192.168.64.1',2,36,44330,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss max, %','clc93sisl00004xiyevwovlv0',''),('clc93siso00qz4xiy8bsnd95p',1,'Admin',1672319399,'192.168.64.1',2,36,44331,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss min, %','clc93sisl00004xiyevwovlv0',''),('clc93siso00r04xiy4cgfbkfu',1,'Admin',1672319399,'192.168.64.1',2,36,44332,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos avg','clc93sisl00004xiyevwovlv0',''),('clc93siso00r14xiyi5c5uca8',1,'Admin',1672319399,'192.168.64.1',2,36,44333,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos max','clc93sisl00004xiyevwovlv0',''),('clc93siso00r24xiyhpazwm57',1,'Admin',1672319399,'192.168.64.1',2,36,44334,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos min','clc93sisl00004xiyevwovlv0',''),('clc93siso00r34xiyyvry9ezb',1,'Admin',1672319399,'192.168.64.1',2,36,44403,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00r44xiysv9b4yi9',1,'Admin',1672319399,'192.168.64.1',2,36,44404,NULL,'{#ENT_NAME}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00r54xiyoj9i2m4g',1,'Admin',1672319399,'192.168.64.1',2,36,44405,NULL,'{#SNMPVALUE}: Fan operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00r64xiynoh71cpd',1,'Admin',1672319399,'192.168.64.1',2,36,44406,NULL,'{#SNMPVALUE}: Free memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00r74xiykogoaaea',1,'Admin',1672319399,'192.168.64.1',2,36,44407,NULL,'{#SNMPVALUE}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93sisp00r84xiyvujrdoph',1,'Admin',1672319399,'192.168.64.1',2,36,44408,NULL,'{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sisp00r94xiyy659jjeu',1,'Admin',1672319399,'192.168.64.1',2,36,44409,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93sisp00ra4xiybc0z9atd',1,'Admin',1672319399,'192.168.64.1',2,36,44410,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rb4xiykbvprcy1',1,'Admin',1672319399,'192.168.64.1',2,36,44411,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rc4xiyt6kxo1jw',1,'Admin',1672319399,'192.168.64.1',2,36,44412,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rd4xiyim98ztz8',1,'Admin',1672319399,'192.168.64.1',2,36,44413,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93sisp00re4xiy9lz3a42u',1,'Admin',1672319399,'192.168.64.1',2,36,44414,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rf4xiygwvcvf6t',1,'Admin',1672319399,'192.168.64.1',2,36,44415,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rg4xiydhig0fr6',1,'Admin',1672319399,'192.168.64.1',2,36,44416,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rh4xiythx1gg12',1,'Admin',1672319399,'192.168.64.1',2,36,44417,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93sisp00ri4xiy9gdbuy4t',1,'Admin',1672319399,'192.168.64.1',2,36,44418,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rj4xiy8ngtcog6',1,'Admin',1672319399,'192.168.64.1',2,36,44419,NULL,'{#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rk4xiy5qp0kucm',1,'Admin',1672319399,'192.168.64.1',2,36,44420,NULL,'{#SNMPVALUE}: Temperature sensor status','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rl4xiy0srrdi9e',1,'Admin',1672319399,'192.168.64.1',2,36,44421,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93siu800rm4xiyxo90r0h1',1,'Admin',1672319399,'192.168.64.1',2,37,10523,NULL,'Consul {#NODE_NAME}','clc93sisl00004xiyevwovlv0',''),('clc93siu800rn4xiyyib50ymh',1,'Admin',1672319399,'192.168.64.1',2,37,10549,NULL,'{#NAME}','clc93sisl00004xiyevwovlv0',''),('clc93siu800ro4xiyjhw05c1x',1,'Admin',1672319399,'192.168.64.1',2,37,10550,NULL,'{#NAME}','clc93sisl00004xiyevwovlv0',''),('clc93siz700rp4xiyjc3d42qr',1,'Admin',1672319399,'192.168.64.1',2,15,42179,NULL,'Host name of Zabbix agent running','clc93sisl00004xiyevwovlv0',''),('clc93siz700rq4xiy0d2l74ar',1,'Admin',1672319399,'192.168.64.1',2,15,42180,NULL,'Zabbix agent ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700rr4xiyghyydcs5',1,'Admin',1672319399,'192.168.64.1',2,15,42181,NULL,'Version of Zabbix agent running','clc93sisl00004xiyevwovlv0',''),('clc93siz700rs4xiyssxjtj2r',1,'Admin',1672319399,'192.168.64.1',2,15,22875,NULL,'Maximum number of opened files','clc93sisl00004xiyevwovlv0',''),('clc93siz700rt4xiy3mxbhw3k',1,'Admin',1672319399,'192.168.64.1',2,15,22876,NULL,'Maximum number of processes','clc93sisl00004xiyevwovlv0',''),('clc93siz700ru4xiy4igl1qt5',1,'Admin',1672319399,'192.168.64.1',2,15,22877,NULL,'Number of running processes','clc93sisl00004xiyevwovlv0',''),('clc93siz700rv4xiyuki1rg92',1,'Admin',1672319399,'192.168.64.1',2,15,22878,NULL,'Number of processes','clc93sisl00004xiyevwovlv0',''),('clc93siz700rw4xiyhsz17r3f',1,'Admin',1672319399,'192.168.64.1',2,15,22879,NULL,'Host boot time','clc93sisl00004xiyevwovlv0',''),('clc93siz700rx4xiy3gm9zm6y',1,'Admin',1672319399,'192.168.64.1',2,15,22880,NULL,'Interrupts per second','clc93sisl00004xiyevwovlv0',''),('clc93siz700ry4xiy5jnbqslg',1,'Admin',1672319399,'192.168.64.1',2,15,22881,NULL,'Processor load (15 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700rz4xiy7sff9ydd',1,'Admin',1672319399,'192.168.64.1',2,15,22882,NULL,'Processor load (1 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700s04xiy3l9r4oiq',1,'Admin',1672319399,'192.168.64.1',2,15,22883,NULL,'Processor load (5 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700s14xiys4qyhns7',1,'Admin',1672319399,'192.168.64.1',2,15,22884,NULL,'Context switches per second','clc93sisl00004xiyevwovlv0',''),('clc93siz700s24xiy1oyqgqzx',1,'Admin',1672319399,'192.168.64.1',2,15,22885,NULL,'CPU idle time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s34xiys2dze20j',1,'Admin',1672319399,'192.168.64.1',2,15,22886,NULL,'CPU interrupt time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s44xiybgfzhj67',1,'Admin',1672319399,'192.168.64.1',2,15,22888,NULL,'CPU nice time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s54xiyxad4vm3l',1,'Admin',1672319399,'192.168.64.1',2,15,22891,NULL,'CPU system time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s64xiys0vp3tcv',1,'Admin',1672319399,'192.168.64.1',2,15,22892,NULL,'CPU user time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s74xiyhe1pgtyy',1,'Admin',1672319399,'192.168.64.1',2,15,22893,NULL,'Host name','clc93sisl00004xiyevwovlv0',''),('clc93siz700s84xiyoii5u2w5',1,'Admin',1672319399,'192.168.64.1',2,15,22894,NULL,'Host local time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s94xiyux7ny2uz',1,'Admin',1672319399,'192.168.64.1',2,15,22895,NULL,'Free swap space','clc93sisl00004xiyevwovlv0',''),('clc93siz700sa4xiyzgjqz9xk',1,'Admin',1672319399,'192.168.64.1',2,15,22896,NULL,'Free swap space in %','clc93sisl00004xiyevwovlv0',''),('clc93siz700sb4xiyo4u8wd1c',1,'Admin',1672319399,'192.168.64.1',2,15,22897,NULL,'Total swap space','clc93sisl00004xiyevwovlv0',''),('clc93siz700sc4xiywjkxsm2p',1,'Admin',1672319399,'192.168.64.1',2,15,22898,NULL,'System information','clc93sisl00004xiyevwovlv0',''),('clc93siz700sd4xiy8koonqsf',1,'Admin',1672319399,'192.168.64.1',2,15,22899,NULL,'System uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz700se4xiycb1eoyrd',1,'Admin',1672319399,'192.168.64.1',2,15,22900,NULL,'Number of logged in users','clc93sisl00004xiyevwovlv0',''),('clc93siz700sf4xiyfhbxyv68',1,'Admin',1672319399,'192.168.64.1',2,15,22901,NULL,'Checksum of /etc/passwd','clc93sisl00004xiyevwovlv0',''),('clc93siz700sg4xiy6zvupld4',1,'Admin',1672319399,'192.168.64.1',2,15,44430,NULL,'Get filesystems','clc93sisl00004xiyevwovlv0',''),('clc93siz700sh4xiymiuog81m',1,'Admin',1672319399,'192.168.64.1',2,15,22902,NULL,'Available memory','clc93sisl00004xiyevwovlv0',''),('clc93siz700si4xiyrbzoxapb',1,'Admin',1672319399,'192.168.64.1',2,15,22903,NULL,'Total memory','clc93sisl00004xiyevwovlv0',''),('clc93siz700sj4xiy2dd2ck1u',1,'Admin',1672319399,'192.168.64.1',2,15,42182,NULL,'Zabbix agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700sk4xiym497qwlq',1,'Admin',1672319399,'192.168.64.1',2,15,42183,NULL,'Host name of Zabbix agent running','clc93sisl00004xiyevwovlv0',''),('clc93siz700sl4xiy2q4hf0j9',1,'Admin',1672319399,'192.168.64.1',2,15,42184,NULL,'Zabbix agent ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700sm4xiyynmavv6z',1,'Admin',1672319399,'192.168.64.1',2,15,42185,NULL,'Version of Zabbix agent running','clc93sisl00004xiyevwovlv0',''),('clc93siz700sn4xiyztr435qy',1,'Admin',1672319399,'192.168.64.1',2,15,22961,NULL,'Processor load (15 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700so4xiy3nh2kcji',1,'Admin',1672319399,'192.168.64.1',2,15,22962,NULL,'Processor load (1 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700sp4xiyfrmkaheb',1,'Admin',1672319399,'192.168.64.1',2,15,22963,NULL,'Processor load (5 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700sq4xiyci6h6a6i',1,'Admin',1672319399,'192.168.64.1',2,15,22965,NULL,'CPU idle time','clc93sisl00004xiyevwovlv0',''),('clc93siz700sr4xiyzgqwm6de',1,'Admin',1672319399,'192.168.64.1',2,15,22968,NULL,'CPU nice time','clc93sisl00004xiyevwovlv0',''),('clc93siz700ss4xiyx5f65v4s',1,'Admin',1672319399,'192.168.64.1',2,15,22971,NULL,'CPU system time','clc93sisl00004xiyevwovlv0',''),('clc93siz700st4xiycwrfuoxp',1,'Admin',1672319399,'192.168.64.1',2,15,22972,NULL,'CPU user time','clc93sisl00004xiyevwovlv0',''),('clc93siz700su4xiynckvkmpg',1,'Admin',1672319399,'192.168.64.1',2,15,22973,NULL,'Host name','clc93sisl00004xiyevwovlv0',''),('clc93siz700sv4xiykb99cd0q',1,'Admin',1672319399,'192.168.64.1',2,15,22974,NULL,'Host local time','clc93sisl00004xiyevwovlv0',''),('clc93siz700sw4xiygumg4716',1,'Admin',1672319399,'192.168.64.1',2,15,22978,NULL,'System information','clc93sisl00004xiyevwovlv0',''),('clc93siz700sx4xiy1rx6r875',1,'Admin',1672319399,'192.168.64.1',2,15,22980,NULL,'Number of logged in users','clc93sisl00004xiyevwovlv0',''),('clc93siz700sy4xiyv1zq9fga',1,'Admin',1672319399,'192.168.64.1',2,15,22981,NULL,'Checksum of /etc/passwd','clc93sisl00004xiyevwovlv0',''),('clc93siz700sz4xiy3l2k1rus',1,'Admin',1672319399,'192.168.64.1',2,15,44433,NULL,'Get filesystems','clc93sisl00004xiyevwovlv0',''),('clc93siz700t04xiybr5d01ox',1,'Admin',1672319399,'192.168.64.1',2,15,22982,NULL,'Available memory','clc93sisl00004xiyevwovlv0',''),('clc93siz700t14xiyxazlahxz',1,'Admin',1672319399,'192.168.64.1',2,15,22983,NULL,'Total memory','clc93sisl00004xiyevwovlv0',''),('clc93siz700t24xiyiyll6kmg',1,'Admin',1672319399,'192.168.64.1',2,15,42186,NULL,'Zabbix agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700t34xiyghpm1s9v',1,'Admin',1672319399,'192.168.64.1',2,15,23644,NULL,'FTP service is running','clc93sisl00004xiyevwovlv0',''),('clc93siz700t44xiy03oqbqtb',1,'Admin',1672319399,'192.168.64.1',2,15,31499,NULL,'ClassLoading: Loaded class count','clc93sisl00004xiyevwovlv0',''),('clc93siz700t54xiyxp5yfpg4',1,'Admin',1672319399,'192.168.64.1',2,15,31527,NULL,'ClassLoading: Total loaded class count','clc93sisl00004xiyevwovlv0',''),('clc93siz700t64xiybl9266fi',1,'Admin',1672319399,'192.168.64.1',2,15,31529,NULL,'ClassLoading: Unloaded class count','clc93sisl00004xiyevwovlv0',''),('clc93siz700t74xiypk73bkuh',1,'Admin',1672319399,'192.168.64.1',2,15,31530,NULL,'Compilation: Name of the current JIT compiler','clc93sisl00004xiyevwovlv0',''),('clc93siz700t84xiyu5dbp2hs',1,'Admin',1672319399,'192.168.64.1',2,15,31531,NULL,'Compilation: Accumulated time spent','clc93sisl00004xiyevwovlv0',''),('clc93siz700t94xiy11dheim8',1,'Admin',1672319399,'192.168.64.1',2,15,31544,NULL,'Memory: Heap memory committed','clc93sisl00004xiyevwovlv0',''),('clc93siz700ta4xiyn9f9xra3',1,'Admin',1672319399,'192.168.64.1',2,15,31545,NULL,'Memory: Heap memory maximum size','clc93sisl00004xiyevwovlv0',''),('clc93siz700tb4xiykavihdsd',1,'Admin',1672319399,'192.168.64.1',2,15,31546,NULL,'Memory: Heap memory used','clc93sisl00004xiyevwovlv0',''),('clc93siz700tc4xiyu5wx0s9k',1,'Admin',1672319399,'192.168.64.1',2,15,31547,NULL,'Memory: Non-Heap memory committed','clc93sisl00004xiyevwovlv0',''),('clc93siz700td4xiyncsgng6e',1,'Admin',1672319399,'192.168.64.1',2,15,31548,NULL,'Memory: Non-Heap memory maximum size','clc93sisl00004xiyevwovlv0',''),('clc93siz700te4xiyogcg3c5w',1,'Admin',1672319399,'192.168.64.1',2,15,31549,NULL,'Memory: Non-Heap memory used','clc93sisl00004xiyevwovlv0',''),('clc93siz700tf4xiy2bc42o8u',1,'Admin',1672319399,'192.168.64.1',2,15,31550,NULL,'Memory: Object pending finalization count','clc93sisl00004xiyevwovlv0',''),('clc93siz700tg4xiy9kda25dj',1,'Admin',1672319399,'192.168.64.1',2,15,31516,NULL,'OperatingSystem: File descriptors maximum count','clc93sisl00004xiyevwovlv0',''),('clc93siz700th4xiye7xdts1s',1,'Admin',1672319399,'192.168.64.1',2,15,31517,NULL,'OperatingSystem: File descriptors opened','clc93sisl00004xiyevwovlv0',''),('clc93siz700ti4xiyej9l4s9i',1,'Admin',1672319399,'192.168.64.1',2,15,31518,NULL,'OperatingSystem: Process CPU Load','clc93sisl00004xiyevwovlv0',''),('clc93siz700tj4xiycyxmnq46',1,'Admin',1672319399,'192.168.64.1',2,15,31519,NULL,'Runtime: JVM uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz700tk4xiyqbtb9i1g',1,'Admin',1672319399,'192.168.64.1',2,15,31520,NULL,'Runtime: JVM name','clc93sisl00004xiyevwovlv0',''),('clc93siz700tl4xiy1dit1mho',1,'Admin',1672319399,'192.168.64.1',2,15,31521,NULL,'Runtime: JVM version','clc93sisl00004xiyevwovlv0',''),('clc93siz700tm4xiyux5mapf4',1,'Admin',1672319399,'192.168.64.1',2,15,31522,NULL,'Threading: Daemon thread count','clc93sisl00004xiyevwovlv0',''),('clc93siz700tn4xiy7ekue57v',1,'Admin',1672319399,'192.168.64.1',2,15,31523,NULL,'Threading: Peak thread count','clc93sisl00004xiyevwovlv0',''),('clc93siz700to4xiy3xwsszsp',1,'Admin',1672319399,'192.168.64.1',2,15,31524,NULL,'Threading: Thread count','clc93sisl00004xiyevwovlv0',''),('clc93siz700tp4xiym60sqs1i',1,'Admin',1672319399,'192.168.64.1',2,15,31553,NULL,'Threading: Total started thread count','clc93sisl00004xiyevwovlv0',''),('clc93siz700tq4xiy4xn159bd',1,'Admin',1672319399,'192.168.64.1',2,15,40451,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700tr4xiyyi0wyzh3',1,'Admin',1672319399,'192.168.64.1',2,15,40190,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700ts4xiyyannogoi',1,'Admin',1672319399,'192.168.64.1',2,15,40191,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700tt4xiykwncax84',1,'Admin',1672319399,'192.168.64.1',2,15,40192,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700tu4xiys6w2jb9u',1,'Admin',1672319399,'192.168.64.1',2,15,27157,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700tv4xiy2dp3d721',1,'Admin',1672319399,'192.168.64.1',2,15,29846,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700tw4xiyb88knuji',1,'Admin',1672319399,'192.168.64.1',2,15,29848,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700tx4xiy88fpv6at',1,'Admin',1672319399,'192.168.64.1',2,15,43769,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700ty4xiy95yterww',1,'Admin',1672319399,'192.168.64.1',2,15,29845,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700tz4xiyj3nplaxp',1,'Admin',1672319399,'192.168.64.1',2,15,27152,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700u04xiyr4vvz7i7',1,'Admin',1672319399,'192.168.64.1',2,15,29844,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700u14xiy1eph1fzy',1,'Admin',1672319399,'192.168.64.1',2,15,29847,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700u24xiyk6cilvq7',1,'Admin',1672319399,'192.168.64.1',2,15,27154,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700u34xiy6m65q2qd',1,'Admin',1672319399,'192.168.64.1',2,15,27376,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700u44xiyv3q4sj1h',1,'Admin',1672319399,'192.168.64.1',2,15,40600,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700u54xiy89r7f8wq',1,'Admin',1672319399,'192.168.64.1',2,15,40601,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700u64xiy9ayst64l',1,'Admin',1672319399,'192.168.64.1',2,15,40602,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700u74xiy7be2bfq0',1,'Admin',1672319399,'192.168.64.1',2,15,40603,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700u84xiybeurmx30',1,'Admin',1672319399,'192.168.64.1',2,15,40604,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700u94xiyixrugkh3',1,'Admin',1672319399,'192.168.64.1',2,15,40605,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700ua4xiyo5ekdu93',1,'Admin',1672319399,'192.168.64.1',2,15,40606,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700ub4xiyl2etr2l7',1,'Admin',1672319399,'192.168.64.1',2,15,40607,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700uc4xiyshm28zbi',1,'Admin',1672319399,'192.168.64.1',2,15,40608,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700ud4xiyrib9nl88',1,'Admin',1672319399,'192.168.64.1',2,15,43780,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700ue4xiyaepednix',1,'Admin',1672319399,'192.168.64.1',2,15,40609,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700uf4xiyhpp8l2lu',1,'Admin',1672319399,'192.168.64.1',2,15,40610,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700ug4xiy2cexu3xt',1,'Admin',1672319399,'192.168.64.1',2,15,40613,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700uh4xiyhxuolpbd',1,'Admin',1672319399,'192.168.64.1',2,15,40611,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700ui4xiydny579zx',1,'Admin',1672319399,'192.168.64.1',2,15,40612,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700uj4xiy7z9r2ldb',1,'Admin',1672319399,'192.168.64.1',2,15,40614,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700uk4xiy9vboz4ea',1,'Admin',1672319399,'192.168.64.1',2,15,40708,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700ul4xiyybjjr61l',1,'Admin',1672319399,'192.168.64.1',2,15,40709,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700um4xiy5cmin4vm',1,'Admin',1672319399,'192.168.64.1',2,15,40710,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700un4xiyemf1ijaa',1,'Admin',1672319399,'192.168.64.1',2,15,40711,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700uo4xiy03jic572',1,'Admin',1672319399,'192.168.64.1',2,15,40712,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700up4xiyzr5ilglk',1,'Admin',1672319399,'192.168.64.1',2,15,40713,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700uq4xiy5mqneu3t',1,'Admin',1672319399,'192.168.64.1',2,15,43783,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700ur4xiy17g9j792',1,'Admin',1672319399,'192.168.64.1',2,15,40714,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700us4xiykqxdhat7',1,'Admin',1672319399,'192.168.64.1',2,15,40715,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700ut4xiym1sn8xdk',1,'Admin',1672319399,'192.168.64.1',2,15,40717,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700uu4xiyh3k53smh',1,'Admin',1672319399,'192.168.64.1',2,15,40716,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700uv4xiyxqcnc5lh',1,'Admin',1672319399,'192.168.64.1',2,15,40718,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700uw4xiyhhs6o16e',1,'Admin',1672319399,'192.168.64.1',2,15,40731,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700ux4xiy0yomr37o',1,'Admin',1672319399,'192.168.64.1',2,15,40732,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700uy4xiyo8jsz3lo',1,'Admin',1672319399,'192.168.64.1',2,15,40733,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700uz4xiyli3ttqs5',1,'Admin',1672319399,'192.168.64.1',2,15,40734,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700v04xiyo45g9vzd',1,'Admin',1672319399,'192.168.64.1',2,15,40735,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700v14xiyfybbibhd',1,'Admin',1672319399,'192.168.64.1',2,15,27511,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700v24xiytp38u4nz',1,'Admin',1672319399,'192.168.64.1',2,15,40736,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700v34xiyxan98hpn',1,'Admin',1672319399,'192.168.64.1',2,15,27509,NULL,'Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz700v44xiyk4eia5e2',1,'Admin',1672319399,'192.168.64.1',2,15,27510,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700v54xiyqlpek5qc',1,'Admin',1672319399,'192.168.64.1',2,15,43784,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700v64xiyydsmrukn',1,'Admin',1672319399,'192.168.64.1',2,15,27508,NULL,'Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93siz700v74xiy0op3ae8g',1,'Admin',1672319399,'192.168.64.1',2,15,40737,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700v84xiyzoqtdwdc',1,'Admin',1672319399,'192.168.64.1',2,15,40738,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700v94xiyuq8g10dk',1,'Admin',1672319399,'192.168.64.1',2,15,40740,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700va4xiyajclg3q4',1,'Admin',1672319399,'192.168.64.1',2,15,40739,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700vb4xiyfmav2ohn',1,'Admin',1672319399,'192.168.64.1',2,15,30106,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700vc4xiyyufrlu16',1,'Admin',1672319399,'192.168.64.1',2,15,40741,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700vd4xiy4gdvnj0z',1,'Admin',1672319399,'192.168.64.1',2,15,40752,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700ve4xiyx4myclmr',1,'Admin',1672319399,'192.168.64.1',2,15,40753,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700vf4xiylx0x76eb',1,'Admin',1672319399,'192.168.64.1',2,15,40754,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700vg4xiyd0qm39s3',1,'Admin',1672319399,'192.168.64.1',2,15,40755,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700vh4xiytsfemmmz',1,'Admin',1672319399,'192.168.64.1',2,15,40756,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700vi4xiyqu5bunwj',1,'Admin',1672319399,'192.168.64.1',2,15,27547,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700vj4xiyml0wv5yu',1,'Admin',1672319399,'192.168.64.1',2,15,40757,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700vk4xiyvyf5hevq',1,'Admin',1672319399,'192.168.64.1',2,15,27544,NULL,'Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz700vl4xiynw46kk1q',1,'Admin',1672319399,'192.168.64.1',2,15,27546,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700vm4xiyntjjkheq',1,'Admin',1672319399,'192.168.64.1',2,15,27545,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700vn4xiyrhzbnzkg',1,'Admin',1672319399,'192.168.64.1',2,15,43785,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700vo4xiyp5wsm9p5',1,'Admin',1672319399,'192.168.64.1',2,15,27543,NULL,'Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93siz700vp4xiy9iqqxfll',1,'Admin',1672319399,'192.168.64.1',2,15,40758,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700vq4xiy2872csq7',1,'Admin',1672319399,'192.168.64.1',2,15,40759,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700vr4xiy20yj8qne',1,'Admin',1672319399,'192.168.64.1',2,15,40761,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700vs4xiyakhjp765',1,'Admin',1672319399,'192.168.64.1',2,15,40760,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700vt4xiy0zgpek8t',1,'Admin',1672319399,'192.168.64.1',2,15,40762,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700vu4xiydi7lxsuz',1,'Admin',1672319399,'192.168.64.1',2,15,40775,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700vv4xiyy1yrn9x3',1,'Admin',1672319399,'192.168.64.1',2,15,40780,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700vw4xiy1khfx454',1,'Admin',1672319399,'192.168.64.1',2,15,40784,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700vx4xiy1k2v4vdh',1,'Admin',1672319399,'192.168.64.1',2,15,27585,NULL,'Device: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93siz700vy4xiyymiummom',1,'Admin',1672319399,'192.168.64.1',2,15,27584,NULL,'Device: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93siz700vz4xiyulvr3tmx',1,'Admin',1672319399,'192.168.64.1',2,15,40783,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700w04xiyn2whezzs',1,'Admin',1672319399,'192.168.64.1',2,15,40782,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700w14xiyq1pz91da',1,'Admin',1672319399,'192.168.64.1',2,15,27586,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700w24xiyu98i1jnh',1,'Admin',1672319399,'192.168.64.1',2,15,40781,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700w34xiywa8fvpqd',1,'Admin',1672319399,'192.168.64.1',2,15,27579,NULL,'Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz700w44xiysolhf6ha',1,'Admin',1672319399,'192.168.64.1',2,15,27583,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700w54xiymrrw0tyu',1,'Admin',1672319399,'192.168.64.1',2,15,27582,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700w64xiym9mie6xv',1,'Admin',1672319399,'192.168.64.1',2,15,43786,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700w74xiyscrtiryp',1,'Admin',1672319399,'192.168.64.1',2,15,27580,NULL,'Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93siz700w84xiygek1fowh',1,'Admin',1672319399,'192.168.64.1',2,15,40779,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700w94xiyaddwj96r',1,'Admin',1672319399,'192.168.64.1',2,15,40778,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700wa4xiywyyi8gsv',1,'Admin',1672319399,'192.168.64.1',2,15,40776,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wb4xiyitaoymhn',1,'Admin',1672319399,'192.168.64.1',2,15,40777,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700wc4xiylyuh4qot',1,'Admin',1672319399,'192.168.64.1',2,15,30109,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700wd4xiyc56ddj6d',1,'Admin',1672319399,'192.168.64.1',2,15,40785,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700we4xiy25d1rv9m',1,'Admin',1672319399,'192.168.64.1',2,15,40821,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700wf4xiy0n50zkbd',1,'Admin',1672319399,'192.168.64.1',2,15,40822,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700wg4xiyq9l21fhv',1,'Admin',1672319399,'192.168.64.1',2,15,40823,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700wh4xiy6j58vime',1,'Admin',1672319399,'192.168.64.1',2,15,40824,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wi4xiytvwmecg7',1,'Admin',1672319399,'192.168.64.1',2,15,40825,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700wj4xiyofjg7yk1',1,'Admin',1672319399,'192.168.64.1',2,15,40826,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700wk4xiyievkb6ip',1,'Admin',1672319399,'192.168.64.1',2,15,43788,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wl4xiydgkg55cy',1,'Admin',1672319399,'192.168.64.1',2,15,40827,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700wm4xiywa1t1izm',1,'Admin',1672319399,'192.168.64.1',2,15,40828,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700wn4xiy7cdh2dij',1,'Admin',1672319399,'192.168.64.1',2,15,40830,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wo4xiyipt57izi',1,'Admin',1672319399,'192.168.64.1',2,15,40829,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700wp4xiyifyr9i4q',1,'Admin',1672319399,'192.168.64.1',2,15,40831,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700wq4xiys63ykfu6',1,'Admin',1672319399,'192.168.64.1',2,15,40629,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700wr4xiyin08b10q',1,'Admin',1672319399,'192.168.64.1',2,15,40630,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700ws4xiyud3jxrwt',1,'Admin',1672319399,'192.168.64.1',2,15,40631,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700wt4xiy4nowe5pr',1,'Admin',1672319399,'192.168.64.1',2,15,40632,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wu4xiyg76z7alb',1,'Admin',1672319399,'192.168.64.1',2,15,40633,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700wv4xiyfec71i99',1,'Admin',1672319399,'192.168.64.1',2,15,40634,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700ww4xiyp35vxdu2',1,'Admin',1672319399,'192.168.64.1',2,15,40635,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700wx4xiyvu2vlf0c',1,'Admin',1672319399,'192.168.64.1',2,15,40636,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700wy4xiykrdsmyl1',1,'Admin',1672319399,'192.168.64.1',2,15,43782,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wz4xiybdiu9wg3',1,'Admin',1672319399,'192.168.64.1',2,15,40637,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700x04xiybensewh2',1,'Admin',1672319399,'192.168.64.1',2,15,40638,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700x14xiybuvgffic',1,'Admin',1672319399,'192.168.64.1',2,15,40641,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700x24xiyxiiguc33',1,'Admin',1672319399,'192.168.64.1',2,15,40639,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700x34xiywc9udgvr',1,'Admin',1672319399,'192.168.64.1',2,15,40640,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700x44xiys5dved21',1,'Admin',1672319399,'192.168.64.1',2,15,40642,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700x54xiyt1qqqfu2',1,'Admin',1672319399,'192.168.64.1',2,15,42631,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700x64xiyzyb03kiy',1,'Admin',1672319399,'192.168.64.1',2,15,42632,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700x74xiyxocfyj2v',1,'Admin',1672319399,'192.168.64.1',2,15,42633,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700x84xiyw7x34qed',1,'Admin',1672319399,'192.168.64.1',2,15,42634,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700x94xiyuqhe8gn0',1,'Admin',1672319399,'192.168.64.1',2,15,42635,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700xa4xiypcomb1l7',1,'Admin',1672319399,'192.168.64.1',2,15,42636,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700xb4xiywrnkuhug',1,'Admin',1672319399,'192.168.64.1',2,15,28345,NULL,'Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz700xc4xiy2jq8pj8w',1,'Admin',1672319399,'192.168.64.1',2,15,28342,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700xd4xiy6mwwgsvn',1,'Admin',1672319399,'192.168.64.1',2,15,28344,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700xe4xiy0n9owjs6',1,'Admin',1672319399,'192.168.64.1',2,15,43895,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xf4xiy4koxkc03',1,'Admin',1672319399,'192.168.64.1',2,15,42637,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700xg4xiy9qk3ntly',1,'Admin',1672319399,'192.168.64.1',2,15,42638,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700xh4xiy0q80kznf',1,'Admin',1672319399,'192.168.64.1',2,15,42640,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xi4xiyb961un64',1,'Admin',1672319399,'192.168.64.1',2,15,42639,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700xj4xiyv2nkuumc',1,'Admin',1672319399,'192.168.64.1',2,15,28341,NULL,'Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz700xk4xiyi5qdof2l',1,'Admin',1672319399,'192.168.64.1',2,15,30141,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700xl4xiykdc8cue2',1,'Admin',1672319399,'192.168.64.1',2,15,42641,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700xm4xiykxe0k5hk',1,'Admin',1672319399,'192.168.64.1',2,15,42620,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700xn4xiye7unvw8l',1,'Admin',1672319399,'192.168.64.1',2,15,42621,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700xo4xiyinso6tfe',1,'Admin',1672319399,'192.168.64.1',2,15,42622,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700xp4xiyas8omg48',1,'Admin',1672319399,'192.168.64.1',2,15,42623,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xq4xiy7cn4xdez',1,'Admin',1672319399,'192.168.64.1',2,15,42624,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700xr4xiyc6qov9r7',1,'Admin',1672319399,'192.168.64.1',2,15,42625,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700xs4xiyfnz7w2ak',1,'Admin',1672319399,'192.168.64.1',2,15,43890,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xt4xiy008lmzzr',1,'Admin',1672319399,'192.168.64.1',2,15,42626,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700xu4xiyrrovaxy0',1,'Admin',1672319399,'192.168.64.1',2,15,42627,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700xv4xiy3nwwtie8',1,'Admin',1672319399,'192.168.64.1',2,15,42629,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xw4xiycwg8cens',1,'Admin',1672319399,'192.168.64.1',2,15,42628,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700xx4xiyk0bxitax',1,'Admin',1672319399,'192.168.64.1',2,15,42630,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700xy4xiyt8c32m4q',1,'Admin',1672319399,'192.168.64.1',2,15,30142,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700xz4xiyjxc9m0ze',1,'Admin',1672319399,'192.168.64.1',2,15,35103,NULL,'HAProxy: Get nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700y04xiy86ezjnbv',1,'Admin',1672319399,'192.168.64.1',2,15,30191,NULL,'HAProxy: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz700y14xiyjiz81vdv',1,'Admin',1672319399,'192.168.64.1',2,15,30192,NULL,'HAProxy: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz700y24xiyi4jfl4ob',1,'Admin',1672319399,'192.168.64.1',2,15,30187,NULL,'HAProxy: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700y34xiy9u7m35t8',1,'Admin',1672319399,'192.168.64.1',2,15,30188,NULL,'HAProxy: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz700y44xiyfhiudpyn',1,'Admin',1672319399,'192.168.64.1',2,15,30190,NULL,'HAProxy: Get stats page','clc93sisl00004xiyevwovlv0',''),('clc93siz700y54xiyj1kd5d8v',1,'Admin',1672319399,'192.168.64.1',2,15,30189,NULL,'HAProxy: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93siz700y64xiysjgay4je',1,'Admin',1672319399,'192.168.64.1',2,15,30230,NULL,'HAProxy: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93siz700y74xiysjn419wc',1,'Admin',1672319399,'192.168.64.1',2,15,35128,NULL,'HAProxy: Get nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700y84xiyq4w4bti8',1,'Admin',1672319399,'192.168.64.1',2,15,30231,NULL,'HAProxy: Get stats page','clc93sisl00004xiyevwovlv0',''),('clc93siz700y94xiyht4tobm6',1,'Admin',1672319399,'192.168.64.1',2,15,30234,NULL,'HAProxy: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz700ya4xiys0bnbjdd',1,'Admin',1672319399,'192.168.64.1',2,15,30235,NULL,'HAProxy: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz700yb4xiy0if8p6h1',1,'Admin',1672319399,'192.168.64.1',2,15,30789,NULL,'HAProxy: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700yc4xiydf7zkg5b',1,'Admin',1672319399,'192.168.64.1',2,15,30790,NULL,'HAProxy: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz700yd4xiyx6qcywvv',1,'Admin',1672319399,'192.168.64.1',2,15,30532,NULL,'Docker: Architecture','clc93sisl00004xiyevwovlv0',''),('clc93siz700ye4xiynyaz4p6y',1,'Admin',1672319399,'192.168.64.1',2,15,30569,NULL,'Docker: Cgroup driver','clc93sisl00004xiyevwovlv0',''),('clc93siz700yf4xiyjo5dywxo',1,'Admin',1672319399,'192.168.64.1',2,15,30528,NULL,'Docker: Get containers','clc93sisl00004xiyevwovlv0',''),('clc93siz700yg4xiyhg6r4jts',1,'Admin',1672319399,'192.168.64.1',2,15,30554,NULL,'Docker: Containers paused','clc93sisl00004xiyevwovlv0',''),('clc93siz700yh4xiyxbziotdv',1,'Admin',1672319399,'192.168.64.1',2,15,30555,NULL,'Docker: Containers running','clc93sisl00004xiyevwovlv0',''),('clc93siz700yi4xiybxvtr3r6',1,'Admin',1672319399,'192.168.64.1',2,15,30556,NULL,'Docker: Containers stopped','clc93sisl00004xiyevwovlv0',''),('clc93siz700yj4xiyxkzz3ncu',1,'Admin',1672319399,'192.168.64.1',2,15,30557,NULL,'Docker: Containers total','clc93sisl00004xiyevwovlv0',''),('clc93siz700yk4xiyqlh4uhi4',1,'Admin',1672319399,'192.168.64.1',2,15,30553,NULL,'Docker: Containers size','clc93sisl00004xiyevwovlv0',''),('clc93siz700yl4xiyf31a8hey',1,'Admin',1672319399,'192.168.64.1',2,15,30558,NULL,'Docker: CPU CFS Period enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700ym4xiyi3p5aa3i',1,'Admin',1672319399,'192.168.64.1',2,15,30559,NULL,'Docker: CPU CFS Quota enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700yn4xiyyk7q9qk6',1,'Admin',1672319399,'192.168.64.1',2,15,30552,NULL,'Docker: CPU Set enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700yo4xiy8brdyjyb',1,'Admin',1672319399,'192.168.64.1',2,15,30560,NULL,'Docker: CPU Shares enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700yp4xiyz25ptfo9',1,'Admin',1672319399,'192.168.64.1',2,15,30527,NULL,'Docker: Get data_usage','clc93sisl00004xiyevwovlv0',''),('clc93siz700yq4xiygybcbxzc',1,'Admin',1672319399,'192.168.64.1',2,15,30562,NULL,'Docker: Debug enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700yr4xiy8yt5yhb2',1,'Admin',1672319399,'192.168.64.1',2,15,30563,NULL,'Docker: Default runtime','clc93sisl00004xiyevwovlv0',''),('clc93siz700ys4xiy6gwr1cmn',1,'Admin',1672319399,'192.168.64.1',2,15,30564,NULL,'Docker: Storage driver','clc93sisl00004xiyevwovlv0',''),('clc93siz700yt4xiy4kepv3gf',1,'Admin',1672319399,'192.168.64.1',2,15,30565,NULL,'Docker: Goroutines','clc93sisl00004xiyevwovlv0',''),('clc93siz700yu4xiy78ac2n1v',1,'Admin',1672319399,'192.168.64.1',2,15,30531,NULL,'Docker: Get images','clc93sisl00004xiyevwovlv0',''),('clc93siz700yv4xiyp7pvrguh',1,'Admin',1672319399,'192.168.64.1',2,15,30567,NULL,'Docker: Images available','clc93sisl00004xiyevwovlv0',''),('clc93siz700yw4xiybv5ipsa2',1,'Admin',1672319399,'192.168.64.1',2,15,30568,NULL,'Docker: Images total','clc93sisl00004xiyevwovlv0',''),('clc93siz700yx4xiyjalm60x3',1,'Admin',1672319399,'192.168.64.1',2,15,30566,NULL,'Docker: Images size','clc93sisl00004xiyevwovlv0',''),('clc93siz700yy4xiyv1fo34w1',1,'Admin',1672319399,'192.168.64.1',2,15,30529,NULL,'Docker: Get info','clc93sisl00004xiyevwovlv0',''),('clc93siz700yz4xiy9oskz2g9',1,'Admin',1672319399,'192.168.64.1',2,15,30550,NULL,'Docker: IPv4 Forwarding enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z04xiy8thm1fzm',1,'Admin',1672319399,'192.168.64.1',2,15,30551,NULL,'Docker: Kernel memory enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z14xiynnkl60il',1,'Admin',1672319399,'192.168.64.1',2,15,30561,NULL,'Docker: Kernel memory TCP enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z24xiyvpvk5we6',1,'Admin',1672319399,'192.168.64.1',2,15,30541,NULL,'Docker: Kernel version','clc93sisl00004xiyevwovlv0',''),('clc93siz700z34xiyjr9o5io6',1,'Admin',1672319399,'192.168.64.1',2,15,30549,NULL,'Docker: Layers size','clc93sisl00004xiyevwovlv0',''),('clc93siz700z44xiyvxbgqzhe',1,'Admin',1672319399,'192.168.64.1',2,15,30533,NULL,'Docker: Live restore enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z54xiy77doprud',1,'Admin',1672319399,'192.168.64.1',2,15,30534,NULL,'Docker: Logging driver','clc93sisl00004xiyevwovlv0',''),('clc93siz700z64xiypxel27gl',1,'Admin',1672319399,'192.168.64.1',2,15,30536,NULL,'Docker: Memory total','clc93sisl00004xiyevwovlv0',''),('clc93siz700z74xiyja6f6lm5',1,'Admin',1672319399,'192.168.64.1',2,15,30535,NULL,'Docker: Memory limit enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z84xiyb7gy9jw2',1,'Admin',1672319399,'192.168.64.1',2,15,30537,NULL,'Docker: Name','clc93sisl00004xiyevwovlv0',''),('clc93siz700z94xiyq15gce11',1,'Admin',1672319399,'192.168.64.1',2,15,30538,NULL,'Docker: NCPU','clc93sisl00004xiyevwovlv0',''),('clc93siz700za4xiycunifzdv',1,'Admin',1672319399,'192.168.64.1',2,15,30540,NULL,'Docker: NEvents listener','clc93sisl00004xiyevwovlv0',''),('clc93siz700zb4xiyr3f5suoz',1,'Admin',1672319399,'192.168.64.1',2,15,30539,NULL,'Docker: Nfd','clc93sisl00004xiyevwovlv0',''),('clc93siz700zc4xiyqzxhk421',1,'Admin',1672319399,'192.168.64.1',2,15,30542,NULL,'Docker: OomKill disabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700zd4xiywyih8ioo',1,'Admin',1672319399,'192.168.64.1',2,15,30543,NULL,'Docker: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700ze4xiyfiydjgp5',1,'Admin',1672319399,'192.168.64.1',2,15,30544,NULL,'Docker: OS type','clc93sisl00004xiyevwovlv0',''),('clc93siz700zf4xiyync6hzda',1,'Admin',1672319399,'192.168.64.1',2,15,30545,NULL,'Docker: Pids limit enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700zg4xiycgnnkbrh',1,'Admin',1672319399,'192.168.64.1',2,15,30530,NULL,'Docker: Ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700zh4xiyqnyvacph',1,'Admin',1672319399,'192.168.64.1',2,15,30546,NULL,'Docker: Docker root dir','clc93sisl00004xiyevwovlv0',''),('clc93siz700zi4xiyml4ht6q6',1,'Admin',1672319399,'192.168.64.1',2,15,30547,NULL,'Docker: Server version','clc93sisl00004xiyevwovlv0',''),('clc93siz700zj4xiyp4c1m0kz',1,'Admin',1672319399,'192.168.64.1',2,15,30548,NULL,'Docker: Swap limit enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700zk4xiy9qu42im7',1,'Admin',1672319399,'192.168.64.1',2,15,30570,NULL,'Docker: Volumes size','clc93sisl00004xiyevwovlv0',''),('clc93siz700zl4xiy01agek8e',1,'Admin',1672319399,'192.168.64.1',2,15,30702,NULL,'ES: Delayed unassigned shards','clc93sisl00004xiyevwovlv0',''),('clc93siz700zm4xiyni03l6ul',1,'Admin',1672319399,'192.168.64.1',2,15,30694,NULL,'ES: Get cluster health','clc93sisl00004xiyevwovlv0',''),('clc93siz700zn4xiyppola50z',1,'Admin',1672319399,'192.168.64.1',2,15,30691,NULL,'ES: Get cluster stats','clc93sisl00004xiyevwovlv0',''),('clc93siz700zo4xiyt498fp3j',1,'Admin',1672319399,'192.168.64.1',2,15,30711,NULL,'ES: Inactive shards percentage','clc93sisl00004xiyevwovlv0',''),('clc93siz700zp4xiy52wkfixt',1,'Admin',1672319399,'192.168.64.1',2,15,30710,NULL,'ES: Number of initializing shards','clc93sisl00004xiyevwovlv0',''),('clc93siz700zq4xiykxfvdx8r',1,'Admin',1672319399,'192.168.64.1',2,15,30709,NULL,'ES: Number of data nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700zr4xiy9xq9rc00',1,'Admin',1672319399,'192.168.64.1',2,15,30708,NULL,'ES: Number of nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700zs4xiypcqfgq05',1,'Admin',1672319399,'192.168.64.1',2,15,30707,NULL,'ES: Number of pending tasks','clc93sisl00004xiyevwovlv0',''),('clc93siz700zt4xiyf3wb6jtg',1,'Admin',1672319399,'192.168.64.1',2,15,30706,NULL,'ES: Number of relocating shards','clc93sisl00004xiyevwovlv0',''),('clc93siz700zu4xiyrxqi2vem',1,'Admin',1672319399,'192.168.64.1',2,15,30705,NULL,'ES: Cluster health status','clc93sisl00004xiyevwovlv0',''),('clc93siz700zv4xiy9q81ijka',1,'Admin',1672319399,'192.168.64.1',2,15,30704,NULL,'ES: Task max waiting in queue','clc93sisl00004xiyevwovlv0',''),('clc93siz700zw4xiylgdq9gpr',1,'Admin',1672319399,'192.168.64.1',2,15,30712,NULL,'ES: Number of unassigned shards','clc93sisl00004xiyevwovlv0',''),('clc93siz700zx4xiyc2kl598s',1,'Admin',1672319399,'192.168.64.1',2,15,30703,NULL,'ES: Indices with shards assigned to nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700zy4xiyu8w3vktl',1,'Admin',1672319399,'192.168.64.1',2,15,30695,NULL,'ES: Number of non-deleted documents','clc93sisl00004xiyevwovlv0',''),('clc93siz700zz4xiyr09dqemp',1,'Admin',1672319399,'192.168.64.1',2,15,30701,NULL,'ES: Nodes with the data role','clc93sisl00004xiyevwovlv0',''),('clc93siz701004xiy8v5xdsd9',1,'Admin',1672319399,'192.168.64.1',2,15,30700,NULL,'ES: Nodes with the ingest role','clc93sisl00004xiyevwovlv0',''),('clc93siz701014xiyh47t18g5',1,'Admin',1672319399,'192.168.64.1',2,15,30699,NULL,'ES: Nodes with the master role','clc93sisl00004xiyevwovlv0',''),('clc93siz701024xiy58pa1qoc',1,'Admin',1672319399,'192.168.64.1',2,15,30698,NULL,'ES: Total available size to JVM in all file stores','clc93sisl00004xiyevwovlv0',''),('clc93siz701034xiyifsfqeub',1,'Admin',1672319399,'192.168.64.1',2,15,30697,NULL,'ES: Total size of all file stores','clc93sisl00004xiyevwovlv0',''),('clc93siz701044xiyacw8gjht',1,'Admin',1672319399,'192.168.64.1',2,15,30693,NULL,'ES: Get nodes stats','clc93sisl00004xiyevwovlv0',''),('clc93siz701054xiy8mldduz1',1,'Admin',1672319399,'192.168.64.1',2,15,30696,NULL,'ES: Cluster uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz701064xiyl0l2r1on',1,'Admin',1672319399,'192.168.64.1',2,15,30692,NULL,'ES: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz701074xiyevs2oxuv',1,'Admin',1672319399,'192.168.64.1',2,15,30690,NULL,'ES: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz701084xiy16wmk3nq',1,'Admin',1672319399,'192.168.64.1',2,15,30848,NULL,'ClickHouse: Current distribute connections','clc93sisl00004xiyevwovlv0',''),('clc93siz701094xiy59k0zy6z',1,'Admin',1672319399,'192.168.64.1',2,15,30849,NULL,'ClickHouse: Current HTTP connections','clc93sisl00004xiyevwovlv0',''),('clc93siz7010a4xiyysf9tsq8',1,'Admin',1672319399,'192.168.64.1',2,15,30851,NULL,'ClickHouse: Current Interserver connections','clc93sisl00004xiyevwovlv0',''),('clc93siz7010b4xiykb6alby5',1,'Admin',1672319399,'192.168.64.1',2,15,30852,NULL,'ClickHouse: Current MySQL connections','clc93sisl00004xiyevwovlv0',''),('clc93siz8010c4xiy3blqwg1s',1,'Admin',1672319399,'192.168.64.1',2,15,30853,NULL,'ClickHouse: Current TCP connections','clc93sisl00004xiyevwovlv0',''),('clc93siz8010d4xiyk1lm8bgo',1,'Admin',1672319399,'192.168.64.1',2,15,30830,NULL,'ClickHouse: Get dictionaries info','clc93sisl00004xiyevwovlv0',''),('clc93siz8010e4xiye2f1ua2l',1,'Admin',1672319399,'192.168.64.1',2,15,30854,NULL,'ClickHouse: Current distributed files to insert','clc93sisl00004xiyevwovlv0',''),('clc93siz8010f4xiynfof3j5e',1,'Admin',1672319399,'192.168.64.1',2,15,30855,NULL,'ClickHouse: Distributed connection fail with retry per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010g4xiy6vvbpisl',1,'Admin',1672319399,'192.168.64.1',2,15,30856,NULL,'ClickHouse: Distributed connection fail with retry per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010h4xiyx1sg4twh',1,'Admin',1672319399,'192.168.64.1',2,15,30858,NULL,'ClickHouse: Delayed insert queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8010i4xiybgtam2dj',1,'Admin',1672319399,'192.168.64.1',2,15,30857,NULL,'ClickHouse: New INSERT queries per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010j4xiy3fd2ugp4',1,'Admin',1672319399,'192.168.64.1',2,15,30859,NULL,'ClickHouse: Inserted bytes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010k4xiyvjhu4wvc',1,'Admin',1672319399,'192.168.64.1',2,15,30860,NULL,'ClickHouse: Inserted rows per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010l4xiy2u0yx053',1,'Admin',1672319399,'192.168.64.1',2,15,30850,NULL,'ClickHouse: Allocated bytes','clc93sisl00004xiyevwovlv0',''),('clc93siz8010m4xiy5ianv72n',1,'Admin',1672319399,'192.168.64.1',2,15,30861,NULL,'ClickHouse: Mapped memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8010n4xiycc91qezj',1,'Admin',1672319399,'192.168.64.1',2,15,30863,NULL,'ClickHouse: Resident memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8010o4xiyyzwrj9jm',1,'Admin',1672319399,'192.168.64.1',2,15,30864,NULL,'ClickHouse: Max count of parts per partition across all tables','clc93sisl00004xiyevwovlv0',''),('clc93siz8010p4xiynkn40fp9',1,'Admin',1672319399,'192.168.64.1',2,15,30865,NULL,'ClickHouse: Memory used for queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8010q4xiyjdi6cnwz',1,'Admin',1672319399,'192.168.64.1',2,15,30866,NULL,'ClickHouse: Memory used for background merges','clc93sisl00004xiyevwovlv0',''),('clc93siz8010r4xiygqpf7m46',1,'Admin',1672319399,'192.168.64.1',2,15,30867,NULL,'ClickHouse: Memory used for background moves','clc93sisl00004xiyevwovlv0',''),('clc93siz8010s4xiyojhtp59j',1,'Admin',1672319399,'192.168.64.1',2,15,30868,NULL,'ClickHouse: Memory used for merges','clc93sisl00004xiyevwovlv0',''),('clc93siz8010t4xiyrsw7bj7j',1,'Admin',1672319399,'192.168.64.1',2,15,30869,NULL,'ClickHouse: Memory used for background schedule pool','clc93sisl00004xiyevwovlv0',''),('clc93siz8010u4xiyoepxdf4u',1,'Admin',1672319399,'192.168.64.1',2,15,30872,NULL,'ClickHouse: Current running merges','clc93sisl00004xiyevwovlv0',''),('clc93siz8010v4xiythgmobiw',1,'Admin',1672319399,'192.168.64.1',2,15,30870,NULL,'ClickHouse: Uncompressed bytes merged per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010w4xiyw46hz1oc',1,'Admin',1672319399,'192.168.64.1',2,15,30871,NULL,'ClickHouse: Merged rows per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010x4xiy7qok1a8i',1,'Admin',1672319399,'192.168.64.1',2,15,30862,NULL,'ClickHouse: Network errors per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010y4xiy7lxyd1v5',1,'Admin',1672319399,'192.168.64.1',2,15,30821,NULL,'ClickHouse: Ping','clc93sisl00004xiyevwovlv0',''),('clc93siz8010z4xiykcg0lav0',1,'Admin',1672319399,'192.168.64.1',2,15,30827,NULL,'ClickHouse: Longest currently running query time','clc93sisl00004xiyevwovlv0',''),('clc93siz801104xiymlg0j1jg',1,'Admin',1672319399,'192.168.64.1',2,15,30847,NULL,'ClickHouse: Current running queries','clc93sisl00004xiyevwovlv0',''),('clc93siz801114xiymesnse6p',1,'Admin',1672319399,'192.168.64.1',2,15,30833,NULL,'ClickHouse: New queries per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801124xiyxsickw9g',1,'Admin',1672319399,'192.168.64.1',2,15,30834,NULL,'ClickHouse: Read syscalls in fly','clc93sisl00004xiyevwovlv0',''),('clc93siz801134xiy5jo1rgmj',1,'Admin',1672319399,'192.168.64.1',2,15,30835,NULL,'ClickHouse: Read bytes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801144xiyzi42gkjm',1,'Admin',1672319399,'192.168.64.1',2,15,30823,NULL,'ClickHouse: Get replicas info','clc93sisl00004xiyevwovlv0',''),('clc93siz801154xiy0n9o4og2',1,'Admin',1672319399,'192.168.64.1',2,15,30837,NULL,'ClickHouse: Replication lag across all tables','clc93sisl00004xiyevwovlv0',''),('clc93siz801164xiytdco05bc',1,'Admin',1672319399,'192.168.64.1',2,15,30838,NULL,'ClickHouse: Total number read-only Replicas','clc93sisl00004xiyevwovlv0',''),('clc93siz801174xiyrd4o72u4',1,'Admin',1672319399,'192.168.64.1',2,15,30832,NULL,'ClickHouse: Total replication tasks in queue','clc93sisl00004xiyevwovlv0',''),('clc93siz801184xiycjnr80lw',1,'Admin',1672319399,'192.168.64.1',2,15,30839,NULL,'ClickHouse: Revision','clc93sisl00004xiyevwovlv0',''),('clc93siz801194xiyi6ish0ec',1,'Admin',1672319399,'192.168.64.1',2,15,30841,NULL,'ClickHouse: New SELECT queries per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011a4xiyzv0x729g',1,'Admin',1672319399,'192.168.64.1',2,15,30824,NULL,'ClickHouse: Get system.asynchronous_metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz8011b4xiy74utrfg3',1,'Admin',1672319399,'192.168.64.1',2,15,30825,NULL,'ClickHouse: Get system.events','clc93sisl00004xiyevwovlv0',''),('clc93siz8011c4xiykcz1hrbq',1,'Admin',1672319399,'192.168.64.1',2,15,30826,NULL,'ClickHouse: Get system.metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz8011d4xiyupp0tmfv',1,'Admin',1672319399,'192.168.64.1',2,15,30829,NULL,'ClickHouse: Get system.settings','clc93sisl00004xiyevwovlv0',''),('clc93siz8011e4xiyudmknnvi',1,'Admin',1672319399,'192.168.64.1',2,15,30828,NULL,'ClickHouse: Get tables info','clc93sisl00004xiyevwovlv0',''),('clc93siz8011f4xiye1ahfsn5',1,'Admin',1672319399,'192.168.64.1',2,15,30846,NULL,'ClickHouse: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8011g4xiy9y233uo9',1,'Admin',1672319399,'192.168.64.1',2,15,30822,NULL,'ClickHouse: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz8011h4xiys7dgtulj',1,'Admin',1672319399,'192.168.64.1',2,15,30831,NULL,'ClickHouse: Write syscalls in fly','clc93sisl00004xiyevwovlv0',''),('clc93siz8011i4xiynaskfmlc',1,'Admin',1672319399,'192.168.64.1',2,15,34320,NULL,'ClickHouse: ZooKeeper exceptions per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011j4xiyf59o4dt7',1,'Admin',1672319399,'192.168.64.1',2,15,30845,NULL,'ClickHouse: ZooKeeper hardware exceptions per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011k4xiy1w7ebtbb',1,'Admin',1672319399,'192.168.64.1',2,15,30844,NULL,'ClickHouse: ZooKeeper requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8011l4xiyipltg2vi',1,'Admin',1672319399,'192.168.64.1',2,15,30843,NULL,'ClickHouse: ZooKeeper sessions','clc93sisl00004xiyevwovlv0',''),('clc93siz8011m4xiyhnum1bcy',1,'Admin',1672319399,'192.168.64.1',2,15,30842,NULL,'ClickHouse: ZooKeeper user exceptions per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011n4xiyrem3j41v',1,'Admin',1672319399,'192.168.64.1',2,15,30836,NULL,'ClickHouse: ZooKeeper wait time','clc93sisl00004xiyevwovlv0',''),('clc93siz8011o4xiyuk0q94mp',1,'Admin',1672319399,'192.168.64.1',2,15,30873,NULL,'ClickHouse: ZooKeeper watches','clc93sisl00004xiyevwovlv0',''),('clc93siz8011p4xiy0t00awkn',1,'Admin',1672319399,'192.168.64.1',2,15,31054,NULL,'ClickHouse: Check port availability','clc93sisl00004xiyevwovlv0',''),('clc93siz8011q4xiyr9p8qk4q',1,'Admin',1672319399,'192.168.64.1',2,15,30943,NULL,'Etcd: Cluster version','clc93sisl00004xiyevwovlv0',''),('clc93siz8011r4xiysk74h829',1,'Admin',1672319399,'192.168.64.1',2,15,30953,NULL,'Etcd: CPU','clc93sisl00004xiyevwovlv0',''),('clc93siz8011s4xiylsaj10ie',1,'Admin',1672319399,'192.168.64.1',2,15,30946,NULL,'Etcd: DB size','clc93sisl00004xiyevwovlv0',''),('clc93siz8011t4xiyev70stn7',1,'Admin',1672319399,'192.168.64.1',2,15,30947,NULL,'Etcd: Deletes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011u4xiynguy4mvi',1,'Admin',1672319399,'192.168.64.1',2,15,30948,NULL,'Etcd: Pending events','clc93sisl00004xiyevwovlv0',''),('clc93siz8011v4xiynoalbzjw',1,'Admin',1672319399,'192.168.64.1',2,15,30925,NULL,'Etcd: Get node metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz8011w4xiye20y69sf',1,'Admin',1672319399,'192.168.64.1',2,15,30926,NULL,'Etcd: Get version','clc93sisl00004xiyevwovlv0',''),('clc93siz8011x4xiy86jxudk0',1,'Admin',1672319399,'192.168.64.1',2,15,30949,NULL,'Etcd: RPCs received per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011y4xiycngs1ue7',1,'Admin',1672319399,'192.168.64.1',2,15,30950,NULL,'Etcd: RPCs sent per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011z4xiyfha1ht6a',1,'Admin',1672319399,'192.168.64.1',2,15,30951,NULL,'Etcd: RPCs started per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801204xiyx08rnrxt',1,'Admin',1672319399,'192.168.64.1',2,15,30945,NULL,'Etcd: Server has a leader','clc93sisl00004xiyevwovlv0',''),('clc93siz801214xiyba308kvq',1,'Admin',1672319399,'192.168.64.1',2,15,30924,NULL,'Etcd: Node health','clc93sisl00004xiyevwovlv0',''),('clc93siz801224xiyhgc2gc3u',1,'Admin',1672319399,'192.168.64.1',2,15,30952,NULL,'Etcd: HTTP 4XX','clc93sisl00004xiyevwovlv0',''),('clc93siz801234xiyepalc0fl',1,'Admin',1672319399,'192.168.64.1',2,15,30954,NULL,'Etcd: HTTP 5XX','clc93sisl00004xiyevwovlv0',''),('clc93siz801244xiy36lf1ced',1,'Admin',1672319399,'192.168.64.1',2,15,30955,NULL,'Etcd: HTTP requests received','clc93sisl00004xiyevwovlv0',''),('clc93siz801254xiys42pqxy5',1,'Admin',1672319399,'192.168.64.1',2,15,30956,NULL,'Etcd: Server is a leader','clc93sisl00004xiyevwovlv0',''),('clc93siz801264xiywob5dx2y',1,'Admin',1672319399,'192.168.64.1',2,15,30957,NULL,'Etcd: Keys compacted per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801274xiyr5zkzq2r',1,'Admin',1672319399,'192.168.64.1',2,15,30958,NULL,'Etcd: Keys expired per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801284xiy96v97rm9',1,'Admin',1672319399,'192.168.64.1',2,15,30959,NULL,'Etcd: Keys total','clc93sisl00004xiyevwovlv0',''),('clc93siz801294xiywkppgts2',1,'Admin',1672319399,'192.168.64.1',2,15,30960,NULL,'Etcd: Leader changes','clc93sisl00004xiyevwovlv0',''),('clc93siz8012a4xiy63q1d5ad',1,'Admin',1672319399,'192.168.64.1',2,15,30944,NULL,'Etcd: Maximum open file descriptors','clc93sisl00004xiyevwovlv0',''),('clc93siz8012b4xiycgub9uh6',1,'Admin',1672319399,'192.168.64.1',2,15,30935,NULL,'Etcd: Client gRPC received bytes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012c4xiynhvpr7n7',1,'Admin',1672319399,'192.168.64.1',2,15,30942,NULL,'Etcd: Client gRPC sent bytes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012d4xiy0bql8qai',1,'Admin',1672319399,'192.168.64.1',2,15,30927,NULL,'Etcd: Open file descriptors','clc93sisl00004xiyevwovlv0',''),('clc93siz8012e4xiyive4ttli',1,'Admin',1672319399,'192.168.64.1',2,15,30928,NULL,'Etcd: Proposals applied per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012f4xiynl0wxew9',1,'Admin',1672319399,'192.168.64.1',2,15,30929,NULL,'Etcd: Proposals committed per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012g4xiywyfppqyl',1,'Admin',1672319399,'192.168.64.1',2,15,30930,NULL,'Etcd: Proposals failed per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012h4xiyrhi4penq',1,'Admin',1672319399,'192.168.64.1',2,15,30931,NULL,'Etcd: Proposals pending','clc93sisl00004xiyevwovlv0',''),('clc93siz8012i4xiyo4gwv2n5',1,'Admin',1672319399,'192.168.64.1',2,15,30932,NULL,'Etcd: PUT per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012j4xiy6nvh8awt',1,'Admin',1672319399,'192.168.64.1',2,15,30933,NULL,'Etcd: Range per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012k4xiypfphdtom',1,'Admin',1672319399,'192.168.64.1',2,15,30934,NULL,'Etcd: Reads per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012l4xiyl4ns6iky',1,'Admin',1672319399,'192.168.64.1',2,15,30936,NULL,'Etcd: Resident memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8012m4xiyw3z2bf0q',1,'Admin',1672319399,'192.168.64.1',2,15,30937,NULL,'Etcd: Server version','clc93sisl00004xiyevwovlv0',''),('clc93siz8012n4xiyb8zd6tk1',1,'Admin',1672319399,'192.168.64.1',2,15,30938,NULL,'Etcd: Transaction per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012o4xiy60weahrq',1,'Admin',1672319399,'192.168.64.1',2,15,30939,NULL,'Etcd: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8012p4xiy4cxl7kz1',1,'Admin',1672319399,'192.168.64.1',2,15,30940,NULL,'Etcd: Virtual memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8012q4xiyo571papy',1,'Admin',1672319399,'192.168.64.1',2,15,30941,NULL,'Etcd: Writes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012r4xiysx078ual',1,'Admin',1672319399,'192.168.64.1',2,15,30923,NULL,'Etcd: Service\'s TCP port state','clc93sisl00004xiyevwovlv0',''),('clc93siz8012s4xiytrxxhkbu',1,'Admin',1672319399,'192.168.64.1',2,15,32598,NULL,'GitLab: Cache: Misses rate, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8012t4xiyunlne40y',1,'Admin',1672319399,'192.168.64.1',2,15,32609,NULL,'GitLab: Cache: Operations rate, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8012u4xiyzo2oxooh',1,'Admin',1672319399,'192.168.64.1',2,15,32601,NULL,'GitLab: Database: Connection pool, busy','clc93sisl00004xiyevwovlv0',''),('clc93siz8012v4xiyp9xkbkth',1,'Admin',1672319399,'192.168.64.1',2,15,32602,NULL,'GitLab: Database: Connection pool, current','clc93sisl00004xiyevwovlv0',''),('clc93siz8012w4xiycpq58mij',1,'Admin',1672319399,'192.168.64.1',2,15,32603,NULL,'GitLab: Database: Connection pool, dead','clc93sisl00004xiyevwovlv0',''),('clc93siz8012x4xiycg0xkn01',1,'Admin',1672319399,'192.168.64.1',2,15,32604,NULL,'GitLab: Database: Connection pool, idle','clc93sisl00004xiyevwovlv0',''),('clc93siz8012y4xiy1ot3rw6b',1,'Admin',1672319399,'192.168.64.1',2,15,32605,NULL,'GitLab: Database: Connection pool, size','clc93sisl00004xiyevwovlv0',''),('clc93siz8012z4xiyuvsism25',1,'Admin',1672319399,'192.168.64.1',2,15,32606,NULL,'GitLab: Database: Connection pool, waiting','clc93sisl00004xiyevwovlv0',''),('clc93siz801304xiyz8tnkinb',1,'Admin',1672319399,'192.168.64.1',2,15,32607,NULL,'GitLab: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz801314xiyck9lrucq',1,'Admin',1672319399,'192.168.64.1',2,15,32600,NULL,'GitLab: User CAPTCHA logins failed, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801324xiy6ccerv3z',1,'Admin',1672319399,'192.168.64.1',2,15,32578,NULL,'GitLab: Get instance metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz801334xiy8d4scv4t',1,'Admin',1672319399,'192.168.64.1',2,15,32608,NULL,'GitLab: HTTP requests rate, 4xx','clc93sisl00004xiyevwovlv0',''),('clc93siz801344xiyfpq819so',1,'Admin',1672319399,'192.168.64.1',2,15,32610,NULL,'GitLab: HTTP requests rate, 5xx','clc93sisl00004xiyevwovlv0',''),('clc93siz801354xiyh0c6r696',1,'Admin',1672319399,'192.168.64.1',2,15,32611,NULL,'GitLab: HTTP requests rate, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801364xiypbuve0v6',1,'Admin',1672319399,'192.168.64.1',2,15,32576,NULL,'GitLab: Application server status','clc93sisl00004xiyevwovlv0',''),('clc93siz801374xiyw3vwqm1j',1,'Admin',1672319399,'192.168.64.1',2,15,32612,NULL,'GitLab: Pipelines: Auto DevOps pipelines, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801384xiywkhvumln',1,'Admin',1672319399,'192.168.64.1',2,15,32613,NULL,'GitLab: Pipelines: Auto DevOps pipelines, failed','clc93sisl00004xiyevwovlv0',''),('clc93siz801394xiyuatvnrkb',1,'Admin',1672319399,'192.168.64.1',2,15,32614,NULL,'GitLab: Pipelines: Created, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8013a4xiy0pmzhqtc',1,'Admin',1672319399,'192.168.64.1',2,15,32615,NULL,'GitLab: Pipelines: CI/CD creation duration','clc93sisl00004xiyevwovlv0',''),('clc93siz8013b4xiyw085dgiw',1,'Admin',1672319399,'192.168.64.1',2,15,32616,NULL,'GitLab: Pipelines: Pipelines: CI/CD creation count','clc93sisl00004xiyevwovlv0',''),('clc93siz8013c4xiy34fflszw',1,'Admin',1672319399,'192.168.64.1',2,15,32617,NULL,'GitLab: Pipelines: Processing events, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8013d4xiy5rvbrqm0',1,'Admin',1672319399,'192.168.64.1',2,15,32577,NULL,'GitLab: Instance readiness check','clc93sisl00004xiyevwovlv0',''),('clc93siz8013e4xiyg1pkhx1t',1,'Admin',1672319399,'192.168.64.1',2,15,32599,NULL,'GitLab: Redis: Client exceptions rate, cache','clc93sisl00004xiyevwovlv0',''),('clc93siz8013f4xiyvvlifksy',1,'Admin',1672319399,'192.168.64.1',2,15,32588,NULL,'GitLab: Redis: Client exceptions rate, queues','clc93sisl00004xiyevwovlv0',''),('clc93siz8013g4xiy7qkvvrd1',1,'Admin',1672319399,'192.168.64.1',2,15,32597,NULL,'GitLab: Redis: client exceptions rate, shared_state','clc93sisl00004xiyevwovlv0',''),('clc93siz8013h4xiyb16jc53h',1,'Admin',1672319399,'192.168.64.1',2,15,32580,NULL,'GitLab: Redis: Client requests rate, cache','clc93sisl00004xiyevwovlv0',''),('clc93siz8013i4xiy7h6ngxtx',1,'Admin',1672319399,'192.168.64.1',2,15,32581,NULL,'GitLab: Redis: Client requests rate, queues','clc93sisl00004xiyevwovlv0',''),('clc93siz8013j4xiy8t70d256',1,'Admin',1672319399,'192.168.64.1',2,15,32582,NULL,'GitLab: Redis: Client requests rate, shared_state','clc93sisl00004xiyevwovlv0',''),('clc93siz8013k4xiyfp28qxs4',1,'Admin',1672319399,'192.168.64.1',2,15,32583,NULL,'GitLab: Ruby: File descriptors opened, avg','clc93sisl00004xiyevwovlv0',''),('clc93siz8013l4xiy0e4256jx',1,'Admin',1672319399,'192.168.64.1',2,15,32584,NULL,'GitLab: Ruby: File descriptors opened, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8013m4xiyi30ohrwd',1,'Admin',1672319399,'192.168.64.1',2,15,32585,NULL,'GitLab: Ruby: File descriptors opened, min','clc93sisl00004xiyevwovlv0',''),('clc93siz8013n4xiy144fuiq6',1,'Admin',1672319399,'192.168.64.1',2,15,32586,NULL,'GitLab: Ruby: CPU usage per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8013o4xiy5i08g7k2',1,'Admin',1672319399,'192.168.64.1',2,15,32579,NULL,'GitLab: Ruby: File descriptors, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8013p4xiybzabb3mj',1,'Admin',1672319399,'192.168.64.1',2,15,32587,NULL,'GitLab: Ruby: RSS memory, avg','clc93sisl00004xiyevwovlv0',''),('clc93siz8013q4xiy1gx1tedf',1,'Admin',1672319399,'192.168.64.1',2,15,32589,NULL,'GitLab: Ruby: RSS memory, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8013r4xiyt2enyugf',1,'Admin',1672319399,'192.168.64.1',2,15,32590,NULL,'GitLab: Ruby: RSS memory, min','clc93sisl00004xiyevwovlv0',''),('clc93siz8013s4xiyikl9gsox',1,'Admin',1672319399,'192.168.64.1',2,15,32591,NULL,'GitLab: Ruby: First process start time','clc93sisl00004xiyevwovlv0',''),('clc93siz8013t4xiyhzb6tp16',1,'Admin',1672319399,'192.168.64.1',2,15,32592,NULL,'GitLab: Ruby: Last process start time','clc93sisl00004xiyevwovlv0',''),('clc93siz8013u4xiyrwgky8f5',1,'Admin',1672319399,'192.168.64.1',2,15,32593,NULL,'GitLab: Ruby: Running_threads','clc93sisl00004xiyevwovlv0',''),('clc93siz8013v4xiy0lkns5x3',1,'Admin',1672319399,'192.168.64.1',2,15,32594,NULL,'GitLab: User CAPTCHA logins, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8013w4xiymqd1gidr',1,'Admin',1672319399,'192.168.64.1',2,15,32595,NULL,'GitLab: Transactions per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8013x4xiyie9mw740',1,'Admin',1672319399,'192.168.64.1',2,15,32596,NULL,'GitLab: Upload file does not exist','clc93sisl00004xiyevwovlv0',''),('clc93siz8013y4xiyprrdwhx7',1,'Admin',1672319399,'192.168.64.1',2,15,32618,NULL,'GitLab: User logins, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8013z4xiyvqsxlzd5',1,'Admin',1672319399,'192.168.64.1',2,15,32634,NULL,'Get DataNodes states','clc93sisl00004xiyevwovlv0',''),('clc93siz801404xiy8vhk6yz9',1,'Admin',1672319399,'192.168.64.1',2,15,32644,NULL,'NameNode: Blocks allocable','clc93sisl00004xiyevwovlv0',''),('clc93siz801414xiyowaaq3si',1,'Admin',1672319399,'192.168.64.1',2,15,32658,NULL,'NameNode: Total blocks','clc93sisl00004xiyevwovlv0',''),('clc93siz801424xiyk8jv5iqq',1,'Admin',1672319399,'192.168.64.1',2,15,32645,NULL,'NameNode: Capacity remaining','clc93sisl00004xiyevwovlv0',''),('clc93siz801434xiykssi0zqv',1,'Admin',1672319399,'192.168.64.1',2,15,32646,NULL,'NameNode: Corrupt blocks','clc93sisl00004xiyevwovlv0',''),('clc93siz801444xiy0dchizxg',1,'Admin',1672319399,'192.168.64.1',2,15,32654,NULL,'NameNode: Total files','clc93sisl00004xiyevwovlv0',''),('clc93siz801454xiy175beik2',1,'Admin',1672319399,'192.168.64.1',2,15,32641,NULL,'Get NameNode stats','clc93sisl00004xiyevwovlv0',''),('clc93siz801464xiy1i590qqz',1,'Admin',1672319399,'192.168.64.1',2,15,32642,NULL,'NameNode: Missing blocks','clc93sisl00004xiyevwovlv0',''),('clc93siz801474xiy39z53jw6',1,'Admin',1672319399,'192.168.64.1',2,15,32656,NULL,'NameNode: Dead DataNodes','clc93sisl00004xiyevwovlv0',''),('clc93siz801484xiy2g9ar69d',1,'Admin',1672319399,'192.168.64.1',2,15,32666,NULL,'NameNode: Alive DataNodes','clc93sisl00004xiyevwovlv0',''),('clc93siz801494xiyedypon7v',1,'Admin',1672319399,'192.168.64.1',2,15,32665,NULL,'NameNode: Stale DataNodes','clc93sisl00004xiyevwovlv0',''),('clc93siz8014a4xiyriu2t0ua',1,'Admin',1672319399,'192.168.64.1',2,15,32664,NULL,'NameNode: Block Pool Renaming','clc93sisl00004xiyevwovlv0',''),('clc93siz8014b4xiyeb8xb59m',1,'Admin',1672319399,'192.168.64.1',2,15,32663,NULL,'NameNode: Percent capacity remaining','clc93sisl00004xiyevwovlv0',''),('clc93siz8014c4xiydymegcud',1,'Admin',1672319399,'192.168.64.1',2,15,32662,NULL,'NameNode: RPC queue & processing time','clc93sisl00004xiyevwovlv0',''),('clc93siz8014d4xiyz9ao4k12',1,'Admin',1672319399,'192.168.64.1',2,15,32661,NULL,'NameNode: Total load','clc93sisl00004xiyevwovlv0',''),('clc93siz8014e4xiytj6w585w',1,'Admin',1672319399,'192.168.64.1',2,15,32660,NULL,'NameNode: Transactions since last checkpoint','clc93sisl00004xiyevwovlv0',''),('clc93siz8014f4xiy6ebqbdlg',1,'Admin',1672319399,'192.168.64.1',2,15,32659,NULL,'NameNode: Under-replicated blocks','clc93sisl00004xiyevwovlv0',''),('clc93siz8014g4xiybcf6q67x',1,'Admin',1672319399,'192.168.64.1',2,15,32667,NULL,'NameNode: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8014h4xiyvry2rm61',1,'Admin',1672319399,'192.168.64.1',2,15,32657,NULL,'NameNode: Failed volumes','clc93sisl00004xiyevwovlv0',''),('clc93siz8014i4xiy0o2q1lto',1,'Admin',1672319399,'192.168.64.1',2,15,32635,NULL,'Get NodeManagers states','clc93sisl00004xiyevwovlv0',''),('clc93siz8014j4xiy7c19o90l',1,'Admin',1672319399,'192.168.64.1',2,15,32639,NULL,'Get ResourceManager stats','clc93sisl00004xiyevwovlv0',''),('clc93siz8014k4xiy3698px76',1,'Admin',1672319399,'192.168.64.1',2,15,32655,NULL,'ResourceManager: Active NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014l4xiy3y6aa874',1,'Admin',1672319399,'192.168.64.1',2,15,32643,NULL,'ResourceManager: Decommissioned NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014m4xiya1xlredi',1,'Admin',1672319399,'192.168.64.1',2,15,32653,NULL,'ResourceManager: Decommissioning NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014n4xiylcjzbaw4',1,'Admin',1672319399,'192.168.64.1',2,15,32652,NULL,'ResourceManager: Lost NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014o4xiyuadxsl8n',1,'Admin',1672319399,'192.168.64.1',2,15,32651,NULL,'ResourceManager: Rebooted NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014p4xiypkbxura0',1,'Admin',1672319399,'192.168.64.1',2,15,32650,NULL,'ResourceManager: Shutdown NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014q4xiymh90ixks',1,'Admin',1672319399,'192.168.64.1',2,15,32649,NULL,'ResourceManager: Unhealthy NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014r4xiyv24rhnmj',1,'Admin',1672319399,'192.168.64.1',2,15,32648,NULL,'ResourceManager: RPC queue & processing time','clc93sisl00004xiyevwovlv0',''),('clc93siz8014s4xiyu9arih2k',1,'Admin',1672319399,'192.168.64.1',2,15,32647,NULL,'ResourceManager: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8014t4xiyphnqgisq',1,'Admin',1672319399,'192.168.64.1',2,15,32638,NULL,'NameNode: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz8014u4xiygrqu4hlw',1,'Admin',1672319399,'192.168.64.1',2,15,32637,NULL,'ResourceManager: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz8014v4xiyopxh3q33',1,'Admin',1672319399,'192.168.64.1',2,15,32636,NULL,'NameNode: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz8014w4xiylfomw6qx',1,'Admin',1672319399,'192.168.64.1',2,15,32640,NULL,'ResourceManager: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz8014x4xiyklcl402b',1,'Admin',1672319399,'192.168.64.1',2,15,32803,NULL,'Vault: Check mountpoint discovery','clc93sisl00004xiyevwovlv0',''),('clc93siz8014y4xiyxcc7jx41',1,'Admin',1672319399,'192.168.64.1',2,15,32850,NULL,'Vault: Check replication discovery','clc93sisl00004xiyevwovlv0',''),('clc93siz8014z4xiy7a8iny22',1,'Admin',1672319399,'192.168.64.1',2,15,32846,NULL,'Vault: Check storage discovery','clc93sisl00004xiyevwovlv0',''),('clc93siz801504xiyk8secssq',1,'Admin',1672319399,'192.168.64.1',2,15,32845,NULL,'Vault: Check WAL discovery','clc93sisl00004xiyevwovlv0',''),('clc93siz801514xiygvw6tybx',1,'Admin',1672319399,'192.168.64.1',2,15,32795,NULL,'Vault: Clear metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz801524xiydl3zyqea',1,'Admin',1672319399,'192.168.64.1',2,15,32781,NULL,'Vault: Get health','clc93sisl00004xiyevwovlv0',''),('clc93siz801534xiylpewig0u',1,'Admin',1672319399,'192.168.64.1',2,15,32780,NULL,'Vault: Get leader','clc93sisl00004xiyevwovlv0',''),('clc93siz801544xiyph08ms0c',1,'Admin',1672319399,'192.168.64.1',2,15,32782,NULL,'Vault: Get metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz801554xiyi9opurwh',1,'Admin',1672319399,'192.168.64.1',2,15,32794,NULL,'Vault: Get metrics error','clc93sisl00004xiyevwovlv0',''),('clc93siz801564xiyukmhkzzw',1,'Admin',1672319399,'192.168.64.1',2,15,32783,NULL,'Vault: Get tokens','clc93sisl00004xiyevwovlv0',''),('clc93siz801574xiy32ifdwy7',1,'Admin',1672319399,'192.168.64.1',2,15,32793,NULL,'Vault: Healthcheck','clc93sisl00004xiyevwovlv0',''),('clc93siz801584xiytfsyra9k',1,'Admin',1672319399,'192.168.64.1',2,15,32791,NULL,'Vault: Initialized','clc93sisl00004xiyevwovlv0',''),('clc93siz801594xiyheq6lf29',1,'Admin',1672319399,'192.168.64.1',2,15,32792,NULL,'Vault: Performance standby','clc93sisl00004xiyevwovlv0',''),('clc93siz8015a4xiywtdklzee',1,'Admin',1672319399,'192.168.64.1',2,15,32785,NULL,'Vault: Disaster Recovery replication','clc93sisl00004xiyevwovlv0',''),('clc93siz8015b4xiydw4m5nhb',1,'Admin',1672319399,'192.168.64.1',2,15,32790,NULL,'Vault: Performance replication','clc93sisl00004xiyevwovlv0',''),('clc93siz8015c4xiysy635dnt',1,'Admin',1672319399,'192.168.64.1',2,15,32789,NULL,'Vault: Sealed','clc93sisl00004xiyevwovlv0',''),('clc93siz8015d4xiy5my1ethy',1,'Admin',1672319399,'192.168.64.1',2,15,32784,NULL,'Vault: Standby','clc93sisl00004xiyevwovlv0',''),('clc93siz8015e4xiybac7ljrx',1,'Admin',1672319399,'192.168.64.1',2,15,32788,NULL,'Vault: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz8015f4xiylhj8bqi5',1,'Admin',1672319399,'192.168.64.1',2,15,32787,NULL,'Vault: HA enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz8015g4xiyw5j85ai9',1,'Admin',1672319399,'192.168.64.1',2,15,32786,NULL,'Vault: Is leader','clc93sisl00004xiyevwovlv0',''),('clc93siz8015h4xiyd4ljd9do',1,'Admin',1672319399,'192.168.64.1',2,15,32844,NULL,'Vault: Audit log request failures, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015i4xiyc1t3gquz',1,'Admin',1672319399,'192.168.64.1',2,15,32843,NULL,'Vault: Audit log requests, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015j4xiyfn14xw5t',1,'Admin',1672319399,'192.168.64.1',2,15,32842,NULL,'Vault: Audit log response failures, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015k4xiyz77xsvj6',1,'Admin',1672319399,'192.168.64.1',2,15,32841,NULL,'Vault: Audit log response, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015l4xiyc6e4cqap',1,'Admin',1672319399,'192.168.64.1',2,15,32839,NULL,'Vault: Barrier DELETE ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015m4xiyu530tp27',1,'Admin',1672319399,'192.168.64.1',2,15,32832,NULL,'Vault: Barrier LIST ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015n4xiyslryfm9b',1,'Admin',1672319399,'192.168.64.1',2,15,32838,NULL,'Vault: Barrier PUT ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015o4xiyb9xjlgbm',1,'Admin',1672319399,'192.168.64.1',2,15,32837,NULL,'Vault: Cache hit, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015p4xiywr3s0au5',1,'Admin',1672319399,'192.168.64.1',2,15,32836,NULL,'Vault: Cache miss, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015q4xiys9cdq7v7',1,'Admin',1672319399,'192.168.64.1',2,15,32835,NULL,'Vault: Cache write, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015r4xiydszkmc1p',1,'Admin',1672319399,'192.168.64.1',2,15,32834,NULL,'Vault: Check token, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015s4xiyfwimws50',1,'Admin',1672319399,'192.168.64.1',2,15,32833,NULL,'Vault: Fetch ACL and token, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015t4xiyj86gauz2',1,'Admin',1672319399,'192.168.64.1',2,15,32847,NULL,'Vault: Requests, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015u4xiy59753f63',1,'Admin',1672319399,'192.168.64.1',2,15,32840,NULL,'Vault: Leadership setup failed, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015v4xiyvh3k0qsc',1,'Admin',1672319399,'192.168.64.1',2,15,32848,NULL,'Vault: Leadership setup lost, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015w4xiymh6s1a9u',1,'Admin',1672319399,'192.168.64.1',2,15,32858,NULL,'Vault: Post-unseal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015x4xiymzuwz49a',1,'Admin',1672319399,'192.168.64.1',2,15,32864,NULL,'Vault: Pre-seal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015y4xiyg0w9h7xk',1,'Admin',1672319399,'192.168.64.1',2,15,32863,NULL,'Vault: Seal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015z4xiyg9tyiwib',1,'Admin',1672319399,'192.168.64.1',2,15,32862,NULL,'Vault: Internal seal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801604xiy6c4a3chs',1,'Admin',1672319399,'192.168.64.1',2,15,32861,NULL,'Vault: Requested seal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801614xiywqn6fmz2',1,'Admin',1672319399,'192.168.64.1',2,15,32860,NULL,'Vault: Leadership step downs, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801624xiy5lmcon0q',1,'Admin',1672319399,'192.168.64.1',2,15,32859,NULL,'Vault: Unseal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801634xiysdx4qseb',1,'Admin',1672319399,'192.168.64.1',2,15,32857,NULL,'Vault: Fetch lease times, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801644xiygdqccvcz',1,'Admin',1672319399,'192.168.64.1',2,15,32830,NULL,'Vault: Fetch lease times by token, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801654xiylwy7hbl1',1,'Admin',1672319399,'192.168.64.1',2,15,32856,NULL,'Vault: Number of expiring leases','clc93sisl00004xiyevwovlv0',''),('clc93siz801664xiya7ur7i3d',1,'Admin',1672319399,'192.168.64.1',2,15,32855,NULL,'Vault: Register ops, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801674xiy0pebaw2d',1,'Admin',1672319399,'192.168.64.1',2,15,32854,NULL,'Vault: Register auth ops, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801684xiyuh35aqlq',1,'Admin',1672319399,'192.168.64.1',2,15,32853,NULL,'Vault: Expire renew, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801694xiyqxlwntig',1,'Admin',1672319399,'192.168.64.1',2,15,32852,NULL,'Vault: Renew token, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016a4xiytiu5k69j',1,'Admin',1672319399,'192.168.64.1',2,15,32851,NULL,'Vault: Expire revoke, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016b4xiyfmgkprr5',1,'Admin',1672319399,'192.168.64.1',2,15,32849,NULL,'Vault: Revoke secrets by token, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016c4xiys89ru3vv',1,'Admin',1672319399,'192.168.64.1',2,15,32831,NULL,'Vault: Expire revoke force, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016d4xiylw86kqt2',1,'Admin',1672319399,'192.168.64.1',2,15,32821,NULL,'Vault: Expire revoke prefix, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016e4xiy5cq5bkj6',1,'Admin',1672319399,'192.168.64.1',2,15,32829,NULL,'Vault: Policy DELETE ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016f4xiyhl3gxcjg',1,'Admin',1672319399,'192.168.64.1',2,15,32810,NULL,'Vault: Policy GET ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016g4xiyv94hbpvk',1,'Admin',1672319399,'192.168.64.1',2,15,32809,NULL,'Vault: Policy LIST ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016h4xiy7wzzfrow',1,'Admin',1672319399,'192.168.64.1',2,15,32807,NULL,'Vault: Policy SET ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016i4xiyb0ehgh8c',1,'Admin',1672319399,'192.168.64.1',2,15,32806,NULL,'Vault: Process CPU seconds, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8016j4xiyumm16yfo',1,'Admin',1672319399,'192.168.64.1',2,15,32805,NULL,'Vault: Open file descriptors, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8016k4xiysa1dst5u',1,'Admin',1672319399,'192.168.64.1',2,15,32804,NULL,'Vault: Open file descriptors, current','clc93sisl00004xiyevwovlv0',''),('clc93siz8016l4xiyf6z6n0s5',1,'Admin',1672319399,'192.168.64.1',2,15,32796,NULL,'Vault: Process resident memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8016m4xiydqwmhvvu',1,'Admin',1672319399,'192.168.64.1',2,15,32802,NULL,'Vault: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8016n4xiynljmtnld',1,'Admin',1672319399,'192.168.64.1',2,15,32801,NULL,'Vault: Process virtual memory, current','clc93sisl00004xiyevwovlv0',''),('clc93siz8016o4xiyfmru6j5n',1,'Admin',1672319399,'192.168.64.1',2,15,32800,NULL,'Vault: Process virtual memory, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8016p4xiyinetzbvv',1,'Admin',1672319399,'192.168.64.1',2,15,32797,NULL,'Vault: Runtime allocated bytes','clc93sisl00004xiyevwovlv0',''),('clc93siz8016q4xiykqx6gk3k',1,'Admin',1672319399,'192.168.64.1',2,15,32798,NULL,'Vault: Runtime freed objects','clc93sisl00004xiyevwovlv0',''),('clc93siz8016r4xiysh7qx59g',1,'Admin',1672319399,'192.168.64.1',2,15,32799,NULL,'Vault: Runtime heap objects','clc93sisl00004xiyevwovlv0',''),('clc93siz8016s4xiysvk13w7k',1,'Admin',1672319399,'192.168.64.1',2,15,32811,NULL,'Vault: Runtime malloc count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016t4xiyo1xgbet6',1,'Admin',1672319399,'192.168.64.1',2,15,32808,NULL,'Vault: Runtime num goroutines','clc93sisl00004xiyevwovlv0',''),('clc93siz8016u4xiyjhaeu85d',1,'Admin',1672319399,'192.168.64.1',2,15,32813,NULL,'Vault: Runtime sys bytes','clc93sisl00004xiyevwovlv0',''),('clc93siz8016v4xiyqgaj5y31',1,'Admin',1672319399,'192.168.64.1',2,15,32822,NULL,'Vault: Runtime GC runs, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8016w4xiyf401tdux',1,'Admin',1672319399,'192.168.64.1',2,15,32828,NULL,'Vault: Secret kv entries','clc93sisl00004xiyevwovlv0',''),('clc93siz8016x4xiyzlwh2yql',1,'Admin',1672319399,'192.168.64.1',2,15,32827,NULL,'Vault: Token secret lease creation, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016y4xiyc9t1wa7r',1,'Admin',1672319399,'192.168.64.1',2,15,32826,NULL,'Vault: Token count, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8016z4xiy2d25fu35',1,'Admin',1672319399,'192.168.64.1',2,15,32825,NULL,'Vault: Token count by auth, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801704xiypii5ac2r',1,'Admin',1672319399,'192.168.64.1',2,15,32824,NULL,'Vault: Token count by policy, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801714xiyfhc7gqk0',1,'Admin',1672319399,'192.168.64.1',2,15,32823,NULL,'Vault: Token count by ttl, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801724xiya4i1eb4y',1,'Admin',1672319399,'192.168.64.1',2,15,32812,NULL,'Vault: Token create, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801734xiypbxgez62',1,'Admin',1672319399,'192.168.64.1',2,15,32814,NULL,'Vault: Token createAccessor, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801744xiy48zbfh4u',1,'Admin',1672319399,'192.168.64.1',2,15,32820,NULL,'Vault: Token creation, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz801754xiyf8sql6ur',1,'Admin',1672319399,'192.168.64.1',2,15,32819,NULL,'Vault: Token lookup, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz801764xiy0zzif9ih',1,'Admin',1672319399,'192.168.64.1',2,15,32818,NULL,'Vault: Token revoke, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801774xiyll711xyr',1,'Admin',1672319399,'192.168.64.1',2,15,32817,NULL,'Vault: Token revoke tree, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801784xiytu121kx9',1,'Admin',1672319399,'192.168.64.1',2,15,32816,NULL,'Vault: Token store, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801794xiyrg638o4n',1,'Admin',1672319399,'192.168.64.1',2,15,32815,NULL,'Vault: Runtime GC pause, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8017a4xiyok5n7eba',1,'Admin',1672319399,'192.168.64.1',2,15,32865,NULL,'Vault: Barrier GET ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8017b4xiy0ge93tho',1,'Admin',1672319399,'192.168.64.1',2,15,33494,NULL,'Hikvision camera: Boot loader released date','clc93sisl00004xiyevwovlv0',''),('clc93siz8017c4xiy93ktpzcm',1,'Admin',1672319399,'192.168.64.1',2,15,33507,NULL,'Hikvision camera: Boot loader version','clc93sisl00004xiyevwovlv0',''),('clc93siz8017d4xiyea7o17ih',1,'Admin',1672319399,'192.168.64.1',2,15,33518,NULL,'Hikvision camera: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz8017e4xiyp0j8z1z7',1,'Admin',1672319399,'192.168.64.1',2,15,33517,NULL,'Hikvision camera: Current device time','clc93sisl00004xiyevwovlv0',''),('clc93siz8017f4xiyjtlr3nwi',1,'Admin',1672319399,'192.168.64.1',2,15,33516,NULL,'Hikvision camera: Device description','clc93sisl00004xiyevwovlv0',''),('clc93siz8017g4xiy5vmbi0k0',1,'Admin',1672319399,'192.168.64.1',2,15,33515,NULL,'Hikvision camera: Device ID','clc93sisl00004xiyevwovlv0',''),('clc93siz8017h4xiy5q3ws1fk',1,'Admin',1672319399,'192.168.64.1',2,15,33514,NULL,'Hikvision camera: Device location','clc93sisl00004xiyevwovlv0',''),('clc93siz8017i4xiyvpwly8jk',1,'Admin',1672319399,'192.168.64.1',2,15,33513,NULL,'Hikvision camera: Device name','clc93sisl00004xiyevwovlv0',''),('clc93siz8017j4xiywi9rrvhj',1,'Admin',1672319399,'192.168.64.1',2,15,33512,NULL,'Hikvision camera: Device type','clc93sisl00004xiyevwovlv0',''),('clc93siz8017k4xiyj5lfng6h',1,'Admin',1672319399,'192.168.64.1',2,15,33511,NULL,'Hikvision camera: Encoder released date','clc93sisl00004xiyevwovlv0',''),('clc93siz8017l4xiy7drkwldy',1,'Admin',1672319399,'192.168.64.1',2,15,33510,NULL,'Hikvision camera: Encoder version','clc93sisl00004xiyevwovlv0',''),('clc93siz8017m4xiypeam9e78',1,'Admin',1672319399,'192.168.64.1',2,15,33509,NULL,'Hikvision camera: Firmware released date','clc93sisl00004xiyevwovlv0',''),('clc93siz8017n4xiyx2p5nbqo',1,'Admin',1672319399,'192.168.64.1',2,15,33508,NULL,'Hikvision camera: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz8017o4xiypg2ha43l',1,'Admin',1672319399,'192.168.64.1',2,15,33493,NULL,'Hikvision camera: Get device info','clc93sisl00004xiyevwovlv0',''),('clc93siz8017p4xiyyxyt3176',1,'Admin',1672319399,'192.168.64.1',2,15,33506,NULL,'Hikvision camera: Get device info: Login status','clc93sisl00004xiyevwovlv0',''),('clc93siz8017q4xiycmouwf1b',1,'Admin',1672319399,'192.168.64.1',2,15,33492,NULL,'Hikvision camera: Get system status','clc93sisl00004xiyevwovlv0',''),('clc93siz8017r4xiy0ju1cm41',1,'Admin',1672319399,'192.168.64.1',2,15,33505,NULL,'Hikvision camera: Get system status: Login status','clc93sisl00004xiyevwovlv0',''),('clc93siz8017s4xiyx2fd306a',1,'Admin',1672319399,'192.168.64.1',2,15,33491,NULL,'Hikvision camera: Get streaming channels','clc93sisl00004xiyevwovlv0',''),('clc93siz8017t4xiyipwoe45a',1,'Admin',1672319399,'192.168.64.1',2,15,33504,NULL,'Hikvision camera: Get streaming channels: Login status','clc93sisl00004xiyevwovlv0',''),('clc93siz8017u4xiy1xj57wcp',1,'Admin',1672319399,'192.168.64.1',2,15,33503,NULL,'Hikvision camera: Hardware version','clc93sisl00004xiyevwovlv0',''),('clc93siz8017v4xiyd4sohajy',1,'Admin',1672319399,'192.168.64.1',2,15,33502,NULL,'Hikvision camera: MACaddress','clc93sisl00004xiyevwovlv0',''),('clc93siz8017w4xiybin812p5',1,'Admin',1672319399,'192.168.64.1',2,15,33501,NULL,'Hikvision camera: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz8017x4xiygsohskuy',1,'Admin',1672319399,'192.168.64.1',2,15,33500,NULL,'Hikvision camera: Model','clc93sisl00004xiyevwovlv0',''),('clc93siz8017y4xiyknc9dk8j',1,'Admin',1672319399,'192.168.64.1',2,15,33499,NULL,'Hikvision camera: Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz8017z4xiytvex4nia',1,'Admin',1672319399,'192.168.64.1',2,15,33498,NULL,'Hikvision camera: Supported beep','clc93sisl00004xiyevwovlv0',''),('clc93siz801804xiya23yefkk',1,'Admin',1672319399,'192.168.64.1',2,15,33497,NULL,'Hikvision camera: Supported video loss','clc93sisl00004xiyevwovlv0',''),('clc93siz801814xiy8tonx3st',1,'Admin',1672319399,'192.168.64.1',2,15,33496,NULL,'Hikvision camera: System contact','clc93sisl00004xiyevwovlv0',''),('clc93siz801824xiyzrxato3i',1,'Admin',1672319399,'192.168.64.1',2,15,33495,NULL,'Hikvision camera: Telecontrol ID','clc93sisl00004xiyevwovlv0',''),('clc93siz801834xiy7ukmznbe',1,'Admin',1672319399,'192.168.64.1',2,15,33519,NULL,'Hikvision camera: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz801844xiyitjbfy21',1,'Admin',1672319399,'192.168.64.1',2,15,35078,NULL,'Cloudflare: Total bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801854xiya5ua6wrv',1,'Admin',1672319399,'192.168.64.1',2,15,35101,NULL,'Cloudflare: Cache hit ratio of bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801864xiyc40yq3kd',1,'Admin',1672319399,'192.168.64.1',2,15,35091,NULL,'Cloudflare: Cached bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801874xiyl1x117wo',1,'Admin',1672319399,'192.168.64.1',2,15,35100,NULL,'Cloudflare: SSL encrypted bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801884xiyyhkeigxc',1,'Admin',1672319399,'192.168.64.1',2,15,35099,NULL,'Cloudflare: Unencrypted bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801894xiy3pzela9o',1,'Admin',1672319399,'192.168.64.1',2,15,35098,NULL,'Cloudflare: Uncached bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz8018a4xiy5ppmnz6l',1,'Admin',1672319399,'192.168.64.1',2,15,35097,NULL,'Cloudflare: DNS queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8018b4xiy0ng9bzph',1,'Admin',1672319399,'192.168.64.1',2,15,35096,NULL,'Cloudflare: Stale DNS queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8018c4xiyo1za17ax',1,'Admin',1672319399,'192.168.64.1',2,15,35095,NULL,'Cloudflare: Uncached DNS queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8018d4xiyv6shxa84',1,'Admin',1672319399,'192.168.64.1',2,15,35077,NULL,'Cloudflare: Get data','clc93sisl00004xiyevwovlv0',''),('clc93siz8018e4xiyep0q4u9k',1,'Admin',1672319399,'192.168.64.1',2,15,35094,NULL,'Cloudflare: Total page views','clc93sisl00004xiyevwovlv0',''),('clc93siz8018f4xiy0qndidki',1,'Admin',1672319399,'192.168.64.1',2,15,35093,NULL,'Cloudflare: Total requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018g4xiycn914rjp',1,'Admin',1672319399,'192.168.64.1',2,15,35090,NULL,'Cloudflare: Cache hit ratio % over time','clc93sisl00004xiyevwovlv0',''),('clc93siz8018h4xiyh1936b8h',1,'Admin',1672319399,'192.168.64.1',2,15,35092,NULL,'Cloudflare: Cached requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018i4xiyx8lo5c8q',1,'Admin',1672319399,'192.168.64.1',2,15,35079,NULL,'Cloudflare: Non-2xx responses ratio','clc93sisl00004xiyevwovlv0',''),('clc93siz8018j4xiyawbfjemc',1,'Admin',1672319399,'192.168.64.1',2,15,35089,NULL,'Cloudflare: Response codes 1xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018k4xiy7j7uoxhn',1,'Admin',1672319399,'192.168.64.1',2,15,35088,NULL,'Cloudflare: Response codes 2xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018l4xiy9cdxbqcw',1,'Admin',1672319399,'192.168.64.1',2,15,35087,NULL,'Cloudflare: Response codes 3xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018m4xiyrcdj2rif',1,'Admin',1672319399,'192.168.64.1',2,15,35086,NULL,'Cloudflare: Response codes 4xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018n4xiye8at1dk7',1,'Admin',1672319399,'192.168.64.1',2,15,35085,NULL,'Cloudflare: Response codes 5xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018o4xiythmc0jfy',1,'Admin',1672319399,'192.168.64.1',2,15,35084,NULL,'Cloudflare: SSL encrypted requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018p4xiyzl1fxsvf',1,'Admin',1672319399,'192.168.64.1',2,15,35083,NULL,'Cloudflare: Unencrypted requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018q4xiyj38kr3xd',1,'Admin',1672319399,'192.168.64.1',2,15,35082,NULL,'Cloudflare: 2xx responses ratio','clc93sisl00004xiyevwovlv0',''),('clc93siz8018r4xiydr3rp0zk',1,'Admin',1672319399,'192.168.64.1',2,15,35081,NULL,'Cloudflare: Uncached requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018s4xiyzsev6p7i',1,'Admin',1672319399,'192.168.64.1',2,15,35080,NULL,'Cloudflare: Total threats','clc93sisl00004xiyevwovlv0',''),('clc93siz8018t4xiyp0ygya9u',1,'Admin',1672319399,'192.168.64.1',2,15,35102,NULL,'Cloudflare: Unique visitors','clc93sisl00004xiyevwovlv0',''),('clc93siz8018u4xiyu28xla1l',1,'Admin',1672319399,'192.168.64.1',2,15,35406,NULL,'F5 BIG-IP: Contact','clc93sisl00004xiyevwovlv0',''),('clc93siz8018v4xiyyplldxu6',1,'Admin',1672319399,'192.168.64.1',2,15,36823,NULL,'F5 BIG-IP: Failover status','clc93sisl00004xiyevwovlv0',''),('clc93siz8018w4xiypf9njj5t',1,'Admin',1672319399,'192.168.64.1',2,15,35415,NULL,'F5 BIG-IP: Location','clc93sisl00004xiyevwovlv0',''),('clc93siz8018x4xiympnkinvz',1,'Admin',1672319399,'192.168.64.1',2,15,35422,NULL,'F5 BIG-IP: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz8018y4xiyj00qsvmx',1,'Admin',1672319399,'192.168.64.1',2,15,35421,NULL,'F5 BIG-IP: Host name','clc93sisl00004xiyevwovlv0',''),('clc93siz8018z4xiygotjw54h',1,'Admin',1672319399,'192.168.64.1',2,15,35420,NULL,'F5 BIG-IP: Product build','clc93sisl00004xiyevwovlv0',''),('clc93siz801904xiy2lokgsfu',1,'Admin',1672319399,'192.168.64.1',2,15,35419,NULL,'F5 BIG-IP: Product build date','clc93sisl00004xiyevwovlv0',''),('clc93siz801914xiyk697ong6',1,'Admin',1672319399,'192.168.64.1',2,15,35418,NULL,'F5 BIG-IP: Product edition','clc93sisl00004xiyevwovlv0',''),('clc93siz801924xiybb2pw4xu',1,'Admin',1672319399,'192.168.64.1',2,15,35417,NULL,'F5 BIG-IP: Product name','clc93sisl00004xiyevwovlv0',''),('clc93siz801934xiy3n0a572p',1,'Admin',1672319399,'192.168.64.1',2,15,35416,NULL,'F5 BIG-IP: Product version','clc93sisl00004xiyevwovlv0',''),('clc93siz801944xiy72hb2e8n',1,'Admin',1672319399,'192.168.64.1',2,15,35414,NULL,'F5 BIG-IP: Chassis serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz801954xiyjtpiif3o',1,'Admin',1672319399,'192.168.64.1',2,15,36822,NULL,'F5 BIG-IP: Sync Status','clc93sisl00004xiyevwovlv0',''),('clc93siz801964xiykgcgr9xo',1,'Admin',1672319399,'192.168.64.1',2,15,35407,NULL,'F5 BIG-IP: TCP connections, CLOSE-WAIT/LAST-ACK','clc93sisl00004xiyevwovlv0',''),('clc93siz801974xiyym1jlath',1,'Admin',1672319399,'192.168.64.1',2,15,35413,NULL,'F5 BIG-IP: TCP connections, FIN-WAIT-1/CLOSING','clc93sisl00004xiyevwovlv0',''),('clc93siz801984xiy4svy5u4u',1,'Admin',1672319399,'192.168.64.1',2,15,35412,NULL,'F5 BIG-IP: TCP connections, FIN-WAIT-2','clc93sisl00004xiyevwovlv0',''),('clc93siz801994xiyzlckmog9',1,'Admin',1672319399,'192.168.64.1',2,15,35411,NULL,'F5 BIG-IP: Open TCP connections','clc93sisl00004xiyevwovlv0',''),('clc93siz8019a4xiymv0x9pz4',1,'Admin',1672319399,'192.168.64.1',2,15,35410,NULL,'F5 BIG-IP: TCP connections, TIME-WAIT','clc93sisl00004xiyevwovlv0',''),('clc93siz8019b4xiyvg7njx4s',1,'Admin',1672319399,'192.168.64.1',2,15,35409,NULL,'F5 BIG-IP: Open UDP connections','clc93sisl00004xiyevwovlv0',''),('clc93siz8019c4xiy9ikbpxca',1,'Admin',1672319399,'192.168.64.1',2,15,35408,NULL,'F5 BIG-IP: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8019d4xiyk872rnyt',1,'Admin',1672319399,'192.168.64.1',2,15,35423,NULL,'F5 BIG-IP: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz8019e4xiyya0jhc1o',1,'Admin',1672319399,'192.168.64.1',2,15,36160,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz8019f4xiyfocr7qgu',1,'Admin',1672319399,'192.168.64.1',2,15,36161,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz8019g4xiy3n3nsm5z',1,'Admin',1672319399,'192.168.64.1',2,15,43889,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz8019h4xiy4qlzxohs',1,'Admin',1672319399,'192.168.64.1',2,15,36162,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz8019i4xiyiwfmmj18',1,'Admin',1672319399,'192.168.64.1',2,15,36163,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz8019j4xiy10vzue71',1,'Admin',1672319399,'192.168.64.1',2,15,36165,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz8019k4xiykr260ts5',1,'Admin',1672319399,'192.168.64.1',2,15,36164,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz8019l4xiylpao00b0',1,'Admin',1672319399,'192.168.64.1',2,15,36166,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz8019m4xiysnzqc7in',1,'Admin',1672319399,'192.168.64.1',2,15,36167,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz8019n4xiyfsjwf363',1,'Admin',1672319399,'192.168.64.1',2,15,36215,NULL,'Dell R720: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz8019o4xiy8qhwu33w',1,'Admin',1672319399,'192.168.64.1',2,15,36216,NULL,'Dell R720: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz8019p4xiyil9q2z3z',1,'Admin',1672319399,'192.168.64.1',2,15,36217,NULL,'Dell R720: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz8019q4xiyfqhu89xt',1,'Admin',1672319399,'192.168.64.1',2,15,36218,NULL,'Dell R720: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz8019r4xiyosu2wrb4',1,'Admin',1672319399,'192.168.64.1',2,15,36213,NULL,'Dell R720: Get system','clc93sisl00004xiyevwovlv0',''),('clc93siz8019s4xiytdshniy4',1,'Admin',1672319399,'192.168.64.1',2,15,36214,NULL,'Dell R720: Redfish API','clc93sisl00004xiyevwovlv0',''),('clc93siz8019t4xiy65yfuez0',1,'Admin',1672319399,'192.168.64.1',2,15,36255,NULL,'Dell R720: System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz8019u4xiydnkebgr0',1,'Admin',1672319399,'192.168.64.1',2,15,36256,NULL,'Dell R720: System description','clc93sisl00004xiyevwovlv0',''),('clc93siz8019v4xiy2rhaoq9i',1,'Admin',1672319399,'192.168.64.1',2,15,36257,NULL,'Dell R720: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz8019w4xiyz2gljjoh',1,'Admin',1672319399,'192.168.64.1',2,15,36258,NULL,'Dell R720: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz8019x4xiy4lvfhro2',1,'Admin',1672319399,'192.168.64.1',2,15,36259,NULL,'Dell R720: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz8019y4xiy1srh2gxy',1,'Admin',1672319399,'192.168.64.1',2,15,43891,NULL,'Dell R720: Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz8019z4xiyrlhmeowx',1,'Admin',1672319399,'192.168.64.1',2,15,36260,NULL,'Dell R720: System location','clc93sisl00004xiyevwovlv0',''),('clc93siz801a04xiy9s206qsp',1,'Admin',1672319399,'192.168.64.1',2,15,36261,NULL,'Dell R720: System name','clc93sisl00004xiyevwovlv0',''),('clc93siz801a14xiy5copowi0',1,'Admin',1672319399,'192.168.64.1',2,15,36265,NULL,'Dell R720: Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz801a24xiy65rj4a8s',1,'Admin',1672319399,'192.168.64.1',2,15,36262,NULL,'Dell R720: System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz801a34xiytmbc9kad',1,'Admin',1672319399,'192.168.64.1',2,15,36263,NULL,'Dell R720: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz801a44xiya3fm9m5i',1,'Admin',1672319399,'192.168.64.1',2,15,36264,NULL,'Dell R720: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz801a54xiyax9ur5gl',1,'Admin',1672319399,'192.168.64.1',2,15,36266,NULL,'Dell R720: SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz801a64xiya3ak82qk',1,'Admin',1672319399,'192.168.64.1',2,15,36267,NULL,'Dell R720: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz801a74xiyv9y70oco',1,'Admin',1672319399,'192.168.64.1',2,15,36297,NULL,'Dell R740: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz801a84xiylase4akv',1,'Admin',1672319399,'192.168.64.1',2,15,36298,NULL,'Dell R740: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz801a94xiyfxbylipu',1,'Admin',1672319399,'192.168.64.1',2,15,36299,NULL,'Dell R740: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz801aa4xiyenveg32z',1,'Admin',1672319399,'192.168.64.1',2,15,36300,NULL,'Dell R740: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz801ab4xiyn7y3u4k1',1,'Admin',1672319399,'192.168.64.1',2,15,36295,NULL,'Dell R740: Get system','clc93sisl00004xiyevwovlv0',''),('clc93siz801ac4xiy93lwwkfj',1,'Admin',1672319399,'192.168.64.1',2,15,36296,NULL,'Dell R740: Redfish API','clc93sisl00004xiyevwovlv0',''),('clc93siz801ad4xiyentxphz5',1,'Admin',1672319399,'192.168.64.1',2,15,36337,NULL,'Dell R740: System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz801ae4xiyoas0eteg',1,'Admin',1672319399,'192.168.64.1',2,15,36338,NULL,'Dell R740: System description','clc93sisl00004xiyevwovlv0',''),('clc93siz801af4xiyme0xvsn7',1,'Admin',1672319399,'192.168.64.1',2,15,36339,NULL,'Dell R740: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz801ag4xiy0s1zbdo3',1,'Admin',1672319399,'192.168.64.1',2,15,36340,NULL,'Dell R740: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz801ah4xiyeiyi5ctq',1,'Admin',1672319399,'192.168.64.1',2,15,36341,NULL,'Dell R740: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz801ai4xiy0gf9hvmj',1,'Admin',1672319399,'192.168.64.1',2,15,43892,NULL,'Dell R740: Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz801aj4xiy4abqcktq',1,'Admin',1672319399,'192.168.64.1',2,15,36342,NULL,'Dell R740: System location','clc93sisl00004xiyevwovlv0',''),('clc93siz901ak4xiypk34d0os',1,'Admin',1672319399,'192.168.64.1',2,15,36343,NULL,'Dell R740: System name','clc93sisl00004xiyevwovlv0',''),('clc93siz901al4xiyz3jzio32',1,'Admin',1672319399,'192.168.64.1',2,15,36347,NULL,'Dell R740: Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz901am4xiysyq812ud',1,'Admin',1672319399,'192.168.64.1',2,15,36344,NULL,'Dell R740: System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz901an4xiyn122c214',1,'Admin',1672319399,'192.168.64.1',2,15,36345,NULL,'Dell R740: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901ao4xiy1ph9ge4z',1,'Admin',1672319399,'192.168.64.1',2,15,36346,NULL,'Dell R740: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz901ap4xiyuw1x8ml1',1,'Admin',1672319399,'192.168.64.1',2,15,36348,NULL,'Dell R740: SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz901aq4xiy5x8ybotw',1,'Admin',1672319399,'192.168.64.1',2,15,36349,NULL,'Dell R740: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz901ar4xiyt88dg7nv',1,'Admin',1672319399,'192.168.64.1',2,15,36379,NULL,'Dell R820: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz901as4xiy43sx455g',1,'Admin',1672319399,'192.168.64.1',2,15,36380,NULL,'Dell R820: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901at4xiykzj6gwjt',1,'Admin',1672319399,'192.168.64.1',2,15,36381,NULL,'Dell R820: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901au4xiy3boqfli9',1,'Admin',1672319399,'192.168.64.1',2,15,36382,NULL,'Dell R820: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901av4xiymtpeoe6f',1,'Admin',1672319399,'192.168.64.1',2,15,36377,NULL,'Dell R820: Get system','clc93sisl00004xiyevwovlv0',''),('clc93siz901aw4xiy1isua07q',1,'Admin',1672319399,'192.168.64.1',2,15,36378,NULL,'Dell R820: Redfish API','clc93sisl00004xiyevwovlv0',''),('clc93siz901ax4xiymm9l6c2n',1,'Admin',1672319399,'192.168.64.1',2,15,36419,NULL,'Dell R820: System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz901ay4xiymfvqy3b8',1,'Admin',1672319399,'192.168.64.1',2,15,36420,NULL,'Dell R820: System description','clc93sisl00004xiyevwovlv0',''),('clc93siz901az4xiytlows5sq',1,'Admin',1672319399,'192.168.64.1',2,15,36421,NULL,'Dell R820: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz901b04xiyccynuw3z',1,'Admin',1672319399,'192.168.64.1',2,15,36422,NULL,'Dell R820: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901b14xiy0p587cuq',1,'Admin',1672319399,'192.168.64.1',2,15,36423,NULL,'Dell R820: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901b24xiyd837pasi',1,'Admin',1672319399,'192.168.64.1',2,15,43893,NULL,'Dell R820: Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz901b34xiymz1bh0hp',1,'Admin',1672319399,'192.168.64.1',2,15,36424,NULL,'Dell R820: System location','clc93sisl00004xiyevwovlv0',''),('clc93siz901b44xiy9205onug',1,'Admin',1672319399,'192.168.64.1',2,15,36425,NULL,'Dell R820: System name','clc93sisl00004xiyevwovlv0',''),('clc93siz901b54xiybva6znmu',1,'Admin',1672319399,'192.168.64.1',2,15,36429,NULL,'Dell R820: Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz901b64xiyb3ijxsys',1,'Admin',1672319399,'192.168.64.1',2,15,36426,NULL,'Dell R820: System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz901b74xiy21jbr4x4',1,'Admin',1672319399,'192.168.64.1',2,15,36427,NULL,'Dell R820: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901b84xiyahsdalan',1,'Admin',1672319399,'192.168.64.1',2,15,36428,NULL,'Dell R820: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz901b94xiy00mz6awv',1,'Admin',1672319399,'192.168.64.1',2,15,36430,NULL,'Dell R820: SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz901ba4xiyj41hhsgm',1,'Admin',1672319399,'192.168.64.1',2,15,36431,NULL,'Dell R820: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz901bb4xiyemzlud17',1,'Admin',1672319399,'192.168.64.1',2,15,36461,NULL,'Dell R840: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz901bc4xiyvza7hbpl',1,'Admin',1672319399,'192.168.64.1',2,15,36462,NULL,'Dell R840: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901bd4xiylwld8rg0',1,'Admin',1672319399,'192.168.64.1',2,15,36463,NULL,'Dell R840: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901be4xiy9s8714h4',1,'Admin',1672319399,'192.168.64.1',2,15,36464,NULL,'Dell R840: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901bf4xiyh3jbm95k',1,'Admin',1672319399,'192.168.64.1',2,15,36459,NULL,'Dell R840: Get system','clc93sisl00004xiyevwovlv0',''),('clc93siz901bg4xiyx85ixd74',1,'Admin',1672319399,'192.168.64.1',2,15,36460,NULL,'Dell R840: Redfish API','clc93sisl00004xiyevwovlv0',''),('clc93siz901bh4xiyro1iukir',1,'Admin',1672319399,'192.168.64.1',2,15,36501,NULL,'Dell R840: System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz901bi4xiybca1ud8t',1,'Admin',1672319399,'192.168.64.1',2,15,36502,NULL,'Dell R840: System description','clc93sisl00004xiyevwovlv0',''),('clc93siz901bj4xiyb4rkfejl',1,'Admin',1672319399,'192.168.64.1',2,15,36503,NULL,'Dell R840: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz901bk4xiykuhxpk9t',1,'Admin',1672319399,'192.168.64.1',2,15,36504,NULL,'Dell R840: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901bl4xiyyssgbga9',1,'Admin',1672319399,'192.168.64.1',2,15,36505,NULL,'Dell R840: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901bm4xiyl1ror3tm',1,'Admin',1672319399,'192.168.64.1',2,15,43894,NULL,'Dell R840: Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz901bn4xiy0dcmff1s',1,'Admin',1672319399,'192.168.64.1',2,15,36506,NULL,'Dell R840: System location','clc93sisl00004xiyevwovlv0',''),('clc93siz901bo4xiyxmdivhpo',1,'Admin',1672319399,'192.168.64.1',2,15,36507,NULL,'Dell R840: System name','clc93sisl00004xiyevwovlv0',''),('clc93siz901bp4xiy08he7vqp',1,'Admin',1672319399,'192.168.64.1',2,15,36511,NULL,'Dell R840: Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz901bq4xiylm4gkhpa',1,'Admin',1672319399,'192.168.64.1',2,15,36508,NULL,'Dell R840: System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz901br4xiydlxd5vq8',1,'Admin',1672319399,'192.168.64.1',2,15,36509,NULL,'Dell R840: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901bs4xiyqe2xbcqn',1,'Admin',1672319399,'192.168.64.1',2,15,36510,NULL,'Dell R840: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz901bt4xiyoczad59w',1,'Admin',1672319399,'192.168.64.1',2,15,36512,NULL,'Dell R840: SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz901bu4xiyw2mwsg8o',1,'Admin',1672319399,'192.168.64.1',2,15,36513,NULL,'Dell R840: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz901bv4xiysofx77s9',1,'Admin',1672319399,'192.168.64.1',2,15,42959,NULL,'CockroachDB: CA certificate expiration date','clc93sisl00004xiyevwovlv0',''),('clc93siz901bw4xiyed99ufp4',1,'Admin',1672319399,'192.168.64.1',2,15,42973,NULL,'CockroachDB: Node certificate expiration date','clc93sisl00004xiyevwovlv0',''),('clc93siz901bx4xiyagxf8qko',1,'Admin',1672319399,'192.168.64.1',2,15,42962,NULL,'CockroachDB: Clock offset','clc93sisl00004xiyevwovlv0',''),('clc93siz901by4xiylpez8sqf',1,'Admin',1672319399,'192.168.64.1',2,15,42963,NULL,'CockroachDB: CPU: System time','clc93sisl00004xiyevwovlv0',''),('clc93siz901bz4xiyhn5gpp61',1,'Admin',1672319399,'192.168.64.1',2,15,42964,NULL,'CockroachDB: CPU: User time','clc93sisl00004xiyevwovlv0',''),('clc93siz901c04xiynbysjggd',1,'Admin',1672319399,'192.168.64.1',2,15,42965,NULL,'CockroachDB: CPU: Utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz901c14xiyb5v84nef',1,'Admin',1672319399,'192.168.64.1',2,15,42966,NULL,'CockroachDB: File descriptors: Limit','clc93sisl00004xiyevwovlv0',''),('clc93siz901c24xiyar9chns4',1,'Admin',1672319399,'192.168.64.1',2,15,42967,NULL,'CockroachDB: File descriptors: Open','clc93sisl00004xiyevwovlv0',''),('clc93siz901c34xiy54ruu016',1,'Admin',1672319399,'192.168.64.1',2,15,42968,NULL,'CockroachDB: Disk: IOPS in progress, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c44xiy6zauoh5v',1,'Admin',1672319399,'192.168.64.1',2,15,42969,NULL,'CockroachDB: Disk: Read IOPS, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c54xiyvwmt4l8f',1,'Admin',1672319399,'192.168.64.1',2,15,42970,NULL,'CockroachDB: Disk: Write IOPS, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c64xiy5zczgq2m',1,'Admin',1672319399,'192.168.64.1',2,15,42971,NULL,'CockroachDB: Disk: Reads, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c74xiyijg2m05o',1,'Admin',1672319399,'192.168.64.1',2,15,42961,NULL,'CockroachDB: Disk: Writes, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c84xiyzdlcbtzs',1,'Admin',1672319399,'192.168.64.1',2,15,42972,NULL,'CockroachDB: GC: Pause time','clc93sisl00004xiyevwovlv0',''),('clc93siz901c94xiypwlnrf1v',1,'Admin',1672319399,'192.168.64.1',2,15,42974,NULL,'CockroachDB: GC: Runs, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ca4xiyey0mirhi',1,'Admin',1672319399,'192.168.64.1',2,15,42931,NULL,'CockroachDB: Get health','clc93sisl00004xiyevwovlv0',''),('clc93siz901cb4xiy8isrhm0n',1,'Admin',1672319399,'192.168.64.1',2,15,42933,NULL,'CockroachDB: Get metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz901cc4xiyn4k7iim7',1,'Admin',1672319399,'192.168.64.1',2,15,42932,NULL,'CockroachDB: Get readiness','clc93sisl00004xiyevwovlv0',''),('clc93siz901cd4xiyh008k4cd',1,'Admin',1672319399,'192.168.64.1',2,15,42975,NULL,'CockroachDB: Go: Goroutines count','clc93sisl00004xiyevwovlv0',''),('clc93siz901ce4xiyq7l0gjvj',1,'Admin',1672319399,'192.168.64.1',2,15,42976,NULL,'CockroachDB: Liveness heartbeats, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cf4xiy2ys3g6im',1,'Admin',1672319399,'192.168.64.1',2,15,42977,NULL,'CockroachDB: KV transactions: Aborted, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cg4xiya9llrwvj',1,'Admin',1672319399,'192.168.64.1',2,15,42978,NULL,'CockroachDB: KV transactions: Committed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ch4xiyn3rwty23',1,'Admin',1672319399,'192.168.64.1',2,15,42979,NULL,'CockroachDB: Live nodes count','clc93sisl00004xiyevwovlv0',''),('clc93siz901ci4xiypz77ybvz',1,'Admin',1672319399,'192.168.64.1',2,15,42980,NULL,'CockroachDB: Memory: Allocated by Cgo','clc93sisl00004xiyevwovlv0',''),('clc93siz901cj4xiyk625woel',1,'Admin',1672319399,'192.168.64.1',2,15,42981,NULL,'CockroachDB: Memory: Managed by Cgo','clc93sisl00004xiyevwovlv0',''),('clc93siz901ck4xiyer1fzge9',1,'Admin',1672319399,'192.168.64.1',2,15,42982,NULL,'CockroachDB: Memory: Allocated by Go','clc93sisl00004xiyevwovlv0',''),('clc93siz901cl4xiy8gdxth7b',1,'Admin',1672319399,'192.168.64.1',2,15,42983,NULL,'CockroachDB: Memory: Managed by Go','clc93sisl00004xiyevwovlv0',''),('clc93siz901cm4xiygjf44c95',1,'Admin',1672319399,'192.168.64.1',2,15,42984,NULL,'CockroachDB: Memory: Allocated by SQL','clc93sisl00004xiyevwovlv0',''),('clc93siz901cn4xiykxhcs489',1,'Admin',1672319399,'192.168.64.1',2,15,42985,NULL,'CockroachDB: Memory: Total usage','clc93sisl00004xiyevwovlv0',''),('clc93siz901co4xiyg0ko2d8k',1,'Admin',1672319399,'192.168.64.1',2,15,42960,NULL,'CockroachDB: Network: Bytes received, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cp4xiy4a760ggz',1,'Admin',1672319399,'192.168.64.1',2,15,42945,NULL,'CockroachDB: Network: Bytes sent, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cq4xiystyvs9ax',1,'Admin',1672319399,'192.168.64.1',2,15,42958,NULL,'CockroachDB: Slow requests: DistSender RPCs','clc93sisl00004xiyevwovlv0',''),('clc93siz901cr4xiyl2sbced5',1,'Admin',1672319399,'192.168.64.1',2,15,42934,NULL,'CockroachDB: SQL: Bytes received, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cs4xiyscbi0yma',1,'Admin',1672319399,'192.168.64.1',2,15,42935,NULL,'CockroachDB: SQL: Bytes sent, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ct4xiylnm573pb',1,'Admin',1672319399,'192.168.64.1',2,15,42936,NULL,'CockroachDB: SQL: Schema changes, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cu4xiy3wdc00dd',1,'Admin',1672319399,'192.168.64.1',2,15,42937,NULL,'CockroachDB: SQL sessions: Open','clc93sisl00004xiyevwovlv0',''),('clc93siz901cv4xiy6en8wj9l',1,'Admin',1672319399,'192.168.64.1',2,15,42938,NULL,'CockroachDB: SQL statements: Active','clc93sisl00004xiyevwovlv0',''),('clc93siz901cw4xiyrgk2dl2e',1,'Admin',1672319399,'192.168.64.1',2,15,42939,NULL,'CockroachDB: SQL statements: Contention, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cx4xiyypi751h7',1,'Admin',1672319399,'192.168.64.1',2,15,42940,NULL,'CockroachDB: SQL statements: DELETE, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cy4xiyr4l2ee2i',1,'Admin',1672319399,'192.168.64.1',2,15,42941,NULL,'CockroachDB: SQL statements: Denials, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cz4xiytaik9t84',1,'Admin',1672319399,'192.168.64.1',2,15,42942,NULL,'CockroachDB: SQL statements: Errors, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d04xiy2h1kvv9z',1,'Admin',1672319399,'192.168.64.1',2,15,42943,NULL,'CockroachDB: SQL statements: Executed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d14xiys84id69e',1,'Admin',1672319399,'192.168.64.1',2,15,42944,NULL,'CockroachDB: SQL statements: Active flows distributed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d24xiyjhcuqso2',1,'Admin',1672319399,'192.168.64.1',2,15,42946,NULL,'CockroachDB: SQL statements: INSERT, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d34xiyju5u9cjq',1,'Admin',1672319399,'192.168.64.1',2,15,42947,NULL,'CockroachDB: SQL statements: SELECT, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d44xiyhhtlbpaf',1,'Admin',1672319399,'192.168.64.1',2,15,42948,NULL,'CockroachDB: SQL statements: UPDATE, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d54xiysajekq6e',1,'Admin',1672319399,'192.168.64.1',2,15,42949,NULL,'CockroachDB: SQL transactions: Aborted, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d64xiym0yc31jm',1,'Admin',1672319399,'192.168.64.1',2,15,42950,NULL,'CockroachDB: SQL transactions: Committed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d74xiyhdojtjuy',1,'Admin',1672319399,'192.168.64.1',2,15,42951,NULL,'CockroachDB: SQL transactions: Initiated, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d84xiy1ny9ncin',1,'Admin',1672319399,'192.168.64.1',2,15,42952,NULL,'CockroachDB: SQL transactions: Open','clc93sisl00004xiyevwovlv0',''),('clc93siz901d94xiy7b560kxr',1,'Admin',1672319399,'192.168.64.1',2,15,42953,NULL,'CockroachDB: SQL transactions: Rolled back, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901da4xiyhx89gi0q',1,'Admin',1672319399,'192.168.64.1',2,15,42954,NULL,'CockroachDB: Time series: Sample errors, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901db4xiyfbwb14o0',1,'Admin',1672319399,'192.168.64.1',2,15,42955,NULL,'CockroachDB: Time series: Samples written, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dc4xiyg9spmk3l',1,'Admin',1672319399,'192.168.64.1',2,15,42956,NULL,'CockroachDB: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz901dd4xiy190korxv',1,'Admin',1672319399,'192.168.64.1',2,15,42957,NULL,'CockroachDB: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz901de4xiysyxgy90o',1,'Admin',1672319399,'192.168.64.1',2,15,42930,NULL,'CockroachDB: Service ping','clc93sisl00004xiyevwovlv0',''),('clc93siz901df4xiy4bhwn51l',1,'Admin',1672319399,'192.168.64.1',2,15,43019,NULL,'Envoy Proxy: Clusters, active','clc93sisl00004xiyevwovlv0',''),('clc93siz901dg4xiyymt7272h',1,'Admin',1672319399,'192.168.64.1',2,15,43034,NULL,'Envoy Proxy: Clusters, added rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dh4xiy4128gvyz',1,'Admin',1672319399,'192.168.64.1',2,15,43045,NULL,'Envoy Proxy: Clusters, modified rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901di4xiyag13j4xy',1,'Admin',1672319399,'192.168.64.1',2,15,43044,NULL,'Envoy Proxy: Clusters, removed rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dj4xiyaoyd15ck',1,'Admin',1672319399,'192.168.64.1',2,15,43043,NULL,'Envoy Proxy: Clusters, updates rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dk4xiyabil56j9',1,'Admin',1672319399,'192.168.64.1',2,15,43042,NULL,'Envoy Proxy: Clusters, warming','clc93sisl00004xiyevwovlv0',''),('clc93siz901dl4xiyb3x5r2tj',1,'Admin',1672319399,'192.168.64.1',2,15,43041,NULL,'Envoy Proxy: Filesystem, flushed by timer rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dm4xiytospntxr',1,'Admin',1672319399,'192.168.64.1',2,15,43040,NULL,'Envoy Proxy: Filesystem, reopen failed rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dn4xiyp9aqyq2j',1,'Admin',1672319399,'192.168.64.1',2,15,43039,NULL,'Envoy Proxy: Filesystem, write completed rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901do4xiy5h9na95k',1,'Admin',1672319399,'192.168.64.1',2,15,43038,NULL,'Envoy Proxy: Filesystem, write failed rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dp4xiy6r910egq',1,'Admin',1672319399,'192.168.64.1',2,15,43018,NULL,'Envoy Proxy: Get node metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz901dq4xiyddei19xx',1,'Admin',1672319399,'192.168.64.1',2,15,43037,NULL,'Envoy Proxy: Listeners, added','clc93sisl00004xiyevwovlv0',''),('clc93siz901dr4xiyz1lbht83',1,'Admin',1672319399,'192.168.64.1',2,15,43036,NULL,'Envoy Proxy: Listeners, create failure','clc93sisl00004xiyevwovlv0',''),('clc93siz901ds4xiykcoog95h',1,'Admin',1672319399,'192.168.64.1',2,15,43035,NULL,'Envoy Proxy: Listeners, create success','clc93sisl00004xiyevwovlv0',''),('clc93siz901dt4xiyrif1xjwz',1,'Admin',1672319399,'192.168.64.1',2,15,43032,NULL,'Envoy Proxy: Listeners, stopped','clc93sisl00004xiyevwovlv0',''),('clc93siz901du4xiyzv6qnouy',1,'Admin',1672319399,'192.168.64.1',2,15,43033,NULL,'Envoy Proxy: Listeners, active','clc93sisl00004xiyevwovlv0',''),('clc93siz901dv4xiyrvwt70ph',1,'Admin',1672319399,'192.168.64.1',2,15,43020,NULL,'Envoy Proxy: Listeners, draining','clc93sisl00004xiyevwovlv0',''),('clc93siz901dw4xiy83saba5j',1,'Admin',1672319399,'192.168.64.1',2,15,43031,NULL,'Envoy Proxy: Listener, warming','clc93sisl00004xiyevwovlv0',''),('clc93siz901dx4xiyt4etycju',1,'Admin',1672319399,'192.168.64.1',2,15,43030,NULL,'Envoy Proxy: Listener manager, initialized','clc93sisl00004xiyevwovlv0',''),('clc93siz901dy4xiy9u7ojlum',1,'Admin',1672319399,'192.168.64.1',2,15,43029,NULL,'Envoy Proxy: Server concurrency','clc93sisl00004xiyevwovlv0',''),('clc93siz901dz4xiyogw5n03e',1,'Admin',1672319399,'192.168.64.1',2,15,43028,NULL,'Envoy Proxy: Certificate expiration, day before','clc93sisl00004xiyevwovlv0',''),('clc93siz901e04xiyirbvycwx',1,'Admin',1672319399,'192.168.64.1',2,15,43027,NULL,'Envoy Proxy: Server live','clc93sisl00004xiyevwovlv0',''),('clc93siz901e14xiyn9dpo5va',1,'Admin',1672319399,'192.168.64.1',2,15,43026,NULL,'Envoy Proxy: Memory allocated','clc93sisl00004xiyevwovlv0',''),('clc93siz901e24xiylk665eki',1,'Admin',1672319399,'192.168.64.1',2,15,43025,NULL,'Envoy Proxy: Memory heap size','clc93sisl00004xiyevwovlv0',''),('clc93siz901e34xiywsdop3qp',1,'Admin',1672319399,'192.168.64.1',2,15,43024,NULL,'Envoy Proxy: Memory physical size','clc93sisl00004xiyevwovlv0',''),('clc93siz901e44xiyyx9atrfx',1,'Admin',1672319399,'192.168.64.1',2,15,43023,NULL,'Envoy Proxy: Connections, parent','clc93sisl00004xiyevwovlv0',''),('clc93siz901e54xiy30ri7a9g',1,'Admin',1672319399,'192.168.64.1',2,15,43022,NULL,'Envoy Proxy: Server state','clc93sisl00004xiyevwovlv0',''),('clc93siz901e64xiyiadlb3mp',1,'Admin',1672319399,'192.168.64.1',2,15,43021,NULL,'Envoy Proxy: Connections, total','clc93sisl00004xiyevwovlv0',''),('clc93siz901e74xiysgnxvt82',1,'Admin',1672319399,'192.168.64.1',2,15,43046,NULL,'Envoy Proxy: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz901e84xiyuxpx3f99',1,'Admin',1672319399,'192.168.64.1',2,15,43095,NULL,'Consul: ACL: resolves, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901e94xiyghklmddv',1,'Admin',1672319399,'192.168.64.1',2,15,43121,NULL,'Consul: Catalog: deregister, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ea4xiy3yqjyzle',1,'Admin',1672319399,'192.168.64.1',2,15,43111,NULL,'Consul: Catalog: register, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901eb4xiyl2xwlx8c',1,'Admin',1672319399,'192.168.64.1',2,15,43113,NULL,'Consul: Number of check monitors','clc93sisl00004xiyevwovlv0',''),('clc93siz901ec4xiy92vjpsdt',1,'Admin',1672319399,'192.168.64.1',2,15,43112,NULL,'Consul: Number of checks','clc93sisl00004xiyevwovlv0',''),('clc93siz901ed4xiyhr3suxvm',1,'Admin',1672319399,'192.168.64.1',2,15,43114,NULL,'Consul: Client RPC, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901ee4xiygr8n5ivr',1,'Admin',1672319399,'192.168.64.1',2,15,43115,NULL,'Consul: Client RPC failed ,per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901ef4xiyuvf4p0xu',1,'Admin',1672319399,'192.168.64.1',2,15,43116,NULL,'Consul: Process CPU seconds, total','clc93sisl00004xiyevwovlv0',''),('clc93siz901eg4xiyb5d90ys5',1,'Admin',1672319399,'192.168.64.1',2,15,43117,NULL,'Consul: GC pause, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901eh4xiy89p90t8f',1,'Admin',1672319399,'192.168.64.1',2,15,43118,NULL,'Consul: GC pause, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901ei4xiybrcobwo4',1,'Admin',1672319399,'192.168.64.1',2,15,43081,NULL,'Consul: Get local services','clc93sisl00004xiyevwovlv0',''),('clc93siz901ej4xiyfwyegcms',1,'Admin',1672319399,'192.168.64.1',2,15,43119,NULL,'Consul: Get local services check','clc93sisl00004xiyevwovlv0',''),('clc93siz901ek4xiylfyt9936',1,'Admin',1672319399,'192.168.64.1',2,15,43083,NULL,'Consul: Get instance metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz901el4xiyeta2v2c0',1,'Admin',1672319399,'192.168.64.1',2,15,43082,NULL,'Consul: Get node info','clc93sisl00004xiyevwovlv0',''),('clc93siz901em4xiyuffbexml',1,'Admin',1672319399,'192.168.64.1',2,15,43110,NULL,'Consul: Goroutine count','clc93sisl00004xiyevwovlv0',''),('clc93siz901en4xiy9row15qi',1,'Admin',1672319399,'192.168.64.1',2,15,43120,NULL,'Consul: KV store: apply, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901eo4xiyiue0d4mx',1,'Admin',1672319399,'192.168.64.1',2,15,43122,NULL,'Consul: KV store: apply, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901ep4xiy2q339lum',1,'Admin',1672319399,'192.168.64.1',2,15,43123,NULL,'Consul: KV store: apply, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901eq4xiyg1r0rxuo',1,'Admin',1672319399,'192.168.64.1',2,15,43124,NULL,'Consul: Memberlist: degraded','clc93sisl00004xiyevwovlv0',''),('clc93siz901er4xiyhabvtcs7',1,'Admin',1672319399,'192.168.64.1',2,15,43125,NULL,'Consul: Memberlist: gossip, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901es4xiy5jyfyqsl',1,'Admin',1672319399,'192.168.64.1',2,15,43126,NULL,'Consul: Memberlist: gossip, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901et4xiy80d1m312',1,'Admin',1672319399,'192.168.64.1',2,15,43127,NULL,'Consul: Memberlist: health score','clc93sisl00004xiyevwovlv0',''),('clc93siz901eu4xiy16c6qvxt',1,'Admin',1672319399,'192.168.64.1',2,15,43128,NULL,'Consul: Memberlist: msg alive','clc93sisl00004xiyevwovlv0',''),('clc93siz901ev4xiyrpxotkbf',1,'Admin',1672319399,'192.168.64.1',2,15,43129,NULL,'Consul: Memberlist: msg dead','clc93sisl00004xiyevwovlv0',''),('clc93siz901ew4xiy0eb7qquv',1,'Admin',1672319399,'192.168.64.1',2,15,43130,NULL,'Consul: Memberlist: msg suspect','clc93sisl00004xiyevwovlv0',''),('clc93siz901ex4xiyrlcxaw2f',1,'Admin',1672319399,'192.168.64.1',2,15,43131,NULL,'Consul: Memberlist: probe node, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901ey4xiysmsseyy3',1,'Admin',1672319399,'192.168.64.1',2,15,43108,NULL,'Consul: Memberlist: probe node, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901ez4xiygrozoqqh',1,'Admin',1672319399,'192.168.64.1',2,15,43109,NULL,'Consul: Memberlist: push pull node, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901f04xiy4a0i5xyd',1,'Admin',1672319399,'192.168.64.1',2,15,43097,NULL,'Consul: Memberlist: push pull node, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901f14xiytitlgxpc',1,'Admin',1672319399,'192.168.64.1',2,15,43107,NULL,'Consul: TCP connections, accepted per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f24xiyglggqa2k',1,'Admin',1672319399,'192.168.64.1',2,15,43085,NULL,'Consul: TCP connections, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f34xiy1tk3uekc',1,'Admin',1672319399,'192.168.64.1',2,15,43086,NULL,'Consul: TCP send bytes, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f44xiyo37r64xz',1,'Admin',1672319399,'192.168.64.1',2,15,43087,NULL,'Consul: UDP received bytes, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f54xiyfb1t2c0s',1,'Admin',1672319399,'192.168.64.1',2,15,43088,NULL,'Consul: UDP sent bytes, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f64xiyc1che7i0',1,'Admin',1672319399,'192.168.64.1',2,15,43089,NULL,'Consul: Open file descriptors, max','clc93sisl00004xiyevwovlv0',''),('clc93siz901f74xiy2oh38csj',1,'Admin',1672319399,'192.168.64.1',2,15,43090,NULL,'Consul: Open file descriptors','clc93sisl00004xiyevwovlv0',''),('clc93siz901f84xiya260acsf',1,'Admin',1672319399,'192.168.64.1',2,15,43091,NULL,'Consul: RSS memory usage','clc93sisl00004xiyevwovlv0',''),('clc93siz901f94xiyk819dbe5',1,'Admin',1672319399,'192.168.64.1',2,15,43092,NULL,'Consul: Role','clc93sisl00004xiyevwovlv0',''),('clc93siz901fa4xiywsjxhvrv',1,'Admin',1672319399,'192.168.64.1',2,15,43093,NULL,'Consul: Serf member: failed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fb4xiyzhxtjxye',1,'Admin',1672319399,'192.168.64.1',2,15,43094,NULL,'Consul: Serf member: flap, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fc4xiyslgfoyc0',1,'Admin',1672319399,'192.168.64.1',2,15,43084,NULL,'Consul: Serf member: join, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fd4xiyikzn34pz',1,'Admin',1672319399,'192.168.64.1',2,15,43096,NULL,'Consul: Serf member: left, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fe4xiyo51h9bdn',1,'Admin',1672319399,'192.168.64.1',2,15,43098,NULL,'Consul: Serf member: update, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ff4xiymtuo6j04',1,'Admin',1672319399,'192.168.64.1',2,15,43099,NULL,'Consul: Number of services','clc93sisl00004xiyevwovlv0',''),('clc93siz901fg4xiyb6wv3wut',1,'Admin',1672319399,'192.168.64.1',2,15,43100,NULL,'Consul: Snapshot: append line, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901fh4xiyn0c8uo6m',1,'Admin',1672319399,'192.168.64.1',2,15,43101,NULL,'Consul: Snapshot: append line, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901fi4xiytyc1esuv',1,'Admin',1672319399,'192.168.64.1',2,15,43102,NULL,'Consul: Snapshot: append line, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fj4xiyvpaplckr',1,'Admin',1672319399,'192.168.64.1',2,15,43103,NULL,'Consul: Snapshot: compact, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901fk4xiyrqzz30qd',1,'Admin',1672319399,'192.168.64.1',2,15,43104,NULL,'Consul: Snapshot: compact, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901fl4xiyy13a11kb',1,'Admin',1672319399,'192.168.64.1',2,15,43105,NULL,'Consul: Snapshot: compact, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fm4xiya7uvj087',1,'Admin',1672319399,'192.168.64.1',2,15,43106,NULL,'Consul: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz901fn4xiyy8x1s89e',1,'Admin',1672319399,'192.168.64.1',2,15,43132,NULL,'Consul: Virtual memory size','clc93sisl00004xiyevwovlv0',''),('clc93siz901fo4xiy4eznxkj4',1,'Admin',1672319399,'192.168.64.1',2,15,43156,NULL,'Consul cluster: Get services','clc93sisl00004xiyevwovlv0',''),('clc93siz901fp4xiyr6w373rq',1,'Admin',1672319399,'192.168.64.1',2,15,43157,NULL,'Consul cluster: Get nodes Serf health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901fq4xiyr7m6b62m',1,'Admin',1672319399,'192.168.64.1',2,15,43158,NULL,'Consul cluster: Cluster leader','clc93sisl00004xiyevwovlv0',''),('clc93siz901fr4xiy1ge38l2h',1,'Admin',1672319399,'192.168.64.1',2,15,43159,NULL,'Consul cluster: Get nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz901fs4xiydqw8dnyb',1,'Admin',1672319399,'192.168.64.1',2,15,43160,NULL,'Consul cluster: Nodes: peers','clc93sisl00004xiyevwovlv0',''),('clc93siz901ft4xiy65v9yk1p',1,'Admin',1672319399,'192.168.64.1',2,15,43161,NULL,'Consul: Nodes: critical','clc93sisl00004xiyevwovlv0',''),('clc93siz901fu4xiygplzl376',1,'Admin',1672319399,'192.168.64.1',2,15,43162,NULL,'Consul: Nodes: passing','clc93sisl00004xiyevwovlv0',''),('clc93siz901fv4xiyuepc4on3',1,'Admin',1672319399,'192.168.64.1',2,15,43163,NULL,'Consul: Nodes: total','clc93sisl00004xiyevwovlv0',''),('clc93siz901fw4xiy6mryml41',1,'Admin',1672319399,'192.168.64.1',2,15,43164,NULL,'Consul: Nodes: warning','clc93sisl00004xiyevwovlv0',''),('clc93siz901fx4xiye0g1577k',1,'Admin',1672319399,'192.168.64.1',2,15,43165,NULL,'Consul: Services: total','clc93sisl00004xiyevwovlv0',''),('clc93siz901fy4xiyxakiuzt4',1,'Admin',1672319399,'192.168.64.1',2,15,44294,NULL,'Meraki: Get data','clc93sisl00004xiyevwovlv0',''),('clc93siz901fz4xiy4tr14svc',1,'Admin',1672319399,'192.168.64.1',2,15,44301,NULL,'Meraki: Data item errors','clc93sisl00004xiyevwovlv0',''),('clc93siz901g04xiyr5rzmpt8',1,'Admin',1672319399,'192.168.64.1',2,15,44302,NULL,'Meraki: public ip','clc93sisl00004xiyevwovlv0',''),('clc93siz901g14xiyei5pr90i',1,'Admin',1672319399,'192.168.64.1',2,15,44303,NULL,'Meraki: status','clc93sisl00004xiyevwovlv0',''),('clc93siz901g24xiyj8ujyg5w',1,'Admin',1672319399,'192.168.64.1',2,15,44295,NULL,'Meraki: Get device data','clc93sisl00004xiyevwovlv0',''),('clc93siz901g34xiymc65isih',1,'Admin',1672319399,'192.168.64.1',2,15,44304,NULL,'Meraki: Device data item errors','clc93sisl00004xiyevwovlv0',''),('clc93siz901g44xiyqicbhtzj',1,'Admin',1672319399,'192.168.64.1',2,15,44296,NULL,'Meraki: Get list of adaptive policy aggregate statistics','clc93sisl00004xiyevwovlv0',''),('clc93siz901g54xiyxxz2m2kc',1,'Admin',1672319399,'192.168.64.1',2,15,44297,NULL,'Meraki: Get list of configuration changes','clc93sisl00004xiyevwovlv0',''),('clc93siz901g64xiy8yv4ktf7',1,'Admin',1672319399,'192.168.64.1',2,15,44298,NULL,'Meraki: Get licenses info','clc93sisl00004xiyevwovlv0',''),('clc93siz901g74xiy6u9nze5n',1,'Admin',1672319399,'192.168.64.1',2,15,44299,NULL,'Meraki: Get list of the networks','clc93sisl00004xiyevwovlv0',''),('clc93siz901g84xiykhxu4vw2',1,'Admin',1672319399,'192.168.64.1',2,15,44305,NULL,'Meraki: Networks item errors','clc93sisl00004xiyevwovlv0',''),('clc93siz901g94xiynysbwgs0',1,'Admin',1672319399,'192.168.64.1',2,15,44300,NULL,'Meraki: Get list of the vpn stats','clc93sisl00004xiyevwovlv0',''),('clc93siz901ga4xiy3211jb0m',1,'Admin',1672319399,'192.168.64.1',2,15,44306,NULL,'Meraki: VPN item errors','clc93sisl00004xiyevwovlv0',''),('clc93siz901gb4xiy4czesf4v',1,'Admin',1672319399,'192.168.64.1',2,15,44307,NULL,'Meraki: License expire','clc93sisl00004xiyevwovlv0',''),('clc93siz901gc4xiyhe3lf7pu',1,'Admin',1672319399,'192.168.64.1',2,15,44308,NULL,'Meraki: License status','clc93sisl00004xiyevwovlv0',''),('clc93siz901gd4xiy7lk1udgq',1,'Admin',1672319399,'192.168.64.1',2,15,44309,NULL,'Meraki: Policies','clc93sisl00004xiyevwovlv0',''),('clc93siz901ge4xiyd2s57d46',1,'Admin',1672319399,'192.168.64.1',2,15,44310,NULL,'Meraki: Allow policies','clc93sisl00004xiyevwovlv0',''),('clc93siz901gf4xiy4x4eitj5',1,'Admin',1672319399,'192.168.64.1',2,15,44311,NULL,'Meraki: Custom ACLs','clc93sisl00004xiyevwovlv0',''),('clc93siz901gg4xiydz3c6aac',1,'Admin',1672319399,'192.168.64.1',2,15,44312,NULL,'Meraki: Deny policies','clc93sisl00004xiyevwovlv0',''),('clc93siz901gh4xiyai32aeqn',1,'Admin',1672319399,'192.168.64.1',2,15,44313,NULL,'Meraki: Groups','clc93sisl00004xiyevwovlv0',''),('clc93siz901gi4xiyzkycej8q',1,'Admin',1672319399,'192.168.64.1',2,15,44381,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz901gj4xiyqjs4nh71',1,'Admin',1672319399,'192.168.64.1',2,15,44382,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz901gk4xiyd2e0jyff',1,'Admin',1672319399,'192.168.64.1',2,15,44383,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz901gl4xiy7eep2htd',1,'Admin',1672319399,'192.168.64.1',2,15,44384,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz901gm4xiyru0hl5ms',1,'Admin',1672319399,'192.168.64.1',2,15,44385,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz901gn4xiynvslap04',1,'Admin',1672319399,'192.168.64.1',2,15,44386,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz901go4xiyh4so8zaz',1,'Admin',1672319399,'192.168.64.1',2,15,44387,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901gp4xiynwjreir5',1,'Admin',1672319399,'192.168.64.1',2,15,44388,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901gq4xiyknvs87vl',1,'Admin',1672319399,'192.168.64.1',2,15,44389,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz901gr4xiyakvjlw7j',1,'Admin',1672319399,'192.168.64.1',2,15,44390,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz901gs4xiyqasrv31l',1,'Admin',1672319399,'192.168.64.1',2,15,44391,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz901gt4xiy75v8fh0d',1,'Admin',1672319399,'192.168.64.1',2,15,44392,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz901gu4xiy448odwk2',1,'Admin',1672319399,'192.168.64.1',2,15,44393,NULL,'Uptime (snmp)','clc93sisl00004xiyevwovlv0',''),('clc93siz901gv4xiy4xsl42jt',1,'Admin',1672319399,'192.168.64.1',2,15,44394,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01gw4xiy4wqgavu2',1,'Admin',1672319399,'192.168.64.1',2,30,10075,NULL,'FreeBSD by Zabbix agent','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01gx4xiy18ddhw3u',1,'Admin',1672319399,'192.168.64.1',2,30,10077,NULL,'HP-UX by Zabbix agent','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01gy4xiyzmy0xids',1,'Admin',1672319399,'192.168.64.1',2,30,10093,NULL,'FTP Service','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01gz4xiy6ibq4avu',1,'Admin',1672319399,'192.168.64.1',2,30,10169,NULL,'Generic Java JMX','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h04xiy72i06rg3',1,'Admin',1672319399,'192.168.64.1',2,30,10183,NULL,'EtherLike-MIB by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h14xiyv07ahcnx',1,'Admin',1672319399,'192.168.64.1',2,30,10185,NULL,'HOST-RESOURCES-MIB by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h24xiydfa2lndm',1,'Admin',1672319399,'192.168.64.1',2,30,10204,NULL,'Generic by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h34xiyu5r2gqfl',1,'Admin',1672319399,'192.168.64.1',2,30,10215,NULL,'Cisco OLD-CISCO-CPU-MIB by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h44xiy6lp4wlk2',1,'Admin',1672319399,'192.168.64.1',2,30,10220,NULL,'Cisco IOS prior to 12.0_3_T by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h54xiyjhrzxxx4',1,'Admin',1672319399,'192.168.64.1',2,30,10221,NULL,'Dell Force S-Series by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h64xiycv094hcp',1,'Admin',1672319399,'192.168.64.1',2,30,10222,NULL,'D-Link DES 7200 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h74xiyita957kq',1,'Admin',1672319399,'192.168.64.1',2,30,10223,NULL,'D-Link DES_DGS Switch by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h84xiy71h1od2k',1,'Admin',1672319399,'192.168.64.1',2,30,10224,NULL,'Extreme EXOS by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h94xiyuo88nll7',1,'Admin',1672319399,'192.168.64.1',2,30,10227,NULL,'HP Comware HH3C by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01ha4xiy30y3aoqi',1,'Admin',1672319399,'192.168.64.1',2,30,10253,NULL,'Cisco IOS versions 12.0_3_T-12.2_3.5 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hb4xiywrplutxu',1,'Admin',1672319399,'192.168.64.1',2,30,10255,NULL,'Dell iDRAC by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hc4xiy4x9rgi1o',1,'Admin',1672319399,'192.168.64.1',2,30,10304,NULL,'Cisco UCS by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hd4xiysqfuqdl2',1,'Admin',1672319399,'192.168.64.1',2,30,10305,NULL,'HOST-RESOURCES-MIB CPU by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01he4xiy8apkt114',1,'Admin',1672319399,'192.168.64.1',2,30,10306,NULL,'HOST-RESOURCES-MIB memory by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hf4xiykkoelb6q',1,'Admin',1672319399,'192.168.64.1',2,30,10307,NULL,'HOST-RESOURCES-MIB storage by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hg4xiycioeup7q',1,'Admin',1672319399,'192.168.64.1',2,30,10308,NULL,'HAProxy by Zabbix agent','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hh4xiyd4a5u6qy',1,'Admin',1672319399,'192.168.64.1',2,30,10309,NULL,'HAProxy by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hi4xiy2bnt8eza',1,'Admin',1672319399,'192.168.64.1',2,30,10318,NULL,'Docker by Zabbix agent 2','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hj4xiy2jecqu0a',1,'Admin',1672319399,'192.168.64.1',2,30,10322,NULL,'Elasticsearch Cluster by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hk4xiycs3kl386',1,'Admin',1672319399,'192.168.64.1',2,30,10323,NULL,'ClickHouse by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hl4xiywr4g1qbi',1,'Admin',1672319399,'192.168.64.1',2,30,10324,NULL,'Etcd by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hm4xiyj5mcja1e',1,'Admin',1672319399,'192.168.64.1',2,30,10362,NULL,'GitLab by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hn4xiy1ck7y5ev',1,'Admin',1672319399,'192.168.64.1',2,30,10363,NULL,'Hadoop by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01ho4xiyeg3wq5k1',1,'Admin',1672319399,'192.168.64.1',2,30,10365,NULL,'HashiCorp Vault by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hp4xiypt4e9buv',1,'Admin',1672319399,'192.168.64.1',2,30,10380,NULL,'Hikvision camera by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hq4xiysl729i8d',1,'Admin',1672319399,'192.168.64.1',2,30,10414,NULL,'Cloudflare by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hr4xiy3m5idqa8',1,'Admin',1672319399,'192.168.64.1',2,30,10417,NULL,'GridGain by JMX','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hs4xiyx8h7vkkv',1,'Admin',1672319399,'192.168.64.1',2,30,10419,NULL,'F5 Big-IP by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01ht4xiyypyrha39',1,'Admin',1672319399,'192.168.64.1',2,30,10434,NULL,'Cisco UCS Manager by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hu4xiyvyso9ww9',1,'Admin',1672319399,'192.168.64.1',2,30,10435,NULL,'DELL PowerEdge R720 by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hv4xiyzp8gmjos',1,'Admin',1672319399,'192.168.64.1',2,30,10436,NULL,'DELL PowerEdge R720 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hw4xiy7v7o7zqd',1,'Admin',1672319399,'192.168.64.1',2,30,10437,NULL,'DELL PowerEdge R740 by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hx4xiy6m0c0lkn',1,'Admin',1672319399,'192.168.64.1',2,30,10438,NULL,'DELL PowerEdge R740 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hy4xiyuia8m9h7',1,'Admin',1672319399,'192.168.64.1',2,30,10439,NULL,'DELL PowerEdge R820 by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hz4xiya0ffwo6a',1,'Admin',1672319399,'192.168.64.1',2,30,10440,NULL,'DELL PowerEdge R820 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i04xiykmn1ieir',1,'Admin',1672319399,'192.168.64.1',2,30,10441,NULL,'DELL PowerEdge R840 by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i14xiyovnqqbls',1,'Admin',1672319399,'192.168.64.1',2,30,10442,NULL,'DELL PowerEdge R840 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i24xiyx0jummz2',1,'Admin',1672319399,'192.168.64.1',2,30,10519,NULL,'CockroachDB by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i34xiy18air0n8',1,'Admin',1672319399,'192.168.64.1',2,30,10520,NULL,'Envoy Proxy by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i44xiyxcza8dkc',1,'Admin',1672319399,'192.168.64.1',2,30,10521,NULL,'HashiCorp Consul Node by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i54xiyw332z9xn',1,'Admin',1672319399,'192.168.64.1',2,30,10522,NULL,'HashiCorp Consul Cluster by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i64xiy5m5mdpor',1,'Admin',1672319399,'192.168.64.1',2,30,10546,NULL,'Cisco Meraki dashboard by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i74xiy6opu6jtz',1,'Admin',1672319399,'192.168.64.1',2,30,10547,NULL,'Cisco Meraki device by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i84xiyhar6up7a',1,'Admin',1672319399,'192.168.64.1',2,30,10548,NULL,'Cisco Meraki organization by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i94xiyi1wc9k90',1,'Admin',1672319399,'192.168.64.1',2,30,10551,NULL,'Cisco Nexus 9000 Series by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93snar00017kiyxz15etjg',1,'Admin',1672319405,'192.168.64.1',2,36,27079,NULL,'Interface {#IFDESCR}: Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snar00027kiyutjlx0jy',1,'Admin',1672319405,'192.168.64.1',2,36,27080,NULL,'Interface {#IFDESCR}: Interface type','clc93snar00007kiypalxeeen',''),('clc93snar00037kiyb29tdx2w',1,'Admin',1672319405,'192.168.64.1',2,36,27081,NULL,'Interface {#IFDESCR}: Speed','clc93snar00007kiypalxeeen',''),('clc93snar00047kiy5rhrtyki',1,'Admin',1672319405,'192.168.64.1',2,36,27082,NULL,'Interface {#IFDESCR}: Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snar00057kiytnumapza',1,'Admin',1672319405,'192.168.64.1',2,36,27083,NULL,'Interface {#IFDESCR}: Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snar00067kiys9kb3hf9',1,'Admin',1672319405,'192.168.64.1',2,36,27084,NULL,'Interface {#IFDESCR}: Bits received','clc93snar00007kiypalxeeen',''),('clc93snar00077kiycsapunbd',1,'Admin',1672319405,'192.168.64.1',2,36,27085,NULL,'Interface {#IFDESCR}: Bits sent','clc93snar00007kiypalxeeen',''),('clc93snar00087kiynauekgoh',1,'Admin',1672319405,'192.168.64.1',2,36,27086,NULL,'Interface {#IFDESCR}: Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snar00097kiym5gs9syw',1,'Admin',1672319405,'192.168.64.1',2,36,27087,NULL,'Interface {#IFDESCR}: Operational status','clc93snar00007kiypalxeeen',''),('clc93snar000a7kiy9tq3ji23',1,'Admin',1672319405,'192.168.64.1',2,36,27099,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snar000b7kiydskinkrj',1,'Admin',1672319405,'192.168.64.1',2,36,27100,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snar000c7kiy0kj0jbun',1,'Admin',1672319405,'192.168.64.1',2,36,27101,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snar000d7kiytr8i8v5h',1,'Admin',1672319405,'192.168.64.1',2,36,27102,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snar000e7kiyvevxh5tu',1,'Admin',1672319405,'192.168.64.1',2,36,27103,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snar000f7kiyu1xcr8c7',1,'Admin',1672319405,'192.168.64.1',2,36,27104,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snar000g7kiyoo2pmq5k',1,'Admin',1672319405,'192.168.64.1',2,36,27105,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snas000h7kiyftwbs4z0',1,'Admin',1672319405,'192.168.64.1',2,36,27106,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas000i7kiyfyde9btv',1,'Admin',1672319405,'192.168.64.1',2,36,27107,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snas000j7kiy2oy6kgng',1,'Admin',1672319405,'192.168.64.1',2,36,27119,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snas000k7kiy30ncyhv2',1,'Admin',1672319405,'192.168.64.1',2,36,27120,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snas000l7kiykyhjdug1',1,'Admin',1672319405,'192.168.64.1',2,36,27121,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snas000m7kiyski9nwc9',1,'Admin',1672319405,'192.168.64.1',2,36,27122,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snas000n7kiy4c7hnqil',1,'Admin',1672319405,'192.168.64.1',2,36,27123,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas000o7kiywjtwalvq',1,'Admin',1672319405,'192.168.64.1',2,36,27124,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snas000p7kiyquabuz75',1,'Admin',1672319405,'192.168.64.1',2,36,27125,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snas000q7kiywrfekuz9',1,'Admin',1672319405,'192.168.64.1',2,36,27126,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas000r7kiye39lsfzm',1,'Admin',1672319405,'192.168.64.1',2,36,27127,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snas000s7kiy9uhg9b2n',1,'Admin',1672319405,'192.168.64.1',2,36,27748,NULL,'{#ENT_NAME}: Hardware version(revision)','clc93snar00007kiypalxeeen',''),('clc93snas000t7kiy26w2zdau',1,'Admin',1672319405,'192.168.64.1',2,36,27749,NULL,'{#ENT_NAME}: Operating system','clc93snar00007kiypalxeeen',''),('clc93snas000u7kiybmi72j6q',1,'Admin',1672319405,'192.168.64.1',2,36,27750,NULL,'{#ENT_NAME}: Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snas000v7kiyd2k3nxo4',1,'Admin',1672319405,'192.168.64.1',2,36,27751,NULL,'{#ENT_NAME}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas000w7kiyw9o1i3hq',1,'Admin',1672319405,'192.168.64.1',2,36,27753,NULL,'{#ENT_NAME}: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snas000x7kiyy1iqebyl',1,'Admin',1672319405,'192.168.64.1',2,36,30116,NULL,'{#ENT_NAME}: Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snas000y7kiy2hoi41u8',1,'Admin',1672319405,'192.168.64.1',2,36,27754,NULL,'{#ENT_NAME}: Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snas000z7kiypc23rwry',1,'Admin',1672319405,'192.168.64.1',2,36,27755,NULL,'#{#SNMPVALUE}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas00107kiyguqb7qix',1,'Admin',1672319405,'192.168.64.1',2,36,27783,NULL,'{#SENSOR_INFO}: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snas00117kiykdu3asgs',1,'Admin',1672319405,'192.168.64.1',2,36,27784,NULL,'{#SENSOR_INFO}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas00127kiy2htilk31',1,'Admin',1672319405,'192.168.64.1',2,36,27785,NULL,'{#ENT_NAME}: Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snas00137kiyhhuyg0cb',1,'Admin',1672319405,'192.168.64.1',2,36,27786,NULL,'{#SNMPVALUE}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas00147kiyz3a7ipa7',1,'Admin',1672319405,'192.168.64.1',2,36,27787,NULL,'{#SNMPVALUE}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas00157kiyuz7j6ntg',1,'Admin',1672319405,'192.168.64.1',2,36,28894,NULL,'{#SNMPVALUE}: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snas00167kiy8lqixt2u',1,'Admin',1672319405,'192.168.64.1',2,36,30118,NULL,'{#SNMPVALUE}: Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snas00177kiy2czvvydy',1,'Admin',1672319405,'192.168.64.1',2,36,27821,NULL,'{#SENSOR_INFO}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas00187kiywoexeo9l',1,'Admin',1672319405,'192.168.64.1',2,36,27822,NULL,'{#SNMPVALUE}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas00197kiy0medm61e',1,'Admin',1672319405,'192.168.64.1',2,36,27823,NULL,'{#SNMPVALUE}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas001a7kiyp6dnm79o',1,'Admin',1672319405,'192.168.64.1',2,36,28150,NULL,'{#SENSOR_INFO}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001b7kiy6zum79v8',1,'Admin',1672319405,'192.168.64.1',2,36,28153,NULL,'#{#SNMPVALUE}: Used memory','clc93snar00007kiypalxeeen',''),('clc93snas001c7kiye4lt4nyo',1,'Admin',1672319405,'192.168.64.1',2,36,30113,NULL,'#{#SNMPVALUE}: Available memory','clc93snar00007kiypalxeeen',''),('clc93snas001d7kiytxjtr92u',1,'Admin',1672319405,'192.168.64.1',2,36,30114,NULL,'#{#SNMPVALUE}: Total memory','clc93snar00007kiypalxeeen',''),('clc93snas001e7kiy56y79984',1,'Admin',1672319405,'192.168.64.1',2,36,30115,NULL,'#{#SNMPVALUE}: Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snas001f7kiybl2icprd',1,'Admin',1672319405,'192.168.64.1',2,36,28154,NULL,'{#ENT_DESCR}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas001g7kiyp19a3egi',1,'Admin',1672319405,'192.168.64.1',2,36,28155,NULL,'{#ENT_DESCR}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas001h7kiyg5ce5j7j',1,'Admin',1672319405,'192.168.64.1',2,36,28156,NULL,'{#ENT_DESCR}: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snas001i7kiymnkggytj',1,'Admin',1672319405,'192.168.64.1',2,36,28157,NULL,'{#ENT_NAME}: Hardware version(revision)','clc93snar00007kiypalxeeen',''),('clc93snas001j7kiyzzgu6mbb',1,'Admin',1672319405,'192.168.64.1',2,36,28158,NULL,'{#ENT_NAME}: Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snas001k7kiy6g4vtlfd',1,'Admin',1672319405,'192.168.64.1',2,36,28404,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001l7kiy4i2n143g',1,'Admin',1672319405,'192.168.64.1',2,36,28405,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snas001m7kiyl17ca92j',1,'Admin',1672319405,'192.168.64.1',2,36,33621,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001n7kiycgj523km',1,'Admin',1672319405,'192.168.64.1',2,36,28406,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001o7kiyb6vuoez8',1,'Admin',1672319405,'192.168.64.1',2,36,33622,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001p7kiyuu191ojk',1,'Admin',1672319405,'192.168.64.1',2,36,28407,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001q7kiyay48kauw',1,'Admin',1672319405,'192.168.64.1',2,36,33623,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001r7kiyfrwll71f',1,'Admin',1672319405,'192.168.64.1',2,36,28408,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001s7kiy364er25w',1,'Admin',1672319405,'192.168.64.1',2,36,33626,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001t7kiyeb130s5z',1,'Admin',1672319405,'192.168.64.1',2,36,28409,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001u7kiy6cca50bd',1,'Admin',1672319405,'192.168.64.1',2,36,33627,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001v7kiype1ptaj2',1,'Admin',1672319405,'192.168.64.1',2,36,33624,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001w7kiykmda6sod',1,'Admin',1672319405,'192.168.64.1',2,36,33625,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001x7kiyas7qrfqa',1,'Admin',1672319405,'192.168.64.1',2,36,28411,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas001y7kiy6bozdxzp',1,'Admin',1672319405,'192.168.64.1',2,36,28412,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas001z7kiy542ssepn',1,'Admin',1672319405,'192.168.64.1',2,36,28413,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snas00207kiyx98e9489',1,'Admin',1672319405,'192.168.64.1',2,36,28414,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snas00217kiyb2mynkj7',1,'Admin',1672319405,'192.168.64.1',2,36,28415,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snas00227kiyqnmeek99',1,'Admin',1672319405,'192.168.64.1',2,36,28416,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snas00237kiys54b2xuy',1,'Admin',1672319405,'192.168.64.1',2,36,28417,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snas00247kiy2ebr6pds',1,'Admin',1672319405,'192.168.64.1',2,36,28418,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snas00257kiy82cpina2',1,'Admin',1672319405,'192.168.64.1',2,36,28419,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snas00267kiy3ci1g1if',1,'Admin',1672319405,'192.168.64.1',2,36,28420,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snas00277kiyn109agbd',1,'Admin',1672319405,'192.168.64.1',2,36,28421,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snas00287kiy0rqplz3c',1,'Admin',1672319405,'192.168.64.1',2,36,28422,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snas00297kiyr3v48fcm',1,'Admin',1672319405,'192.168.64.1',2,36,28423,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snas002a7kiyef0tbjdi',1,'Admin',1672319405,'192.168.64.1',2,36,28424,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snas002b7kiy3t67033b',1,'Admin',1672319405,'192.168.64.1',2,36,28425,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snas002c7kiy2coeu2kb',1,'Admin',1672319405,'192.168.64.1',2,36,28474,NULL,'{#SNMPVALUE}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas002d7kiyjxwkw9ln',1,'Admin',1672319405,'192.168.64.1',2,36,28475,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas002e7kiy0w2rp9kj',1,'Admin',1672319405,'192.168.64.1',2,36,28476,NULL,'CPU: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas002f7kiy6y7qpowf',1,'Admin',1672319405,'192.168.64.1',2,36,28477,NULL,'{#PSU_DESCR}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas002g7kiyy9m8rndz',1,'Admin',1672319405,'192.168.64.1',2,36,28478,NULL,'{#FAN_DESCR}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas002h7kiyzwvhw6ff',1,'Admin',1672319405,'192.168.64.1',2,36,28479,NULL,'{#FAN_DESCR}: Fan speed, %','clc93snar00007kiypalxeeen',''),('clc93snas002i7kiydffczsl4',1,'Admin',1672319405,'192.168.64.1',2,36,28480,NULL,'{#SNMPINDEX}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snas002j7kiy9jo6akw6',1,'Admin',1672319405,'192.168.64.1',2,36,28481,NULL,'{#SNMPINDEX}: Physical disk part number','clc93snar00007kiypalxeeen',''),('clc93snas002k7kiy9sxhag3y',1,'Admin',1672319405,'192.168.64.1',2,36,29014,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snas002l7kiy2v0chn8y',1,'Admin',1672319405,'192.168.64.1',2,36,29015,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snas002m7kiyhj09goq2',1,'Admin',1672319405,'192.168.64.1',2,36,29016,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snas002n7kiye0fq58yw',1,'Admin',1672319405,'192.168.64.1',2,36,29017,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snas002o7kiyt5g99y5q',1,'Admin',1672319405,'192.168.64.1',2,36,29018,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snas002p7kiydor1na92',1,'Admin',1672319405,'192.168.64.1',2,36,29019,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snas002q7kiy7dxff1ni',1,'Admin',1672319405,'192.168.64.1',2,36,29020,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snas002r7kiyiflq8wsu',1,'Admin',1672319405,'192.168.64.1',2,36,29021,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snas002s7kiyp296vcnq',1,'Admin',1672319405,'192.168.64.1',2,36,29022,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snas002t7kiyoadgpswl',1,'Admin',1672319405,'192.168.64.1',2,36,29023,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snas002u7kiy5eadmw46',1,'Admin',1672319405,'192.168.64.1',2,36,29024,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snas002v7kiy9hcivlcn',1,'Admin',1672319405,'192.168.64.1',2,36,29025,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snas002w7kiy9szvadxy',1,'Admin',1672319405,'192.168.64.1',2,36,29026,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snas002x7kiy1uj69354',1,'Admin',1672319405,'192.168.64.1',2,36,29048,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snas002y7kiyzg812rcr',1,'Admin',1672319405,'192.168.64.1',2,36,29027,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snas002z7kiyr721jgmg',1,'Admin',1672319405,'192.168.64.1',2,36,29028,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snas00307kiyifbky8f0',1,'Admin',1672319405,'192.168.64.1',2,36,29029,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snas00317kiyoge6fiyn',1,'Admin',1672319405,'192.168.64.1',2,36,29030,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snas00327kiyardvt8ec',1,'Admin',1672319405,'192.168.64.1',2,36,29210,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snas00337kiycj81nx79',1,'Admin',1672319405,'192.168.64.1',2,36,29211,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snas00347kiym8a4wwtk',1,'Admin',1672319405,'192.168.64.1',2,36,29212,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snas00357kiyyhbgqb1n',1,'Admin',1672319405,'192.168.64.1',2,36,29213,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snas00367kiy99df549u',1,'Admin',1672319405,'192.168.64.1',2,36,44372,NULL,'{#FSNAME}: Get filesystem data','clc93snar00007kiypalxeeen',''),('clc93snas00377kiy7qwxp64z',1,'Admin',1672319405,'192.168.64.1',2,36,44373,NULL,'{#FSNAME}: Filesystem is read-only','clc93snar00007kiypalxeeen',''),('clc93snas00387kiyhenhb2ne',1,'Admin',1672319405,'192.168.64.1',2,36,29436,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snas00397kiyql8baj21',1,'Admin',1672319405,'192.168.64.1',2,36,29437,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snas003a7kiyzf36q7oy',1,'Admin',1672319405,'192.168.64.1',2,36,29438,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas003b7kiy3751ml1u',1,'Admin',1672319405,'192.168.64.1',2,36,29439,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas003c7kiyd17jiqp7',1,'Admin',1672319405,'192.168.64.1',2,36,29440,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snas003d7kiy3hjfbpvg',1,'Admin',1672319405,'192.168.64.1',2,36,29441,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snas003e7kiy9u57zone',1,'Admin',1672319405,'192.168.64.1',2,36,29442,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snas003f7kiy599zbs11',1,'Admin',1672319405,'192.168.64.1',2,36,29443,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snas003g7kiyj71agzkp',1,'Admin',1672319405,'192.168.64.1',2,36,29444,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snas003h7kiyz81khync',1,'Admin',1672319405,'192.168.64.1',2,36,29432,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snas003i7kiyr5n2aw65',1,'Admin',1672319405,'192.168.64.1',2,36,29433,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snas003j7kiyffo56n8p',1,'Admin',1672319405,'192.168.64.1',2,36,29445,NULL,'{#FSNAME}: Free space','clc93snar00007kiypalxeeen',''),('clc93snas003k7kiy6x6k49lo',1,'Admin',1672319405,'192.168.64.1',2,36,29446,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snas003l7kiyxpvytbk4',1,'Admin',1672319405,'192.168.64.1',2,36,29447,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snas003m7kiycwhge2na',1,'Admin',1672319405,'192.168.64.1',2,36,29434,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snas003n7kiyiqe6py0x',1,'Admin',1672319405,'192.168.64.1',2,36,29435,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snas003o7kiyx7dy89b6',1,'Admin',1672319405,'192.168.64.1',2,36,29448,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snas003p7kiy2be22c4o',1,'Admin',1672319405,'192.168.64.1',2,36,29449,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snas003q7kiyueq59xi4',1,'Admin',1672319405,'192.168.64.1',2,36,29450,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas003r7kiyl7voshft',1,'Admin',1672319405,'192.168.64.1',2,36,29451,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas003s7kiy4rr52gpk',1,'Admin',1672319405,'192.168.64.1',2,36,29452,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snas003t7kiyos4y27h9',1,'Admin',1672319405,'192.168.64.1',2,36,29453,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snas003u7kiyma8p76z9',1,'Admin',1672319405,'192.168.64.1',2,36,31006,NULL,'IIS: AppPool {#APPPOOL} state','clc93snar00007kiypalxeeen',''),('clc93snas003v7kiyv0lynquo',1,'Admin',1672319405,'192.168.64.1',2,36,31007,NULL,'IIS: {#APPPOOL} Uptime','clc93snar00007kiypalxeeen',''),('clc93snas003w7kiymz0i7en6',1,'Admin',1672319405,'192.168.64.1',2,36,31008,NULL,'IIS: AppPool {#APPPOOL} recycles','clc93snar00007kiypalxeeen',''),('clc93snas003x7kiyo8lmanwu',1,'Admin',1672319405,'192.168.64.1',2,36,31009,NULL,'IIS: AppPool {#APPPOOL} current queue size','clc93snar00007kiypalxeeen',''),('clc93snas003y7kiyivdsgjwn',1,'Admin',1672319405,'192.168.64.1',2,36,31048,NULL,'IIS: AppPool {#APPPOOL} state','clc93snar00007kiypalxeeen',''),('clc93snas003z7kiy5g6c0njw',1,'Admin',1672319405,'192.168.64.1',2,36,31049,NULL,'IIS: {#APPPOOL} Uptime','clc93snar00007kiypalxeeen',''),('clc93snas00407kiy58k2jnym',1,'Admin',1672319405,'192.168.64.1',2,36,31050,NULL,'IIS: AppPool {#APPPOOL} recycles','clc93snar00007kiypalxeeen',''),('clc93snas00417kiy98ur6kw6',1,'Admin',1672319405,'192.168.64.1',2,36,31051,NULL,'IIS: AppPool {#APPPOOL} current queue size','clc93snar00007kiypalxeeen',''),('clc93snas00427kiy1jvevjwq',1,'Admin',1672319405,'192.168.64.1',2,36,31370,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snas00437kiy85wmthtx',1,'Admin',1672319405,'192.168.64.1',2,36,31371,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snas00447kiyqtnrjd7s',1,'Admin',1672319405,'192.168.64.1',2,36,31372,NULL,'{#DEVNAME}: Get stats','clc93snar00007kiypalxeeen',''),('clc93snas00457kiydscnf7vg',1,'Admin',1672319405,'192.168.64.1',2,36,31379,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snas00467kiybpb3m799',1,'Admin',1672319405,'192.168.64.1',2,36,31380,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snas00477kiycgo8gs6o',1,'Admin',1672319405,'192.168.64.1',2,36,31381,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas00487kiyz7oefbey',1,'Admin',1672319405,'192.168.64.1',2,36,31382,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snas00497kiy54hkfqz3',1,'Admin',1672319405,'192.168.64.1',2,36,31383,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snas004a7kiybga9zk2n',1,'Admin',1672319405,'192.168.64.1',2,36,31384,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas004b7kiybekbq4me',1,'Admin',1672319405,'192.168.64.1',2,36,31902,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snas004c7kiycv9d3o8z',1,'Admin',1672319405,'192.168.64.1',2,36,31903,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snas004d7kiyc6lz9yo4',1,'Admin',1672319405,'192.168.64.1',2,36,31904,NULL,'{#DEVNAME}: Get stats','clc93snar00007kiypalxeeen',''),('clc93snas004e7kiy09375n85',1,'Admin',1672319405,'192.168.64.1',2,36,31932,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snas004f7kiyxzkmehsa',1,'Admin',1672319405,'192.168.64.1',2,36,31933,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snas004g7kiymdbe98e5',1,'Admin',1672319405,'192.168.64.1',2,36,31934,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas004h7kiygvb2roqn',1,'Admin',1672319405,'192.168.64.1',2,36,31935,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snas004i7kiy4125xxdh',1,'Admin',1672319405,'192.168.64.1',2,36,31936,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snas004j7kiys88kdd9k',1,'Admin',1672319405,'192.168.64.1',2,36,31937,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas004k7kiywfw2j4nc',1,'Admin',1672319405,'192.168.64.1',2,36,31905,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snas004l7kiyppdgs6bc',1,'Admin',1672319405,'192.168.64.1',2,36,31906,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snas004m7kiy85ose8id',1,'Admin',1672319405,'192.168.64.1',2,36,31907,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snas004n7kiyt0v4httc',1,'Admin',1672319405,'192.168.64.1',2,36,31908,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snas004o7kiygjrf0416',1,'Admin',1672319405,'192.168.64.1',2,36,44375,NULL,'{#FSNAME}: Get filesystem data','clc93snar00007kiypalxeeen',''),('clc93snas004p7kiyq9ceicip',1,'Admin',1672319405,'192.168.64.1',2,36,44376,NULL,'{#FSNAME}: Filesystem is read-only','clc93snar00007kiypalxeeen',''),('clc93snas004q7kiy6vct8vf9',1,'Admin',1672319405,'192.168.64.1',2,36,33467,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Available physical memory','clc93snar00007kiypalxeeen',''),('clc93snas004r7kiysemgwcu8',1,'Admin',1672319405,'192.168.64.1',2,36,33468,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Available swap space','clc93snar00007kiypalxeeen',''),('clc93snas004s7kiy6zrazyb6',1,'Admin',1672319405,'192.168.64.1',2,36,33469,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Clock difference','clc93snar00007kiypalxeeen',''),('clc93snas004t7kiyjoorga67',1,'Admin',1672319405,'192.168.64.1',2,36,33470,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Available disk space','clc93snar00007kiypalxeeen',''),('clc93snas004u7kiyi2tfl9u1',1,'Admin',1672319405,'192.168.64.1',2,36,33471,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Idle','clc93snar00007kiypalxeeen',''),('clc93snas004v7kiyl6lcpe9f',1,'Admin',1672319405,'192.168.64.1',2,36,33472,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Executors','clc93snar00007kiypalxeeen',''),('clc93snas004w7kiyx21hp4vx',1,'Admin',1672319405,'192.168.64.1',2,36,33473,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Offline cause reason','clc93snar00007kiypalxeeen',''),('clc93snas004x7kiysognefsj',1,'Admin',1672319405,'192.168.64.1',2,36,33474,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Response time average','clc93snar00007kiypalxeeen',''),('clc93snas004y7kiyxjgejla4',1,'Admin',1672319405,'192.168.64.1',2,36,33475,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snas004z7kiyjl5cbibi',1,'Admin',1672319405,'192.168.64.1',2,36,33476,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Temporarily offline','clc93snar00007kiypalxeeen',''),('clc93snas00507kiy08f617nw',1,'Admin',1672319405,'192.168.64.1',2,36,33477,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Available temp space','clc93snar00007kiypalxeeen',''),('clc93snas00517kiynf0c7wxv',1,'Admin',1672319405,'192.168.64.1',2,36,33478,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Total physical memory','clc93snar00007kiypalxeeen',''),('clc93snas00527kiyephsnjre',1,'Admin',1672319405,'192.168.64.1',2,36,33479,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Total swap space','clc93snar00007kiypalxeeen',''),('clc93snas00537kiypck257a1',1,'Admin',1672319405,'192.168.64.1',2,36,33480,NULL,'Jenkins job [{#NAME}]: Health score','clc93snar00007kiypalxeeen',''),('clc93snas00547kiy3q4bv0oj',1,'Admin',1672319405,'192.168.64.1',2,36,33481,NULL,'Jenkins job [{#NAME}]: Last Build duration','clc93snar00007kiypalxeeen',''),('clc93snas00557kiy9t1tq71o',1,'Admin',1672319405,'192.168.64.1',2,36,33482,NULL,'Jenkins job [{#NAME}]: Last Build number','clc93snar00007kiypalxeeen',''),('clc93snas00567kiy425zf91u',1,'Admin',1672319405,'192.168.64.1',2,36,33483,NULL,'Jenkins job [{#NAME}]: Last Build result','clc93snar00007kiypalxeeen',''),('clc93snas00577kiywh2072hd',1,'Admin',1672319405,'192.168.64.1',2,36,33484,NULL,'Jenkins job [{#NAME}]: Last Build timestamp','clc93snar00007kiypalxeeen',''),('clc93snas00587kiydfom34zz',1,'Admin',1672319405,'192.168.64.1',2,36,33485,NULL,'Jenkins job [{#NAME}]: Last Failed Build duration','clc93snar00007kiypalxeeen',''),('clc93snas00597kiyug36pumg',1,'Admin',1672319405,'192.168.64.1',2,36,33486,NULL,'Jenkins job [{#NAME}]: Last Failed Build number','clc93snar00007kiypalxeeen',''),('clc93snas005a7kiy74n4x6ls',1,'Admin',1672319405,'192.168.64.1',2,36,33487,NULL,'Jenkins job [{#NAME}]: Last Failed Build timestamp','clc93snar00007kiypalxeeen',''),('clc93snas005b7kiykpkxy7hr',1,'Admin',1672319405,'192.168.64.1',2,36,33488,NULL,'Jenkins job [{#NAME}]: Last Successful Build duration','clc93snar00007kiypalxeeen',''),('clc93snas005c7kiy0x0jfd0k',1,'Admin',1672319405,'192.168.64.1',2,36,33489,NULL,'Jenkins job [{#NAME}]: Last Successful Build number','clc93snar00007kiypalxeeen',''),('clc93snas005d7kiy7yhqxq30',1,'Admin',1672319405,'192.168.64.1',2,36,33490,NULL,'Jenkins job [{#NAME}]: Last Successful Build timestamp','clc93snar00007kiypalxeeen',''),('clc93snas005e7kiylandyfwh',1,'Admin',1672319405,'192.168.64.1',2,36,33552,NULL,'Data region {#JMXNAME}: Allocation, rate','clc93snar00007kiypalxeeen',''),('clc93snas005f7kiyl131dgkh',1,'Admin',1672319405,'192.168.64.1',2,36,33553,NULL,'Data region {#JMXNAME}: Checkpoint buffer size','clc93snar00007kiypalxeeen',''),('clc93snas005g7kiym9vubb5z',1,'Admin',1672319405,'192.168.64.1',2,36,33554,NULL,'Data region {#JMXNAME}: Dirty pages','clc93snar00007kiypalxeeen',''),('clc93snas005h7kiyvruys108',1,'Admin',1672319405,'192.168.64.1',2,36,33555,NULL,'Data region {#JMXNAME}: Eviction, rate','clc93snar00007kiypalxeeen',''),('clc93snas005i7kiy6u8nho7j',1,'Admin',1672319405,'192.168.64.1',2,36,33556,NULL,'Data region {#JMXNAME}: Size, max','clc93snar00007kiypalxeeen',''),('clc93snas005j7kiywmk5vcg3',1,'Admin',1672319405,'192.168.64.1',2,36,33557,NULL,'Data region {#JMXNAME}: Offheap size','clc93snar00007kiypalxeeen',''),('clc93snas005k7kiy0a5t8800',1,'Admin',1672319405,'192.168.64.1',2,36,33558,NULL,'Data region {#JMXNAME}: Offheap used size','clc93snar00007kiypalxeeen',''),('clc93snas005l7kiyz59j6z0k',1,'Admin',1672319405,'192.168.64.1',2,36,33559,NULL,'Data region {#JMXNAME}: Pages fill factor','clc93snar00007kiypalxeeen',''),('clc93snas005m7kiyrkggg3v8',1,'Admin',1672319405,'192.168.64.1',2,36,33560,NULL,'Data region {#JMXNAME}: Pages replace, rate','clc93snar00007kiypalxeeen',''),('clc93snas005n7kiyegre2enj',1,'Admin',1672319405,'192.168.64.1',2,36,33561,NULL,'Data region {#JMXNAME}: Allocated, bytes','clc93snar00007kiypalxeeen',''),('clc93snas005o7kiy05ryl865',1,'Admin',1672319405,'192.168.64.1',2,36,33562,NULL,'Data region {#JMXNAME}: Used checkpoint buffer size','clc93snar00007kiypalxeeen',''),('clc93snas005p7kiyhknxml6a',1,'Admin',1672319405,'192.168.64.1',2,36,33563,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs active, current','clc93snar00007kiypalxeeen',''),('clc93snas005q7kiy4j11guxk',1,'Admin',1672319405,'192.168.64.1',2,36,33564,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current','clc93snar00007kiypalxeeen',''),('clc93snas005r7kiytivu1iqb',1,'Admin',1672319405,'192.168.64.1',2,36,33565,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration, current','clc93snar00007kiypalxeeen',''),('clc93snas005s7kiy3vzol1zb',1,'Admin',1672319405,'192.168.64.1',2,36,33566,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current','clc93snar00007kiypalxeeen',''),('clc93snas005t7kiyjmwju09s',1,'Admin',1672319405,'192.168.64.1',2,36,33567,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Threads count, current','clc93snar00007kiypalxeeen',''),('clc93snas005u7kiy65myt2as',1,'Admin',1672319405,'192.168.64.1',2,36,33568,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current','clc93snar00007kiypalxeeen',''),('clc93snas005v7kiyj7h0yswa',1,'Admin',1672319405,'192.168.64.1',2,36,33569,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Heap memory used','clc93snar00007kiypalxeeen',''),('clc93snas005w7kiygw98cfvd',1,'Admin',1672319405,'192.168.64.1',2,36,33570,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate','clc93snar00007kiypalxeeen',''),('clc93snas005x7kiy9p01sqhm',1,'Admin',1672319405,'192.168.64.1',2,36,33571,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate','clc93snar00007kiypalxeeen',''),('clc93snas005y7kiyecydyymo',1,'Admin',1672319405,'192.168.64.1',2,36,33572,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate','clc93snar00007kiypalxeeen',''),('clc93snas005z7kiyrbilhd3h',1,'Admin',1672319405,'192.168.64.1',2,36,33573,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline','clc93snar00007kiypalxeeen',''),('clc93snas00607kiyqf3v2tqh',1,'Admin',1672319405,'192.168.64.1',2,36,33574,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline','clc93snar00007kiypalxeeen',''),('clc93snas00617kiy8a2ii366',1,'Admin',1672319405,'192.168.64.1',2,36,33575,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Client','clc93snar00007kiypalxeeen',''),('clc93snas00627kiyexkxflsm',1,'Admin',1672319405,'192.168.64.1',2,36,33576,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, total','clc93snar00007kiypalxeeen',''),('clc93snas00637kiy2w8yblks',1,'Admin',1672319405,'192.168.64.1',2,36,33577,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Server','clc93snar00007kiypalxeeen',''),('clc93snas00647kiy3aftyyfc',1,'Admin',1672319405,'192.168.64.1',2,36,33578,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Version','clc93snar00007kiypalxeeen',''),('clc93snas00657kiyttt5icep',1,'Admin',1672319405,'192.168.64.1',2,36,33579,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Local node ID','clc93snar00007kiypalxeeen',''),('clc93snas00667kiy5arvkbce',1,'Admin',1672319405,'192.168.64.1',2,36,33580,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Uptime','clc93snar00007kiypalxeeen',''),('clc93snas00677kiy74o8cyy8',1,'Admin',1672319405,'192.168.64.1',2,36,33581,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue','clc93snar00007kiypalxeeen',''),('clc93snas00687kiy4bvfh357',1,'Admin',1672319405,'192.168.64.1',2,36,33582,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate','clc93snar00007kiypalxeeen',''),('clc93snas00697kiy858uhpkj',1,'Admin',1672319405,'192.168.64.1',2,36,33584,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate','clc93snar00007kiypalxeeen',''),('clc93snas006a7kiysv3wdxtn',1,'Admin',1672319405,'192.168.64.1',2,36,33585,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator','clc93snar00007kiypalxeeen',''),('clc93snas006b7kiy9gsi7i1f',1,'Admin',1672319405,'192.168.64.1',2,36,33586,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue','clc93snar00007kiypalxeeen',''),('clc93snas006c7kiybxazf37m',1,'Admin',1672319405,'192.168.64.1',2,36,33587,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes failed','clc93snar00007kiypalxeeen',''),('clc93snas006d7kiyjz3759pe',1,'Admin',1672319405,'192.168.64.1',2,36,33588,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes joined','clc93snar00007kiypalxeeen',''),('clc93snas006e7kiyib9ob96e',1,'Admin',1672319405,'192.168.64.1',2,36,33589,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes left','clc93snar00007kiypalxeeen',''),('clc93snas006f7kiy1ykvpkxn',1,'Admin',1672319405,'192.168.64.1',2,36,33590,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate','clc93snar00007kiypalxeeen',''),('clc93snas006g7kiyd2cg1ct8',1,'Admin',1672319405,'192.168.64.1',2,36,33591,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages','clc93snar00007kiypalxeeen',''),('clc93snas006h7kiyiicdr635',1,'Admin',1672319405,'192.168.64.1',2,36,33592,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate','clc93snar00007kiypalxeeen',''),('clc93snas006i7kiyl466ht9g',1,'Admin',1672319405,'192.168.64.1',2,36,33593,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Locked keys','clc93snar00007kiypalxeeen',''),('clc93snas006j7kiy2vyg00ut',1,'Admin',1672319405,'192.168.64.1',2,36,33594,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current','clc93snar00007kiypalxeeen',''),('clc93snas006k7kiyscdymvoq',1,'Admin',1672319405,'192.168.64.1',2,36,33595,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate','clc93snar00007kiypalxeeen',''),('clc93snas006l7kiycrn7rcow',1,'Admin',1672319405,'192.168.64.1',2,36,33596,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current','clc93snar00007kiypalxeeen',''),('clc93snas006m7kiy23tawyqk',1,'Admin',1672319405,'192.168.64.1',2,36,33597,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate','clc93snar00007kiypalxeeen',''),('clc93snas006n7kiy5xb3xhmm',1,'Admin',1672319405,'192.168.64.1',2,36,33598,NULL,'Cache group [{#JMXNAME}]: Backups','clc93snar00007kiypalxeeen',''),('clc93snas006o7kiyt73ymt6v',1,'Admin',1672319405,'192.168.64.1',2,36,33599,NULL,'Cache group [{#JMXNAME}]: Caches','clc93snar00007kiypalxeeen',''),('clc93snas006p7kiy7gduroq6',1,'Admin',1672319405,'192.168.64.1',2,36,33600,NULL,'Cache group [{#JMXNAME}]: Local node partitions, moving','clc93snar00007kiypalxeeen',''),('clc93snas006q7kiygk7rllew',1,'Admin',1672319405,'192.168.64.1',2,36,33601,NULL,'Cache group [{#JMXNAME}]: Local node partitions, owning','clc93snar00007kiypalxeeen',''),('clc93snas006r7kiybfrkksle',1,'Admin',1672319405,'192.168.64.1',2,36,33602,NULL,'Cache group [{#JMXNAME}]: Local node entries, renting','clc93snar00007kiypalxeeen',''),('clc93snas006s7kiyvcgoh2sk',1,'Admin',1672319405,'192.168.64.1',2,36,33603,NULL,'Cache group [{#JMXNAME}]: Local node partitions, renting','clc93snar00007kiypalxeeen',''),('clc93snas006t7kiyj0kav6o9',1,'Admin',1672319405,'192.168.64.1',2,36,33604,NULL,'Cache group [{#JMXNAME}]: Partition copies, max','clc93snar00007kiypalxeeen',''),('clc93snas006u7kiy8kcvjhan',1,'Admin',1672319405,'192.168.64.1',2,36,33605,NULL,'Cache group [{#JMXNAME}]: Partition copies, min','clc93snar00007kiypalxeeen',''),('clc93snas006v7kiy6pipaopr',1,'Admin',1672319405,'192.168.64.1',2,36,33606,NULL,'Cache group [{#JMXNAME}]: Partitions','clc93snar00007kiypalxeeen',''),('clc93snas006w7kiycdrnm5x9',1,'Admin',1672319405,'192.168.64.1',2,36,33607,NULL,'Thread pool [{#JMXNAME}]: Pool size, core','clc93snar00007kiypalxeeen',''),('clc93snas006x7kiyseczokb1',1,'Admin',1672319405,'192.168.64.1',2,36,33608,NULL,'Thread pool [{#JMXNAME}]: Pool size, max','clc93snar00007kiypalxeeen',''),('clc93snas006y7kiyt07up3d5',1,'Admin',1672319405,'192.168.64.1',2,36,33609,NULL,'Thread pool [{#JMXNAME}]: Pool size','clc93snar00007kiypalxeeen',''),('clc93snas006z7kiy6m4278q0',1,'Admin',1672319405,'192.168.64.1',2,36,33610,NULL,'Thread pool [{#JMXNAME}]: Queue size','clc93snar00007kiypalxeeen',''),('clc93snas00707kiym4gp312d',1,'Admin',1672319405,'192.168.64.1',2,36,33611,NULL,'Cache group [{#JMXGROUP}]: Cache gets, rate','clc93snar00007kiypalxeeen',''),('clc93snas00717kiy0dl1mm78',1,'Admin',1672319405,'192.168.64.1',2,36,33612,NULL,'Cache group [{#JMXGROUP}]: Cache hits, pct','clc93snar00007kiypalxeeen',''),('clc93snas00727kiyrc01pfup',1,'Admin',1672319405,'192.168.64.1',2,36,33613,NULL,'Cache group [{#JMXGROUP}]: Cache misses, pct','clc93snar00007kiypalxeeen',''),('clc93snas00737kiy9xr2sleb',1,'Admin',1672319405,'192.168.64.1',2,36,33614,NULL,'Cache group [{#JMXGROUP}]: Cache puts, rate','clc93snar00007kiypalxeeen',''),('clc93snas00747kiyjv6i00fu',1,'Admin',1672319405,'192.168.64.1',2,36,33615,NULL,'Cache group [{#JMXGROUP}]: Cache removals, rate','clc93snar00007kiypalxeeen',''),('clc93snas00757kiy9tbgnf3m',1,'Admin',1672319405,'192.168.64.1',2,36,33616,NULL,'Cache group [{#JMXGROUP}]: Cache size','clc93snar00007kiypalxeeen',''),('clc93snas00767kiyf21hhvbw',1,'Admin',1672319405,'192.168.64.1',2,36,33617,NULL,'Cache group [{#JMXGROUP}]: Cache transaction commits, rate','clc93snar00007kiypalxeeen',''),('clc93snas00777kiyrdmlzl16',1,'Admin',1672319405,'192.168.64.1',2,36,33618,NULL,'Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate','clc93snar00007kiypalxeeen',''),('clc93snas00787kiyta6g5emc',1,'Admin',1672319405,'192.168.64.1',2,36,33619,NULL,'Cache group [{#JMXGROUP}]: Cache heap entries','clc93snar00007kiypalxeeen',''),('clc93snas00797kiyo0h421d7',1,'Admin',1672319405,'192.168.64.1',2,36,33628,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas007a7kiyom730y6c',1,'Admin',1672319405,'192.168.64.1',2,36,33629,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas007b7kiymoys5l86',1,'Admin',1672319405,'192.168.64.1',2,36,33703,NULL,'BBU {#ID} on {#LOCATION}: Health status','clc93snar00007kiypalxeeen',''),('clc93snas007c7kiyhkmmcox9',1,'Admin',1672319405,'192.168.64.1',2,36,33704,NULL,'BBU {#ID} on {#LOCATION}: Running status','clc93snar00007kiypalxeeen',''),('clc93snas007d7kiyw78eo5bt',1,'Admin',1672319405,'192.168.64.1',2,36,33705,NULL,'Controller {#ID}: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snas007e7kiyrol0o0cz',1,'Admin',1672319405,'192.168.64.1',2,36,33706,NULL,'Controller {#ID}: Health status','clc93snar00007kiypalxeeen',''),('clc93snas007f7kiykxur9e53',1,'Admin',1672319405,'192.168.64.1',2,36,33707,NULL,'Controller {#ID}: Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snas007g7kiycvwlxx0m',1,'Admin',1672319405,'192.168.64.1',2,36,33708,NULL,'Controller {#ID}: Role','clc93snar00007kiypalxeeen',''),('clc93snas007h7kiyy78u4kze',1,'Admin',1672319405,'192.168.64.1',2,36,33709,NULL,'Controller {#ID}: Running status','clc93snar00007kiypalxeeen',''),('clc93snas007i7kiyu2yakwfc',1,'Admin',1672319405,'192.168.64.1',2,36,33710,NULL,'Disk {#MODEL} on {#LOCATION}: Health score','clc93snar00007kiypalxeeen',''),('clc93snat007j7kiyxl5optj2',1,'Admin',1672319405,'192.168.64.1',2,36,33711,NULL,'Disk {#MODEL} on {#LOCATION}: Health status','clc93snar00007kiypalxeeen',''),('clc93snat007k7kiyn5xluml4',1,'Admin',1672319405,'192.168.64.1',2,36,33712,NULL,'Disk {#MODEL} on {#LOCATION}: Running status','clc93snar00007kiypalxeeen',''),('clc93snat007l7kiyk91ooy27',1,'Admin',1672319405,'192.168.64.1',2,36,33713,NULL,'Disk {#MODEL} on {#LOCATION}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat007m7kiy4x0yl46u',1,'Admin',1672319405,'192.168.64.1',2,36,33714,NULL,'Enclosure {#NAME}: Health status','clc93snar00007kiypalxeeen',''),('clc93snat007n7kiyr66x65po',1,'Admin',1672319405,'192.168.64.1',2,36,33715,NULL,'Enclosure {#NAME}: Running status','clc93snar00007kiypalxeeen',''),('clc93snat007o7kiyv877p83j',1,'Admin',1672319405,'192.168.64.1',2,36,33716,NULL,'Enclosure {#NAME}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat007p7kiy36fdcil2',1,'Admin',1672319405,'192.168.64.1',2,36,33717,NULL,'FAN {#ID} on {#LOCATION}: Health status','clc93snar00007kiypalxeeen',''),('clc93snat007q7kiyyakv394y',1,'Admin',1672319405,'192.168.64.1',2,36,33718,NULL,'FAN {#ID} on {#LOCATION}: Running status','clc93snar00007kiypalxeeen',''),('clc93snat007r7kiyocv1ychu',1,'Admin',1672319405,'192.168.64.1',2,36,33719,NULL,'LUN {#NAME}: Average total I/O latency','clc93snar00007kiypalxeeen',''),('clc93snat007s7kiy5m10xq7w',1,'Admin',1672319405,'192.168.64.1',2,36,33720,NULL,'LUN {#NAME}: Average read I/O latency','clc93snar00007kiypalxeeen',''),('clc93snat007t7kiyg25bsiku',1,'Admin',1672319405,'192.168.64.1',2,36,33721,NULL,'LUN {#NAME}: Average write I/O latency','clc93snar00007kiypalxeeen',''),('clc93snat007u7kiybu27fj42',1,'Admin',1672319405,'192.168.64.1',2,36,33722,NULL,'LUN {#NAME}: Read operations per second','clc93snar00007kiypalxeeen',''),('clc93snat007v7kiyxu5i693d',1,'Admin',1672319405,'192.168.64.1',2,36,33723,NULL,'LUN {#NAME}: Read traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat007w7kiyelswof6i',1,'Admin',1672319405,'192.168.64.1',2,36,33724,NULL,'LUN {#NAME}: Total I/O per second','clc93snar00007kiypalxeeen',''),('clc93snat007x7kiyoje4pmjq',1,'Admin',1672319405,'192.168.64.1',2,36,33725,NULL,'LUN {#NAME}: Total traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat007y7kiyghbbn42j',1,'Admin',1672319405,'192.168.64.1',2,36,33726,NULL,'LUN {#NAME}: Write operations per second','clc93snar00007kiypalxeeen',''),('clc93snat007z7kiy845dqznr',1,'Admin',1672319405,'192.168.64.1',2,36,33727,NULL,'LUN {#NAME}: Write traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat00807kiymgdnlefl',1,'Admin',1672319405,'192.168.64.1',2,36,33728,NULL,'LUN {#NAME}: Capacity','clc93snar00007kiypalxeeen',''),('clc93snat00817kiyapk8iwk5',1,'Admin',1672319405,'192.168.64.1',2,36,33729,NULL,'LUN {#NAME}: Status','clc93snar00007kiypalxeeen',''),('clc93snat00827kiyz9fg6wen',1,'Admin',1672319405,'192.168.64.1',2,36,33730,NULL,'Node {#NODE}: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snat00837kiyqaj73q3z',1,'Admin',1672319405,'192.168.64.1',2,36,33731,NULL,'Node {#NODE}: Average I/O latency','clc93snar00007kiypalxeeen',''),('clc93snat00847kiymmnhflle',1,'Admin',1672319405,'192.168.64.1',2,36,33732,NULL,'Node {#NODE}: Read operations per second','clc93snar00007kiypalxeeen',''),('clc93snat00857kiyutokq12h',1,'Admin',1672319405,'192.168.64.1',2,36,33733,NULL,'Node {#NODE}: Read traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat00867kiywf3rgbux',1,'Admin',1672319405,'192.168.64.1',2,36,33734,NULL,'Node {#NODE}: Total I/O per second','clc93snar00007kiypalxeeen',''),('clc93snat00877kiyvauggz51',1,'Admin',1672319405,'192.168.64.1',2,36,33735,NULL,'Node {#NODE}: Total traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat00887kiy1rinzrt5',1,'Admin',1672319405,'192.168.64.1',2,36,33736,NULL,'Node {#NODE}: Write operations per second','clc93snar00007kiypalxeeen',''),('clc93snat00897kiycig605gg',1,'Admin',1672319405,'192.168.64.1',2,36,33737,NULL,'Node {#NODE}: Write traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat008a7kiyl0py9paa',1,'Admin',1672319405,'192.168.64.1',2,36,33738,NULL,'Pool {#NAME}: Capacity free','clc93snar00007kiypalxeeen',''),('clc93snat008b7kiy2j9d94yl',1,'Admin',1672319405,'192.168.64.1',2,36,33739,NULL,'Pool {#NAME}: Capacity used percentage','clc93snar00007kiypalxeeen',''),('clc93snat008c7kiyujwmqltn',1,'Admin',1672319405,'192.168.64.1',2,36,33740,NULL,'Pool {#NAME}: Health status','clc93snar00007kiypalxeeen',''),('clc93snat008d7kiybrryvcnh',1,'Admin',1672319405,'192.168.64.1',2,36,33741,NULL,'Pool {#NAME}: Running status','clc93snar00007kiypalxeeen',''),('clc93snat008e7kiy53utwfim',1,'Admin',1672319405,'192.168.64.1',2,36,33742,NULL,'Pool {#NAME}: Capacity used','clc93snar00007kiypalxeeen',''),('clc93snat008f7kiy663not8e',1,'Admin',1672319405,'192.168.64.1',2,36,33743,NULL,'Pool {#NAME}: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snat008g7kiym0nw19zk',1,'Admin',1672319405,'192.168.64.1',2,36,36567,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snat008h7kiyaxaorqrn',1,'Admin',1672319405,'192.168.64.1',2,36,36568,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snat008i7kiy7t870jlt',1,'Admin',1672319405,'192.168.64.1',2,36,36569,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snat008j7kiy7eazm4rj',1,'Admin',1672319405,'192.168.64.1',2,36,36570,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snat008k7kiy5d73p09d',1,'Admin',1672319405,'192.168.64.1',2,36,36571,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snat008l7kiytljqb5hf',1,'Admin',1672319405,'192.168.64.1',2,36,36572,NULL,'{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','clc93snar00007kiypalxeeen',''),('clc93snat008m7kiyff6s397r',1,'Admin',1672319405,'192.168.64.1',2,36,36573,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snat008n7kiyhze1in3u',1,'Admin',1672319405,'192.168.64.1',2,36,36574,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snat008o7kiyg0ksslrk',1,'Admin',1672319405,'192.168.64.1',2,36,36575,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snat008p7kiy8zxmosfg',1,'Admin',1672319405,'192.168.64.1',2,36,36576,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snat008q7kiy71nfws3o',1,'Admin',1672319405,'192.168.64.1',2,36,36577,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snat008r7kiymlw4wcqn',1,'Admin',1672319405,'192.168.64.1',2,36,36578,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snat008s7kiybxt6tzdc',1,'Admin',1672319405,'192.168.64.1',2,36,36579,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snat008t7kiy058pklgg',1,'Admin',1672319405,'192.168.64.1',2,36,36580,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat008u7kiydwd1u0g5',1,'Admin',1672319405,'192.168.64.1',2,36,36581,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat008v7kiy376c3s6r',1,'Admin',1672319405,'192.168.64.1',2,36,36582,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat008w7kiy7w288l9n',1,'Admin',1672319405,'192.168.64.1',2,36,36583,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat008x7kiy24g05tme',1,'Admin',1672319405,'192.168.64.1',2,36,36584,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat008y7kiyux1m1ixv',1,'Admin',1672319405,'192.168.64.1',2,36,36585,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snat008z7kiy53cpjset',1,'Admin',1672319405,'192.168.64.1',2,36,36586,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00907kiyfhuiiy9u',1,'Admin',1672319405,'192.168.64.1',2,36,36587,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00917kiy54iwj56j',1,'Admin',1672319405,'192.168.64.1',2,36,36588,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00927kiyrjhmnzh3',1,'Admin',1672319405,'192.168.64.1',2,36,36589,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00937kiyyh0jir58',1,'Admin',1672319405,'192.168.64.1',2,36,36590,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00947kiy1r10u4ra',1,'Admin',1672319405,'192.168.64.1',2,36,36591,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00957kiyzhjosvj3',1,'Admin',1672319405,'192.168.64.1',2,36,36592,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00967kiyi0iqr8oh',1,'Admin',1672319405,'192.168.64.1',2,36,36593,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00977kiy3kknefeb',1,'Admin',1672319405,'192.168.64.1',2,36,36594,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00987kiypxyaqarc',1,'Admin',1672319405,'192.168.64.1',2,36,36595,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snat00997kiy6ezysg6a',1,'Admin',1672319405,'192.168.64.1',2,36,36596,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snat009a7kiymuk47xyd',1,'Admin',1672319405,'192.168.64.1',2,36,36597,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snat009b7kiy80pytbdx',1,'Admin',1672319405,'192.168.64.1',2,36,36624,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snat009c7kiynrr7jdu6',1,'Admin',1672319405,'192.168.64.1',2,36,36625,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snat009d7kiytymwlm0s',1,'Admin',1672319405,'192.168.64.1',2,36,36626,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snat009e7kiyows0rio1',1,'Admin',1672319405,'192.168.64.1',2,36,36627,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snat009f7kiy2tio1cp8',1,'Admin',1672319405,'192.168.64.1',2,36,36628,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snat009g7kiy50re3e5k',1,'Admin',1672319405,'192.168.64.1',2,36,36629,NULL,'{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','clc93snar00007kiypalxeeen',''),('clc93snat009h7kiy2cq0wk3u',1,'Admin',1672319405,'192.168.64.1',2,36,36630,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snat009i7kiymirrnu5t',1,'Admin',1672319405,'192.168.64.1',2,36,36631,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snat009j7kiypnw4qu0t',1,'Admin',1672319405,'192.168.64.1',2,36,36632,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snat009k7kiyv5d3p034',1,'Admin',1672319405,'192.168.64.1',2,36,36633,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snat009l7kiyscq8jdr7',1,'Admin',1672319405,'192.168.64.1',2,36,36634,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snat009m7kiyb1io8ngf',1,'Admin',1672319405,'192.168.64.1',2,36,36635,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snat009n7kiyp3xio0dp',1,'Admin',1672319405,'192.168.64.1',2,36,36636,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snat009o7kiy6kl8m366',1,'Admin',1672319405,'192.168.64.1',2,36,36637,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009p7kiyyf3j5l6v',1,'Admin',1672319405,'192.168.64.1',2,36,36638,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009q7kiyu9q7f60h',1,'Admin',1672319405,'192.168.64.1',2,36,36639,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009r7kiynfoo6ky3',1,'Admin',1672319405,'192.168.64.1',2,36,36640,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009s7kiyakq0qjdr',1,'Admin',1672319405,'192.168.64.1',2,36,36641,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009t7kiy8xhm7is8',1,'Admin',1672319405,'192.168.64.1',2,36,36642,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snat009u7kiy88lnqbvh',1,'Admin',1672319405,'192.168.64.1',2,36,36643,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009v7kiyuxw8gwvo',1,'Admin',1672319405,'192.168.64.1',2,36,36644,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009w7kiy1ttgfu23',1,'Admin',1672319405,'192.168.64.1',2,36,36645,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009x7kiykm00s49o',1,'Admin',1672319405,'192.168.64.1',2,36,36646,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009y7kiyy0gidbn5',1,'Admin',1672319405,'192.168.64.1',2,36,36647,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009z7kiywzecqpi8',1,'Admin',1672319405,'192.168.64.1',2,36,36648,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00a07kiygofvdbjm',1,'Admin',1672319405,'192.168.64.1',2,36,36649,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00a17kiy835hddcw',1,'Admin',1672319405,'192.168.64.1',2,36,36650,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00a27kiy2alh63gk',1,'Admin',1672319405,'192.168.64.1',2,36,36651,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00a37kiy60o9es9i',1,'Admin',1672319405,'192.168.64.1',2,36,36652,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snat00a47kiyrbc1xcb3',1,'Admin',1672319405,'192.168.64.1',2,36,36653,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00a57kiyo5uh18xn',1,'Admin',1672319405,'192.168.64.1',2,36,36654,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snat00a67kiy7h7u8dkl',1,'Admin',1672319405,'192.168.64.1',2,36,36681,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snat00a77kiynsus1ggd',1,'Admin',1672319405,'192.168.64.1',2,36,36682,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snat00a87kiyynowfohk',1,'Admin',1672319405,'192.168.64.1',2,36,36683,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snat00a97kiyd6amrdpt',1,'Admin',1672319405,'192.168.64.1',2,36,36684,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snat00aa7kiy5zb2eaww',1,'Admin',1672319405,'192.168.64.1',2,36,36685,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snat00ab7kiy7t13eekb',1,'Admin',1672319405,'192.168.64.1',2,36,36686,NULL,'{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','clc93snar00007kiypalxeeen',''),('clc93snat00ac7kiycbvzpat1',1,'Admin',1672319405,'192.168.64.1',2,36,36687,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snat00ad7kiy62jmmaix',1,'Admin',1672319405,'192.168.64.1',2,36,36688,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snat00ae7kiyadl4yxju',1,'Admin',1672319405,'192.168.64.1',2,36,36689,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snat00af7kiylpy2ycjv',1,'Admin',1672319405,'192.168.64.1',2,36,36690,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00ag7kiyb25j6ptc',1,'Admin',1672319405,'192.168.64.1',2,36,36691,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snat00ah7kiyvsmpmiyi',1,'Admin',1672319405,'192.168.64.1',2,36,36692,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snat00ai7kiyex4uvg33',1,'Admin',1672319405,'192.168.64.1',2,36,36693,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snat00aj7kiyd96mijli',1,'Admin',1672319405,'192.168.64.1',2,36,36694,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00ak7kiy3c89ekwz',1,'Admin',1672319405,'192.168.64.1',2,36,36695,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00al7kiyvx887oab',1,'Admin',1672319405,'192.168.64.1',2,36,36696,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00am7kiyv2a42p71',1,'Admin',1672319405,'192.168.64.1',2,36,36697,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00an7kiycx3eeepf',1,'Admin',1672319405,'192.168.64.1',2,36,36698,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00ao7kiyob1rxl8c',1,'Admin',1672319405,'192.168.64.1',2,36,36699,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snat00ap7kiycw5b22z7',1,'Admin',1672319405,'192.168.64.1',2,36,36700,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00aq7kiymlrbs5qw',1,'Admin',1672319405,'192.168.64.1',2,36,36701,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00ar7kiytp6yz2ze',1,'Admin',1672319405,'192.168.64.1',2,36,36702,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00as7kiyhvh7f7mf',1,'Admin',1672319405,'192.168.64.1',2,36,36703,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00at7kiyoemiix19',1,'Admin',1672319405,'192.168.64.1',2,36,36704,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00au7kiywg9vnmnd',1,'Admin',1672319405,'192.168.64.1',2,36,36705,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00av7kiyxpnr0w3x',1,'Admin',1672319405,'192.168.64.1',2,36,36706,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00aw7kiycbwtz5pj',1,'Admin',1672319405,'192.168.64.1',2,36,36707,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00ax7kiyn194a6iy',1,'Admin',1672319405,'192.168.64.1',2,36,36708,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00ay7kiyazfo8czi',1,'Admin',1672319405,'192.168.64.1',2,36,36709,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snat00az7kiyh6m5qp32',1,'Admin',1672319405,'192.168.64.1',2,36,36710,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00b07kiys04ek75a',1,'Admin',1672319405,'192.168.64.1',2,36,36711,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snat00b17kiy61f5otyw',1,'Admin',1672319405,'192.168.64.1',2,36,36738,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snat00b27kiywluc8cgl',1,'Admin',1672319405,'192.168.64.1',2,36,36739,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snat00b37kiyzyhhgvj9',1,'Admin',1672319405,'192.168.64.1',2,36,36740,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snat00b47kiy65gtevf9',1,'Admin',1672319405,'192.168.64.1',2,36,36741,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snat00b57kiy6s4mbx4o',1,'Admin',1672319405,'192.168.64.1',2,36,36742,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snat00b67kiy5d8itkqb',1,'Admin',1672319405,'192.168.64.1',2,36,36743,NULL,'{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','clc93snar00007kiypalxeeen',''),('clc93snat00b77kiy9gwtbvod',1,'Admin',1672319405,'192.168.64.1',2,36,36744,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snat00b87kiyvavm0o9o',1,'Admin',1672319405,'192.168.64.1',2,36,36745,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snat00b97kiyqe0tfm4j',1,'Admin',1672319405,'192.168.64.1',2,36,36746,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snat00ba7kiyhsj4cn6x',1,'Admin',1672319405,'192.168.64.1',2,36,36747,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00bb7kiymif5g4nn',1,'Admin',1672319405,'192.168.64.1',2,36,36748,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snat00bc7kiy8pw1cf1x',1,'Admin',1672319405,'192.168.64.1',2,36,36749,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snat00bd7kiyyikpqgfx',1,'Admin',1672319405,'192.168.64.1',2,36,36750,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snat00be7kiyrc5ass0q',1,'Admin',1672319405,'192.168.64.1',2,36,36751,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bf7kiyd996217p',1,'Admin',1672319405,'192.168.64.1',2,36,36752,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bg7kiystiofnm1',1,'Admin',1672319405,'192.168.64.1',2,36,36753,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bh7kiypnjs2e9t',1,'Admin',1672319405,'192.168.64.1',2,36,36754,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bi7kiy8q1s5v2n',1,'Admin',1672319405,'192.168.64.1',2,36,36755,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bj7kiysup947lz',1,'Admin',1672319405,'192.168.64.1',2,36,36756,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snat00bk7kiyyq4x0711',1,'Admin',1672319405,'192.168.64.1',2,36,36757,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bl7kiyzkzzlq1x',1,'Admin',1672319405,'192.168.64.1',2,36,36758,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bm7kiy9y7apv1k',1,'Admin',1672319405,'192.168.64.1',2,36,36759,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bn7kiywure03bn',1,'Admin',1672319405,'192.168.64.1',2,36,36760,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bo7kiy8u2y28i5',1,'Admin',1672319405,'192.168.64.1',2,36,36761,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bp7kiytugmwlsb',1,'Admin',1672319405,'192.168.64.1',2,36,36762,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bq7kiyqa0ssa4q',1,'Admin',1672319405,'192.168.64.1',2,36,36763,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00br7kiybv1ga7nk',1,'Admin',1672319405,'192.168.64.1',2,36,36764,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bs7kiyko1davam',1,'Admin',1672319405,'192.168.64.1',2,36,36765,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bt7kiy149ofac1',1,'Admin',1672319405,'192.168.64.1',2,36,36766,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snat00bu7kiyoyanbyd9',1,'Admin',1672319405,'192.168.64.1',2,36,36767,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00bv7kiy0navx8le',1,'Admin',1672319405,'192.168.64.1',2,36,36768,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snat00bw7kiy79r2b02y',1,'Admin',1672319405,'192.168.64.1',2,36,36814,NULL,'InfluxDB: [{#ORG_NAME}] Query response bytes, failed','clc93snar00007kiypalxeeen',''),('clc93snat00bx7kiy28fbxvrf',1,'Admin',1672319405,'192.168.64.1',2,36,36815,NULL,'InfluxDB: [{#ORG_NAME}] Query response bytes, success','clc93snar00007kiypalxeeen',''),('clc93snat00by7kiyt9uiygyo',1,'Admin',1672319405,'192.168.64.1',2,36,36816,NULL,'InfluxDB: [{#ORG_NAME}] Query requests, failed','clc93snar00007kiypalxeeen',''),('clc93snat00bz7kiy2uk7s422',1,'Admin',1672319405,'192.168.64.1',2,36,36817,NULL,'InfluxDB: [{#ORG_NAME}] Query requests, success','clc93snar00007kiypalxeeen',''),('clc93snat00c07kiyrnpcs23x',1,'Admin',1672319405,'192.168.64.1',2,36,36818,NULL,'InfluxDB: [{#ORG_NAME}] Query requests bytes, failed','clc93snar00007kiypalxeeen',''),('clc93snat00c17kiy1ki8546h',1,'Admin',1672319405,'192.168.64.1',2,36,36819,NULL,'InfluxDB: [{#ORG_NAME}] Query requests bytes, success','clc93snar00007kiypalxeeen',''),('clc93snat00c27kiycot80vtn',1,'Admin',1672319405,'192.168.64.1',2,36,39865,NULL,'Kubernetes API: Watchers: {#KIND}','clc93snar00007kiypalxeeen',''),('clc93snat00c37kiy9gjaoi6a',1,'Admin',1672319405,'192.168.64.1',2,36,39866,NULL,'Kubernetes API: Authenticated requests: {#NAME}, rate','clc93snar00007kiypalxeeen',''),('clc93snat00c47kiy0tim8spo',1,'Admin',1672319405,'192.168.64.1',2,36,39867,NULL,'Kubernetes API: Authentication attempts: {#RESULT}, rate','clc93snar00007kiypalxeeen',''),('clc93snat00c57kiy2ibstz56',1,'Admin',1672319405,'192.168.64.1',2,36,39868,NULL,'Kubernetes API: Certificate expiration seconds bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00c67kiy2ub0vaeq',1,'Admin',1672319405,'192.168.64.1',2,36,42691,NULL,'Kubernetes API: Client certificate expiration, p1','clc93snar00007kiypalxeeen',''),('clc93snat00c77kiyy6sfb7l1',1,'Admin',1672319405,'192.168.64.1',2,36,39869,NULL,'Kubernetes API: etcd objects: {#RESOURCE}','clc93snar00007kiypalxeeen',''),('clc93snat00c87kiyvcvy4rg4',1,'Admin',1672319405,'192.168.64.1',2,36,39870,NULL,'Kubernetes API: gRPCs completed: {#GRPC_CODE}, rate','clc93snar00007kiypalxeeen',''),('clc93snat00c97kiy4ozg1s7s',1,'Admin',1672319405,'192.168.64.1',2,36,39871,NULL,'Kubernetes API: Requests current: {#KIND}','clc93snar00007kiypalxeeen',''),('clc93snat00ca7kiybbwnbv6p',1,'Admin',1672319405,'192.168.64.1',2,36,39872,NULL,'Kubernetes API: Long-running [\"{#VERB}\"] requests [\"{#RESOURCE}\"]: {#SCOPE}','clc93snar00007kiypalxeeen',''),('clc93snat00cb7kiyt15v2hxh',1,'Admin',1672319405,'192.168.64.1',2,36,39861,NULL,'Kubernetes API: [\"{#VERB}\"] Requests, p90','clc93snar00007kiypalxeeen',''),('clc93snat00cc7kiykum3o0br',1,'Admin',1672319405,'192.168.64.1',2,36,39862,NULL,'Kubernetes API: [\"{#VERB}\"] Requests, p50','clc93snar00007kiypalxeeen',''),('clc93snat00cd7kiy4uwf0234',1,'Admin',1672319405,'192.168.64.1',2,36,39863,NULL,'Kubernetes API: [\"{#VERB}\"] Requests, p95','clc93snar00007kiypalxeeen',''),('clc93snat00ce7kiymnabi31q',1,'Admin',1672319405,'192.168.64.1',2,36,39864,NULL,'Kubernetes API: [\"{#VERB}\"] Requests, p99','clc93snar00007kiypalxeeen',''),('clc93snat00cf7kiyeqzx7dpf',1,'Admin',1672319405,'192.168.64.1',2,36,39873,NULL,'Kubernetes API: [\"{#VERB}\"] Requests bucket: {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00cg7kiy8qh4zciv',1,'Admin',1672319405,'192.168.64.1',2,36,39874,NULL,'Kubernetes API: [\"{#NAME}\"] Workqueue adds total, rate','clc93snar00007kiypalxeeen',''),('clc93snat00ch7kiyl0kgznem',1,'Admin',1672319405,'192.168.64.1',2,36,39875,NULL,'Kubernetes API: [\"{#NAME}\"] Workqueue depth','clc93snar00007kiypalxeeen',''),('clc93snat00ci7kiys8sbwcsh',1,'Admin',1672319405,'192.168.64.1',2,36,39890,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue queue duration, p90','clc93snar00007kiypalxeeen',''),('clc93snat00cj7kiyye0gbsrg',1,'Admin',1672319405,'192.168.64.1',2,36,39891,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue queue duration, 50p','clc93snar00007kiypalxeeen',''),('clc93snat00ck7kiyjiuhh7fg',1,'Admin',1672319405,'192.168.64.1',2,36,39892,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue queue duration, p95','clc93snar00007kiypalxeeen',''),('clc93snat00cl7kiy0cy1ntz2',1,'Admin',1672319405,'192.168.64.1',2,36,39893,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue queue duration, p99','clc93snar00007kiypalxeeen',''),('clc93snat00cm7kiyxkgcpcdy',1,'Admin',1672319405,'192.168.64.1',2,36,39894,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue work duration, 50p','clc93snar00007kiypalxeeen',''),('clc93snat00cn7kiy39enxqp9',1,'Admin',1672319405,'192.168.64.1',2,36,39895,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue work duration, p90','clc93snar00007kiypalxeeen',''),('clc93snat00co7kiyk0imj1ae',1,'Admin',1672319405,'192.168.64.1',2,36,39896,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue work duration, p95','clc93snar00007kiypalxeeen',''),('clc93snat00cp7kiy3rpm785v',1,'Admin',1672319405,'192.168.64.1',2,36,39897,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue work duration, p99','clc93snar00007kiypalxeeen',''),('clc93snat00cq7kiy6pb1ax33',1,'Admin',1672319405,'192.168.64.1',2,36,39898,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue duration seconds bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00cr7kiyje7lxc0n',1,'Admin',1672319405,'192.168.64.1',2,36,39899,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Queue duration seconds bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00cs7kiy7to271g0',1,'Admin',1672319405,'192.168.64.1',2,36,39900,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue adds total, rate','clc93snar00007kiypalxeeen',''),('clc93snat00ct7kiy39t1az7e',1,'Admin',1672319405,'192.168.64.1',2,36,39901,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue depth','clc93snar00007kiypalxeeen',''),('clc93snat00cu7kiyhqlkm6bm',1,'Admin',1672319405,'192.168.64.1',2,36,39902,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue longest running processor, sec','clc93snar00007kiypalxeeen',''),('clc93snat00cv7kiygfx1fn5j',1,'Admin',1672319405,'192.168.64.1',2,36,39903,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue retries, rate','clc93snar00007kiypalxeeen',''),('clc93snat00cw7kiy4e91p672',1,'Admin',1672319405,'192.168.64.1',2,36,39904,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue unfinished work, sec','clc93snar00007kiypalxeeen',''),('clc93snat00cx7kiy4zxlbo5g',1,'Admin',1672319405,'192.168.64.1',2,36,39925,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Memory page cache','clc93snar00007kiypalxeeen',''),('clc93snat00cy7kiylyw8ewxq',1,'Admin',1672319405,'192.168.64.1',2,36,39926,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Memory max usage','clc93snar00007kiypalxeeen',''),('clc93snat00cz7kiymt6v61b7',1,'Admin',1672319405,'192.168.64.1',2,36,39927,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: RSS','clc93snar00007kiypalxeeen',''),('clc93snat00d07kiyd4rtkfwq',1,'Admin',1672319405,'192.168.64.1',2,36,39928,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Swap','clc93snar00007kiypalxeeen',''),('clc93snat00d17kiygs0uo2gf',1,'Admin',1672319405,'192.168.64.1',2,36,39929,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Usage','clc93snar00007kiypalxeeen',''),('clc93snat00d27kiy9bg86cz0',1,'Admin',1672319405,'192.168.64.1',2,36,39930,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Working set','clc93snar00007kiypalxeeen',''),('clc93snat00d37kiy9sd237sp',1,'Admin',1672319405,'192.168.64.1',2,36,39931,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: Load average, 10s','clc93snar00007kiypalxeeen',''),('clc93snat00d47kiytxqu6eid',1,'Admin',1672319405,'192.168.64.1',2,36,39932,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: System seconds, total','clc93snar00007kiypalxeeen',''),('clc93snat00d57kiyc43sd0vp',1,'Admin',1672319405,'192.168.64.1',2,36,39933,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: User seconds, total','clc93snar00007kiypalxeeen',''),('clc93snat00d67kiyy6kc0u82',1,'Admin',1672319405,'192.168.64.1',2,36,39934,NULL,'Kubernetes: Host [{#HOST}] Request method [{#METHOD}] Code:[{#CODE}]','clc93snar00007kiypalxeeen',''),('clc93snat00d77kiynokida47',1,'Admin',1672319405,'192.168.64.1',2,36,39921,NULL,'Kubernetes: [{#OP_TYPE}] Operations, p50','clc93snar00007kiypalxeeen',''),('clc93snat00d87kiyibsa3d40',1,'Admin',1672319405,'192.168.64.1',2,36,39922,NULL,'Kubernetes: [{#OP_TYPE}] Operations, p90','clc93snar00007kiypalxeeen',''),('clc93snat00d97kiyegv1trhd',1,'Admin',1672319405,'192.168.64.1',2,36,39923,NULL,'Kubernetes: [{#OP_TYPE}] Operations, p95','clc93snar00007kiypalxeeen',''),('clc93snat00da7kiy02vg784d',1,'Admin',1672319405,'192.168.64.1',2,36,39924,NULL,'Kubernetes: [{#OP_TYPE}] Operations, p99','clc93snar00007kiypalxeeen',''),('clc93snat00db7kiy1xe5jrx6',1,'Admin',1672319405,'192.168.64.1',2,36,39935,NULL,'Kubernetes: [{#OP_TYPE}] Runtime operations bucket: {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00dc7kiyxp2lv2wt',1,'Admin',1672319405,'192.168.64.1',2,36,39936,NULL,'Kubernetes: [{#OP_TYPE}] Runtime operations total, rate','clc93snar00007kiypalxeeen',''),('clc93snat00dd7kiykl5ajxjo',1,'Admin',1672319405,'192.168.64.1',2,36,39943,NULL,'Node [{#NAME}] Addresses: External IP','clc93snar00007kiypalxeeen',''),('clc93snat00de7kiy4rwrqmfw',1,'Admin',1672319405,'192.168.64.1',2,36,39944,NULL,'Node [{#NAME}] Info: Container runtime','clc93snar00007kiypalxeeen',''),('clc93snat00df7kiymxxbr05q',1,'Admin',1672319405,'192.168.64.1',2,36,39945,NULL,'Node [{#NAME}] Uptime','clc93snar00007kiypalxeeen',''),('clc93snat00dg7kiy06xs1psq',1,'Admin',1672319405,'192.168.64.1',2,36,39946,NULL,'Node [{#NAME}] Requests: Memory','clc93snar00007kiypalxeeen',''),('clc93snat00dh7kiyses62fk2',1,'Admin',1672319405,'192.168.64.1',2,36,39947,NULL,'Node [{#NAME}] Requests: CPU','clc93snar00007kiypalxeeen',''),('clc93snat00di7kiywavdeehh',1,'Admin',1672319405,'192.168.64.1',2,36,39948,NULL,'Node [{#NAME}] Limits: Memory','clc93snar00007kiypalxeeen',''),('clc93snat00dj7kiyk2nmjmi8',1,'Admin',1672319405,'192.168.64.1',2,36,39949,NULL,'Node [{#NAME}] Limits: CPU','clc93snar00007kiypalxeeen',''),('clc93snat00dk7kiy3ehxcuwk',1,'Admin',1672319405,'192.168.64.1',2,36,39950,NULL,'Node [{#NAME}] Info: Roles','clc93snar00007kiypalxeeen',''),('clc93snat00dl7kiy0dn87v8z',1,'Admin',1672319405,'192.168.64.1',2,36,39951,NULL,'Node [{#NAME}] Info: OS image','clc93snar00007kiypalxeeen',''),('clc93snat00dm7kiyhyh1z27z',1,'Admin',1672319405,'192.168.64.1',2,36,39952,NULL,'Node [{#NAME}] Info: Operating system','clc93snar00007kiypalxeeen',''),('clc93snat00dn7kiy4sbdzffm',1,'Admin',1672319405,'192.168.64.1',2,36,39953,NULL,'Node [{#NAME}] Info: KubeProxy version','clc93snar00007kiypalxeeen',''),('clc93snat00do7kiycthq66ee',1,'Admin',1672319405,'192.168.64.1',2,36,39954,NULL,'Node [{#NAME}] Info: Kubelet version','clc93snar00007kiypalxeeen',''),('clc93snat00dp7kiyu4asvmxv',1,'Admin',1672319405,'192.168.64.1',2,36,39955,NULL,'Node [{#NAME}] Info: Kernel version','clc93snar00007kiypalxeeen',''),('clc93snat00dq7kiy6q27dn0u',1,'Admin',1672319405,'192.168.64.1',2,36,39956,NULL,'Node [{#NAME}] Info: Architecture','clc93snar00007kiypalxeeen',''),('clc93snat00dr7kiy8mowmwnd',1,'Admin',1672319405,'192.168.64.1',2,36,39957,NULL,'Node [{#NAME}] Addresses: Internal IP','clc93snar00007kiypalxeeen',''),('clc93snat00ds7kiy1kicessp',1,'Admin',1672319405,'192.168.64.1',2,36,39958,NULL,'Node [{#NAME}] Conditions: Ready','clc93snar00007kiypalxeeen',''),('clc93snat00dt7kiya1h2eeny',1,'Admin',1672319405,'192.168.64.1',2,36,39959,NULL,'Node [{#NAME}] Conditions: PID pressure','clc93snar00007kiypalxeeen',''),('clc93snat00du7kiyhj70k3a3',1,'Admin',1672319405,'192.168.64.1',2,36,39960,NULL,'Node [{#NAME}] Conditions: Network unavailable','clc93snar00007kiypalxeeen',''),('clc93snat00dv7kiye6mj8eom',1,'Admin',1672319405,'192.168.64.1',2,36,39961,NULL,'Node [{#NAME}] Conditions: Memory pressure','clc93snar00007kiypalxeeen',''),('clc93snat00dw7kiycv149x1g',1,'Admin',1672319405,'192.168.64.1',2,36,39962,NULL,'Node [{#NAME}] Conditions: Disk pressure','clc93snar00007kiypalxeeen',''),('clc93snat00dx7kiy7m52atkw',1,'Admin',1672319405,'192.168.64.1',2,36,39963,NULL,'Node [{#NAME}] Capacity: Pods','clc93snar00007kiypalxeeen',''),('clc93snat00dy7kiysj54xdnz',1,'Admin',1672319405,'192.168.64.1',2,36,39964,NULL,'Node [{#NAME}] Capacity: Memory','clc93snar00007kiypalxeeen',''),('clc93snat00dz7kiy612fumec',1,'Admin',1672319405,'192.168.64.1',2,36,39965,NULL,'Node [{#NAME}] Capacity: CPU','clc93snar00007kiypalxeeen',''),('clc93snat00e07kiyz1lek6uh',1,'Admin',1672319405,'192.168.64.1',2,36,39966,NULL,'Node [{#NAME}] Allocatable: Pods','clc93snar00007kiypalxeeen',''),('clc93snat00e17kiylr2i7s2h',1,'Admin',1672319405,'192.168.64.1',2,36,39967,NULL,'Node [{#NAME}] Allocatable: Memory','clc93snar00007kiypalxeeen',''),('clc93snat00e27kiy4sb1vsm2',1,'Admin',1672319405,'192.168.64.1',2,36,39968,NULL,'Node [{#NAME}] Allocatable: CPU','clc93snar00007kiypalxeeen',''),('clc93snat00e37kiydonpz2gf',1,'Admin',1672319405,'192.168.64.1',2,36,39969,NULL,'Node [{#NAME}] Used: Pods','clc93snar00007kiypalxeeen',''),('clc93snat00e47kiyil5holw3',1,'Admin',1672319405,'192.168.64.1',2,36,44246,NULL,'Node [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snat00e57kiyz77q80xk',1,'Admin',1672319405,'192.168.64.1',2,36,39970,NULL,'Node [{#NODE}] Pod [{#POD}] Conditions: Containers ready','clc93snar00007kiypalxeeen',''),('clc93snat00e67kiypd153axi',1,'Admin',1672319405,'192.168.64.1',2,36,39971,NULL,'Node [{#NODE}] Pod [{#POD}] Conditions: Initialized','clc93snar00007kiypalxeeen',''),('clc93snat00e77kiy6ocjc91n',1,'Admin',1672319405,'192.168.64.1',2,36,39972,NULL,'Node [{#NODE}] Pod [{#POD}] Conditions: Ready','clc93snar00007kiypalxeeen',''),('clc93snat00e87kiy6nflj06l',1,'Admin',1672319405,'192.168.64.1',2,36,39973,NULL,'Node [{#NODE}] Pod [{#POD}] Conditions: Scheduled','clc93snar00007kiypalxeeen',''),('clc93snat00e97kiydmoxeobt',1,'Admin',1672319405,'192.168.64.1',2,36,39974,NULL,'Node [{#NODE}] Pod [{#POD}] Containers: Restarts','clc93snar00007kiypalxeeen',''),('clc93snat00ea7kiyhytybt9p',1,'Admin',1672319405,'192.168.64.1',2,36,39975,NULL,'Node [{#NODE}] Pod [{#POD}] Status: Phase','clc93snar00007kiypalxeeen',''),('clc93snat00eb7kiy1a8dnftt',1,'Admin',1672319405,'192.168.64.1',2,36,39976,NULL,'Node [{#NODE}] Pod [{#POD}] Uptime','clc93snar00007kiypalxeeen',''),('clc93snat00ec7kiy7cwix34w',1,'Admin',1672319405,'192.168.64.1',2,36,44247,NULL,'Node [{#NODE}] Pod [{#POD}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snat00ed7kiyr6hdqc0k',1,'Admin',1672319405,'192.168.64.1',2,36,40003,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling, p90','clc93snar00007kiypalxeeen',''),('clc93snat00ee7kiyhatu4j6g',1,'Admin',1672319405,'192.168.64.1',2,36,40004,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling, p50','clc93snar00007kiypalxeeen',''),('clc93snat00ef7kiy4my968a2',1,'Admin',1672319405,'192.168.64.1',2,36,40005,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling, p95','clc93snar00007kiypalxeeen',''),('clc93snat00eg7kiyo7ujene5',1,'Admin',1672319405,'192.168.64.1',2,36,40006,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling, p99','clc93snar00007kiypalxeeen',''),('clc93snat00eh7kiylxpqhr0a',1,'Admin',1672319405,'192.168.64.1',2,36,40007,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling seconds bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00ei7kiyn6nfsg8l',1,'Admin',1672319405,'192.168.64.1',2,36,40008,NULL,'Kubernetes Scheduler: Binding duration bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00ej7kiyxq1fkj1o',1,'Admin',1672319405,'192.168.64.1',2,36,42692,NULL,'Kubernetes Scheduler: Binding duration, p90','clc93snar00007kiypalxeeen',''),('clc93snat00ek7kiyafdj1ubg',1,'Admin',1672319405,'192.168.64.1',2,36,42693,NULL,'Kubernetes Scheduler: Binding duration, p50','clc93snar00007kiypalxeeen',''),('clc93snat00el7kiy3qdeas9j',1,'Admin',1672319405,'192.168.64.1',2,36,42694,NULL,'Kubernetes Scheduler: Binding duration, p95','clc93snar00007kiypalxeeen',''),('clc93snat00em7kiyawwr20rb',1,'Admin',1672319405,'192.168.64.1',2,36,42695,NULL,'Kubernetes Scheduler: Binding duration, p99','clc93snar00007kiypalxeeen',''),('clc93snat00en7kiy1plc5d8w',1,'Admin',1672319405,'192.168.64.1',2,36,40009,NULL,'Kubernetes Scheduler: Scheduling algorithm duration bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00eo7kiynxsrlawi',1,'Admin',1672319405,'192.168.64.1',2,36,42696,NULL,'Kubernetes Scheduler: Scheduling algorithm duration, p90','clc93snar00007kiypalxeeen',''),('clc93snat00ep7kiy728p539g',1,'Admin',1672319405,'192.168.64.1',2,36,42697,NULL,'Kubernetes Scheduler: Scheduling algorithm duration, p50','clc93snar00007kiypalxeeen',''),('clc93snat00eq7kiymawehzik',1,'Admin',1672319405,'192.168.64.1',2,36,42698,NULL,'Kubernetes Scheduler: Scheduling algorithm duration, p95','clc93snar00007kiypalxeeen',''),('clc93snat00er7kiyscvxvxro',1,'Admin',1672319405,'192.168.64.1',2,36,42699,NULL,'Kubernetes Scheduler: Scheduling algorithm duration, p99','clc93snar00007kiypalxeeen',''),('clc93snat00es7kiy6j6cmqw2',1,'Admin',1672319405,'192.168.64.1',2,36,40036,NULL,'Kubernetes: Component [{#NAME}]: Healthy','clc93snar00007kiypalxeeen',''),('clc93snat00et7kiyz4qpspnn',1,'Admin',1672319405,'192.168.64.1',2,36,40037,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Desired','clc93snar00007kiypalxeeen',''),('clc93snat00eu7kiyt8kccbnr',1,'Admin',1672319405,'192.168.64.1',2,36,40038,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Misscheduled','clc93snar00007kiypalxeeen',''),('clc93snat00ev7kiynhzzkpqf',1,'Admin',1672319405,'192.168.64.1',2,36,40039,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Ready','clc93snar00007kiypalxeeen',''),('clc93snat00ew7kiy8gpm8677',1,'Admin',1672319405,'192.168.64.1',2,36,40040,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Scheduled','clc93snar00007kiypalxeeen',''),('clc93snat00ex7kiy8ntn11yr',1,'Admin',1672319405,'192.168.64.1',2,36,40041,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Updated number scheduled','clc93snar00007kiypalxeeen',''),('clc93snat00ey7kiyaibfztje',1,'Admin',1672319405,'192.168.64.1',2,36,40042,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas','clc93snar00007kiypalxeeen',''),('clc93snat00ez7kiyj9we4s1e',1,'Admin',1672319405,'192.168.64.1',2,36,40043,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas available','clc93snar00007kiypalxeeen',''),('clc93snat00f07kiyb1zey019',1,'Admin',1672319405,'192.168.64.1',2,36,40044,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas desired','clc93snar00007kiypalxeeen',''),('clc93snat00f17kiyu7oh9xee',1,'Admin',1672319405,'192.168.64.1',2,36,40045,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas unavailable','clc93snar00007kiypalxeeen',''),('clc93snat00f27kiyxuhuplfq',1,'Admin',1672319405,'192.168.64.1',2,36,40046,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas updated','clc93snar00007kiypalxeeen',''),('clc93snat00f37kiyo8eyq4ad',1,'Admin',1672319405,'192.168.64.1',2,36,40047,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Rollingupdate max unavailable','clc93snar00007kiypalxeeen',''),('clc93snat00f47kiysg2mjshn',1,'Admin',1672319405,'192.168.64.1',2,36,40048,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Paused','clc93snar00007kiypalxeeen',''),('clc93snat00f57kiyp71wi7tl',1,'Admin',1672319405,'192.168.64.1',2,36,40049,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Address available','clc93snar00007kiypalxeeen',''),('clc93snat00f67kiy4jr5teej',1,'Admin',1672319405,'192.168.64.1',2,36,40050,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Address not ready','clc93snar00007kiypalxeeen',''),('clc93snat00f77kiy8kjavlru',1,'Admin',1672319405,'192.168.64.1',2,36,40051,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Age','clc93snar00007kiypalxeeen',''),('clc93snat00f87kiy5ioxdsoj',1,'Admin',1672319405,'192.168.64.1',2,36,40052,NULL,'Kubernetes: Livez [{#NAME}]: Healthcheck','clc93snar00007kiypalxeeen',''),('clc93snat00f97kiyp1wdh4k6',1,'Admin',1672319405,'192.168.64.1',2,36,40053,NULL,'Kubernetes: Node [{#NAME}]: CPU allocatable','clc93snar00007kiypalxeeen',''),('clc93snat00fa7kiyu0nw88sh',1,'Admin',1672319405,'192.168.64.1',2,36,40054,NULL,'Kubernetes: Node [{#NAME}]: CPU capacity','clc93snar00007kiypalxeeen',''),('clc93snat00fb7kiy6gkwrdl4',1,'Admin',1672319405,'192.168.64.1',2,36,40055,NULL,'Kubernetes: Node [{#NAME}]: Memory allocatable','clc93snar00007kiypalxeeen',''),('clc93snat00fc7kiyt6fn1kow',1,'Admin',1672319405,'192.168.64.1',2,36,40056,NULL,'Kubernetes: Node [{#NAME}]: Memory capacity','clc93snar00007kiypalxeeen',''),('clc93snat00fd7kiy2lsz1xe8',1,'Admin',1672319405,'192.168.64.1',2,36,40057,NULL,'Kubernetes: Node [{#NAME}]: Pods allocatable','clc93snar00007kiypalxeeen',''),('clc93snat00fe7kiyzxmlv9lj',1,'Admin',1672319405,'192.168.64.1',2,36,40058,NULL,'Kubernetes: Node [{#NAME}]: Pods capacity','clc93snar00007kiypalxeeen',''),('clc93snat00ff7kiyibyfsqdb',1,'Admin',1672319405,'192.168.64.1',2,36,42718,NULL,'Kubernetes: Node [{#NAME}]: Ephemeral storage allocatable','clc93snar00007kiypalxeeen',''),('clc93snat00fg7kiyigteujs0',1,'Admin',1672319405,'192.168.64.1',2,36,42719,NULL,'Kubernetes: Node [{#NAME}]: Ephemeral storage capacity','clc93snar00007kiypalxeeen',''),('clc93snat00fh7kiyhh9kt7if',1,'Admin',1672319405,'192.168.64.1',2,36,40059,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers CPU limits','clc93snar00007kiypalxeeen',''),('clc93snat00fi7kiycn2s6ssn',1,'Admin',1672319405,'192.168.64.1',2,36,40060,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Failed','clc93snar00007kiypalxeeen',''),('clc93snat00fj7kiy34edld7c',1,'Admin',1672319405,'192.168.64.1',2,36,40061,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Scheduled','clc93snar00007kiypalxeeen',''),('clc93snat00fk7kiyso261rca',1,'Admin',1672319405,'192.168.64.1',2,36,40062,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Ready','clc93snar00007kiypalxeeen',''),('clc93snat00fl7kiy55ofki14',1,'Admin',1672319405,'192.168.64.1',2,36,40063,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Unknown','clc93snar00007kiypalxeeen',''),('clc93snau00fm7kiy79kgn8l7',1,'Admin',1672319405,'192.168.64.1',2,36,40064,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00fn7kiy3tjkgj32',1,'Admin',1672319405,'192.168.64.1',2,36,40065,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Running','clc93snar00007kiypalxeeen',''),('clc93snau00fo7kiype1fn4ca',1,'Admin',1672319405,'192.168.64.1',2,36,40066,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Pending','clc93snar00007kiypalxeeen',''),('clc93snau00fp7kiyahp4im1h',1,'Admin',1672319405,'192.168.64.1',2,36,40067,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers waiting','clc93snar00007kiypalxeeen',''),('clc93snau00fq7kiyynm9g03t',1,'Admin',1672319405,'192.168.64.1',2,36,40068,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers memory limits','clc93snar00007kiypalxeeen',''),('clc93snau00fr7kiytm5mlcza',1,'Admin',1672319405,'192.168.64.1',2,36,40069,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers terminated','clc93snar00007kiypalxeeen',''),('clc93snau00fs7kiy8v01qh0t',1,'Admin',1672319405,'192.168.64.1',2,36,40070,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers running','clc93snar00007kiypalxeeen',''),('clc93snau00ft7kiyco4y777a',1,'Admin',1672319405,'192.168.64.1',2,36,40071,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers restarts','clc93snar00007kiypalxeeen',''),('clc93snau00fu7kiytztde7iu',1,'Admin',1672319405,'192.168.64.1',2,36,40072,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers ready','clc93snar00007kiypalxeeen',''),('clc93snau00fv7kiykyfr7ycr',1,'Admin',1672319405,'192.168.64.1',2,36,40073,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers memory requests','clc93snar00007kiypalxeeen',''),('clc93snau00fw7kiyv57xhec7',1,'Admin',1672319405,'192.168.64.1',2,36,40074,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers CPU requests','clc93snar00007kiypalxeeen',''),('clc93snau00fx7kiyuhazp7xb',1,'Admin',1672319405,'192.168.64.1',2,36,40075,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Unschedulable','clc93snar00007kiypalxeeen',''),('clc93snau00fy7kiy0jjwgzn3',1,'Admin',1672319405,'192.168.64.1',2,36,40076,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Requested storage','clc93snar00007kiypalxeeen',''),('clc93snau00fz7kiyjbb6ijjy',1,'Admin',1672319405,'192.168.64.1',2,36,40077,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Status phase: Active, sum','clc93snar00007kiypalxeeen',''),('clc93snau00g07kiy06r5ck8n',1,'Admin',1672319405,'192.168.64.1',2,36,40078,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Available','clc93snar00007kiypalxeeen',''),('clc93snau00g17kiy79jdpeew',1,'Admin',1672319405,'192.168.64.1',2,36,40079,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Status phase: Bound, sum','clc93snar00007kiypalxeeen',''),('clc93snau00g27kiyiiiza75c',1,'Admin',1672319405,'192.168.64.1',2,36,40080,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Bound','clc93snar00007kiypalxeeen',''),('clc93snau00g37kiyx29sz26z',1,'Admin',1672319405,'192.168.64.1',2,36,40081,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Status phase: Lost, sum','clc93snar00007kiypalxeeen',''),('clc93snau00g47kiy88xu0ztp',1,'Admin',1672319405,'192.168.64.1',2,36,40082,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Lost','clc93snar00007kiypalxeeen',''),('clc93snau00g57kiyvfsg5a1g',1,'Admin',1672319405,'192.168.64.1',2,36,40083,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Status phase: Pending, sum','clc93snar00007kiypalxeeen',''),('clc93snau00g67kiy7j9794b3',1,'Admin',1672319405,'192.168.64.1',2,36,40084,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Pending','clc93snar00007kiypalxeeen',''),('clc93snau00g77kiyeyic7e81',1,'Admin',1672319405,'192.168.64.1',2,36,40085,NULL,'Kubernetes: Readyz [{#NAME}]: Healthcheck','clc93snar00007kiypalxeeen',''),('clc93snau00g87kiy04hc9jm6',1,'Admin',1672319405,'192.168.64.1',2,36,40086,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Fully labeled replicas','clc93snar00007kiypalxeeen',''),('clc93snau00g97kiys100rqid',1,'Admin',1672319405,'192.168.64.1',2,36,40087,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Ready','clc93snar00007kiypalxeeen',''),('clc93snau00ga7kiyp9ub38g9',1,'Admin',1672319405,'192.168.64.1',2,36,40088,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gb7kiyee0xmykx',1,'Admin',1672319405,'192.168.64.1',2,36,40089,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Desired replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gc7kiya8gsmhpw',1,'Admin',1672319405,'192.168.64.1',2,36,40090,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gd7kiyf7gz0mwf',1,'Admin',1672319405,'192.168.64.1',2,36,40091,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Current replicas','clc93snar00007kiypalxeeen',''),('clc93snau00ge7kiylrw8izfj',1,'Admin',1672319405,'192.168.64.1',2,36,40092,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Desired replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gf7kiy040nwkez',1,'Admin',1672319405,'192.168.64.1',2,36,40093,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Ready replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gg7kiydp5ccn7p',1,'Admin',1672319405,'192.168.64.1',2,36,40094,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Updated replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gh7kiyt4nd0d4s',1,'Admin',1672319405,'192.168.64.1',2,36,40857,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00gi7kiypdrsf2xm',1,'Admin',1672319405,'192.168.64.1',2,36,40858,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00gj7kiy0xbou9zm',1,'Admin',1672319405,'192.168.64.1',2,36,40859,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00gk7kiyhygczvz4',1,'Admin',1672319405,'192.168.64.1',2,36,40860,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00gl7kiyr9boxezb',1,'Admin',1672319405,'192.168.64.1',2,36,40861,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00gm7kiytf0ity1m',1,'Admin',1672319405,'192.168.64.1',2,36,40862,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00gn7kiyi3ffd724',1,'Admin',1672319405,'192.168.64.1',2,36,40863,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00go7kiymtx3oaha',1,'Admin',1672319405,'192.168.64.1',2,36,40864,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00gp7kiyqze6a2t8',1,'Admin',1672319405,'192.168.64.1',2,36,40865,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00gq7kiya3meq77a',1,'Admin',1672319405,'192.168.64.1',2,36,40866,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93snar00007kiypalxeeen',''),('clc93snau00gr7kiy7ymamdgb',1,'Admin',1672319405,'192.168.64.1',2,36,40880,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00gs7kiyvz20t9dw',1,'Admin',1672319405,'192.168.64.1',2,36,40881,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00gt7kiyqw01zdgu',1,'Admin',1672319405,'192.168.64.1',2,36,40882,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00gu7kiyy1t1dyx0',1,'Admin',1672319405,'192.168.64.1',2,36,40883,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00gv7kiytx0xxp8m',1,'Admin',1672319405,'192.168.64.1',2,36,40884,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00gw7kiye3bina9i',1,'Admin',1672319405,'192.168.64.1',2,36,40885,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00gx7kiylaxz7f3a',1,'Admin',1672319405,'192.168.64.1',2,36,40886,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00gy7kiytwjw5g4m',1,'Admin',1672319405,'192.168.64.1',2,36,40887,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00gz7kiyvllgj70o',1,'Admin',1672319405,'192.168.64.1',2,36,40888,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00h07kiywiptfu6x',1,'Admin',1672319405,'192.168.64.1',2,36,40889,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93snar00007kiypalxeeen',''),('clc93snau00h17kiycgzadvad',1,'Admin',1672319405,'192.168.64.1',2,36,40902,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00h27kiykacdm7ow',1,'Admin',1672319405,'192.168.64.1',2,36,40903,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00h37kiyudgk2g6a',1,'Admin',1672319405,'192.168.64.1',2,36,40904,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00h47kiymtswm67p',1,'Admin',1672319405,'192.168.64.1',2,36,40905,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00h57kiyjl6f5v9s',1,'Admin',1672319405,'192.168.64.1',2,36,40906,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00h67kiyqp79prla',1,'Admin',1672319405,'192.168.64.1',2,36,40907,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00h77kiyqaqtc5zl',1,'Admin',1672319405,'192.168.64.1',2,36,40908,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00h87kiyxkol4mxo',1,'Admin',1672319405,'192.168.64.1',2,36,40909,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00h97kiyxj7w4ufn',1,'Admin',1672319405,'192.168.64.1',2,36,40910,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00ha7kiy5ytbk32z',1,'Admin',1672319405,'192.168.64.1',2,36,40924,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00hb7kiy9aglt5ow',1,'Admin',1672319405,'192.168.64.1',2,36,40925,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00hc7kiya7azh8rc',1,'Admin',1672319405,'192.168.64.1',2,36,40926,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00hd7kiybe0gmrde',1,'Admin',1672319405,'192.168.64.1',2,36,40927,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00he7kiyldwfo5yj',1,'Admin',1672319405,'192.168.64.1',2,36,40928,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00hf7kiyztasdllt',1,'Admin',1672319405,'192.168.64.1',2,36,40929,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00hg7kiyr84s4fbu',1,'Admin',1672319405,'192.168.64.1',2,36,40930,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00hh7kiywwzxjv8l',1,'Admin',1672319405,'192.168.64.1',2,36,40931,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00hi7kiyfnvcj4rt',1,'Admin',1672319405,'192.168.64.1',2,36,40932,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00hj7kiyqm4w9h5i',1,'Admin',1672319405,'192.168.64.1',2,36,40933,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93snar00007kiypalxeeen',''),('clc93snau00hk7kiyiudh0m4l',1,'Admin',1672319405,'192.168.64.1',2,36,42277,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00hl7kiyobyx58gq',1,'Admin',1672319405,'192.168.64.1',2,36,42278,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00hm7kiy7ojj1lxw',1,'Admin',1672319405,'192.168.64.1',2,36,42279,NULL,'Interface {#IFNAME}: Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00hn7kiyjx9wn7v1',1,'Admin',1672319405,'192.168.64.1',2,36,42280,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00ho7kiy3fob2hb0',1,'Admin',1672319405,'192.168.64.1',2,36,42281,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00hp7kiys5pj7bca',1,'Admin',1672319405,'192.168.64.1',2,36,42282,NULL,'Interface {#IFNAME}: Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00hq7kiypu4ck7me',1,'Admin',1672319405,'192.168.64.1',2,36,42283,NULL,'Interface {#IFNAME}: Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00hr7kiyee1w3cs4',1,'Admin',1672319405,'192.168.64.1',2,36,42284,NULL,'Interface {#IFNAME}: Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00hs7kiym8tk7hkz',1,'Admin',1672319405,'192.168.64.1',2,36,42679,NULL,'Interface {#IFNAME}: Speed','clc93snar00007kiypalxeeen',''),('clc93snau00ht7kiyvux9dppw',1,'Admin',1672319405,'192.168.64.1',2,36,42285,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snau00hu7kiyim4adjdv',1,'Admin',1672319405,'192.168.64.1',2,36,42286,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snau00hv7kiyyrgsgvpa',1,'Admin',1672319405,'192.168.64.1',2,36,42287,NULL,'{#DEVNAME}: Get stats','clc93snar00007kiypalxeeen',''),('clc93snau00hw7kiykdqwolzs',1,'Admin',1672319405,'192.168.64.1',2,36,42307,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snau00hx7kiyj0s5dge5',1,'Admin',1672319405,'192.168.64.1',2,36,42308,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snau00hy7kiy1jrxxd3t',1,'Admin',1672319405,'192.168.64.1',2,36,42309,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snau00hz7kiycupcae9v',1,'Admin',1672319405,'192.168.64.1',2,36,42310,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snau00i07kiyn3riypmn',1,'Admin',1672319405,'192.168.64.1',2,36,42311,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snau00i17kiynyjmekta',1,'Admin',1672319405,'192.168.64.1',2,36,42312,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snau00i27kiyrpyqdz4l',1,'Admin',1672319405,'192.168.64.1',2,36,42288,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snau00i37kiyqqk9307h',1,'Admin',1672319405,'192.168.64.1',2,36,42289,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00i47kiyxum8oris',1,'Admin',1672319405,'192.168.64.1',2,36,42290,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snau00i57kiycdq45spf',1,'Admin',1672319405,'192.168.64.1',2,36,42291,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snau00i67kiy06vgujw2',1,'Admin',1672319405,'192.168.64.1',2,36,44438,NULL,'{#FSNAME}: Get filesystem data','clc93snar00007kiypalxeeen',''),('clc93snau00i77kiypfcotxbk',1,'Admin',1672319405,'192.168.64.1',2,36,44440,NULL,'{#FSNAME}: Filesystem is read-only','clc93snar00007kiypalxeeen',''),('clc93snau00i87kiybzvcd2m8',1,'Admin',1672319405,'192.168.64.1',2,36,42363,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00i97kiyjvebij2d',1,'Admin',1672319405,'192.168.64.1',2,36,42364,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00ia7kiy5yk22kjd',1,'Admin',1672319405,'192.168.64.1',2,36,42365,NULL,'Interface {#IFNAME}: Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00ib7kiyb77f4jn3',1,'Admin',1672319405,'192.168.64.1',2,36,42366,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00ic7kiytyw0pbxx',1,'Admin',1672319405,'192.168.64.1',2,36,42367,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00id7kiy83k9z7zb',1,'Admin',1672319405,'192.168.64.1',2,36,42368,NULL,'Interface {#IFNAME}: Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00ie7kiyxm76ndb2',1,'Admin',1672319405,'192.168.64.1',2,36,42369,NULL,'Interface {#IFNAME}: Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00if7kiykylbu1ck',1,'Admin',1672319405,'192.168.64.1',2,36,42370,NULL,'Interface {#IFNAME}: Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00ig7kiymaoovifd',1,'Admin',1672319405,'192.168.64.1',2,36,42682,NULL,'Interface {#IFNAME}: Speed','clc93snar00007kiypalxeeen',''),('clc93snau00ih7kiyqp2s7k8g',1,'Admin',1672319405,'192.168.64.1',2,36,42371,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snau00ii7kiyzf89k456',1,'Admin',1672319405,'192.168.64.1',2,36,42372,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snau00ij7kiyngjm4tga',1,'Admin',1672319405,'192.168.64.1',2,36,42373,NULL,'{#DEVNAME}: Get stats','clc93snar00007kiypalxeeen',''),('clc93snau00ik7kiygzogdj91',1,'Admin',1672319405,'192.168.64.1',2,36,42378,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snau00il7kiyjjeh1i6e',1,'Admin',1672319405,'192.168.64.1',2,36,42379,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snau00im7kiyiy3j3wi8',1,'Admin',1672319405,'192.168.64.1',2,36,42380,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snau00in7kiyxsrghuif',1,'Admin',1672319405,'192.168.64.1',2,36,42381,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snau00io7kiyr54jgos5',1,'Admin',1672319405,'192.168.64.1',2,36,42382,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snau00ip7kiyna7d5ac9',1,'Admin',1672319405,'192.168.64.1',2,36,42383,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snau00iq7kiy226pgrh5',1,'Admin',1672319405,'192.168.64.1',2,36,42374,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snau00ir7kiyle6uxvqa',1,'Admin',1672319405,'192.168.64.1',2,36,42375,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00is7kiyb4abhx6c',1,'Admin',1672319405,'192.168.64.1',2,36,42376,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snau00it7kiybt1hifee',1,'Admin',1672319405,'192.168.64.1',2,36,42377,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snau00iu7kiy5fawxndh',1,'Admin',1672319405,'192.168.64.1',2,36,44443,NULL,'{#FSNAME}: Get filesystem data','clc93snar00007kiypalxeeen',''),('clc93snau00iv7kiy2cn8y9gy',1,'Admin',1672319405,'192.168.64.1',2,36,44444,NULL,'{#FSNAME}: Filesystem is read-only','clc93snar00007kiypalxeeen',''),('clc93snau00iw7kiyikl7hjfc',1,'Admin',1672319405,'192.168.64.1',2,36,42415,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snau00ix7kiycx3kfbct',1,'Admin',1672319405,'192.168.64.1',2,36,42416,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snau00iy7kiy3tchqd2w',1,'Admin',1672319405,'192.168.64.1',2,36,42417,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snau00iz7kiyeeahzez5',1,'Admin',1672319405,'192.168.64.1',2,36,42418,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snau00j07kiy9d4u3m60',1,'Admin',1672319405,'192.168.64.1',2,36,42419,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snau00j17kiyojgpz8uw',1,'Admin',1672319405,'192.168.64.1',2,36,42420,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snau00j27kiyhw3t9sdf',1,'Admin',1672319405,'192.168.64.1',2,36,42421,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snau00j37kiyjz8fdm97',1,'Admin',1672319405,'192.168.64.1',2,36,42422,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snau00j47kiy0ktttv80',1,'Admin',1672319405,'192.168.64.1',2,36,42423,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snau00j57kiy0rapgqaq',1,'Admin',1672319405,'192.168.64.1',2,36,42424,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snau00j67kiy6py6pymx',1,'Admin',1672319405,'192.168.64.1',2,36,42442,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snau00j77kiysj20o68p',1,'Admin',1672319405,'192.168.64.1',2,36,42425,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00j87kiygf611nhm',1,'Admin',1672319405,'192.168.64.1',2,36,42426,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00j97kiyiokf6jvc',1,'Admin',1672319405,'192.168.64.1',2,36,42427,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00ja7kiy0ggu7xlx',1,'Admin',1672319405,'192.168.64.1',2,36,42428,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00jb7kiyyo5gz37w',1,'Admin',1672319405,'192.168.64.1',2,36,42429,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00jc7kiyj8hhvrqs',1,'Admin',1672319405,'192.168.64.1',2,36,42430,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00jd7kiyqeqa1exl',1,'Admin',1672319405,'192.168.64.1',2,36,42431,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00je7kiyq4lgwuwe',1,'Admin',1672319405,'192.168.64.1',2,36,42432,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00jf7kiy2aa9jnuh',1,'Admin',1672319405,'192.168.64.1',2,36,42433,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00jg7kiyp3zvk8cb',1,'Admin',1672319405,'192.168.64.1',2,36,42434,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93snar00007kiypalxeeen',''),('clc93snau00jh7kiydboeuor1',1,'Admin',1672319405,'192.168.64.1',2,36,42435,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snau00ji7kiyqz8724bu',1,'Admin',1672319405,'192.168.64.1',2,36,42436,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snau00jj7kiym2a9xfys',1,'Admin',1672319405,'192.168.64.1',2,36,42437,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snau00jk7kiy6h71a7ou',1,'Admin',1672319405,'192.168.64.1',2,36,42438,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snau00jl7kiyqqfat8uu',1,'Admin',1672319405,'192.168.64.1',2,36,42439,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00jm7kiyisn8wolr',1,'Admin',1672319405,'192.168.64.1',2,36,42440,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snau00jn7kiywox4h5wx',1,'Admin',1672319405,'192.168.64.1',2,36,42441,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snau00jo7kiy99neo68a',1,'Admin',1672319405,'192.168.64.1',2,36,42706,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Completion failed','clc93snar00007kiypalxeeen',''),('clc93snau00jp7kiy5opi3bc3',1,'Admin',1672319405,'192.168.64.1',2,36,42707,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Completion succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00jq7kiyy10q96ad',1,'Admin',1672319405,'192.168.64.1',2,36,42708,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Last schedule','clc93snar00007kiypalxeeen',''),('clc93snau00jr7kiy8adunz3c',1,'Admin',1672319405,'192.168.64.1',2,36,42709,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Next schedule','clc93snar00007kiypalxeeen',''),('clc93snau00js7kiy9obfyjtp',1,'Admin',1672319405,'192.168.64.1',2,36,42710,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Suspend','clc93snar00007kiypalxeeen',''),('clc93snau00jt7kiyra3nud6n',1,'Admin',1672319405,'192.168.64.1',2,36,42711,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Active','clc93snar00007kiypalxeeen',''),('clc93snau00ju7kiybb1s1rat',1,'Admin',1672319405,'192.168.64.1',2,36,42712,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Failed','clc93snar00007kiypalxeeen',''),('clc93snau00jv7kiyzev86dli',1,'Admin',1672319405,'192.168.64.1',2,36,42713,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00jw7kiy8tp6042p',1,'Admin',1672319405,'192.168.64.1',2,36,42714,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Completion failed','clc93snar00007kiypalxeeen',''),('clc93snau00jx7kiy03j6gvbm',1,'Admin',1672319405,'192.168.64.1',2,36,42715,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Completion succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00jy7kiy9ogywrpk',1,'Admin',1672319405,'192.168.64.1',2,36,42716,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Failed','clc93snar00007kiypalxeeen',''),('clc93snau00jz7kiyv4akaqas',1,'Admin',1672319405,'192.168.64.1',2,36,42717,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00k07kiydx0ma299',1,'Admin',1672319405,'192.168.64.1',2,36,42720,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Disruptions allowed','clc93snar00007kiypalxeeen',''),('clc93snau00k17kiyk3fr9wxe',1,'Admin',1672319405,'192.168.64.1',2,36,42721,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods desired','clc93snar00007kiypalxeeen',''),('clc93snau00k27kiy23ryfpcp',1,'Admin',1672319405,'192.168.64.1',2,36,42722,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods healthy','clc93snar00007kiypalxeeen',''),('clc93snau00k37kiye8pthcb6',1,'Admin',1672319405,'192.168.64.1',2,36,42723,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods total','clc93snar00007kiypalxeeen',''),('clc93snau00k47kiy56o3dqzb',1,'Admin',1672319405,'192.168.64.1',2,36,43196,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00k57kiynwchm34e',1,'Admin',1672319405,'192.168.64.1',2,36,43197,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00k67kiyvlmf7rbh',1,'Admin',1672319405,'192.168.64.1',2,36,43198,NULL,'Controller [{#CONTROLLER.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00k77kiy3wvjstql',1,'Admin',1672319405,'192.168.64.1',2,36,43199,NULL,'Controller [{#CONTROLLER.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00k87kiysqgtltqd',1,'Admin',1672319405,'192.168.64.1',2,36,43200,NULL,'Controller [{#CONTROLLER.ID}]: Pools','clc93snar00007kiypalxeeen',''),('clc93snau00k97kiytris0arc',1,'Admin',1672319405,'192.168.64.1',2,36,43201,NULL,'Controller [{#CONTROLLER.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00ka7kiy7p30pac1',1,'Admin',1672319405,'192.168.64.1',2,36,43202,NULL,'Controller [{#CONTROLLER.ID}]: IP address','clc93snar00007kiypalxeeen',''),('clc93snau00kb7kiyiuk3cle0',1,'Admin',1672319405,'192.168.64.1',2,36,43203,NULL,'Controller [{#CONTROLLER.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00kc7kiy89zlrkhs',1,'Admin',1672319405,'192.168.64.1',2,36,43204,NULL,'Controller [{#CONTROLLER.ID}]: Firmware version','clc93snar00007kiypalxeeen',''),('clc93snau00kd7kiyg9iza4e2',1,'Admin',1672319405,'192.168.64.1',2,36,43205,NULL,'Controller [{#CONTROLLER.ID}]: Disk groups','clc93snar00007kiypalxeeen',''),('clc93snau00ke7kiy8q08pl63',1,'Admin',1672319405,'192.168.64.1',2,36,43206,NULL,'Controller [{#CONTROLLER.ID}]: Disks','clc93snar00007kiypalxeeen',''),('clc93snau00kf7kiy3pdokkdy',1,'Admin',1672319405,'192.168.64.1',2,36,43207,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00kg7kiywbj8mtxb',1,'Admin',1672319405,'192.168.64.1',2,36,43208,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00kh7kiysobyw50z',1,'Admin',1672319405,'192.168.64.1',2,36,43209,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00ki7kiy0uu6gejo',1,'Admin',1672319405,'192.168.64.1',2,36,43210,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00kj7kiymqvoiyt5',1,'Admin',1672319405,'192.168.64.1',2,36,43211,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00kk7kiy7l93jr0i',1,'Admin',1672319405,'192.168.64.1',2,36,43212,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00kl7kiygjohchj2',1,'Admin',1672319405,'192.168.64.1',2,36,43213,NULL,'Controller [{#CONTROLLER.ID}]: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snau00km7kiytqmjn3xr',1,'Admin',1672319405,'192.168.64.1',2,36,43214,NULL,'Controller [{#CONTROLLER.ID}]: Cache memory size','clc93snar00007kiypalxeeen',''),('clc93snau00kn7kiykp5o480r',1,'Admin',1672319405,'192.168.64.1',2,36,43215,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write utilization','clc93snar00007kiypalxeeen',''),('clc93snau00ko7kiybp0qmw8v',1,'Admin',1672319405,'192.168.64.1',2,36,43216,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00kp7kiy2ejuizk0',1,'Admin',1672319405,'192.168.64.1',2,36,43217,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00kq7kiynrwei6ao',1,'Admin',1672319405,'192.168.64.1',2,36,43218,NULL,'Controller [{#CONTROLLER.ID}]: Uptime','clc93snar00007kiypalxeeen',''),('clc93snau00kr7kiyzzqrv1bi',1,'Admin',1672319405,'192.168.64.1',2,36,44108,NULL,'Controller [{#CONTROLLER.ID}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00ks7kiyhtuuua32',1,'Admin',1672319405,'192.168.64.1',2,36,44109,NULL,'Controller [{#CONTROLLER.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00kt7kiylkp0pqj5',1,'Admin',1672319405,'192.168.64.1',2,36,43219,NULL,'Disk [{#DURABLE.ID}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00ku7kiy0y75x2ns',1,'Admin',1672319405,'192.168.64.1',2,36,43220,NULL,'Disk [{#DURABLE.ID}]: SSD life left','clc93snar00007kiypalxeeen',''),('clc93snau00kv7kiy3w8kn8n3',1,'Admin',1672319405,'192.168.64.1',2,36,43221,NULL,'Disk [{#DURABLE.ID}]: Disk group','clc93snar00007kiypalxeeen',''),('clc93snau00kw7kiydjwx8d48',1,'Admin',1672319405,'192.168.64.1',2,36,43222,NULL,'Disk [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00kx7kiyn3sqsgsm',1,'Admin',1672319405,'192.168.64.1',2,36,43223,NULL,'Disk [{#DURABLE.ID}]: Model','clc93snar00007kiypalxeeen',''),('clc93snau00ky7kiy64gnsih7',1,'Admin',1672319405,'192.168.64.1',2,36,43224,NULL,'Disk [{#DURABLE.ID}]: Storage pool','clc93snar00007kiypalxeeen',''),('clc93snau00kz7kiyxnei4233',1,'Admin',1672319405,'192.168.64.1',2,36,43225,NULL,'Disk [{#DURABLE.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00l07kiyj4ml3g85',1,'Admin',1672319405,'192.168.64.1',2,36,43226,NULL,'Disk [{#DURABLE.ID}]: Temperature','clc93snar00007kiypalxeeen',''),('clc93snau00l17kiyw3t5rhn4',1,'Admin',1672319405,'192.168.64.1',2,36,43227,NULL,'Disk [{#DURABLE.ID}]: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snau00l27kiyasutetlg',1,'Admin',1672319405,'192.168.64.1',2,36,43228,NULL,'Disk [{#DURABLE.ID}]: Type','clc93snar00007kiypalxeeen',''),('clc93snau00l37kiyrzfgbe9x',1,'Admin',1672319405,'192.168.64.1',2,36,43229,NULL,'Disk [{#DURABLE.ID}]: Vendor','clc93snar00007kiypalxeeen',''),('clc93snau00l47kiyxyewn20k',1,'Admin',1672319405,'192.168.64.1',2,36,44110,NULL,'Disk [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00l57kiyoalrwytw',1,'Admin',1672319405,'192.168.64.1',2,36,43194,NULL,'Disk group [{#NAME}]: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00l67kiyr7beytle',1,'Admin',1672319405,'192.168.64.1',2,36,43230,NULL,'Disk group [{#NAME}]: Average response time: Read','clc93snar00007kiypalxeeen',''),('clc93snau00l77kiy42wkncr8',1,'Admin',1672319405,'192.168.64.1',2,36,43231,NULL,'Disk group [{#NAME}]: RAID type','clc93snar00007kiypalxeeen',''),('clc93snau00l87kiy4v4o8dgw',1,'Admin',1672319405,'192.168.64.1',2,36,43232,NULL,'Disk group [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00l97kiytxz9u4g1',1,'Admin',1672319405,'192.168.64.1',2,36,43233,NULL,'Disk group [{#NAME}]: Disks count','clc93snar00007kiypalxeeen',''),('clc93snau00la7kiy1nhqg9bp',1,'Admin',1672319405,'192.168.64.1',2,36,43234,NULL,'Disk group [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00lb7kiy1c7cezhy',1,'Admin',1672319405,'192.168.64.1',2,36,43235,NULL,'Disk group [{#NAME}]: Pool space used','clc93snar00007kiypalxeeen',''),('clc93snau00lc7kiywa90s452',1,'Admin',1672319405,'192.168.64.1',2,36,43236,NULL,'Disk group [{#NAME}]: Space free','clc93snar00007kiypalxeeen',''),('clc93snau00ld7kiyg11xkya2',1,'Admin',1672319405,'192.168.64.1',2,36,43237,NULL,'Disk group [{#NAME}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00le7kiy173bqw51',1,'Admin',1672319405,'192.168.64.1',2,36,43238,NULL,'Disk group [{#NAME}]: Average response time: Total','clc93snar00007kiypalxeeen',''),('clc93snau00lf7kiy103ulf7f',1,'Admin',1672319405,'192.168.64.1',2,36,43239,NULL,'Disk group [{#NAME}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00lg7kiy3upolill',1,'Admin',1672319405,'192.168.64.1',2,36,43240,NULL,'Disk group [{#NAME}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00lh7kiynlqky817',1,'Admin',1672319405,'192.168.64.1',2,36,43241,NULL,'Disk group [{#NAME}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00li7kiyx75klo5r',1,'Admin',1672319405,'192.168.64.1',2,36,43242,NULL,'Disk group [{#NAME}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00lj7kiyyw1ifjzm',1,'Admin',1672319405,'192.168.64.1',2,36,43243,NULL,'Disk group [{#NAME}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00lk7kiye43lgzs5',1,'Admin',1672319405,'192.168.64.1',2,36,43244,NULL,'Disk group [{#NAME}]: Average response time: Write','clc93snar00007kiypalxeeen',''),('clc93snau00ll7kiyy6qhomam',1,'Admin',1672319405,'192.168.64.1',2,36,43245,NULL,'Disk group [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00lm7kiy1n6djagn',1,'Admin',1672319405,'192.168.64.1',2,36,44111,NULL,'Disk group [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00ln7kiypjjcguvi',1,'Admin',1672319405,'192.168.64.1',2,36,44112,NULL,'Disk group [{#NAME}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00lo7kiy2eubm9nh',1,'Admin',1672319405,'192.168.64.1',2,36,43246,NULL,'Enclosure [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00lp7kiy2izvgp5l',1,'Admin',1672319405,'192.168.64.1',2,36,43247,NULL,'Enclosure [{#DURABLE.ID}]: Midplane serial number','clc93snar00007kiypalxeeen',''),('clc93snau00lq7kiyre6a3dml',1,'Admin',1672319405,'192.168.64.1',2,36,43248,NULL,'Enclosure [{#DURABLE.ID}]: Model','clc93snar00007kiypalxeeen',''),('clc93snau00lr7kiyx8738lw8',1,'Admin',1672319405,'192.168.64.1',2,36,43249,NULL,'Enclosure [{#DURABLE.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00ls7kiyix5kgfyx',1,'Admin',1672319405,'192.168.64.1',2,36,43250,NULL,'Enclosure [{#DURABLE.ID}]: Power','clc93snar00007kiypalxeeen',''),('clc93snau00lt7kiyjmezbtdu',1,'Admin',1672319405,'192.168.64.1',2,36,43251,NULL,'Enclosure [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00lu7kiy4o3ivzf4',1,'Admin',1672319405,'192.168.64.1',2,36,44113,NULL,'Enclosure [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00lv7kiy48syb9el',1,'Admin',1672319405,'192.168.64.1',2,36,43252,NULL,'Fan [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00lw7kiyycblynzu',1,'Admin',1672319405,'192.168.64.1',2,36,43253,NULL,'Fan [{#DURABLE.ID}]: Speed','clc93snar00007kiypalxeeen',''),('clc93snau00lx7kiyumk9z0t3',1,'Admin',1672319405,'192.168.64.1',2,36,43254,NULL,'Fan [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00ly7kiyv1nmhcqj',1,'Admin',1672319405,'192.168.64.1',2,36,44114,NULL,'Fan [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00lz7kiynsiavstv',1,'Admin',1672319405,'192.168.64.1',2,36,43255,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00m07kiyudro1o72',1,'Admin',1672319405,'192.168.64.1',2,36,43256,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00m17kiyc95dgze3',1,'Admin',1672319405,'192.168.64.1',2,36,43257,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00m27kiywvlho0l3',1,'Admin',1672319405,'192.168.64.1',2,36,44115,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00m37kiyizqptjsu',1,'Admin',1672319405,'192.168.64.1',2,36,43195,NULL,'Pool [{#NAME}]: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00m47kiygf7ei38s',1,'Admin',1672319405,'192.168.64.1',2,36,43258,NULL,'Pool [{#NAME}]: Space free','clc93snar00007kiypalxeeen',''),('clc93snau00m57kiy7tpeivsv',1,'Admin',1672319405,'192.168.64.1',2,36,43259,NULL,'Pool [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00m67kiys9isbbh0',1,'Admin',1672319405,'192.168.64.1',2,36,43260,NULL,'Pool [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00m77kiy8hy9qx57',1,'Admin',1672319405,'192.168.64.1',2,36,44116,NULL,'Pool [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00m87kiyhmtpr5pe',1,'Admin',1672319405,'192.168.64.1',2,36,43261,NULL,'Port [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00m97kiymz38q12d',1,'Admin',1672319405,'192.168.64.1',2,36,43262,NULL,'Port [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00ma7kiyed2kln15',1,'Admin',1672319405,'192.168.64.1',2,36,43263,NULL,'Port [{#NAME}]: Type','clc93snar00007kiypalxeeen',''),('clc93snau00mb7kiylp7ax7zu',1,'Admin',1672319405,'192.168.64.1',2,36,44117,NULL,'Port [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00mc7kiyll7ieb4n',1,'Admin',1672319405,'192.168.64.1',2,36,43264,NULL,'Power supply [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00md7kiyil81m1bo',1,'Admin',1672319405,'192.168.64.1',2,36,43265,NULL,'Power supply [{#DURABLE.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00me7kiy6ohd9f6q',1,'Admin',1672319405,'192.168.64.1',2,36,43266,NULL,'Power supply [{#DURABLE.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00mf7kiycwo42nhv',1,'Admin',1672319405,'192.168.64.1',2,36,43267,NULL,'Power supply [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00mg7kiyo3i3jvdx',1,'Admin',1672319405,'192.168.64.1',2,36,43268,NULL,'Power supply [{#DURABLE.ID}]: Temperature','clc93snar00007kiypalxeeen',''),('clc93snau00mh7kiyau28vozr',1,'Admin',1672319405,'192.168.64.1',2,36,44118,NULL,'Power supply [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00mi7kiyqh572twt',1,'Admin',1672319405,'192.168.64.1',2,36,43269,NULL,'Volume [{#NAME}]: Cache: Read hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00mj7kiyd6e6fjol',1,'Admin',1672319405,'192.168.64.1',2,36,43270,NULL,'Volume [{#NAME}]: Cache: Read misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00mk7kiyio61w1vg',1,'Admin',1672319405,'192.168.64.1',2,36,43271,NULL,'Volume [{#NAME}]: Cache: Write hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00ml7kiyhjxfrcho',1,'Admin',1672319405,'192.168.64.1',2,36,43272,NULL,'Volume [{#NAME}]: Cache: Write misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00mm7kiyf80vgoiv',1,'Admin',1672319405,'192.168.64.1',2,36,43273,NULL,'Volume [{#NAME}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00mn7kiyx8thucus',1,'Admin',1672319405,'192.168.64.1',2,36,43274,NULL,'Volume [{#NAME}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00mo7kiyv74cgrnz',1,'Admin',1672319405,'192.168.64.1',2,36,43275,NULL,'Volume [{#NAME}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00mp7kiyx62aggji',1,'Admin',1672319405,'192.168.64.1',2,36,43276,NULL,'Volume [{#NAME}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00mq7kiyxqtoguq6',1,'Admin',1672319405,'192.168.64.1',2,36,43277,NULL,'Volume [{#NAME}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00mr7kiyjzv07bnm',1,'Admin',1672319405,'192.168.64.1',2,36,43278,NULL,'Volume [{#NAME}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00ms7kiyeda11slo',1,'Admin',1672319405,'192.168.64.1',2,36,43279,NULL,'Volume [{#NAME}]: Space allocated','clc93snar00007kiypalxeeen',''),('clc93snau00mt7kiygx98hx0a',1,'Admin',1672319405,'192.168.64.1',2,36,43280,NULL,'Volume [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00mu7kiyn0nrcbme',1,'Admin',1672319405,'192.168.64.1',2,36,44119,NULL,'Volume [{#NAME}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00mv7kiywkpt74pj',1,'Admin',1672319405,'192.168.64.1',2,36,44120,NULL,'Volume [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00mw7kiy1wtjusgb',1,'Admin',1672319405,'192.168.64.1',2,36,43310,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00mx7kiyljv5z966',1,'Admin',1672319405,'192.168.64.1',2,36,43311,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00my7kiyvk8i6o7v',1,'Admin',1672319405,'192.168.64.1',2,36,43312,NULL,'Controller [{#CONTROLLER.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00mz7kiy8opwum3y',1,'Admin',1672319405,'192.168.64.1',2,36,43313,NULL,'Controller [{#CONTROLLER.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00n07kiyfiistxgg',1,'Admin',1672319405,'192.168.64.1',2,36,43314,NULL,'Controller [{#CONTROLLER.ID}]: Pools','clc93snar00007kiypalxeeen',''),('clc93snau00n17kiy2nporcy6',1,'Admin',1672319405,'192.168.64.1',2,36,43315,NULL,'Controller [{#CONTROLLER.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00n27kiyixrklzfb',1,'Admin',1672319405,'192.168.64.1',2,36,43316,NULL,'Controller [{#CONTROLLER.ID}]: IP address','clc93snar00007kiypalxeeen',''),('clc93snau00n37kiyitiufp6p',1,'Admin',1672319405,'192.168.64.1',2,36,43317,NULL,'Controller [{#CONTROLLER.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00n47kiy8mka7l53',1,'Admin',1672319405,'192.168.64.1',2,36,43318,NULL,'Controller [{#CONTROLLER.ID}]: Firmware version','clc93snar00007kiypalxeeen',''),('clc93snau00n57kiylea66q0w',1,'Admin',1672319405,'192.168.64.1',2,36,43319,NULL,'Controller [{#CONTROLLER.ID}]: Disk groups','clc93snar00007kiypalxeeen',''),('clc93snau00n67kiyst6lbn0z',1,'Admin',1672319405,'192.168.64.1',2,36,43320,NULL,'Controller [{#CONTROLLER.ID}]: Disks','clc93snar00007kiypalxeeen',''),('clc93snau00n77kiyazg7m5nd',1,'Admin',1672319405,'192.168.64.1',2,36,43321,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00n87kiyzco6564q',1,'Admin',1672319405,'192.168.64.1',2,36,43322,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00n97kiyi13rk70k',1,'Admin',1672319405,'192.168.64.1',2,36,43323,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00na7kiyapi1qvrf',1,'Admin',1672319405,'192.168.64.1',2,36,43324,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00nb7kiygjd5htdj',1,'Admin',1672319405,'192.168.64.1',2,36,43325,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00nc7kiy3qn51osq',1,'Admin',1672319405,'192.168.64.1',2,36,43326,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00nd7kiytk4s08oj',1,'Admin',1672319405,'192.168.64.1',2,36,43327,NULL,'Controller [{#CONTROLLER.ID}]: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snau00ne7kiykgeluhqn',1,'Admin',1672319405,'192.168.64.1',2,36,43328,NULL,'Controller [{#CONTROLLER.ID}]: Cache memory size','clc93snar00007kiypalxeeen',''),('clc93snau00nf7kiyu6cule2y',1,'Admin',1672319405,'192.168.64.1',2,36,43329,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write utilization','clc93snar00007kiypalxeeen',''),('clc93snau00ng7kiydhnlw1nx',1,'Admin',1672319405,'192.168.64.1',2,36,43330,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00nh7kiy1e5n5g14',1,'Admin',1672319405,'192.168.64.1',2,36,43331,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00ni7kiy53im4fgj',1,'Admin',1672319405,'192.168.64.1',2,36,43332,NULL,'Controller [{#CONTROLLER.ID}]: Uptime','clc93snar00007kiypalxeeen',''),('clc93snau00nj7kiy5nz5vpw9',1,'Admin',1672319405,'192.168.64.1',2,36,44135,NULL,'Controller [{#CONTROLLER.ID}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00nk7kiy1944mtik',1,'Admin',1672319405,'192.168.64.1',2,36,44136,NULL,'Controller [{#CONTROLLER.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00nl7kiyflfuyewq',1,'Admin',1672319405,'192.168.64.1',2,36,43301,NULL,'Disk [{#DURABLE.ID}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00nm7kiymqkitoj5',1,'Admin',1672319405,'192.168.64.1',2,36,43333,NULL,'Disk [{#DURABLE.ID}]: Blocks size','clc93snar00007kiypalxeeen',''),('clc93snau00nn7kiywofv1erv',1,'Admin',1672319405,'192.168.64.1',2,36,43334,NULL,'Disk [{#DURABLE.ID}]: Blocks total','clc93snar00007kiypalxeeen',''),('clc93snau00no7kiykas2hszp',1,'Admin',1672319405,'192.168.64.1',2,36,43335,NULL,'Disk [{#DURABLE.ID}]: SSD life left','clc93snar00007kiypalxeeen',''),('clc93snau00np7kiymaw2g914',1,'Admin',1672319405,'192.168.64.1',2,36,43336,NULL,'Disk [{#DURABLE.ID}]: Disk group','clc93snar00007kiypalxeeen',''),('clc93snau00nq7kiyjwiyfgq4',1,'Admin',1672319405,'192.168.64.1',2,36,43337,NULL,'Disk [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00nr7kiyy4pdhxcj',1,'Admin',1672319405,'192.168.64.1',2,36,43338,NULL,'Disk [{#DURABLE.ID}]: Model','clc93snar00007kiypalxeeen',''),('clc93snau00ns7kiygymsjahl',1,'Admin',1672319405,'192.168.64.1',2,36,43339,NULL,'Disk [{#DURABLE.ID}]: Storage pool','clc93snar00007kiypalxeeen',''),('clc93snau00nt7kiydvo7s0t2',1,'Admin',1672319405,'192.168.64.1',2,36,43340,NULL,'Disk [{#DURABLE.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00nu7kiyqmu84uw3',1,'Admin',1672319405,'192.168.64.1',2,36,43341,NULL,'Disk [{#DURABLE.ID}]: Temperature','clc93snar00007kiypalxeeen',''),('clc93snau00nv7kiygeei3mv1',1,'Admin',1672319405,'192.168.64.1',2,36,43342,NULL,'Disk [{#DURABLE.ID}]: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snau00nw7kiyrkl93npy',1,'Admin',1672319405,'192.168.64.1',2,36,43343,NULL,'Disk [{#DURABLE.ID}]: Type','clc93snar00007kiypalxeeen',''),('clc93snau00nx7kiyyj3d9ny6',1,'Admin',1672319405,'192.168.64.1',2,36,43344,NULL,'Disk [{#DURABLE.ID}]: Vendor','clc93snar00007kiypalxeeen',''),('clc93snau00ny7kiygp9g8u5d',1,'Admin',1672319405,'192.168.64.1',2,36,44137,NULL,'Disk [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00nz7kiybza0q8f2',1,'Admin',1672319405,'192.168.64.1',2,36,43302,NULL,'Disk group [{#NAME}]: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00o07kiyza5f4w3y',1,'Admin',1672319405,'192.168.64.1',2,36,43303,NULL,'Disk group [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00o17kiyhrkwb94k',1,'Admin',1672319405,'192.168.64.1',2,36,43304,NULL,'Disk group [{#NAME}]: Space free','clc93snar00007kiypalxeeen',''),('clc93snau00o27kiyq0skw4na',1,'Admin',1672319405,'192.168.64.1',2,36,43345,NULL,'Disk group [{#NAME}]: Average response time: Read','clc93snar00007kiypalxeeen',''),('clc93snau00o37kiyndj1qmrl',1,'Admin',1672319405,'192.168.64.1',2,36,43346,NULL,'Disk group [{#NAME}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00o47kiyog3qub83',1,'Admin',1672319405,'192.168.64.1',2,36,43347,NULL,'Disk group [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00o57kiypx9dg70h',1,'Admin',1672319405,'192.168.64.1',2,36,43348,NULL,'Disk group [{#NAME}]: Disks count','clc93snar00007kiypalxeeen',''),('clc93snau00o67kiy66ji3a2q',1,'Admin',1672319405,'192.168.64.1',2,36,43349,NULL,'Disk group [{#NAME}]: Pool space used','clc93snar00007kiypalxeeen',''),('clc93snau00o77kiynj5ynwto',1,'Admin',1672319405,'192.168.64.1',2,36,43350,NULL,'Disk group [{#NAME}]: RAID type','clc93snar00007kiypalxeeen',''),('clc93snau00o87kiy6fatjeb9',1,'Admin',1672319405,'192.168.64.1',2,36,43351,NULL,'Disk group [{#NAME}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00o97kiyrqi4dcvs',1,'Admin',1672319405,'192.168.64.1',2,36,43352,NULL,'Disk group [{#NAME}]: Average response time: Total','clc93snar00007kiypalxeeen',''),('clc93snau00oa7kiyna5p6fec',1,'Admin',1672319405,'192.168.64.1',2,36,43353,NULL,'Disk group [{#NAME}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00ob7kiyjrwoyocm',1,'Admin',1672319405,'192.168.64.1',2,36,43354,NULL,'Disk group [{#NAME}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00oc7kiy2zyqttvm',1,'Admin',1672319405,'192.168.64.1',2,36,43355,NULL,'Disk group [{#NAME}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00od7kiydof6pi79',1,'Admin',1672319405,'192.168.64.1',2,36,43356,NULL,'Disk group [{#NAME}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00oe7kiywp74cl3w',1,'Admin',1672319405,'192.168.64.1',2,36,43357,NULL,'Disk group [{#NAME}]: Blocks total','clc93snar00007kiypalxeeen',''),('clc93snau00of7kiy1cyl2w67',1,'Admin',1672319405,'192.168.64.1',2,36,43358,NULL,'Disk group [{#NAME}]: Blocks size','clc93snar00007kiypalxeeen',''),('clc93snau00og7kiy72688c5c',1,'Admin',1672319405,'192.168.64.1',2,36,43359,NULL,'Disk group [{#NAME}]: Blocks free','clc93snar00007kiypalxeeen',''),('clc93snau00oh7kiyj03937fj',1,'Admin',1672319405,'192.168.64.1',2,36,43360,NULL,'Disk group [{#NAME}]: Average response time: Write','clc93snar00007kiypalxeeen',''),('clc93snau00oi7kiyhozu9jyg',1,'Admin',1672319405,'192.168.64.1',2,36,43361,NULL,'Disk group [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00oj7kiybkeqw3wq',1,'Admin',1672319405,'192.168.64.1',2,36,44138,NULL,'Disk group [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00ok7kiyygw4iqo5',1,'Admin',1672319405,'192.168.64.1',2,36,44139,NULL,'Disk group [{#NAME}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00ol7kiykqz4iy91',1,'Admin',1672319405,'192.168.64.1',2,36,43362,NULL,'Enclosure [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00om7kiya8n5gw01',1,'Admin',1672319405,'192.168.64.1',2,36,43363,NULL,'Enclosure [{#DURABLE.ID}]: Midplane serial number','clc93snar00007kiypalxeeen',''),('clc93snau00on7kiysscrev4u',1,'Admin',1672319405,'192.168.64.1',2,36,43364,NULL,'Enclosure [{#DURABLE.ID}]: Model','clc93snar00007kiypalxeeen',''),('clc93snau00oo7kiyll5nlg7z',1,'Admin',1672319405,'192.168.64.1',2,36,43365,NULL,'Enclosure [{#DURABLE.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00op7kiyoaq1xzmy',1,'Admin',1672319405,'192.168.64.1',2,36,43366,NULL,'Enclosure [{#DURABLE.ID}]: Power','clc93snar00007kiypalxeeen',''),('clc93snau00oq7kiy5oba9c04',1,'Admin',1672319405,'192.168.64.1',2,36,43367,NULL,'Enclosure [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00or7kiyp26a8kp9',1,'Admin',1672319405,'192.168.64.1',2,36,44140,NULL,'Enclosure [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00os7kiyuebe56my',1,'Admin',1672319405,'192.168.64.1',2,36,43368,NULL,'Fan [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00ot7kiyqaqjd1qy',1,'Admin',1672319405,'192.168.64.1',2,36,43369,NULL,'Fan [{#DURABLE.ID}]: Speed','clc93snar00007kiypalxeeen',''),('clc93snau00ou7kiyndb30p92',1,'Admin',1672319405,'192.168.64.1',2,36,43370,NULL,'Fan [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00ov7kiy5rn6jbpk',1,'Admin',1672319405,'192.168.64.1',2,36,44141,NULL,'Fan [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ow7kiy95w4ee3e',1,'Admin',1672319405,'192.168.64.1',2,36,43371,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00ox7kiyebr9pvfa',1,'Admin',1672319405,'192.168.64.1',2,36,43372,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00oy7kiyah6echmg',1,'Admin',1672319405,'192.168.64.1',2,36,43373,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00oz7kiyr74xh7mp',1,'Admin',1672319405,'192.168.64.1',2,36,44142,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00p07kiyh4m8lebe',1,'Admin',1672319405,'192.168.64.1',2,36,43305,NULL,'Pool [{#NAME}]: Space free','clc93snar00007kiypalxeeen',''),('clc93snav00p17kiymlfr0n4n',1,'Admin',1672319405,'192.168.64.1',2,36,43306,NULL,'Pool [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snav00p27kiy1ie4isbo',1,'Admin',1672319405,'192.168.64.1',2,36,43307,NULL,'Pool [{#NAME}]: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snav00p37kiyg1g7fztx',1,'Admin',1672319405,'192.168.64.1',2,36,43374,NULL,'Pool [{#NAME}]: Blocks available','clc93snar00007kiypalxeeen',''),('clc93snav00p47kiyf1fe1w3y',1,'Admin',1672319405,'192.168.64.1',2,36,43375,NULL,'Pool [{#NAME}]: Blocks size','clc93snar00007kiypalxeeen',''),('clc93snav00p57kiy79vxcpz2',1,'Admin',1672319405,'192.168.64.1',2,36,43376,NULL,'Pool [{#NAME}]: Blocks total','clc93snar00007kiypalxeeen',''),('clc93snav00p67kiy70sld9to',1,'Admin',1672319405,'192.168.64.1',2,36,43377,NULL,'Pool [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snav00p77kiy4blz9n66',1,'Admin',1672319405,'192.168.64.1',2,36,44143,NULL,'Pool [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00p87kiy8lq28lee',1,'Admin',1672319405,'192.168.64.1',2,36,43378,NULL,'Port [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snav00p97kiyvffakcly',1,'Admin',1672319405,'192.168.64.1',2,36,43379,NULL,'Port [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00pa7kiyew9f48il',1,'Admin',1672319405,'192.168.64.1',2,36,43380,NULL,'Port [{#NAME}]: Type','clc93snar00007kiypalxeeen',''),('clc93snav00pb7kiyawkq0x4i',1,'Admin',1672319405,'192.168.64.1',2,36,44144,NULL,'Port [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00pc7kiy7xim2py8',1,'Admin',1672319405,'192.168.64.1',2,36,43381,NULL,'Power supply [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snav00pd7kiypjvivxy4',1,'Admin',1672319405,'192.168.64.1',2,36,43382,NULL,'Power supply [{#DURABLE.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00pe7kiyiojreykt',1,'Admin',1672319405,'192.168.64.1',2,36,43383,NULL,'Power supply [{#DURABLE.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00pf7kiycw7z4yfs',1,'Admin',1672319405,'192.168.64.1',2,36,43384,NULL,'Power supply [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00pg7kiy6mze5gc3',1,'Admin',1672319405,'192.168.64.1',2,36,44145,NULL,'Power supply [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ph7kiyjjn4k4rd',1,'Admin',1672319405,'192.168.64.1',2,36,43308,NULL,'Volume [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snav00pi7kiy76nl0f8m',1,'Admin',1672319405,'192.168.64.1',2,36,43309,NULL,'Volume [{#NAME}]: Space allocated','clc93snar00007kiypalxeeen',''),('clc93snav00pj7kiy47232ki0',1,'Admin',1672319405,'192.168.64.1',2,36,43385,NULL,'Volume [{#NAME}]: Blocks allocated','clc93snar00007kiypalxeeen',''),('clc93snav00pk7kiyyi3exih5',1,'Admin',1672319405,'192.168.64.1',2,36,43386,NULL,'Volume [{#NAME}]: Blocks size','clc93snar00007kiypalxeeen',''),('clc93snav00pl7kiy58oo3dk0',1,'Admin',1672319405,'192.168.64.1',2,36,43387,NULL,'Volume [{#NAME}]: Blocks total','clc93snar00007kiypalxeeen',''),('clc93snav00pm7kiyqamay6qz',1,'Admin',1672319405,'192.168.64.1',2,36,43388,NULL,'Volume [{#NAME}]: Cache: Read hits, rate','clc93snar00007kiypalxeeen',''),('clc93snav00pn7kiy16mqtpbj',1,'Admin',1672319405,'192.168.64.1',2,36,43389,NULL,'Volume [{#NAME}]: Cache: Read misses, rate','clc93snar00007kiypalxeeen',''),('clc93snav00po7kiypmmw8twc',1,'Admin',1672319405,'192.168.64.1',2,36,43390,NULL,'Volume [{#NAME}]: Cache: Write hits, rate','clc93snar00007kiypalxeeen',''),('clc93snav00pp7kiymkqxot15',1,'Admin',1672319405,'192.168.64.1',2,36,43391,NULL,'Volume [{#NAME}]: Cache: Write misses, rate','clc93snar00007kiypalxeeen',''),('clc93snav00pq7kiyg77vj12t',1,'Admin',1672319405,'192.168.64.1',2,36,43392,NULL,'Volume [{#NAME}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snav00pr7kiyhftilnjj',1,'Admin',1672319405,'192.168.64.1',2,36,43393,NULL,'Volume [{#NAME}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snav00ps7kiyjzl9zi0w',1,'Admin',1672319405,'192.168.64.1',2,36,43394,NULL,'Volume [{#NAME}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snav00pt7kiydtxh5wbq',1,'Admin',1672319405,'192.168.64.1',2,36,43395,NULL,'Volume [{#NAME}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snav00pu7kiysef8yo5a',1,'Admin',1672319405,'192.168.64.1',2,36,43396,NULL,'Volume [{#NAME}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snav00pv7kiy4rfta6ao',1,'Admin',1672319405,'192.168.64.1',2,36,43397,NULL,'Volume [{#NAME}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snav00pw7kiyp86fzza2',1,'Admin',1672319405,'192.168.64.1',2,36,44146,NULL,'Volume [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00px7kiy6bw0rgwu',1,'Admin',1672319405,'192.168.64.1',2,36,44147,NULL,'Volume [{#NAME}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snav00py7kiyndla12iz',1,'Admin',1672319405,'192.168.64.1',2,36,43421,NULL,'CPG [{#NAME}]: Number of FPVVs','clc93snar00007kiypalxeeen',''),('clc93snav00pz7kiyifsczrv6',1,'Admin',1672319405,'192.168.64.1',2,36,43422,NULL,'CPG [{#NAME}]: Logical disk space: User space: Used (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00q07kiyqz3x9y98',1,'Admin',1672319405,'192.168.64.1',2,36,43423,NULL,'CPG [{#NAME}]: Number of TDVVs','clc93snar00007kiypalxeeen',''),('clc93snav00q17kiyd2men5p4',1,'Admin',1672319405,'192.168.64.1',2,36,43424,NULL,'CPG [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00q27kiygqwes9ti',1,'Admin',1672319405,'192.168.64.1',2,36,43425,NULL,'CPG [{#NAME}]: Failed state','clc93snar00007kiypalxeeen',''),('clc93snav00q37kiyfzyvahwr',1,'Admin',1672319405,'192.168.64.1',2,36,43426,NULL,'CPG [{#NAME}]: Degraded state','clc93snar00007kiypalxeeen',''),('clc93snav00q47kiykddksfyv',1,'Admin',1672319405,'192.168.64.1',2,36,43427,NULL,'CPG [{#NAME}]: CPG space: Total','clc93snar00007kiypalxeeen',''),('clc93snav00q57kiyfh5kbdwd',1,'Admin',1672319405,'192.168.64.1',2,36,43428,NULL,'CPG [{#NAME}]: CPG space: Shared','clc93snar00007kiypalxeeen',''),('clc93snav00q67kiy6lvp1d6t',1,'Admin',1672319405,'192.168.64.1',2,36,43429,NULL,'CPG [{#NAME}]: CPG space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00q77kiy2vcxo6zt',1,'Admin',1672319405,'192.168.64.1',2,36,43430,NULL,'CPG [{#NAME}]: Logical disk space: User space: Used','clc93snar00007kiypalxeeen',''),('clc93snav00q87kiy4f4a7m9f',1,'Admin',1672319405,'192.168.64.1',2,36,43431,NULL,'CPG [{#NAME}]: Logical disk space: User space: Total','clc93snar00007kiypalxeeen',''),('clc93snav00q97kiyrm02v4vx',1,'Admin',1672319405,'192.168.64.1',2,36,43432,NULL,'CPG [{#NAME}]: Logical disk space: User space: Total (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qa7kiy6pi6v4r4',1,'Admin',1672319405,'192.168.64.1',2,36,43433,NULL,'CPG [{#NAME}]: Raw space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00qb7kiyz6o45b4j',1,'Admin',1672319405,'192.168.64.1',2,36,43434,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot data: Used','clc93snar00007kiypalxeeen',''),('clc93snav00qc7kiyxczf8u1q',1,'Admin',1672319405,'192.168.64.1',2,36,43435,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot data: Total','clc93snar00007kiypalxeeen',''),('clc93snav00qd7kiy7se7vf9s',1,'Admin',1672319405,'192.168.64.1',2,36,43436,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot data: Used (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qe7kiypy47wgtp',1,'Admin',1672319405,'192.168.64.1',2,36,43437,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot data: Total (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qf7kiyta32xio7',1,'Admin',1672319405,'192.168.64.1',2,36,43438,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot administration: Used','clc93snar00007kiypalxeeen',''),('clc93snav00qg7kiy2ivv3e7q',1,'Admin',1672319405,'192.168.64.1',2,36,43439,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot administration: Total','clc93snar00007kiypalxeeen',''),('clc93snav00qh7kiysgrv7ia6',1,'Admin',1672319405,'192.168.64.1',2,36,43440,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot administration: Used (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qi7kiyrxrbx4vd',1,'Admin',1672319405,'192.168.64.1',2,36,43441,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot administration: Total (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qj7kiywc8wry1w',1,'Admin',1672319405,'192.168.64.1',2,36,43442,NULL,'CPG [{#NAME}]: Raw space: Total','clc93snar00007kiypalxeeen',''),('clc93snav00qk7kiy1ihginf2',1,'Admin',1672319405,'192.168.64.1',2,36,43443,NULL,'CPG [{#NAME}]: Raw space: Shared','clc93snar00007kiypalxeeen',''),('clc93snav00ql7kiyaxiyvgp5',1,'Admin',1672319405,'192.168.64.1',2,36,43444,NULL,'CPG [{#NAME}]: Number of TPVVs','clc93snar00007kiypalxeeen',''),('clc93snav00qm7kiyxfmp3gpj',1,'Admin',1672319405,'192.168.64.1',2,36,44155,NULL,'CPG [{#NAME}]: Get CPG data','clc93snar00007kiypalxeeen',''),('clc93snav00qn7kiym1871682',1,'Admin',1672319405,'192.168.64.1',2,36,43445,NULL,'Disk [{#POSITION}]: Free size','clc93snar00007kiypalxeeen',''),('clc93snav00qo7kiyxhftkiys',1,'Admin',1672319405,'192.168.64.1',2,36,43446,NULL,'Disk [{#POSITION}]: Firmware version','clc93snar00007kiypalxeeen',''),('clc93snav00qp7kiyxb2dw9qz',1,'Admin',1672319405,'192.168.64.1',2,36,43447,NULL,'Disk [{#POSITION}]: Path A0 degraded','clc93snar00007kiypalxeeen',''),('clc93snav00qq7kiyr26kbubb',1,'Admin',1672319405,'192.168.64.1',2,36,43448,NULL,'Disk [{#POSITION}]: Path A1 degraded','clc93snar00007kiypalxeeen',''),('clc93snav00qr7kiyyfxp9str',1,'Admin',1672319405,'192.168.64.1',2,36,43449,NULL,'Disk [{#POSITION}]: Path B0 degraded','clc93snar00007kiypalxeeen',''),('clc93snav00qs7kiyg236avxk',1,'Admin',1672319405,'192.168.64.1',2,36,43450,NULL,'Disk [{#POSITION}]: Path B1 degraded','clc93snar00007kiypalxeeen',''),('clc93snav00qt7kiyj9ycftv5',1,'Admin',1672319405,'192.168.64.1',2,36,43451,NULL,'Disk [{#POSITION}]: Manufacturer','clc93snar00007kiypalxeeen',''),('clc93snav00qu7kiyt8gs172r',1,'Admin',1672319405,'192.168.64.1',2,36,43452,NULL,'Disk [{#POSITION}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00qv7kiy2gjoiojj',1,'Admin',1672319405,'192.168.64.1',2,36,43453,NULL,'Disk [{#POSITION}]: RPM','clc93snar00007kiypalxeeen',''),('clc93snav00qw7kiyuubfjjxl',1,'Admin',1672319405,'192.168.64.1',2,36,43454,NULL,'Disk [{#POSITION}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00qx7kiyg6q8oaiq',1,'Admin',1672319405,'192.168.64.1',2,36,43455,NULL,'Disk [{#POSITION}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00qy7kiyxw6z7o2e',1,'Admin',1672319405,'192.168.64.1',2,36,43456,NULL,'Disk [{#POSITION}]: Total size','clc93snar00007kiypalxeeen',''),('clc93snav00qz7kiy43ij9d91',1,'Admin',1672319405,'192.168.64.1',2,36,44156,NULL,'Disk [{#POSITION}]: Get disk data','clc93snar00007kiypalxeeen',''),('clc93snav00r07kiyk36f0fpi',1,'Admin',1672319405,'192.168.64.1',2,36,43457,NULL,'Host [{#NAME}]: Comment','clc93snar00007kiypalxeeen',''),('clc93snav00r17kiy5dx0zque',1,'Admin',1672319405,'192.168.64.1',2,36,43458,NULL,'Host [{#NAME}]: Contact','clc93snar00007kiypalxeeen',''),('clc93snav00r27kiy5oosqxrb',1,'Admin',1672319405,'192.168.64.1',2,36,43459,NULL,'Host [{#NAME}]: IP address','clc93snar00007kiypalxeeen',''),('clc93snav00r37kiyogjon9is',1,'Admin',1672319405,'192.168.64.1',2,36,43460,NULL,'Host [{#NAME}]: Location','clc93snar00007kiypalxeeen',''),('clc93snav00r47kiykz2koghw',1,'Admin',1672319405,'192.168.64.1',2,36,43461,NULL,'Host [{#NAME}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00r57kiyztvhsu16',1,'Admin',1672319405,'192.168.64.1',2,36,43462,NULL,'Host [{#NAME}]: OS','clc93snar00007kiypalxeeen',''),('clc93snav00r67kiy5lxqkwsi',1,'Admin',1672319405,'192.168.64.1',2,36,44157,NULL,'Host [{#NAME}]: Get host data','clc93snar00007kiypalxeeen',''),('clc93snav00r77kiy4z5ajb2s',1,'Admin',1672319405,'192.168.64.1',2,36,43463,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Failover state','clc93snar00007kiypalxeeen',''),('clc93snav00r87kiyku5ro4zr',1,'Admin',1672319405,'192.168.64.1',2,36,43464,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Hardware type','clc93snar00007kiypalxeeen',''),('clc93snav00r97kiys4zrqibi',1,'Admin',1672319405,'192.168.64.1',2,36,43465,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state','clc93snar00007kiypalxeeen',''),('clc93snav00ra7kiypjqt9a2f',1,'Admin',1672319405,'192.168.64.1',2,36,43466,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Type','clc93snar00007kiypalxeeen',''),('clc93snav00rb7kiyaci5i1t2',1,'Admin',1672319405,'192.168.64.1',2,36,44158,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Get port data','clc93snar00007kiypalxeeen',''),('clc93snav00rc7kiynlrw7cz4',1,'Admin',1672319405,'192.168.64.1',2,36,43467,NULL,'Task [{#NAME}]: Finish time','clc93snar00007kiypalxeeen',''),('clc93snav00rd7kiy5mak9pek',1,'Admin',1672319405,'192.168.64.1',2,36,43468,NULL,'Task [{#NAME}]: Start time','clc93snar00007kiypalxeeen',''),('clc93snav00re7kiyo4ow0h2a',1,'Admin',1672319405,'192.168.64.1',2,36,43469,NULL,'Task [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00rf7kiyytxb2fd8',1,'Admin',1672319405,'192.168.64.1',2,36,43470,NULL,'Task [{#NAME}]: Type','clc93snar00007kiypalxeeen',''),('clc93snav00rg7kiyw2hazt37',1,'Admin',1672319405,'192.168.64.1',2,36,44159,NULL,'Task [{#NAME}]: Get task data','clc93snar00007kiypalxeeen',''),('clc93snav00rh7kiyn4ghw2hd',1,'Admin',1672319405,'192.168.64.1',2,36,43471,NULL,'Volume [{#NAME}]: Compaction ratio','clc93snar00007kiypalxeeen',''),('clc93snav00ri7kiy9zjlh0ni',1,'Admin',1672319405,'192.168.64.1',2,36,43472,NULL,'Volume [{#NAME}]: Total space','clc93snar00007kiypalxeeen',''),('clc93snav00rj7kiypzmagtps',1,'Admin',1672319405,'192.168.64.1',2,36,43473,NULL,'Volume [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00rk7kiyacj9syvx',1,'Admin',1672319405,'192.168.64.1',2,36,43474,NULL,'Volume [{#NAME}]: Failed state','clc93snar00007kiypalxeeen',''),('clc93snav00rl7kiyw9wbai7c',1,'Admin',1672319405,'192.168.64.1',2,36,43475,NULL,'Volume [{#NAME}]: Degraded state','clc93snar00007kiypalxeeen',''),('clc93snav00rm7kiyy5kabbeb',1,'Admin',1672319405,'192.168.64.1',2,36,43476,NULL,'Volume [{#NAME}]: Deduplication state','clc93snar00007kiypalxeeen',''),('clc93snav00rn7kiytleh74a8',1,'Admin',1672319405,'192.168.64.1',2,36,43477,NULL,'Volume [{#NAME}]: Compression state','clc93snar00007kiypalxeeen',''),('clc93snav00ro7kiy9wzly7w8',1,'Admin',1672319405,'192.168.64.1',2,36,43478,NULL,'Volume [{#NAME}]: User space: Used','clc93snar00007kiypalxeeen',''),('clc93snav00rp7kiyeltebqmv',1,'Admin',1672319405,'192.168.64.1',2,36,43479,NULL,'Volume [{#NAME}]: User space: Reserved','clc93snar00007kiypalxeeen',''),('clc93snav00rq7kiyv5uz5ddb',1,'Admin',1672319405,'192.168.64.1',2,36,43480,NULL,'Volume [{#NAME}]: User space: Raw reserved','clc93snar00007kiypalxeeen',''),('clc93snav00rr7kiyvj5t2pi3',1,'Admin',1672319405,'192.168.64.1',2,36,43481,NULL,'Volume [{#NAME}]: User space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00rs7kiy0ukqqz5t',1,'Admin',1672319405,'192.168.64.1',2,36,43482,NULL,'Volume [{#NAME}]: Total used space','clc93snar00007kiypalxeeen',''),('clc93snav00rt7kiyfw212zoa',1,'Admin',1672319405,'192.168.64.1',2,36,43483,NULL,'Volume [{#NAME}]: Total reserved space','clc93snar00007kiypalxeeen',''),('clc93snav00ru7kiyeeeje2x8',1,'Admin',1672319405,'192.168.64.1',2,36,43484,NULL,'Volume [{#NAME}]: Storage space saved using compression','clc93snar00007kiypalxeeen',''),('clc93snav00rv7kiyzdwo1q2s',1,'Admin',1672319405,'192.168.64.1',2,36,43485,NULL,'Volume [{#NAME}]: Snapshot space: Used','clc93snar00007kiypalxeeen',''),('clc93snav00rw7kiym8f1vlpu',1,'Admin',1672319405,'192.168.64.1',2,36,43486,NULL,'Volume [{#NAME}]: Snapshot space: Reserved','clc93snar00007kiypalxeeen',''),('clc93snav00rx7kiykbt56clj',1,'Admin',1672319405,'192.168.64.1',2,36,43487,NULL,'Volume [{#NAME}]: Snapshot space: Raw reserved','clc93snar00007kiypalxeeen',''),('clc93snav00ry7kiyousuw8a3',1,'Admin',1672319405,'192.168.64.1',2,36,43488,NULL,'Volume [{#NAME}]: Snapshot space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00rz7kiyyrim4u02',1,'Admin',1672319405,'192.168.64.1',2,36,43489,NULL,'Volume [{#NAME}]: Administrative space: Used','clc93snar00007kiypalxeeen',''),('clc93snav00s07kiydwzswxaf',1,'Admin',1672319405,'192.168.64.1',2,36,43490,NULL,'Volume [{#NAME}]: Administrative space: Reserved','clc93snar00007kiypalxeeen',''),('clc93snav00s17kiy1zpb3yn5',1,'Admin',1672319405,'192.168.64.1',2,36,43491,NULL,'Volume [{#NAME}]: Administrative space: Raw reserved','clc93snar00007kiypalxeeen',''),('clc93snav00s27kiy59514yuk',1,'Admin',1672319405,'192.168.64.1',2,36,43492,NULL,'Volume [{#NAME}]: Administrative space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00s37kiy2lnle5t4',1,'Admin',1672319405,'192.168.64.1',2,36,43493,NULL,'Volume [{#NAME}]: Storage space saved using deduplication and compression','clc93snar00007kiypalxeeen',''),('clc93snav00s47kiyezk8blvl',1,'Admin',1672319405,'192.168.64.1',2,36,43494,NULL,'Volume [{#NAME}]: Overprovisioning ratio','clc93snar00007kiypalxeeen',''),('clc93snav00s57kiyi004j2t7',1,'Admin',1672319405,'192.168.64.1',2,36,43495,NULL,'Volume [{#NAME}]: Storage space saved using deduplication','clc93snar00007kiypalxeeen',''),('clc93snav00s67kiyfyrzyb4z',1,'Admin',1672319405,'192.168.64.1',2,36,43496,NULL,'Volume [{#NAME}]: Remote copy status','clc93snar00007kiypalxeeen',''),('clc93snav00s77kiy7reskzwa',1,'Admin',1672319405,'192.168.64.1',2,36,44160,NULL,'Volume [{#NAME}]: Get volume data','clc93snar00007kiypalxeeen',''),('clc93snav00s87kiyhsu4csbu',1,'Admin',1672319405,'192.168.64.1',2,36,43926,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Power state','clc93snar00007kiypalxeeen',''),('clc93snav00s97kiyqidr451m',1,'Admin',1672319405,'192.168.64.1',2,36,43927,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00sa7kiy09qm5hfn',1,'Admin',1672319405,'192.168.64.1',2,36,43928,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00sb7kiyns748j89',1,'Admin',1672319405,'192.168.64.1',2,36,43929,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Powered on','clc93snar00007kiypalxeeen',''),('clc93snav00sc7kiy3vyisf55',1,'Admin',1672319405,'192.168.64.1',2,36,43930,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00sd7kiy6gpkrno4',1,'Admin',1672319405,'192.168.64.1',2,36,43931,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00se7kiyczs6hqsx',1,'Admin',1672319405,'192.168.64.1',2,36,43932,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00sf7kiyce99y6ik',1,'Admin',1672319405,'192.168.64.1',2,36,43933,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00sg7kiynsfn4epu',1,'Admin',1672319405,'192.168.64.1',2,36,44214,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00sh7kiyr4tls4s9',1,'Admin',1672319405,'192.168.64.1',2,36,43934,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: HW version','clc93snar00007kiypalxeeen',''),('clc93snav00si7kiy5glkfcj4',1,'Admin',1672319405,'192.168.64.1',2,36,43935,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00sj7kiyr13xgegs',1,'Admin',1672319405,'192.168.64.1',2,36,43936,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00sk7kiye7693jyq',1,'Admin',1672319405,'192.168.64.1',2,36,43937,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00sl7kiy6yahrt1o',1,'Admin',1672319405,'192.168.64.1',2,36,43938,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00sm7kiyiwec4ni8',1,'Admin',1672319405,'192.168.64.1',2,36,44215,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00sn7kiyxcwj6bjj',1,'Admin',1672319405,'192.168.64.1',2,36,43939,NULL,'Datacenter [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00so7kiyhmmlsczp',1,'Admin',1672319405,'192.168.64.1',2,36,43940,NULL,'Datacenter [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00sp7kiyl53mlar2',1,'Admin',1672319405,'192.168.64.1',2,36,44216,NULL,'Datacenter [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00sq7kiyrmon3406',1,'Admin',1672319405,'192.168.64.1',2,36,43941,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00sr7kiyg8saw5k9',1,'Admin',1672319405,'192.168.64.1',2,36,43942,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Power allocated','clc93snar00007kiypalxeeen',''),('clc93snav00ss7kiyyihkz0wy',1,'Admin',1672319405,'192.168.64.1',2,36,43943,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00st7kiyvnyazcte',1,'Admin',1672319405,'192.168.64.1',2,36,43944,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00su7kiytrg2c50h',1,'Admin',1672319405,'192.168.64.1',2,36,44217,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00sv7kiyml2l3t98',1,'Admin',1672319405,'192.168.64.1',2,36,43945,NULL,'Enclosure [{#NAME}]: Appliance bays count','clc93snar00007kiypalxeeen',''),('clc93snav00sw7kiywpbquxai',1,'Admin',1672319405,'192.168.64.1',2,36,43946,NULL,'Enclosure [{#NAME}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00sx7kiyiec278rt',1,'Admin',1672319405,'192.168.64.1',2,36,43947,NULL,'Enclosure [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00sy7kiy8tj4t2rv',1,'Admin',1672319405,'192.168.64.1',2,36,43948,NULL,'Enclosure [{#NAME}]: State reason','clc93snar00007kiypalxeeen',''),('clc93snav00sz7kiypoca8yse',1,'Admin',1672319405,'192.168.64.1',2,36,43949,NULL,'Enclosure [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00t07kiy9cbzb2v2',1,'Admin',1672319405,'192.168.64.1',2,36,43950,NULL,'Enclosure [{#NAME}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00t17kiymk92s1p2',1,'Admin',1672319405,'192.168.64.1',2,36,43951,NULL,'Enclosure [{#NAME}]: Power supply bays count','clc93snar00007kiypalxeeen',''),('clc93snav00t27kiy6l2eeza2',1,'Admin',1672319405,'192.168.64.1',2,36,43952,NULL,'Enclosure [{#NAME}]: Total available power','clc93snar00007kiypalxeeen',''),('clc93snav00t37kiye9devtrt',1,'Admin',1672319405,'192.168.64.1',2,36,43953,NULL,'Enclosure [{#NAME}]: Total allocated power','clc93snar00007kiypalxeeen',''),('clc93snav00t47kiyghox3rz2',1,'Admin',1672319405,'192.168.64.1',2,36,43954,NULL,'Enclosure [{#NAME}]: Power capacity','clc93snar00007kiypalxeeen',''),('clc93snav00t57kiyfm7mk9w1',1,'Admin',1672319405,'192.168.64.1',2,36,43955,NULL,'Enclosure [{#NAME}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00t67kiy6qydh9bn',1,'Admin',1672319405,'192.168.64.1',2,36,43956,NULL,'Enclosure [{#NAME}]: Device bays count','clc93snar00007kiypalxeeen',''),('clc93snav00t77kiyw4k7apzd',1,'Admin',1672319405,'192.168.64.1',2,36,43957,NULL,'Enclosure [{#NAME}]: Min power supplies for redundant power feed','clc93snar00007kiypalxeeen',''),('clc93snav00t87kiy5t1gqlkn',1,'Admin',1672319405,'192.168.64.1',2,36,43958,NULL,'Enclosure [{#NAME}]: Min power supplies','clc93snar00007kiypalxeeen',''),('clc93snav00t97kiysdjhokos',1,'Admin',1672319405,'192.168.64.1',2,36,43959,NULL,'Enclosure [{#NAME}]: Interconnect bays power','clc93snar00007kiypalxeeen',''),('clc93snav00ta7kiyju23ackf',1,'Admin',1672319405,'192.168.64.1',2,36,43960,NULL,'Enclosure [{#NAME}]: Interconnect bays count','clc93snar00007kiypalxeeen',''),('clc93snav00tb7kiyc2smstcb',1,'Admin',1672319405,'192.168.64.1',2,36,43961,NULL,'Enclosure [{#NAME}]: Firmware baseline','clc93snar00007kiypalxeeen',''),('clc93snav00tc7kiyf2199u3c',1,'Admin',1672319405,'192.168.64.1',2,36,43962,NULL,'Enclosure [{#NAME}]: Fan bays count','clc93snar00007kiypalxeeen',''),('clc93snav00td7kiy58mh1uet',1,'Admin',1672319405,'192.168.64.1',2,36,43963,NULL,'Enclosure [{#NAME}]: Power allocated for fans and management devices','clc93snar00007kiypalxeeen',''),('clc93snav00te7kiywvdal4v4',1,'Admin',1672319405,'192.168.64.1',2,36,43964,NULL,'Enclosure [{#NAME}]: Device bays power','clc93snar00007kiypalxeeen',''),('clc93snav00tf7kiyu8jufnso',1,'Admin',1672319405,'192.168.64.1',2,36,43965,NULL,'Enclosure [{#NAME}]: Type','clc93snar00007kiypalxeeen',''),('clc93snav00tg7kiyu37dy9a8',1,'Admin',1672319405,'192.168.64.1',2,36,44218,NULL,'Enclosure [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00th7kiyyvg1tlpb',1,'Admin',1672319405,'192.168.64.1',2,36,43966,NULL,'Ethernet network [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00ti7kiyfvc41zij',1,'Admin',1672319405,'192.168.64.1',2,36,43967,NULL,'Ethernet network [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00tj7kiyl8x71ag3',1,'Admin',1672319405,'192.168.64.1',2,36,44219,NULL,'Ethernet network [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00tk7kiyso1d5ozs',1,'Admin',1672319405,'192.168.64.1',2,36,43968,NULL,'Fabric [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00tl7kiysh5z1x7a',1,'Admin',1672319405,'192.168.64.1',2,36,43969,NULL,'Fabric [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00tm7kiy3deiz31l',1,'Admin',1672319405,'192.168.64.1',2,36,44220,NULL,'Fabric [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00tn7kiy752bfwtm',1,'Admin',1672319405,'192.168.64.1',2,36,43970,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00to7kiy3g0ad5ev',1,'Admin',1672319405,'192.168.64.1',2,36,43971,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00tp7kiyoeqxv8dr',1,'Admin',1672319405,'192.168.64.1',2,36,43972,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00tq7kiyi94837s5',1,'Admin',1672319405,'192.168.64.1',2,36,43973,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Required','clc93snar00007kiypalxeeen',''),('clc93snav00tr7kiyq0flal63',1,'Admin',1672319405,'192.168.64.1',2,36,43974,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00ts7kiy6kz8e481',1,'Admin',1672319405,'192.168.64.1',2,36,43975,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00tt7kiyw9z70zxx',1,'Admin',1672319405,'192.168.64.1',2,36,43976,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00tu7kiy972qczcz',1,'Admin',1672319405,'192.168.64.1',2,36,43977,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00tv7kiypy6j8fuu',1,'Admin',1672319405,'192.168.64.1',2,36,44221,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00tw7kiypcuwsvej',1,'Admin',1672319405,'192.168.64.1',2,36,43978,NULL,'FC network [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00tx7kiy4kplipf0',1,'Admin',1672319405,'192.168.64.1',2,36,43979,NULL,'FC network [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00ty7kiyza6w2l9w',1,'Admin',1672319405,'192.168.64.1',2,36,44222,NULL,'FC network [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00tz7kiyn95zkyl8',1,'Admin',1672319405,'192.168.64.1',2,36,43980,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Firmware version','clc93snar00007kiypalxeeen',''),('clc93snav00u07kiym5ynmq2u',1,'Admin',1672319405,'192.168.64.1',2,36,43981,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port state','clc93snar00007kiypalxeeen',''),('clc93snav00u17kiyu2rycx41',1,'Admin',1672319405,'192.168.64.1',2,36,43982,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port status','clc93snar00007kiypalxeeen',''),('clc93snav00u27kiy3hfu1qav',1,'Admin',1672319405,'192.168.64.1',2,36,43983,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port state','clc93snar00007kiypalxeeen',''),('clc93snav00u37kiycym8sops',1,'Admin',1672319405,'192.168.64.1',2,36,43984,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port status','clc93snar00007kiypalxeeen',''),('clc93snav00u47kiykuxvbwjw',1,'Admin',1672319405,'192.168.64.1',2,36,43985,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00u57kiyn6rgg14i',1,'Admin',1672319405,'192.168.64.1',2,36,43986,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00u67kiyg9lq7lzc',1,'Admin',1672319405,'192.168.64.1',2,36,43987,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00u77kiyav9ssiyb',1,'Admin',1672319405,'192.168.64.1',2,36,43988,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00u87kiyt58yd5kl',1,'Admin',1672319405,'192.168.64.1',2,36,43989,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00u97kiy7kdc2a32',1,'Admin',1672319405,'192.168.64.1',2,36,43990,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00ua7kiyxpo0kdoi',1,'Admin',1672319405,'192.168.64.1',2,36,44223,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ub7kiyweuuhkrw',1,'Admin',1672319405,'192.168.64.1',2,36,43991,NULL,'Hypervisor manager [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00uc7kiymeeosgs7',1,'Admin',1672319405,'192.168.64.1',2,36,43992,NULL,'Hypervisor manager [{#NAME}]: State reason','clc93snar00007kiypalxeeen',''),('clc93snav00ud7kiye2lhhk1e',1,'Admin',1672319405,'192.168.64.1',2,36,43993,NULL,'Hypervisor manager [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00ue7kiygrgxf5sp',1,'Admin',1672319405,'192.168.64.1',2,36,44224,NULL,'Hypervisor manager [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00uf7kiy6ayzry1o',1,'Admin',1672319405,'192.168.64.1',2,36,43994,NULL,'Interconnect [{#NAME}]: Hardware health','clc93snar00007kiypalxeeen',''),('clc93snav00ug7kiydsx5f3c2',1,'Admin',1672319405,'192.168.64.1',2,36,43995,NULL,'Interconnect [{#NAME}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00uh7kiyimnqi8un',1,'Admin',1672319405,'192.168.64.1',2,36,43996,NULL,'Interconnect [{#NAME}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00ui7kiy1t0wlgwz',1,'Admin',1672319405,'192.168.64.1',2,36,43997,NULL,'Interconnect [{#NAME}]: Port count','clc93snar00007kiypalxeeen',''),('clc93snav00uj7kiyebcpoex7',1,'Admin',1672319405,'192.168.64.1',2,36,43998,NULL,'Interconnect [{#NAME}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00uk7kiydxedxzz9',1,'Admin',1672319405,'192.168.64.1',2,36,43999,NULL,'Interconnect [{#NAME}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00ul7kiy3fxezuh0',1,'Admin',1672319405,'192.168.64.1',2,36,44000,NULL,'Interconnect [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00um7kiyjw57m1rb',1,'Admin',1672319405,'192.168.64.1',2,36,44001,NULL,'Interconnect [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00un7kiy34ozy4qv',1,'Admin',1672319405,'192.168.64.1',2,36,44225,NULL,'Interconnect [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00uo7kiyte4efem0',1,'Admin',1672319405,'192.168.64.1',2,36,44002,NULL,'Logical enclosure [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00up7kiyh1ksd20n',1,'Admin',1672319405,'192.168.64.1',2,36,44003,NULL,'Logical enclosure [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00uq7kiyw5gldtzu',1,'Admin',1672319405,'192.168.64.1',2,36,44226,NULL,'Logical enclosure [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ur7kiy5sgardmp',1,'Admin',1672319405,'192.168.64.1',2,36,44004,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Devices count','clc93snar00007kiypalxeeen',''),('clc93snav00us7kiy7o6fdwqz',1,'Admin',1672319405,'192.168.64.1',2,36,44005,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snav00ut7kiyka60m38a',1,'Admin',1672319405,'192.168.64.1',2,36,44006,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Memory','clc93snar00007kiypalxeeen',''),('clc93snav00uu7kiymnqwn5ut',1,'Admin',1672319405,'192.168.64.1',2,36,44007,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Processors Count','clc93snar00007kiypalxeeen',''),('clc93snav00uv7kiy00k18jyt',1,'Admin',1672319405,'192.168.64.1',2,36,44008,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00uw7kiyei6ruoxp',1,'Admin',1672319405,'192.168.64.1',2,36,44227,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ux7kiypwaczhv6',1,'Admin',1672319405,'192.168.64.1',2,36,44009,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00uy7kiy36c62m0v',1,'Admin',1672319405,'192.168.64.1',2,36,44010,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Output capacity','clc93snar00007kiypalxeeen',''),('clc93snav00uz7kiy1lruju6i',1,'Admin',1672319405,'192.168.64.1',2,36,44011,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00v07kiy3z4qoe2c',1,'Admin',1672319405,'192.168.64.1',2,36,44012,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00v17kiylsqiw1v0',1,'Admin',1672319405,'192.168.64.1',2,36,44013,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00v27kiyfexvgsrg',1,'Admin',1672319405,'192.168.64.1',2,36,44014,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00v37kiyhfsmdp0b',1,'Admin',1672319405,'192.168.64.1',2,36,44015,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00v47kiypya6ru1d',1,'Admin',1672319405,'192.168.64.1',2,36,44228,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00v57kiyz5p9d9bi',1,'Admin',1672319405,'192.168.64.1',2,36,44016,NULL,'Rack [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00v67kiyz9r1kvv3',1,'Admin',1672319405,'192.168.64.1',2,36,44017,NULL,'Rack [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00v77kiy7xe63hyy',1,'Admin',1672319405,'192.168.64.1',2,36,44229,NULL,'Rack [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00v87kiyjax8c3q1',1,'Admin',1672319405,'192.168.64.1',2,36,44018,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Processor cores count','clc93snar00007kiypalxeeen',''),('clc93snaw00v97kiyfx72vyf4',1,'Admin',1672319405,'192.168.64.1',2,36,44019,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Processors count','clc93snar00007kiypalxeeen',''),('clc93snaw00va7kiywn9gyc8x',1,'Admin',1672319405,'192.168.64.1',2,36,44020,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Processor speed','clc93snar00007kiypalxeeen',''),('clc93snaw00vb7kiy6labihga',1,'Admin',1672319405,'192.168.64.1',2,36,44021,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Processor type','clc93snar00007kiypalxeeen',''),('clc93snaw00vc7kiyhna0o9r2',1,'Admin',1672319405,'192.168.64.1',2,36,44022,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Maintenance state','clc93snar00007kiypalxeeen',''),('clc93snaw00vd7kiy8252h159',1,'Admin',1672319405,'192.168.64.1',2,36,44023,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Maintenance state reason','clc93snar00007kiypalxeeen',''),('clc93snaw00ve7kiy0kx1orwx',1,'Admin',1672319405,'192.168.64.1',2,36,44024,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Memory','clc93snar00007kiypalxeeen',''),('clc93snaw00vf7kiyr9jx17p6',1,'Admin',1672319405,'192.168.64.1',2,36,44025,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Migration state','clc93snar00007kiypalxeeen',''),('clc93snaw00vg7kiylbttfxb9',1,'Admin',1672319405,'192.168.64.1',2,36,44026,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Model','clc93snar00007kiypalxeeen',''),('clc93snaw00vh7kiyfh6rcgxk',1,'Admin',1672319405,'192.168.64.1',2,36,44027,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snaw00vi7kiyw9lamxl5',1,'Admin',1672319405,'192.168.64.1',2,36,44028,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Power state','clc93snar00007kiypalxeeen',''),('clc93snaw00vj7kiyex8bxcsy',1,'Admin',1672319405,'192.168.64.1',2,36,44029,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snaw00vk7kiynw17e46c',1,'Admin',1672319405,'192.168.64.1',2,36,44030,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00vl7kiyrfgh1u03',1,'Admin',1672319405,'192.168.64.1',2,36,44031,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: State reason','clc93snar00007kiypalxeeen',''),('clc93snaw00vm7kiyldplx5k6',1,'Admin',1672319405,'192.168.64.1',2,36,44032,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00vn7kiykusxfbpn',1,'Admin',1672319405,'192.168.64.1',2,36,44230,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snaw00vo7kiygy6qrrjs',1,'Admin',1672319405,'192.168.64.1',2,36,44033,NULL,'Storage pool [{#NAME}]: Capacity allocated','clc93snar00007kiypalxeeen',''),('clc93snaw00vp7kiyluzzh8rl',1,'Admin',1672319405,'192.168.64.1',2,36,44034,NULL,'Storage pool [{#NAME}]: Capacity free','clc93snar00007kiypalxeeen',''),('clc93snaw00vq7kiynrp5k6e4',1,'Admin',1672319405,'192.168.64.1',2,36,44035,NULL,'Storage pool [{#NAME}]: Capacity allocated to snapshots','clc93snar00007kiypalxeeen',''),('clc93snaw00vr7kiyy645tm6y',1,'Admin',1672319405,'192.168.64.1',2,36,44036,NULL,'Storage pool [{#NAME}]: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snaw00vs7kiy7m1kg0oq',1,'Admin',1672319405,'192.168.64.1',2,36,44037,NULL,'Storage pool [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00vt7kiy784wtjdq',1,'Admin',1672319405,'192.168.64.1',2,36,44038,NULL,'Storage pool [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00vu7kiyfny0dbjx',1,'Admin',1672319405,'192.168.64.1',2,36,44231,NULL,'Storage pool [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snaw00vv7kiy4486c458',1,'Admin',1672319405,'192.168.64.1',2,36,44039,NULL,'Storage system [{#NAME}]: Capacity allocated','clc93snar00007kiypalxeeen',''),('clc93snaw00vw7kiyfhxnwqil',1,'Admin',1672319405,'192.168.64.1',2,36,44040,NULL,'Storage system [{#NAME}]: Capacity free','clc93snar00007kiypalxeeen',''),('clc93snaw00vx7kiy38opkia7',1,'Admin',1672319405,'192.168.64.1',2,36,44041,NULL,'Storage system [{#NAME}]: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snaw00vy7kiys8xne61s',1,'Admin',1672319405,'192.168.64.1',2,36,44042,NULL,'Storage system [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00vz7kiyfjx350yk',1,'Admin',1672319405,'192.168.64.1',2,36,44043,NULL,'Storage system [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00w07kiyzbz5h9h5',1,'Admin',1672319405,'192.168.64.1',2,36,44232,NULL,'Storage system [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snaw00w17kiynlpcrnk8',1,'Admin',1672319405,'192.168.64.1',2,36,44044,NULL,'Storage volume [{#NAME}]: Capacity allocated','clc93snar00007kiypalxeeen',''),('clc93snaw00w27kiyu55dhvmg',1,'Admin',1672319405,'192.168.64.1',2,36,44045,NULL,'Storage volume [{#NAME}]: Capacity provisioned','clc93snar00007kiypalxeeen',''),('clc93snaw00w37kiy1hmxykpy',1,'Admin',1672319405,'192.168.64.1',2,36,44046,NULL,'Storage volume [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00w47kiyj8mcda80',1,'Admin',1672319405,'192.168.64.1',2,36,44047,NULL,'Storage volume [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00w57kiyc6r52azp',1,'Admin',1672319405,'192.168.64.1',2,36,44233,NULL,'Storage volume [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snaw00w67kiyuq4wwao1',1,'Admin',1672319405,'192.168.64.1',2,36,44048,NULL,'Uplink set [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00w77kiyl6v05j6b',1,'Admin',1672319405,'192.168.64.1',2,36,44049,NULL,'Uplink set [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00w87kiyfiimn1f6',1,'Admin',1672319405,'192.168.64.1',2,36,44234,NULL,'Uplink set [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snbu00w97kiy15darily',1,'Admin',1672319405,'192.168.64.1',2,37,10508,NULL,'{#NAME}','clc93snar00007kiypalxeeen',''),('clc93snbu00wa7kiytzd293ft',1,'Admin',1672319405,'192.168.64.1',2,37,10511,NULL,'API {#NAME}','clc93snar00007kiypalxeeen',''),('clc93snbu00wb7kiyfqveq7je',1,'Admin',1672319405,'192.168.64.1',2,37,10512,NULL,'Controller manager {#NAME}','clc93snar00007kiypalxeeen',''),('clc93snbu00wc7kiy1xykhgwu',1,'Admin',1672319405,'192.168.64.1',2,37,10513,NULL,'Scheduler {#NAME}','clc93snar00007kiypalxeeen',''),('clc93snbu00wd7kiyv0s4699x',1,'Admin',1672319405,'192.168.64.1',2,37,10514,NULL,'Kubelet {#NAME}','clc93snar00007kiypalxeeen',''),('clc93snfp00we7kiygwwwva9u',1,'Admin',1672319405,'192.168.64.1',2,15,42187,NULL,'Host name of Zabbix agent running','clc93snar00007kiypalxeeen',''),('clc93snfp00wf7kiyejqm5zbj',1,'Admin',1672319405,'192.168.64.1',2,15,42197,NULL,'Zabbix agent ping','clc93snar00007kiypalxeeen',''),('clc93snfp00wg7kiyurapbw5h',1,'Admin',1672319405,'192.168.64.1',2,15,42210,NULL,'Version of Zabbix agent running','clc93snar00007kiypalxeeen',''),('clc93snfp00wh7kiyku8hufs9',1,'Admin',1672319405,'192.168.64.1',2,15,42211,NULL,'Maximum number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfp00wi7kiy5l0l597p',1,'Admin',1672319405,'192.168.64.1',2,15,42212,NULL,'Maximum number of processes','clc93snar00007kiypalxeeen',''),('clc93snfp00wj7kiyb7kn2uu7',1,'Admin',1672319405,'192.168.64.1',2,15,42213,NULL,'Number of processes','clc93snar00007kiypalxeeen',''),('clc93snfp00wk7kiyxouyvax2',1,'Admin',1672319405,'192.168.64.1',2,15,42214,NULL,'Number of running processes','clc93snar00007kiypalxeeen',''),('clc93snfp00wl7kiyc842iazr',1,'Admin',1672319405,'192.168.64.1',2,15,42215,NULL,'System boot time','clc93snar00007kiypalxeeen',''),('clc93snfp00wm7kiyna7mlmw3',1,'Admin',1672319405,'192.168.64.1',2,15,42216,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp00wn7kiy9ev9u9zo',1,'Admin',1672319405,'192.168.64.1',2,15,42219,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00wo7kiygs0m06zn',1,'Admin',1672319405,'192.168.64.1',2,15,42209,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00wp7kiy70rgdgoz',1,'Admin',1672319405,'192.168.64.1',2,15,42217,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00wq7kiypxnkceog',1,'Admin',1672319405,'192.168.64.1',2,15,42220,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp00wr7kiytwrr5ll1',1,'Admin',1672319405,'192.168.64.1',2,15,42221,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp00ws7kiy9h682j9n',1,'Admin',1672319405,'192.168.64.1',2,15,42267,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfp00wt7kiy3lfxke9x',1,'Admin',1672319405,'192.168.64.1',2,15,42222,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfp00wu7kiymf0bz0sd',1,'Admin',1672319405,'192.168.64.1',2,15,42223,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfp00wv7kiygd4ya83a',1,'Admin',1672319405,'192.168.64.1',2,15,42224,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfp00ww7kiysgk8pka0',1,'Admin',1672319405,'192.168.64.1',2,15,42225,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfp00wx7kiyeqqyxpkz',1,'Admin',1672319405,'192.168.64.1',2,15,42218,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfp00wy7kiy36fwgov9',1,'Admin',1672319405,'192.168.64.1',2,15,42208,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfp00wz7kiyi6bcma3z',1,'Admin',1672319405,'192.168.64.1',2,15,42207,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfp00x07kiy2owofhkv',1,'Admin',1672319405,'192.168.64.1',2,15,42206,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfp00x17kiy8fc3eefk',1,'Admin',1672319405,'192.168.64.1',2,15,42189,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfp00x27kiyktencc4i',1,'Admin',1672319405,'192.168.64.1',2,15,42190,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfp00x37kiywk1kr3d1',1,'Admin',1672319405,'192.168.64.1',2,15,42191,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00x47kiy1ng9xawk',1,'Admin',1672319405,'192.168.64.1',2,15,42192,NULL,'System local time','clc93snar00007kiypalxeeen',''),('clc93snfp00x57kiy7l9kqz8o',1,'Admin',1672319405,'192.168.64.1',2,15,42193,NULL,'Operating system architecture','clc93snar00007kiypalxeeen',''),('clc93snfp00x67kiyvoty075v',1,'Admin',1672319405,'192.168.64.1',2,15,42194,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfp00x77kiy392sg198',1,'Admin',1672319405,'192.168.64.1',2,15,42195,NULL,'Software installed','clc93snar00007kiypalxeeen',''),('clc93snfp00x87kiya5vhahf7',1,'Admin',1672319405,'192.168.64.1',2,15,42188,NULL,'Free swap space','clc93snar00007kiypalxeeen',''),('clc93snfp00x97kiy7nkaqqob',1,'Admin',1672319405,'192.168.64.1',2,15,42196,NULL,'Free swap space in %','clc93snar00007kiypalxeeen',''),('clc93snfp00xa7kiyz06gsjzi',1,'Admin',1672319405,'192.168.64.1',2,15,42198,NULL,'Total swap space','clc93snar00007kiypalxeeen',''),('clc93snfp00xb7kiylyveqzjm',1,'Admin',1672319405,'192.168.64.1',2,15,42199,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00xc7kiybf5ijbh3',1,'Admin',1672319405,'192.168.64.1',2,15,42200,NULL,'System uptime','clc93snar00007kiypalxeeen',''),('clc93snfp00xd7kiyg81e8zme',1,'Admin',1672319405,'192.168.64.1',2,15,42201,NULL,'Number of logged in users','clc93snar00007kiypalxeeen',''),('clc93snfp00xe7kiy8mj53ew6',1,'Admin',1672319405,'192.168.64.1',2,15,42202,NULL,'Checksum of /etc/passwd','clc93snar00007kiypalxeeen',''),('clc93snfp00xf7kiyscb5bok1',1,'Admin',1672319405,'192.168.64.1',2,15,44436,NULL,'Get filesystems','clc93snar00007kiypalxeeen',''),('clc93snfp00xg7kiyu6emit4o',1,'Admin',1672319405,'192.168.64.1',2,15,42203,NULL,'Available memory','clc93snar00007kiypalxeeen',''),('clc93snfp00xh7kiy7uph5dgn',1,'Admin',1672319405,'192.168.64.1',2,15,42204,NULL,'Available memory in %','clc93snar00007kiypalxeeen',''),('clc93snfp00xi7kiyzdwkq6o9',1,'Admin',1672319405,'192.168.64.1',2,15,42205,NULL,'Total memory','clc93snar00007kiypalxeeen',''),('clc93snfp00xj7kiyfhbjswhx',1,'Admin',1672319405,'192.168.64.1',2,15,42268,NULL,'Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snfp00xk7kiyoexamzmq',1,'Admin',1672319405,'192.168.64.1',2,15,42226,NULL,'Zabbix agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp00xl7kiy8rsfjnlw',1,'Admin',1672319405,'192.168.64.1',2,15,42675,NULL,'HTTP service is running','clc93snar00007kiypalxeeen',''),('clc93snfp00xm7kiytkvy9pgf',1,'Admin',1672319405,'192.168.64.1',2,15,23646,NULL,'HTTPS service is running','clc93snar00007kiypalxeeen',''),('clc93snfp00xn7kiykm7560ok',1,'Admin',1672319405,'192.168.64.1',2,15,23647,NULL,'IMAP service is running','clc93snar00007kiypalxeeen',''),('clc93snfp00xo7kiy1bc8jqgh',1,'Admin',1672319405,'192.168.64.1',2,15,23648,NULL,'LDAP service is running','clc93snar00007kiypalxeeen',''),('clc93snfp00xp7kiyva7i09tk',1,'Admin',1672319405,'192.168.64.1',2,15,26932,NULL,'BB +1.8V SM','clc93snar00007kiypalxeeen',''),('clc93snfp00xq7kiya7vlytkh',1,'Admin',1672319405,'192.168.64.1',2,15,26930,NULL,'BB +3.3V','clc93snar00007kiypalxeeen',''),('clc93snfp00xr7kiyzy45cdmm',1,'Admin',1672319405,'192.168.64.1',2,15,26931,NULL,'BB +3.3V STBY','clc93snar00007kiypalxeeen',''),('clc93snfp00xs7kiyo61mekth',1,'Admin',1672319405,'192.168.64.1',2,15,26929,NULL,'BB +5.0V','clc93snar00007kiypalxeeen',''),('clc93snfp00xt7kiylassn9d7',1,'Admin',1672319405,'192.168.64.1',2,15,26928,NULL,'BB Ambient Temp','clc93snar00007kiypalxeeen',''),('clc93snfp00xu7kiytadol0cv',1,'Admin',1672319405,'192.168.64.1',2,15,26925,NULL,'Power','clc93snar00007kiypalxeeen',''),('clc93snfp00xv7kiyf89ybdhr',1,'Admin',1672319405,'192.168.64.1',2,15,26926,NULL,'Processor Vcc','clc93snar00007kiypalxeeen',''),('clc93snfp00xw7kiynb95mloo',1,'Admin',1672319405,'192.168.64.1',2,15,26927,NULL,'System Fan 3','clc93snar00007kiypalxeeen',''),('clc93snfp00xx7kiyq1mbri9i',1,'Admin',1672319405,'192.168.64.1',2,15,26943,NULL,'Baseboard Temp','clc93snar00007kiypalxeeen',''),('clc93snfp00xy7kiywfdn6om6',1,'Admin',1672319405,'192.168.64.1',2,15,26939,NULL,'BB +1.05V PCH','clc93snar00007kiypalxeeen',''),('clc93snfp00xz7kiyc6hndzqa',1,'Admin',1672319405,'192.168.64.1',2,15,26940,NULL,'BB +1.1V P1 Vccp','clc93snar00007kiypalxeeen',''),('clc93snfp00y07kiyu1k3aoc7',1,'Admin',1672319405,'192.168.64.1',2,15,26941,NULL,'BB +1.5V P1 DDR3','clc93snar00007kiypalxeeen',''),('clc93snfp00y17kiyg1tvigh1',1,'Admin',1672319405,'192.168.64.1',2,15,26942,NULL,'BB +3.3V','clc93snar00007kiypalxeeen',''),('clc93snfp00y27kiyvo04n9bt',1,'Admin',1672319405,'192.168.64.1',2,15,26938,NULL,'BB +3.3V STBY','clc93snar00007kiypalxeeen',''),('clc93snfp00y37kiywqywsjgd',1,'Admin',1672319405,'192.168.64.1',2,15,26937,NULL,'BB +5.0V','clc93snar00007kiypalxeeen',''),('clc93snfp00y47kiyt3ozwh6t',1,'Admin',1672319405,'192.168.64.1',2,15,26933,NULL,'Front Panel Temp','clc93snar00007kiypalxeeen',''),('clc93snfp00y57kiy8ovxqdvd',1,'Admin',1672319405,'192.168.64.1',2,15,26934,NULL,'Power','clc93snar00007kiypalxeeen',''),('clc93snfp00y67kiypsoom5pn',1,'Admin',1672319405,'192.168.64.1',2,15,26935,NULL,'System Fan 2','clc93snar00007kiypalxeeen',''),('clc93snfp00y77kiyq715nckh',1,'Admin',1672319405,'192.168.64.1',2,15,26936,NULL,'System Fan 3','clc93snar00007kiypalxeeen',''),('clc93snfp00y87kiysfouqr0f',1,'Admin',1672319405,'192.168.64.1',2,15,27067,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00y97kiymg397k62',1,'Admin',1672319405,'192.168.64.1',2,15,27066,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00ya7kiyhebaz4do',1,'Admin',1672319405,'192.168.64.1',2,15,27065,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00yb7kiyvcxo5krb',1,'Admin',1672319405,'192.168.64.1',2,15,40867,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00yc7kiytmlwta9t',1,'Admin',1672319405,'192.168.64.1',2,15,40868,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00yd7kiylwn1q6k5',1,'Admin',1672319405,'192.168.64.1',2,15,40869,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00ye7kiyn6k7n6hb',1,'Admin',1672319405,'192.168.64.1',2,15,40870,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp00yf7kiysgkuuy9e',1,'Admin',1672319405,'192.168.64.1',2,15,40871,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp00yg7kiy9igs5j2o',1,'Admin',1672319405,'192.168.64.1',2,15,40872,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00yh7kiyh3s1zmlr',1,'Admin',1672319405,'192.168.64.1',2,15,43790,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp00yi7kiyzbx0pkjs',1,'Admin',1672319405,'192.168.64.1',2,15,40873,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp00yj7kiyo1a7z856',1,'Admin',1672319405,'192.168.64.1',2,15,40874,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00yk7kiyu0wm2cpo',1,'Admin',1672319405,'192.168.64.1',2,15,40876,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp00yl7kiyqts0cgok',1,'Admin',1672319405,'192.168.64.1',2,15,40875,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp00ym7kiy1pn1pv8d',1,'Admin',1672319405,'192.168.64.1',2,15,40877,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp00yn7kiy56k28mql',1,'Admin',1672319405,'192.168.64.1',2,15,40890,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00yo7kiyd19iulcc',1,'Admin',1672319405,'192.168.64.1',2,15,40891,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00yp7kiy4ove8bx5',1,'Admin',1672319405,'192.168.64.1',2,15,40892,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00yq7kiy9zmdfr7s',1,'Admin',1672319405,'192.168.64.1',2,15,40893,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp00yr7kiye8cfcorw',1,'Admin',1672319405,'192.168.64.1',2,15,40894,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp00ys7kiydrlup9z8',1,'Admin',1672319405,'192.168.64.1',2,15,40895,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00yt7kiyc4b4jgnj',1,'Admin',1672319405,'192.168.64.1',2,15,27777,NULL,'Firmware version','clc93snar00007kiypalxeeen',''),('clc93snfp00yu7kiyl4a1sek1',1,'Admin',1672319405,'192.168.64.1',2,15,27778,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfp00yv7kiyvyyfuu5y',1,'Admin',1672319405,'192.168.64.1',2,15,43791,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp00yw7kiyxkiyhk36',1,'Admin',1672319405,'192.168.64.1',2,15,40896,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp00yx7kiydzfj1vy7',1,'Admin',1672319405,'192.168.64.1',2,15,40897,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00yy7kiy00s0muz3',1,'Admin',1672319405,'192.168.64.1',2,15,40899,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp00yz7kiyeoyg04y8',1,'Admin',1672319405,'192.168.64.1',2,15,40898,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp00z07kiypqbptgwd',1,'Admin',1672319405,'192.168.64.1',2,15,40900,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp00z17kiy60ci4ufh',1,'Admin',1672319405,'192.168.64.1',2,15,40911,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00z27kiyr5iqofhn',1,'Admin',1672319405,'192.168.64.1',2,15,40912,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00z37kiy3yymmn0p',1,'Admin',1672319405,'192.168.64.1',2,15,40913,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00z47kiy79y4rvol',1,'Admin',1672319405,'192.168.64.1',2,15,40914,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp00z57kiyg01d340b',1,'Admin',1672319405,'192.168.64.1',2,15,40915,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp00z67kiy9qploz6j',1,'Admin',1672319405,'192.168.64.1',2,15,40916,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00z77kiy2gi7psh0',1,'Admin',1672319405,'192.168.64.1',2,15,27812,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfp00z87kiyarynzrqj',1,'Admin',1672319405,'192.168.64.1',2,15,27813,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfp00z97kiykl375ljc',1,'Admin',1672319405,'192.168.64.1',2,15,43792,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp00za7kiyuhb2q2jr',1,'Admin',1672319405,'192.168.64.1',2,15,40917,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp00zb7kiyz0s283m0',1,'Admin',1672319405,'192.168.64.1',2,15,40918,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00zc7kiy0iflwgtk',1,'Admin',1672319405,'192.168.64.1',2,15,40920,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp00zd7kiyuj3qn3qa',1,'Admin',1672319405,'192.168.64.1',2,15,40919,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp00ze7kiyix9dw1z5',1,'Admin',1672319405,'192.168.64.1',2,15,27814,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfp00zf7kiytqkks309',1,'Admin',1672319405,'192.168.64.1',2,15,30117,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfp00zg7kiya912txl2',1,'Admin',1672319405,'192.168.64.1',2,15,40921,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp00zh7kiyovimdc0p',1,'Admin',1672319405,'192.168.64.1',2,15,42384,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00zi7kiys9cvym0u',1,'Admin',1672319405,'192.168.64.1',2,15,42397,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00zj7kiy24p17edp',1,'Admin',1672319405,'192.168.64.1',2,15,42408,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00zk7kiy2bfeziz1',1,'Admin',1672319405,'192.168.64.1',2,15,42407,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp00zl7kiygr93md97',1,'Admin',1672319405,'192.168.64.1',2,15,42406,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp00zm7kiyupahunbg',1,'Admin',1672319405,'192.168.64.1',2,15,42405,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp00zn7kiyt6gh2nql',1,'Admin',1672319405,'192.168.64.1',2,15,42402,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00zo7kiyv9zvyewa',1,'Admin',1672319405,'192.168.64.1',2,15,42404,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00zp7kiyx56bg5jf',1,'Admin',1672319405,'192.168.64.1',2,15,42403,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00zq7kiypuia3o92',1,'Admin',1672319405,'192.168.64.1',2,15,42401,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp00zr7kiyxopckk0t',1,'Admin',1672319405,'192.168.64.1',2,15,42400,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp00zs7kiylb0dpeyh',1,'Admin',1672319405,'192.168.64.1',2,15,42399,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00zt7kiyxxg5za5z',1,'Admin',1672319405,'192.168.64.1',2,15,43874,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp00zu7kiypuivatsv',1,'Admin',1672319405,'192.168.64.1',2,15,42398,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp00zv7kiytjgz5fj9',1,'Admin',1672319405,'192.168.64.1',2,15,42396,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00zw7kiyofo2swmh',1,'Admin',1672319405,'192.168.64.1',2,15,42392,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp00zx7kiy0ptfj100',1,'Admin',1672319405,'192.168.64.1',2,15,42385,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp00zy7kiy23h6nqaw',1,'Admin',1672319405,'192.168.64.1',2,15,42395,NULL,'Free swap space','clc93snar00007kiypalxeeen',''),('clc93snfp00zz7kiy2e8i3uy2',1,'Admin',1672319405,'192.168.64.1',2,15,42394,NULL,'Free swap space in %','clc93snar00007kiypalxeeen',''),('clc93snfp01007kiyy3iwgth3',1,'Admin',1672319405,'192.168.64.1',2,15,42393,NULL,'Total swap space','clc93snar00007kiypalxeeen',''),('clc93snfp01017kiyxxzus679',1,'Admin',1672319405,'192.168.64.1',2,15,42391,NULL,'Available memory','clc93snar00007kiypalxeeen',''),('clc93snfp01027kiyz84dg900',1,'Admin',1672319405,'192.168.64.1',2,15,42390,NULL,'Memory (buffers)','clc93snar00007kiypalxeeen',''),('clc93snfp01037kiyufgulqzn',1,'Admin',1672319405,'192.168.64.1',2,15,42389,NULL,'Memory (cached)','clc93snar00007kiypalxeeen',''),('clc93snfp01047kiyqsvriakx',1,'Admin',1672319405,'192.168.64.1',2,15,42388,NULL,'Free memory','clc93snar00007kiypalxeeen',''),('clc93snfp01057kiyftgh03mo',1,'Admin',1672319405,'192.168.64.1',2,15,42387,NULL,'Total memory','clc93snar00007kiypalxeeen',''),('clc93snfp01067kiyphcctyhh',1,'Admin',1672319405,'192.168.64.1',2,15,42386,NULL,'Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snfp01077kiyw3hwp3j6',1,'Admin',1672319405,'192.168.64.1',2,15,42409,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp01087kiyffiaabhc',1,'Admin',1672319405,'192.168.64.1',2,15,40844,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp01097kiyy3lfyab1',1,'Admin',1672319405,'192.168.64.1',2,15,40845,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp010a7kiy6vjnlml3',1,'Admin',1672319405,'192.168.64.1',2,15,40846,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp010b7kiy626ucyhm',1,'Admin',1672319405,'192.168.64.1',2,15,40847,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp010c7kiy5tkbdujo',1,'Admin',1672319405,'192.168.64.1',2,15,40848,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp010d7kiyocyllbju',1,'Admin',1672319405,'192.168.64.1',2,15,28143,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfp010e7kiyqtq0766i',1,'Admin',1672319405,'192.168.64.1',2,15,40849,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp010f7kiy9b3net72',1,'Admin',1672319405,'192.168.64.1',2,15,28141,NULL,'Firmware version','clc93snar00007kiypalxeeen',''),('clc93snfp010g7kiyjdozo0iu',1,'Admin',1672319405,'192.168.64.1',2,15,28142,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfp010h7kiyvaodjitk',1,'Admin',1672319405,'192.168.64.1',2,15,43789,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp010i7kiye1es2f7h',1,'Admin',1672319405,'192.168.64.1',2,15,40850,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp010j7kiyobmodb3l',1,'Admin',1672319405,'192.168.64.1',2,15,40851,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp010k7kiy12pon29i',1,'Admin',1672319405,'192.168.64.1',2,15,40853,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp010l7kiyp517a5cj',1,'Admin',1672319405,'192.168.64.1',2,15,40852,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp010m7kiywouwoz84',1,'Admin',1672319405,'192.168.64.1',2,15,40854,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp010n7kiyvv026w6g',1,'Admin',1672319405,'192.168.64.1',2,15,42642,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp010o7kiyefqkoa90',1,'Admin',1672319405,'192.168.64.1',2,15,42643,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp010p7kiyf441himw',1,'Admin',1672319405,'192.168.64.1',2,15,42644,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp010q7kiyadw5j57j',1,'Admin',1672319405,'192.168.64.1',2,15,28388,NULL,'System: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snfp010r7kiymkws1rpj',1,'Admin',1672319405,'192.168.64.1',2,15,42645,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp010s7kiyskh8hx2a',1,'Admin',1672319405,'192.168.64.1',2,15,42646,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp010t7kiy4h15xdse',1,'Admin',1672319405,'192.168.64.1',2,15,42647,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp010u7kiyy8zslfno',1,'Admin',1672319405,'192.168.64.1',2,15,28390,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfp010v7kiykonkc3ev',1,'Admin',1672319405,'192.168.64.1',2,15,28391,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfp010w7kiyxx9vjj7a',1,'Admin',1672319405,'192.168.64.1',2,15,43900,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp010x7kiy1n8csbvn',1,'Admin',1672319405,'192.168.64.1',2,15,42648,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp010y7kiybbhbuow1',1,'Admin',1672319405,'192.168.64.1',2,15,42649,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp010z7kiyq5cmojtn',1,'Admin',1672319405,'192.168.64.1',2,15,42651,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp01107kiyliqdwwz7',1,'Admin',1672319405,'192.168.64.1',2,15,42650,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp01117kiye1iak8mw',1,'Admin',1672319405,'192.168.64.1',2,15,29994,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfp01127kiyqn70eks3',1,'Admin',1672319405,'192.168.64.1',2,15,42652,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp01137kiyukukdb8o',1,'Admin',1672319405,'192.168.64.1',2,15,42653,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp01147kiyu20hy2hx',1,'Admin',1672319405,'192.168.64.1',2,15,42654,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp01157kiyo4mg2cpo',1,'Admin',1672319405,'192.168.64.1',2,15,42655,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp01167kiy7pyhvqsd',1,'Admin',1672319405,'192.168.64.1',2,15,42656,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp01177kiyuox67ill',1,'Admin',1672319405,'192.168.64.1',2,15,42657,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp01187kiydq3wuzcq',1,'Admin',1672319405,'192.168.64.1',2,15,42658,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp01197kiy4pxd66od',1,'Admin',1672319405,'192.168.64.1',2,15,28466,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfp011a7kiywmb8pbhu',1,'Admin',1672319405,'192.168.64.1',2,15,28467,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfp011b7kiyophe65vh',1,'Admin',1672319405,'192.168.64.1',2,15,44050,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp011c7kiyer6ipmp8',1,'Admin',1672319405,'192.168.64.1',2,15,42659,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp011d7kiyjw2vv6y2',1,'Admin',1672319405,'192.168.64.1',2,15,42660,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp011e7kiyzzxng8g7',1,'Admin',1672319405,'192.168.64.1',2,15,42662,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp011f7kiyaswxsmx2',1,'Admin',1672319405,'192.168.64.1',2,15,42661,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp011g7kiyy3bxgi0a',1,'Admin',1672319405,'192.168.64.1',2,15,28465,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfp011h7kiyoqlejx4j',1,'Admin',1672319405,'192.168.64.1',2,15,42663,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp011i7kiyk2egkhkx',1,'Admin',1672319405,'192.168.64.1',2,15,28991,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp011j7kiyiynjqf6s',1,'Admin',1672319405,'192.168.64.1',2,15,28989,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011k7kiymie31gm6',1,'Admin',1672319405,'192.168.64.1',2,15,28987,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011l7kiyjcmr74em',1,'Admin',1672319405,'192.168.64.1',2,15,28988,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011m7kiyykee5cbl',1,'Admin',1672319405,'192.168.64.1',2,15,28990,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp011n7kiyuthodj9p',1,'Admin',1672319405,'192.168.64.1',2,15,28992,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp011o7kiyzogs6cyg',1,'Admin',1672319405,'192.168.64.1',2,15,29102,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp011p7kiywmkx82rm',1,'Admin',1672319405,'192.168.64.1',2,15,29100,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011q7kiyav0dr4u9',1,'Admin',1672319405,'192.168.64.1',2,15,29096,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011r7kiyfd357fqr',1,'Admin',1672319405,'192.168.64.1',2,15,29101,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011s7kiysyzm75l9',1,'Admin',1672319405,'192.168.64.1',2,15,29087,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp011t7kiy9ssm7dbw',1,'Admin',1672319405,'192.168.64.1',2,15,29089,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp011u7kiyg75tjrlv',1,'Admin',1672319405,'192.168.64.1',2,15,29198,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfp011v7kiyzp11hink',1,'Admin',1672319405,'192.168.64.1',2,15,29091,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfp011w7kiy8l07mewa',1,'Admin',1672319405,'192.168.64.1',2,15,29090,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfp011x7kiyjzrv5alr',1,'Admin',1672319405,'192.168.64.1',2,15,29099,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfp011y7kiyeg6a8qdk',1,'Admin',1672319405,'192.168.64.1',2,15,29093,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfp011z7kiyarae5ot4',1,'Admin',1672319405,'192.168.64.1',2,15,29088,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfp01207kiy0mep4jkj',1,'Admin',1672319405,'192.168.64.1',2,15,29095,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfp01217kiy8n57k55p',1,'Admin',1672319405,'192.168.64.1',2,15,29092,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfp01227kiyp054x80t',1,'Admin',1672319405,'192.168.64.1',2,15,29094,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfp01237kiyfgycq2sp',1,'Admin',1672319405,'192.168.64.1',2,15,29098,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfp01247kiybvx34kx5',1,'Admin',1672319405,'192.168.64.1',2,15,29097,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfp01257kiy66z50f19',1,'Admin',1672319405,'192.168.64.1',2,15,44371,NULL,'Get filesystems','clc93snar00007kiypalxeeen',''),('clc93snfp01267kiyw8etnnts',1,'Admin',1672319405,'192.168.64.1',2,15,29116,NULL,'Maximum number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfp01277kiyu71mvk7h',1,'Admin',1672319405,'192.168.64.1',2,15,29117,NULL,'Maximum number of processes','clc93snar00007kiypalxeeen',''),('clc93snfp01287kiywayl6vvm',1,'Admin',1672319405,'192.168.64.1',2,15,29118,NULL,'Number of processes','clc93snar00007kiypalxeeen',''),('clc93snfp01297kiyz142xp2q',1,'Admin',1672319405,'192.168.64.1',2,15,29119,NULL,'Number of running processes','clc93snar00007kiypalxeeen',''),('clc93snfp012a7kiy6ri3r3q6',1,'Admin',1672319405,'192.168.64.1',2,15,29111,NULL,'System boot time','clc93snar00007kiypalxeeen',''),('clc93snfp012b7kiygmf9xvu2',1,'Admin',1672319405,'192.168.64.1',2,15,29113,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp012c7kiycufvsfnl',1,'Admin',1672319405,'192.168.64.1',2,15,29112,NULL,'System local time','clc93snar00007kiypalxeeen',''),('clc93snfp012d7kiyrcc8h66v',1,'Admin',1672319405,'192.168.64.1',2,15,29122,NULL,'Operating system architecture','clc93snar00007kiypalxeeen',''),('clc93snfp012e7kiyn1nwigwj',1,'Admin',1672319405,'192.168.64.1',2,15,29121,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfp012f7kiyi49uabgw',1,'Admin',1672319405,'192.168.64.1',2,15,29123,NULL,'Software installed','clc93snar00007kiypalxeeen',''),('clc93snfp012g7kiymlksj9vd',1,'Admin',1672319405,'192.168.64.1',2,15,29114,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp012h7kiybq3gy804',1,'Admin',1672319405,'192.168.64.1',2,15,29110,NULL,'System uptime','clc93snar00007kiypalxeeen',''),('clc93snfp012i7kiyq0ruhxa3',1,'Admin',1672319405,'192.168.64.1',2,15,29115,NULL,'Number of logged in users','clc93snar00007kiypalxeeen',''),('clc93snfp012j7kiymljz2ogl',1,'Admin',1672319405,'192.168.64.1',2,15,29120,NULL,'Checksum of /etc/passwd','clc93snar00007kiypalxeeen',''),('clc93snfp012k7kiydqpwp4ek',1,'Admin',1672319405,'192.168.64.1',2,15,29415,NULL,'Version of node_exporter running','clc93snar00007kiypalxeeen',''),('clc93snfp012l7kiy6s4wecte',1,'Admin',1672319405,'192.168.64.1',2,15,29423,NULL,'Number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfp012m7kiy0wdesa66',1,'Admin',1672319405,'192.168.64.1',2,15,29424,NULL,'Maximum number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfp012n7kiyne51ddb3',1,'Admin',1672319405,'192.168.64.1',2,15,29395,NULL,'Get node_exporter metrics','clc93snar00007kiypalxeeen',''),('clc93snfp012o7kiyh8zcgx7e',1,'Admin',1672319405,'192.168.64.1',2,15,29404,NULL,'System boot time','clc93snar00007kiypalxeeen',''),('clc93snfp012p7kiy2h5pbdsg',1,'Admin',1672319405,'192.168.64.1',2,15,29408,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfp012q7kiyvph98zgg',1,'Admin',1672319405,'192.168.64.1',2,15,29407,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfp012r7kiyoigmhxpq',1,'Admin',1672319405,'192.168.64.1',2,15,29416,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfp012s7kiyoqtyhd91',1,'Admin',1672319405,'192.168.64.1',2,15,29409,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfp012t7kiyjjo4h5kh',1,'Admin',1672319405,'192.168.64.1',2,15,29406,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp012u7kiy73dp7myd',1,'Admin',1672319405,'192.168.64.1',2,15,29410,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfp012v7kiy5xcxmb4t',1,'Admin',1672319405,'192.168.64.1',2,15,29418,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp012w7kiym0bxabqn',1,'Admin',1672319405,'192.168.64.1',2,15,29420,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp012x7kiyrrobg4ka',1,'Admin',1672319405,'192.168.64.1',2,15,29419,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp012y7kiyiv07a0jl',1,'Admin',1672319405,'192.168.64.1',2,15,29411,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfp012z7kiyg5puqve7',1,'Admin',1672319405,'192.168.64.1',2,15,29417,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp01307kiycvsx8ui1',1,'Admin',1672319405,'192.168.64.1',2,15,29412,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfp01317kiygze6dcro',1,'Admin',1672319405,'192.168.64.1',2,15,29399,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfp01327kiy8z3wnrym',1,'Admin',1672319405,'192.168.64.1',2,15,29405,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp01337kiydcmcrk5c',1,'Admin',1672319405,'192.168.64.1',2,15,29426,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfp01347kiyrfy3pely',1,'Admin',1672319405,'192.168.64.1',2,15,29413,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfp01357kiyce4li06h',1,'Admin',1672319405,'192.168.64.1',2,15,29427,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfp01367kiyp411f7x6',1,'Admin',1672319405,'192.168.64.1',2,15,29425,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp01377kiyxnl5meu8',1,'Admin',1672319405,'192.168.64.1',2,15,29398,NULL,'System local time','clc93snar00007kiypalxeeen',''),('clc93snfp01387kiyg151ngso',1,'Admin',1672319405,'192.168.64.1',2,15,29414,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp01397kiyi7emqv9u',1,'Admin',1672319405,'192.168.64.1',2,15,29422,NULL,'Operating system architecture','clc93snar00007kiypalxeeen',''),('clc93snfp013a7kiy3tumnws0',1,'Admin',1672319405,'192.168.64.1',2,15,29428,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfp013b7kiy9khqu17c',1,'Admin',1672319405,'192.168.64.1',2,15,29400,NULL,'Free swap space','clc93snar00007kiypalxeeen',''),('clc93snfp013c7kiyfn7rslli',1,'Admin',1672319405,'192.168.64.1',2,15,29397,NULL,'Free swap space in %','clc93snar00007kiypalxeeen',''),('clc93snfp013d7kiyp9y890vv',1,'Admin',1672319405,'192.168.64.1',2,15,29401,NULL,'Total swap space','clc93snar00007kiypalxeeen',''),('clc93snfp013e7kiyp38kt2o2',1,'Admin',1672319405,'192.168.64.1',2,15,29421,NULL,'System uptime','clc93snar00007kiypalxeeen',''),('clc93snfp013f7kiys3t0g04b',1,'Admin',1672319405,'192.168.64.1',2,15,29402,NULL,'Available memory','clc93snar00007kiypalxeeen',''),('clc93snfp013g7kiyue2vl82m',1,'Admin',1672319405,'192.168.64.1',2,15,29403,NULL,'Total memory','clc93snar00007kiypalxeeen',''),('clc93snfp013h7kiyzj80f45b',1,'Admin',1672319405,'192.168.64.1',2,15,29396,NULL,'Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snfp013i7kiy8z1fxckf',1,'Admin',1672319405,'192.168.64.1',2,15,30968,NULL,'IIS: {$IIS.PORT} port ping','clc93snar00007kiypalxeeen',''),('clc93snfp013j7kiyvmlkw0xr',1,'Admin',1672319405,'192.168.64.1',2,15,30980,NULL,'IIS: Files cache hits percentage','clc93snar00007kiypalxeeen',''),('clc93snfp013k7kiyo9kzmbhl',1,'Admin',1672319405,'192.168.64.1',2,15,30981,NULL,'IIS: File cache misses','clc93snar00007kiypalxeeen',''),('clc93snfp013l7kiy0zo01xw0',1,'Admin',1672319405,'192.168.64.1',2,15,30982,NULL,'IIS: URIs cache hits percentage','clc93snar00007kiypalxeeen',''),('clc93snfp013m7kiyb1d8p3ty',1,'Admin',1672319405,'192.168.64.1',2,15,30983,NULL,'IIS: URI cache misses','clc93snar00007kiypalxeeen',''),('clc93snfp013n7kiy7po1hwry',1,'Admin',1672319405,'192.168.64.1',2,15,30987,NULL,'IIS: Anonymous users per second','clc93snar00007kiypalxeeen',''),('clc93snfp013o7kiylokfa7bh',1,'Admin',1672319405,'192.168.64.1',2,15,30989,NULL,'IIS: Bytes Received per second','clc93snar00007kiypalxeeen',''),('clc93snfp013p7kiydyrpbizf',1,'Admin',1672319405,'192.168.64.1',2,15,30990,NULL,'IIS: Bytes Sent per second','clc93snar00007kiypalxeeen',''),('clc93snfp013q7kiyefaybpsv',1,'Admin',1672319405,'192.168.64.1',2,15,30991,NULL,'IIS: Bytes Total per second','clc93snar00007kiypalxeeen',''),('clc93snfp013r7kiyzflkrb28',1,'Admin',1672319405,'192.168.64.1',2,15,30992,NULL,'IIS: Method CGI requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013s7kiy0zzq84b3',1,'Admin',1672319405,'192.168.64.1',2,15,30993,NULL,'IIS: Connection attempts per second','clc93snar00007kiypalxeeen',''),('clc93snfp013t7kiyjo18rgqw',1,'Admin',1672319405,'192.168.64.1',2,15,30994,NULL,'IIS: Method COPY requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013u7kiyu44oy67f',1,'Admin',1672319405,'192.168.64.1',2,15,30988,NULL,'IIS: Current connections','clc93snar00007kiypalxeeen',''),('clc93snfp013v7kiyhb9yd0n0',1,'Admin',1672319405,'192.168.64.1',2,15,30995,NULL,'IIS: Method DELETE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013w7kiydc7y62zm',1,'Admin',1672319405,'192.168.64.1',2,15,30997,NULL,'IIS: Method GET requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013x7kiyrrij3hk0',1,'Admin',1672319405,'192.168.64.1',2,15,30998,NULL,'IIS: Method HEAD requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013y7kiy9x1d3wq2',1,'Admin',1672319405,'192.168.64.1',2,15,30999,NULL,'IIS: Method ISAPI requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013z7kiy10x3lc71',1,'Admin',1672319405,'192.168.64.1',2,15,31001,NULL,'IIS: Method LOCK requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp01407kiyxu5kw3mz',1,'Admin',1672319405,'192.168.64.1',2,15,31000,NULL,'IIS: Locked errors per second','clc93snar00007kiypalxeeen',''),('clc93snfp01417kiyqeszb0jw',1,'Admin',1672319405,'192.168.64.1',2,15,31002,NULL,'IIS: Method MKCOL requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp01427kiydmdtiqv2',1,'Admin',1672319405,'192.168.64.1',2,15,31003,NULL,'IIS: Method MOVE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp01437kiy85u1auxq',1,'Admin',1672319405,'192.168.64.1',2,15,30996,NULL,'IIS: NonAnonymous users per second','clc93snar00007kiypalxeeen',''),('clc93snfp01447kiy12a0r83d',1,'Admin',1672319405,'192.168.64.1',2,15,30986,NULL,'IIS: Not Found errors per second','clc93snar00007kiypalxeeen',''),('clc93snfp01457kiyjjxkpngd',1,'Admin',1672319405,'192.168.64.1',2,15,30977,NULL,'IIS: Method OPTIONS requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp01467kiy9tzmee80',1,'Admin',1672319405,'192.168.64.1',2,15,30985,NULL,'IIS: Method Total Other requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01477kiyfr6l966z',1,'Admin',1672319405,'192.168.64.1',2,15,30970,NULL,'IIS: Method POST requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01487kiycz0001im',1,'Admin',1672319405,'192.168.64.1',2,15,30971,NULL,'IIS: Method PROPFIND requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01497kiyo3zsh0hv',1,'Admin',1672319405,'192.168.64.1',2,15,30972,NULL,'IIS: Method PROPPATCH requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014a7kiy142i7aph',1,'Admin',1672319405,'192.168.64.1',2,15,30973,NULL,'IIS: Method PUT requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014b7kiyn9jdugs4',1,'Admin',1672319405,'192.168.64.1',2,15,30974,NULL,'IIS: Method MS-SEARCH requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014c7kiy8menr9l8',1,'Admin',1672319405,'192.168.64.1',2,15,30975,NULL,'IIS: Uptime','clc93snar00007kiypalxeeen',''),('clc93snfq014d7kiyeq4tkn2x',1,'Admin',1672319405,'192.168.64.1',2,15,30969,NULL,'IIS: Total connection attempts','clc93snar00007kiypalxeeen',''),('clc93snfq014e7kiydvqzamco',1,'Admin',1672319405,'192.168.64.1',2,15,30976,NULL,'IIS: Method Total requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014f7kiy1boez7g5',1,'Admin',1672319405,'192.168.64.1',2,15,30978,NULL,'IIS: Method TRACE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014g7kiyvujl1vfj',1,'Admin',1672319405,'192.168.64.1',2,15,30979,NULL,'IIS: Method TRACE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014h7kiykedz5ufb',1,'Admin',1672319405,'192.168.64.1',2,15,30984,NULL,'IIS: World Wide Web Publishing Service (W3SVC) state','clc93snar00007kiypalxeeen',''),('clc93snfq014i7kiynhy8v1z6',1,'Admin',1672319405,'192.168.64.1',2,15,31004,NULL,'IIS: Windows Process Activation Service (WAS) state','clc93snar00007kiypalxeeen',''),('clc93snfq014j7kiykelmuvx4',1,'Admin',1672319405,'192.168.64.1',2,15,31010,NULL,'IIS: {$IIS.PORT} port ping','clc93snar00007kiypalxeeen',''),('clc93snfq014k7kiy6wpwfobj',1,'Admin',1672319405,'192.168.64.1',2,15,31022,NULL,'IIS: Files cache hits percentage','clc93snar00007kiypalxeeen',''),('clc93snfq014l7kiyl78kjxxf',1,'Admin',1672319405,'192.168.64.1',2,15,31023,NULL,'IIS: File cache misses','clc93snar00007kiypalxeeen',''),('clc93snfq014m7kiyhlpu7vkh',1,'Admin',1672319405,'192.168.64.1',2,15,31024,NULL,'IIS: URIs cache hits percentage','clc93snar00007kiypalxeeen',''),('clc93snfq014n7kiyyk2yl94g',1,'Admin',1672319405,'192.168.64.1',2,15,31025,NULL,'IIS: URI cache misses','clc93snar00007kiypalxeeen',''),('clc93snfq014o7kiyfmmeo9hu',1,'Admin',1672319405,'192.168.64.1',2,15,31029,NULL,'IIS: Anonymous users per second','clc93snar00007kiypalxeeen',''),('clc93snfq014p7kiyvkh15fdk',1,'Admin',1672319405,'192.168.64.1',2,15,31031,NULL,'IIS: Bytes Received per second','clc93snar00007kiypalxeeen',''),('clc93snfq014q7kiyngjz3b9o',1,'Admin',1672319405,'192.168.64.1',2,15,31032,NULL,'IIS: Bytes Sent per second','clc93snar00007kiypalxeeen',''),('clc93snfq014r7kiy884h4m06',1,'Admin',1672319405,'192.168.64.1',2,15,31033,NULL,'IIS: Bytes Total per second','clc93snar00007kiypalxeeen',''),('clc93snfq014s7kiy2kcrljw1',1,'Admin',1672319405,'192.168.64.1',2,15,31034,NULL,'IIS: Method CGI requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014t7kiyko5ubbgm',1,'Admin',1672319405,'192.168.64.1',2,15,31035,NULL,'IIS: Connection attempts per second','clc93snar00007kiypalxeeen',''),('clc93snfq014u7kiy5lw4yr1w',1,'Admin',1672319405,'192.168.64.1',2,15,31036,NULL,'IIS: Method COPY requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014v7kiyxerbq5co',1,'Admin',1672319405,'192.168.64.1',2,15,31030,NULL,'IIS: Current connections','clc93snar00007kiypalxeeen',''),('clc93snfq014w7kiy7cr9n36i',1,'Admin',1672319405,'192.168.64.1',2,15,31037,NULL,'IIS: Method DELETE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014x7kiybx5c7yo4',1,'Admin',1672319405,'192.168.64.1',2,15,31039,NULL,'IIS: Method GET requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014y7kiys8pql86m',1,'Admin',1672319405,'192.168.64.1',2,15,31040,NULL,'IIS: Method HEAD requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014z7kiyaswvhveb',1,'Admin',1672319405,'192.168.64.1',2,15,31041,NULL,'IIS: Method ISAPI requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01507kiywytowki3',1,'Admin',1672319405,'192.168.64.1',2,15,31043,NULL,'IIS: Method LOCK requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01517kiys7i6oh3w',1,'Admin',1672319405,'192.168.64.1',2,15,31042,NULL,'IIS: Locked errors per second','clc93snar00007kiypalxeeen',''),('clc93snfq01527kiy0hv6ukov',1,'Admin',1672319405,'192.168.64.1',2,15,31044,NULL,'IIS: Method MKCOL requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01537kiysayliu5i',1,'Admin',1672319405,'192.168.64.1',2,15,31045,NULL,'IIS: Method MOVE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01547kiyftw9glcq',1,'Admin',1672319405,'192.168.64.1',2,15,31038,NULL,'IIS: NonAnonymous users per second','clc93snar00007kiypalxeeen',''),('clc93snfq01557kiym463jwmo',1,'Admin',1672319405,'192.168.64.1',2,15,31028,NULL,'IIS: Not Found errors per second','clc93snar00007kiypalxeeen',''),('clc93snfq01567kiy0tv07zde',1,'Admin',1672319405,'192.168.64.1',2,15,31019,NULL,'IIS: Method OPTIONS requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01577kiykqwgmu5f',1,'Admin',1672319405,'192.168.64.1',2,15,31027,NULL,'IIS: Method Total Other requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01587kiyzgz2q19z',1,'Admin',1672319405,'192.168.64.1',2,15,31012,NULL,'IIS: Method POST requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01597kiyafanmqin',1,'Admin',1672319405,'192.168.64.1',2,15,31013,NULL,'IIS: Method PROPFIND requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015a7kiy920r7om3',1,'Admin',1672319405,'192.168.64.1',2,15,31014,NULL,'IIS: Method PROPPATCH requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015b7kiyggcckqep',1,'Admin',1672319405,'192.168.64.1',2,15,31015,NULL,'IIS: Method PUT requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015c7kiyzenla7z7',1,'Admin',1672319405,'192.168.64.1',2,15,31016,NULL,'IIS: Method MS-SEARCH requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015d7kiyr364nijf',1,'Admin',1672319405,'192.168.64.1',2,15,31017,NULL,'IIS: Uptime','clc93snar00007kiypalxeeen',''),('clc93snfq015e7kiyha57oglc',1,'Admin',1672319405,'192.168.64.1',2,15,31011,NULL,'IIS: Total connection attempts','clc93snar00007kiypalxeeen',''),('clc93snfq015f7kiy8d32xjdk',1,'Admin',1672319405,'192.168.64.1',2,15,31018,NULL,'IIS: Method Total requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015g7kiym1jzr0fq',1,'Admin',1672319405,'192.168.64.1',2,15,31020,NULL,'IIS: Method TRACE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015h7kiydl5vwp5u',1,'Admin',1672319405,'192.168.64.1',2,15,31021,NULL,'IIS: Method TRACE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015i7kiy6q5gd6s6',1,'Admin',1672319405,'192.168.64.1',2,15,31026,NULL,'IIS: World Wide Web Publishing Service (W3SVC) state','clc93snar00007kiypalxeeen',''),('clc93snfq015j7kiyjved45a9',1,'Admin',1672319405,'192.168.64.1',2,15,31046,NULL,'IIS: Windows Process Activation Service (WAS) state','clc93snar00007kiypalxeeen',''),('clc93snfq015k7kiyeqw0j8vs',1,'Admin',1672319405,'192.168.64.1',2,15,43078,NULL,'IIS: Active agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq015l7kiyjlirle21',1,'Admin',1672319405,'192.168.64.1',2,15,31820,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfq015m7kiy7oepust3',1,'Admin',1672319405,'192.168.64.1',2,15,31834,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq015n7kiy13fyuwbo',1,'Admin',1672319405,'192.168.64.1',2,15,31829,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq015o7kiyzuftomsb',1,'Admin',1672319405,'192.168.64.1',2,15,31833,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq015p7kiyki5rvufu',1,'Admin',1672319405,'192.168.64.1',2,15,31832,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfq015q7kiyrm1ycikn',1,'Admin',1672319405,'192.168.64.1',2,15,31831,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfq015r7kiycd2k81rf',1,'Admin',1672319405,'192.168.64.1',2,15,31892,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfq015s7kiyyf9helxx',1,'Admin',1672319405,'192.168.64.1',2,15,31828,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfq015t7kiy7wek006k',1,'Admin',1672319405,'192.168.64.1',2,15,31830,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfq015u7kiyq1xe5yax',1,'Admin',1672319405,'192.168.64.1',2,15,31821,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfq015v7kiy7fbaf4zo',1,'Admin',1672319405,'192.168.64.1',2,15,31827,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfq015w7kiy1oh51hm3',1,'Admin',1672319405,'192.168.64.1',2,15,31826,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfq015x7kiy6yrzh888',1,'Admin',1672319405,'192.168.64.1',2,15,31825,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfq015y7kiyd0m8rkoi',1,'Admin',1672319405,'192.168.64.1',2,15,31824,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfq015z7kiyfds64z08',1,'Admin',1672319405,'192.168.64.1',2,15,31823,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfq01607kiyveb3vf6j',1,'Admin',1672319405,'192.168.64.1',2,15,31822,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfq01617kiy8c5bbusr',1,'Admin',1672319405,'192.168.64.1',2,15,31835,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfq01627kiycudna2he',1,'Admin',1672319405,'192.168.64.1',2,15,44374,NULL,'Get filesystems','clc93snar00007kiypalxeeen',''),('clc93snfq01637kiyrilnqzu5',1,'Admin',1672319405,'192.168.64.1',2,15,42319,NULL,'Host name of Zabbix agent running','clc93snar00007kiypalxeeen',''),('clc93snfq01647kiy7cbuo02v',1,'Admin',1672319405,'192.168.64.1',2,15,42340,NULL,'Zabbix agent ping','clc93snar00007kiypalxeeen',''),('clc93snfq01657kiy2jmjwksq',1,'Admin',1672319405,'192.168.64.1',2,15,42342,NULL,'Version of Zabbix agent running','clc93snar00007kiypalxeeen',''),('clc93snfq01667kiy58vf5grt',1,'Admin',1672319405,'192.168.64.1',2,15,42343,NULL,'Maximum number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfq01677kiyl8cswxuw',1,'Admin',1672319405,'192.168.64.1',2,15,42344,NULL,'Maximum number of processes','clc93snar00007kiypalxeeen',''),('clc93snfq01687kiyabe8puov',1,'Admin',1672319405,'192.168.64.1',2,15,42345,NULL,'Number of processes','clc93snar00007kiypalxeeen',''),('clc93snfq01697kiy7l8zxvxm',1,'Admin',1672319405,'192.168.64.1',2,15,42346,NULL,'Number of running processes','clc93snar00007kiypalxeeen',''),('clc93snfq016a7kiyt8qy0chx',1,'Admin',1672319405,'192.168.64.1',2,15,42347,NULL,'System boot time','clc93snar00007kiypalxeeen',''),('clc93snfq016b7kiyjr95wtq0',1,'Admin',1672319405,'192.168.64.1',2,15,42348,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfq016c7kiyfksib56g',1,'Admin',1672319405,'192.168.64.1',2,15,42351,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq016d7kiyxy67sqhp',1,'Admin',1672319405,'192.168.64.1',2,15,42341,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq016e7kiydp9mcl2t',1,'Admin',1672319405,'192.168.64.1',2,15,42349,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq016f7kiyegioduej',1,'Admin',1672319405,'192.168.64.1',2,15,42352,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfq016g7kiymzz87oxq',1,'Admin',1672319405,'192.168.64.1',2,15,42353,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfq016h7kiyt8d2uqj2',1,'Admin',1672319405,'192.168.64.1',2,15,42358,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfq016i7kiyzlj6tqnb',1,'Admin',1672319405,'192.168.64.1',2,15,42354,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfq016j7kiystyo3mos',1,'Admin',1672319405,'192.168.64.1',2,15,42355,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfq016k7kiy31wg37qp',1,'Admin',1672319405,'192.168.64.1',2,15,42356,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfq016l7kiya5c5nvla',1,'Admin',1672319405,'192.168.64.1',2,15,42357,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfq016m7kiytkoi17xh',1,'Admin',1672319405,'192.168.64.1',2,15,42350,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfq016n7kiyfy7uqy9p',1,'Admin',1672319405,'192.168.64.1',2,15,42339,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfq016o7kiy4d8y5eev',1,'Admin',1672319405,'192.168.64.1',2,15,42329,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfq016p7kiyy0z7lbob',1,'Admin',1672319405,'192.168.64.1',2,15,42338,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfq016q7kiyk0swp3ma',1,'Admin',1672319405,'192.168.64.1',2,15,42321,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfq016r7kiyioerqtkh',1,'Admin',1672319405,'192.168.64.1',2,15,42322,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfq016s7kiyja9ee9wn',1,'Admin',1672319405,'192.168.64.1',2,15,42323,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq016t7kiypx7ald7m',1,'Admin',1672319405,'192.168.64.1',2,15,42324,NULL,'System local time','clc93snar00007kiypalxeeen',''),('clc93snfq016u7kiypix0htym',1,'Admin',1672319405,'192.168.64.1',2,15,42325,NULL,'Operating system architecture','clc93snar00007kiypalxeeen',''),('clc93snfq016v7kiypy7svq75',1,'Admin',1672319405,'192.168.64.1',2,15,42326,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfq016w7kiya1qdakyc',1,'Admin',1672319405,'192.168.64.1',2,15,42327,NULL,'Software installed','clc93snar00007kiypalxeeen',''),('clc93snfq016x7kiywo2jzswi',1,'Admin',1672319405,'192.168.64.1',2,15,42320,NULL,'Free swap space','clc93snar00007kiypalxeeen',''),('clc93snfq016y7kiym63o8f1v',1,'Admin',1672319405,'192.168.64.1',2,15,42328,NULL,'Free swap space in %','clc93snar00007kiypalxeeen',''),('clc93snfq016z7kiytpw12zka',1,'Admin',1672319405,'192.168.64.1',2,15,42330,NULL,'Total swap space','clc93snar00007kiypalxeeen',''),('clc93snfq01707kiyt78vgi18',1,'Admin',1672319405,'192.168.64.1',2,15,42331,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq01717kiyt7zq7ti7',1,'Admin',1672319405,'192.168.64.1',2,15,42332,NULL,'System uptime','clc93snar00007kiypalxeeen',''),('clc93snfq01727kiyz63lf1o3',1,'Admin',1672319405,'192.168.64.1',2,15,42333,NULL,'Number of logged in users','clc93snar00007kiypalxeeen',''),('clc93snfq01737kiyfnahulit',1,'Admin',1672319405,'192.168.64.1',2,15,42334,NULL,'Checksum of /etc/passwd','clc93snar00007kiypalxeeen',''),('clc93snfq01747kiyggjgiimt',1,'Admin',1672319405,'192.168.64.1',2,15,44442,NULL,'Get filesystems','clc93snar00007kiypalxeeen',''),('clc93snfq01757kiyeedcwd2q',1,'Admin',1672319405,'192.168.64.1',2,15,42335,NULL,'Available memory','clc93snar00007kiypalxeeen',''),('clc93snfq01767kiyo7d3rv27',1,'Admin',1672319405,'192.168.64.1',2,15,42336,NULL,'Available memory in %','clc93snar00007kiypalxeeen',''),('clc93snfq01777kiy9o6qj1i6',1,'Admin',1672319405,'192.168.64.1',2,15,42337,NULL,'Total memory','clc93snar00007kiypalxeeen',''),('clc93snfq01787kiyzh9g69ml',1,'Admin',1672319405,'192.168.64.1',2,15,42359,NULL,'Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snfq01797kiy861y67xs',1,'Admin',1672319405,'192.168.64.1',2,15,43079,NULL,'Active agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq017a7kiy4ze5q5nu',1,'Admin',1672319405,'192.168.64.1',2,15,33391,NULL,'Jenkins: Get computer info','clc93snar00007kiypalxeeen',''),('clc93snfq017b7kiydu9esr43',1,'Admin',1672319405,'192.168.64.1',2,15,33447,NULL,'Jenkins: File descriptor ratio','clc93snar00007kiypalxeeen',''),('clc93snfq017c7kiy0zf7smkq',1,'Admin',1672319405,'192.168.64.1',2,15,33444,NULL,'Jenkins: Disk space check','clc93snar00007kiypalxeeen',''),('clc93snfq017d7kiy3lvh68gy',1,'Admin',1672319405,'192.168.64.1',2,15,33443,NULL,'Jenkins: Disk space check message','clc93snar00007kiypalxeeen',''),('clc93snfq017e7kiygxnt3u4u',1,'Admin',1672319405,'192.168.64.1',2,15,33442,NULL,'Jenkins: Executors count','clc93snar00007kiypalxeeen',''),('clc93snfq017f7kiytubx25j6',1,'Admin',1672319405,'192.168.64.1',2,15,33441,NULL,'Jenkins: Executors free','clc93snar00007kiypalxeeen',''),('clc93snfq017g7kiys3uo30nr',1,'Admin',1672319405,'192.168.64.1',2,15,33440,NULL,'Jenkins: Executors in use','clc93snar00007kiypalxeeen',''),('clc93snfq017h7kiy9xg0flk2',1,'Admin',1672319405,'192.168.64.1',2,15,33394,NULL,'Jenkins: Get service metrics','clc93snar00007kiypalxeeen',''),('clc93snfq017i7kiyvtz76uav',1,'Admin',1672319405,'192.168.64.1',2,15,33395,NULL,'Jenkins: Get healthcheck','clc93snar00007kiypalxeeen',''),('clc93snfq017j7kiyf8tlae9q',1,'Admin',1672319405,'192.168.64.1',2,15,33439,NULL,'Jenkins: HTTP active requests, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017k7kiy2lkyjxcq',1,'Admin',1672319405,'192.168.64.1',2,15,33437,NULL,'Jenkins: HTTP response 400, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017l7kiyrtwpj8sz',1,'Admin',1672319405,'192.168.64.1',2,15,33430,NULL,'Jenkins: HTTP response 201, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017m7kiyri2zrxig',1,'Admin',1672319405,'192.168.64.1',2,15,33436,NULL,'Jenkins: HTTP response 403, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017n7kiy8ci6kj0m',1,'Admin',1672319405,'192.168.64.1',2,15,33433,NULL,'Jenkins: HTTP response 204, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017o7kiya584wex5',1,'Admin',1672319405,'192.168.64.1',2,15,33435,NULL,'Jenkins: HTTP response 404, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017p7kiymd376y98',1,'Admin',1672319405,'192.168.64.1',2,15,33434,NULL,'Jenkins: HTTP response 304, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017q7kiysmj9oepm',1,'Admin',1672319405,'192.168.64.1',2,15,33432,NULL,'Jenkins: HTTP response 200, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017r7kiy1bae04di',1,'Admin',1672319405,'192.168.64.1',2,15,33431,NULL,'Jenkins: HTTP response other, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017s7kiy1hvl6w4m',1,'Admin',1672319405,'192.168.64.1',2,15,33445,NULL,'Jenkins: HTTP requests, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017t7kiyg3atrvps',1,'Admin',1672319405,'192.168.64.1',2,15,33438,NULL,'Jenkins: HTTP requests, median','clc93snar00007kiypalxeeen',''),('clc93snfq017u7kiy6rnorlxa',1,'Admin',1672319405,'192.168.64.1',2,15,33446,NULL,'Jenkins: HTTP requests, p95','clc93snar00007kiypalxeeen',''),('clc93snfq017v7kiyluvai7f5',1,'Admin',1672319405,'192.168.64.1',2,15,33456,NULL,'Jenkins: HTTP response 500, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017w7kiyls1syix3',1,'Admin',1672319405,'192.168.64.1',2,15,33463,NULL,'Jenkins: HTTP response 503, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017x7kiy2fohv9fx',1,'Admin',1672319405,'192.168.64.1',2,15,33462,NULL,'Jenkins: Job blocked duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq017y7kiy3qa1ks4s',1,'Admin',1672319405,'192.168.64.1',2,15,33461,NULL,'Jenkins: Job blocked duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq017z7kiyil8deplq',1,'Admin',1672319405,'192.168.64.1',2,15,33460,NULL,'Jenkins: Job blocked, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01807kiygc0xruov',1,'Admin',1672319405,'192.168.64.1',2,15,33459,NULL,'Jenkins: Job blocked, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01817kiyqhef2tkt',1,'Admin',1672319405,'192.168.64.1',2,15,33458,NULL,'Jenkins: Job buildable duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq01827kiyu9ahmc0s',1,'Admin',1672319405,'192.168.64.1',2,15,33457,NULL,'Jenkins: Job buildable duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq01837kiyjr6o1zws',1,'Admin',1672319405,'192.168.64.1',2,15,33455,NULL,'Jenkins: Job buildable, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01847kiyvry4un6n',1,'Admin',1672319405,'192.168.64.1',2,15,33448,NULL,'Jenkins: Job buildable, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01857kiyxi7sgkem',1,'Admin',1672319405,'192.168.64.1',2,15,33454,NULL,'Jenkins: Job building duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq01867kiy3ryvq7wg',1,'Admin',1672319405,'192.168.64.1',2,15,33453,NULL,'Jenkins: Job building duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq01877kiysadlynsk',1,'Admin',1672319405,'192.168.64.1',2,15,33452,NULL,'Jenkins: Job building, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01887kiypc0kguo5',1,'Admin',1672319405,'192.168.64.1',2,15,33451,NULL,'Jenkins: Job building, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01897kiyty54ytxs',1,'Admin',1672319405,'192.168.64.1',2,15,33450,NULL,'Jenkins: Jobs count','clc93snar00007kiypalxeeen',''),('clc93snfq018a7kiys0ipot50',1,'Admin',1672319405,'192.168.64.1',2,15,33449,NULL,'Jenkins: Job queuing duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq018b7kiy83hay89v',1,'Admin',1672319405,'192.168.64.1',2,15,33428,NULL,'Jenkins: Job queuing duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq018c7kiyyw5lt9go',1,'Admin',1672319405,'192.168.64.1',2,15,33429,NULL,'Jenkins: Job queuing, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018d7kiytq204g2f',1,'Admin',1672319405,'192.168.64.1',2,15,33420,NULL,'Jenkins: Job queuing, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018e7kiyaqjs9suo',1,'Admin',1672319405,'192.168.64.1',2,15,33427,NULL,'Jenkins: Job scheduled, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018f7kiyyz0y5oqo',1,'Admin',1672319405,'192.168.64.1',2,15,33408,NULL,'Jenkins: Jobs scheduled, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018g7kiybovsbw3l',1,'Admin',1672319405,'192.168.64.1',2,15,33407,NULL,'Jenkins: Job total duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq018h7kiymwrw0y0a',1,'Admin',1672319405,'192.168.64.1',2,15,33406,NULL,'Jenkins: Job total duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq018i7kiyosy015pp',1,'Admin',1672319405,'192.168.64.1',2,15,33405,NULL,'Jenkins: Job total, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018j7kiygb2rvtm5',1,'Admin',1672319405,'192.168.64.1',2,15,33404,NULL,'Jenkins: Job total, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018k7kiy1xceepz4',1,'Admin',1672319405,'192.168.64.1',2,15,33401,NULL,'Jenkins: Job waiting duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq018l7kiybjb5032f',1,'Admin',1672319405,'192.168.64.1',2,15,33402,NULL,'Jenkins: Job waiting duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq018m7kiyr0fqj1aj',1,'Admin',1672319405,'192.168.64.1',2,15,33396,NULL,'Jenkins: Job waiting, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018n7kiyhuxv5043',1,'Admin',1672319405,'192.168.64.1',2,15,33400,NULL,'Jenkins: Job waiting, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018o7kiyikyx16bu',1,'Admin',1672319405,'192.168.64.1',2,15,33393,NULL,'Jenkins: Get jobs info','clc93snar00007kiypalxeeen',''),('clc93snfq018p7kiyeyjz4neq',1,'Admin',1672319405,'192.168.64.1',2,15,33399,NULL,'Jenkins: Nodes count','clc93snar00007kiypalxeeen',''),('clc93snfq018q7kiyak6t3ct7',1,'Admin',1672319405,'192.168.64.1',2,15,33398,NULL,'Jenkins: Nodes offline','clc93snar00007kiypalxeeen',''),('clc93snfq018r7kiy6bsvc3kd',1,'Admin',1672319405,'192.168.64.1',2,15,33397,NULL,'Jenkins: Nodes online','clc93snar00007kiypalxeeen',''),('clc93snfq018s7kiy8ytxm19p',1,'Admin',1672319405,'192.168.64.1',2,15,33392,NULL,'Jenkins: Service ping','clc93snar00007kiypalxeeen',''),('clc93snfq018t7kiyrx98egjy',1,'Admin',1672319405,'192.168.64.1',2,15,33409,NULL,'Jenkins: Plugins check','clc93snar00007kiypalxeeen',''),('clc93snfq018u7kiyf1ltd3qp',1,'Admin',1672319405,'192.168.64.1',2,15,33403,NULL,'Jenkins: Plugins active','clc93snar00007kiypalxeeen',''),('clc93snfq018v7kiytn9aqoe2',1,'Admin',1672319405,'192.168.64.1',2,15,33411,NULL,'Jenkins: Plugins failed','clc93snar00007kiypalxeeen',''),('clc93snfq018w7kiywj0gbf37',1,'Admin',1672319405,'192.168.64.1',2,15,33410,NULL,'Jenkins: Plugins inactive','clc93snar00007kiypalxeeen',''),('clc93snfq018x7kiys3nt0j16',1,'Admin',1672319405,'192.168.64.1',2,15,33426,NULL,'Jenkins: Plugins check message','clc93snar00007kiypalxeeen',''),('clc93snfq018y7kiya58sdv7m',1,'Admin',1672319405,'192.168.64.1',2,15,33425,NULL,'Jenkins: Plugins with update','clc93snar00007kiypalxeeen',''),('clc93snfq018z7kiyj79xv432',1,'Admin',1672319405,'192.168.64.1',2,15,33424,NULL,'Jenkins: Projects count','clc93snar00007kiypalxeeen',''),('clc93snfq01907kiyk8d6hj2d',1,'Admin',1672319405,'192.168.64.1',2,15,33423,NULL,'Jenkins: Build queue, blocked','clc93snar00007kiypalxeeen',''),('clc93snfq01917kiy9szvke3z',1,'Admin',1672319405,'192.168.64.1',2,15,33422,NULL,'Jenkins: Build queue, buildable','clc93snar00007kiypalxeeen',''),('clc93snfq01927kiywl23fcq0',1,'Admin',1672319405,'192.168.64.1',2,15,33421,NULL,'Jenkins: Build queue, pending','clc93snar00007kiypalxeeen',''),('clc93snfq01937kiy0elblt3b',1,'Admin',1672319405,'192.168.64.1',2,15,33419,NULL,'Jenkins: Build queue, size','clc93snar00007kiypalxeeen',''),('clc93snfq01947kiy6hmkws6g',1,'Admin',1672319405,'192.168.64.1',2,15,33412,NULL,'Jenkins: Build queue, stuck','clc93snar00007kiypalxeeen',''),('clc93snfq01957kiyk4axpy1j',1,'Admin',1672319405,'192.168.64.1',2,15,33418,NULL,'Jenkins: CPU Load','clc93snar00007kiypalxeeen',''),('clc93snfq01967kiyb88p5u3v',1,'Admin',1672319405,'192.168.64.1',2,15,33417,NULL,'Jenkins: Uptime','clc93snar00007kiypalxeeen',''),('clc93snfq01977kiyuwr3bc8a',1,'Admin',1672319405,'192.168.64.1',2,15,33416,NULL,'Jenkins: Temporary space check','clc93snar00007kiypalxeeen',''),('clc93snfq01987kiyhuhj4lmc',1,'Admin',1672319405,'192.168.64.1',2,15,33415,NULL,'Jenkins: Temporary space check message','clc93snar00007kiypalxeeen',''),('clc93snfq01997kiycfsbntvj',1,'Admin',1672319405,'192.168.64.1',2,15,33414,NULL,'Jenkins: Thread deadlock check','clc93snar00007kiypalxeeen',''),('clc93snfq019a7kiyvq0jzv1x',1,'Admin',1672319405,'192.168.64.1',2,15,33413,NULL,'Jenkins: Thread deadlock check message','clc93snar00007kiypalxeeen',''),('clc93snfq019b7kiybn9vujjf',1,'Admin',1672319405,'192.168.64.1',2,15,33464,NULL,'Jenkins: Version','clc93snar00007kiypalxeeen',''),('clc93snfq019c7kiyec75omwm',1,'Admin',1672319405,'192.168.64.1',2,15,33691,NULL,'OceanStor 5300 V5: Status','clc93snar00007kiypalxeeen',''),('clc93snfq019d7kiye2tn8vsy',1,'Admin',1672319405,'192.168.64.1',2,15,33692,NULL,'OceanStor 5300 V5: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snfq019e7kiycwffdnz2',1,'Admin',1672319405,'192.168.64.1',2,15,33693,NULL,'OceanStor 5300 V5: Capacity used','clc93snar00007kiypalxeeen',''),('clc93snfq019f7kiyl4kfwg6v',1,'Admin',1672319405,'192.168.64.1',2,15,33694,NULL,'OceanStor 5300 V5: Version','clc93snar00007kiypalxeeen',''),('clc93snfq019g7kiypekcufav',1,'Admin',1672319405,'192.168.64.1',2,15,42598,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfq019h7kiyniruy6o9',1,'Admin',1672319405,'192.168.64.1',2,15,42599,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfq019i7kiyfvtc2iz8',1,'Admin',1672319405,'192.168.64.1',2,15,42600,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfq019j7kiytgfd7hfw',1,'Admin',1672319405,'192.168.64.1',2,15,42601,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq019k7kiyk4flow9s',1,'Admin',1672319405,'192.168.64.1',2,15,42602,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq019l7kiyym3gj41b',1,'Admin',1672319405,'192.168.64.1',2,15,42603,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq019m7kiy01qjbn0o',1,'Admin',1672319405,'192.168.64.1',2,15,43887,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq019n7kiy2rtyfbyr',1,'Admin',1672319405,'192.168.64.1',2,15,42604,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq019o7kiybswd2cwj',1,'Admin',1672319405,'192.168.64.1',2,15,42605,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq019p7kiy5btawcyz',1,'Admin',1672319405,'192.168.64.1',2,15,42607,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq019q7kiyqrsvphga',1,'Admin',1672319405,'192.168.64.1',2,15,42606,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq019r7kiy48irt6vp',1,'Admin',1672319405,'192.168.64.1',2,15,42608,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq019s7kiy8gguz2eo',1,'Admin',1672319405,'192.168.64.1',2,15,36541,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq019t7kiyq3j0em0x',1,'Admin',1672319405,'192.168.64.1',2,15,36542,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq019u7kiyjp977mbf',1,'Admin',1672319405,'192.168.64.1',2,15,36543,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfq019v7kiyt6yyd3wi',1,'Admin',1672319405,'192.168.64.1',2,15,36544,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfq019w7kiyc9k4jfat',1,'Admin',1672319405,'192.168.64.1',2,15,43896,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq019x7kiy6ttcs2f2',1,'Admin',1672319405,'192.168.64.1',2,15,36545,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq019y7kiybe2s1pk6',1,'Admin',1672319405,'192.168.64.1',2,15,36546,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq019z7kiyy5nfppp7',1,'Admin',1672319405,'192.168.64.1',2,15,36550,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq01a07kiypiq8zukc',1,'Admin',1672319405,'192.168.64.1',2,15,36547,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq01a17kiyytccg238',1,'Admin',1672319405,'192.168.64.1',2,15,36548,NULL,'System temperature status','clc93snar00007kiypalxeeen',''),('clc93snfq01a27kiyo1b0d3nl',1,'Admin',1672319405,'192.168.64.1',2,15,36549,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfq01a37kiyupepzs1l',1,'Admin',1672319405,'192.168.64.1',2,15,36551,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq01a47kiyuxwco4b1',1,'Admin',1672319405,'192.168.64.1',2,15,36552,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq01a57kiybhia4lcu',1,'Admin',1672319405,'192.168.64.1',2,15,36598,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq01a67kiyifri4vgd',1,'Admin',1672319405,'192.168.64.1',2,15,36599,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq01a77kiy57w8qar4',1,'Admin',1672319405,'192.168.64.1',2,15,36600,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfq01a87kiy6sjinq57',1,'Admin',1672319405,'192.168.64.1',2,15,36601,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfq01a97kiykjgi3n8m',1,'Admin',1672319405,'192.168.64.1',2,15,43897,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq01aa7kiyustn170h',1,'Admin',1672319405,'192.168.64.1',2,15,36602,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq01ab7kiybw6znm4h',1,'Admin',1672319405,'192.168.64.1',2,15,36603,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq01ac7kiy47g6vrik',1,'Admin',1672319405,'192.168.64.1',2,15,36607,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq01ad7kiyhks8cnu1',1,'Admin',1672319405,'192.168.64.1',2,15,36604,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq01ae7kiyhqbxvng4',1,'Admin',1672319405,'192.168.64.1',2,15,36605,NULL,'System temperature status','clc93snar00007kiypalxeeen',''),('clc93snfq01af7kiy8o6nt61i',1,'Admin',1672319405,'192.168.64.1',2,15,36606,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfq01ag7kiyhzcyp6zx',1,'Admin',1672319405,'192.168.64.1',2,15,36608,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq01ah7kiyf1xm0a9f',1,'Admin',1672319405,'192.168.64.1',2,15,36609,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq01ai7kiyigx6ffvn',1,'Admin',1672319405,'192.168.64.1',2,15,36655,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq01aj7kiy1jvsc2ln',1,'Admin',1672319405,'192.168.64.1',2,15,36656,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq01ak7kiy11cgz5oz',1,'Admin',1672319405,'192.168.64.1',2,15,36657,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfq01al7kiyu0h7x8jg',1,'Admin',1672319405,'192.168.64.1',2,15,36658,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfq01am7kiyl1g71xa2',1,'Admin',1672319405,'192.168.64.1',2,15,43898,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq01an7kiy1bnxb0lp',1,'Admin',1672319405,'192.168.64.1',2,15,36659,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq01ao7kiym9skam5p',1,'Admin',1672319405,'192.168.64.1',2,15,36660,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq01ap7kiyub2p87jt',1,'Admin',1672319405,'192.168.64.1',2,15,36664,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq01aq7kiytlcwt9e0',1,'Admin',1672319405,'192.168.64.1',2,15,36661,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq01ar7kiycs3q276d',1,'Admin',1672319405,'192.168.64.1',2,15,36662,NULL,'System temperature status','clc93snar00007kiypalxeeen',''),('clc93snfq01as7kiy0dfz3uyb',1,'Admin',1672319405,'192.168.64.1',2,15,36663,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfq01at7kiypylr7ap0',1,'Admin',1672319405,'192.168.64.1',2,15,36665,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq01au7kiy5fa4sjuh',1,'Admin',1672319405,'192.168.64.1',2,15,36666,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq01av7kiyy2jlg2c0',1,'Admin',1672319405,'192.168.64.1',2,15,36712,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq01aw7kiy9diy3duo',1,'Admin',1672319405,'192.168.64.1',2,15,36713,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq01ax7kiyz56gadao',1,'Admin',1672319405,'192.168.64.1',2,15,36714,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfq01ay7kiy4c07bwrk',1,'Admin',1672319405,'192.168.64.1',2,15,36715,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfq01az7kiykw9kvaph',1,'Admin',1672319405,'192.168.64.1',2,15,43899,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq01b07kiyf8d6xpal',1,'Admin',1672319405,'192.168.64.1',2,15,36716,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq01b17kiytwv7orw6',1,'Admin',1672319405,'192.168.64.1',2,15,36717,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq01b27kiy29yhb38f',1,'Admin',1672319405,'192.168.64.1',2,15,36721,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq01b37kiyrvbmu4yb',1,'Admin',1672319405,'192.168.64.1',2,15,36718,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq01b47kiyryc5g4su',1,'Admin',1672319405,'192.168.64.1',2,15,36719,NULL,'System temperature status','clc93snar00007kiypalxeeen',''),('clc93snfq01b57kiywdu1az3g',1,'Admin',1672319405,'192.168.64.1',2,15,36720,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfq01b67kiydx6c6jlg',1,'Admin',1672319405,'192.168.64.1',2,15,36722,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq01b77kiyf16cxzwk',1,'Admin',1672319405,'192.168.64.1',2,15,36723,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq01b87kiy37535nbs',1,'Admin',1672319405,'192.168.64.1',2,15,36795,NULL,'InfluxDB: Get instance metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01b97kiyl4m0u4ig',1,'Admin',1672319405,'192.168.64.1',2,15,36796,NULL,'InfluxDB: Instance status','clc93snar00007kiypalxeeen',''),('clc93snfq01ba7kiyzfyddf8d',1,'Admin',1672319405,'192.168.64.1',2,15,36811,NULL,'InfluxDB: Boltdb reads, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bb7kiys1qa9njc',1,'Admin',1672319405,'192.168.64.1',2,15,36810,NULL,'InfluxDB: Boltdb writes, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bc7kiy7a5eca6a',1,'Admin',1672319405,'192.168.64.1',2,15,36809,NULL,'InfluxDB: Buckets, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bd7kiyoyqf8ycd',1,'Admin',1672319405,'192.168.64.1',2,15,36808,NULL,'InfluxDB: Dashboards, total','clc93snar00007kiypalxeeen',''),('clc93snfq01be7kiyp1oodapm',1,'Admin',1672319405,'192.168.64.1',2,15,36807,NULL,'InfluxDB: Organizations, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bf7kiyl1b8qe0r',1,'Admin',1672319405,'192.168.64.1',2,15,36806,NULL,'InfluxDB: Scrapers, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bg7kiyadtz9l0z',1,'Admin',1672319405,'192.168.64.1',2,15,36805,NULL,'InfluxDB: Task runs failed, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bh7kiyl1ebbx2p',1,'Admin',1672319405,'192.168.64.1',2,15,36804,NULL,'InfluxDB: Task runs successful, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bi7kiyr2qo13xm',1,'Admin',1672319405,'192.168.64.1',2,15,36803,NULL,'InfluxDB: Workers currently running','clc93snar00007kiypalxeeen',''),('clc93snfq01bj7kiyiing9uq8',1,'Admin',1672319405,'192.168.64.1',2,15,36802,NULL,'InfluxDB: Workers busy, pct','clc93snar00007kiypalxeeen',''),('clc93snfq01bk7kiyoyvwk7fi',1,'Admin',1672319405,'192.168.64.1',2,15,36800,NULL,'InfluxDB: Telegraf plugins, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bl7kiyesv3nnib',1,'Admin',1672319405,'192.168.64.1',2,15,36801,NULL,'InfluxDB: Telegrafs, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bm7kiymrvti3bo',1,'Admin',1672319405,'192.168.64.1',2,15,36799,NULL,'InfluxDB: Tokens, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bn7kiysxqcuje9',1,'Admin',1672319405,'192.168.64.1',2,15,36798,NULL,'InfluxDB: Uptime','clc93snar00007kiypalxeeen',''),('clc93snfq01bo7kiyuvcy0jx0',1,'Admin',1672319405,'192.168.64.1',2,15,36797,NULL,'InfluxDB: Users, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bp7kiyeh3bn8fw',1,'Admin',1672319405,'192.168.64.1',2,15,36812,NULL,'InfluxDB: Version','clc93snar00007kiypalxeeen',''),('clc93snfq01bq7kiyl1bpvzrx',1,'Admin',1672319405,'192.168.64.1',2,15,39829,NULL,'Kubernetes API: Request terminations, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01br7kiy6o86mhtg',1,'Admin',1672319405,'192.168.64.1',2,15,39841,NULL,'Kubernetes API: API server requests: 0','clc93snar00007kiypalxeeen',''),('clc93snfq01bs7kiybkyskw5m',1,'Admin',1672319405,'192.168.64.1',2,15,39849,NULL,'Kubernetes API: API server requests: 2xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bt7kiy510e7oyn',1,'Admin',1672319405,'192.168.64.1',2,15,39848,NULL,'Kubernetes API: API server requests: 3xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bu7kiyhdc2mm8b',1,'Admin',1672319405,'192.168.64.1',2,15,39847,NULL,'Kubernetes API: API server requests: 4xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bv7kiyc3qimq6j',1,'Admin',1672319405,'192.168.64.1',2,15,39846,NULL,'Kubernetes API: API server requests: 5xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bw7kiyl307tyri',1,'Admin',1672319405,'192.168.64.1',2,15,39845,NULL,'Kubernetes API: TLS handshake errors, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bx7kiyl3c06b9r',1,'Admin',1672319405,'192.168.64.1',2,15,39844,NULL,'Kubernetes API: Audit events, total','clc93snar00007kiypalxeeen',''),('clc93snfq01by7kiyd0pjksf1',1,'Admin',1672319405,'192.168.64.1',2,15,39843,NULL,'Kubernetes API: CPU','clc93snar00007kiypalxeeen',''),('clc93snfq01bz7kiy1c3olcy3',1,'Admin',1672319405,'192.168.64.1',2,15,39827,NULL,'Kubernetes API: Get API instance metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01c07kiygnvxoh0g',1,'Admin',1672319405,'192.168.64.1',2,15,39842,NULL,'Kubernetes API: Goroutines','clc93snar00007kiypalxeeen',''),('clc93snfq01c17kiyar1ltx4y',1,'Admin',1672319405,'192.168.64.1',2,15,39839,NULL,'Kubernetes API: Go threads','clc93snar00007kiypalxeeen',''),('clc93snfq01c27kiytv4hr3a9',1,'Admin',1672319405,'192.168.64.1',2,15,39840,NULL,'Kubernetes API: gRPCs messages ressived, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01c37kiy5gsj1b0i',1,'Admin',1672319405,'192.168.64.1',2,15,39830,NULL,'Kubernetes API: gRPCs messages sent, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01c47kiy3efk32c3',1,'Admin',1672319405,'192.168.64.1',2,15,39838,NULL,'Kubernetes API: gRPCs client started, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01c57kiypa8bzj4s',1,'Admin',1672319405,'192.168.64.1',2,15,39837,NULL,'Kubernetes API: Fds max','clc93snar00007kiypalxeeen',''),('clc93snfq01c67kiyf8jaxzyl',1,'Admin',1672319405,'192.168.64.1',2,15,39836,NULL,'Kubernetes API: Fds open','clc93snar00007kiypalxeeen',''),('clc93snfq01c77kiywmgcjfsd',1,'Admin',1672319405,'192.168.64.1',2,15,39835,NULL,'Kubernetes API: Resident memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01c87kiyh04xt1cu',1,'Admin',1672319405,'192.168.64.1',2,15,39834,NULL,'Kubernetes API: Virtual memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01c97kiy33kwaq34',1,'Admin',1672319405,'192.168.64.1',2,15,39833,NULL,'Kubernetes API: HTTP requests: 2xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01ca7kiyo3t5g0v5',1,'Admin',1672319405,'192.168.64.1',2,15,39832,NULL,'Kubernetes API: HTTP requests: 3xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cb7kiywzt99s7t',1,'Admin',1672319405,'192.168.64.1',2,15,39831,NULL,'Kubernetes API: HTTP requests: 4xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cc7kiyvo0xb8e6',1,'Admin',1672319405,'192.168.64.1',2,15,39850,NULL,'Kubernetes API: HTTP requests: 5xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cd7kiyuhcsbi00',1,'Admin',1672319405,'192.168.64.1',2,15,39877,NULL,'Kubernetes Controller Manager: REST Client requests: 2xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01ce7kiyzlo82rxy',1,'Admin',1672319405,'192.168.64.1',2,15,39878,NULL,'Kubernetes Controller Manager: REST Client requests: 3xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cf7kiy3mckrakw',1,'Admin',1672319405,'192.168.64.1',2,15,39879,NULL,'Kubernetes Controller Manager: REST Client requests: 4xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cg7kiyizjo0ka4',1,'Admin',1672319405,'192.168.64.1',2,15,39880,NULL,'Kubernetes Controller Manager: REST Client requests: 5xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01ch7kiyxbbwc50o',1,'Admin',1672319405,'192.168.64.1',2,15,39881,NULL,'Kubernetes Controller Manager: CPU','clc93snar00007kiypalxeeen',''),('clc93snfq01ci7kiyi8vx83ob',1,'Admin',1672319405,'192.168.64.1',2,15,39876,NULL,'Kubernetes Controller: Get Controller metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01cj7kiyq13kyfl8',1,'Admin',1672319405,'192.168.64.1',2,15,39882,NULL,'Kubernetes Controller Manager: Goroutines','clc93snar00007kiypalxeeen',''),('clc93snfq01ck7kiyi0t6ek1z',1,'Admin',1672319405,'192.168.64.1',2,15,39883,NULL,'Kubernetes Controller Manager: Go threads','clc93snar00007kiypalxeeen',''),('clc93snfq01cl7kiyybl0nxvr',1,'Admin',1672319405,'192.168.64.1',2,15,39884,NULL,'Kubernetes Controller Manager: Leader election status','clc93snar00007kiypalxeeen',''),('clc93snfq01cm7kiy86hox38u',1,'Admin',1672319405,'192.168.64.1',2,15,39885,NULL,'Kubernetes Controller Manager: Fds max','clc93snar00007kiypalxeeen',''),('clc93snfq01cn7kiyeqw6wmn0',1,'Admin',1672319405,'192.168.64.1',2,15,39886,NULL,'Kubernetes Controller Manager: Fds open','clc93snar00007kiypalxeeen',''),('clc93snfq01co7kiya6p0ysuw',1,'Admin',1672319405,'192.168.64.1',2,15,39887,NULL,'Kubernetes Controller Manager: Resident memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01cp7kiy037xchdp',1,'Admin',1672319405,'192.168.64.1',2,15,39888,NULL,'Kubernetes Controller Manager: Virtual memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01cq7kiyb8hqbyq1',1,'Admin',1672319405,'192.168.64.1',2,15,39905,NULL,'Kubernetes: Get cadvisor metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01cr7kiy5pfjcxny',1,'Admin',1672319405,'192.168.64.1',2,15,39908,NULL,'Kubernetes: Containers restarts','clc93snar00007kiypalxeeen',''),('clc93snfq01cs7kiytf43fxg8',1,'Admin',1672319405,'192.168.64.1',2,15,39909,NULL,'Kubernetes: Containers running','clc93snar00007kiypalxeeen',''),('clc93snfq01ct7kiy2tal0438',1,'Admin',1672319405,'192.168.64.1',2,15,39910,NULL,'Kubernetes: CPU cores, total','clc93snar00007kiypalxeeen',''),('clc93snfq01cu7kiyq2x7liqc',1,'Admin',1672319405,'192.168.64.1',2,15,39911,NULL,'Kubernetes: Machine memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01cv7kiy4gg9rm7r',1,'Admin',1672319405,'192.168.64.1',2,15,39906,NULL,'Kubernetes: Get kubelet metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01cw7kiyf7jewf8d',1,'Admin',1672319405,'192.168.64.1',2,15,39912,NULL,'Kubernetes: Pods running','clc93snar00007kiypalxeeen',''),('clc93snfq01cx7kiyg4k5v3tp',1,'Admin',1672319405,'192.168.64.1',2,15,39913,NULL,'Kubernetes: File descriptors, max','clc93snar00007kiypalxeeen',''),('clc93snfq01cy7kiy30d56q9q',1,'Admin',1672319405,'192.168.64.1',2,15,39914,NULL,'Kubernetes: File descriptors, open','clc93snar00007kiypalxeeen',''),('clc93snfq01cz7kiym5x0wnju',1,'Admin',1672319405,'192.168.64.1',2,15,39915,NULL,'Kubernetes: Virtual memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01d07kiy0micsct6',1,'Admin',1672319405,'192.168.64.1',2,15,39916,NULL,'Kubernetes: Containers last state terminated','clc93snar00007kiypalxeeen',''),('clc93snfq01d17kiygo0uggq0',1,'Admin',1672319405,'192.168.64.1',2,15,39907,NULL,'Kubernetes: Get pods','clc93snar00007kiypalxeeen',''),('clc93snfq01d27kiyoj9u3eq2',1,'Admin',1672319405,'192.168.64.1',2,15,39937,NULL,'Kubernetes: Get nodes','clc93snar00007kiypalxeeen',''),('clc93snfq01d37kiyuqse44pl',1,'Admin',1672319405,'192.168.64.1',2,15,39938,NULL,'Get nodes check','clc93snar00007kiypalxeeen',''),('clc93snfq01d47kiym8nr6htm',1,'Admin',1672319405,'192.168.64.1',2,15,39939,NULL,'Node LLD','clc93snar00007kiypalxeeen',''),('clc93snfq01d57kiys140vjv4',1,'Admin',1672319405,'192.168.64.1',2,15,39998,NULL,'Kubernetes Scheduler: REST Client requests: 2xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01d67kiyq8uzvvt9',1,'Admin',1672319405,'192.168.64.1',2,15,39990,NULL,'Kubernetes Scheduler: REST Client requests: 3xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01d77kiyz147cokw',1,'Admin',1672319405,'192.168.64.1',2,15,39988,NULL,'Kubernetes Scheduler: REST Client requests: 4xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01d87kiyc6va6l79',1,'Admin',1672319405,'192.168.64.1',2,15,39986,NULL,'Kubernetes Scheduler: REST Client requests: 5xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01d97kiyngkvkuxp',1,'Admin',1672319405,'192.168.64.1',2,15,39987,NULL,'Kubernetes Scheduler: CPU','clc93snar00007kiypalxeeen',''),('clc93snfq01da7kiyxqr3hjhw',1,'Admin',1672319405,'192.168.64.1',2,15,39978,NULL,'Kubernetes Scheduler: Get Scheduler metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01db7kiy8zs4hltv',1,'Admin',1672319405,'192.168.64.1',2,15,39989,NULL,'Kubernetes Scheduler: Goroutines','clc93snar00007kiypalxeeen',''),('clc93snfq01dc7kiyuyv5qdz1',1,'Admin',1672319405,'192.168.64.1',2,15,39999,NULL,'Kubernetes Scheduler: Go threads','clc93snar00007kiypalxeeen',''),('clc93snfq01dd7kiyygjytvqd',1,'Admin',1672319405,'192.168.64.1',2,15,39991,NULL,'Kubernetes Scheduler: Fds max','clc93snar00007kiypalxeeen',''),('clc93snfq01de7kiy3ut2tgy1',1,'Admin',1672319405,'192.168.64.1',2,15,39992,NULL,'Kubernetes Scheduler: Fds open','clc93snar00007kiypalxeeen',''),('clc93snfq01df7kiyv8uikv6d',1,'Admin',1672319405,'192.168.64.1',2,15,39993,NULL,'Kubernetes Scheduler: Resident memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01dg7kiy36s0aua5',1,'Admin',1672319405,'192.168.64.1',2,15,39994,NULL,'Kubernetes Scheduler: Virtual memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01dh7kiy9n06we5z',1,'Admin',1672319405,'192.168.64.1',2,15,39995,NULL,'Kubernetes Scheduler: Schedule attempts: error','clc93snar00007kiypalxeeen',''),('clc93snfq01di7kiy3btweqhu',1,'Admin',1672319405,'192.168.64.1',2,15,39996,NULL,'Kubernetes Scheduler: Schedule attempts: scheduled','clc93snar00007kiypalxeeen',''),('clc93snfq01dj7kiyzs6qrlyk',1,'Admin',1672319405,'192.168.64.1',2,15,39997,NULL,'Kubernetes Scheduler: Schedule attempts: unschedulable','clc93snar00007kiypalxeeen',''),('clc93snfq01dk7kiy3fqi5z2o',1,'Admin',1672319405,'192.168.64.1',2,15,40010,NULL,'Kubernetes: Get component statuses','clc93snar00007kiypalxeeen',''),('clc93snfq01dl7kiy9j8ijz6l',1,'Admin',1672319405,'192.168.64.1',2,15,40011,NULL,'Kubernetes: Control plane LLD','clc93snar00007kiypalxeeen',''),('clc93snfq01dm7kiyp2qp1ou8',1,'Admin',1672319405,'192.168.64.1',2,15,42700,NULL,'Kubernetes: CronJob count','clc93snar00007kiypalxeeen',''),('clc93snfq01dn7kiybk5jvtu7',1,'Admin',1672319405,'192.168.64.1',2,15,40016,NULL,'Kubernetes: Deployment count','clc93snar00007kiypalxeeen',''),('clc93snfq01do7kiyppkv5kl2',1,'Admin',1672319405,'192.168.64.1',2,15,42701,NULL,'Kubernetes: Endpoint count','clc93snar00007kiypalxeeen',''),('clc93snfq01dp7kiy3pzcwe9d',1,'Admin',1672319405,'192.168.64.1',2,15,42702,NULL,'Kubernetes: Job count','clc93snar00007kiypalxeeen',''),('clc93snfq01dq7kiybcsrcf0m',1,'Admin',1672319405,'192.168.64.1',2,15,40012,NULL,'Kubernetes: Get livez','clc93snar00007kiypalxeeen',''),('clc93snfq01dr7kiy3aa2il8k',1,'Admin',1672319405,'192.168.64.1',2,15,40017,NULL,'Kubernetes: Namespace count','clc93snar00007kiypalxeeen',''),('clc93snfq01ds7kiyrn3szr5o',1,'Admin',1672319405,'192.168.64.1',2,15,40018,NULL,'Kubernetes: Node count','clc93snar00007kiypalxeeen',''),('clc93snfq01dt7kiysc2urpvx',1,'Admin',1672319405,'192.168.64.1',2,15,40015,NULL,'Kubernetes: Node LLD','clc93snar00007kiypalxeeen',''),('clc93snfq01du7kiy4v25paye',1,'Admin',1672319405,'192.168.64.1',2,15,40013,NULL,'Kubernetes: Get readyz','clc93snar00007kiypalxeeen',''),('clc93snfq01dv7kiy7gd86b15',1,'Admin',1672319405,'192.168.64.1',2,15,40019,NULL,'Kubernetes: Service count','clc93snar00007kiypalxeeen',''),('clc93snfq01dw7kiyk86if4q5',1,'Admin',1672319405,'192.168.64.1',2,15,40014,NULL,'Kubernetes: Get state metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01dx7kiy3fcchg08',1,'Admin',1672319405,'192.168.64.1',2,15,40020,NULL,'Kubernetes: Statefulset count','clc93snar00007kiypalxeeen',''),('clc93snfq01dy7kiyhs9bmhje',1,'Admin',1672319405,'192.168.64.1',2,15,44100,NULL,'Get disk group statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01dz7kiyacl6zgvf',1,'Admin',1672319405,'192.168.64.1',2,15,44106,NULL,'Get controller statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01e07kiy2881blbc',1,'Admin',1672319405,'192.168.64.1',2,15,44098,NULL,'Get controllers','clc93snar00007kiypalxeeen',''),('clc93snfq01e17kiy1vb29014',1,'Admin',1672319405,'192.168.64.1',2,15,43174,NULL,'HPE MSA: Get data','clc93snar00007kiypalxeeen',''),('clc93snfq01e27kiy167m2d1y',1,'Admin',1672319405,'192.168.64.1',2,15,44105,NULL,'Get disks','clc93snar00007kiypalxeeen',''),('clc93snfq01e37kiyu8yuwno4',1,'Admin',1672319405,'192.168.64.1',2,15,44104,NULL,'Get disk groups','clc93snar00007kiypalxeeen',''),('clc93snfq01e47kiyc77m1vkg',1,'Admin',1672319405,'192.168.64.1',2,15,44103,NULL,'Get enclosures','clc93snar00007kiypalxeeen',''),('clc93snfq01e57kiyvr2kd56j',1,'Admin',1672319405,'192.168.64.1',2,15,43176,NULL,'Get method errors','clc93snar00007kiypalxeeen',''),('clc93snfq01e67kiy4z6meewa',1,'Admin',1672319405,'192.168.64.1',2,15,44102,NULL,'Get fans','clc93snar00007kiypalxeeen',''),('clc93snfq01e77kiyr5q24d4r',1,'Admin',1672319405,'192.168.64.1',2,15,44101,NULL,'Get FRU','clc93snar00007kiypalxeeen',''),('clc93snfq01e87kiy902zqvk3',1,'Admin',1672319405,'192.168.64.1',2,15,44094,NULL,'Get pools','clc93snar00007kiypalxeeen',''),('clc93snfq01e97kiyfuntxo0o',1,'Admin',1672319405,'192.168.64.1',2,15,44099,NULL,'Get ports','clc93snar00007kiypalxeeen',''),('clc93snfq01ea7kiyxkpdjdpx',1,'Admin',1672319405,'192.168.64.1',2,15,44107,NULL,'Get power supplies','clc93snar00007kiypalxeeen',''),('clc93snfq01eb7kiypt41th0q',1,'Admin',1672319405,'192.168.64.1',2,15,44097,NULL,'Get system','clc93snar00007kiypalxeeen',''),('clc93snfq01ec7kiy6dava82q',1,'Admin',1672319405,'192.168.64.1',2,15,44096,NULL,'Get volumes','clc93snar00007kiypalxeeen',''),('clc93snfq01ed7kiyxq3n3js5',1,'Admin',1672319405,'192.168.64.1',2,15,44095,NULL,'Get volume statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01ee7kiyalmnicuc',1,'Admin',1672319405,'192.168.64.1',2,15,43177,NULL,'System contact','clc93snar00007kiypalxeeen',''),('clc93snfq01ef7kiymbby662c',1,'Admin',1672319405,'192.168.64.1',2,15,43178,NULL,'System health','clc93snar00007kiypalxeeen',''),('clc93snfq01eg7kiyp4hschze',1,'Admin',1672319405,'192.168.64.1',2,15,43179,NULL,'System information','clc93snar00007kiypalxeeen',''),('clc93snfq01eh7kiykp6ddffv',1,'Admin',1672319405,'192.168.64.1',2,15,43180,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq01ei7kiygzegfwvo',1,'Admin',1672319405,'192.168.64.1',2,15,43181,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq01ej7kiy3v61f5ql',1,'Admin',1672319405,'192.168.64.1',2,15,43182,NULL,'Product ID','clc93snar00007kiypalxeeen',''),('clc93snfq01ek7kiy2ykheekt',1,'Admin',1672319405,'192.168.64.1',2,15,43183,NULL,'Vendor name','clc93snar00007kiypalxeeen',''),('clc93snfq01el7kiy398kuj5d',1,'Admin',1672319405,'192.168.64.1',2,15,43175,NULL,'HPE MSA: Service ping','clc93snar00007kiypalxeeen',''),('clc93snfq01em7kiya25koa7g',1,'Admin',1672319405,'192.168.64.1',2,15,44127,NULL,'Get disk group statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01en7kiyf7op2y68',1,'Admin',1672319405,'192.168.64.1',2,15,44133,NULL,'Get controller statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01eo7kiy08agmihh',1,'Admin',1672319405,'192.168.64.1',2,15,44125,NULL,'Get controllers','clc93snar00007kiypalxeeen',''),('clc93snfq01ep7kiykma20u9r',1,'Admin',1672319405,'192.168.64.1',2,15,43281,NULL,'HPE MSA: Get data','clc93snar00007kiypalxeeen',''),('clc93snfq01eq7kiyfkjl5h00',1,'Admin',1672319405,'192.168.64.1',2,15,44132,NULL,'Get disks','clc93snar00007kiypalxeeen',''),('clc93snfq01er7kiysd4flw5m',1,'Admin',1672319405,'192.168.64.1',2,15,44131,NULL,'Get disk groups','clc93snar00007kiypalxeeen',''),('clc93snfq01es7kiy3qy1bk22',1,'Admin',1672319405,'192.168.64.1',2,15,44130,NULL,'Get enclosures','clc93snar00007kiypalxeeen',''),('clc93snfq01et7kiy7j95h1yj',1,'Admin',1672319405,'192.168.64.1',2,15,43283,NULL,'Get method errors','clc93snar00007kiypalxeeen',''),('clc93snfq01eu7kiywqscgoo9',1,'Admin',1672319405,'192.168.64.1',2,15,44129,NULL,'Get fans','clc93snar00007kiypalxeeen',''),('clc93snfq01ev7kiyvwx2fqta',1,'Admin',1672319405,'192.168.64.1',2,15,44128,NULL,'Get FRU','clc93snar00007kiypalxeeen',''),('clc93snfq01ew7kiyvwvl9uy0',1,'Admin',1672319405,'192.168.64.1',2,15,44121,NULL,'Get pools','clc93snar00007kiypalxeeen',''),('clc93snfq01ex7kiychz11rzd',1,'Admin',1672319405,'192.168.64.1',2,15,44126,NULL,'Get ports','clc93snar00007kiypalxeeen',''),('clc93snfq01ey7kiyxrd0kfm1',1,'Admin',1672319405,'192.168.64.1',2,15,44134,NULL,'Get power supplies','clc93snar00007kiypalxeeen',''),('clc93snfq01ez7kiyjhh8w2f4',1,'Admin',1672319405,'192.168.64.1',2,15,44124,NULL,'Get system','clc93snar00007kiypalxeeen',''),('clc93snfr01f07kiyhj61f5jb',1,'Admin',1672319405,'192.168.64.1',2,15,44123,NULL,'Get volumes','clc93snar00007kiypalxeeen',''),('clc93snfr01f17kiy0l5t26uu',1,'Admin',1672319405,'192.168.64.1',2,15,44122,NULL,'Get volume statistics','clc93snar00007kiypalxeeen',''),('clc93snfr01f27kiymhmxbdft',1,'Admin',1672319405,'192.168.64.1',2,15,43284,NULL,'System contact','clc93snar00007kiypalxeeen',''),('clc93snfr01f37kiy9bhsst8a',1,'Admin',1672319405,'192.168.64.1',2,15,43285,NULL,'System health','clc93snar00007kiypalxeeen',''),('clc93snfr01f47kiytpw9y5mg',1,'Admin',1672319405,'192.168.64.1',2,15,43286,NULL,'System information','clc93snar00007kiypalxeeen',''),('clc93snfr01f57kiy1qhobt70',1,'Admin',1672319405,'192.168.64.1',2,15,43287,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfr01f67kiyhi36fno8',1,'Admin',1672319405,'192.168.64.1',2,15,43288,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfr01f77kiyepnzrmtt',1,'Admin',1672319405,'192.168.64.1',2,15,43289,NULL,'Product ID','clc93snar00007kiypalxeeen',''),('clc93snfr01f87kiyqvx1mr63',1,'Admin',1672319405,'192.168.64.1',2,15,43290,NULL,'Vendor name','clc93snar00007kiypalxeeen',''),('clc93snfr01f97kiy93eghdpu',1,'Admin',1672319405,'192.168.64.1',2,15,43282,NULL,'HPE MSA: Service ping','clc93snar00007kiypalxeeen',''),('clc93snfr01fa7kiy1raoxc97',1,'Admin',1672319405,'192.168.64.1',2,15,43413,NULL,'HPE Primera: Disks total','clc93snar00007kiypalxeeen',''),('clc93snfr01fb7kiy4yp31a9t',1,'Admin',1672319405,'192.168.64.1',2,15,44154,NULL,'HPE Primera: Get CPGs data','clc93snar00007kiypalxeeen',''),('clc93snfr01fc7kiysjhvlr92',1,'Admin',1672319405,'192.168.64.1',2,15,43399,NULL,'HPE Primera: Get data','clc93snar00007kiypalxeeen',''),('clc93snfr01fd7kiy25iq9f90',1,'Admin',1672319405,'192.168.64.1',2,15,44148,NULL,'HPE Primera: Get disks data','clc93snar00007kiypalxeeen',''),('clc93snfr01fe7kiyggtcxjsz',1,'Admin',1672319405,'192.168.64.1',2,15,43406,NULL,'HPE Primera: Get errors','clc93snar00007kiypalxeeen',''),('clc93snfr01ff7kiywpvfnxyv',1,'Admin',1672319405,'192.168.64.1',2,15,44149,NULL,'HPE Primera: Get hosts data','clc93snar00007kiypalxeeen',''),('clc93snfr01fg7kiyt8dfft24',1,'Admin',1672319405,'192.168.64.1',2,15,44150,NULL,'HPE Primera: Get ports data','clc93snar00007kiypalxeeen',''),('clc93snfr01fh7kiyvydlo48i',1,'Admin',1672319405,'192.168.64.1',2,15,44151,NULL,'HPE Primera: Get system data','clc93snar00007kiypalxeeen',''),('clc93snfr01fi7kiyjh1ldwwx',1,'Admin',1672319405,'192.168.64.1',2,15,44152,NULL,'HPE Primera: Get tasks data','clc93snar00007kiypalxeeen',''),('clc93snfr01fj7kiyrz9gwbab',1,'Admin',1672319405,'192.168.64.1',2,15,44153,NULL,'HPE Primera: Get volumes data','clc93snar00007kiypalxeeen',''),('clc93snfr01fk7kiyw2d9bude',1,'Admin',1672319405,'192.168.64.1',2,15,43412,NULL,'HPE Primera: Capacity allocated','clc93snar00007kiypalxeeen',''),('clc93snfr01fl7kiyduygdpu8',1,'Admin',1672319405,'192.168.64.1',2,15,43411,NULL,'HPE Primera: Capacity failed','clc93snar00007kiypalxeeen',''),('clc93snfr01fm7kiyzatreh5p',1,'Admin',1672319405,'192.168.64.1',2,15,43410,NULL,'HPE Primera: Capacity free','clc93snar00007kiypalxeeen',''),('clc93snfr01fn7kiykpbt8i42',1,'Admin',1672319405,'192.168.64.1',2,15,43409,NULL,'HPE Primera: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snfr01fo7kiy6ktl3wvc',1,'Admin',1672319405,'192.168.64.1',2,15,43408,NULL,'HPE Primera: Chunklet size','clc93snar00007kiypalxeeen',''),('clc93snfr01fp7kiyzy749z5p',1,'Admin',1672319405,'192.168.64.1',2,15,43414,NULL,'HPE Primera: System contact','clc93snar00007kiypalxeeen',''),('clc93snfr01fq7kiyrvfw8qwn',1,'Admin',1672319405,'192.168.64.1',2,15,43407,NULL,'HPE Primera: System location','clc93snar00007kiypalxeeen',''),('clc93snfr01fr7kiy17fm2b7v',1,'Admin',1672319405,'192.168.64.1',2,15,43405,NULL,'HPE Primera: Model','clc93snar00007kiypalxeeen',''),('clc93snfr01fs7kiynfbw5ir6',1,'Admin',1672319405,'192.168.64.1',2,15,43404,NULL,'HPE Primera: System name','clc93snar00007kiypalxeeen',''),('clc93snfr01ft7kiyhqbdk31a',1,'Admin',1672319405,'192.168.64.1',2,15,43403,NULL,'HPE Primera: Nodes online','clc93snar00007kiypalxeeen',''),('clc93snfr01fu7kiyxioyzkmu',1,'Admin',1672319405,'192.168.64.1',2,15,43402,NULL,'HPE Primera: Nodes total','clc93snar00007kiypalxeeen',''),('clc93snfr01fv7kiyjuesino9',1,'Admin',1672319405,'192.168.64.1',2,15,43401,NULL,'HPE Primera: Serial number','clc93snar00007kiypalxeeen',''),('clc93snfr01fw7kiyzpf429aw',1,'Admin',1672319405,'192.168.64.1',2,15,43400,NULL,'HPE Primera: Software version number','clc93snar00007kiypalxeeen',''),('clc93snfr01fx7kiy17wwzsgt',1,'Admin',1672319405,'192.168.64.1',2,15,43398,NULL,'HPE Primera: Service ping','clc93snar00007kiypalxeeen',''),('clc93snfr01fy7kiyh9qwprba',1,'Admin',1672319405,'192.168.64.1',2,15,43901,NULL,'HPE Synergy: Get data','clc93snar00007kiypalxeeen',''),('clc93snfr01fz7kiyfjz2wic3',1,'Admin',1672319405,'192.168.64.1',2,15,44205,NULL,'HPE Synergy: Get datacenters data','clc93snar00007kiypalxeeen',''),('clc93snfr01g07kiygq57w3pf',1,'Admin',1672319405,'192.168.64.1',2,15,43903,NULL,'HPE Synergy: Get enclosures data','clc93snar00007kiypalxeeen',''),('clc93snfr01g17kiyy1qo5opt',1,'Admin',1672319405,'192.168.64.1',2,15,43904,NULL,'HPE Synergy: Get errors','clc93snar00007kiypalxeeen',''),('clc93snfr01g27kiy3yuhw4tk',1,'Admin',1672319405,'192.168.64.1',2,15,44201,NULL,'HPE Synergy: Get ethernet networks data','clc93snar00007kiypalxeeen',''),('clc93snfr01g37kiysgfvgxgq',1,'Admin',1672319405,'192.168.64.1',2,15,44202,NULL,'HPE Synergy: Get fabrics data','clc93snar00007kiypalxeeen',''),('clc93snfr01g47kiy7wren4cn',1,'Admin',1672319405,'192.168.64.1',2,15,44203,NULL,'HPE Synergy: Get FC networks data','clc93snar00007kiypalxeeen',''),('clc93snfr01g57kiy771dz16r',1,'Admin',1672319405,'192.168.64.1',2,15,44204,NULL,'HPE Synergy: Get hypervisor managers data','clc93snar00007kiypalxeeen',''),('clc93snfr01g67kiyaewjbdpt',1,'Admin',1672319405,'192.168.64.1',2,15,44213,NULL,'HPE Synergy: Get interconnects data','clc93snar00007kiypalxeeen',''),('clc93snfr01g77kiym4pdw4u8',1,'Admin',1672319405,'192.168.64.1',2,15,44206,NULL,'HPE Synergy: Get logical enclosures data','clc93snar00007kiypalxeeen',''),('clc93snfr01g87kiyzsh9hhym',1,'Admin',1672319405,'192.168.64.1',2,15,44207,NULL,'HPE Synergy: Get racks data','clc93snar00007kiypalxeeen',''),('clc93snfr01g97kiynvvkvw4d',1,'Admin',1672319405,'192.168.64.1',2,15,44208,NULL,'HPE Synergy: Get server hardware data','clc93snar00007kiypalxeeen',''),('clc93snfr01ga7kiybals0695',1,'Admin',1672319405,'192.168.64.1',2,15,44209,NULL,'HPE Synergy: Get storage pools data','clc93snar00007kiypalxeeen',''),('clc93snfr01gb7kiyytr5ksk2',1,'Admin',1672319405,'192.168.64.1',2,15,44210,NULL,'HPE Synergy: Get storage systems data','clc93snar00007kiypalxeeen',''),('clc93snfr01gc7kiyx0rke0f2',1,'Admin',1672319405,'192.168.64.1',2,15,44211,NULL,'HPE Synergy: Get storage volumes data','clc93snar00007kiypalxeeen',''),('clc93snfr01gd7kiyyb398ev1',1,'Admin',1672319405,'192.168.64.1',2,15,44212,NULL,'HPE Synergy: Get uplink sets data','clc93snar00007kiypalxeeen',''),('clc93snfr01ge7kiyojslgm2v',1,'Admin',1672319405,'192.168.64.1',2,15,43902,NULL,'HPE Synergy: Service ping','clc93snar00007kiypalxeeen',''),('clc93sngv01gf7kiyjnxfadk4',1,'Admin',1672319405,'192.168.64.1',2,30,10001,NULL,'Linux by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01gg7kiy0sdcbx6r',1,'Admin',1672319405,'192.168.64.1',2,30,10094,NULL,'HTTP Service','clc93snar00007kiypalxeeen',''),('clc93sngv01gh7kiywffqxcm8',1,'Admin',1672319405,'192.168.64.1',2,30,10095,NULL,'HTTPS Service','clc93snar00007kiypalxeeen',''),('clc93sngv01gi7kiy40brler4',1,'Admin',1672319405,'192.168.64.1',2,30,10096,NULL,'IMAP Service','clc93snar00007kiypalxeeen',''),('clc93sngv01gj7kiy0mg6ezeo',1,'Admin',1672319405,'192.168.64.1',2,30,10097,NULL,'LDAP Service','clc93snar00007kiypalxeeen',''),('clc93sngv01gk7kiydpdyvr35',1,'Admin',1672319405,'192.168.64.1',2,30,10171,NULL,'Intel SR1530 IPMI','clc93snar00007kiypalxeeen',''),('clc93sngv01gl7kiyv49yq2lw',1,'Admin',1672319405,'192.168.64.1',2,30,10172,NULL,'Intel SR1630 IPMI','clc93snar00007kiypalxeeen',''),('clc93sngv01gm7kiyyjluvh03',1,'Admin',1672319405,'192.168.64.1',2,30,10186,NULL,'ICMP Ping','clc93snar00007kiypalxeeen',''),('clc93sngv01gn7kiy22pyyq67',1,'Admin',1672319405,'192.168.64.1',2,30,10188,NULL,'Interfaces Simple by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01go7kiywj0hlzgl',1,'Admin',1672319405,'192.168.64.1',2,30,10190,NULL,'Interfaces by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gp7kiy9kvwx1mr',1,'Admin',1672319405,'192.168.64.1',2,30,10192,NULL,'Interfaces Windows by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gq7kiysaw6gfmt',1,'Admin',1672319405,'192.168.64.1',2,30,10229,NULL,'Huawei VRP by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gr7kiysks98qvu',1,'Admin',1672319405,'192.168.64.1',2,30,10230,NULL,'Intel_Qlogic Infiniband by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gs7kiyzd3gokga',1,'Admin',1672319405,'192.168.64.1',2,30,10231,NULL,'Juniper by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gt7kiy2t7den4b',1,'Admin',1672319405,'192.168.64.1',2,30,10248,NULL,'Linux by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gu7kiyzzhnh27h',1,'Admin',1672319405,'192.168.64.1',2,30,10250,NULL,'HP Enterprise Switch by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gv7kiyct53d9qn',1,'Admin',1672319405,'192.168.64.1',2,30,10256,NULL,'HP iLO by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gw7kiy19thrj9y',1,'Admin',1672319405,'192.168.64.1',2,30,10258,NULL,'IBM IMM by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gx7kiy852tpkg3',1,'Admin',1672319405,'192.168.64.1',2,30,10269,NULL,'Linux block devices by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gy7kiyt40cnxsd',1,'Admin',1672319405,'192.168.64.1',2,30,10270,NULL,'Linux CPU by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gz7kiyp6q5p8ej',1,'Admin',1672319405,'192.168.64.1',2,30,10271,NULL,'Linux filesystems by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01h07kiyycum5wdz',1,'Admin',1672319405,'192.168.64.1',2,30,10272,NULL,'Linux CPU by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h17kiy2d15htpc',1,'Admin',1672319405,'192.168.64.1',2,30,10273,NULL,'Linux filesystems by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h27kiy2kjz6yzo',1,'Admin',1672319405,'192.168.64.1',2,30,10275,NULL,'Linux block devices by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h37kiy8jdu7kmb',1,'Admin',1672319405,'192.168.64.1',2,30,10277,NULL,'Linux generic by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h47kiyxrk46zl6',1,'Admin',1672319405,'192.168.64.1',2,30,10285,NULL,'Linux by Prom','clc93snar00007kiypalxeeen',''),('clc93sngv01h57kiy8y0vxv50',1,'Admin',1672319405,'192.168.64.1',2,30,10325,NULL,'IIS by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h67kiyq0xwpc04',1,'Admin',1672319405,'192.168.64.1',2,30,10326,NULL,'IIS by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01h77kiy3dtdqtnm',1,'Admin',1672319405,'192.168.64.1',2,30,10337,NULL,'Linux block devices by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01h87kiydv7vku6l',1,'Admin',1672319405,'192.168.64.1',2,30,10338,NULL,'Linux CPU by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01h97kiyt9xtahib',1,'Admin',1672319405,'192.168.64.1',2,30,10339,NULL,'Linux filesystems by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01ha7kiya1tob7qk',1,'Admin',1672319405,'192.168.64.1',2,30,10343,NULL,'Linux by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01hb7kiyuewlr1kq',1,'Admin',1672319405,'192.168.64.1',2,30,10379,NULL,'Jenkins by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hc7kiyu0f9than',1,'Admin',1672319405,'192.168.64.1',2,30,10381,NULL,'Ignite by JMX','clc93snar00007kiypalxeeen',''),('clc93sngv01hd7kiy0a73eczp',1,'Admin',1672319405,'192.168.64.1',2,30,10385,NULL,'Huawei OceanStor 5300 V5 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01he7kiy0z1y3ljb',1,'Admin',1672319405,'192.168.64.1',2,30,10443,NULL,'HPE ProLiant BL460 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01hf7kiyztvbmj1l',1,'Admin',1672319405,'192.168.64.1',2,30,10444,NULL,'HPE ProLiant BL920 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01hg7kiyvg4qn01w',1,'Admin',1672319405,'192.168.64.1',2,30,10445,NULL,'HPE ProLiant DL360 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01hh7kiygfupxa11',1,'Admin',1672319405,'192.168.64.1',2,30,10446,NULL,'HPE ProLiant DL380 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01hi7kiytk27anrf',1,'Admin',1672319405,'192.168.64.1',2,30,10448,NULL,'InfluxDB by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hj7kiyw7m3bekf',1,'Admin',1672319405,'192.168.64.1',2,30,10504,NULL,'Kubernetes API server by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hk7kiyao42xr4c',1,'Admin',1672319405,'192.168.64.1',2,30,10505,NULL,'Kubernetes Controller manager by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hl7kiyfa97wrxd',1,'Admin',1672319405,'192.168.64.1',2,30,10506,NULL,'Kubernetes Kubelet by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hm7kiylhujs6zq',1,'Admin',1672319405,'192.168.64.1',2,30,10507,NULL,'Kubernetes nodes by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hn7kiy7zhlap4q',1,'Admin',1672319405,'192.168.64.1',2,30,10509,NULL,'Kubernetes Scheduler by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01ho7kiypi2uwp7i',1,'Admin',1672319405,'192.168.64.1',2,30,10510,NULL,'Kubernetes cluster state by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hp7kiy50emjn77',1,'Admin',1672319405,'192.168.64.1',2,30,10524,NULL,'HPE MSA 2040 Storage by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hq7kiy20a9jymc',1,'Admin',1672319405,'192.168.64.1',2,30,10525,NULL,'HPE MSA 2060 Storage by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hr7kiymjwo0ec0',1,'Admin',1672319405,'192.168.64.1',2,30,10526,NULL,'HPE Primera by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hs7kiykmwq7dvg',1,'Admin',1672319405,'192.168.64.1',2,30,10534,NULL,'HPE Synergy by HTTP','clc93snar00007kiypalxeeen',''),('clc93sqcu00014xiycfmr7aim',1,'Admin',1672319409,'192.168.64.1',2,36,23068,NULL,'{#FSNAME}: Free disk space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00024xiyskhev0j6',1,'Admin',1672319409,'192.168.64.1',2,36,23069,NULL,'{#FSNAME}: Free inodes, %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00034xiyq09xry7z',1,'Admin',1672319409,'192.168.64.1',2,36,23070,NULL,'{#FSNAME}: Total disk space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00044xiyueu6ytzr',1,'Admin',1672319409,'192.168.64.1',2,36,23071,NULL,'{#FSNAME}: Used disk space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00054xiyq80myiub',1,'Admin',1672319409,'192.168.64.1',2,36,23072,NULL,'{#FSNAME}: Free disk space, %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00064xiy8e7mralw',1,'Admin',1672319409,'192.168.64.1',2,36,44446,NULL,'{#FSNAME}: Get filesystem data','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00074xiymkk6z70l',1,'Admin',1672319409,'192.168.64.1',2,36,27904,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00084xiy73queh7e',1,'Admin',1672319409,'192.168.64.1',2,36,27905,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00094xiytdlmi53d',1,'Admin',1672319409,'192.168.64.1',2,36,27906,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000a4xiyzubk6kgp',1,'Admin',1672319409,'192.168.64.1',2,36,27907,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000b4xiypflhus6a',1,'Admin',1672319409,'192.168.64.1',2,36,27908,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000c4xiyr7wvaadf',1,'Admin',1672319409,'192.168.64.1',2,36,28200,NULL,'{#SENSOR_INFO}: Temperature status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000d4xiyyxg22y3h',1,'Admin',1672319409,'192.168.64.1',2,36,28201,NULL,'{#SENSOR_INFO}: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000e4xiymyy0c9zj',1,'Admin',1672319409,'192.168.64.1',2,36,28202,NULL,'{#SENSOR_INFO}: Fan status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000f4xiyssn2ho7c',1,'Admin',1672319409,'192.168.64.1',2,36,28203,NULL,'{#SENSOR_INFO}: Fan speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000g4xiy0ass577x',1,'Admin',1672319409,'192.168.64.1',2,36,28204,NULL,'{#ENT_NAME}: Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000h4xiyfyqe9au3',1,'Admin',1672319409,'192.168.64.1',2,36,28205,NULL,'{#ENT_NAME}: Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000i4xiyp6y302n8',1,'Admin',1672319409,'192.168.64.1',2,36,28206,NULL,'{#ENT_NAME}: Power supply status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000j4xiygvkohcnz',1,'Admin',1672319409,'192.168.64.1',2,36,29216,NULL,'Interface {#IFNAME}: Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000k4xiyt1dgeieq',1,'Admin',1672319409,'192.168.64.1',2,36,29217,NULL,'Interface {#IFNAME}: Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000l4xiy9z21s4ya',1,'Admin',1672319409,'192.168.64.1',2,36,29218,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000m4xiy1i9et7qq',1,'Admin',1672319409,'192.168.64.1',2,36,29219,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000n4xiydym7q2jj',1,'Admin',1672319409,'192.168.64.1',2,36,29220,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000o4xiyqlyp68mg',1,'Admin',1672319409,'192.168.64.1',2,36,29221,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000p4xiyuz7rl478',1,'Admin',1672319409,'192.168.64.1',2,36,29222,NULL,'Interface {#IFNAME}: Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000q4xiy43oiuqjm',1,'Admin',1672319409,'192.168.64.1',2,36,29223,NULL,'Interface {#IFNAME}: Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000r4xiy9270p3pw',1,'Admin',1672319409,'192.168.64.1',2,36,42680,NULL,'Interface {#IFNAME}: Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000s4xiy9lg8lnhn',1,'Admin',1672319409,'192.168.64.1',2,36,31560,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000t4xiyuh6yoaqa',1,'Admin',1672319409,'192.168.64.1',2,36,31561,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000u4xiyo93ugt0b',1,'Admin',1672319409,'192.168.64.1',2,36,31562,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000v4xiyt3645v52',1,'Admin',1672319409,'192.168.64.1',2,36,31563,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000w4xiyzhsbqj3d',1,'Admin',1672319409,'192.168.64.1',2,36,31564,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000x4xiysgebedi2',1,'Admin',1672319409,'192.168.64.1',2,36,31565,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000y4xiy35g000lm',1,'Admin',1672319409,'192.168.64.1',2,36,31566,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000z4xiy612rfqme',1,'Admin',1672319409,'192.168.64.1',2,36,31567,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00104xiyloes6j5h',1,'Admin',1672319409,'192.168.64.1',2,36,31568,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00114xiy0rr5w0nt',1,'Admin',1672319409,'192.168.64.1',2,36,31569,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00124xiy0p9s1p8i',1,'Admin',1672319409,'192.168.64.1',2,36,31909,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00134xiy0rye2c42',1,'Admin',1672319409,'192.168.64.1',2,36,31910,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00144xiy02yid74x',1,'Admin',1672319409,'192.168.64.1',2,36,31911,NULL,'Interface {#IFNAME}: Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00154xiydzjk3usd',1,'Admin',1672319409,'192.168.64.1',2,36,31912,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00164xiytzjwyqqg',1,'Admin',1672319409,'192.168.64.1',2,36,31913,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00174xiy77ov2lim',1,'Admin',1672319409,'192.168.64.1',2,36,31914,NULL,'Interface {#IFNAME}: Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00184xiyanbamwr4',1,'Admin',1672319409,'192.168.64.1',2,36,31915,NULL,'Interface {#IFNAME}: Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00194xiyr1u7lyg8',1,'Admin',1672319409,'192.168.64.1',2,36,31916,NULL,'Interface {#IFNAME}: Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001a4xiynwiect5o',1,'Admin',1672319409,'192.168.64.1',2,36,42683,NULL,'Interface {#IFNAME}: Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001b4xiym5vzfub4',1,'Admin',1672319409,'192.168.64.1',2,36,32436,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001c4xiy9n34njrc',1,'Admin',1672319409,'192.168.64.1',2,36,32437,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001d4xiyc9jqmwdt',1,'Admin',1672319409,'192.168.64.1',2,36,32438,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001e4xiya157hbbp',1,'Admin',1672319409,'192.168.64.1',2,36,32439,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001f4xiyolfuveeu',1,'Admin',1672319409,'192.168.64.1',2,36,32528,NULL,'Active Manager [{#INSTANCE}]: Database copy role','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001g4xiybxkr34d1',1,'Admin',1672319409,'192.168.64.1',2,36,32529,NULL,'Information Store [{#INSTANCE}]: Page faults per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001h4xiyguba4s5q',1,'Admin',1672319409,'192.168.64.1',2,36,32530,NULL,'Information Store [{#INSTANCE}]: Log records stalled','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001i4xiycqnwd0my',1,'Admin',1672319409,'192.168.64.1',2,36,32531,NULL,'Information Store [{#INSTANCE}]: Log threads waiting','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001j4xiypbfx438r',1,'Admin',1672319409,'192.168.64.1',2,36,32532,NULL,'Database Counters [{#INSTANCE}]: Active database read operations per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001k4xiykmifc58d',1,'Admin',1672319409,'192.168.64.1',2,36,32533,NULL,'Database Counters [{#INSTANCE}]: Active database read operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001l4xiynpoobijh',1,'Admin',1672319409,'192.168.64.1',2,36,32534,NULL,'Database Counters [{#INSTANCE}]: Passive database read operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001m4xiy1t7eso59',1,'Admin',1672319409,'192.168.64.1',2,36,32535,NULL,'Database Counters [{#INSTANCE}]: Active database write operations per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001n4xiynquaiqgx',1,'Admin',1672319409,'192.168.64.1',2,36,32536,NULL,'Database Counters [{#INSTANCE}]: Active database write operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001o4xiyrazvkzo2',1,'Admin',1672319409,'192.168.64.1',2,36,32537,NULL,'Database Counters [{#INSTANCE}]: Passive database write operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001p4xiygsclvdh2',1,'Admin',1672319409,'192.168.64.1',2,36,32538,NULL,'Information Store [{#INSTANCE}]: Active mailboxes count','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001q4xiy6loqzhkx',1,'Admin',1672319409,'192.168.64.1',2,36,32539,NULL,'Information Store [{#INSTANCE}]: Database state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001r4xiynjndyy9s',1,'Admin',1672319409,'192.168.64.1',2,36,32540,NULL,'Information Store [{#INSTANCE}]: RPC requests latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001s4xiyxu3ycjv9',1,'Admin',1672319409,'192.168.64.1',2,36,32541,NULL,'Information Store [{#INSTANCE}]: RPC requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001t4xiyxh4hm9in',1,'Admin',1672319409,'192.168.64.1',2,36,32542,NULL,'Information Store [{#INSTANCE}]: RPC requests total','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001u4xiy9tkomj8z',1,'Admin',1672319409,'192.168.64.1',2,36,32543,NULL,'Domain Controller [{#INSTANCE}]: Read time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001v4xiyq66q0ack',1,'Admin',1672319409,'192.168.64.1',2,36,32544,NULL,'Domain Controller [{#INSTANCE}]: Search time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001w4xiygc1zmn6p',1,'Admin',1672319409,'192.168.64.1',2,36,32545,NULL,'Web Service [{#INSTANCE}]: Current connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001x4xiyhmmy6rss',1,'Admin',1672319409,'192.168.64.1',2,36,32558,NULL,'Active Manager [{#INSTANCE}]: Database copy role','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001y4xiy3etl5mdb',1,'Admin',1672319409,'192.168.64.1',2,36,32559,NULL,'Information Store [{#INSTANCE}]: Page faults per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001z4xiy489tuank',1,'Admin',1672319409,'192.168.64.1',2,36,32560,NULL,'Information Store [{#INSTANCE}]: Log records stalled','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00204xiybnxsa0cp',1,'Admin',1672319409,'192.168.64.1',2,36,32561,NULL,'Information Store [{#INSTANCE}]: Log threads waiting','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00214xiyip6555fe',1,'Admin',1672319409,'192.168.64.1',2,36,32562,NULL,'Database Counters [{#INSTANCE}]: Active database read operations per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00224xiyw9fvgbmu',1,'Admin',1672319409,'192.168.64.1',2,36,32563,NULL,'Database Counters [{#INSTANCE}]: Active database read operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00234xiybnhwmsxi',1,'Admin',1672319409,'192.168.64.1',2,36,32564,NULL,'Database Counters [{#INSTANCE}]: Passive database read operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00244xiyxcoh5l9n',1,'Admin',1672319409,'192.168.64.1',2,36,32565,NULL,'Database Counters [{#INSTANCE}]: Active database write operations per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00254xiyv6002sot',1,'Admin',1672319409,'192.168.64.1',2,36,32566,NULL,'Database Counters [{#INSTANCE}]: Active database write operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00264xiyqa90hdo4',1,'Admin',1672319409,'192.168.64.1',2,36,32567,NULL,'Database Counters [{#INSTANCE}]: Passive database write operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00274xiyeb38eewx',1,'Admin',1672319409,'192.168.64.1',2,36,32568,NULL,'Information Store [{#INSTANCE}]: Active mailboxes count','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00284xiyp761qisc',1,'Admin',1672319409,'192.168.64.1',2,36,32569,NULL,'Information Store [{#INSTANCE}]: Database state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00294xiyfd9pwrrr',1,'Admin',1672319409,'192.168.64.1',2,36,32570,NULL,'Information Store [{#INSTANCE}]: RPC requests latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002a4xiyp5tg5vkj',1,'Admin',1672319409,'192.168.64.1',2,36,32571,NULL,'Information Store [{#INSTANCE}]: RPC requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002b4xiyyyo8752s',1,'Admin',1672319409,'192.168.64.1',2,36,32572,NULL,'Information Store [{#INSTANCE}]: RPC requests total','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002c4xiy29oer3ql',1,'Admin',1672319409,'192.168.64.1',2,36,32573,NULL,'Domain Controller [{#INSTANCE}]: Read time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002d4xiyzxx0cg7c',1,'Admin',1672319409,'192.168.64.1',2,36,32574,NULL,'Domain Controller [{#INSTANCE}]: Search time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002e4xiy1d6sfc1c',1,'Admin',1672319409,'192.168.64.1',2,36,32575,NULL,'Web Service [{#INSTANCE}]: Current connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002f4xiyqwhmfe24',1,'Admin',1672319409,'192.168.64.1',2,36,33635,NULL,'Sharepoint: Created ({#SHAREPOINT.LLD.FULL_PATH})','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002g4xiyn1ssix9t',1,'Admin',1672319409,'192.168.64.1',2,36,33636,NULL,'Sharepoint: Modified ({#SHAREPOINT.LLD.FULL_PATH})','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002h4xiyvxq6gu18',1,'Admin',1672319409,'192.168.64.1',2,36,33637,NULL,'Sharepoint: Size ({#SHAREPOINT.LLD.FULL_PATH})','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002i4xiyb0v2hxrc',1,'Admin',1672319409,'192.168.64.1',2,36,34164,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002j4xiyz3zacnvi',1,'Admin',1672319409,'192.168.64.1',2,36,34165,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002k4xiymcw744pq',1,'Admin',1672319409,'192.168.64.1',2,36,34166,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002l4xiyy7lc2ib2',1,'Admin',1672319409,'192.168.64.1',2,36,34167,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002m4xiyx6mqwbpb',1,'Admin',1672319409,'192.168.64.1',2,36,34168,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002n4xiy7nsv70ze',1,'Admin',1672319409,'192.168.64.1',2,36,34169,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002o4xiym0t9lxil',1,'Admin',1672319409,'192.168.64.1',2,36,34170,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002p4xiypcbwq2f3',1,'Admin',1672319409,'192.168.64.1',2,36,34171,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002q4xiy6uyjl9fj',1,'Admin',1672319409,'192.168.64.1',2,36,34172,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002r4xiynjpjpicj',1,'Admin',1672319409,'192.168.64.1',2,36,34173,NULL,'{#FSNAME}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002s4xiyzhf5z3a6',1,'Admin',1672319409,'192.168.64.1',2,36,34174,NULL,'{#FSNAME}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002t4xiy79ozt46m',1,'Admin',1672319409,'192.168.64.1',2,36,34175,NULL,'{#FSNAME}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002u4xiyf209v1kv',1,'Admin',1672319409,'192.168.64.1',2,36,34176,NULL,'{#MEMNAME}: Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002v4xiyrnwzth7l',1,'Admin',1672319409,'192.168.64.1',2,36,34177,NULL,'{#MEMNAME}: Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002w4xiycivaz49n',1,'Admin',1672319409,'192.168.64.1',2,36,34178,NULL,'{#MEMNAME}: Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002x4xiy1ho0syhc',1,'Admin',1672319409,'192.168.64.1',2,36,36861,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002y4xiykadi6inr',1,'Admin',1672319409,'192.168.64.1',2,36,36862,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002z4xiyzavsb96h',1,'Admin',1672319409,'192.168.64.1',2,36,36863,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00304xiyd6k1gjkc',1,'Admin',1672319409,'192.168.64.1',2,36,36864,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00314xiyy1coxht1',1,'Admin',1672319409,'192.168.64.1',2,36,36865,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00324xiydd6lj9ms',1,'Admin',1672319409,'192.168.64.1',2,36,36866,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00334xiy3qpqnwqs',1,'Admin',1672319409,'192.168.64.1',2,36,36867,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00344xiyi572npyf',1,'Admin',1672319409,'192.168.64.1',2,36,36868,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00354xiyfypguuyx',1,'Admin',1672319409,'192.168.64.1',2,36,36869,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00364xiy5p0j80dr',1,'Admin',1672319409,'192.168.64.1',2,36,36870,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00374xiyuj10e3ll',1,'Admin',1672319409,'192.168.64.1',2,36,36871,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00384xiy95ag4d2o',1,'Admin',1672319409,'192.168.64.1',2,36,36872,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00394xiydoq86688',1,'Admin',1672319409,'192.168.64.1',2,36,36873,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003a4xiyee24cyu1',1,'Admin',1672319409,'192.168.64.1',2,36,36874,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003b4xiyh7zv1zc6',1,'Admin',1672319409,'192.168.64.1',2,36,36875,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003c4xiyitbgmsta',1,'Admin',1672319409,'192.168.64.1',2,36,36876,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003d4xiymqdfzin9',1,'Admin',1672319409,'192.168.64.1',2,36,36877,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003e4xiyk7wg34k0',1,'Admin',1672319409,'192.168.64.1',2,36,36878,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003f4xiychaykpwy',1,'Admin',1672319409,'192.168.64.1',2,36,36879,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003g4xiyl38c9eg2',1,'Admin',1672319409,'192.168.64.1',2,36,36915,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003h4xiys2ddqlc8',1,'Admin',1672319409,'192.168.64.1',2,36,36916,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003i4xiyiegw5va0',1,'Admin',1672319409,'192.168.64.1',2,36,36917,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003j4xiy5zas31mz',1,'Admin',1672319409,'192.168.64.1',2,36,36918,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003k4xiy79iukbh5',1,'Admin',1672319409,'192.168.64.1',2,36,36919,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003l4xiyp6i780iz',1,'Admin',1672319409,'192.168.64.1',2,36,36920,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003m4xiyncwmoghw',1,'Admin',1672319409,'192.168.64.1',2,36,36921,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003n4xiyvo956qq9',1,'Admin',1672319409,'192.168.64.1',2,36,36922,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003o4xiyfh8e3omw',1,'Admin',1672319409,'192.168.64.1',2,36,36923,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003p4xiyt7jou0yr',1,'Admin',1672319409,'192.168.64.1',2,36,36924,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003q4xiyps0qd4hg',1,'Admin',1672319409,'192.168.64.1',2,36,36925,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003r4xiyx18mtxq1',1,'Admin',1672319409,'192.168.64.1',2,36,36926,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003s4xiywd6eliyb',1,'Admin',1672319409,'192.168.64.1',2,36,36927,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003t4xiyrcwaczis',1,'Admin',1672319409,'192.168.64.1',2,36,36928,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003u4xiylxxegllq',1,'Admin',1672319409,'192.168.64.1',2,36,36929,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003v4xiymnjryrpt',1,'Admin',1672319409,'192.168.64.1',2,36,36930,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003w4xiy3juteshb',1,'Admin',1672319409,'192.168.64.1',2,36,36931,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003x4xiye35uri89',1,'Admin',1672319409,'192.168.64.1',2,36,36932,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003y4xiy3w0i8e3d',1,'Admin',1672319409,'192.168.64.1',2,36,36933,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003z4xiyexzd77qq',1,'Admin',1672319409,'192.168.64.1',2,36,36969,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00404xiyp0ds75gl',1,'Admin',1672319409,'192.168.64.1',2,36,36970,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00414xiyr3e1w0dn',1,'Admin',1672319409,'192.168.64.1',2,36,36971,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00424xiyqbrsiv8z',1,'Admin',1672319409,'192.168.64.1',2,36,36972,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00434xiyoyewh0x8',1,'Admin',1672319409,'192.168.64.1',2,36,36973,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00444xiyfje62hzt',1,'Admin',1672319409,'192.168.64.1',2,36,36974,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00454xiyqflt013h',1,'Admin',1672319409,'192.168.64.1',2,36,36975,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00464xiy2lu0886o',1,'Admin',1672319409,'192.168.64.1',2,36,36976,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00474xiyx47psxcd',1,'Admin',1672319409,'192.168.64.1',2,36,36977,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00484xiy05cl7646',1,'Admin',1672319409,'192.168.64.1',2,36,36978,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00494xiygzql10a4',1,'Admin',1672319409,'192.168.64.1',2,36,36979,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004a4xiyt1g2rlh1',1,'Admin',1672319409,'192.168.64.1',2,36,36980,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004b4xiybfqrcpaf',1,'Admin',1672319409,'192.168.64.1',2,36,36981,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004c4xiysb8sgnab',1,'Admin',1672319409,'192.168.64.1',2,36,36982,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004d4xiy7frdny76',1,'Admin',1672319409,'192.168.64.1',2,36,36983,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004e4xiyx5pl910f',1,'Admin',1672319409,'192.168.64.1',2,36,36984,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004f4xiyht1rg7mj',1,'Admin',1672319409,'192.168.64.1',2,36,36985,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004g4xiyvz34t9u9',1,'Admin',1672319409,'192.168.64.1',2,36,36986,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004h4xiyceuhmk54',1,'Admin',1672319409,'192.168.64.1',2,36,36987,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004i4xiyfvtueihq',1,'Admin',1672319409,'192.168.64.1',2,36,37023,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004j4xiyhph0gbzj',1,'Admin',1672319409,'192.168.64.1',2,36,37024,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004k4xiybgi223x4',1,'Admin',1672319409,'192.168.64.1',2,36,37025,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004l4xiy25hom3pe',1,'Admin',1672319409,'192.168.64.1',2,36,37026,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004m4xiyp3go3pdy',1,'Admin',1672319409,'192.168.64.1',2,36,37027,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004n4xiyb41unizt',1,'Admin',1672319409,'192.168.64.1',2,36,37028,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004o4xiyr5s807ew',1,'Admin',1672319409,'192.168.64.1',2,36,37029,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004p4xiys729f37i',1,'Admin',1672319409,'192.168.64.1',2,36,37030,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004q4xiyjc2yvpew',1,'Admin',1672319409,'192.168.64.1',2,36,37031,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004r4xiyzchnpdk3',1,'Admin',1672319409,'192.168.64.1',2,36,37032,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004s4xiyayajlv7j',1,'Admin',1672319409,'192.168.64.1',2,36,37033,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004t4xiyc5uu51fw',1,'Admin',1672319409,'192.168.64.1',2,36,37034,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004u4xiyihtxq199',1,'Admin',1672319409,'192.168.64.1',2,36,37035,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004v4xiytw6c7rau',1,'Admin',1672319409,'192.168.64.1',2,36,37036,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004w4xiyid31hc4d',1,'Admin',1672319409,'192.168.64.1',2,36,37037,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004x4xiym2k3uobk',1,'Admin',1672319409,'192.168.64.1',2,36,37038,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004y4xiyjuir5qcj',1,'Admin',1672319409,'192.168.64.1',2,36,37039,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004z4xiy1aiajybo',1,'Admin',1672319409,'192.168.64.1',2,36,37040,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00504xiycuyq1kd9',1,'Admin',1672319409,'192.168.64.1',2,36,37041,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00514xiy6xc8v24r',1,'Admin',1672319409,'192.168.64.1',2,36,37077,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00524xiyeu6gf4jk',1,'Admin',1672319409,'192.168.64.1',2,36,37078,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00534xiy962hv0ml',1,'Admin',1672319409,'192.168.64.1',2,36,37079,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00544xiybo151dd9',1,'Admin',1672319409,'192.168.64.1',2,36,37080,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00554xiyati6l0p6',1,'Admin',1672319409,'192.168.64.1',2,36,37081,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00564xiy22um5q3l',1,'Admin',1672319409,'192.168.64.1',2,36,37082,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00574xiy02ruh7ju',1,'Admin',1672319409,'192.168.64.1',2,36,37083,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00584xiyvxxlsgwu',1,'Admin',1672319409,'192.168.64.1',2,36,37084,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00594xiyadkxkf3f',1,'Admin',1672319409,'192.168.64.1',2,36,37085,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005a4xiy10br4b9a',1,'Admin',1672319409,'192.168.64.1',2,36,37086,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005b4xiyy4iz1qbs',1,'Admin',1672319409,'192.168.64.1',2,36,37087,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005c4xiyxo1t1gah',1,'Admin',1672319409,'192.168.64.1',2,36,37088,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005d4xiyq6qok0tf',1,'Admin',1672319409,'192.168.64.1',2,36,37089,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005e4xiyznzkkksg',1,'Admin',1672319409,'192.168.64.1',2,36,37090,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005f4xiytwwmu4mu',1,'Admin',1672319409,'192.168.64.1',2,36,37091,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005g4xiygegcri4b',1,'Admin',1672319409,'192.168.64.1',2,36,37092,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005h4xiyy3iugx7q',1,'Admin',1672319409,'192.168.64.1',2,36,37093,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005i4xiy5vafs49d',1,'Admin',1672319409,'192.168.64.1',2,36,37094,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005j4xiye7de7q7m',1,'Admin',1672319409,'192.168.64.1',2,36,37095,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005k4xiyes174exe',1,'Admin',1672319409,'192.168.64.1',2,36,37131,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005l4xiyuy7k0zwf',1,'Admin',1672319409,'192.168.64.1',2,36,37132,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005m4xiynhujhi10',1,'Admin',1672319409,'192.168.64.1',2,36,37133,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005n4xiytvzq490f',1,'Admin',1672319409,'192.168.64.1',2,36,37134,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005o4xiydlbpuqx2',1,'Admin',1672319409,'192.168.64.1',2,36,37135,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005p4xiyjzy1xm0t',1,'Admin',1672319409,'192.168.64.1',2,36,37136,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005q4xiyb5tc5z5j',1,'Admin',1672319409,'192.168.64.1',2,36,37137,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005r4xiy20szgsor',1,'Admin',1672319409,'192.168.64.1',2,36,37138,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005s4xiybzan8bw9',1,'Admin',1672319409,'192.168.64.1',2,36,37139,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005t4xiyf5z20hex',1,'Admin',1672319409,'192.168.64.1',2,36,37140,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005u4xiyzcb3cilj',1,'Admin',1672319409,'192.168.64.1',2,36,37141,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005v4xiyg57ok3yn',1,'Admin',1672319409,'192.168.64.1',2,36,37142,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005w4xiy3632llqg',1,'Admin',1672319409,'192.168.64.1',2,36,37143,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005x4xiyawb953ch',1,'Admin',1672319409,'192.168.64.1',2,36,37144,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005y4xiysrizk5we',1,'Admin',1672319409,'192.168.64.1',2,36,37145,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005z4xiysl4lt03a',1,'Admin',1672319409,'192.168.64.1',2,36,37146,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00604xiy25e4hogo',1,'Admin',1672319409,'192.168.64.1',2,36,37147,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00614xiy3mlktm6n',1,'Admin',1672319409,'192.168.64.1',2,36,37148,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00624xiyff5at3gp',1,'Admin',1672319409,'192.168.64.1',2,36,37149,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00634xiyv2i655bn',1,'Admin',1672319409,'192.168.64.1',2,36,37185,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00644xiypmv6c7uk',1,'Admin',1672319409,'192.168.64.1',2,36,37186,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00654xiyqg7ofdfk',1,'Admin',1672319409,'192.168.64.1',2,36,37187,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00664xiyus1vc8ub',1,'Admin',1672319409,'192.168.64.1',2,36,37188,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00674xiyxdybj19f',1,'Admin',1672319409,'192.168.64.1',2,36,37189,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00684xiywgtelmej',1,'Admin',1672319409,'192.168.64.1',2,36,37190,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00694xiy550on1zj',1,'Admin',1672319409,'192.168.64.1',2,36,37191,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006a4xiyoyim12vd',1,'Admin',1672319409,'192.168.64.1',2,36,37192,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006b4xiy8afk6ala',1,'Admin',1672319409,'192.168.64.1',2,36,37193,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006c4xiytcf99ece',1,'Admin',1672319409,'192.168.64.1',2,36,37194,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006d4xiyvr2xjs0b',1,'Admin',1672319409,'192.168.64.1',2,36,37195,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006e4xiy6vmbqfth',1,'Admin',1672319409,'192.168.64.1',2,36,37196,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006f4xiyb91fdfeb',1,'Admin',1672319409,'192.168.64.1',2,36,37197,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006g4xiyotaw0qh4',1,'Admin',1672319409,'192.168.64.1',2,36,37198,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006h4xiyerzacb4q',1,'Admin',1672319409,'192.168.64.1',2,36,37199,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006i4xiyevmnhavc',1,'Admin',1672319409,'192.168.64.1',2,36,37200,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006j4xiyl7mxyti5',1,'Admin',1672319409,'192.168.64.1',2,36,37201,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006k4xiy2lzcosl6',1,'Admin',1672319409,'192.168.64.1',2,36,37202,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006l4xiy3mtenrwj',1,'Admin',1672319409,'192.168.64.1',2,36,37203,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006m4xiyuomzh1jz',1,'Admin',1672319409,'192.168.64.1',2,36,37239,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006n4xiyazhfds52',1,'Admin',1672319409,'192.168.64.1',2,36,37240,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006o4xiyqr06x1xp',1,'Admin',1672319409,'192.168.64.1',2,36,37241,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006p4xiyim47eld2',1,'Admin',1672319409,'192.168.64.1',2,36,37242,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006q4xiyu0fjg77e',1,'Admin',1672319409,'192.168.64.1',2,36,37243,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006r4xiyps414olf',1,'Admin',1672319409,'192.168.64.1',2,36,37244,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006s4xiyb3r3n9kc',1,'Admin',1672319409,'192.168.64.1',2,36,37245,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006t4xiy5sg1fpa9',1,'Admin',1672319409,'192.168.64.1',2,36,37246,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006u4xiyv22i61sx',1,'Admin',1672319409,'192.168.64.1',2,36,37247,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006v4xiyi92ygs0g',1,'Admin',1672319409,'192.168.64.1',2,36,37248,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006w4xiy5jwg6dle',1,'Admin',1672319409,'192.168.64.1',2,36,37249,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006x4xiy1y1fa2vo',1,'Admin',1672319409,'192.168.64.1',2,36,37250,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006y4xiy97ljic7v',1,'Admin',1672319409,'192.168.64.1',2,36,37251,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006z4xiy0gdfss3w',1,'Admin',1672319409,'192.168.64.1',2,36,37252,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00704xiyu2fx4c9a',1,'Admin',1672319409,'192.168.64.1',2,36,37253,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00714xiy38uixpwu',1,'Admin',1672319409,'192.168.64.1',2,36,37254,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00724xiyduv3p4qw',1,'Admin',1672319409,'192.168.64.1',2,36,37255,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00734xiyrdtikwc3',1,'Admin',1672319409,'192.168.64.1',2,36,37256,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00744xiym85g4pmx',1,'Admin',1672319409,'192.168.64.1',2,36,37257,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00754xiylht30gvu',1,'Admin',1672319409,'192.168.64.1',2,36,37293,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00764xiye7yhrxz6',1,'Admin',1672319409,'192.168.64.1',2,36,37294,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00774xiywejgr8yf',1,'Admin',1672319409,'192.168.64.1',2,36,37295,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00784xiy43lcnu7t',1,'Admin',1672319409,'192.168.64.1',2,36,37296,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00794xiyazk07hyo',1,'Admin',1672319409,'192.168.64.1',2,36,37297,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007a4xiy6jkbcosx',1,'Admin',1672319409,'192.168.64.1',2,36,37298,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007b4xiy8y9pujhi',1,'Admin',1672319409,'192.168.64.1',2,36,37299,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007c4xiyes0x7dk5',1,'Admin',1672319409,'192.168.64.1',2,36,37300,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007d4xiyx9vciaf4',1,'Admin',1672319409,'192.168.64.1',2,36,37301,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007e4xiyq35a1hdb',1,'Admin',1672319409,'192.168.64.1',2,36,37302,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007f4xiy3why40o1',1,'Admin',1672319409,'192.168.64.1',2,36,37303,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007g4xiykbhwga9a',1,'Admin',1672319409,'192.168.64.1',2,36,37304,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007h4xiyg7uev3qq',1,'Admin',1672319409,'192.168.64.1',2,36,37305,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007i4xiya9dhq3a6',1,'Admin',1672319409,'192.168.64.1',2,36,37306,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007j4xiyxo5lrzsf',1,'Admin',1672319409,'192.168.64.1',2,36,37307,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007k4xiy8lui7sic',1,'Admin',1672319409,'192.168.64.1',2,36,37308,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007l4xiyv1yddouz',1,'Admin',1672319409,'192.168.64.1',2,36,37309,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007m4xiyycvs2i7m',1,'Admin',1672319409,'192.168.64.1',2,36,37310,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007n4xiy0b7oe9rk',1,'Admin',1672319409,'192.168.64.1',2,36,37311,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007o4xiy5pf8xz19',1,'Admin',1672319409,'192.168.64.1',2,36,37347,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007p4xiyhnisa7db',1,'Admin',1672319409,'192.168.64.1',2,36,37348,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007q4xiymllntofz',1,'Admin',1672319409,'192.168.64.1',2,36,37349,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007r4xiywf7xteow',1,'Admin',1672319409,'192.168.64.1',2,36,37350,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007s4xiy3fuizkbz',1,'Admin',1672319409,'192.168.64.1',2,36,37351,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007t4xiye3ccjcwe',1,'Admin',1672319409,'192.168.64.1',2,36,37352,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007u4xiy9tlrsydm',1,'Admin',1672319409,'192.168.64.1',2,36,37353,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007v4xiyb5ym1kqu',1,'Admin',1672319409,'192.168.64.1',2,36,37354,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007w4xiy0udgbscp',1,'Admin',1672319409,'192.168.64.1',2,36,37355,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007x4xiykcrs6ay5',1,'Admin',1672319409,'192.168.64.1',2,36,37356,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007y4xiyiliuym62',1,'Admin',1672319409,'192.168.64.1',2,36,37357,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007z4xiyc3o60d7w',1,'Admin',1672319409,'192.168.64.1',2,36,37358,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00804xiyy6mwjty1',1,'Admin',1672319409,'192.168.64.1',2,36,37359,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00814xiy90tkrnvk',1,'Admin',1672319409,'192.168.64.1',2,36,37360,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00824xiyrb1hs153',1,'Admin',1672319409,'192.168.64.1',2,36,37361,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00834xiy0750y1mv',1,'Admin',1672319409,'192.168.64.1',2,36,37362,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00844xiyd914h7if',1,'Admin',1672319409,'192.168.64.1',2,36,37363,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00854xiyvj6o9mi5',1,'Admin',1672319409,'192.168.64.1',2,36,37364,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00864xiyekeo7uq5',1,'Admin',1672319409,'192.168.64.1',2,36,37365,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00874xiyk2d5sjgm',1,'Admin',1672319409,'192.168.64.1',2,36,37401,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00884xiyd4sfk1u6',1,'Admin',1672319409,'192.168.64.1',2,36,37402,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00894xiyv6mojaxl',1,'Admin',1672319409,'192.168.64.1',2,36,37403,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008a4xiyfqqffy8h',1,'Admin',1672319409,'192.168.64.1',2,36,37404,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008b4xiyzy44t4bm',1,'Admin',1672319409,'192.168.64.1',2,36,37405,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008c4xiy32z4l2eq',1,'Admin',1672319409,'192.168.64.1',2,36,37406,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008d4xiyvuur6vbr',1,'Admin',1672319409,'192.168.64.1',2,36,37407,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008e4xiytki3xf3g',1,'Admin',1672319409,'192.168.64.1',2,36,37408,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008f4xiy75qwxqqo',1,'Admin',1672319409,'192.168.64.1',2,36,37409,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008g4xiygk3m7j8g',1,'Admin',1672319409,'192.168.64.1',2,36,37410,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008h4xiyl2ng74hb',1,'Admin',1672319409,'192.168.64.1',2,36,37411,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008i4xiywr6hpcsg',1,'Admin',1672319409,'192.168.64.1',2,36,37412,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008j4xiybnqg1g80',1,'Admin',1672319409,'192.168.64.1',2,36,37413,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008k4xiy9qnjnvly',1,'Admin',1672319409,'192.168.64.1',2,36,37414,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008l4xiy2w9tqa6o',1,'Admin',1672319409,'192.168.64.1',2,36,37415,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008m4xiy5d2wzlze',1,'Admin',1672319409,'192.168.64.1',2,36,37416,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008n4xiyibznmjs7',1,'Admin',1672319409,'192.168.64.1',2,36,37417,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008o4xiybg6qpomm',1,'Admin',1672319409,'192.168.64.1',2,36,37418,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008p4xiypizxtd6r',1,'Admin',1672319409,'192.168.64.1',2,36,37419,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008q4xiyc4up876i',1,'Admin',1672319409,'192.168.64.1',2,36,37455,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008r4xiyn1u8s34v',1,'Admin',1672319409,'192.168.64.1',2,36,37456,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008s4xiy0sbqvcuw',1,'Admin',1672319409,'192.168.64.1',2,36,37457,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008t4xiyy0ni3u2k',1,'Admin',1672319409,'192.168.64.1',2,36,37458,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008u4xiytvnbez6k',1,'Admin',1672319409,'192.168.64.1',2,36,37459,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008v4xiycitcxpn7',1,'Admin',1672319409,'192.168.64.1',2,36,37460,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008w4xiykiw7h84t',1,'Admin',1672319409,'192.168.64.1',2,36,37461,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008x4xiy4s1novxj',1,'Admin',1672319409,'192.168.64.1',2,36,37462,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008y4xiyi3ke5qo4',1,'Admin',1672319409,'192.168.64.1',2,36,37463,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008z4xiytgaw2vuy',1,'Admin',1672319409,'192.168.64.1',2,36,37464,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00904xiyvas50g6v',1,'Admin',1672319409,'192.168.64.1',2,36,37465,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00914xiyuuwe34de',1,'Admin',1672319409,'192.168.64.1',2,36,37466,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00924xiy9r1msghm',1,'Admin',1672319409,'192.168.64.1',2,36,37467,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00934xiydo8owt3u',1,'Admin',1672319409,'192.168.64.1',2,36,37468,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00944xiy6i7g4bkf',1,'Admin',1672319409,'192.168.64.1',2,36,37469,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00954xiywq34jjid',1,'Admin',1672319409,'192.168.64.1',2,36,37470,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00964xiyqdzuarxn',1,'Admin',1672319409,'192.168.64.1',2,36,37471,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00974xiynmdvlgi8',1,'Admin',1672319409,'192.168.64.1',2,36,37472,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00984xiy524rzhs2',1,'Admin',1672319409,'192.168.64.1',2,36,37473,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00994xiyuqnw9eo8',1,'Admin',1672319409,'192.168.64.1',2,36,37509,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009a4xiyh9c33mix',1,'Admin',1672319409,'192.168.64.1',2,36,37510,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009b4xiyskzwfw31',1,'Admin',1672319409,'192.168.64.1',2,36,37511,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009c4xiy3gbucvd7',1,'Admin',1672319409,'192.168.64.1',2,36,37512,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009d4xiywe8506ob',1,'Admin',1672319409,'192.168.64.1',2,36,37513,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009e4xiyeyh34n2c',1,'Admin',1672319409,'192.168.64.1',2,36,37514,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009f4xiya6aaoew4',1,'Admin',1672319409,'192.168.64.1',2,36,37515,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009g4xiyvzxjonnp',1,'Admin',1672319409,'192.168.64.1',2,36,37516,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009h4xiyo3lyxw72',1,'Admin',1672319409,'192.168.64.1',2,36,37517,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009i4xiydxfuxsov',1,'Admin',1672319409,'192.168.64.1',2,36,37518,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009j4xiynteacf7x',1,'Admin',1672319409,'192.168.64.1',2,36,37519,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009k4xiy2lso9r7d',1,'Admin',1672319409,'192.168.64.1',2,36,37520,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009l4xiy1bvs7qk1',1,'Admin',1672319409,'192.168.64.1',2,36,37521,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009m4xiybwifekbp',1,'Admin',1672319409,'192.168.64.1',2,36,37522,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009n4xiyyi8mz55a',1,'Admin',1672319409,'192.168.64.1',2,36,37523,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009o4xiyjurhfooz',1,'Admin',1672319409,'192.168.64.1',2,36,37524,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009p4xiyigi1xa85',1,'Admin',1672319409,'192.168.64.1',2,36,37525,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009q4xiypa91ne59',1,'Admin',1672319409,'192.168.64.1',2,36,37526,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009r4xiygld1nxjm',1,'Admin',1672319409,'192.168.64.1',2,36,37527,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009s4xiyglsmc7tg',1,'Admin',1672319409,'192.168.64.1',2,36,37563,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009t4xiy9t18u8x2',1,'Admin',1672319409,'192.168.64.1',2,36,37564,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009u4xiyx0t9wsvq',1,'Admin',1672319409,'192.168.64.1',2,36,37565,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009v4xiyx3mt9ckl',1,'Admin',1672319409,'192.168.64.1',2,36,37566,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009w4xiyga8aghsx',1,'Admin',1672319409,'192.168.64.1',2,36,37567,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009x4xiyywjg1r7g',1,'Admin',1672319409,'192.168.64.1',2,36,37568,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009y4xiyc8rvgkgp',1,'Admin',1672319409,'192.168.64.1',2,36,37569,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009z4xiyfb31dwmb',1,'Admin',1672319409,'192.168.64.1',2,36,37570,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a04xiyq7hds2o5',1,'Admin',1672319409,'192.168.64.1',2,36,37571,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a14xiyt3e2xbi3',1,'Admin',1672319409,'192.168.64.1',2,36,37572,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a24xiypjnwccyb',1,'Admin',1672319409,'192.168.64.1',2,36,37573,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a34xiy5fg6b587',1,'Admin',1672319409,'192.168.64.1',2,36,37574,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a44xiyeqva251m',1,'Admin',1672319409,'192.168.64.1',2,36,37575,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a54xiyzopp4y0g',1,'Admin',1672319409,'192.168.64.1',2,36,37576,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a64xiy97oj661b',1,'Admin',1672319409,'192.168.64.1',2,36,37577,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a74xiyx86umd5c',1,'Admin',1672319409,'192.168.64.1',2,36,37578,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a84xiy59zvxoy2',1,'Admin',1672319409,'192.168.64.1',2,36,37579,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a94xiyz5wxq6u3',1,'Admin',1672319409,'192.168.64.1',2,36,37580,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00aa4xiy1luqg18a',1,'Admin',1672319409,'192.168.64.1',2,36,37581,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ab4xiynf8aelpq',1,'Admin',1672319409,'192.168.64.1',2,36,37617,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ac4xiybmzwk0kb',1,'Admin',1672319409,'192.168.64.1',2,36,37618,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ad4xiy02mpcj1k',1,'Admin',1672319409,'192.168.64.1',2,36,37619,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ae4xiyshqhc65b',1,'Admin',1672319409,'192.168.64.1',2,36,37620,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00af4xiyq82us6lf',1,'Admin',1672319409,'192.168.64.1',2,36,37621,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ag4xiyizce4qxh',1,'Admin',1672319409,'192.168.64.1',2,36,37622,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ah4xiyy6p9gawg',1,'Admin',1672319409,'192.168.64.1',2,36,37623,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ai4xiy1vpag5lz',1,'Admin',1672319409,'192.168.64.1',2,36,37624,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00aj4xiyww94g21a',1,'Admin',1672319409,'192.168.64.1',2,36,37625,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ak4xiypjj1a27m',1,'Admin',1672319409,'192.168.64.1',2,36,37626,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00al4xiy4qbkef62',1,'Admin',1672319409,'192.168.64.1',2,36,37627,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00am4xiyuf3rvxw9',1,'Admin',1672319409,'192.168.64.1',2,36,37628,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00an4xiylsa319ml',1,'Admin',1672319409,'192.168.64.1',2,36,37629,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ao4xiyc01680y4',1,'Admin',1672319409,'192.168.64.1',2,36,37630,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ap4xiyf6jg8ywg',1,'Admin',1672319409,'192.168.64.1',2,36,37631,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00aq4xiydedoqcp2',1,'Admin',1672319409,'192.168.64.1',2,36,37632,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ar4xiy41jxsqjc',1,'Admin',1672319409,'192.168.64.1',2,36,37633,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00as4xiy4pi1lqb9',1,'Admin',1672319409,'192.168.64.1',2,36,37634,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00at4xiyf360164y',1,'Admin',1672319409,'192.168.64.1',2,36,37635,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00au4xiymk94dpsh',1,'Admin',1672319409,'192.168.64.1',2,36,37671,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00av4xiyo2wow3e9',1,'Admin',1672319409,'192.168.64.1',2,36,37672,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00aw4xiymhlfsbf8',1,'Admin',1672319409,'192.168.64.1',2,36,37673,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ax4xiy559xl0gw',1,'Admin',1672319409,'192.168.64.1',2,36,37674,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ay4xiyxo4wbo1n',1,'Admin',1672319409,'192.168.64.1',2,36,37675,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00az4xiynr1pxvjn',1,'Admin',1672319409,'192.168.64.1',2,36,37676,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b04xiyjt8oglu1',1,'Admin',1672319409,'192.168.64.1',2,36,37677,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b14xiykmxacgpl',1,'Admin',1672319409,'192.168.64.1',2,36,37678,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b24xiytl484gl5',1,'Admin',1672319409,'192.168.64.1',2,36,37679,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b34xiyyrk5936k',1,'Admin',1672319409,'192.168.64.1',2,36,37680,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b44xiynn0f62xu',1,'Admin',1672319409,'192.168.64.1',2,36,37681,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b54xiy4w2uq2v8',1,'Admin',1672319409,'192.168.64.1',2,36,37682,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b64xiysl7eyqti',1,'Admin',1672319409,'192.168.64.1',2,36,37683,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b74xiycss6immu',1,'Admin',1672319409,'192.168.64.1',2,36,37684,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b84xiyc89i6xz0',1,'Admin',1672319409,'192.168.64.1',2,36,37685,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b94xiy82shfhm5',1,'Admin',1672319409,'192.168.64.1',2,36,37686,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ba4xiy7gys8hg9',1,'Admin',1672319409,'192.168.64.1',2,36,37687,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bb4xiy6wmiey3e',1,'Admin',1672319409,'192.168.64.1',2,36,37688,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bc4xiypvldktgz',1,'Admin',1672319409,'192.168.64.1',2,36,37689,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bd4xiytbop075n',1,'Admin',1672319409,'192.168.64.1',2,36,37725,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00be4xiy62axdhrq',1,'Admin',1672319409,'192.168.64.1',2,36,37726,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bf4xiypqlqmaxs',1,'Admin',1672319409,'192.168.64.1',2,36,37727,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bg4xiykxoh0liw',1,'Admin',1672319409,'192.168.64.1',2,36,37728,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bh4xiylhw593yh',1,'Admin',1672319409,'192.168.64.1',2,36,37729,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bi4xiy7qnwddle',1,'Admin',1672319409,'192.168.64.1',2,36,37730,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bj4xiy0kaawfot',1,'Admin',1672319409,'192.168.64.1',2,36,37731,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bk4xiy3acyh0xq',1,'Admin',1672319409,'192.168.64.1',2,36,37732,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bl4xiydpyz1vny',1,'Admin',1672319409,'192.168.64.1',2,36,37733,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bm4xiyfkw7gdms',1,'Admin',1672319409,'192.168.64.1',2,36,37734,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bn4xiyodsfdbpb',1,'Admin',1672319409,'192.168.64.1',2,36,37735,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bo4xiy3rzohi23',1,'Admin',1672319409,'192.168.64.1',2,36,37736,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bp4xiys7y0wbss',1,'Admin',1672319409,'192.168.64.1',2,36,37737,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bq4xiy5fpbw3te',1,'Admin',1672319409,'192.168.64.1',2,36,37738,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00br4xiyef0z6b38',1,'Admin',1672319409,'192.168.64.1',2,36,37739,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bs4xiyg73f6j7l',1,'Admin',1672319409,'192.168.64.1',2,36,37740,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bt4xiyu4rutp4f',1,'Admin',1672319409,'192.168.64.1',2,36,37741,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bu4xiybioysgvd',1,'Admin',1672319409,'192.168.64.1',2,36,37742,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bv4xiytu4cr4w9',1,'Admin',1672319409,'192.168.64.1',2,36,37743,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bw4xiypyr3npgq',1,'Admin',1672319409,'192.168.64.1',2,36,37779,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bx4xiyrri3yaey',1,'Admin',1672319409,'192.168.64.1',2,36,37780,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00by4xiykjw77tqn',1,'Admin',1672319409,'192.168.64.1',2,36,37781,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bz4xiy38o41at7',1,'Admin',1672319409,'192.168.64.1',2,36,37782,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c04xiy7eucdioc',1,'Admin',1672319409,'192.168.64.1',2,36,37783,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c14xiyhg5yg9pv',1,'Admin',1672319409,'192.168.64.1',2,36,37784,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c24xiyzhtew8h4',1,'Admin',1672319409,'192.168.64.1',2,36,37785,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c34xiyznairi12',1,'Admin',1672319409,'192.168.64.1',2,36,37786,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c44xiyhml6sf2n',1,'Admin',1672319409,'192.168.64.1',2,36,37787,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c54xiym4ybsjts',1,'Admin',1672319409,'192.168.64.1',2,36,37788,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c64xiybtyoi9ra',1,'Admin',1672319409,'192.168.64.1',2,36,37789,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c74xiyzun6y5mj',1,'Admin',1672319409,'192.168.64.1',2,36,37790,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c84xiyrqwvqfkc',1,'Admin',1672319409,'192.168.64.1',2,36,37791,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c94xiyif9fn7vn',1,'Admin',1672319409,'192.168.64.1',2,36,37792,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ca4xiy068spysl',1,'Admin',1672319409,'192.168.64.1',2,36,37793,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cb4xiyv41twvlz',1,'Admin',1672319409,'192.168.64.1',2,36,37794,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cc4xiy9nea2j7b',1,'Admin',1672319409,'192.168.64.1',2,36,37795,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cd4xiy0oxxrnly',1,'Admin',1672319409,'192.168.64.1',2,36,37796,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ce4xiyx16me0ie',1,'Admin',1672319409,'192.168.64.1',2,36,37797,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cf4xiysqokdm3v',1,'Admin',1672319409,'192.168.64.1',2,36,37833,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cg4xiy41z2js9m',1,'Admin',1672319409,'192.168.64.1',2,36,37834,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ch4xiyjayptcwj',1,'Admin',1672319409,'192.168.64.1',2,36,37835,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ci4xiy58aiekdt',1,'Admin',1672319409,'192.168.64.1',2,36,37836,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cj4xiyxjxsn5yz',1,'Admin',1672319409,'192.168.64.1',2,36,37837,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ck4xiy2ibos2v1',1,'Admin',1672319409,'192.168.64.1',2,36,37838,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cl4xiye1v67ngt',1,'Admin',1672319409,'192.168.64.1',2,36,37839,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cm4xiyq51wcr52',1,'Admin',1672319409,'192.168.64.1',2,36,37840,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cn4xiy1btaxszv',1,'Admin',1672319409,'192.168.64.1',2,36,37841,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00co4xiyyr6drabk',1,'Admin',1672319409,'192.168.64.1',2,36,37842,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cp4xiyqcnvk0wt',1,'Admin',1672319409,'192.168.64.1',2,36,37843,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cq4xiy1yzjncoi',1,'Admin',1672319409,'192.168.64.1',2,36,37844,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cr4xiy1jvwb9t7',1,'Admin',1672319409,'192.168.64.1',2,36,37845,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cs4xiyst4feep8',1,'Admin',1672319409,'192.168.64.1',2,36,37846,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ct4xiyow2kgl61',1,'Admin',1672319409,'192.168.64.1',2,36,37847,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cu4xiylnx9nzc6',1,'Admin',1672319409,'192.168.64.1',2,36,37848,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cv4xiynpk6t7xx',1,'Admin',1672319409,'192.168.64.1',2,36,37849,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cw4xiym0tl9nv7',1,'Admin',1672319409,'192.168.64.1',2,36,37850,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cx4xiypf915x2q',1,'Admin',1672319409,'192.168.64.1',2,36,37851,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cy4xiyd7thl9xt',1,'Admin',1672319409,'192.168.64.1',2,36,37887,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cz4xiy877rmz2e',1,'Admin',1672319409,'192.168.64.1',2,36,37888,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d04xiy48q3cmxe',1,'Admin',1672319409,'192.168.64.1',2,36,37889,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d14xiy28sw0pmx',1,'Admin',1672319409,'192.168.64.1',2,36,37890,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d24xiysetvqu2h',1,'Admin',1672319409,'192.168.64.1',2,36,37891,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d34xiy9g2jcvzv',1,'Admin',1672319409,'192.168.64.1',2,36,37892,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d44xiyvvey6hua',1,'Admin',1672319409,'192.168.64.1',2,36,37893,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d54xiyqsly2m7r',1,'Admin',1672319409,'192.168.64.1',2,36,37894,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d64xiylbu3ai1i',1,'Admin',1672319409,'192.168.64.1',2,36,37895,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d74xiywg34uce0',1,'Admin',1672319409,'192.168.64.1',2,36,37896,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00d84xiy1ueihhxt',1,'Admin',1672319409,'192.168.64.1',2,36,37897,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00d94xiybe9jklj4',1,'Admin',1672319409,'192.168.64.1',2,36,37898,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00da4xiyrtnx0cer',1,'Admin',1672319409,'192.168.64.1',2,36,37899,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00db4xiymfehqvf2',1,'Admin',1672319409,'192.168.64.1',2,36,37900,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dc4xiy2dpevr9r',1,'Admin',1672319409,'192.168.64.1',2,36,37901,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dd4xiy0sb9vfr7',1,'Admin',1672319409,'192.168.64.1',2,36,37902,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00de4xiy0vw8qnwy',1,'Admin',1672319409,'192.168.64.1',2,36,37903,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00df4xiyxfb8881w',1,'Admin',1672319409,'192.168.64.1',2,36,37904,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dg4xiy5iu21k6k',1,'Admin',1672319409,'192.168.64.1',2,36,37905,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dh4xiyoplemdt8',1,'Admin',1672319409,'192.168.64.1',2,36,37941,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00di4xiywgkjjvd9',1,'Admin',1672319409,'192.168.64.1',2,36,37942,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dj4xiykt70rukn',1,'Admin',1672319409,'192.168.64.1',2,36,37943,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dk4xiyh01mi7i2',1,'Admin',1672319409,'192.168.64.1',2,36,37944,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dl4xiy6t2lukrd',1,'Admin',1672319409,'192.168.64.1',2,36,37945,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dm4xiyxkiuvel0',1,'Admin',1672319409,'192.168.64.1',2,36,37946,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dn4xiy8sr91orx',1,'Admin',1672319409,'192.168.64.1',2,36,37947,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00do4xiy2lgmebb1',1,'Admin',1672319409,'192.168.64.1',2,36,37948,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dp4xiyu8y5eybn',1,'Admin',1672319409,'192.168.64.1',2,36,37949,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dq4xiyqgv2r36c',1,'Admin',1672319409,'192.168.64.1',2,36,37950,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dr4xiycljikmdu',1,'Admin',1672319409,'192.168.64.1',2,36,37951,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ds4xiyp0jpyc7q',1,'Admin',1672319409,'192.168.64.1',2,36,37952,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dt4xiyst7wfjxg',1,'Admin',1672319409,'192.168.64.1',2,36,37953,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00du4xiy7wx498x4',1,'Admin',1672319409,'192.168.64.1',2,36,37954,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dv4xiyqbx081i6',1,'Admin',1672319409,'192.168.64.1',2,36,37955,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dw4xiylvtghgx7',1,'Admin',1672319409,'192.168.64.1',2,36,37956,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dx4xiy9bcgxmgr',1,'Admin',1672319409,'192.168.64.1',2,36,37957,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dy4xiyxaybea7z',1,'Admin',1672319409,'192.168.64.1',2,36,37958,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dz4xiygs8gqbcw',1,'Admin',1672319409,'192.168.64.1',2,36,37959,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e04xiy9bju9i9a',1,'Admin',1672319409,'192.168.64.1',2,36,37995,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e14xiytucb98da',1,'Admin',1672319409,'192.168.64.1',2,36,37996,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e24xiyobr3kpzj',1,'Admin',1672319409,'192.168.64.1',2,36,37997,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e34xiydry1mk20',1,'Admin',1672319409,'192.168.64.1',2,36,37998,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e44xiyq78ubwa3',1,'Admin',1672319409,'192.168.64.1',2,36,37999,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e54xiypsy5x9ru',1,'Admin',1672319409,'192.168.64.1',2,36,38000,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e64xiyfwnbl4zg',1,'Admin',1672319409,'192.168.64.1',2,36,38001,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e74xiy9s7brc3v',1,'Admin',1672319409,'192.168.64.1',2,36,38002,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e84xiythdc4lhe',1,'Admin',1672319409,'192.168.64.1',2,36,38003,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e94xiys3lk1lc5',1,'Admin',1672319409,'192.168.64.1',2,36,38004,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ea4xiy3ds980s2',1,'Admin',1672319409,'192.168.64.1',2,36,38005,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eb4xiyhf4nz5cl',1,'Admin',1672319409,'192.168.64.1',2,36,38006,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ec4xiyskmpzsbt',1,'Admin',1672319409,'192.168.64.1',2,36,38007,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ed4xiyc16enudo',1,'Admin',1672319409,'192.168.64.1',2,36,38008,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ee4xiydqe5qmdp',1,'Admin',1672319409,'192.168.64.1',2,36,38009,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ef4xiycu1zsqa4',1,'Admin',1672319409,'192.168.64.1',2,36,38010,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eg4xiynu1ei5dc',1,'Admin',1672319409,'192.168.64.1',2,36,38011,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eh4xiyupjgvcgp',1,'Admin',1672319409,'192.168.64.1',2,36,38012,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ei4xiy9f5usqhn',1,'Admin',1672319409,'192.168.64.1',2,36,38013,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ej4xiy2186y2d1',1,'Admin',1672319409,'192.168.64.1',2,36,38049,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ek4xiyfdwvpdu0',1,'Admin',1672319409,'192.168.64.1',2,36,38050,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00el4xiy9q860jz8',1,'Admin',1672319409,'192.168.64.1',2,36,38051,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00em4xiynv82s0fg',1,'Admin',1672319409,'192.168.64.1',2,36,38052,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00en4xiyz4ywfoc2',1,'Admin',1672319409,'192.168.64.1',2,36,38053,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eo4xiycab3kkta',1,'Admin',1672319409,'192.168.64.1',2,36,38054,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ep4xiyf8fyeuf4',1,'Admin',1672319409,'192.168.64.1',2,36,38055,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eq4xiyqh4h0fcx',1,'Admin',1672319409,'192.168.64.1',2,36,38056,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00er4xiyqq37qqkc',1,'Admin',1672319409,'192.168.64.1',2,36,38057,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00es4xiy9wdjnfvr',1,'Admin',1672319409,'192.168.64.1',2,36,38058,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00et4xiytvxig187',1,'Admin',1672319409,'192.168.64.1',2,36,38059,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eu4xiylq7jxoky',1,'Admin',1672319409,'192.168.64.1',2,36,38060,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ev4xiyh56g1l6i',1,'Admin',1672319409,'192.168.64.1',2,36,38061,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ew4xiydefdw7mc',1,'Admin',1672319409,'192.168.64.1',2,36,38062,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ex4xiygquhya53',1,'Admin',1672319409,'192.168.64.1',2,36,38063,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ey4xiypbnjthiu',1,'Admin',1672319409,'192.168.64.1',2,36,38064,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ez4xiyerwsk1ao',1,'Admin',1672319409,'192.168.64.1',2,36,38065,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f04xiy0jwwq982',1,'Admin',1672319409,'192.168.64.1',2,36,38066,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f14xiy57kj1kvr',1,'Admin',1672319409,'192.168.64.1',2,36,38067,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f24xiy78ru057z',1,'Admin',1672319409,'192.168.64.1',2,36,38103,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f34xiyx305oy0f',1,'Admin',1672319409,'192.168.64.1',2,36,38104,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f44xiywudi3d0x',1,'Admin',1672319409,'192.168.64.1',2,36,38105,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f54xiycfmssn0y',1,'Admin',1672319409,'192.168.64.1',2,36,38106,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f64xiyjeyl9nd5',1,'Admin',1672319409,'192.168.64.1',2,36,38107,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f74xiy0iflbjgg',1,'Admin',1672319409,'192.168.64.1',2,36,38108,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f84xiyw0a5qehp',1,'Admin',1672319409,'192.168.64.1',2,36,38109,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f94xiyd1utrbqt',1,'Admin',1672319409,'192.168.64.1',2,36,38110,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fa4xiyl6x8up3j',1,'Admin',1672319409,'192.168.64.1',2,36,38111,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fb4xiy9scmxank',1,'Admin',1672319409,'192.168.64.1',2,36,38112,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fc4xiy74nl94b6',1,'Admin',1672319409,'192.168.64.1',2,36,38113,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fd4xiyf7gskx8g',1,'Admin',1672319409,'192.168.64.1',2,36,38114,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fe4xiy5erifzay',1,'Admin',1672319409,'192.168.64.1',2,36,38115,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ff4xiyv194hogp',1,'Admin',1672319409,'192.168.64.1',2,36,38116,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fg4xiymzom6g8d',1,'Admin',1672319409,'192.168.64.1',2,36,38117,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fh4xiya3xq7gtw',1,'Admin',1672319409,'192.168.64.1',2,36,38118,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fi4xiyq0u685wm',1,'Admin',1672319409,'192.168.64.1',2,36,38119,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fj4xiykezjsad7',1,'Admin',1672319409,'192.168.64.1',2,36,38120,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fk4xiy6spmzh2e',1,'Admin',1672319409,'192.168.64.1',2,36,38121,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fl4xiyd6bqknn3',1,'Admin',1672319409,'192.168.64.1',2,36,38157,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fm4xiyhnl5vg2n',1,'Admin',1672319409,'192.168.64.1',2,36,38158,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fn4xiyx25wl12t',1,'Admin',1672319409,'192.168.64.1',2,36,38159,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fo4xiy71y76008',1,'Admin',1672319409,'192.168.64.1',2,36,38160,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fp4xiyikvksc9d',1,'Admin',1672319409,'192.168.64.1',2,36,38161,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fq4xiykvr8u84l',1,'Admin',1672319409,'192.168.64.1',2,36,38162,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fr4xiyo313gcp6',1,'Admin',1672319409,'192.168.64.1',2,36,38163,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fs4xiyzxodv979',1,'Admin',1672319409,'192.168.64.1',2,36,38164,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ft4xiyenoeplh1',1,'Admin',1672319409,'192.168.64.1',2,36,38165,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fu4xiyut5v6u0w',1,'Admin',1672319409,'192.168.64.1',2,36,38166,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fv4xiygcgicncw',1,'Admin',1672319409,'192.168.64.1',2,36,38167,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fw4xiyk0rx1kbg',1,'Admin',1672319409,'192.168.64.1',2,36,38168,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fx4xiy2090hwc2',1,'Admin',1672319409,'192.168.64.1',2,36,38169,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fy4xiygz746i8c',1,'Admin',1672319409,'192.168.64.1',2,36,38170,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fz4xiyymmiybeg',1,'Admin',1672319409,'192.168.64.1',2,36,38171,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g04xiyhy36r3ll',1,'Admin',1672319409,'192.168.64.1',2,36,38172,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g14xiy24iaoy6b',1,'Admin',1672319409,'192.168.64.1',2,36,38173,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g24xiyrtch346y',1,'Admin',1672319409,'192.168.64.1',2,36,38174,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g34xiy4vaj128j',1,'Admin',1672319409,'192.168.64.1',2,36,38175,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g44xiykpv781pi',1,'Admin',1672319409,'192.168.64.1',2,36,38211,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g54xiy0ft8iz2u',1,'Admin',1672319409,'192.168.64.1',2,36,38212,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g64xiyc8rhcenm',1,'Admin',1672319409,'192.168.64.1',2,36,38213,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g74xiyknr1x0iu',1,'Admin',1672319409,'192.168.64.1',2,36,38214,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g84xiylyu8yngu',1,'Admin',1672319409,'192.168.64.1',2,36,38215,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g94xiyx1j37ljd',1,'Admin',1672319409,'192.168.64.1',2,36,38216,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ga4xiyg97pb5vx',1,'Admin',1672319409,'192.168.64.1',2,36,38217,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gb4xiyewf8j78o',1,'Admin',1672319409,'192.168.64.1',2,36,38218,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gc4xiype22cacw',1,'Admin',1672319409,'192.168.64.1',2,36,38219,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gd4xiyg37t6rsl',1,'Admin',1672319409,'192.168.64.1',2,36,38220,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ge4xiys0fldsud',1,'Admin',1672319409,'192.168.64.1',2,36,38221,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gf4xiy6rxsaws0',1,'Admin',1672319409,'192.168.64.1',2,36,38222,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gg4xiyl3yn0vbo',1,'Admin',1672319409,'192.168.64.1',2,36,38223,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gh4xiy0pv4d9zu',1,'Admin',1672319409,'192.168.64.1',2,36,38224,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gi4xiy9v60upuh',1,'Admin',1672319409,'192.168.64.1',2,36,38225,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gj4xiyv25tvqa6',1,'Admin',1672319409,'192.168.64.1',2,36,38226,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gk4xiyix5jd40l',1,'Admin',1672319409,'192.168.64.1',2,36,38227,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gl4xiyqi7x6ucd',1,'Admin',1672319409,'192.168.64.1',2,36,38228,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gm4xiyzob0jwst',1,'Admin',1672319409,'192.168.64.1',2,36,38229,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gn4xiyn168wu44',1,'Admin',1672319409,'192.168.64.1',2,36,38265,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00go4xiy4q379zkt',1,'Admin',1672319409,'192.168.64.1',2,36,38266,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gp4xiy5fkj31he',1,'Admin',1672319409,'192.168.64.1',2,36,38267,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gq4xiymgbvoxem',1,'Admin',1672319409,'192.168.64.1',2,36,38268,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gr4xiy9g7ikbxa',1,'Admin',1672319409,'192.168.64.1',2,36,38269,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gs4xiy6m4gtf3b',1,'Admin',1672319409,'192.168.64.1',2,36,38270,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gt4xiyqbj0cnis',1,'Admin',1672319409,'192.168.64.1',2,36,38271,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gu4xiyndjac0xh',1,'Admin',1672319409,'192.168.64.1',2,36,38272,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gv4xiyxqaj9aqz',1,'Admin',1672319409,'192.168.64.1',2,36,38273,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gw4xiyno2qe5bp',1,'Admin',1672319409,'192.168.64.1',2,36,38274,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gx4xiy5gmd2zln',1,'Admin',1672319409,'192.168.64.1',2,36,38275,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gy4xiype3tocyp',1,'Admin',1672319409,'192.168.64.1',2,36,38276,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gz4xiyzgqqyw1d',1,'Admin',1672319409,'192.168.64.1',2,36,38277,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h04xiywpfzg0dn',1,'Admin',1672319409,'192.168.64.1',2,36,38278,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h14xiy7o53pu7f',1,'Admin',1672319409,'192.168.64.1',2,36,38279,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h24xiy8m6fp9wi',1,'Admin',1672319409,'192.168.64.1',2,36,38280,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h34xiymhdev2zm',1,'Admin',1672319409,'192.168.64.1',2,36,38281,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h44xiyt5k9cymb',1,'Admin',1672319409,'192.168.64.1',2,36,38282,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h54xiygnez5dzd',1,'Admin',1672319409,'192.168.64.1',2,36,38283,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h64xiyjo6s1x1k',1,'Admin',1672319409,'192.168.64.1',2,36,38319,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h74xiyj3316vct',1,'Admin',1672319409,'192.168.64.1',2,36,38320,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h84xiy1k5y4rub',1,'Admin',1672319409,'192.168.64.1',2,36,38321,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h94xiyjtdhpsn4',1,'Admin',1672319409,'192.168.64.1',2,36,38322,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ha4xiymbl1e713',1,'Admin',1672319409,'192.168.64.1',2,36,38323,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hb4xiyjckj6zx1',1,'Admin',1672319409,'192.168.64.1',2,36,38324,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hc4xiyv86ykqqj',1,'Admin',1672319409,'192.168.64.1',2,36,38325,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hd4xiyw5nued65',1,'Admin',1672319409,'192.168.64.1',2,36,38326,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00he4xiywb56nx0v',1,'Admin',1672319409,'192.168.64.1',2,36,38327,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hf4xiy6y6eviyj',1,'Admin',1672319409,'192.168.64.1',2,36,38328,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hg4xiyqdb02fy9',1,'Admin',1672319409,'192.168.64.1',2,36,38329,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hh4xiyzuaj9a31',1,'Admin',1672319409,'192.168.64.1',2,36,38330,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hi4xiyflvtpfs1',1,'Admin',1672319409,'192.168.64.1',2,36,38331,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hj4xiy4nxlogwj',1,'Admin',1672319409,'192.168.64.1',2,36,38332,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hk4xiyddbp76no',1,'Admin',1672319409,'192.168.64.1',2,36,38333,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hl4xiy36ffzbbn',1,'Admin',1672319409,'192.168.64.1',2,36,38334,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hm4xiy9zfxsp01',1,'Admin',1672319409,'192.168.64.1',2,36,38335,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hn4xiyda38skq6',1,'Admin',1672319409,'192.168.64.1',2,36,38336,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ho4xiywhysdp1j',1,'Admin',1672319409,'192.168.64.1',2,36,38337,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hp4xiyxu24ibix',1,'Admin',1672319409,'192.168.64.1',2,36,38373,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hq4xiyohbrzf5t',1,'Admin',1672319409,'192.168.64.1',2,36,38374,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hr4xiy56aj38bt',1,'Admin',1672319409,'192.168.64.1',2,36,38375,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hs4xiycgsdu5j1',1,'Admin',1672319409,'192.168.64.1',2,36,38376,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ht4xiyd1nxg66k',1,'Admin',1672319409,'192.168.64.1',2,36,38377,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hu4xiyphy6za5l',1,'Admin',1672319409,'192.168.64.1',2,36,38378,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hv4xiyirbjfbaw',1,'Admin',1672319409,'192.168.64.1',2,36,38379,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hw4xiyj55j63dg',1,'Admin',1672319409,'192.168.64.1',2,36,38380,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hx4xiy8x1ij1at',1,'Admin',1672319409,'192.168.64.1',2,36,38381,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hy4xiy6y9hkb6n',1,'Admin',1672319409,'192.168.64.1',2,36,38382,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hz4xiy1uqpx7ne',1,'Admin',1672319409,'192.168.64.1',2,36,38383,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i04xiyxbfz6d09',1,'Admin',1672319409,'192.168.64.1',2,36,38384,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i14xiy608vhl8p',1,'Admin',1672319409,'192.168.64.1',2,36,38385,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i24xiycovnj6ku',1,'Admin',1672319409,'192.168.64.1',2,36,38386,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i34xiy7f5yl7bn',1,'Admin',1672319409,'192.168.64.1',2,36,38387,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i44xiy2n2ol0u7',1,'Admin',1672319409,'192.168.64.1',2,36,38388,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i54xiyrnx9puo5',1,'Admin',1672319409,'192.168.64.1',2,36,38389,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i64xiyt6vilekx',1,'Admin',1672319409,'192.168.64.1',2,36,38390,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i74xiyc5hn79x7',1,'Admin',1672319409,'192.168.64.1',2,36,38391,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i84xiy106gzby4',1,'Admin',1672319409,'192.168.64.1',2,36,38427,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i94xiyv1ewb4x1',1,'Admin',1672319409,'192.168.64.1',2,36,38428,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ia4xiyd1ngswiy',1,'Admin',1672319409,'192.168.64.1',2,36,38429,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ib4xiykjpsmhdy',1,'Admin',1672319409,'192.168.64.1',2,36,38430,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ic4xiyk86dapyw',1,'Admin',1672319409,'192.168.64.1',2,36,38431,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00id4xiyb6pnblj7',1,'Admin',1672319409,'192.168.64.1',2,36,38432,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ie4xiy0pefws63',1,'Admin',1672319409,'192.168.64.1',2,36,38433,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00if4xiydsv51k59',1,'Admin',1672319409,'192.168.64.1',2,36,38434,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ig4xiybu15zcno',1,'Admin',1672319409,'192.168.64.1',2,36,38435,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ih4xiy5nj6z07w',1,'Admin',1672319409,'192.168.64.1',2,36,38436,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ii4xiy7lulsgx5',1,'Admin',1672319409,'192.168.64.1',2,36,38437,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ij4xiyozofxm5r',1,'Admin',1672319409,'192.168.64.1',2,36,38438,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ik4xiyqceecs6a',1,'Admin',1672319409,'192.168.64.1',2,36,38439,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00il4xiy2km3chkj',1,'Admin',1672319409,'192.168.64.1',2,36,38440,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00im4xiyg4ksgslc',1,'Admin',1672319409,'192.168.64.1',2,36,38441,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00in4xiyzjlosy9a',1,'Admin',1672319409,'192.168.64.1',2,36,38442,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00io4xiyuqqk3ew9',1,'Admin',1672319409,'192.168.64.1',2,36,38443,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ip4xiygvnf95ng',1,'Admin',1672319409,'192.168.64.1',2,36,38444,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iq4xiy76gbeit4',1,'Admin',1672319409,'192.168.64.1',2,36,38445,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ir4xiyblrcdcvr',1,'Admin',1672319409,'192.168.64.1',2,36,38481,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00is4xiy4m1gwluf',1,'Admin',1672319409,'192.168.64.1',2,36,38482,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00it4xiyrmlq9w74',1,'Admin',1672319409,'192.168.64.1',2,36,38483,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iu4xiyhw8c8kxf',1,'Admin',1672319409,'192.168.64.1',2,36,38484,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iv4xiyb3gro5gd',1,'Admin',1672319409,'192.168.64.1',2,36,38485,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iw4xiylu2ryvue',1,'Admin',1672319409,'192.168.64.1',2,36,38486,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ix4xiyypijt7lx',1,'Admin',1672319409,'192.168.64.1',2,36,38487,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iy4xiyqm8728c5',1,'Admin',1672319409,'192.168.64.1',2,36,38488,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iz4xiyftjh3gdq',1,'Admin',1672319409,'192.168.64.1',2,36,38489,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j04xiypz3rxtg2',1,'Admin',1672319409,'192.168.64.1',2,36,38490,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j14xiyxlac4tre',1,'Admin',1672319409,'192.168.64.1',2,36,38491,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j24xiyngt6qkaa',1,'Admin',1672319409,'192.168.64.1',2,36,38492,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j34xiymmay7bqk',1,'Admin',1672319409,'192.168.64.1',2,36,38493,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j44xiy1ody8ljl',1,'Admin',1672319409,'192.168.64.1',2,36,38494,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j54xiyjukqbpqh',1,'Admin',1672319409,'192.168.64.1',2,36,38495,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j64xiygpjos4t1',1,'Admin',1672319409,'192.168.64.1',2,36,38496,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j74xiykzbupcs6',1,'Admin',1672319409,'192.168.64.1',2,36,38497,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j84xiy1cwp49wt',1,'Admin',1672319409,'192.168.64.1',2,36,38498,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j94xiyrs0d3gqf',1,'Admin',1672319409,'192.168.64.1',2,36,38499,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ja4xiy39rjhbc6',1,'Admin',1672319409,'192.168.64.1',2,36,38535,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jb4xiy3u2j0wxh',1,'Admin',1672319409,'192.168.64.1',2,36,38536,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jc4xiybqtrns6n',1,'Admin',1672319409,'192.168.64.1',2,36,38537,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jd4xiyz4ui5jwo',1,'Admin',1672319409,'192.168.64.1',2,36,38538,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00je4xiy0wddxr14',1,'Admin',1672319409,'192.168.64.1',2,36,38539,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jf4xiyzr7l2sgi',1,'Admin',1672319409,'192.168.64.1',2,36,38540,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jg4xiymrvz77wz',1,'Admin',1672319409,'192.168.64.1',2,36,38541,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jh4xiyxv6b1uwc',1,'Admin',1672319409,'192.168.64.1',2,36,38542,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ji4xiylhsy8p9l',1,'Admin',1672319409,'192.168.64.1',2,36,38543,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jj4xiy9lijhbxh',1,'Admin',1672319409,'192.168.64.1',2,36,38544,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jk4xiy6cg4h9e2',1,'Admin',1672319409,'192.168.64.1',2,36,38545,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jl4xiygylif21p',1,'Admin',1672319409,'192.168.64.1',2,36,38546,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jm4xiyz5vh9298',1,'Admin',1672319409,'192.168.64.1',2,36,38547,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jn4xiyckextp8i',1,'Admin',1672319409,'192.168.64.1',2,36,38548,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jo4xiyuejutsk5',1,'Admin',1672319409,'192.168.64.1',2,36,38549,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jp4xiyks62bare',1,'Admin',1672319409,'192.168.64.1',2,36,38550,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jq4xiyyxpchggw',1,'Admin',1672319409,'192.168.64.1',2,36,38551,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jr4xiys79xd05l',1,'Admin',1672319409,'192.168.64.1',2,36,38552,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00js4xiy3xtxd1a6',1,'Admin',1672319409,'192.168.64.1',2,36,38553,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jt4xiyoyay270p',1,'Admin',1672319409,'192.168.64.1',2,36,39345,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ju4xiywcdxvozt',1,'Admin',1672319409,'192.168.64.1',2,36,39346,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jv4xiy30mdpdlq',1,'Admin',1672319409,'192.168.64.1',2,36,39347,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jw4xiya6128eqh',1,'Admin',1672319409,'192.168.64.1',2,36,39348,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jx4xiyd0bk7o9c',1,'Admin',1672319409,'192.168.64.1',2,36,39349,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jy4xiy6ndpcdv3',1,'Admin',1672319409,'192.168.64.1',2,36,39350,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jz4xiy596q22cy',1,'Admin',1672319409,'192.168.64.1',2,36,39351,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k04xiy18pt1482',1,'Admin',1672319409,'192.168.64.1',2,36,39352,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k14xiyvpwu9j7y',1,'Admin',1672319409,'192.168.64.1',2,36,39353,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k24xiy42tonmt7',1,'Admin',1672319409,'192.168.64.1',2,36,39354,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k34xiypxiduei4',1,'Admin',1672319409,'192.168.64.1',2,36,39355,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k44xiype0ky9ly',1,'Admin',1672319409,'192.168.64.1',2,36,39356,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k54xiy75o46609',1,'Admin',1672319409,'192.168.64.1',2,36,39357,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k64xiyzfqdgcb8',1,'Admin',1672319409,'192.168.64.1',2,36,39358,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k74xiyjjdwqqt1',1,'Admin',1672319409,'192.168.64.1',2,36,39359,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k84xiyuaoxdnd4',1,'Admin',1672319409,'192.168.64.1',2,36,39360,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k94xiypxcuwk5p',1,'Admin',1672319409,'192.168.64.1',2,36,39361,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ka4xiyhi38bwqc',1,'Admin',1672319409,'192.168.64.1',2,36,39362,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kb4xiyite1b2l8',1,'Admin',1672319409,'192.168.64.1',2,36,39363,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kc4xiyno3fpyux',1,'Admin',1672319409,'192.168.64.1',2,36,39399,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kd4xiyj6vxz6gn',1,'Admin',1672319409,'192.168.64.1',2,36,39400,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ke4xiyb74v6bcf',1,'Admin',1672319409,'192.168.64.1',2,36,39401,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kf4xiyuo5lnd7n',1,'Admin',1672319409,'192.168.64.1',2,36,39402,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kg4xiyctpk47v6',1,'Admin',1672319409,'192.168.64.1',2,36,39403,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kh4xiyp9dhbplm',1,'Admin',1672319409,'192.168.64.1',2,36,39404,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ki4xiyb108gojb',1,'Admin',1672319409,'192.168.64.1',2,36,39405,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kj4xiyjkv2ln82',1,'Admin',1672319409,'192.168.64.1',2,36,39406,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kk4xiy6ubsypmv',1,'Admin',1672319409,'192.168.64.1',2,36,39407,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kl4xiyeei79rm2',1,'Admin',1672319409,'192.168.64.1',2,36,39408,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00km4xiyq6uuccgx',1,'Admin',1672319409,'192.168.64.1',2,36,39409,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kn4xiyhjlwbqg3',1,'Admin',1672319409,'192.168.64.1',2,36,39410,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ko4xiy2dgmqnyp',1,'Admin',1672319409,'192.168.64.1',2,36,39411,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kp4xiy1tt0o8tp',1,'Admin',1672319409,'192.168.64.1',2,36,39412,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kq4xiyrbxodo5y',1,'Admin',1672319409,'192.168.64.1',2,36,39413,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kr4xiymepobcta',1,'Admin',1672319409,'192.168.64.1',2,36,39414,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ks4xiyf13z1bsx',1,'Admin',1672319409,'192.168.64.1',2,36,39415,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kt4xiykmn7a4r6',1,'Admin',1672319409,'192.168.64.1',2,36,39416,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ku4xiyxitbapj7',1,'Admin',1672319409,'192.168.64.1',2,36,39417,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kv4xiy1ksikmh9',1,'Admin',1672319409,'192.168.64.1',2,36,39453,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kw4xiybcohcwd0',1,'Admin',1672319409,'192.168.64.1',2,36,39454,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kx4xiyjj56r7nx',1,'Admin',1672319409,'192.168.64.1',2,36,39455,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ky4xiyui0o3zbk',1,'Admin',1672319409,'192.168.64.1',2,36,39456,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kz4xiyvvc4oybv',1,'Admin',1672319409,'192.168.64.1',2,36,39457,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l04xiyxglqbgvu',1,'Admin',1672319409,'192.168.64.1',2,36,39458,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l14xiyyseyn6qw',1,'Admin',1672319409,'192.168.64.1',2,36,39459,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l24xiyh4pwnxjw',1,'Admin',1672319409,'192.168.64.1',2,36,39460,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l34xiynbqo081z',1,'Admin',1672319409,'192.168.64.1',2,36,39461,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l44xiy9giw59dc',1,'Admin',1672319409,'192.168.64.1',2,36,39462,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l54xiyiknsqjdd',1,'Admin',1672319409,'192.168.64.1',2,36,39463,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l64xiyxvqfkcyy',1,'Admin',1672319409,'192.168.64.1',2,36,39464,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l74xiyl0sxjm9b',1,'Admin',1672319409,'192.168.64.1',2,36,39465,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l84xiyj9av59b9',1,'Admin',1672319409,'192.168.64.1',2,36,39466,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l94xiyc1xqeln1',1,'Admin',1672319409,'192.168.64.1',2,36,39467,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00la4xiy4nftuz0n',1,'Admin',1672319409,'192.168.64.1',2,36,39468,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lb4xiypbr5qlgr',1,'Admin',1672319409,'192.168.64.1',2,36,39469,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lc4xiyt5rd4b9o',1,'Admin',1672319409,'192.168.64.1',2,36,39470,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ld4xiyvnepqduf',1,'Admin',1672319409,'192.168.64.1',2,36,39471,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00le4xiy8eg1yoyf',1,'Admin',1672319409,'192.168.64.1',2,36,39507,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lf4xiycp95x1lr',1,'Admin',1672319409,'192.168.64.1',2,36,39508,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lg4xiyx9p1djqr',1,'Admin',1672319409,'192.168.64.1',2,36,39509,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lh4xiym1zhqbqa',1,'Admin',1672319409,'192.168.64.1',2,36,39510,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00li4xiyf6sn1re6',1,'Admin',1672319409,'192.168.64.1',2,36,39511,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lj4xiyo2hmvc6m',1,'Admin',1672319409,'192.168.64.1',2,36,39512,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lk4xiylr77mxm9',1,'Admin',1672319409,'192.168.64.1',2,36,39513,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ll4xiypipv984u',1,'Admin',1672319409,'192.168.64.1',2,36,39514,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lm4xiy1exbmwaj',1,'Admin',1672319409,'192.168.64.1',2,36,39515,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ln4xiylat37ucz',1,'Admin',1672319409,'192.168.64.1',2,36,39516,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lo4xiych5tv11m',1,'Admin',1672319409,'192.168.64.1',2,36,39517,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lp4xiyrdh3bph6',1,'Admin',1672319409,'192.168.64.1',2,36,39518,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lq4xiyj30nvwbl',1,'Admin',1672319409,'192.168.64.1',2,36,39519,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lr4xiy9cygsxba',1,'Admin',1672319409,'192.168.64.1',2,36,39520,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ls4xiy0i0yx102',1,'Admin',1672319409,'192.168.64.1',2,36,39521,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lt4xiym7pq9qth',1,'Admin',1672319409,'192.168.64.1',2,36,39522,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lu4xiynvnx56oh',1,'Admin',1672319409,'192.168.64.1',2,36,39523,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lv4xiyta95h8em',1,'Admin',1672319409,'192.168.64.1',2,36,39524,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lw4xiymbdmdc43',1,'Admin',1672319409,'192.168.64.1',2,36,39525,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lx4xiykvbb442d',1,'Admin',1672319409,'192.168.64.1',2,36,39561,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ly4xiygarntcna',1,'Admin',1672319409,'192.168.64.1',2,36,39562,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lz4xiyih8gbpxd',1,'Admin',1672319409,'192.168.64.1',2,36,39563,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m04xiyqe5wiq14',1,'Admin',1672319409,'192.168.64.1',2,36,39564,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m14xiye9m19q3y',1,'Admin',1672319409,'192.168.64.1',2,36,39565,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m24xiyg1alnmpc',1,'Admin',1672319409,'192.168.64.1',2,36,39566,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m34xiydqstun8d',1,'Admin',1672319409,'192.168.64.1',2,36,39567,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m44xiys65n3rmc',1,'Admin',1672319409,'192.168.64.1',2,36,39568,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m54xiy8670mi4p',1,'Admin',1672319409,'192.168.64.1',2,36,39569,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m64xiyi9726vbb',1,'Admin',1672319409,'192.168.64.1',2,36,39570,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m74xiyfmsok9c9',1,'Admin',1672319409,'192.168.64.1',2,36,39571,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m84xiy8qj6zlkj',1,'Admin',1672319409,'192.168.64.1',2,36,39572,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m94xiyat45ortw',1,'Admin',1672319409,'192.168.64.1',2,36,39573,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ma4xiy3najdlg9',1,'Admin',1672319409,'192.168.64.1',2,36,39574,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mb4xiyw3rlwlr4',1,'Admin',1672319409,'192.168.64.1',2,36,39575,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mc4xiy3hc80kwr',1,'Admin',1672319409,'192.168.64.1',2,36,39576,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00md4xiy7psq7alt',1,'Admin',1672319409,'192.168.64.1',2,36,39577,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00me4xiytswnvc8c',1,'Admin',1672319409,'192.168.64.1',2,36,39578,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mf4xiyzl3bo22b',1,'Admin',1672319409,'192.168.64.1',2,36,39579,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mg4xiyj6idpdfi',1,'Admin',1672319409,'192.168.64.1',2,36,40946,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mh4xiycpnfl1ft',1,'Admin',1672319409,'192.168.64.1',2,36,40947,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mi4xiymmifnlg1',1,'Admin',1672319409,'192.168.64.1',2,36,40948,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mj4xiyzuz81pdo',1,'Admin',1672319409,'192.168.64.1',2,36,40949,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mk4xiyaomwy6cl',1,'Admin',1672319409,'192.168.64.1',2,36,40950,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ml4xiyju0khngn',1,'Admin',1672319409,'192.168.64.1',2,36,40951,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mm4xiyq6cn5p1z',1,'Admin',1672319409,'192.168.64.1',2,36,40952,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mn4xiywev3s9wm',1,'Admin',1672319409,'192.168.64.1',2,36,40953,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mo4xiy75ie5n3a',1,'Admin',1672319409,'192.168.64.1',2,36,40954,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mp4xiyfqrvu674',1,'Admin',1672319409,'192.168.64.1',2,36,40967,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mq4xiyroakq5cc',1,'Admin',1672319409,'192.168.64.1',2,36,40968,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mr4xiye7cw676y',1,'Admin',1672319409,'192.168.64.1',2,36,40969,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ms4xiyl97d1zd4',1,'Admin',1672319409,'192.168.64.1',2,36,40970,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mt4xiykrp9fov0',1,'Admin',1672319409,'192.168.64.1',2,36,40971,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mu4xiyitobye8r',1,'Admin',1672319409,'192.168.64.1',2,36,40972,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mv4xiys5zqaal3',1,'Admin',1672319409,'192.168.64.1',2,36,40973,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mw4xiynjdt96jb',1,'Admin',1672319409,'192.168.64.1',2,36,40974,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mx4xiyaij7nojv',1,'Admin',1672319409,'192.168.64.1',2,36,40975,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00my4xiygdxh0vm3',1,'Admin',1672319409,'192.168.64.1',2,36,40988,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mz4xiyfwwdhtd6',1,'Admin',1672319409,'192.168.64.1',2,36,40989,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n04xiy30y05qkj',1,'Admin',1672319409,'192.168.64.1',2,36,40990,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n14xiyit1qus8g',1,'Admin',1672319409,'192.168.64.1',2,36,40991,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n24xiyp0c6k6el',1,'Admin',1672319409,'192.168.64.1',2,36,40992,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n34xiyj1tt9ka8',1,'Admin',1672319409,'192.168.64.1',2,36,40993,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n44xiy3qiiyj0z',1,'Admin',1672319409,'192.168.64.1',2,36,40994,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n54xiykhwl4use',1,'Admin',1672319409,'192.168.64.1',2,36,40995,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n64xiyailoezzd',1,'Admin',1672319409,'192.168.64.1',2,36,40996,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n74xiysyxm8one',1,'Admin',1672319409,'192.168.64.1',2,36,41009,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n84xiyf7kjjbly',1,'Admin',1672319409,'192.168.64.1',2,36,41010,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n94xiyyvmy3ehp',1,'Admin',1672319409,'192.168.64.1',2,36,41011,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00na4xiy6l8htz1n',1,'Admin',1672319409,'192.168.64.1',2,36,41012,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nb4xiyagz2s6ct',1,'Admin',1672319409,'192.168.64.1',2,36,41013,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nc4xiyk18e5zwp',1,'Admin',1672319409,'192.168.64.1',2,36,41014,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nd4xiyq5ife73h',1,'Admin',1672319409,'192.168.64.1',2,36,41015,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ne4xiywww6libo',1,'Admin',1672319409,'192.168.64.1',2,36,41016,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nf4xiyxmrmbnaw',1,'Admin',1672319409,'192.168.64.1',2,36,41017,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ng4xiyvrdchg80',1,'Admin',1672319409,'192.168.64.1',2,36,41030,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nh4xiys5bnpsrz',1,'Admin',1672319409,'192.168.64.1',2,36,41031,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ni4xiy988luhel',1,'Admin',1672319409,'192.168.64.1',2,36,41032,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nj4xiyicnl3gxh',1,'Admin',1672319409,'192.168.64.1',2,36,41033,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nk4xiyw2iiztwj',1,'Admin',1672319409,'192.168.64.1',2,36,41034,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nl4xiyn23i22bj',1,'Admin',1672319409,'192.168.64.1',2,36,41035,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nm4xiy8249j168',1,'Admin',1672319409,'192.168.64.1',2,36,41036,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nn4xiyqygj2xuw',1,'Admin',1672319409,'192.168.64.1',2,36,41037,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00no4xiys46ohefo',1,'Admin',1672319409,'192.168.64.1',2,36,41038,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00np4xiy4kaeb3j0',1,'Admin',1672319409,'192.168.64.1',2,36,41051,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nq4xiypmq6qap6',1,'Admin',1672319409,'192.168.64.1',2,36,41052,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nr4xiyn33x9gwz',1,'Admin',1672319409,'192.168.64.1',2,36,41053,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ns4xiyqrg9918r',1,'Admin',1672319409,'192.168.64.1',2,36,41054,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nt4xiysqswevix',1,'Admin',1672319409,'192.168.64.1',2,36,41055,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nu4xiyd8c1it5i',1,'Admin',1672319409,'192.168.64.1',2,36,41056,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nv4xiyjmlii2ml',1,'Admin',1672319409,'192.168.64.1',2,36,41057,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nw4xiyqdc2n19k',1,'Admin',1672319409,'192.168.64.1',2,36,41058,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nx4xiyh1lncjou',1,'Admin',1672319409,'192.168.64.1',2,36,41059,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ny4xiylu37b9i0',1,'Admin',1672319409,'192.168.64.1',2,36,41072,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nz4xiy3mwn1yhc',1,'Admin',1672319409,'192.168.64.1',2,36,41073,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o04xiyr0ycwnym',1,'Admin',1672319409,'192.168.64.1',2,36,41074,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o14xiyqsq0inhb',1,'Admin',1672319409,'192.168.64.1',2,36,41075,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o24xiy6x54dabm',1,'Admin',1672319409,'192.168.64.1',2,36,41076,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o34xiycwop8atc',1,'Admin',1672319409,'192.168.64.1',2,36,41077,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o44xiy2svidhrv',1,'Admin',1672319409,'192.168.64.1',2,36,41078,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o54xiy2wx176xj',1,'Admin',1672319409,'192.168.64.1',2,36,41079,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o64xiyvtnvpsmc',1,'Admin',1672319409,'192.168.64.1',2,36,41080,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o74xiykhwtq5nj',1,'Admin',1672319409,'192.168.64.1',2,36,41093,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o84xiy4bpb2x1c',1,'Admin',1672319409,'192.168.64.1',2,36,41094,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o94xiyzn75kwpf',1,'Admin',1672319409,'192.168.64.1',2,36,41095,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oa4xiymtt1s4df',1,'Admin',1672319409,'192.168.64.1',2,36,41096,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ob4xiywa6cv2qb',1,'Admin',1672319409,'192.168.64.1',2,36,41097,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oc4xiyu9cs4nkq',1,'Admin',1672319409,'192.168.64.1',2,36,41098,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00od4xiys6ka722m',1,'Admin',1672319409,'192.168.64.1',2,36,41099,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oe4xiyw6up7nks',1,'Admin',1672319409,'192.168.64.1',2,36,41100,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00of4xiyeyz9f6gs',1,'Admin',1672319409,'192.168.64.1',2,36,41101,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00og4xiy3tl0uzs9',1,'Admin',1672319409,'192.168.64.1',2,36,41114,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oh4xiy9vg08zs6',1,'Admin',1672319409,'192.168.64.1',2,36,41115,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oi4xiyhqq5mczy',1,'Admin',1672319409,'192.168.64.1',2,36,41116,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oj4xiyq0zbib66',1,'Admin',1672319409,'192.168.64.1',2,36,41117,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ok4xiygciw5t3n',1,'Admin',1672319409,'192.168.64.1',2,36,41118,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ol4xiybyzjfwi2',1,'Admin',1672319409,'192.168.64.1',2,36,41119,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00om4xiy5brenwpt',1,'Admin',1672319409,'192.168.64.1',2,36,41120,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00on4xiy1affh6dy',1,'Admin',1672319409,'192.168.64.1',2,36,41121,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oo4xiytluysj83',1,'Admin',1672319409,'192.168.64.1',2,36,41122,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00op4xiyx48j9360',1,'Admin',1672319409,'192.168.64.1',2,36,41135,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oq4xiy1fr426w1',1,'Admin',1672319409,'192.168.64.1',2,36,41136,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00or4xiyt523f60p',1,'Admin',1672319409,'192.168.64.1',2,36,41137,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00os4xiyapn1wz94',1,'Admin',1672319409,'192.168.64.1',2,36,41138,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ot4xiy06sipoyw',1,'Admin',1672319409,'192.168.64.1',2,36,41139,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ou4xiya3hw3gcb',1,'Admin',1672319409,'192.168.64.1',2,36,41140,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ov4xiya4fh7myf',1,'Admin',1672319409,'192.168.64.1',2,36,41141,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ow4xiy2u6r8u8a',1,'Admin',1672319409,'192.168.64.1',2,36,41142,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ox4xiypoiykiqu',1,'Admin',1672319409,'192.168.64.1',2,36,41143,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oy4xiy9w8vbit1',1,'Admin',1672319409,'192.168.64.1',2,36,41156,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oz4xiy7zatr4qr',1,'Admin',1672319409,'192.168.64.1',2,36,41157,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p04xiyymnm0d98',1,'Admin',1672319409,'192.168.64.1',2,36,41158,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p14xiymmdrvnbv',1,'Admin',1672319409,'192.168.64.1',2,36,41159,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p24xiy95opb1qm',1,'Admin',1672319409,'192.168.64.1',2,36,41160,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p34xiy33f9831t',1,'Admin',1672319409,'192.168.64.1',2,36,41161,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p44xiynairxfu7',1,'Admin',1672319409,'192.168.64.1',2,36,41162,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p54xiy5pul8zk0',1,'Admin',1672319409,'192.168.64.1',2,36,41163,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p64xiyoicinhmb',1,'Admin',1672319409,'192.168.64.1',2,36,41164,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p74xiy0xw5ufyp',1,'Admin',1672319409,'192.168.64.1',2,36,41177,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p84xiyeqk61caj',1,'Admin',1672319409,'192.168.64.1',2,36,41178,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p94xiyw7ruk6rd',1,'Admin',1672319409,'192.168.64.1',2,36,41179,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pa4xiyqf42r1hb',1,'Admin',1672319409,'192.168.64.1',2,36,41180,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pb4xiy61xu1inv',1,'Admin',1672319409,'192.168.64.1',2,36,41181,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pc4xiyjljutokt',1,'Admin',1672319409,'192.168.64.1',2,36,41182,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pd4xiy9b11f4eb',1,'Admin',1672319409,'192.168.64.1',2,36,41183,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pe4xiy8pi0ds76',1,'Admin',1672319409,'192.168.64.1',2,36,41184,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pf4xiy9g5qjzei',1,'Admin',1672319409,'192.168.64.1',2,36,41185,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pg4xiyn139pbyg',1,'Admin',1672319409,'192.168.64.1',2,36,41198,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ph4xiyudyrlh00',1,'Admin',1672319409,'192.168.64.1',2,36,41199,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pi4xiyjnnatjfp',1,'Admin',1672319409,'192.168.64.1',2,36,41200,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pj4xiybh3wcq9v',1,'Admin',1672319409,'192.168.64.1',2,36,41201,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pk4xiyto8vg3jy',1,'Admin',1672319409,'192.168.64.1',2,36,41202,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pl4xiyrmlcuib4',1,'Admin',1672319409,'192.168.64.1',2,36,41203,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pm4xiy6agqr6do',1,'Admin',1672319409,'192.168.64.1',2,36,41204,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pn4xiyrlj8apya',1,'Admin',1672319409,'192.168.64.1',2,36,41205,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00po4xiysxx35vzm',1,'Admin',1672319409,'192.168.64.1',2,36,41206,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pp4xiy4tfdrw5z',1,'Admin',1672319409,'192.168.64.1',2,36,41219,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pq4xiydaarhqur',1,'Admin',1672319409,'192.168.64.1',2,36,41220,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pr4xiy419kkb6r',1,'Admin',1672319409,'192.168.64.1',2,36,41221,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ps4xiyrqgaocqh',1,'Admin',1672319409,'192.168.64.1',2,36,41222,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pt4xiysmvm4qx4',1,'Admin',1672319409,'192.168.64.1',2,36,41223,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pu4xiy92wfegts',1,'Admin',1672319409,'192.168.64.1',2,36,41224,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pv4xiy8hrw3cq2',1,'Admin',1672319409,'192.168.64.1',2,36,41225,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pw4xiytq4ogybw',1,'Admin',1672319409,'192.168.64.1',2,36,41226,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00px4xiyu430hqxs',1,'Admin',1672319409,'192.168.64.1',2,36,41227,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00py4xiyqvju0ui9',1,'Admin',1672319409,'192.168.64.1',2,36,41240,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pz4xiyp1tju6r7',1,'Admin',1672319409,'192.168.64.1',2,36,41241,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q04xiy2jmiwy6t',1,'Admin',1672319409,'192.168.64.1',2,36,41242,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q14xiyfp9nsbti',1,'Admin',1672319409,'192.168.64.1',2,36,41243,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q24xiysh1ru5fr',1,'Admin',1672319409,'192.168.64.1',2,36,41244,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q34xiyhm68kye1',1,'Admin',1672319409,'192.168.64.1',2,36,41245,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q44xiyu2cbx7v1',1,'Admin',1672319409,'192.168.64.1',2,36,41246,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q54xiy2bnbkh7e',1,'Admin',1672319409,'192.168.64.1',2,36,41247,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q64xiy5mffftjz',1,'Admin',1672319409,'192.168.64.1',2,36,41248,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q74xiy16nmfxff',1,'Admin',1672319409,'192.168.64.1',2,36,41261,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q84xiyigijwg79',1,'Admin',1672319409,'192.168.64.1',2,36,41262,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q94xiy9dvpnw0x',1,'Admin',1672319409,'192.168.64.1',2,36,41263,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qa4xiycnw60cbd',1,'Admin',1672319409,'192.168.64.1',2,36,41264,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qb4xiyhca7aq9l',1,'Admin',1672319409,'192.168.64.1',2,36,41265,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qc4xiy6thd39t5',1,'Admin',1672319409,'192.168.64.1',2,36,41266,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qd4xiyvpeitmwr',1,'Admin',1672319409,'192.168.64.1',2,36,41267,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qe4xiytw1mnysq',1,'Admin',1672319409,'192.168.64.1',2,36,41268,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qf4xiyvh0fvkqq',1,'Admin',1672319409,'192.168.64.1',2,36,41269,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qg4xiyuzt78kq5',1,'Admin',1672319409,'192.168.64.1',2,36,41282,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qh4xiyuckwjt91',1,'Admin',1672319409,'192.168.64.1',2,36,41283,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qi4xiy17a6hka3',1,'Admin',1672319409,'192.168.64.1',2,36,41284,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qj4xiyfuut2bgl',1,'Admin',1672319409,'192.168.64.1',2,36,41285,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qk4xiyxkhgf2r0',1,'Admin',1672319409,'192.168.64.1',2,36,41286,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ql4xiyuvdtcz6o',1,'Admin',1672319409,'192.168.64.1',2,36,41287,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qm4xiydhw6fsph',1,'Admin',1672319409,'192.168.64.1',2,36,41288,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qn4xiyuyz4d1sj',1,'Admin',1672319409,'192.168.64.1',2,36,41289,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qo4xiyxmrqdzev',1,'Admin',1672319409,'192.168.64.1',2,36,41290,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qp4xiyoyp35n3e',1,'Admin',1672319409,'192.168.64.1',2,36,41303,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qq4xiy168k4vrd',1,'Admin',1672319409,'192.168.64.1',2,36,41304,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qr4xiy4afjmv27',1,'Admin',1672319409,'192.168.64.1',2,36,41305,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qs4xiyxlir5toh',1,'Admin',1672319409,'192.168.64.1',2,36,41306,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qt4xiykow2n5jq',1,'Admin',1672319409,'192.168.64.1',2,36,41307,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qu4xiy176w1fw6',1,'Admin',1672319409,'192.168.64.1',2,36,41308,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qv4xiyj2o9rtnq',1,'Admin',1672319409,'192.168.64.1',2,36,41309,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qw4xiy4enakn36',1,'Admin',1672319409,'192.168.64.1',2,36,41310,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qx4xiy91ia96sb',1,'Admin',1672319409,'192.168.64.1',2,36,41311,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qy4xiyizo0j8wg',1,'Admin',1672319409,'192.168.64.1',2,36,41324,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qz4xiyujkae0za',1,'Admin',1672319409,'192.168.64.1',2,36,41325,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r04xiy4wsh2fht',1,'Admin',1672319409,'192.168.64.1',2,36,41326,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r14xiyrmbpnpzj',1,'Admin',1672319409,'192.168.64.1',2,36,41327,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r24xiy5bq5tvix',1,'Admin',1672319409,'192.168.64.1',2,36,41328,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r34xiyreu2g9hs',1,'Admin',1672319409,'192.168.64.1',2,36,41329,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r44xiydwfszj5z',1,'Admin',1672319409,'192.168.64.1',2,36,41330,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r54xiycu9sz6qp',1,'Admin',1672319409,'192.168.64.1',2,36,41331,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r64xiygim8dlvv',1,'Admin',1672319409,'192.168.64.1',2,36,41332,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r74xiyu1jt2a3j',1,'Admin',1672319409,'192.168.64.1',2,36,41345,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r84xiyqvdo1yux',1,'Admin',1672319409,'192.168.64.1',2,36,41346,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r94xiyrjgiem6g',1,'Admin',1672319409,'192.168.64.1',2,36,41347,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ra4xiy62k4nvvy',1,'Admin',1672319409,'192.168.64.1',2,36,41348,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rb4xiyfmo5nf4x',1,'Admin',1672319409,'192.168.64.1',2,36,41349,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rc4xiyy31xdl3l',1,'Admin',1672319409,'192.168.64.1',2,36,41350,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rd4xiyhct7bwwd',1,'Admin',1672319409,'192.168.64.1',2,36,41351,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00re4xiy7xqi4ifw',1,'Admin',1672319409,'192.168.64.1',2,36,41352,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rf4xiycr11n7c3',1,'Admin',1672319409,'192.168.64.1',2,36,41353,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rg4xiyhal3i1t4',1,'Admin',1672319409,'192.168.64.1',2,36,41366,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rh4xiyog5438sl',1,'Admin',1672319409,'192.168.64.1',2,36,41367,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ri4xiyjec19jer',1,'Admin',1672319409,'192.168.64.1',2,36,41368,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rj4xiy6bxx6kam',1,'Admin',1672319409,'192.168.64.1',2,36,41369,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rk4xiyo74yvk0h',1,'Admin',1672319409,'192.168.64.1',2,36,41370,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rl4xiywmkv0txz',1,'Admin',1672319409,'192.168.64.1',2,36,41371,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rm4xiy3fbgvu6q',1,'Admin',1672319409,'192.168.64.1',2,36,41372,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rn4xiy0in37lv4',1,'Admin',1672319409,'192.168.64.1',2,36,41373,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ro4xiyftypu8p4',1,'Admin',1672319409,'192.168.64.1',2,36,41374,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rp4xiybjwabfqw',1,'Admin',1672319409,'192.168.64.1',2,36,41387,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rq4xiy8wuelosg',1,'Admin',1672319409,'192.168.64.1',2,36,41388,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rr4xiyj8pdgnkj',1,'Admin',1672319409,'192.168.64.1',2,36,41389,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rs4xiydfqfmaeq',1,'Admin',1672319409,'192.168.64.1',2,36,41390,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rt4xiywza33tn5',1,'Admin',1672319409,'192.168.64.1',2,36,41391,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ru4xiy52janrux',1,'Admin',1672319409,'192.168.64.1',2,36,41392,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rv4xiy8bd1nt3y',1,'Admin',1672319409,'192.168.64.1',2,36,41393,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rw4xiyq7w2ligo',1,'Admin',1672319409,'192.168.64.1',2,36,41394,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rx4xiyca7maflw',1,'Admin',1672319409,'192.168.64.1',2,36,41395,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ry4xiywuedsapn',1,'Admin',1672319409,'192.168.64.1',2,36,41408,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rz4xiyf2pkwunm',1,'Admin',1672319409,'192.168.64.1',2,36,41409,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s04xiyd4vn9wnn',1,'Admin',1672319409,'192.168.64.1',2,36,41410,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s14xiys0owgk4l',1,'Admin',1672319409,'192.168.64.1',2,36,41411,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s24xiy3ad55lf5',1,'Admin',1672319409,'192.168.64.1',2,36,41412,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s34xiy51jmjomi',1,'Admin',1672319409,'192.168.64.1',2,36,41413,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s44xiyl3t0h1jo',1,'Admin',1672319409,'192.168.64.1',2,36,41414,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s54xiyes1osu19',1,'Admin',1672319409,'192.168.64.1',2,36,41415,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s64xiyqwneq2wc',1,'Admin',1672319409,'192.168.64.1',2,36,41416,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s74xiyuugo0ngr',1,'Admin',1672319409,'192.168.64.1',2,36,41429,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s84xiyzqpblm8j',1,'Admin',1672319409,'192.168.64.1',2,36,41430,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s94xiyfanb5j24',1,'Admin',1672319409,'192.168.64.1',2,36,41431,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sa4xiy7rkv56wh',1,'Admin',1672319409,'192.168.64.1',2,36,41432,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sb4xiyzmtd9ud2',1,'Admin',1672319409,'192.168.64.1',2,36,41433,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sc4xiyx5rb8z76',1,'Admin',1672319409,'192.168.64.1',2,36,41434,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sd4xiyhxfkdaor',1,'Admin',1672319409,'192.168.64.1',2,36,41435,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00se4xiyz2e6l3zt',1,'Admin',1672319409,'192.168.64.1',2,36,41436,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sf4xiyq38inm6k',1,'Admin',1672319409,'192.168.64.1',2,36,41437,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sg4xiyfb9siec9',1,'Admin',1672319409,'192.168.64.1',2,36,41450,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sh4xiyw54023mw',1,'Admin',1672319409,'192.168.64.1',2,36,41451,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00si4xiyonhq983t',1,'Admin',1672319409,'192.168.64.1',2,36,41452,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sj4xiyyyoseoaa',1,'Admin',1672319409,'192.168.64.1',2,36,41453,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sk4xiyqzoevey7',1,'Admin',1672319409,'192.168.64.1',2,36,41454,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sl4xiyezjo85s9',1,'Admin',1672319409,'192.168.64.1',2,36,41455,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sm4xiyn0pzxnlw',1,'Admin',1672319409,'192.168.64.1',2,36,41456,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sn4xiytxp52x9w',1,'Admin',1672319409,'192.168.64.1',2,36,41457,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00so4xiy1xmpe96w',1,'Admin',1672319409,'192.168.64.1',2,36,41458,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sp4xiy4qqr59h6',1,'Admin',1672319409,'192.168.64.1',2,36,41471,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sq4xiyxp0xfr5j',1,'Admin',1672319409,'192.168.64.1',2,36,41472,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sr4xiyc33wy6vp',1,'Admin',1672319409,'192.168.64.1',2,36,41473,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ss4xiyaetllitj',1,'Admin',1672319409,'192.168.64.1',2,36,41474,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00st4xiyxei6hp1n',1,'Admin',1672319409,'192.168.64.1',2,36,41475,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00su4xiyw8fr749v',1,'Admin',1672319409,'192.168.64.1',2,36,41476,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sv4xiys52d834y',1,'Admin',1672319409,'192.168.64.1',2,36,41477,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sw4xiyw2an9kqm',1,'Admin',1672319409,'192.168.64.1',2,36,41478,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sx4xiy7fwi6hhm',1,'Admin',1672319409,'192.168.64.1',2,36,41479,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sy4xiywywzm78a',1,'Admin',1672319409,'192.168.64.1',2,36,41492,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sz4xiyiu6kxxpg',1,'Admin',1672319409,'192.168.64.1',2,36,41493,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t04xiyix0n8a8u',1,'Admin',1672319409,'192.168.64.1',2,36,41494,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t14xiyi4e6t5cf',1,'Admin',1672319409,'192.168.64.1',2,36,41495,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t24xiynhccm7ey',1,'Admin',1672319409,'192.168.64.1',2,36,41496,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t34xiy2ji2l9he',1,'Admin',1672319409,'192.168.64.1',2,36,41497,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t44xiyua3240o7',1,'Admin',1672319409,'192.168.64.1',2,36,41498,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t54xiy1l076vbn',1,'Admin',1672319409,'192.168.64.1',2,36,41499,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t64xiy86f1j1jx',1,'Admin',1672319409,'192.168.64.1',2,36,41500,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t74xiy3up7yx1d',1,'Admin',1672319409,'192.168.64.1',2,36,41513,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t84xiyx3m3djh8',1,'Admin',1672319409,'192.168.64.1',2,36,41514,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t94xiyafpq9hug',1,'Admin',1672319409,'192.168.64.1',2,36,41515,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ta4xiyicc2reqv',1,'Admin',1672319409,'192.168.64.1',2,36,41516,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tb4xiyjbmd4etm',1,'Admin',1672319409,'192.168.64.1',2,36,41517,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tc4xiypdahfp19',1,'Admin',1672319409,'192.168.64.1',2,36,41518,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00td4xiydncjymc0',1,'Admin',1672319409,'192.168.64.1',2,36,41519,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00te4xiyo8duf4ly',1,'Admin',1672319409,'192.168.64.1',2,36,41520,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tf4xiyk0a9jhnw',1,'Admin',1672319409,'192.168.64.1',2,36,41521,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tg4xiyce0g6wad',1,'Admin',1672319409,'192.168.64.1',2,36,41534,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00th4xiye42bf14n',1,'Admin',1672319409,'192.168.64.1',2,36,41535,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ti4xiyzrgk583h',1,'Admin',1672319409,'192.168.64.1',2,36,41536,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tj4xiyezv49g0n',1,'Admin',1672319409,'192.168.64.1',2,36,41537,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tk4xiyqnfg3x81',1,'Admin',1672319409,'192.168.64.1',2,36,41538,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tl4xiyeh2y5uci',1,'Admin',1672319409,'192.168.64.1',2,36,41539,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tm4xiyrcxhi46n',1,'Admin',1672319409,'192.168.64.1',2,36,41540,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tn4xiyw3r5nlqm',1,'Admin',1672319409,'192.168.64.1',2,36,41541,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00to4xiy2z52we33',1,'Admin',1672319409,'192.168.64.1',2,36,41542,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tp4xiywdb3mcm3',1,'Admin',1672319409,'192.168.64.1',2,36,41555,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tq4xiyu1ukh0xd',1,'Admin',1672319409,'192.168.64.1',2,36,41556,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tr4xiylppc5doc',1,'Admin',1672319409,'192.168.64.1',2,36,41557,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ts4xiyv30qhbgh',1,'Admin',1672319409,'192.168.64.1',2,36,41558,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tt4xiyvtxo0qtg',1,'Admin',1672319409,'192.168.64.1',2,36,41559,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tu4xiyamr7i0vo',1,'Admin',1672319409,'192.168.64.1',2,36,41560,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tv4xiysuc3sgoo',1,'Admin',1672319409,'192.168.64.1',2,36,41561,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tw4xiypdaox9mu',1,'Admin',1672319409,'192.168.64.1',2,36,41562,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tx4xiyjynikkx3',1,'Admin',1672319409,'192.168.64.1',2,36,41563,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ty4xiy6wbrth2d',1,'Admin',1672319409,'192.168.64.1',2,36,41576,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tz4xiy5t9s2u4m',1,'Admin',1672319409,'192.168.64.1',2,36,41577,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u04xiy7zv4ivi3',1,'Admin',1672319409,'192.168.64.1',2,36,41578,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u14xiy4qzesek6',1,'Admin',1672319409,'192.168.64.1',2,36,41579,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u24xiyequhjz30',1,'Admin',1672319409,'192.168.64.1',2,36,41580,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u34xiywt2o5g99',1,'Admin',1672319409,'192.168.64.1',2,36,41581,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u44xiyi6c1yasl',1,'Admin',1672319409,'192.168.64.1',2,36,41582,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u54xiy0s4ms0jj',1,'Admin',1672319409,'192.168.64.1',2,36,41583,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u64xiyi4v63our',1,'Admin',1672319409,'192.168.64.1',2,36,41584,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u74xiysfw5pftn',1,'Admin',1672319409,'192.168.64.1',2,36,41597,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u84xiynhryn55p',1,'Admin',1672319409,'192.168.64.1',2,36,41598,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u94xiy7w6fc2ni',1,'Admin',1672319409,'192.168.64.1',2,36,41599,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ua4xiyyprmiwfh',1,'Admin',1672319409,'192.168.64.1',2,36,41600,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ub4xiyr8nimjvu',1,'Admin',1672319409,'192.168.64.1',2,36,41601,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uc4xiy4essqevt',1,'Admin',1672319409,'192.168.64.1',2,36,41602,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ud4xiyntkmdxj1',1,'Admin',1672319409,'192.168.64.1',2,36,41603,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ue4xiyadd5tqp0',1,'Admin',1672319409,'192.168.64.1',2,36,41604,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uf4xiyezabv1kf',1,'Admin',1672319409,'192.168.64.1',2,36,41605,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ug4xiyeb8jhwtx',1,'Admin',1672319409,'192.168.64.1',2,36,41912,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uh4xiy9lnzlgnq',1,'Admin',1672319409,'192.168.64.1',2,36,41913,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ui4xiyqqj7qcq3',1,'Admin',1672319409,'192.168.64.1',2,36,41914,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uj4xiy801qvqaa',1,'Admin',1672319409,'192.168.64.1',2,36,41915,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uk4xiym214urti',1,'Admin',1672319409,'192.168.64.1',2,36,41916,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ul4xiynolt5a9j',1,'Admin',1672319409,'192.168.64.1',2,36,41917,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00um4xiyiczgblkn',1,'Admin',1672319409,'192.168.64.1',2,36,41918,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00un4xiyo4tfk8cy',1,'Admin',1672319409,'192.168.64.1',2,36,41919,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uo4xiyyp3mxvi5',1,'Admin',1672319409,'192.168.64.1',2,36,41920,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00up4xiypi8svtwx',1,'Admin',1672319409,'192.168.64.1',2,36,41933,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uq4xiyfqfzi6vu',1,'Admin',1672319409,'192.168.64.1',2,36,41934,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ur4xiyicqbgzgf',1,'Admin',1672319409,'192.168.64.1',2,36,41935,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00us4xiy9z08jsvq',1,'Admin',1672319409,'192.168.64.1',2,36,41936,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ut4xiyhly2sbn5',1,'Admin',1672319409,'192.168.64.1',2,36,41937,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uu4xiy3t2pw42y',1,'Admin',1672319409,'192.168.64.1',2,36,41938,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uv4xiyhq125b1z',1,'Admin',1672319409,'192.168.64.1',2,36,41939,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uw4xiyhmrkkqji',1,'Admin',1672319409,'192.168.64.1',2,36,41940,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ux4xiy7y4uxqku',1,'Admin',1672319409,'192.168.64.1',2,36,41941,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uy4xiya7d0brtt',1,'Admin',1672319409,'192.168.64.1',2,36,41954,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''); INSERT INTO `auditlog` VALUES ('clc93sqcx00uz4xiy9055x5xe',1,'Admin',1672319409,'192.168.64.1',2,36,41955,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v04xiyvrbw015c',1,'Admin',1672319409,'192.168.64.1',2,36,41956,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v14xiyi5l71y7l',1,'Admin',1672319409,'192.168.64.1',2,36,41957,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v24xiyiepd1f2t',1,'Admin',1672319409,'192.168.64.1',2,36,41958,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v34xiy3fz416ci',1,'Admin',1672319409,'192.168.64.1',2,36,41959,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v44xiyv8tdj1m6',1,'Admin',1672319409,'192.168.64.1',2,36,41960,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v54xiyhyd97esq',1,'Admin',1672319409,'192.168.64.1',2,36,41961,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v64xiyfuf36a2h',1,'Admin',1672319409,'192.168.64.1',2,36,41962,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v74xiyswu2pc8u',1,'Admin',1672319409,'192.168.64.1',2,36,41975,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v84xiyffrd20d9',1,'Admin',1672319409,'192.168.64.1',2,36,41976,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v94xiytfeaywzz',1,'Admin',1672319409,'192.168.64.1',2,36,41977,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00va4xiybwi6a6h0',1,'Admin',1672319409,'192.168.64.1',2,36,41978,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vb4xiy0jvx4wy3',1,'Admin',1672319409,'192.168.64.1',2,36,41979,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vc4xiyg0wymrnr',1,'Admin',1672319409,'192.168.64.1',2,36,41980,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vd4xiy67axyaut',1,'Admin',1672319409,'192.168.64.1',2,36,41981,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ve4xiy0zzqs3kk',1,'Admin',1672319409,'192.168.64.1',2,36,41982,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vf4xiyo4fm5795',1,'Admin',1672319409,'192.168.64.1',2,36,41983,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vg4xiyhvx0tb2y',1,'Admin',1672319409,'192.168.64.1',2,36,41996,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vh4xiyw2wivk2j',1,'Admin',1672319409,'192.168.64.1',2,36,41997,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vi4xiy4m7kmtij',1,'Admin',1672319409,'192.168.64.1',2,36,41998,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vj4xiys9kiwnkx',1,'Admin',1672319409,'192.168.64.1',2,36,41999,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vk4xiywj3kgq4v',1,'Admin',1672319409,'192.168.64.1',2,36,42000,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vl4xiy7c05xitb',1,'Admin',1672319409,'192.168.64.1',2,36,42001,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vm4xiy2mdw924z',1,'Admin',1672319409,'192.168.64.1',2,36,42002,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vn4xiyklufa7e8',1,'Admin',1672319409,'192.168.64.1',2,36,42003,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vo4xiy62486tq4',1,'Admin',1672319409,'192.168.64.1',2,36,42004,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vp4xiy2p2nld9s',1,'Admin',1672319409,'192.168.64.1',2,36,42080,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vq4xiyeogr9ou6',1,'Admin',1672319409,'192.168.64.1',2,36,42081,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vr4xiybd75ijae',1,'Admin',1672319409,'192.168.64.1',2,36,42082,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vs4xiyjw1g9xmt',1,'Admin',1672319409,'192.168.64.1',2,36,42083,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vt4xiye3bxc9t6',1,'Admin',1672319409,'192.168.64.1',2,36,42084,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vu4xiybatgfe1q',1,'Admin',1672319409,'192.168.64.1',2,36,42085,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vv4xiyzovt60rz',1,'Admin',1672319409,'192.168.64.1',2,36,42086,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vw4xiyfk39y9my',1,'Admin',1672319409,'192.168.64.1',2,36,42087,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vx4xiy2oiogdgh',1,'Admin',1672319409,'192.168.64.1',2,36,42088,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300vy4xiywax946tn',1,'Admin',1672319409,'192.168.64.1',2,15,23035,NULL,'Maximum number of opened files','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300vz4xiyzdi7it92',1,'Admin',1672319409,'192.168.64.1',2,15,23036,NULL,'Maximum number of processes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w04xiyhhqc8ezk',1,'Admin',1672319409,'192.168.64.1',2,15,23039,NULL,'Host boot time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w14xiyjpntaekg',1,'Admin',1672319409,'192.168.64.1',2,15,23041,NULL,'Processor load (15 min average per core)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w24xiyoelny0xm',1,'Admin',1672319409,'192.168.64.1',2,15,23042,NULL,'Processor load (1 min average per core)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w34xiyccllbako',1,'Admin',1672319409,'192.168.64.1',2,15,23043,NULL,'Processor load (5 min average per core)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w44xiyklh43jxl',1,'Admin',1672319409,'192.168.64.1',2,15,23053,NULL,'Host name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w54xiykrxx8zmq',1,'Admin',1672319409,'192.168.64.1',2,15,23054,NULL,'Host local time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w64xiy1gc94yzc',1,'Admin',1672319409,'192.168.64.1',2,15,23058,NULL,'System information','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w74xiygegipj3j',1,'Admin',1672319409,'192.168.64.1',2,15,23059,NULL,'System uptime','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w84xiyxx94afzc',1,'Admin',1672319409,'192.168.64.1',2,15,23060,NULL,'Number of logged in users','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w94xiy0tgp3t2d',1,'Admin',1672319409,'192.168.64.1',2,15,23061,NULL,'Checksum of /etc/passwd','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wa4xiyuwpc6q5n',1,'Admin',1672319409,'192.168.64.1',2,15,23062,NULL,'Available memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wb4xiybgdhmps0',1,'Admin',1672319409,'192.168.64.1',2,15,23063,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wc4xiyxbm14sbj',1,'Admin',1672319409,'192.168.64.1',2,15,23077,NULL,'Incoming network traffic on en0','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wd4xiyvkfdpv1i',1,'Admin',1672319409,'192.168.64.1',2,15,23078,NULL,'Outgoing network traffic on en0','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300we4xiyih3ajhz8',1,'Admin',1672319409,'192.168.64.1',2,15,27893,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wf4xiystg47sg9',1,'Admin',1672319409,'192.168.64.1',2,15,27894,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wg4xiyg5qkkgyj',1,'Admin',1672319409,'192.168.64.1',2,15,27895,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wh4xiyr8oph5yt',1,'Admin',1672319409,'192.168.64.1',2,15,27898,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wi4xiyvefhdxej',1,'Admin',1672319409,'192.168.64.1',2,15,27900,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wj4xiym6v5k227',1,'Admin',1672319409,'192.168.64.1',2,15,28978,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wk4xiy3koh86wl',1,'Admin',1672319409,'192.168.64.1',2,15,28979,NULL,'Free memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wl4xiyckn748i1',1,'Admin',1672319409,'192.168.64.1',2,15,28980,NULL,'Memory (buffers)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wm4xiys2wm5dac',1,'Admin',1672319409,'192.168.64.1',2,15,28981,NULL,'Memory (cached)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wn4xiy8pt0um2q',1,'Admin',1672319409,'192.168.64.1',2,15,28982,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wo4xiygsmw4wij',1,'Admin',1672319409,'192.168.64.1',2,15,28983,NULL,'Available memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wp4xiygwsjf6k2',1,'Admin',1672319409,'192.168.64.1',2,15,28984,NULL,'Total swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wq4xiy08qzyebm',1,'Admin',1672319409,'192.168.64.1',2,15,28985,NULL,'Free swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wr4xiy97rfr3k3',1,'Admin',1672319409,'192.168.64.1',2,15,28986,NULL,'Free swap space in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ws4xiyggnalf7t',1,'Admin',1672319409,'192.168.64.1',2,15,29103,NULL,'Available memory in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wt4xiye5g5uivx',1,'Admin',1672319409,'192.168.64.1',2,15,29104,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wu4xiysa699jy1',1,'Admin',1672319409,'192.168.64.1',2,15,29105,NULL,'Available memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wv4xiyzkd6vexc',1,'Admin',1672319409,'192.168.64.1',2,15,29106,NULL,'Total swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ww4xiyh6xiqb04',1,'Admin',1672319409,'192.168.64.1',2,15,29107,NULL,'Free swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wx4xiy75yk70b8',1,'Admin',1672319409,'192.168.64.1',2,15,29108,NULL,'Free swap space in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wy4xiy7y9646ub',1,'Admin',1672319409,'192.168.64.1',2,15,30119,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wz4xiyb4y4oqxz',1,'Admin',1672319409,'192.168.64.1',2,15,30120,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x04xiy0cpcnvt9',1,'Admin',1672319409,'192.168.64.1',2,15,30611,NULL,'Memcached: Ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x14xiyq4am4cm0',1,'Admin',1672319409,'192.168.64.1',2,15,30612,NULL,'Memcached: Get status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x24xiy7pg5757q',1,'Admin',1672319409,'192.168.64.1',2,15,30613,NULL,'Memcached: Commands: FLUSH per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x34xiyorrmsaap',1,'Admin',1672319409,'192.168.64.1',2,15,30614,NULL,'Memcached: Bytes used','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x44xiy6pupiond',1,'Admin',1672319409,'192.168.64.1',2,15,30615,NULL,'Memcached: Uptime','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x54xiyfz6iguae',1,'Admin',1672319409,'192.168.64.1',2,15,30616,NULL,'Memcached: New items per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x64xiyzkw3uinl',1,'Admin',1672319409,'192.168.64.1',2,15,30617,NULL,'Memcached: Threads','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x74xiyuftax92b',1,'Admin',1672319409,'192.168.64.1',2,15,30618,NULL,'Memcached: Misses per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x84xiyfh7dx8cr',1,'Admin',1672319409,'192.168.64.1',2,15,30619,NULL,'Memcached: Hits per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x94xiymlnpv6w0',1,'Admin',1672319409,'192.168.64.1',2,15,30620,NULL,'Memcached: Evictions per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xa4xiyv2wawvy4',1,'Admin',1672319409,'192.168.64.1',2,15,30621,NULL,'Memcached: Current number of items stored','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xb4xiytr64j4wg',1,'Admin',1672319409,'192.168.64.1',2,15,30622,NULL,'Memcached: Written bytes per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xc4xiyglhbs9r5',1,'Admin',1672319409,'192.168.64.1',2,15,30623,NULL,'Memcached: Read bytes per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xd4xiy034rgspe',1,'Admin',1672319409,'192.168.64.1',2,15,30624,NULL,'Memcached: Process id','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xe4xiycd9nu9a5',1,'Admin',1672319409,'192.168.64.1',2,15,30625,NULL,'Memcached: Commands: GET per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xf4xiyp9v0pc0c',1,'Admin',1672319409,'192.168.64.1',2,15,30626,NULL,'Memcached: CPU user','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xg4xiyno6y5qx3',1,'Admin',1672319409,'192.168.64.1',2,15,30627,NULL,'Memcached: CPU sys','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xh4xiyax77ifuh',1,'Admin',1672319409,'192.168.64.1',2,15,30628,NULL,'Memcached: Throttled connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xi4xiy7gyptpik',1,'Admin',1672319409,'192.168.64.1',2,15,30629,NULL,'Memcached: Connection structures','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xj4xiylgenjmb0',1,'Admin',1672319409,'192.168.64.1',2,15,30630,NULL,'Memcached: New connections per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xk4xiykwp2bnjv',1,'Admin',1672319409,'192.168.64.1',2,15,30631,NULL,'Memcached: Queued connections per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xl4xiykjb7a8ue',1,'Admin',1672319409,'192.168.64.1',2,15,30632,NULL,'Memcached: Max connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xm4xiyeb6qcdvb',1,'Admin',1672319409,'192.168.64.1',2,15,30633,NULL,'Memcached: Open connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xn4xiyb2q7la53',1,'Admin',1672319409,'192.168.64.1',2,15,30634,NULL,'Memcached: Maximum number of bytes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xo4xiypm4dh5l4',1,'Admin',1672319409,'192.168.64.1',2,15,30635,NULL,'Memcached: Commands: SET per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xp4xiys5rivu2f',1,'Admin',1672319409,'192.168.64.1',2,15,30636,NULL,'Memcached: Memcached version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xq4xiyqxzpxz9a',1,'Admin',1672319409,'192.168.64.1',2,15,31364,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xr4xiykabmgx0e',1,'Admin',1672319409,'192.168.64.1',2,15,31836,NULL,'Maximum number of open file descriptors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xs4xiydassen6f',1,'Admin',1672319409,'192.168.64.1',2,15,31837,NULL,'Maximum number of processes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xt4xiyj6d5542q',1,'Admin',1672319409,'192.168.64.1',2,15,31838,NULL,'Number of processes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xu4xiyqa2m493p',1,'Admin',1672319409,'192.168.64.1',2,15,31839,NULL,'Number of running processes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xv4xiyihwklmwh',1,'Admin',1672319409,'192.168.64.1',2,15,31840,NULL,'System boot time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xw4xiycv2wfre8',1,'Admin',1672319409,'192.168.64.1',2,15,31841,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xx4xiyee5hyx8p',1,'Admin',1672319409,'192.168.64.1',2,15,31842,NULL,'System local time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xy4xiynj9rzi3f',1,'Admin',1672319409,'192.168.64.1',2,15,31843,NULL,'Operating system architecture','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xz4xiyd8hpsbuk',1,'Admin',1672319409,'192.168.64.1',2,15,31844,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y04xiyolxtn0zb',1,'Admin',1672319409,'192.168.64.1',2,15,31845,NULL,'Software installed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y14xiy7rh5w2ky',1,'Admin',1672319409,'192.168.64.1',2,15,31846,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y24xiyaylbzg6i',1,'Admin',1672319409,'192.168.64.1',2,15,31847,NULL,'System uptime','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y34xiyuyqa3ofp',1,'Admin',1672319409,'192.168.64.1',2,15,31848,NULL,'Number of logged in users','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y44xiyttelns52',1,'Admin',1672319409,'192.168.64.1',2,15,31849,NULL,'Checksum of /etc/passwd','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y54xiysheh6twv',1,'Admin',1672319409,'192.168.64.1',2,15,31850,NULL,'Free swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y64xiyprqajx79',1,'Admin',1672319409,'192.168.64.1',2,15,31851,NULL,'Free swap space in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y74xiyf4hizyrp',1,'Admin',1672319409,'192.168.64.1',2,15,31852,NULL,'Total swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y84xiywwh97wnq',1,'Admin',1672319409,'192.168.64.1',2,15,31853,NULL,'Available memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y94xiymxwo22bl',1,'Admin',1672319409,'192.168.64.1',2,15,31854,NULL,'Available memory in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ya4xiylvdadczl',1,'Admin',1672319409,'192.168.64.1',2,15,31855,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yb4xiy5lfvx8lt',1,'Admin',1672319409,'192.168.64.1',2,15,31893,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yc4xiynek7lg8d',1,'Admin',1672319409,'192.168.64.1',2,15,32516,NULL,'MS Exchange: Databases total mounted','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yd4xiysyzh7yoo',1,'Admin',1672319409,'192.168.64.1',2,15,32517,NULL,'MS Exchange [Client Access Server]: ActiveSync: ping command pending','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ye4xiyiw2tlib0',1,'Admin',1672319409,'192.168.64.1',2,15,32518,NULL,'MS Exchange [Client Access Server]: ActiveSync: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yf4xiym4aw5soc',1,'Admin',1672319409,'192.168.64.1',2,15,32519,NULL,'MS Exchange [Client Access Server]: ActiveSync: sync commands per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yg4xiyyd0rq6mv',1,'Admin',1672319409,'192.168.64.1',2,15,32520,NULL,'MS Exchange [Client Access Server]: Autodiscover: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yh4xiybtc82flu',1,'Admin',1672319409,'192.168.64.1',2,15,32521,NULL,'MS Exchange [Client Access Server]: Availability Service: availability requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yi4xiyzkp65sh7',1,'Admin',1672319409,'192.168.64.1',2,15,32522,NULL,'MS Exchange [Client Access Server]: Outlook Web App: current unique users','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yj4xiy23cso1wq',1,'Admin',1672319409,'192.168.64.1',2,15,32523,NULL,'MS Exchange [Client Access Server]: Outlook Web App: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yk4xiykotdnyam',1,'Admin',1672319409,'192.168.64.1',2,15,32524,NULL,'MS Exchange [Client Access Server]: MSExchangeWS: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yl4xiyhw8vkmuy',1,'Admin',1672319409,'192.168.64.1',2,15,32546,NULL,'MS Exchange: Databases total mounted','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ym4xiydgsqzlcl',1,'Admin',1672319409,'192.168.64.1',2,15,32547,NULL,'MS Exchange [Client Access Server]: ActiveSync: ping command pending','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yn4xiyz2l1ziqr',1,'Admin',1672319409,'192.168.64.1',2,15,32548,NULL,'MS Exchange [Client Access Server]: ActiveSync: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yo4xiykxha2kfu',1,'Admin',1672319409,'192.168.64.1',2,15,32549,NULL,'MS Exchange [Client Access Server]: ActiveSync: sync commands per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yp4xiy3dj2674a',1,'Admin',1672319409,'192.168.64.1',2,15,32550,NULL,'MS Exchange [Client Access Server]: Autodiscover: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yq4xiy24iidxrv',1,'Admin',1672319409,'192.168.64.1',2,15,32551,NULL,'MS Exchange [Client Access Server]: Availability Service: availability requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yr4xiydxu8ls25',1,'Admin',1672319409,'192.168.64.1',2,15,32552,NULL,'MS Exchange [Client Access Server]: Outlook Web App: current unique users','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ys4xiy1sgo6bk2',1,'Admin',1672319409,'192.168.64.1',2,15,32553,NULL,'MS Exchange [Client Access Server]: Outlook Web App: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yt4xiyp9jdka9m',1,'Admin',1672319409,'192.168.64.1',2,15,32554,NULL,'MS Exchange [Client Access Server]: MSExchangeWS: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yu4xiypw0aer1f',1,'Admin',1672319409,'192.168.64.1',2,15,33630,NULL,'Sharepoint: Get directory structure','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yv4xiyablc87fw',1,'Admin',1672319409,'192.168.64.1',2,15,33631,NULL,'Sharepoint: Health score','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yw4xiymjaie1ph',1,'Admin',1672319409,'192.168.64.1',2,15,33632,NULL,'Sharepoint: Get directory structure: Status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yx4xiy7c7qxirf',1,'Admin',1672319409,'192.168.64.1',2,15,33633,NULL,'Sharepoint: Get directory structure: Exec time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yy4xiymz3ogr2m',1,'Admin',1672319409,'192.168.64.1',2,15,34149,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yz4xiyf1eko7vw',1,'Admin',1672319409,'192.168.64.1',2,15,34150,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z04xiynu1a61fw',1,'Admin',1672319409,'192.168.64.1',2,15,34151,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z14xiyf2kxyn6a',1,'Admin',1672319409,'192.168.64.1',2,15,34152,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z24xiyqdq7epni',1,'Admin',1672319409,'192.168.64.1',2,15,34153,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z34xiyfeh5051y',1,'Admin',1672319409,'192.168.64.1',2,15,34154,NULL,'CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z44xiyuk3tvrvt',1,'Admin',1672319409,'192.168.64.1',2,15,34155,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z54xiy85icnzpe',1,'Admin',1672319409,'192.168.64.1',2,15,34156,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z64xiyikxj9t8b',1,'Admin',1672319409,'192.168.64.1',2,15,34157,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z74xiyi3xp1uc1',1,'Admin',1672319409,'192.168.64.1',2,15,34158,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z84xiyze3hsp9g',1,'Admin',1672319409,'192.168.64.1',2,15,34159,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z94xiyukpm5870',1,'Admin',1672319409,'192.168.64.1',2,15,34160,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300za4xiyzry5u1nu',1,'Admin',1672319409,'192.168.64.1',2,15,36847,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zb4xiykzk2kfhd',1,'Admin',1672319409,'192.168.64.1',2,15,36848,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zc4xiyd6g4f7wx',1,'Admin',1672319409,'192.168.64.1',2,15,36849,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zd4xiyff52i7ij',1,'Admin',1672319409,'192.168.64.1',2,15,36850,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ze4xiyw6vrnmds',1,'Admin',1672319409,'192.168.64.1',2,15,36851,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zf4xiy8c7royt3',1,'Admin',1672319409,'192.168.64.1',2,15,36852,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zg4xiy2f2k05s0',1,'Admin',1672319409,'192.168.64.1',2,15,36853,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zh4xiyg2qca50l',1,'Admin',1672319409,'192.168.64.1',2,15,36901,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zi4xiy277cgh63',1,'Admin',1672319409,'192.168.64.1',2,15,36902,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zj4xiywjorw5vn',1,'Admin',1672319409,'192.168.64.1',2,15,36903,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zk4xiyar84k935',1,'Admin',1672319409,'192.168.64.1',2,15,36904,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zl4xiydrmgjbeq',1,'Admin',1672319409,'192.168.64.1',2,15,36905,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zm4xiy5wpsoi24',1,'Admin',1672319409,'192.168.64.1',2,15,36906,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zn4xiy1xdgb6ew',1,'Admin',1672319409,'192.168.64.1',2,15,36907,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zo4xiyp8yak29u',1,'Admin',1672319409,'192.168.64.1',2,15,36955,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zp4xiyagh2ztau',1,'Admin',1672319409,'192.168.64.1',2,15,36956,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zq4xiyg74v4nyt',1,'Admin',1672319409,'192.168.64.1',2,15,36957,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zr4xiyz2zww0s8',1,'Admin',1672319409,'192.168.64.1',2,15,36958,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zs4xiyjnfxq847',1,'Admin',1672319409,'192.168.64.1',2,15,36959,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zt4xiymcd1eqww',1,'Admin',1672319409,'192.168.64.1',2,15,36960,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zu4xiy2pqlww8k',1,'Admin',1672319409,'192.168.64.1',2,15,36961,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zv4xiyn0hx9kti',1,'Admin',1672319409,'192.168.64.1',2,15,37009,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zw4xiydat99fmc',1,'Admin',1672319409,'192.168.64.1',2,15,37010,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zx4xiymyeoch2j',1,'Admin',1672319409,'192.168.64.1',2,15,37011,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zy4xiyk4uzv0hx',1,'Admin',1672319409,'192.168.64.1',2,15,37012,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zz4xiy624q2rb3',1,'Admin',1672319409,'192.168.64.1',2,15,37013,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301004xiykefsz3vj',1,'Admin',1672319409,'192.168.64.1',2,15,37014,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301014xiyvkp2uust',1,'Admin',1672319409,'192.168.64.1',2,15,37015,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301024xiyzowja70h',1,'Admin',1672319409,'192.168.64.1',2,15,37063,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301034xiyqbuag8vg',1,'Admin',1672319409,'192.168.64.1',2,15,37064,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301044xiy2zcmn7hp',1,'Admin',1672319409,'192.168.64.1',2,15,37065,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301054xiyj18dkiu4',1,'Admin',1672319409,'192.168.64.1',2,15,37066,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301064xiy5g8xqmno',1,'Admin',1672319409,'192.168.64.1',2,15,37067,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301074xiyfffysc67',1,'Admin',1672319409,'192.168.64.1',2,15,37068,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301084xiys8c6jvtp',1,'Admin',1672319409,'192.168.64.1',2,15,37069,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301094xiyg9xawpwn',1,'Admin',1672319409,'192.168.64.1',2,15,37117,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010a4xiy427wxb48',1,'Admin',1672319409,'192.168.64.1',2,15,37118,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010b4xiygw8ge2gd',1,'Admin',1672319409,'192.168.64.1',2,15,37119,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010c4xiy46nlx2bp',1,'Admin',1672319409,'192.168.64.1',2,15,37120,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010d4xiy4aoynga6',1,'Admin',1672319409,'192.168.64.1',2,15,37121,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010e4xiypcouagmv',1,'Admin',1672319409,'192.168.64.1',2,15,37122,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010f4xiy63bio8pq',1,'Admin',1672319409,'192.168.64.1',2,15,37123,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010g4xiydusgvmcy',1,'Admin',1672319409,'192.168.64.1',2,15,37171,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010h4xiyb8xe9afj',1,'Admin',1672319409,'192.168.64.1',2,15,37172,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010i4xiyibd8m9y7',1,'Admin',1672319409,'192.168.64.1',2,15,37173,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010j4xiy8llf4bpf',1,'Admin',1672319409,'192.168.64.1',2,15,37174,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010k4xiy5ojc335d',1,'Admin',1672319409,'192.168.64.1',2,15,37175,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010l4xiyj5aww3zv',1,'Admin',1672319409,'192.168.64.1',2,15,37176,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010m4xiyefehr1l7',1,'Admin',1672319409,'192.168.64.1',2,15,37177,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010n4xiyjla36qmd',1,'Admin',1672319409,'192.168.64.1',2,15,37225,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010o4xiynu0jmza1',1,'Admin',1672319409,'192.168.64.1',2,15,37226,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010p4xiyulsv291b',1,'Admin',1672319409,'192.168.64.1',2,15,37227,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010q4xiy1rsl1hzp',1,'Admin',1672319409,'192.168.64.1',2,15,37228,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010r4xiysqw2sup7',1,'Admin',1672319409,'192.168.64.1',2,15,37229,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010s4xiyyp28ssc0',1,'Admin',1672319409,'192.168.64.1',2,15,37230,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010t4xiyh4m7xhi4',1,'Admin',1672319409,'192.168.64.1',2,15,37231,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010u4xiyfkbfqcw9',1,'Admin',1672319409,'192.168.64.1',2,15,37279,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010v4xiyv97o3w1g',1,'Admin',1672319409,'192.168.64.1',2,15,37280,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010w4xiybexlo6qy',1,'Admin',1672319409,'192.168.64.1',2,15,37281,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010x4xiyud53vtwv',1,'Admin',1672319409,'192.168.64.1',2,15,37282,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010y4xiy0bly33le',1,'Admin',1672319409,'192.168.64.1',2,15,37283,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010z4xiyqc08cdzy',1,'Admin',1672319409,'192.168.64.1',2,15,37284,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301104xiyy8uzfqht',1,'Admin',1672319409,'192.168.64.1',2,15,37285,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301114xiy4i8vkfkv',1,'Admin',1672319409,'192.168.64.1',2,15,37333,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301124xiy4gpu2cht',1,'Admin',1672319409,'192.168.64.1',2,15,37334,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301134xiy7snhm06e',1,'Admin',1672319409,'192.168.64.1',2,15,37335,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301144xiyj2xq1hgr',1,'Admin',1672319409,'192.168.64.1',2,15,37336,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301154xiyscsibg80',1,'Admin',1672319409,'192.168.64.1',2,15,37337,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301164xiyymzdl3ed',1,'Admin',1672319409,'192.168.64.1',2,15,37338,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301174xiyvyf0hnvm',1,'Admin',1672319409,'192.168.64.1',2,15,37339,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301184xiymag2a7cn',1,'Admin',1672319409,'192.168.64.1',2,15,37387,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301194xiyisfh7805',1,'Admin',1672319409,'192.168.64.1',2,15,37388,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011a4xiymt7mhuvm',1,'Admin',1672319409,'192.168.64.1',2,15,37389,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011b4xiyfm38ibuk',1,'Admin',1672319409,'192.168.64.1',2,15,37390,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011c4xiy1foycmuk',1,'Admin',1672319409,'192.168.64.1',2,15,37391,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011d4xiyo0uttuid',1,'Admin',1672319409,'192.168.64.1',2,15,37392,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011e4xiyymfq3om3',1,'Admin',1672319409,'192.168.64.1',2,15,37393,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011f4xiy3r8h6v5o',1,'Admin',1672319409,'192.168.64.1',2,15,37441,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011g4xiydaa04jxv',1,'Admin',1672319409,'192.168.64.1',2,15,37442,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011h4xiyulzmweig',1,'Admin',1672319409,'192.168.64.1',2,15,37443,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011i4xiy2u1vxows',1,'Admin',1672319409,'192.168.64.1',2,15,37444,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011j4xiyd0b21ntr',1,'Admin',1672319409,'192.168.64.1',2,15,37445,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011k4xiyqgimab5f',1,'Admin',1672319409,'192.168.64.1',2,15,37446,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011l4xiy6ht753b8',1,'Admin',1672319409,'192.168.64.1',2,15,37447,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011m4xiylo4uw0uo',1,'Admin',1672319409,'192.168.64.1',2,15,37495,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011n4xiyw7i606y2',1,'Admin',1672319409,'192.168.64.1',2,15,37496,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011o4xiy9o1xg7y1',1,'Admin',1672319409,'192.168.64.1',2,15,37497,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011p4xiyx5192dgh',1,'Admin',1672319409,'192.168.64.1',2,15,37498,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011q4xiyo8vkzz56',1,'Admin',1672319409,'192.168.64.1',2,15,37499,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011r4xiycvm79h6w',1,'Admin',1672319409,'192.168.64.1',2,15,37500,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011s4xiyvjv4gz96',1,'Admin',1672319409,'192.168.64.1',2,15,37501,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011t4xiyxum3clqr',1,'Admin',1672319409,'192.168.64.1',2,15,37549,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011u4xiyarddrdan',1,'Admin',1672319409,'192.168.64.1',2,15,37550,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011v4xiyd3bccbmb',1,'Admin',1672319409,'192.168.64.1',2,15,37551,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011w4xiy64zaotyt',1,'Admin',1672319409,'192.168.64.1',2,15,37552,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011x4xiybbbqzpoc',1,'Admin',1672319409,'192.168.64.1',2,15,37553,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011y4xiyazqeayo6',1,'Admin',1672319409,'192.168.64.1',2,15,37554,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011z4xiyfy1ek7u9',1,'Admin',1672319409,'192.168.64.1',2,15,37555,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301204xiy518urq5q',1,'Admin',1672319409,'192.168.64.1',2,15,37603,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301214xiyr80mvukf',1,'Admin',1672319409,'192.168.64.1',2,15,37604,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301224xiycsv3renk',1,'Admin',1672319409,'192.168.64.1',2,15,37605,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301234xiywymsdpui',1,'Admin',1672319409,'192.168.64.1',2,15,37606,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301244xiyt3bzrzhi',1,'Admin',1672319409,'192.168.64.1',2,15,37607,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301254xiydco8p914',1,'Admin',1672319409,'192.168.64.1',2,15,37608,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301264xiy8x5fppz6',1,'Admin',1672319409,'192.168.64.1',2,15,37609,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301274xiyb12dephm',1,'Admin',1672319409,'192.168.64.1',2,15,37657,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301284xiyylblfwc2',1,'Admin',1672319409,'192.168.64.1',2,15,37658,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301294xiyecz86amr',1,'Admin',1672319409,'192.168.64.1',2,15,37659,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012a4xiypt8kqrwn',1,'Admin',1672319409,'192.168.64.1',2,15,37660,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012b4xiytx5s7704',1,'Admin',1672319409,'192.168.64.1',2,15,37661,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012c4xiyvjkf29ex',1,'Admin',1672319409,'192.168.64.1',2,15,37662,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012d4xiyhw0gawux',1,'Admin',1672319409,'192.168.64.1',2,15,37663,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012e4xiyjn8xkcuk',1,'Admin',1672319409,'192.168.64.1',2,15,37711,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012f4xiy9w3jtwk2',1,'Admin',1672319409,'192.168.64.1',2,15,37712,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012g4xiyee3xgqjo',1,'Admin',1672319409,'192.168.64.1',2,15,37713,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012h4xiydjv30xa7',1,'Admin',1672319409,'192.168.64.1',2,15,37714,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012i4xiyym4972k9',1,'Admin',1672319409,'192.168.64.1',2,15,37715,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012j4xiy0oiozocq',1,'Admin',1672319409,'192.168.64.1',2,15,37716,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012k4xiy4v8rtlgc',1,'Admin',1672319409,'192.168.64.1',2,15,37717,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012l4xiy9f84dp9g',1,'Admin',1672319409,'192.168.64.1',2,15,37765,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012m4xiy0o609wvk',1,'Admin',1672319409,'192.168.64.1',2,15,37766,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012n4xiy8b413jj4',1,'Admin',1672319409,'192.168.64.1',2,15,37767,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012o4xiy5q86rjk7',1,'Admin',1672319409,'192.168.64.1',2,15,37768,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012p4xiyyvron9di',1,'Admin',1672319409,'192.168.64.1',2,15,37769,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012q4xiyzmb7l6ye',1,'Admin',1672319409,'192.168.64.1',2,15,37770,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012r4xiynmi1x5ge',1,'Admin',1672319409,'192.168.64.1',2,15,37771,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012s4xiy018wivjw',1,'Admin',1672319409,'192.168.64.1',2,15,37819,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012t4xiyhwoaggkc',1,'Admin',1672319409,'192.168.64.1',2,15,37820,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012u4xiyi7s0os5r',1,'Admin',1672319409,'192.168.64.1',2,15,37821,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012v4xiyv6wpcqh2',1,'Admin',1672319409,'192.168.64.1',2,15,37822,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012w4xiy8kq0rv29',1,'Admin',1672319409,'192.168.64.1',2,15,37823,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012x4xiy9m8sug42',1,'Admin',1672319409,'192.168.64.1',2,15,37824,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012y4xiyoqcf58cc',1,'Admin',1672319409,'192.168.64.1',2,15,37825,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012z4xiy7dyo47c5',1,'Admin',1672319409,'192.168.64.1',2,15,37873,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301304xiyfh252ybv',1,'Admin',1672319409,'192.168.64.1',2,15,37874,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301314xiy0gb2rgib',1,'Admin',1672319409,'192.168.64.1',2,15,37875,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301324xiyv41btr91',1,'Admin',1672319409,'192.168.64.1',2,15,37876,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301334xiybhrlr2j0',1,'Admin',1672319409,'192.168.64.1',2,15,37877,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301344xiy9774x8f3',1,'Admin',1672319409,'192.168.64.1',2,15,37878,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301354xiycxdulj0d',1,'Admin',1672319409,'192.168.64.1',2,15,37879,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301364xiy6lgqsa2e',1,'Admin',1672319409,'192.168.64.1',2,15,37927,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301374xiyzwgx58en',1,'Admin',1672319409,'192.168.64.1',2,15,37928,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301384xiyqulfcn99',1,'Admin',1672319409,'192.168.64.1',2,15,37929,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301394xiyc1l70n8x',1,'Admin',1672319409,'192.168.64.1',2,15,37930,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013a4xiydgikoh8q',1,'Admin',1672319409,'192.168.64.1',2,15,37931,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013b4xiyf84b3som',1,'Admin',1672319409,'192.168.64.1',2,15,37932,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013c4xiy8v8nmr7o',1,'Admin',1672319409,'192.168.64.1',2,15,37933,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013d4xiy8lpom1qj',1,'Admin',1672319409,'192.168.64.1',2,15,37981,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013e4xiyyipf3ygv',1,'Admin',1672319409,'192.168.64.1',2,15,37982,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013f4xiynilhv6sb',1,'Admin',1672319409,'192.168.64.1',2,15,37983,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013g4xiy2ofheabd',1,'Admin',1672319409,'192.168.64.1',2,15,37984,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013h4xiyeonloct5',1,'Admin',1672319409,'192.168.64.1',2,15,37985,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013i4xiy7cz2iopk',1,'Admin',1672319409,'192.168.64.1',2,15,37986,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013j4xiykbdoxbw1',1,'Admin',1672319409,'192.168.64.1',2,15,37987,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013k4xiyjgsx3fbq',1,'Admin',1672319409,'192.168.64.1',2,15,38035,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013l4xiyaaf0chfc',1,'Admin',1672319409,'192.168.64.1',2,15,38036,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013m4xiy4aztzv16',1,'Admin',1672319409,'192.168.64.1',2,15,38037,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013n4xiy9nglpxip',1,'Admin',1672319409,'192.168.64.1',2,15,38038,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013o4xiy7z2is27g',1,'Admin',1672319409,'192.168.64.1',2,15,38039,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013p4xiybosz9c5u',1,'Admin',1672319409,'192.168.64.1',2,15,38040,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013q4xiyhisss3ok',1,'Admin',1672319409,'192.168.64.1',2,15,38041,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013r4xiy2knpf4gk',1,'Admin',1672319409,'192.168.64.1',2,15,38089,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013s4xiyx1a98lee',1,'Admin',1672319409,'192.168.64.1',2,15,38090,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013t4xiyxdyeno06',1,'Admin',1672319409,'192.168.64.1',2,15,38091,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013u4xiygsbs19th',1,'Admin',1672319409,'192.168.64.1',2,15,38092,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013v4xiy310p2cg2',1,'Admin',1672319409,'192.168.64.1',2,15,38093,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013w4xiyfpi5c19f',1,'Admin',1672319409,'192.168.64.1',2,15,38094,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013x4xiynelq5m8d',1,'Admin',1672319409,'192.168.64.1',2,15,38095,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013y4xiyrnex3q8j',1,'Admin',1672319409,'192.168.64.1',2,15,38143,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013z4xiypnqlyvnj',1,'Admin',1672319409,'192.168.64.1',2,15,38144,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301404xiybywrwpgt',1,'Admin',1672319409,'192.168.64.1',2,15,38145,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301414xiyv9msugt1',1,'Admin',1672319409,'192.168.64.1',2,15,38146,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301424xiyylrw7j50',1,'Admin',1672319409,'192.168.64.1',2,15,38147,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301434xiyu4uocqyj',1,'Admin',1672319409,'192.168.64.1',2,15,38148,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301444xiy9ikqmat8',1,'Admin',1672319409,'192.168.64.1',2,15,38149,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301454xiys3u6k7zs',1,'Admin',1672319409,'192.168.64.1',2,15,38197,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301464xiy0cpg5x8a',1,'Admin',1672319409,'192.168.64.1',2,15,38198,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301474xiym8q7eke7',1,'Admin',1672319409,'192.168.64.1',2,15,38199,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301484xiy06b76k45',1,'Admin',1672319409,'192.168.64.1',2,15,38200,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301494xiyijv63oqf',1,'Admin',1672319409,'192.168.64.1',2,15,38201,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014a4xiy8rf4qt44',1,'Admin',1672319409,'192.168.64.1',2,15,38202,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014b4xiyc0l2hvh1',1,'Admin',1672319409,'192.168.64.1',2,15,38203,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014c4xiymgqobw78',1,'Admin',1672319409,'192.168.64.1',2,15,38251,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014d4xiyxbbv5980',1,'Admin',1672319409,'192.168.64.1',2,15,38252,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014e4xiyshkw9ag7',1,'Admin',1672319409,'192.168.64.1',2,15,38253,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014f4xiy2s8emwb4',1,'Admin',1672319409,'192.168.64.1',2,15,38254,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014g4xiydpdy77h6',1,'Admin',1672319409,'192.168.64.1',2,15,38255,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014h4xiyaoj15aqc',1,'Admin',1672319409,'192.168.64.1',2,15,38256,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014i4xiyxlhy0v3z',1,'Admin',1672319409,'192.168.64.1',2,15,38257,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014j4xiydtdfzv9y',1,'Admin',1672319409,'192.168.64.1',2,15,38305,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014k4xiyokacd1pn',1,'Admin',1672319409,'192.168.64.1',2,15,38306,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014l4xiy54yvywg3',1,'Admin',1672319409,'192.168.64.1',2,15,38307,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014m4xiy98w1snt5',1,'Admin',1672319409,'192.168.64.1',2,15,38308,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014n4xiyur4qsgvn',1,'Admin',1672319409,'192.168.64.1',2,15,38309,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014o4xiypo7hxhyt',1,'Admin',1672319409,'192.168.64.1',2,15,38310,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014p4xiyqh0gmn4d',1,'Admin',1672319409,'192.168.64.1',2,15,38311,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014q4xiy01bpjjgo',1,'Admin',1672319409,'192.168.64.1',2,15,38359,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014r4xiyco8eukpy',1,'Admin',1672319409,'192.168.64.1',2,15,38360,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014s4xiysbfj5sgu',1,'Admin',1672319409,'192.168.64.1',2,15,38361,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014t4xiyrx3oaqnd',1,'Admin',1672319409,'192.168.64.1',2,15,38362,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014u4xiymcdbbix8',1,'Admin',1672319409,'192.168.64.1',2,15,38363,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014v4xiyfazbrjb9',1,'Admin',1672319409,'192.168.64.1',2,15,38364,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4014w4xiy70s71dmi',1,'Admin',1672319409,'192.168.64.1',2,15,38365,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4014x4xiykj564054',1,'Admin',1672319409,'192.168.64.1',2,15,38413,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4014y4xiyzxgihbro',1,'Admin',1672319409,'192.168.64.1',2,15,38414,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4014z4xiyy088ncv5',1,'Admin',1672319409,'192.168.64.1',2,15,38415,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401504xiyv3enzn6d',1,'Admin',1672319409,'192.168.64.1',2,15,38416,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401514xiyssmj8n2r',1,'Admin',1672319409,'192.168.64.1',2,15,38417,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401524xiyk1ggjgjk',1,'Admin',1672319409,'192.168.64.1',2,15,38418,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401534xiyq91dcczm',1,'Admin',1672319409,'192.168.64.1',2,15,38419,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401544xiy4bm0cl4q',1,'Admin',1672319409,'192.168.64.1',2,15,38467,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401554xiyzqeaczug',1,'Admin',1672319409,'192.168.64.1',2,15,38468,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401564xiylynn8f2r',1,'Admin',1672319409,'192.168.64.1',2,15,38469,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401574xiydkh0jphm',1,'Admin',1672319409,'192.168.64.1',2,15,38470,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401584xiyctrvuj3y',1,'Admin',1672319409,'192.168.64.1',2,15,38471,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401594xiy41b0uj0m',1,'Admin',1672319409,'192.168.64.1',2,15,38472,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015a4xiy2b2l2gmu',1,'Admin',1672319409,'192.168.64.1',2,15,38473,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015b4xiynku2ihlu',1,'Admin',1672319409,'192.168.64.1',2,15,38521,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015c4xiy0pl024ot',1,'Admin',1672319409,'192.168.64.1',2,15,38522,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015d4xiy96vihevw',1,'Admin',1672319409,'192.168.64.1',2,15,38523,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015e4xiybrauqdtp',1,'Admin',1672319409,'192.168.64.1',2,15,38524,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015f4xiyu15syzed',1,'Admin',1672319409,'192.168.64.1',2,15,38525,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015g4xiy3ucwneol',1,'Admin',1672319409,'192.168.64.1',2,15,38526,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015h4xiyrk6cuje7',1,'Admin',1672319409,'192.168.64.1',2,15,38527,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015i4xiyp7ggj4jz',1,'Admin',1672319409,'192.168.64.1',2,15,39331,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015j4xiyw8i8en3h',1,'Admin',1672319409,'192.168.64.1',2,15,39332,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015k4xiydbmdi1jq',1,'Admin',1672319409,'192.168.64.1',2,15,39333,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015l4xiyk8zhglkd',1,'Admin',1672319409,'192.168.64.1',2,15,39334,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015m4xiyie5e86uj',1,'Admin',1672319409,'192.168.64.1',2,15,39335,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015n4xiycsieg5ep',1,'Admin',1672319409,'192.168.64.1',2,15,39336,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015o4xiyamvfrtxy',1,'Admin',1672319409,'192.168.64.1',2,15,39337,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015p4xiyr469hu9u',1,'Admin',1672319409,'192.168.64.1',2,15,39385,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015q4xiy4ropiw9a',1,'Admin',1672319409,'192.168.64.1',2,15,39386,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015r4xiy5734w6t1',1,'Admin',1672319409,'192.168.64.1',2,15,39387,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015s4xiyhc1mjx2h',1,'Admin',1672319409,'192.168.64.1',2,15,39388,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015t4xiy2cbxyfry',1,'Admin',1672319409,'192.168.64.1',2,15,39389,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015u4xiyuw74211u',1,'Admin',1672319409,'192.168.64.1',2,15,39390,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015v4xiywe2eq21j',1,'Admin',1672319409,'192.168.64.1',2,15,39391,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015w4xiylwuseyr3',1,'Admin',1672319409,'192.168.64.1',2,15,39439,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015x4xiy23wspgwb',1,'Admin',1672319409,'192.168.64.1',2,15,39440,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015y4xiy0aukt6j4',1,'Admin',1672319409,'192.168.64.1',2,15,39441,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015z4xiy1f8bh1ya',1,'Admin',1672319409,'192.168.64.1',2,15,39442,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401604xiy9w5k15ys',1,'Admin',1672319409,'192.168.64.1',2,15,39443,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401614xiye3jzj2a8',1,'Admin',1672319409,'192.168.64.1',2,15,39444,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401624xiynaobiwhh',1,'Admin',1672319409,'192.168.64.1',2,15,39445,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401634xiy6zbl86xu',1,'Admin',1672319409,'192.168.64.1',2,15,39493,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401644xiy4ljueelg',1,'Admin',1672319409,'192.168.64.1',2,15,39494,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401654xiymcptbge9',1,'Admin',1672319409,'192.168.64.1',2,15,39495,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401664xiydw6aqu4x',1,'Admin',1672319409,'192.168.64.1',2,15,39496,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401674xiyb7ovfwzt',1,'Admin',1672319409,'192.168.64.1',2,15,39497,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401684xiyw12sl28t',1,'Admin',1672319409,'192.168.64.1',2,15,39498,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401694xiybe0fhs1x',1,'Admin',1672319409,'192.168.64.1',2,15,39499,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016a4xiykvo9f68r',1,'Admin',1672319409,'192.168.64.1',2,15,39547,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016b4xiye16siko0',1,'Admin',1672319409,'192.168.64.1',2,15,39548,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016c4xiyw1c84n86',1,'Admin',1672319409,'192.168.64.1',2,15,39549,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016d4xiy2crlx0va',1,'Admin',1672319409,'192.168.64.1',2,15,39550,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016e4xiycq3ha9u6',1,'Admin',1672319409,'192.168.64.1',2,15,39551,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016f4xiyud2xiu3h',1,'Admin',1672319409,'192.168.64.1',2,15,39552,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016g4xiyrtcvp84c',1,'Admin',1672319409,'192.168.64.1',2,15,39553,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016h4xiycowywc8y',1,'Admin',1672319409,'192.168.64.1',2,15,40934,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016i4xiy5t5tb0ea',1,'Admin',1672319409,'192.168.64.1',2,15,40935,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016j4xiytfmxca30',1,'Admin',1672319409,'192.168.64.1',2,15,40936,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016k4xiyd225y42b',1,'Admin',1672319409,'192.168.64.1',2,15,40937,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016l4xiyxwb1i1ex',1,'Admin',1672319409,'192.168.64.1',2,15,40938,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016m4xiy86o3dl8k',1,'Admin',1672319409,'192.168.64.1',2,15,40939,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016n4xiy2w4axvsa',1,'Admin',1672319409,'192.168.64.1',2,15,40940,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016o4xiywa8o8576',1,'Admin',1672319409,'192.168.64.1',2,15,40941,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016p4xiykjhor77z',1,'Admin',1672319409,'192.168.64.1',2,15,40942,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016q4xiyg8vle2n7',1,'Admin',1672319409,'192.168.64.1',2,15,40943,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016r4xiyf6sy9v20',1,'Admin',1672319409,'192.168.64.1',2,15,40944,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016s4xiyyuh5868i',1,'Admin',1672319409,'192.168.64.1',2,15,40955,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016t4xiyi4fbolzy',1,'Admin',1672319409,'192.168.64.1',2,15,40956,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016u4xiyepxq4ilk',1,'Admin',1672319409,'192.168.64.1',2,15,40957,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016v4xiyy9rhrrh1',1,'Admin',1672319409,'192.168.64.1',2,15,40958,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016w4xiykvk4zikn',1,'Admin',1672319409,'192.168.64.1',2,15,40959,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016x4xiy3zksn4kz',1,'Admin',1672319409,'192.168.64.1',2,15,40960,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016y4xiymg378aya',1,'Admin',1672319409,'192.168.64.1',2,15,40961,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016z4xiy5bci7npp',1,'Admin',1672319409,'192.168.64.1',2,15,40962,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401704xiy1wz08274',1,'Admin',1672319409,'192.168.64.1',2,15,40963,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401714xiysxidw4fi',1,'Admin',1672319409,'192.168.64.1',2,15,40964,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401724xiyj1riwwuc',1,'Admin',1672319409,'192.168.64.1',2,15,40965,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401734xiy820h9w99',1,'Admin',1672319409,'192.168.64.1',2,15,40976,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401744xiyhsie8ycb',1,'Admin',1672319409,'192.168.64.1',2,15,40977,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401754xiyzh5g0vr7',1,'Admin',1672319409,'192.168.64.1',2,15,40978,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401764xiy1rs620sp',1,'Admin',1672319409,'192.168.64.1',2,15,40979,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401774xiy493oann7',1,'Admin',1672319409,'192.168.64.1',2,15,40980,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401784xiyt8r7ohca',1,'Admin',1672319409,'192.168.64.1',2,15,40981,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401794xiyfxpcwhi3',1,'Admin',1672319409,'192.168.64.1',2,15,40982,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017a4xiy26grdfz7',1,'Admin',1672319409,'192.168.64.1',2,15,40983,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017b4xiyolsxfjue',1,'Admin',1672319409,'192.168.64.1',2,15,40984,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017c4xiyoi61g2mb',1,'Admin',1672319409,'192.168.64.1',2,15,40985,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017d4xiy2qssrk0w',1,'Admin',1672319409,'192.168.64.1',2,15,40986,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017e4xiyrebyw7fg',1,'Admin',1672319409,'192.168.64.1',2,15,40997,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017f4xiyk2sutq5y',1,'Admin',1672319409,'192.168.64.1',2,15,40998,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017g4xiyw0bvnehg',1,'Admin',1672319409,'192.168.64.1',2,15,40999,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017h4xiybprb0o1e',1,'Admin',1672319409,'192.168.64.1',2,15,41000,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017i4xiy87qxl004',1,'Admin',1672319409,'192.168.64.1',2,15,41001,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017j4xiyeoj8ctz9',1,'Admin',1672319409,'192.168.64.1',2,15,41002,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017k4xiynp6ua6q0',1,'Admin',1672319409,'192.168.64.1',2,15,41003,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017l4xiy9lu35qr0',1,'Admin',1672319409,'192.168.64.1',2,15,41004,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017m4xiy6vhsy0fl',1,'Admin',1672319409,'192.168.64.1',2,15,41005,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017n4xiyvqo1wvc5',1,'Admin',1672319409,'192.168.64.1',2,15,41006,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017o4xiyl9htpbni',1,'Admin',1672319409,'192.168.64.1',2,15,41007,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017p4xiy4kvacow7',1,'Admin',1672319409,'192.168.64.1',2,15,41018,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017q4xiy38j043cy',1,'Admin',1672319409,'192.168.64.1',2,15,41019,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017r4xiy180y07fv',1,'Admin',1672319409,'192.168.64.1',2,15,41020,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017s4xiywrrflqn0',1,'Admin',1672319409,'192.168.64.1',2,15,41021,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017t4xiygx6h4ttb',1,'Admin',1672319409,'192.168.64.1',2,15,41022,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017u4xiyor8r4lyk',1,'Admin',1672319409,'192.168.64.1',2,15,41023,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017v4xiywqstl8y6',1,'Admin',1672319409,'192.168.64.1',2,15,41024,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017w4xiya2yiy2qz',1,'Admin',1672319409,'192.168.64.1',2,15,41025,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017x4xiyz0aeimgg',1,'Admin',1672319409,'192.168.64.1',2,15,41026,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017y4xiyqgc2jupf',1,'Admin',1672319409,'192.168.64.1',2,15,41027,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017z4xiyovvzeg9f',1,'Admin',1672319409,'192.168.64.1',2,15,41028,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401804xiycd1whrui',1,'Admin',1672319409,'192.168.64.1',2,15,41039,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401814xiybvikzub7',1,'Admin',1672319409,'192.168.64.1',2,15,41040,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401824xiyajhxl5qv',1,'Admin',1672319409,'192.168.64.1',2,15,41041,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401834xiyv1968rzj',1,'Admin',1672319409,'192.168.64.1',2,15,41042,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401844xiytksi4uv1',1,'Admin',1672319409,'192.168.64.1',2,15,41043,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401854xiyfalg1a27',1,'Admin',1672319409,'192.168.64.1',2,15,41044,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401864xiyftucjcjx',1,'Admin',1672319409,'192.168.64.1',2,15,41045,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401874xiytemu6hql',1,'Admin',1672319409,'192.168.64.1',2,15,41046,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401884xiyfc22fofg',1,'Admin',1672319409,'192.168.64.1',2,15,41047,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401894xiymheqx461',1,'Admin',1672319409,'192.168.64.1',2,15,41048,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018a4xiywq96mods',1,'Admin',1672319409,'192.168.64.1',2,15,41049,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018b4xiyitn390r6',1,'Admin',1672319409,'192.168.64.1',2,15,41060,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018c4xiyt0zveiu1',1,'Admin',1672319409,'192.168.64.1',2,15,41061,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018d4xiyzurkhjaw',1,'Admin',1672319409,'192.168.64.1',2,15,41062,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018e4xiyqr64h9lt',1,'Admin',1672319409,'192.168.64.1',2,15,41063,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018f4xiyghom8zii',1,'Admin',1672319409,'192.168.64.1',2,15,41064,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018g4xiy4az2i2cl',1,'Admin',1672319409,'192.168.64.1',2,15,41065,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018h4xiyd87oahbb',1,'Admin',1672319409,'192.168.64.1',2,15,41066,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018i4xiymjw23zzg',1,'Admin',1672319409,'192.168.64.1',2,15,41067,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018j4xiy5alqtccm',1,'Admin',1672319409,'192.168.64.1',2,15,41068,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018k4xiyxjm8g6h6',1,'Admin',1672319409,'192.168.64.1',2,15,41069,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018l4xiy97jv3azz',1,'Admin',1672319409,'192.168.64.1',2,15,41070,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018m4xiyww5syobm',1,'Admin',1672319409,'192.168.64.1',2,15,41081,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018n4xiye5d6tfi6',1,'Admin',1672319409,'192.168.64.1',2,15,41082,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018o4xiyb8hfafp8',1,'Admin',1672319409,'192.168.64.1',2,15,41083,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018p4xiynauduq5x',1,'Admin',1672319409,'192.168.64.1',2,15,41084,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018q4xiyb4rroveu',1,'Admin',1672319409,'192.168.64.1',2,15,41085,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018r4xiy16b1z5hu',1,'Admin',1672319409,'192.168.64.1',2,15,41086,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018s4xiy5ckh36zb',1,'Admin',1672319409,'192.168.64.1',2,15,41087,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018t4xiyhqysbq3n',1,'Admin',1672319409,'192.168.64.1',2,15,41088,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018u4xiyjnyo6mmx',1,'Admin',1672319409,'192.168.64.1',2,15,41089,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018v4xiywn3m77it',1,'Admin',1672319409,'192.168.64.1',2,15,41090,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018w4xiye1desogm',1,'Admin',1672319409,'192.168.64.1',2,15,41091,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018x4xiy99nqnduy',1,'Admin',1672319409,'192.168.64.1',2,15,41102,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018y4xiynnnkbld1',1,'Admin',1672319409,'192.168.64.1',2,15,41103,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018z4xiyxv5m9uw1',1,'Admin',1672319409,'192.168.64.1',2,15,41104,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401904xiyvzig8euy',1,'Admin',1672319409,'192.168.64.1',2,15,41105,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401914xiyadtyuxb3',1,'Admin',1672319409,'192.168.64.1',2,15,41106,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401924xiy9pxjsozr',1,'Admin',1672319409,'192.168.64.1',2,15,41107,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401934xiynb3df5i2',1,'Admin',1672319409,'192.168.64.1',2,15,41108,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401944xiyvpaim753',1,'Admin',1672319409,'192.168.64.1',2,15,41109,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401954xiy6cqcjzxa',1,'Admin',1672319409,'192.168.64.1',2,15,41110,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401964xiy7dwvoh4v',1,'Admin',1672319409,'192.168.64.1',2,15,41111,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401974xiy1myat3mn',1,'Admin',1672319409,'192.168.64.1',2,15,41112,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401984xiycuijt75o',1,'Admin',1672319409,'192.168.64.1',2,15,41123,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401994xiyglca5bmp',1,'Admin',1672319409,'192.168.64.1',2,15,41124,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019a4xiyug4n80fh',1,'Admin',1672319409,'192.168.64.1',2,15,41125,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019b4xiyaobsn9g1',1,'Admin',1672319409,'192.168.64.1',2,15,41126,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019c4xiytrbmdgyh',1,'Admin',1672319409,'192.168.64.1',2,15,41127,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019d4xiyfyvld9qs',1,'Admin',1672319409,'192.168.64.1',2,15,41128,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019e4xiy9uibd9vr',1,'Admin',1672319409,'192.168.64.1',2,15,41129,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019f4xiy2rm4z8wb',1,'Admin',1672319409,'192.168.64.1',2,15,41130,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019g4xiy6nsq8egr',1,'Admin',1672319409,'192.168.64.1',2,15,41131,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019h4xiy1xb09tjv',1,'Admin',1672319409,'192.168.64.1',2,15,41132,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019i4xiywg4u02b8',1,'Admin',1672319409,'192.168.64.1',2,15,41133,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019j4xiywzoo4r7l',1,'Admin',1672319409,'192.168.64.1',2,15,41144,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019k4xiyun1kbguj',1,'Admin',1672319409,'192.168.64.1',2,15,41145,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019l4xiys0k3zs2p',1,'Admin',1672319409,'192.168.64.1',2,15,41146,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019m4xiy6axeeumg',1,'Admin',1672319409,'192.168.64.1',2,15,41147,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019n4xiy9kf5f909',1,'Admin',1672319409,'192.168.64.1',2,15,41148,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019o4xiygm780qfh',1,'Admin',1672319409,'192.168.64.1',2,15,41149,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019p4xiy9j8ve0tt',1,'Admin',1672319409,'192.168.64.1',2,15,41150,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019q4xiy26zwk0ou',1,'Admin',1672319409,'192.168.64.1',2,15,41151,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019r4xiybrq3goy5',1,'Admin',1672319409,'192.168.64.1',2,15,41152,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019s4xiy8x71gb94',1,'Admin',1672319409,'192.168.64.1',2,15,41153,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019t4xiy9tx6hg4s',1,'Admin',1672319409,'192.168.64.1',2,15,41154,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019u4xiy1ajyn0h0',1,'Admin',1672319409,'192.168.64.1',2,15,41165,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019v4xiy6hhc1r0i',1,'Admin',1672319409,'192.168.64.1',2,15,41166,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019w4xiycx2at0ht',1,'Admin',1672319409,'192.168.64.1',2,15,41167,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019x4xiyet56xaa8',1,'Admin',1672319409,'192.168.64.1',2,15,41168,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019y4xiygk77f3oe',1,'Admin',1672319409,'192.168.64.1',2,15,41169,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019z4xiygcm6cdig',1,'Admin',1672319409,'192.168.64.1',2,15,41170,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a04xiyzlbndfng',1,'Admin',1672319409,'192.168.64.1',2,15,41171,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a14xiyommrhing',1,'Admin',1672319409,'192.168.64.1',2,15,41172,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a24xiywnnv8mgb',1,'Admin',1672319409,'192.168.64.1',2,15,41173,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a34xiyz8g5lh9u',1,'Admin',1672319409,'192.168.64.1',2,15,41174,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a44xiyw800m6kj',1,'Admin',1672319409,'192.168.64.1',2,15,41175,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a54xiy2hhbhsre',1,'Admin',1672319409,'192.168.64.1',2,15,41186,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a64xiyeqrzj6if',1,'Admin',1672319409,'192.168.64.1',2,15,41187,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a74xiyhm31ycus',1,'Admin',1672319409,'192.168.64.1',2,15,41188,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a84xiyb9q29kho',1,'Admin',1672319409,'192.168.64.1',2,15,41189,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a94xiygrghy3mc',1,'Admin',1672319409,'192.168.64.1',2,15,41190,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401aa4xiywr8dw0nj',1,'Admin',1672319409,'192.168.64.1',2,15,41191,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ab4xiyslskue58',1,'Admin',1672319409,'192.168.64.1',2,15,41192,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ac4xiyfq6cdzi2',1,'Admin',1672319409,'192.168.64.1',2,15,41193,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ad4xiymn2jlgzy',1,'Admin',1672319409,'192.168.64.1',2,15,41194,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ae4xiyx3wm520n',1,'Admin',1672319409,'192.168.64.1',2,15,41195,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401af4xiy9jr2gzt1',1,'Admin',1672319409,'192.168.64.1',2,15,41196,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ag4xiyp7v16u99',1,'Admin',1672319409,'192.168.64.1',2,15,41207,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ah4xiy01mlqzqm',1,'Admin',1672319409,'192.168.64.1',2,15,41208,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ai4xiytm6w0orl',1,'Admin',1672319409,'192.168.64.1',2,15,41209,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401aj4xiydstcjdrr',1,'Admin',1672319409,'192.168.64.1',2,15,41210,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ak4xiybb02i8hi',1,'Admin',1672319409,'192.168.64.1',2,15,41211,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401al4xiylhgwg9ry',1,'Admin',1672319409,'192.168.64.1',2,15,41212,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401am4xiyl8sgrzh3',1,'Admin',1672319409,'192.168.64.1',2,15,41213,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401an4xiyd74y2n2j',1,'Admin',1672319409,'192.168.64.1',2,15,41214,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ao4xiyuo3tjls7',1,'Admin',1672319409,'192.168.64.1',2,15,41215,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ap4xiyizx225rh',1,'Admin',1672319409,'192.168.64.1',2,15,41216,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401aq4xiyvddv0gwe',1,'Admin',1672319409,'192.168.64.1',2,15,41217,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ar4xiyr7eo4bva',1,'Admin',1672319409,'192.168.64.1',2,15,41228,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401as4xiyrsggyspw',1,'Admin',1672319409,'192.168.64.1',2,15,41229,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401at4xiyhcjgryju',1,'Admin',1672319409,'192.168.64.1',2,15,41230,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401au4xiy8cfilmzo',1,'Admin',1672319409,'192.168.64.1',2,15,41231,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401av4xiyupies4pr',1,'Admin',1672319409,'192.168.64.1',2,15,41232,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401aw4xiy7x28zoi0',1,'Admin',1672319409,'192.168.64.1',2,15,41233,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ax4xiyxayavw3h',1,'Admin',1672319409,'192.168.64.1',2,15,41234,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ay4xiy4xrou916',1,'Admin',1672319409,'192.168.64.1',2,15,41235,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401az4xiygbhqp8oj',1,'Admin',1672319409,'192.168.64.1',2,15,41236,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b04xiy1gll0v82',1,'Admin',1672319409,'192.168.64.1',2,15,41237,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b14xiy15gnitjf',1,'Admin',1672319409,'192.168.64.1',2,15,41238,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b24xiyhtioybzy',1,'Admin',1672319409,'192.168.64.1',2,15,41249,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b34xiyp554j9id',1,'Admin',1672319409,'192.168.64.1',2,15,41250,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b44xiy0jy4xarh',1,'Admin',1672319409,'192.168.64.1',2,15,41251,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b54xiypy8oocnx',1,'Admin',1672319409,'192.168.64.1',2,15,41252,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b64xiyybzy4t4k',1,'Admin',1672319409,'192.168.64.1',2,15,41253,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b74xiy14o1isj1',1,'Admin',1672319409,'192.168.64.1',2,15,41254,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b84xiypug03b3x',1,'Admin',1672319409,'192.168.64.1',2,15,41255,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b94xiyjx93jvou',1,'Admin',1672319409,'192.168.64.1',2,15,41256,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ba4xiy923qysr1',1,'Admin',1672319409,'192.168.64.1',2,15,41257,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bb4xiyjvwnaz9v',1,'Admin',1672319409,'192.168.64.1',2,15,41258,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bc4xiyq3o24suy',1,'Admin',1672319409,'192.168.64.1',2,15,41259,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bd4xiyoutv2el6',1,'Admin',1672319409,'192.168.64.1',2,15,41270,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401be4xiy7jirhbkq',1,'Admin',1672319409,'192.168.64.1',2,15,41271,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bf4xiy2nqud7sb',1,'Admin',1672319409,'192.168.64.1',2,15,41272,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bg4xiy08bx9pue',1,'Admin',1672319409,'192.168.64.1',2,15,41273,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bh4xiysnjlzhfi',1,'Admin',1672319409,'192.168.64.1',2,15,41274,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bi4xiyiqa8qle0',1,'Admin',1672319409,'192.168.64.1',2,15,41275,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bj4xiyp9zbq3bc',1,'Admin',1672319409,'192.168.64.1',2,15,41276,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bk4xiyoarhow85',1,'Admin',1672319409,'192.168.64.1',2,15,41277,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bl4xiya56t896g',1,'Admin',1672319409,'192.168.64.1',2,15,41278,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bm4xiyrwf4m758',1,'Admin',1672319409,'192.168.64.1',2,15,41279,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bn4xiyz4ph90ap',1,'Admin',1672319409,'192.168.64.1',2,15,41280,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bo4xiyycncl6bi',1,'Admin',1672319409,'192.168.64.1',2,15,41291,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bp4xiycoyvnr9z',1,'Admin',1672319409,'192.168.64.1',2,15,41292,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bq4xiybdh5yc87',1,'Admin',1672319409,'192.168.64.1',2,15,41293,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401br4xiywglq7d5t',1,'Admin',1672319409,'192.168.64.1',2,15,41294,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bs4xiyole3g4p1',1,'Admin',1672319409,'192.168.64.1',2,15,41295,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bt4xiyqlit46j2',1,'Admin',1672319409,'192.168.64.1',2,15,41296,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bu4xiyh2ael8xk',1,'Admin',1672319409,'192.168.64.1',2,15,41297,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bv4xiyp54pxkf0',1,'Admin',1672319409,'192.168.64.1',2,15,41298,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bw4xiyoc353ut7',1,'Admin',1672319409,'192.168.64.1',2,15,41299,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bx4xiy2wgj3fa6',1,'Admin',1672319409,'192.168.64.1',2,15,41300,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401by4xiyc9g31x7t',1,'Admin',1672319409,'192.168.64.1',2,15,41301,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bz4xiy5pe61nm6',1,'Admin',1672319409,'192.168.64.1',2,15,41312,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c04xiygoosx0ij',1,'Admin',1672319409,'192.168.64.1',2,15,41313,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c14xiyee2z0lh5',1,'Admin',1672319409,'192.168.64.1',2,15,41314,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c24xiyzhaykvm8',1,'Admin',1672319409,'192.168.64.1',2,15,41315,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c34xiy2pxbr174',1,'Admin',1672319409,'192.168.64.1',2,15,41316,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c44xiyte1ltdpx',1,'Admin',1672319409,'192.168.64.1',2,15,41317,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c54xiy66pexosb',1,'Admin',1672319409,'192.168.64.1',2,15,41318,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c64xiyu3fmmaaj',1,'Admin',1672319409,'192.168.64.1',2,15,41319,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c74xiy2ljpnqc8',1,'Admin',1672319409,'192.168.64.1',2,15,41320,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c84xiyhc5j5m0t',1,'Admin',1672319409,'192.168.64.1',2,15,41321,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c94xiym88s3gxi',1,'Admin',1672319409,'192.168.64.1',2,15,41322,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ca4xiy1sc7wg8g',1,'Admin',1672319409,'192.168.64.1',2,15,41333,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cb4xiy2tbjq7j2',1,'Admin',1672319409,'192.168.64.1',2,15,41334,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cc4xiylcwslfua',1,'Admin',1672319409,'192.168.64.1',2,15,41335,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cd4xiyawtgnvrd',1,'Admin',1672319409,'192.168.64.1',2,15,41336,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ce4xiyp6agtwev',1,'Admin',1672319409,'192.168.64.1',2,15,41337,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cf4xiy7lda2uwc',1,'Admin',1672319409,'192.168.64.1',2,15,41338,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cg4xiy4rw3oj77',1,'Admin',1672319409,'192.168.64.1',2,15,41339,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ch4xiy7kjx0m00',1,'Admin',1672319409,'192.168.64.1',2,15,41340,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ci4xiy2c99e4lt',1,'Admin',1672319409,'192.168.64.1',2,15,41341,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cj4xiyud7oxse4',1,'Admin',1672319409,'192.168.64.1',2,15,41342,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ck4xiys6fou4sj',1,'Admin',1672319409,'192.168.64.1',2,15,41343,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cl4xiy0honn5yr',1,'Admin',1672319409,'192.168.64.1',2,15,41354,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cm4xiy7fyjimu7',1,'Admin',1672319409,'192.168.64.1',2,15,41355,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cn4xiyykvsp3z9',1,'Admin',1672319409,'192.168.64.1',2,15,41356,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401co4xiyb668lu8b',1,'Admin',1672319409,'192.168.64.1',2,15,41357,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cp4xiy9z2va7x3',1,'Admin',1672319409,'192.168.64.1',2,15,41358,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cq4xiybo2woqad',1,'Admin',1672319409,'192.168.64.1',2,15,41359,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cr4xiyegi4bvcr',1,'Admin',1672319409,'192.168.64.1',2,15,41360,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cs4xiyfbi897t8',1,'Admin',1672319409,'192.168.64.1',2,15,41361,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ct4xiycwqjl0ht',1,'Admin',1672319409,'192.168.64.1',2,15,41362,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cu4xiyj2p1z6lv',1,'Admin',1672319409,'192.168.64.1',2,15,41363,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cv4xiy97x287b0',1,'Admin',1672319409,'192.168.64.1',2,15,41364,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cw4xiyvxr86j0c',1,'Admin',1672319409,'192.168.64.1',2,15,41375,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cx4xiymuugqx6p',1,'Admin',1672319409,'192.168.64.1',2,15,41376,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cy4xiyaaezphez',1,'Admin',1672319409,'192.168.64.1',2,15,41377,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cz4xiyhxftu6ka',1,'Admin',1672319409,'192.168.64.1',2,15,41378,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d04xiykp7w6w3c',1,'Admin',1672319409,'192.168.64.1',2,15,41379,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d14xiymqropi48',1,'Admin',1672319409,'192.168.64.1',2,15,41380,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d24xiytzyuy3y0',1,'Admin',1672319409,'192.168.64.1',2,15,41381,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d34xiyqmkwzl4q',1,'Admin',1672319409,'192.168.64.1',2,15,41382,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d44xiydu9rmspi',1,'Admin',1672319409,'192.168.64.1',2,15,41383,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d54xiym32rdqcy',1,'Admin',1672319409,'192.168.64.1',2,15,41384,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d64xiynwlktfxa',1,'Admin',1672319409,'192.168.64.1',2,15,41385,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d74xiytb27usk0',1,'Admin',1672319409,'192.168.64.1',2,15,41396,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d84xiyi56izqxr',1,'Admin',1672319409,'192.168.64.1',2,15,41397,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d94xiyxdxhzl4m',1,'Admin',1672319409,'192.168.64.1',2,15,41398,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401da4xiyjnmyee2j',1,'Admin',1672319409,'192.168.64.1',2,15,41399,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401db4xiy0f37xv6e',1,'Admin',1672319409,'192.168.64.1',2,15,41400,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dc4xiy7ll036lh',1,'Admin',1672319409,'192.168.64.1',2,15,41401,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dd4xiymlbknzqj',1,'Admin',1672319409,'192.168.64.1',2,15,41402,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401de4xiygqffns99',1,'Admin',1672319409,'192.168.64.1',2,15,41403,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401df4xiye02m0l93',1,'Admin',1672319409,'192.168.64.1',2,15,41404,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dg4xiy7ectzkxc',1,'Admin',1672319409,'192.168.64.1',2,15,41405,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dh4xiy7yl8k86y',1,'Admin',1672319409,'192.168.64.1',2,15,41406,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401di4xiy9uwycdtv',1,'Admin',1672319409,'192.168.64.1',2,15,41417,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dj4xiymuhppz00',1,'Admin',1672319409,'192.168.64.1',2,15,41418,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dk4xiybd4yf0f4',1,'Admin',1672319409,'192.168.64.1',2,15,41419,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dl4xiyzbwb7wyx',1,'Admin',1672319409,'192.168.64.1',2,15,41420,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dm4xiy2tapcuqc',1,'Admin',1672319409,'192.168.64.1',2,15,41421,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dn4xiykcyb49sh',1,'Admin',1672319409,'192.168.64.1',2,15,41422,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401do4xiystx18qat',1,'Admin',1672319409,'192.168.64.1',2,15,41423,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dp4xiyv2te0sqp',1,'Admin',1672319409,'192.168.64.1',2,15,41424,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dq4xiyia3jenyq',1,'Admin',1672319409,'192.168.64.1',2,15,41425,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dr4xiy7kztnqn1',1,'Admin',1672319409,'192.168.64.1',2,15,41426,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ds4xiypqgu1xyz',1,'Admin',1672319409,'192.168.64.1',2,15,41427,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dt4xiyxprb59en',1,'Admin',1672319409,'192.168.64.1',2,15,41438,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401du4xiyrvh4ys6b',1,'Admin',1672319409,'192.168.64.1',2,15,41439,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dv4xiyrveebwrp',1,'Admin',1672319409,'192.168.64.1',2,15,41440,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dw4xiyfuljrfhd',1,'Admin',1672319409,'192.168.64.1',2,15,41441,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dx4xiy4xaxhwtt',1,'Admin',1672319409,'192.168.64.1',2,15,41442,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dy4xiyhex03hx8',1,'Admin',1672319409,'192.168.64.1',2,15,41443,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dz4xiynx2uzag2',1,'Admin',1672319409,'192.168.64.1',2,15,41444,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e04xiysf6seks6',1,'Admin',1672319409,'192.168.64.1',2,15,41445,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e14xiytmee38zn',1,'Admin',1672319409,'192.168.64.1',2,15,41446,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e24xiyvhp0612a',1,'Admin',1672319409,'192.168.64.1',2,15,41447,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e34xiyolnworph',1,'Admin',1672319409,'192.168.64.1',2,15,41448,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e44xiyygnikq1j',1,'Admin',1672319409,'192.168.64.1',2,15,41459,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e54xiyxtt2u1kl',1,'Admin',1672319409,'192.168.64.1',2,15,41460,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e64xiygkqlpkha',1,'Admin',1672319409,'192.168.64.1',2,15,41461,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e74xiyomyibl5f',1,'Admin',1672319409,'192.168.64.1',2,15,41462,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e84xiyr0le5fgy',1,'Admin',1672319409,'192.168.64.1',2,15,41463,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e94xiy7482we0l',1,'Admin',1672319409,'192.168.64.1',2,15,41464,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ea4xiy44ugq0qy',1,'Admin',1672319409,'192.168.64.1',2,15,41465,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eb4xiyfjqi37y6',1,'Admin',1672319409,'192.168.64.1',2,15,41466,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ec4xiyp2fbdw97',1,'Admin',1672319409,'192.168.64.1',2,15,41467,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ed4xiyfhrxhi0h',1,'Admin',1672319409,'192.168.64.1',2,15,41468,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ee4xiyv68hehdh',1,'Admin',1672319409,'192.168.64.1',2,15,41469,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ef4xiyte4f7yl6',1,'Admin',1672319409,'192.168.64.1',2,15,41480,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eg4xiy6dmo8jtp',1,'Admin',1672319409,'192.168.64.1',2,15,41481,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eh4xiyv449baxp',1,'Admin',1672319409,'192.168.64.1',2,15,41482,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ei4xiyfgiqf1hr',1,'Admin',1672319409,'192.168.64.1',2,15,41483,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ej4xiypy0xomrm',1,'Admin',1672319409,'192.168.64.1',2,15,41484,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ek4xiya5maawxw',1,'Admin',1672319409,'192.168.64.1',2,15,41485,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401el4xiyqn6skj3w',1,'Admin',1672319409,'192.168.64.1',2,15,41486,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401em4xiyezxd6r9d',1,'Admin',1672319409,'192.168.64.1',2,15,41487,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401en4xiygw3oxvm8',1,'Admin',1672319409,'192.168.64.1',2,15,41488,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eo4xiy73x0tf9e',1,'Admin',1672319409,'192.168.64.1',2,15,41489,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ep4xiye5qz4sop',1,'Admin',1672319409,'192.168.64.1',2,15,41490,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eq4xiyii3lhrhg',1,'Admin',1672319409,'192.168.64.1',2,15,41501,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401er4xiy4qosrxpg',1,'Admin',1672319409,'192.168.64.1',2,15,41502,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401es4xiy7c1u9p8t',1,'Admin',1672319409,'192.168.64.1',2,15,41503,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401et4xiymt04mxgg',1,'Admin',1672319409,'192.168.64.1',2,15,41504,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eu4xiyah2uo26a',1,'Admin',1672319409,'192.168.64.1',2,15,41505,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ev4xiyd7zhlljp',1,'Admin',1672319409,'192.168.64.1',2,15,41506,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ew4xiys9khrngi',1,'Admin',1672319409,'192.168.64.1',2,15,41507,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ex4xiyw1wu3l63',1,'Admin',1672319409,'192.168.64.1',2,15,41508,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ey4xiyl32iaxfs',1,'Admin',1672319409,'192.168.64.1',2,15,41509,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ez4xiynsn7kpsf',1,'Admin',1672319409,'192.168.64.1',2,15,41510,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f04xiyje0lwdqc',1,'Admin',1672319409,'192.168.64.1',2,15,41511,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f14xiyitbotawr',1,'Admin',1672319409,'192.168.64.1',2,15,41522,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f24xiy8hmp8awa',1,'Admin',1672319409,'192.168.64.1',2,15,41523,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f34xiy4mpypr7h',1,'Admin',1672319409,'192.168.64.1',2,15,41524,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f44xiyvvb60p8b',1,'Admin',1672319409,'192.168.64.1',2,15,41525,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f54xiy23kobiy5',1,'Admin',1672319409,'192.168.64.1',2,15,41526,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f64xiyb564jwwg',1,'Admin',1672319409,'192.168.64.1',2,15,41527,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f74xiyyerrnxjb',1,'Admin',1672319409,'192.168.64.1',2,15,41528,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f84xiy7dn0sg0d',1,'Admin',1672319409,'192.168.64.1',2,15,41529,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f94xiybckgoyqf',1,'Admin',1672319409,'192.168.64.1',2,15,41530,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fa4xiyfxqy34ge',1,'Admin',1672319409,'192.168.64.1',2,15,41531,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fb4xiyr75s8fe1',1,'Admin',1672319409,'192.168.64.1',2,15,41532,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fc4xiyb28dqgxr',1,'Admin',1672319409,'192.168.64.1',2,15,41543,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fd4xiy9xuwpz2f',1,'Admin',1672319409,'192.168.64.1',2,15,41544,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fe4xiymamt2pzo',1,'Admin',1672319409,'192.168.64.1',2,15,41545,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ff4xiyomu6azoq',1,'Admin',1672319409,'192.168.64.1',2,15,41546,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fg4xiypqx2bnit',1,'Admin',1672319409,'192.168.64.1',2,15,41547,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fh4xiy1zmaq6bp',1,'Admin',1672319409,'192.168.64.1',2,15,41548,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fi4xiy36kfh57j',1,'Admin',1672319409,'192.168.64.1',2,15,41549,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fj4xiy4zig15nc',1,'Admin',1672319409,'192.168.64.1',2,15,41550,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fk4xiyts3zj12e',1,'Admin',1672319409,'192.168.64.1',2,15,41551,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fl4xiydywmvxub',1,'Admin',1672319409,'192.168.64.1',2,15,41552,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fm4xiy0qod0a2r',1,'Admin',1672319409,'192.168.64.1',2,15,41553,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fn4xiy5bbnapgi',1,'Admin',1672319409,'192.168.64.1',2,15,41564,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fo4xiyt027zc4b',1,'Admin',1672319409,'192.168.64.1',2,15,41565,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fp4xiy8dmurwtj',1,'Admin',1672319409,'192.168.64.1',2,15,41566,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fq4xiyh13vwaq2',1,'Admin',1672319409,'192.168.64.1',2,15,41567,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fr4xiylnvaabp6',1,'Admin',1672319409,'192.168.64.1',2,15,41568,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fs4xiycpegq75g',1,'Admin',1672319409,'192.168.64.1',2,15,41569,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ft4xiyk3r68u2q',1,'Admin',1672319409,'192.168.64.1',2,15,41570,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fu4xiys1hi922m',1,'Admin',1672319409,'192.168.64.1',2,15,41571,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fv4xiyz3yze756',1,'Admin',1672319409,'192.168.64.1',2,15,41572,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fw4xiye0lm9ita',1,'Admin',1672319409,'192.168.64.1',2,15,41573,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fx4xiy1uez5htu',1,'Admin',1672319409,'192.168.64.1',2,15,41574,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fy4xiy2f8pzk6h',1,'Admin',1672319409,'192.168.64.1',2,15,41585,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fz4xiytlqhs93d',1,'Admin',1672319409,'192.168.64.1',2,15,41586,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g04xiy08yt37hj',1,'Admin',1672319409,'192.168.64.1',2,15,41587,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g14xiyfz8ufvyv',1,'Admin',1672319409,'192.168.64.1',2,15,41588,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g24xiyhe6zv327',1,'Admin',1672319409,'192.168.64.1',2,15,41589,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g34xiyuu9vbd60',1,'Admin',1672319409,'192.168.64.1',2,15,41590,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g44xiy8g0zcbul',1,'Admin',1672319409,'192.168.64.1',2,15,41591,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g54xiy1nlzgp5g',1,'Admin',1672319409,'192.168.64.1',2,15,41592,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g64xiyuzjs75ho',1,'Admin',1672319409,'192.168.64.1',2,15,41593,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g74xiy0cg2w5u3',1,'Admin',1672319409,'192.168.64.1',2,15,41594,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g84xiy3k59bavu',1,'Admin',1672319409,'192.168.64.1',2,15,41595,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g94xiyjdipkw2z',1,'Admin',1672319409,'192.168.64.1',2,15,41900,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ga4xiyyohgk005',1,'Admin',1672319409,'192.168.64.1',2,15,41901,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gb4xiydg461k8z',1,'Admin',1672319409,'192.168.64.1',2,15,41902,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gc4xiy419gxuqv',1,'Admin',1672319409,'192.168.64.1',2,15,41903,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gd4xiyjil1mrx8',1,'Admin',1672319409,'192.168.64.1',2,15,41904,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ge4xiymzdx5gdd',1,'Admin',1672319409,'192.168.64.1',2,15,41905,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gf4xiydkjsvf0o',1,'Admin',1672319409,'192.168.64.1',2,15,41906,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gg4xiyn59esqqo',1,'Admin',1672319409,'192.168.64.1',2,15,41907,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gh4xiyjvo9o3mz',1,'Admin',1672319409,'192.168.64.1',2,15,41908,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gi4xiyi2v501no',1,'Admin',1672319409,'192.168.64.1',2,15,41909,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gj4xiyru583ixt',1,'Admin',1672319409,'192.168.64.1',2,15,41910,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gk4xiysbo3jdvp',1,'Admin',1672319409,'192.168.64.1',2,15,41921,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gl4xiy715nxnmf',1,'Admin',1672319409,'192.168.64.1',2,15,41922,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gm4xiyymlb9t22',1,'Admin',1672319409,'192.168.64.1',2,15,41923,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gn4xiyvelxwdsy',1,'Admin',1672319409,'192.168.64.1',2,15,41924,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501go4xiyu7kiwtxt',1,'Admin',1672319409,'192.168.64.1',2,15,41925,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gp4xiy9ci4ozy9',1,'Admin',1672319409,'192.168.64.1',2,15,41926,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gq4xiyphxs78k3',1,'Admin',1672319409,'192.168.64.1',2,15,41927,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gr4xiyfiwiqk46',1,'Admin',1672319409,'192.168.64.1',2,15,41928,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gs4xiy2aksvlxq',1,'Admin',1672319409,'192.168.64.1',2,15,41929,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gt4xiyktlojhtp',1,'Admin',1672319409,'192.168.64.1',2,15,41930,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gu4xiy4g8hm6m3',1,'Admin',1672319409,'192.168.64.1',2,15,41931,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gv4xiyiwxclf52',1,'Admin',1672319409,'192.168.64.1',2,15,41942,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gw4xiy69p0h24r',1,'Admin',1672319409,'192.168.64.1',2,15,41943,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gx4xiy09qhe2l8',1,'Admin',1672319409,'192.168.64.1',2,15,41944,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gy4xiy9xsth5z6',1,'Admin',1672319409,'192.168.64.1',2,15,41945,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gz4xiy8deore8r',1,'Admin',1672319409,'192.168.64.1',2,15,41946,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h04xiyu58vf33w',1,'Admin',1672319409,'192.168.64.1',2,15,41947,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h14xiyx4vl5pes',1,'Admin',1672319409,'192.168.64.1',2,15,41948,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h24xiy6tjr9cpa',1,'Admin',1672319409,'192.168.64.1',2,15,41949,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h34xiynio1b6e9',1,'Admin',1672319409,'192.168.64.1',2,15,41950,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h44xiyqvgpiiib',1,'Admin',1672319409,'192.168.64.1',2,15,41951,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h54xiy287goiyj',1,'Admin',1672319409,'192.168.64.1',2,15,41952,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h64xiyjz3kz904',1,'Admin',1672319409,'192.168.64.1',2,15,41963,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h74xiym1u5tl95',1,'Admin',1672319409,'192.168.64.1',2,15,41964,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h84xiybw3lwed5',1,'Admin',1672319409,'192.168.64.1',2,15,41965,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h94xiyy47pqif9',1,'Admin',1672319409,'192.168.64.1',2,15,41966,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ha4xiyi3qaw96v',1,'Admin',1672319409,'192.168.64.1',2,15,41967,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hb4xiyle62v2td',1,'Admin',1672319409,'192.168.64.1',2,15,41968,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hc4xiymfpfnin2',1,'Admin',1672319409,'192.168.64.1',2,15,41969,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hd4xiy1kf9fajf',1,'Admin',1672319409,'192.168.64.1',2,15,41970,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501he4xiys0kmlyl7',1,'Admin',1672319409,'192.168.64.1',2,15,41971,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hf4xiyu3wtm6em',1,'Admin',1672319409,'192.168.64.1',2,15,41972,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hg4xiyid2py4oj',1,'Admin',1672319409,'192.168.64.1',2,15,41973,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hh4xiy30nh752t',1,'Admin',1672319409,'192.168.64.1',2,15,41984,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hi4xiy3uksiqs0',1,'Admin',1672319409,'192.168.64.1',2,15,41985,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hj4xiyxdekeljr',1,'Admin',1672319409,'192.168.64.1',2,15,41986,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hk4xiyxmdfln8j',1,'Admin',1672319409,'192.168.64.1',2,15,41987,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hl4xiyiuh12kot',1,'Admin',1672319409,'192.168.64.1',2,15,41988,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hm4xiyffhj9qfr',1,'Admin',1672319409,'192.168.64.1',2,15,41989,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hn4xiyf7sdjpee',1,'Admin',1672319409,'192.168.64.1',2,15,41990,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ho4xiylwdw1oqz',1,'Admin',1672319409,'192.168.64.1',2,15,41991,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hp4xiyyveq4sjj',1,'Admin',1672319409,'192.168.64.1',2,15,41992,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hq4xiyq6kne6k8',1,'Admin',1672319409,'192.168.64.1',2,15,41993,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hr4xiy7vlv382d',1,'Admin',1672319409,'192.168.64.1',2,15,41994,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hs4xiydkv5hmi0',1,'Admin',1672319409,'192.168.64.1',2,15,42068,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ht4xiywihped8f',1,'Admin',1672319409,'192.168.64.1',2,15,42069,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hu4xiy99349nbu',1,'Admin',1672319409,'192.168.64.1',2,15,42070,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hv4xiycf85vzdc',1,'Admin',1672319409,'192.168.64.1',2,15,42071,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hw4xiyzftc6bvw',1,'Admin',1672319409,'192.168.64.1',2,15,42072,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hx4xiyoh2waqnb',1,'Admin',1672319409,'192.168.64.1',2,15,42073,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hy4xiyqs9kq1gi',1,'Admin',1672319409,'192.168.64.1',2,15,42074,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hz4xiyosuh9fdb',1,'Admin',1672319409,'192.168.64.1',2,15,42075,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i04xiyvy83x9oh',1,'Admin',1672319409,'192.168.64.1',2,15,42076,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i14xiypzumii6l',1,'Admin',1672319409,'192.168.64.1',2,15,42077,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i24xiyoizq87wl',1,'Admin',1672319409,'192.168.64.1',2,15,42078,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i34xiydnbvuvj3',1,'Admin',1672319409,'192.168.64.1',2,15,42443,NULL,'Host name of Zabbix agent running','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i44xiyvpv4ha3y',1,'Admin',1672319409,'192.168.64.1',2,15,42444,NULL,'Zabbix agent ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i54xiyzgmfhnaz',1,'Admin',1672319409,'192.168.64.1',2,15,42445,NULL,'Version of Zabbix agent running','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i64xiy7ua4fvnb',1,'Admin',1672319409,'192.168.64.1',2,15,42446,NULL,'Zabbix agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i74xiy7jfrw1rp',1,'Admin',1672319409,'192.168.64.1',2,15,43077,NULL,'MS Exchange: Active agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i84xiymh33eurq',1,'Admin',1672319409,'192.168.64.1',2,15,43793,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i94xiyoit2mq2h',1,'Admin',1672319409,'192.168.64.1',2,15,43794,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ia4xiyi12oyyuw',1,'Admin',1672319409,'192.168.64.1',2,15,43795,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ib4xiyyx07y372',1,'Admin',1672319409,'192.168.64.1',2,15,43796,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ic4xiy0csjrwuu',1,'Admin',1672319409,'192.168.64.1',2,15,43797,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501id4xiy7g4f6o1q',1,'Admin',1672319409,'192.168.64.1',2,15,43798,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ie4xiy1t1ckiu5',1,'Admin',1672319409,'192.168.64.1',2,15,43799,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501if4xiyippe4e1r',1,'Admin',1672319409,'192.168.64.1',2,15,43800,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ig4xiyhpk6si76',1,'Admin',1672319409,'192.168.64.1',2,15,43801,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ih4xiy37pbmrk7',1,'Admin',1672319409,'192.168.64.1',2,15,43802,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ii4xiy5xt8gmss',1,'Admin',1672319409,'192.168.64.1',2,15,43803,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ij4xiyfsv7x8gc',1,'Admin',1672319409,'192.168.64.1',2,15,43804,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ik4xiyoudzkjwi',1,'Admin',1672319409,'192.168.64.1',2,15,43805,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501il4xiyz1e4olcq',1,'Admin',1672319409,'192.168.64.1',2,15,43806,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501im4xiyk4up7ajt',1,'Admin',1672319409,'192.168.64.1',2,15,43807,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501in4xiy5zjqrma8',1,'Admin',1672319409,'192.168.64.1',2,15,43808,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501io4xiyxvuu7nj6',1,'Admin',1672319409,'192.168.64.1',2,15,43809,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ip4xiy39efdxrf',1,'Admin',1672319409,'192.168.64.1',2,15,43810,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iq4xiylhzc5fqc',1,'Admin',1672319409,'192.168.64.1',2,15,43811,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ir4xiyo55mcw23',1,'Admin',1672319409,'192.168.64.1',2,15,43812,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501is4xiy7e70kn4l',1,'Admin',1672319409,'192.168.64.1',2,15,43813,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501it4xiyz3itesld',1,'Admin',1672319409,'192.168.64.1',2,15,43814,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iu4xiygjgjdzz0',1,'Admin',1672319409,'192.168.64.1',2,15,43815,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iv4xiyppa7heyk',1,'Admin',1672319409,'192.168.64.1',2,15,43816,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iw4xiyoafbb001',1,'Admin',1672319409,'192.168.64.1',2,15,43817,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ix4xiy1msrxx5c',1,'Admin',1672319409,'192.168.64.1',2,15,43818,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iy4xiyabo7ivfz',1,'Admin',1672319409,'192.168.64.1',2,15,43819,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iz4xiy5d2bsntu',1,'Admin',1672319409,'192.168.64.1',2,15,43820,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j04xiywjq7dslw',1,'Admin',1672319409,'192.168.64.1',2,15,43821,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j14xiyjzgp3cjy',1,'Admin',1672319409,'192.168.64.1',2,15,43822,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j24xiy5bldodjq',1,'Admin',1672319409,'192.168.64.1',2,15,43823,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j34xiyha7jithc',1,'Admin',1672319409,'192.168.64.1',2,15,43824,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j44xiys7kf2bre',1,'Admin',1672319409,'192.168.64.1',2,15,43825,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j54xiybxsrtvwj',1,'Admin',1672319409,'192.168.64.1',2,15,43840,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j64xiyqmbdlh30',1,'Admin',1672319409,'192.168.64.1',2,15,43841,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j74xiy4f998kq7',1,'Admin',1672319409,'192.168.64.1',2,15,43842,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j84xiyeyehp97c',1,'Admin',1672319409,'192.168.64.1',2,15,43843,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j94xiypvar7caw',1,'Admin',1672319409,'192.168.64.1',2,15,43844,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ja4xiytudldve0',1,'Admin',1672319409,'192.168.64.1',2,15,43848,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501jb4xiyy7mtp22i',1,'Admin',1672319409,'192.168.64.1',2,15,44445,NULL,'Get filesystems','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jc4xiyg4sml3m1',1,'Admin',1672319409,'192.168.64.1',2,30,10079,NULL,'macOS','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jd4xiyw7u0xpih',1,'Admin',1672319409,'192.168.64.1',2,30,10233,NULL,'Mikrotik by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01je4xiybxdj9p0q',1,'Admin',1672319409,'192.168.64.1',2,30,10251,NULL,'Mellanox by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jf4xiywwfcksik',1,'Admin',1672319409,'192.168.64.1',2,30,10268,NULL,'Linux memory by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jg4xiyjnjupw7u',1,'Admin',1672319409,'192.168.64.1',2,30,10274,NULL,'Linux memory by Zabbix agent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jh4xiy7vs82dmo',1,'Admin',1672319409,'192.168.64.1',2,30,10276,NULL,'Linux network interfaces by Zabbix agent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ji4xiy7ku2bois',1,'Admin',1672319409,'192.168.64.1',2,30,10319,NULL,'Memcached by Zabbix agent 2','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jj4xiyxiw1t1nz',1,'Admin',1672319409,'192.168.64.1',2,30,10340,NULL,'Linux generic by Zabbix agent active','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jk4xiye9a6ygft',1,'Admin',1672319409,'192.168.64.1',2,30,10341,NULL,'Linux memory by Zabbix agent active','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jl4xiy2eavz6qx',1,'Admin',1672319409,'192.168.64.1',2,30,10342,NULL,'Linux network interfaces by Zabbix agent active','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jm4xiyrrsu6gr1',1,'Admin',1672319409,'192.168.64.1',2,30,10360,NULL,'Microsoft Exchange Server 2016 by Zabbix agent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jn4xiy838fmjj3',1,'Admin',1672319409,'192.168.64.1',2,30,10361,NULL,'Microsoft Exchange Server 2016 by Zabbix agent active','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jo4xiycvxxs7hj',1,'Admin',1672319409,'192.168.64.1',2,30,10382,NULL,'Microsoft SharePoint by HTTP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jp4xiy9thbpqx9',1,'Admin',1672319409,'192.168.64.1',2,30,10449,NULL,'MikroTik CCR1009-7G-1C-1SPC by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jq4xiy0r0tgp1c',1,'Admin',1672319409,'192.168.64.1',2,30,10450,NULL,'MikroTik CCR1009-7G-1C-1S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jr4xiy3wdacb4b',1,'Admin',1672319409,'192.168.64.1',2,30,10451,NULL,'MikroTik CCR1009-7G-1C-PC by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01js4xiyxlknwtd6',1,'Admin',1672319409,'192.168.64.1',2,30,10452,NULL,'MikroTik CCR1016-12G by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jt4xiyxd0kbjln',1,'Admin',1672319409,'192.168.64.1',2,30,10453,NULL,'MikroTik CCR1016-12S-1S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ju4xiyjv7gkqg7',1,'Admin',1672319409,'192.168.64.1',2,30,10454,NULL,'MikroTik CCR1036-12G-4S-EM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jv4xiyxb1fs3ci',1,'Admin',1672319409,'192.168.64.1',2,30,10455,NULL,'MikroTik CCR1036-12G-4S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jw4xiyropjsjld',1,'Admin',1672319409,'192.168.64.1',2,30,10456,NULL,'MikroTik CCR1036-8G-2SEM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jx4xiybewfvheb',1,'Admin',1672319409,'192.168.64.1',2,30,10457,NULL,'MikroTik CCR1036-8G-2S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jy4xiyy0u3r3oj',1,'Admin',1672319409,'192.168.64.1',2,30,10458,NULL,'MikroTik CCR1072-1G-8S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jz4xiyyf3pevxz',1,'Admin',1672319409,'192.168.64.1',2,30,10459,NULL,'MikroTik CCR2004-16G-2S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k04xiy1r7ghzf6',1,'Admin',1672319409,'192.168.64.1',2,30,10460,NULL,'MikroTik CCR2004-1G-12S2XS by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k14xiy0aapey0j',1,'Admin',1672319409,'192.168.64.1',2,30,10461,NULL,'MikroTik CRS106-1C-5S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k24xiymm5spp0h',1,'Admin',1672319409,'192.168.64.1',2,30,10462,NULL,'MikroTik CRS109-8G-1S-2HnD-IN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k34xiyk6tw1z84',1,'Admin',1672319409,'192.168.64.1',2,30,10463,NULL,'MikroTik CRS112-8G-4S-IN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k44xiy7b9odtv1',1,'Admin',1672319409,'192.168.64.1',2,30,10464,NULL,'MikroTik CRS112-8P-4S-IN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k54xiy53wbsxdg',1,'Admin',1672319409,'192.168.64.1',2,30,10465,NULL,'MikroTik CRS125-24G-1S-2HnD-IN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k64xiy5o2yze30',1,'Admin',1672319409,'192.168.64.1',2,30,10466,NULL,'MikroTik CRS212-1G-10S-1SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k74xiyl48btb0i',1,'Admin',1672319409,'192.168.64.1',2,30,10467,NULL,'MikroTik CRS305-1G-4SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k84xiy4f7wymam',1,'Admin',1672319409,'192.168.64.1',2,30,10468,NULL,'MikroTik CRS309-1G-8SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k94xiy7zki9jcc',1,'Admin',1672319409,'192.168.64.1',2,30,10469,NULL,'MikroTik CRS312-4C8XG-RM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ka4xiy3g7sfy0t',1,'Admin',1672319409,'192.168.64.1',2,30,10470,NULL,'MikroTik CRS317-1G-16SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kb4xiyku9nscoc',1,'Admin',1672319409,'192.168.64.1',2,30,10471,NULL,'MikroTik CRS326-24G-2SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kc4xiy4qwu1bkv',1,'Admin',1672319409,'192.168.64.1',2,30,10472,NULL,'MikroTik CRS326-24G-2SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kd4xiyvf6j7ogy',1,'Admin',1672319409,'192.168.64.1',2,30,10473,NULL,'MikroTik CRS326-24S2QRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ke4xiyf7rjok17',1,'Admin',1672319409,'192.168.64.1',2,30,10474,NULL,'MikroTik CRS328-24P-4SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kf4xiy9brbwpzv',1,'Admin',1672319409,'192.168.64.1',2,30,10475,NULL,'MikroTik CRS328-4C-20S-4SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kg4xiynko2ygha',1,'Admin',1672319409,'192.168.64.1',2,30,10476,NULL,'MikroTik CRS354-48G-4S2QRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kh4xiyt15cczqe',1,'Admin',1672319409,'192.168.64.1',2,30,10477,NULL,'MikroTik CRS354-48P-4S2QRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ki4xiy45meprp0',1,'Admin',1672319409,'192.168.64.1',2,30,10478,NULL,'MikroTik CSS326-24G-2SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kj4xiypp6u7l3f',1,'Admin',1672319409,'192.168.64.1',2,30,10479,NULL,'MikroTik CSS610-8G-2SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kk4xiyd7b2pu4i',1,'Admin',1672319409,'192.168.64.1',2,30,10480,NULL,'MikroTik FiberBox by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kl4xiyt0915vtr',1,'Admin',1672319409,'192.168.64.1',2,30,10495,NULL,'MikroTik hEX PoE lite by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01km4xiy0u27q270',1,'Admin',1672319409,'192.168.64.1',2,30,10496,NULL,'MikroTik hEX PoE by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kn4xiy4644qxtw',1,'Admin',1672319409,'192.168.64.1',2,30,10497,NULL,'MikroTik hEX S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ko4xiyivrekrdu',1,'Admin',1672319409,'192.168.64.1',2,30,10498,NULL,'MikroTik hEX lite by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kp4xiyoh7gj71e',1,'Admin',1672319409,'192.168.64.1',2,30,10499,NULL,'MikroTik hEX by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93suuy00014ciy62b5i7d2',1,'Admin',1672319414,'192.168.64.1',2,36,22868,NULL,'{#FSNAME}: Free disk space','clc93suux00004ciywh0nidxf',''),('clc93suuy00024ciy9dn2hu0j',1,'Admin',1672319414,'192.168.64.1',2,36,22869,NULL,'{#FSNAME}: Free inodes, %','clc93suux00004ciywh0nidxf',''),('clc93suuy00034ciyprybcxut',1,'Admin',1672319414,'192.168.64.1',2,36,22870,NULL,'{#FSNAME}: Total disk space','clc93suux00004ciywh0nidxf',''),('clc93suuy00044ciym46u0fml',1,'Admin',1672319414,'192.168.64.1',2,36,22871,NULL,'{#FSNAME}: Used disk space','clc93suux00004ciywh0nidxf',''),('clc93suuy00054ciyy2o3rn6m',1,'Admin',1672319414,'192.168.64.1',2,36,22872,NULL,'{#FSNAME}: Free disk space, %','clc93suux00004ciywh0nidxf',''),('clc93suuy00064ciyk4gtchz1',1,'Admin',1672319414,'192.168.64.1',2,36,44448,NULL,'{#FSNAME}: Get filesystem data','clc93suux00004ciywh0nidxf',''),('clc93suuy00074ciy9dgvt9uj',1,'Admin',1672319414,'192.168.64.1',2,36,44449,NULL,'{#FSNAME}: Filesystem is read-only','clc93suux00004ciywh0nidxf',''),('clc93suuy00084ciywstxkaik',1,'Admin',1672319414,'192.168.64.1',2,36,23075,NULL,'Network interfaces: Incoming network traffic on {#IFNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuy00094ciybwnpohtu',1,'Admin',1672319414,'192.168.64.1',2,36,23076,NULL,'Network interfaces: Outgoing network traffic on {#IFNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuy000a4ciyl4278jrd',1,'Admin',1672319414,'192.168.64.1',2,36,27940,NULL,'#{#SNMPVALUE}: Temperature status','clc93suux00004ciywh0nidxf',''),('clc93suuy000b4ciy17qigz07',1,'Admin',1672319414,'192.168.64.1',2,36,27941,NULL,'#{#SNMPVALUE}: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuy000c4ciyi9rk4xou',1,'Admin',1672319414,'192.168.64.1',2,36,27942,NULL,'#{#SNMPVALUE}: Fan status','clc93suux00004ciywh0nidxf',''),('clc93suuy000d4ciysgmrbmv1',1,'Admin',1672319414,'192.168.64.1',2,36,27943,NULL,'#{#SNMPVALUE}: Power supply status','clc93suux00004ciywh0nidxf',''),('clc93suuy000e4ciya691vkjy',1,'Admin',1672319414,'192.168.64.1',2,36,30474,NULL,'MySQL: Size of database {#DBNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuy000f4ciytfskjii6',1,'Admin',1672319414,'192.168.64.1',2,36,30475,NULL,'MySQL: Replication Slave status {#MASTERHOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000g4ciyycjtwj8k',1,'Admin',1672319414,'192.168.64.1',2,36,30476,NULL,'MySQL: Replication Seconds Behind Master {#MASTERHOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000h4ciy2n46rual',1,'Admin',1672319414,'192.168.64.1',2,36,30477,NULL,'MySQL: Replication Slave IO Running {#MASTERHOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000i4ciy2hhsgk2t',1,'Admin',1672319414,'192.168.64.1',2,36,30478,NULL,'MySQL: Replication Slave SQL Running {#MASTERHOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000j4ciy42o4gz6m',1,'Admin',1672319414,'192.168.64.1',2,36,33139,NULL,'MySQL: Replication Slave SQL Running State {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000k4ciysmrsx94u',1,'Admin',1672319414,'192.168.64.1',2,36,30522,NULL,'MySQL: Size of database {#DATABASE}','clc93suux00004ciywh0nidxf',''),('clc93suuy000l4ciy7p5rdvso',1,'Admin',1672319414,'192.168.64.1',2,36,30523,NULL,'MySQL: Replication Slave status {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000m4ciyx5f0klda',1,'Admin',1672319414,'192.168.64.1',2,36,30524,NULL,'MySQL: Replication Seconds Behind Master {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000n4ciyli1vpb3d',1,'Admin',1672319414,'192.168.64.1',2,36,30525,NULL,'MySQL: Replication Slave IO Running {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000o4ciyt6roccp9',1,'Admin',1672319414,'192.168.64.1',2,36,30526,NULL,'MySQL: Replication Slave SQL Running {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000p4ciysxp9r8ub',1,'Admin',1672319414,'192.168.64.1',2,36,33162,NULL,'MySQL: Replication Slave SQL Running State {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000q4ciycwhznpuy',1,'Admin',1672319414,'192.168.64.1',2,36,30680,NULL,'MySQL: Size of database {#DATABASE}','clc93suux00004ciywh0nidxf',''),('clc93suuy000r4ciyt4ttazei',1,'Admin',1672319414,'192.168.64.1',2,36,30681,NULL,'MySQL: Replication Slave status {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000s4ciy80yz8i3g',1,'Admin',1672319414,'192.168.64.1',2,36,30682,NULL,'MySQL: Replication Seconds Behind Master {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000t4ciyzwaf03ez',1,'Admin',1672319414,'192.168.64.1',2,36,30683,NULL,'MySQL: Replication Slave IO Running {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000u4ciylx942dv8',1,'Admin',1672319414,'192.168.64.1',2,36,30684,NULL,'MySQL: Replication Slave SQL Running {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000v4ciyr42b8w7i',1,'Admin',1672319414,'192.168.64.1',2,36,33153,NULL,'MySQL: Replication Slave SQL Running State {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000w4ciyfsgox2w2',1,'Admin',1672319414,'192.168.64.1',2,36,31128,NULL,'MSSQL AG \'{#GROUP_NAME}\': Get replica states','clc93suux00004ciywh0nidxf',''),('clc93suuy000x4ciykzs0hfm2',1,'Admin',1672319414,'192.168.64.1',2,36,31133,NULL,'MSSQL AG \'{#GROUP_NAME}\': Primary replica recovery health','clc93suux00004ciywh0nidxf',''),('clc93suuy000y4ciy6pa9kr96',1,'Admin',1672319414,'192.168.64.1',2,36,31134,NULL,'MSSQL AG \'{#GROUP_NAME}\': Primary replica name','clc93suux00004ciywh0nidxf',''),('clc93suuy000z4ciyx0g1vmmi',1,'Admin',1672319414,'192.168.64.1',2,36,31135,NULL,'MSSQL AG \'{#GROUP_NAME}\': Secondary replica recovery health','clc93suux00004ciywh0nidxf',''),('clc93suuy00104ciy3vltql1z',1,'Admin',1672319414,'192.168.64.1',2,36,31136,NULL,'MSSQL AG \'{#GROUP_NAME}\': Synchronization health','clc93suux00004ciywh0nidxf',''),('clc93suuy00114ciymzjf5hey',1,'Admin',1672319414,'192.168.64.1',2,36,31137,NULL,'MSSQL DB \'{#DBNAME}\': Active transactions','clc93suux00004ciywh0nidxf',''),('clc93suuy00124ciy3n7nufa5',1,'Admin',1672319414,'192.168.64.1',2,36,31138,NULL,'MSSQL DB \'{#DBNAME}\': Data file size','clc93suux00004ciywh0nidxf',''),('clc93suuy00134ciy96xida2x',1,'Admin',1672319414,'192.168.64.1',2,36,31139,NULL,'MSSQL DB \'{#DBNAME}\': Log bytes flushed per second','clc93suux00004ciywh0nidxf',''),('clc93suuy00144ciyoeb44oju',1,'Admin',1672319414,'192.168.64.1',2,36,31140,NULL,'MSSQL DB \'{#DBNAME}\': Log file size','clc93suux00004ciywh0nidxf',''),('clc93suuy00154ciybpstaken',1,'Admin',1672319414,'192.168.64.1',2,36,31141,NULL,'MSSQL DB \'{#DBNAME}\': Log file used size','clc93suux00004ciywh0nidxf',''),('clc93suuy00164ciyi2qnw6h3',1,'Admin',1672319414,'192.168.64.1',2,36,31142,NULL,'MSSQL DB \'{#DBNAME}\': Log flush wait time','clc93suux00004ciywh0nidxf',''),('clc93suuy00174ciyrx63cibr',1,'Admin',1672319414,'192.168.64.1',2,36,31143,NULL,'MSSQL DB \'{#DBNAME}\': Log flush waits per second','clc93suux00004ciywh0nidxf',''),('clc93suuy00184ciy0cky39p6',1,'Admin',1672319414,'192.168.64.1',2,36,31144,NULL,'MSSQL DB \'{#DBNAME}\': Log flushes per second','clc93suux00004ciywh0nidxf',''),('clc93suuy00194ciy487l441f',1,'Admin',1672319414,'192.168.64.1',2,36,31145,NULL,'MSSQL DB \'{#DBNAME}\': Log growths','clc93suux00004ciywh0nidxf',''),('clc93suuy001a4ciyjg7mxuxg',1,'Admin',1672319414,'192.168.64.1',2,36,31146,NULL,'MSSQL DB \'{#DBNAME}\': Log shrinks','clc93suux00004ciywh0nidxf',''),('clc93suuy001b4ciy8d6s6l03',1,'Admin',1672319414,'192.168.64.1',2,36,31147,NULL,'MSSQL DB \'{#DBNAME}\': Log truncations','clc93suux00004ciywh0nidxf',''),('clc93suuy001c4ciynnymwab4',1,'Admin',1672319414,'192.168.64.1',2,36,31148,NULL,'MSSQL DB \'{#DBNAME}\': Percent log used','clc93suux00004ciywh0nidxf',''),('clc93suuy001d4ciyc8hhkep0',1,'Admin',1672319414,'192.168.64.1',2,36,31149,NULL,'MSSQL DB \'{#DBNAME}\': State','clc93suux00004ciywh0nidxf',''),('clc93suuy001e4ciye8ww7sc6',1,'Admin',1672319414,'192.168.64.1',2,36,31150,NULL,'MSSQL DB \'{#DBNAME}\': Transactions per second','clc93suux00004ciywh0nidxf',''),('clc93suuy001f4ciyv3j76d9o',1,'Admin',1672319414,'192.168.64.1',2,36,34325,NULL,'MSSQL DB \'{#DBNAME}\': Last diff backup duration','clc93suux00004ciywh0nidxf',''),('clc93suuy001g4ciymy53r15r',1,'Admin',1672319414,'192.168.64.1',2,36,34326,NULL,'MSSQL DB \'{#DBNAME}\': Last diff backup (time ago)','clc93suux00004ciywh0nidxf',''),('clc93suuy001h4ciy2vp87wnz',1,'Admin',1672319414,'192.168.64.1',2,36,34327,NULL,'MSSQL DB \'{#DBNAME}\': Last log backup','clc93suux00004ciywh0nidxf',''),('clc93suuy001i4ciylfk0vr3a',1,'Admin',1672319414,'192.168.64.1',2,36,34328,NULL,'MSSQL DB \'{#DBNAME}\': Last log backup duration','clc93suux00004ciywh0nidxf',''),('clc93suuy001j4ciyxo72udkv',1,'Admin',1672319414,'192.168.64.1',2,36,34329,NULL,'MSSQL DB \'{#DBNAME}\': Last full backup (time ago)','clc93suux00004ciywh0nidxf',''),('clc93suuy001k4ciybpyw4g7o',1,'Admin',1672319414,'192.168.64.1',2,36,34330,NULL,'MSSQL DB \'{#DBNAME}\': Last full backup duration','clc93suux00004ciywh0nidxf',''),('clc93suuy001l4ciyesm4b2n1',1,'Admin',1672319414,'192.168.64.1',2,36,31129,NULL,'MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Get local DB states','clc93suux00004ciywh0nidxf',''),('clc93suuy001m4ciy7yrfb8vv',1,'Admin',1672319414,'192.168.64.1',2,36,31151,NULL,'MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Suspended','clc93suux00004ciywh0nidxf',''),('clc93suuy001n4ciyigy0j9jc',1,'Admin',1672319414,'192.168.64.1',2,36,31152,NULL,'MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': State','clc93suux00004ciywh0nidxf',''),('clc93suuy001o4ciyeqxo0ael',1,'Admin',1672319414,'192.168.64.1',2,36,31153,NULL,'MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Synchronization health','clc93suux00004ciywh0nidxf',''),('clc93suuy001p4ciyevduax1b',1,'Admin',1672319414,'192.168.64.1',2,36,31130,NULL,'MSSQL Mirroring \'{#DBNAME}\': Get the mirror state','clc93suux00004ciywh0nidxf',''),('clc93suuy001q4ciy445ou4no',1,'Admin',1672319414,'192.168.64.1',2,36,31154,NULL,'MSSQL Mirroring \'{#DBNAME}\': Role sequence','clc93suux00004ciywh0nidxf',''),('clc93suuy001r4ciyyd1yy7gd',1,'Admin',1672319414,'192.168.64.1',2,36,31155,NULL,'MSSQL Mirroring \'{#DBNAME}\': Role','clc93suux00004ciywh0nidxf',''),('clc93suuy001s4ciy6102lzro',1,'Admin',1672319414,'192.168.64.1',2,36,31156,NULL,'MSSQL Mirroring \'{#DBNAME}\': Safety level','clc93suux00004ciywh0nidxf',''),('clc93suuy001t4ciyb6zkthc6',1,'Admin',1672319414,'192.168.64.1',2,36,31157,NULL,'MSSQL Mirroring \'{#DBNAME}\': State','clc93suux00004ciywh0nidxf',''),('clc93suuy001u4ciyf5sv8mpa',1,'Admin',1672319414,'192.168.64.1',2,36,31158,NULL,'MSSQL Mirroring \'{#DBNAME}\': Witness state','clc93suux00004ciywh0nidxf',''),('clc93suuy001v4ciy1whoajee',1,'Admin',1672319414,'192.168.64.1',2,36,33941,NULL,'MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Get non-local DB states','clc93suux00004ciywh0nidxf',''),('clc93suuy001w4ciyxbaknft1',1,'Admin',1672319414,'192.168.64.1',2,36,33942,NULL,'MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Log queue size','clc93suux00004ciywh0nidxf',''),('clc93suuy001x4ciy9y8kw44z',1,'Admin',1672319414,'192.168.64.1',2,36,33943,NULL,'MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Redo log queue size','clc93suux00004ciywh0nidxf',''),('clc93suuy001y4ciy3uhq08lf',1,'Admin',1672319414,'192.168.64.1',2,36,31132,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Get the replica state','clc93suux00004ciywh0nidxf',''),('clc93suuy001z4ciy3a6b2gn9',1,'Admin',1672319414,'192.168.64.1',2,36,31161,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Connected state','clc93suux00004ciywh0nidxf',''),('clc93suuy00204ciyd9zjvkw9',1,'Admin',1672319414,'192.168.64.1',2,36,31162,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Is local','clc93suux00004ciywh0nidxf',''),('clc93suuy00214ciy8136celo',1,'Admin',1672319414,'192.168.64.1',2,36,31163,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Join state','clc93suux00004ciywh0nidxf',''),('clc93suuy00224ciye2jbe61f',1,'Admin',1672319414,'192.168.64.1',2,36,31164,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Operational state','clc93suux00004ciywh0nidxf',''),('clc93suuy00234ciy6j2343uz',1,'Admin',1672319414,'192.168.64.1',2,36,31165,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Recovery health','clc93suux00004ciywh0nidxf',''),('clc93suuy00244ciy8yy3fqga',1,'Admin',1672319414,'192.168.64.1',2,36,31166,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Role','clc93suux00004ciywh0nidxf',''),('clc93suuy00254ciygug9adah',1,'Admin',1672319414,'192.168.64.1',2,36,31167,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Sync health','clc93suux00004ciywh0nidxf',''),('clc93suuy00264ciyijugempc',1,'Admin',1672319414,'192.168.64.1',2,36,31258,NULL,'Archivelog \'{#DEST_NAME}\': Error','clc93suux00004ciywh0nidxf',''),('clc93suuy00274ciy8b8amdur',1,'Admin',1672319414,'192.168.64.1',2,36,31259,NULL,'Archivelog \'{#DEST_NAME}\': Last sequence','clc93suux00004ciywh0nidxf',''),('clc93suuy00284ciyic4qui1q',1,'Admin',1672319414,'192.168.64.1',2,36,31260,NULL,'Archivelog \'{#DEST_NAME}\': Status','clc93suux00004ciywh0nidxf',''),('clc93suuy00294ciy0ywwktkf',1,'Admin',1672319414,'192.168.64.1',2,36,31261,NULL,'ASM \'{#DG_NAME}\': Free size','clc93suux00004ciywh0nidxf',''),('clc93suuy002a4ciy3uli26p2',1,'Admin',1672319414,'192.168.64.1',2,36,31262,NULL,'ASM \'{#DG_NAME}\': Total size','clc93suux00004ciywh0nidxf',''),('clc93suuy002b4ciy5jkgjwlr',1,'Admin',1672319414,'192.168.64.1',2,36,31263,NULL,'ASM \'{#DG_NAME}\': Free size','clc93suux00004ciywh0nidxf',''),('clc93suuy002c4ciyg887i2qn',1,'Admin',1672319414,'192.168.64.1',2,36,31264,NULL,'Oracle Database \'{#DBNAME}\': Force logging','clc93suux00004ciywh0nidxf',''),('clc93suuy002d4ciyutjj42aj',1,'Admin',1672319414,'192.168.64.1',2,36,31265,NULL,'Oracle Database \'{#DBNAME}\': Log mode','clc93suux00004ciywh0nidxf',''),('clc93suuy002e4ciy066h6nho',1,'Admin',1672319414,'192.168.64.1',2,36,31266,NULL,'Oracle Database \'{#DBNAME}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002f4ciy756kvhsc',1,'Admin',1672319414,'192.168.64.1',2,36,31267,NULL,'Oracle Database \'{#DBNAME}\': Role','clc93suux00004ciywh0nidxf',''),('clc93suuy002g4ciymqwnadc5',1,'Admin',1672319414,'192.168.64.1',2,36,31268,NULL,'Oracle Database \'{#DBNAME}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002h4ciym3b5wy36',1,'Admin',1672319414,'192.168.64.1',2,36,31269,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy002i4ciyqalvpzqy',1,'Admin',1672319414,'192.168.64.1',2,36,31270,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace free, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy002j4ciywu5mk0po',1,'Admin',1672319414,'192.168.64.1',2,36,31271,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace MAX size, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy002k4ciyzq30qfp3',1,'Admin',1672319414,'192.168.64.1',2,36,31272,NULL,'Oracle TBS \'{#TABLESPACE}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002l4ciyxzcy59r2',1,'Admin',1672319414,'192.168.64.1',2,36,31273,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, percent','clc93suux00004ciywh0nidxf',''),('clc93suuy002m4ciyd41bpwxj',1,'Admin',1672319414,'192.168.64.1',2,36,33170,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace used, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy002n4ciy5fcupjeg',1,'Admin',1672319414,'192.168.64.1',2,36,33171,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace usage, percent','clc93suux00004ciywh0nidxf',''),('clc93suuy002o4ciy7p6z858y',1,'Admin',1672319414,'192.168.64.1',2,36,31766,NULL,'Archivelog \'{#DEST_NAME}\': Error','clc93suux00004ciywh0nidxf',''),('clc93suuy002p4ciyvfosfp4p',1,'Admin',1672319414,'192.168.64.1',2,36,31767,NULL,'Archivelog \'{#DEST_NAME}\': Last sequence','clc93suux00004ciywh0nidxf',''),('clc93suuy002q4ciy5jvdq7yd',1,'Admin',1672319414,'192.168.64.1',2,36,31768,NULL,'Archivelog \'{#DEST_NAME}\': Status','clc93suux00004ciywh0nidxf',''),('clc93suuy002r4ciydwb29af7',1,'Admin',1672319414,'192.168.64.1',2,36,31769,NULL,'Oracle Database \'{#DBNAME}\': Force logging','clc93suux00004ciywh0nidxf',''),('clc93suuy002s4ciymplc62g2',1,'Admin',1672319414,'192.168.64.1',2,36,31770,NULL,'Oracle Database \'{#DBNAME}\': Log mode','clc93suux00004ciywh0nidxf',''),('clc93suuy002t4ciyhx42istg',1,'Admin',1672319414,'192.168.64.1',2,36,31771,NULL,'Oracle Database \'{#DBNAME}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002u4ciy5kq1a0dz',1,'Admin',1672319414,'192.168.64.1',2,36,31772,NULL,'Oracle Database \'{#DBNAME}\': Role','clc93suux00004ciywh0nidxf',''),('clc93suuy002v4ciy6cf2ghqs',1,'Admin',1672319414,'192.168.64.1',2,36,31773,NULL,'ASM \'{#DG_NAME}\': Free size','clc93suux00004ciywh0nidxf',''),('clc93suuy002w4ciyqvz4jj7g',1,'Admin',1672319414,'192.168.64.1',2,36,31774,NULL,'ASM \'{#DG_NAME}\': Total size','clc93suux00004ciywh0nidxf',''),('clc93suuy002x4ciyv7mtf4t6',1,'Admin',1672319414,'192.168.64.1',2,36,31775,NULL,'ASM \'{#DG_NAME}\': Free size','clc93suux00004ciywh0nidxf',''),('clc93suuy002y4ciyqdqmde0w',1,'Admin',1672319414,'192.168.64.1',2,36,31776,NULL,'Oracle Database \'{#DBNAME}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002z4ciyk11e6xme',1,'Admin',1672319414,'192.168.64.1',2,36,31777,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy00304ciyn17zk393',1,'Admin',1672319414,'192.168.64.1',2,36,31778,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace free, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy00314ciyk86u24m0',1,'Admin',1672319414,'192.168.64.1',2,36,31779,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace MAX size, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy00324ciyfsx0pr1v',1,'Admin',1672319414,'192.168.64.1',2,36,31780,NULL,'Oracle TBS \'{#TABLESPACE}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy00334ciyxcbm69bk',1,'Admin',1672319414,'192.168.64.1',2,36,31781,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, percent','clc93suux00004ciywh0nidxf',''),('clc93suuy00344ciyqwlu261w',1,'Admin',1672319414,'192.168.64.1',2,36,33168,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace used, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy00354ciyd8cyu67t',1,'Admin',1672319414,'192.168.64.1',2,36,33169,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace usage, percent','clc93suux00004ciywh0nidxf',''),('clc93suuy00364ciyfczqk2oa',1,'Admin',1672319414,'192.168.64.1',2,36,32405,NULL,'DB {#DBNAME}: Database size','clc93suux00004ciywh0nidxf',''),('clc93suuy00374ciyk3g7k1e6',1,'Admin',1672319414,'192.168.64.1',2,36,32406,NULL,'DB {#DBNAME}: Get frozen XID','clc93suux00004ciywh0nidxf',''),('clc93suuy00384ciye4e41yri',1,'Admin',1672319414,'192.168.64.1',2,36,32407,NULL,'DB {#DBNAME}: Get scans','clc93suux00004ciywh0nidxf',''),('clc93suuy00394ciy20todac8',1,'Admin',1672319414,'192.168.64.1',2,36,32408,NULL,'DB {#DBNAME}: Detected conflicts per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003a4ciytx2zc0cw',1,'Admin',1672319414,'192.168.64.1',2,36,32409,NULL,'DB {#DBNAME}: Locks total','clc93suux00004ciywh0nidxf',''),('clc93suuy003b4ciygv11to1h',1,'Admin',1672319414,'192.168.64.1',2,36,32410,NULL,'DB {#DBNAME}: Sequential scans per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003c4ciyigaopw4x',1,'Admin',1672319414,'192.168.64.1',2,36,32411,NULL,'DB {#DBNAME}: Index scans per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003d4ciyh5aqlwgu',1,'Admin',1672319414,'192.168.64.1',2,36,32412,NULL,'DB {#DBNAME}: Queries sum transaction time','clc93suux00004ciywh0nidxf',''),('clc93suuy003e4ciyfi28g487',1,'Admin',1672319414,'192.168.64.1',2,36,32413,NULL,'DB {#DBNAME}: Queries max transaction time','clc93suux00004ciywh0nidxf',''),('clc93suuy003f4ciyu57vj7im',1,'Admin',1672319414,'192.168.64.1',2,36,32414,NULL,'DB {#DBNAME}: Queries slow transaction count','clc93suux00004ciywh0nidxf',''),('clc93suuy003g4ciybf4kptli',1,'Admin',1672319414,'192.168.64.1',2,36,32415,NULL,'DB {#DBNAME}: Queries sum query time','clc93suux00004ciywh0nidxf',''),('clc93suuy003h4ciyu7ai3qf0',1,'Admin',1672319414,'192.168.64.1',2,36,32416,NULL,'DB {#DBNAME}: Queries max query time','clc93suux00004ciywh0nidxf',''),('clc93suuy003i4ciyrselx4rs',1,'Admin',1672319414,'192.168.64.1',2,36,32417,NULL,'DB {#DBNAME}: Queries slow query count','clc93suux00004ciywh0nidxf',''),('clc93suuy003j4ciyqct76nhg',1,'Admin',1672319414,'192.168.64.1',2,36,32418,NULL,'DB {#DBNAME}: Queries sum maintenance time','clc93suux00004ciywh0nidxf',''),('clc93suuy003k4ciy03mdh5cn',1,'Admin',1672319414,'192.168.64.1',2,36,32419,NULL,'DB {#DBNAME}: Queries max maintenance time','clc93suux00004ciywh0nidxf',''),('clc93suuy003l4ciysrzwp0re',1,'Admin',1672319414,'192.168.64.1',2,36,32420,NULL,'DB {#DBNAME}: Queries slow maintenance count','clc93suux00004ciywh0nidxf',''),('clc93suuy003m4ciyx2y711g7',1,'Admin',1672319414,'192.168.64.1',2,36,32421,NULL,'DB {#DBNAME}: Disk blocks read per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003n4ciyck85omxc',1,'Admin',1672319414,'192.168.64.1',2,36,32422,NULL,'DB {#DBNAME}: Detected deadlocks per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003o4ciybxy5fp4a',1,'Admin',1672319414,'192.168.64.1',2,36,32423,NULL,'DB {#DBNAME}: Blocks hit per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003p4ciy5tu6ek5x',1,'Admin',1672319414,'192.168.64.1',2,36,32424,NULL,'DB {#DBNAME}: Frozen XID before avtovacuum %','clc93suux00004ciywh0nidxf',''),('clc93suuy003q4ciy31toswfc',1,'Admin',1672319414,'192.168.64.1',2,36,32425,NULL,'DB {#DBNAME}: Rollbacks per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003r4ciy2jz657cw',1,'Admin',1672319414,'192.168.64.1',2,36,32426,NULL,'DB {#DBNAME}: Commits per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003s4ciycd9r9viu',1,'Admin',1672319414,'192.168.64.1',2,36,32427,NULL,'DB {#DBNAME}: Tuples updated per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003t4ciyppqsgmzs',1,'Admin',1672319414,'192.168.64.1',2,36,32428,NULL,'DB {#DBNAME}: Tuples returned per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003u4ciyzrzqe7m1',1,'Admin',1672319414,'192.168.64.1',2,36,32429,NULL,'DB {#DBNAME}: Tuples inserted per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003v4ciyz5ncyn98',1,'Admin',1672319414,'192.168.64.1',2,36,32430,NULL,'DB {#DBNAME}: Tuples fetched per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003w4ciym0s19whk',1,'Admin',1672319414,'192.168.64.1',2,36,32431,NULL,'DB {#DBNAME}: Tuples deleted per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003x4ciynbt1cq40',1,'Admin',1672319414,'192.168.64.1',2,36,32432,NULL,'DB {#DBNAME}: Temp_files created per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003y4ciy1z5o3bw6',1,'Admin',1672319414,'192.168.64.1',2,36,32433,NULL,'DB {#DBNAME}: Temp_bytes written per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003z4ciyr041usqu',1,'Admin',1672319414,'192.168.64.1',2,36,32434,NULL,'DB {#DBNAME}: Frozen XID before stop %','clc93suux00004ciywh0nidxf',''),('clc93suuy00404ciytxmga0xo',1,'Admin',1672319414,'192.168.64.1',2,36,33134,NULL,'MySQL: Binlog commits','clc93suux00004ciywh0nidxf',''),('clc93suuy00414ciyi3wg2yvc',1,'Admin',1672319414,'192.168.64.1',2,36,33135,NULL,'MySQL: Binlog group commits','clc93suux00004ciywh0nidxf',''),('clc93suuy00424ciyg4lln7js',1,'Admin',1672319414,'192.168.64.1',2,36,33136,NULL,'MySQL: Master GTID wait count','clc93suux00004ciywh0nidxf',''),('clc93suuy00434ciyb5mjy7iy',1,'Admin',1672319414,'192.168.64.1',2,36,33137,NULL,'MySQL: Master GTID wait timeouts','clc93suux00004ciywh0nidxf',''),('clc93suuy00444ciymsdidv98',1,'Admin',1672319414,'192.168.64.1',2,36,33138,NULL,'MySQL: Master GTID wait time','clc93suux00004ciywh0nidxf',''),('clc93suuy00454ciyr9x4ubke',1,'Admin',1672319414,'192.168.64.1',2,36,33148,NULL,'MySQL: Binlog commits','clc93suux00004ciywh0nidxf',''),('clc93suuy00464ciyc8dgs0yh',1,'Admin',1672319414,'192.168.64.1',2,36,33149,NULL,'MySQL: Binlog group commits','clc93suux00004ciywh0nidxf',''),('clc93suuy00474ciytuca0o19',1,'Admin',1672319414,'192.168.64.1',2,36,33150,NULL,'MySQL: Master GTID wait count','clc93suux00004ciywh0nidxf',''),('clc93suuy00484ciyz2icx4z7',1,'Admin',1672319414,'192.168.64.1',2,36,33151,NULL,'MySQL: Master GTID wait timeouts','clc93suux00004ciywh0nidxf',''),('clc93suuy00494ciy99oo880o',1,'Admin',1672319414,'192.168.64.1',2,36,33152,NULL,'MySQL: Master GTID wait time','clc93suux00004ciywh0nidxf',''),('clc93suuy004a4ciy4ivy3tei',1,'Admin',1672319414,'192.168.64.1',2,36,33163,NULL,'MySQL: Binlog commits','clc93suux00004ciywh0nidxf',''),('clc93suuy004b4ciygsnej65z',1,'Admin',1672319414,'192.168.64.1',2,36,33164,NULL,'MySQL: Binlog group commits','clc93suux00004ciywh0nidxf',''),('clc93suuy004c4ciyu27taprk',1,'Admin',1672319414,'192.168.64.1',2,36,33165,NULL,'MySQL: Master GTID wait count','clc93suux00004ciywh0nidxf',''),('clc93suuy004d4ciyvps6th6g',1,'Admin',1672319414,'192.168.64.1',2,36,33166,NULL,'MySQL: Master GTID wait timeouts','clc93suux00004ciywh0nidxf',''),('clc93suuy004e4ciyb44oowd4',1,'Admin',1672319414,'192.168.64.1',2,36,33167,NULL,'MySQL: Master GTID wait time','clc93suux00004ciywh0nidxf',''),('clc93suuy004f4ciyz40j82aj',1,'Admin',1672319414,'192.168.64.1',2,36,33206,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004g4ciy6jbf3i18',1,'Admin',1672319414,'192.168.64.1',2,36,33226,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004h4ciygspg4uu4',1,'Admin',1672319414,'192.168.64.1',2,36,33249,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004i4ciyah5fkw5q',1,'Admin',1672319414,'192.168.64.1',2,36,33258,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004j4ciybw40wlzr',1,'Admin',1672319414,'192.168.64.1',2,36,33277,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004k4ciyoiwmkjpn',1,'Admin',1672319414,'192.168.64.1',2,36,33296,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004l4ciyy83drhma',1,'Admin',1672319414,'192.168.64.1',2,36,33312,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004m4ciypyufc81m',1,'Admin',1672319414,'192.168.64.1',2,36,33313,NULL,'Array: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004n4ciy6me15hhk',1,'Admin',1672319414,'192.168.64.1',2,36,33314,NULL,'Battery: Charge Current{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004o4ciyhhytd2de',1,'Admin',1672319414,'192.168.64.1',2,36,33315,NULL,'Battery: Charge State{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004p4ciy9ujpcih8',1,'Admin',1672319414,'192.168.64.1',2,36,33316,NULL,'Battery: Target Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004q4ciy3jedxesr',1,'Admin',1672319414,'192.168.64.1',2,36,33317,NULL,'Load: PWM Duty Cycle{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004r4ciyfdt2ru6d',1,'Admin',1672319414,'192.168.64.1',2,36,33318,NULL,'Load: State{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004s4ciynn7k5baj',1,'Admin',1672319414,'192.168.64.1',2,36,33319,NULL,'Load: Current{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004t4ciycg0tm15c',1,'Admin',1672319414,'192.168.64.1',2,36,33320,NULL,'Load: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004u4ciyh2cuzavs',1,'Admin',1672319414,'192.168.64.1',2,36,33357,NULL,'Node {#NODE.NAME}: Failed FAN count','clc93suux00004ciywh0nidxf',''),('clc93suuy004v4ciygez9iycb',1,'Admin',1672319414,'192.168.64.1',2,36,33358,NULL,'Node {#NODE.NAME}: Failed FAN message','clc93suux00004ciywh0nidxf',''),('clc93suuy004w4ciyko4snksr',1,'Admin',1672319414,'192.168.64.1',2,36,33359,NULL,'Node {#NODE.NAME}: Degraded power supplies count','clc93suux00004ciywh0nidxf',''),('clc93suuy004x4ciy69rgxsjt',1,'Admin',1672319414,'192.168.64.1',2,36,33360,NULL,'Node {#NODE.NAME}: Degraded power supplies message','clc93suux00004ciywh0nidxf',''),('clc93suuy004y4ciy8qn3qyec',1,'Admin',1672319414,'192.168.64.1',2,36,33361,NULL,'Node {#NODE.NAME}: Over-temperature','clc93suux00004ciywh0nidxf',''),('clc93suuy004z4ciy0ccr6jiu',1,'Admin',1672319414,'192.168.64.1',2,36,33362,NULL,'Node {#NODE.NAME}: Health','clc93suux00004ciywh0nidxf',''),('clc93suuy00504ciyieaky35p',1,'Admin',1672319414,'192.168.64.1',2,36,33363,NULL,'Node {#NODE.NAME}: Location','clc93suux00004ciywh0nidxf',''),('clc93suuy00514ciyvicagdr1',1,'Admin',1672319414,'192.168.64.1',2,36,33364,NULL,'Node {#NODE.NAME}: Model','clc93suux00004ciywh0nidxf',''),('clc93suuy00524ciyq0lobhai',1,'Admin',1672319414,'192.168.64.1',2,36,33365,NULL,'Node {#NODE.NAME}: NVRAM battery status','clc93suux00004ciywh0nidxf',''),('clc93suuy00534ciyel3q8tpq',1,'Admin',1672319414,'192.168.64.1',2,36,33366,NULL,'Node {#NODE.NAME}: Serial number','clc93suux00004ciywh0nidxf',''),('clc93suuy00544ciyd46s1oa7',1,'Admin',1672319414,'192.168.64.1',2,36,33367,NULL,'Node {#NODE.NAME}: Uptime','clc93suux00004ciywh0nidxf',''),('clc93suuy00554ciy4p25g3az',1,'Admin',1672319414,'192.168.64.1',2,36,33368,NULL,'Node {#NODE.NAME}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuy00564ciy2x5kh5s6',1,'Admin',1672319414,'192.168.64.1',2,36,33369,NULL,'{#VSERVER}{#FSNAME}: Total space available','clc93suux00004ciywh0nidxf',''),('clc93suuy00574ciy7v01pc2l',1,'Admin',1672319414,'192.168.64.1',2,36,33370,NULL,'{#VSERVER}{#FSNAME}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuy00584ciyi1t3mbry',1,'Admin',1672319414,'192.168.64.1',2,36,33371,NULL,'{#VSERVER}{#FSNAME}: Total space used','clc93suux00004ciywh0nidxf',''),('clc93suuy00594ciytj463zu1',1,'Admin',1672319414,'192.168.64.1',2,36,33372,NULL,'{#VSERVER}{#FSNAME}: Saved by compression percents','clc93suux00004ciywh0nidxf',''),('clc93suuy005a4ciy98gw9lxg',1,'Admin',1672319414,'192.168.64.1',2,36,33373,NULL,'{#VSERVER}{#FSNAME}: Saved by deduplication percents','clc93suux00004ciywh0nidxf',''),('clc93suuy005b4ciyqp75wx5w',1,'Admin',1672319414,'192.168.64.1',2,36,33374,NULL,'{#VSERVER}{#FSNAME}: Used space percents','clc93suux00004ciywh0nidxf',''),('clc93suuy005c4ciy8q8r0hwq',1,'Admin',1672319414,'192.168.64.1',2,36,33375,NULL,'Node {#NODE.NAME}: Cannot takeover cause','clc93suux00004ciywh0nidxf',''),('clc93suuy005d4ciy7ov1m02x',1,'Admin',1672319414,'192.168.64.1',2,36,33376,NULL,'Node {#NODE.NAME}: HA settings','clc93suux00004ciywh0nidxf',''),('clc93suuy005e4ciypbaamwlr',1,'Admin',1672319414,'192.168.64.1',2,36,33377,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suuy005f4ciy43j7wt7h',1,'Admin',1672319414,'192.168.64.1',2,36,33378,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suuy005g4ciyyn7se6w5',1,'Admin',1672319414,'192.168.64.1',2,36,33379,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suuy005h4ciy4ozkld0r',1,'Admin',1672319414,'192.168.64.1',2,36,33380,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suuy005i4ciygiw4u6c8',1,'Admin',1672319414,'192.168.64.1',2,36,33381,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suuy005j4ciy9csc9poy',1,'Admin',1672319414,'192.168.64.1',2,36,33382,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suuy005k4ciy6fh2os9c',1,'Admin',1672319414,'192.168.64.1',2,36,33383,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Health degraded reason','clc93suux00004ciywh0nidxf',''),('clc93suuy005l4ciyvt2ibmn7',1,'Admin',1672319414,'192.168.64.1',2,36,33384,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Health','clc93suux00004ciywh0nidxf',''),('clc93suuy005m4ciypw012mb5',1,'Admin',1672319414,'192.168.64.1',2,36,33385,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): State','clc93suux00004ciywh0nidxf',''),('clc93suuy005n4ciy371ho92v',1,'Admin',1672319414,'192.168.64.1',2,36,33386,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Role','clc93suux00004ciywh0nidxf',''),('clc93suuy005o4ciycwvpipcr',1,'Admin',1672319414,'192.168.64.1',2,36,33387,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suuy005p4ciye1yn6r4z',1,'Admin',1672319414,'192.168.64.1',2,36,33388,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Up by an administrator','clc93suux00004ciywh0nidxf',''),('clc93suuy005q4ciym7t3h2gy',1,'Admin',1672319414,'192.168.64.1',2,36,33812,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION}','clc93suux00004ciywh0nidxf',''),('clc93suuy005r4ciydqdygwh5',1,'Admin',1672319414,'192.168.64.1',2,36,33814,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size','clc93suux00004ciywh0nidxf',''),('clc93suuy005s4ciy8zf3e7yv',1,'Admin',1672319414,'192.168.64.1',2,36,33815,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy005t4ciyyoqzsn8w',1,'Admin',1672319414,'192.168.64.1',2,36,33816,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Write lock, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy005u4ciytxspmiuc',1,'Admin',1672319414,'192.168.64.1',2,36,33817,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Storage size','clc93suux00004ciywh0nidxf',''),('clc93suuy005v4ciyaxakghzo',1,'Admin',1672319414,'192.168.64.1',2,36,33818,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Size','clc93suux00004ciywh0nidxf',''),('clc93suuy005w4ciykzmwl6o9',1,'Admin',1672319414,'192.168.64.1',2,36,33819,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Read lock, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy005x4ciyvrofaukv',1,'Admin',1672319414,'192.168.64.1',2,36,33820,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Read lock, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy005y4ciy5uqxyghx',1,'Admin',1672319414,'192.168.64.1',2,36,33821,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy005z4ciyuay08yyy',1,'Admin',1672319414,'192.168.64.1',2,36,33822,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00604ciyici65pne',1,'Admin',1672319414,'192.168.64.1',2,36,33823,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00614ciyljuv738n',1,'Admin',1672319414,'192.168.64.1',2,36,33824,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00624ciy311z02g5',1,'Admin',1672319414,'192.168.64.1',2,36,33825,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00634ciy7gtrda52',1,'Admin',1672319414,'192.168.64.1',2,36,33826,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00644ciyfww1td0e',1,'Admin',1672319414,'192.168.64.1',2,36,33827,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped','clc93suux00004ciywh0nidxf',''),('clc93suuy00654ciytaaqreit',1,'Admin',1672319414,'192.168.64.1',2,36,33828,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00664ciy0wj5iro5',1,'Admin',1672319414,'192.168.64.1',2,36,33829,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00674ciyli990tje',1,'Admin',1672319414,'192.168.64.1',2,36,33830,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00684ciyprjteiyj',1,'Admin',1672319414,'192.168.64.1',2,36,33831,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00694ciypsydnjq5',1,'Admin',1672319414,'192.168.64.1',2,36,33832,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006a4ciybaj56enb',1,'Admin',1672319414,'192.168.64.1',2,36,33833,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006b4ciylzjaqk6n',1,'Admin',1672319414,'192.168.64.1',2,36,33834,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006c4ciy2xi7jkre',1,'Admin',1672319414,'192.168.64.1',2,36,33835,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Indexes','clc93suux00004ciywh0nidxf',''),('clc93suuy006d4ciy1p117kaz',1,'Admin',1672319414,'192.168.64.1',2,36,33836,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped: max size','clc93suux00004ciywh0nidxf',''),('clc93suuy006e4ciyrr2ax68c',1,'Admin',1672319414,'192.168.64.1',2,36,33837,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped: max number','clc93suux00004ciywh0nidxf',''),('clc93suuy006f4ciy6f9ah2gm',1,'Admin',1672319414,'192.168.64.1',2,36,33838,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Objects, count','clc93suux00004ciywh0nidxf',''),('clc93suuy006g4ciyaxwkjxz6',1,'Admin',1672319414,'192.168.64.1',2,36,33839,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Write lock, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006h4ciynpgupi13',1,'Admin',1672319414,'192.168.64.1',2,36,33813,NULL,'MongoDB {#DBNAME}: Get db stats {#DBNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuy006i4ciy40j1e2rg',1,'Admin',1672319414,'192.168.64.1',2,36,33840,NULL,'MongoDB {#DBNAME}: Collections','clc93suux00004ciywh0nidxf',''),('clc93suuy006j4ciyba9o86f2',1,'Admin',1672319414,'192.168.64.1',2,36,33841,NULL,'MongoDB {#DBNAME}: Size, data','clc93suux00004ciywh0nidxf',''),('clc93suuy006k4ciyou2804ul',1,'Admin',1672319414,'192.168.64.1',2,36,33842,NULL,'MongoDB {#DBNAME}: Extents','clc93suux00004ciywh0nidxf',''),('clc93suuy006l4ciybmm9w0ka',1,'Admin',1672319414,'192.168.64.1',2,36,33843,NULL,'MongoDB {#DBNAME}: Size, file','clc93suux00004ciywh0nidxf',''),('clc93suuy006m4ciyz8i454q7',1,'Admin',1672319414,'192.168.64.1',2,36,33844,NULL,'MongoDB {#DBNAME}: Size, index','clc93suux00004ciywh0nidxf',''),('clc93suuy006n4ciyg21l0xcu',1,'Admin',1672319414,'192.168.64.1',2,36,33845,NULL,'MongoDB {#DBNAME}: Objects, count','clc93suux00004ciywh0nidxf',''),('clc93suuy006o4ciyvmirjcyc',1,'Admin',1672319414,'192.168.64.1',2,36,33846,NULL,'MongoDB {#DBNAME}: Objects, avg size','clc93suux00004ciywh0nidxf',''),('clc93suuy006p4ciyyac3fdam',1,'Admin',1672319414,'192.168.64.1',2,36,33847,NULL,'MongoDB {#DBNAME}: Size, storage','clc93suux00004ciywh0nidxf',''),('clc93suuy006q4ciyhcrtqclu',1,'Admin',1672319414,'192.168.64.1',2,36,33848,NULL,'MongoDB: Apply batches, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006r4ciyf7lzshno',1,'Admin',1672319414,'192.168.64.1',2,36,33849,NULL,'MongoDB: Network readers created, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006s4ciy5ewr3k80',1,'Admin',1672319414,'192.168.64.1',2,36,33850,NULL,'MongoDB: Unhealthy replicas','clc93suux00004ciywh0nidxf',''),('clc93suuy006t4ciy47lh11c5',1,'Admin',1672319414,'192.168.64.1',2,36,33851,NULL,'MongoDB: Number of replicas','clc93suux00004ciywh0nidxf',''),('clc93suuy006u4ciy6vabkbc9',1,'Admin',1672319414,'192.168.64.1',2,36,33852,NULL,'MongoDB: Node state','clc93suux00004ciywh0nidxf',''),('clc93suuy006v4ciyjp9tugi9',1,'Admin',1672319414,'192.168.64.1',2,36,33853,NULL,'MongoDB: Preload indexes, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006w4ciyhnpez1ti',1,'Admin',1672319414,'192.168.64.1',2,36,33854,NULL,'MongoDB: Preload indexes, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006x4ciy2gqcj8sf',1,'Admin',1672319414,'192.168.64.1',2,36,33855,NULL,'MongoDB: Preload docs, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006y4ciyvztop6pl',1,'Admin',1672319414,'192.168.64.1',2,36,33856,NULL,'MongoDB: Preload docs, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006z4ciylp41yjny',1,'Admin',1672319414,'192.168.64.1',2,36,33857,NULL,'MongoDB {#RS_NAME}: Oplog time diff','clc93suux00004ciywh0nidxf',''),('clc93suuy00704ciyxtuv3fux',1,'Admin',1672319414,'192.168.64.1',2,36,33858,NULL,'MongoDB: Network ops, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00714ciyj1x184p9',1,'Admin',1672319414,'192.168.64.1',2,36,33859,NULL,'MongoDB: Apply batches, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00724ciynoogbgxx',1,'Admin',1672319414,'192.168.64.1',2,36,33860,NULL,'MongoDB: Network getmores, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00734ciypx7buprt',1,'Admin',1672319414,'192.168.64.1',2,36,33861,NULL,'MongoDB: Network getmores, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00744ciyypqq0ywo',1,'Admin',1672319414,'192.168.64.1',2,36,33862,NULL,'MongoDB: Network bytes, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00754ciyz413wka1',1,'Admin',1672319414,'192.168.64.1',2,36,33863,NULL,'MongoDB: Replication lag','clc93suux00004ciywh0nidxf',''),('clc93suuy00764ciyfwovy139',1,'Admin',1672319414,'192.168.64.1',2,36,33864,NULL,'MongoDB: Buffer, size','clc93suux00004ciywh0nidxf',''),('clc93suuy00774ciyvwwvnv1g',1,'Admin',1672319414,'192.168.64.1',2,36,33865,NULL,'MongoDB: Buffer, max size','clc93suux00004ciywh0nidxf',''),('clc93suuy00784ciyddl9bp0e',1,'Admin',1672319414,'192.168.64.1',2,36,33866,NULL,'MongoDB: Buffer','clc93suux00004ciywh0nidxf',''),('clc93suuy00794ciyodojw39f',1,'Admin',1672319414,'192.168.64.1',2,36,33867,NULL,'MongoDB: Apply ops, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy007a4ciyqcinj9ct',1,'Admin',1672319414,'192.168.64.1',2,36,33868,NULL,'MongoDB: Number of unhealthy replicas','clc93suux00004ciywh0nidxf',''),('clc93suuy007b4ciysuifu0uo',1,'Admin',1672319414,'192.168.64.1',2,36,33869,NULL,'MongoDB: WiredTiger cache: bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy007c4ciyehip3h5o',1,'Admin',1672319414,'192.168.64.1',2,36,33870,NULL,'MongoDB: WiredTiger cache: tracked dirty bytes in the cache','clc93suux00004ciywh0nidxf',''),('clc93suuy007d4ciyf1617le3',1,'Admin',1672319414,'192.168.64.1',2,36,33871,NULL,'MongoDB: WiredTiger concurrent transactions: write, out','clc93suux00004ciywh0nidxf',''),('clc93suuy007e4ciyt3e6qyp0',1,'Admin',1672319414,'192.168.64.1',2,36,33872,NULL,'MongoDB: WiredTiger concurrent transactions: write, available','clc93suux00004ciywh0nidxf',''),('clc93suuy007f4ciyvc0uz2b8',1,'Admin',1672319414,'192.168.64.1',2,36,33873,NULL,'MongoDB: WiredTiger concurrent transactions: read, total tickets','clc93suux00004ciywh0nidxf',''),('clc93suuy007g4ciyer2nduco',1,'Admin',1672319414,'192.168.64.1',2,36,33874,NULL,'MongoDB: WiredTiger concurrent transactions: read, out','clc93suux00004ciywh0nidxf',''),('clc93suuy007h4ciy5cfvuqtv',1,'Admin',1672319414,'192.168.64.1',2,36,33875,NULL,'MongoDB: WiredTiger concurrent transactions: read, available','clc93suux00004ciywh0nidxf',''),('clc93suuy007i4ciy9qathcz2',1,'Admin',1672319414,'192.168.64.1',2,36,33876,NULL,'MongoDB: WiredTiger cache: unmodified pages evicted','clc93suux00004ciywh0nidxf',''),('clc93suuy007j4ciyolpkcipa',1,'Admin',1672319414,'192.168.64.1',2,36,33877,NULL,'MongoDB: WiredTiger cache: in-memory page splits','clc93suux00004ciywh0nidxf',''),('clc93suuy007k4ciy371fnvil',1,'Admin',1672319414,'192.168.64.1',2,36,33878,NULL,'MongoDB: WiredTiger cache: bytes, max','clc93suux00004ciywh0nidxf',''),('clc93suuy007l4ciy9lhy5n12',1,'Admin',1672319414,'192.168.64.1',2,36,33879,NULL,'MongoDB: WiredTiger cache: pages written from cache','clc93suux00004ciywh0nidxf',''),('clc93suuy007m4ciy1n17241y',1,'Admin',1672319414,'192.168.64.1',2,36,33880,NULL,'MongoDB: WiredTiger cache: pages read into cache','clc93suux00004ciywh0nidxf',''),('clc93suuy007n4ciydpboi88j',1,'Admin',1672319414,'192.168.64.1',2,36,33881,NULL,'MongoDB: WiredTiger cache: pages held in cache','clc93suux00004ciywh0nidxf',''),('clc93suuy007o4ciywfxkne0c',1,'Admin',1672319414,'192.168.64.1',2,36,33882,NULL,'MongoDB: WiredTiger cache: pages evicted by application threads, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz007p4ciynyc2pn0n',1,'Admin',1672319414,'192.168.64.1',2,36,33883,NULL,'MongoDB: WiredTiger cache: modified pages evicted','clc93suux00004ciywh0nidxf',''),('clc93suuz007q4ciysrsdpvj5',1,'Admin',1672319414,'192.168.64.1',2,36,33884,NULL,'MongoDB: WiredTiger cache: max page size at eviction','clc93suux00004ciywh0nidxf',''),('clc93suuz007r4ciyhxrbyxh6',1,'Admin',1672319414,'192.168.64.1',2,36,33885,NULL,'MongoDB: WiredTiger concurrent transactions: write, total tickets','clc93suux00004ciywh0nidxf',''),('clc93suuz007s4ciy0o4l351b',1,'Admin',1672319414,'192.168.64.1',2,36,33924,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION}','clc93suux00004ciywh0nidxf',''),('clc93suuz007t4ciyozr3mff1',1,'Admin',1672319414,'192.168.64.1',2,36,33926,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size','clc93suux00004ciywh0nidxf',''),('clc93suuz007u4ciymq5cdsjc',1,'Admin',1672319414,'192.168.64.1',2,36,33927,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped','clc93suux00004ciywh0nidxf',''),('clc93suuz007v4ciypj9kor13',1,'Admin',1672319414,'192.168.64.1',2,36,33928,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Objects, count','clc93suux00004ciywh0nidxf',''),('clc93suuz007w4ciy7ye4t1g0',1,'Admin',1672319414,'192.168.64.1',2,36,33929,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped, max number','clc93suux00004ciywh0nidxf',''),('clc93suuz007x4ciymru6br3v',1,'Admin',1672319414,'192.168.64.1',2,36,33930,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped, max size','clc93suux00004ciywh0nidxf',''),('clc93suuz007y4ciy2gvvhdtd',1,'Admin',1672319414,'192.168.64.1',2,36,33931,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Indexes','clc93suux00004ciywh0nidxf',''),('clc93suuz007z4ciyxpzkska2',1,'Admin',1672319414,'192.168.64.1',2,36,33932,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Size','clc93suux00004ciywh0nidxf',''),('clc93suuz00804ciyzk4b4yzi',1,'Admin',1672319414,'192.168.64.1',2,36,33933,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Storage size','clc93suux00004ciywh0nidxf',''),('clc93suuz00814ciycic82hod',1,'Admin',1672319414,'192.168.64.1',2,36,33925,NULL,'MongoDB {#DBNAME}: Get db stats {#DBNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuz00824ciywrsr4uo4',1,'Admin',1672319414,'192.168.64.1',2,36,33934,NULL,'MongoDB {#DBNAME}: Size, data','clc93suux00004ciywh0nidxf',''),('clc93suuz00834ciy6d9avrnf',1,'Admin',1672319414,'192.168.64.1',2,36,33935,NULL,'MongoDB {#DBNAME}: Extents','clc93suux00004ciywh0nidxf',''),('clc93suuz00844ciy556i2xnp',1,'Admin',1672319414,'192.168.64.1',2,36,33936,NULL,'MongoDB {#DBNAME}: Size, file','clc93suux00004ciywh0nidxf',''),('clc93suuz00854ciyi6ybptbj',1,'Admin',1672319414,'192.168.64.1',2,36,33937,NULL,'MongoDB {#DBNAME}: Size, index','clc93suux00004ciywh0nidxf',''),('clc93suuz00864ciylidyqagd',1,'Admin',1672319414,'192.168.64.1',2,36,33938,NULL,'MongoDB {#DBNAME}: Objects, count','clc93suux00004ciywh0nidxf',''),('clc93suuz00874ciyb3ha7dt2',1,'Admin',1672319414,'192.168.64.1',2,36,33939,NULL,'MongoDB {#DBNAME}: Objects, avg size','clc93suux00004ciywh0nidxf',''),('clc93suuz00884ciy8q02x7lr',1,'Admin',1672319414,'192.168.64.1',2,36,33940,NULL,'MongoDB {#DBNAME}: Size, storage','clc93suux00004ciywh0nidxf',''),('clc93suuz00894ciyyp30eogr',1,'Admin',1672319414,'192.168.64.1',2,36,34273,NULL,'{#ID}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008a4ciyb0w933sf',1,'Admin',1672319414,'192.168.64.1',2,36,34274,NULL,'{#DISKNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008b4ciyh1qv3au9',1,'Admin',1672319414,'192.168.64.1',2,36,34275,NULL,'{#FRUID}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008c4ciy8s2f1hq0',1,'Admin',1672319414,'192.168.64.1',2,36,34276,NULL,'{#LUNNAME}: Space size','clc93suux00004ciywh0nidxf',''),('clc93suuz008d4ciytb98rltw',1,'Admin',1672319414,'192.168.64.1',2,36,34277,NULL,'{#LUNNAME}: Space used','clc93suux00004ciywh0nidxf',''),('clc93suuz008e4ciyog12kk2m',1,'Admin',1672319414,'192.168.64.1',2,36,34278,NULL,'{#LUNNAME}: Container state','clc93suux00004ciywh0nidxf',''),('clc93suuz008f4ciy74d654br',1,'Admin',1672319414,'192.168.64.1',2,36,34279,NULL,'{#LUNNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008g4ciyssn1fcid',1,'Admin',1672319414,'192.168.64.1',2,36,34280,NULL,'{#NODENAME}: Software version','clc93suux00004ciywh0nidxf',''),('clc93suuz008h4ciykcze05im',1,'Admin',1672319414,'192.168.64.1',2,36,34281,NULL,'{#NODENAME}: Controller over temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz008i4ciyaui791pa',1,'Admin',1672319414,'192.168.64.1',2,36,34282,NULL,'{#NODENAME}: Location','clc93suux00004ciywh0nidxf',''),('clc93suuz008j4ciy1pau1xow',1,'Admin',1672319414,'192.168.64.1',2,36,34283,NULL,'{#NODENAME}: Membership','clc93suux00004ciywh0nidxf',''),('clc93suuz008k4ciy8iwb218v',1,'Admin',1672319414,'192.168.64.1',2,36,34284,NULL,'{#NODENAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008l4ciy5ugk36sa',1,'Admin',1672319414,'192.168.64.1',2,36,34285,NULL,'{#NODENAME}: Uptime','clc93suux00004ciywh0nidxf',''),('clc93suuz008m4ciyuk9fxwn0',1,'Admin',1672319414,'192.168.64.1',2,36,34286,NULL,'{#ETHPORTNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008n4ciybj87gof0',1,'Admin',1672319414,'192.168.64.1',2,36,34287,NULL,'{#FCPORTNAME}: Description','clc93suux00004ciywh0nidxf',''),('clc93suuz008o4ciy0d85pn41',1,'Admin',1672319414,'192.168.64.1',2,36,34288,NULL,'{#FCPORTNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008p4ciybl3n89jx',1,'Admin',1672319414,'192.168.64.1',2,36,34289,NULL,'{#SVMNAME}: Comment','clc93suux00004ciywh0nidxf',''),('clc93suuz008q4ciynmyp2hxp',1,'Admin',1672319414,'192.168.64.1',2,36,34290,NULL,'{#SVMNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008r4ciy1cxbmj90',1,'Admin',1672319414,'192.168.64.1',2,36,34269,NULL,'{#VOLUMENAME}: Volume latency, other','clc93suux00004ciywh0nidxf',''),('clc93suuz008s4ciy9m2xmp8w',1,'Admin',1672319414,'192.168.64.1',2,36,34270,NULL,'{#VOLUMENAME}: Volume latency, read','clc93suux00004ciywh0nidxf',''),('clc93suuz008t4ciybza11oa9',1,'Admin',1672319414,'192.168.64.1',2,36,34271,NULL,'{#VOLUMENAME}: Volume latency, write','clc93suux00004ciywh0nidxf',''),('clc93suuz008u4ciyw8exvmwc',1,'Admin',1672319414,'192.168.64.1',2,36,34272,NULL,'{#VOLUMENAME}: Volume latency, total','clc93suux00004ciywh0nidxf',''),('clc93suuz008v4ciygu9ylx9i',1,'Admin',1672319414,'192.168.64.1',2,36,34291,NULL,'{#VOLUMENAME}: SVM name','clc93suux00004ciywh0nidxf',''),('clc93suuz008w4ciy6eoou7uk',1,'Admin',1672319414,'192.168.64.1',2,36,34292,NULL,'{#VOLUMENAME}: Volume throughput, write rate','clc93suux00004ciywh0nidxf',''),('clc93suuz008x4ciy4qzxe3ez',1,'Admin',1672319414,'192.168.64.1',2,36,34293,NULL,'{#VOLUMENAME}: Volume throughput, total rate','clc93suux00004ciywh0nidxf',''),('clc93suuz008y4ciyu2qtebcb',1,'Admin',1672319414,'192.168.64.1',2,36,34294,NULL,'{#VOLUMENAME}: Volume throughput, read rate','clc93suux00004ciywh0nidxf',''),('clc93suuz008z4ciyaykoka88',1,'Admin',1672319414,'192.168.64.1',2,36,34295,NULL,'{#VOLUMENAME}: Volume throughput, other rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00904ciyd6zpxuig',1,'Admin',1672319414,'192.168.64.1',2,36,34296,NULL,'{#VOLUMENAME}: Volume latency raw, write','clc93suux00004ciywh0nidxf',''),('clc93suuz00914ciy0l2n5rld',1,'Admin',1672319414,'192.168.64.1',2,36,34297,NULL,'{#VOLUMENAME}: Volume latency raw, total','clc93suux00004ciywh0nidxf',''),('clc93suuz00924ciyiyv64z5i',1,'Admin',1672319414,'192.168.64.1',2,36,34298,NULL,'{#VOLUMENAME}: Volume latency raw, read','clc93suux00004ciywh0nidxf',''),('clc93suuz00934ciysuydrg1j',1,'Admin',1672319414,'192.168.64.1',2,36,34299,NULL,'{#VOLUMENAME}: Volume latency raw, other','clc93suux00004ciywh0nidxf',''),('clc93suuz00944ciytzdjwc96',1,'Admin',1672319414,'192.168.64.1',2,36,34300,NULL,'{#VOLUMENAME}: Comment','clc93suux00004ciywh0nidxf',''),('clc93suuz00954ciyaycbdpxc',1,'Admin',1672319414,'192.168.64.1',2,36,34301,NULL,'{#VOLUMENAME}: Available size','clc93suux00004ciywh0nidxf',''),('clc93suuz00964ciyzj7pwojk',1,'Admin',1672319414,'192.168.64.1',2,36,34302,NULL,'{#VOLUMENAME}: Volume IOPS raw, write','clc93suux00004ciywh0nidxf',''),('clc93suuz00974ciyj26m7a3c',1,'Admin',1672319414,'192.168.64.1',2,36,34303,NULL,'{#VOLUMENAME}: Volume IOPS raw, total','clc93suux00004ciywh0nidxf',''),('clc93suuz00984ciypyzep3k7',1,'Admin',1672319414,'192.168.64.1',2,36,34304,NULL,'{#VOLUMENAME}: Volume IOPS raw, read','clc93suux00004ciywh0nidxf',''),('clc93suuz00994ciy0zkt38kq',1,'Admin',1672319414,'192.168.64.1',2,36,34305,NULL,'{#VOLUMENAME}: Volume IOPS raw, other','clc93suux00004ciywh0nidxf',''),('clc93suuz009a4ciycn2t95f7',1,'Admin',1672319414,'192.168.64.1',2,36,34306,NULL,'{#VOLUMENAME}: Volume IOPS, write rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009b4ciygoo6i98s',1,'Admin',1672319414,'192.168.64.1',2,36,34307,NULL,'{#VOLUMENAME}: Volume IOPS, total rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009c4ciy1z5awfj0',1,'Admin',1672319414,'192.168.64.1',2,36,34308,NULL,'{#VOLUMENAME}: Volume IOPS, read rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009d4ciyj3a4fj1s',1,'Admin',1672319414,'192.168.64.1',2,36,34309,NULL,'{#VOLUMENAME}: Volume IOPS, other rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009e4ciytwtuzrmv',1,'Admin',1672319414,'192.168.64.1',2,36,34310,NULL,'{#VOLUMENAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz009f4ciycu9pye7d',1,'Admin',1672319414,'192.168.64.1',2,36,34311,NULL,'{#VOLUMENAME}: Used size','clc93suux00004ciywh0nidxf',''),('clc93suuz009g4ciyk8pz8smo',1,'Admin',1672319414,'192.168.64.1',2,36,34312,NULL,'{#VOLUMENAME}: Space size','clc93suux00004ciywh0nidxf',''),('clc93suuz009h4ciymw805ir4',1,'Admin',1672319414,'192.168.64.1',2,36,34313,NULL,'{#VOLUMENAME}: Type','clc93suux00004ciywh0nidxf',''),('clc93suuz009i4ciy6yi9pokb',1,'Admin',1672319414,'192.168.64.1',2,36,34331,NULL,'MSSQL Job \'{#JOBNAME}\': Last run date-time','clc93suux00004ciywh0nidxf',''),('clc93suuz009j4ciyu324oqch',1,'Admin',1672319414,'192.168.64.1',2,36,34332,NULL,'MSSQL Job \'{#JOBNAME}\': Last run status message','clc93suux00004ciywh0nidxf',''),('clc93suuz009k4ciy7zk9tbk1',1,'Admin',1672319414,'192.168.64.1',2,36,34333,NULL,'MSSQL Job \'{#JOBNAME}\': Next run date-time','clc93suux00004ciywh0nidxf',''),('clc93suuz009l4ciy53nskk1k',1,'Admin',1672319414,'192.168.64.1',2,36,34334,NULL,'MSSQL Job \'{#JOBNAME}\': Run status','clc93suux00004ciywh0nidxf',''),('clc93suuz009m4ciy10a5659l',1,'Admin',1672319414,'192.168.64.1',2,36,34335,NULL,'MSSQL Job \'{#JOBNAME}\': Run duration','clc93suux00004ciywh0nidxf',''),('clc93suuz009n4ciyrispvyeo',1,'Admin',1672319414,'192.168.64.1',2,36,35185,NULL,'Nginx: HTTP location zone [{#NAME}]: Discarded, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009o4ciyiwngfh4s',1,'Admin',1672319414,'192.168.64.1',2,36,35186,NULL,'Nginx: HTTP location zone [{#NAME}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009p4ciy75iukrc1',1,'Admin',1672319414,'192.168.64.1',2,36,35187,NULL,'Nginx: HTTP location zone [{#NAME}]: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009q4ciyawxkctiz',1,'Admin',1672319414,'192.168.64.1',2,36,35188,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 1xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009r4ciyoieczztd',1,'Admin',1672319414,'192.168.64.1',2,36,35189,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 2xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009s4ciy1r7o8glt',1,'Admin',1672319414,'192.168.64.1',2,36,35190,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 3xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009t4ciy6jchwt0r',1,'Admin',1672319414,'192.168.64.1',2,36,35191,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 4xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009u4ciywaos0wqs',1,'Admin',1672319414,'192.168.64.1',2,36,35192,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 5xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009v4ciyk3fhhgyq',1,'Admin',1672319414,'192.168.64.1',2,36,35193,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009w4ciyy7e2gaq9',1,'Admin',1672319414,'192.168.64.1',2,36,35194,NULL,'Nginx: HTTP location zone [{#NAME}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009x4ciy6w909yaq',1,'Admin',1672319414,'192.168.64.1',2,36,35195,NULL,'Nginx: HTTP server zone [{#NAME}]: Discarded, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009y4ciyik36xwav',1,'Admin',1672319414,'192.168.64.1',2,36,35196,NULL,'Nginx: HTTP server zone [{#NAME}]: Processing','clc93suux00004ciywh0nidxf',''),('clc93suuz009z4ciykrjo4kfb',1,'Admin',1672319414,'192.168.64.1',2,36,35197,NULL,'Nginx: HTTP server zone [{#NAME}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a04ciylvehjdg9',1,'Admin',1672319414,'192.168.64.1',2,36,35198,NULL,'Nginx: HTTP server zone [{#NAME}]: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a14ciyp8iw6sxb',1,'Admin',1672319414,'192.168.64.1',2,36,35199,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 1xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a24ciyba4xidep',1,'Admin',1672319414,'192.168.64.1',2,36,35200,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 2xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a34ciymjv8w4mo',1,'Admin',1672319414,'192.168.64.1',2,36,35201,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 3xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a44ciyoehordtk',1,'Admin',1672319414,'192.168.64.1',2,36,35202,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 4xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a54ciy4vzlzhfx',1,'Admin',1672319414,'192.168.64.1',2,36,35203,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 5xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a64ciy2l3lb0je',1,'Admin',1672319414,'192.168.64.1',2,36,35204,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a74ciy0w8c6orh',1,'Admin',1672319414,'192.168.64.1',2,36,35205,NULL,'Nginx: HTTP server zone [{#NAME}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a84ciy7rhhl8eq',1,'Admin',1672319414,'192.168.64.1',2,36,35206,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Active','clc93suux00004ciywh0nidxf',''),('clc93suuz00a94ciyga7nsy2a',1,'Admin',1672319414,'192.168.64.1',2,36,35207,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 3xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00aa4ciyz1hfny8a',1,'Admin',1672319414,'192.168.64.1',2,36,35208,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: State','clc93suux00004ciywh0nidxf',''),('clc93suuz00ab4ciym7pta21z',1,'Admin',1672319414,'192.168.64.1',2,36,35209,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ac4ciytlftwpbe',1,'Admin',1672319414,'192.168.64.1',2,36,35210,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Response time','clc93suux00004ciywh0nidxf',''),('clc93suuz00ad4ciyoz3x23ad',1,'Admin',1672319414,'192.168.64.1',2,36,35211,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ae4ciyptda8rsj',1,'Admin',1672319414,'192.168.64.1',2,36,35212,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 5xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00af4ciy5x9vr7qw',1,'Admin',1672319414,'192.168.64.1',2,36,35213,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 4xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ag4ciy5zatuomz',1,'Admin',1672319414,'192.168.64.1',2,36,35214,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 2xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ah4ciyrzplg3q1',1,'Admin',1672319414,'192.168.64.1',2,36,35215,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ai4ciyeigmaivs',1,'Admin',1672319414,'192.168.64.1',2,36,35216,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 1xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00aj4ciypya4kkm9',1,'Admin',1672319414,'192.168.64.1',2,36,35217,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ak4ciylbvblfmb',1,'Admin',1672319414,'192.168.64.1',2,36,35218,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00al4ciywl0jcpbs',1,'Admin',1672319414,'192.168.64.1',2,36,35219,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy','clc93suux00004ciywh0nidxf',''),('clc93suuz00am4ciyer8dlrjp',1,'Admin',1672319414,'192.168.64.1',2,36,35220,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails','clc93suux00004ciywh0nidxf',''),('clc93suuz00an4ciy399j3twg',1,'Admin',1672319414,'192.168.64.1',2,36,35221,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check','clc93suux00004ciywh0nidxf',''),('clc93suuz00ao4ciyq4ao43pf',1,'Admin',1672319414,'192.168.64.1',2,36,35222,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Header time','clc93suux00004ciywh0nidxf',''),('clc93suuz00ap4ciy8fr8vn6r',1,'Admin',1672319414,'192.168.64.1',2,36,35223,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail','clc93suux00004ciywh0nidxf',''),('clc93suuz00aq4ciy1p1tl45s',1,'Admin',1672319414,'192.168.64.1',2,36,35224,NULL,'Nginx: HTTP upstream [{#NAME}]: Keepalive','clc93suux00004ciywh0nidxf',''),('clc93suuz00ar4ciynlb180zn',1,'Admin',1672319414,'192.168.64.1',2,36,35225,NULL,'Nginx: HTTP upstream [{#NAME}]: Zombies','clc93suux00004ciywh0nidxf',''),('clc93suuz00as4ciyghx432p2',1,'Admin',1672319414,'192.168.64.1',2,36,35226,NULL,'Nginx: HTTP upstream [{#NAME}]: Zone','clc93suux00004ciywh0nidxf',''),('clc93suuz00at4ciydx4uj25m',1,'Admin',1672319414,'192.168.64.1',2,36,35227,NULL,'Nginx: Resolver [{#NAME}]: Requests addr, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00au4ciy2mup2g67',1,'Admin',1672319414,'192.168.64.1',2,36,35228,NULL,'Nginx: Resolver [{#NAME}]: Requests name, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00av4ciy6x0ftawr',1,'Admin',1672319414,'192.168.64.1',2,36,35229,NULL,'Nginx: Resolver [{#NAME}]: Requests srv, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00aw4ciyzdijaioh',1,'Admin',1672319414,'192.168.64.1',2,36,35230,NULL,'Nginx: Resolver [{#NAME}]: Responses formerr, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ax4ciyy8yn7cy8',1,'Admin',1672319414,'192.168.64.1',2,36,35231,NULL,'Nginx: Resolver [{#NAME}]: Responses noerror, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ay4ciyki8nn3wo',1,'Admin',1672319414,'192.168.64.1',2,36,35232,NULL,'Nginx: Resolver [{#NAME}]: Responses notimp, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00az4ciy1rh6rpnd',1,'Admin',1672319414,'192.168.64.1',2,36,35233,NULL,'Nginx: Resolver [{#NAME}]: Responses nxdomain, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b04ciybu9mcsdx',1,'Admin',1672319414,'192.168.64.1',2,36,35234,NULL,'Nginx: Resolver [{#NAME}]: Responses refused, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b14ciy19u8ggzg',1,'Admin',1672319414,'192.168.64.1',2,36,35235,NULL,'Nginx: Resolver [{#NAME}]: Responses servfail, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b24ciysnqh31it',1,'Admin',1672319414,'192.168.64.1',2,36,35236,NULL,'Nginx: Resolver [{#NAME}]: Responses timedout, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b34ciya782inmf',1,'Admin',1672319414,'192.168.64.1',2,36,35237,NULL,'Nginx: Resolver [{#NAME}]: Responses unknown, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b44ciyialhvx7p',1,'Admin',1672319414,'192.168.64.1',2,36,35238,NULL,'Nginx: Stream server zone [{#NAME}]: Connections, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b54ciy3h47hnxe',1,'Admin',1672319414,'192.168.64.1',2,36,35239,NULL,'Nginx: Stream server zone [{#NAME}]: Discarded, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b64ciy869fv58s',1,'Admin',1672319414,'192.168.64.1',2,36,35240,NULL,'Nginx: Stream server zone [{#NAME}]: Processing','clc93suux00004ciywh0nidxf',''),('clc93suuz00b74ciy6o7yrcyt',1,'Admin',1672319414,'192.168.64.1',2,36,35241,NULL,'Nginx: Stream server zone [{#NAME}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b84ciyev0lfum0',1,'Admin',1672319414,'192.168.64.1',2,36,35242,NULL,'Nginx: Stream server zone [{#NAME}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b94ciyf3b6y8gf',1,'Admin',1672319414,'192.168.64.1',2,36,35243,NULL,'Nginx: Stream server zone [{#NAME}]: Sessions 2xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ba4ciy09rls9or',1,'Admin',1672319414,'192.168.64.1',2,36,35244,NULL,'Nginx: Stream server zone [{#NAME}]: Sessions 4xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bb4ciyvfidd9sk',1,'Admin',1672319414,'192.168.64.1',2,36,35245,NULL,'Nginx: Stream server zone [{#NAME}]: Sessions 5xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bc4ciyc8mwu771',1,'Admin',1672319414,'192.168.64.1',2,36,35246,NULL,'Nginx: Stream server zone [{#NAME}]: Sessions total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bd4ciykcaiarxr',1,'Admin',1672319414,'192.168.64.1',2,36,35247,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Active','clc93suux00004ciywh0nidxf',''),('clc93suuz00be4ciystp0kpfo',1,'Admin',1672319414,'192.168.64.1',2,36,35248,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connections','clc93suux00004ciywh0nidxf',''),('clc93suuz00bf4ciym25q9frb',1,'Admin',1672319414,'192.168.64.1',2,36,35249,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connect time','clc93suux00004ciywh0nidxf',''),('clc93suuz00bg4ciyzfzzi1ye',1,'Admin',1672319414,'192.168.64.1',2,36,35250,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bh4ciye20slc1c',1,'Admin',1672319414,'192.168.64.1',2,36,35251,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: First byte time','clc93suux00004ciywh0nidxf',''),('clc93suuz00bi4ciyr1spmg03',1,'Admin',1672319414,'192.168.64.1',2,36,35252,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check','clc93suux00004ciywh0nidxf',''),('clc93suuz00bj4ciyo0n0a9dk',1,'Admin',1672319414,'192.168.64.1',2,36,35253,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails','clc93suux00004ciywh0nidxf',''),('clc93suuz00bk4ciy5dpr8ujp',1,'Admin',1672319414,'192.168.64.1',2,36,35254,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy','clc93suux00004ciywh0nidxf',''),('clc93suuz00bl4ciy0rjwc8ir',1,'Admin',1672319414,'192.168.64.1',2,36,35255,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bm4ciyjanhxj8y',1,'Admin',1672319414,'192.168.64.1',2,36,35256,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Response time','clc93suux00004ciywh0nidxf',''),('clc93suuz00bn4ciy852ybrjt',1,'Admin',1672319414,'192.168.64.1',2,36,35257,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bo4ciyps9v2icn',1,'Admin',1672319414,'192.168.64.1',2,36,35258,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: State','clc93suux00004ciywh0nidxf',''),('clc93suuz00bp4ciysvsumcv6',1,'Admin',1672319414,'192.168.64.1',2,36,35259,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail','clc93suux00004ciywh0nidxf',''),('clc93suuz00bq4ciy8qmm2tk0',1,'Admin',1672319414,'192.168.64.1',2,36,35260,NULL,'Nginx: Stream upstream [{#NAME}]: Zombies','clc93suux00004ciywh0nidxf',''),('clc93suuz00br4ciyfvxqcvqy',1,'Admin',1672319414,'192.168.64.1',2,36,35261,NULL,'Nginx: Stream upstream [{#NAME}]: Zone','clc93suux00004ciywh0nidxf',''),('clc93suuz00bs4ciysagg6sxd',1,'Admin',1672319414,'192.168.64.1',2,36,38589,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00bt4ciytcy4sbm7',1,'Admin',1672319414,'192.168.64.1',2,36,38590,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00bu4ciyro5923g5',1,'Admin',1672319414,'192.168.64.1',2,36,38591,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00bv4ciycvrowx5q',1,'Admin',1672319414,'192.168.64.1',2,36,38592,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00bw4ciyqzzpqndk',1,'Admin',1672319414,'192.168.64.1',2,36,38593,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00bx4ciyq1c5af6i',1,'Admin',1672319414,'192.168.64.1',2,36,38594,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00by4ciyrbvuki6t',1,'Admin',1672319414,'192.168.64.1',2,36,38595,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00bz4ciyhvd4y7c7',1,'Admin',1672319414,'192.168.64.1',2,36,38596,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00c04ciyyq8bmg17',1,'Admin',1672319414,'192.168.64.1',2,36,38597,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00c14ciy3pihkic8',1,'Admin',1672319414,'192.168.64.1',2,36,38598,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00c24ciy9k6yr0o5',1,'Admin',1672319414,'192.168.64.1',2,36,38599,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00c34ciyqxy4bd8d',1,'Admin',1672319414,'192.168.64.1',2,36,38600,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00c44ciyxgtedr4g',1,'Admin',1672319414,'192.168.64.1',2,36,38601,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00c54ciy7haqdfll',1,'Admin',1672319414,'192.168.64.1',2,36,38602,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00c64ciy1j513oxi',1,'Admin',1672319414,'192.168.64.1',2,36,38603,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00c74ciyvhvbrlae',1,'Admin',1672319414,'192.168.64.1',2,36,38604,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00c84ciylyg7sa8u',1,'Admin',1672319414,'192.168.64.1',2,36,38605,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00c94ciybx4yj7mb',1,'Admin',1672319414,'192.168.64.1',2,36,38606,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ca4ciy6chidb98',1,'Admin',1672319414,'192.168.64.1',2,36,38607,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00cb4ciyp7y4ym5e',1,'Admin',1672319414,'192.168.64.1',2,36,38643,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00cc4ciytfc7xu38',1,'Admin',1672319414,'192.168.64.1',2,36,38644,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00cd4ciydafd8f9j',1,'Admin',1672319414,'192.168.64.1',2,36,38645,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00ce4ciycbx23ybs',1,'Admin',1672319414,'192.168.64.1',2,36,38646,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00cf4ciyqkbc2o7k',1,'Admin',1672319414,'192.168.64.1',2,36,38647,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00cg4ciyd4clkihi',1,'Admin',1672319414,'192.168.64.1',2,36,38648,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00ch4ciyks3jecpl',1,'Admin',1672319414,'192.168.64.1',2,36,38649,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00ci4ciyq6pqjoon',1,'Admin',1672319414,'192.168.64.1',2,36,38650,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00cj4ciyrhawgvd2',1,'Admin',1672319414,'192.168.64.1',2,36,38651,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00ck4ciy148ylj36',1,'Admin',1672319414,'192.168.64.1',2,36,38652,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00cl4ciykdlnnmef',1,'Admin',1672319414,'192.168.64.1',2,36,38653,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00cm4ciyu9acwwdn',1,'Admin',1672319414,'192.168.64.1',2,36,38654,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00cn4ciyk3i9dtu0',1,'Admin',1672319414,'192.168.64.1',2,36,38655,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00co4ciyi72yxx0p',1,'Admin',1672319414,'192.168.64.1',2,36,38656,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00cp4ciyfh6vj5lj',1,'Admin',1672319414,'192.168.64.1',2,36,38657,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00cq4ciyheus0zq2',1,'Admin',1672319414,'192.168.64.1',2,36,38658,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00cr4ciy6cfswx9p',1,'Admin',1672319414,'192.168.64.1',2,36,38659,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00cs4ciyclr4cor4',1,'Admin',1672319414,'192.168.64.1',2,36,38660,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ct4ciyk606txt4',1,'Admin',1672319414,'192.168.64.1',2,36,38661,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00cu4ciyzck7qptf',1,'Admin',1672319414,'192.168.64.1',2,36,38697,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00cv4ciyepr2mud9',1,'Admin',1672319414,'192.168.64.1',2,36,38698,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00cw4ciyi1mfjw93',1,'Admin',1672319414,'192.168.64.1',2,36,38699,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00cx4ciy8u7kxgjg',1,'Admin',1672319414,'192.168.64.1',2,36,38700,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00cy4ciy2afm6qzx',1,'Admin',1672319414,'192.168.64.1',2,36,38701,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00cz4ciyx0fhznof',1,'Admin',1672319414,'192.168.64.1',2,36,38702,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00d04ciyuu05tydy',1,'Admin',1672319414,'192.168.64.1',2,36,38703,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00d14ciy98c5iovp',1,'Admin',1672319414,'192.168.64.1',2,36,38704,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00d24ciyifyfbnog',1,'Admin',1672319414,'192.168.64.1',2,36,38705,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00d34ciyzkyczrcz',1,'Admin',1672319414,'192.168.64.1',2,36,38706,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00d44ciyj466vrpc',1,'Admin',1672319414,'192.168.64.1',2,36,38707,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00d54ciyh6fp7i9f',1,'Admin',1672319414,'192.168.64.1',2,36,38708,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00d64ciyi8anxcsy',1,'Admin',1672319414,'192.168.64.1',2,36,38709,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00d74ciypa9s3a40',1,'Admin',1672319414,'192.168.64.1',2,36,38710,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00d84ciym2cpqmjo',1,'Admin',1672319414,'192.168.64.1',2,36,38711,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00d94ciy9azy3wqh',1,'Admin',1672319414,'192.168.64.1',2,36,38712,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00da4ciyc2f1rz11',1,'Admin',1672319414,'192.168.64.1',2,36,38713,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00db4ciyn6ho2tql',1,'Admin',1672319414,'192.168.64.1',2,36,38714,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00dc4ciyr5zcy2it',1,'Admin',1672319414,'192.168.64.1',2,36,38715,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00dd4ciywmfu5er3',1,'Admin',1672319414,'192.168.64.1',2,36,38751,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00de4ciy45n85t5k',1,'Admin',1672319414,'192.168.64.1',2,36,38752,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00df4ciy34dfmjnr',1,'Admin',1672319414,'192.168.64.1',2,36,38753,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00dg4ciysmflcdcg',1,'Admin',1672319414,'192.168.64.1',2,36,38754,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00dh4ciyefvroiza',1,'Admin',1672319414,'192.168.64.1',2,36,38755,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00di4ciyjwdvjxks',1,'Admin',1672319414,'192.168.64.1',2,36,38756,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00dj4ciygkfgtup2',1,'Admin',1672319414,'192.168.64.1',2,36,38757,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00dk4ciyc5xldbey',1,'Admin',1672319414,'192.168.64.1',2,36,38758,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00dl4ciywas5l8tj',1,'Admin',1672319414,'192.168.64.1',2,36,38759,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00dm4ciytmlyqvhl',1,'Admin',1672319414,'192.168.64.1',2,36,38760,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00dn4ciya2asill1',1,'Admin',1672319414,'192.168.64.1',2,36,38761,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00do4ciy2wkjdjnn',1,'Admin',1672319414,'192.168.64.1',2,36,38762,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00dp4ciyhi3ssd3f',1,'Admin',1672319414,'192.168.64.1',2,36,38763,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00dq4ciyg5wwb31l',1,'Admin',1672319414,'192.168.64.1',2,36,38764,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00dr4ciy6ebmqqtm',1,'Admin',1672319414,'192.168.64.1',2,36,38765,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00ds4ciy1jvei1my',1,'Admin',1672319414,'192.168.64.1',2,36,38766,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00dt4ciy3pimnh9k',1,'Admin',1672319414,'192.168.64.1',2,36,38767,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00du4ciyobsh76x9',1,'Admin',1672319414,'192.168.64.1',2,36,38768,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00dv4ciyuhiq86fy',1,'Admin',1672319414,'192.168.64.1',2,36,38769,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00dw4ciygtu6i8rp',1,'Admin',1672319414,'192.168.64.1',2,36,38805,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00dx4ciy28lnw06a',1,'Admin',1672319414,'192.168.64.1',2,36,38806,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00dy4ciyjo5ebg7s',1,'Admin',1672319414,'192.168.64.1',2,36,38807,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00dz4ciyt2qeq9i4',1,'Admin',1672319414,'192.168.64.1',2,36,38808,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00e04ciyxa1x242x',1,'Admin',1672319414,'192.168.64.1',2,36,38809,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00e14ciypkc680sl',1,'Admin',1672319414,'192.168.64.1',2,36,38810,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00e24ciybq6ab0cz',1,'Admin',1672319414,'192.168.64.1',2,36,38811,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00e34ciy53xcwvwr',1,'Admin',1672319414,'192.168.64.1',2,36,38812,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00e44ciyej34i9v7',1,'Admin',1672319414,'192.168.64.1',2,36,38813,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00e54ciyx7c3c6j2',1,'Admin',1672319414,'192.168.64.1',2,36,38814,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00e64ciy92vg196q',1,'Admin',1672319414,'192.168.64.1',2,36,38815,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00e74ciygbpakkpl',1,'Admin',1672319414,'192.168.64.1',2,36,38816,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00e84ciy0ui81bym',1,'Admin',1672319414,'192.168.64.1',2,36,38817,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00e94ciyej944iap',1,'Admin',1672319414,'192.168.64.1',2,36,38818,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00ea4ciybqweogp9',1,'Admin',1672319414,'192.168.64.1',2,36,38819,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00eb4ciy1vvs9o87',1,'Admin',1672319414,'192.168.64.1',2,36,38820,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00ec4ciypngoikuj',1,'Admin',1672319414,'192.168.64.1',2,36,38821,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00ed4ciy2t4fp1rz',1,'Admin',1672319414,'192.168.64.1',2,36,38822,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ee4ciywflow7uf',1,'Admin',1672319414,'192.168.64.1',2,36,38823,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ef4ciytp6copjz',1,'Admin',1672319414,'192.168.64.1',2,36,38859,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00eg4ciyvysoj5dh',1,'Admin',1672319414,'192.168.64.1',2,36,38860,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00eh4ciy2ehthpv2',1,'Admin',1672319414,'192.168.64.1',2,36,38861,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00ei4ciy6l7x2a2i',1,'Admin',1672319414,'192.168.64.1',2,36,38862,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00ej4ciyjk8t636l',1,'Admin',1672319414,'192.168.64.1',2,36,38863,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00ek4ciyojyqvcew',1,'Admin',1672319414,'192.168.64.1',2,36,38864,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00el4ciywt2smq2i',1,'Admin',1672319414,'192.168.64.1',2,36,38865,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00em4ciydl64hzbb',1,'Admin',1672319414,'192.168.64.1',2,36,38866,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00en4ciy23uue4sy',1,'Admin',1672319414,'192.168.64.1',2,36,38867,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00eo4ciy0ogkwie4',1,'Admin',1672319414,'192.168.64.1',2,36,38868,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00ep4ciy2etv9t72',1,'Admin',1672319414,'192.168.64.1',2,36,38869,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00eq4ciyq814cld8',1,'Admin',1672319414,'192.168.64.1',2,36,38870,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00er4ciycx74ol80',1,'Admin',1672319414,'192.168.64.1',2,36,38871,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00es4ciy0ar54h25',1,'Admin',1672319414,'192.168.64.1',2,36,38872,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00et4ciy1kek029z',1,'Admin',1672319414,'192.168.64.1',2,36,38873,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00eu4ciyony1f4wx',1,'Admin',1672319414,'192.168.64.1',2,36,38874,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00ev4ciyyu27togn',1,'Admin',1672319414,'192.168.64.1',2,36,38875,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00ew4ciy5ebpmd1z',1,'Admin',1672319414,'192.168.64.1',2,36,38876,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ex4ciyj7fev9xg',1,'Admin',1672319414,'192.168.64.1',2,36,38877,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ey4ciyrderddn2',1,'Admin',1672319414,'192.168.64.1',2,36,38913,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00ez4ciy79ngprgp',1,'Admin',1672319414,'192.168.64.1',2,36,38914,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00f04ciy3mbpxfpn',1,'Admin',1672319414,'192.168.64.1',2,36,38915,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00f14ciyz7l87xcp',1,'Admin',1672319414,'192.168.64.1',2,36,38916,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00f24ciybzgqdq7y',1,'Admin',1672319414,'192.168.64.1',2,36,38917,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00f34ciy63hyolg3',1,'Admin',1672319414,'192.168.64.1',2,36,38918,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00f44ciy5ffi8fdy',1,'Admin',1672319414,'192.168.64.1',2,36,38919,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00f54ciytatlmaby',1,'Admin',1672319414,'192.168.64.1',2,36,38920,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00f64ciyqzdk8mnr',1,'Admin',1672319414,'192.168.64.1',2,36,38921,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00f74ciysnuj9jwv',1,'Admin',1672319414,'192.168.64.1',2,36,38922,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00f84ciyys78rhf4',1,'Admin',1672319414,'192.168.64.1',2,36,38923,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00f94ciyf35esyzb',1,'Admin',1672319414,'192.168.64.1',2,36,38924,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fa4ciyq0ujnab4',1,'Admin',1672319414,'192.168.64.1',2,36,38925,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fb4ciyfjriwo0j',1,'Admin',1672319414,'192.168.64.1',2,36,38926,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00fc4ciy5h6t5srb',1,'Admin',1672319414,'192.168.64.1',2,36,38927,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fd4ciyhgqknlbu',1,'Admin',1672319414,'192.168.64.1',2,36,38928,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00fe4ciyrb07gpu9',1,'Admin',1672319414,'192.168.64.1',2,36,38929,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00ff4ciy53xd28u6',1,'Admin',1672319414,'192.168.64.1',2,36,38930,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00fg4ciy9ravwizj',1,'Admin',1672319414,'192.168.64.1',2,36,38931,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00fh4ciytpkjdc94',1,'Admin',1672319414,'192.168.64.1',2,36,38967,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00fi4ciy94tkm25i',1,'Admin',1672319414,'192.168.64.1',2,36,38968,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00fj4ciyqzop59hx',1,'Admin',1672319414,'192.168.64.1',2,36,38969,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00fk4ciy5fdbykyx',1,'Admin',1672319414,'192.168.64.1',2,36,38970,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00fl4ciyggo4c5rc',1,'Admin',1672319414,'192.168.64.1',2,36,38971,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00fm4ciyrepd5euk',1,'Admin',1672319414,'192.168.64.1',2,36,38972,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00fn4ciyij8r87kg',1,'Admin',1672319414,'192.168.64.1',2,36,38973,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00fo4ciymdmsmxup',1,'Admin',1672319414,'192.168.64.1',2,36,38974,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fp4ciyywjh225m',1,'Admin',1672319414,'192.168.64.1',2,36,38975,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00fq4ciyn6kgpejf',1,'Admin',1672319414,'192.168.64.1',2,36,38976,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00fr4ciy5ofg8h6m',1,'Admin',1672319414,'192.168.64.1',2,36,38977,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00fs4ciy8n9azhsj',1,'Admin',1672319414,'192.168.64.1',2,36,38978,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00ft4ciyen2ncjfa',1,'Admin',1672319414,'192.168.64.1',2,36,38979,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fu4ciy4as1ytbc',1,'Admin',1672319414,'192.168.64.1',2,36,38980,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00fv4ciya63w289g',1,'Admin',1672319414,'192.168.64.1',2,36,38981,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fw4ciyzyrma9i6',1,'Admin',1672319414,'192.168.64.1',2,36,38982,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00fx4ciyxhzd52m2',1,'Admin',1672319414,'192.168.64.1',2,36,38983,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00fy4ciyfxpsl2gr',1,'Admin',1672319414,'192.168.64.1',2,36,38984,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00fz4ciyhkxa5oua',1,'Admin',1672319414,'192.168.64.1',2,36,38985,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00g04ciyqobktr2d',1,'Admin',1672319414,'192.168.64.1',2,36,39021,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00g14ciyos63pk3t',1,'Admin',1672319414,'192.168.64.1',2,36,39022,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00g24ciyjxjrgij0',1,'Admin',1672319414,'192.168.64.1',2,36,39023,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00g34ciyesob6lu9',1,'Admin',1672319414,'192.168.64.1',2,36,39024,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00g44ciyny0lnhni',1,'Admin',1672319414,'192.168.64.1',2,36,39025,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00g54ciyuwflkpfe',1,'Admin',1672319414,'192.168.64.1',2,36,39026,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00g64ciyhuwrlwti',1,'Admin',1672319414,'192.168.64.1',2,36,39027,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00g74ciynpu2i1ui',1,'Admin',1672319414,'192.168.64.1',2,36,39028,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00g84ciykkc3ouvd',1,'Admin',1672319414,'192.168.64.1',2,36,39029,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00g94ciyeumt6n45',1,'Admin',1672319414,'192.168.64.1',2,36,39030,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00ga4ciy8c3jovfb',1,'Admin',1672319414,'192.168.64.1',2,36,39031,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00gb4ciyi59i1ue1',1,'Admin',1672319414,'192.168.64.1',2,36,39032,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gc4ciyf7av6zfb',1,'Admin',1672319414,'192.168.64.1',2,36,39033,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gd4ciyhutuw8v8',1,'Admin',1672319414,'192.168.64.1',2,36,39034,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00ge4ciy85chwgg2',1,'Admin',1672319414,'192.168.64.1',2,36,39035,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gf4ciymmvu614o',1,'Admin',1672319414,'192.168.64.1',2,36,39036,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00gg4ciyrk75ulxl',1,'Admin',1672319414,'192.168.64.1',2,36,39037,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00gh4ciycnhkbfg3',1,'Admin',1672319414,'192.168.64.1',2,36,39038,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00gi4ciy2i8ow3d5',1,'Admin',1672319414,'192.168.64.1',2,36,39039,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00gj4ciyd19r2rl4',1,'Admin',1672319414,'192.168.64.1',2,36,39075,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00gk4ciykmzbwud8',1,'Admin',1672319414,'192.168.64.1',2,36,39076,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00gl4ciy6ebw0bqa',1,'Admin',1672319414,'192.168.64.1',2,36,39077,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00gm4ciyxf255it5',1,'Admin',1672319414,'192.168.64.1',2,36,39078,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00gn4ciye5zigzbq',1,'Admin',1672319414,'192.168.64.1',2,36,39079,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00go4ciya0h80mva',1,'Admin',1672319414,'192.168.64.1',2,36,39080,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00gp4ciy2ky7eyon',1,'Admin',1672319414,'192.168.64.1',2,36,39081,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00gq4ciy7ehvoycn',1,'Admin',1672319414,'192.168.64.1',2,36,39082,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gr4ciyro5dzski',1,'Admin',1672319414,'192.168.64.1',2,36,39083,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00gs4ciyd5ksxfjf',1,'Admin',1672319414,'192.168.64.1',2,36,39084,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00gt4ciyilu2w916',1,'Admin',1672319414,'192.168.64.1',2,36,39085,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00gu4ciyk177nl4p',1,'Admin',1672319414,'192.168.64.1',2,36,39086,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gv4ciykpg123gn',1,'Admin',1672319414,'192.168.64.1',2,36,39087,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gw4ciy18ua2l7o',1,'Admin',1672319414,'192.168.64.1',2,36,39088,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00gx4ciy0wluzc5c',1,'Admin',1672319414,'192.168.64.1',2,36,39089,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gy4ciy8djjpchg',1,'Admin',1672319414,'192.168.64.1',2,36,39090,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00gz4ciyaqmhhjl8',1,'Admin',1672319414,'192.168.64.1',2,36,39091,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00h04ciyc9to5yuk',1,'Admin',1672319414,'192.168.64.1',2,36,39092,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00h14ciyoi1tzyq9',1,'Admin',1672319414,'192.168.64.1',2,36,39093,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00h24ciy5tlhf3di',1,'Admin',1672319414,'192.168.64.1',2,36,39129,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00h34ciy9fer4y8p',1,'Admin',1672319414,'192.168.64.1',2,36,39130,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00h44ciy35yk523u',1,'Admin',1672319414,'192.168.64.1',2,36,39131,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00h54ciyhvlesvf3',1,'Admin',1672319414,'192.168.64.1',2,36,39132,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00h64ciyapez71l4',1,'Admin',1672319414,'192.168.64.1',2,36,39133,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00h74ciyz1dk8d4f',1,'Admin',1672319414,'192.168.64.1',2,36,39134,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00h84ciyxcjr1x8o',1,'Admin',1672319414,'192.168.64.1',2,36,39135,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00h94ciy8ipo1zj5',1,'Admin',1672319414,'192.168.64.1',2,36,39136,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00ha4ciywx4kjp7h',1,'Admin',1672319414,'192.168.64.1',2,36,39137,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00hb4ciy8ah6wznr',1,'Admin',1672319414,'192.168.64.1',2,36,39138,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00hc4ciyrkgsoqox',1,'Admin',1672319414,'192.168.64.1',2,36,39139,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00hd4ciyas75i2vc',1,'Admin',1672319414,'192.168.64.1',2,36,39140,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00he4ciylxpl8317',1,'Admin',1672319414,'192.168.64.1',2,36,39141,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00hf4ciy0p390ctg',1,'Admin',1672319414,'192.168.64.1',2,36,39142,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00hg4ciycprbebxo',1,'Admin',1672319414,'192.168.64.1',2,36,39143,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00hh4ciyonzcyyd1',1,'Admin',1672319414,'192.168.64.1',2,36,39144,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00hi4ciyit8rma3g',1,'Admin',1672319414,'192.168.64.1',2,36,39145,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00hj4ciy2od9oo0b',1,'Admin',1672319414,'192.168.64.1',2,36,39146,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00hk4ciybil5d6ia',1,'Admin',1672319414,'192.168.64.1',2,36,39147,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00hl4ciy0z07r908',1,'Admin',1672319414,'192.168.64.1',2,36,39183,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00hm4ciyjb2v5iub',1,'Admin',1672319414,'192.168.64.1',2,36,39184,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00hn4ciye2cu06r6',1,'Admin',1672319414,'192.168.64.1',2,36,39185,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00ho4ciydtomqrc0',1,'Admin',1672319414,'192.168.64.1',2,36,39186,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00hp4ciycwcjkx7l',1,'Admin',1672319414,'192.168.64.1',2,36,39187,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00hq4ciy33kenyni',1,'Admin',1672319414,'192.168.64.1',2,36,39188,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00hr4ciysxkabooy',1,'Admin',1672319414,'192.168.64.1',2,36,39189,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00hs4ciybh0d4cex',1,'Admin',1672319414,'192.168.64.1',2,36,39190,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00ht4ciy62fwjxp8',1,'Admin',1672319414,'192.168.64.1',2,36,39191,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00hu4ciydorlpajn',1,'Admin',1672319414,'192.168.64.1',2,36,39192,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00hv4ciy4jc6exq4',1,'Admin',1672319414,'192.168.64.1',2,36,39193,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00hw4ciyd3wlmzgz',1,'Admin',1672319414,'192.168.64.1',2,36,39194,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00hx4ciynblzhf1a',1,'Admin',1672319414,'192.168.64.1',2,36,39195,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00hy4ciy05lv576z',1,'Admin',1672319414,'192.168.64.1',2,36,39196,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00hz4ciygw62yovd',1,'Admin',1672319414,'192.168.64.1',2,36,39197,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00i04ciyoprhypfq',1,'Admin',1672319414,'192.168.64.1',2,36,39198,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000i14ciy8vkm58gx',1,'Admin',1672319414,'192.168.64.1',2,36,39199,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000i24ciyyhg1326p',1,'Admin',1672319414,'192.168.64.1',2,36,39200,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000i34ciy1vhvu59s',1,'Admin',1672319414,'192.168.64.1',2,36,39201,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000i44ciypi655u9u',1,'Admin',1672319414,'192.168.64.1',2,36,39237,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000i54ciyu2apllqo',1,'Admin',1672319414,'192.168.64.1',2,36,39238,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000i64ciyzc9qes88',1,'Admin',1672319414,'192.168.64.1',2,36,39239,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000i74ciysl1mbv7f',1,'Admin',1672319414,'192.168.64.1',2,36,39240,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000i84ciyh8dpjzmi',1,'Admin',1672319414,'192.168.64.1',2,36,39241,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000i94ciyaf8t3qab',1,'Admin',1672319414,'192.168.64.1',2,36,39242,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000ia4ciy1af8uolg',1,'Admin',1672319414,'192.168.64.1',2,36,39243,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000ib4ciyc58iukhn',1,'Admin',1672319414,'192.168.64.1',2,36,39244,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ic4ciy8myiw6oy',1,'Admin',1672319414,'192.168.64.1',2,36,39245,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000id4ciyvgrez3it',1,'Admin',1672319414,'192.168.64.1',2,36,39246,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000ie4ciy733je04r',1,'Admin',1672319414,'192.168.64.1',2,36,39247,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000if4ciytlg19w5s',1,'Admin',1672319414,'192.168.64.1',2,36,39248,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ig4ciy0nqycwhi',1,'Admin',1672319414,'192.168.64.1',2,36,39249,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ih4ciy6tyv7t46',1,'Admin',1672319414,'192.168.64.1',2,36,39250,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000ii4ciyreu1m5e6',1,'Admin',1672319414,'192.168.64.1',2,36,39251,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ij4ciy4izzep8s',1,'Admin',1672319414,'192.168.64.1',2,36,39252,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000ik4ciyr4jh3837',1,'Admin',1672319414,'192.168.64.1',2,36,39253,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000il4ciy0uxs6d25',1,'Admin',1672319414,'192.168.64.1',2,36,39254,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000im4ciy6gloa17m',1,'Admin',1672319414,'192.168.64.1',2,36,39255,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000in4ciyqui2ku0y',1,'Admin',1672319414,'192.168.64.1',2,36,39291,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000io4ciy1jc4aczm',1,'Admin',1672319414,'192.168.64.1',2,36,39292,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000ip4ciykjagt3f3',1,'Admin',1672319414,'192.168.64.1',2,36,39293,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000iq4ciyll4a6ie0',1,'Admin',1672319414,'192.168.64.1',2,36,39294,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000ir4ciyvja3phbe',1,'Admin',1672319414,'192.168.64.1',2,36,39295,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000is4ciydqiufmjp',1,'Admin',1672319414,'192.168.64.1',2,36,39296,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000it4ciymohgtyta',1,'Admin',1672319414,'192.168.64.1',2,36,39297,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000iu4ciymw8ubvom',1,'Admin',1672319414,'192.168.64.1',2,36,39298,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000iv4ciyid7at6gn',1,'Admin',1672319414,'192.168.64.1',2,36,39299,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000iw4ciyh5q3sh9q',1,'Admin',1672319414,'192.168.64.1',2,36,39300,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000ix4ciyrqaovyn4',1,'Admin',1672319414,'192.168.64.1',2,36,39301,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000iy4ciy0b81id5w',1,'Admin',1672319414,'192.168.64.1',2,36,39302,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000iz4ciy95i4r1ve',1,'Admin',1672319414,'192.168.64.1',2,36,39303,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000j04ciyfea7wph5',1,'Admin',1672319414,'192.168.64.1',2,36,39304,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000j14ciyjk1mgrvd',1,'Admin',1672319414,'192.168.64.1',2,36,39305,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000j24ciyzq0uc66v',1,'Admin',1672319414,'192.168.64.1',2,36,39306,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000j34ciy89wjpj33',1,'Admin',1672319414,'192.168.64.1',2,36,39307,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000j44ciy0qbos0xu',1,'Admin',1672319414,'192.168.64.1',2,36,39308,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000j54ciymtwolaur',1,'Admin',1672319414,'192.168.64.1',2,36,39309,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000j64ciy0h1yz4jb',1,'Admin',1672319414,'192.168.64.1',2,36,39615,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000j74ciyrl0dm5lb',1,'Admin',1672319414,'192.168.64.1',2,36,39616,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000j84ciycni5697w',1,'Admin',1672319414,'192.168.64.1',2,36,39617,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000j94ciyzmohkuol',1,'Admin',1672319414,'192.168.64.1',2,36,39618,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000ja4ciygfkuvqgw',1,'Admin',1672319414,'192.168.64.1',2,36,39619,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000jb4ciykbchaioj',1,'Admin',1672319414,'192.168.64.1',2,36,39620,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000jc4ciyez909zmi',1,'Admin',1672319414,'192.168.64.1',2,36,39621,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000jd4ciyatclrmn5',1,'Admin',1672319414,'192.168.64.1',2,36,39622,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000je4ciyrfevm4cd',1,'Admin',1672319414,'192.168.64.1',2,36,39623,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000jf4ciynpyrmfom',1,'Admin',1672319414,'192.168.64.1',2,36,39624,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000jg4ciygt4beirx',1,'Admin',1672319414,'192.168.64.1',2,36,39625,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000jh4ciy20gjhy55',1,'Admin',1672319414,'192.168.64.1',2,36,39626,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ji4ciyznnaj3s1',1,'Admin',1672319414,'192.168.64.1',2,36,39627,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000jj4ciy85rztvur',1,'Admin',1672319414,'192.168.64.1',2,36,39628,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000jk4ciywb7m982s',1,'Admin',1672319414,'192.168.64.1',2,36,39629,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000jl4ciyr8hfdz9k',1,'Admin',1672319414,'192.168.64.1',2,36,39630,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000jm4ciy16ttsnlj',1,'Admin',1672319414,'192.168.64.1',2,36,39631,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000jn4ciyyoby67cz',1,'Admin',1672319414,'192.168.64.1',2,36,39632,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000jo4ciyj3tkid1z',1,'Admin',1672319414,'192.168.64.1',2,36,39633,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000jp4ciy209f53y0',1,'Admin',1672319414,'192.168.64.1',2,36,39669,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000jq4ciyhz4luw16',1,'Admin',1672319414,'192.168.64.1',2,36,39670,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000jr4ciy94ftq6wp',1,'Admin',1672319414,'192.168.64.1',2,36,39671,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000js4ciyliq9e84x',1,'Admin',1672319414,'192.168.64.1',2,36,39672,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000jt4ciyrdxck3yv',1,'Admin',1672319414,'192.168.64.1',2,36,39673,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000ju4ciyq9ccptpy',1,'Admin',1672319414,'192.168.64.1',2,36,39674,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000jv4ciyb6rhzugs',1,'Admin',1672319414,'192.168.64.1',2,36,39675,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000jw4ciy5dkj99je',1,'Admin',1672319414,'192.168.64.1',2,36,39676,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000jx4ciyckleceyt',1,'Admin',1672319414,'192.168.64.1',2,36,39677,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000jy4ciy7fq18tua',1,'Admin',1672319414,'192.168.64.1',2,36,39678,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000jz4ciymvrpdkjx',1,'Admin',1672319414,'192.168.64.1',2,36,39679,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000k04ciy4tem4dq9',1,'Admin',1672319414,'192.168.64.1',2,36,39680,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000k14ciyu09fh877',1,'Admin',1672319414,'192.168.64.1',2,36,39681,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000k24ciy7xi83hkb',1,'Admin',1672319414,'192.168.64.1',2,36,39682,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000k34ciyt3rp490j',1,'Admin',1672319414,'192.168.64.1',2,36,39683,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000k44ciye6dwqrfa',1,'Admin',1672319414,'192.168.64.1',2,36,39684,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000k54ciyt75ejlf2',1,'Admin',1672319414,'192.168.64.1',2,36,39685,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000k64ciy1hn8cm61',1,'Admin',1672319414,'192.168.64.1',2,36,39686,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000k74ciy6jhpldoa',1,'Admin',1672319414,'192.168.64.1',2,36,39687,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000k84ciy0gy8wdrg',1,'Admin',1672319414,'192.168.64.1',2,36,39723,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000k94ciywcl3m42j',1,'Admin',1672319414,'192.168.64.1',2,36,39724,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000ka4ciycnsg11lu',1,'Admin',1672319414,'192.168.64.1',2,36,39725,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000kb4ciy1k8athn2',1,'Admin',1672319414,'192.168.64.1',2,36,39726,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000kc4ciytd1h3hkz',1,'Admin',1672319414,'192.168.64.1',2,36,39727,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000kd4ciyhy5gaj1g',1,'Admin',1672319414,'192.168.64.1',2,36,39728,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000ke4ciyr9mwfc0b',1,'Admin',1672319414,'192.168.64.1',2,36,39729,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000kf4ciyxq9jnkh1',1,'Admin',1672319414,'192.168.64.1',2,36,39730,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000kg4ciysa4khb04',1,'Admin',1672319414,'192.168.64.1',2,36,39731,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000kh4ciyepdw09uw',1,'Admin',1672319414,'192.168.64.1',2,36,39732,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000ki4ciyiupzbrci',1,'Admin',1672319414,'192.168.64.1',2,36,39733,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000kj4ciyf2g9n2wl',1,'Admin',1672319414,'192.168.64.1',2,36,39734,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000kk4ciy7eu0d1f1',1,'Admin',1672319414,'192.168.64.1',2,36,39735,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000kl4ciyuraix29u',1,'Admin',1672319414,'192.168.64.1',2,36,39736,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000km4ciyw0fkixkl',1,'Admin',1672319414,'192.168.64.1',2,36,39737,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000kn4ciyimd6298i',1,'Admin',1672319414,'192.168.64.1',2,36,39738,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000ko4ciy3jjhmhyc',1,'Admin',1672319414,'192.168.64.1',2,36,39739,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000kp4ciyha58j0zb',1,'Admin',1672319414,'192.168.64.1',2,36,39740,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000kq4ciydwcy4i85',1,'Admin',1672319414,'192.168.64.1',2,36,39741,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000kr4ciymif7em0c',1,'Admin',1672319414,'192.168.64.1',2,36,40147,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000ks4ciysbiqhdlu',1,'Admin',1672319414,'192.168.64.1',2,36,40148,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000kt4ciyp7q3z9b4',1,'Admin',1672319414,'192.168.64.1',2,36,40149,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000ku4ciyss2k6czr',1,'Admin',1672319414,'192.168.64.1',2,36,40150,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000kv4ciye15wu3nu',1,'Admin',1672319414,'192.168.64.1',2,36,40151,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Rules references count','clc93suux00004ciywh0nidxf',''),('clc93suv000kw4ciyq89x38im',1,'Admin',1672319414,'192.168.64.1',2,36,40152,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000kx4ciykt59vubc',1,'Admin',1672319414,'192.168.64.1',2,36,40153,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000ky4ciyvh89k4pu',1,'Admin',1672319414,'192.168.64.1',2,36,40154,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000kz4ciy9wvfxca3',1,'Admin',1672319414,'192.168.64.1',2,36,40155,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000l04ciyknzyqsi3',1,'Admin',1672319414,'192.168.64.1',2,36,40156,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000l14ciymk2szt5z',1,'Admin',1672319414,'192.168.64.1',2,36,40157,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000l24ciy6su1o3q5',1,'Admin',1672319414,'192.168.64.1',2,36,40158,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000l34ciyrd5wf7zt',1,'Admin',1672319414,'192.168.64.1',2,36,40159,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000l44ciyp0qv2nln',1,'Admin',1672319414,'192.168.64.1',2,36,40160,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000l54ciye2h48fog',1,'Admin',1672319414,'192.168.64.1',2,36,40161,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000l64ciy7c5vqhul',1,'Admin',1672319414,'192.168.64.1',2,36,40162,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000l74ciyz14vdq2r',1,'Admin',1672319414,'192.168.64.1',2,36,40163,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000l84ciyansmqq5i',1,'Admin',1672319414,'192.168.64.1',2,36,40164,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000l94ciyr034dg6l',1,'Admin',1672319414,'192.168.64.1',2,36,40165,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000la4ciylh25mrux',1,'Admin',1672319414,'192.168.64.1',2,36,40166,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000lb4ciymtgopg33',1,'Admin',1672319414,'192.168.64.1',2,36,40167,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000lc4ciy5y6bmc3w',1,'Admin',1672319414,'192.168.64.1',2,36,40168,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ld4ciykjrojxla',1,'Admin',1672319414,'192.168.64.1',2,36,40169,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000le4ciytv9lyzwa',1,'Admin',1672319414,'192.168.64.1',2,36,40170,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000lf4ciycjoyvpw3',1,'Admin',1672319414,'192.168.64.1',2,36,40171,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000lg4ciyvf125le5',1,'Admin',1672319414,'192.168.64.1',2,36,40172,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000lh4ciy93ngf6j7',1,'Admin',1672319414,'192.168.64.1',2,36,40811,NULL,'Interface {#IFDESCR}: Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000li4ciy1z7u5hpp',1,'Admin',1672319414,'192.168.64.1',2,36,40812,NULL,'Interface {#IFDESCR}: Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000lj4ciysf47f2nu',1,'Admin',1672319414,'192.168.64.1',2,36,40813,NULL,'Interface {#IFDESCR}: Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000lk4ciysju96sxw',1,'Admin',1672319414,'192.168.64.1',2,36,40814,NULL,'Interface {#IFDESCR}: Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ll4ciy75ky62gu',1,'Admin',1672319414,'192.168.64.1',2,36,40815,NULL,'Interface {#IFDESCR}: Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000lm4ciysh6xiuq3',1,'Admin',1672319414,'192.168.64.1',2,36,40816,NULL,'Interface {#IFDESCR}: Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000ln4ciyb46esm3c',1,'Admin',1672319414,'192.168.64.1',2,36,40817,NULL,'Interface {#IFDESCR}: Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000lo4ciybwdj3y3n',1,'Admin',1672319414,'192.168.64.1',2,36,40818,NULL,'Interface {#IFDESCR}: Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000lp4ciysvkcqwu6',1,'Admin',1672319414,'192.168.64.1',2,36,40819,NULL,'Interface {#IFDESCR}: Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000lq4ciyyfskhpg9',1,'Admin',1672319414,'192.168.64.1',2,36,40820,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93suux00004ciywh0nidxf',''),('clc93suv000lr4ciywyjws074',1,'Admin',1672319414,'192.168.64.1',2,36,41618,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ls4ciyk0ag4xps',1,'Admin',1672319414,'192.168.64.1',2,36,41619,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000lt4ciyipsd1rsz',1,'Admin',1672319414,'192.168.64.1',2,36,41620,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000lu4ciy26dte9ld',1,'Admin',1672319414,'192.168.64.1',2,36,41621,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000lv4ciyj64ug005',1,'Admin',1672319414,'192.168.64.1',2,36,41622,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000lw4ciyyrbdwg3l',1,'Admin',1672319414,'192.168.64.1',2,36,41623,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000lx4ciyy98qmo1y',1,'Admin',1672319414,'192.168.64.1',2,36,41624,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000ly4ciyokbhir9q',1,'Admin',1672319414,'192.168.64.1',2,36,41625,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000lz4ciyq9tdmnbc',1,'Admin',1672319414,'192.168.64.1',2,36,41626,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000m04ciysgun3suv',1,'Admin',1672319414,'192.168.64.1',2,36,41639,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000m14ciy0w9l95gf',1,'Admin',1672319414,'192.168.64.1',2,36,41640,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000m24ciy0qsevizn',1,'Admin',1672319414,'192.168.64.1',2,36,41641,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000m34ciyc6a8k37h',1,'Admin',1672319414,'192.168.64.1',2,36,41642,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000m44ciyw7du01sl',1,'Admin',1672319414,'192.168.64.1',2,36,41643,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000m54ciydl1k8zqy',1,'Admin',1672319414,'192.168.64.1',2,36,41644,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000m64ciyp8gng3xm',1,'Admin',1672319414,'192.168.64.1',2,36,41645,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000m74ciyocqcny2n',1,'Admin',1672319414,'192.168.64.1',2,36,41646,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000m84ciyl87c9pja',1,'Admin',1672319414,'192.168.64.1',2,36,41647,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000m94ciyxe5c4r11',1,'Admin',1672319414,'192.168.64.1',2,36,41660,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ma4ciypoybdcyb',1,'Admin',1672319414,'192.168.64.1',2,36,41661,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mb4ciyrsi8r5p4',1,'Admin',1672319414,'192.168.64.1',2,36,41662,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000mc4ciyc08b1pvo',1,'Admin',1672319414,'192.168.64.1',2,36,41663,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000md4ciy4t4chzj4',1,'Admin',1672319414,'192.168.64.1',2,36,41664,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000me4ciye7655mal',1,'Admin',1672319414,'192.168.64.1',2,36,41665,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000mf4ciytenobeqg',1,'Admin',1672319414,'192.168.64.1',2,36,41666,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000mg4ciyjmdhdscp',1,'Admin',1672319414,'192.168.64.1',2,36,41667,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000mh4ciykyyi5ijk',1,'Admin',1672319414,'192.168.64.1',2,36,41668,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000mi4ciylqjpfyqv',1,'Admin',1672319414,'192.168.64.1',2,36,41681,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000mj4ciy0b6l80gu',1,'Admin',1672319414,'192.168.64.1',2,36,41682,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mk4ciyqu8vuook',1,'Admin',1672319414,'192.168.64.1',2,36,41683,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000ml4ciyt6hp0zcm',1,'Admin',1672319414,'192.168.64.1',2,36,41684,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000mm4ciy6mqe2tqd',1,'Admin',1672319414,'192.168.64.1',2,36,41685,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mn4ciyb784yt2f',1,'Admin',1672319414,'192.168.64.1',2,36,41686,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000mo4ciy3e7e292z',1,'Admin',1672319414,'192.168.64.1',2,36,41687,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000mp4ciyrftgxhow',1,'Admin',1672319414,'192.168.64.1',2,36,41688,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000mq4ciyy5fbd1be',1,'Admin',1672319414,'192.168.64.1',2,36,41689,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000mr4ciyigq7lbmw',1,'Admin',1672319414,'192.168.64.1',2,36,41702,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ms4ciyp81ytoz3',1,'Admin',1672319414,'192.168.64.1',2,36,41703,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mt4ciy2gmuej4r',1,'Admin',1672319414,'192.168.64.1',2,36,41704,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000mu4ciy3idms433',1,'Admin',1672319414,'192.168.64.1',2,36,41705,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000mv4ciy247lc94j',1,'Admin',1672319414,'192.168.64.1',2,36,41706,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mw4ciy2dt4r356',1,'Admin',1672319414,'192.168.64.1',2,36,41707,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000mx4ciyoudcfgur',1,'Admin',1672319414,'192.168.64.1',2,36,41708,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000my4ciy41tk0mzt',1,'Admin',1672319414,'192.168.64.1',2,36,41709,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000mz4ciyxm5l6n0j',1,'Admin',1672319414,'192.168.64.1',2,36,41710,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000n04ciyqccp3ucn',1,'Admin',1672319414,'192.168.64.1',2,36,41723,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000n14ciyigi85qua',1,'Admin',1672319414,'192.168.64.1',2,36,41724,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000n24ciybomagwrb',1,'Admin',1672319414,'192.168.64.1',2,36,41725,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000n34ciyjzbd4nhs',1,'Admin',1672319414,'192.168.64.1',2,36,41726,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000n44ciyxdh4ep6y',1,'Admin',1672319414,'192.168.64.1',2,36,41727,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000n54ciy6htw17ld',1,'Admin',1672319414,'192.168.64.1',2,36,41728,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000n64ciyrwuvbuk1',1,'Admin',1672319414,'192.168.64.1',2,36,41729,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000n74ciyijv65ian',1,'Admin',1672319414,'192.168.64.1',2,36,41730,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000n84ciywljcahcv',1,'Admin',1672319414,'192.168.64.1',2,36,41731,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000n94ciyztyunquw',1,'Admin',1672319414,'192.168.64.1',2,36,41744,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000na4ciyma44r901',1,'Admin',1672319414,'192.168.64.1',2,36,41745,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nb4ciykcghq04f',1,'Admin',1672319414,'192.168.64.1',2,36,41746,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000nc4ciy89uqkckg',1,'Admin',1672319414,'192.168.64.1',2,36,41747,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000nd4ciyr2c1jn7o',1,'Admin',1672319414,'192.168.64.1',2,36,41748,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ne4ciyo0ni1re6',1,'Admin',1672319414,'192.168.64.1',2,36,41749,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000nf4ciyw773rfrh',1,'Admin',1672319414,'192.168.64.1',2,36,41750,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000ng4ciy4866dh4w',1,'Admin',1672319414,'192.168.64.1',2,36,41751,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000nh4ciypis9zg1m',1,'Admin',1672319414,'192.168.64.1',2,36,41752,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000ni4ciybyacb312',1,'Admin',1672319414,'192.168.64.1',2,36,41765,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000nj4ciysk53pej1',1,'Admin',1672319414,'192.168.64.1',2,36,41766,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nk4ciyithq4w22',1,'Admin',1672319414,'192.168.64.1',2,36,41767,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000nl4ciyl14ajujx',1,'Admin',1672319414,'192.168.64.1',2,36,41768,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000nm4ciygskvbgzn',1,'Admin',1672319414,'192.168.64.1',2,36,41769,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nn4ciytwi2x44a',1,'Admin',1672319414,'192.168.64.1',2,36,41770,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000no4ciy6z5zhk2i',1,'Admin',1672319414,'192.168.64.1',2,36,41771,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000np4ciy7qj6wmai',1,'Admin',1672319414,'192.168.64.1',2,36,41772,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000nq4ciyzgb3nu9m',1,'Admin',1672319414,'192.168.64.1',2,36,41773,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000nr4ciycmd4qj8x',1,'Admin',1672319414,'192.168.64.1',2,36,41786,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ns4ciywb4fo8rm',1,'Admin',1672319414,'192.168.64.1',2,36,41787,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nt4ciyx4mx1nr4',1,'Admin',1672319414,'192.168.64.1',2,36,41788,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000nu4ciyd5xicpx5',1,'Admin',1672319414,'192.168.64.1',2,36,41789,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000nv4ciy0agpaclw',1,'Admin',1672319414,'192.168.64.1',2,36,41790,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nw4ciycpbfru2h',1,'Admin',1672319414,'192.168.64.1',2,36,41791,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000nx4ciy9t9fllth',1,'Admin',1672319414,'192.168.64.1',2,36,41792,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000ny4ciymlhhyhwz',1,'Admin',1672319414,'192.168.64.1',2,36,41793,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000nz4ciyyg77zzlk',1,'Admin',1672319414,'192.168.64.1',2,36,41794,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000o04ciy723oyaif',1,'Admin',1672319414,'192.168.64.1',2,36,41807,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000o14ciyq8vn6w96',1,'Admin',1672319414,'192.168.64.1',2,36,41808,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000o24ciyjq8rqjlt',1,'Admin',1672319414,'192.168.64.1',2,36,41809,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000o34ciy39wojtz0',1,'Admin',1672319414,'192.168.64.1',2,36,41810,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000o44ciy3by5m8ik',1,'Admin',1672319414,'192.168.64.1',2,36,41811,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000o54ciyg9iwvvvu',1,'Admin',1672319414,'192.168.64.1',2,36,41812,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000o64ciy7j4fvcx8',1,'Admin',1672319414,'192.168.64.1',2,36,41813,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000o74ciyr98014yv',1,'Admin',1672319414,'192.168.64.1',2,36,41814,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000o84ciyu86smsdu',1,'Admin',1672319414,'192.168.64.1',2,36,41815,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000o94ciy3ovsq44b',1,'Admin',1672319414,'192.168.64.1',2,36,41828,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000oa4ciy81bcumal',1,'Admin',1672319414,'192.168.64.1',2,36,41829,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ob4ciyjz8h2ous',1,'Admin',1672319414,'192.168.64.1',2,36,41830,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000oc4ciyige8dstb',1,'Admin',1672319414,'192.168.64.1',2,36,41831,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000od4ciyfmwt310v',1,'Admin',1672319414,'192.168.64.1',2,36,41832,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000oe4ciyhruhq2po',1,'Admin',1672319414,'192.168.64.1',2,36,41833,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000of4ciy7ksatjgc',1,'Admin',1672319414,'192.168.64.1',2,36,41834,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000og4ciyx5s2d4l9',1,'Admin',1672319414,'192.168.64.1',2,36,41835,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000oh4ciytsd856ac',1,'Admin',1672319414,'192.168.64.1',2,36,41836,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000oi4ciykuj2cr03',1,'Admin',1672319414,'192.168.64.1',2,36,41849,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000oj4ciy0hghmuz2',1,'Admin',1672319414,'192.168.64.1',2,36,41850,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ok4ciyj97zurva',1,'Admin',1672319414,'192.168.64.1',2,36,41851,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000ol4ciyh8kb6tpy',1,'Admin',1672319414,'192.168.64.1',2,36,41852,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000om4ciyccmptas4',1,'Admin',1672319414,'192.168.64.1',2,36,41853,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000on4ciyylkrj8ph',1,'Admin',1672319414,'192.168.64.1',2,36,41854,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000oo4ciy4i8ep418',1,'Admin',1672319414,'192.168.64.1',2,36,41855,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000op4ciynx8y6u75',1,'Admin',1672319414,'192.168.64.1',2,36,41856,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000oq4ciy83bg2ax8',1,'Admin',1672319414,'192.168.64.1',2,36,41857,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000or4ciy3iimsng8',1,'Admin',1672319414,'192.168.64.1',2,36,41870,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000os4ciyzog8xbri',1,'Admin',1672319414,'192.168.64.1',2,36,41871,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ot4ciy03cndbhh',1,'Admin',1672319414,'192.168.64.1',2,36,41872,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000ou4ciy1682i50e',1,'Admin',1672319414,'192.168.64.1',2,36,41873,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ov4ciyvix7qa7z',1,'Admin',1672319414,'192.168.64.1',2,36,41874,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ow4ciyeae6qj2m',1,'Admin',1672319414,'192.168.64.1',2,36,41875,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000ox4ciybykat8oe',1,'Admin',1672319414,'192.168.64.1',2,36,41876,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000oy4ciy1u6htv6v',1,'Admin',1672319414,'192.168.64.1',2,36,41877,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000oz4ciy89yczkoh',1,'Admin',1672319414,'192.168.64.1',2,36,41878,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000p04ciy3l4j9wfu',1,'Admin',1672319414,'192.168.64.1',2,36,41891,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000p14ciylg69mf75',1,'Admin',1672319414,'192.168.64.1',2,36,41892,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000p24ciyb0z1oyqo',1,'Admin',1672319414,'192.168.64.1',2,36,41893,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000p34ciy1usxsa4o',1,'Admin',1672319414,'192.168.64.1',2,36,41894,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000p44ciyrpw3q3vk',1,'Admin',1672319414,'192.168.64.1',2,36,41895,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000p54ciyhborw0d9',1,'Admin',1672319414,'192.168.64.1',2,36,41896,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000p64ciyuze007i5',1,'Admin',1672319414,'192.168.64.1',2,36,41897,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000p74ciy8bx4naet',1,'Admin',1672319414,'192.168.64.1',2,36,41898,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000p84ciy02ke93fk',1,'Admin',1672319414,'192.168.64.1',2,36,41899,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000p94ciyna6akax7',1,'Admin',1672319414,'192.168.64.1',2,36,42017,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pa4ciyxl2oyyaz',1,'Admin',1672319414,'192.168.64.1',2,36,42018,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pb4ciy80s470bb',1,'Admin',1672319414,'192.168.64.1',2,36,42019,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000pc4ciyc6ollfr6',1,'Admin',1672319414,'192.168.64.1',2,36,42020,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pd4ciyuwaalmhc',1,'Admin',1672319414,'192.168.64.1',2,36,42021,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pe4ciyt4u61df5',1,'Admin',1672319414,'192.168.64.1',2,36,42022,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000pf4ciymsv1ij7z',1,'Admin',1672319414,'192.168.64.1',2,36,42023,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000pg4ciycqgs882d',1,'Admin',1672319414,'192.168.64.1',2,36,42024,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000ph4ciyf6f1idxj',1,'Admin',1672319414,'192.168.64.1',2,36,42025,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000pi4ciyr74ialel',1,'Admin',1672319414,'192.168.64.1',2,36,42038,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pj4ciy5rnlxa7b',1,'Admin',1672319414,'192.168.64.1',2,36,42039,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pk4ciy0n9cqydf',1,'Admin',1672319414,'192.168.64.1',2,36,42040,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000pl4ciy7ut08sqs',1,'Admin',1672319414,'192.168.64.1',2,36,42041,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pm4ciyq259bkuh',1,'Admin',1672319414,'192.168.64.1',2,36,42042,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pn4ciyea4qc76l',1,'Admin',1672319414,'192.168.64.1',2,36,42043,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000po4ciys7s3atdm',1,'Admin',1672319414,'192.168.64.1',2,36,42044,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000pp4ciyonaaamfv',1,'Admin',1672319414,'192.168.64.1',2,36,42045,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000pq4ciy2e6ka4v2',1,'Admin',1672319414,'192.168.64.1',2,36,42046,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000pr4ciywiamxoh3',1,'Admin',1672319414,'192.168.64.1',2,36,42059,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ps4ciyh48uikp6',1,'Admin',1672319414,'192.168.64.1',2,36,42060,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pt4ciysvx4nepo',1,'Admin',1672319414,'192.168.64.1',2,36,42061,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000pu4ciye0yl5bt2',1,'Admin',1672319414,'192.168.64.1',2,36,42062,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pv4ciy0y19xm86',1,'Admin',1672319414,'192.168.64.1',2,36,42063,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pw4ciyauhcs8v4',1,'Admin',1672319414,'192.168.64.1',2,36,42064,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000px4ciy9cs4cig9',1,'Admin',1672319414,'192.168.64.1',2,36,42065,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000py4ciyedc4p48y',1,'Admin',1672319414,'192.168.64.1',2,36,42066,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000pz4ciym1r95gw4',1,'Admin',1672319414,'192.168.64.1',2,36,42067,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000q04ciymed6fy2e',1,'Admin',1672319414,'192.168.64.1',2,36,42101,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000q14ciy34fj4tah',1,'Admin',1672319414,'192.168.64.1',2,36,42102,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000q24ciyd9ieeuki',1,'Admin',1672319414,'192.168.64.1',2,36,42103,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000q34ciye28x2puu',1,'Admin',1672319414,'192.168.64.1',2,36,42104,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000q44ciy2pk5dgz9',1,'Admin',1672319414,'192.168.64.1',2,36,42105,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000q54ciythkpxwg4',1,'Admin',1672319414,'192.168.64.1',2,36,42106,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000q64ciy0uk0jin5',1,'Admin',1672319414,'192.168.64.1',2,36,42107,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000q74ciyde742s75',1,'Admin',1672319414,'192.168.64.1',2,36,42108,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000q84ciyp8uaght0',1,'Admin',1672319414,'192.168.64.1',2,36,42109,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000q94ciy6jr7s87v',1,'Admin',1672319414,'192.168.64.1',2,36,42727,NULL,'[{#LOCATION}, {#COUNTRY}]: Data','clc93suux00004ciywh0nidxf',''),('clc93suv000qa4ciyc2k6tydz',1,'Admin',1672319414,'192.168.64.1',2,36,42728,NULL,'[{#LOCATION}, {#COUNTRY}]: Cloudiness','clc93suux00004ciywh0nidxf',''),('clc93suv000qb4ciys7hlr5w7',1,'Admin',1672319414,'192.168.64.1',2,36,42729,NULL,'[{#LOCATION}, {#COUNTRY}]: Short weather status','clc93suux00004ciywh0nidxf',''),('clc93suv000qc4ciy7z5ptae5',1,'Admin',1672319414,'192.168.64.1',2,36,42730,NULL,'[{#LOCATION}, {#COUNTRY}]: Humidity','clc93suux00004ciywh0nidxf',''),('clc93suv000qd4ciyg5gcadbe',1,'Admin',1672319414,'192.168.64.1',2,36,42731,NULL,'[{#LOCATION}, {#COUNTRY}]: Atmospheric pressure','clc93suux00004ciywh0nidxf',''),('clc93suv000qe4ciyb9n0gynv',1,'Admin',1672319414,'192.168.64.1',2,36,42732,NULL,'[{#LOCATION}, {#COUNTRY}]: Rain volume for the last one hour','clc93suux00004ciywh0nidxf',''),('clc93suv000qf4ciyj1tn9cqw',1,'Admin',1672319414,'192.168.64.1',2,36,42733,NULL,'[{#LOCATION}, {#COUNTRY}]: Snow volume for the last one hour','clc93suux00004ciywh0nidxf',''),('clc93suv000qg4ciyyuolh9ng',1,'Admin',1672319414,'192.168.64.1',2,36,42734,NULL,'[{#LOCATION}, {#COUNTRY}]: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000qh4ciyil9a5xcw',1,'Admin',1672319414,'192.168.64.1',2,36,42735,NULL,'[{#LOCATION}, {#COUNTRY}]: Visibility','clc93suux00004ciywh0nidxf',''),('clc93suv000qi4ciyey1v2yyb',1,'Admin',1672319414,'192.168.64.1',2,36,42736,NULL,'[{#LOCATION}, {#COUNTRY}]: Wind direction','clc93suux00004ciywh0nidxf',''),('clc93suv000qj4ciy8un6ds3z',1,'Admin',1672319414,'192.168.64.1',2,36,42737,NULL,'[{#LOCATION}, {#COUNTRY}]: Wind speed','clc93suux00004ciywh0nidxf',''),('clc93suv000qk4ciyce1nczhi',1,'Admin',1672319414,'192.168.64.1',2,36,43566,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000ql4ciyzpcjk5po',1,'Admin',1672319414,'192.168.64.1',2,36,43567,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000qm4ciyhvsdbps8',1,'Admin',1672319414,'192.168.64.1',2,36,43568,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000qn4ciywan5i4ku',1,'Admin',1672319414,'192.168.64.1',2,36,43569,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000qo4ciyiyqr0st7',1,'Admin',1672319414,'192.168.64.1',2,36,43570,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Rules references count','clc93suux00004ciywh0nidxf',''),('clc93suv000qp4ciyfjafidia',1,'Admin',1672319414,'192.168.64.1',2,36,43571,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000qq4ciy9mek1fn3',1,'Admin',1672319414,'192.168.64.1',2,36,43572,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000qr4ciy14vq2jxb',1,'Admin',1672319414,'192.168.64.1',2,36,43573,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000qs4ciy672dzgcx',1,'Admin',1672319414,'192.168.64.1',2,36,43574,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000qt4ciyk17ue8o2',1,'Admin',1672319414,'192.168.64.1',2,36,43575,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000qu4ciyo8pbxhsh',1,'Admin',1672319414,'192.168.64.1',2,36,43576,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000qv4ciybhar78wx',1,'Admin',1672319414,'192.168.64.1',2,36,43577,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000qw4ciyur0k2jxd',1,'Admin',1672319414,'192.168.64.1',2,36,43578,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000qx4ciykafx78p5',1,'Admin',1672319414,'192.168.64.1',2,36,43579,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000qy4ciyrh3lrqz6',1,'Admin',1672319414,'192.168.64.1',2,36,43580,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000qz4ciytdkwd66j',1,'Admin',1672319414,'192.168.64.1',2,36,43581,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000r04ciyaegirggi',1,'Admin',1672319414,'192.168.64.1',2,36,43582,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000r14ciyphdnbo9k',1,'Admin',1672319414,'192.168.64.1',2,36,43583,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000r24ciy4rkwta3t',1,'Admin',1672319414,'192.168.64.1',2,36,43584,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000r34ciym9c4vtzu',1,'Admin',1672319414,'192.168.64.1',2,36,43585,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000r44ciyjyeixdx0',1,'Admin',1672319414,'192.168.64.1',2,36,43586,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000r54ciye9gnnd5p',1,'Admin',1672319414,'192.168.64.1',2,36,43587,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000r64ciy1ro28377',1,'Admin',1672319414,'192.168.64.1',2,36,43588,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000r74ciyycm8355p',1,'Admin',1672319414,'192.168.64.1',2,36,43589,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000r84ciycol2dqjh',1,'Admin',1672319414,'192.168.64.1',2,36,43590,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000r94ciy06yyc25s',1,'Admin',1672319414,'192.168.64.1',2,36,43591,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000ra4ciy4lldl9fv',1,'Admin',1672319414,'192.168.64.1',2,36,44237,NULL,'Process [{#NAME}]: Get data','clc93suux00004ciywh0nidxf',''),('clc93suv000rb4ciye5y7blfe',1,'Admin',1672319414,'192.168.64.1',2,36,44238,NULL,'Process [{#NAME}]: Size of locked memory','clc93suux00004ciywh0nidxf',''),('clc93suv000rc4ciylu5ut7ol',1,'Admin',1672319414,'192.168.64.1',2,36,44239,NULL,'Process [{#NAME}]: Number of running processes','clc93suux00004ciywh0nidxf',''),('clc93suv000rd4ciyu0l97vej',1,'Admin',1672319414,'192.168.64.1',2,36,44240,NULL,'Process [{#NAME}]: Number of page faults','clc93suux00004ciywh0nidxf',''),('clc93suv000re4ciyds7m8qq3',1,'Admin',1672319414,'192.168.64.1',2,36,44241,NULL,'Process [{#NAME}]: Memory usage, %','clc93suux00004ciywh0nidxf',''),('clc93suv000rf4ciy7kqg0h8l',1,'Admin',1672319414,'192.168.64.1',2,36,44242,NULL,'Process [{#NAME}]: Memory usage (rss)','clc93suux00004ciywh0nidxf',''),('clc93suv000rg4ciy5r589gbx',1,'Admin',1672319414,'192.168.64.1',2,36,44243,NULL,'Process [{#NAME}]: Swap space used','clc93suux00004ciywh0nidxf',''),('clc93suv000rh4ciyex0lust5',1,'Admin',1672319414,'192.168.64.1',2,36,44244,NULL,'Process [{#NAME}]: Number of threads','clc93suux00004ciywh0nidxf',''),('clc93suv000ri4ciybmzmxje8',1,'Admin',1672319414,'192.168.64.1',2,36,44245,NULL,'Process [{#NAME}]: Memory usage (vsize)','clc93suux00004ciywh0nidxf',''),('clc93suv000rj4ciym4gchk96',1,'Admin',1672319414,'192.168.64.1',2,36,44345,NULL,'Nginx: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000rk4ciy75cuewxl',1,'Admin',1672319414,'192.168.64.1',2,36,44346,NULL,'Nginx: Get process data','clc93suux00004ciywh0nidxf',''),('clc93suv000rl4ciyih1da1ds',1,'Admin',1672319414,'192.168.64.1',2,36,44347,NULL,'Nginx: Number of running processes','clc93suux00004ciywh0nidxf',''),('clc93suv000rm4ciydyr7nemk',1,'Admin',1672319414,'192.168.64.1',2,36,44348,NULL,'Nginx: Memory usage, %','clc93suux00004ciywh0nidxf',''),('clc93suv000rn4ciyhmbhnp7e',1,'Admin',1672319414,'192.168.64.1',2,36,44349,NULL,'Nginx: Memory usage (rss)','clc93suux00004ciywh0nidxf',''),('clc93suv000ro4ciyl4dnd6dp',1,'Admin',1672319414,'192.168.64.1',2,36,44350,NULL,'Nginx: Memory usage (vsize)','clc93suux00004ciywh0nidxf',''),('clc93suv000rp4ciybi7ndzit',1,'Admin',1672319414,'192.168.64.1',2,36,44353,NULL,'PHP-FPM: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000rq4ciy3mn3wm0n',1,'Admin',1672319414,'192.168.64.1',2,36,44354,NULL,'PHP-FPM: Get process data','clc93suux00004ciywh0nidxf',''),('clc93suv000rr4ciyr3651lag',1,'Admin',1672319414,'192.168.64.1',2,36,44355,NULL,'PHP-FPM: Number of running processes','clc93suux00004ciywh0nidxf',''),('clc93suv000rs4ciyd48wfsr3',1,'Admin',1672319414,'192.168.64.1',2,36,44356,NULL,'PHP-FPM: Memory usage, %','clc93suux00004ciywh0nidxf',''),('clc93suv000rt4ciyeiicx91f',1,'Admin',1672319414,'192.168.64.1',2,36,44357,NULL,'PHP-FPM: Memory usage (rss)','clc93suux00004ciywh0nidxf',''),('clc93suv000ru4ciyaofk3fwz',1,'Admin',1672319414,'192.168.64.1',2,36,44358,NULL,'PHP-FPM: Memory usage (vsize)','clc93suux00004ciywh0nidxf',''),('clc93suvp00rv4ciyitmhhoef',1,'Admin',1672319414,'192.168.64.1',2,37,10388,NULL,'{#HOSTNAME}','clc93suux00004ciywh0nidxf',''),('clc93suvp00rw4ciy0185cz7z',1,'Admin',1672319414,'192.168.64.1',2,37,10389,NULL,'{#HOSTNAME}','clc93suux00004ciywh0nidxf',''),('clc93sv0u00rx4ciyb9anxupl',1,'Admin',1672319415,'192.168.64.1',2,15,22835,NULL,'Maximum number of opened files','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ry4ciyawhf4axj',1,'Admin',1672319415,'192.168.64.1',2,15,22836,NULL,'Maximum number of processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00rz4ciy5k7lcwy7',1,'Admin',1672319415,'192.168.64.1',2,15,22837,NULL,'Number of running processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s04ciy6s0uoiq6',1,'Admin',1672319415,'192.168.64.1',2,15,22838,NULL,'Number of processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s14ciynlhc2voi',1,'Admin',1672319415,'192.168.64.1',2,15,22839,NULL,'Host boot time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s24ciyahjgp5i0',1,'Admin',1672319415,'192.168.64.1',2,15,22840,NULL,'Interrupts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s34ciyk3oes1a2',1,'Admin',1672319415,'192.168.64.1',2,15,22841,NULL,'Processor load (15 min average per core)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s44ciyjgfnxcfn',1,'Admin',1672319415,'192.168.64.1',2,15,22842,NULL,'Processor load (1 min average per core)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s54ciydsfjoqg4',1,'Admin',1672319415,'192.168.64.1',2,15,22843,NULL,'Processor load (5 min average per core)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s64ciyothmp9ev',1,'Admin',1672319415,'192.168.64.1',2,15,22844,NULL,'Context switches per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s74ciypppubyu3',1,'Admin',1672319415,'192.168.64.1',2,15,22845,NULL,'CPU idle time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s84ciyw1ufpj43',1,'Admin',1672319415,'192.168.64.1',2,15,22846,NULL,'CPU interrupt time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s94ciycmfbsce7',1,'Admin',1672319415,'192.168.64.1',2,15,22848,NULL,'CPU nice time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sa4ciyrgjej89u',1,'Admin',1672319415,'192.168.64.1',2,15,22851,NULL,'CPU system time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sb4ciyecjqi283',1,'Admin',1672319415,'192.168.64.1',2,15,22852,NULL,'CPU user time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sc4ciys75a7jnv',1,'Admin',1672319415,'192.168.64.1',2,15,22853,NULL,'Host name','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sd4ciy3xgbbxnc',1,'Admin',1672319415,'192.168.64.1',2,15,22854,NULL,'Host local time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00se4ciymv1lokny',1,'Admin',1672319415,'192.168.64.1',2,15,22855,NULL,'Free swap space','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sf4ciyjpqt7auo',1,'Admin',1672319415,'192.168.64.1',2,15,22856,NULL,'Free swap space in %','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sg4ciy7b61zf91',1,'Admin',1672319415,'192.168.64.1',2,15,22857,NULL,'Total swap space','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sh4ciyf07mc77x',1,'Admin',1672319415,'192.168.64.1',2,15,22858,NULL,'System information','clc93suux00004ciywh0nidxf',''),('clc93sv0v00si4ciyypxyzr8r',1,'Admin',1672319415,'192.168.64.1',2,15,22859,NULL,'System uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sj4ciykcg1l4zk',1,'Admin',1672319415,'192.168.64.1',2,15,22860,NULL,'Number of logged in users','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sk4ciys5zcdibo',1,'Admin',1672319415,'192.168.64.1',2,15,22861,NULL,'Checksum of /etc/passwd','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sl4ciywax6iz8s',1,'Admin',1672319415,'192.168.64.1',2,15,22862,NULL,'Available memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sm4ciyypa6itsh',1,'Admin',1672319415,'192.168.64.1',2,15,22863,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sn4ciy3yvl8dng',1,'Admin',1672319415,'192.168.64.1',2,15,23649,NULL,'NNTP service is running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00so4ciyd45wv32f',1,'Admin',1672319415,'192.168.64.1',2,15,23650,NULL,'NTP service is running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sp4ciynwx424l9',1,'Admin',1672319415,'192.168.64.1',2,15,23651,NULL,'POP service is running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sq4ciyf1bgnwce',1,'Admin',1672319415,'192.168.64.1',2,15,27930,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sr4ciyk83mccgf',1,'Admin',1672319415,'192.168.64.1',2,15,27931,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ss4ciyu2lua92w',1,'Admin',1672319415,'192.168.64.1',2,15,27935,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00st4ciyk66vxnsy',1,'Admin',1672319415,'192.168.64.1',2,15,27936,NULL,'CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00su4ciyah0l7m0c',1,'Admin',1672319415,'192.168.64.1',2,15,28804,NULL,'Nginx: Get stub status page','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sv4ciyvwa4b77n',1,'Admin',1672319415,'192.168.64.1',2,15,28805,NULL,'Nginx: Service response time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sw4ciyoc4j9lwg',1,'Admin',1672319415,'192.168.64.1',2,15,28810,NULL,'Nginx: Service status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sx4ciy2m9nydzy',1,'Admin',1672319415,'192.168.64.1',2,15,28811,NULL,'Nginx: Connections waiting','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sy4ciyy318gzqb',1,'Admin',1672319415,'192.168.64.1',2,15,28812,NULL,'Nginx: Connections writing','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sz4ciyxpg32e61',1,'Admin',1672319415,'192.168.64.1',2,15,28813,NULL,'Nginx: Connections active','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t04ciycvaj1fyp',1,'Admin',1672319415,'192.168.64.1',2,15,28814,NULL,'Nginx: Connections reading','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t14ciy4robx74u',1,'Admin',1672319415,'192.168.64.1',2,15,28815,NULL,'Nginx: Connections handled per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t24ciygl96en1l',1,'Admin',1672319415,'192.168.64.1',2,15,28816,NULL,'Nginx: Connections dropped per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t34ciyjesplu8g',1,'Admin',1672319415,'192.168.64.1',2,15,28817,NULL,'Nginx: Connections accepted per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t44ciypjjgcivb',1,'Admin',1672319415,'192.168.64.1',2,15,28818,NULL,'Nginx: Requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t54ciysny0l63x',1,'Admin',1672319415,'192.168.64.1',2,15,28819,NULL,'Nginx: Requests total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t64ciyf00k0gur',1,'Admin',1672319415,'192.168.64.1',2,15,28820,NULL,'Nginx: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t74ciy6npbdxam',1,'Admin',1672319415,'192.168.64.1',2,15,28821,NULL,'Nginx: Get stub status page','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t84ciyzxlth641',1,'Admin',1672319415,'192.168.64.1',2,15,28822,NULL,'Nginx: Service status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t94ciymbvan85q',1,'Admin',1672319415,'192.168.64.1',2,15,28823,NULL,'Nginx: Service response time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ta4ciytimi7ml9',1,'Admin',1672319415,'192.168.64.1',2,15,28824,NULL,'Nginx: Requests total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tb4ciyof4ih320',1,'Admin',1672319415,'192.168.64.1',2,15,28825,NULL,'Nginx: Requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tc4ciyxodte5lj',1,'Admin',1672319415,'192.168.64.1',2,15,28826,NULL,'Nginx: Connections accepted per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00td4ciystea0zkt',1,'Admin',1672319415,'192.168.64.1',2,15,28827,NULL,'Nginx: Connections dropped per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00te4ciyewp5clvd',1,'Admin',1672319415,'192.168.64.1',2,15,28828,NULL,'Nginx: Connections handled per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tf4ciyjdm2chu1',1,'Admin',1672319415,'192.168.64.1',2,15,28829,NULL,'Nginx: Connections active','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tg4ciyiedgpv1s',1,'Admin',1672319415,'192.168.64.1',2,15,28830,NULL,'Nginx: Connections reading','clc93suux00004ciywh0nidxf',''),('clc93sv0v00th4ciyav7028y1',1,'Admin',1672319415,'192.168.64.1',2,15,28831,NULL,'Nginx: Connections waiting','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ti4ciyni3ss9ds',1,'Admin',1672319415,'192.168.64.1',2,15,28832,NULL,'Nginx: Connections writing','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tj4ciyows9198c',1,'Admin',1672319415,'192.168.64.1',2,15,28833,NULL,'Nginx: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tk4ciy6wh4wk0b',1,'Admin',1672319415,'192.168.64.1',2,15,30121,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tl4ciy81v7a8rk',1,'Admin',1672319415,'192.168.64.1',2,15,30122,NULL,'Available memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tm4ciydo1mnjmb',1,'Admin',1672319415,'192.168.64.1',2,15,30123,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tn4ciybnkby8we',1,'Admin',1672319415,'192.168.64.1',2,15,30431,NULL,'MySQL: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00to4ciygvlvo16m',1,'Admin',1672319415,'192.168.64.1',2,15,30432,NULL,'MySQL: Status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tp4ciyfdulluqn',1,'Admin',1672319415,'192.168.64.1',2,15,30433,NULL,'MySQL: Get status variables','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tq4ciy2cu39h0d',1,'Admin',1672319415,'192.168.64.1',2,15,30434,NULL,'MySQL: Buffer pool utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tr4ciy6f0bf27x',1,'Admin',1672319415,'192.168.64.1',2,15,30435,NULL,'MySQL: Buffer pool efficiency','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ts4ciy780zxeao',1,'Admin',1672319415,'192.168.64.1',2,15,30436,NULL,'MySQL: InnoDB buffer pool reads','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tt4ciy4divx3xm',1,'Admin',1672319415,'192.168.64.1',2,15,30437,NULL,'MySQL: InnoDB buffer pool reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tu4ciyobpqaxur',1,'Admin',1672319415,'192.168.64.1',2,15,30438,NULL,'MySQL: InnoDB row lock time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tv4ciytuvnzsyx',1,'Admin',1672319415,'192.168.64.1',2,15,30439,NULL,'MySQL: InnoDB row lock time max','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tw4ciy7mo96d2b',1,'Admin',1672319415,'192.168.64.1',2,15,30440,NULL,'MySQL: InnoDB row lock waits','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tx4ciyd7p61dpc',1,'Admin',1672319415,'192.168.64.1',2,15,30441,NULL,'MySQL: Max used connections','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ty4ciy1h4tcj72',1,'Admin',1672319415,'192.168.64.1',2,15,30442,NULL,'MySQL: Queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tz4ciy15wafqjl',1,'Admin',1672319415,'192.168.64.1',2,15,30443,NULL,'MySQL: InnoDB buffer pool read requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u04ciyw7udf35j',1,'Admin',1672319415,'192.168.64.1',2,15,30444,NULL,'MySQL: Questions per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u14ciymrxkg7yz',1,'Admin',1672319415,'192.168.64.1',2,15,30445,NULL,'MySQL: Slow queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u24ciyjxylwsuh',1,'Admin',1672319415,'192.168.64.1',2,15,30446,NULL,'MySQL: Threads cached','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u34ciyttea5w74',1,'Admin',1672319415,'192.168.64.1',2,15,30447,NULL,'MySQL: Threads connected','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u44ciyq80iqie9',1,'Admin',1672319415,'192.168.64.1',2,15,30449,NULL,'MySQL: Threads running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u54ciy7yytv95j',1,'Admin',1672319415,'192.168.64.1',2,15,30450,NULL,'MySQL: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u64ciy4402lhks',1,'Admin',1672319415,'192.168.64.1',2,15,30451,NULL,'MySQL: InnoDB buffer pool read requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u74ciyypghr7ez',1,'Admin',1672319415,'192.168.64.1',2,15,30452,NULL,'MySQL: InnoDB buffer pool pages total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u84ciyywfgu1hu',1,'Admin',1672319415,'192.168.64.1',2,15,30453,NULL,'MySQL: Bytes received','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u94ciyrw81yk9j',1,'Admin',1672319415,'192.168.64.1',2,15,30454,NULL,'MySQL: Connection errors max connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ua4ciyk4i8kcxc',1,'Admin',1672319415,'192.168.64.1',2,15,30455,NULL,'MySQL: Bytes sent','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ub4ciyh0nhfyya',1,'Admin',1672319415,'192.168.64.1',2,15,30456,NULL,'MySQL: Command Delete per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uc4ciyuoit1mpy',1,'Admin',1672319415,'192.168.64.1',2,15,30457,NULL,'MySQL: Command Insert per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ud4ciyjlqlbmod',1,'Admin',1672319415,'192.168.64.1',2,15,30458,NULL,'MySQL: Command Select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ue4ciyyhb669qa',1,'Admin',1672319415,'192.168.64.1',2,15,30459,NULL,'MySQL: Command Update per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uf4ciy3z27upv0',1,'Admin',1672319415,'192.168.64.1',2,15,30460,NULL,'MySQL: Connection errors accept per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ug4ciy573mcrdp',1,'Admin',1672319415,'192.168.64.1',2,15,30461,NULL,'MySQL: Connection errors internal per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uh4ciyt0j1py29',1,'Admin',1672319415,'192.168.64.1',2,15,30462,NULL,'MySQL: Connection errors peer address per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ui4ciy0bov0kd4',1,'Admin',1672319415,'192.168.64.1',2,15,30463,NULL,'MySQL: InnoDB buffer pool pages free','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uj4ciyavw4qzn7',1,'Admin',1672319415,'192.168.64.1',2,15,30464,NULL,'MySQL: Connection errors select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uk4ciyiuev4jhk',1,'Admin',1672319415,'192.168.64.1',2,15,30465,NULL,'MySQL: Connection errors tcpwrap per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ul4ciy88a64n9z',1,'Admin',1672319415,'192.168.64.1',2,15,30466,NULL,'MySQL: Connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00um4ciy9d10fcbi',1,'Admin',1672319415,'192.168.64.1',2,15,30470,NULL,'MySQL: Aborted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00un4ciyf5s69eek',1,'Admin',1672319415,'192.168.64.1',2,15,30471,NULL,'MySQL: Aborted clients per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uo4ciysacnfefn',1,'Admin',1672319415,'192.168.64.1',2,15,30479,NULL,'MySQL: Get status variables','clc93suux00004ciywh0nidxf',''),('clc93sv0v00up4ciyh0p57q1w',1,'Admin',1672319415,'192.168.64.1',2,15,30480,NULL,'MySQL: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uq4ciyu63fktfz',1,'Admin',1672319415,'192.168.64.1',2,15,30481,NULL,'MySQL: Status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ur4ciymxolltwk',1,'Admin',1672319415,'192.168.64.1',2,15,30482,NULL,'MySQL: Buffer pool efficiency','clc93suux00004ciywh0nidxf',''),('clc93sv0v00us4ciyac1hhvn5',1,'Admin',1672319415,'192.168.64.1',2,15,30483,NULL,'MySQL: Buffer pool utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ut4ciyjr0ou91e',1,'Admin',1672319415,'192.168.64.1',2,15,30484,NULL,'MySQL: InnoDB row lock waits','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uu4ciyawukfz28',1,'Admin',1672319415,'192.168.64.1',2,15,30485,NULL,'MySQL: InnoDB buffer pool read requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uv4ciy8h7h1em1',1,'Admin',1672319415,'192.168.64.1',2,15,30486,NULL,'MySQL: InnoDB buffer pool read requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uw4ciy7vksalz0',1,'Admin',1672319415,'192.168.64.1',2,15,30487,NULL,'MySQL: InnoDB buffer pool reads','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ux4ciykrtdavfi',1,'Admin',1672319415,'192.168.64.1',2,15,30488,NULL,'MySQL: InnoDB buffer pool reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uy4ciy3kvtbrl7',1,'Admin',1672319415,'192.168.64.1',2,15,30489,NULL,'MySQL: InnoDB row lock time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uz4ciy2bl6m2q5',1,'Admin',1672319415,'192.168.64.1',2,15,30490,NULL,'MySQL: InnoDB row lock time max','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v04ciynnx2c26i',1,'Admin',1672319415,'192.168.64.1',2,15,30491,NULL,'MySQL: Queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v14ciyz322mwts',1,'Admin',1672319415,'192.168.64.1',2,15,30492,NULL,'MySQL: Max used connections','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v24ciygdjsglze',1,'Admin',1672319415,'192.168.64.1',2,15,30493,NULL,'MySQL: InnoDB buffer pool pages free','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v34ciy4u14lo5a',1,'Admin',1672319415,'192.168.64.1',2,15,30494,NULL,'MySQL: Questions per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v44ciykxr2x8p1',1,'Admin',1672319415,'192.168.64.1',2,15,30495,NULL,'MySQL: Slow queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v54ciymbcenpg7',1,'Admin',1672319415,'192.168.64.1',2,15,30496,NULL,'MySQL: Threads cached','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v64ciyq84c6ipk',1,'Admin',1672319415,'192.168.64.1',2,15,30497,NULL,'MySQL: Threads connected','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v74ciypa31f35l',1,'Admin',1672319415,'192.168.64.1',2,15,30499,NULL,'MySQL: Threads running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v84ciyrrfqo5u8',1,'Admin',1672319415,'192.168.64.1',2,15,30500,NULL,'MySQL: InnoDB buffer pool pages total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v94ciybb55fzxp',1,'Admin',1672319415,'192.168.64.1',2,15,30503,NULL,'MySQL: Command Select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00va4ciyh5g13d9l',1,'Admin',1672319415,'192.168.64.1',2,15,30504,NULL,'MySQL: Aborted clients per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vb4ciyeq7hrzhq',1,'Admin',1672319415,'192.168.64.1',2,15,30505,NULL,'MySQL: Aborted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vc4ciyy4j0m5co',1,'Admin',1672319415,'192.168.64.1',2,15,30506,NULL,'MySQL: Bytes received','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vd4ciyn09z6gl2',1,'Admin',1672319415,'192.168.64.1',2,15,30507,NULL,'MySQL: Bytes sent','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ve4ciyw4qw1ns8',1,'Admin',1672319415,'192.168.64.1',2,15,30508,NULL,'MySQL: Command Delete per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vf4ciy58t3wurd',1,'Admin',1672319415,'192.168.64.1',2,15,30509,NULL,'MySQL: Command Insert per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vg4ciyulea3env',1,'Admin',1672319415,'192.168.64.1',2,15,30510,NULL,'MySQL: Command Update per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vh4ciyt0j1dckc',1,'Admin',1672319415,'192.168.64.1',2,15,30512,NULL,'MySQL: Connection errors accept per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vi4ciy4eeqxf8k',1,'Admin',1672319415,'192.168.64.1',2,15,30513,NULL,'MySQL: Connection errors internal per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vj4ciyqcxmfzxh',1,'Admin',1672319415,'192.168.64.1',2,15,30514,NULL,'MySQL: Connection errors max connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vk4ciyz7ilki8s',1,'Admin',1672319415,'192.168.64.1',2,15,30515,NULL,'MySQL: Connection errors peer address per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vl4ciywchaeosc',1,'Admin',1672319415,'192.168.64.1',2,15,30516,NULL,'MySQL: Connection errors select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vm4ciy6dckk813',1,'Admin',1672319415,'192.168.64.1',2,15,30517,NULL,'MySQL: Connection errors tcpwrap per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vn4ciyj4tabnsl',1,'Admin',1672319415,'192.168.64.1',2,15,30518,NULL,'MySQL: Connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vo4ciyjjlfzd2q',1,'Admin',1672319415,'192.168.64.1',2,15,30519,NULL,'MySQL: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vp4ciy58vyqklg',1,'Admin',1672319415,'192.168.64.1',2,15,30637,NULL,'MySQL: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vq4ciyafm7n0ow',1,'Admin',1672319415,'192.168.64.1',2,15,30638,NULL,'MySQL: Status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vr4ciyrzm0nr9s',1,'Admin',1672319415,'192.168.64.1',2,15,30639,NULL,'MySQL: Get status variables','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vs4ciyy6nryxg3',1,'Admin',1672319415,'192.168.64.1',2,15,30640,NULL,'MySQL: Buffer pool utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vt4ciyfkq8m0vo',1,'Admin',1672319415,'192.168.64.1',2,15,30641,NULL,'MySQL: Buffer pool efficiency','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vu4ciybxjzufqo',1,'Admin',1672319415,'192.168.64.1',2,15,30642,NULL,'MySQL: InnoDB buffer pool reads','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vv4ciyqoja55rj',1,'Admin',1672319415,'192.168.64.1',2,15,30643,NULL,'MySQL: InnoDB buffer pool reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vw4ciy11jr9d91',1,'Admin',1672319415,'192.168.64.1',2,15,30644,NULL,'MySQL: InnoDB row lock time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vx4ciy90kgnl9s',1,'Admin',1672319415,'192.168.64.1',2,15,30645,NULL,'MySQL: InnoDB row lock time max','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vy4ciybx95c9jm',1,'Admin',1672319415,'192.168.64.1',2,15,30646,NULL,'MySQL: InnoDB row lock waits','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vz4ciyuxdqyi7w',1,'Admin',1672319415,'192.168.64.1',2,15,30647,NULL,'MySQL: Max used connections','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w04ciyxmlzwj6m',1,'Admin',1672319415,'192.168.64.1',2,15,30648,NULL,'MySQL: Queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w14ciy9woxrayz',1,'Admin',1672319415,'192.168.64.1',2,15,30649,NULL,'MySQL: InnoDB buffer pool read requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w24ciy4kmdq7z7',1,'Admin',1672319415,'192.168.64.1',2,15,30650,NULL,'MySQL: Questions per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w34ciyay60etq8',1,'Admin',1672319415,'192.168.64.1',2,15,30651,NULL,'MySQL: Slow queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w44ciysj9zxs5w',1,'Admin',1672319415,'192.168.64.1',2,15,30652,NULL,'MySQL: Threads cached','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w54ciy8ahsfc07',1,'Admin',1672319415,'192.168.64.1',2,15,30653,NULL,'MySQL: Threads connected','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w64ciyn99tkm90',1,'Admin',1672319415,'192.168.64.1',2,15,30655,NULL,'MySQL: Threads running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w74ciy0cx5v5qn',1,'Admin',1672319415,'192.168.64.1',2,15,30656,NULL,'MySQL: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w84ciy5v24px6y',1,'Admin',1672319415,'192.168.64.1',2,15,30657,NULL,'MySQL: InnoDB buffer pool read requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w94ciypg5adfnz',1,'Admin',1672319415,'192.168.64.1',2,15,30658,NULL,'MySQL: InnoDB buffer pool pages total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wa4ciygd9qsz2e',1,'Admin',1672319415,'192.168.64.1',2,15,30659,NULL,'MySQL: Bytes received','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wb4ciytktpo15b',1,'Admin',1672319415,'192.168.64.1',2,15,30660,NULL,'MySQL: Connection errors max connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wc4ciybhadz9zx',1,'Admin',1672319415,'192.168.64.1',2,15,30661,NULL,'MySQL: Bytes sent','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wd4ciyyzaccirp',1,'Admin',1672319415,'192.168.64.1',2,15,30662,NULL,'MySQL: Command Delete per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00we4ciyb16tj2vp',1,'Admin',1672319415,'192.168.64.1',2,15,30663,NULL,'MySQL: Command Insert per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wf4ciyhrx86lv4',1,'Admin',1672319415,'192.168.64.1',2,15,30664,NULL,'MySQL: Command Select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wg4ciym4x6buh6',1,'Admin',1672319415,'192.168.64.1',2,15,30665,NULL,'MySQL: Command Update per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wh4ciyydphrl5p',1,'Admin',1672319415,'192.168.64.1',2,15,30666,NULL,'MySQL: Connection errors accept per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wi4ciyjlcdw8ug',1,'Admin',1672319415,'192.168.64.1',2,15,30667,NULL,'MySQL: Connection errors internal per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wj4ciy8hsdttj7',1,'Admin',1672319415,'192.168.64.1',2,15,30668,NULL,'MySQL: Connection errors peer address per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wk4ciy53ghcb8f',1,'Admin',1672319415,'192.168.64.1',2,15,30669,NULL,'MySQL: InnoDB buffer pool pages free','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wl4ciy63erzq2s',1,'Admin',1672319415,'192.168.64.1',2,15,30670,NULL,'MySQL: Connection errors select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wm4ciydkzqs76m',1,'Admin',1672319415,'192.168.64.1',2,15,30671,NULL,'MySQL: Connection errors tcpwrap per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wn4ciyug3wsmag',1,'Admin',1672319415,'192.168.64.1',2,15,30672,NULL,'MySQL: Connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wo4ciywhoftvr2',1,'Admin',1672319415,'192.168.64.1',2,15,30676,NULL,'MySQL: Aborted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wp4ciy9e5v5erb',1,'Admin',1672319415,'192.168.64.1',2,15,30677,NULL,'MySQL: Aborted clients per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wq4ciyy2o9jtr5',1,'Admin',1672319415,'192.168.64.1',2,15,31055,NULL,'MSSQL: Get performance counters','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wr4ciyk3ky8ohw',1,'Admin',1672319415,'192.168.64.1',2,15,31056,NULL,'MSSQL: Total average wait time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ws4ciy2qkz13qu',1,'Admin',1672319415,'192.168.64.1',2,15,31057,NULL,'MSSQL: Service\'s TCP port state','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wt4ciyz9pusuda',1,'Admin',1672319415,'192.168.64.1',2,15,31058,NULL,'MSSQL: Average latch wait time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wu4ciyc4eo360m',1,'Admin',1672319415,'192.168.64.1',2,15,31059,NULL,'MSSQL: Average latch wait time base','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wv4ciyh2oall4i',1,'Admin',1672319415,'192.168.64.1',2,15,31060,NULL,'MSSQL: Table lock escalations per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ww4ciy3bvs57h4',1,'Admin',1672319415,'192.168.64.1',2,15,31061,NULL,'MSSQL: Memory grants pending','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wx4ciyuz3mrbim',1,'Admin',1672319415,'192.168.64.1',2,15,31062,NULL,'MSSQL: Total lock requests per second that have deadlocks','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wy4ciyswofeszt',1,'Admin',1672319415,'192.168.64.1',2,15,31063,NULL,'MSSQL: Errors per second (DB offline errors)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wz4ciybd70twn0',1,'Admin',1672319415,'192.168.64.1',2,15,31064,NULL,'MSSQL: Page life expectancy','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x04ciyevndc2t7',1,'Admin',1672319415,'192.168.64.1',2,15,31065,NULL,'MSSQL: Page lookups per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x14ciy27umxv92',1,'Admin',1672319415,'192.168.64.1',2,15,31066,NULL,'MSSQL: Page reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x24ciywfcbx1x9',1,'Admin',1672319415,'192.168.64.1',2,15,31067,NULL,'MSSQL: Page splits per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x34ciyw5jc5wuu',1,'Admin',1672319415,'192.168.64.1',2,15,31068,NULL,'MSSQL: Page writes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x44ciykj0mmzdr',1,'Admin',1672319415,'192.168.64.1',2,15,31069,NULL,'MSSQL: Number of blocked processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x54ciy4rbwxb5x',1,'Admin',1672319415,'192.168.64.1',2,15,31070,NULL,'MSSQL: Read-ahead pages per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x64ciy8yfv1i7k',1,'Admin',1672319415,'192.168.64.1',2,15,31071,NULL,'MSSQL: Safe auto-params per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x74ciy93808bng',1,'Admin',1672319415,'192.168.64.1',2,15,31072,NULL,'MSSQL: SQL compilations per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x84ciy7odps5qc',1,'Admin',1672319415,'192.168.64.1',2,15,31073,NULL,'MSSQL: SQL re-compilations per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x94ciym5k3xzpn',1,'Admin',1672319415,'192.168.64.1',2,15,31074,NULL,'MSSQL: Target pages','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xa4ciyfzqt3ibk',1,'Admin',1672319415,'192.168.64.1',2,15,31075,NULL,'MSSQL: Maximum workspace memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xb4ciy7la0nfmr',1,'Admin',1672319415,'192.168.64.1',2,15,31076,NULL,'MSSQL: Target server memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xc4ciybb11uexw',1,'Admin',1672319415,'192.168.64.1',2,15,31077,NULL,'MSSQL: Total latch wait Time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xd4ciy2cfcsa70',1,'Admin',1672319415,'192.168.64.1',2,15,31078,NULL,'MSSQL: Total server memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xe4ciyh3hpagyz',1,'Admin',1672319415,'192.168.64.1',2,15,31079,NULL,'MSSQL: Total transactions number','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xf4ciyi0x325iu',1,'Admin',1672319415,'192.168.64.1',2,15,31080,NULL,'MSSQL: Total transactions per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xg4ciystru5wk6',1,'Admin',1672319415,'192.168.64.1',2,15,31081,NULL,'MSSQL: Unsafe auto-params per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xh4ciyjemqr2hb',1,'Admin',1672319415,'192.168.64.1',2,15,31082,NULL,'MSSQL: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xi4ciypcbik3fn',1,'Admin',1672319415,'192.168.64.1',2,15,31083,NULL,'MSSQL: Number users connected','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xj4ciyqhk3wjul',1,'Admin',1672319415,'192.168.64.1',2,15,31084,NULL,'MSSQL: Errors per second (User errors)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xk4ciyy5hk1a9t',1,'Admin',1672319415,'192.168.64.1',2,15,31085,NULL,'MSSQL: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xl4ciyl4qcfr6u',1,'Admin',1672319415,'192.168.64.1',2,15,31086,NULL,'MSSQL: Work files created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xm4ciycareymcf',1,'Admin',1672319415,'192.168.64.1',2,15,31087,NULL,'MSSQL: Work tables created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xn4ciyzd26upm0',1,'Admin',1672319415,'192.168.64.1',2,15,31088,NULL,'MSSQL: Worktables from cache ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xo4ciyfo62totp',1,'Admin',1672319415,'192.168.64.1',2,15,31089,NULL,'MSSQL: Memory grants outstanding','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xp4ciym4xb580d',1,'Admin',1672319415,'192.168.64.1',2,15,31090,NULL,'MSSQL: Logouts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xq4ciymvj23wka',1,'Admin',1672319415,'192.168.64.1',2,15,31091,NULL,'MSSQL: Average latch wait time raw','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xr4ciyq1hw4zg3',1,'Admin',1672319415,'192.168.64.1',2,15,31092,NULL,'MSSQL: Forwarded records per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xs4ciyeh2saqvp',1,'Admin',1672319415,'192.168.64.1',2,15,31093,NULL,'MSSQL: Total average wait time base','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xt4ciyw2xxi1v9',1,'Admin',1672319415,'192.168.64.1',2,15,31094,NULL,'MSSQL: Total average wait time raw','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xu4ciy2i33l510',1,'Admin',1672319415,'192.168.64.1',2,15,31095,NULL,'MSSQL: Batch requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xv4ciybi8hl15b',1,'Admin',1672319415,'192.168.64.1',2,15,31096,NULL,'MSSQL: Buffer cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xw4ciyzgtht7k4',1,'Admin',1672319415,'192.168.64.1',2,15,31097,NULL,'MSSQL: Cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xx4ciyxrz6dbj0',1,'Admin',1672319415,'192.168.64.1',2,15,31098,NULL,'MSSQL: Cache object counts','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xy4ciy0o30tu4c',1,'Admin',1672319415,'192.168.64.1',2,15,31099,NULL,'MSSQL: Cache objects in use','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xz4ciyw3wlkdka',1,'Admin',1672319415,'192.168.64.1',2,15,31100,NULL,'MSSQL: Cache pages','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y04ciy8540ebyj',1,'Admin',1672319415,'192.168.64.1',2,15,31101,NULL,'MSSQL: Checkpoint pages per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y14ciyfbslcy0r',1,'Admin',1672319415,'192.168.64.1',2,15,31102,NULL,'MSSQL: Total data file size','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y24ciyq0blbjnx',1,'Admin',1672319415,'192.168.64.1',2,15,31103,NULL,'MSSQL: Database pages','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y34ciy6ojgcc90',1,'Admin',1672319415,'192.168.64.1',2,15,31104,NULL,'MSSQL: Total errors per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y44ciyrkm0wgrs',1,'Admin',1672319415,'192.168.64.1',2,15,31105,NULL,'MSSQL: Failed auto-params per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y54ciyewtumbuj',1,'Admin',1672319415,'192.168.64.1',2,15,31106,NULL,'MSSQL: Free list stalls per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y64ciyul7dcwbq',1,'Admin',1672319415,'192.168.64.1',2,15,31107,NULL,'MSSQL: Logins per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y74ciylgvtzigi',1,'Admin',1672319415,'192.168.64.1',2,15,31108,NULL,'MSSQL: Full scans per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y84ciyh2t2w66p',1,'Admin',1672319415,'192.168.64.1',2,15,31109,NULL,'MSSQL: Granted Workspace Memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y94ciybcx6h75w',1,'Admin',1672319415,'192.168.64.1',2,15,31110,NULL,'MSSQL: Index searches per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ya4ciyv0172jm5',1,'Admin',1672319415,'192.168.64.1',2,15,31111,NULL,'MSSQL: Errors per second (Info errors)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yb4ciy6m36rp4g',1,'Admin',1672319415,'192.168.64.1',2,15,31112,NULL,'MSSQL: Errors per second (Kill connection errors)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yc4ciyfhj3svji',1,'Admin',1672319415,'192.168.64.1',2,15,31113,NULL,'MSSQL: Latch waits per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yd4ciyy8iodw4u',1,'Admin',1672319415,'192.168.64.1',2,15,31114,NULL,'MSSQL: Lazy writes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ye4ciy3xmb3ll6',1,'Admin',1672319415,'192.168.64.1',2,15,31115,NULL,'MSSQL: Total lock requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yf4ciyu2yu18bc',1,'Admin',1672319415,'192.168.64.1',2,15,31116,NULL,'MSSQL: Total lock requests per second that timed out','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yg4ciy4e7igs46',1,'Admin',1672319415,'192.168.64.1',2,15,31117,NULL,'MSSQL: Lock wait time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yh4ciyv7wg0swd',1,'Admin',1672319415,'192.168.64.1',2,15,31118,NULL,'MSSQL: Total lock requests per second that required waiting','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yi4ciyzqy0mw1b',1,'Admin',1672319415,'192.168.64.1',2,15,31119,NULL,'MSSQL: Total log file size','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yj4ciyxgelruf1',1,'Admin',1672319415,'192.168.64.1',2,15,31120,NULL,'MSSQL: Auto-param attempts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yk4ciyo77xw24p',1,'Admin',1672319415,'192.168.64.1',2,15,31121,NULL,'MSSQL: Total log file used size','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yl4ciy9jzwbl3m',1,'Admin',1672319415,'192.168.64.1',2,15,31168,NULL,'MySQL: Threads created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ym4ciykj2qywl7',1,'Admin',1672319415,'192.168.64.1',2,15,31169,NULL,'MySQL: Created tmp tables on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yn4ciy2ttbzsny',1,'Admin',1672319415,'192.168.64.1',2,15,31170,NULL,'MySQL: Created tmp files on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yo4ciycukq8kw6',1,'Admin',1672319415,'192.168.64.1',2,15,31171,NULL,'MySQL: Created tmp tables on memory per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yp4ciy1u3p0mo5',1,'Admin',1672319415,'192.168.64.1',2,15,31172,NULL,'MySQL: Threads created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yq4ciytgsy7w4r',1,'Admin',1672319415,'192.168.64.1',2,15,31173,NULL,'MySQL: Created tmp tables on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yr4ciya58orlrr',1,'Admin',1672319415,'192.168.64.1',2,15,31174,NULL,'MySQL: Created tmp files on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ys4ciy019du9kz',1,'Admin',1672319415,'192.168.64.1',2,15,31175,NULL,'MySQL: Created tmp tables on memory per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yt4ciyzrnlr0he',1,'Admin',1672319415,'192.168.64.1',2,15,31176,NULL,'MySQL: Threads created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yu4ciyfwa1vy3l',1,'Admin',1672319415,'192.168.64.1',2,15,31177,NULL,'MySQL: Created tmp tables on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yv4ciyzc2eaeue',1,'Admin',1672319415,'192.168.64.1',2,15,31178,NULL,'MySQL: Created tmp tables on memory per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yw4ciyo12d45kl',1,'Admin',1672319415,'192.168.64.1',2,15,31179,NULL,'MySQL: Created tmp files on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yx4ciy2ey48o28',1,'Admin',1672319415,'192.168.64.1',2,15,31180,NULL,'Oracle: Get archive log info','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yy4ciyet2wbes2',1,'Admin',1672319415,'192.168.64.1',2,15,31181,NULL,'Oracle: Get tablespaces stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yz4ciyz1toq29d',1,'Admin',1672319415,'192.168.64.1',2,15,31182,NULL,'Oracle: Get ASM stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z04ciybqnfa3p8',1,'Admin',1672319415,'192.168.64.1',2,15,31183,NULL,'Oracle: Service\'s TCP port state','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z14ciy20uyae91',1,'Admin',1672319415,'192.168.64.1',2,15,31184,NULL,'Oracle: Number of LISTENER processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z24ciygv38kyz1',1,'Admin',1672319415,'192.168.64.1',2,15,31185,NULL,'Oracle: Get system metrics','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z34ciygdqxerr3',1,'Admin',1672319415,'192.168.64.1',2,15,31186,NULL,'Oracle: Get CDB and No-CDB info','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z44ciyywyyeyfl',1,'Admin',1672319415,'192.168.64.1',2,15,31187,NULL,'Oracle: Get PDB info','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z54ciyuy0mydrr',1,'Admin',1672319415,'192.168.64.1',2,15,31188,NULL,'Oracle: Get instance state','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z64ciyelzri6h6',1,'Admin',1672319415,'192.168.64.1',2,15,31189,NULL,'Oracle: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z74ciyrtps05uw',1,'Admin',1672319415,'192.168.64.1',2,15,31190,NULL,'Oracle: Sessions lock rate','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z84ciyt4ygd6ve',1,'Admin',1672319415,'192.168.64.1',2,15,31191,NULL,'Oracle: Physical writes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z94ciyjpc5lswl',1,'Admin',1672319415,'192.168.64.1',2,15,31192,NULL,'Oracle: Number of processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00za4ciyi4cbu1ff',1,'Admin',1672319415,'192.168.64.1',2,15,31193,NULL,'Oracle: Processes limit','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zb4ciy1f5o6ebz',1,'Admin',1672319415,'192.168.64.1',2,15,31194,NULL,'Oracle: Redo logs available to switch','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zc4ciyv61xoool',1,'Admin',1672319415,'192.168.64.1',2,15,31195,NULL,'Oracle: Rows per sort','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zd4ciyig0ctq3w',1,'Admin',1672319415,'192.168.64.1',2,15,31196,NULL,'Oracle: SQL service response time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ze4ciyqkau9ej4',1,'Admin',1672319415,'192.168.64.1',2,15,31197,NULL,'Oracle: Active background sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zf4ciyrwus5q0k',1,'Admin',1672319415,'192.168.64.1',2,15,31198,NULL,'Oracle: Active user sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zg4ciy3lgpq29m',1,'Admin',1672319415,'192.168.64.1',2,15,31199,NULL,'Oracle: Sessions concurrency','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zh4ciyiy7trhy8',1,'Admin',1672319415,'192.168.64.1',2,15,31200,NULL,'Oracle: Session count','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zi4ciyy9nxqxsd',1,'Admin',1672319415,'192.168.64.1',2,15,31201,NULL,'Oracle: Inactive user sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zj4ciyqfo5elax',1,'Admin',1672319415,'192.168.64.1',2,15,31202,NULL,'Oracle: Sessions limit','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zk4ciysdlrp720',1,'Admin',1672319415,'192.168.64.1',2,15,31203,NULL,'Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zl4ciyy6djrfst',1,'Admin',1672319415,'192.168.64.1',2,15,31204,NULL,'Oracle: User rollbacks per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zm4ciy0rkezbn5',1,'Admin',1672319415,'192.168.64.1',2,15,31205,NULL,'Oracle: SGA, buffer cache','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zn4ciyrp5k6o1c',1,'Admin',1672319415,'192.168.64.1',2,15,31206,NULL,'Oracle: Physical writes bytes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zo4ciy32h6dik9',1,'Admin',1672319415,'192.168.64.1',2,15,31207,NULL,'Oracle: SGA, java pool','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zp4ciyb56h9low',1,'Admin',1672319415,'192.168.64.1',2,15,31208,NULL,'Oracle: SGA, large pool','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zq4ciygsag1d4h',1,'Admin',1672319415,'192.168.64.1',2,15,31209,NULL,'Oracle: SGA, log buffer','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zr4ciy7doz8p0s',1,'Admin',1672319415,'192.168.64.1',2,15,31210,NULL,'Oracle: SGA, shared pool','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zs4ciyguyi3n72',1,'Admin',1672319415,'192.168.64.1',2,15,31211,NULL,'Oracle: Shared pool free %','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zt4ciye0duysk6',1,'Admin',1672319415,'192.168.64.1',2,15,31212,NULL,'Oracle: Total sorts per user call','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zu4ciy0rps4miu',1,'Admin',1672319415,'192.168.64.1',2,15,31213,NULL,'Oracle: Temp space used','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zv4ciy44u3fmhb',1,'Admin',1672319415,'192.168.64.1',2,15,31214,NULL,'Oracle: PGA, Total allocated','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zw4ciy7esb1rya',1,'Admin',1672319415,'192.168.64.1',2,15,31215,NULL,'Oracle: PGA, Total freeable','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zx4ciysf5g7peq',1,'Admin',1672319415,'192.168.64.1',2,15,31216,NULL,'Oracle: PGA, Total inuse','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zy4ciytv42q2zx',1,'Admin',1672319415,'192.168.64.1',2,15,31217,NULL,'Oracle: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zz4ciysc3ztavt',1,'Admin',1672319415,'192.168.64.1',2,15,31218,NULL,'Oracle: User \'{$ORACLE.USER}\' expire password','clc93suux00004ciywh0nidxf',''),('clc93sv0v01004ciyhbdpm6t0',1,'Admin',1672319415,'192.168.64.1',2,15,31219,NULL,'Oracle: SGA, fixed','clc93suux00004ciywh0nidxf',''),('clc93sv0v01014ciyhja11mmb',1,'Admin',1672319415,'192.168.64.1',2,15,31220,NULL,'Oracle: Physical reads bytes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v01024ciy732o27sl',1,'Admin',1672319415,'192.168.64.1',2,15,31221,NULL,'Oracle: Physical reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v01034ciyz7d474rp',1,'Admin',1672319415,'192.168.64.1',2,15,31222,NULL,'Oracle: Enqueue timeouts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v01044ciys0jpmfsc',1,'Admin',1672319415,'192.168.64.1',2,15,31223,NULL,'Oracle: Active parallel sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v01054ciylnr6krpv',1,'Admin',1672319415,'192.168.64.1',2,15,31224,NULL,'Oracle: Active serial sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v01064ciyb07jfb4d',1,'Admin',1672319415,'192.168.64.1',2,15,31225,NULL,'Oracle: Average active sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v01074ciyx88r4h2a',1,'Admin',1672319415,'192.168.64.1',2,15,31226,NULL,'Oracle: Archiver state','clc93suux00004ciywh0nidxf',''),('clc93sv0v01084ciy2ilcpag3',1,'Admin',1672319415,'192.168.64.1',2,15,31227,NULL,'Oracle: Buffer cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v01094ciyxec78kwj',1,'Admin',1672319415,'192.168.64.1',2,15,31228,NULL,'Oracle: Global cache blocks corrupted','clc93suux00004ciywh0nidxf',''),('clc93sv0v010a4ciymshufkpm',1,'Admin',1672319415,'192.168.64.1',2,15,31229,NULL,'Oracle: Global cache blocks lost','clc93suux00004ciywh0nidxf',''),('clc93sv0v010b4ciyvocf704q',1,'Admin',1672319415,'192.168.64.1',2,15,31230,NULL,'Oracle: Cursor cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010c4ciyezy2qmea',1,'Admin',1672319415,'192.168.64.1',2,15,31231,NULL,'Oracle: Database CPU time ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010d4ciysgpyps59',1,'Admin',1672319415,'192.168.64.1',2,15,31232,NULL,'Oracle: Database wait time ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010e4ciy8zizd7tt',1,'Admin',1672319415,'192.168.64.1',2,15,31233,NULL,'Oracle: Datafiles count','clc93suux00004ciywh0nidxf',''),('clc93sv0v010f4ciy5oaxr4cj',1,'Admin',1672319415,'192.168.64.1',2,15,31234,NULL,'Oracle: Datafiles limit','clc93suux00004ciywh0nidxf',''),('clc93sv0v010g4ciy0g062ub6',1,'Admin',1672319415,'192.168.64.1',2,15,31235,NULL,'Oracle: Disk sort per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v010h4ciy19ds7maj',1,'Admin',1672319415,'192.168.64.1',2,15,31236,NULL,'Oracle: FRA, Number of files','clc93suux00004ciywh0nidxf',''),('clc93sv0v010i4ciyh8pa856w',1,'Admin',1672319415,'192.168.64.1',2,15,31237,NULL,'Oracle: PGA, Aggregate target parameter','clc93suux00004ciywh0nidxf',''),('clc93sv0v010j4ciy6ar18uez',1,'Admin',1672319415,'192.168.64.1',2,15,31238,NULL,'Oracle: FRA, Number of restore points','clc93suux00004ciywh0nidxf',''),('clc93sv0v010k4ciyfe7e1vmm',1,'Admin',1672319415,'192.168.64.1',2,15,31239,NULL,'Oracle: FRA, Space limit','clc93suux00004ciywh0nidxf',''),('clc93sv0v010l4ciy81ya8vld',1,'Admin',1672319415,'192.168.64.1',2,15,31240,NULL,'Oracle: FRA, Space reclaimable','clc93suux00004ciywh0nidxf',''),('clc93sv0v010m4ciy58zqq8ct',1,'Admin',1672319415,'192.168.64.1',2,15,31241,NULL,'Oracle: FRA, Used space','clc93suux00004ciywh0nidxf',''),('clc93sv0v010n4ciyxafhiopk',1,'Admin',1672319415,'192.168.64.1',2,15,31242,NULL,'Oracle: FRA, Usable space in %','clc93suux00004ciywh0nidxf',''),('clc93sv0v010o4ciyad140iw3',1,'Admin',1672319415,'192.168.64.1',2,15,31243,NULL,'Oracle: GC CR block received per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v010p4ciyvsfzyylo',1,'Admin',1672319415,'192.168.64.1',2,15,31244,NULL,'Oracle: Instance hostname','clc93suux00004ciywh0nidxf',''),('clc93sv0v010q4ciysak5l29m',1,'Admin',1672319415,'192.168.64.1',2,15,31245,NULL,'Oracle: Instance name','clc93suux00004ciywh0nidxf',''),('clc93sv0v010r4ciy3rvqz1fd',1,'Admin',1672319415,'192.168.64.1',2,15,31246,NULL,'Oracle: Instance status','clc93suux00004ciywh0nidxf',''),('clc93sv0v010s4ciyqsrp0o39',1,'Admin',1672319415,'192.168.64.1',2,15,31247,NULL,'Oracle: Instance role','clc93suux00004ciywh0nidxf',''),('clc93sv0v010t4ciy0qz0hbn3',1,'Admin',1672319415,'192.168.64.1',2,15,31248,NULL,'Oracle: Library cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010u4ciy5owpxuiz',1,'Admin',1672319415,'192.168.64.1',2,15,31249,NULL,'Oracle: Logons per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v010v4ciy14arwx0r',1,'Admin',1672319415,'192.168.64.1',2,15,31250,NULL,'Oracle: Long table scans per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v010w4ciysrdvl8um',1,'Admin',1672319415,'192.168.64.1',2,15,31251,NULL,'Oracle: PGA, Global memory bound','clc93suux00004ciywh0nidxf',''),('clc93sv0v010x4ciyaztldftx',1,'Admin',1672319415,'192.168.64.1',2,15,31252,NULL,'Oracle: Memory sorts ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010y4ciy3ci5e64x',1,'Admin',1672319415,'192.168.64.1',2,15,31554,NULL,'MSSQL: Percent of Adhoc queries running','clc93suux00004ciywh0nidxf',''),('clc93sv0v010z4ciy0rnfidvr',1,'Admin',1672319415,'192.168.64.1',2,15,31555,NULL,'MSSQL: Full scans to Index searches ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v01104ciy0r575dn0',1,'Admin',1672319415,'192.168.64.1',2,15,31556,NULL,'MSSQL: Percent of Recompiled Transact-SQL Objects','clc93suux00004ciywh0nidxf',''),('clc93sv0v01114ciy7mj060tf',1,'Admin',1672319415,'192.168.64.1',2,15,31570,NULL,'PHP-FPM: Get status page','clc93suux00004ciywh0nidxf',''),('clc93sv0v01124ciy9ojr2qmq',1,'Admin',1672319415,'192.168.64.1',2,15,31571,NULL,'PHP-FPM: php-fpm_ping','clc93suux00004ciywh0nidxf',''),('clc93sv0v01134ciyselda9bp',1,'Admin',1672319415,'192.168.64.1',2,15,31573,NULL,'PHP-FPM: Queue usage','clc93suux00004ciywh0nidxf',''),('clc93sv0v01144ciy05xlaj59',1,'Admin',1672319415,'192.168.64.1',2,15,31577,NULL,'PHP-FPM: Slow requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v01154ciyh58hevwm',1,'Admin',1672319415,'192.168.64.1',2,15,31578,NULL,'PHP-FPM: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v01164ciydb375ccg',1,'Admin',1672319415,'192.168.64.1',2,15,31579,NULL,'PHP-FPM: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v01174ciydncdc0dp',1,'Admin',1672319415,'192.168.64.1',2,15,31580,NULL,'PHP-FPM: Start time','clc93suux00004ciywh0nidxf',''),('clc93sv0v01184ciyunnzwg83',1,'Admin',1672319415,'192.168.64.1',2,15,31581,NULL,'PHP-FPM: Accepted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v01194ciy8fsx5mlz',1,'Admin',1672319415,'192.168.64.1',2,15,31582,NULL,'PHP-FPM: Processes, total','clc93suux00004ciywh0nidxf',''),('clc93sv0v011a4ciyw3vyncxd',1,'Admin',1672319415,'192.168.64.1',2,15,31583,NULL,'PHP-FPM: Listen queue','clc93suux00004ciywh0nidxf',''),('clc93sv0v011b4ciy2z4g5hl6',1,'Admin',1672319415,'192.168.64.1',2,15,31584,NULL,'PHP-FPM: Processes, idle','clc93suux00004ciywh0nidxf',''),('clc93sv0v011c4ciyf0cbovyc',1,'Admin',1672319415,'192.168.64.1',2,15,31585,NULL,'PHP-FPM: Processes, active','clc93suux00004ciywh0nidxf',''),('clc93sv0v011d4ciyce2p9fib',1,'Admin',1672319415,'192.168.64.1',2,15,31586,NULL,'PHP-FPM: Process manager','clc93suux00004ciywh0nidxf',''),('clc93sv0v011e4ciyc3mfequ7',1,'Admin',1672319415,'192.168.64.1',2,15,31587,NULL,'PHP-FPM: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0v011f4ciyx2d1v7qy',1,'Admin',1672319415,'192.168.64.1',2,15,31588,NULL,'PHP-FPM: Pool name','clc93suux00004ciywh0nidxf',''),('clc93sv0v011g4ciytyqvapsh',1,'Admin',1672319415,'192.168.64.1',2,15,31589,NULL,'PHP-FPM: Max children reached','clc93suux00004ciywh0nidxf',''),('clc93sv0v011h4ciyr89mt21c',1,'Admin',1672319415,'192.168.64.1',2,15,31590,NULL,'PHP-FPM: Listen queue, max','clc93suux00004ciywh0nidxf',''),('clc93sv0v011i4ciy3xdg03pq',1,'Admin',1672319415,'192.168.64.1',2,15,31591,NULL,'PHP-FPM: Listen queue, len','clc93suux00004ciywh0nidxf',''),('clc93sv0v011j4ciybuqmrfjq',1,'Admin',1672319415,'192.168.64.1',2,15,31592,NULL,'PHP-FPM: Processes, max active','clc93suux00004ciywh0nidxf',''),('clc93sv0v011k4ciytlgzecfv',1,'Admin',1672319415,'192.168.64.1',2,15,31593,NULL,'PHP-FPM: Queue usage','clc93suux00004ciywh0nidxf',''),('clc93sv0v011l4ciyf9ppzj81',1,'Admin',1672319415,'192.168.64.1',2,15,31594,NULL,'PHP-FPM: Get status page','clc93suux00004ciywh0nidxf',''),('clc93sv0v011m4ciyr3ak2lo2',1,'Admin',1672319415,'192.168.64.1',2,15,31595,NULL,'PHP-FPM: Get ping page','clc93suux00004ciywh0nidxf',''),('clc93sv0v011n4ciygk9qqg01',1,'Admin',1672319415,'192.168.64.1',2,15,31596,NULL,'PHP-FPM: Accepted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v011o4ciy5gft6wcs',1,'Admin',1672319415,'192.168.64.1',2,15,31597,NULL,'PHP-FPM: Processes, idle','clc93suux00004ciywh0nidxf',''),('clc93sv0v011p4ciyen72tvf4',1,'Admin',1672319415,'192.168.64.1',2,15,31598,NULL,'PHP-FPM: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v011q4ciyus5ad7v2',1,'Admin',1672319415,'192.168.64.1',2,15,31599,NULL,'PHP-FPM: Start time','clc93suux00004ciywh0nidxf',''),('clc93sv0v011r4ciyffts7zzw',1,'Admin',1672319415,'192.168.64.1',2,15,31600,NULL,'PHP-FPM: Slow requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v011s4ciye89yl5td',1,'Admin',1672319415,'192.168.64.1',2,15,31601,NULL,'PHP-FPM: Processes, total','clc93suux00004ciywh0nidxf',''),('clc93sv0v011t4ciyoth37uo8',1,'Admin',1672319415,'192.168.64.1',2,15,31602,NULL,'PHP-FPM: Processes, max active','clc93suux00004ciywh0nidxf',''),('clc93sv0v011u4ciy09a42cpv',1,'Admin',1672319415,'192.168.64.1',2,15,31603,NULL,'PHP-FPM: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0v011v4ciyoryimkfu',1,'Admin',1672319415,'192.168.64.1',2,15,31604,NULL,'PHP-FPM: Processes, active','clc93suux00004ciywh0nidxf',''),('clc93sv0v011w4ciytxz5zkhg',1,'Admin',1672319415,'192.168.64.1',2,15,31605,NULL,'PHP-FPM: Process manager','clc93suux00004ciywh0nidxf',''),('clc93sv0v011x4ciy0wd7ag4c',1,'Admin',1672319415,'192.168.64.1',2,15,31606,NULL,'PHP-FPM: Pool name','clc93suux00004ciywh0nidxf',''),('clc93sv0v011y4ciym5h8qhkg',1,'Admin',1672319415,'192.168.64.1',2,15,31607,NULL,'PHP-FPM: Max children reached','clc93suux00004ciywh0nidxf',''),('clc93sv0v011z4ciyvhpujmtq',1,'Admin',1672319415,'192.168.64.1',2,15,31608,NULL,'PHP-FPM: Listen queue, max','clc93suux00004ciywh0nidxf',''),('clc93sv0v01204ciy4ufogc5c',1,'Admin',1672319415,'192.168.64.1',2,15,31609,NULL,'PHP-FPM: Listen queue, len','clc93suux00004ciywh0nidxf',''),('clc93sv0v01214ciy53zn48c3',1,'Admin',1672319415,'192.168.64.1',2,15,31610,NULL,'PHP-FPM: Listen queue','clc93suux00004ciywh0nidxf',''),('clc93sv0v01224ciysh5tw07k',1,'Admin',1672319415,'192.168.64.1',2,15,31611,NULL,'PHP-FPM: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v01234ciykwaynvsa',1,'Admin',1672319415,'192.168.64.1',2,15,31684,NULL,'Oracle: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0v01244ciyp3x99yqy',1,'Admin',1672319415,'192.168.64.1',2,15,31685,NULL,'Oracle: Datafiles count','clc93suux00004ciywh0nidxf',''),('clc93sv0v01254ciy3p5qoqic',1,'Admin',1672319415,'192.168.64.1',2,15,31686,NULL,'Oracle: Get FRA stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v01264ciyogg3c5s2',1,'Admin',1672319415,'192.168.64.1',2,15,31687,NULL,'Oracle: Number of processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v01274ciyd0i1z0s7',1,'Admin',1672319415,'192.168.64.1',2,15,31688,NULL,'Oracle: Get SGA stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v01284ciyrjbch33w',1,'Admin',1672319415,'192.168.64.1',2,15,31689,NULL,'Oracle: Get PDB info','clc93suux00004ciywh0nidxf',''),('clc93sv0v01294ciy0ltygps4',1,'Admin',1672319415,'192.168.64.1',2,15,31690,NULL,'Oracle: Get ASM stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v012a4ciyqhw34gwe',1,'Admin',1672319415,'192.168.64.1',2,15,31691,NULL,'Oracle: Get system metrics','clc93suux00004ciywh0nidxf',''),('clc93sv0v012b4ciymyshehp2',1,'Admin',1672319415,'192.168.64.1',2,15,31692,NULL,'Oracle: Get instance state','clc93suux00004ciywh0nidxf',''),('clc93sv0v012c4ciygbg9zlh5',1,'Admin',1672319415,'192.168.64.1',2,15,31693,NULL,'Oracle: Get system parameters','clc93suux00004ciywh0nidxf',''),('clc93sv0v012d4ciy92xhcsvc',1,'Admin',1672319415,'192.168.64.1',2,15,31694,NULL,'Oracle: Get PGA stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v012e4ciy2tcldhyu',1,'Admin',1672319415,'192.168.64.1',2,15,31695,NULL,'Oracle: Redo logs available to switch','clc93suux00004ciywh0nidxf',''),('clc93sv0v012f4ciypa4fvpk6',1,'Admin',1672319415,'192.168.64.1',2,15,31696,NULL,'Oracle: User\'s expire password','clc93suux00004ciywh0nidxf',''),('clc93sv0v012g4ciy79udhi1h',1,'Admin',1672319415,'192.168.64.1',2,15,31697,NULL,'Oracle: Get archive log info','clc93suux00004ciywh0nidxf',''),('clc93sv0v012h4ciy5wxfic36',1,'Admin',1672319415,'192.168.64.1',2,15,31698,NULL,'Oracle: Get sessions stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v012i4ciyf0jhgbo3',1,'Admin',1672319415,'192.168.64.1',2,15,31699,NULL,'Oracle: Get CDB and No-CDB info','clc93suux00004ciywh0nidxf',''),('clc93sv0v012j4ciy23r44kdm',1,'Admin',1672319415,'192.168.64.1',2,15,31700,NULL,'Oracle: Get tablespaces stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v012k4ciyldg3tojx',1,'Admin',1672319415,'192.168.64.1',2,15,31701,NULL,'Oracle: Active user sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v012l4ciy3chek2zt',1,'Admin',1672319415,'192.168.64.1',2,15,31702,NULL,'Oracle: Rows per sort','clc93suux00004ciywh0nidxf',''),('clc93sv0v012m4ciyogl1d7mp',1,'Admin',1672319415,'192.168.64.1',2,15,31703,NULL,'Oracle: Active background sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v012n4ciyi131jtq7',1,'Admin',1672319415,'192.168.64.1',2,15,31704,NULL,'Oracle: Sessions concurrency','clc93suux00004ciywh0nidxf',''),('clc93sv0v012o4ciy72lrr34w',1,'Admin',1672319415,'192.168.64.1',2,15,31705,NULL,'Oracle: Session count','clc93suux00004ciywh0nidxf',''),('clc93sv0w012p4ciy8drrat7z',1,'Admin',1672319415,'192.168.64.1',2,15,31706,NULL,'Oracle: Inactive user sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0w012q4ciyhxs325zh',1,'Admin',1672319415,'192.168.64.1',2,15,31707,NULL,'Oracle: SQL service response time','clc93suux00004ciywh0nidxf',''),('clc93sv0w012r4ciylbcuru1j',1,'Admin',1672319415,'192.168.64.1',2,15,31708,NULL,'Oracle: Sessions limit','clc93suux00004ciywh0nidxf',''),('clc93sv0w012s4ciyck53dy7n',1,'Admin',1672319415,'192.168.64.1',2,15,31709,NULL,'Oracle: Sessions lock rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w012t4ciysdbc1pew',1,'Admin',1672319415,'192.168.64.1',2,15,31710,NULL,'Oracle: Processes limit','clc93suux00004ciywh0nidxf',''),('clc93sv0w012u4ciyyu3neuxw',1,'Admin',1672319415,'192.168.64.1',2,15,31711,NULL,'Oracle: Active parallel sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0w012v4ciyvaoarqhm',1,'Admin',1672319415,'192.168.64.1',2,15,31712,NULL,'Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s','clc93suux00004ciywh0nidxf',''),('clc93sv0w012w4ciyookfq63u',1,'Admin',1672319415,'192.168.64.1',2,15,31713,NULL,'Oracle: SGA, buffer cache','clc93suux00004ciywh0nidxf',''),('clc93sv0w012x4ciyeve07e7e',1,'Admin',1672319415,'192.168.64.1',2,15,31714,NULL,'Oracle: SGA, fixed','clc93suux00004ciywh0nidxf',''),('clc93sv0w012y4ciylet35zbe',1,'Admin',1672319415,'192.168.64.1',2,15,31715,NULL,'Oracle: SGA, java pool','clc93suux00004ciywh0nidxf',''),('clc93sv0w012z4ciyjm0bhcop',1,'Admin',1672319415,'192.168.64.1',2,15,31716,NULL,'Oracle: SGA, log buffer','clc93suux00004ciywh0nidxf',''),('clc93sv0w01304ciy24a1tdkk',1,'Admin',1672319415,'192.168.64.1',2,15,31717,NULL,'Oracle: SGA, shared pool','clc93suux00004ciywh0nidxf',''),('clc93sv0w01314ciywl6z97jg',1,'Admin',1672319415,'192.168.64.1',2,15,31718,NULL,'Oracle: Shared pool free %','clc93suux00004ciywh0nidxf',''),('clc93sv0w01324ciywvwes6ca',1,'Admin',1672319415,'192.168.64.1',2,15,31719,NULL,'Oracle: Total sorts per user call','clc93suux00004ciywh0nidxf',''),('clc93sv0w01334ciyj4c4biru',1,'Admin',1672319415,'192.168.64.1',2,15,31720,NULL,'Oracle: Temp space used','clc93suux00004ciywh0nidxf',''),('clc93sv0w01344ciyq1ciciej',1,'Admin',1672319415,'192.168.64.1',2,15,31721,NULL,'Oracle: PGA, Total allocated','clc93suux00004ciywh0nidxf',''),('clc93sv0w01354ciyxhmhmeae',1,'Admin',1672319415,'192.168.64.1',2,15,31722,NULL,'Oracle: PGA, Total freeable','clc93suux00004ciywh0nidxf',''),('clc93sv0w01364ciylzs0qz88',1,'Admin',1672319415,'192.168.64.1',2,15,31723,NULL,'Oracle: PGA, Total inuse','clc93suux00004ciywh0nidxf',''),('clc93sv0w01374ciy1b57m4sj',1,'Admin',1672319415,'192.168.64.1',2,15,31724,NULL,'Oracle: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0w01384ciyxjtw9p4j',1,'Admin',1672319415,'192.168.64.1',2,15,31725,NULL,'Oracle: User rollbacks per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01394ciyltghx15r',1,'Admin',1672319415,'192.168.64.1',2,15,31726,NULL,'Oracle: SGA, large pool','clc93suux00004ciywh0nidxf',''),('clc93sv0w013a4ciyzrmpu1bc',1,'Admin',1672319415,'192.168.64.1',2,15,31727,NULL,'Oracle: Physical reads bytes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013b4ciysmy7pdub',1,'Admin',1672319415,'192.168.64.1',2,15,31728,NULL,'Oracle: Physical writes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013c4ciyn2ugadd6',1,'Admin',1672319415,'192.168.64.1',2,15,31729,NULL,'Oracle: FRA, Space reclaimable','clc93suux00004ciywh0nidxf',''),('clc93sv0w013d4ciyj4q51exx',1,'Admin',1672319415,'192.168.64.1',2,15,31730,NULL,'Oracle: Average active sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0w013e4ciy40oxf8pf',1,'Admin',1672319415,'192.168.64.1',2,15,31731,NULL,'Oracle: Archiver state','clc93suux00004ciywh0nidxf',''),('clc93sv0w013f4ciyhg2y9go1',1,'Admin',1672319415,'192.168.64.1',2,15,31732,NULL,'Oracle: Buffer cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w013g4ciy1kwg12z3',1,'Admin',1672319415,'192.168.64.1',2,15,31733,NULL,'Oracle: Global cache blocks corrupted','clc93suux00004ciywh0nidxf',''),('clc93sv0w013h4ciy0ymjb3c4',1,'Admin',1672319415,'192.168.64.1',2,15,31734,NULL,'Oracle: Global cache blocks lost','clc93suux00004ciywh0nidxf',''),('clc93sv0w013i4ciy8wand473',1,'Admin',1672319415,'192.168.64.1',2,15,31735,NULL,'Oracle: Cursor cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w013j4ciylayi6ocj',1,'Admin',1672319415,'192.168.64.1',2,15,31736,NULL,'Oracle: Database CPU time ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w013k4ciyi3fv44er',1,'Admin',1672319415,'192.168.64.1',2,15,31737,NULL,'Oracle: Database wait time ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w013l4ciywo4it13f',1,'Admin',1672319415,'192.168.64.1',2,15,31738,NULL,'Oracle: Datafiles limit','clc93suux00004ciywh0nidxf',''),('clc93sv0w013m4ciyogfq00xu',1,'Admin',1672319415,'192.168.64.1',2,15,31739,NULL,'Oracle: Disk sort per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013n4ciyw5pc4fnn',1,'Admin',1672319415,'192.168.64.1',2,15,31740,NULL,'Oracle: Enqueue timeouts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013o4ciyx161oc1j',1,'Admin',1672319415,'192.168.64.1',2,15,31741,NULL,'Oracle: FRA, Number of files','clc93suux00004ciywh0nidxf',''),('clc93sv0w013p4ciyec9iunot',1,'Admin',1672319415,'192.168.64.1',2,15,31742,NULL,'Oracle: FRA, Number of restore points','clc93suux00004ciywh0nidxf',''),('clc93sv0w013q4ciyjegqirdd',1,'Admin',1672319415,'192.168.64.1',2,15,31743,NULL,'Oracle: FRA, Space limit','clc93suux00004ciywh0nidxf',''),('clc93sv0w013r4ciybq4dcode',1,'Admin',1672319415,'192.168.64.1',2,15,31744,NULL,'Oracle: FRA, Used space','clc93suux00004ciywh0nidxf',''),('clc93sv0w013s4ciyz6x1hxui',1,'Admin',1672319415,'192.168.64.1',2,15,31745,NULL,'Oracle: Physical writes bytes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013t4ciyskeu3hnc',1,'Admin',1672319415,'192.168.64.1',2,15,31746,NULL,'Oracle: FRA, Usable space in %','clc93suux00004ciywh0nidxf',''),('clc93sv0w013u4ciy37ukm5xp',1,'Admin',1672319415,'192.168.64.1',2,15,31747,NULL,'Oracle: GC CR block received per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013v4ciybwl690bv',1,'Admin',1672319415,'192.168.64.1',2,15,31748,NULL,'Oracle: Instance hostname','clc93suux00004ciywh0nidxf',''),('clc93sv0w013w4ciyyuhjeget',1,'Admin',1672319415,'192.168.64.1',2,15,31749,NULL,'Oracle: Instance name','clc93suux00004ciywh0nidxf',''),('clc93sv0w013x4ciyto8i1qp9',1,'Admin',1672319415,'192.168.64.1',2,15,31750,NULL,'Oracle: Instance status','clc93suux00004ciywh0nidxf',''),('clc93sv0w013y4ciyrliq5qw8',1,'Admin',1672319415,'192.168.64.1',2,15,31751,NULL,'Oracle: Instance role','clc93suux00004ciywh0nidxf',''),('clc93sv0w013z4ciycehx5rg2',1,'Admin',1672319415,'192.168.64.1',2,15,31752,NULL,'Oracle: Library cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w01404ciyyn7cbtth',1,'Admin',1672319415,'192.168.64.1',2,15,31753,NULL,'Oracle: Logons per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01414ciyuipi14rc',1,'Admin',1672319415,'192.168.64.1',2,15,31754,NULL,'Oracle: Long table scans per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01424ciybzx5dcyk',1,'Admin',1672319415,'192.168.64.1',2,15,31755,NULL,'Oracle: Memory sorts ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w01434ciymmew5erf',1,'Admin',1672319415,'192.168.64.1',2,15,31756,NULL,'Oracle: PGA, Global memory bound','clc93suux00004ciywh0nidxf',''),('clc93sv0w01444ciywrcm2fid',1,'Admin',1672319415,'192.168.64.1',2,15,31757,NULL,'Oracle: PGA, Aggregate target parameter','clc93suux00004ciywh0nidxf',''),('clc93sv0w01454ciy9tzbfsof',1,'Admin',1672319415,'192.168.64.1',2,15,31758,NULL,'Oracle: Active serial sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0w01464ciyfrhlut6v',1,'Admin',1672319415,'192.168.64.1',2,15,31759,NULL,'Oracle: Physical reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01474ciylr3tnqa4',1,'Admin',1672319415,'192.168.64.1',2,15,31760,NULL,'Oracle: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01484ciycuhjw22j',1,'Admin',1672319415,'192.168.64.1',2,15,32364,NULL,'PostgreSQL: Get connections sum','clc93suux00004ciywh0nidxf',''),('clc93sv0w01494ciycph6bcta',1,'Admin',1672319415,'192.168.64.1',2,15,32365,NULL,'PostgreSQL: Get locks','clc93suux00004ciywh0nidxf',''),('clc93sv0w014a4ciykl4oxbdo',1,'Admin',1672319415,'192.168.64.1',2,15,32366,NULL,'Status: Ping time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014b4ciy26z17vv2',1,'Admin',1672319415,'192.168.64.1',2,15,32367,NULL,'Status: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0w014c4ciyu1099xmc',1,'Admin',1672319415,'192.168.64.1',2,15,32368,NULL,'PostgreSQL: Get queries','clc93suux00004ciywh0nidxf',''),('clc93sv0w014d4ciyebdrkz3m',1,'Admin',1672319415,'192.168.64.1',2,15,32369,NULL,'Replication: standby count','clc93suux00004ciywh0nidxf',''),('clc93sv0w014e4ciy99co5pxo',1,'Admin',1672319415,'192.168.64.1',2,15,32370,NULL,'Replication: lag in seconds','clc93suux00004ciywh0nidxf',''),('clc93sv0w014f4ciybb1nnxmb',1,'Admin',1672319415,'192.168.64.1',2,15,32371,NULL,'Replication: recovery role','clc93suux00004ciywh0nidxf',''),('clc93sv0w014g4ciyjbzeahyt',1,'Admin',1672319415,'192.168.64.1',2,15,32372,NULL,'Replication: status','clc93suux00004ciywh0nidxf',''),('clc93sv0w014h4ciynrtlhcce',1,'Admin',1672319415,'192.168.64.1',2,15,32373,NULL,'Status: Config hash','clc93suux00004ciywh0nidxf',''),('clc93sv0w014i4ciyuyf0yj0f',1,'Admin',1672319415,'192.168.64.1',2,15,32374,NULL,'Status: Cache hit ratio %','clc93suux00004ciywh0nidxf',''),('clc93sv0w014j4ciyhspbhofo',1,'Admin',1672319415,'192.168.64.1',2,15,32375,NULL,'PostgreSQL: Get bgwriter','clc93suux00004ciywh0nidxf',''),('clc93sv0w014k4ciywj1hj7zy',1,'Admin',1672319415,'192.168.64.1',2,15,32376,NULL,'PostgreSQL: Get transactions','clc93suux00004ciywh0nidxf',''),('clc93sv0w014l4ciyguwdakk4',1,'Admin',1672319415,'192.168.64.1',2,15,32377,NULL,'Status: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0w014m4ciyj94f7iuj',1,'Admin',1672319415,'192.168.64.1',2,15,32378,NULL,'Status: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0w014n4ciy8t0vcv3m',1,'Admin',1672319415,'192.168.64.1',2,15,32379,NULL,'PostgreSQL: Get WAL','clc93suux00004ciywh0nidxf',''),('clc93sv0w014o4ciyo5sepz2e',1,'Admin',1672319415,'192.168.64.1',2,15,32380,NULL,'PostgreSQL: Get dbstat','clc93suux00004ciywh0nidxf',''),('clc93sv0w014p4ciyf48sp84y',1,'Admin',1672319415,'192.168.64.1',2,15,32381,NULL,'Transactions: Max idle transaction time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014q4ciy2skcb3et',1,'Admin',1672319415,'192.168.64.1',2,15,32382,NULL,'Transactions: Max active transaction time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014r4ciyy2crfxb9',1,'Admin',1672319415,'192.168.64.1',2,15,32383,NULL,'Transactions: Max prepared transaction time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014s4ciyfrqb7icm',1,'Admin',1672319415,'192.168.64.1',2,15,32384,NULL,'Transactions: Max waiting transaction time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014t4ciyw4ze8czt',1,'Admin',1672319415,'192.168.64.1',2,15,32385,NULL,'WAL: Segments count','clc93suux00004ciywh0nidxf',''),('clc93sv0w014u4ciy35ovwg5i',1,'Admin',1672319415,'192.168.64.1',2,15,32386,NULL,'Bgwriter: Buffers allocated per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w014v4ciy0ay0o4pr',1,'Admin',1672319415,'192.168.64.1',2,15,32387,NULL,'Bgwriter: Buffers written directly by a backend per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w014w4ciytals2q76',1,'Admin',1672319415,'192.168.64.1',2,15,32388,NULL,'Bgwriter: Checkpoint write time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014x4ciy2yz78gb8',1,'Admin',1672319415,'192.168.64.1',2,15,32389,NULL,'Bgwriter: Buffers backend fsync per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w014y4ciybtuy55m3',1,'Admin',1672319415,'192.168.64.1',2,15,32390,NULL,'Bgwriter: Buffers written during checkpoints per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w014z4ciyaya8ymxz',1,'Admin',1672319415,'192.168.64.1',2,15,32391,NULL,'Bgwriter: Buffers written by the background writer per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01504ciy84ueeug5',1,'Admin',1672319415,'192.168.64.1',2,15,32392,NULL,'Bgwriter: Requested checkpoints per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01514ciy0aopsrbi',1,'Admin',1672319415,'192.168.64.1',2,15,32393,NULL,'Bgwriter: Scheduled checkpoints per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01524ciy466e93nu',1,'Admin',1672319415,'192.168.64.1',2,15,32394,NULL,'Bgwriter: Checkpoint sync time','clc93suux00004ciywh0nidxf',''),('clc93sv0w01534ciymon4ij73',1,'Admin',1672319415,'192.168.64.1',2,15,32395,NULL,'Bgwriter: Max written per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01544ciyg5aghc7n',1,'Admin',1672319415,'192.168.64.1',2,15,32396,NULL,'Connections sum: Waiting','clc93suux00004ciywh0nidxf',''),('clc93sv0w01554ciy3zdt62w7',1,'Admin',1672319415,'192.168.64.1',2,15,32397,NULL,'Connections sum: Active','clc93suux00004ciywh0nidxf',''),('clc93sv0w01564ciyxrhbnm6v',1,'Admin',1672319415,'192.168.64.1',2,15,32398,NULL,'Connections sum: Idle','clc93suux00004ciywh0nidxf',''),('clc93sv0w01574ciywkfjuzpo',1,'Admin',1672319415,'192.168.64.1',2,15,32399,NULL,'Connections sum: Idle in transaction','clc93suux00004ciywh0nidxf',''),('clc93sv0w01584ciyhgb2zkff',1,'Admin',1672319415,'192.168.64.1',2,15,32400,NULL,'Connections sum: Prepared','clc93suux00004ciywh0nidxf',''),('clc93sv0w01594ciy18niun80',1,'Admin',1672319415,'192.168.64.1',2,15,32401,NULL,'Connections sum: Total','clc93suux00004ciywh0nidxf',''),('clc93sv0w015a4ciyum0wa7v2',1,'Admin',1672319415,'192.168.64.1',2,15,32402,NULL,'Connections sum: Total %','clc93suux00004ciywh0nidxf',''),('clc93sv0w015b4ciyoo7soaee',1,'Admin',1672319415,'192.168.64.1',2,15,32403,NULL,'WAL: Bytes written','clc93suux00004ciywh0nidxf',''),('clc93sv0w015c4ciygxpyhu65',1,'Admin',1672319415,'192.168.64.1',2,15,33126,NULL,'MySQL: Calculated value of innodb_log_file_size','clc93suux00004ciywh0nidxf',''),('clc93sv0w015d4ciy7ckz19u5',1,'Admin',1672319415,'192.168.64.1',2,15,33127,NULL,'MySQL: Innodb buffer pool wait free','clc93suux00004ciywh0nidxf',''),('clc93sv0w015e4ciynhysg6i6',1,'Admin',1672319415,'192.168.64.1',2,15,33128,NULL,'MySQL: Innodb number open files','clc93suux00004ciywh0nidxf',''),('clc93sv0w015f4ciy6dd2dswl',1,'Admin',1672319415,'192.168.64.1',2,15,33129,NULL,'MySQL: Innodb log written','clc93suux00004ciywh0nidxf',''),('clc93sv0w015g4ciyzvby55lb',1,'Admin',1672319415,'192.168.64.1',2,15,33130,NULL,'MySQL: Open tables','clc93suux00004ciywh0nidxf',''),('clc93sv0w015h4ciyx3uwi93w',1,'Admin',1672319415,'192.168.64.1',2,15,33131,NULL,'MySQL: Open table definitions','clc93suux00004ciywh0nidxf',''),('clc93sv0w015i4ciydgckegw5',1,'Admin',1672319415,'192.168.64.1',2,15,33132,NULL,'MySQL: Binlog cache disk use','clc93suux00004ciywh0nidxf',''),('clc93sv0w015j4ciybj9lu7uu',1,'Admin',1672319415,'192.168.64.1',2,15,33140,NULL,'MySQL: Calculated value of innodb_log_file_size','clc93suux00004ciywh0nidxf',''),('clc93sv0w015k4ciy8n9poj68',1,'Admin',1672319415,'192.168.64.1',2,15,33141,NULL,'MySQL: Innodb buffer pool wait free','clc93suux00004ciywh0nidxf',''),('clc93sv0w015l4ciyi1xl08n4',1,'Admin',1672319415,'192.168.64.1',2,15,33142,NULL,'MySQL: Innodb number open files','clc93suux00004ciywh0nidxf',''),('clc93sv0w015m4ciy2xyfy382',1,'Admin',1672319415,'192.168.64.1',2,15,33143,NULL,'MySQL: Innodb log written','clc93suux00004ciywh0nidxf',''),('clc93sv0w015n4ciycsd1ut7x',1,'Admin',1672319415,'192.168.64.1',2,15,33144,NULL,'MySQL: Open tables','clc93suux00004ciywh0nidxf',''),('clc93sv0w015o4ciymvwjh25d',1,'Admin',1672319415,'192.168.64.1',2,15,33145,NULL,'MySQL: Open table definitions','clc93suux00004ciywh0nidxf',''),('clc93sv0w015p4ciywywfwlaf',1,'Admin',1672319415,'192.168.64.1',2,15,33146,NULL,'MySQL: Binlog cache disk use','clc93suux00004ciywh0nidxf',''),('clc93sv0w015q4ciy5q4u66m5',1,'Admin',1672319415,'192.168.64.1',2,15,33154,NULL,'MySQL: Calculated value of innodb_log_file_size','clc93suux00004ciywh0nidxf',''),('clc93sv0w015r4ciye0t9dder',1,'Admin',1672319415,'192.168.64.1',2,15,33155,NULL,'MySQL: Innodb buffer pool wait free','clc93suux00004ciywh0nidxf',''),('clc93sv0w015s4ciyl78cwr6l',1,'Admin',1672319415,'192.168.64.1',2,15,33156,NULL,'MySQL: Innodb number open files','clc93suux00004ciywh0nidxf',''),('clc93sv0w015t4ciydrs38hdc',1,'Admin',1672319415,'192.168.64.1',2,15,33157,NULL,'MySQL: Innodb log written','clc93suux00004ciywh0nidxf',''),('clc93sv0w015u4ciy6nkt27sn',1,'Admin',1672319415,'192.168.64.1',2,15,33158,NULL,'MySQL: Open tables','clc93suux00004ciywh0nidxf',''),('clc93sv0w015v4ciyiktwvacp',1,'Admin',1672319415,'192.168.64.1',2,15,33159,NULL,'MySQL: Open table definitions','clc93suux00004ciywh0nidxf',''),('clc93sv0w015w4ciyebqed91o',1,'Admin',1672319415,'192.168.64.1',2,15,33160,NULL,'MySQL: Binlog cache disk use','clc93suux00004ciywh0nidxf',''),('clc93sv0w015x4ciy2mpvi6c6',1,'Admin',1672319415,'192.168.64.1',2,15,33184,NULL,'Array: Sweep Pmax','clc93suux00004ciywh0nidxf',''),('clc93sv0w015y4ciytq4d6mkx',1,'Admin',1672319415,'192.168.64.1',2,15,33185,NULL,'Load: State','clc93suux00004ciywh0nidxf',''),('clc93sv0w015z4ciytagltjdt',1,'Admin',1672319415,'192.168.64.1',2,15,33186,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w01604ciyphgso0ki',1,'Admin',1672319415,'192.168.64.1',2,15,33187,NULL,'Temperature: Ambient','clc93suux00004ciywh0nidxf',''),('clc93sv0w01614ciysfpqkwku',1,'Admin',1672319415,'192.168.64.1',2,15,33188,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w01624ciyu1uomcws',1,'Admin',1672319415,'192.168.64.1',2,15,33189,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w01634ciy3qxvbi0x',1,'Admin',1672319415,'192.168.64.1',2,15,33190,NULL,'Status: Load Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w01644ciy29xk6ioa',1,'Admin',1672319415,'192.168.64.1',2,15,33191,NULL,'Status: Array Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w01654ciy6xuxvi3z',1,'Admin',1672319415,'192.168.64.1',2,15,33192,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w01664ciyglgg0x9y',1,'Admin',1672319415,'192.168.64.1',2,15,33193,NULL,'Load: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w01674ciyp1eha7jq',1,'Admin',1672319415,'192.168.64.1',2,15,33194,NULL,'Load: Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w01684ciyyc44xob7',1,'Admin',1672319415,'192.168.64.1',2,15,33195,NULL,'Array: Sweep Vmp','clc93suux00004ciywh0nidxf',''),('clc93sv0w01694ciynzdandve',1,'Admin',1672319415,'192.168.64.1',2,15,33196,NULL,'Counter: Load Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016a4ciydi0lsolp',1,'Admin',1672319415,'192.168.64.1',2,15,33197,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016b4ciysx9j52tw',1,'Admin',1672319415,'192.168.64.1',2,15,33198,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016c4ciy3shexqrr',1,'Admin',1672319415,'192.168.64.1',2,15,33199,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w016d4ciyyxvetd0m',1,'Admin',1672319415,'192.168.64.1',2,15,33200,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w016e4ciyfzahtm8t',1,'Admin',1672319415,'192.168.64.1',2,15,33201,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w016f4ciy46o3h9m5',1,'Admin',1672319415,'192.168.64.1',2,15,33202,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w016g4ciyw13h1k0w',1,'Admin',1672319415,'192.168.64.1',2,15,33203,NULL,'Array: Sweep Voc','clc93suux00004ciywh0nidxf',''),('clc93sv0w016h4ciyghau4m2p',1,'Admin',1672319415,'192.168.64.1',2,15,33204,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w016i4ciykdj2bxfy',1,'Admin',1672319415,'192.168.64.1',2,15,33207,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w016j4ciyd2rz8nid',1,'Admin',1672319415,'192.168.64.1',2,15,33208,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w016k4ciy6cq2c3uv',1,'Admin',1672319415,'192.168.64.1',2,15,33209,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w016l4ciyos9zmr3q',1,'Admin',1672319415,'192.168.64.1',2,15,33210,NULL,'Temperature: Ambient','clc93suux00004ciywh0nidxf',''),('clc93sv0w016m4ciy1n3nhrz1',1,'Admin',1672319415,'192.168.64.1',2,15,33211,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w016n4ciyngq5dfws',1,'Admin',1672319415,'192.168.64.1',2,15,33212,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w016o4ciybwdtfly4',1,'Admin',1672319415,'192.168.64.1',2,15,33213,NULL,'Status: Load Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w016p4ciymid01k5s',1,'Admin',1672319415,'192.168.64.1',2,15,33214,NULL,'Status: Array Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w016q4ciynjxbvfj6',1,'Admin',1672319415,'192.168.64.1',2,15,33215,NULL,'Load: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w016r4ciy8z8do3fx',1,'Admin',1672319415,'192.168.64.1',2,15,33216,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w016s4ciygweuovnj',1,'Admin',1672319415,'192.168.64.1',2,15,33217,NULL,'Load: State','clc93suux00004ciywh0nidxf',''),('clc93sv0w016t4ciyex4auqeq',1,'Admin',1672319415,'192.168.64.1',2,15,33218,NULL,'Load: Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w016u4ciy62syqmng',1,'Admin',1672319415,'192.168.64.1',2,15,33219,NULL,'Counter: Load Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016v4ciyyznepn8f',1,'Admin',1672319415,'192.168.64.1',2,15,33220,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016w4ciywoybp6xb',1,'Admin',1672319415,'192.168.64.1',2,15,33221,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016x4ciy6i06zkdz',1,'Admin',1672319415,'192.168.64.1',2,15,33222,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w016y4ciy277x4zds',1,'Admin',1672319415,'192.168.64.1',2,15,33223,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w016z4ciyz1id1tcq',1,'Admin',1672319415,'192.168.64.1',2,15,33224,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w01704ciy9hdhnd9j',1,'Admin',1672319415,'192.168.64.1',2,15,33227,NULL,'Array: Sweep Pmax','clc93suux00004ciywh0nidxf',''),('clc93sv0w01714ciy0ruqz4w3',1,'Admin',1672319415,'192.168.64.1',2,15,33228,NULL,'Load: State','clc93suux00004ciywh0nidxf',''),('clc93sv0w01724ciy6n7ttx62',1,'Admin',1672319415,'192.168.64.1',2,15,33229,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w01734ciy4kax7p9a',1,'Admin',1672319415,'192.168.64.1',2,15,33230,NULL,'Temperature: Ambient','clc93suux00004ciywh0nidxf',''),('clc93sv0w01744ciy42ffmcb1',1,'Admin',1672319415,'192.168.64.1',2,15,33231,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w01754ciy96wfvm2s',1,'Admin',1672319415,'192.168.64.1',2,15,33232,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w01764ciykf2p7w7j',1,'Admin',1672319415,'192.168.64.1',2,15,33233,NULL,'Status: Load Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w01774ciyvcjtz92x',1,'Admin',1672319415,'192.168.64.1',2,15,33234,NULL,'Status: Array Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w01784ciy74mfxi0e',1,'Admin',1672319415,'192.168.64.1',2,15,33235,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w01794ciyik8kgohd',1,'Admin',1672319415,'192.168.64.1',2,15,33236,NULL,'Load: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w017a4ciy42csv4m0',1,'Admin',1672319415,'192.168.64.1',2,15,33237,NULL,'Load: Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w017b4ciyl5mukmyh',1,'Admin',1672319415,'192.168.64.1',2,15,33238,NULL,'Array: Sweep Vmp','clc93suux00004ciywh0nidxf',''),('clc93sv0w017c4ciyhh5w2k9o',1,'Admin',1672319415,'192.168.64.1',2,15,33239,NULL,'Counter: Load Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w017d4ciyaettqs7s',1,'Admin',1672319415,'192.168.64.1',2,15,33240,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w017e4ciy5wt0l0zz',1,'Admin',1672319415,'192.168.64.1',2,15,33241,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w017f4ciyhbodtvmi',1,'Admin',1672319415,'192.168.64.1',2,15,33242,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w017g4ciyorfctwr9',1,'Admin',1672319415,'192.168.64.1',2,15,33243,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w017h4ciylhkneym2',1,'Admin',1672319415,'192.168.64.1',2,15,33244,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w017i4ciyggmcqqfo',1,'Admin',1672319415,'192.168.64.1',2,15,33245,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w017j4ciysfsxasog',1,'Admin',1672319415,'192.168.64.1',2,15,33246,NULL,'Array: Sweep Voc','clc93suux00004ciywh0nidxf',''),('clc93sv0w017k4ciywvq38018',1,'Admin',1672319415,'192.168.64.1',2,15,33247,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w017l4ciynt07oalt',1,'Admin',1672319415,'192.168.64.1',2,15,33250,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w017m4ciy9dhcezow',1,'Admin',1672319415,'192.168.64.1',2,15,33251,NULL,'Load: A/C Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w017n4ciyp1o5hxjn',1,'Admin',1672319415,'192.168.64.1',2,15,33252,NULL,'Load: State','clc93suux00004ciywh0nidxf',''),('clc93sv0w017o4ciycd99mq0f',1,'Admin',1672319415,'192.168.64.1',2,15,33253,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w017p4ciyhn1l9kpq',1,'Admin',1672319415,'192.168.64.1',2,15,33254,NULL,'Status: Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w017q4ciyxa0w341i',1,'Admin',1672319415,'192.168.64.1',2,15,33255,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w017r4ciyu47fnime',1,'Admin',1672319415,'192.168.64.1',2,15,33256,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w017s4ciyuixk9je3',1,'Admin',1672319415,'192.168.64.1',2,15,33259,NULL,'Array: Array Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w017t4ciytyle5oia',1,'Admin',1672319415,'192.168.64.1',2,15,33260,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w017u4ciy9qyldrqi',1,'Admin',1672319415,'192.168.64.1',2,15,33261,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w017v4ciysq6i9m9x',1,'Admin',1672319415,'192.168.64.1',2,15,33262,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w017w4ciyripito0e',1,'Admin',1672319415,'192.168.64.1',2,15,33263,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w017x4ciyxb7yfheg',1,'Admin',1672319415,'192.168.64.1',2,15,33264,NULL,'Status: Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w017y4ciyzcq5kvnw',1,'Admin',1672319415,'192.168.64.1',2,15,33265,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w017z4ciyaed53jjm',1,'Admin',1672319415,'192.168.64.1',2,15,33266,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w01804ciyw984spz9',1,'Admin',1672319415,'192.168.64.1',2,15,33267,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w01814ciyueccgglv',1,'Admin',1672319415,'192.168.64.1',2,15,33268,NULL,'Array: Sweep Pmax','clc93suux00004ciywh0nidxf',''),('clc93sv0w01824ciyisbz9mih',1,'Admin',1672319415,'192.168.64.1',2,15,33269,NULL,'Battery: Output Power','clc93suux00004ciywh0nidxf',''),('clc93sv0w01834ciyj6a0lgls',1,'Admin',1672319415,'192.168.64.1',2,15,33270,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w01844ciyoom0sk9i',1,'Admin',1672319415,'192.168.64.1',2,15,33271,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w01854ciysiql3ybj',1,'Admin',1672319415,'192.168.64.1',2,15,33272,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w01864ciyamawj3ga',1,'Admin',1672319415,'192.168.64.1',2,15,33273,NULL,'Array: Sweep Voc','clc93suux00004ciywh0nidxf',''),('clc93sv0w01874ciyn48mwtgm',1,'Admin',1672319415,'192.168.64.1',2,15,33274,NULL,'Array: Sweep Vmp','clc93suux00004ciywh0nidxf',''),('clc93sv0w01884ciylseqi3u9',1,'Admin',1672319415,'192.168.64.1',2,15,33275,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w01894ciy3gqynyv8',1,'Admin',1672319415,'192.168.64.1',2,15,33278,NULL,'Array: Array Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w018a4ciyndpsj7m3',1,'Admin',1672319415,'192.168.64.1',2,15,33279,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w018b4ciypnlbde6x',1,'Admin',1672319415,'192.168.64.1',2,15,33280,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w018c4ciyf6lbx0x8',1,'Admin',1672319415,'192.168.64.1',2,15,33281,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w018d4ciydncdyrlw',1,'Admin',1672319415,'192.168.64.1',2,15,33282,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w018e4ciyvtwxcymv',1,'Admin',1672319415,'192.168.64.1',2,15,33283,NULL,'Status: Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w018f4ciy7emvk0oc',1,'Admin',1672319415,'192.168.64.1',2,15,33284,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w018g4ciy16q8g31p',1,'Admin',1672319415,'192.168.64.1',2,15,33285,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w018h4ciya2yinlx4',1,'Admin',1672319415,'192.168.64.1',2,15,33286,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w018i4ciy1xcpz6jl',1,'Admin',1672319415,'192.168.64.1',2,15,33287,NULL,'Array: Sweep Pmax','clc93suux00004ciywh0nidxf',''),('clc93sv0w018j4ciyinsv6cdf',1,'Admin',1672319415,'192.168.64.1',2,15,33288,NULL,'Battery: Output Power','clc93suux00004ciywh0nidxf',''),('clc93sv0w018k4ciy77lw7riw',1,'Admin',1672319415,'192.168.64.1',2,15,33289,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w018l4ciy7t81b5em',1,'Admin',1672319415,'192.168.64.1',2,15,33290,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w018m4ciypei6ttzi',1,'Admin',1672319415,'192.168.64.1',2,15,33291,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w018n4ciy9hu1tvrz',1,'Admin',1672319415,'192.168.64.1',2,15,33292,NULL,'Array: Sweep Voc','clc93suux00004ciywh0nidxf',''),('clc93sv0w018o4ciyfzs7d42n',1,'Admin',1672319415,'192.168.64.1',2,15,33293,NULL,'Array: Sweep Vmp','clc93suux00004ciywh0nidxf',''),('clc93sv0w018p4ciyafep1llg',1,'Admin',1672319415,'192.168.64.1',2,15,33294,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w018q4ciycp5y7vf8',1,'Admin',1672319415,'192.168.64.1',2,15,33297,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w018r4ciylyr2o248',1,'Admin',1672319415,'192.168.64.1',2,15,33298,NULL,'Status: Control Mode','clc93suux00004ciywh0nidxf',''),('clc93sv0w018s4ciyfov7elfp',1,'Admin',1672319415,'192.168.64.1',2,15,33299,NULL,'Counter: Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w018t4ciyet29fh8z',1,'Admin',1672319415,'192.168.64.1',2,15,33300,NULL,'Counter: KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w018u4ciyvqb7chqc',1,'Admin',1672319415,'192.168.64.1',2,15,33301,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w018v4ciyz7f15i45',1,'Admin',1672319415,'192.168.64.1',2,15,33302,NULL,'Status: Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w018w4ciytb783h4s',1,'Admin',1672319415,'192.168.64.1',2,15,33303,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w018x4ciy1tu28381',1,'Admin',1672319415,'192.168.64.1',2,15,33304,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w018y4ciycvnv90ex',1,'Admin',1672319415,'192.168.64.1',2,15,33305,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w018z4ciytuq8aobg',1,'Admin',1672319415,'192.168.64.1',2,15,33348,NULL,'NetApp FAS3220: Failed disks count','clc93suux00004ciywh0nidxf',''),('clc93sv0w01904ciyl9t1erff',1,'Admin',1672319415,'192.168.64.1',2,15,33349,NULL,'NetApp FAS3220: Failed disks message','clc93suux00004ciywh0nidxf',''),('clc93sv0w01914ciy9y12f2rp',1,'Admin',1672319415,'192.168.64.1',2,15,33350,NULL,'NetApp FAS3220: Product firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01924ciyfv4ky7ma',1,'Admin',1672319415,'192.168.64.1',2,15,33351,NULL,'NetApp FAS3220: Product version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01934ciy6q01vb08',1,'Admin',1672319415,'192.168.64.1',2,15,33764,NULL,'MongoDB: Get server status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01944ciyv4yvmx93',1,'Admin',1672319415,'192.168.64.1',2,15,33765,NULL,'MongoDB: Get Replica Set status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01954ciyobgqegke',1,'Admin',1672319415,'192.168.64.1',2,15,33766,NULL,'MongoDB: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0w01964ciyq3djtoyv',1,'Admin',1672319415,'192.168.64.1',2,15,33767,NULL,'MongoDB: Get oplog stats','clc93suux00004ciywh0nidxf',''),('clc93sv0w01974ciyyd1ew14i',1,'Admin',1672319415,'192.168.64.1',2,15,33768,NULL,'MongoDB: Get collections usage stats','clc93suux00004ciywh0nidxf',''),('clc93sv0w01984ciykrvhc3ez',1,'Admin',1672319415,'192.168.64.1',2,15,33769,NULL,'MongoDB: Document: deleted, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01994ciy6iclpc7k',1,'Admin',1672319415,'192.168.64.1',2,15,33770,NULL,'MongoDB: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019a4ciynkyk388l',1,'Admin',1672319415,'192.168.64.1',2,15,33771,NULL,'MongoDB: Memory: mapped with journal','clc93suux00004ciywh0nidxf',''),('clc93sv0w019b4ciyy2r4vahj',1,'Admin',1672319415,'192.168.64.1',2,15,33772,NULL,'MongoDB: Memory: resident','clc93suux00004ciywh0nidxf',''),('clc93sv0w019c4ciycv680ith',1,'Admin',1672319415,'192.168.64.1',2,15,33773,NULL,'MongoDB: Memory: virtual','clc93suux00004ciywh0nidxf',''),('clc93sv0w019d4ciygsh1gqul',1,'Admin',1672319415,'192.168.64.1',2,15,33774,NULL,'MongoDB: Cursor: open no timeout','clc93suux00004ciywh0nidxf',''),('clc93sv0w019e4ciyshdi9aci',1,'Admin',1672319415,'192.168.64.1',2,15,33775,NULL,'MongoDB: Bytes in, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019f4ciy0stxsqt3',1,'Admin',1672319415,'192.168.64.1',2,15,33776,NULL,'MongoDB: Bytes out, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019g4ciyre51142o',1,'Admin',1672319415,'192.168.64.1',2,15,33777,NULL,'MongoDB: Operations: delete, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019h4ciy6zvnnvzs',1,'Admin',1672319415,'192.168.64.1',2,15,33778,NULL,'MongoDB: Operations: command, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019i4ciy9rhsmb2d',1,'Admin',1672319415,'192.168.64.1',2,15,33779,NULL,'MongoDB: Architecture','clc93suux00004ciywh0nidxf',''),('clc93sv0w019j4ciyetiio1k5',1,'Admin',1672319415,'192.168.64.1',2,15,33780,NULL,'MongoDB: Operations: getmore, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019k4ciyb4sqnohq',1,'Admin',1672319415,'192.168.64.1',2,15,33781,NULL,'MongoDB: Operations: insert, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019l4ciy77mvl1t1',1,'Admin',1672319415,'192.168.64.1',2,15,33782,NULL,'MongoDB: Operations: query, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019m4ciyndrkecht',1,'Admin',1672319415,'192.168.64.1',2,15,33783,NULL,'MongoDB: Operations: update, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019n4ciy4yeid9rc',1,'Admin',1672319415,'192.168.64.1',2,15,33784,NULL,'MongoDB: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0w019o4ciyvs2h4f9u',1,'Admin',1672319415,'192.168.64.1',2,15,33785,NULL,'MongoDB: Memory: mapped','clc93suux00004ciywh0nidxf',''),('clc93sv0w019p4ciy6d66yiiy',1,'Admin',1672319415,'192.168.64.1',2,15,33786,NULL,'MongoDB: Cursor: timed out, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019q4ciym3rxule3',1,'Admin',1672319415,'192.168.64.1',2,15,33787,NULL,'MongoDB: Document: inserted, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019r4ciy3vwyhfmb',1,'Admin',1672319415,'192.168.64.1',2,15,33788,NULL,'MongoDB: Asserts: user, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019s4ciytocn9r5h',1,'Admin',1672319415,'192.168.64.1',2,15,33789,NULL,'MongoDB: Document: returned, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019t4ciyh3irpwpj',1,'Admin',1672319415,'192.168.64.1',2,15,33790,NULL,'MongoDB: Document: updated, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019u4ciygodci0s2',1,'Admin',1672319415,'192.168.64.1',2,15,33791,NULL,'MongoDB: Active clients: readers','clc93suux00004ciywh0nidxf',''),('clc93sv0w019v4ciyf6qojx4s',1,'Admin',1672319415,'192.168.64.1',2,15,33792,NULL,'MongoDB: Active clients: total','clc93suux00004ciywh0nidxf',''),('clc93sv0w019w4ciyfxxhfe9t',1,'Admin',1672319415,'192.168.64.1',2,15,33793,NULL,'MongoDB: Active clients: writers','clc93suux00004ciywh0nidxf',''),('clc93sv0w019x4ciyzlytzu39',1,'Admin',1672319415,'192.168.64.1',2,15,33794,NULL,'MongoDB: Asserts: message, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019y4ciyq7imgqqj',1,'Admin',1672319415,'192.168.64.1',2,15,33795,NULL,'MongoDB: Asserts: regular, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019z4ciyd3jz1wmu',1,'Admin',1672319415,'192.168.64.1',2,15,33796,NULL,'MongoDB: Asserts: rollovers, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a04ciyy3pi2m48',1,'Admin',1672319415,'192.168.64.1',2,15,33797,NULL,'MongoDB: Asserts: warning, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a14ciyshy72589',1,'Admin',1672319415,'192.168.64.1',2,15,33798,NULL,'MongoDB: Cursor: open total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a24ciyy0ivifkf',1,'Admin',1672319415,'192.168.64.1',2,15,33799,NULL,'MongoDB: Connections, active','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a34ciyf7i2zuwl',1,'Admin',1672319415,'192.168.64.1',2,15,33800,NULL,'MongoDB: Connections, available','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a44ciy03m6tzkq',1,'Admin',1672319415,'192.168.64.1',2,15,33801,NULL,'MongoDB: Connections, current','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a54ciyv2rs689u',1,'Admin',1672319415,'192.168.64.1',2,15,33802,NULL,'MongoDB: New connections, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a64ciye7nlqava',1,'Admin',1672319415,'192.168.64.1',2,15,33803,NULL,'MongoDB: Current queue: readers','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a74ciy8n0bohb9',1,'Admin',1672319415,'192.168.64.1',2,15,33804,NULL,'MongoDB: Current queue: total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a84ciyqqc9jn81',1,'Admin',1672319415,'192.168.64.1',2,15,33805,NULL,'MongoDB: Current queue: writers','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a94ciyj2d5e6de',1,'Admin',1672319415,'192.168.64.1',2,15,33806,NULL,'MongoDB: Cursor: open pinned','clc93suux00004ciywh0nidxf',''),('clc93sv0w01aa4ciyw7qllv2a',1,'Admin',1672319415,'192.168.64.1',2,15,33807,NULL,'MongoDB: MongoDB version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ab4ciy6umjz6i8',1,'Admin',1672319415,'192.168.64.1',2,15,33886,NULL,'MongoDB cluster: Jumbo chunks','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ac4ciy6fzhwu16',1,'Admin',1672319415,'192.168.64.1',2,15,33887,NULL,'MongoDB cluster: Get server status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ad4ciy3vnn30es',1,'Admin',1672319415,'192.168.64.1',2,15,33888,NULL,'MongoDB cluster: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ae4ciyztr1jwkm',1,'Admin',1672319415,'192.168.64.1',2,15,33889,NULL,'MongoDB cluster: Get mongodb.connpool.stats','clc93suux00004ciywh0nidxf',''),('clc93sv0w01af4ciyz5qet5p1',1,'Admin',1672319415,'192.168.64.1',2,15,33891,NULL,'MongoDB cluster: Operations: command','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ag4ciypxba7q5y',1,'Admin',1672319415,'192.168.64.1',2,15,33892,NULL,'MongoDB cluster: Bytes in, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ah4ciy4emljaos',1,'Admin',1672319415,'192.168.64.1',2,15,33893,NULL,'MongoDB cluster: Bytes out, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ai4ciye3v6z9o8',1,'Admin',1672319415,'192.168.64.1',2,15,33894,NULL,'MongoDB cluster: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01aj4ciyxvre925r',1,'Admin',1672319415,'192.168.64.1',2,15,33895,NULL,'MongoDB cluster: Operations: getmore, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ak4ciyfj6b5p4n',1,'Admin',1672319415,'192.168.64.1',2,15,33896,NULL,'MongoDB cluster: Operations: delete','clc93suux00004ciywh0nidxf',''),('clc93sv0w01al4ciy7rdhdpme',1,'Admin',1672319415,'192.168.64.1',2,15,33897,NULL,'MongoDB cluster: Memory: virtual','clc93suux00004ciywh0nidxf',''),('clc93sv0w01am4ciy1rgnkpfx',1,'Admin',1672319415,'192.168.64.1',2,15,33898,NULL,'MongoDB cluster: Operations: insert, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01an4ciyhs089kkt',1,'Admin',1672319415,'192.168.64.1',2,15,33899,NULL,'MongoDB cluster: Operations: query, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ao4ciyu9ql4hy5',1,'Admin',1672319415,'192.168.64.1',2,15,33900,NULL,'MongoDB cluster: Operations: update, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ap4ciyk032daj7',1,'Admin',1672319415,'192.168.64.1',2,15,33901,NULL,'MongoDB cluster: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0w01aq4ciylh17ascc',1,'Admin',1672319415,'192.168.64.1',2,15,33902,NULL,'MongoDB cluster: Cursor: open no timeout','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ar4ciymx9htbnj',1,'Admin',1672319415,'192.168.64.1',2,15,33903,NULL,'MongoDB cluster: Architecture','clc93suux00004ciywh0nidxf',''),('clc93sv0w01as4ciybe1x7h4m',1,'Admin',1672319415,'192.168.64.1',2,15,33904,NULL,'MongoDB cluster: Memory: resident','clc93suux00004ciywh0nidxf',''),('clc93sv0w01at4ciyv6bz7fu3',1,'Admin',1672319415,'192.168.64.1',2,15,33905,NULL,'MongoDB cluster: Connections, active','clc93suux00004ciywh0nidxf',''),('clc93sv0w01au4ciyiphxkrez',1,'Admin',1672319415,'192.168.64.1',2,15,33906,NULL,'MongoDB cluster: Last seen configserver','clc93suux00004ciywh0nidxf',''),('clc93sv0w01av4ciylj6nsx2b',1,'Admin',1672319415,'192.168.64.1',2,15,33907,NULL,'MongoDB cluster: Cursor: timed out, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01aw4ciyj7a3edhh',1,'Admin',1672319415,'192.168.64.1',2,15,33908,NULL,'MongoDB cluster: Cursor: open total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ax4ciy0q3sk1on',1,'Admin',1672319415,'192.168.64.1',2,15,33909,NULL,'MongoDB cluster: Cursor: open pinned','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ay4ciydelzrsao',1,'Admin',1672319415,'192.168.64.1',2,15,33910,NULL,'MongoDB cluster: Connection pool: scoped','clc93suux00004ciywh0nidxf',''),('clc93sv0w01az4ciyql6q9u3j',1,'Admin',1672319415,'192.168.64.1',2,15,33911,NULL,'MongoDB cluster: Connection pool: refreshing','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b04ciy79gg5wy3',1,'Admin',1672319415,'192.168.64.1',2,15,33912,NULL,'MongoDB cluster: Connection pool: in use','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b14ciyua4ba9nx',1,'Admin',1672319415,'192.168.64.1',2,15,33913,NULL,'MongoDB cluster: Connection pool: created, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b24ciyricuiq96',1,'Admin',1672319415,'192.168.64.1',2,15,33914,NULL,'MongoDB cluster: Connection pool: client connections','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b34ciyvvrql7qu',1,'Admin',1672319415,'192.168.64.1',2,15,33915,NULL,'MongoDB cluster: Connection pool: available','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b44ciyxtnx1uj4',1,'Admin',1672319415,'192.168.64.1',2,15,33916,NULL,'MongoDB cluster: New connections, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b54ciy6sz1r7jf',1,'Admin',1672319415,'192.168.64.1',2,15,33917,NULL,'MongoDB cluster: Connections, current','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b64ciy7m25djlp',1,'Admin',1672319415,'192.168.64.1',2,15,33918,NULL,'MongoDB cluster: Connections, available','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b74ciy2xz9sdgv',1,'Admin',1672319415,'192.168.64.1',2,15,33919,NULL,'MongoDB cluster: Mongos version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b84ciyfcbxvqfv',1,'Admin',1672319415,'192.168.64.1',2,15,34226,NULL,'Get chassis','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b94ciy3itz24gv',1,'Admin',1672319415,'192.168.64.1',2,15,34227,NULL,'Cluster latency, read','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ba4ciygjuvd6x6',1,'Admin',1672319415,'192.168.64.1',2,15,34228,NULL,'Get SVMs','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bb4ciy4859gq4w',1,'Admin',1672319415,'192.168.64.1',2,15,34229,NULL,'Get FC ports','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bc4ciy4pwmwlyr',1,'Admin',1672319415,'192.168.64.1',2,15,34230,NULL,'Get ethernet ports','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bd4ciynw8lmh2v',1,'Admin',1672319415,'192.168.64.1',2,15,34231,NULL,'Get nodes','clc93suux00004ciywh0nidxf',''),('clc93sv0w01be4ciyy8b27rmn',1,'Admin',1672319415,'192.168.64.1',2,15,34232,NULL,'Get LUNs','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bf4ciys8pzqbop',1,'Admin',1672319415,'192.168.64.1',2,15,34233,NULL,'Get FRUs','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bg4ciy6f9jc2xs',1,'Admin',1672319415,'192.168.64.1',2,15,34234,NULL,'Get disks','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bh4ciyuy22h0mz',1,'Admin',1672319415,'192.168.64.1',2,15,34235,NULL,'Get cluster','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bi4ciyktzv63u4',1,'Admin',1672319415,'192.168.64.1',2,15,34236,NULL,'Cluster latency, write','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bj4ciye3g78nm6',1,'Admin',1672319415,'192.168.64.1',2,15,34237,NULL,'Cluster latency, total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bk4ciyium09gnw',1,'Admin',1672319415,'192.168.64.1',2,15,34238,NULL,'Get volumes','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bl4ciyw0ur1ow3',1,'Admin',1672319415,'192.168.64.1',2,15,34239,NULL,'Cluster latency, other','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bm4ciy4eai8ood',1,'Admin',1672319415,'192.168.64.1',2,15,34240,NULL,'Cluster status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bn4ciyxiokkl93',1,'Admin',1672319415,'192.168.64.1',2,15,34241,NULL,'Cluster location','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bo4ciyvcwyshym',1,'Admin',1672319415,'192.168.64.1',2,15,34242,NULL,'Cluster name','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bp4ciypt1g9mz5',1,'Admin',1672319415,'192.168.64.1',2,15,34243,NULL,'Cluster IOPS, other rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bq4ciymfmezrj0',1,'Admin',1672319415,'192.168.64.1',2,15,34244,NULL,'Cluster IOPS, read rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01br4ciy4sn9pllw',1,'Admin',1672319415,'192.168.64.1',2,15,34245,NULL,'Cluster IOPS, total rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bs4ciyjkis09wv',1,'Admin',1672319415,'192.168.64.1',2,15,34246,NULL,'Cluster IOPS, write rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bt4ciyfgjs9cv6',1,'Admin',1672319415,'192.168.64.1',2,15,34247,NULL,'Cluster IOPS raw, other','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bu4ciyemw0iyiy',1,'Admin',1672319415,'192.168.64.1',2,15,34248,NULL,'Cluster software version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bv4ciytfyqd28z',1,'Admin',1672319415,'192.168.64.1',2,15,34249,NULL,'Cluster throughput, write rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bw4ciy0vlz6zvr',1,'Admin',1672319415,'192.168.64.1',2,15,34250,NULL,'Cluster IOPS raw, write','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bx4ciyo23tyohb',1,'Admin',1672319415,'192.168.64.1',2,15,34251,NULL,'Cluster throughput, total rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01by4ciykfhujchd',1,'Admin',1672319415,'192.168.64.1',2,15,34252,NULL,'Cluster throughput, read rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bz4ciylhdomjrp',1,'Admin',1672319415,'192.168.64.1',2,15,34253,NULL,'Cluster throughput, other rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c04ciy7xh15saa',1,'Admin',1672319415,'192.168.64.1',2,15,34254,NULL,'Cluster latency raw, write','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c14ciy9j6c5km8',1,'Admin',1672319415,'192.168.64.1',2,15,34255,NULL,'Cluster latency raw, total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c24ciyvztrfe1w',1,'Admin',1672319415,'192.168.64.1',2,15,34256,NULL,'Cluster IOPS raw, read','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c34ciyjxb41698',1,'Admin',1672319415,'192.168.64.1',2,15,34257,NULL,'Cluster latency raw, other','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c44ciy0lq5ag8b',1,'Admin',1672319415,'192.168.64.1',2,15,34258,NULL,'Cluster IOPS raw, total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c54ciycdxo7map',1,'Admin',1672319415,'192.168.64.1',2,15,34259,NULL,'Cluster latency raw, read','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c64ciymrsoevq3',1,'Admin',1672319415,'192.168.64.1',2,15,34321,NULL,'MongoDB cluster: Configserver heartbeat','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c74ciy7twond5p',1,'Admin',1672319415,'192.168.64.1',2,15,34322,NULL,'MSSQL: Get job status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c84ciyjeu837x2',1,'Admin',1672319415,'192.168.64.1',2,15,34323,NULL,'MSSQL: Get last backup','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c94ciyhmm0e1yu',1,'Admin',1672319415,'192.168.64.1',2,15,35153,NULL,'Nginx: Get connections','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ca4ciy0dcdzqas',1,'Admin',1672319415,'192.168.64.1',2,15,35154,NULL,'Nginx: Get info','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cb4ciyzokaif5q',1,'Admin',1672319415,'192.168.64.1',2,15,35155,NULL,'Nginx: Get Stream server zones','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cc4ciy3bis7ga7',1,'Admin',1672319415,'192.168.64.1',2,15,35156,NULL,'Nginx: Get SSL','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cd4ciy8gz4deek',1,'Admin',1672319415,'192.168.64.1',2,15,35157,NULL,'Nginx: Get resolvers','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ce4ciyk4jigfua',1,'Admin',1672319415,'192.168.64.1',2,15,35158,NULL,'Nginx: Get requests','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cf4ciy2i68hvrw',1,'Admin',1672319415,'192.168.64.1',2,15,35159,NULL,'Nginx: Get Stream upstreams','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cg4ciyvfj32pxv',1,'Admin',1672319415,'192.168.64.1',2,15,35160,NULL,'Nginx: Get HTTP upstreams','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ch4ciy5cpq2kmm',1,'Admin',1672319415,'192.168.64.1',2,15,35161,NULL,'Nginx: Get HTTP location zones','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ci4ciyiqhi01r4',1,'Admin',1672319415,'192.168.64.1',2,15,35162,NULL,'Nginx: Get HTTP zones','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cj4ciyczz46q10',1,'Admin',1672319415,'192.168.64.1',2,15,35163,NULL,'Nginx: Connections idle','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ck4ciy8weli4bm',1,'Admin',1672319415,'192.168.64.1',2,15,35164,NULL,'Nginx: Connections active','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cl4ciyeomorcwd',1,'Admin',1672319415,'192.168.64.1',2,15,35165,NULL,'Nginx: SSL session reuses, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cm4ciyzzp15t0i',1,'Admin',1672319415,'192.168.64.1',2,15,35166,NULL,'Nginx: SSL handshakes failed, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cn4ciyof6p2yjv',1,'Admin',1672319415,'192.168.64.1',2,15,35167,NULL,'Nginx: SSL handshakes, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0x01co4ciy27u8ysnt',1,'Admin',1672319415,'192.168.64.1',2,15,35168,NULL,'Nginx: Connections dropped','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cp4ciy3vbmunti',1,'Admin',1672319415,'192.168.64.1',2,15,35169,NULL,'Nginx: Requests current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cq4ciy0391el8x',1,'Admin',1672319415,'192.168.64.1',2,15,35170,NULL,'Nginx: Requests total, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cr4ciy0ja0jg80',1,'Admin',1672319415,'192.168.64.1',2,15,35171,NULL,'Nginx: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cs4ciy2653l482',1,'Admin',1672319415,'192.168.64.1',2,15,35172,NULL,'Nginx: Connections accepted, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ct4ciy0a6ylaj4',1,'Admin',1672319415,'192.168.64.1',2,15,35173,NULL,'Nginx: Generation','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cu4ciy8s0ecvoi',1,'Admin',1672319415,'192.168.64.1',2,15,35174,NULL,'Nginx: Get info error','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cv4ciykgvd1q3p',1,'Admin',1672319415,'192.168.64.1',2,15,35175,NULL,'Nginx: Address','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cw4ciy1vtlhne5',1,'Admin',1672319415,'192.168.64.1',2,15,35176,NULL,'Nginx: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cx4ciysiwch9pz',1,'Admin',1672319415,'192.168.64.1',2,15,38575,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cy4ciyp3ewq6oi',1,'Admin',1672319415,'192.168.64.1',2,15,38576,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cz4ciyultwguel',1,'Admin',1672319415,'192.168.64.1',2,15,38577,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d04ciyiyd1r9vv',1,'Admin',1672319415,'192.168.64.1',2,15,38578,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d14ciydilci9kp',1,'Admin',1672319415,'192.168.64.1',2,15,38579,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d24ciytdjd28gm',1,'Admin',1672319415,'192.168.64.1',2,15,38580,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d34ciy3igkymfm',1,'Admin',1672319415,'192.168.64.1',2,15,38581,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d44ciyg6n1z6g8',1,'Admin',1672319415,'192.168.64.1',2,15,38629,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d54ciymx85s0d6',1,'Admin',1672319415,'192.168.64.1',2,15,38630,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d64ciy1nleokf1',1,'Admin',1672319415,'192.168.64.1',2,15,38631,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d74ciymw7hrl6i',1,'Admin',1672319415,'192.168.64.1',2,15,38632,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d84ciyb7lcehgh',1,'Admin',1672319415,'192.168.64.1',2,15,38633,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d94ciyv4yei1ik',1,'Admin',1672319415,'192.168.64.1',2,15,38634,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01da4ciyrf11qbss',1,'Admin',1672319415,'192.168.64.1',2,15,38635,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01db4ciyei21ec2f',1,'Admin',1672319415,'192.168.64.1',2,15,38683,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dc4ciytilyb9au',1,'Admin',1672319415,'192.168.64.1',2,15,38684,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dd4ciyqu0zoo3r',1,'Admin',1672319415,'192.168.64.1',2,15,38685,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01de4ciydv0oi9b6',1,'Admin',1672319415,'192.168.64.1',2,15,38686,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01df4ciyutep2xvt',1,'Admin',1672319415,'192.168.64.1',2,15,38687,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dg4ciyxhyhoenh',1,'Admin',1672319415,'192.168.64.1',2,15,38688,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dh4ciyqqh6z5av',1,'Admin',1672319415,'192.168.64.1',2,15,38689,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01di4ciy4ccnr2am',1,'Admin',1672319415,'192.168.64.1',2,15,38737,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dj4ciyvqaxh38c',1,'Admin',1672319415,'192.168.64.1',2,15,38738,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dk4ciyzmm2fars',1,'Admin',1672319415,'192.168.64.1',2,15,38739,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dl4ciybn0y2vst',1,'Admin',1672319415,'192.168.64.1',2,15,38740,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dm4ciy5ieo2psf',1,'Admin',1672319415,'192.168.64.1',2,15,38741,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dn4ciy2m92tmbl',1,'Admin',1672319415,'192.168.64.1',2,15,38742,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01do4ciyhn1487wk',1,'Admin',1672319415,'192.168.64.1',2,15,38743,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dp4ciy4v0qb96h',1,'Admin',1672319415,'192.168.64.1',2,15,38791,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dq4ciytt6dzpk4',1,'Admin',1672319415,'192.168.64.1',2,15,38792,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dr4ciy6ngysqaj',1,'Admin',1672319415,'192.168.64.1',2,15,38793,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ds4ciy3wxickj2',1,'Admin',1672319415,'192.168.64.1',2,15,38794,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dt4ciykowsoel8',1,'Admin',1672319415,'192.168.64.1',2,15,38795,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01du4ciyl7ol0ed5',1,'Admin',1672319415,'192.168.64.1',2,15,38796,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dv4ciyeayhfc2i',1,'Admin',1672319415,'192.168.64.1',2,15,38797,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dw4ciyecnpdzqi',1,'Admin',1672319415,'192.168.64.1',2,15,38845,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dx4ciyf2emratb',1,'Admin',1672319415,'192.168.64.1',2,15,38846,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dy4ciy70wpdmwg',1,'Admin',1672319415,'192.168.64.1',2,15,38847,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dz4ciyggj84gtt',1,'Admin',1672319415,'192.168.64.1',2,15,38848,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e04ciym268u66f',1,'Admin',1672319415,'192.168.64.1',2,15,38849,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e14ciy563f2mjl',1,'Admin',1672319415,'192.168.64.1',2,15,38850,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e24ciyqfodb8cw',1,'Admin',1672319415,'192.168.64.1',2,15,38851,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e34ciyt2d20k6m',1,'Admin',1672319415,'192.168.64.1',2,15,38899,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e44ciyikswxjfo',1,'Admin',1672319415,'192.168.64.1',2,15,38900,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e54ciyhorbfer9',1,'Admin',1672319415,'192.168.64.1',2,15,38901,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e64ciyizn74qc4',1,'Admin',1672319415,'192.168.64.1',2,15,38902,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e74ciyxgxitbpe',1,'Admin',1672319415,'192.168.64.1',2,15,38903,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e84ciyguk57k4f',1,'Admin',1672319415,'192.168.64.1',2,15,38904,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e94ciy1dmak9qv',1,'Admin',1672319415,'192.168.64.1',2,15,38905,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ea4ciys5hatlw6',1,'Admin',1672319415,'192.168.64.1',2,15,38953,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eb4ciyw04m9gmp',1,'Admin',1672319415,'192.168.64.1',2,15,38954,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ec4ciyjg0tmhjv',1,'Admin',1672319415,'192.168.64.1',2,15,38955,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ed4ciypsgnz9xo',1,'Admin',1672319415,'192.168.64.1',2,15,38956,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ee4ciylyl1zh2v',1,'Admin',1672319415,'192.168.64.1',2,15,38957,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ef4ciysau2ydpz',1,'Admin',1672319415,'192.168.64.1',2,15,38958,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eg4ciys55r4rat',1,'Admin',1672319415,'192.168.64.1',2,15,38959,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eh4ciyrudwbl6w',1,'Admin',1672319415,'192.168.64.1',2,15,39007,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ei4ciy751obdgl',1,'Admin',1672319415,'192.168.64.1',2,15,39008,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ej4ciydeabrgos',1,'Admin',1672319415,'192.168.64.1',2,15,39009,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ek4ciytxh750rk',1,'Admin',1672319415,'192.168.64.1',2,15,39010,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01el4ciy3hd60kw3',1,'Admin',1672319415,'192.168.64.1',2,15,39011,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01em4ciy6die2jll',1,'Admin',1672319415,'192.168.64.1',2,15,39012,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01en4ciy6vhcqd50',1,'Admin',1672319415,'192.168.64.1',2,15,39013,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eo4ciyi3d8oyie',1,'Admin',1672319415,'192.168.64.1',2,15,39061,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ep4ciyubum4x2f',1,'Admin',1672319415,'192.168.64.1',2,15,39062,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eq4ciymtidljj1',1,'Admin',1672319415,'192.168.64.1',2,15,39063,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01er4ciygxv6ftdf',1,'Admin',1672319415,'192.168.64.1',2,15,39064,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01es4ciygy5np9kz',1,'Admin',1672319415,'192.168.64.1',2,15,39065,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01et4ciy0zz1se7z',1,'Admin',1672319415,'192.168.64.1',2,15,39066,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eu4ciy8x7dff6f',1,'Admin',1672319415,'192.168.64.1',2,15,39067,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ev4ciyv8r8xj16',1,'Admin',1672319415,'192.168.64.1',2,15,39115,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ew4ciyp0oqz2wo',1,'Admin',1672319415,'192.168.64.1',2,15,39116,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ex4ciyxbrxjq3j',1,'Admin',1672319415,'192.168.64.1',2,15,39117,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ey4ciyg25pfss8',1,'Admin',1672319415,'192.168.64.1',2,15,39118,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ez4ciyapwoah0n',1,'Admin',1672319415,'192.168.64.1',2,15,39119,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f04ciy0ah435ev',1,'Admin',1672319415,'192.168.64.1',2,15,39120,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f14ciybmz8qul9',1,'Admin',1672319415,'192.168.64.1',2,15,39121,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f24ciyo1t4mwvd',1,'Admin',1672319415,'192.168.64.1',2,15,39169,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f34ciyqznpem1a',1,'Admin',1672319415,'192.168.64.1',2,15,39170,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f44ciy7t6lit96',1,'Admin',1672319415,'192.168.64.1',2,15,39171,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f54ciyqs82v90x',1,'Admin',1672319415,'192.168.64.1',2,15,39172,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f64ciy11cisjod',1,'Admin',1672319415,'192.168.64.1',2,15,39173,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f74ciy8kg2a645',1,'Admin',1672319415,'192.168.64.1',2,15,39174,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f84ciyaxgxi8r3',1,'Admin',1672319415,'192.168.64.1',2,15,39175,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f94ciylsg5utcf',1,'Admin',1672319415,'192.168.64.1',2,15,39223,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fa4ciyda0y1huy',1,'Admin',1672319415,'192.168.64.1',2,15,39224,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fb4ciyswfdz8bq',1,'Admin',1672319415,'192.168.64.1',2,15,39225,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fc4ciyjyqazn95',1,'Admin',1672319415,'192.168.64.1',2,15,39226,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fd4ciywf2ym3z2',1,'Admin',1672319415,'192.168.64.1',2,15,39227,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fe4ciyjr216zah',1,'Admin',1672319415,'192.168.64.1',2,15,39228,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ff4ciyx9kbijz3',1,'Admin',1672319415,'192.168.64.1',2,15,39229,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fg4ciyx767jq9l',1,'Admin',1672319415,'192.168.64.1',2,15,39277,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fh4ciyw7mzur7m',1,'Admin',1672319415,'192.168.64.1',2,15,39278,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fi4ciyyd3uqf5h',1,'Admin',1672319415,'192.168.64.1',2,15,39279,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fj4ciy9s1mwz8l',1,'Admin',1672319415,'192.168.64.1',2,15,39280,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fk4ciydezm5pmi',1,'Admin',1672319415,'192.168.64.1',2,15,39281,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fl4ciy2y6bxtuu',1,'Admin',1672319415,'192.168.64.1',2,15,39282,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fm4ciyxnkf5xi9',1,'Admin',1672319415,'192.168.64.1',2,15,39283,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fn4ciy5yl4uodt',1,'Admin',1672319415,'192.168.64.1',2,15,39601,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fo4ciybuup1p4u',1,'Admin',1672319415,'192.168.64.1',2,15,39602,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fp4ciyexzyaqfz',1,'Admin',1672319415,'192.168.64.1',2,15,39603,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fq4ciyvbycpv9r',1,'Admin',1672319415,'192.168.64.1',2,15,39604,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fr4ciygep09dww',1,'Admin',1672319415,'192.168.64.1',2,15,39605,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fs4ciywdts8kwl',1,'Admin',1672319415,'192.168.64.1',2,15,39606,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ft4ciyp2pyjw5g',1,'Admin',1672319415,'192.168.64.1',2,15,39607,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fu4ciyvaz6nk1w',1,'Admin',1672319415,'192.168.64.1',2,15,39655,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fv4ciyd7tzbsus',1,'Admin',1672319415,'192.168.64.1',2,15,39656,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fw4ciy8jaqee3w',1,'Admin',1672319415,'192.168.64.1',2,15,39657,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fx4ciy2ykjlz0o',1,'Admin',1672319415,'192.168.64.1',2,15,39658,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fy4ciy0o0hwj4r',1,'Admin',1672319415,'192.168.64.1',2,15,39659,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fz4ciyqjs226nw',1,'Admin',1672319415,'192.168.64.1',2,15,39660,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g04ciyumlyazhr',1,'Admin',1672319415,'192.168.64.1',2,15,39661,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g14ciypqhj09p9',1,'Admin',1672319415,'192.168.64.1',2,15,39709,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g24ciyy7fjfy0f',1,'Admin',1672319415,'192.168.64.1',2,15,39710,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g34ciyul0cc7s2',1,'Admin',1672319415,'192.168.64.1',2,15,39711,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g44ciyptzb4cpl',1,'Admin',1672319415,'192.168.64.1',2,15,39712,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g54ciytxcahdzw',1,'Admin',1672319415,'192.168.64.1',2,15,39713,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g64ciyn1zgvqov',1,'Admin',1672319415,'192.168.64.1',2,15,39714,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g74ciyxbrsyfxc',1,'Admin',1672319415,'192.168.64.1',2,15,39715,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g84ciyoikf10lf',1,'Admin',1672319415,'192.168.64.1',2,15,40117,NULL,'PFSense: Normalized packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g94ciy7kjr8pob',1,'Admin',1672319415,'192.168.64.1',2,15,40119,NULL,'PFSense: DHCP server status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ga4ciys3vglcw7',1,'Admin',1672319415,'192.168.64.1',2,15,40120,NULL,'PFSense: DNS server status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gb4ciyb5l5qxkm',1,'Admin',1672319415,'192.168.64.1',2,15,40121,NULL,'PFSense: State of nginx process','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gc4ciyax29ihlo',1,'Admin',1672319415,'192.168.64.1',2,15,40122,NULL,'PFSense: Packets with bad offset','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gd4ciyzj3vq3e5',1,'Admin',1672319415,'192.168.64.1',2,15,40123,NULL,'PFSense: Fragmented packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ge4ciypokev143',1,'Admin',1672319415,'192.168.64.1',2,15,40124,NULL,'PFSense: Packets matched a filter rule','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gf4ciycwfxepmx',1,'Admin',1672319415,'192.168.64.1',2,15,40125,NULL,'PFSense: Packets dropped due to memory limitation','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gg4ciypo3swb9d',1,'Admin',1672319415,'192.168.64.1',2,15,40126,NULL,'PFSense: Short packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gh4ciycrw4bw52',1,'Admin',1672319415,'192.168.64.1',2,15,40128,NULL,'PFSense: Packet filter running status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gi4ciyw72rnjkr',1,'Admin',1672319415,'192.168.64.1',2,15,40129,NULL,'PFSense: Firewall rules count','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gj4ciy97pc5pl7',1,'Admin',1672319415,'192.168.64.1',2,15,40130,NULL,'PFSense: Source tracking table current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gk4ciy9r4sblj4',1,'Admin',1672319415,'192.168.64.1',2,15,40131,NULL,'PFSense: Source tracking table limit','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gl4ciylbkvqdnw',1,'Admin',1672319415,'192.168.64.1',2,15,40132,NULL,'PFSense: Source tracking table utilization in %','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gm4ciybh42guzg',1,'Admin',1672319415,'192.168.64.1',2,15,40133,NULL,'PFSense: States table current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gn4ciy845rm9bp',1,'Admin',1672319415,'192.168.64.1',2,15,40134,NULL,'PFSense: States table limit','clc93suux00004ciywh0nidxf',''),('clc93sv0x01go4ciyp6u1ucge',1,'Admin',1672319415,'192.168.64.1',2,15,40135,NULL,'PFSense: States table utilization in %','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gp4ciyi2ql65hm',1,'Admin',1672319415,'192.168.64.1',2,15,40136,NULL,'PFSense: SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gq4ciyryqor3jt',1,'Admin',1672319415,'192.168.64.1',2,15,40798,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gr4ciydmpl3aj6',1,'Admin',1672319415,'192.168.64.1',2,15,40799,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gs4ciy9ig73tvd',1,'Admin',1672319415,'192.168.64.1',2,15,40800,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gt4ciymkmg9dx7',1,'Admin',1672319415,'192.168.64.1',2,15,40801,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gu4ciydmgdp5yc',1,'Admin',1672319415,'192.168.64.1',2,15,40802,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gv4ciygqo0qpvf',1,'Admin',1672319415,'192.168.64.1',2,15,40803,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gw4ciyj9t4xq3y',1,'Admin',1672319415,'192.168.64.1',2,15,40804,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gx4ciy0sveny90',1,'Admin',1672319415,'192.168.64.1',2,15,40805,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gy4ciyzo4zow3n',1,'Admin',1672319415,'192.168.64.1',2,15,40806,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gz4ciymobyt0ff',1,'Admin',1672319415,'192.168.64.1',2,15,40807,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h04ciyl9rgebgs',1,'Admin',1672319415,'192.168.64.1',2,15,40808,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h14ciyg9tb7hqf',1,'Admin',1672319415,'192.168.64.1',2,15,41606,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h24ciyvtcz65k8',1,'Admin',1672319415,'192.168.64.1',2,15,41607,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h34ciydvg9x8hl',1,'Admin',1672319415,'192.168.64.1',2,15,41608,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h44ciyy7s6s73m',1,'Admin',1672319415,'192.168.64.1',2,15,41609,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h54ciymf5tfx8s',1,'Admin',1672319415,'192.168.64.1',2,15,41610,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h64ciygqlciwdd',1,'Admin',1672319415,'192.168.64.1',2,15,41611,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h74ciyn5m5p3ln',1,'Admin',1672319415,'192.168.64.1',2,15,41612,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h84ciydazxtaxr',1,'Admin',1672319415,'192.168.64.1',2,15,41613,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h94ciyd3fi2oum',1,'Admin',1672319415,'192.168.64.1',2,15,41614,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ha4ciypamm1pl3',1,'Admin',1672319415,'192.168.64.1',2,15,41615,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hb4ciyu9eq6ioy',1,'Admin',1672319415,'192.168.64.1',2,15,41616,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hc4ciyf8gpuyjv',1,'Admin',1672319415,'192.168.64.1',2,15,41627,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hd4ciynmrx5x0y',1,'Admin',1672319415,'192.168.64.1',2,15,41628,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01he4ciy5izoiv5i',1,'Admin',1672319415,'192.168.64.1',2,15,41629,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hf4ciybctksnit',1,'Admin',1672319415,'192.168.64.1',2,15,41630,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hg4ciy9hrk09zq',1,'Admin',1672319415,'192.168.64.1',2,15,41631,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hh4ciyngusr737',1,'Admin',1672319415,'192.168.64.1',2,15,41632,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hi4ciyi9708t1m',1,'Admin',1672319415,'192.168.64.1',2,15,41633,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hj4ciy3ggj01v9',1,'Admin',1672319415,'192.168.64.1',2,15,41634,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hk4ciyh5hdy7xe',1,'Admin',1672319415,'192.168.64.1',2,15,41635,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hl4ciyedt8yd6d',1,'Admin',1672319415,'192.168.64.1',2,15,41636,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hm4ciyjsxdaxz5',1,'Admin',1672319415,'192.168.64.1',2,15,41637,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hn4ciycvfgskgb',1,'Admin',1672319415,'192.168.64.1',2,15,41648,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ho4ciy3whszc76',1,'Admin',1672319415,'192.168.64.1',2,15,41649,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hp4ciymgzzlj9e',1,'Admin',1672319415,'192.168.64.1',2,15,41650,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hq4ciyvv44doz4',1,'Admin',1672319415,'192.168.64.1',2,15,41651,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hr4ciywa7ie7zu',1,'Admin',1672319415,'192.168.64.1',2,15,41652,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hs4ciy6jgaxgln',1,'Admin',1672319415,'192.168.64.1',2,15,41653,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ht4ciy1116tx42',1,'Admin',1672319415,'192.168.64.1',2,15,41654,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hu4ciyor6n6agy',1,'Admin',1672319415,'192.168.64.1',2,15,41655,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hv4ciy9hm790oe',1,'Admin',1672319415,'192.168.64.1',2,15,41656,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hw4ciyafskog0s',1,'Admin',1672319415,'192.168.64.1',2,15,41657,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hx4ciy7sc9bwnk',1,'Admin',1672319415,'192.168.64.1',2,15,41658,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hy4ciyyjwgdbhy',1,'Admin',1672319415,'192.168.64.1',2,15,41669,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hz4ciywv459nzs',1,'Admin',1672319415,'192.168.64.1',2,15,41670,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i04ciykfuhgov1',1,'Admin',1672319415,'192.168.64.1',2,15,41671,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i14ciyapglwbvg',1,'Admin',1672319415,'192.168.64.1',2,15,41672,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i24ciyyzxsnthz',1,'Admin',1672319415,'192.168.64.1',2,15,41673,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i34ciyn5keyluw',1,'Admin',1672319415,'192.168.64.1',2,15,41674,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i44ciy7tfp7l5x',1,'Admin',1672319415,'192.168.64.1',2,15,41675,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i54ciyyn9tgpyp',1,'Admin',1672319415,'192.168.64.1',2,15,41676,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i64ciypglslehw',1,'Admin',1672319415,'192.168.64.1',2,15,41677,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i74ciyggrsj21c',1,'Admin',1672319415,'192.168.64.1',2,15,41678,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i84ciyx974tpz1',1,'Admin',1672319415,'192.168.64.1',2,15,41679,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i94ciyx1fodzmz',1,'Admin',1672319415,'192.168.64.1',2,15,41690,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ia4ciyep8ty6k4',1,'Admin',1672319415,'192.168.64.1',2,15,41691,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ib4ciyf03lgv5z',1,'Admin',1672319415,'192.168.64.1',2,15,41692,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ic4ciy5t3l4vpt',1,'Admin',1672319415,'192.168.64.1',2,15,41693,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01id4ciyslwnikf1',1,'Admin',1672319415,'192.168.64.1',2,15,41694,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ie4ciyhnwezbwm',1,'Admin',1672319415,'192.168.64.1',2,15,41695,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01if4ciy3sdtryuu',1,'Admin',1672319415,'192.168.64.1',2,15,41696,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ig4ciysaha43oa',1,'Admin',1672319415,'192.168.64.1',2,15,41697,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ih4ciy5petls8c',1,'Admin',1672319415,'192.168.64.1',2,15,41698,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ii4ciyh1a64uap',1,'Admin',1672319415,'192.168.64.1',2,15,41699,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ij4ciy3g87wf83',1,'Admin',1672319415,'192.168.64.1',2,15,41700,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ik4ciyuld9z27v',1,'Admin',1672319415,'192.168.64.1',2,15,41711,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01il4ciyhm768e03',1,'Admin',1672319415,'192.168.64.1',2,15,41712,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01im4ciys8rponny',1,'Admin',1672319415,'192.168.64.1',2,15,41713,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01in4ciyxmfieo7j',1,'Admin',1672319415,'192.168.64.1',2,15,41714,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01io4ciygljjvl58',1,'Admin',1672319415,'192.168.64.1',2,15,41715,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ip4ciy2usds8kw',1,'Admin',1672319415,'192.168.64.1',2,15,41716,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iq4ciyii6yg2pl',1,'Admin',1672319415,'192.168.64.1',2,15,41717,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ir4ciyr28nbtvn',1,'Admin',1672319415,'192.168.64.1',2,15,41718,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01is4ciyeem3l1qm',1,'Admin',1672319415,'192.168.64.1',2,15,41719,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01it4ciyib92gpp4',1,'Admin',1672319415,'192.168.64.1',2,15,41720,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iu4ciyapb7gg77',1,'Admin',1672319415,'192.168.64.1',2,15,41721,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iv4ciy61b39fwv',1,'Admin',1672319415,'192.168.64.1',2,15,41732,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iw4ciyx97200lj',1,'Admin',1672319415,'192.168.64.1',2,15,41733,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ix4ciy91e35p60',1,'Admin',1672319415,'192.168.64.1',2,15,41734,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iy4ciyerbj259f',1,'Admin',1672319415,'192.168.64.1',2,15,41735,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iz4ciyztgril1d',1,'Admin',1672319415,'192.168.64.1',2,15,41736,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j04ciyqyjamj1w',1,'Admin',1672319415,'192.168.64.1',2,15,41737,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j14ciyk1y0sjfo',1,'Admin',1672319415,'192.168.64.1',2,15,41738,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j24ciy5xa6osu2',1,'Admin',1672319415,'192.168.64.1',2,15,41739,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j34ciysz84fvj7',1,'Admin',1672319415,'192.168.64.1',2,15,41740,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j44ciypte8ul59',1,'Admin',1672319415,'192.168.64.1',2,15,41741,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j54ciyzyvpfh8v',1,'Admin',1672319415,'192.168.64.1',2,15,41742,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j64ciydlhrdwoc',1,'Admin',1672319415,'192.168.64.1',2,15,41753,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j74ciy7dps06cf',1,'Admin',1672319415,'192.168.64.1',2,15,41754,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j84ciy2ae7m8ne',1,'Admin',1672319415,'192.168.64.1',2,15,41755,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j94ciyf9jujrjz',1,'Admin',1672319415,'192.168.64.1',2,15,41756,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ja4ciypzeldrpa',1,'Admin',1672319415,'192.168.64.1',2,15,41757,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jb4ciy9sw7ef4y',1,'Admin',1672319415,'192.168.64.1',2,15,41758,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jc4ciynq8u2lp4',1,'Admin',1672319415,'192.168.64.1',2,15,41759,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jd4ciy5vrkab5d',1,'Admin',1672319415,'192.168.64.1',2,15,41760,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01je4ciykoucg5os',1,'Admin',1672319415,'192.168.64.1',2,15,41761,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jf4ciy3wtrghfl',1,'Admin',1672319415,'192.168.64.1',2,15,41762,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jg4ciyai6yuq8x',1,'Admin',1672319415,'192.168.64.1',2,15,41763,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jh4ciy0ki46yus',1,'Admin',1672319415,'192.168.64.1',2,15,41774,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ji4ciyzsr27iq3',1,'Admin',1672319415,'192.168.64.1',2,15,41775,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jj4ciy57hzpodp',1,'Admin',1672319415,'192.168.64.1',2,15,41776,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jk4ciy9a420doy',1,'Admin',1672319415,'192.168.64.1',2,15,41777,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jl4ciyrjmi2s01',1,'Admin',1672319415,'192.168.64.1',2,15,41778,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jm4ciysc292xr4',1,'Admin',1672319415,'192.168.64.1',2,15,41779,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jn4ciyc1dukok9',1,'Admin',1672319415,'192.168.64.1',2,15,41780,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jo4ciyv2t7bbhz',1,'Admin',1672319415,'192.168.64.1',2,15,41781,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jp4ciyip5nkxda',1,'Admin',1672319415,'192.168.64.1',2,15,41782,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jq4ciydir63lcc',1,'Admin',1672319415,'192.168.64.1',2,15,41783,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jr4ciyb8gyzw0b',1,'Admin',1672319415,'192.168.64.1',2,15,41784,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01js4ciy2x10d7di',1,'Admin',1672319415,'192.168.64.1',2,15,41795,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jt4ciyhvfqr40x',1,'Admin',1672319415,'192.168.64.1',2,15,41796,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ju4ciyusnwda7o',1,'Admin',1672319415,'192.168.64.1',2,15,41797,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jv4ciy56bztw6q',1,'Admin',1672319415,'192.168.64.1',2,15,41798,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jw4ciycf34t7hy',1,'Admin',1672319415,'192.168.64.1',2,15,41799,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jx4ciyfyllau1k',1,'Admin',1672319415,'192.168.64.1',2,15,41800,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jy4ciyq4lwxlpg',1,'Admin',1672319415,'192.168.64.1',2,15,41801,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jz4ciyzc8xk3as',1,'Admin',1672319415,'192.168.64.1',2,15,41802,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k04ciyjdyzd0ul',1,'Admin',1672319415,'192.168.64.1',2,15,41803,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k14ciyv3epfvpn',1,'Admin',1672319415,'192.168.64.1',2,15,41804,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k24ciy48kpb6q2',1,'Admin',1672319415,'192.168.64.1',2,15,41805,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k34ciyj6dup7ot',1,'Admin',1672319415,'192.168.64.1',2,15,41816,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k44ciy29vpqqj1',1,'Admin',1672319415,'192.168.64.1',2,15,41817,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k54ciyw45lg1yr',1,'Admin',1672319415,'192.168.64.1',2,15,41818,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k64ciymxj2kjj5',1,'Admin',1672319415,'192.168.64.1',2,15,41819,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k74ciy53honj2v',1,'Admin',1672319415,'192.168.64.1',2,15,41820,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k84ciy6fdaoom3',1,'Admin',1672319415,'192.168.64.1',2,15,41821,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k94ciy5xfkedb1',1,'Admin',1672319415,'192.168.64.1',2,15,41822,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ka4ciydzrle153',1,'Admin',1672319415,'192.168.64.1',2,15,41823,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kb4ciyriljo76v',1,'Admin',1672319415,'192.168.64.1',2,15,41824,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kc4ciy1942aidk',1,'Admin',1672319415,'192.168.64.1',2,15,41825,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kd4ciyujgv9dbv',1,'Admin',1672319415,'192.168.64.1',2,15,41826,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ke4ciyjzwl3g8l',1,'Admin',1672319415,'192.168.64.1',2,15,41837,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kf4ciysn6bjvpu',1,'Admin',1672319415,'192.168.64.1',2,15,41838,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kg4ciyidz7va7x',1,'Admin',1672319415,'192.168.64.1',2,15,41839,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kh4ciy7h2lo0ok',1,'Admin',1672319415,'192.168.64.1',2,15,41840,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ki4ciyjteyij6g',1,'Admin',1672319415,'192.168.64.1',2,15,41841,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kj4ciykq8sx1iv',1,'Admin',1672319415,'192.168.64.1',2,15,41842,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kk4ciyhzdp7e5x',1,'Admin',1672319415,'192.168.64.1',2,15,41843,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kl4ciy3hfrh2eh',1,'Admin',1672319415,'192.168.64.1',2,15,41844,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01km4ciydzj230tz',1,'Admin',1672319415,'192.168.64.1',2,15,41845,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kn4ciy7qkeahd8',1,'Admin',1672319415,'192.168.64.1',2,15,41846,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ko4ciyya21ym1a',1,'Admin',1672319415,'192.168.64.1',2,15,41847,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kp4ciyx15r5iuf',1,'Admin',1672319415,'192.168.64.1',2,15,41858,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kq4ciymjh01fjc',1,'Admin',1672319415,'192.168.64.1',2,15,41859,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kr4ciyp5esc20c',1,'Admin',1672319415,'192.168.64.1',2,15,41860,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ks4ciylnbgupi3',1,'Admin',1672319415,'192.168.64.1',2,15,41861,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kt4ciyy8ojx78x',1,'Admin',1672319415,'192.168.64.1',2,15,41862,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ku4ciyd2z7ew56',1,'Admin',1672319415,'192.168.64.1',2,15,41863,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kv4ciyu70wr1om',1,'Admin',1672319415,'192.168.64.1',2,15,41864,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kw4ciyuzmpe5fw',1,'Admin',1672319415,'192.168.64.1',2,15,41865,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kx4ciyzqjh1v7e',1,'Admin',1672319415,'192.168.64.1',2,15,41866,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ky4ciycebzo7wu',1,'Admin',1672319415,'192.168.64.1',2,15,41867,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kz4ciyzqr4q66x',1,'Admin',1672319415,'192.168.64.1',2,15,41868,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l04ciyeyropnob',1,'Admin',1672319415,'192.168.64.1',2,15,41879,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l14ciysrroa9az',1,'Admin',1672319415,'192.168.64.1',2,15,41880,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l24ciyj82sizva',1,'Admin',1672319415,'192.168.64.1',2,15,41881,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l34ciycy9dwlnu',1,'Admin',1672319415,'192.168.64.1',2,15,41882,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l44ciy8m4idkyv',1,'Admin',1672319415,'192.168.64.1',2,15,41883,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l54ciysp78upk2',1,'Admin',1672319415,'192.168.64.1',2,15,41884,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l64ciyl1ablauf',1,'Admin',1672319415,'192.168.64.1',2,15,41885,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l74ciyokv9th5e',1,'Admin',1672319415,'192.168.64.1',2,15,41886,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l84ciy4m06brzd',1,'Admin',1672319415,'192.168.64.1',2,15,41887,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l94ciyc7s87rvi',1,'Admin',1672319415,'192.168.64.1',2,15,41888,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01la4ciyyo3cm48h',1,'Admin',1672319415,'192.168.64.1',2,15,41889,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lb4ciyqr054qv8',1,'Admin',1672319415,'192.168.64.1',2,15,42005,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lc4ciyyb9mhaax',1,'Admin',1672319415,'192.168.64.1',2,15,42006,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ld4ciypcu2gjdy',1,'Admin',1672319415,'192.168.64.1',2,15,42007,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01le4ciyw5ozufig',1,'Admin',1672319415,'192.168.64.1',2,15,42008,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lf4ciye573x8hi',1,'Admin',1672319415,'192.168.64.1',2,15,42009,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lg4ciy1lcvcbbm',1,'Admin',1672319415,'192.168.64.1',2,15,42010,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lh4ciyl0lhjmkz',1,'Admin',1672319415,'192.168.64.1',2,15,42011,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01li4ciygp3mfcjv',1,'Admin',1672319415,'192.168.64.1',2,15,42012,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lj4ciymhzd8d1c',1,'Admin',1672319415,'192.168.64.1',2,15,42013,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lk4ciydndd27qz',1,'Admin',1672319415,'192.168.64.1',2,15,42014,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ll4ciy9sxe5hiu',1,'Admin',1672319415,'192.168.64.1',2,15,42015,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lm4ciyjb2cpz9g',1,'Admin',1672319415,'192.168.64.1',2,15,42026,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ln4ciystpbxoei',1,'Admin',1672319415,'192.168.64.1',2,15,42027,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lo4ciyd44deoyq',1,'Admin',1672319415,'192.168.64.1',2,15,42028,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lp4ciyvg1d18jc',1,'Admin',1672319415,'192.168.64.1',2,15,42029,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lq4ciyel8c3gkf',1,'Admin',1672319415,'192.168.64.1',2,15,42030,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lr4ciyhwnc08ll',1,'Admin',1672319415,'192.168.64.1',2,15,42031,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ls4ciykzotsk03',1,'Admin',1672319415,'192.168.64.1',2,15,42032,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lt4ciynhcqjuxd',1,'Admin',1672319415,'192.168.64.1',2,15,42033,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lu4ciymr8gu5yq',1,'Admin',1672319415,'192.168.64.1',2,15,42034,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lv4ciyuvteufvc',1,'Admin',1672319415,'192.168.64.1',2,15,42035,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lw4ciyob48h1v3',1,'Admin',1672319415,'192.168.64.1',2,15,42036,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lx4ciy5dtent6p',1,'Admin',1672319415,'192.168.64.1',2,15,42047,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ly4ciylivwi9el',1,'Admin',1672319415,'192.168.64.1',2,15,42048,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lz4ciyadsmuikf',1,'Admin',1672319415,'192.168.64.1',2,15,42049,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m04ciyvsfjsdgu',1,'Admin',1672319415,'192.168.64.1',2,15,42050,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m14ciysjpdmwwr',1,'Admin',1672319415,'192.168.64.1',2,15,42051,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m24ciy7jbeh9xx',1,'Admin',1672319415,'192.168.64.1',2,15,42052,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m34ciyzavq9qnl',1,'Admin',1672319415,'192.168.64.1',2,15,42053,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m44ciykmz2dqkz',1,'Admin',1672319415,'192.168.64.1',2,15,42054,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m54ciy2wq8ym04',1,'Admin',1672319415,'192.168.64.1',2,15,42055,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m64ciyvlxih9jb',1,'Admin',1672319415,'192.168.64.1',2,15,42056,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m74ciy9l1efh30',1,'Admin',1672319415,'192.168.64.1',2,15,42057,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m84ciyognpw9z5',1,'Admin',1672319415,'192.168.64.1',2,15,42089,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m94ciyoiv44e62',1,'Admin',1672319415,'192.168.64.1',2,15,42090,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ma4ciyybm1ojzx',1,'Admin',1672319415,'192.168.64.1',2,15,42091,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mb4ciy867f8my3',1,'Admin',1672319415,'192.168.64.1',2,15,42092,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mc4ciyq7cuj04w',1,'Admin',1672319415,'192.168.64.1',2,15,42093,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01md4ciyidvivctf',1,'Admin',1672319415,'192.168.64.1',2,15,42094,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01me4ciywj8xyc9n',1,'Admin',1672319415,'192.168.64.1',2,15,42095,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mf4ciyxlvszpcf',1,'Admin',1672319415,'192.168.64.1',2,15,42096,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mg4ciy3d1s6nll',1,'Admin',1672319415,'192.168.64.1',2,15,42097,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mh4ciytp1910sd',1,'Admin',1672319415,'192.168.64.1',2,15,42098,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mi4ciypkiv9ltm',1,'Admin',1672319415,'192.168.64.1',2,15,42099,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mj4ciy1jwv5vz5',1,'Admin',1672319415,'192.168.64.1',2,15,42447,NULL,'Host name of Zabbix agent running','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mk4ciymob0w31s',1,'Admin',1672319415,'192.168.64.1',2,15,42448,NULL,'Zabbix agent ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ml4ciyvr0a8xa7',1,'Admin',1672319415,'192.168.64.1',2,15,42449,NULL,'Version of Zabbix agent running','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mm4ciylctgv1ei',1,'Admin',1672319415,'192.168.64.1',2,15,42450,NULL,'Zabbix agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mn4ciybx48j677',1,'Admin',1672319415,'192.168.64.1',2,15,42609,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mo4ciygj0qtfw4',1,'Admin',1672319415,'192.168.64.1',2,15,42610,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mp4ciyer6bog70',1,'Admin',1672319415,'192.168.64.1',2,15,42611,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mq4ciyo7jk3iuk',1,'Admin',1672319415,'192.168.64.1',2,15,42612,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mr4ciydgqia4ir',1,'Admin',1672319415,'192.168.64.1',2,15,42613,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ms4ciyevgnotx6',1,'Admin',1672319415,'192.168.64.1',2,15,42614,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mt4ciy5ojd2db1',1,'Admin',1672319415,'192.168.64.1',2,15,42615,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mu4ciyum6c3pvp',1,'Admin',1672319415,'192.168.64.1',2,15,42616,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mv4ciy2gu51510',1,'Admin',1672319415,'192.168.64.1',2,15,42617,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mw4ciywinjs3jc',1,'Admin',1672319415,'192.168.64.1',2,15,42618,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mx4ciyyipyfm0w',1,'Admin',1672319415,'192.168.64.1',2,15,42619,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01my4ciyu2uqf39j',1,'Admin',1672319415,'192.168.64.1',2,15,42724,NULL,'Openweathermap: Get data','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mz4ciy90cih6wm',1,'Admin',1672319415,'192.168.64.1',2,15,42725,NULL,'Openweathermap: Get data collection errors','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n04ciyni1bmu9x',1,'Admin',1672319415,'192.168.64.1',2,15,43547,NULL,'OPNsense: DHCP server status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n14ciyrcvmks80',1,'Admin',1672319415,'192.168.64.1',2,15,43548,NULL,'OPNsense: Firewall rules count','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n24ciyx4yy6kiu',1,'Admin',1672319415,'192.168.64.1',2,15,43549,NULL,'OPNsense: States table utilization in %','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n34ciyxe54cvxi',1,'Admin',1672319415,'192.168.64.1',2,15,43550,NULL,'OPNsense: States table limit','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n44ciy0swzvowc',1,'Admin',1672319415,'192.168.64.1',2,15,43551,NULL,'OPNsense: States table current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n54ciy0w98kpc0',1,'Admin',1672319415,'192.168.64.1',2,15,43552,NULL,'OPNsense: Source tracking table utilization in %','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n64ciyv9ru71t4',1,'Admin',1672319415,'192.168.64.1',2,15,43553,NULL,'OPNsense: Source tracking table limit','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n74ciy1dscffj6',1,'Admin',1672319415,'192.168.64.1',2,15,43554,NULL,'OPNsense: Source tracking table current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n84ciynvjk6sxv',1,'Admin',1672319415,'192.168.64.1',2,15,43555,NULL,'OPNsense: Packet filter running status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n94ciy1fyn9u8t',1,'Admin',1672319415,'192.168.64.1',2,15,43556,NULL,'OPNsense: DNS server status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01na4ciy0zjnlbl6',1,'Admin',1672319415,'192.168.64.1',2,15,43557,NULL,'OPNsense: Short packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01nb4ciypow1flpe',1,'Admin',1672319415,'192.168.64.1',2,15,43558,NULL,'OPNsense: Normalized packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01nc4ciycfnws22a',1,'Admin',1672319415,'192.168.64.1',2,15,43559,NULL,'OPNsense: Packets dropped due to memory limitation','clc93suux00004ciywh0nidxf',''),('clc93sv0x01nd4ciycn3a41lv',1,'Admin',1672319415,'192.168.64.1',2,15,43560,NULL,'OPNsense: Packets matched a filter rule','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ne4ciyv23ljn9p',1,'Admin',1672319415,'192.168.64.1',2,15,43561,NULL,'OPNsense: Fragmented packets','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nf4ciyvoo766qs',1,'Admin',1672319415,'192.168.64.1',2,15,43562,NULL,'OPNsense: Packets with bad offset','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ng4ciy1fhr5v3h',1,'Admin',1672319415,'192.168.64.1',2,15,43563,NULL,'OPNsense: Web server status','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nh4ciymhibwlz0',1,'Admin',1672319415,'192.168.64.1',2,15,43564,NULL,'OPNsense: SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ni4ciy1lvyyetb',1,'Admin',1672319415,'192.168.64.1',2,15,43787,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nj4ciyy4qjjhfg',1,'Admin',1672319415,'192.168.64.1',2,15,43826,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nk4ciy8lr620au',1,'Admin',1672319415,'192.168.64.1',2,15,43827,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nl4ciyjikubh04',1,'Admin',1672319415,'192.168.64.1',2,15,43828,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nm4ciyhqqxufiz',1,'Admin',1672319415,'192.168.64.1',2,15,43829,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nn4ciyweeg3xfp',1,'Admin',1672319415,'192.168.64.1',2,15,43830,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01no4ciyp9zt4zec',1,'Admin',1672319415,'192.168.64.1',2,15,43831,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01np4ciyi85kpzsz',1,'Admin',1672319415,'192.168.64.1',2,15,43832,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nq4ciyn6afr3fd',1,'Admin',1672319415,'192.168.64.1',2,15,43833,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nr4ciy58y0ds1c',1,'Admin',1672319415,'192.168.64.1',2,15,43834,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ns4ciyjxmu080q',1,'Admin',1672319415,'192.168.64.1',2,15,43835,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nt4ciyctfplg18',1,'Admin',1672319415,'192.168.64.1',2,15,43836,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nu4ciyb4f56qqp',1,'Admin',1672319415,'192.168.64.1',2,15,43837,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nv4ciya7c0tyrb',1,'Admin',1672319415,'192.168.64.1',2,15,43838,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nw4ciykn9ade7c',1,'Admin',1672319415,'192.168.64.1',2,15,43839,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nx4ciyvhxk4j0q',1,'Admin',1672319415,'192.168.64.1',2,15,43845,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ny4ciy0wb22kxn',1,'Admin',1672319415,'192.168.64.1',2,15,43846,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nz4ciyseukco1y',1,'Admin',1672319415,'192.168.64.1',2,15,43847,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o04ciy5y800air',1,'Admin',1672319415,'192.168.64.1',2,15,43849,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o14ciy5ou5qk64',1,'Admin',1672319415,'192.168.64.1',2,15,43850,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o24ciyxyshtrsq',1,'Admin',1672319415,'192.168.64.1',2,15,43851,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o34ciyxwtghrwj',1,'Admin',1672319415,'192.168.64.1',2,15,43852,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o44ciycywysra1',1,'Admin',1672319415,'192.168.64.1',2,15,43853,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o54ciymbweeztd',1,'Admin',1672319415,'192.168.64.1',2,15,43854,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o64ciyypcaxuqc',1,'Admin',1672319415,'192.168.64.1',2,15,43855,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o74ciya0ixb09a',1,'Admin',1672319415,'192.168.64.1',2,15,43856,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o84ciy2zg2uetb',1,'Admin',1672319415,'192.168.64.1',2,15,43888,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o94ciys5c0ln9m',1,'Admin',1672319415,'192.168.64.1',2,15,44235,NULL,'OS: Get process summary','clc93suux00004ciywh0nidxf',''),('clc93sv0y01oa4ciy7u56ae2w',1,'Admin',1672319415,'192.168.64.1',2,15,44343,NULL,'Nginx: Get processes summary','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ob4ciy3apwe3ra',1,'Admin',1672319415,'192.168.64.1',2,15,44351,NULL,'PHP-FPM: Get processes summary','clc93suux00004ciywh0nidxf',''),('clc93sv0y01oc4ciyqnfdnypn',1,'Admin',1672319415,'192.168.64.1',2,15,44447,NULL,'Get filesystems','clc93suux00004ciywh0nidxf',''),('clc93sv2f01od4ciyaj0betmw',1,'Admin',1672319415,'192.168.64.1',2,30,10074,NULL,'OpenBSD by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oe4ciy51yfa9xi',1,'Admin',1672319415,'192.168.64.1',2,30,10098,NULL,'NNTP Service','clc93suux00004ciywh0nidxf',''),('clc93sv2f01of4ciys8jkne50',1,'Admin',1672319415,'192.168.64.1',2,30,10099,NULL,'NTP Service','clc93suux00004ciywh0nidxf',''),('clc93sv2f01og4ciyvlsj6vdx',1,'Admin',1672319415,'192.168.64.1',2,30,10100,NULL,'POP Service','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oh4ciybewo6cgn',1,'Admin',1672319415,'192.168.64.1',2,30,10226,NULL,'Network Generic Device by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oi4ciyfggpoc2j',1,'Admin',1672319415,'192.168.64.1',2,30,10234,NULL,'Netgear Fastpath by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oj4ciyb2pi2o8u',1,'Admin',1672319415,'192.168.64.1',2,30,10266,NULL,'Nginx by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ok4ciyelf0ms4v',1,'Admin',1672319415,'192.168.64.1',2,30,10267,NULL,'Nginx by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ol4ciyfyaohrx8',1,'Admin',1672319415,'192.168.64.1',2,30,10316,NULL,'MySQL by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01om4ciy69j47a2b',1,'Admin',1672319415,'192.168.64.1',2,30,10317,NULL,'MySQL by ODBC','clc93suux00004ciywh0nidxf',''),('clc93sv2f01on4ciyhlvlhma4',1,'Admin',1672319415,'192.168.64.1',2,30,10320,NULL,'MySQL by Zabbix agent 2','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oo4ciynpefc6wi',1,'Admin',1672319415,'192.168.64.1',2,30,10327,NULL,'MSSQL by ODBC','clc93suux00004ciywh0nidxf',''),('clc93sv2f01op4ciyln24u2t3',1,'Admin',1672319415,'192.168.64.1',2,30,10328,NULL,'Oracle by ODBC','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oq4ciyn376ccw3',1,'Admin',1672319415,'192.168.64.1',2,30,10330,NULL,'PHP-FPM by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01or4ciyu5f90sfr',1,'Admin',1672319415,'192.168.64.1',2,30,10331,NULL,'PHP-FPM by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01os4ciy0gmklnfz',1,'Admin',1672319415,'192.168.64.1',2,30,10335,NULL,'Oracle by Zabbix agent 2','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ot4ciy60u0n5eo',1,'Admin',1672319415,'192.168.64.1',2,30,10357,NULL,'PostgreSQL by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ou4ciytojqgva8',1,'Admin',1672319415,'192.168.64.1',2,30,10371,NULL,'Morningstar ProStar MPPT by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ov4ciyyji1bf9i',1,'Admin',1672319415,'192.168.64.1',2,30,10372,NULL,'Morningstar ProStar PWM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ow4ciynzqd7322',1,'Admin',1672319415,'192.168.64.1',2,30,10373,NULL,'Morningstar SunSaver MPPT by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ox4ciyektgzfzn',1,'Admin',1672319415,'192.168.64.1',2,30,10374,NULL,'Morningstar SureSine by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oy4ciyw2u24ug5',1,'Admin',1672319415,'192.168.64.1',2,30,10375,NULL,'Morningstar TriStar MPPT 600V by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oz4ciyxdjbw85e',1,'Admin',1672319415,'192.168.64.1',2,30,10376,NULL,'Morningstar TriStar MPPT by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p04ciyd0kq9ci0',1,'Admin',1672319415,'192.168.64.1',2,30,10377,NULL,'Morningstar TriStar PWM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p14ciy518godyr',1,'Admin',1672319415,'192.168.64.1',2,30,10378,NULL,'NetApp FAS3220 by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p24ciy591cvio1',1,'Admin',1672319415,'192.168.64.1',2,30,10386,NULL,'MongoDB node by Zabbix agent 2','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p34ciyrwtretzj',1,'Admin',1672319415,'192.168.64.1',2,30,10387,NULL,'MongoDB cluster by Zabbix agent 2','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p44ciy72wf0zq8',1,'Admin',1672319415,'192.168.64.1',2,30,10396,NULL,'NetApp AFF A700 by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p54ciyncouantm',1,'Admin',1672319415,'192.168.64.1',2,30,10415,NULL,'Nginx Plus by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p64ciy64hhrnh8',1,'Admin',1672319415,'192.168.64.1',2,30,10481,NULL,'MikroTik PowerBox Pro by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p74ciy0q32aph6',1,'Admin',1672319415,'192.168.64.1',2,30,10482,NULL,'MikroTik PowerBox by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p84ciy21kr8ykw',1,'Admin',1672319415,'192.168.64.1',2,30,10483,NULL,'MikroTik RB1100AHx4 Dude Edition by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01p94ciy93kzyozf',1,'Admin',1672319415,'192.168.64.1',2,30,10484,NULL,'MikroTik RB1100AHx4 by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pa4ciyt2gnpmo3',1,'Admin',1672319415,'192.168.64.1',2,30,10485,NULL,'MikroTik RB2011UiAS-IN by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pb4ciy5crb08q6',1,'Admin',1672319415,'192.168.64.1',2,30,10486,NULL,'MikroTik RB2011UiAS-RM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pc4ciyulkqk4t6',1,'Admin',1672319415,'192.168.64.1',2,30,10487,NULL,'MikroTik RB2011iL-IN by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pd4ciyvkvmnmmm',1,'Admin',1672319415,'192.168.64.1',2,30,10488,NULL,'MikroTik RB2011iL-RM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pe4ciye34hiy82',1,'Admin',1672319415,'192.168.64.1',2,30,10489,NULL,'MikroTik RB2011iLS-IN by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pf4ciy9c4kb410',1,'Admin',1672319415,'192.168.64.1',2,30,10490,NULL,'MikroTik RB260GSP by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pg4ciy2jkpb6cy',1,'Admin',1672319415,'192.168.64.1',2,30,10491,NULL,'MikroTik RB260GS by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01ph4ciykd4zed4v',1,'Admin',1672319415,'192.168.64.1',2,30,10492,NULL,'MikroTik RB3011UiAS-RM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pi4ciy2laabh61',1,'Admin',1672319415,'192.168.64.1',2,30,10493,NULL,'MikroTik RB4011iGSRM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pj4ciyj802scto',1,'Admin',1672319415,'192.168.64.1',2,30,10494,NULL,'MikroTik RB5009UGSIN by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pk4ciy7jusivay',1,'Admin',1672319415,'192.168.64.1',2,30,10500,NULL,'MikroTik netPower 15FR by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pl4ciyngf4k985',1,'Admin',1672319415,'192.168.64.1',2,30,10501,NULL,'MikroTik netPower 16P by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pm4ciyya2tccco',1,'Admin',1672319415,'192.168.64.1',2,30,10502,NULL,'MikroTik netPower Lite 7R by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pn4ciypcg6hrxe',1,'Admin',1672319415,'192.168.64.1',2,30,10515,NULL,'PFSense by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01po4ciywnayi5lu',1,'Admin',1672319415,'192.168.64.1',2,30,10516,NULL,'OpenWeatherMap by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pp4ciyb0bmfnl0',1,'Admin',1672319415,'192.168.64.1',2,30,10528,NULL,'OPNsense by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pq4ciyftukr8um',1,'Admin',1672319415,'192.168.64.1',2,30,10542,NULL,'OS processes by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sy0x00014xiy7ap4l4fx',1,'Admin',1672319418,'192.168.64.1',2,36,23025,NULL,'Interface {#IFNAME}: Incoming network traffic','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00024xiylkc4jzes',1,'Admin',1672319418,'192.168.64.1',2,36,23026,NULL,'Interface {#IFNAME}: Outgoing network traffic','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00034xiyzzwtwvfc',1,'Admin',1672319418,'192.168.64.1',2,36,23028,NULL,'{#FSNAME}: Free disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00044xiytgcwooh8',1,'Admin',1672319418,'192.168.64.1',2,36,23029,NULL,'{#FSNAME}: Free inodes, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00054xiy16ha02ce',1,'Admin',1672319418,'192.168.64.1',2,36,23030,NULL,'{#FSNAME}: Total disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00064xiy0lhlsq5i',1,'Admin',1672319418,'192.168.64.1',2,36,23031,NULL,'{#FSNAME}: Used disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00074xiy6m0qgr78',1,'Admin',1672319418,'192.168.64.1',2,36,23032,NULL,'{#FSNAME}: Free disk space, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00084xiy9hun7i1f',1,'Admin',1672319418,'192.168.64.1',2,36,28003,NULL,'#{#SNMPVALUE}: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00094xiyj8b8r0ze',1,'Admin',1672319418,'192.168.64.1',2,36,28495,NULL,'{#SENSOR_DESCR}: Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000a4xiy4nhezhg8',1,'Admin',1672319418,'192.168.64.1',2,36,28496,NULL,'{#SENSOR_DESCR}: Fan speed, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000b4xiytpsjad5h',1,'Admin',1672319418,'192.168.64.1',2,36,29512,NULL,'{#FSLABEL}({#FSNAME}): Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000c4xiyehb3ihb1',1,'Admin',1672319418,'192.168.64.1',2,36,29513,NULL,'{#FSLABEL}({#FSNAME}): Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000d4xiydkgk6lqt',1,'Admin',1672319418,'192.168.64.1',2,36,29514,NULL,'{#FSLABEL}({#FSNAME}): Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000e4xiy296vcmjv',1,'Admin',1672319418,'192.168.64.1',2,36,29720,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000f4xiykmurgktn',1,'Admin',1672319418,'192.168.64.1',2,36,29721,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000g4xiynk5zikpr',1,'Admin',1672319418,'192.168.64.1',2,36,29722,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000h4xiyci5q4zgx',1,'Admin',1672319418,'192.168.64.1',2,36,29723,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000i4xiy3ob70igg',1,'Admin',1672319418,'192.168.64.1',2,36,29724,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000j4xiyzl1qsgut',1,'Admin',1672319418,'192.168.64.1',2,36,29725,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000k4xiyqru1ugi4',1,'Admin',1672319418,'192.168.64.1',2,36,29726,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000l4xiy6szperoe',1,'Admin',1672319418,'192.168.64.1',2,36,29727,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000m4xiy7bqukn3l',1,'Admin',1672319418,'192.168.64.1',2,36,29728,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000n4xiybctgd98n',1,'Admin',1672319418,'192.168.64.1',2,36,29729,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000o4xiy0fq5m13v',1,'Admin',1672319418,'192.168.64.1',2,36,29730,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000p4xiy9l9yn238',1,'Admin',1672319418,'192.168.64.1',2,36,29731,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000q4xiyyeixjobo',1,'Admin',1672319418,'192.168.64.1',2,36,29732,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000r4xiyex9iqm12',1,'Admin',1672319418,'192.168.64.1',2,36,29733,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000s4xiym6yr275s',1,'Admin',1672319418,'192.168.64.1',2,36,29734,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000t4xiyue0dym9e',1,'Admin',1672319418,'192.168.64.1',2,36,29735,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000u4xiyddl4ivo8',1,'Admin',1672319418,'192.168.64.1',2,36,29736,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Consumers','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000v4xiyr6fuds52',1,'Admin',1672319418,'192.168.64.1',2,36,29737,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000w4xiytmpszu5z',1,'Admin',1672319418,'192.168.64.1',2,36,29787,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000x4xiydvvnmw3y',1,'Admin',1672319418,'192.168.64.1',2,36,29788,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000y4xiy564hgfzk',1,'Admin',1672319418,'192.168.64.1',2,36,29789,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000z4xiyfepjb87f',1,'Admin',1672319418,'192.168.64.1',2,36,29790,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00104xiy92cqc7i6',1,'Admin',1672319418,'192.168.64.1',2,36,29791,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00114xiymuyc0k8m',1,'Admin',1672319418,'192.168.64.1',2,36,29792,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00124xiy1zna58hm',1,'Admin',1672319418,'192.168.64.1',2,36,29793,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00134xiyiwqk1n3j',1,'Admin',1672319418,'192.168.64.1',2,36,29794,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00144xiyspstuak1',1,'Admin',1672319418,'192.168.64.1',2,36,29795,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00154xiyqvcqye4s',1,'Admin',1672319418,'192.168.64.1',2,36,29796,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00164xiya2xkow4k',1,'Admin',1672319418,'192.168.64.1',2,36,29797,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00174xiy8nsj8p5j',1,'Admin',1672319418,'192.168.64.1',2,36,29798,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00184xiybitd4hjf',1,'Admin',1672319418,'192.168.64.1',2,36,29799,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00194xiy4n7lqjpe',1,'Admin',1672319418,'192.168.64.1',2,36,29800,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001a4xiynuccw66m',1,'Admin',1672319418,'192.168.64.1',2,36,29801,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages redelivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001b4xiyfhwxfz0b',1,'Admin',1672319418,'192.168.64.1',2,36,29802,NULL,'RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001c4xiy1egmzww1',1,'Admin',1672319418,'192.168.64.1',2,36,29803,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001d4xiya4w133o7',1,'Admin',1672319418,'192.168.64.1',2,36,29804,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001e4xiyi29fe520',1,'Admin',1672319418,'192.168.64.1',2,36,29805,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001f4xiyn6q0mowg',1,'Admin',1672319418,'192.168.64.1',2,36,29806,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001g4xiyriwg5zqn',1,'Admin',1672319418,'192.168.64.1',2,36,29807,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001h4xiyk4tdqq2z',1,'Admin',1672319418,'192.168.64.1',2,36,29808,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001i4xiyjgxhfdxc',1,'Admin',1672319418,'192.168.64.1',2,36,29809,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001j4xiya9ywzkaw',1,'Admin',1672319418,'192.168.64.1',2,36,29810,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001k4xiy0gqfcu7t',1,'Admin',1672319418,'192.168.64.1',2,36,29811,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001l4xiy3jolb9ia',1,'Admin',1672319418,'192.168.64.1',2,36,29812,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001m4xiyu4rt741u',1,'Admin',1672319418,'192.168.64.1',2,36,29813,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001n4xiy6x8whs13',1,'Admin',1672319418,'192.168.64.1',2,36,29814,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001o4xiyx7kmindt',1,'Admin',1672319418,'192.168.64.1',2,36,29815,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001p4xiygm7z7kvu',1,'Admin',1672319418,'192.168.64.1',2,36,29816,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001q4xiy10wadfpg',1,'Admin',1672319418,'192.168.64.1',2,36,29817,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001r4xiyxlx2d94c',1,'Admin',1672319418,'192.168.64.1',2,36,29818,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001s4xiyfqvzkz2t',1,'Admin',1672319418,'192.168.64.1',2,36,29819,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Consumers','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001t4xiyp2zhi5wv',1,'Admin',1672319418,'192.168.64.1',2,36,29820,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001u4xiyxpe09ywc',1,'Admin',1672319418,'192.168.64.1',2,36,30027,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001v4xiyvheuuyrl',1,'Admin',1672319418,'192.168.64.1',2,36,30028,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001w4xiyoen0qdnk',1,'Admin',1672319418,'192.168.64.1',2,36,30029,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001x4xiywvfqs9sr',1,'Admin',1672319418,'192.168.64.1',2,36,30030,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001y4xiyn69shybt',1,'Admin',1672319418,'192.168.64.1',2,36,30031,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001z4xiyu0rkad8o',1,'Admin',1672319418,'192.168.64.1',2,36,30032,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00204xiy1468i2pu',1,'Admin',1672319418,'192.168.64.1',2,36,30033,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00214xiyyxmxo5ay',1,'Admin',1672319418,'192.168.64.1',2,36,30034,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00224xiytnr4lnnr',1,'Admin',1672319418,'192.168.64.1',2,36,30035,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00234xiy2e7zs1lm',1,'Admin',1672319418,'192.168.64.1',2,36,30036,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00244xiyju83ggc0',1,'Admin',1672319418,'192.168.64.1',2,36,30037,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00254xiy0wb3esw4',1,'Admin',1672319418,'192.168.64.1',2,36,30038,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00264xiy58cwcdqe',1,'Admin',1672319418,'192.168.64.1',2,36,30039,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00274xiya1a09bui',1,'Admin',1672319418,'192.168.64.1',2,36,30040,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00284xiy3q9sujwj',1,'Admin',1672319418,'192.168.64.1',2,36,30041,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages redelivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00294xiyp7k78888',1,'Admin',1672319418,'192.168.64.1',2,36,30042,NULL,'RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002a4xiyy4brapci',1,'Admin',1672319418,'192.168.64.1',2,36,30129,NULL,'{#SNMPINDEX}: Fan status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002b4xiyoufikzo1',1,'Admin',1672319418,'192.168.64.1',2,36,30130,NULL,'{#SNMPINDEX}: Power supply status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002c4xiyd6wum20u',1,'Admin',1672319418,'192.168.64.1',2,36,30131,NULL,'#{#SNMPVALUE}: Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002d4xiytfug3o7b',1,'Admin',1672319418,'192.168.64.1',2,36,30344,NULL,'Redis: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002e4xiy1mq1q84a',1,'Admin',1672319418,'192.168.64.1',2,36,30345,NULL,'Redis: Memory usage (rss)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002f4xiywvsduik8',1,'Admin',1672319418,'192.168.64.1',2,36,30346,NULL,'Redis: Memory usage (vsize)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002g4xiy07rlj5j7',1,'Admin',1672319418,'192.168.64.1',2,36,30347,NULL,'Redis: Number of processes running','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002h4xiy3pilgd1m',1,'Admin',1672319418,'192.168.64.1',2,36,30348,NULL,'DB {#DB}: Average TTL','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002i4xiyu409xbhf',1,'Admin',1672319418,'192.168.64.1',2,36,30349,NULL,'DB {#DB}: Expires','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002j4xiyg9uoqkgw',1,'Admin',1672319418,'192.168.64.1',2,36,30350,NULL,'DB {#DB}: Keys','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002k4xiy6e7vqytn',1,'Admin',1672319418,'192.168.64.1',2,36,30351,NULL,'Redis: Active defrag running{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002l4xiyghvg76vy',1,'Admin',1672319418,'192.168.64.1',2,36,30352,NULL,'Redis: RDB last CoW size{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002m4xiyreovc5ra',1,'Admin',1672319418,'192.168.64.1',2,36,30353,NULL,'Redis: Expired time cap reached count{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002n4xiy7zkgzobc',1,'Admin',1672319418,'192.168.64.1',2,36,30354,NULL,'Redis: Expired stale %{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002o4xiyt7yqly8o',1,'Admin',1672319418,'192.168.64.1',2,36,30355,NULL,'Redis: Active defrag misses{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002p4xiym8skbkom',1,'Admin',1672319418,'192.168.64.1',2,36,30356,NULL,'Redis: Active defrag key misses{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002q4xiydt4byubj',1,'Admin',1672319418,'192.168.64.1',2,36,30357,NULL,'Redis: Active defrag key hits{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002r4xiy5x90uqof',1,'Admin',1672319418,'192.168.64.1',2,36,30358,NULL,'Redis: Active defrag hits{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002s4xiylxw5494p',1,'Admin',1672319418,'192.168.64.1',2,36,30359,NULL,'Redis: Executable path{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002t4xiy1wpqzfhu',1,'Admin',1672319418,'192.168.64.1',2,36,30360,NULL,'Redis: Replication second offset{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002u4xiyqgoy4nuh',1,'Admin',1672319418,'192.168.64.1',2,36,30361,NULL,'Redis: AOF last CoW size{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002v4xiy742y7k5d',1,'Admin',1672319418,'192.168.64.1',2,36,30362,NULL,'Redis: Lazyfree pending objects{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002w4xiys017tn8u',1,'Admin',1672319418,'192.168.64.1',2,36,30363,NULL,'Redis: Memory used startup{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002x4xiy976r6ui6',1,'Admin',1672319418,'192.168.64.1',2,36,30364,NULL,'Redis: Memory used peak %{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002y4xiyhc4b63uy',1,'Admin',1672319418,'192.168.64.1',2,36,30365,NULL,'Redis: Memory used overhead{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002z4xiyg944504i',1,'Admin',1672319418,'192.168.64.1',2,36,30366,NULL,'Redis: Memory used dataset{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00304xiythpcpr4p',1,'Admin',1672319418,'192.168.64.1',2,36,30367,NULL,'Redis: Memory used dataset %{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00314xiyjuk1nq95',1,'Admin',1672319418,'192.168.64.1',2,36,30368,NULL,'Redis: Total system memory{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00324xiym5uoclch',1,'Admin',1672319418,'192.168.64.1',2,36,30369,NULL,'Redis: Max memory{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00334xiyh1cen1w6',1,'Admin',1672319418,'192.168.64.1',2,36,30370,NULL,'Redis: Max memory policy{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00344xiyzx8l31by',1,'Admin',1672319418,'192.168.64.1',2,36,30371,NULL,'Redis: Slave expires tracked keys{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00354xiypzex5sj5',1,'Admin',1672319418,'192.168.64.1',2,36,30372,NULL,'Redis: Allocator active{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00364xiyal65zvbc',1,'Admin',1672319418,'192.168.64.1',2,36,30373,NULL,'Redis: Memory clients normal{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00374xiyl0kb280z',1,'Admin',1672319418,'192.168.64.1',2,36,30374,NULL,'Redis: Memory RSS overhead ratio{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00384xiy2lsueaun',1,'Admin',1672319418,'192.168.64.1',2,36,30375,NULL,'Redis: Memory RSS overhead bytes{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00394xiyugoarm1b',1,'Admin',1672319418,'192.168.64.1',2,36,30376,NULL,'Redis: Memory replication backlog{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003a4xiy62b743hz',1,'Admin',1672319418,'192.168.64.1',2,36,30377,NULL,'Redis: Memory number of cached scripts{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003b4xiyi8zug28m',1,'Admin',1672319418,'192.168.64.1',2,36,30378,NULL,'Redis: Memory not counted for evict{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003c4xiyflrdslui',1,'Admin',1672319418,'192.168.64.1',2,36,30379,NULL,'Redis: Memory clients slaves{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003d4xiyu9uunkas',1,'Admin',1672319418,'192.168.64.1',2,36,30380,NULL,'Redis: Memory AOF buffer{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003e4xiygez56t6t',1,'Admin',1672319418,'192.168.64.1',2,36,30381,NULL,'Redis: Allocator allocated{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003f4xiyogxrdl3b',1,'Admin',1672319418,'192.168.64.1',2,36,30382,NULL,'Redis: Memory fragmentation bytes{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003g4xiyz0q1p7h7',1,'Admin',1672319418,'192.168.64.1',2,36,30383,NULL,'Redis: Allocator RSS ratio{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003h4xiywk1qma53',1,'Admin',1672319418,'192.168.64.1',2,36,30384,NULL,'Redis: Allocator RSS bytes{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003i4xiy8im6e6dm',1,'Admin',1672319418,'192.168.64.1',2,36,30385,NULL,'Redis: Allocator resident{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003j4xiyert6ibn5',1,'Admin',1672319418,'192.168.64.1',2,36,30386,NULL,'Redis: Allocator fragmentation ratio{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003k4xiybs0oxejy',1,'Admin',1672319418,'192.168.64.1',2,36,30387,NULL,'Redis: Allocator fragmentation bytes{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003l4xiybk0utiha',1,'Admin',1672319418,'192.168.64.1',2,36,30388,NULL,'Redis: Memory used scripts{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003m4xiyil9nq6qw',1,'Admin',1672319418,'192.168.64.1',2,36,30389,NULL,'Redis: AOF base size{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003n4xiy3fs54xnw',1,'Admin',1672319418,'192.168.64.1',2,36,30390,NULL,'Redis: AOF buffer length{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003o4xiynf6doeld',1,'Admin',1672319418,'192.168.64.1',2,36,30391,NULL,'Redis: AOF current size{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003p4xiy15erffi6',1,'Admin',1672319418,'192.168.64.1',2,36,30392,NULL,'Redis: AOF delayed fsync{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003q4xiywvn4668i',1,'Admin',1672319418,'192.168.64.1',2,36,30393,NULL,'Redis: AOF pending background I/O fsync{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003r4xiy4v73ztrg',1,'Admin',1672319418,'192.168.64.1',2,36,30394,NULL,'Redis: AOF pending rewrite{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003s4xiy78c9juc6',1,'Admin',1672319418,'192.168.64.1',2,36,30395,NULL,'Redis: AOF rewrite buffer length{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003t4xiytd8hcaj5',1,'Admin',1672319418,'192.168.64.1',2,36,30396,NULL,'Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag in bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003u4xiyd20kfrgq',1,'Admin',1672319418,'192.168.64.1',2,36,30397,NULL,'Redis: Master host{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003v4xiyszfabhxa',1,'Admin',1672319418,'192.168.64.1',2,36,30398,NULL,'Redis: Master last I/O seconds ago{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003w4xiyo71yaa2f',1,'Admin',1672319418,'192.168.64.1',2,36,30399,NULL,'Redis: Master link status{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003x4xiy1dtudun1',1,'Admin',1672319418,'192.168.64.1',2,36,30400,NULL,'Redis: Master port{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003y4xiykgxfyp8p',1,'Admin',1672319418,'192.168.64.1',2,36,30401,NULL,'Redis: Master sync in progress{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003z4xiyudeoz2qa',1,'Admin',1672319418,'192.168.64.1',2,36,30402,NULL,'Redis: Slave priority{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00404xiy5zk552df',1,'Admin',1672319418,'192.168.64.1',2,36,30403,NULL,'Redis: Slave priority{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00414xiyes2gyxpq',1,'Admin',1672319418,'192.168.64.1',2,36,30404,NULL,'Redis: Slave replication offset{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00424xiy53id63ed',1,'Admin',1672319418,'192.168.64.1',2,36,30425,NULL,'State of service \"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME})','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00434xiyqsffwwbo',1,'Admin',1672319418,'192.168.64.1',2,36,31335,NULL,'DB {#DBNAME}: Database age','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00444xiymf2206mp',1,'Admin',1672319418,'192.168.64.1',2,36,31336,NULL,'DB {#DBNAME}: Database size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00454xiyprdqzzl1',1,'Admin',1672319418,'192.168.64.1',2,36,31337,NULL,'DB {#DBNAME}: Get bloating tables','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00464xiy4cobtrs1',1,'Admin',1672319418,'192.168.64.1',2,36,31338,NULL,'DB {#DBNAME}: Tuples returned per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00474xiybzbv4aw0',1,'Admin',1672319418,'192.168.64.1',2,36,31339,NULL,'DB {#DBNAME}: Num of shareupdateexclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00484xiyju9fypug',1,'Admin',1672319418,'192.168.64.1',2,36,31340,NULL,'DB {#DBNAME}: Num of sharerowexclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00494xiyuglgit6h',1,'Admin',1672319418,'192.168.64.1',2,36,31341,NULL,'DB {#DBNAME}: Num of share locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004a4xiymav3soq3',1,'Admin',1672319418,'192.168.64.1',2,36,31342,NULL,'DB {#DBNAME}: Num of rowshare locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004b4xiyr4eo15pa',1,'Admin',1672319418,'192.168.64.1',2,36,31343,NULL,'DB {#DBNAME}: Num of rowexclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004c4xiyhipt8dzz',1,'Admin',1672319418,'192.168.64.1',2,36,31344,NULL,'DB {#DBNAME}: Num of exclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004d4xiybs6c78yp',1,'Admin',1672319418,'192.168.64.1',2,36,31345,NULL,'DB {#DBNAME}: Num of accessshare locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004e4xiymdpdhe65',1,'Admin',1672319418,'192.168.64.1',2,36,31346,NULL,'DB {#DBNAME}: Num of accessexclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004f4xiynxkcyo1i',1,'Admin',1672319418,'192.168.64.1',2,36,31347,NULL,'DB {#DBNAME}: Rollbacks per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004g4xiy3xphna5r',1,'Admin',1672319418,'192.168.64.1',2,36,31348,NULL,'DB {#DBNAME}: Commits per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004h4xiydne1dfq2',1,'Admin',1672319418,'192.168.64.1',2,36,31349,NULL,'DB {#DBNAME}: Tuples updated per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004i4xiyxd0xiphh',1,'Admin',1672319418,'192.168.64.1',2,36,31350,NULL,'DB {#DBNAME}: Tuples fetched per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004j4xiy9guhi9cu',1,'Admin',1672319418,'192.168.64.1',2,36,31351,NULL,'DB {#DBNAME}: Tuples inserted per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004k4xiyp0vkow5e',1,'Admin',1672319418,'192.168.64.1',2,36,31352,NULL,'DB {#DBNAME}: Tuples deleted per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004l4xiye3geb0na',1,'Admin',1672319418,'192.168.64.1',2,36,31353,NULL,'DB {#DBNAME}: Temp_files created per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004m4xiyh8vgvmlt',1,'Admin',1672319418,'192.168.64.1',2,36,31354,NULL,'DB {#DBNAME}: Temp_bytes written per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004n4xiyyll65tf1',1,'Admin',1672319418,'192.168.64.1',2,36,31355,NULL,'DB {#DBNAME}: Backends connected','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004o4xiyho1lbm86',1,'Admin',1672319418,'192.168.64.1',2,36,31356,NULL,'DB {#DBNAME}: Detected deadlocks per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004p4xiy2hk3cpqn',1,'Admin',1672319418,'192.168.64.1',2,36,31357,NULL,'DB {#DBNAME}: Detected conflicts per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004q4xiy1o6q9unh',1,'Admin',1672319418,'192.168.64.1',2,36,31358,NULL,'DB {#DBNAME}: Checksum failures','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004r4xiysidb54vh',1,'Admin',1672319418,'192.168.64.1',2,36,31359,NULL,'DB {#DBNAME}: Disk blocks read per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004s4xiy2w3pdw4t',1,'Admin',1672319418,'192.168.64.1',2,36,31360,NULL,'DB {#DBNAME}: Blocks hit per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004t4xiywab6qokm',1,'Admin',1672319418,'192.168.64.1',2,36,31361,NULL,'DB {#DBNAME}: Disk blocks write time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004u4xiywgle6h8c',1,'Admin',1672319418,'192.168.64.1',2,36,31362,NULL,'DB {#DBNAME}: Disk blocks read time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004v4xiy1m4p4rd0',1,'Admin',1672319418,'192.168.64.1',2,36,31363,NULL,'DB {#DBNAME}: Num of total locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004w4xiycg2pyt44',1,'Admin',1672319418,'192.168.64.1',2,36,31433,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004x4xiyk3l57135',1,'Admin',1672319418,'192.168.64.1',2,36,31434,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004y4xiy9tw3otlv',1,'Admin',1672319418,'192.168.64.1',2,36,31435,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004z4xiyt4sg8m6h',1,'Admin',1672319418,'192.168.64.1',2,36,31436,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00504xiyiojo9hl2',1,'Admin',1672319418,'192.168.64.1',2,36,31437,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00514xiy0kzf0a30',1,'Admin',1672319418,'192.168.64.1',2,36,31438,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00524xiyg7zupz9i',1,'Admin',1672319418,'192.168.64.1',2,36,31439,NULL,'{#DEVNAME}: Disk utilization by idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00534xiyzbnwttjh',1,'Admin',1672319418,'192.168.64.1',2,36,31440,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00544xiyeh4c9rcn',1,'Admin',1672319418,'192.168.64.1',2,36,31441,NULL,'{#DEVNAME}: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00554xiyg52u3lrc',1,'Admin',1672319418,'192.168.64.1',2,36,31442,NULL,'{#DEVNAME}: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00564xiyckn0at6i',1,'Admin',1672319418,'192.168.64.1',2,36,31453,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00574xiyn9ckpncr',1,'Admin',1672319418,'192.168.64.1',2,36,31454,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00584xiyxkv0rd89',1,'Admin',1672319418,'192.168.64.1',2,36,31455,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00594xiy3fbhzj5y',1,'Admin',1672319418,'192.168.64.1',2,36,31663,NULL,'VMware: Status of \"{#CLUSTER.NAME}\" cluster','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005a4xiyau43l623',1,'Admin',1672319418,'192.168.64.1',2,36,31664,NULL,'VMware: Average read latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005b4xiy0ph2gfaf',1,'Admin',1672319418,'192.168.64.1',2,36,31665,NULL,'VMware: Free space on datastore {#DATASTORE} (percentage)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005c4xiy863y7a21',1,'Admin',1672319418,'192.168.64.1',2,36,31666,NULL,'VMware: Total size of datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005d4xiy7k79jkrc',1,'Admin',1672319418,'192.168.64.1',2,36,31667,NULL,'VMware: Average write latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005e4xiyvqtnnspm',1,'Admin',1672319418,'192.168.64.1',2,36,32012,NULL,'{#FSLABEL}({#FSNAME}): Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005f4xiyphicd1hw',1,'Admin',1672319418,'192.168.64.1',2,36,32013,NULL,'{#FSLABEL}({#FSNAME}): Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005g4xiy9m6wtfes',1,'Admin',1672319418,'192.168.64.1',2,36,32014,NULL,'{#FSLABEL}({#FSNAME}): Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005h4xiyy4jg1jf9',1,'Admin',1672319418,'192.168.64.1',2,36,32015,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005i4xiyheqdk560',1,'Admin',1672319418,'192.168.64.1',2,36,32016,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005j4xiy28guapr1',1,'Admin',1672319418,'192.168.64.1',2,36,32017,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005k4xiyn2xtsy0p',1,'Admin',1672319418,'192.168.64.1',2,36,32018,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005l4xiy4rqcvhlw',1,'Admin',1672319418,'192.168.64.1',2,36,32019,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005m4xiyayc3khkj',1,'Admin',1672319418,'192.168.64.1',2,36,32020,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005n4xiy1p2zpxjq',1,'Admin',1672319418,'192.168.64.1',2,36,32021,NULL,'{#DEVNAME}: Disk utilization by idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005o4xiy4ovf34f6',1,'Admin',1672319418,'192.168.64.1',2,36,32022,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005p4xiyh9xnvs0l',1,'Admin',1672319418,'192.168.64.1',2,36,32023,NULL,'{#DEVNAME}: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005q4xiy3nhp6gsg',1,'Admin',1672319418,'192.168.64.1',2,36,32024,NULL,'{#DEVNAME}: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005r4xiytm05a05u',1,'Admin',1672319418,'192.168.64.1',2,36,32040,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005s4xiywcirun51',1,'Admin',1672319418,'192.168.64.1',2,36,32041,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005t4xiych7c31y5',1,'Admin',1672319418,'192.168.64.1',2,36,32042,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005u4xiyp2fhaa51',1,'Admin',1672319418,'192.168.64.1',2,36,32935,NULL,'VMware: Number of bytes received on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005v4xiylfj594xl',1,'Admin',1672319418,'192.168.64.1',2,36,32936,NULL,'VMware: Number of packets received on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005w4xiyndn720xd',1,'Admin',1672319418,'192.168.64.1',2,36,32937,NULL,'VMware: Number of bytes transmitted on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005x4xiy68s7g8rl',1,'Admin',1672319418,'192.168.64.1',2,36,32938,NULL,'VMware: Number of packets transmitted on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005y4xiydlq2u54x',1,'Admin',1672319418,'192.168.64.1',2,36,32939,NULL,'VMware: Average number of bytes read from the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005z4xiy5h5xht71',1,'Admin',1672319418,'192.168.64.1',2,36,32940,NULL,'VMware: Average number of reads from the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00604xiy528cl394',1,'Admin',1672319418,'192.168.64.1',2,36,32941,NULL,'VMware: Average number of bytes written to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00614xiyrpgo34se',1,'Admin',1672319418,'192.168.64.1',2,36,32942,NULL,'VMware: Average number of writes to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00624xiy661penac',1,'Admin',1672319418,'192.168.64.1',2,36,32943,NULL,'VMware: Free disk space on {#FSNAME}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00634xiy58krztyz',1,'Admin',1672319418,'192.168.64.1',2,36,32944,NULL,'VMware: Free disk space on {#FSNAME} (percentage)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00644xiymuwjrxuk',1,'Admin',1672319418,'192.168.64.1',2,36,32945,NULL,'VMware: Total disk space on {#FSNAME}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00654xiy4o9twu5z',1,'Admin',1672319418,'192.168.64.1',2,36,32946,NULL,'VMware: Used disk space on {#FSNAME}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00664xiysgj19gik',1,'Admin',1672319418,'192.168.64.1',2,36,32947,NULL,'VMware: Average read latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00674xiypfuqxj5t',1,'Admin',1672319418,'192.168.64.1',2,36,32948,NULL,'VMware: Free space on datastore {#DATASTORE} (percentage)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00684xiyyejgoqt8',1,'Admin',1672319418,'192.168.64.1',2,36,32949,NULL,'VMware: Total size of datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00694xiyx84vmt8p',1,'Admin',1672319418,'192.168.64.1',2,36,32950,NULL,'VMware: Average write latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006a4xiyknen96nr',1,'Admin',1672319418,'192.168.64.1',2,36,32958,NULL,'VMware: Status of \"{#CLUSTER.NAME}\" cluster','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006b4xiyq8zxhiid',1,'Admin',1672319418,'192.168.64.1',2,36,32959,NULL,'VMware: Average read latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006c4xiywh6luq05',1,'Admin',1672319418,'192.168.64.1',2,36,32960,NULL,'VMware: Free space on datastore {#DATASTORE} (percentage)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006d4xiyi24odkb0',1,'Admin',1672319418,'192.168.64.1',2,36,32961,NULL,'VMware: Total size of datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006e4xiybv8anjjo',1,'Admin',1672319418,'192.168.64.1',2,36,32962,NULL,'VMware: Average write latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006f4xiyhc7msbr0',1,'Admin',1672319418,'192.168.64.1',2,36,33178,NULL,'Application {#APPLICATION_NAME}: Replication flush lag','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006g4xiy3jqi1kbf',1,'Admin',1672319418,'192.168.64.1',2,36,33179,NULL,'Application {#APPLICATION_NAME}: Replication replay lag','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006h4xiy35rq03ga',1,'Admin',1672319418,'192.168.64.1',2,36,33180,NULL,'Application {#APPLICATION_NAME}: Replication write lag','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006i4xiyt28mb4z2',1,'Admin',1672319418,'192.168.64.1',2,36,33321,NULL,'{#DEVNAME}: Average disk read queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006j4xiylb7er91w',1,'Admin',1672319418,'192.168.64.1',2,36,33322,NULL,'{#DEVNAME}: Disk read request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006k4xiy2gqetzun',1,'Admin',1672319418,'192.168.64.1',2,36,33323,NULL,'{#DEVNAME}: Disk write request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006l4xiyk3x020vj',1,'Admin',1672319418,'192.168.64.1',2,36,33324,NULL,'{#DEVNAME}: Average disk write queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006m4xiyxpqbigjq',1,'Admin',1672319418,'192.168.64.1',2,36,33329,NULL,'{#DEVNAME}: Average disk read queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006n4xiyp9avdof0',1,'Admin',1672319418,'192.168.64.1',2,36,33330,NULL,'{#DEVNAME}: Disk read request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006o4xiyvkm9zsq3',1,'Admin',1672319418,'192.168.64.1',2,36,33331,NULL,'{#DEVNAME}: Disk write request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006p4xiydmqrpm2m',1,'Admin',1672319418,'192.168.64.1',2,36,33332,NULL,'{#DEVNAME}: Average disk write queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006q4xiym8xabi4k',1,'Admin',1672319418,'192.168.64.1',2,36,33650,NULL,'VMware: Network utilization on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006r4xiyg4ckst1x',1,'Admin',1672319418,'192.168.64.1',2,36,33651,NULL,'VMware: Average number of outstanding read requests to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006s4xiyt9y9jw9r',1,'Admin',1672319418,'192.168.64.1',2,36,33652,NULL,'VMware: Average read latency to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006t4xiynwonpixc',1,'Admin',1672319418,'192.168.64.1',2,36,33653,NULL,'VMware: Average write latency to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006u4xiy6ezyqzvx',1,'Admin',1672319418,'192.168.64.1',2,36,33654,NULL,'VMware: Average number of outstanding write requests to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006v4xiym3cj58yu',1,'Admin',1672319418,'192.168.64.1',2,36,33655,NULL,'VMware: Multipath count for datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006w4xiy4be712zb',1,'Admin',1672319418,'192.168.64.1',2,36,33747,NULL,'RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006x4xiypxo5r95l',1,'Admin',1672319418,'192.168.64.1',2,36,33748,NULL,'RabbitMQ: Healthcheck{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006y4xiyk5bfpssr',1,'Admin',1672319418,'192.168.64.1',2,36,33749,NULL,'RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006z4xiyfiwh8xyn',1,'Admin',1672319418,'192.168.64.1',2,36,33750,NULL,'RabbitMQ: Healthcheck: local alarms in effect on this node{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00704xiyyoyr4w7s',1,'Admin',1672319418,'192.168.64.1',2,36,33751,NULL,'RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00714xiyti0samnw',1,'Admin',1672319418,'192.168.64.1',2,36,33752,NULL,'RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00724xiykffatrn2',1,'Admin',1672319418,'192.168.64.1',2,36,33753,NULL,'RabbitMQ: Healthcheck: virtual hosts on this node{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00734xiyr1gbfra7',1,'Admin',1672319418,'192.168.64.1',2,36,33757,NULL,'RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00744xiyy4e16uz5',1,'Admin',1672319418,'192.168.64.1',2,36,33758,NULL,'RabbitMQ: Healthcheck{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00754xiy1l7kog6t',1,'Admin',1672319418,'192.168.64.1',2,36,33759,NULL,'RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00764xiynzkb0hq0',1,'Admin',1672319418,'192.168.64.1',2,36,33760,NULL,'RabbitMQ: Healthcheck: local alarms in effect on this node{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00774xiyc02gmaii',1,'Admin',1672319418,'192.168.64.1',2,36,33761,NULL,'RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00784xiyfim6w3qx',1,'Admin',1672319418,'192.168.64.1',2,36,33762,NULL,'RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00794xiykzwucjpw',1,'Admin',1672319418,'192.168.64.1',2,36,33763,NULL,'RabbitMQ: Healthcheck: virtual hosts on this node{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007a4xiyexth63u1',1,'Admin',1672319418,'192.168.64.1',2,36,34348,NULL,'TiDB cluster: Number of regions','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007b4xiympavzrsa',1,'Admin',1672319418,'192.168.64.1',2,36,34349,NULL,'TiDB cluster: Current peer count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007c4xiykifmuvz8',1,'Admin',1672319418,'192.168.64.1',2,36,34350,NULL,'TiDB cluster: Storage capacity','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007d4xiy0rr0lb3t',1,'Admin',1672319418,'192.168.64.1',2,36,34351,NULL,'TiDB cluster: Storage size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007e4xiyvth3tw2m',1,'Admin',1672319418,'192.168.64.1',2,36,34352,NULL,'TiDB cluster: Disconnect stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007f4xiyzgcm3fde',1,'Admin',1672319418,'192.168.64.1',2,36,34353,NULL,'TiDB cluster: Down stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007g4xiy4djsb17t',1,'Admin',1672319418,'192.168.64.1',2,36,34354,NULL,'TiDB cluster: Lowspace stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007h4xiyf938qi5r',1,'Admin',1672319418,'192.168.64.1',2,36,34355,NULL,'TiDB cluster: Offline stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007i4xiye3ucrtgz',1,'Admin',1672319418,'192.168.64.1',2,36,34356,NULL,'TiDB cluster: Tombstone stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007j4xiy5ov6xrwu',1,'Admin',1672319418,'192.168.64.1',2,36,34357,NULL,'TiDB cluster: Unhealth stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007k4xiybufskvt5',1,'Admin',1672319418,'192.168.64.1',2,36,34358,NULL,'TiDB cluster: Normal stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007l4xiy035kdhkq',1,'Admin',1672319418,'192.168.64.1',2,36,34359,NULL,'PD: GRPC Commands: {#GRPC_METHOD}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007m4xiyocqpei71',1,'Admin',1672319418,'192.168.64.1',2,36,34360,NULL,'PD: Region heartbeat: error, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007n4xiy5pg3gmpx',1,'Admin',1672319418,'192.168.64.1',2,36,34361,NULL,'PD: Region heartbeat: active, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007o4xiyxei8cb21',1,'Admin',1672319418,'192.168.64.1',2,36,34362,NULL,'PD: Region schedule push: total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007p4xiywp3nfpnh',1,'Admin',1672319418,'192.168.64.1',2,36,34363,NULL,'PD: Region heartbeat: total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007q4xiy7pdpz4yt',1,'Admin',1672319418,'192.168.64.1',2,36,34364,NULL,'TiDB cluster: Regions label: {#TYPE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007r4xiyy13yyuol',1,'Admin',1672319418,'192.168.64.1',2,36,34365,NULL,'TiDB cluster: Regions status: {#TYPE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007s4xiy09g1plm9',1,'Admin',1672319418,'192.168.64.1',2,36,34366,NULL,'TiDB cluster: Scheduler status: {#KIND}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007t4xiycy5p3tsa',1,'Admin',1672319418,'192.168.64.1',2,36,34405,NULL,'TiDB: KV Commands: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007u4xiy7tmu3cp6',1,'Admin',1672319418,'192.168.64.1',2,36,34406,NULL,'TiDB: Server query \"Error\": {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007v4xiy63fdo9nm',1,'Admin',1672319418,'192.168.64.1',2,36,34407,NULL,'TiDB: Server query \"OK\": {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007w4xiyafjbwjhg',1,'Admin',1672319418,'192.168.64.1',2,36,34408,NULL,'TiDB: SQL statements: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007x4xiyal44euz1',1,'Admin',1672319418,'192.168.64.1',2,36,34409,NULL,'TiDB: KV backoff: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007y4xiy24fgiyd4',1,'Admin',1672319418,'192.168.64.1',2,36,34410,NULL,'TiDB: GC action result: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007z4xiykhqusegl',1,'Admin',1672319418,'192.168.64.1',2,36,34411,NULL,'TiDB: Lock resolves: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00804xiyfczejgwb',1,'Admin',1672319418,'192.168.64.1',2,36,34444,NULL,'TiKV: Coprocessor: {#REQ_TYPE} requests, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00814xiympxwswse',1,'Admin',1672319418,'192.168.64.1',2,36,34445,NULL,'TiKV: Coprocessor: {#REQ_TYPE} errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00824xiyymfxyiv4',1,'Admin',1672319418,'192.168.64.1',2,36,34446,NULL,'TiKV: Coprocessor: {#REQ_TYPE} RocksDB ops, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00834xiygqgpk5f7',1,'Admin',1672319418,'192.168.64.1',2,36,34447,NULL,'TiKV: Coprocessor: {#REQ_TYPE} scan keys, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00844xiypmhdrqls',1,'Admin',1672319418,'192.168.64.1',2,36,34448,NULL,'TiKV: Query: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00854xiyes5t5uxw',1,'Admin',1672319418,'192.168.64.1',2,36,34449,NULL,'TiKV: Scheduler: commands {#STAGE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00864xiy0bgegwfr',1,'Admin',1672319418,'192.168.64.1',2,36,34450,NULL,'TiKV: Store_id {#STORE_ID}: failure messages \"{#TYPE}\", rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00874xiyomn840fn',1,'Admin',1672319418,'192.168.64.1',2,36,34944,NULL,'WildFly deployment [{#DEPLOYMENT}]: Enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00884xiybxxbiftf',1,'Admin',1672319418,'192.168.64.1',2,36,34945,NULL,'WildFly deployment [{#DEPLOYMENT}]: Managed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00894xiy4ysnwzcw',1,'Admin',1672319418,'192.168.64.1',2,36,34946,NULL,'WildFly domain: Server {#SERVER}: Autostart','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008a4xiyb7ty7i5c',1,'Admin',1672319418,'192.168.64.1',2,36,34947,NULL,'WildFly domain: Server {#SERVER}: Server group','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008b4xiycft2zg65',1,'Admin',1672319418,'192.168.64.1',2,36,34948,NULL,'WildFly domain: Server {#SERVER}: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008c4xiyr6sy38hn',1,'Admin',1672319418,'192.168.64.1',2,36,34970,NULL,'WildFly deployment [{#DEPLOYMENT}]: Enabled time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008d4xiykwx3uc3e',1,'Admin',1672319418,'192.168.64.1',2,36,34971,NULL,'WildFly deployment [{#DEPLOYMENT}]: Enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008e4xiyupk6ooy8',1,'Admin',1672319418,'192.168.64.1',2,36,34972,NULL,'WildFly deployment [{#DEPLOYMENT}]: Managed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008f4xiye8onuizt',1,'Admin',1672319418,'192.168.64.1',2,36,34973,NULL,'WildFly deployment [{#DEPLOYMENT}]: Persistent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008g4xiyhd62cm6v',1,'Admin',1672319418,'192.168.64.1',2,36,34974,NULL,'WildFly deployment [{#DEPLOYMENT}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008h4xiyskjya28q',1,'Admin',1672319418,'192.168.64.1',2,36,34975,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache access, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008i4xiyzcvs8vnv',1,'Admin',1672319418,'192.168.64.1',2,36,34976,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache add, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008j4xiy87rlxupp',1,'Admin',1672319418,'192.168.64.1',2,36,34977,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache current size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008k4xiy2k85kdg6',1,'Admin',1672319418,'192.168.64.1',2,36,34978,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache delete, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008l4xiylm1yj1sa',1,'Admin',1672319418,'192.168.64.1',2,36,34979,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache hit, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008m4xiyrxt9agny',1,'Admin',1672319418,'192.168.64.1',2,36,34980,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache miss, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008n4xiyezx69vfv',1,'Admin',1672319418,'192.168.64.1',2,36,34981,NULL,'WildFly {#JMX_DATA_SOURCE}: Statistics enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008o4xiyr470igy9',1,'Admin',1672319418,'192.168.64.1',2,36,34982,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Active','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008p4xiy0n21r11n',1,'Admin',1672319418,'192.168.64.1',2,36,34983,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Commit time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008q4xiy0usihsks',1,'Admin',1672319418,'192.168.64.1',2,36,34984,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Start time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008r4xiykiv4r32o',1,'Admin',1672319418,'192.168.64.1',2,36,34985,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Rollback, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008s4xiyyphdvigr',1,'Admin',1672319418,'192.168.64.1',2,36,34986,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Rollback time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008t4xiyi3j3qqmr',1,'Admin',1672319418,'192.168.64.1',2,36,34987,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Recover, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008u4xiyv8776b8y',1,'Admin',1672319418,'192.168.64.1',2,36,34988,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Recover time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008v4xiy0apfibpe',1,'Admin',1672319418,'192.168.64.1',2,36,34989,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Prepare, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008w4xiyru31lehx',1,'Admin',1672319418,'192.168.64.1',2,36,34990,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Prepare time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008x4xiyjcw7umb8',1,'Admin',1672319418,'192.168.64.1',2,36,34991,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Forget, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008y4xiy4svr7082',1,'Admin',1672319418,'192.168.64.1',2,36,34992,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Forget time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008z4xiyvw2jyx1h',1,'Admin',1672319418,'192.168.64.1',2,36,34993,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: End, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00904xiyaeuu4btz',1,'Admin',1672319418,'192.168.64.1',2,36,34994,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: End time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00914xiylsfd1iu7',1,'Admin',1672319418,'192.168.64.1',2,36,34995,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Commit, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00924xiyb9ng2ltk',1,'Admin',1672319418,'192.168.64.1',2,36,34996,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Wait','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00934xiy09ncy000',1,'Admin',1672319418,'192.168.64.1',2,36,34997,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Available','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00944xiyiq8wyo7h',1,'Admin',1672319418,'192.168.64.1',2,36,34998,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Timed out, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00954xiy70hxuq5z',1,'Admin',1672319418,'192.168.64.1',2,36,34999,NULL,'WildFly {#JMX_DATA_SOURCE}: Statistics enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00964xiysvydm4c2',1,'Admin',1672319418,'192.168.64.1',2,36,35000,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Used, max','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00974xiy8psy5gfo',1,'Admin',1672319418,'192.168.64.1',2,36,35001,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: In use','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00984xiyc1blqohn',1,'Admin',1672319418,'192.168.64.1',2,36,35002,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Idle','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00994xiyf5ab23op',1,'Admin',1672319418,'192.168.64.1',2,36,35003,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Destroyed, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009a4xiy83lnevkc',1,'Admin',1672319418,'192.168.64.1',2,36,35004,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Created, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009b4xiyoe5xtan3',1,'Admin',1672319418,'192.168.64.1',2,36,35005,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Blocking failure, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009c4xiydtvoi5nm',1,'Admin',1672319418,'192.168.64.1',2,36,35006,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Usage time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009d4xiyy39qwggq',1,'Admin',1672319418,'192.168.64.1',2,36,35007,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Pool time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009e4xiy8khdsmv0',1,'Admin',1672319418,'192.168.64.1',2,36,35008,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Get time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009f4xiyj86a0fhk',1,'Admin',1672319418,'192.168.64.1',2,36,35009,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Creating time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009g4xiy5ptdskr2',1,'Admin',1672319418,'192.168.64.1',2,36,35010,NULL,'WildFly {#JMX_DATA_SOURCE}: Blocking time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009h4xiy4kbeg6q5',1,'Admin',1672319418,'192.168.64.1',2,36,35011,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Start rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009i4xiyte8etkf5',1,'Admin',1672319418,'192.168.64.1',2,36,35012,NULL,'WildFly listener {#HTTP_LISTENER}: Bytes received, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009j4xiy226m865p',1,'Admin',1672319418,'192.168.64.1',2,36,35013,NULL,'WildFly listener {#HTTP_LISTENER}: Bytes sent, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009k4xiykezpo0dr',1,'Admin',1672319418,'192.168.64.1',2,36,35014,NULL,'WildFly listener {#HTTP_LISTENER}: Errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009l4xiy77p0dsmi',1,'Admin',1672319418,'192.168.64.1',2,36,35015,NULL,'WildFly listener {#HTTP_LISTENER}: Requests, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009m4xiyzfc7kyzk',1,'Admin',1672319418,'192.168.64.1',2,36,35264,NULL,'{#UNIT.NAME}: Get unit info','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009n4xiy0qzhhfbh',1,'Admin',1672319418,'192.168.64.1',2,36,35265,NULL,'{#UNIT.NAME}: Get unit info','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009o4xiyargh0lmd',1,'Admin',1672319418,'192.168.64.1',2,36,35266,NULL,'{#UNIT.NAME}: Active state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009p4xiyqlskcsz7',1,'Admin',1672319418,'192.168.64.1',2,36,35267,NULL,'{#UNIT.NAME}: Load state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009q4xiyrg4cbf7v',1,'Admin',1672319418,'192.168.64.1',2,36,35268,NULL,'{#UNIT.NAME}: Unit file state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009r4xiyzah5v3s0',1,'Admin',1672319418,'192.168.64.1',2,36,35269,NULL,'{#UNIT.NAME}: Active time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009s4xiy9iwyqyvt',1,'Admin',1672319418,'192.168.64.1',2,36,35270,NULL,'{#UNIT.NAME}: Connections accepted per sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009t4xiyaap4ybdg',1,'Admin',1672319418,'192.168.64.1',2,36,35271,NULL,'{#UNIT.NAME}: Connections connected','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009u4xiyjtklcpy1',1,'Admin',1672319418,'192.168.64.1',2,36,36782,NULL,'Travis: Repo [{#SLUG}]: Builds passed, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009v4xiy3gcsjqd7',1,'Admin',1672319418,'192.168.64.1',2,36,36783,NULL,'Travis: Repo [{#SLUG}]: Get builds','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009w4xiym6wx4uiw',1,'Admin',1672319418,'192.168.64.1',2,36,36784,NULL,'Travis: Repo [{#SLUG}]: Get caches','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009x4xiyv1k5cc56',1,'Admin',1672319418,'192.168.64.1',2,36,36785,NULL,'Travis: Repo [{#SLUG}]: Builds failed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009y4xiy1rn9sl2x',1,'Admin',1672319418,'192.168.64.1',2,36,36786,NULL,'Travis: Repo [{#SLUG}]: Builds passed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009z4xiyw2ojrfl3',1,'Admin',1672319418,'192.168.64.1',2,36,36787,NULL,'Travis: Repo [{#SLUG}]: Builds total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a04xiy40mae56c',1,'Admin',1672319418,'192.168.64.1',2,36,36788,NULL,'Travis: Repo [{#SLUG}]: Cache files','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a14xiyv8ciw4je',1,'Admin',1672319418,'192.168.64.1',2,36,36789,NULL,'Travis: Repo [{#SLUG}]: Cache size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a24xiyqegkhsvo',1,'Admin',1672319418,'192.168.64.1',2,36,36790,NULL,'Travis: Repo [{#SLUG}]: Description','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a34xiydchbn6t6',1,'Admin',1672319418,'192.168.64.1',2,36,36791,NULL,'Travis: Repo [{#SLUG}]: Last build duration','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a44xiyxye1ojxm',1,'Admin',1672319418,'192.168.64.1',2,36,36792,NULL,'Travis: Repo [{#SLUG}]: Last build id','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a54xiy62g64dw2',1,'Admin',1672319418,'192.168.64.1',2,36,36793,NULL,'Travis: Repo [{#SLUG}]: Last build number','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a64xiy8d96nw11',1,'Admin',1672319418,'192.168.64.1',2,36,36794,NULL,'Travis: Repo [{#SLUG}]: Last build state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a74xiyeelp8moi',1,'Admin',1672319418,'192.168.64.1',2,36,39754,NULL,'Edge [{#NAME}]: Activation state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a84xiy4nxql9o6',1,'Admin',1672319418,'192.168.64.1',2,36,39755,NULL,'Edge [{#NAME}]: Description','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a94xiyignxb17q',1,'Admin',1672319418,'192.168.64.1',2,36,39756,NULL,'Edge [{#NAME}]: HA state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00aa4xiyoqjv9v6o',1,'Admin',1672319418,'192.168.64.1',2,36,39757,NULL,'Edge [{#NAME}]: Model number','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ab4xiynt1qf0ns',1,'Admin',1672319418,'192.168.64.1',2,36,39758,NULL,'Edge [{#NAME}]: Service uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ac4xiyplee5lfx',1,'Admin',1672319418,'192.168.64.1',2,36,39759,NULL,'Edge [{#NAME}]: Software version','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ad4xiy0ec0wtna',1,'Admin',1672319418,'192.168.64.1',2,36,39760,NULL,'Edge [{#NAME}]: State','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ae4xiymzk6xb33',1,'Admin',1672319418,'192.168.64.1',2,36,39761,NULL,'Edge [{#NAME}]: System uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00af4xiye49bn1bc',1,'Admin',1672319418,'192.168.64.1',2,36,39762,NULL,'Gateway [{#NAME}]: Connected edges','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ag4xiy9vt8c71b',1,'Admin',1672319418,'192.168.64.1',2,36,39763,NULL,'Gateway [{#NAME}]: Description','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ah4xiypxin2g5e',1,'Admin',1672319418,'192.168.64.1',2,36,39764,NULL,'Gateway [{#NAME}]: IP address','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ai4xiyu2mqq1rw',1,'Admin',1672319418,'192.168.64.1',2,36,39765,NULL,'Gateway [{#NAME}]: Service uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00aj4xiy05jdkag7',1,'Admin',1672319418,'192.168.64.1',2,36,39766,NULL,'Gateway [{#NAME}]: State','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ak4xiy07cwmgxk',1,'Admin',1672319418,'192.168.64.1',2,36,39767,NULL,'Gateway [{#NAME}]: System uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00al4xiyr42c4wk0',1,'Admin',1672319418,'192.168.64.1',2,36,39768,NULL,'Gateway [{#NAME}]: Utilization CPU','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00am4xiypr2g1v3i',1,'Admin',1672319418,'192.168.64.1',2,36,39769,NULL,'Gateway [{#NAME}]: Utilization load','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00an4xiyx196afdt',1,'Admin',1672319418,'192.168.64.1',2,36,39770,NULL,'Gateway [{#NAME}]: Utilization memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ao4xiy3vsh9zki',1,'Admin',1672319418,'192.168.64.1',2,36,39771,NULL,'Gateway [{#NAME}]: Utilization overall','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ap4xiyqan6povk',1,'Admin',1672319418,'192.168.64.1',2,36,39772,NULL,'Link [{#NAME}]:[{#IP}]: Best loss rx, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00aq4xiy30w6os3u',1,'Admin',1672319418,'192.168.64.1',2,36,39773,NULL,'Link [{#NAME}]:[{#IP}]: Best loss tx, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ar4xiyuxtcntac',1,'Admin',1672319418,'192.168.64.1',2,36,39774,NULL,'Link [{#NAME}]:[{#IP}]: Bytes in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00as4xiyca8qysf5',1,'Admin',1672319418,'192.168.64.1',2,36,39775,NULL,'Link [{#NAME}]:[{#IP}]: Bytes out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00at4xiys8a49qhz',1,'Admin',1672319418,'192.168.64.1',2,36,39776,NULL,'Link [{#NAME}]:[{#IP}]: Last active','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00au4xiyjfjsz808',1,'Admin',1672319418,'192.168.64.1',2,36,39777,NULL,'Link [{#NAME}]:[{#IP}]: Packets in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00av4xiyt56xlj85',1,'Admin',1672319418,'192.168.64.1',2,36,39778,NULL,'Link [{#NAME}]:[{#IP}]: Packets out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00aw4xiy63axwxxx',1,'Admin',1672319418,'192.168.64.1',2,36,39779,NULL,'Link [{#NAME}]:[{#IP}]: State','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ax4xiyelt26rwn',1,'Admin',1672319418,'192.168.64.1',2,36,39780,NULL,'Link [{#NAME}]:[{#IP}]: Total bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ay4xiy2ddlplwc',1,'Admin',1672319418,'192.168.64.1',2,36,39781,NULL,'Link [{#NAME}]:[{#IP}]: Total packets','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00az4xiyq1lc44qo',1,'Admin',1672319418,'192.168.64.1',2,36,39782,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b04xiya6a83hu4',1,'Admin',1672319418,'192.168.64.1',2,36,39783,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b14xiyr5yr0d0e',1,'Admin',1672319418,'192.168.64.1',2,36,39784,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packets in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b24xiyd6luofzf',1,'Admin',1672319418,'192.168.64.1',2,36,39785,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packets out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b34xiyz92k4ocq',1,'Admin',1672319418,'192.168.64.1',2,36,39786,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packet Loss in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b44xiyort73abv',1,'Admin',1672319418,'192.168.64.1',2,36,39787,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packet Loss out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b54xiyzu2mov6l',1,'Admin',1672319418,'192.168.64.1',2,36,39788,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b64xiy3q35g0eu',1,'Admin',1672319418,'192.168.64.1',2,36,39789,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Total packets','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b74xiyryw3uwes',1,'Admin',1672319418,'192.168.64.1',2,36,39790,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Dead path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b84xiymlybzf47',1,'Admin',1672319418,'192.168.64.1',2,36,39791,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Description','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b94xiy7c477v60',1,'Admin',1672319418,'192.168.64.1',2,36,39792,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Stable path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ba4xiyt10pr8ie',1,'Admin',1672319418,'192.168.64.1',2,36,39793,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Standby path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bb4xiyu7hgw9qi',1,'Admin',1672319418,'192.168.64.1',2,36,39794,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Total path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bc4xiy0adckkl7',1,'Admin',1672319418,'192.168.64.1',2,36,39795,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Unknown path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bd4xiy24luhbbr',1,'Admin',1672319418,'192.168.64.1',2,36,39796,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Unstable path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00be4xiy1ir3j1he',1,'Admin',1672319418,'192.168.64.1',2,36,39817,NULL,'Cluster node [{#NODE.NAME}]: Address','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bf4xiyb9ioaks4',1,'Admin',1672319418,'192.168.64.1',2,36,39818,NULL,'Cluster node [{#NODE.NAME}]: Last access age','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bg4xiy6r41tz54',1,'Admin',1672319418,'192.168.64.1',2,36,39819,NULL,'Cluster node [{#NODE.NAME}]: Last access time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bh4xiy5sz9fp1x',1,'Admin',1672319418,'192.168.64.1',2,36,39820,NULL,'Cluster node [{#NODE.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bi4xiylp7p9n59',1,'Admin',1672319418,'192.168.64.1',2,36,42123,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bj4xiyayoxk4i6',1,'Admin',1672319418,'192.168.64.1',2,36,42124,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bk4xiyx144gelf',1,'Admin',1672319418,'192.168.64.1',2,36,42125,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bl4xiyfjionqvf',1,'Admin',1672319418,'192.168.64.1',2,36,42126,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bm4xiyzf9j92wd',1,'Admin',1672319418,'192.168.64.1',2,36,42127,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bn4xiylljwdbh8',1,'Admin',1672319418,'192.168.64.1',2,36,42128,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bo4xiyskn6a6bu',1,'Admin',1672319418,'192.168.64.1',2,36,42129,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bp4xiyu7apdvqw',1,'Admin',1672319418,'192.168.64.1',2,36,42130,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bq4xiyrum2qrbg',1,'Admin',1672319418,'192.168.64.1',2,36,42131,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00br4xiyofpqgl0y',1,'Admin',1672319418,'192.168.64.1',2,36,42132,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bs4xiyp1klkj3w',1,'Admin',1672319418,'192.168.64.1',2,36,42145,NULL,'Interface {#IFDESCR}: Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bt4xiy01z2p0oj',1,'Admin',1672319418,'192.168.64.1',2,36,42146,NULL,'Interface {#IFDESCR}: Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bu4xiyjku0c1da',1,'Admin',1672319418,'192.168.64.1',2,36,42147,NULL,'Interface {#IFDESCR}: Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bv4xiyld5ckqv9',1,'Admin',1672319418,'192.168.64.1',2,36,42148,NULL,'Interface {#IFDESCR}: Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bw4xiy0d4n96ox',1,'Admin',1672319418,'192.168.64.1',2,36,42149,NULL,'Interface {#IFDESCR}: Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bx4xiy4zjnpya0',1,'Admin',1672319418,'192.168.64.1',2,36,42150,NULL,'Interface {#IFDESCR}: Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00by4xiy1kvv6c6v',1,'Admin',1672319418,'192.168.64.1',2,36,42151,NULL,'Interface {#IFDESCR}: Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bz4xiypuf7zyhr',1,'Admin',1672319418,'192.168.64.1',2,36,42152,NULL,'Interface {#IFDESCR}: Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c04xiya6sigiec',1,'Admin',1672319418,'192.168.64.1',2,36,42153,NULL,'Interface {#IFDESCR}: Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c14xiyk09dcx2s',1,'Admin',1672319418,'192.168.64.1',2,36,42166,NULL,'Interface {#IFDESCR}: Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c24xiy9rzd3wms',1,'Admin',1672319418,'192.168.64.1',2,36,42167,NULL,'Interface {#IFDESCR}: Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c34xiy2sxhq5kd',1,'Admin',1672319418,'192.168.64.1',2,36,42168,NULL,'Interface {#IFDESCR}: Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c44xiyf15t436g',1,'Admin',1672319418,'192.168.64.1',2,36,42169,NULL,'Interface {#IFDESCR}: Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c54xiyb8a9pv9h',1,'Admin',1672319418,'192.168.64.1',2,36,42170,NULL,'Interface {#IFDESCR}: Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c64xiyepmp6neu',1,'Admin',1672319418,'192.168.64.1',2,36,42171,NULL,'Interface {#IFDESCR}: Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c74xiyndlbyon0',1,'Admin',1672319418,'192.168.64.1',2,36,42172,NULL,'Interface {#IFDESCR}: Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c84xiyugh0gjn1',1,'Admin',1672319418,'192.168.64.1',2,36,42173,NULL,'Interface {#IFDESCR}: Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c94xiy287a2t1t',1,'Admin',1672319418,'192.168.64.1',2,36,42174,NULL,'Interface {#IFDESCR}: Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ca4xiys1yiuwdy',1,'Admin',1672319418,'192.168.64.1',2,36,42491,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cb4xiyfdgv9qj2',1,'Admin',1672319418,'192.168.64.1',2,36,42492,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cc4xiyvlky2eqj',1,'Admin',1672319418,'192.168.64.1',2,36,42493,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cd4xiyqlf5617q',1,'Admin',1672319418,'192.168.64.1',2,36,42494,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ce4xiy3gie3fc3',1,'Admin',1672319418,'192.168.64.1',2,36,42495,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cf4xiy96wfznxx',1,'Admin',1672319418,'192.168.64.1',2,36,42496,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cg4xiy8jy0h7v2',1,'Admin',1672319418,'192.168.64.1',2,36,42497,NULL,'{#DEVNAME}: Disk utilization by idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ch4xiydx4qbwa7',1,'Admin',1672319418,'192.168.64.1',2,36,42498,NULL,'{#DEVNAME}: Average disk read queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ci4xiymr5l6u8l',1,'Admin',1672319418,'192.168.64.1',2,36,42499,NULL,'{#DEVNAME}: Disk read request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cj4xiyxv3eq7u7',1,'Admin',1672319418,'192.168.64.1',2,36,42500,NULL,'{#DEVNAME}: Disk write request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ck4xiyzcouc7ov',1,'Admin',1672319418,'192.168.64.1',2,36,42501,NULL,'{#DEVNAME}: Average disk write queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cl4xiy5r73abzh',1,'Admin',1672319418,'192.168.64.1',2,36,42502,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cm4xiyai1v1g2x',1,'Admin',1672319418,'192.168.64.1',2,36,42503,NULL,'{#DEVNAME}: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cn4xiy32irq94s',1,'Admin',1672319418,'192.168.64.1',2,36,42504,NULL,'{#DEVNAME}: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00co4xiybkes8y9h',1,'Admin',1672319418,'192.168.64.1',2,36,42505,NULL,'State of service \"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME})','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cp4xiy8ghtys67',1,'Admin',1672319418,'192.168.64.1',2,36,42506,NULL,'{#FSLABEL}({#FSNAME}): Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cq4xiyymfv8spc',1,'Admin',1672319418,'192.168.64.1',2,36,42507,NULL,'{#FSLABEL}({#FSNAME}): Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cr4xiyfy48zq91',1,'Admin',1672319418,'192.168.64.1',2,36,42508,NULL,'{#FSLABEL}({#FSNAME}): Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cs4xiyegqdklxg',1,'Admin',1672319418,'192.168.64.1',2,36,42509,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ct4xiy5q1kllpk',1,'Admin',1672319418,'192.168.64.1',2,36,42510,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cu4xiyhrw4uxqq',1,'Admin',1672319418,'192.168.64.1',2,36,42511,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cv4xiys0slyuit',1,'Admin',1672319418,'192.168.64.1',2,36,42547,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cw4xiyyad858zl',1,'Admin',1672319418,'192.168.64.1',2,36,42548,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cx4xiyu1s7ivdw',1,'Admin',1672319418,'192.168.64.1',2,36,42549,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cy4xiy97a63x34',1,'Admin',1672319418,'192.168.64.1',2,36,42550,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cz4xiyvdbi7tcm',1,'Admin',1672319418,'192.168.64.1',2,36,42551,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d04xiyrp6ltl1j',1,'Admin',1672319418,'192.168.64.1',2,36,42552,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d14xiys2a8950u',1,'Admin',1672319418,'192.168.64.1',2,36,42553,NULL,'{#DEVNAME}: Disk utilization by idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d24xiymhm37go3',1,'Admin',1672319418,'192.168.64.1',2,36,42554,NULL,'{#DEVNAME}: Average disk read queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d34xiyyu620lzd',1,'Admin',1672319418,'192.168.64.1',2,36,42555,NULL,'{#DEVNAME}: Disk read request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d44xiyh9rf4yfs',1,'Admin',1672319418,'192.168.64.1',2,36,42556,NULL,'{#DEVNAME}: Disk write request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d54xiy2ej3sce8',1,'Admin',1672319418,'192.168.64.1',2,36,42557,NULL,'{#DEVNAME}: Average disk write queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d64xiyi2tzuu47',1,'Admin',1672319418,'192.168.64.1',2,36,42558,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d74xiy04r1bpwh',1,'Admin',1672319418,'192.168.64.1',2,36,42559,NULL,'{#DEVNAME}: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d84xiylsxt0w5r',1,'Admin',1672319418,'192.168.64.1',2,36,42560,NULL,'{#DEVNAME}: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d94xiyypwkzu8g',1,'Admin',1672319418,'192.168.64.1',2,36,42561,NULL,'State of service \"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME})','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00da4xiyddqi85jg',1,'Admin',1672319418,'192.168.64.1',2,36,42562,NULL,'{#FSLABEL}({#FSNAME}): Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00db4xiyt8hf5utu',1,'Admin',1672319418,'192.168.64.1',2,36,42563,NULL,'{#FSLABEL}({#FSNAME}): Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dc4xiy6uzs5czu',1,'Admin',1672319418,'192.168.64.1',2,36,42564,NULL,'{#FSLABEL}({#FSNAME}): Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dd4xiyd8vbwj93',1,'Admin',1672319418,'192.168.64.1',2,36,42565,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00de4xiyycvz7lty',1,'Admin',1672319418,'192.168.64.1',2,36,42566,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00df4xiyvt6hf0ri',1,'Admin',1672319418,'192.168.64.1',2,36,42567,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dg4xiy17ykujga',1,'Admin',1672319418,'192.168.64.1',2,36,42583,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dh4xiy6bv31wg6',1,'Admin',1672319418,'192.168.64.1',2,36,42584,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00di4xiyvkowqifd',1,'Admin',1672319418,'192.168.64.1',2,36,42585,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dj4xiyvxlb2q4b',1,'Admin',1672319418,'192.168.64.1',2,36,42586,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dk4xiy6snv7wtr',1,'Admin',1672319418,'192.168.64.1',2,36,42587,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dl4xiybxfw8q5n',1,'Admin',1672319418,'192.168.64.1',2,36,42588,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dm4xiypbiqqbvc',1,'Admin',1672319418,'192.168.64.1',2,36,42589,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dn4xiyklb8cx5m',1,'Admin',1672319418,'192.168.64.1',2,36,42590,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00do4xiyu2z3yshs',1,'Admin',1672319418,'192.168.64.1',2,36,42591,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dp4xiy6cb9akmu',1,'Admin',1672319418,'192.168.64.1',2,36,42592,NULL,'{#FSNAME}: Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dq4xiytzlonmky',1,'Admin',1672319418,'192.168.64.1',2,36,42593,NULL,'{#FSNAME}: Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dr4xiyxt7r9cba',1,'Admin',1672319418,'192.168.64.1',2,36,42594,NULL,'{#FSNAME}: Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ds4xiy84twomdt',1,'Admin',1672319418,'192.168.64.1',2,36,42595,NULL,'{#MEMNAME}: Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dt4xiyq8wkf0w9',1,'Admin',1672319418,'192.168.64.1',2,36,42596,NULL,'{#MEMNAME}: Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00du4xiy8jx95btc',1,'Admin',1672319418,'192.168.64.1',2,36,42597,NULL,'{#MEMNAME}: Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dv4xiyubhpn5ir',1,'Admin',1672319418,'192.168.64.1',2,36,42746,NULL,'Proxmox: LXC [{#LXC.NAME}/{#LXC.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dw4xiydmu0p27w',1,'Admin',1672319418,'192.168.64.1',2,36,42747,NULL,'Proxmox: Node [{#NODE.NAME}]: Time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dx4xiy3hv516g8',1,'Admin',1672319418,'192.168.64.1',2,36,42748,NULL,'Proxmox: Node [{#NODE.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dy4xiy3mil126f',1,'Admin',1672319418,'192.168.64.1',2,36,42749,NULL,'Proxmox: Node [{#NODE.NAME}]: RRD statistics','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dz4xiyrs02t6gz',1,'Admin',1672319418,'192.168.64.1',2,36,42750,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e04xiyk08h7c6a',1,'Admin',1672319418,'192.168.64.1',2,36,42751,NULL,'Proxmox: Cluster [{#RESOURCE.NAME}]: Quorate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e14xiyyigth0rz',1,'Admin',1672319418,'192.168.64.1',2,36,42752,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e24xiyiwtnkx7q',1,'Admin',1672319418,'192.168.64.1',2,36,42753,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk read, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e34xiy8ob9sj12',1,'Admin',1672319418,'192.168.64.1',2,36,42754,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk write, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e44xiyl9hbq2kw',1,'Admin',1672319418,'192.168.64.1',2,36,42755,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e54xiyyis8xnws',1,'Admin',1672319418,'192.168.64.1',2,36,42756,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e64xiyofhphiv0',1,'Admin',1672319418,'192.168.64.1',2,36,42757,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Incoming data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e74xiyf2ug93xq',1,'Admin',1672319418,'192.168.64.1',2,36,42758,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Outgoing data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e84xiyssvsy4cf',1,'Admin',1672319418,'192.168.64.1',2,36,42759,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e94xiycoxcgsvp',1,'Admin',1672319418,'192.168.64.1',2,36,42760,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ea4xiyenpcy4y2',1,'Admin',1672319418,'192.168.64.1',2,36,42761,NULL,'Proxmox: Node [{#NODE.NAME}]: CPU, usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eb4xiy9htsi4s6',1,'Admin',1672319418,'192.168.64.1',2,36,42762,NULL,'Proxmox: Node [{#NODE.NAME}]: Root filesystem, total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ec4xiy2pa8evg5',1,'Admin',1672319418,'192.168.64.1',2,36,42763,NULL,'Proxmox: Node [{#NODE.NAME}]: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ed4xiya5b1twx3',1,'Admin',1672319418,'192.168.64.1',2,36,42764,NULL,'Proxmox: Node [{#NODE.NAME}]: Time zone','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ee4xiyqi7rq1w9',1,'Admin',1672319418,'192.168.64.1',2,36,42765,NULL,'Proxmox: Node [{#NODE.NAME}]: Swap filesystem, used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ef4xiymdcy5q9x',1,'Admin',1672319418,'192.168.64.1',2,36,42766,NULL,'Proxmox: Node [{#NODE.NAME}]: Swap filesystem, total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eg4xiyp0wmbu7z',1,'Admin',1672319418,'192.168.64.1',2,36,42767,NULL,'Proxmox: Node [{#NODE.NAME}]: Root filesystem, used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eh4xiyuirfzrvv',1,'Admin',1672319418,'192.168.64.1',2,36,42768,NULL,'Proxmox: Node [{#NODE.NAME}]: PVE version','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ei4xiyftn6qw2j',1,'Admin',1672319418,'192.168.64.1',2,36,42769,NULL,'Proxmox: Node [{#NODE.NAME}]: CPU, iowait','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ej4xiylbyqth1g',1,'Admin',1672319418,'192.168.64.1',2,36,42770,NULL,'Proxmox: Node [{#NODE.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ek4xiyv94fzala',1,'Admin',1672319418,'192.168.64.1',2,36,42771,NULL,'Proxmox: Node [{#NODE.NAME}]: Outgoing data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00el4xiyyw2z4nwp',1,'Admin',1672319418,'192.168.64.1',2,36,42772,NULL,'Proxmox: Node [{#NODE.NAME}]: Incoming data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00em4xiy57lffyko',1,'Admin',1672319418,'192.168.64.1',2,36,42773,NULL,'Proxmox: Node [{#NODE.NAME}]: Memory, used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00en4xiyczgio2zf',1,'Admin',1672319418,'192.168.64.1',2,36,42774,NULL,'Proxmox: Node [{#NODE.NAME}]: Memory, total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eo4xiyf1hyg6gg',1,'Admin',1672319418,'192.168.64.1',2,36,42775,NULL,'Proxmox: Node [{#NODE.NAME}]: Localtime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ep4xiybqsc86w7',1,'Admin',1672319418,'192.168.64.1',2,36,42776,NULL,'Proxmox: Node [{#NODE.NAME}]: CPU, loadavg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eq4xiyejrisazx',1,'Admin',1672319418,'192.168.64.1',2,36,42777,NULL,'Proxmox: Node [{#NODE.NAME}]: Kernel version','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00er4xiy85z8smu6',1,'Admin',1672319418,'192.168.64.1',2,36,42778,NULL,'Proxmox: Node [{#NODE.NAME}]: Time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00es4xiy6hoxyygd',1,'Admin',1672319418,'192.168.64.1',2,36,42779,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00et4xiy7vtkl5am',1,'Admin',1672319418,'192.168.64.1',2,36,42780,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk read, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eu4xiy5mvgz0gx',1,'Admin',1672319418,'192.168.64.1',2,36,42781,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk write, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ev4xiyzdwyvde2',1,'Admin',1672319418,'192.168.64.1',2,36,42782,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ew4xiy0rlh4uk3',1,'Admin',1672319418,'192.168.64.1',2,36,42783,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ex4xiy2zo64a27',1,'Admin',1672319418,'192.168.64.1',2,36,42784,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Incoming data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ey4xiy61nalhdy',1,'Admin',1672319418,'192.168.64.1',2,36,42785,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Outgoing data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ez4xiyjvfyus3h',1,'Admin',1672319418,'192.168.64.1',2,36,42786,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f04xiyz8v09taj',1,'Admin',1672319418,'192.168.64.1',2,36,42787,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f14xiy3tqjmrcq',1,'Admin',1672319418,'192.168.64.1',2,36,42788,NULL,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Content','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f24xiype9rkhs3',1,'Admin',1672319418,'192.168.64.1',2,36,42789,NULL,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f34xiyejvacgkq',1,'Admin',1672319418,'192.168.64.1',2,36,42790,NULL,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f44xiy3tfkx67w',1,'Admin',1672319418,'192.168.64.1',2,36,42791,NULL,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f54xiygau1xbr1',1,'Admin',1672319418,'192.168.64.1',2,36,42841,NULL,'TrueNAS: CPU idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f64xiyhu31g3ry',1,'Admin',1672319418,'192.168.64.1',2,36,42842,NULL,'TrueNAS: CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f74xiycz10binu',1,'Admin',1672319418,'192.168.64.1',2,36,42843,NULL,'TrueNAS: CPU iowait time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f84xiyp5ui9it5',1,'Admin',1672319418,'192.168.64.1',2,36,42844,NULL,'TrueNAS: CPU nice time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f94xiynjeei455',1,'Admin',1672319418,'192.168.64.1',2,36,42845,NULL,'TrueNAS: CPU system time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fa4xiycymkeqyq',1,'Admin',1672319418,'192.168.64.1',2,36,42846,NULL,'TrueNAS: CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fb4xiyb9z7up10',1,'Admin',1672319418,'192.168.64.1',2,36,42847,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fc4xiyxz92en8p',1,'Admin',1672319418,'192.168.64.1',2,36,42848,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fd4xiyy949t8n0',1,'Admin',1672319418,'192.168.64.1',2,36,42849,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fe4xiyht341fhf',1,'Admin',1672319418,'192.168.64.1',2,36,42850,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ff4xiyyyenm1j7',1,'Admin',1672319418,'192.168.64.1',2,36,42851,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fg4xiyyb9wc13r',1,'Admin',1672319418,'192.168.64.1',2,36,42852,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fh4xiyrl3rmryy',1,'Admin',1672319418,'192.168.64.1',2,36,42853,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fi4xiytpcrrvd5',1,'Admin',1672319418,'192.168.64.1',2,36,42854,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fj4xiyof6ysjxb',1,'Admin',1672319418,'192.168.64.1',2,36,42855,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fk4xiy4sxp18ue',1,'Admin',1672319418,'192.168.64.1',2,36,42856,NULL,'TrueNAS: Disk [{#DISK_NAME}]: Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fl4xiy1oxwfxg1',1,'Admin',1672319418,'192.168.64.1',2,36,42857,NULL,'TrueNAS: Dataset [{#DATASET_NAME}]: Available space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fm4xiybqeegpyb',1,'Admin',1672319418,'192.168.64.1',2,36,42858,NULL,'TrueNAS: Dataset [{#DATASET_NAME}]: Usage in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fn4xiyes31y5u6',1,'Admin',1672319418,'192.168.64.1',2,36,42859,NULL,'TrueNAS: Dataset [{#DATASET_NAME}]: Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fo4xiy6hz577z1',1,'Admin',1672319418,'192.168.64.1',2,36,42860,NULL,'TrueNAS: Dataset [{#DATASET_NAME}]: Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fp4xiy7orjadx3',1,'Admin',1672319418,'192.168.64.1',2,36,42861,NULL,'TrueNAS: Pool [{#POOLNAME}]: Available space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fq4xiy8b1h8cc7',1,'Admin',1672319418,'192.168.64.1',2,36,42862,NULL,'TrueNAS: Pool [{#POOLNAME}]: Health','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fr4xiyaefyr2k8',1,'Admin',1672319418,'192.168.64.1',2,36,42863,NULL,'TrueNAS: Pool [{#POOLNAME}]: Usage in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fs4xiypwwsv9cf',1,'Admin',1672319418,'192.168.64.1',2,36,42864,NULL,'TrueNAS: Pool [{#POOLNAME}]: Read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ft4xiym3jymdf0',1,'Admin',1672319418,'192.168.64.1',2,36,42865,NULL,'TrueNAS: Pool [{#POOLNAME}]: Read operations rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fu4xiyp92cx5ht',1,'Admin',1672319418,'192.168.64.1',2,36,42866,NULL,'TrueNAS: Pool [{#POOLNAME}]: Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fv4xiy0an5oxfs',1,'Admin',1672319418,'192.168.64.1',2,36,42867,NULL,'TrueNAS: Pool [{#POOLNAME}]: Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fw4xiylvrf1hhm',1,'Admin',1672319418,'192.168.64.1',2,36,42868,NULL,'TrueNAS: Pool [{#POOLNAME}]: Write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fx4xiya0s9i7h1',1,'Admin',1672319418,'192.168.64.1',2,36,42869,NULL,'TrueNAS: Pool [{#POOLNAME}]: Write operations rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fy4xiylxnl4ejz',1,'Admin',1672319418,'192.168.64.1',2,36,42870,NULL,'TrueNAS: ZFS volume [{#ZVOL_NAME}]: Available space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fz4xiybvsuicyz',1,'Admin',1672319418,'192.168.64.1',2,36,42871,NULL,'TrueNAS: ZFS volume [{#ZVOL_NAME}]: Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00g04xiyhcxy4zo1',1,'Admin',1672319418,'192.168.64.1',2,36,42872,NULL,'TrueNAS: ZFS volume [{#ZVOL_NAME}]: Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00g14xiy4igpoa7l',1,'Admin',1672319418,'192.168.64.1',2,36,42873,NULL,'TrueNAS: [{#DEVNAME}]: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g24xiy5hqolwy1',1,'Admin',1672319418,'192.168.64.1',2,36,42874,NULL,'TrueNAS: [{#DEVNAME}]: Disk utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g34xiyosedw4vo',1,'Admin',1672319418,'192.168.64.1',2,36,42875,NULL,'TrueNAS: [{#DEVNAME}]: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g44xiylldup0eh',1,'Admin',1672319418,'192.168.64.1',2,36,42876,NULL,'TrueNAS: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g54xiyl1j8i4ih',1,'Admin',1672319418,'192.168.64.1',2,36,42879,NULL,'VMware: Health state rollup','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g64xiy2e3c4az2',1,'Admin',1672319418,'192.168.64.1',2,36,42881,NULL,'DB {#DBNAME}: Queries max maintenance time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g74xiy45c0cgxb',1,'Admin',1672319418,'192.168.64.1',2,36,42882,NULL,'DB {#DBNAME}: Queries slow maintenance count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g84xiylwklkq2j',1,'Admin',1672319418,'192.168.64.1',2,36,42883,NULL,'DB {#DBNAME}: Queries sum maintenance time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g94xiytoftevpz',1,'Admin',1672319418,'192.168.64.1',2,36,42884,NULL,'DB {#DBNAME}: Queries slow query count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ga4xiyns8lad42',1,'Admin',1672319418,'192.168.64.1',2,36,42885,NULL,'DB {#DBNAME}: Queries max query time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gb4xiy2esb75l8',1,'Admin',1672319418,'192.168.64.1',2,36,42886,NULL,'DB {#DBNAME}: Queries sum query time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gc4xiypn2l5pnb',1,'Admin',1672319418,'192.168.64.1',2,36,42887,NULL,'DB {#DBNAME}: Queries slow transaction count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gd4xiyumopxk91',1,'Admin',1672319418,'192.168.64.1',2,36,42888,NULL,'DB {#DBNAME}: Queries max transaction time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ge4xiy8dg3coa4',1,'Admin',1672319418,'192.168.64.1',2,36,42889,NULL,'DB {#DBNAME}: Queries sum transaction time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gf4xiy08cimfe2',1,'Admin',1672319418,'192.168.64.1',2,36,42890,NULL,'SMART [{#NAME}]: Get disk attributes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gg4xiy011ybuvk',1,'Admin',1672319418,'192.168.64.1',2,36,42891,NULL,'SMART [{#NAME}]: Bad_Block_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gh4xiyabs0ii9q',1,'Admin',1672319418,'192.168.64.1',2,36,42892,NULL,'SMART [{#NAME}]: Exit status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gi4xiyxfnglcy6',1,'Admin',1672319418,'192.168.64.1',2,36,42893,NULL,'SMART [{#NAME}]: Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gj4xiy9krpl4ff',1,'Admin',1672319418,'192.168.64.1',2,36,42894,NULL,'SMART [{#NAME}]: Serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gk4xiybplvcogz',1,'Admin',1672319418,'192.168.64.1',2,36,42895,NULL,'SMART [{#NAME}]: Percentage used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gl4xiyan9hjum5',1,'Admin',1672319418,'192.168.64.1',2,36,42896,NULL,'SMART [{#NAME}]: Device model','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gm4xiya9kbcu9o',1,'Admin',1672319418,'192.168.64.1',2,36,42897,NULL,'SMART [{#NAME}]: Media errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gn4xiyq2mgb46f',1,'Admin',1672319418,'192.168.64.1',2,36,42898,NULL,'SMART [{#NAME}]: Power on hours','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00go4xiyh8uyz57x',1,'Admin',1672319418,'192.168.64.1',2,36,42899,NULL,'SMART [{#NAME}]: Smartctl error','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gp4xiyp1cyk0ow',1,'Admin',1672319418,'192.168.64.1',2,36,42900,NULL,'SMART [{#NAME}]: Power_Cycle_Count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gq4xiyo5jhvpor',1,'Admin',1672319418,'192.168.64.1',2,36,42901,NULL,'SMART [{#NAME}]: Critical warning','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gr4xiyu04emlcg',1,'Admin',1672319418,'192.168.64.1',2,36,42902,NULL,'SMART [{#NAME}]: Start_Stop_Count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gs4xiyc0aer6x4',1,'Admin',1672319418,'192.168.64.1',2,36,42903,NULL,'SMART [{#NAME}]: Spin_Up_Time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gt4xiy1qidbcps',1,'Admin',1672319418,'192.168.64.1',2,36,42904,NULL,'SMART [{#NAME}]: Seek_Error_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gu4xiy4101lo70',1,'Admin',1672319418,'192.168.64.1',2,36,42905,NULL,'SMART [{#NAME}]: Reported_Uncorrect','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gv4xiykicwp3q9',1,'Admin',1672319418,'192.168.64.1',2,36,42906,NULL,'SMART [{#NAME}]: Reallocated_Sector_Ct','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gw4xiycb3zlnv7',1,'Admin',1672319418,'192.168.64.1',2,36,42907,NULL,'SMART [{#NAME}]: Raw_Read_Error_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gx4xiysqnmreim',1,'Admin',1672319418,'192.168.64.1',2,36,42908,NULL,'SMART [{#NAME}]: Program_Fail_Count_Chip','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gy4xiydx7s6dft',1,'Admin',1672319418,'192.168.64.1',2,36,42909,NULL,'SMART [{#NAME}]: Self-test passed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gz4xiyuw47fkx9',1,'Admin',1672319418,'192.168.64.1',2,36,42910,NULL,'SMART [{#NAME}]: Get disk attributes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h04xiyn3ccsbhd',1,'Admin',1672319418,'192.168.64.1',2,36,42911,NULL,'SMART [{#NAME}]: Bad_Block_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h14xiyyi757rng',1,'Admin',1672319418,'192.168.64.1',2,36,42912,NULL,'SMART [{#NAME}]: Exit status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h24xiynxsfldnp',1,'Admin',1672319418,'192.168.64.1',2,36,42913,NULL,'SMART [{#NAME}]: Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h34xiyoybyrya5',1,'Admin',1672319418,'192.168.64.1',2,36,42914,NULL,'SMART [{#NAME}]: Serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h44xiyip550y7x',1,'Admin',1672319418,'192.168.64.1',2,36,42915,NULL,'SMART [{#NAME}]: Percentage used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h54xiy958dy1jo',1,'Admin',1672319418,'192.168.64.1',2,36,42916,NULL,'SMART [{#NAME}]: Device model','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h64xiyxau3utfi',1,'Admin',1672319418,'192.168.64.1',2,36,42917,NULL,'SMART [{#NAME}]: Media errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h74xiy7d1nspsd',1,'Admin',1672319418,'192.168.64.1',2,36,42918,NULL,'SMART [{#NAME}]: Power on hours','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h84xiyoif68ffp',1,'Admin',1672319418,'192.168.64.1',2,36,42919,NULL,'SMART [{#NAME}]: Smartctl error','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h94xiyfnz9yw8d',1,'Admin',1672319418,'192.168.64.1',2,36,42920,NULL,'SMART [{#NAME}]: Power_Cycle_Count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ha4xiyozmaxl64',1,'Admin',1672319418,'192.168.64.1',2,36,42921,NULL,'SMART [{#NAME}]: Critical warning','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hb4xiytj8773bi',1,'Admin',1672319418,'192.168.64.1',2,36,42922,NULL,'SMART [{#NAME}]: Start_Stop_Count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hc4xiyxkz7e4oq',1,'Admin',1672319418,'192.168.64.1',2,36,42923,NULL,'SMART [{#NAME}]: Spin_Up_Time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hd4xiyn9chbrjg',1,'Admin',1672319418,'192.168.64.1',2,36,42924,NULL,'SMART [{#NAME}]: Seek_Error_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00he4xiyofyp9laf',1,'Admin',1672319418,'192.168.64.1',2,36,42925,NULL,'SMART [{#NAME}]: Reported_Uncorrect','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hf4xiy7iyx4fvy',1,'Admin',1672319418,'192.168.64.1',2,36,42926,NULL,'SMART [{#NAME}]: Reallocated_Sector_Ct','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hg4xiyaus20qfp',1,'Admin',1672319418,'192.168.64.1',2,36,42927,NULL,'SMART [{#NAME}]: Raw_Read_Error_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hh4xiyv6dlsblo',1,'Admin',1672319418,'192.168.64.1',2,36,42928,NULL,'SMART [{#NAME}]: Program_Fail_Count_Chip','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hi4xiyphi3wl6t',1,'Admin',1672319418,'192.168.64.1',2,36,42929,NULL,'SMART [{#NAME}]: Self-test passed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hj4xiy6mh3mict',1,'Admin',1672319418,'192.168.64.1',2,36,44083,NULL,'Proxy [{#PROXY.NAME}]: Certificate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hk4xiylzk6nel5',1,'Admin',1672319418,'192.168.64.1',2,36,44084,NULL,'Proxy [{#PROXY.NAME}]: Compatibility','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hl4xiypwlhwhd7',1,'Admin',1672319418,'192.168.64.1',2,36,44085,NULL,'Proxy [{#PROXY.NAME}]: Compression','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hm4xiyeh014qpu',1,'Admin',1672319418,'192.168.64.1',2,36,44086,NULL,'Proxy [{#PROXY.NAME}]: Host count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hn4xiyq59cp1ra',1,'Admin',1672319418,'192.168.64.1',2,36,44087,NULL,'Proxy [{#PROXY.NAME}]: Item count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ho4xiy9zp2c79f',1,'Admin',1672319418,'192.168.64.1',2,36,44088,NULL,'Proxy [{#PROXY.NAME}]: Last seen, in seconds','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hp4xiy7o62qp3m',1,'Admin',1672319418,'192.168.64.1',2,36,44089,NULL,'Proxy [{#PROXY.NAME}]: Mode','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hq4xiy36dzzaqo',1,'Admin',1672319418,'192.168.64.1',2,36,44090,NULL,'Proxy [{#PROXY.NAME}]: PSK','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hr4xiy1oyb38jt',1,'Admin',1672319418,'192.168.64.1',2,36,44091,NULL,'Proxy [{#PROXY.NAME}]: Required VPS','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hs4xiyrsts3oid',1,'Admin',1672319418,'192.168.64.1',2,36,44092,NULL,'Proxy [{#PROXY.NAME}]: Unencrypted','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ht4xiy3bt1240v',1,'Admin',1672319418,'192.168.64.1',2,36,44093,NULL,'Proxy [{#PROXY.NAME}]: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hu4xiynaxl5b4f',1,'Admin',1672319418,'192.168.64.1',2,36,44361,NULL,'RabbitMQ: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hv4xiy64oeluyr',1,'Admin',1672319418,'192.168.64.1',2,36,44362,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hw4xiyxxkbndzo',1,'Admin',1672319418,'192.168.64.1',2,36,44363,NULL,'RabbitMQ: Get process data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hx4xiyenpujeou',1,'Admin',1672319418,'192.168.64.1',2,36,44364,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hy4xiy61gyroup',1,'Admin',1672319418,'192.168.64.1',2,36,44365,NULL,'RabbitMQ: Number of running processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hz4xiyhrpnp1wy',1,'Admin',1672319418,'192.168.64.1',2,36,44366,NULL,'RabbitMQ: Memory usage, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i04xiyk1dnzylr',1,'Admin',1672319418,'192.168.64.1',2,36,44367,NULL,'RabbitMQ: Memory usage (rss)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i14xiysken2qfm',1,'Admin',1672319418,'192.168.64.1',2,36,44368,NULL,'RabbitMQ: Memory usage (vsize)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i24xiytaje263j',1,'Admin',1672319418,'192.168.64.1',2,36,44369,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i34xiyo9znk7zo',1,'Admin',1672319418,'192.168.64.1',2,36,44370,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i44xiyvuwsczbs',1,'Admin',1672319418,'192.168.64.1',2,36,44378,NULL,'{#FSLABEL}({#FSNAME}): Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i54xiy5dvr3r1y',1,'Admin',1672319418,'192.168.64.1',2,36,44380,NULL,'{#FSLABEL}({#FSNAME}): Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i64xiy7r91119y',1,'Admin',1672319418,'192.168.64.1',2,36,44422,NULL,'Edge [{#NAME}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i74xiy26j9bvai',1,'Admin',1672319418,'192.168.64.1',2,36,44423,NULL,'Gateway [{#NAME}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i84xiyue3xvnrc',1,'Admin',1672319418,'192.168.64.1',2,36,44424,NULL,'Link [{#NAME}]:[{#IP}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i94xiygy925zad',1,'Admin',1672319418,'192.168.64.1',2,36,44425,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ia4xiygpnb2ael',1,'Admin',1672319418,'192.168.64.1',2,36,44426,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ib4xiyxs9k5lvx',1,'Admin',1672319418,'192.168.64.1',2,36,44451,NULL,'{#FSNAME}: Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ic4xiynqx6w5ja',1,'Admin',1672319418,'192.168.64.1',2,36,44452,NULL,'{#FSNAME}: Filesystem is read-only','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00id4xiyreludgl1',1,'Admin',1672319418,'192.168.64.1',2,36,44454,NULL,'{#FSLABEL}({#FSNAME}): Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ie4xiyoxhar0s6',1,'Admin',1672319418,'192.168.64.1',2,36,44456,NULL,'{#FSLABEL}({#FSNAME}): Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy1f00if4xiytc2dqev3',1,'Admin',1672319418,'192.168.64.1',2,37,10333,NULL,'{#HV.UUID}','clc93sy0x00004xiybc9tr37a',''),('clc93sy1f00ig4xiyp26pu993',1,'Admin',1672319418,'192.168.64.1',2,37,10334,NULL,'{#VM.UUID}','clc93sy0x00004xiybc9tr37a',''),('clc93sy1f00ih4xiya0q6i6kc',1,'Admin',1672319418,'192.168.64.1',2,37,10367,NULL,'{#HV.UUID}','clc93sy0x00004xiybc9tr37a',''),('clc93sy1f00ii4xiyz305ml2i',1,'Admin',1672319418,'192.168.64.1',2,37,10368,NULL,'{#VM.DNS}','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ij4xiyks31c2do',1,'Admin',1672319419,'192.168.64.1',2,15,22996,NULL,'Maximum number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ik4xiyl225bod3',1,'Admin',1672319419,'192.168.64.1',2,15,22997,NULL,'Number of running processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200il4xiyzuayy9u0',1,'Admin',1672319419,'192.168.64.1',2,15,22998,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200im4xiyy6siw7ml',1,'Admin',1672319419,'192.168.64.1',2,15,22999,NULL,'Host boot time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200in4xiyzv4fr3l0',1,'Admin',1672319419,'192.168.64.1',2,15,23000,NULL,'Interrupts per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200io4xiy6zgjy10v',1,'Admin',1672319419,'192.168.64.1',2,15,23001,NULL,'Processor load (15 min average per core)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ip4xiypeotsu3a',1,'Admin',1672319419,'192.168.64.1',2,15,23002,NULL,'Processor load (1 min average per core)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iq4xiyk18ax6cz',1,'Admin',1672319419,'192.168.64.1',2,15,23003,NULL,'Processor load (5 min average per core)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ir4xiydoetdpgt',1,'Admin',1672319419,'192.168.64.1',2,15,23004,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200is4xiypri3b4jb',1,'Admin',1672319419,'192.168.64.1',2,15,23005,NULL,'CPU idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200it4xiyuyu7501l',1,'Admin',1672319419,'192.168.64.1',2,15,23007,NULL,'CPU iowait time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iu4xiy040d0ye2',1,'Admin',1672319419,'192.168.64.1',2,15,23011,NULL,'CPU system time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iv4xiy29dz4gb9',1,'Admin',1672319419,'192.168.64.1',2,15,23012,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iw4xiy7nojz29q',1,'Admin',1672319419,'192.168.64.1',2,15,23013,NULL,'Host name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ix4xiyj1v7b0pp',1,'Admin',1672319419,'192.168.64.1',2,15,23014,NULL,'Host local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iy4xiyjlxeuw0u',1,'Admin',1672319419,'192.168.64.1',2,15,23015,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iz4xiydbrkv4y1',1,'Admin',1672319419,'192.168.64.1',2,15,23016,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j04xiy3h8820q0',1,'Admin',1672319419,'192.168.64.1',2,15,23017,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j14xiyl6awwwq6',1,'Admin',1672319419,'192.168.64.1',2,15,23018,NULL,'System information','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j24xiy5l1xcmw8',1,'Admin',1672319419,'192.168.64.1',2,15,23019,NULL,'System uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j34xiy0zqfjtra',1,'Admin',1672319419,'192.168.64.1',2,15,23020,NULL,'Number of logged in users','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j44xiyfeehm54p',1,'Admin',1672319419,'192.168.64.1',2,15,23021,NULL,'Checksum of /etc/passwd','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j54xiymgq4e9eb',1,'Admin',1672319419,'192.168.64.1',2,15,23022,NULL,'Available memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j64xiyqbvog7id',1,'Admin',1672319419,'192.168.64.1',2,15,23023,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j74xiymly1uwag',1,'Admin',1672319419,'192.168.64.1',2,15,23652,NULL,'SMTP service is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j84xiyst88c9nh',1,'Admin',1672319419,'192.168.64.1',2,15,23653,NULL,'SSH service is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j94xiy53tgujx8',1,'Admin',1672319419,'192.168.64.1',2,15,23654,NULL,'Telnet service is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ja4xiybus4kjgc',1,'Admin',1672319419,'192.168.64.1',2,15,27967,NULL,'Firmware version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jb4xiybrcd8hzh',1,'Admin',1672319419,'192.168.64.1',2,15,27968,NULL,'Hardware version(revision)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jc4xiykuu22aa2',1,'Admin',1672319419,'192.168.64.1',2,15,27970,NULL,'Hardware serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jd4xiylvg7xnw2',1,'Admin',1672319419,'192.168.64.1',2,15,27971,NULL,'Hardware model name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200je4xiykv22s8iu',1,'Admin',1672319419,'192.168.64.1',2,15,27972,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jf4xiymh6kd5st',1,'Admin',1672319419,'192.168.64.1',2,15,27973,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jg4xiyb0w0skqd',1,'Admin',1672319419,'192.168.64.1',2,15,27975,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jh4xiy2vofp5j1',1,'Admin',1672319419,'192.168.64.1',2,15,27997,NULL,'Hardware version(revision)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ji4xiywyn38udy',1,'Admin',1672319419,'192.168.64.1',2,15,27998,NULL,'Firmware version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jj4xiyik6ica28',1,'Admin',1672319419,'192.168.64.1',2,15,27999,NULL,'Hardware serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jk4xiycabvsq69',1,'Admin',1672319419,'192.168.64.1',2,15,28000,NULL,'Hardware model name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jl4xiysaq8gr5w',1,'Admin',1672319419,'192.168.64.1',2,15,28026,NULL,'Hardware model name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jm4xiyqp356jgy',1,'Admin',1672319419,'192.168.64.1',2,15,28027,NULL,'Firmware version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jn4xiy3y7hv4sj',1,'Admin',1672319419,'192.168.64.1',2,15,28031,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jo4xiy8knrsjt9',1,'Admin',1672319419,'192.168.64.1',2,15,28539,NULL,'Remote Zabbix server: Zabbix stats','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jp4xiy6ie7u1po',1,'Admin',1672319419,'192.168.64.1',2,15,28540,NULL,'Remote Zabbix server: Zabbix stats queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jq4xiyjr1yud5y',1,'Admin',1672319419,'192.168.64.1',2,15,28541,NULL,'Remote Zabbix server: Zabbix stats queue over 10m','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jr4xiyvdp9b6pg',1,'Admin',1672319419,'192.168.64.1',2,15,28542,NULL,'Remote Zabbix server: History index cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200js4xiyemh9bs0l',1,'Admin',1672319419,'192.168.64.1',2,15,28543,NULL,'Remote Zabbix server: Configuration cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jt4xiyarpnev9x',1,'Admin',1672319419,'192.168.64.1',2,15,28544,NULL,'Remote Zabbix server: Value cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ju4xiy19bx7uo6',1,'Admin',1672319419,'192.168.64.1',2,15,28545,NULL,'Remote Zabbix server: Value cache hits','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jv4xiy6uycgekc',1,'Admin',1672319419,'192.168.64.1',2,15,28546,NULL,'Remote Zabbix server: Value cache misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jw4xiy2exy7ctm',1,'Admin',1672319419,'192.168.64.1',2,15,28547,NULL,'Remote Zabbix server: Value cache operating mode','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jx4xiyij1efb09',1,'Admin',1672319419,'192.168.64.1',2,15,28548,NULL,'Remote Zabbix server: VMware cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jy4xiya3sdx3xe',1,'Admin',1672319419,'192.168.64.1',2,15,28549,NULL,'Remote Zabbix server: History write cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jz4xiyrh5iwryw',1,'Admin',1672319419,'192.168.64.1',2,15,28550,NULL,'Remote Zabbix server: Number of processed values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k04xiyqn1t9s7d',1,'Admin',1672319419,'192.168.64.1',2,15,28551,NULL,'Remote Zabbix server: Trend write cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k14xiy2atvfr1s',1,'Admin',1672319419,'192.168.64.1',2,15,28552,NULL,'Remote Zabbix server: Utilization of unreachable poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k24xiyatkxd6yw',1,'Admin',1672319419,'192.168.64.1',2,15,28553,NULL,'Remote Zabbix server: Number of processed numeric (float) values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k34xiybjs7rjvs',1,'Admin',1672319419,'192.168.64.1',2,15,28554,NULL,'Remote Zabbix server: Number of processed log values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k44xiya7asyp38',1,'Admin',1672319419,'192.168.64.1',2,15,28555,NULL,'Remote Zabbix server: Number of processed not supported values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k54xiyipv7fm79',1,'Admin',1672319419,'192.168.64.1',2,15,28556,NULL,'Remote Zabbix server: Number of processed character values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k64xiy3kgi3ev4',1,'Admin',1672319419,'192.168.64.1',2,15,28557,NULL,'Remote Zabbix server: Number of processed text values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k74xiyjl36eogz',1,'Admin',1672319419,'192.168.64.1',2,15,28558,NULL,'Remote Zabbix server: Number of processed numeric (unsigned) values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k84xiyh8j6g50q',1,'Admin',1672319419,'192.168.64.1',2,15,28559,NULL,'Remote Zabbix server: Utilization of vmware data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k94xiyd93gsg13',1,'Admin',1672319419,'192.168.64.1',2,15,28560,NULL,'Remote Zabbix server: Preprocessing queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ka4xiyyqxp0jnf',1,'Admin',1672319419,'192.168.64.1',2,15,28561,NULL,'Remote Zabbix server: Utilization of alerter internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kb4xiyg8gctnwv',1,'Admin',1672319419,'192.168.64.1',2,15,28562,NULL,'Remote Zabbix server: Utilization of ipmi manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kc4xiy3h0zdp4c',1,'Admin',1672319419,'192.168.64.1',2,15,28563,NULL,'Remote Zabbix server: Utilization of alert manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kd4xiy85tctn4q',1,'Admin',1672319419,'192.168.64.1',2,15,28564,NULL,'Remote Zabbix server: Utilization of configuration syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ke4xiyih25cax1',1,'Admin',1672319419,'192.168.64.1',2,15,28565,NULL,'Remote Zabbix server: Utilization of discoverer data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kf4xiyinpavs38',1,'Admin',1672319419,'192.168.64.1',2,15,28566,NULL,'Remote Zabbix server: Utilization of escalator internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kg4xiylizjj54b',1,'Admin',1672319419,'192.168.64.1',2,15,28567,NULL,'Remote Zabbix server: Utilization of history syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kh4xiyfeol4z1e',1,'Admin',1672319419,'192.168.64.1',2,15,28568,NULL,'Remote Zabbix server: Utilization of housekeeper internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ki4xiyipb9r0we',1,'Admin',1672319419,'192.168.64.1',2,15,28569,NULL,'Remote Zabbix server: Utilization of http poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kj4xiyqk4cikta',1,'Admin',1672319419,'192.168.64.1',2,15,28570,NULL,'Remote Zabbix server: Utilization of icmp pinger data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kk4xiypppf1t8b',1,'Admin',1672319419,'192.168.64.1',2,15,28571,NULL,'Remote Zabbix server: Utilization of ipmi poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kl4xiyllbdt6g6',1,'Admin',1672319419,'192.168.64.1',2,15,28572,NULL,'Remote Zabbix server: Utilization of timer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200km4xiyv5ptx77z',1,'Admin',1672319419,'192.168.64.1',2,15,28573,NULL,'Remote Zabbix server: Utilization of java poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kn4xiywrajz924',1,'Admin',1672319419,'192.168.64.1',2,15,28574,NULL,'Remote Zabbix server: Utilization of poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ko4xiys8gyv3dv',1,'Admin',1672319419,'192.168.64.1',2,15,28575,NULL,'Remote Zabbix server: Utilization of preprocessing manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kp4xiy1n0l4dio',1,'Admin',1672319419,'192.168.64.1',2,15,28576,NULL,'Remote Zabbix server: Utilization of preprocessing worker internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kq4xiyxgcpnuv6',1,'Admin',1672319419,'192.168.64.1',2,15,28577,NULL,'Remote Zabbix server: Utilization of proxy poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kr4xiy4jd0i572',1,'Admin',1672319419,'192.168.64.1',2,15,28578,NULL,'Remote Zabbix server: Utilization of self-monitoring internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ks4xiyfza2gn86',1,'Admin',1672319419,'192.168.64.1',2,15,28579,NULL,'Remote Zabbix server: Utilization of snmp trapper data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kt4xiylhd4ac49',1,'Admin',1672319419,'192.168.64.1',2,15,28580,NULL,'Remote Zabbix server: Utilization of task manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ku4xiy4014e5s5',1,'Admin',1672319419,'192.168.64.1',2,15,28581,NULL,'Remote Zabbix server: Utilization of trapper data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kv4xiyei2wz1hw',1,'Admin',1672319419,'192.168.64.1',2,15,28582,NULL,'Remote Zabbix server: Utilization of LLD manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kw4xiy5rcacijl',1,'Admin',1672319419,'192.168.64.1',2,15,28583,NULL,'Remote Zabbix server: Utilization of LLD worker internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kx4xiyuehjs8qd',1,'Admin',1672319419,'192.168.64.1',2,15,28584,NULL,'Remote Zabbix server: LLD queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ky4xiyncf4sjmi',1,'Admin',1672319419,'192.168.64.1',2,15,28585,NULL,'Remote Zabbix proxy: Zabbix stats','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kz4xiyjhwm7s7g',1,'Admin',1672319419,'192.168.64.1',2,15,28586,NULL,'Remote Zabbix proxy: Zabbix stats queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l04xiyqynzfimq',1,'Admin',1672319419,'192.168.64.1',2,15,28587,NULL,'Remote Zabbix proxy: Zabbix stats queue over 10m','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l14xiy54zv7izo',1,'Admin',1672319419,'192.168.64.1',2,15,28588,NULL,'Remote Zabbix proxy: Utilization of vmware data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l24xiyekxcp0gt',1,'Admin',1672319419,'192.168.64.1',2,15,28589,NULL,'Remote Zabbix proxy: Number of processed numeric (unsigned) values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l34xiybu32mr4y',1,'Admin',1672319419,'192.168.64.1',2,15,28590,NULL,'Remote Zabbix proxy: Number of processed text values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l44xiy4qvusvgm',1,'Admin',1672319419,'192.168.64.1',2,15,28591,NULL,'Remote Zabbix proxy: Number of processed character values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l54xiyoq5wi1rc',1,'Admin',1672319419,'192.168.64.1',2,15,28592,NULL,'Remote Zabbix proxy: Number of processed not supported values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l64xiyyzy81kmy',1,'Admin',1672319419,'192.168.64.1',2,15,28593,NULL,'Remote Zabbix proxy: Number of processed log values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l74xiyk5liey4l',1,'Admin',1672319419,'192.168.64.1',2,15,28594,NULL,'Remote Zabbix proxy: Number of processed numeric (float) values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l84xiyyk5o5t8g',1,'Admin',1672319419,'192.168.64.1',2,15,28595,NULL,'Remote Zabbix proxy: Number of processed values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l94xiyjoqzlku3',1,'Admin',1672319419,'192.168.64.1',2,15,28596,NULL,'Remote Zabbix proxy: History index cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200la4xiygyllwge8',1,'Admin',1672319419,'192.168.64.1',2,15,28597,NULL,'Remote Zabbix proxy: History write cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lb4xiyk13kdttk',1,'Admin',1672319419,'192.168.64.1',2,15,28598,NULL,'Remote Zabbix proxy: VMware cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lc4xiyth6qurdk',1,'Admin',1672319419,'192.168.64.1',2,15,28599,NULL,'Remote Zabbix proxy: Configuration cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ld4xiyf0ra2z0f',1,'Admin',1672319419,'192.168.64.1',2,15,28600,NULL,'Remote Zabbix proxy: Utilization of configuration syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200le4xiywnh34rd8',1,'Admin',1672319419,'192.168.64.1',2,15,28601,NULL,'Remote Zabbix proxy: Utilization of data sender internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lf4xiyr986j34y',1,'Admin',1672319419,'192.168.64.1',2,15,28602,NULL,'Remote Zabbix proxy: Utilization of trapper data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lg4xiy1xvixixm',1,'Admin',1672319419,'192.168.64.1',2,15,28603,NULL,'Remote Zabbix proxy: Utilization of task manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lh4xiy4vldjhm0',1,'Admin',1672319419,'192.168.64.1',2,15,28604,NULL,'Remote Zabbix proxy: Utilization of snmp trapper data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200li4xiyq8tkn8nn',1,'Admin',1672319419,'192.168.64.1',2,15,28605,NULL,'Remote Zabbix proxy: Utilization of self-monitoring internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lj4xiym4lzpx6q',1,'Admin',1672319419,'192.168.64.1',2,15,28606,NULL,'Remote Zabbix proxy: Utilization of poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lk4xiyu6njpwz0',1,'Admin',1672319419,'192.168.64.1',2,15,28607,NULL,'Remote Zabbix proxy: Utilization of java poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ll4xiysqpf5nzn',1,'Admin',1672319419,'192.168.64.1',2,15,28608,NULL,'Remote Zabbix proxy: Utilization of ipmi poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lm4xiyyqfospli',1,'Admin',1672319419,'192.168.64.1',2,15,28609,NULL,'Remote Zabbix proxy: Utilization of ipmi manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ln4xiylq7o5jhh',1,'Admin',1672319419,'192.168.64.1',2,15,28610,NULL,'Remote Zabbix proxy: Utilization of icmp pinger data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lo4xiys6nfja49',1,'Admin',1672319419,'192.168.64.1',2,15,28611,NULL,'Remote Zabbix proxy: Utilization of http poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lp4xiybrw3437s',1,'Admin',1672319419,'192.168.64.1',2,15,28612,NULL,'Remote Zabbix proxy: Utilization of housekeeper internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lq4xiydfowueyf',1,'Admin',1672319419,'192.168.64.1',2,15,28613,NULL,'Remote Zabbix proxy: Utilization of history syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lr4xiyzg2we7tb',1,'Admin',1672319419,'192.168.64.1',2,15,28615,NULL,'Remote Zabbix proxy: Utilization of discoverer data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ls4xiyfiemr9vi',1,'Admin',1672319419,'192.168.64.1',2,15,28616,NULL,'Remote Zabbix proxy: Utilization of unreachable poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lt4xiytxw69tpq',1,'Admin',1672319419,'192.168.64.1',2,15,29454,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lu4xiyen5yc4jn',1,'Admin',1672319419,'192.168.64.1',2,15,29455,NULL,'CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lv4xiy2utyb0t9',1,'Admin',1672319419,'192.168.64.1',2,15,29456,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lw4xiyidf6p6f9',1,'Admin',1672319419,'192.168.64.1',2,15,29457,NULL,'CPU privileged time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lx4xiy7jsvlwk5',1,'Admin',1672319419,'192.168.64.1',2,15,29458,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ly4xiyievh4wj5',1,'Admin',1672319419,'192.168.64.1',2,15,29459,NULL,'CPU queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lz4xiy3zbpsg2v',1,'Admin',1672319419,'192.168.64.1',2,15,29460,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m04xiy95449943',1,'Admin',1672319419,'192.168.64.1',2,15,29461,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m14xiyra8j751v',1,'Admin',1672319419,'192.168.64.1',2,15,29462,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m24xiysamtankp',1,'Admin',1672319419,'192.168.64.1',2,15,29463,NULL,'Cache bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m34xiyukj9n3t7',1,'Admin',1672319419,'192.168.64.1',2,15,29466,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m44xiym3rxp3ca',1,'Admin',1672319419,'192.168.64.1',2,15,29467,NULL,'Free system page table entries','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m54xiypt6ra6d6',1,'Admin',1672319419,'192.168.64.1',2,15,29468,NULL,'Memory page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m64xiytel2jdh2',1,'Admin',1672319419,'192.168.64.1',2,15,29469,NULL,'Memory pages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m74xiyogp0zj6v',1,'Admin',1672319419,'192.168.64.1',2,15,29470,NULL,'Memory pool non-paged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m84xiyobme5z1j',1,'Admin',1672319419,'192.168.64.1',2,15,29472,NULL,'Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m94xiyzoffuhxo',1,'Admin',1672319419,'192.168.64.1',2,15,29473,NULL,'System local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ma4xiyeulyndkq',1,'Admin',1672319419,'192.168.64.1',2,15,29474,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mb4xiyvqis315v',1,'Admin',1672319419,'192.168.64.1',2,15,29475,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mc4xiyibv50gww',1,'Admin',1672319419,'192.168.64.1',2,15,29476,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200md4xiyylra4171',1,'Admin',1672319419,'192.168.64.1',2,15,29477,NULL,'Number of threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200me4xiypqdeiv2n',1,'Admin',1672319419,'192.168.64.1',2,15,29478,NULL,'Operating system architecture','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mf4xiytzlq7ip9',1,'Admin',1672319419,'192.168.64.1',2,15,29653,NULL,'RabbitMQ: Get node overview','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mg4xiy0xhjn69n',1,'Admin',1672319419,'192.168.64.1',2,15,29654,NULL,'RabbitMQ: Get nodes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mh4xiy5q9mj6yb',1,'Admin',1672319419,'192.168.64.1',2,15,29655,NULL,'RabbitMQ: Service ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mi4xiy7u6p5vqx',1,'Admin',1672319419,'192.168.64.1',2,15,29660,NULL,'RabbitMQ: Service response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mj4xiy9mwws7c6',1,'Admin',1672319419,'192.168.64.1',2,15,29661,NULL,'RabbitMQ: Get queues','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mk4xiyulhtkzel',1,'Admin',1672319419,'192.168.64.1',2,15,29687,NULL,'RabbitMQ: Memory used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ml4xiyd3lyvvyi',1,'Admin',1672319419,'192.168.64.1',2,15,29688,NULL,'RabbitMQ: Disk free alarm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mm4xiyp1wxkkcx',1,'Admin',1672319419,'192.168.64.1',2,15,29691,NULL,'RabbitMQ: Used file descriptors','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mn4xiyi40ogl6f',1,'Admin',1672319419,'192.168.64.1',2,15,29692,NULL,'RabbitMQ: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mo4xiywgn7n7t0',1,'Admin',1672319419,'192.168.64.1',2,15,29693,NULL,'RabbitMQ: Memory alarm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mp4xiyqss5fyvi',1,'Admin',1672319419,'192.168.64.1',2,15,29694,NULL,'RabbitMQ: Memory limit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mq4xiykkwqgvzz',1,'Admin',1672319419,'192.168.64.1',2,15,29695,NULL,'RabbitMQ: Is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mr4xiyxn9kri85',1,'Admin',1672319419,'192.168.64.1',2,15,29696,NULL,'RabbitMQ: Number of network partitions','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ms4xiy5qyhk1hc',1,'Admin',1672319419,'192.168.64.1',2,15,29697,NULL,'RabbitMQ: Sockets available','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mt4xiylig3gk7p',1,'Admin',1672319419,'192.168.64.1',2,15,29698,NULL,'RabbitMQ: Free disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mu4xiyxqdi1e67',1,'Admin',1672319419,'192.168.64.1',2,15,29699,NULL,'RabbitMQ: Runtime run queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mv4xiyz9p01c66',1,'Admin',1672319419,'192.168.64.1',2,15,29700,NULL,'RabbitMQ: Disk free limit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mw4xiyh1ybdgxc',1,'Admin',1672319419,'192.168.64.1',2,15,29701,NULL,'RabbitMQ: Sockets used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mx4xiy2kpm4hno',1,'Admin',1672319419,'192.168.64.1',2,15,29738,NULL,'RabbitMQ: Get overview','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200my4xiy0qebzg3y',1,'Admin',1672319419,'192.168.64.1',2,15,29739,NULL,'RabbitMQ: Get exchanges','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mz4xiyzir8fxsz',1,'Admin',1672319419,'192.168.64.1',2,15,29741,NULL,'RabbitMQ: Get nodes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n04xiy2ei69uqc',1,'Admin',1672319419,'192.168.64.1',2,15,29742,NULL,'RabbitMQ: Service ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n14xiyof26z33i',1,'Admin',1672319419,'192.168.64.1',2,15,29743,NULL,'RabbitMQ: Service response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n24xiykt3a0rc7',1,'Admin',1672319419,'192.168.64.1',2,15,29745,NULL,'RabbitMQ: Get queues','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n34xiyp2q780ol',1,'Admin',1672319419,'192.168.64.1',2,15,29746,NULL,'RabbitMQ: Messages returned redeliver','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n44xiy6vho3jy6',1,'Admin',1672319419,'192.168.64.1',2,15,29747,NULL,'RabbitMQ: Messages returned unroutable per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n54xiyv1vnybzq',1,'Admin',1672319419,'192.168.64.1',2,15,29748,NULL,'RabbitMQ: Messages returned unroutable','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n64xiyyiljvn4b',1,'Admin',1672319419,'192.168.64.1',2,15,29749,NULL,'RabbitMQ: Messages publish_out per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n74xiyqdil2hok',1,'Admin',1672319419,'192.168.64.1',2,15,29750,NULL,'RabbitMQ: Messages publish_out','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n84xiyvxa18h0i',1,'Admin',1672319419,'192.168.64.1',2,15,29751,NULL,'RabbitMQ: Messages publish_in per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n94xiyoxwcc6kj',1,'Admin',1672319419,'192.168.64.1',2,15,29752,NULL,'RabbitMQ: Messages publish_in','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200na4xiyms7u5ho3',1,'Admin',1672319419,'192.168.64.1',2,15,29753,NULL,'RabbitMQ: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200nb4xiy6waxpeev',1,'Admin',1672319419,'192.168.64.1',2,15,29754,NULL,'RabbitMQ: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200nc4xiyq7mn6pse',1,'Admin',1672319419,'192.168.64.1',2,15,29755,NULL,'RabbitMQ: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200nd4xiyvfrujmok',1,'Admin',1672319419,'192.168.64.1',2,15,29756,NULL,'RabbitMQ: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ne4xiypxzorhpf',1,'Admin',1672319419,'192.168.64.1',2,15,29757,NULL,'RabbitMQ: Messages confirmed per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200nf4xiy85cnyloo',1,'Admin',1672319419,'192.168.64.1',2,15,29758,NULL,'RabbitMQ: Messages confirmed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ng4xiykd6i474o',1,'Admin',1672319419,'192.168.64.1',2,15,29759,NULL,'RabbitMQ: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nh4xiyxhplb2op',1,'Admin',1672319419,'192.168.64.1',2,15,29760,NULL,'RabbitMQ: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ni4xiysu64kkbd',1,'Admin',1672319419,'192.168.64.1',2,15,29761,NULL,'RabbitMQ: Messages unacknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nj4xiya0v0dkcv',1,'Admin',1672319419,'192.168.64.1',2,15,29762,NULL,'RabbitMQ: Messages ready for delivery','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nk4xiywt6on7iq',1,'Admin',1672319419,'192.168.64.1',2,15,29763,NULL,'RabbitMQ: Messages total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nl4xiywg5ejf6u',1,'Admin',1672319419,'192.168.64.1',2,15,29764,NULL,'RabbitMQ: Exchanges total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nm4xiy0cejkkb4',1,'Admin',1672319419,'192.168.64.1',2,15,29765,NULL,'RabbitMQ: Consumers total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nn4xiyskrarg9a',1,'Admin',1672319419,'192.168.64.1',2,15,29766,NULL,'RabbitMQ: Queues total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300no4xiywa0tric7',1,'Admin',1672319419,'192.168.64.1',2,15,29767,NULL,'RabbitMQ: Channels total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300np4xiy83hso0wg',1,'Admin',1672319419,'192.168.64.1',2,15,29768,NULL,'RabbitMQ: Connections total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nq4xiy2gkn3nlv',1,'Admin',1672319419,'192.168.64.1',2,15,29769,NULL,'RabbitMQ: Messages returned redeliver per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nr4xiyte3pmeu5',1,'Admin',1672319419,'192.168.64.1',2,15,29771,NULL,'RabbitMQ: Number of network partitions','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ns4xiygo4k6kv3',1,'Admin',1672319419,'192.168.64.1',2,15,29772,NULL,'RabbitMQ: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nt4xiypppv61pj',1,'Admin',1672319419,'192.168.64.1',2,15,29773,NULL,'RabbitMQ: Disk free alarm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nu4xiyzpupl8dv',1,'Admin',1672319419,'192.168.64.1',2,15,29774,NULL,'RabbitMQ: Memory alarm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nv4xiydr5rj6ah',1,'Admin',1672319419,'192.168.64.1',2,15,29775,NULL,'RabbitMQ: Is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nw4xiye29zsinj',1,'Admin',1672319419,'192.168.64.1',2,15,29776,NULL,'RabbitMQ: Sockets used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nx4xiydo8icpsy',1,'Admin',1672319419,'192.168.64.1',2,15,29777,NULL,'RabbitMQ: Sockets available','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ny4xiyu61kescw',1,'Admin',1672319419,'192.168.64.1',2,15,29779,NULL,'RabbitMQ: Runtime run queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nz4xiyddrwtonx',1,'Admin',1672319419,'192.168.64.1',2,15,29780,NULL,'RabbitMQ: Memory used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o04xiyw0y3gp16',1,'Admin',1672319419,'192.168.64.1',2,15,29781,NULL,'RabbitMQ: Disk free limit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o14xiye9tweeoj',1,'Admin',1672319419,'192.168.64.1',2,15,29782,NULL,'RabbitMQ: Free disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o24xiy4y0ims57',1,'Admin',1672319419,'192.168.64.1',2,15,29783,NULL,'RabbitMQ: Used file descriptors','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o34xiy1c9341r0',1,'Admin',1672319419,'192.168.64.1',2,15,29784,NULL,'RabbitMQ: Memory limit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o44xiygp3y0h4o',1,'Admin',1672319419,'192.168.64.1',2,15,29821,NULL,'Remote Zabbix server: Utilization of alert syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o54xiyfzcqq53h',1,'Admin',1672319419,'192.168.64.1',2,15,29998,NULL,'RabbitMQ: Get overview','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o64xiy72fny405',1,'Admin',1672319419,'192.168.64.1',2,15,29999,NULL,'RabbitMQ: Get exchanges','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o74xiy39t8to0u',1,'Admin',1672319419,'192.168.64.1',2,15,30000,NULL,'RabbitMQ: Messages returned redeliver','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o84xiybxhsugtv',1,'Admin',1672319419,'192.168.64.1',2,15,30001,NULL,'RabbitMQ: Messages returned unroutable per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o94xiyfqaiil7y',1,'Admin',1672319419,'192.168.64.1',2,15,30002,NULL,'RabbitMQ: Messages returned unroutable','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oa4xiyzpanivky',1,'Admin',1672319419,'192.168.64.1',2,15,30003,NULL,'RabbitMQ: Messages publish_out per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ob4xiyctz5hdfb',1,'Admin',1672319419,'192.168.64.1',2,15,30004,NULL,'RabbitMQ: Messages publish_out','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oc4xiydo0obwuv',1,'Admin',1672319419,'192.168.64.1',2,15,30005,NULL,'RabbitMQ: Messages publish_in per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300od4xiytv7r3hfy',1,'Admin',1672319419,'192.168.64.1',2,15,30006,NULL,'RabbitMQ: Messages publish_in','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oe4xiyp2cza3yo',1,'Admin',1672319419,'192.168.64.1',2,15,30007,NULL,'RabbitMQ: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300of4xiy6cj0k1ah',1,'Admin',1672319419,'192.168.64.1',2,15,30008,NULL,'RabbitMQ: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300og4xiyn32yl9xw',1,'Admin',1672319419,'192.168.64.1',2,15,30009,NULL,'RabbitMQ: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oh4xiy5t15x3rz',1,'Admin',1672319419,'192.168.64.1',2,15,30010,NULL,'RabbitMQ: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oi4xiyvvv82lrp',1,'Admin',1672319419,'192.168.64.1',2,15,30011,NULL,'RabbitMQ: Messages confirmed per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oj4xiyyyvnbw74',1,'Admin',1672319419,'192.168.64.1',2,15,30012,NULL,'RabbitMQ: Messages confirmed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ok4xiyn387h8dk',1,'Admin',1672319419,'192.168.64.1',2,15,30013,NULL,'RabbitMQ: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ol4xiy33g6hpzx',1,'Admin',1672319419,'192.168.64.1',2,15,30014,NULL,'RabbitMQ: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300om4xiyv0aht5gw',1,'Admin',1672319419,'192.168.64.1',2,15,30015,NULL,'RabbitMQ: Messages unacknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300on4xiyrju9sub8',1,'Admin',1672319419,'192.168.64.1',2,15,30016,NULL,'RabbitMQ: Messages ready for delivery','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oo4xiyd2hwzivn',1,'Admin',1672319419,'192.168.64.1',2,15,30017,NULL,'RabbitMQ: Messages total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300op4xiybe0iqkjf',1,'Admin',1672319419,'192.168.64.1',2,15,30018,NULL,'RabbitMQ: Exchanges total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oq4xiy55jhk7o0',1,'Admin',1672319419,'192.168.64.1',2,15,30019,NULL,'RabbitMQ: Consumers total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300or4xiyelrk5cjw',1,'Admin',1672319419,'192.168.64.1',2,15,30020,NULL,'RabbitMQ: Queues total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300os4xiyrof33bar',1,'Admin',1672319419,'192.168.64.1',2,15,30021,NULL,'RabbitMQ: Channels total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ot4xiyu1fxvd5d',1,'Admin',1672319419,'192.168.64.1',2,15,30022,NULL,'RabbitMQ: Connections total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ou4xiygu6o4vwx',1,'Admin',1672319419,'192.168.64.1',2,15,30023,NULL,'RabbitMQ: Messages returned redeliver per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ov4xiyy7v63jsn',1,'Admin',1672319419,'192.168.64.1',2,15,30024,NULL,'RabbitMQ: Management plugin version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ow4xiyesnp45zv',1,'Admin',1672319419,'192.168.64.1',2,15,30025,NULL,'RabbitMQ: RabbitMQ version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ox4xiy054njukg',1,'Admin',1672319419,'192.168.64.1',2,15,30043,NULL,'RabbitMQ: Get node overview','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oy4xiy4krffxk7',1,'Admin',1672319419,'192.168.64.1',2,15,30044,NULL,'RabbitMQ: Management plugin version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oz4xiy9w0grqzu',1,'Admin',1672319419,'192.168.64.1',2,15,30045,NULL,'RabbitMQ: RabbitMQ version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p04xiyqwuc80g6',1,'Admin',1672319419,'192.168.64.1',2,15,30124,NULL,'Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p14xiyjeabtd0u',1,'Admin',1672319419,'192.168.64.1',2,15,30125,NULL,'Operating system','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p24xiyqapie4wo',1,'Admin',1672319419,'192.168.64.1',2,15,30126,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p34xiy1bh44t6g',1,'Admin',1672319419,'192.168.64.1',2,15,30132,NULL,'Memory (buffers)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p44xiycfe6e2mj',1,'Admin',1672319419,'192.168.64.1',2,15,30133,NULL,'Memory (cached)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p54xiy9t11lzdy',1,'Admin',1672319419,'192.168.64.1',2,15,30134,NULL,'Free memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p64xiytg6d87yj',1,'Admin',1672319419,'192.168.64.1',2,15,30135,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p74xiywdct7yqx',1,'Admin',1672319419,'192.168.64.1',2,15,30136,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p84xiy4f10d2df',1,'Admin',1672319419,'192.168.64.1',2,15,30137,NULL,'CPU DPC time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p94xiyc4b5htcj',1,'Admin',1672319419,'192.168.64.1',2,15,30273,NULL,'Redis: Ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pa4xiym1r1qhox',1,'Admin',1672319419,'192.168.64.1',2,15,30274,NULL,'Redis: Slowlog entries per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pb4xiyoq1gx3kh',1,'Admin',1672319419,'192.168.64.1',2,15,30275,NULL,'Redis: Get config','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pc4xiyrhwmhwvm',1,'Admin',1672319419,'192.168.64.1',2,15,30276,NULL,'Redis: Get info','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pd4xiy8z7vvchn',1,'Admin',1672319419,'192.168.64.1',2,15,30277,NULL,'Redis: Blocked clients','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pe4xiyl20jvrjh',1,'Admin',1672319419,'192.168.64.1',2,15,30278,NULL,'Redis: TCP port','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pf4xiyvaw9muyr',1,'Admin',1672319419,'192.168.64.1',2,15,30279,NULL,'Redis: Expired keys','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pg4xiy888l0kno',1,'Admin',1672319419,'192.168.64.1',2,15,30280,NULL,'Redis: Evicted keys','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ph4xiy6w4cx7eq',1,'Admin',1672319419,'192.168.64.1',2,15,30281,NULL,'Redis: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pi4xiywe6kzlt1',1,'Admin',1672319419,'192.168.64.1',2,15,30282,NULL,'Redis: Redis mode','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pj4xiyibwkf7il',1,'Admin',1672319419,'192.168.64.1',2,15,30283,NULL,'Redis: Redis version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pk4xiyrfm1sbej',1,'Admin',1672319419,'192.168.64.1',2,15,30284,NULL,'Redis: Instantaneous operations per sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pl4xiyhzozkgw3',1,'Admin',1672319419,'192.168.64.1',2,15,30285,NULL,'Redis: Process id','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pm4xiyu8azwt41',1,'Admin',1672319419,'192.168.64.1',2,15,30286,NULL,'Redis: Replication role','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pn4xiy3znd0ada',1,'Admin',1672319419,'192.168.64.1',2,15,30287,NULL,'Redis: Replication backlog size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300po4xiyyaknbrqd',1,'Admin',1672319419,'192.168.64.1',2,15,30288,NULL,'Redis: Replication backlog history length','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pp4xiyi0gf9tup',1,'Admin',1672319419,'192.168.64.1',2,15,30289,NULL,'Redis: Instantaneous input bytes per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pq4xiyubgldp12',1,'Admin',1672319419,'192.168.64.1',2,15,30290,NULL,'Redis: Keyspace hits','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pr4xiy76viynyy',1,'Admin',1672319419,'192.168.64.1',2,15,30291,NULL,'Redis: Instantaneous output bytes per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ps4xiysj259lfu',1,'Admin',1672319419,'192.168.64.1',2,15,30292,NULL,'Redis: Replication backlog active','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pt4xiyt8cz5as2',1,'Admin',1672319419,'192.168.64.1',2,15,30293,NULL,'Redis: Keyspace misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pu4xiy0a4y9ovr',1,'Admin',1672319419,'192.168.64.1',2,15,30294,NULL,'Redis: Latest fork usec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pv4xiy5dm1wjwl',1,'Admin',1672319419,'192.168.64.1',2,15,30295,NULL,'Redis: Migrate cached sockets','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pw4xiy2zukw4xf',1,'Admin',1672319419,'192.168.64.1',2,15,30296,NULL,'Redis: Pubsub channels','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300px4xiy57hf3aa8',1,'Admin',1672319419,'192.168.64.1',2,15,30297,NULL,'Redis: Pubsub patterns','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300py4xiyfc0xnbp2',1,'Admin',1672319419,'192.168.64.1',2,15,30298,NULL,'Redis: Rejected connections','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pz4xiy8xfiqkf2',1,'Admin',1672319419,'192.168.64.1',2,15,30299,NULL,'Redis: Sync full','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q04xiyyvjtj1ha',1,'Admin',1672319419,'192.168.64.1',2,15,30300,NULL,'Redis: Sync partial err','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q14xiy8mm68o7c',1,'Admin',1672319419,'192.168.64.1',2,15,30301,NULL,'Redis: Sync partial ok','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q24xiy9da5l39p',1,'Admin',1672319419,'192.168.64.1',2,15,30302,NULL,'Redis: Total commands processed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q34xiyltu5m3kn',1,'Admin',1672319419,'192.168.64.1',2,15,30303,NULL,'Redis: Total connections received','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q44xiy66nqxgee',1,'Admin',1672319419,'192.168.64.1',2,15,30304,NULL,'Redis: Total net input bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q54xiyadxm03yl',1,'Admin',1672319419,'192.168.64.1',2,15,30305,NULL,'Redis: Replication backlog first byte offset','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q64xiyj7f16zhs',1,'Admin',1672319419,'192.168.64.1',2,15,30306,NULL,'Redis: Connected slaves','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q74xiyzveg1h00',1,'Admin',1672319419,'192.168.64.1',2,15,30307,NULL,'Redis: Master replication offset','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q84xiy92nrqx8b',1,'Admin',1672319419,'192.168.64.1',2,15,30308,NULL,'Redis: Memory used RSS','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q94xiymqvkx51h',1,'Admin',1672319419,'192.168.64.1',2,15,30309,NULL,'Redis: Max input buffer','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qa4xiy8fecxjgq',1,'Admin',1672319419,'192.168.64.1',2,15,30310,NULL,'Redis: Max output buffer','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qb4xiybhhq29g2',1,'Admin',1672319419,'192.168.64.1',2,15,30311,NULL,'Redis: Cluster enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qc4xiy07e0yddz',1,'Admin',1672319419,'192.168.64.1',2,15,30312,NULL,'Redis: Max clients','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qd4xiyrg04ttk7',1,'Admin',1672319419,'192.168.64.1',2,15,30313,NULL,'Redis: CPU sys','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qe4xiyme6bwijv',1,'Admin',1672319419,'192.168.64.1',2,15,30314,NULL,'Redis: CPU sys children','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qf4xiyrd3xnap2',1,'Admin',1672319419,'192.168.64.1',2,15,30315,NULL,'Redis: CPU user','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qg4xiyi9mppsox',1,'Admin',1672319419,'192.168.64.1',2,15,30316,NULL,'Redis: CPU user children','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qh4xiydxd22mmj',1,'Admin',1672319419,'192.168.64.1',2,15,30317,NULL,'Redis: Memory fragmentation ratio','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qi4xiyya7alweh',1,'Admin',1672319419,'192.168.64.1',2,15,30318,NULL,'Redis: Memory used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qj4xiyjw6yd96n',1,'Admin',1672319419,'192.168.64.1',2,15,30319,NULL,'Redis: Memory used Lua','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qk4xiyeelw8pev',1,'Admin',1672319419,'192.168.64.1',2,15,30320,NULL,'Redis: Memory used peak','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ql4xiy024tjzr2',1,'Admin',1672319419,'192.168.64.1',2,15,30321,NULL,'Redis: AOF current rewrite time sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qm4xiy7e24qvt9',1,'Admin',1672319419,'192.168.64.1',2,15,30322,NULL,'Redis: Connected clients','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qn4xiyzhamz4x1',1,'Admin',1672319419,'192.168.64.1',2,15,30323,NULL,'Redis: AOF enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qo4xiyjuzkxie3',1,'Admin',1672319419,'192.168.64.1',2,15,30324,NULL,'Redis: AOF last bgrewrite status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qp4xiywvwu7ebc',1,'Admin',1672319419,'192.168.64.1',2,15,30325,NULL,'Redis: AOF last rewrite time sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qq4xiyhd7k5cb2',1,'Admin',1672319419,'192.168.64.1',2,15,30326,NULL,'Redis: AOF last write status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qr4xiyfdr3ft5s',1,'Admin',1672319419,'192.168.64.1',2,15,30327,NULL,'Redis: AOF rewrite in progress','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qs4xiy802jzw3c',1,'Admin',1672319419,'192.168.64.1',2,15,30328,NULL,'Redis: AOF rewrite scheduled','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qt4xiyignwktem',1,'Admin',1672319419,'192.168.64.1',2,15,30329,NULL,'Redis: Dump loading','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qu4xiyya7bfo9d',1,'Admin',1672319419,'192.168.64.1',2,15,30330,NULL,'Redis: RDB bgsave in progress','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qv4xiyci42duoq',1,'Admin',1672319419,'192.168.64.1',2,15,30331,NULL,'Redis: RDB changes since last save','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qw4xiyvkswosmd',1,'Admin',1672319419,'192.168.64.1',2,15,30332,NULL,'Redis: RDB current bgsave time sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qx4xiynzdiw4se',1,'Admin',1672319419,'192.168.64.1',2,15,30333,NULL,'Redis: RDB last bgsave status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qy4xiysf36h0d0',1,'Admin',1672319419,'192.168.64.1',2,15,30334,NULL,'Redis: RDB last bgsave time sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qz4xiyu2ic9esf',1,'Admin',1672319419,'192.168.64.1',2,15,30335,NULL,'Redis: RDB last save time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r04xiy5jdt0mg8',1,'Admin',1672319419,'192.168.64.1',2,15,30336,NULL,'Redis: Total net output bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r14xiyv5jdmx12',1,'Admin',1672319419,'192.168.64.1',2,15,31052,NULL,'Remote Zabbix proxy: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r24xiy77snu5h9',1,'Admin',1672319419,'192.168.64.1',2,15,31053,NULL,'Remote Zabbix server: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r34xiy8117e2fz',1,'Admin',1672319419,'192.168.64.1',2,15,31274,NULL,'PostgreSQL: Get bgwriter','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r44xiya9o2jm29',1,'Admin',1672319419,'192.168.64.1',2,15,31275,NULL,'Replication: Lag in bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r54xiy2pie4dts',1,'Admin',1672319419,'192.168.64.1',2,15,31276,NULL,'PostgreSQL: Get connections','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r64xiy34s12m6k',1,'Admin',1672319419,'192.168.64.1',2,15,31277,NULL,'PostgreSQL: Get dbstat sum','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r74xiylka6dw8t',1,'Admin',1672319419,'192.168.64.1',2,15,31279,NULL,'PostgreSQL: Get dbstat','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r84xiybpmuyvty',1,'Admin',1672319419,'192.168.64.1',2,15,31280,NULL,'PostgreSQL: Get locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r94xiyzfibc82o',1,'Admin',1672319419,'192.168.64.1',2,15,31282,NULL,'PostgreSQL: Ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ra4xiydiam526z',1,'Admin',1672319419,'192.168.64.1',2,15,31283,NULL,'Replication: Standby count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rb4xiy9q8zhng8',1,'Admin',1672319419,'192.168.64.1',2,15,31284,NULL,'Replication: Lag in seconds','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rc4xiyyqqk3pni',1,'Admin',1672319419,'192.168.64.1',2,15,31285,NULL,'Replication: Recovery role','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rd4xiydnydq5mb',1,'Admin',1672319419,'192.168.64.1',2,15,31286,NULL,'Replication: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300re4xiypub7xhpo',1,'Admin',1672319419,'192.168.64.1',2,15,31287,NULL,'PostgreSQL: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rf4xiybk48ntn9',1,'Admin',1672319419,'192.168.64.1',2,15,31288,NULL,'Autovacuum: Count of autovacuum workers','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rg4xiybk9ftgb0',1,'Admin',1672319419,'192.168.64.1',2,15,31289,NULL,'PostgreSQL: Get archive','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rh4xiyetwh8otx',1,'Admin',1672319419,'192.168.64.1',2,15,31290,NULL,'PostgreSQL: Get WAL','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ri4xiy01rcbi2h',1,'Admin',1672319419,'192.168.64.1',2,15,31291,NULL,'Dbstat: Rows fetched','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rj4xiyqa5vedx3',1,'Admin',1672319419,'192.168.64.1',2,15,31292,NULL,'Dbstat: Backends connected','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rk4xiy9khn7bdh',1,'Admin',1672319419,'192.168.64.1',2,15,31293,NULL,'Dbstat: Deadlocks','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rl4xiylhzwyoqa',1,'Admin',1672319419,'192.168.64.1',2,15,31294,NULL,'Dbstat: Number temp bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rm4xiybuzdg2m2',1,'Admin',1672319419,'192.168.64.1',2,15,31295,NULL,'Dbstat: Number temp bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rn4xiy7balun1d',1,'Admin',1672319419,'192.168.64.1',2,15,31296,NULL,'Dbstat: Rows deleted','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ro4xiy05pot1ko',1,'Admin',1672319419,'192.168.64.1',2,15,31297,NULL,'Archive: Count of archive files','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rp4xiyc5557fcu',1,'Admin',1672319419,'192.168.64.1',2,15,31298,NULL,'Dbstat: Rows inserted','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rq4xiyw7do0y89',1,'Admin',1672319419,'192.168.64.1',2,15,31299,NULL,'Dbstat: Rows returned','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rr4xiygg3f9b4y',1,'Admin',1672319419,'192.168.64.1',2,15,31300,NULL,'Dbstat: Rows updated','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rs4xiyrqjmoogh',1,'Admin',1672319419,'192.168.64.1',2,15,31301,NULL,'Dbstat: Committed transactions','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rt4xiyyp550f4z',1,'Admin',1672319419,'192.168.64.1',2,15,31302,NULL,'Dbstat: Roll backed transactions','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ru4xiyghq8o6n3',1,'Admin',1672319419,'192.168.64.1',2,15,31303,NULL,'Dbstat: Checksum failures','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rv4xiytjbzm4wa',1,'Admin',1672319419,'192.168.64.1',2,15,31304,NULL,'WAL: Segments count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rw4xiy817uqqtv',1,'Admin',1672319419,'192.168.64.1',2,15,31305,NULL,'Dbstat: Conflicts','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rx4xiyktd6yzcf',1,'Admin',1672319419,'192.168.64.1',2,15,31306,NULL,'Dbstat: Blocks write time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ry4xiy1cl60hy9',1,'Admin',1672319419,'192.168.64.1',2,15,31307,NULL,'Dbstat: Disk blocks read','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rz4xiyof0k8zr6',1,'Admin',1672319419,'192.168.64.1',2,15,31309,NULL,'Archive: Count of attempts to archive files','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s04xiymp7ebh5a',1,'Admin',1672319419,'192.168.64.1',2,15,31310,NULL,'Archive: Count of files need to archive','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s14xiynbqeqfqv',1,'Admin',1672319419,'192.168.64.1',2,15,31311,NULL,'Bgwriter: Buffers allocated','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s24xiy56c70e3c',1,'Admin',1672319419,'192.168.64.1',2,15,31312,NULL,'Bgwriter: Times a backend execute its own fsync','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s34xiyi7ifboa9',1,'Admin',1672319419,'192.168.64.1',2,15,31313,NULL,'Bgwriter: Buffers written directly by a backend','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s44xiygk84g81w',1,'Admin',1672319419,'192.168.64.1',2,15,31314,NULL,'Checkpoint: Buffers checkpoints written','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s54xiy7vf6m36i',1,'Admin',1672319419,'192.168.64.1',2,15,31315,NULL,'Checkpoint: Buffers background written','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s64xiyprgp1n4n',1,'Admin',1672319419,'192.168.64.1',2,15,31316,NULL,'Checkpoint: Checkpoint write time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s74xiy0dwm9dvc',1,'Admin',1672319419,'192.168.64.1',2,15,31317,NULL,'Checkpoint: Requested','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s84xiyhuwey0oy',1,'Admin',1672319419,'192.168.64.1',2,15,31318,NULL,'Checkpoint: By timeout','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s94xiyw7ph8knx',1,'Admin',1672319419,'192.168.64.1',2,15,31319,NULL,'Bgwriter: Number of bgwriter stopped','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sa4xiyp5minxef',1,'Admin',1672319419,'192.168.64.1',2,15,31320,NULL,'Connections sum: Active','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sb4xiy0f7ijop2',1,'Admin',1672319419,'192.168.64.1',2,15,31321,NULL,'Dbstat: Hit blocks read','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sc4xiyta9ki3gm',1,'Admin',1672319419,'192.168.64.1',2,15,31322,NULL,'Connections sum: Disabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sd4xiy0yf7on21',1,'Admin',1672319419,'192.168.64.1',2,15,31323,NULL,'Connections sum: Fastpath function call','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300se4xiykmiah3r9',1,'Admin',1672319419,'192.168.64.1',2,15,31324,NULL,'Connections sum: Idle','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sf4xiydnj754o8',1,'Admin',1672319419,'192.168.64.1',2,15,31325,NULL,'Connections sum: Idle in transaction','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sg4xiy4wxzk9cx',1,'Admin',1672319419,'192.168.64.1',2,15,31326,NULL,'Connections sum: Idle in transaction (aborted)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sh4xiyp1l80qnh',1,'Admin',1672319419,'192.168.64.1',2,15,31327,NULL,'Connections sum: Prepared','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300si4xiyxd0u3hl2',1,'Admin',1672319419,'192.168.64.1',2,15,31328,NULL,'Connections sum: Total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sj4xiy1mwzrg9f',1,'Admin',1672319419,'192.168.64.1',2,15,31329,NULL,'Connections sum: Total %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sk4xiyy4qvv1ya',1,'Admin',1672319419,'192.168.64.1',2,15,31330,NULL,'Connections sum: Waiting','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sl4xiyra5d0gfo',1,'Admin',1672319419,'192.168.64.1',2,15,31331,NULL,'Dbstat: Blocks read time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sm4xiy580puaf8',1,'Admin',1672319419,'192.168.64.1',2,15,31332,NULL,'Archive: Count of files in archive_status need to archive','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sn4xiy30kwk79v',1,'Admin',1672319419,'192.168.64.1',2,15,31333,NULL,'WAL: Bytes written','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300so4xiyz3u3z4bp',1,'Admin',1672319419,'192.168.64.1',2,15,31419,NULL,'Number of cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sp4xiy0t1mnb7b',1,'Admin',1672319419,'192.168.64.1',2,15,31420,NULL,'Used swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sq4xiyrozqklew',1,'Admin',1672319419,'192.168.64.1',2,15,31421,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sr4xiyn7dvg8b1',1,'Admin',1672319419,'192.168.64.1',2,15,31422,NULL,'Network interfaces WMI get','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ss4xiy28lhwdk5',1,'Admin',1672319419,'192.168.64.1',2,15,31427,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300st4xiyr692umqn',1,'Admin',1672319419,'192.168.64.1',2,15,31612,NULL,'VMware: Event log','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300su4xiyejgfeg2b',1,'Admin',1672319419,'192.168.64.1',2,15,31613,NULL,'VMware: Full name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sv4xiy6dtg1efv',1,'Admin',1672319419,'192.168.64.1',2,15,31614,NULL,'VMware: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sw4xiy5hjnd4dm',1,'Admin',1672319419,'192.168.64.1',2,15,31948,NULL,'CPU DPC time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sx4xiybam7bnbi',1,'Admin',1672319419,'192.168.64.1',2,15,31949,NULL,'CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sy4xiyxb43ulu8',1,'Admin',1672319419,'192.168.64.1',2,15,31950,NULL,'CPU privileged time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sz4xiy26i7ao87',1,'Admin',1672319419,'192.168.64.1',2,15,31951,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t04xiytqzldwhr',1,'Admin',1672319419,'192.168.64.1',2,15,31952,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t14xiytpuov3jg',1,'Admin',1672319419,'192.168.64.1',2,15,31953,NULL,'CPU queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t24xiypenmmqf7',1,'Admin',1672319419,'192.168.64.1',2,15,31954,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t34xiyk7oshhrk',1,'Admin',1672319419,'192.168.64.1',2,15,31955,NULL,'Number of cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t44xiy60y8111j',1,'Admin',1672319419,'192.168.64.1',2,15,31956,NULL,'Number of threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t54xiyu6gmvh0y',1,'Admin',1672319419,'192.168.64.1',2,15,31957,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t64xiyr1odlffo',1,'Admin',1672319419,'192.168.64.1',2,15,31958,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t74xiyue5pb2v1',1,'Admin',1672319419,'192.168.64.1',2,15,31959,NULL,'System local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t84xiylt2vi6kq',1,'Admin',1672319419,'192.168.64.1',2,15,31960,NULL,'Operating system architecture','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t94xiykpg2uav3',1,'Admin',1672319419,'192.168.64.1',2,15,31961,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ta4xiyr3m1khxm',1,'Admin',1672319419,'192.168.64.1',2,15,31962,NULL,'Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tb4xiy5vgz8edt',1,'Admin',1672319419,'192.168.64.1',2,15,31963,NULL,'Cache bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tc4xiy25dkmb77',1,'Admin',1672319419,'192.168.64.1',2,15,31964,NULL,'Free system page table entries','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300td4xiyq0qx9siy',1,'Admin',1672319419,'192.168.64.1',2,15,31965,NULL,'Memory page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300te4xiyx4av74zp',1,'Admin',1672319419,'192.168.64.1',2,15,31966,NULL,'Memory pages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tf4xiyljht8q3s',1,'Admin',1672319419,'192.168.64.1',2,15,31967,NULL,'Memory pool non-paged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tg4xiy2mepy9qw',1,'Admin',1672319419,'192.168.64.1',2,15,31968,NULL,'Used swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300th4xiy7anqttob',1,'Admin',1672319419,'192.168.64.1',2,15,31969,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ti4xiydct0otty',1,'Admin',1672319419,'192.168.64.1',2,15,31970,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tj4xiyfje7gv7h',1,'Admin',1672319419,'192.168.64.1',2,15,31971,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tk4xiylwrcmp0e',1,'Admin',1672319419,'192.168.64.1',2,15,31972,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tl4xiyke3ptfff',1,'Admin',1672319419,'192.168.64.1',2,15,31973,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tm4xiyi6vbecru',1,'Admin',1672319419,'192.168.64.1',2,15,31974,NULL,'Network interfaces WMI get','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tn4xiylmyalxta',1,'Admin',1672319419,'192.168.64.1',2,15,32002,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300to4xiyvia19edl',1,'Admin',1672319419,'192.168.64.1',2,15,32239,NULL,'Squid: Service ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tp4xiyyx6glygy',1,'Admin',1672319419,'192.168.64.1',2,15,32240,NULL,'Squid: Objects count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tq4xiy1iyuug7b',1,'Admin',1672319419,'192.168.64.1',2,15,32241,NULL,'Squid: ICP query service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tr4xiyrsjafcht',1,'Admin',1672319419,'192.168.64.1',2,15,32242,NULL,'Squid: ICP query service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ts4xiy01x087mp',1,'Admin',1672319419,'192.168.64.1',2,15,32243,NULL,'Squid: ICP reply service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tt4xiy4s1wixnq',1,'Admin',1672319419,'192.168.64.1',2,15,32244,NULL,'Squid: ICP reply service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tu4xiyo3lx65uz',1,'Admin',1672319419,'192.168.64.1',2,15,32245,NULL,'Squid: IP cache hits per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tv4xiy0xxytv8j',1,'Admin',1672319419,'192.168.64.1',2,15,32246,NULL,'Squid: IP cache misses per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tw4xiy8kjk9604',1,'Admin',1672319419,'192.168.64.1',2,15,32247,NULL,'Squid: IP cache requests per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tx4xiy9zfp5w20',1,'Admin',1672319419,'192.168.64.1',2,15,32248,NULL,'Squid: Memory maximum resident size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ty4xiy97rqojdv',1,'Admin',1672319419,'192.168.64.1',2,15,32249,NULL,'Squid: Memory maximum cache size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tz4xiyy3phekpi',1,'Admin',1672319419,'192.168.64.1',2,15,32250,NULL,'Squid: Memory cache usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u04xiy50w6xkcq',1,'Admin',1672319419,'192.168.64.1',2,15,32251,NULL,'Squid: HTTP requests received per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u14xiytz6iabos',1,'Admin',1672319419,'192.168.64.1',2,15,32252,NULL,'Squid: ICP messages received per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u24xiy591elc9c',1,'Admin',1672319419,'192.168.64.1',2,15,32253,NULL,'Squid: Byte hit ratio per 1 minute','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u34xiytdutlct2',1,'Admin',1672319419,'192.168.64.1',2,15,32254,NULL,'Squid: Byte hit ratio per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u44xiyj6b2lsxs',1,'Admin',1672319419,'192.168.64.1',2,15,32255,NULL,'Squid: Byte hit ratio per 1 hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u54xiyjqoddmde',1,'Admin',1672319419,'192.168.64.1',2,15,32256,NULL,'Squid: Request hit ratio per 1 minute','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u64xiy0ltm2c21',1,'Admin',1672319419,'192.168.64.1',2,15,32257,NULL,'Squid: Request hit ratio per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u74xiy94ymcj3y',1,'Admin',1672319419,'192.168.64.1',2,15,32258,NULL,'Squid: Request hit ratio per 1 hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u84xiy5s7j3ti3',1,'Admin',1672319419,'192.168.64.1',2,15,32259,NULL,'Squid: Cache swap high water mark','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u94xiyfeatrk2k',1,'Admin',1672319419,'192.168.64.1',2,15,32260,NULL,'Squid: Cache swap low water mark','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ua4xiybk7bvses',1,'Admin',1672319419,'192.168.64.1',2,15,32261,NULL,'Squid: Cache swap directory size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ub4xiy2wdtihhf',1,'Admin',1672319419,'192.168.64.1',2,15,32262,NULL,'Squid: Sys page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uc4xiyh1wmnr06',1,'Admin',1672319419,'192.168.64.1',2,15,32263,NULL,'Squid: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ud4xiyek5tmxim',1,'Admin',1672319419,'192.168.64.1',2,15,32264,NULL,'Squid: ICP messages sent per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ue4xiyioyvoo24',1,'Admin',1672319419,'192.168.64.1',2,15,32265,NULL,'Squid: ICP traffic transmitted per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uf4xiyti1a5mqm',1,'Admin',1672319419,'192.168.64.1',2,15,32266,NULL,'Squid: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ug4xiy8pm4gkpf',1,'Admin',1672319419,'192.168.64.1',2,15,32267,NULL,'Squid: FQDN cache hits per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uh4xiy6u67yjyz',1,'Admin',1672319419,'192.168.64.1',2,15,32268,NULL,'Squid: File descriptor count - current used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ui4xiycpejtoo1',1,'Admin',1672319419,'192.168.64.1',2,15,32269,NULL,'Squid: File descriptor count - current maximum','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uj4xiy554g90eu',1,'Admin',1672319419,'192.168.64.1',2,15,32270,NULL,'Squid: Objects LRU expiration age','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uk4xiy6f98l7vu',1,'Admin',1672319419,'192.168.64.1',2,15,32271,NULL,'Squid: File descriptor count - current reserved','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ul4xiyd0ykqs43',1,'Admin',1672319419,'192.168.64.1',2,15,32272,NULL,'Squid: Cache swap current size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300um4xiy2ndnkwj0',1,'Admin',1672319419,'192.168.64.1',2,15,32273,NULL,'Squid: Objects unlinkd requests','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300un4xiyfj674m24',1,'Admin',1672319419,'192.168.64.1',2,15,32274,NULL,'Squid: File descriptor count - current available','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uo4xiyor715t7l',1,'Admin',1672319419,'192.168.64.1',2,15,32275,NULL,'Squid: DNS server replies per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300up4xiyfeo3qrso',1,'Admin',1672319419,'192.168.64.1',2,15,32276,NULL,'Squid: DNS server requests per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uq4xiycr3wnbhw',1,'Admin',1672319419,'192.168.64.1',2,15,32277,NULL,'Squid: DNS service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ur4xiy8kn0f7z7',1,'Admin',1672319419,'192.168.64.1',2,15,32278,NULL,'Squid: DNS service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300us4xiyaxi4ikok',1,'Admin',1672319419,'192.168.64.1',2,15,32279,NULL,'Squid: FQDN cache misses per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ut4xiywibalhh7',1,'Admin',1672319419,'192.168.64.1',2,15,32280,NULL,'Squid: ICP traffic received per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uu4xiy7yef93mq',1,'Admin',1672319419,'192.168.64.1',2,15,32281,NULL,'Squid: FQDN cache requests per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uv4xiy2xpd8mpj',1,'Admin',1672319419,'192.168.64.1',2,15,32282,NULL,'Squid: HTTP all service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uw4xiyt0qy1jks',1,'Admin',1672319419,'192.168.64.1',2,15,32283,NULL,'Squid: HTTP all service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ux4xiyaf3tet9s',1,'Admin',1672319419,'192.168.64.1',2,15,32284,NULL,'Squid: HTTP Errors sent per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uy4xiyk95zywie',1,'Admin',1672319419,'192.168.64.1',2,15,32285,NULL,'Squid: HTTP Hits sent from cache per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uz4xiy0g159hn0',1,'Admin',1672319419,'192.168.64.1',2,15,32286,NULL,'Squid: HTTP hit service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v04xiy7orapfa8',1,'Admin',1672319419,'192.168.64.1',2,15,32287,NULL,'Squid: HTTP hit service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v14xiytxv4moq8',1,'Admin',1672319419,'192.168.64.1',2,15,32288,NULL,'Squid: HTTP traffic received per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v24xiyt0r6eyyf',1,'Admin',1672319419,'192.168.64.1',2,15,32289,NULL,'Squid: HTTP miss service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v34xiyhn8utqug',1,'Admin',1672319419,'192.168.64.1',2,15,32290,NULL,'Squid: HTTP miss service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v44xiy0ax6e4ed',1,'Admin',1672319419,'192.168.64.1',2,15,32291,NULL,'Squid: HTTP traffic sent per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v54xiytrnabw1a',1,'Admin',1672319419,'192.168.64.1',2,15,32292,NULL,'Squid: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v64xiyxpdwu8v9',1,'Admin',1672319419,'192.168.64.1',2,15,32890,NULL,'VMware: Cluster name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v74xiyv0y0mw0t',1,'Admin',1672319419,'192.168.64.1',2,15,32891,NULL,'VMware: Swapped memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v84xiyot5h928l',1,'Admin',1672319419,'192.168.64.1',2,15,32892,NULL,'VMware: Unshared storage space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v94xiy0jtwfdf1',1,'Admin',1672319419,'192.168.64.1',2,15,32893,NULL,'VMware: Uncommitted storage space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300va4xiy2ci6ww18',1,'Admin',1672319419,'192.168.64.1',2,15,32894,NULL,'VMware: Committed storage space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vb4xiy7ce0fk8s',1,'Admin',1672319419,'192.168.64.1',2,15,32895,NULL,'VMware: Power state','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vc4xiyr3dk45iq',1,'Admin',1672319419,'192.168.64.1',2,15,32896,NULL,'VMware: Memory size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vd4xiy6xqmt9of',1,'Admin',1672319419,'192.168.64.1',2,15,32897,NULL,'VMware: Host memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ve4xiydk3teoof',1,'Admin',1672319419,'192.168.64.1',2,15,32898,NULL,'VMware: Guest memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vf4xiys1mymw0w',1,'Admin',1672319419,'192.168.64.1',2,15,32899,NULL,'VMware: Shared memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vg4xiyb3oy9ndj',1,'Admin',1672319419,'192.168.64.1',2,15,32900,NULL,'VMware: Number of virtual CPUs','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vh4xiy94dexybv',1,'Admin',1672319419,'192.168.64.1',2,15,32901,NULL,'VMware: Private memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vi4xiycr588bii',1,'Admin',1672319419,'192.168.64.1',2,15,32902,NULL,'VMware: Compressed memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vj4xiypqwbqqgj',1,'Admin',1672319419,'192.168.64.1',2,15,32903,NULL,'VMware: Ballooned memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vk4xiyb6bi8n78',1,'Admin',1672319419,'192.168.64.1',2,15,32904,NULL,'VMware: Hypervisor name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vl4xiyv77gulfa',1,'Admin',1672319419,'192.168.64.1',2,15,32905,NULL,'VMware: Datacenter name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vm4xiyfakkju6f',1,'Admin',1672319419,'192.168.64.1',2,15,32906,NULL,'VMware: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vn4xiywo641a1l',1,'Admin',1672319419,'192.168.64.1',2,15,32907,NULL,'VMware: CPU ready','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vo4xiy3t0tfu23',1,'Admin',1672319419,'192.168.64.1',2,15,32908,NULL,'VMware: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vp4xiyu3g0mydq',1,'Admin',1672319419,'192.168.64.1',2,15,32909,NULL,'VMware: Hypervisor ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vq4xiyf93a0vfq',1,'Admin',1672319419,'192.168.64.1',2,15,32910,NULL,'VMware: Vendor','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vr4xiybn40eue1',1,'Admin',1672319419,'192.168.64.1',2,15,32911,NULL,'VMware: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vs4xiy98ji52fx',1,'Admin',1672319419,'192.168.64.1',2,15,32912,NULL,'VMware: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vt4xiyzn29brvg',1,'Admin',1672319419,'192.168.64.1',2,15,32913,NULL,'VMware: Overall status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vu4xiyi0dzsace',1,'Admin',1672319419,'192.168.64.1',2,15,32915,NULL,'VMware: Number of bytes transmitted','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vv4xiynvgsveh4',1,'Admin',1672319419,'192.168.64.1',2,15,32916,NULL,'VMware: Number of bytes received','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vw4xiyrgwos7oe',1,'Admin',1672319419,'192.168.64.1',2,15,32917,NULL,'VMware: Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vx4xiyauthqz4f',1,'Admin',1672319419,'192.168.64.1',2,15,32918,NULL,'VMware: Ballooned memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vy4xiyrvlxvb24',1,'Admin',1672319419,'192.168.64.1',2,15,32919,NULL,'VMware: Bios UUID','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vz4xiywby0kabl',1,'Admin',1672319419,'192.168.64.1',2,15,32920,NULL,'VMware: Cluster name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w04xiy1nqf0c01',1,'Admin',1672319419,'192.168.64.1',2,15,32921,NULL,'VMware: Model','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w14xiyn9itg2kw',1,'Admin',1672319419,'192.168.64.1',2,15,32922,NULL,'VMware: Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w24xiyd5g9jeyi',1,'Admin',1672319419,'192.168.64.1',2,15,32923,NULL,'VMware: CPU threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w34xiy0t8bb9b0',1,'Admin',1672319419,'192.168.64.1',2,15,32924,NULL,'VMware: CPU cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w44xiyaod58r48',1,'Admin',1672319419,'192.168.64.1',2,15,32925,NULL,'VMware: CPU model','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w54xiyezgxt8jl',1,'Admin',1672319419,'192.168.64.1',2,15,32926,NULL,'VMware: CPU frequency','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w64xiyzef9wwxm',1,'Admin',1672319419,'192.168.64.1',2,15,32927,NULL,'VMware: Full name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w74xiyx8nbyzkz',1,'Admin',1672319419,'192.168.64.1',2,15,32928,NULL,'VMware: Datacenter name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w84xiy4f5qa164',1,'Admin',1672319419,'192.168.64.1',2,15,32929,NULL,'VMware: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w94xiy72meyxk1',1,'Admin',1672319419,'192.168.64.1',2,15,32930,NULL,'VMware: Number of guest VMs','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wa4xiyepjcgy92',1,'Admin',1672319419,'192.168.64.1',2,15,32951,NULL,'VMware: Event log','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wb4xiyd3tlf09r',1,'Admin',1672319419,'192.168.64.1',2,15,32952,NULL,'VMware: Full name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wc4xiya24bkxs8',1,'Admin',1672319419,'192.168.64.1',2,15,32953,NULL,'VMware: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wd4xiyvcwtu1t9',1,'Admin',1672319419,'192.168.64.1',2,15,33012,NULL,'Remote Zabbix proxy: Utilization of availability manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300we4xiy91rhesxv',1,'Admin',1672319419,'192.168.64.1',2,15,33013,NULL,'Remote Zabbix proxy: Utilization of history poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wf4xiyhlal5n45',1,'Admin',1672319419,'192.168.64.1',2,15,33014,NULL,'Remote Zabbix server: Trend function cache, % unique requests','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wg4xiy8hpc1ay9',1,'Admin',1672319419,'192.168.64.1',2,15,33015,NULL,'Remote Zabbix server: Trend function cache, % misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wh4xiy7ayx6oj2',1,'Admin',1672319419,'192.168.64.1',2,15,33016,NULL,'Remote Zabbix server: Utilization of availability manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wi4xiyitr3pt36',1,'Admin',1672319419,'192.168.64.1',2,15,33017,NULL,'Remote Zabbix server: Utilization of history poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wj4xiy3hkx6r9l',1,'Admin',1672319419,'192.168.64.1',2,15,33172,NULL,'PostgreSQL: Custom queries','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wk4xiyod5tgzbg',1,'Admin',1672319419,'192.168.64.1',2,15,33173,NULL,'PostgreSQL: Cache hit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wl4xiylzropp9m',1,'Admin',1672319419,'192.168.64.1',2,15,33174,NULL,'PostgreSQL: Age of oldest xid','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wm4xiyi6lu4x4x',1,'Admin',1672319419,'192.168.64.1',2,15,33175,NULL,'PostgreSQL: Get replication','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wn4xiy8zavhmvy',1,'Admin',1672319419,'192.168.64.1',2,15,33176,NULL,'Checkpoint: Checkpoint sync time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wo4xiymzlzkxq5',1,'Admin',1672319419,'192.168.64.1',2,15,33638,NULL,'VMware: Host memory consumed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wp4xiy8ta3xx27',1,'Admin',1672319419,'192.168.64.1',2,15,33639,NULL,'VMware: Host memory usage in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wq4xiyx8e1qr47',1,'Admin',1672319419,'192.168.64.1',2,15,33640,NULL,'VMware: CPU latency in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wr4xiykkw9vye7',1,'Admin',1672319419,'192.168.64.1',2,15,33641,NULL,'VMware: Uptime of guest OS','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ws4xiyeduzqsyp',1,'Admin',1672319419,'192.168.64.1',2,15,33642,NULL,'VMware: Guest memory swapped','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wt4xiyt0ino73g',1,'Admin',1672319419,'192.168.64.1',2,15,33643,NULL,'VMware: CPU usage in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wu4xiy1nnmwu4b',1,'Admin',1672319419,'192.168.64.1',2,15,33644,NULL,'VMware: CPU swap-in latency in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wv4xiy93eet2w5',1,'Admin',1672319419,'192.168.64.1',2,15,33645,NULL,'VMware: CPU readiness latency in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ww4xiykunuajfi',1,'Admin',1672319419,'192.168.64.1',2,15,33646,NULL,'VMware: Power usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wx4xiyqzxlh0ek',1,'Admin',1672319419,'192.168.64.1',2,15,33647,NULL,'VMware: Power usage maximum allowed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wy4xiy5hmpgbvh',1,'Admin',1672319419,'192.168.64.1',2,15,33648,NULL,'VMware: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wz4xiyz9oh2z0l',1,'Admin',1672319419,'192.168.64.1',2,15,33649,NULL,'VMware: CPU usage in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x04xiy7vn8g8pq',1,'Admin',1672319419,'192.168.64.1',2,15,34314,NULL,'Remote Zabbix server: Utilization of report manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x14xiyt3cehnsp',1,'Admin',1672319419,'192.168.64.1',2,15,34315,NULL,'Remote Zabbix server: Utilization of report writer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x24xiyuurmfgth',1,'Admin',1672319419,'192.168.64.1',2,15,34336,NULL,'PD: Get instance metrics','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x34xiy1lxi2zt7',1,'Admin',1672319419,'192.168.64.1',2,15,34337,NULL,'PD: Get instance status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x44xiy08bidfz7',1,'Admin',1672319419,'192.168.64.1',2,15,34338,NULL,'PD: GRPC Commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x54xiyx8o1s9l9',1,'Admin',1672319419,'192.168.64.1',2,15,34339,NULL,'PD: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x64xiy9lvxlgce',1,'Admin',1672319419,'192.168.64.1',2,15,34340,NULL,'PD: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x74xiyhkrj3prs',1,'Admin',1672319419,'192.168.64.1',2,15,34341,NULL,'PD: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x84xiygj9mp86t',1,'Admin',1672319419,'192.168.64.1',2,15,34367,NULL,'TiDB: Get instance status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x94xiyr8iz3mas',1,'Admin',1672319419,'192.168.64.1',2,15,34368,NULL,'TiDB: Get instance metrics','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xa4xiys8f8pneo',1,'Admin',1672319419,'192.168.64.1',2,15,34369,NULL,'TiDB: CPU','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xb4xiy3jbsae5n',1,'Admin',1672319419,'192.168.64.1',2,15,34370,NULL,'TiDB: Total server query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xc4xiym0wen634',1,'Admin',1672319419,'192.168.64.1',2,15,34371,NULL,'TiDB: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xd4xiykunpde63',1,'Admin',1672319419,'192.168.64.1',2,15,34372,NULL,'TiDB: KV commands, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xe4xiy7ofxf38x',1,'Admin',1672319419,'192.168.64.1',2,15,34373,NULL,'TiDB: TiClient region errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xf4xiy8fcxl6zl',1,'Admin',1672319419,'192.168.64.1',2,15,34374,NULL,'TiDB: Lock resolves, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xg4xiyingnm79k',1,'Admin',1672319419,'192.168.64.1',2,15,34375,NULL,'TiDB: KV backoff, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xh4xiyjd91wnsu',1,'Admin',1672319419,'192.168.64.1',2,15,34376,NULL,'TiDB: Server panic, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xi4xiy718ur9gg',1,'Admin',1672319419,'192.168.64.1',2,15,34377,NULL,'TiDB: Server critical error, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xj4xiy1r6j7zoc',1,'Admin',1672319419,'192.168.64.1',2,15,34378,NULL,'TiDB: Server connections','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xk4xiyzqwav82h',1,'Admin',1672319419,'192.168.64.1',2,15,34379,NULL,'TiDB: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xl4xiyas1uax1u',1,'Admin',1672319419,'192.168.64.1',2,15,34380,NULL,'TiDB: SQL statements, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xm4xiyvdd0a50j',1,'Admin',1672319419,'192.168.64.1',2,15,34381,NULL,'TiDB: Schema lease \"outdate\" errors , rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xn4xiyll449zk8',1,'Admin',1672319419,'192.168.64.1',2,15,34382,NULL,'TiDB: Schema lease \"change\" errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xo4xiyl27puqxq',1,'Admin',1672319419,'192.168.64.1',2,15,34383,NULL,'TiDB: Total \"error\" server query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xp4xiy5j3i2k62',1,'Admin',1672319419,'192.168.64.1',2,15,34384,NULL,'TiDB: Total \"ok\" server query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xq4xiykickdrwl',1,'Admin',1672319419,'192.168.64.1',2,15,34385,NULL,'TiDB: DDL waiting jobs','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xr4xiyt8id9bcd',1,'Admin',1672319419,'192.168.64.1',2,15,34386,NULL,'TiDB: RSS memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xs4xiys5o3wz8k',1,'Admin',1672319419,'192.168.64.1',2,15,34387,NULL,'TiDB: Open file descriptors','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xt4xiy57bjausk',1,'Admin',1672319419,'192.168.64.1',2,15,34388,NULL,'TiDB: Open file descriptors, max','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xu4xiyxs32nd8f',1,'Admin',1672319419,'192.168.64.1',2,15,34389,NULL,'TiDB: PD TSO requests, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xv4xiy3zzpnef9',1,'Admin',1672319419,'192.168.64.1',2,15,34390,NULL,'TiDB: PD TSO commands, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xw4xiyazooi2m5',1,'Admin',1672319419,'192.168.64.1',2,15,34391,NULL,'TiDB: Time jump back, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xx4xiy9gxn4e6d',1,'Admin',1672319419,'192.168.64.1',2,15,34392,NULL,'TiDB: Keep alive, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xy4xiylbee25yv',1,'Admin',1672319419,'192.168.64.1',2,15,34393,NULL,'TiDB: Heap memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xz4xiy3i7a5rgk',1,'Admin',1672319419,'192.168.64.1',2,15,34394,NULL,'TiDB: Goroutine count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y04xiyeejvxwza',1,'Admin',1672319419,'192.168.64.1',2,15,34395,NULL,'TiDB: Failed Query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y14xiy1oz5y3d2',1,'Admin',1672319419,'192.168.64.1',2,15,34396,NULL,'TiDB: Load schema total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y24xiyb75wbp33',1,'Admin',1672319419,'192.168.64.1',2,15,34397,NULL,'TiDB: Load schema failed, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y34xiy8o1p9dgr',1,'Admin',1672319419,'192.168.64.1',2,15,34398,NULL,'TiDB: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y44xiyhtamhmwg',1,'Admin',1672319419,'192.168.64.1',2,15,34412,NULL,'TiKV: Get instance metrics','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y54xiy8qey4yo1',1,'Admin',1672319419,'192.168.64.1',2,15,34413,NULL,'TiKV: Scheduler: High priority commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y64xiyrfhtexln',1,'Admin',1672319419,'192.168.64.1',2,15,34414,NULL,'TiKV: Regions, count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y74xiy7zbp22l9',1,'Admin',1672319419,'192.168.64.1',2,15,34415,NULL,'TiKV: Capacity size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y84xiywq50t7rh',1,'Admin',1672319419,'192.168.64.1',2,15,34416,NULL,'TiKV: Available size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y94xiy32qpj90e',1,'Admin',1672319419,'192.168.64.1',2,15,34417,NULL,'TiKV: Storage: commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ya4xiyp2zdvuh8',1,'Admin',1672319419,'192.168.64.1',2,15,34418,NULL,'TiKV: Snapshot: Sending','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yb4xiyyoxc7zd3',1,'Admin',1672319419,'192.168.64.1',2,15,34419,NULL,'TiKV: Snapshot: Receiving','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yc4xiy5drmt3zw',1,'Admin',1672319419,'192.168.64.1',2,15,34420,NULL,'TiKV: Snapshot: Applying','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yd4xiyp6j98g7p',1,'Admin',1672319419,'192.168.64.1',2,15,34421,NULL,'TiKV: Scheduler: Busy, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ye4xiy13jaz09k',1,'Admin',1672319419,'192.168.64.1',2,15,34422,NULL,'TiKV: Snapshot: Pending tasks','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yf4xiy1nya82qx',1,'Admin',1672319419,'192.168.64.1',2,15,34423,NULL,'TiKV: Scheduler: Commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yg4xiy84nxp0xt',1,'Admin',1672319419,'192.168.64.1',2,15,34424,NULL,'TiKV: RSS memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yh4xiynv75o5p3',1,'Admin',1672319419,'192.168.64.1',2,15,34425,NULL,'TiKV: Regions, leader','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yi4xiygygzd5mw',1,'Admin',1672319419,'192.168.64.1',2,15,34426,NULL,'TiKV: Server: failure messages total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yj4xiys15oy4rz',1,'Admin',1672319419,'192.168.64.1',2,15,34427,NULL,'TiKV: Scheduler: Low priority commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yk4xiyvocvsp01',1,'Admin',1672319419,'192.168.64.1',2,15,34428,NULL,'TiKV: Total query errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yl4xiyii5ul80k',1,'Admin',1672319419,'192.168.64.1',2,15,34429,NULL,'TiKV: Total query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ym4xiy9ovtjs0k',1,'Admin',1672319419,'192.168.64.1',2,15,34430,NULL,'TiKV: Store size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yn4xiyzf4x7pny',1,'Admin',1672319419,'192.168.64.1',2,15,34431,NULL,'TiKV: Bytes write','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yo4xiymg8d19fz',1,'Admin',1672319419,'192.168.64.1',2,15,34432,NULL,'TiKV: Bytes read','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yp4xiyn3em9i90',1,'Admin',1672319419,'192.168.64.1',2,15,34433,NULL,'TiKV: CPU util','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yq4xiydjyw6k5x',1,'Admin',1672319419,'192.168.64.1',2,15,34434,NULL,'TiKV: Coprocessor: Response size, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yr4xiy26n0udl3',1,'Admin',1672319419,'192.168.64.1',2,15,34435,NULL,'TiKV: Coprocessor: RocksDB ops, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ys4xiyunvuv2m4',1,'Admin',1672319419,'192.168.64.1',2,15,34436,NULL,'TiKV: Coprocessor: Errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yt4xiyui7cim5q',1,'Admin',1672319419,'192.168.64.1',2,15,34437,NULL,'TiKV: Coprocessor: Requests, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yu4xiylj0r03ty',1,'Admin',1672319419,'192.168.64.1',2,15,34438,NULL,'TiKV: Scheduler: Normal priority commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yv4xiyt7wirmoc',1,'Admin',1672319419,'192.168.64.1',2,15,34439,NULL,'TiKV: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yw4xiysbqossht',1,'Admin',1672319419,'192.168.64.1',2,15,34937,NULL,'WildFly: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yx4xiyw7s4x7ky',1,'Admin',1672319419,'192.168.64.1',2,15,34938,NULL,'WildFly: Launch type','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yy4xiys50l45v5',1,'Admin',1672319419,'192.168.64.1',2,15,34939,NULL,'WildFly: Name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yz4xiynzcm3ca2',1,'Admin',1672319419,'192.168.64.1',2,15,34940,NULL,'WildFly: Process type','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z04xiyqxcz8tc4',1,'Admin',1672319419,'192.168.64.1',2,15,34941,NULL,'WildFly: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z14xiyzgvbjgw2',1,'Admin',1672319419,'192.168.64.1',2,15,34949,NULL,'WildFly: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z24xiy48bqguce',1,'Admin',1672319419,'192.168.64.1',2,15,34950,NULL,'WildFly: Transactions: Committed, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z34xiy1dk8b9fk',1,'Admin',1672319419,'192.168.64.1',2,15,34951,NULL,'WildFly: Transactions: Timed out, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z44xiy7zhadoc2',1,'Admin',1672319419,'192.168.64.1',2,15,34952,NULL,'WildFly: Transactions: System rollbacks, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z54xiyciqunrxh',1,'Admin',1672319419,'192.168.64.1',2,15,34953,NULL,'WildFly: Transactions: ResourceRollbacks, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z64xiy0diojiyu',1,'Admin',1672319419,'192.168.64.1',2,15,34954,NULL,'WildFly: Transactions: Nested, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z74xiy6pc2r7ss',1,'Admin',1672319419,'192.168.64.1',2,15,34955,NULL,'WildFly: Transactions: Current','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z84xiy8wq4zoq8',1,'Admin',1672319419,'192.168.64.1',2,15,34956,NULL,'WildFly: Transactions: Heuristics, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z94xiylbhbzsif',1,'Admin',1672319419,'192.168.64.1',2,15,34957,NULL,'WildFly: Transactions: Application rollbacks, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400za4xiyvin02dm6',1,'Admin',1672319419,'192.168.64.1',2,15,34958,NULL,'WildFly: Launch type','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zb4xiycomk28sc',1,'Admin',1672319419,'192.168.64.1',2,15,34959,NULL,'WildFly: Transactions: Aborted, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zc4xiyewoataq1',1,'Admin',1672319419,'192.168.64.1',2,15,34960,NULL,'WildFly: Server controller state','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zd4xiyd5754azg',1,'Admin',1672319419,'192.168.64.1',2,15,34961,NULL,'WildFly: Runtime configuration state','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ze4xiyibcweb3f',1,'Admin',1672319419,'192.168.64.1',2,15,34962,NULL,'WildFly: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zf4xiycpmt16i5',1,'Admin',1672319419,'192.168.64.1',2,15,34963,NULL,'WildFly: Process type','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zg4xiy7h4ertkw',1,'Admin',1672319419,'192.168.64.1',2,15,34964,NULL,'WildFly: Name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zh4xiyj28elted',1,'Admin',1672319419,'192.168.64.1',2,15,34965,NULL,'WildFly: Transactions: Total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zi4xiy5uxlel5o',1,'Admin',1672319419,'192.168.64.1',2,15,35064,NULL,'Cert: Get','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zj4xiy9934f4z9',1,'Admin',1672319419,'192.168.64.1',2,15,35065,NULL,'Cert: Subject alternative name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zk4xiygm8vxcvx',1,'Admin',1672319419,'192.168.64.1',2,15,35066,NULL,'Cert: Issuer','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zl4xiydmiwz9qm',1,'Admin',1672319419,'192.168.64.1',2,15,35067,NULL,'Cert: Last validation status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zm4xiygpt82f3u',1,'Admin',1672319419,'192.168.64.1',2,15,35068,NULL,'Cert: Expires on','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zn4xiy7h4wp55o',1,'Admin',1672319419,'192.168.64.1',2,15,35069,NULL,'Cert: Valid from','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zo4xiynutqsky8',1,'Admin',1672319419,'192.168.64.1',2,15,35070,NULL,'Cert: Public key algorithm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zp4xiynkr9zai1',1,'Admin',1672319419,'192.168.64.1',2,15,35071,NULL,'Cert: Serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zq4xiyajbldiri',1,'Admin',1672319419,'192.168.64.1',2,15,35072,NULL,'Cert: Fingerprint','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zr4xiy3xc6cq7q',1,'Admin',1672319419,'192.168.64.1',2,15,35073,NULL,'Cert: Signature algorithm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zs4xiym1gigsut',1,'Admin',1672319419,'192.168.64.1',2,15,35074,NULL,'Cert: Subject','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zt4xiy2ps3s90n',1,'Admin',1672319419,'192.168.64.1',2,15,35075,NULL,'Cert: Validation result','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zu4xiyj3i3yu0w',1,'Admin',1672319419,'192.168.64.1',2,15,35076,NULL,'Cert: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zv4xiy06uined7',1,'Admin',1672319419,'192.168.64.1',2,15,35278,NULL,'Remote Zabbix server: Utilization of trigger housekeeper internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zw4xiy8v91gxnw',1,'Admin',1672319419,'192.168.64.1',2,15,35279,NULL,'Remote Zabbix server: Utilization of service manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zx4xiyuhptxqsb',1,'Admin',1672319419,'192.168.64.1',2,15,36772,NULL,'Travis: Get builds','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zy4xiyrgze2tlp',1,'Admin',1672319419,'192.168.64.1',2,15,36773,NULL,'Travis: Get health','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zz4xiyk1mm6tlf',1,'Admin',1672319419,'192.168.64.1',2,15,36774,NULL,'Travis: Get jobs','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401004xiy6ji0rp5a',1,'Admin',1672319419,'192.168.64.1',2,15,36775,NULL,'Travis: Get repos','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401014xiymxfesne1',1,'Admin',1672319419,'192.168.64.1',2,15,36776,NULL,'Travis: Builds duration','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401024xiyh71sokm9',1,'Admin',1672319419,'192.168.64.1',2,15,36777,NULL,'Travis: Builds','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401034xiyaauewa9p',1,'Admin',1672319419,'192.168.64.1',2,15,36778,NULL,'Travis: Jobs active','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401044xiyrwn4o360',1,'Admin',1672319419,'192.168.64.1',2,15,36779,NULL,'Travis: Jobs in queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401054xiy2tlxssxu',1,'Admin',1672319419,'192.168.64.1',2,15,36780,NULL,'Travis: Jobs passed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401064xiytuv53enc',1,'Admin',1672319419,'192.168.64.1',2,15,39742,NULL,'Velocloud: System properties','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401074xiy5mfv6nei',1,'Admin',1672319419,'192.168.64.1',2,15,39743,NULL,'Velocloud: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401084xiysfgqj0h0',1,'Admin',1672319419,'192.168.64.1',2,15,39744,NULL,'Velocloud: Clear data','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401094xiy8yl7bg2a',1,'Admin',1672319419,'192.168.64.1',2,15,39745,NULL,'Velocloud: Get data collection errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010a4xiy519931n9',1,'Admin',1672319419,'192.168.64.1',2,15,39746,NULL,'Velocloud: Orchestrator API version','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010b4xiyhzdtaxss',1,'Admin',1672319419,'192.168.64.1',2,15,39747,NULL,'Velocloud: Orchestrator build','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010c4xiy9kwpbl7o',1,'Admin',1672319419,'192.168.64.1',2,15,39748,NULL,'Velocloud: Orchestrator version','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010d4xiymntqc48e',1,'Admin',1672319419,'192.168.64.1',2,15,39821,NULL,'WAL: Bytes received','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010e4xiy9ol1eag4',1,'Admin',1672319419,'192.168.64.1',2,15,39824,NULL,'Remote Zabbix server: Utilization of ODBC poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010f4xiyav6iuyo8',1,'Admin',1672319419,'192.168.64.1',2,15,39825,NULL,'Remote Zabbix proxy: Utilization of ODBC poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010g4xiy4fhd26g5',1,'Admin',1672319419,'192.168.64.1',2,15,40185,NULL,'Remote Zabbix proxy: Required performance','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010h4xiyzh1m2ty7',1,'Admin',1672319419,'192.168.64.1',2,15,40186,NULL,'Remote Zabbix proxy: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010i4xiy4dejmp5k',1,'Admin',1672319419,'192.168.64.1',2,15,40187,NULL,'Remote Zabbix proxy: Preprocessing queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010j4xiyg06s7oaa',1,'Admin',1672319419,'192.168.64.1',2,15,40188,NULL,'Remote Zabbix proxy: Utilization of preprocessing manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010k4xiyfddecgp5',1,'Admin',1672319419,'192.168.64.1',2,15,40189,NULL,'Remote Zabbix proxy: Utilization of preprocessing worker internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010l4xiyug994uvf',1,'Admin',1672319419,'192.168.64.1',2,15,42110,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010m4xiy0leh7wq5',1,'Admin',1672319419,'192.168.64.1',2,15,42111,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010n4xiyw93c93i6',1,'Admin',1672319419,'192.168.64.1',2,15,42112,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010o4xiyxctt7vv4',1,'Admin',1672319419,'192.168.64.1',2,15,42113,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010p4xiy7x6tl0qt',1,'Admin',1672319419,'192.168.64.1',2,15,42114,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010q4xiyl5bo7w6u',1,'Admin',1672319419,'192.168.64.1',2,15,42115,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010r4xiyq14j1poo',1,'Admin',1672319419,'192.168.64.1',2,15,42116,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010s4xiyfys5xlra',1,'Admin',1672319419,'192.168.64.1',2,15,42117,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010t4xiyfvvoeeed',1,'Admin',1672319419,'192.168.64.1',2,15,42118,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010u4xiyhzicfvy6',1,'Admin',1672319419,'192.168.64.1',2,15,42119,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010v4xiym9bmzk3v',1,'Admin',1672319419,'192.168.64.1',2,15,42120,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010w4xiye9tsy1is',1,'Admin',1672319419,'192.168.64.1',2,15,42133,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010x4xiyay7jcj9h',1,'Admin',1672319419,'192.168.64.1',2,15,42134,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010y4xiyhuq0bsqa',1,'Admin',1672319419,'192.168.64.1',2,15,42135,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010z4xiyejvvy3tg',1,'Admin',1672319419,'192.168.64.1',2,15,42136,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401104xiyd8l62cj6',1,'Admin',1672319419,'192.168.64.1',2,15,42137,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401114xiyabbo7hgx',1,'Admin',1672319419,'192.168.64.1',2,15,42138,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401124xiyuyz0aqzz',1,'Admin',1672319419,'192.168.64.1',2,15,42139,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401134xiy8m4zj5es',1,'Admin',1672319419,'192.168.64.1',2,15,42140,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401144xiyoqxsv3x5',1,'Admin',1672319419,'192.168.64.1',2,15,42141,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401154xiypwn0uo50',1,'Admin',1672319419,'192.168.64.1',2,15,42142,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401164xiyf2yr7qec',1,'Admin',1672319419,'192.168.64.1',2,15,42143,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401174xiyu4svxm87',1,'Admin',1672319419,'192.168.64.1',2,15,42154,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401184xiyd7ktr998',1,'Admin',1672319419,'192.168.64.1',2,15,42155,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401194xiyinlm9ias',1,'Admin',1672319419,'192.168.64.1',2,15,42156,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011a4xiyi1gqewk2',1,'Admin',1672319419,'192.168.64.1',2,15,42157,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011b4xiyz1hu5quy',1,'Admin',1672319419,'192.168.64.1',2,15,42158,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011c4xiywez7vol7',1,'Admin',1672319419,'192.168.64.1',2,15,42159,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011d4xiy988z5iat',1,'Admin',1672319419,'192.168.64.1',2,15,42160,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011e4xiyzlceab8g',1,'Admin',1672319419,'192.168.64.1',2,15,42161,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011f4xiy1arait35',1,'Admin',1672319419,'192.168.64.1',2,15,42162,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011g4xiypgj8d1l4',1,'Admin',1672319419,'192.168.64.1',2,15,42163,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011h4xiyzpe2fktn',1,'Admin',1672319419,'192.168.64.1',2,15,42164,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011i4xiy2emkvmuj',1,'Admin',1672319419,'192.168.64.1',2,15,42451,NULL,'Host name of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011j4xiyl2pvogrd',1,'Admin',1672319419,'192.168.64.1',2,15,42452,NULL,'Zabbix agent ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011k4xiyvupucxjz',1,'Admin',1672319419,'192.168.64.1',2,15,42453,NULL,'Version of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011l4xiyckva838p',1,'Admin',1672319419,'192.168.64.1',2,15,42454,NULL,'Zabbix agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011m4xiyfsaffwdt',1,'Admin',1672319419,'192.168.64.1',2,15,42455,NULL,'Host name of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011n4xiyzmp3xfc7',1,'Admin',1672319419,'192.168.64.1',2,15,42456,NULL,'Zabbix agent ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011o4xiy0mgbkylc',1,'Admin',1672319419,'192.168.64.1',2,15,42457,NULL,'Number of cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011p4xiy5wb675w1',1,'Admin',1672319419,'192.168.64.1',2,15,42458,NULL,'Network interfaces WMI get','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011q4xiy3lm3mq5k',1,'Admin',1672319419,'192.168.64.1',2,15,42459,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011r4xiyccj8by0a',1,'Admin',1672319419,'192.168.64.1',2,15,42460,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011s4xiybae8bcgo',1,'Admin',1672319419,'192.168.64.1',2,15,42461,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011t4xiygfauxiti',1,'Admin',1672319419,'192.168.64.1',2,15,42462,NULL,'Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011u4xiypr5elyxl',1,'Admin',1672319419,'192.168.64.1',2,15,42463,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011v4xiyzrvt9n39',1,'Admin',1672319419,'192.168.64.1',2,15,42464,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011w4xiy45z1dxh3',1,'Admin',1672319419,'192.168.64.1',2,15,42465,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011x4xiyzclxm2f3',1,'Admin',1672319419,'192.168.64.1',2,15,42466,NULL,'Operating system architecture','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011y4xiyi9a0e94d',1,'Admin',1672319419,'192.168.64.1',2,15,42467,NULL,'System local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011z4xiy2l4b31fy',1,'Admin',1672319419,'192.168.64.1',2,15,42468,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401204xiy3ydcan4c',1,'Admin',1672319419,'192.168.64.1',2,15,42469,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401214xiyemko8afn',1,'Admin',1672319419,'192.168.64.1',2,15,42470,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401224xiypvm4jjad',1,'Admin',1672319419,'192.168.64.1',2,15,42471,NULL,'Number of threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401234xiyidusf2gi',1,'Admin',1672319419,'192.168.64.1',2,15,42472,NULL,'CPU queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401244xiy1k1o9ex9',1,'Admin',1672319419,'192.168.64.1',2,15,42473,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401254xiy46654qyb',1,'Admin',1672319419,'192.168.64.1',2,15,42474,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401264xiyzvgmapun',1,'Admin',1672319419,'192.168.64.1',2,15,42475,NULL,'CPU privileged time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401274xiyzgbb94tr',1,'Admin',1672319419,'192.168.64.1',2,15,42476,NULL,'CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401284xiy5clj3btp',1,'Admin',1672319419,'192.168.64.1',2,15,42477,NULL,'CPU DPC time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401294xiy441sgi5n',1,'Admin',1672319419,'192.168.64.1',2,15,42478,NULL,'Used swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012a4xiy2djmrhjn',1,'Admin',1672319419,'192.168.64.1',2,15,42479,NULL,'Memory pool non-paged','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012b4xiyzvi60pkf',1,'Admin',1672319419,'192.168.64.1',2,15,42480,NULL,'Memory pages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012c4xiyy408cqz6',1,'Admin',1672319419,'192.168.64.1',2,15,42481,NULL,'Memory page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012d4xiyw1sp2elq',1,'Admin',1672319419,'192.168.64.1',2,15,42482,NULL,'Free system page table entries','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012e4xiyp9nehhwp',1,'Admin',1672319419,'192.168.64.1',2,15,42483,NULL,'Cache bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012f4xiyvl7mk382',1,'Admin',1672319419,'192.168.64.1',2,15,42484,NULL,'Version of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012g4xiy76hk3i0t',1,'Admin',1672319419,'192.168.64.1',2,15,42485,NULL,'Zabbix agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012h4xiyxksenrr6',1,'Admin',1672319419,'192.168.64.1',2,15,42486,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012i4xiyketp0v6f',1,'Admin',1672319419,'192.168.64.1',2,15,42512,NULL,'Host name of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012j4xiyl58clgfp',1,'Admin',1672319419,'192.168.64.1',2,15,42513,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012k4xiyxvmiw55y',1,'Admin',1672319419,'192.168.64.1',2,15,42514,NULL,'Network interfaces WMI get','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012l4xiy14iocy9o',1,'Admin',1672319419,'192.168.64.1',2,15,42515,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012m4xiy8b7u3mnh',1,'Admin',1672319419,'192.168.64.1',2,15,42516,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012n4xiywlh7u7dt',1,'Admin',1672319419,'192.168.64.1',2,15,42517,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012o4xiyayd8mujw',1,'Admin',1672319419,'192.168.64.1',2,15,42518,NULL,'Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012p4xiymp5858sb',1,'Admin',1672319419,'192.168.64.1',2,15,42519,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012q4xiyuncwvxx1',1,'Admin',1672319419,'192.168.64.1',2,15,42520,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012r4xiyagmg6l5k',1,'Admin',1672319419,'192.168.64.1',2,15,42521,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012s4xiyajf7wab9',1,'Admin',1672319419,'192.168.64.1',2,15,42522,NULL,'Operating system architecture','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012t4xiyht9a7dp5',1,'Admin',1672319419,'192.168.64.1',2,15,42523,NULL,'System local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012u4xiy8767j78y',1,'Admin',1672319419,'192.168.64.1',2,15,42524,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012v4xiyey6hntsi',1,'Admin',1672319419,'192.168.64.1',2,15,42525,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012w4xiykvhde4n2',1,'Admin',1672319419,'192.168.64.1',2,15,42526,NULL,'Number of threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012x4xiy652v6foa',1,'Admin',1672319419,'192.168.64.1',2,15,42527,NULL,'Zabbix agent ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012y4xiy2342xsj4',1,'Admin',1672319419,'192.168.64.1',2,15,42528,NULL,'CPU queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012z4xiyb1kx4h3b',1,'Admin',1672319419,'192.168.64.1',2,15,42529,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401304xiyqt2uw5zd',1,'Admin',1672319419,'192.168.64.1',2,15,42530,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401314xiyt0pu5pkr',1,'Admin',1672319419,'192.168.64.1',2,15,42531,NULL,'CPU privileged time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401324xiyy857tca0',1,'Admin',1672319419,'192.168.64.1',2,15,42532,NULL,'CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401334xiy1sjylbpd',1,'Admin',1672319419,'192.168.64.1',2,15,42533,NULL,'CPU DPC time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401344xiy8r3j6w6e',1,'Admin',1672319419,'192.168.64.1',2,15,42534,NULL,'Used swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401354xiycrql18ay',1,'Admin',1672319419,'192.168.64.1',2,15,42535,NULL,'Memory pool non-paged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401364xiyh9vouheg',1,'Admin',1672319419,'192.168.64.1',2,15,42536,NULL,'Memory pages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401374xiysubhxgyd',1,'Admin',1672319419,'192.168.64.1',2,15,42537,NULL,'Memory page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401384xiy8xqgkn40',1,'Admin',1672319419,'192.168.64.1',2,15,42538,NULL,'Free system page table entries','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401394xiyr58nzr0n',1,'Admin',1672319419,'192.168.64.1',2,15,42539,NULL,'Cache bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013a4xiyaz50jymu',1,'Admin',1672319419,'192.168.64.1',2,15,42540,NULL,'Version of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013b4xiycvhekxh9',1,'Admin',1672319419,'192.168.64.1',2,15,42541,NULL,'Number of cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013c4xiy2gburban',1,'Admin',1672319419,'192.168.64.1',2,15,42542,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013d4xiyv29nv8gy',1,'Admin',1672319419,'192.168.64.1',2,15,42568,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013e4xiyjcnfpfnf',1,'Admin',1672319419,'192.168.64.1',2,15,42569,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013f4xiyxha714g9',1,'Admin',1672319419,'192.168.64.1',2,15,42570,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013g4xiy4ep0mxli',1,'Admin',1672319419,'192.168.64.1',2,15,42571,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013h4xiy8f5vblfg',1,'Admin',1672319419,'192.168.64.1',2,15,42572,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013i4xiy00ke99pi',1,'Admin',1672319419,'192.168.64.1',2,15,42573,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013j4xiyni9hmrvx',1,'Admin',1672319419,'192.168.64.1',2,15,42574,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013k4xiyfoh147mw',1,'Admin',1672319419,'192.168.64.1',2,15,42575,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013l4xiypr6kii86',1,'Admin',1672319419,'192.168.64.1',2,15,42576,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013m4xiyptt806qb',1,'Admin',1672319419,'192.168.64.1',2,15,42577,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013n4xiyhh0bq0cl',1,'Admin',1672319419,'192.168.64.1',2,15,42578,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013o4xiyo16i768r',1,'Admin',1672319419,'192.168.64.1',2,15,42579,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013p4xiyj1eknkd6',1,'Admin',1672319419,'192.168.64.1',2,15,42664,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013q4xiy5mmxbmca',1,'Admin',1672319419,'192.168.64.1',2,15,42665,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013r4xiyaxdzp6x7',1,'Admin',1672319419,'192.168.64.1',2,15,42666,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013s4xiywsw3rdwd',1,'Admin',1672319419,'192.168.64.1',2,15,42667,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013t4xiytlkndu8s',1,'Admin',1672319419,'192.168.64.1',2,15,42668,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013u4xiyb5p6s67p',1,'Admin',1672319419,'192.168.64.1',2,15,42669,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013v4xiycrcc6sty',1,'Admin',1672319419,'192.168.64.1',2,15,42670,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013w4xiymbrlahpp',1,'Admin',1672319419,'192.168.64.1',2,15,42671,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013x4xiyxuk1l5dc',1,'Admin',1672319419,'192.168.64.1',2,15,42672,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013y4xiyq0lr88wr',1,'Admin',1672319419,'192.168.64.1',2,15,42673,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013z4xiyc4ed13vw',1,'Admin',1672319419,'192.168.64.1',2,15,42674,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401404xiydqhu1292',1,'Admin',1672319419,'192.168.64.1',2,15,42676,NULL,'TiKV: Scheduler: Pending commands','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401414xiyrk0bmwp6',1,'Admin',1672319419,'192.168.64.1',2,15,42677,NULL,'TiKV: Coprocessor: Scan keys, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401424xiyac1p7wcw',1,'Admin',1672319419,'192.168.64.1',2,15,42738,NULL,'Proxmox: API service status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401434xiy063vtwso',1,'Admin',1672319419,'192.168.64.1',2,15,42739,NULL,'Proxmox: Get cluster resources','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401444xiyxy9p3503',1,'Admin',1672319419,'192.168.64.1',2,15,42740,NULL,'Proxmox: Get cluster status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401454xiyumq24isu',1,'Admin',1672319419,'192.168.64.1',2,15,42792,NULL,'TrueNAS: ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401464xiykms3cv2k',1,'Admin',1672319419,'192.168.64.1',2,15,42793,NULL,'TrueNAS: L2ARC write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401474xiy7sjkr0a3',1,'Admin',1672319419,'192.168.64.1',2,15,42794,NULL,'TrueNAS: ARC misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401484xiynpb19c56',1,'Admin',1672319419,'192.168.64.1',2,15,42795,NULL,'TrueNAS: ARC target size of MRU','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401494xiykwt9y4af',1,'Admin',1672319419,'192.168.64.1',2,15,42796,NULL,'TrueNAS: ARC size','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014a4xiyk70slfl9',1,'Admin',1672319419,'192.168.64.1',2,15,42797,NULL,'TrueNAS: L2ARC hits','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014b4xiyd4iuoexn',1,'Admin',1672319419,'192.168.64.1',2,15,42798,NULL,'TrueNAS: L2ARC misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014c4xiy055gy0rn',1,'Admin',1672319419,'192.168.64.1',2,15,42799,NULL,'TrueNAS: L2ARC read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014d4xiygjuc8a0u',1,'Admin',1672319419,'192.168.64.1',2,15,42800,NULL,'TrueNAS: L2ARC size','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014e4xiyn2fjc38h',1,'Admin',1672319419,'192.168.64.1',2,15,42801,NULL,'TrueNAS: ZIL operations 1 second','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014f4xiybezujoe7',1,'Admin',1672319419,'192.168.64.1',2,15,42802,NULL,'TrueNAS: ARC metadata size','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014g4xiy63zzoa07',1,'Admin',1672319419,'192.168.64.1',2,15,42803,NULL,'TrueNAS: ZIL operations 5 seconds','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014h4xiyqbhpsuhl',1,'Admin',1672319419,'192.168.64.1',2,15,42804,NULL,'TrueNAS: ZIL operations 10 seconds','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014i4xiy39wdqjgb',1,'Admin',1672319419,'192.168.64.1',2,15,42805,NULL,'TrueNAS: Available memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014j4xiybxn8nd8o',1,'Admin',1672319419,'192.168.64.1',2,15,42806,NULL,'TrueNAS: Memory (buffers)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014k4xiyw49k1klt',1,'Admin',1672319419,'192.168.64.1',2,15,42807,NULL,'TrueNAS: Memory (cached)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014l4xiy9owez5gf',1,'Admin',1672319419,'192.168.64.1',2,15,42808,NULL,'TrueNAS: Free memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014m4xiy48tygomv',1,'Admin',1672319419,'192.168.64.1',2,15,42809,NULL,'TrueNAS: Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014n4xiy25crtzlu',1,'Admin',1672319419,'192.168.64.1',2,15,42810,NULL,'TrueNAS: Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014o4xiyzku7p4am',1,'Admin',1672319419,'192.168.64.1',2,15,42811,NULL,'TrueNAS: ARC cache miss ratio','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014p4xiygsupxn56',1,'Admin',1672319419,'192.168.64.1',2,15,42812,NULL,'TrueNAS: ARC hits','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014q4xiyld7irjrz',1,'Admin',1672319419,'192.168.64.1',2,15,42813,NULL,'TrueNAS: ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014r4xiylth23tzp',1,'Admin',1672319419,'192.168.64.1',2,15,42814,NULL,'TrueNAS: System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014s4xiyhukj8kcq',1,'Admin',1672319419,'192.168.64.1',2,15,42815,NULL,'TrueNAS: ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014t4xiykwi9o9ds',1,'Admin',1672319419,'192.168.64.1',2,15,42816,NULL,'TrueNAS: System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014u4xiyj11jk0oy',1,'Admin',1672319419,'192.168.64.1',2,15,42817,NULL,'TrueNAS: Interrupts per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014v4xiy08q5pwmn',1,'Admin',1672319419,'192.168.64.1',2,15,42818,NULL,'TrueNAS: Load average (1m avg)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014w4xiy78usic7s',1,'Admin',1672319419,'192.168.64.1',2,15,42819,NULL,'TrueNAS: Load average (5m avg)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014x4xiy2x6kho5j',1,'Admin',1672319419,'192.168.64.1',2,15,42820,NULL,'TrueNAS: Load average (15m avg)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014y4xiy5ytbayag',1,'Admin',1672319419,'192.168.64.1',2,15,42821,NULL,'TrueNAS: Number of CPUs','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014z4xiydcu2nf35',1,'Admin',1672319419,'192.168.64.1',2,15,42822,NULL,'TrueNAS: Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401504xiyzminsehd',1,'Admin',1672319419,'192.168.64.1',2,15,42823,NULL,'TrueNAS: System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401514xiym42cvlhm',1,'Admin',1672319419,'192.168.64.1',2,15,42824,NULL,'TrueNAS: ARC cache hit ratio','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401524xiy7sb3gb3k',1,'Admin',1672319419,'192.168.64.1',2,15,42825,NULL,'TrueNAS: System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401534xiy03wd71ka',1,'Admin',1672319419,'192.168.64.1',2,15,42826,NULL,'TrueNAS: System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401544xiyewzl4jql',1,'Admin',1672319419,'192.168.64.1',2,15,42827,NULL,'TrueNAS: Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401554xiy83qn5qqj',1,'Admin',1672319419,'192.168.64.1',2,15,42828,NULL,'TrueNAS: Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401564xiyzpqd574t',1,'Admin',1672319419,'192.168.64.1',2,15,42829,NULL,'TrueNAS: Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401574xiy6huf8hc9',1,'Admin',1672319419,'192.168.64.1',2,15,42830,NULL,'TrueNAS: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401584xiywjnhqkeh',1,'Admin',1672319419,'192.168.64.1',2,15,42831,NULL,'TrueNAS: ARC target size of cache','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401594xiy1d1wsg4r',1,'Admin',1672319419,'192.168.64.1',2,15,42832,NULL,'TrueNAS: ARC data size','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015a4xiyp75i91cu',1,'Admin',1672319419,'192.168.64.1',2,15,42833,NULL,'TrueNAS: SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015b4xiyqr71dhxy',1,'Admin',1672319419,'192.168.64.1',2,15,42877,NULL,'VMware: Get sensors','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015c4xiy1wmvpy19',1,'Admin',1672319419,'192.168.64.1',2,15,42880,NULL,'PostgreSQL: Get queries','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015d4xiyu6hhb58h',1,'Admin',1672319419,'192.168.64.1',2,15,43080,NULL,'Active agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015e4xiyxekwxcn7',1,'Admin',1672319419,'192.168.64.1',2,15,43857,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015f4xiy9hbxn6bk',1,'Admin',1672319419,'192.168.64.1',2,15,43858,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015g4xiyfy02ih1d',1,'Admin',1672319419,'192.168.64.1',2,15,43859,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015h4xiy99tljx1f',1,'Admin',1672319419,'192.168.64.1',2,15,43875,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015i4xiykh4jk15y',1,'Admin',1672319419,'192.168.64.1',2,15,44051,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015j4xiyilp4i7zt',1,'Admin',1672319419,'192.168.64.1',2,15,44081,NULL,'Zabbix stats proxy','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015k4xiy8vc867dx',1,'Admin',1672319419,'192.168.64.1',2,15,44359,NULL,'RabbitMQ: Get processes summary','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015l4xiyd6p65bac',1,'Admin',1672319419,'192.168.64.1',2,15,44377,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015m4xiyk9r475dq',1,'Admin',1672319419,'192.168.64.1',2,15,44379,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015n4xiydm2icesn',1,'Admin',1672319419,'192.168.64.1',2,15,44450,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015o4xiy5myo1ufe',1,'Admin',1672319419,'192.168.64.1',2,15,44453,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015p4xiy7ek2emfn',1,'Admin',1672319419,'192.168.64.1',2,15,44455,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015q4xiyxowoibs8',1,'Admin',1672319419,'192.168.64.1',2,30,10078,NULL,'Solaris','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015r4xiycn1eu1y5',1,'Admin',1672319419,'192.168.64.1',2,30,10081,NULL,'Windows by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015s4xiyibaradax',1,'Admin',1672319419,'192.168.64.1',2,30,10101,NULL,'SMTP Service','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015t4xiy938q9yjj',1,'Admin',1672319419,'192.168.64.1',2,30,10102,NULL,'SSH Service','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015u4xiyonhmd5z9',1,'Admin',1672319419,'192.168.64.1',2,30,10103,NULL,'Telnet Service','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015v4xiy8zki1cvs',1,'Admin',1672319419,'192.168.64.1',2,30,10173,NULL,'VMware','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015w4xiygv3dns7f',1,'Admin',1672319419,'192.168.64.1',2,30,10174,NULL,'VMware Guest','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015x4xiyvlgdgstj',1,'Admin',1672319419,'192.168.64.1',2,30,10175,NULL,'VMware Hypervisor','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015y4xiyxzcmf1ja',1,'Admin',1672319419,'192.168.64.1',2,30,10235,NULL,'QTech QSW by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015z4xiyqcqtm293',1,'Admin',1672319419,'192.168.64.1',2,30,10236,NULL,'TP-LINK by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201604xiyyekk18is',1,'Admin',1672319419,'192.168.64.1',2,30,10237,NULL,'Ubiquiti AirOS by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201614xiy7375oszp',1,'Admin',1672319419,'192.168.64.1',2,30,10249,NULL,'Windows by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201624xiyo6mbvs5n',1,'Admin',1672319419,'192.168.64.1',2,30,10259,NULL,'Supermicro Aten by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201634xiykrmlw8k3',1,'Admin',1672319419,'192.168.64.1',2,30,10261,NULL,'Remote Zabbix server health','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201644xiys5tsq362',1,'Admin',1672319419,'192.168.64.1',2,30,10262,NULL,'Remote Zabbix proxy health','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201654xiyc22ymz3t',1,'Admin',1672319419,'192.168.64.1',2,30,10286,NULL,'Windows CPU by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201664xiy16axn9ui',1,'Admin',1672319419,'192.168.64.1',2,30,10287,NULL,'Windows memory by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201674xiypeferi3i',1,'Admin',1672319419,'192.168.64.1',2,30,10288,NULL,'Windows filesystems by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201684xiysr9zmi1k',1,'Admin',1672319419,'192.168.64.1',2,30,10289,NULL,'Windows physical disks by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201694xiy9atfnar7',1,'Admin',1672319419,'192.168.64.1',2,30,10290,NULL,'Windows generic by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016a4xiy3bd39ra7',1,'Admin',1672319419,'192.168.64.1',2,30,10291,NULL,'Windows network by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016b4xiysz7aia9g',1,'Admin',1672319419,'192.168.64.1',2,30,10300,NULL,'RabbitMQ cluster by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016c4xiyxnk0vp8n',1,'Admin',1672319419,'192.168.64.1',2,30,10301,NULL,'RabbitMQ node by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016d4xiy52dijffv',1,'Admin',1672319419,'192.168.64.1',2,30,10302,NULL,'RabbitMQ cluster by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016e4xiya7q61hkd',1,'Admin',1672319419,'192.168.64.1',2,30,10303,NULL,'RabbitMQ node by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016f4xiy7veehwtp',1,'Admin',1672319419,'192.168.64.1',2,30,10310,NULL,'Redis by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016g4xiyhkh0221e',1,'Admin',1672319419,'192.168.64.1',2,30,10314,NULL,'Windows services by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016h4xiyth5uaye2',1,'Admin',1672319419,'192.168.64.1',2,30,10329,NULL,'PostgreSQL by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016i4xiytk20e8tf',1,'Admin',1672319419,'192.168.64.1',2,30,10344,NULL,'Windows CPU by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016j4xiyi8nn4hl1',1,'Admin',1672319419,'192.168.64.1',2,30,10345,NULL,'Windows filesystems by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016k4xiy39wpm9uu',1,'Admin',1672319419,'192.168.64.1',2,30,10346,NULL,'Windows generic by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016l4xiy5yvq3od8',1,'Admin',1672319419,'192.168.64.1',2,30,10347,NULL,'Windows memory by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016m4xiyjmjdawu2',1,'Admin',1672319419,'192.168.64.1',2,30,10348,NULL,'Windows network by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016n4xiyfdhtn281',1,'Admin',1672319419,'192.168.64.1',2,30,10349,NULL,'Windows physical disks by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016o4xiy2a3wk4xs',1,'Admin',1672319419,'192.168.64.1',2,30,10351,NULL,'Windows by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016p4xiyc36pql72',1,'Admin',1672319419,'192.168.64.1',2,30,10355,NULL,'Squid by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016q4xiytjitkvd8',1,'Admin',1672319419,'192.168.64.1',2,30,10366,NULL,'VMware FQDN','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016r4xiy9fuczvzj',1,'Admin',1672319419,'192.168.64.1',2,30,10383,NULL,'SMART by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016s4xiy5eihiia1',1,'Admin',1672319419,'192.168.64.1',2,30,10384,NULL,'SMART by Zabbix agent 2 active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016t4xiy0gtqpq6d',1,'Admin',1672319419,'192.168.64.1',2,30,10397,NULL,'TiDB PD by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016u4xiyfsrehuoi',1,'Admin',1672319419,'192.168.64.1',2,30,10398,NULL,'TiDB by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016v4xiy7y9v8j20',1,'Admin',1672319419,'192.168.64.1',2,30,10399,NULL,'TiDB TiKV by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016w4xiye994tqvl',1,'Admin',1672319419,'192.168.64.1',2,30,10410,NULL,'WildFly Domain by JMX','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016x4xiyz34kmd14',1,'Admin',1672319419,'192.168.64.1',2,30,10411,NULL,'WildFly Server by JMX','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016y4xiyzgiziei5',1,'Admin',1672319419,'192.168.64.1',2,30,10413,NULL,'Website certificate by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016z4xiylbawe4t4',1,'Admin',1672319419,'192.168.64.1',2,30,10416,NULL,'Systemd by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201704xiys9a58nce',1,'Admin',1672319419,'192.168.64.1',2,30,10447,NULL,'Travis CI by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201714xiyqs5tlcxl',1,'Admin',1672319419,'192.168.64.1',2,30,10503,NULL,'VMWare SD-WAN VeloCloud by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201724xiyukr1uorq',1,'Admin',1672319419,'192.168.64.1',2,30,10517,NULL,'Proxmox VE by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201734xiy0yvwqb2q',1,'Admin',1672319419,'192.168.64.1',2,30,10518,NULL,'TrueNAS by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93t1nc00014ciy1w4bcpht',1,'Admin',1672319423,'192.168.64.1',2,36,32025,NULL,'State of service \"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME})','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00024ciy03af695x',1,'Admin',1672319423,'192.168.64.1',2,36,33000,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Latency, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00034ciylel29d95',1,'Admin',1672319423,'192.168.64.1',2,36,33001,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Latency, max','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00044ciyk293lznx',1,'Admin',1672319423,'192.168.64.1',2,36,33002,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Latency, min','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00054ciymnvazpzm',1,'Admin',1672319423,'192.168.64.1',2,36,33003,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Outstanding requests','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00064ciy4okjinnf',1,'Admin',1672319423,'192.168.64.1',2,36,33004,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Packets received per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00074ciyf43ebe6l',1,'Admin',1672319423,'192.168.64.1',2,36,33005,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Packets sent per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00084ciy8k7mj7fe',1,'Admin',1672319423,'192.168.64.1',2,36,33006,NULL,'Zookeeper: Learners{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00094ciytktzov5i',1,'Admin',1672319423,'192.168.64.1',2,36,33007,NULL,'Zookeeper: Pending syncs{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000a4ciybp373z2t',1,'Admin',1672319423,'192.168.64.1',2,36,33008,NULL,'Zookeeper: Quorum size{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000b4ciy7nb8i8u0',1,'Admin',1672319423,'192.168.64.1',2,36,33009,NULL,'Zookeeper: Synced followers{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000c4ciy686k0y2p',1,'Admin',1672319423,'192.168.64.1',2,36,33010,NULL,'Zookeeper: Synced non-voting follower{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000d4ciysjhpg03j',1,'Admin',1672319423,'192.168.64.1',2,36,33011,NULL,'Zookeeper: Synced observers{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000e4ciy723kb0xd',1,'Admin',1672319423,'192.168.64.1',2,36,35546,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000f4ciy4i0ygwxq',1,'Admin',1672319423,'192.168.64.1',2,36,35547,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000g4ciyptlhoz3n',1,'Admin',1672319423,'192.168.64.1',2,36,35548,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000h4ciy338na1vl',1,'Admin',1672319423,'192.168.64.1',2,36,35549,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000i4ciy7yaeajte',1,'Admin',1672319423,'192.168.64.1',2,36,35550,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000j4ciyqzp693ih',1,'Admin',1672319423,'192.168.64.1',2,36,35551,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000k4ciyq7gji3t8',1,'Admin',1672319423,'192.168.64.1',2,36,35552,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000l4ciyojp9t1yw',1,'Admin',1672319423,'192.168.64.1',2,36,35553,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000m4ciyt28uvajx',1,'Admin',1672319423,'192.168.64.1',2,36,35554,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000n4ciy3e48lr5a',1,'Admin',1672319423,'192.168.64.1',2,36,35555,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000o4ciy44rpx6gv',1,'Admin',1672319423,'192.168.64.1',2,36,35556,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000p4ciyefxd4ffz',1,'Admin',1672319423,'192.168.64.1',2,36,35557,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000q4ciy2b83b48z',1,'Admin',1672319423,'192.168.64.1',2,36,35558,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000r4ciyx5l1kz0r',1,'Admin',1672319423,'192.168.64.1',2,36,35559,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000s4ciyag0e0p2x',1,'Admin',1672319423,'192.168.64.1',2,36,35560,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000t4ciybf4qavh6',1,'Admin',1672319423,'192.168.64.1',2,36,35561,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000u4ciyu1dszxgb',1,'Admin',1672319423,'192.168.64.1',2,36,35562,NULL,'ZYXEL AAM1212-51 / IES-612: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000v4ciy2x6khno9',1,'Admin',1672319423,'192.168.64.1',2,36,35563,NULL,'ZYXEL AAM1212-51 / IES-612: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000w4ciy7tqudylu',1,'Admin',1672319423,'192.168.64.1',2,36,35580,NULL,'ZYXEL ES3500-8PD: Memory \"{#ZYXEL.MEMORY.NAME}\" utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000x4ciypp94kr5w',1,'Admin',1672319423,'192.168.64.1',2,36,35581,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000y4ciy169mxbgx',1,'Admin',1672319423,'192.168.64.1',2,36,35582,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000z4ciyoxhvrqrz',1,'Admin',1672319423,'192.168.64.1',2,36,35583,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00104ciy41g8mnmm',1,'Admin',1672319423,'192.168.64.1',2,36,35584,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00114ciyi42x9d5b',1,'Admin',1672319423,'192.168.64.1',2,36,35585,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00124ciyb6vglxdl',1,'Admin',1672319423,'192.168.64.1',2,36,35586,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00134ciyto15xt6e',1,'Admin',1672319423,'192.168.64.1',2,36,35587,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00144ciy3sk633un',1,'Admin',1672319423,'192.168.64.1',2,36,35588,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00154ciycvkrxlzq',1,'Admin',1672319423,'192.168.64.1',2,36,35589,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00164ciy2fukc5ze',1,'Admin',1672319423,'192.168.64.1',2,36,35590,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00174ciymizs9e21',1,'Admin',1672319423,'192.168.64.1',2,36,35591,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00184ciytbthb6zy',1,'Admin',1672319423,'192.168.64.1',2,36,35592,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00194ciy4c3mbyju',1,'Admin',1672319423,'192.168.64.1',2,36,35593,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001a4ciyhcs7pkgk',1,'Admin',1672319423,'192.168.64.1',2,36,35594,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001b4ciyd42qan97',1,'Admin',1672319423,'192.168.64.1',2,36,35595,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001c4ciysjg3vao5',1,'Admin',1672319423,'192.168.64.1',2,36,35596,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001d4ciynpgbx7cj',1,'Admin',1672319423,'192.168.64.1',2,36,35597,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001e4ciycbaguydj',1,'Admin',1672319423,'192.168.64.1',2,36,35598,NULL,'ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001f4ciysfil6ady',1,'Admin',1672319423,'192.168.64.1',2,36,35599,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001g4ciya4drcgwg',1,'Admin',1672319423,'192.168.64.1',2,36,35600,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001h4ciywivol92b',1,'Admin',1672319423,'192.168.64.1',2,36,35601,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001i4ciy0loin5rg',1,'Admin',1672319423,'192.168.64.1',2,36,35602,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001j4ciyrs8pu7c0',1,'Admin',1672319423,'192.168.64.1',2,36,35603,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001k4ciyreu3c62p',1,'Admin',1672319423,'192.168.64.1',2,36,35604,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001l4ciyxv9twadd',1,'Admin',1672319423,'192.168.64.1',2,36,35605,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001m4ciydcm16nlq',1,'Admin',1672319423,'192.168.64.1',2,36,35606,NULL,'ZYXEL ES3500-8PD: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001n4ciyc5u4g4c5',1,'Admin',1672319423,'192.168.64.1',2,36,35607,NULL,'ZYXEL ES3500-8PD: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001o4ciyhp20lbqc',1,'Admin',1672319423,'192.168.64.1',2,36,35622,NULL,'ZYXEL GS-4012F: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001p4ciyafshofhl',1,'Admin',1672319423,'192.168.64.1',2,36,35623,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001q4ciy8n06ffxa',1,'Admin',1672319423,'192.168.64.1',2,36,35624,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001r4ciygynnqtx1',1,'Admin',1672319423,'192.168.64.1',2,36,35625,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001s4ciy616zoip6',1,'Admin',1672319423,'192.168.64.1',2,36,35626,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001t4ciyy8jafcj1',1,'Admin',1672319423,'192.168.64.1',2,36,35627,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001u4ciysrntvvmz',1,'Admin',1672319423,'192.168.64.1',2,36,35628,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001v4ciyw5xjqsmd',1,'Admin',1672319423,'192.168.64.1',2,36,35629,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001w4ciyt5g50m8n',1,'Admin',1672319423,'192.168.64.1',2,36,35630,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001x4ciyyzqujp0q',1,'Admin',1672319423,'192.168.64.1',2,36,35631,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001y4ciybcvx9k9b',1,'Admin',1672319423,'192.168.64.1',2,36,35632,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001z4ciyzlxsau3y',1,'Admin',1672319423,'192.168.64.1',2,36,35633,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00204ciyhto9rw76',1,'Admin',1672319423,'192.168.64.1',2,36,35634,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00214ciyya8c808c',1,'Admin',1672319423,'192.168.64.1',2,36,35635,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00224ciyn5bpc2a8',1,'Admin',1672319423,'192.168.64.1',2,36,35636,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00234ciyi8u5k0b5',1,'Admin',1672319423,'192.168.64.1',2,36,35637,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00244ciyor95n1p0',1,'Admin',1672319423,'192.168.64.1',2,36,35638,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00254ciy8wyajp2u',1,'Admin',1672319423,'192.168.64.1',2,36,35639,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00264ciy194ao66n',1,'Admin',1672319423,'192.168.64.1',2,36,35640,NULL,'ZYXEL GS-4012F: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00274ciysho9rwyy',1,'Admin',1672319423,'192.168.64.1',2,36,35641,NULL,'ZYXEL GS-4012F: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00284ciy08hbjdho',1,'Admin',1672319423,'192.168.64.1',2,36,35658,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00294ciysdeh81t8',1,'Admin',1672319423,'192.168.64.1',2,36,35659,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002a4ciyzjfnpqv4',1,'Admin',1672319423,'192.168.64.1',2,36,35660,NULL,'ZYXEL IES-500x: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002b4ciyb4kevr5q',1,'Admin',1672319423,'192.168.64.1',2,36,35661,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002c4ciyzibq1ka6',1,'Admin',1672319423,'192.168.64.1',2,36,35662,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002d4ciy19fpqdrm',1,'Admin',1672319423,'192.168.64.1',2,36,35663,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002e4ciykdwpjyk9',1,'Admin',1672319423,'192.168.64.1',2,36,35664,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002f4ciyhg5izoio',1,'Admin',1672319423,'192.168.64.1',2,36,35665,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002g4ciyaqp8xybc',1,'Admin',1672319423,'192.168.64.1',2,36,35666,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002h4ciyfsw3g5p0',1,'Admin',1672319423,'192.168.64.1',2,36,35667,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002i4ciyw29qhf2q',1,'Admin',1672319423,'192.168.64.1',2,36,35668,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002j4ciy2h7valkb',1,'Admin',1672319423,'192.168.64.1',2,36,35669,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002k4ciykrto31ad',1,'Admin',1672319423,'192.168.64.1',2,36,35670,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002l4ciycs9et1pa',1,'Admin',1672319423,'192.168.64.1',2,36,35671,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002m4ciyqheplwnu',1,'Admin',1672319423,'192.168.64.1',2,36,35672,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002n4ciycm4idj3j',1,'Admin',1672319423,'192.168.64.1',2,36,35673,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002o4ciyhqla3w3z',1,'Admin',1672319423,'192.168.64.1',2,36,35674,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002p4ciyt6zs2xu8',1,'Admin',1672319423,'192.168.64.1',2,36,35675,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002q4ciy5r49mdf6',1,'Admin',1672319423,'192.168.64.1',2,36,35676,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002r4ciyv9zzzehw',1,'Admin',1672319423,'192.168.64.1',2,36,35677,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002s4ciytkv87stw',1,'Admin',1672319423,'192.168.64.1',2,36,35678,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002t4ciyt01knut3',1,'Admin',1672319423,'192.168.64.1',2,36,35679,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002u4ciyjym9xiip',1,'Admin',1672319423,'192.168.64.1',2,36,35680,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002v4ciyos0equiw',1,'Admin',1672319423,'192.168.64.1',2,36,35681,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002w4ciy6pqj8bzc',1,'Admin',1672319423,'192.168.64.1',2,36,35682,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002x4ciy6d6uztfg',1,'Admin',1672319423,'192.168.64.1',2,36,35683,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002y4ciylax2dztf',1,'Admin',1672319423,'192.168.64.1',2,36,35684,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002z4ciykswkhn0s',1,'Admin',1672319423,'192.168.64.1',2,36,35685,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00304ciyo77ksijl',1,'Admin',1672319423,'192.168.64.1',2,36,35686,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00314ciydhnk7tuq',1,'Admin',1672319423,'192.168.64.1',2,36,35687,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00324ciy687xojnc',1,'Admin',1672319423,'192.168.64.1',2,36,35688,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00334ciy6f99c86u',1,'Admin',1672319423,'192.168.64.1',2,36,35689,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00344ciyx5up47fo',1,'Admin',1672319423,'192.168.64.1',2,36,35690,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00354ciyd0k35lq8',1,'Admin',1672319423,'192.168.64.1',2,36,35691,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00364ciy8m5nwgm5',1,'Admin',1672319423,'192.168.64.1',2,36,35692,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00374ciypzdrt8pz',1,'Admin',1672319423,'192.168.64.1',2,36,35693,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00384ciy84esyywz',1,'Admin',1672319423,'192.168.64.1',2,36,35694,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00394ciyvqgh2ofi',1,'Admin',1672319423,'192.168.64.1',2,36,35695,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Alarm status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003a4ciymraw2tjd',1,'Admin',1672319423,'192.168.64.1',2,36,35696,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003b4ciywsryds29',1,'Admin',1672319423,'192.168.64.1',2,36,35697,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003c4ciy4hozzp34',1,'Admin',1672319423,'192.168.64.1',2,36,35698,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003d4ciyt8kduh4d',1,'Admin',1672319423,'192.168.64.1',2,36,35699,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003e4ciyjbj1tzxb',1,'Admin',1672319423,'192.168.64.1',2,36,35700,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003f4ciy57y4vbv2',1,'Admin',1672319423,'192.168.64.1',2,36,35701,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 1','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003g4ciyfj6ua78n',1,'Admin',1672319423,'192.168.64.1',2,36,35702,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 2','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003h4ciyhbrd0qpz',1,'Admin',1672319423,'192.168.64.1',2,36,35703,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003i4ciyb72zi994',1,'Admin',1672319423,'192.168.64.1',2,36,35704,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003j4ciytlr3kswn',1,'Admin',1672319423,'192.168.64.1',2,36,35705,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003k4ciytpw1twg8',1,'Admin',1672319423,'192.168.64.1',2,36,35706,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Uptime','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003l4ciyxewb8vax',1,'Admin',1672319423,'192.168.64.1',2,36,35707,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003m4ciye9j078yk',1,'Admin',1672319423,'192.168.64.1',2,36,35708,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003n4ciy10j9vpg5',1,'Admin',1672319423,'192.168.64.1',2,36,35725,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003o4ciy6g03dfkt',1,'Admin',1672319423,'192.168.64.1',2,36,35726,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003p4ciyaqt4ongr',1,'Admin',1672319423,'192.168.64.1',2,36,35727,NULL,'ZYXEL IES-6000: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003q4ciyj1p9yjkx',1,'Admin',1672319423,'192.168.64.1',2,36,35728,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003r4ciyib3q2wtl',1,'Admin',1672319423,'192.168.64.1',2,36,35729,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003s4ciym614uui8',1,'Admin',1672319423,'192.168.64.1',2,36,35730,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003t4ciyrwzbzqo4',1,'Admin',1672319423,'192.168.64.1',2,36,35731,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003u4ciy3455w51d',1,'Admin',1672319423,'192.168.64.1',2,36,35732,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003v4ciy5cz2s878',1,'Admin',1672319423,'192.168.64.1',2,36,35733,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003w4ciyvtw9xafx',1,'Admin',1672319423,'192.168.64.1',2,36,35734,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003x4ciyfls8br07',1,'Admin',1672319423,'192.168.64.1',2,36,35735,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003y4ciyg0igcls6',1,'Admin',1672319423,'192.168.64.1',2,36,35736,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003z4ciyomuqq6ii',1,'Admin',1672319423,'192.168.64.1',2,36,35737,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00404ciyi780xhst',1,'Admin',1672319423,'192.168.64.1',2,36,35738,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00414ciyofvqut7w',1,'Admin',1672319423,'192.168.64.1',2,36,35739,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00424ciy45osa869',1,'Admin',1672319423,'192.168.64.1',2,36,35740,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00434ciye4igsbiw',1,'Admin',1672319423,'192.168.64.1',2,36,35741,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00444ciy4brnhs9c',1,'Admin',1672319423,'192.168.64.1',2,36,35742,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00454ciyg86f2njh',1,'Admin',1672319423,'192.168.64.1',2,36,35743,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00464ciyals4s8c6',1,'Admin',1672319423,'192.168.64.1',2,36,35744,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00474ciyghr4nudk',1,'Admin',1672319423,'192.168.64.1',2,36,35745,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00484ciyit8fmnsg',1,'Admin',1672319423,'192.168.64.1',2,36,35746,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00494ciyr307jro5',1,'Admin',1672319423,'192.168.64.1',2,36,35747,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004a4ciyl05j4p1w',1,'Admin',1672319423,'192.168.64.1',2,36,35748,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004b4ciyl77nnom9',1,'Admin',1672319423,'192.168.64.1',2,36,35749,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004c4ciy96mrf4te',1,'Admin',1672319423,'192.168.64.1',2,36,35750,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004d4ciyxfxcq29o',1,'Admin',1672319423,'192.168.64.1',2,36,35751,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004e4ciytap21c9e',1,'Admin',1672319423,'192.168.64.1',2,36,35752,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004f4ciy5unzasz9',1,'Admin',1672319423,'192.168.64.1',2,36,35753,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004g4ciy0q62nl67',1,'Admin',1672319423,'192.168.64.1',2,36,35754,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004h4ciyafe2pkxu',1,'Admin',1672319423,'192.168.64.1',2,36,35755,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004i4ciyymwl7ot1',1,'Admin',1672319423,'192.168.64.1',2,36,35756,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004j4ciyen3ieix5',1,'Admin',1672319423,'192.168.64.1',2,36,35757,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004k4ciyj22ihbs5',1,'Admin',1672319423,'192.168.64.1',2,36,35758,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004l4ciyynob4lp0',1,'Admin',1672319423,'192.168.64.1',2,36,35759,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004m4ciy0pkvfzma',1,'Admin',1672319423,'192.168.64.1',2,36,35760,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004n4ciywimavnl3',1,'Admin',1672319423,'192.168.64.1',2,36,35761,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004o4ciyckymnb6o',1,'Admin',1672319423,'192.168.64.1',2,36,35762,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Alarm status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004p4ciyq6n4rgf5',1,'Admin',1672319423,'192.168.64.1',2,36,35763,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004q4ciyz339fh23',1,'Admin',1672319423,'192.168.64.1',2,36,35764,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004r4ciyoljw06cg',1,'Admin',1672319423,'192.168.64.1',2,36,35765,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004s4ciyx8vpk51o',1,'Admin',1672319423,'192.168.64.1',2,36,35766,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004t4ciyzp8aybzi',1,'Admin',1672319423,'192.168.64.1',2,36,35767,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004u4ciyzf3w64gd',1,'Admin',1672319423,'192.168.64.1',2,36,35768,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 1','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004v4ciyko78twzh',1,'Admin',1672319423,'192.168.64.1',2,36,35769,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 2','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004w4ciyvbc5exq4',1,'Admin',1672319423,'192.168.64.1',2,36,35770,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004x4ciynqrb4d6c',1,'Admin',1672319423,'192.168.64.1',2,36,35771,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004y4ciydque7nl4',1,'Admin',1672319423,'192.168.64.1',2,36,35772,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004z4ciy2o1xcc6q',1,'Admin',1672319423,'192.168.64.1',2,36,35773,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Uptime','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00504ciyxovpqpte',1,'Admin',1672319423,'192.168.64.1',2,36,35774,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00514ciyqllp4wgu',1,'Admin',1672319423,'192.168.64.1',2,36,35775,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00524ciy24r1xyee',1,'Admin',1672319423,'192.168.64.1',2,36,35791,NULL,'ZYXEL IES1248-51: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00534ciy8roiwebr',1,'Admin',1672319423,'192.168.64.1',2,36,35792,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00544ciyde83rfz6',1,'Admin',1672319423,'192.168.64.1',2,36,35793,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00554ciyni7r6ym8',1,'Admin',1672319423,'192.168.64.1',2,36,35794,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00564ciyanfwknxh',1,'Admin',1672319423,'192.168.64.1',2,36,35795,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00574ciy0d4k0u7g',1,'Admin',1672319423,'192.168.64.1',2,36,35796,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00584ciyyhpdxn11',1,'Admin',1672319423,'192.168.64.1',2,36,35797,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00594ciyul3olei3',1,'Admin',1672319423,'192.168.64.1',2,36,35798,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005a4ciy97xjfu5w',1,'Admin',1672319423,'192.168.64.1',2,36,35799,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005b4ciyx3sa73ao',1,'Admin',1672319423,'192.168.64.1',2,36,35800,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005c4ciyq0na201j',1,'Admin',1672319423,'192.168.64.1',2,36,35801,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005d4ciy3sfb1bxp',1,'Admin',1672319423,'192.168.64.1',2,36,35802,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005e4ciyg59m1koc',1,'Admin',1672319423,'192.168.64.1',2,36,35803,NULL,'ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005f4ciyb3v5qa58',1,'Admin',1672319423,'192.168.64.1',2,36,35804,NULL,'ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005g4ciyqdh0679b',1,'Admin',1672319423,'192.168.64.1',2,36,35805,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005h4ciy284k1o09',1,'Admin',1672319423,'192.168.64.1',2,36,35806,NULL,'ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005i4ciy02jyfe2k',1,'Admin',1672319423,'192.168.64.1',2,36,35807,NULL,'ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005j4ciysxedfgm3',1,'Admin',1672319423,'192.168.64.1',2,36,35808,NULL,'ZYXEL IES1248-51: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005k4ciygwu7dolx',1,'Admin',1672319423,'192.168.64.1',2,36,35809,NULL,'ZYXEL IES1248-51: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005l4ciyuyg24ovy',1,'Admin',1672319423,'192.168.64.1',2,36,35823,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005m4ciyijzrtrrw',1,'Admin',1672319423,'192.168.64.1',2,36,35824,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005n4ciyeacbo484',1,'Admin',1672319423,'192.168.64.1',2,36,35825,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005o4ciys94uyl8y',1,'Admin',1672319423,'192.168.64.1',2,36,35826,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005p4ciysp4fobev',1,'Admin',1672319423,'192.168.64.1',2,36,35827,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005q4ciy0c136zv8',1,'Admin',1672319423,'192.168.64.1',2,36,35828,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005r4ciyn8uzevoa',1,'Admin',1672319423,'192.168.64.1',2,36,35829,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005s4ciybv9664j8',1,'Admin',1672319423,'192.168.64.1',2,36,35830,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005t4ciyfhpnvn15',1,'Admin',1672319423,'192.168.64.1',2,36,35831,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005u4ciyy2u3ku77',1,'Admin',1672319423,'192.168.64.1',2,36,35832,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005v4ciyscvs0t2f',1,'Admin',1672319423,'192.168.64.1',2,36,35833,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005w4ciyy0tag78d',1,'Admin',1672319423,'192.168.64.1',2,36,35834,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005x4ciy92dztnwh',1,'Admin',1672319423,'192.168.64.1',2,36,35835,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005y4ciywhxzgxqt',1,'Admin',1672319423,'192.168.64.1',2,36,35836,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005z4ciy3k0abr9c',1,'Admin',1672319423,'192.168.64.1',2,36,35837,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00604ciy21l9yrmm',1,'Admin',1672319423,'192.168.64.1',2,36,35838,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00614ciyqcfqn9sa',1,'Admin',1672319423,'192.168.64.1',2,36,35839,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00624ciy5leg3nra',1,'Admin',1672319423,'192.168.64.1',2,36,35840,NULL,'ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00634ciyfk8z3s31',1,'Admin',1672319423,'192.168.64.1',2,36,35841,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00644ciybh012cx9',1,'Admin',1672319423,'192.168.64.1',2,36,35842,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00654ciyj542dbmh',1,'Admin',1672319423,'192.168.64.1',2,36,35843,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00664ciyryfqe0re',1,'Admin',1672319423,'192.168.64.1',2,36,35844,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00674ciyc4csxj8z',1,'Admin',1672319423,'192.168.64.1',2,36,35845,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00684ciylz36xhow',1,'Admin',1672319423,'192.168.64.1',2,36,35846,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00694ciyp0pg4y38',1,'Admin',1672319423,'192.168.64.1',2,36,35847,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006a4ciycjfecoyw',1,'Admin',1672319423,'192.168.64.1',2,36,35864,NULL,'ZYXEL MES3500-10: Memory \"{#ZYXEL.MEMORY.NAME}\" utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006b4ciyjbtqhzbc',1,'Admin',1672319423,'192.168.64.1',2,36,35865,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006c4ciyr1vr83ew',1,'Admin',1672319423,'192.168.64.1',2,36,35866,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006d4ciyecr95o1w',1,'Admin',1672319423,'192.168.64.1',2,36,35867,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006e4ciywmn911ey',1,'Admin',1672319423,'192.168.64.1',2,36,35868,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006f4ciy1n3kk1oa',1,'Admin',1672319423,'192.168.64.1',2,36,35869,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006g4ciyxxpa9eo1',1,'Admin',1672319423,'192.168.64.1',2,36,35870,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006h4ciy9clrymu9',1,'Admin',1672319423,'192.168.64.1',2,36,35871,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006i4ciylmmcblln',1,'Admin',1672319423,'192.168.64.1',2,36,35872,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006j4ciywm8ygeqs',1,'Admin',1672319423,'192.168.64.1',2,36,35873,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006k4ciy6u16xeno',1,'Admin',1672319423,'192.168.64.1',2,36,35874,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006l4ciy60kxza96',1,'Admin',1672319423,'192.168.64.1',2,36,35875,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006m4ciyo8v8xlnp',1,'Admin',1672319423,'192.168.64.1',2,36,35876,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006n4ciyzz5ym6zc',1,'Admin',1672319423,'192.168.64.1',2,36,35877,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006o4ciy52mqrxgi',1,'Admin',1672319423,'192.168.64.1',2,36,35878,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006p4ciychgiuf95',1,'Admin',1672319423,'192.168.64.1',2,36,35879,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006q4ciymoge4l3d',1,'Admin',1672319423,'192.168.64.1',2,36,35880,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006r4ciyj2jjupav',1,'Admin',1672319423,'192.168.64.1',2,36,35881,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006s4ciykdf7xkk6',1,'Admin',1672319423,'192.168.64.1',2,36,35882,NULL,'ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006t4ciyyzq1hyyw',1,'Admin',1672319423,'192.168.64.1',2,36,35883,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006u4ciyriqtv2nv',1,'Admin',1672319423,'192.168.64.1',2,36,35884,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006v4ciyw89ittoj',1,'Admin',1672319423,'192.168.64.1',2,36,35885,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006w4ciysudq7prn',1,'Admin',1672319423,'192.168.64.1',2,36,35886,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006x4ciytiv8w2d0',1,'Admin',1672319423,'192.168.64.1',2,36,35887,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006y4ciyliv66q2w',1,'Admin',1672319423,'192.168.64.1',2,36,35888,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006z4ciy9m155o5q',1,'Admin',1672319423,'192.168.64.1',2,36,35889,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00704ciynw4eyfxu',1,'Admin',1672319423,'192.168.64.1',2,36,35890,NULL,'ZYXEL MES3500-10: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00714ciyg24v585o',1,'Admin',1672319423,'192.168.64.1',2,36,35891,NULL,'ZYXEL MES3500-10: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00724ciyegkgmqio',1,'Admin',1672319423,'192.168.64.1',2,36,35908,NULL,'ZYXEL MES3500-24: Memory \"{#ZYXEL.MEMORY.NAME}\" utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00734ciya885azy3',1,'Admin',1672319423,'192.168.64.1',2,36,35909,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00744ciyq9x37zds',1,'Admin',1672319423,'192.168.64.1',2,36,35910,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00754ciyd6xtn7s5',1,'Admin',1672319423,'192.168.64.1',2,36,35911,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00764ciydlgadm6x',1,'Admin',1672319423,'192.168.64.1',2,36,35912,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00774ciyxrqzbh7u',1,'Admin',1672319423,'192.168.64.1',2,36,35913,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00784ciyiwtnpuvr',1,'Admin',1672319423,'192.168.64.1',2,36,35914,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00794ciy29fn2pgq',1,'Admin',1672319423,'192.168.64.1',2,36,35915,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007a4ciybhy4p33s',1,'Admin',1672319423,'192.168.64.1',2,36,35916,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007b4ciyjbb14sxe',1,'Admin',1672319423,'192.168.64.1',2,36,35917,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007c4ciytq9w8p5r',1,'Admin',1672319423,'192.168.64.1',2,36,35918,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007d4ciyq9469fx6',1,'Admin',1672319423,'192.168.64.1',2,36,35919,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007e4ciykxazv9ka',1,'Admin',1672319423,'192.168.64.1',2,36,35920,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007f4ciy7damh1up',1,'Admin',1672319423,'192.168.64.1',2,36,35921,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007g4ciyimrkmiod',1,'Admin',1672319423,'192.168.64.1',2,36,35922,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007h4ciy1eo8o4jr',1,'Admin',1672319423,'192.168.64.1',2,36,35923,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007i4ciyybr7muvn',1,'Admin',1672319423,'192.168.64.1',2,36,35924,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007j4ciy6iwa5k70',1,'Admin',1672319423,'192.168.64.1',2,36,35925,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007k4ciyurao2gn3',1,'Admin',1672319423,'192.168.64.1',2,36,35926,NULL,'ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007l4ciytog5d01f',1,'Admin',1672319423,'192.168.64.1',2,36,35927,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007m4ciy52q7awhz',1,'Admin',1672319423,'192.168.64.1',2,36,35928,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007n4ciyjh03hmzx',1,'Admin',1672319423,'192.168.64.1',2,36,35929,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007o4ciydnv5k89t',1,'Admin',1672319423,'192.168.64.1',2,36,35930,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007p4ciyzvpntnaw',1,'Admin',1672319423,'192.168.64.1',2,36,35931,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007q4ciy0o9otn0w',1,'Admin',1672319423,'192.168.64.1',2,36,35932,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007r4ciylbckh6rj',1,'Admin',1672319423,'192.168.64.1',2,36,35933,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007s4ciylmlalaxa',1,'Admin',1672319423,'192.168.64.1',2,36,35934,NULL,'ZYXEL MES3500-24: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007t4ciyxo6f9mab',1,'Admin',1672319423,'192.168.64.1',2,36,35935,NULL,'ZYXEL MES3500-24: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007u4ciyzbo3etot',1,'Admin',1672319423,'192.168.64.1',2,36,35952,NULL,'ZYXEL MGS-3712: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007v4ciym3hqhgw0',1,'Admin',1672319423,'192.168.64.1',2,36,35953,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007w4ciymkfvjcl0',1,'Admin',1672319423,'192.168.64.1',2,36,35954,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007x4ciyxgffqopc',1,'Admin',1672319423,'192.168.64.1',2,36,35955,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007y4ciyl08updxk',1,'Admin',1672319423,'192.168.64.1',2,36,35956,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007z4ciy1yapq3qu',1,'Admin',1672319423,'192.168.64.1',2,36,35957,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00804ciywbmzfd43',1,'Admin',1672319423,'192.168.64.1',2,36,35958,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00814ciyy6bnvr1a',1,'Admin',1672319423,'192.168.64.1',2,36,35959,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00824ciydbiac11c',1,'Admin',1672319423,'192.168.64.1',2,36,35960,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00834ciy4nvzucxk',1,'Admin',1672319423,'192.168.64.1',2,36,35961,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00844ciytnry0dms',1,'Admin',1672319423,'192.168.64.1',2,36,35962,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00854ciyw0glatmt',1,'Admin',1672319423,'192.168.64.1',2,36,35963,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00864ciyyfc1autb',1,'Admin',1672319423,'192.168.64.1',2,36,35964,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00874ciyx15ec96v',1,'Admin',1672319423,'192.168.64.1',2,36,35965,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00884ciyqan5qhod',1,'Admin',1672319423,'192.168.64.1',2,36,35966,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00894ciygkqjkbg0',1,'Admin',1672319423,'192.168.64.1',2,36,35967,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008a4ciy9owtlojh',1,'Admin',1672319423,'192.168.64.1',2,36,35968,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008b4ciyufric05h',1,'Admin',1672319423,'192.168.64.1',2,36,35969,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008c4ciy68i33h8a',1,'Admin',1672319423,'192.168.64.1',2,36,35970,NULL,'ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008d4ciydalcra21',1,'Admin',1672319423,'192.168.64.1',2,36,35971,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008e4ciyv9nj9lsu',1,'Admin',1672319423,'192.168.64.1',2,36,35972,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008f4ciy3f7xbkof',1,'Admin',1672319423,'192.168.64.1',2,36,35973,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008g4ciyley0qj83',1,'Admin',1672319423,'192.168.64.1',2,36,35974,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008h4ciyqlrp5jbi',1,'Admin',1672319423,'192.168.64.1',2,36,35975,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008i4ciyki7mnbtz',1,'Admin',1672319423,'192.168.64.1',2,36,35976,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008j4ciy7h7gz1br',1,'Admin',1672319423,'192.168.64.1',2,36,35977,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008k4ciybibr65pa',1,'Admin',1672319423,'192.168.64.1',2,36,35978,NULL,'ZYXEL MGS-3712: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008l4ciy8bxxn6x0',1,'Admin',1672319423,'192.168.64.1',2,36,35979,NULL,'ZYXEL MGS-3712: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008m4ciy8zuwd936',1,'Admin',1672319423,'192.168.64.1',2,36,35996,NULL,'ZYXEL MGS-3712F: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008n4ciyxnvbyxsf',1,'Admin',1672319423,'192.168.64.1',2,36,35997,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008o4ciy5buxarzh',1,'Admin',1672319423,'192.168.64.1',2,36,35998,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008p4ciy4f80ihid',1,'Admin',1672319423,'192.168.64.1',2,36,35999,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008q4ciyrf200wkd',1,'Admin',1672319423,'192.168.64.1',2,36,36000,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008r4ciysvrp2cbg',1,'Admin',1672319423,'192.168.64.1',2,36,36001,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008s4ciyrs07rwox',1,'Admin',1672319423,'192.168.64.1',2,36,36002,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008t4ciyel1v813h',1,'Admin',1672319423,'192.168.64.1',2,36,36003,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008u4ciy9zi10y6e',1,'Admin',1672319423,'192.168.64.1',2,36,36004,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008v4ciymvu5exsd',1,'Admin',1672319423,'192.168.64.1',2,36,36005,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008w4ciy4x4uqbj4',1,'Admin',1672319423,'192.168.64.1',2,36,36006,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008x4ciy2sodse0d',1,'Admin',1672319423,'192.168.64.1',2,36,36007,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008y4ciytgq4beyz',1,'Admin',1672319423,'192.168.64.1',2,36,36008,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008z4ciyo2e3lxjf',1,'Admin',1672319423,'192.168.64.1',2,36,36009,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00904ciyl6wp8zrt',1,'Admin',1672319423,'192.168.64.1',2,36,36010,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00914ciyv0pxasma',1,'Admin',1672319423,'192.168.64.1',2,36,36011,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00924ciyz169fxpc',1,'Admin',1672319423,'192.168.64.1',2,36,36012,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00934ciymt1hnimr',1,'Admin',1672319423,'192.168.64.1',2,36,36013,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00944ciyvekkwwru',1,'Admin',1672319423,'192.168.64.1',2,36,36014,NULL,'ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00954ciyg2ed7nz4',1,'Admin',1672319423,'192.168.64.1',2,36,36015,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00964ciysgphfr5f',1,'Admin',1672319423,'192.168.64.1',2,36,36016,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00974ciydh5pm0s8',1,'Admin',1672319423,'192.168.64.1',2,36,36017,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00984ciy77s35o98',1,'Admin',1672319423,'192.168.64.1',2,36,36018,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00994ciyorqkl4hw',1,'Admin',1672319423,'192.168.64.1',2,36,36019,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009a4ciyeyha3na3',1,'Admin',1672319423,'192.168.64.1',2,36,36020,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009b4ciyl0obre1i',1,'Admin',1672319423,'192.168.64.1',2,36,36021,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009c4ciyowp1xss2',1,'Admin',1672319423,'192.168.64.1',2,36,36022,NULL,'ZYXEL MGS-3712F: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009d4ciy1uo0w5ob',1,'Admin',1672319423,'192.168.64.1',2,36,36023,NULL,'ZYXEL MGS-3712F: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009e4ciypgfcssx3',1,'Admin',1672319423,'192.168.64.1',2,36,36041,NULL,'ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009f4ciy6sajsupb',1,'Admin',1672319423,'192.168.64.1',2,36,36042,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009g4ciylokmkhap',1,'Admin',1672319423,'192.168.64.1',2,36,36043,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009h4ciya5m5wpgt',1,'Admin',1672319423,'192.168.64.1',2,36,36044,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009i4ciytajnxsfq',1,'Admin',1672319423,'192.168.64.1',2,36,36045,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009j4ciyx479n7i9',1,'Admin',1672319423,'192.168.64.1',2,36,36046,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009k4ciy3fzi6zhy',1,'Admin',1672319423,'192.168.64.1',2,36,36047,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009l4ciy7kb1yhb5',1,'Admin',1672319423,'192.168.64.1',2,36,36048,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009m4ciy49pidvqz',1,'Admin',1672319423,'192.168.64.1',2,36,36049,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009n4ciyuzdh85ih',1,'Admin',1672319423,'192.168.64.1',2,36,36050,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009o4ciy85xpfz2a',1,'Admin',1672319423,'192.168.64.1',2,36,36051,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009p4ciyzrma41zy',1,'Admin',1672319423,'192.168.64.1',2,36,36052,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009q4ciyvh8obtk2',1,'Admin',1672319423,'192.168.64.1',2,36,36053,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009r4ciyhy6gp33n',1,'Admin',1672319423,'192.168.64.1',2,36,36054,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009s4ciyv032i6c1',1,'Admin',1672319423,'192.168.64.1',2,36,36055,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009t4ciy8rin6w5e',1,'Admin',1672319423,'192.168.64.1',2,36,36056,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009u4ciy9gkvqhdl',1,'Admin',1672319423,'192.168.64.1',2,36,36057,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009v4ciyzxxxxbsq',1,'Admin',1672319423,'192.168.64.1',2,36,36058,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009w4ciy9msw2c4g',1,'Admin',1672319423,'192.168.64.1',2,36,36059,NULL,'ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009x4ciy6luwal3d',1,'Admin',1672319423,'192.168.64.1',2,36,36060,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009y4ciyi01baypc',1,'Admin',1672319423,'192.168.64.1',2,36,36061,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009z4ciytqs93k67',1,'Admin',1672319423,'192.168.64.1',2,36,36062,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a04ciy6lfx75zs',1,'Admin',1672319423,'192.168.64.1',2,36,36063,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a14ciys6dqsj8v',1,'Admin',1672319423,'192.168.64.1',2,36,36064,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a24ciyd5pfytv8',1,'Admin',1672319423,'192.168.64.1',2,36,36065,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a34ciyrk6zch12',1,'Admin',1672319423,'192.168.64.1',2,36,36066,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a44ciykc7sai1r',1,'Admin',1672319423,'192.168.64.1',2,36,36067,NULL,'ZYXEL MES3500-24S: Temperature \"{#ZYXEL.TEMPDESCRIPTION}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a54ciyx2vgfhvx',1,'Admin',1672319423,'192.168.64.1',2,36,36068,NULL,'ZYXEL MES3500-24S: Nominal \"{#ZYXEL.DESCRIPTION}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a64ciym6jkd7pu',1,'Admin',1672319423,'192.168.64.1',2,36,36086,NULL,'ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a74ciyp1arwhjm',1,'Admin',1672319423,'192.168.64.1',2,36,36087,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a84ciyij7ouiiu',1,'Admin',1672319423,'192.168.64.1',2,36,36088,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a94ciy851szswj',1,'Admin',1672319423,'192.168.64.1',2,36,36089,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00aa4ciyr60hkyxk',1,'Admin',1672319423,'192.168.64.1',2,36,36090,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ab4ciyk9hbsv8q',1,'Admin',1672319423,'192.168.64.1',2,36,36091,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ac4ciyfghr68oz',1,'Admin',1672319423,'192.168.64.1',2,36,36092,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ad4ciyl46zbeyt',1,'Admin',1672319423,'192.168.64.1',2,36,36093,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ae4ciybk7h3uqr',1,'Admin',1672319423,'192.168.64.1',2,36,36094,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00af4ciyosur41k0',1,'Admin',1672319423,'192.168.64.1',2,36,36095,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ag4ciyxh7m1ool',1,'Admin',1672319423,'192.168.64.1',2,36,36096,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ah4ciyczeyw3da',1,'Admin',1672319423,'192.168.64.1',2,36,36097,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ai4ciyzqojbrnc',1,'Admin',1672319423,'192.168.64.1',2,36,36098,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00aj4ciykfitnwgi',1,'Admin',1672319423,'192.168.64.1',2,36,36099,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ak4ciyjygzcxs5',1,'Admin',1672319423,'192.168.64.1',2,36,36100,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00al4ciyvttg4vfy',1,'Admin',1672319423,'192.168.64.1',2,36,36101,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00am4ciy77a8k5qi',1,'Admin',1672319423,'192.168.64.1',2,36,36102,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00an4ciy1ho6vdl1',1,'Admin',1672319423,'192.168.64.1',2,36,36103,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ao4ciysx5rl40m',1,'Admin',1672319423,'192.168.64.1',2,36,36104,NULL,'ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ap4ciyg71x9osm',1,'Admin',1672319423,'192.168.64.1',2,36,36105,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00aq4ciyhr9i29ay',1,'Admin',1672319423,'192.168.64.1',2,36,36106,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ar4ciydz58z1vk',1,'Admin',1672319423,'192.168.64.1',2,36,36107,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00as4ciybbw3m7ak',1,'Admin',1672319423,'192.168.64.1',2,36,36108,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00at4ciykjju903q',1,'Admin',1672319423,'192.168.64.1',2,36,36109,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00au4ciyh51p42h5',1,'Admin',1672319423,'192.168.64.1',2,36,36110,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00av4ciy0exkobtd',1,'Admin',1672319423,'192.168.64.1',2,36,36111,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00aw4ciy81wh3hm9',1,'Admin',1672319423,'192.168.64.1',2,36,36112,NULL,'ZYXEL MGS3520-28x: Temperature \"{#ZYXEL.TEMPDESCRIPTION}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ax4ciy1blvb6bs',1,'Admin',1672319423,'192.168.64.1',2,36,36113,NULL,'ZYXEL MGS3520-28x: Nominal \"{#ZYXEL.DESCRIPTION}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ay4ciye9jjyv4n',1,'Admin',1672319423,'192.168.64.1',2,36,36131,NULL,'ZYXEL XGS-4728F: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00az4ciyy3u0z25f',1,'Admin',1672319423,'192.168.64.1',2,36,36132,NULL,'ZYXEL XGS-4728F: Memory \"{#ZYXEL.MEMORY.NAME}\" utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b04ciyd85dh5ij',1,'Admin',1672319423,'192.168.64.1',2,36,36133,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b14ciynb07rwz6',1,'Admin',1672319423,'192.168.64.1',2,36,36134,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b24ciy4ezppsx8',1,'Admin',1672319423,'192.168.64.1',2,36,36135,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b34ciypkq1i1ua',1,'Admin',1672319423,'192.168.64.1',2,36,36136,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b44ciy7nnfyvjj',1,'Admin',1672319423,'192.168.64.1',2,36,36137,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b54ciy46l5o8i4',1,'Admin',1672319423,'192.168.64.1',2,36,36138,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b64ciyue554ffs',1,'Admin',1672319423,'192.168.64.1',2,36,36139,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b74ciy2jk8hag7',1,'Admin',1672319423,'192.168.64.1',2,36,36140,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b84ciy3u0sxq5w',1,'Admin',1672319423,'192.168.64.1',2,36,36141,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b94ciy001resek',1,'Admin',1672319423,'192.168.64.1',2,36,36142,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ba4ciysnlyj26q',1,'Admin',1672319423,'192.168.64.1',2,36,36143,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bb4ciyp4ll04dt',1,'Admin',1672319423,'192.168.64.1',2,36,36144,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bc4ciyrzs7tiqn',1,'Admin',1672319423,'192.168.64.1',2,36,36145,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bd4ciyaonyxl91',1,'Admin',1672319423,'192.168.64.1',2,36,36146,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00be4ciyx86sk4a3',1,'Admin',1672319423,'192.168.64.1',2,36,36147,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bf4ciyyjtwb8dw',1,'Admin',1672319423,'192.168.64.1',2,36,36148,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bg4ciyiduxjixb',1,'Admin',1672319423,'192.168.64.1',2,36,36149,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bh4ciyoay35208',1,'Admin',1672319423,'192.168.64.1',2,36,36150,NULL,'ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bi4ciypledaq89',1,'Admin',1672319423,'192.168.64.1',2,36,36151,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bj4ciysyifryjn',1,'Admin',1672319423,'192.168.64.1',2,36,36152,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bk4ciygn3js4gn',1,'Admin',1672319423,'192.168.64.1',2,36,36153,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bl4ciym72ewbn2',1,'Admin',1672319423,'192.168.64.1',2,36,36154,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bm4ciy350ox4kf',1,'Admin',1672319423,'192.168.64.1',2,36,36155,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bn4ciyv1zlwlp9',1,'Admin',1672319423,'192.168.64.1',2,36,36156,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bo4ciyqpq0qwri',1,'Admin',1672319423,'192.168.64.1',2,36,36157,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bp4ciyjzclgjtl',1,'Admin',1672319423,'192.168.64.1',2,36,36158,NULL,'ZYXEL XGS-4728F: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bq4ciy0l01nltm',1,'Admin',1672319423,'192.168.64.1',2,36,36159,NULL,'ZYXEL XGS-4728F: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00br4ciywnwrrcca',1,'Admin',1672319423,'192.168.64.1',2,36,39808,NULL,'Cluster node [{#NODE.NAME}]: Address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bs4ciyybbenu5x',1,'Admin',1672319423,'192.168.64.1',2,36,39809,NULL,'Cluster node [{#NODE.NAME}]: Last access age','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bt4ciytzjvtc6s',1,'Admin',1672319423,'192.168.64.1',2,36,39810,NULL,'Cluster node [{#NODE.NAME}]: Last access time','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bu4ciyy5uszgvj',1,'Admin',1672319423,'192.168.64.1',2,36,39811,NULL,'Cluster node [{#NODE.NAME}]: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bv4ciyt0f9b438',1,'Admin',1672319423,'192.168.64.1',2,36,44059,NULL,'Proxy [{#PROXY.NAME}]: Certificate','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bw4ciy7rimvgf0',1,'Admin',1672319423,'192.168.64.1',2,36,44060,NULL,'Proxy [{#PROXY.NAME}]: Compatibility','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bx4ciympm5dtdy',1,'Admin',1672319423,'192.168.64.1',2,36,44061,NULL,'Proxy [{#PROXY.NAME}]: Compression','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00by4ciy588fngca',1,'Admin',1672319423,'192.168.64.1',2,36,44062,NULL,'Proxy [{#PROXY.NAME}]: Host count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bz4ciylewd7a9h',1,'Admin',1672319423,'192.168.64.1',2,36,44063,NULL,'Proxy [{#PROXY.NAME}]: Item count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c04ciy3vv4dser',1,'Admin',1672319423,'192.168.64.1',2,36,44064,NULL,'Proxy [{#PROXY.NAME}]: Last seen, in seconds','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c14ciyloeuvpdu',1,'Admin',1672319423,'192.168.64.1',2,36,44065,NULL,'Proxy [{#PROXY.NAME}]: Mode','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c24ciy1k6fy4st',1,'Admin',1672319423,'192.168.64.1',2,36,44066,NULL,'Proxy [{#PROXY.NAME}]: PSK','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c34ciygonpqftl',1,'Admin',1672319423,'192.168.64.1',2,36,44067,NULL,'Proxy [{#PROXY.NAME}]: Required VPS','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c44ciykvdgni0a',1,'Admin',1672319423,'192.168.64.1',2,36,44068,NULL,'Proxy [{#PROXY.NAME}]: Unencrypted','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c54ciyuegf172v',1,'Admin',1672319423,'192.168.64.1',2,36,44069,NULL,'Proxy [{#PROXY.NAME}]: Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00c64ciysxtoj4uj',1,'Admin',1672319423,'192.168.64.1',2,15,10061,NULL,'Zabbix server: Number of processed numeric (float) values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00c74ciyu4b69wwh',1,'Admin',1672319423,'192.168.64.1',2,15,10062,NULL,'Zabbix server: Number of processed character values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00c84ciyum5eco74',1,'Admin',1672319423,'192.168.64.1',2,15,10063,NULL,'Zabbix server: Number of processed log values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00c94ciy9hxdici5',1,'Admin',1672319423,'192.168.64.1',2,15,10064,NULL,'Zabbix server: Number of processed numeric (unsigned) values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00ca4ciy9it6l7hu',1,'Admin',1672319423,'192.168.64.1',2,15,10065,NULL,'Zabbix server: Number of processed text values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00cb4ciybrybdvm4',1,'Admin',1672319423,'192.168.64.1',2,15,10066,NULL,'Zabbix server: Number of processed not supported values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cc4ciyc8elu61n',1,'Admin',1672319423,'192.168.64.1',2,15,10067,NULL,'Zabbix proxy: Number of processed numeric (float) values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cd4ciydsrtjqkd',1,'Admin',1672319423,'192.168.64.1',2,15,10068,NULL,'Zabbix proxy: Number of processed character values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ce4ciy8294n6g8',1,'Admin',1672319423,'192.168.64.1',2,15,10069,NULL,'Zabbix proxy: Number of processed log values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cf4ciypopfd5yo',1,'Admin',1672319423,'192.168.64.1',2,15,10070,NULL,'Zabbix proxy: Number of processed numeric (unsigned) values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cg4ciyuh02nosk',1,'Admin',1672319423,'192.168.64.1',2,15,10071,NULL,'Zabbix proxy: Number of processed text values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ch4ciy7dxwmpvn',1,'Admin',1672319423,'192.168.64.1',2,15,10072,NULL,'Zabbix proxy: Number of processed not supported values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ci4ciyfqju7ngt',1,'Admin',1672319423,'192.168.64.1',2,15,22183,NULL,'Zabbix server: History write cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cj4ciysdjh1kmz',1,'Admin',1672319423,'192.168.64.1',2,15,22185,NULL,'Zabbix server: Trend write cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ck4ciyblx3vu54',1,'Admin',1672319423,'192.168.64.1',2,15,22187,NULL,'Zabbix server: Number of processed values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cl4ciykrzym6qz',1,'Admin',1672319423,'192.168.64.1',2,15,22189,NULL,'Zabbix server: Configuration cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cm4ciyskhzic11',1,'Admin',1672319423,'192.168.64.1',2,15,22191,NULL,'Zabbix server: Value cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cn4ciywdw8kxnk',1,'Admin',1672319423,'192.168.64.1',2,15,22196,NULL,'Zabbix server: Value cache hits','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00co4ciyq79mpo5q',1,'Admin',1672319423,'192.168.64.1',2,15,22199,NULL,'Zabbix server: Value cache misses','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cp4ciywh2jotw6',1,'Admin',1672319423,'192.168.64.1',2,15,22219,NULL,'Zabbix server: Queue over 10 minutes','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cq4ciydv9xtof7',1,'Admin',1672319423,'192.168.64.1',2,15,22231,NULL,'Version of Zabbix agent running','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cr4ciyfsc3uw9y',1,'Admin',1672319423,'192.168.64.1',2,15,22232,NULL,'Zabbix agent ping','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cs4ciy73j6efl1',1,'Admin',1672319423,'192.168.64.1',2,15,22396,NULL,'Zabbix server: History index cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ct4ciymd88cvqo',1,'Admin',1672319423,'192.168.64.1',2,15,22399,NULL,'Zabbix server: Utilization of poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cu4ciy82bzpewv',1,'Admin',1672319423,'192.168.64.1',2,15,22400,NULL,'Zabbix server: Utilization of unreachable poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cv4ciywl4nnlco',1,'Admin',1672319423,'192.168.64.1',2,15,22401,NULL,'Zabbix server: Utilization of vmware data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cw4ciy79pu35x0',1,'Admin',1672319423,'192.168.64.1',2,15,22402,NULL,'Zabbix server: Utilization of http poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cx4ciyrxrir645',1,'Admin',1672319423,'192.168.64.1',2,15,22404,NULL,'Zabbix server: Utilization of trapper data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cy4ciyiyl6ayb6',1,'Admin',1672319423,'192.168.64.1',2,15,22406,NULL,'Zabbix server: Utilization of history syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cz4ciy2pimq0er',1,'Admin',1672319423,'192.168.64.1',2,15,22408,NULL,'Zabbix server: Utilization of housekeeper internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d04ciyzny8e0y3',1,'Admin',1672319423,'192.168.64.1',2,15,22412,NULL,'Zabbix server: Utilization of configuration syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d14ciymsr9sbzy',1,'Admin',1672319423,'192.168.64.1',2,15,22414,NULL,'Zabbix server: Utilization of self-monitoring internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d24ciypnyt7fgo',1,'Admin',1672319423,'192.168.64.1',2,15,22416,NULL,'Zabbix server: Utilization of ipmi poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d34ciyg8ugj7mf',1,'Admin',1672319423,'192.168.64.1',2,15,22418,NULL,'Zabbix server: Utilization of icmp pinger data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d44ciy2udq0jqe',1,'Admin',1672319423,'192.168.64.1',2,15,22420,NULL,'Zabbix server: Utilization of proxy poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d54ciyqomgy0ap',1,'Admin',1672319423,'192.168.64.1',2,15,22422,NULL,'Zabbix server: Utilization of escalator internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d64ciywgpdl6b4',1,'Admin',1672319423,'192.168.64.1',2,15,22424,NULL,'Zabbix server: Utilization of alerter internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d74ciyq8zmt2s2',1,'Admin',1672319423,'192.168.64.1',2,15,22426,NULL,'Zabbix server: Utilization of timer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d84ciym36avz2w',1,'Admin',1672319423,'192.168.64.1',2,15,22430,NULL,'Zabbix server: Utilization of discoverer data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d94ciymsxftmit',1,'Admin',1672319423,'192.168.64.1',2,15,22689,NULL,'Zabbix server: Utilization of java poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00da4ciyimvhfk24',1,'Admin',1672319423,'192.168.64.1',2,15,23171,NULL,'Zabbix server: Utilization of snmp trapper data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00db4ciyw67ykkec',1,'Admin',1672319423,'192.168.64.1',2,15,23251,NULL,'Zabbix server: Queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dc4ciyp6wi91tv',1,'Admin',1672319423,'192.168.64.1',2,15,23318,NULL,'Host name of Zabbix agent running','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dd4ciy5kc6zoww',1,'Admin',1672319423,'192.168.64.1',2,15,23340,NULL,'Zabbix proxy: Number of processed values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00de4ciyx96ouxw7',1,'Admin',1672319423,'192.168.64.1',2,15,23341,NULL,'Zabbix proxy: History index cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00df4ciy2zz2sxhf',1,'Admin',1672319423,'192.168.64.1',2,15,23342,NULL,'Zabbix proxy: History write cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dg4ciy1xh54qwn',1,'Admin',1672319423,'192.168.64.1',2,15,23343,NULL,'Zabbix proxy: Utilization of self-monitoring internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dh4ciyo90qtn10',1,'Admin',1672319423,'192.168.64.1',2,15,23344,NULL,'Zabbix proxy: Utilization of snmp trapper data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00di4ciyrgjsrxz2',1,'Admin',1672319423,'192.168.64.1',2,15,23345,NULL,'Zabbix proxy: Utilization of trapper data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dj4ciy6gpasr2r',1,'Admin',1672319423,'192.168.64.1',2,15,23346,NULL,'Zabbix proxy: Utilization of unreachable poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dk4ciyqkkrmc9l',1,'Admin',1672319423,'192.168.64.1',2,15,23347,NULL,'Zabbix proxy: Utilization of configuration syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dl4ciy5qoohkyu',1,'Admin',1672319423,'192.168.64.1',2,15,23348,NULL,'Zabbix proxy: Utilization of poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dm4ciy8w2fcdmq',1,'Admin',1672319423,'192.168.64.1',2,15,23349,NULL,'Zabbix proxy: Utilization of java poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dn4ciygb0gwo2j',1,'Admin',1672319423,'192.168.64.1',2,15,23350,NULL,'Zabbix proxy: Utilization of history syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00do4ciy9r8tr6wi',1,'Admin',1672319423,'192.168.64.1',2,15,23352,NULL,'Zabbix proxy: Utilization of discoverer data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dp4ciyw47seueo',1,'Admin',1672319423,'192.168.64.1',2,15,23353,NULL,'Zabbix proxy: Utilization of housekeeper internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dq4ciypk4r80y4',1,'Admin',1672319423,'192.168.64.1',2,15,23354,NULL,'Zabbix proxy: Utilization of http poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dr4ciy4df9am7c',1,'Admin',1672319423,'192.168.64.1',2,15,23355,NULL,'Zabbix proxy: Utilization of ipmi poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ds4ciyhbgimkrm',1,'Admin',1672319423,'192.168.64.1',2,15,23356,NULL,'Zabbix proxy: Utilization of icmp pinger data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dt4ciye7ddkx0k',1,'Admin',1672319423,'192.168.64.1',2,15,23357,NULL,'Zabbix proxy: Configuration cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00du4ciyl2vo2od4',1,'Admin',1672319423,'192.168.64.1',2,15,23358,NULL,'Zabbix proxy: Queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dv4ciyzmcp1ity',1,'Admin',1672319423,'192.168.64.1',2,15,23359,NULL,'Zabbix proxy: Queue over 10 minutes','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dw4ciy4av2kzwg',1,'Admin',1672319423,'192.168.64.1',2,15,23360,NULL,'Zabbix proxy: Utilization of data sender internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dx4ciyv6c8qfil',1,'Admin',1672319423,'192.168.64.1',2,15,23634,NULL,'Zabbix server: VMware cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dy4ciy46g05hqv',1,'Admin',1672319423,'192.168.64.1',2,15,23661,NULL,'Zabbix server: Value cache operating mode','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dz4ciy8k8qxtp1',1,'Admin',1672319423,'192.168.64.1',2,15,23663,NULL,'Zabbix server: Utilization of task manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e04ciyhda8e9ic',1,'Admin',1672319423,'192.168.64.1',2,15,25366,NULL,'Zabbix server: Utilization of ipmi manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e14ciytj0iasks',1,'Admin',1672319423,'192.168.64.1',2,15,25368,NULL,'Zabbix proxy: Utilization of ipmi manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e24ciybxok3lk4',1,'Admin',1672319423,'192.168.64.1',2,15,25369,NULL,'Zabbix proxy: Utilization of task manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e34ciy7ehccgpz',1,'Admin',1672319423,'192.168.64.1',2,15,25370,NULL,'Zabbix server: Utilization of alert manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e44ciyqr6lgnfb',1,'Admin',1672319423,'192.168.64.1',2,15,25665,NULL,'Zabbix server: Utilization of preprocessing manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e54ciyycdrq4b9',1,'Admin',1672319423,'192.168.64.1',2,15,25666,NULL,'Zabbix server: Utilization of preprocessing worker internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e64ciy5y48yxyd',1,'Admin',1672319423,'192.168.64.1',2,15,28248,NULL,'Zabbix server: Preprocessing queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e74ciym75kb4n8',1,'Admin',1672319423,'192.168.64.1',2,15,28250,NULL,'Zabbix proxy: Utilization of vmware data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e84ciy5ot5skvz',1,'Admin',1672319423,'192.168.64.1',2,15,28251,NULL,'Zabbix proxy: VMware cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e94ciyzh3at0j7',1,'Admin',1672319423,'192.168.64.1',2,15,28533,NULL,'Zabbix server: LLD queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ea4ciy6usjm6ka',1,'Admin',1672319423,'192.168.64.1',2,15,28535,NULL,'Zabbix server: Utilization of LLD manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eb4ciyix2xhlop',1,'Admin',1672319423,'192.168.64.1',2,15,28537,NULL,'Zabbix server: Utilization of LLD worker internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ec4ciyc3pwinjx',1,'Admin',1672319423,'192.168.64.1',2,15,28617,NULL,'Zabbix proxy: Preprocessing queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ed4ciy0n3ix6fa',1,'Admin',1672319423,'192.168.64.1',2,15,28618,NULL,'Zabbix proxy: Utilization of preprocessing manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ee4ciy2fa7xm6d',1,'Admin',1672319423,'192.168.64.1',2,15,28619,NULL,'Zabbix proxy: Utilization of preprocessing worker internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ef4ciydabf5b2f',1,'Admin',1672319423,'192.168.64.1',2,15,29544,NULL,'Zabbix agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eg4ciyy51w0zkj',1,'Admin',1672319423,'192.168.64.1',2,15,29545,NULL,'Version of Zabbix agent running','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eh4ciygm5sagz8',1,'Admin',1672319423,'192.168.64.1',2,15,29546,NULL,'Host name of Zabbix agent running','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ei4ciyld2snrra',1,'Admin',1672319423,'192.168.64.1',2,15,29547,NULL,'Zabbix agent ping','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ej4ciyp071cbqi',1,'Admin',1672319423,'192.168.64.1',2,15,29822,NULL,'Zabbix server: Utilization of alert syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ek4ciy9t3e3ngk',1,'Admin',1672319423,'192.168.64.1',2,15,32963,NULL,'Zookeeper: Get server metrics','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00el4ciydk4njbj0',1,'Admin',1672319423,'192.168.64.1',2,15,32964,NULL,'Zookeeper: Get connections stats','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00em4ciy51klpfmm',1,'Admin',1672319423,'192.168.64.1',2,15,32965,NULL,'Zookeeper: Approximate data size','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00en4ciynuedbbm9',1,'Admin',1672319423,'192.168.64.1',2,15,32966,NULL,'Zookeeper: Outstanding requests','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eo4ciyxtfsc3n5',1,'Admin',1672319423,'192.168.64.1',2,15,32967,NULL,'Zookeeper: Latency, max','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ep4ciyslsja7ou',1,'Admin',1672319423,'192.168.64.1',2,15,32968,NULL,'Zookeeper: Latency, min','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eq4ciyle9c1mtl',1,'Admin',1672319423,'192.168.64.1',2,15,32969,NULL,'Zookeeper: Alive connections','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00er4ciygod1skfi',1,'Admin',1672319423,'192.168.64.1',2,15,32970,NULL,'Zookeeper: File descriptors, open','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00es4ciyf4ptqzq5',1,'Admin',1672319423,'192.168.64.1',2,15,32971,NULL,'Zookeeper: Packets received per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00et4ciye74zdb1d',1,'Admin',1672319423,'192.168.64.1',2,15,32972,NULL,'Zookeeper: Looking per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eu4ciytf551zp7',1,'Admin',1672319423,'192.168.64.1',2,15,32973,NULL,'Zookeeper: Packets sent per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ev4ciyoi5ksmcv',1,'Admin',1672319423,'192.168.64.1',2,15,32974,NULL,'Zookeeper: Revalidate per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ew4ciyyp48zpr0',1,'Admin',1672319423,'192.168.64.1',2,15,32975,NULL,'Zookeeper: Server mode','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ex4ciyjbckdz52',1,'Admin',1672319423,'192.168.64.1',2,15,32976,NULL,'Zookeeper: Snap syncs per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ey4ciydvoeq91w',1,'Admin',1672319423,'192.168.64.1',2,15,32977,NULL,'Zookeeper: Uptime','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ez4ciy9pvlf6ax',1,'Admin',1672319423,'192.168.64.1',2,15,32978,NULL,'Zookeeper: Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f04ciyrbneo3xe',1,'Admin',1672319423,'192.168.64.1',2,15,32979,NULL,'Zookeeper: Watch count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f14ciy6ois0tpc',1,'Admin',1672319423,'192.168.64.1',2,15,32980,NULL,'Zookeeper: File descriptors, max','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f24ciyrghkld74',1,'Admin',1672319423,'192.168.64.1',2,15,32981,NULL,'Zookeeper: Global sessions','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f34ciykm3uv4ro',1,'Admin',1672319423,'192.168.64.1',2,15,32982,NULL,'Zookeeper: Local sessions','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f44ciy2i6nh4h6',1,'Admin',1672319423,'192.168.64.1',2,15,32983,NULL,'Zookeeper: Election time, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f54ciyd215lfk4',1,'Admin',1672319423,'192.168.64.1',2,15,32984,NULL,'Zookeeper: Ephemeral nodes count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f64ciy82nfj9fq',1,'Admin',1672319423,'192.168.64.1',2,15,32985,NULL,'Zookeeper: Diff syncs per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f74ciyf0zptvla',1,'Admin',1672319423,'192.168.64.1',2,15,32986,NULL,'Zookeeper: Revalidate connections per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f84ciy0busj4xm',1,'Admin',1672319423,'192.168.64.1',2,15,32987,NULL,'Zookeeper: Rejected connections per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f94ciye84od6tp',1,'Admin',1672319423,'192.168.64.1',2,15,32988,NULL,'Zookeeper: Drop connections per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fa4ciy8hh4kv6y',1,'Admin',1672319423,'192.168.64.1',2,15,32989,NULL,'Zookeeper: Commit per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fb4ciy67usc0oa',1,'Admin',1672319423,'192.168.64.1',2,15,32990,NULL,'Zookeeper: Snapshot writes','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fc4ciyuy1cd5oy',1,'Admin',1672319423,'192.168.64.1',2,15,32991,NULL,'Zookeeper: Fsync','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fd4ciyh4gi6pzu',1,'Admin',1672319423,'192.168.64.1',2,15,32992,NULL,'Zookeeper: Elections','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fe4ciy26hvw2uk',1,'Admin',1672319423,'192.168.64.1',2,15,32993,NULL,'Zookeeper: Bytes received per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ff4ciy04dv7a6p',1,'Admin',1672319423,'192.168.64.1',2,15,32994,NULL,'Zookeeper: Snapshot write time, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fg4ciyh73d3xvk',1,'Admin',1672319423,'192.168.64.1',2,15,32995,NULL,'Zookeeper: Latency, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fh4ciyidz4yq6x',1,'Admin',1672319423,'192.168.64.1',2,15,32996,NULL,'Zookeeper: Fsync time, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fi4ciy4couosg6',1,'Admin',1672319423,'192.168.64.1',2,15,32997,NULL,'Zookeeper: Znode count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fj4ciyy1s4hezo',1,'Admin',1672319423,'192.168.64.1',2,15,33018,NULL,'Zabbix proxy: Utilization of availability manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fk4ciy4z5i5ljf',1,'Admin',1672319423,'192.168.64.1',2,15,33019,NULL,'Zabbix proxy: Utilization of history poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fl4ciyw6ziph1s',1,'Admin',1672319423,'192.168.64.1',2,15,33020,NULL,'Zabbix server: Trend function cache, % unique requests','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fm4ciyc2fl5b4m',1,'Admin',1672319423,'192.168.64.1',2,15,33021,NULL,'Zabbix server: Trend function cache, % misses','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fn4ciym33vvytk',1,'Admin',1672319423,'192.168.64.1',2,15,33022,NULL,'Zabbix server: Utilization of availability manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fo4ciylisa3lws',1,'Admin',1672319423,'192.168.64.1',2,15,33023,NULL,'Zabbix server: Utilization of history poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fp4ciyim96am65',1,'Admin',1672319423,'192.168.64.1',2,15,34316,NULL,'Zabbix server: Utilization of report writer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fq4ciykx6dhucv',1,'Admin',1672319423,'192.168.64.1',2,15,34317,NULL,'Zabbix server: Utilization of report manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fr4ciysvu6iiys',1,'Admin',1672319423,'192.168.64.1',2,15,35272,NULL,'Zabbix server: Utilization of trigger housekeeper internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fs4ciysdecwm30',1,'Admin',1672319423,'192.168.64.1',2,15,35273,NULL,'Zabbix server: Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ft4ciya8x0nc01',1,'Admin',1672319423,'192.168.64.1',2,15,35274,NULL,'Zabbix server: Utilization of service manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fu4ciy1q3lsajx',1,'Admin',1672319423,'192.168.64.1',2,15,35532,NULL,'ZYXEL AAM1212-51 / IES-612: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fv4ciyy1o2zvq0',1,'Admin',1672319423,'192.168.64.1',2,15,35533,NULL,'ZYXEL AAM1212-51 / IES-612: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fw4ciy6wvn0v85',1,'Admin',1672319423,'192.168.64.1',2,15,35534,NULL,'ZYXEL AAM1212-51 / IES-612: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fx4ciyux9or8bk',1,'Admin',1672319423,'192.168.64.1',2,15,35535,NULL,'ZYXEL AAM1212-51 / IES-612: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fy4ciy2j3trlks',1,'Admin',1672319423,'192.168.64.1',2,15,35536,NULL,'ZYXEL AAM1212-51 / IES-612: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fz4ciyl0r6xp0t',1,'Admin',1672319423,'192.168.64.1',2,15,35537,NULL,'ZYXEL AAM1212-51 / IES-612: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g04ciymh31a9n9',1,'Admin',1672319423,'192.168.64.1',2,15,35538,NULL,'ZYXEL AAM1212-51 / IES-612: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g14ciylvfmb1cg',1,'Admin',1672319423,'192.168.64.1',2,15,35539,NULL,'ZYXEL AAM1212-51 / IES-612: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g24ciy411dqgc5',1,'Admin',1672319423,'192.168.64.1',2,15,35540,NULL,'ZYXEL AAM1212-51 / IES-612: Alarm status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g34ciyf9yuim1j',1,'Admin',1672319423,'192.168.64.1',2,15,35541,NULL,'ZYXEL AAM1212-51 / IES-612: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g44ciyjle6hy7k',1,'Admin',1672319423,'192.168.64.1',2,15,35564,NULL,'ZYXEL ES3500-8PD: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g54ciykezcoidf',1,'Admin',1672319423,'192.168.64.1',2,15,35565,NULL,'ZYXEL ES3500-8PD: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g64ciykwnor692',1,'Admin',1672319423,'192.168.64.1',2,15,35566,NULL,'ZYXEL ES3500-8PD: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g74ciyulyuppzt',1,'Admin',1672319423,'192.168.64.1',2,15,35567,NULL,'ZYXEL ES3500-8PD: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g84ciynz0bqe6t',1,'Admin',1672319423,'192.168.64.1',2,15,35568,NULL,'ZYXEL ES3500-8PD: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g94ciy6bw613ux',1,'Admin',1672319423,'192.168.64.1',2,15,35569,NULL,'ZYXEL ES3500-8PD: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ga4ciy37rrezn2',1,'Admin',1672319423,'192.168.64.1',2,15,35570,NULL,'ZYXEL ES3500-8PD: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gb4ciyxgdura6f',1,'Admin',1672319423,'192.168.64.1',2,15,35571,NULL,'ZYXEL ES3500-8PD: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gc4ciyqjx0r4pu',1,'Admin',1672319423,'192.168.64.1',2,15,35572,NULL,'ZYXEL ES3500-8PD: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gd4ciy4d6pmbzi',1,'Admin',1672319423,'192.168.64.1',2,15,35573,NULL,'ZYXEL ES3500-8PD: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ge4ciym6tigz8z',1,'Admin',1672319423,'192.168.64.1',2,15,35608,NULL,'ZYXEL GS-4012F: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gf4ciydz5pwnvh',1,'Admin',1672319423,'192.168.64.1',2,15,35609,NULL,'ZYXEL GS-4012F: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gg4ciyeillwaq3',1,'Admin',1672319423,'192.168.64.1',2,15,35610,NULL,'ZYXEL GS-4012F: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gh4ciyzs2y34o1',1,'Admin',1672319423,'192.168.64.1',2,15,35611,NULL,'ZYXEL GS-4012F: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gi4ciykqwo2g3r',1,'Admin',1672319423,'192.168.64.1',2,15,35612,NULL,'ZYXEL GS-4012F: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gj4ciyume3wh5h',1,'Admin',1672319423,'192.168.64.1',2,15,35613,NULL,'ZYXEL GS-4012F: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gk4ciy9blj1jw7',1,'Admin',1672319423,'192.168.64.1',2,15,35614,NULL,'ZYXEL GS-4012F: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gl4ciyt23vj0zq',1,'Admin',1672319423,'192.168.64.1',2,15,35615,NULL,'ZYXEL GS-4012F: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gm4ciyny9bunxp',1,'Admin',1672319423,'192.168.64.1',2,15,35616,NULL,'ZYXEL GS-4012F: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gn4ciyj8663t7v',1,'Admin',1672319423,'192.168.64.1',2,15,35617,NULL,'ZYXEL GS-4012F: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00go4ciy0zmkvmc8',1,'Admin',1672319423,'192.168.64.1',2,15,35642,NULL,'ZYXEL IES-500x: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gp4ciybnwhjy7h',1,'Admin',1672319423,'192.168.64.1',2,15,35643,NULL,'ZYXEL IES-500x: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gq4ciygaz8vozi',1,'Admin',1672319423,'192.168.64.1',2,15,35644,NULL,'ZYXEL IES-500x: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gr4ciyuwpu8vaw',1,'Admin',1672319423,'192.168.64.1',2,15,35645,NULL,'ZYXEL IES-500x: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gs4ciyzcmtf35u',1,'Admin',1672319423,'192.168.64.1',2,15,35646,NULL,'ZYXEL IES-500x: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gt4ciylbnt6ha1',1,'Admin',1672319423,'192.168.64.1',2,15,35647,NULL,'ZYXEL IES-500x: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gu4ciy933ktbsw',1,'Admin',1672319423,'192.168.64.1',2,15,35648,NULL,'ZYXEL IES-500x: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gv4ciy83xnkd32',1,'Admin',1672319423,'192.168.64.1',2,15,35709,NULL,'ZYXEL IES-6000: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gw4ciysnqi919p',1,'Admin',1672319423,'192.168.64.1',2,15,35710,NULL,'ZYXEL IES-6000: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gx4ciy284fkm5d',1,'Admin',1672319423,'192.168.64.1',2,15,35711,NULL,'ZYXEL IES-6000: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gy4ciy7vjd8s1e',1,'Admin',1672319423,'192.168.64.1',2,15,35712,NULL,'ZYXEL IES-6000: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gz4ciys4a7wbaz',1,'Admin',1672319423,'192.168.64.1',2,15,35713,NULL,'ZYXEL IES-6000: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h04ciyltor75b5',1,'Admin',1672319423,'192.168.64.1',2,15,35714,NULL,'ZYXEL IES-6000: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h14ciy0hwzpxss',1,'Admin',1672319423,'192.168.64.1',2,15,35715,NULL,'ZYXEL IES-6000: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h24ciyyf0fmje2',1,'Admin',1672319423,'192.168.64.1',2,15,35776,NULL,'ZYXEL IES1248-51: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h34ciyl2rev36i',1,'Admin',1672319423,'192.168.64.1',2,15,35777,NULL,'ZYXEL IES1248-51: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h44ciyqb5rqsil',1,'Admin',1672319423,'192.168.64.1',2,15,35778,NULL,'ZYXEL IES1248-51: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h54ciyg2yz583d',1,'Admin',1672319423,'192.168.64.1',2,15,35779,NULL,'ZYXEL IES1248-51: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h64ciyphijpk4n',1,'Admin',1672319423,'192.168.64.1',2,15,35780,NULL,'ZYXEL IES1248-51: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h74ciy1qronw9k',1,'Admin',1672319423,'192.168.64.1',2,15,35781,NULL,'ZYXEL IES1248-51: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h84ciy10iparjs',1,'Admin',1672319423,'192.168.64.1',2,15,35782,NULL,'ZYXEL IES1248-51: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h94ciybamiztn1',1,'Admin',1672319423,'192.168.64.1',2,15,35783,NULL,'ZYXEL IES1248-51: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ha4ciyuzgahl20',1,'Admin',1672319423,'192.168.64.1',2,15,35784,NULL,'ZYXEL IES1248-51: Alarm status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hb4ciy6eea89ub',1,'Admin',1672319423,'192.168.64.1',2,15,35785,NULL,'ZYXEL IES1248-51: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hc4ciysyf26xmx',1,'Admin',1672319423,'192.168.64.1',2,15,35810,NULL,'ZYXEL MES-3528: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hd4ciyci7q0ujf',1,'Admin',1672319423,'192.168.64.1',2,15,35811,NULL,'ZYXEL MES-3528: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00he4ciyiuu8n4iq',1,'Admin',1672319423,'192.168.64.1',2,15,35812,NULL,'ZYXEL MES-3528: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hf4ciysxq86v4x',1,'Admin',1672319423,'192.168.64.1',2,15,35813,NULL,'ZYXEL MES-3528: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hg4ciy2foja5xl',1,'Admin',1672319423,'192.168.64.1',2,15,35814,NULL,'ZYXEL MES-3528: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hh4ciy5ufkoq6d',1,'Admin',1672319423,'192.168.64.1',2,15,35815,NULL,'ZYXEL MES-3528: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hi4ciyukfli047',1,'Admin',1672319423,'192.168.64.1',2,15,35816,NULL,'ZYXEL MES-3528: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hj4ciygnk8p1st',1,'Admin',1672319423,'192.168.64.1',2,15,35817,NULL,'ZYXEL MES-3528: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hk4ciy8vz3vl7i',1,'Admin',1672319423,'192.168.64.1',2,15,35818,NULL,'ZYXEL MES-3528: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hl4ciyg7tplpe2',1,'Admin',1672319423,'192.168.64.1',2,15,35819,NULL,'ZYXEL MES-3528: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hm4ciy38f50p08',1,'Admin',1672319423,'192.168.64.1',2,15,35848,NULL,'ZYXEL MES3500-10: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hn4ciye9ikj1j4',1,'Admin',1672319423,'192.168.64.1',2,15,35849,NULL,'ZYXEL MES3500-10: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ho4ciy4dcu2frn',1,'Admin',1672319423,'192.168.64.1',2,15,35850,NULL,'ZYXEL MES3500-10: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hp4ciymku7g1ev',1,'Admin',1672319423,'192.168.64.1',2,15,35851,NULL,'ZYXEL MES3500-10: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hq4ciy8xglm3va',1,'Admin',1672319423,'192.168.64.1',2,15,35852,NULL,'ZYXEL MES3500-10: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hr4ciyoffnwcd7',1,'Admin',1672319423,'192.168.64.1',2,15,35853,NULL,'ZYXEL MES3500-10: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hs4ciyiq3k099i',1,'Admin',1672319423,'192.168.64.1',2,15,35854,NULL,'ZYXEL MES3500-10: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ht4ciymyco13ra',1,'Admin',1672319423,'192.168.64.1',2,15,35855,NULL,'ZYXEL MES3500-10: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hu4ciy8p0iuoxj',1,'Admin',1672319423,'192.168.64.1',2,15,35856,NULL,'ZYXEL MES3500-10: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hv4ciy6d1gn4px',1,'Admin',1672319423,'192.168.64.1',2,15,35857,NULL,'ZYXEL MES3500-10: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hw4ciyww0ua954',1,'Admin',1672319423,'192.168.64.1',2,15,35892,NULL,'ZYXEL MES3500-24: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hx4ciywvf4jqf3',1,'Admin',1672319423,'192.168.64.1',2,15,35893,NULL,'ZYXEL MES3500-24: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hy4ciysn8xuddg',1,'Admin',1672319423,'192.168.64.1',2,15,35894,NULL,'ZYXEL MES3500-24: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hz4ciyli9orntk',1,'Admin',1672319423,'192.168.64.1',2,15,35895,NULL,'ZYXEL MES3500-24: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i04ciyhxmhd5dn',1,'Admin',1672319423,'192.168.64.1',2,15,35896,NULL,'ZYXEL MES3500-24: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i14ciyxcckt9cl',1,'Admin',1672319423,'192.168.64.1',2,15,35897,NULL,'ZYXEL MES3500-24: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i24ciyhsug7obm',1,'Admin',1672319423,'192.168.64.1',2,15,35898,NULL,'ZYXEL MES3500-24: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i34ciys2qu1a8m',1,'Admin',1672319423,'192.168.64.1',2,15,35899,NULL,'ZYXEL MES3500-24: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i44ciy4xn6wnm8',1,'Admin',1672319423,'192.168.64.1',2,15,35900,NULL,'ZYXEL MES3500-24: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i54ciy4mlif5n5',1,'Admin',1672319423,'192.168.64.1',2,15,35901,NULL,'ZYXEL MES3500-24: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i64ciyns7cjp8k',1,'Admin',1672319423,'192.168.64.1',2,15,35936,NULL,'ZYXEL MGS-3712: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i74ciyt666on2l',1,'Admin',1672319423,'192.168.64.1',2,15,35937,NULL,'ZYXEL MGS-3712: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i84ciyp2ugwc96',1,'Admin',1672319423,'192.168.64.1',2,15,35938,NULL,'ZYXEL MGS-3712: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i94ciyc632srbo',1,'Admin',1672319423,'192.168.64.1',2,15,35939,NULL,'ZYXEL MGS-3712: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ia4ciylm3m1268',1,'Admin',1672319423,'192.168.64.1',2,15,35940,NULL,'ZYXEL MGS-3712: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ib4ciy41som7dt',1,'Admin',1672319423,'192.168.64.1',2,15,35941,NULL,'ZYXEL MGS-3712: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ic4ciy5p9bs93p',1,'Admin',1672319423,'192.168.64.1',2,15,35942,NULL,'ZYXEL MGS-3712: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00id4ciyw7zfmjtd',1,'Admin',1672319423,'192.168.64.1',2,15,35943,NULL,'ZYXEL MGS-3712: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ie4ciy3rvt4rmx',1,'Admin',1672319423,'192.168.64.1',2,15,35944,NULL,'ZYXEL MGS-3712: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00if4ciyn1un94zp',1,'Admin',1672319423,'192.168.64.1',2,15,35945,NULL,'ZYXEL MGS-3712: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ig4ciyes38ltbc',1,'Admin',1672319423,'192.168.64.1',2,15,35980,NULL,'ZYXEL MGS-3712F: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ih4ciy2fqndmho',1,'Admin',1672319423,'192.168.64.1',2,15,35981,NULL,'ZYXEL MGS-3712F: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ii4ciyl3s5vq73',1,'Admin',1672319423,'192.168.64.1',2,15,35982,NULL,'ZYXEL MGS-3712F: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ij4ciywgvcig1i',1,'Admin',1672319423,'192.168.64.1',2,15,35983,NULL,'ZYXEL MGS-3712F: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ik4ciyaf5nvhnk',1,'Admin',1672319423,'192.168.64.1',2,15,35984,NULL,'ZYXEL MGS-3712F: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00il4ciyft5s2son',1,'Admin',1672319423,'192.168.64.1',2,15,35985,NULL,'ZYXEL MGS-3712F: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00im4ciyod4vj5zz',1,'Admin',1672319423,'192.168.64.1',2,15,35986,NULL,'ZYXEL MGS-3712F: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00in4ciyeql66owi',1,'Admin',1672319423,'192.168.64.1',2,15,35987,NULL,'ZYXEL MGS-3712F: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00io4ciy6zkljgkz',1,'Admin',1672319423,'192.168.64.1',2,15,35988,NULL,'ZYXEL MGS-3712F: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ip4ciyv4m082gp',1,'Admin',1672319423,'192.168.64.1',2,15,35989,NULL,'ZYXEL MGS-3712F: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iq4ciyh9wcr12h',1,'Admin',1672319423,'192.168.64.1',2,15,36024,NULL,'ZYXEL MES3500-24S: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ir4ciyffk54x70',1,'Admin',1672319423,'192.168.64.1',2,15,36025,NULL,'ZYXEL MES3500-24S: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00is4ciy2rvhc6r0',1,'Admin',1672319423,'192.168.64.1',2,15,36026,NULL,'ZYXEL MES3500-24S: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00it4ciy8qpahayn',1,'Admin',1672319423,'192.168.64.1',2,15,36027,NULL,'ZYXEL MES3500-24S: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iu4ciygdrnad43',1,'Admin',1672319423,'192.168.64.1',2,15,36028,NULL,'ZYXEL MES3500-24S: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iv4ciy0gkhpql8',1,'Admin',1672319423,'192.168.64.1',2,15,36029,NULL,'ZYXEL MES3500-24S: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iw4ciynns9m8vx',1,'Admin',1672319423,'192.168.64.1',2,15,36030,NULL,'ZYXEL MES3500-24S: Memory utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ix4ciyt6n6u6f4',1,'Admin',1672319423,'192.168.64.1',2,15,36031,NULL,'ZYXEL MES3500-24S: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iy4ciy31inc9bo',1,'Admin',1672319423,'192.168.64.1',2,15,36032,NULL,'ZYXEL MES3500-24S: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iz4ciy6a7e2mke',1,'Admin',1672319423,'192.168.64.1',2,15,36033,NULL,'ZYXEL MES3500-24S: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j04ciygdwomyh0',1,'Admin',1672319423,'192.168.64.1',2,15,36034,NULL,'ZYXEL ES3500-8PD: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j14ciygk8bjip6',1,'Admin',1672319423,'192.168.64.1',2,15,36069,NULL,'ZYXEL MGS3520-28x: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j24ciygb7ptbes',1,'Admin',1672319423,'192.168.64.1',2,15,36070,NULL,'ZYXEL MGS3520-28x: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j34ciywjeeq2qq',1,'Admin',1672319423,'192.168.64.1',2,15,36071,NULL,'ZYXEL MGS3520-28x: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j44ciyflomq4ks',1,'Admin',1672319423,'192.168.64.1',2,15,36072,NULL,'ZYXEL MGS3520-28x: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j54ciyy19aburx',1,'Admin',1672319423,'192.168.64.1',2,15,36073,NULL,'ZYXEL MGS3520-28x: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j64ciyyzrwv2g3',1,'Admin',1672319423,'192.168.64.1',2,15,36074,NULL,'ZYXEL MGS3520-28x: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j74ciy4zlu5myo',1,'Admin',1672319423,'192.168.64.1',2,15,36075,NULL,'ZYXEL MGS3520-28x: Memory utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j84ciy6m24r0mm',1,'Admin',1672319423,'192.168.64.1',2,15,36076,NULL,'ZYXEL MGS3520-28x: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j94ciyo16exc3l',1,'Admin',1672319423,'192.168.64.1',2,15,36077,NULL,'ZYXEL MGS3520-28x: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ja4ciywshi6r0i',1,'Admin',1672319423,'192.168.64.1',2,15,36078,NULL,'ZYXEL MGS3520-28x: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jb4ciy3pq6d66f',1,'Admin',1672319423,'192.168.64.1',2,15,36079,NULL,'ZYXEL MGS3520-28x: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jc4ciy0ev9q7r0',1,'Admin',1672319423,'192.168.64.1',2,15,36114,NULL,'ZYXEL XGS-4728F: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jd4ciy07yeault',1,'Admin',1672319423,'192.168.64.1',2,15,36115,NULL,'ZYXEL XGS-4728F: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00je4ciy0wke80jc',1,'Admin',1672319423,'192.168.64.1',2,15,36116,NULL,'ZYXEL XGS-4728F: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jf4ciyuwhc42gs',1,'Admin',1672319423,'192.168.64.1',2,15,36117,NULL,'ZYXEL XGS-4728F: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jg4ciy22lt2cjy',1,'Admin',1672319423,'192.168.64.1',2,15,36118,NULL,'ZYXEL XGS-4728F: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jh4ciy2ucgtwq7',1,'Admin',1672319423,'192.168.64.1',2,15,36119,NULL,'ZYXEL XGS-4728F: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ji4ciyqaupe22u',1,'Admin',1672319423,'192.168.64.1',2,15,36120,NULL,'ZYXEL XGS-4728F: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jj4ciyn2eipof5',1,'Admin',1672319423,'192.168.64.1',2,15,36121,NULL,'ZYXEL XGS-4728F: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jk4ciyx073x158',1,'Admin',1672319423,'192.168.64.1',2,15,36122,NULL,'ZYXEL XGS-4728F: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jl4ciyo0nj41cc',1,'Admin',1672319423,'192.168.64.1',2,15,36123,NULL,'ZYXEL XGS-4728F: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jm4ciyc8ggpvr0',1,'Admin',1672319423,'192.168.64.1',2,15,39804,NULL,'Zabbix stats cluster','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jn4ciy2vniqgfw',1,'Admin',1672319423,'192.168.64.1',2,15,39822,NULL,'Zabbix server: Utilization of ODBC poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jo4ciyok9wxawx',1,'Admin',1672319423,'192.168.64.1',2,15,39826,NULL,'Zabbix proxy: Utilization of ODBC poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jp4ciyewja93k3',1,'Admin',1672319423,'192.168.64.1',2,15,40181,NULL,'Zabbix proxy: Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jq4ciyntszygum',1,'Admin',1672319423,'192.168.64.1',2,15,40182,NULL,'Zabbix proxy: Values waiting to be sent','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jr4ciyu0xncq8o',1,'Admin',1672319423,'192.168.64.1',2,15,40183,NULL,'Zabbix proxy: Required performance','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00js4ciyz1u570dx',1,'Admin',1672319423,'192.168.64.1',2,15,40184,NULL,'Zabbix proxy: Uptime','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jt4ciylp6h31pp',1,'Admin',1672319423,'192.168.64.1',2,15,43173,NULL,'Active agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ju4ciyht11k2dj',1,'Admin',1672319423,'192.168.64.1',2,15,43860,NULL,'ZYXEL AAM1212-51 / IES-612: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jv4ciy5dr5riir',1,'Admin',1672319423,'192.168.64.1',2,15,43861,NULL,'ZYXEL ES3500-8PD: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jw4ciyc79hqyvi',1,'Admin',1672319423,'192.168.64.1',2,15,43862,NULL,'ZYXEL GS-4012F: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jx4ciyhuk3p1i2',1,'Admin',1672319423,'192.168.64.1',2,15,43863,NULL,'ZYXEL IES-500x: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jy4ciybbzcv8zz',1,'Admin',1672319423,'192.168.64.1',2,15,43864,NULL,'ZYXEL IES-6000: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jz4ciy0l8ktal0',1,'Admin',1672319423,'192.168.64.1',2,15,43865,NULL,'ZYXEL IES1248-51: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k04ciyqiwey3er',1,'Admin',1672319423,'192.168.64.1',2,15,43866,NULL,'ZYXEL MES-3528: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k14ciyh9g1lvld',1,'Admin',1672319423,'192.168.64.1',2,15,43867,NULL,'ZYXEL MES3500-10: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k24ciyxai80i7e',1,'Admin',1672319423,'192.168.64.1',2,15,43868,NULL,'ZYXEL MES3500-24: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k34ciypwvntdta',1,'Admin',1672319423,'192.168.64.1',2,15,43869,NULL,'ZYXEL MGS-3712: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k44ciyyrvk038u',1,'Admin',1672319423,'192.168.64.1',2,15,43870,NULL,'ZYXEL MGS-3712F: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k54ciycig7h51u',1,'Admin',1672319423,'192.168.64.1',2,15,43871,NULL,'ZYXEL ES3500-8PD: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k64ciykrf4q5wd',1,'Admin',1672319423,'192.168.64.1',2,15,43872,NULL,'ZYXEL MGS3520-28x: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k74ciyuw2nzwnc',1,'Admin',1672319423,'192.168.64.1',2,15,43873,NULL,'ZYXEL XGS-4728F: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k84ciy5e9ai35e',1,'Admin',1672319423,'192.168.64.1',2,15,44055,NULL,'Zabbix stats proxy','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00k94ciyx5fhuhik',1,'Admin',1672319423,'192.168.64.1',2,30,10047,NULL,'Zabbix server health','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ka4ciykpz3wdkq',1,'Admin',1672319423,'192.168.64.1',2,30,10048,NULL,'Zabbix proxy health','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kb4ciy76gqic5z',1,'Admin',1672319423,'192.168.64.1',2,30,10050,NULL,'Zabbix agent','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kc4ciytt8tr7rh',1,'Admin',1672319423,'192.168.64.1',2,30,10292,NULL,'Zabbix agent active','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kd4ciyp82f2tr1',1,'Admin',1672319423,'192.168.64.1',2,30,10350,NULL,'Windows services by Zabbix agent active','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ke4ciyu4ymrkp0',1,'Admin',1672319423,'192.168.64.1',2,30,10369,NULL,'Zookeeper by HTTP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kf4ciymbf57iz0',1,'Admin',1672319423,'192.168.64.1',2,30,10420,NULL,'ZYXEL AAM1212-51 IES-612 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kg4ciyiczdiuqn',1,'Admin',1672319423,'192.168.64.1',2,30,10421,NULL,'ZYXEL ES3500-8PD by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kh4ciyarp0vtvg',1,'Admin',1672319423,'192.168.64.1',2,30,10422,NULL,'ZYXEL GS-4012F by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ki4ciyatywm819',1,'Admin',1672319423,'192.168.64.1',2,30,10423,NULL,'ZYXEL IES-500x by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kj4ciytooeran3',1,'Admin',1672319423,'192.168.64.1',2,30,10424,NULL,'ZYXEL IES-6000 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kk4ciy697indat',1,'Admin',1672319423,'192.168.64.1',2,30,10425,NULL,'ZYXEL IES1248-51 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kl4ciycjna0t4s',1,'Admin',1672319423,'192.168.64.1',2,30,10426,NULL,'ZYXEL MES-3528 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00km4ciyo88mcvs7',1,'Admin',1672319423,'192.168.64.1',2,30,10427,NULL,'ZYXEL MES3500-10 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kn4ciyfh0bdcd1',1,'Admin',1672319423,'192.168.64.1',2,30,10428,NULL,'ZYXEL MES3500-24 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ko4ciyfwem0lgx',1,'Admin',1672319423,'192.168.64.1',2,30,10429,NULL,'ZYXEL MGS-3712 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kp4ciyq1zurwor',1,'Admin',1672319423,'192.168.64.1',2,30,10430,NULL,'ZYXEL MGS-3712F by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kq4ciyxejxdb5k',1,'Admin',1672319423,'192.168.64.1',2,30,10431,NULL,'ZYXEL MES3500-24S by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kr4ciyloimj289',1,'Admin',1672319423,'192.168.64.1',2,30,10432,NULL,'ZYXEL MGS3520-28x by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ks4ciybr5v3rtb',1,'Admin',1672319423,'192.168.64.1',2,30,10433,NULL,'ZYXEL XGS-4728F by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc9kj5n800014xiygeux5139',2,'guest',1672347515,'192.168.64.1',9,0,2,NULL,'','clc9kj5n800004xiyh0m828n4',''),('clc9kj67700014ciyes78orob',2,'guest',1672347516,'192.168.64.1',9,0,2,NULL,'','clc9kj67700004ciyz6u6oz3l',''),('clc9kj7bc00017kiygw9dh8o2',2,'guest',1672347517,'192.168.64.1',9,0,2,NULL,'','clc9kj7bc00007kiycovzpmtj',''),('clc9kj7dn00027kiyfibpxn7f',1,'Admin',1672347517,'192.168.64.1',8,0,1,NULL,'','clc9kj7bc00007kiycovzpmtj',''),('clc9kjfms00014ciy1uwz7y37',1,'Admin',1672347528,'192.168.64.1',0,4,1,NULL,'h','clc9kjfms00004ciypsxdhqvx',''),('clc9kjmt200017kiyinnxup6q',1,'Admin',1672347537,'192.168.64.1',0,30,2,NULL,'f','clc9kjmt200007kiyf1vb2sda','{\"template.host\":[\"add\",\"f\"],\"template.name\":[\"add\",\"f\"],\"template.groups[2]\":[\"add\"],\"template.groups[2].groupid\":[\"add\",\"1\"],\"template.groups[2].hostgroupid\":[\"add\",\"2\"],\"template.uuid\":[\"add\",\"f5f6c997fe0946a29ece8d99d6c67493\"],\"template.templateid\":[\"add\",\"2\"]}'),('clc9kjt8b00014ciykbglm86v',1,'Admin',1672347546,'192.168.64.1',0,30,3,NULL,'a','clc9kjt8a00004ciy1zcbugnh','{\"template.host\":[\"add\",\"a\"],\"template.name\":[\"add\",\"a\"],\"template.groups[3]\":[\"add\"],\"template.groups[3].groupid\":[\"add\",\"1\"],\"template.groups[3].hostgroupid\":[\"add\",\"3\"],\"template.uuid\":[\"add\",\"24aeffbfe4c7492390616c9ac6762fcd\"],\"template.templateid\":[\"add\",\"3\"]}'),('clc9kk7fg00014ciyz3vidmhi',1,'Admin',1672347564,'192.168.64.1',1,30,3,NULL,'a','clc9kk7ff00004ciyrxlrc4xs','{\"template.tags[1]\":[\"add\"],\"template.tags[2]\":[\"add\"],\"template.tags[1].tag\":[\"add\",\"a1\"],\"template.tags[1].value\":[\"add\",\"aa\"],\"template.tags[1].hosttagid\":[\"add\",\"1\"],\"template.tags[2].tag\":[\"add\",\"a2\"],\"template.tags[2].value\":[\"add\",\"aaa\"],\"template.tags[2].hosttagid\":[\"add\",\"2\"]}'),('clc9kkk9e00014xiy4fzzypig',1,'Admin',1672347581,'192.168.64.1',1,30,2,NULL,'f','clc9kkk9d00004xiyuq1lx91d','{\"template.templates[1]\":[\"add\"],\"template.tags[3]\":[\"add\"],\"template.tags[4]\":[\"add\"],\"template.templates[1].templateid\":[\"add\",\"3\"],\"template.templates[1].hosttemplateid\":[\"add\",\"1\"],\"template.tags[3].tag\":[\"add\",\"f1\"],\"template.tags[3].value\":[\"add\",\"ff\"],\"template.tags[3].hosttagid\":[\"add\",\"3\"],\"template.tags[4].tag\":[\"add\",\"f2\"],\"template.tags[4].value\":[\"add\",\"ff\"],\"template.tags[4].hosttagid\":[\"add\",\"4\"]}'),('clc9kkofi00014ciyw7h18kji',1,'Admin',1672347586,'192.168.64.1',1,30,2,NULL,'f','clc9kkofi00004ciywvelxjoq','{\"template.tags[4]\":[\"delete\"],\"template.tags[5]\":[\"add\"],\"template.tags[5].tag\":[\"add\",\"f2\"],\"template.tags[5].value\":[\"add\",\"ff2\"],\"template.tags[5].hosttagid\":[\"add\",\"5\"]}'),('clc9kmbvh00017kiyf4oao8dy',1,'Admin',1672347663,'192.168.64.1',0,15,1,NULL,'i1','clc9kmbvh00007kiy8883cmbv','{\"item.hostid\":[\"add\",\"1\"],\"item.name\":[\"add\",\"i1\"],\"item.key_\":[\"add\",\"agent.ping\"],\"item.value_type\":[\"add\",\"3\"],\"item.interfaceid\":[\"add\",\"1\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"1\"]}'),('clc9knq0600014xiy63t1auto',1,'Admin',1672347728,'192.168.64.1',0,13,23095,NULL,'t','clc9knq0600004xiy50g6j3lj',''),('clc9ko7e300017kiy9vum1up4',1,'Admin',1672347751,'192.168.64.1',1,13,23095,NULL,'t','clc9ko7e300007kiyrtab6bq6','{\"trigger.expression\":[\"update\",\"last(\\/h\\/agent.ping)<>0\",\"last(\\/h\\/agent.ping)=0\"]}'),('clca6rxkc00014ciyi6632qfo',1,'Admin',1672384876,'192.168.64.1',0,15,2,NULL,'e','clca6rxkc00004ciy9tgl4jw8','{\"item.hostid\":[\"add\",\"3\"],\"item.name\":[\"add\",\"e\"],\"item.key_\":[\"add\",\"agent.variant\"],\"item.value_type\":[\"add\",\"3\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"eacb3ab22899418bb71c52639642e604\"],\"item.itemid\":[\"add\",\"2\"]}'),('clca6rxki00024ciyiorvimk2',1,'Admin',1672384876,'192.168.64.1',0,15,3,NULL,'e','clca6rxkc00004ciy9tgl4jw8','{\"item.hostid\":[\"add\",\"2\"],\"item.templateid\":[\"add\",\"2\"],\"item.name\":[\"add\",\"e\"],\"item.key_\":[\"add\",\"agent.variant\"],\"item.value_type\":[\"add\",\"3\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"3\"]}'),('clca6rxkl00034ciyktph2azo',1,'Admin',1672384876,'192.168.64.1',0,15,4,NULL,'e','clca6rxkc00004ciy9tgl4jw8','{\"item.hostid\":[\"add\",\"1\"],\"item.templateid\":[\"add\",\"3\"],\"item.name\":[\"add\",\"e\"],\"item.key_\":[\"add\",\"agent.variant\"],\"item.value_type\":[\"add\",\"3\"],\"item.delay\":[\"add\",\"1m\"],\"item.interfaceid\":[\"add\",\"1\"],\"item.itemid\":[\"add\",\"4\"]}'),('clca75xt300014ciy11utygd4',1,'Admin',1672385530,'192.168.64.1',2,15,4,NULL,'e','clca75xt300004ciyg98wlzvf',''),('clca75xt300024ciys86sdbhy',1,'Admin',1672385530,'192.168.64.1',2,15,3,NULL,'e','clca75xt300004ciyg98wlzvf',''),('clca75xte00034ciy0mprpee6',1,'Admin',1672385530,'192.168.64.1',2,15,2,NULL,'e','clca75xt300004ciyg98wlzvf',''),('clca75xtm00044ciyisesh7pt',1,'Admin',1672385530,'192.168.64.1',2,30,2,NULL,'f','clca75xt300004ciyg98wlzvf',''),('clca75xtm00054ciym61ld0dr',1,'Admin',1672385530,'192.168.64.1',2,30,3,NULL,'a','clca75xt300004ciyg98wlzvf',''),('clca7635k00017kiyjyitcm2v',1,'Admin',1672385537,'192.168.64.1',2,15,1,NULL,'i1','clca7635k00007kiy4n0vlpuu',''),('clca7635p00027kiynchnpn07',1,'Admin',1672385537,'192.168.64.1',2,4,1,NULL,'h','clca7635k00007kiy4n0vlpuu',''),('clca76bee00014xiye9hrpqnl',1,'Admin',1672385547,'192.168.64.1',0,4,4,NULL,'h','clca76bee00004xiy9q0oq7p1',''),('clca76iwp00017kiym2yk5yhz',1,'Admin',1672385557,'192.168.64.1',0,4,5,NULL,'h2','clca76iwp00007kiyeh8zysbv',''),('clca78hl900014ciyvxt0lbyp',1,'Admin',1672385649,'192.168.64.1',0,30,6,NULL,'t1','clca78hl900004ciy3swc154g','{\"template.host\":[\"add\",\"t1\"],\"template.name\":[\"add\",\"t1\"],\"template.groups[6]\":[\"add\"],\"template.groups[6].groupid\":[\"add\",\"1\"],\"template.groups[6].hostgroupid\":[\"add\",\"6\"],\"template.uuid\":[\"add\",\"7d58d4d4ba004ccfa7d78dfd97d6c1f1\"],\"template.templateid\":[\"add\",\"6\"]}'),('clca78m9k00017kiyuoa0rlj7',1,'Admin',1672385655,'192.168.64.1',0,30,7,NULL,'t2','clca78m9k00007kiy56wziqst','{\"template.host\":[\"add\",\"t2\"],\"template.name\":[\"add\",\"t2\"],\"template.groups[7]\":[\"add\"],\"template.groups[7].groupid\":[\"add\",\"1\"],\"template.groups[7].hostgroupid\":[\"add\",\"7\"],\"template.uuid\":[\"add\",\"01ef5965ec84463fb8e7cfa5c2ecf284\"],\"template.templateid\":[\"add\",\"7\"]}'),('clca78qnq00014xiy7sgaczjm',1,'Admin',1672385660,'192.168.64.1',0,30,8,NULL,'t3','clca78qnq00004xiyak4rpsl6','{\"template.host\":[\"add\",\"t3\"],\"template.name\":[\"add\",\"t3\"],\"template.groups[8]\":[\"add\"],\"template.groups[8].groupid\":[\"add\",\"1\"],\"template.groups[8].hostgroupid\":[\"add\",\"8\"],\"template.uuid\":[\"add\",\"c13ca0808758460187e1ca282838f9a9\"],\"template.templateid\":[\"add\",\"8\"]}'),('clca78ukq00014xiyg5f78i86',1,'Admin',1672385665,'192.168.64.1',0,30,9,NULL,'t4','clca78ukq00004xiyaotnqrgm','{\"template.host\":[\"add\",\"t4\"],\"template.name\":[\"add\",\"t4\"],\"template.groups[9]\":[\"add\"],\"template.groups[9].groupid\":[\"add\",\"1\"],\"template.groups[9].hostgroupid\":[\"add\",\"9\"],\"template.uuid\":[\"add\",\"d34313cb8d7648e9b3dae4c83ab7f082\"],\"template.templateid\":[\"add\",\"9\"]}'),('clca790qe00017kiy7vnr2dqr',1,'Admin',1672385673,'192.168.64.1',0,30,10,NULL,'t5','clca790qe00007kiy79ndw70i','{\"template.host\":[\"add\",\"t5\"],\"template.name\":[\"add\",\"t5\"],\"template.groups[10]\":[\"add\"],\"template.groups[10].groupid\":[\"add\",\"1\"],\"template.groups[10].hostgroupid\":[\"add\",\"10\"],\"template.uuid\":[\"add\",\"200847e3e71e4549b74000b8d24a4b7a\"],\"template.templateid\":[\"add\",\"10\"]}'),('clca7aeio00014ciy4dzrpg66',1,'Admin',1672385738,'192.168.64.1',0,30,11,NULL,'t6','clca7aeio00004ciywa670b6c','{\"template.host\":[\"add\",\"t6\"],\"template.name\":[\"add\",\"t6\"],\"template.groups[11]\":[\"add\"],\"template.groups[11].groupid\":[\"add\",\"1\"],\"template.groups[11].hostgroupid\":[\"add\",\"11\"],\"template.uuid\":[\"add\",\"a1f09b64a1c24fb4ab4b580bbb4f7422\"],\"template.templateid\":[\"add\",\"11\"]}'),('clca7ak6500017kiy381kswhb',1,'Admin',1672385745,'192.168.64.1',0,30,12,NULL,'t7','clca7ak6500007kiyvtp68e1z','{\"template.host\":[\"add\",\"t7\"],\"template.name\":[\"add\",\"t7\"],\"template.groups[12]\":[\"add\"],\"template.groups[12].groupid\":[\"add\",\"1\"],\"template.groups[12].hostgroupid\":[\"add\",\"12\"],\"template.uuid\":[\"add\",\"9fde7b6034a9497983f30da19a249308\"],\"template.templateid\":[\"add\",\"12\"]}'),('clca7apcz00014ciy3jw4pk3w',1,'Admin',1672385752,'192.168.64.1',0,30,13,NULL,'t8','clca7apcz00004ciyxgbif05v','{\"template.host\":[\"add\",\"t8\"],\"template.name\":[\"add\",\"t8\"],\"template.groups[13]\":[\"add\"],\"template.groups[13].groupid\":[\"add\",\"1\"],\"template.groups[13].hostgroupid\":[\"add\",\"13\"],\"template.uuid\":[\"add\",\"f7cc6223463545898129a4b10eac9fdd\"],\"template.templateid\":[\"add\",\"13\"]}'),('clca7au8w00014ciydn2e77jo',1,'Admin',1672385758,'192.168.64.1',0,30,14,NULL,'t9','clca7au8w00004ciyfmg35j6i','{\"template.host\":[\"add\",\"t9\"],\"template.name\":[\"add\",\"t9\"],\"template.groups[14]\":[\"add\"],\"template.groups[14].groupid\":[\"add\",\"1\"],\"template.groups[14].hostgroupid\":[\"add\",\"14\"],\"template.uuid\":[\"add\",\"16cc006f3e8b47c4be0238ed75fc766a\"],\"template.templateid\":[\"add\",\"14\"]}'),('clca7b2k300014xiyswoclc0s',1,'Admin',1672385769,'192.168.64.1',1,30,6,NULL,'t1','clca7b2k300004xiyxwwfzzod','{\"template.templates[3]\":[\"add\"],\"template.templates[3].templateid\":[\"add\",\"9\"],\"template.templates[3].hosttemplateid\":[\"add\",\"3\"]}'),('clca7bg5900014ciyfy5hkkk2',1,'Admin',1672385787,'192.168.64.1',1,30,6,NULL,'t1','clca7bg5900004ciylyqatdni','{\"template.templates[3]\":[\"delete\"],\"template.templates[4]\":[\"add\"],\"template.templates_clear[3]\":[\"delete\"],\"template.templates[4].templateid\":[\"add\",\"10\"],\"template.templates[4].hosttemplateid\":[\"add\",\"4\"]}'),('clca7djvz00014ciydsxhrjx5',1,'Admin',1672385885,'192.168.64.1',1,30,7,NULL,'t2','clca7djvz00004ciyqgp2cy4c','{\"template.templates[5]\":[\"add\"],\"template.templates[5].templateid\":[\"add\",\"9\"],\"template.templates[5].hosttemplateid\":[\"add\",\"5\"]}'),('clca7e75t00014ciyklmtjs11',1,'Admin',1672385915,'192.168.64.1',1,30,9,NULL,'t4','clca7e75t00004ciy8s7kmzxq','{\"template.templates[6]\":[\"add\"],\"template.templates[7]\":[\"add\"],\"template.templates[6].templateid\":[\"add\",\"12\"],\"template.templates[6].hosttemplateid\":[\"add\",\"6\"],\"template.templates[7].templateid\":[\"add\",\"13\"],\"template.templates[7].hosttemplateid\":[\"add\",\"7\"]}'),('clca7ee4b00014xiydofgcuyg',1,'Admin',1672385924,'192.168.64.1',1,30,12,NULL,'t7','clca7ee4a00004xiyqwjujgrp','{\"template.templates[8]\":[\"add\"],\"template.templates[8].templateid\":[\"add\",\"14\"],\"template.templates[8].hosttemplateid\":[\"add\",\"8\"]}'),('clca7el7q00017kiy0qvfuu6s',1,'Admin',1672385933,'192.168.64.1',1,30,8,NULL,'t3','clca7el7q00007kiyicagrgni','{\"template.templates[9]\":[\"add\"],\"template.templates[9].templateid\":[\"add\",\"11\"],\"template.templates[9].hosttemplateid\":[\"add\",\"9\"]}'),('clca7ikr100014ciy0l606o11',1,'Admin',1672386119,'192.168.64.1',0,30,15,NULL,'t10','clca7ikr100004ciyqct2y9n2','{\"template.host\":[\"add\",\"t10\"],\"template.name\":[\"add\",\"t10\"],\"template.groups[15]\":[\"add\"],\"template.groups[15].groupid\":[\"add\",\"1\"],\"template.groups[15].hostgroupid\":[\"add\",\"15\"],\"template.uuid\":[\"add\",\"2b4fa2906104419b87d9f2a62be402bb\"],\"template.templateid\":[\"add\",\"15\"]}'),('clca7iwgw00017kiycif4q9hr',1,'Admin',1672386135,'192.168.64.1',1,30,7,NULL,'t2','clca7iwgw00007kiyxkla8aa8','{\"template.templates[14]\":[\"add\"],\"template.templates[14].templateid\":[\"add\",\"15\"],\"template.templates[14].hosttemplateid\":[\"add\",\"14\"]}'),('clca7l62x00014ciyf1z4m8jj',1,'Admin',1672386240,'192.168.64.1',0,15,5,NULL,'t1','clca7l62w00004ciyrt7u57d4','{\"item.hostid\":[\"add\",\"6\"],\"item.name\":[\"add\",\"t1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"dc1b4fa2709c4cc58898bb2e68295e83\"],\"item.itemid\":[\"add\",\"5\"]}'),('clca7l63000024ciyo7v3ysc0',1,'Admin',1672386240,'192.168.64.1',0,15,6,NULL,'t1','clca7l62w00004ciyrt7u57d4','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"5\"],\"item.name\":[\"add\",\"t1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"6\"]}'),('clca7ljqt00014xiyjraj2bvy',1,'Admin',1672386258,'192.168.64.1',0,15,7,NULL,'t1_2','clca7ljqt00004xiypouafjzp','{\"item.hostid\":[\"add\",\"6\"],\"item.name\":[\"add\",\"t1_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"d66aa6f8e11e42f7b0e29e941b0060dc\"],\"item.itemid\":[\"add\",\"7\"]}'),('clca7ljqx00024xiyy0wop8xd',1,'Admin',1672386258,'192.168.64.1',0,15,8,NULL,'t1_2','clca7ljqt00004xiypouafjzp','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"7\"],\"item.name\":[\"add\",\"t1_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"8\"]}'),('clca7lmwd00014ciy2k8q2kkc',1,'Admin',1672386262,'192.168.64.1',1,15,5,NULL,'t1','clca7lmwd00004ciyyuhdwskp','{\"item.name\":[\"update\",\"t1_1\",\"t1\"]}'),('clca7lmwf00024ciyzppb22k3',1,'Admin',1672386262,'192.168.64.1',1,15,6,NULL,'t1','clca7lmwd00004ciyyuhdwskp','{\"item.name\":[\"update\",\"t1_1\",\"t1\"]}'),('clca7p82f00014xiykdjqeelz',1,'Admin',1672386429,'192.168.64.1',0,15,9,NULL,'t2_1','clca7p82f00004xiykrnx9gor','{\"item.hostid\":[\"add\",\"7\"],\"item.name\":[\"add\",\"t2_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"bae2afdc1a344b209ce878c40e416926\"],\"item.itemid\":[\"add\",\"9\"]}'),('clca7p82j00024xiyth5j2n4m',1,'Admin',1672386429,'192.168.64.1',0,15,10,NULL,'t2_1','clca7p82f00004xiykrnx9gor','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"9\"],\"item.name\":[\"add\",\"t2_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"10\"]}'),('clca7p82j00034xiydvvoq54a',1,'Admin',1672386429,'192.168.64.1',0,15,11,NULL,'t2_1','clca7p82f00004xiykrnx9gor','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"9\"],\"item.name\":[\"add\",\"t2_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"11\"]}'),('clca7pesf00014ciyxgx9wb0x',1,'Admin',1672386438,'192.168.64.1',0,15,12,NULL,'t2_2','clca7pesf00004ciy5g8xz5eb','{\"item.hostid\":[\"add\",\"7\"],\"item.name\":[\"add\",\"t2_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"05731eb66c154968a70f1b6cf7466141\"],\"item.itemid\":[\"add\",\"12\"]}'),('clca7pesi00024ciy69qzwwk8',1,'Admin',1672386438,'192.168.64.1',0,15,13,NULL,'t2_2','clca7pesf00004ciy5g8xz5eb','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"12\"],\"item.name\":[\"add\",\"t2_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"13\"]}'),('clca7pesi00034ciyb4ku85ix',1,'Admin',1672386438,'192.168.64.1',0,15,14,NULL,'t2_2','clca7pesf00004ciy5g8xz5eb','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"12\"],\"item.name\":[\"add\",\"t2_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"14\"]}'),('clca7plzl00014ciyxuxdf5f9',1,'Admin',1672386448,'192.168.64.1',1,15,5,NULL,'t1_1','clca7plzl00004ciyeeg93tgo','{\"item.key_\":[\"update\",\"vfs.file.get[t1_1]\",\"vfs.file.get[t1]\"]}'),('clca7plzp00024ciyzvq447r5',1,'Admin',1672386448,'192.168.64.1',1,15,6,NULL,'t1_1','clca7plzl00004ciyeeg93tgo','{\"item.key_\":[\"update\",\"vfs.file.get[t1_1]\",\"vfs.file.get[t1]\"]}'),('clca7ptdr00014ciyhjarqr4i',1,'Admin',1672386457,'192.168.64.1',1,15,7,NULL,'t1_2','clca7ptdr00004ciylzxnxyyw','{\"item.key_\":[\"update\",\"vfs.file.get[t1_2]\",\"vfs.file.get[t2]\"]}'),('clca7ptdv00024ciyrg4b9t1k',1,'Admin',1672386457,'192.168.64.1',1,15,8,NULL,'t1_2','clca7ptdr00004ciylzxnxyyw','{\"item.key_\":[\"update\",\"vfs.file.get[t1_2]\",\"vfs.file.get[t2]\"]}'),('clca7tjsy00014ciyvwvnphp7',1,'Admin',1672386631,'192.168.64.1',0,15,15,NULL,'vfs.file.get[t3_1]','clca7tjsx00004ciywr15qsh5','{\"item.hostid\":[\"add\",\"8\"],\"item.name\":[\"add\",\"vfs.file.get[t3_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"683c4115a31f4f90b0dd7b6b1ffc74b8\"],\"item.itemid\":[\"add\",\"15\"]}'),('clca7tjt100024ciyfhupn5t7',1,'Admin',1672386631,'192.168.64.1',0,15,16,NULL,'vfs.file.get[t3_1]','clca7tjsx00004ciywr15qsh5','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"15\"],\"item.name\":[\"add\",\"vfs.file.get[t3_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"16\"]}'),('clca7tuv100014ciyhkmpkyap',1,'Admin',1672386646,'192.168.64.1',1,15,15,NULL,'vfs.file.get[t3_1]','clca7tuv000004ciy4u1y48sv','{\"item.key_\":[\"update\",\"vfs.file.get[t3_1]\",\"vfs.file.get[t3_2]\"]}'),('clca7tuv600024ciymj5ged14',1,'Admin',1672386646,'192.168.64.1',1,15,16,NULL,'vfs.file.get[t3_1]','clca7tuv000004ciy4u1y48sv','{\"item.key_\":[\"update\",\"vfs.file.get[t3_1]\",\"vfs.file.get[t3_2]\"]}'),('clca7u0fp00014xiyl913dl2d',1,'Admin',1672386653,'192.168.64.1',0,15,17,NULL,'vfs.file.get[t3_2]','clca7u0fp00004xiyjhuptx6k','{\"item.hostid\":[\"add\",\"8\"],\"item.name\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"147dd4fa591a4f938e2f96b3f97ca554\"],\"item.itemid\":[\"add\",\"17\"]}'),('clca7u0fs00024xiylxg71yay',1,'Admin',1672386653,'192.168.64.1',0,15,18,NULL,'vfs.file.get[t3_2]','clca7u0fp00004xiyjhuptx6k','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"17\"],\"item.name\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"18\"]}'),('clca7uggt00014ciyxrcqlm0a',1,'Admin',1672386674,'192.168.64.1',0,15,19,NULL,'vfs.file.get[t4_1]','clca7uggt00004ciywv9odn0x','{\"item.hostid\":[\"add\",\"9\"],\"item.name\":[\"add\",\"vfs.file.get[t4_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"5b2d1458c39b4cd9873905650d355989\"],\"item.itemid\":[\"add\",\"19\"]}'),('clca7uggy00024ciywpikax0l',1,'Admin',1672386674,'192.168.64.1',0,15,20,NULL,'vfs.file.get[t4_1]','clca7uggt00004ciywv9odn0x','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"19\"],\"item.name\":[\"add\",\"vfs.file.get[t4_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"20\"]}'),('clca7ugh100034ciyjolr5vo9',1,'Admin',1672386674,'192.168.64.1',0,15,21,NULL,'vfs.file.get[t4_1]','clca7uggt00004ciywv9odn0x','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"20\"],\"item.name\":[\"add\",\"vfs.file.get[t4_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"21\"]}'),('clca7ugh100044ciyvcqv96lh',1,'Admin',1672386674,'192.168.64.1',0,15,22,NULL,'vfs.file.get[t4_1]','clca7uggt00004ciywv9odn0x','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"20\"],\"item.name\":[\"add\",\"vfs.file.get[t4_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"22\"]}'),('clca7ukp500014xiyd2rfy431',1,'Admin',1672386679,'192.168.64.1',1,15,19,NULL,'vfs.file.get[t4_1]','clca7ukp500004xiy0vyuclmo','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t4_2]\"]}'),('clca7ukp900024xiygjhsji0b',1,'Admin',1672386679,'192.168.64.1',1,15,20,NULL,'vfs.file.get[t4_1]','clca7ukp500004xiy0vyuclmo','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t4_2]\"]}'),('clca7ukpd00034xiym0gffii7',1,'Admin',1672386679,'192.168.64.1',1,15,21,NULL,'vfs.file.get[t4_1]','clca7ukp500004xiy0vyuclmo','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t4_2]\"]}'),('clca7ukpd00044xiy83o7ivsm',1,'Admin',1672386679,'192.168.64.1',1,15,22,NULL,'vfs.file.get[t4_1]','clca7ukp500004xiy0vyuclmo','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t4_2]\"]}'),('clca7uqjh00014xiyaby7bexo',1,'Admin',1672386687,'192.168.64.1',0,15,23,NULL,'vfs.file.get[t4_2]','clca7uqjh00004xiy6sipm6lu','{\"item.hostid\":[\"add\",\"9\"],\"item.name\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"b2e3ae435e974aebacfa7ba266f43f6e\"],\"item.itemid\":[\"add\",\"23\"]}'),('clca7uqji00024xiysro2uyih',1,'Admin',1672386687,'192.168.64.1',0,15,24,NULL,'vfs.file.get[t4_2]','clca7uqjh00004xiy6sipm6lu','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"23\"],\"item.name\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"24\"]}'),('clca7uqjl00034xiyeuohzhq1',1,'Admin',1672386687,'192.168.64.1',0,15,25,NULL,'vfs.file.get[t4_2]','clca7uqjh00004xiy6sipm6lu','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"24\"],\"item.name\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"25\"]}'),('clca7uqjl00044xiy4dm3q9tq',1,'Admin',1672386687,'192.168.64.1',0,15,26,NULL,'vfs.file.get[t4_2]','clca7uqjh00004xiy6sipm6lu','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"24\"],\"item.name\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"26\"]}'),('clca7v4it00014ciy5o3v4ypm',1,'Admin',1672386705,'192.168.64.1',0,15,27,NULL,'vfs.file.get[t5_1]','clca7v4it00004ciy1s9kmp2s','{\"item.hostid\":[\"add\",\"10\"],\"item.name\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"e284da7c4e6b4626bd15c87e40f633f4\"],\"item.itemid\":[\"add\",\"27\"]}'),('clca7v4iv00024ciyx7i10nly',1,'Admin',1672386705,'192.168.64.1',0,15,28,NULL,'vfs.file.get[t5_1]','clca7v4it00004ciy1s9kmp2s','{\"item.hostid\":[\"add\",\"6\"],\"item.templateid\":[\"add\",\"27\"],\"item.name\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"28\"]}'),('clca7v4ix00034ciywkphospi',1,'Admin',1672386705,'192.168.64.1',0,15,29,NULL,'vfs.file.get[t5_1]','clca7v4it00004ciy1s9kmp2s','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"28\"],\"item.name\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"29\"]}'),('clca7vb7900014xiyc9b7cvml',1,'Admin',1672386713,'192.168.64.1',0,15,30,NULL,'vfs.file.get[t5_2]','clca7vb7900004xiyawxsriki','{\"item.hostid\":[\"add\",\"10\"],\"item.name\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"8ce0e55cd88b4439915f335eab6a8058\"],\"item.itemid\":[\"add\",\"30\"]}'),('clca7vb7d00024xiyijly5xvq',1,'Admin',1672386713,'192.168.64.1',0,15,31,NULL,'vfs.file.get[t5_2]','clca7vb7900004xiyawxsriki','{\"item.hostid\":[\"add\",\"6\"],\"item.templateid\":[\"add\",\"30\"],\"item.name\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"31\"]}'),('clca7vb7g00034xiyvun003jc',1,'Admin',1672386713,'192.168.64.1',0,15,32,NULL,'vfs.file.get[t5_2]','clca7vb7900004xiyawxsriki','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"31\"],\"item.name\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"32\"]}'),('clca7ymbu00014xiy4l6uixmv',1,'Admin',1672386868,'192.168.64.1',0,15,33,NULL,'t6_1','clca7ymbu00004xiykxm8yr89','{\"item.hostid\":[\"add\",\"11\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"61af20104ed542c7901760a38cb6c1ec\"],\"item.itemid\":[\"add\",\"33\"]}'),('clca7ymbw00024xiyre3uoupc',1,'Admin',1672386868,'192.168.64.1',0,15,34,NULL,'t6_1','clca7ymbu00004xiykxm8yr89','{\"item.hostid\":[\"add\",\"8\"],\"item.templateid\":[\"add\",\"33\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"34\"]}'),('clca7ymby00034xiyumt2anu7',1,'Admin',1672386868,'192.168.64.1',0,15,35,NULL,'t6_1','clca7ymbu00004xiykxm8yr89','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"34\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"35\"]}'),('clca7yt7g00014ciyajifrgx6',1,'Admin',1672386877,'192.168.64.1',0,15,36,NULL,'t6_2','clca7yt7g00004ciyfoqau102','{\"item.hostid\":[\"add\",\"11\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"27bd0c280e3b4b81b2134b758997b648\"],\"item.itemid\":[\"add\",\"36\"]}'),('clca7yt7i00024ciy35bvm50f',1,'Admin',1672386877,'192.168.64.1',0,15,37,NULL,'t6_2','clca7yt7g00004ciyfoqau102','{\"item.hostid\":[\"add\",\"8\"],\"item.templateid\":[\"add\",\"36\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"37\"]}'),('clca7yt7l00034ciyrz7agq24',1,'Admin',1672386877,'192.168.64.1',0,15,38,NULL,'t6_2','clca7yt7g00004ciyfoqau102','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"37\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"38\"]}'),('clca7z3ip00014xiyxykzwyyf',1,'Admin',1672386890,'192.168.64.1',1,15,27,NULL,'vfs.file.get[t5_1]','clca7z3ip00004xiyizrmj8sa','{\"item.name\":[\"update\",\"t5_1\",\"vfs.file.get[t5_1]\"]}'),('clca7z3it00024xiyakb8adtf',1,'Admin',1672386890,'192.168.64.1',1,15,28,NULL,'vfs.file.get[t5_1]','clca7z3ip00004xiyizrmj8sa','{\"item.name\":[\"update\",\"t5_1\",\"vfs.file.get[t5_1]\"]}'),('clca7z3iy00034xiyar4xo95p',1,'Admin',1672386890,'192.168.64.1',1,15,29,NULL,'vfs.file.get[t5_1]','clca7z3ip00004xiyizrmj8sa','{\"item.name\":[\"update\",\"t5_1\",\"vfs.file.get[t5_1]\"]}'),('clca7z9y000014xiyvv90qhsr',1,'Admin',1672386898,'192.168.64.1',1,15,30,NULL,'vfs.file.get[t5_2]','clca7z9y000004xiy74k9fy1d','{\"item.name\":[\"update\",\"t5_2\",\"vfs.file.get[t5_2]\"]}'),('clca7z9y200024xiyxix090vi',1,'Admin',1672386898,'192.168.64.1',1,15,31,NULL,'vfs.file.get[t5_2]','clca7z9y000004xiy74k9fy1d','{\"item.name\":[\"update\",\"t5_2\",\"vfs.file.get[t5_2]\"]}'),('clca7z9y500034xiy9rz1nkpp',1,'Admin',1672386898,'192.168.64.1',1,15,32,NULL,'vfs.file.get[t5_2]','clca7z9y000004xiy74k9fy1d','{\"item.name\":[\"update\",\"t5_2\",\"vfs.file.get[t5_2]\"]}'),('clca7zm4q00014ciy2fsst6h0',1,'Admin',1672386914,'192.168.64.1',1,15,19,NULL,'vfs.file.get[t4_1]','clca7zm4q00004ciy2qxsqsw5','{\"item.name\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"],\"item.key_\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"]}'),('clca7zm4t00024ciyrl9h59jp',1,'Admin',1672386914,'192.168.64.1',1,15,20,NULL,'vfs.file.get[t4_1]','clca7zm4q00004ciy2qxsqsw5','{\"item.name\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"],\"item.key_\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"]}'),('clca7zm4x00034ciyflb7t2rq',1,'Admin',1672386914,'192.168.64.1',1,15,21,NULL,'vfs.file.get[t4_1]','clca7zm4q00004ciy2qxsqsw5','{\"item.name\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"],\"item.key_\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"]}'),('clca7zm4x00044ciy2iryx9u0',1,'Admin',1672386914,'192.168.64.1',1,15,22,NULL,'vfs.file.get[t4_1]','clca7zm4q00004ciy2qxsqsw5','{\"item.name\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"],\"item.key_\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"]}'),('clca7zrgy00014xiyqk76ayau',1,'Admin',1672386921,'192.168.64.1',1,15,23,NULL,'vfs.file.get[t4_2]','clca7zrgx00004xiy15mq1rn4','{\"item.name\":[\"update\",\"t4_2\",\"vfs.file.get[t4_2]\"]}'),('clca7zrh100024xiygvovz3mu',1,'Admin',1672386921,'192.168.64.1',1,15,24,NULL,'vfs.file.get[t4_2]','clca7zrgx00004xiy15mq1rn4','{\"item.name\":[\"update\",\"t4_2\",\"vfs.file.get[t4_2]\"]}'),('clca7zrh500034xiy32o2v35f',1,'Admin',1672386921,'192.168.64.1',1,15,25,NULL,'vfs.file.get[t4_2]','clca7zrgx00004xiy15mq1rn4','{\"item.name\":[\"update\",\"t4_2\",\"vfs.file.get[t4_2]\"]}'),('clca7zrh500044xiyle2d3j5g',1,'Admin',1672386921,'192.168.64.1',1,15,26,NULL,'vfs.file.get[t4_2]','clca7zrgx00004xiy15mq1rn4','{\"item.name\":[\"update\",\"t4_2\",\"vfs.file.get[t4_2]\"]}'),('clca7zzft00017kiy1ga1syaq',1,'Admin',1672386932,'192.168.64.1',1,15,15,NULL,'vfs.file.get[t3_1]','clca7zzft00007kiypxqal33a','{\"item.name\":[\"update\",\"t3_1\",\"vfs.file.get[t3_1]\"]}'),('clca7zzfv00027kiynkbh9qrr',1,'Admin',1672386932,'192.168.64.1',1,15,16,NULL,'vfs.file.get[t3_1]','clca7zzft00007kiypxqal33a','{\"item.name\":[\"update\",\"t3_1\",\"vfs.file.get[t3_1]\"]}'),('clca8041900014ciyj1ys7i5i',1,'Admin',1672386937,'192.168.64.1',1,15,17,NULL,'vfs.file.get[t3_2]','clca8041900004ciyuiel3s0y','{\"item.name\":[\"update\",\"t3_2\",\"vfs.file.get[t3_2]\"]}'),('clca8041b00024ciyd1x0kxk3',1,'Admin',1672386937,'192.168.64.1',1,15,18,NULL,'vfs.file.get[t3_2]','clca8041900004ciyuiel3s0y','{\"item.name\":[\"update\",\"t3_2\",\"vfs.file.get[t3_2]\"]}'),('clca80s8000017kiybekem0l3',1,'Admin',1672386969,'192.168.64.1',1,15,19,NULL,'t4_1','clca80s8000007kiy2vgl57cv','{\"item.key_\":[\"update\",\"vfs.file.get[t14_1]\",\"t4_1\"]}'),('clca80s8400027kiymc4iuxw9',1,'Admin',1672386969,'192.168.64.1',1,15,20,NULL,'t4_1','clca80s8000007kiy2vgl57cv','{\"item.key_\":[\"update\",\"vfs.file.get[t14_1]\",\"t4_1\"]}'),('clca80s8900037kiyjoum8hy7',1,'Admin',1672386969,'192.168.64.1',1,15,21,NULL,'t4_1','clca80s8000007kiy2vgl57cv','{\"item.key_\":[\"update\",\"vfs.file.get[t14_1]\",\"t4_1\"]}'),('clca80s8900047kiyh1wkp5nt',1,'Admin',1672386969,'192.168.64.1',1,15,22,NULL,'t4_1','clca80s8000007kiy2vgl57cv','{\"item.key_\":[\"update\",\"vfs.file.get[t14_1]\",\"t4_1\"]}'),('clca80zoa00017kiyocvo9qe8',1,'Admin',1672386978,'192.168.64.1',1,15,19,NULL,'t4_1','clca80zoa00007kiyw5mlkorr','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t14_1]\"]}'),('clca80zoc00027kiy3ceje0kz',1,'Admin',1672386978,'192.168.64.1',1,15,20,NULL,'t4_1','clca80zoa00007kiyw5mlkorr','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t14_1]\"]}'),('clca80zoe00037kiya3u49vl8',1,'Admin',1672386978,'192.168.64.1',1,15,21,NULL,'t4_1','clca80zoa00007kiyw5mlkorr','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t14_1]\"]}'),('clca80zoe00047kiyb30ry6vv',1,'Admin',1672386978,'192.168.64.1',1,15,22,NULL,'t4_1','clca80zoa00007kiyw5mlkorr','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t14_1]\"]}'),('clca81dhn00014xiybpgntne6',1,'Admin',1672386996,'192.168.64.1',1,15,33,NULL,'t6_1','clca81dhn00004xiyyzmqs59j','{\"item.key_\":[\"update\",\"vfs.file.get[t6_1]\",\"vfs.file.get[t16_1]\"]}'),('clca81dhq00024xiy1k1zsps1',1,'Admin',1672386996,'192.168.64.1',1,15,34,NULL,'t6_1','clca81dhn00004xiyyzmqs59j','{\"item.key_\":[\"update\",\"vfs.file.get[t6_1]\",\"vfs.file.get[t16_1]\"]}'),('clca81dht00034xiyk4zngt9u',1,'Admin',1672386996,'192.168.64.1',1,15,35,NULL,'t6_1','clca81dhn00004xiyyzmqs59j','{\"item.key_\":[\"update\",\"vfs.file.get[t6_1]\",\"vfs.file.get[t16_1]\"]}'),('clca81gq000017kiya0w2nkyq',1,'Admin',1672387001,'192.168.64.1',1,15,36,NULL,'t6_2','clca81gq000007kiywk29la5c','{\"item.key_\":[\"update\",\"vfs.file.get[t6_2]\",\"vfs.file.get[t16_2]\"]}'),('clca81gq300027kiyhnxzsh5b',1,'Admin',1672387001,'192.168.64.1',1,15,37,NULL,'t6_2','clca81gq000007kiywk29la5c','{\"item.key_\":[\"update\",\"vfs.file.get[t6_2]\",\"vfs.file.get[t16_2]\"]}'),('clca81gq700037kiyifrldrsb',1,'Admin',1672387001,'192.168.64.1',1,15,38,NULL,'t6_2','clca81gq000007kiywk29la5c','{\"item.key_\":[\"update\",\"vfs.file.get[t6_2]\",\"vfs.file.get[t16_2]\"]}'),('clca82d3g00014ciy9jfj4e56',1,'Admin',1672387043,'192.168.64.1',0,15,39,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"12\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"426023a408294842adbeb4c2782ef75e\"],\"item.itemid\":[\"add\",\"39\"]}'),('clca82d3i00024ciyfp9zc06p',1,'Admin',1672387043,'192.168.64.1',0,15,40,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"39\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"40\"]}'),('clca82d3l00034ciy0u9kc2y8',1,'Admin',1672387043,'192.168.64.1',0,15,41,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"40\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"41\"]}'),('clca82d3p00044ciy0blw6hrz',1,'Admin',1672387043,'192.168.64.1',0,15,42,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"41\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"42\"]}'),('clca82d3p00054ciyih5rwb8s',1,'Admin',1672387043,'192.168.64.1',0,15,43,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"41\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"43\"]}'),('clca84w1n00014xiyg3xsi6h8',1,'Admin',1672387160,'192.168.64.1',0,15,44,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"12\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"5ce4939c51604e2faf307a7435e596d9\"],\"item.itemid\":[\"add\",\"44\"]}'),('clca84w1p00024xiy4112oh4h',1,'Admin',1672387160,'192.168.64.1',0,15,45,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"44\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"45\"]}'),('clca84w1r00034xiy7i645411',1,'Admin',1672387160,'192.168.64.1',0,15,46,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"45\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"46\"]}'),('clca84w1t00044xiy1npeax1v',1,'Admin',1672387160,'192.168.64.1',0,15,47,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"46\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"47\"]}'),('clca84w1t00054xiy5nj0rlf3',1,'Admin',1672387160,'192.168.64.1',0,15,48,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"46\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"48\"]}'),('clca8598f00014xiyde06m9uv',1,'Admin',1672387177,'192.168.64.1',0,15,49,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"13\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"dc86b8b779844ea6b74aa221d9973215\"],\"item.itemid\":[\"add\",\"49\"]}'),('clca8598j00024xiyaq074en5',1,'Admin',1672387177,'192.168.64.1',0,15,50,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"49\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"50\"]}'),('clca8598l00034xiy0ecexj5u',1,'Admin',1672387177,'192.168.64.1',0,15,51,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"50\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"51\"]}'),('clca8598o00044xiy2sjf2cci',1,'Admin',1672387177,'192.168.64.1',0,15,52,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"51\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"52\"]}'),('clca8598o00054xiyb75e4ang',1,'Admin',1672387177,'192.168.64.1',0,15,53,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"51\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"53\"]}'),('clca85dss00014ciy7p0w934u',1,'Admin',1672387183,'192.168.64.1',0,15,54,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"13\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"f5a24a50be524aa0b31b33402b048824\"],\"item.itemid\":[\"add\",\"54\"]}'),('clca85dsv00024ciy8if5hh0i',1,'Admin',1672387183,'192.168.64.1',0,15,55,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"54\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"55\"]}'),('clca85dsx00034ciydcj2drds',1,'Admin',1672387183,'192.168.64.1',0,15,56,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"55\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"56\"]}'),('clca85dt200044ciysfsumw5d',1,'Admin',1672387183,'192.168.64.1',0,15,57,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"56\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"57\"]}'),('clca85dt200054ciysopnjwo6',1,'Admin',1672387183,'192.168.64.1',0,15,58,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"56\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"58\"]}'),('clca86t8m00014xiym1i9w6s4',1,'Admin',1672387250,'192.168.64.1',0,15,59,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"14\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"a425bb7f45e64ab489b11788d9aa2932\"],\"item.itemid\":[\"add\",\"59\"]}'),('clca86t8o00024xiyovrxpmw8',1,'Admin',1672387250,'192.168.64.1',0,15,60,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"12\"],\"item.templateid\":[\"add\",\"59\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"60\"]}'),('clca86t8p00034xiyo9r8chuo',1,'Admin',1672387250,'192.168.64.1',0,15,61,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"60\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"61\"]}'),('clca86t8s00044xiyzfo5h5q5',1,'Admin',1672387250,'192.168.64.1',0,15,62,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"61\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"62\"]}'),('clca86t8v00054xiy6intsjcs',1,'Admin',1672387250,'192.168.64.1',0,15,63,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"62\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"63\"]}'),('clca86t8v00064xiys9bjqjp0',1,'Admin',1672387250,'192.168.64.1',0,15,64,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"62\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"64\"]}'),('clca86yui00014ciyqoak1j4g',1,'Admin',1672387257,'192.168.64.1',0,15,65,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"14\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"e76d8c1122bc426998b38133bccd73e1\"],\"item.itemid\":[\"add\",\"65\"]}'),('clca86yuk00024ciy53bhwzcg',1,'Admin',1672387257,'192.168.64.1',0,15,66,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"12\"],\"item.templateid\":[\"add\",\"65\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"66\"]}'),('clca86yum00034ciyty86pj3p',1,'Admin',1672387257,'192.168.64.1',0,15,67,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"66\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"67\"]}'),('clca86yup00044ciydc39ln89',1,'Admin',1672387257,'192.168.64.1',0,15,68,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"67\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"68\"]}'),('clca86yur00054ciyxs41x2hp',1,'Admin',1672387257,'192.168.64.1',0,15,69,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"68\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"69\"]}'),('clca86yur00064ciytyn2a5oz',1,'Admin',1672387257,'192.168.64.1',0,15,70,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"68\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"70\"]}'),('clca88k3b00014ciydn1ygmeu',1,'Admin',1672387332,'192.168.64.1',0,15,71,NULL,'t10_1','clca88k3a00004ciy04iyxd6i','{\"item.hostid\":[\"add\",\"15\"],\"item.name\":[\"add\",\"t10_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"3c7f55a554664797b4ba4e1fb9fcd53c\"],\"item.itemid\":[\"add\",\"71\"]}'),('clca88k3c00024ciybjyh57c7',1,'Admin',1672387332,'192.168.64.1',0,15,72,NULL,'t10_1','clca88k3a00004ciy04iyxd6i','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"71\"],\"item.name\":[\"add\",\"t10_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"72\"]}'),('clca88k3f00034ciy4qdhi30u',1,'Admin',1672387332,'192.168.64.1',0,15,73,NULL,'t10_1','clca88k3a00004ciy04iyxd6i','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"72\"],\"item.name\":[\"add\",\"t10_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"73\"]}'),('clca88k3f00044ciyp6sar4l2',1,'Admin',1672387332,'192.168.64.1',0,15,74,NULL,'t10_1','clca88k3a00004ciy04iyxd6i','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"72\"],\"item.name\":[\"add\",\"t10_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"74\"]}'),('clca88pwh00014ciygk3g30yw',1,'Admin',1672387339,'192.168.64.1',0,15,75,NULL,'t10_2','clca88pwg00004ciygof2yrv1','{\"item.hostid\":[\"add\",\"15\"],\"item.name\":[\"add\",\"t10_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"2ac606b4204d4cad861af01888fbaf6a\"],\"item.itemid\":[\"add\",\"75\"]}'),('clca88pwj00024ciyo7otva13',1,'Admin',1672387339,'192.168.64.1',0,15,76,NULL,'t10_2','clca88pwg00004ciygof2yrv1','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"75\"],\"item.name\":[\"add\",\"t10_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"76\"]}'),('clca88pwn00034ciy5s4m0zjz',1,'Admin',1672387339,'192.168.64.1',0,15,77,NULL,'t10_2','clca88pwg00004ciygof2yrv1','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"76\"],\"item.name\":[\"add\",\"t10_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"77\"]}'),('clca88pwn00044ciy92h6o2qd',1,'Admin',1672387339,'192.168.64.1',0,15,78,NULL,'t10_2','clca88pwg00004ciygof2yrv1','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"76\"],\"item.name\":[\"add\",\"t10_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"78\"]}'),('clca8edfu00017kiyeve6z2lh',1,'Admin',1672387603,'192.168.64.1',0,13,23096,NULL,'tr1','clca8edfu00007kiysuek1dfn',''),('clca8evfw00014ciyajgtt3gc',1,'Admin',1672387626,'192.168.64.1',0,13,23098,NULL,'tr2','clca8evfw00004ciysaz2n82t',''),('clca8gbrh00017kiy90219srs',1,'Admin',1672387694,'192.168.64.1',0,13,23100,NULL,'tr5_1','clca8gbrh00007kiydy03z07t',''),('clca8gkfo00017kiydfxg3rlr',1,'Admin',1672387705,'192.168.64.1',1,13,23098,NULL,'tr2','clca8gkfo00007kiy5da0v83g','{\"trigger.description\":[\"update\",\"tr1_2\",\"tr2\"]}'),('clca8gnvl00017kiyys9btt49',1,'Admin',1672387710,'192.168.64.1',1,13,23096,NULL,'tr1','clca8gnvl00007kiy5w5pceo1','{\"trigger.description\":[\"update\",\"tr1_1\",\"tr1\"]}'),('clca8hd8b00014xiy73qpyvx9',1,'Admin',1672387743,'192.168.64.1',0,13,23103,NULL,'tr6_1','clca8hd8b00004xiyy76g8x5c',''),('clca8j94600014xiy9vfti4do',1,'Admin',1672387831,'192.168.64.1',0,15,79,NULL,'t6_1','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"10\"],\"item.templateid\":[\"add\",\"33\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"79\"]}'),('clca8j94600024xiysjzyadnk',1,'Admin',1672387831,'192.168.64.1',0,15,80,NULL,'t6_2','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"10\"],\"item.templateid\":[\"add\",\"36\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"80\"]}'),('clca8j94900034xiyv4qb0r7j',1,'Admin',1672387831,'192.168.64.1',0,15,81,NULL,'t6_1','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"6\"],\"item.templateid\":[\"add\",\"79\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"81\"]}'),('clca8j94900044xiyjl0uedqy',1,'Admin',1672387831,'192.168.64.1',0,15,82,NULL,'t6_2','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"6\"],\"item.templateid\":[\"add\",\"80\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"82\"]}'),('clca8j94c00054xiyexw9kaz0',1,'Admin',1672387831,'192.168.64.1',0,15,83,NULL,'t6_1','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"81\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"83\"]}'),('clca8j94c00064xiyiophvsqi',1,'Admin',1672387831,'192.168.64.1',0,15,84,NULL,'t6_2','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"82\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"84\"]}'),('clca8j94v00074xiy8rkcoxzd',1,'Admin',1672387831,'192.168.64.1',1,30,10,NULL,'t5','clca8j94600004xiy62oj5pwi','{\"template.templates[15]\":[\"add\"],\"template.templates[15].templateid\":[\"add\",\"11\"],\"template.templates[15].hosttemplateid\":[\"add\",\"15\"]}'),('clca8jw9y00014ciyht5ixnh5',1,'Admin',1672387861,'192.168.64.1',0,13,23109,NULL,'tr5_2','clca8jw9y00004ciy0e7ymcqm',''),('clca8sjgr00014xiyohex013s',1,'Admin',1672388264,'192.168.64.1',0,13,23112,NULL,'tr_9','clca8sjgr00004xiycg9gm3uk',''),('clca8t5ov00017kiym54m9rnd',1,'Admin',1672388293,'192.168.64.1',0,13,23118,NULL,'tr7_1','clca8t5ov00007kiy033bgcgd',''),('clca8tv5500014ciyw6p100xh',1,'Admin',1672388326,'192.168.64.1',0,13,23123,NULL,'tr7_2','clca8tv5500004ciyocsb2o6d',''),('clca8u6io00014xiyg8aa2rx0',1,'Admin',1672388340,'192.168.64.1',0,13,23128,NULL,'tr_8','clca8u6io00004xiy3ytcllv5',''),('clca8uxki00017kiyu6bhwi8u',1,'Admin',1672388375,'192.168.64.1',1,13,23128,NULL,'tr_8','clca8uxki00007kiyeqgd5m2i','{\"trigger.description\":[\"update\",\"tr8_1\",\"tr_8\"]}'),('clca8v7j800017kiybrp0l82n',1,'Admin',1672388388,'192.168.64.1',1,13,23112,NULL,'tr_9','clca8v7j800007kiyxxl2ycna','{\"trigger.description\":[\"update\",\"tr9_1\",\"tr_9\"]}'),('clca8w82900014xiy0735zi8v',1,'Admin',1672388436,'192.168.64.1',0,13,23133,NULL,'tr4_1','clca8w82900004xiynqnckrsr',''),('clca8wy1q00014xiybq48gs1q',1,'Admin',1672388469,'192.168.64.1',0,13,23137,NULL,'tr4_2','clca8wy1q00004xiyfz8k56pk',''),('clca8y32100014xiyinvd45mp',1,'Admin',1672388523,'192.168.64.1',0,13,23141,NULL,'tr10_1','clca8y32000004xiy2aebk7zl',''),('clca8ysmy00014xiyubdzb6qt',1,'Admin',1672388556,'192.168.64.1',0,13,23145,NULL,'tr2_1','clca8ysmx00004xiydnt9yftt',''),('clca8zoao00014ciy3rbwyuyh',1,'Admin',1672388597,'192.168.64.1',0,13,23148,NULL,'tr2_2','clca8zoao00004ciyemdai713',''),('clca96qhf00014ciy0bmjjh5c',1,'Admin',1672388926,'192.168.64.1',1,15,75,NULL,'t10_2','clca96qhf00004ciyglqlpq49','{\"item.value_type\":[\"update\",\"3\",\"4\"],\"item.trends\":[\"update\",\"365d\",\"0\"]}'),('clca96qhj00024ciywd0klh4r',1,'Admin',1672388926,'192.168.64.1',1,15,76,NULL,'t10_2','clca96qhf00004ciyglqlpq49','{\"item.value_type\":[\"update\",\"3\",\"4\"],\"item.trends\":[\"update\",\"365d\",\"0\"]}'),('clca96qhm00034ciysqu9wgbe',1,'Admin',1672388926,'192.168.64.1',1,15,77,NULL,'t10_2','clca96qhf00004ciyglqlpq49','{\"item.value_type\":[\"update\",\"3\",\"4\"],\"item.trends\":[\"update\",\"365d\",\"0\"]}'),('clca96qhm00044ciyb9ruvm6i',1,'Admin',1672388926,'192.168.64.1',1,15,78,NULL,'t10_2','clca96qhf00004ciyglqlpq49','{\"item.value_type\":[\"update\",\"3\",\"4\"],\"item.trends\":[\"update\",\"365d\",\"0\"]}'),('clca971fo00014ciype4elswn',1,'Admin',1672388940,'192.168.64.1',0,6,1,NULL,'g10_1','clca971fo00004ciyns5ym63h',''),('clca97c6k00014xiyjrdkgzjf',1,'Admin',1672388954,'192.168.64.1',1,15,5,NULL,'t1_1','clca97c6j00004xiyl51p1d8f','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97c6k00024xiya9asa8oo',1,'Admin',1672388954,'192.168.64.1',1,15,7,NULL,'t1_2','clca97c6j00004xiyl51p1d8f','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97c6n00034xiyb5vccdv6',1,'Admin',1672388954,'192.168.64.1',1,15,6,NULL,'t1_1','clca97c6j00004xiyl51p1d8f','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97c6n00044xiy7q8nlnpm',1,'Admin',1672388954,'192.168.64.1',1,15,8,NULL,'t1_2','clca97c6j00004xiyl51p1d8f','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxl00014ciy7tkropys',1,'Admin',1672388966,'192.168.64.1',1,15,9,NULL,'t2_1','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxl00024ciyc6tgutdu',1,'Admin',1672388966,'192.168.64.1',1,15,12,NULL,'t2_2','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxq00034ciy2xqsa77a',1,'Admin',1672388966,'192.168.64.1',1,15,10,NULL,'t2_1','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxq00044ciyy34eboe5',1,'Admin',1672388966,'192.168.64.1',1,15,11,NULL,'t2_1','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxq00054ciyezaedy84',1,'Admin',1672388966,'192.168.64.1',1,15,13,NULL,'t2_2','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxq00064ciyhdad8m1y',1,'Admin',1672388966,'192.168.64.1',1,15,14,NULL,'t2_2','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871300014xiy3v30jg1l',1,'Admin',1672388994,'192.168.64.1',1,15,27,NULL,'t5_1','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871300024xiymd22ol45',1,'Admin',1672388994,'192.168.64.1',1,15,30,NULL,'t5_2','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871500034xiyaclbc27g',1,'Admin',1672388994,'192.168.64.1',1,15,28,NULL,'t5_1','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871500044xiyhclg66ak',1,'Admin',1672388994,'192.168.64.1',1,15,31,NULL,'t5_2','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871800054xiylzvh7set',1,'Admin',1672388994,'192.168.64.1',1,15,29,NULL,'t5_1','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871800064xiyzprumfym',1,'Admin',1672388994,'192.168.64.1',1,15,32,NULL,'t5_2','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98end00014ciyu7bgfsg7',1,'Admin',1672389004,'192.168.64.1',1,15,33,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98end00024ciygvtd2ayo',1,'Admin',1672389004,'192.168.64.1',1,15,36,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enh00034ciyv1e00qj4',1,'Admin',1672389004,'192.168.64.1',1,15,34,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enh00044ciy3ge72zsh',1,'Admin',1672389004,'192.168.64.1',1,15,37,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enh00054ciy0z09cew5',1,'Admin',1672389004,'192.168.64.1',1,15,79,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enh00064ciygfr01dgu',1,'Admin',1672389004,'192.168.64.1',1,15,80,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enm00074ciy2e9s1052',1,'Admin',1672389004,'192.168.64.1',1,15,35,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enm00084ciyee6kqlef',1,'Admin',1672389004,'192.168.64.1',1,15,38,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enm00094ciy29vt5mdo',1,'Admin',1672389004,'192.168.64.1',1,15,81,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enm000a4ciyxsgw6450',1,'Admin',1672389004,'192.168.64.1',1,15,82,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enp000b4ciyfhsrxsas',1,'Admin',1672389004,'192.168.64.1',1,15,83,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enp000c4ciy41qrize2',1,'Admin',1672389004,'192.168.64.1',1,15,84,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2900014xiyi964uhtl',1,'Admin',1672389027,'192.168.64.1',1,15,49,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2900024xiy2z7addp3',1,'Admin',1672389027,'192.168.64.1',1,15,54,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2b00034xiy26m5rhbh',1,'Admin',1672389027,'192.168.64.1',1,15,50,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2b00044xiy55evew9k',1,'Admin',1672389027,'192.168.64.1',1,15,55,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2e00054xiy81a32j3e',1,'Admin',1672389027,'192.168.64.1',1,15,51,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2e00064xiywh6mrugs',1,'Admin',1672389027,'192.168.64.1',1,15,56,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2j00074xiybgoxpj2y',1,'Admin',1672389027,'192.168.64.1',1,15,52,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2j00084xiy8wwd4syp',1,'Admin',1672389027,'192.168.64.1',1,15,53,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2j00094xiypan1t0ry',1,'Admin',1672389027,'192.168.64.1',1,15,57,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2j000a4xiy8lp2u9hx',1,'Admin',1672389027,'192.168.64.1',1,15,58,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mo00014xiyl50239zt',1,'Admin',1672389035,'192.168.64.1',1,15,59,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mo00024xiy3cuoabta',1,'Admin',1672389035,'192.168.64.1',1,15,65,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mp00034xiyp0s1tmkw',1,'Admin',1672389035,'192.168.64.1',1,15,60,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mp00044xiymv3g0aal',1,'Admin',1672389035,'192.168.64.1',1,15,66,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mt00054xiy89ghm3sw',1,'Admin',1672389035,'192.168.64.1',1,15,61,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mt00064xiy1ks3yddf',1,'Admin',1672389035,'192.168.64.1',1,15,67,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mw00074xiyfhiwkge8',1,'Admin',1672389035,'192.168.64.1',1,15,62,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mw00084xiyo6k4hxqi',1,'Admin',1672389035,'192.168.64.1',1,15,68,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992n100094xiytpmp24lh',1,'Admin',1672389035,'192.168.64.1',1,15,63,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992n1000a4xiyg13uxspp',1,'Admin',1672389035,'192.168.64.1',1,15,64,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992n1000b4xiym893zwm2',1,'Admin',1672389035,'192.168.64.1',1,15,69,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992n1000c4xiy3ivmr6t1',1,'Admin',1672389035,'192.168.64.1',1,15,70,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca99a0b00014ciyiovus5sn',1,'Admin',1672389045,'192.168.64.1',1,15,71,NULL,'t10_1','clca99a0b00004ciytpeecps2','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca99a0e00024ciy56fyroft',1,'Admin',1672389045,'192.168.64.1',1,15,72,NULL,'t10_1','clca99a0b00004ciytpeecps2','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca99a0h00034ciyinlqxucw',1,'Admin',1672389045,'192.168.64.1',1,15,73,NULL,'t10_1','clca99a0b00004ciytpeecps2','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca99a0h00044ciyr5astq1y',1,'Admin',1672389045,'192.168.64.1',1,15,74,NULL,'t10_1','clca99a0b00004ciytpeecps2','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9f93900014ciyv9a7tall',1,'Admin',1672389323,'192.168.64.1',0,6,5,NULL,'g9_1','clca9f93900004ciydtdn7bc2',''),('clca9fjc700017kiyfea9r1z9',1,'Admin',1672389337,'192.168.64.1',1,6,1,NULL,'g10_1','clca9fjc700007kiy91xwa2xy','{\"graph.ymin_itemid\":[\"update\",null,\"0\"],\"graph.ymax_itemid\":[\"update\",null,\"0\"]}'),('clca9fzbl00017kiyfhfzzcz1',1,'Admin',1672389357,'192.168.64.1',0,6,11,NULL,'g8_1','clca9fzbl00007kiy9n8ebum2',''),('clca9g94c00017kiyuj0bja5g',1,'Admin',1672389370,'192.168.64.1',0,6,16,NULL,'g6_1','clca9g94c00007kiyftuvz9r0',''),('clca9grz400017kiy6mrjzoxp',1,'Admin',1672389395,'192.168.64.1',0,6,22,NULL,'g1','clca9grz400007kiyypj5rrms',''),('clca9h36y00017kiyln38zfq9',1,'Admin',1672389409,'192.168.64.1',1,6,22,NULL,'g1','clca9h36y00007kiyhxxlfst5','{\"graph.name\":[\"update\",\"g1_1\",\"g1\"],\"graph.ymin_itemid\":[\"update\",null,\"0\"],\"graph.ymax_itemid\":[\"update\",null,\"0\"]}'),('clca9hfoq00017kiy357ezcy9',1,'Admin',1672389425,'192.168.64.1',0,6,24,NULL,'g2_1','clca9hfoq00007kiy4qvu4smz',''),('clca9htr400017kiyyt1nnar6',1,'Admin',1672389444,'192.168.64.1',0,6,27,NULL,'g3_1','clca9htr400007kiy98uw20ix',''),('clca9i78w00014xiyjj9qygb7',1,'Admin',1672389461,'192.168.64.1',0,6,29,NULL,'g4_1','clca9i78w00004xiyh4p2us8c',''),('clca9le7b00017kiy0uxschil',1,'Admin',1672389610,'192.168.64.1',0,6,33,NULL,'g5_1','clca9le7b00007kiy78rl9f33',''),('clca9lnii00017kiynecvcf91',1,'Admin',1672389622,'192.168.64.1',1,6,16,NULL,'g6_1','clca9lnii00007kiycm5xjg7c','{\"graph.ymin_itemid\":[\"update\",null,\"0\"],\"graph.ymax_itemid\":[\"update\",null,\"0\"]}'),('clca9lx9t00014ciytn9ftzvf',1,'Admin',1672389635,'192.168.64.1',0,6,36,NULL,'g7_1','clca9lx9t00004ciymi4ytexg',''),('clca9skff00014ciyjqergwlm',1,'Admin',1672389945,'192.168.64.1',2,15,79,NULL,'t6_1','clca9skff00004ciyuo65e18a',''),('clca9skff00024ciyvv9tdk46',1,'Admin',1672389945,'192.168.64.1',2,15,80,NULL,'t6_2','clca9skff00004ciyuo65e18a',''),('clca9skff00034ciy0ndfne47',1,'Admin',1672389945,'192.168.64.1',2,15,81,NULL,'t6_1','clca9skff00004ciyuo65e18a',''),('clca9skff00044ciyvymyeekx',1,'Admin',1672389945,'192.168.64.1',2,15,82,NULL,'t6_2','clca9skff00004ciyuo65e18a',''),('clca9skff00054ciywi2c413f',1,'Admin',1672389945,'192.168.64.1',2,15,83,NULL,'t6_1','clca9skff00004ciyuo65e18a',''),('clca9skff00064ciyfydbso2l',1,'Admin',1672389945,'192.168.64.1',2,15,84,NULL,'t6_2','clca9skff00004ciyuo65e18a',''),('clca9skfh00074ciy2x9pwp1p',1,'Admin',1672389945,'192.168.64.1',1,30,10,NULL,'t5','clca9skff00004ciyuo65e18a','{\"template.templates[15]\":[\"delete\"],\"template.templates_clear[15]\":[\"delete\"]}'),('clcehiabg00017kiybic76a0s',2,'guest',1672644767,'192.168.64.1',9,0,2,NULL,'','clcehiabg00007kiyul4kakpc',''),('clcehibh900014xiyyexnewlh',2,'guest',1672644768,'192.168.64.1',9,0,2,NULL,'','clcehibh900004xiyrryotba6',''),('clcehibjg00024xiy1pdzrlgv',1,'Admin',1672644768,'192.168.64.1',8,0,1,NULL,'','clcehibh900004xiyrryotba6',''),('clcehl81m00014ciya6wfx0z4',1,'Admin',1672644904,'192.168.64.1',0,43,58,NULL,'t1_1','clcehl81l00004ciyy1uc6xjg','{\"templatedashboard.name\":[\"add\",\"t1_1\"],\"templatedashboard.pages[58]\":[\"add\"],\"templatedashboard.pages[58].widgets[401]\":[\"add\"],\"templatedashboard.pages[58].widgets[401].x\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[401].y\":[\"add\",\"1\"],\"templatedashboard.pages[58].widgets[401].width\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[401].height\":[\"add\",\"3\"],\"templatedashboard.pages[58].widgets[401].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[401].fields[1180]\":[\"add\"],\"templatedashboard.pages[58].widgets[401].fields[1180].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[401].fields[1180].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[401].fields[1180].value\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[401].fields[1180].widget_fieldid\":[\"add\",\"1180\"],\"templatedashboard.pages[58].widgets[401].widgetid\":[\"add\",\"401\"],\"templatedashboard.pages[58].widgets[402]\":[\"add\"],\"templatedashboard.pages[58].widgets[402].x\":[\"add\",\"16\"],\"templatedashboard.pages[58].widgets[402].y\":[\"add\",\"2\"],\"templatedashboard.pages[58].widgets[402].width\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[402].height\":[\"add\",\"3\"],\"templatedashboard.pages[58].widgets[402].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[402].fields[1181]\":[\"add\"],\"templatedashboard.pages[58].widgets[402].fields[1181].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[402].fields[1181].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[402].fields[1181].value\":[\"add\",\"7\"],\"templatedashboard.pages[58].widgets[402].fields[1181].widget_fieldid\":[\"add\",\"1181\"],\"templatedashboard.pages[58].widgets[402].widgetid\":[\"add\",\"402\"],\"templatedashboard.pages[58].widgets[403]\":[\"add\"],\"templatedashboard.pages[58].widgets[403].x\":[\"add\",\"12\"],\"templatedashboard.pages[58].widgets[403].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[403].fields[1182]\":[\"add\"],\"templatedashboard.pages[58].widgets[403].fields[1182].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[403].fields[1182].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[403].fields[1182].value\":[\"add\",\"28\"],\"templatedashboard.pages[58].widgets[403].fields[1182].widget_fieldid\":[\"add\",\"1182\"],\"templatedashboard.pages[58].widgets[403].widgetid\":[\"add\",\"403\"],\"templatedashboard.pages[58].widgets[404]\":[\"add\"],\"templatedashboard.pages[58].widgets[404].x\":[\"add\",\"10\"],\"templatedashboard.pages[58].widgets[404].y\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[404].width\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[404].height\":[\"add\",\"3\"],\"templatedashboard.pages[58].widgets[404].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[404].name\":[\"add\",\"s\"],\"templatedashboard.pages[58].widgets[404].fields[1183]\":[\"add\"],\"templatedashboard.pages[58].widgets[404].fields[1183].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[404].fields[1183].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[404].fields[1183].value\":[\"add\",\"31\"],\"templatedashboard.pages[58].widgets[404].fields[1183].widget_fieldid\":[\"add\",\"1183\"],\"templatedashboard.pages[58].widgets[404].fields[1184]\":[\"add\"],\"templatedashboard.pages[58].widgets[404].fields[1184].name\":[\"add\",\"adv_conf\"],\"templatedashboard.pages[58].widgets[404].fields[1184].value\":[\"add\",\"1\"],\"templatedashboard.pages[58].widgets[404].fields[1184].widget_fieldid\":[\"add\",\"1184\"],\"templatedashboard.pages[58].widgets[404].fields[1185]\":[\"add\"],\"templatedashboard.pages[58].widgets[404].fields[1185].type\":[\"add\",\"1\"],\"templatedashboard.pages[58].widgets[404].fields[1185].name\":[\"add\",\"description\"],\"templatedashboard.pages[58].widgets[404].fields[1185].value\":[\"add\",\"{ITEM.NAME}cdc\"],\"templatedashboard.pages[58].widgets[404].fields[1185].widget_fieldid\":[\"add\",\"1185\"],\"templatedashboard.pages[58].widgets[404].widgetid\":[\"add\",\"404\"],\"templatedashboard.pages[58].widgets[405]\":[\"add\"],\"templatedashboard.pages[58].widgets[405].x\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[405].y\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[405].width\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[405].height\":[\"add\",\"3\"],\"templatedashboard.pages[58].widgets[405].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[405].fields[1186]\":[\"add\"],\"templatedashboard.pages[58].widgets[405].fields[1186].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[405].fields[1186].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[405].fields[1186].value\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[405].fields[1186].widget_fieldid\":[\"add\",\"1186\"],\"templatedashboard.pages[58].widgets[405].widgetid\":[\"add\",\"405\"],\"templatedashboard.pages[58].widgets[406]\":[\"add\"],\"templatedashboard.pages[58].widgets[406].x\":[\"add\",\"10\"],\"templatedashboard.pages[58].widgets[406].y\":[\"add\",\"9\"],\"templatedashboard.pages[58].widgets[406].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[406].fields[1187]\":[\"add\"],\"templatedashboard.pages[58].widgets[406].fields[1187].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[406].fields[1187].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[406].fields[1187].value\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[406].fields[1187].widget_fieldid\":[\"add\",\"1187\"],\"templatedashboard.pages[58].widgets[406].widgetid\":[\"add\",\"406\"],\"templatedashboard.pages[58].dashboard_pageid\":[\"add\",\"58\"],\"templatedashboard.templateid\":[\"add\",\"6\"],\"templatedashboard.uuid\":[\"add\",\"ca1874005633420fb7a102de7dc2ffe7\"],\"templatedashboard.dashboardid\":[\"add\",\"58\"]}'),('clcehmfi900014xiy279977h6',1,'Admin',1672644960,'192.168.64.1',0,43,59,NULL,'t1_2','clcehmfi900004xiyfnp4hp4d','{\"templatedashboard.name\":[\"add\",\"t1_2\"],\"templatedashboard.pages[59]\":[\"add\"],\"templatedashboard.pages[59].widgets[407]\":[\"add\"],\"templatedashboard.pages[59].widgets[407].x\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[407].y\":[\"add\",\"1\"],\"templatedashboard.pages[59].widgets[407].width\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[407].height\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[407].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[407].fields[1188]\":[\"add\"],\"templatedashboard.pages[59].widgets[407].fields[1188].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[407].fields[1188].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[407].fields[1188].value\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[407].fields[1188].widget_fieldid\":[\"add\",\"1188\"],\"templatedashboard.pages[59].widgets[407].widgetid\":[\"add\",\"407\"],\"templatedashboard.pages[59].widgets[408]\":[\"add\"],\"templatedashboard.pages[59].widgets[408].x\":[\"add\",\"11\"],\"templatedashboard.pages[59].widgets[408].y\":[\"add\",\"1\"],\"templatedashboard.pages[59].widgets[408].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[408].fields[1189]\":[\"add\"],\"templatedashboard.pages[59].widgets[408].fields[1189].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[408].fields[1189].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[408].fields[1189].value\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[408].fields[1189].widget_fieldid\":[\"add\",\"1189\"],\"templatedashboard.pages[59].widgets[408].widgetid\":[\"add\",\"408\"],\"templatedashboard.pages[59].widgets[409]\":[\"add\"],\"templatedashboard.pages[59].widgets[409].x\":[\"add\",\"15\"],\"templatedashboard.pages[59].widgets[409].y\":[\"add\",\"1\"],\"templatedashboard.pages[59].widgets[409].width\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[409].height\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[409].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[409].fields[1190]\":[\"add\"],\"templatedashboard.pages[59].widgets[409].fields[1190].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[409].fields[1190].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[409].fields[1190].value\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[409].fields[1190].widget_fieldid\":[\"add\",\"1190\"],\"templatedashboard.pages[59].widgets[409].widgetid\":[\"add\",\"409\"],\"templatedashboard.pages[59].widgets[410]\":[\"add\"],\"templatedashboard.pages[59].widgets[410].x\":[\"add\",\"10\"],\"templatedashboard.pages[59].widgets[410].y\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[410].width\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[410].height\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[410].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[410].fields[1191]\":[\"add\"],\"templatedashboard.pages[59].widgets[410].fields[1191].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[410].fields[1191].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[410].fields[1191].value\":[\"add\",\"7\"],\"templatedashboard.pages[59].widgets[410].fields[1191].widget_fieldid\":[\"add\",\"1191\"],\"templatedashboard.pages[59].widgets[410].widgetid\":[\"add\",\"410\"],\"templatedashboard.pages[59].widgets[411]\":[\"add\"],\"templatedashboard.pages[59].widgets[411].x\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[411].y\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[411].width\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[411].height\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[411].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[411].fields[1192]\":[\"add\"],\"templatedashboard.pages[59].widgets[411].fields[1192].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[411].fields[1192].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[411].fields[1192].value\":[\"add\",\"28\"],\"templatedashboard.pages[59].widgets[411].fields[1192].widget_fieldid\":[\"add\",\"1192\"],\"templatedashboard.pages[59].widgets[411].widgetid\":[\"add\",\"411\"],\"templatedashboard.pages[59].widgets[412]\":[\"add\"],\"templatedashboard.pages[59].widgets[412].x\":[\"add\",\"17\"],\"templatedashboard.pages[59].widgets[412].y\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[412].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[412].fields[1193]\":[\"add\"],\"templatedashboard.pages[59].widgets[412].fields[1193].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[412].fields[1193].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[412].fields[1193].value\":[\"add\",\"31\"],\"templatedashboard.pages[59].widgets[412].fields[1193].widget_fieldid\":[\"add\",\"1193\"],\"templatedashboard.pages[59].widgets[412].widgetid\":[\"add\",\"412\"],\"templatedashboard.pages[59].dashboard_pageid\":[\"add\",\"59\"],\"templatedashboard.templateid\":[\"add\",\"6\"],\"templatedashboard.uuid\":[\"add\",\"c9fa84fe474b4631908ecc39b9b8b983\"],\"templatedashboard.dashboardid\":[\"add\",\"59\"]}'),('clcehms990001fqiyelv1glew',1,'Admin',1672644977,'192.168.64.1',0,43,60,NULL,'New dashboard','clcehms990000fqiyjo7anvx9','{\"templatedashboard.name\":[\"add\",\"New dashboard\"],\"templatedashboard.pages[60]\":[\"add\"],\"templatedashboard.pages[60].dashboard_pageid\":[\"add\",\"60\"],\"templatedashboard.templateid\":[\"add\",\"6\"],\"templatedashboard.uuid\":[\"add\",\"007152ae172d409c844b456c7711a24d\"],\"templatedashboard.dashboardid\":[\"add\",\"60\"]}'),('clcehod0l0001fqiytth2kxq7',1,'Admin',1672645050,'192.168.64.1',0,43,61,NULL,'t2_1','clcehod0k0000fqiyi5wrd0p0','{\"templatedashboard.name\":[\"add\",\"t2_1\"],\"templatedashboard.pages[61]\":[\"add\"],\"templatedashboard.pages[61].widgets[413]\":[\"add\"],\"templatedashboard.pages[61].widgets[413].x\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[413].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[413].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[413].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[413].fields[1194]\":[\"add\"],\"templatedashboard.pages[61].widgets[413].fields[1194].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[413].fields[1194].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[413].fields[1194].value\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[413].fields[1194].widget_fieldid\":[\"add\",\"1194\"],\"templatedashboard.pages[61].widgets[413].widgetid\":[\"add\",\"413\"],\"templatedashboard.pages[61].widgets[414]\":[\"add\"],\"templatedashboard.pages[61].widgets[414].x\":[\"add\",\"8\"],\"templatedashboard.pages[61].widgets[414].y\":[\"add\",\"1\"],\"templatedashboard.pages[61].widgets[414].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[414].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[414].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[414].fields[1195]\":[\"add\"],\"templatedashboard.pages[61].widgets[414].fields[1195].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[414].fields[1195].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[414].fields[1195].value\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[414].fields[1195].widget_fieldid\":[\"add\",\"1195\"],\"templatedashboard.pages[61].widgets[414].widgetid\":[\"add\",\"414\"],\"templatedashboard.pages[61].widgets[415]\":[\"add\"],\"templatedashboard.pages[61].widgets[415].x\":[\"add\",\"14\"],\"templatedashboard.pages[61].widgets[415].y\":[\"add\",\"1\"],\"templatedashboard.pages[61].widgets[415].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[415].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[415].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[415].fields[1196]\":[\"add\"],\"templatedashboard.pages[61].widgets[415].fields[1196].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[415].fields[1196].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[415].fields[1196].value\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[415].fields[1196].widget_fieldid\":[\"add\",\"1196\"],\"templatedashboard.pages[61].widgets[415].widgetid\":[\"add\",\"415\"],\"templatedashboard.pages[61].widgets[416]\":[\"add\"],\"templatedashboard.pages[61].widgets[416].x\":[\"add\",\"5\"],\"templatedashboard.pages[61].widgets[416].y\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[416].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[416].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[416].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[416].fields[1197]\":[\"add\"],\"templatedashboard.pages[61].widgets[416].fields[1197].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[416].fields[1197].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[416].fields[1197].value\":[\"add\",\"12\"],\"templatedashboard.pages[61].widgets[416].fields[1197].widget_fieldid\":[\"add\",\"1197\"],\"templatedashboard.pages[61].widgets[416].widgetid\":[\"add\",\"416\"],\"templatedashboard.pages[61].widgets[417]\":[\"add\"],\"templatedashboard.pages[61].widgets[417].x\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[417].y\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[417].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[417].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[417].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[417].fields[1198]\":[\"add\"],\"templatedashboard.pages[61].widgets[417].fields[1198].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[417].fields[1198].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[417].fields[1198].value\":[\"add\",\"20\"],\"templatedashboard.pages[61].widgets[417].fields[1198].widget_fieldid\":[\"add\",\"1198\"],\"templatedashboard.pages[61].widgets[417].widgetid\":[\"add\",\"417\"],\"templatedashboard.pages[61].widgets[418]\":[\"add\"],\"templatedashboard.pages[61].widgets[418].x\":[\"add\",\"14\"],\"templatedashboard.pages[61].widgets[418].y\":[\"add\",\"6\"],\"templatedashboard.pages[61].widgets[418].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[418].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[418].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[418].fields[1199]\":[\"add\"],\"templatedashboard.pages[61].widgets[418].fields[1199].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[418].fields[1199].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[418].fields[1199].value\":[\"add\",\"24\"],\"templatedashboard.pages[61].widgets[418].fields[1199].widget_fieldid\":[\"add\",\"1199\"],\"templatedashboard.pages[61].widgets[418].widgetid\":[\"add\",\"418\"],\"templatedashboard.pages[61].widgets[419]\":[\"add\"],\"templatedashboard.pages[61].widgets[419].x\":[\"add\",\"18\"],\"templatedashboard.pages[61].widgets[419].y\":[\"add\",\"5\"],\"templatedashboard.pages[61].widgets[419].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[419].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[419].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[419].fields[1200]\":[\"add\"],\"templatedashboard.pages[61].widgets[419].fields[1200].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[419].fields[1200].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[419].fields[1200].value\":[\"add\",\"41\"],\"templatedashboard.pages[61].widgets[419].fields[1200].widget_fieldid\":[\"add\",\"1200\"],\"templatedashboard.pages[61].widgets[419].widgetid\":[\"add\",\"419\"],\"templatedashboard.pages[61].widgets[420]\":[\"add\"],\"templatedashboard.pages[61].widgets[420].x\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[420].y\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[420].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[420].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[420].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[420].fields[1201]\":[\"add\"],\"templatedashboard.pages[61].widgets[420].fields[1201].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[420].fields[1201].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[420].fields[1201].value\":[\"add\",\"46\"],\"templatedashboard.pages[61].widgets[420].fields[1201].widget_fieldid\":[\"add\",\"1201\"],\"templatedashboard.pages[61].widgets[420].widgetid\":[\"add\",\"420\"],\"templatedashboard.pages[61].widgets[421]\":[\"add\"],\"templatedashboard.pages[61].widgets[421].x\":[\"add\",\"7\"],\"templatedashboard.pages[61].widgets[421].y\":[\"add\",\"8\"],\"templatedashboard.pages[61].widgets[421].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[421].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[421].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[421].fields[1202]\":[\"add\"],\"templatedashboard.pages[61].widgets[421].fields[1202].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[421].fields[1202].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[421].fields[1202].value\":[\"add\",\"51\"],\"templatedashboard.pages[61].widgets[421].fields[1202].widget_fieldid\":[\"add\",\"1202\"],\"templatedashboard.pages[61].widgets[421].widgetid\":[\"add\",\"421\"],\"templatedashboard.pages[61].widgets[422]\":[\"add\"],\"templatedashboard.pages[61].widgets[422].x\":[\"add\",\"11\"],\"templatedashboard.pages[61].widgets[422].y\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[422].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[422].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[422].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[422].fields[1203]\":[\"add\"],\"templatedashboard.pages[61].widgets[422].fields[1203].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[422].fields[1203].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[422].fields[1203].value\":[\"add\",\"56\"],\"templatedashboard.pages[61].widgets[422].fields[1203].widget_fieldid\":[\"add\",\"1203\"],\"templatedashboard.pages[61].widgets[422].widgetid\":[\"add\",\"422\"],\"templatedashboard.pages[61].widgets[423]\":[\"add\"],\"templatedashboard.pages[61].widgets[423].x\":[\"add\",\"16\"],\"templatedashboard.pages[61].widgets[423].y\":[\"add\",\"10\"],\"templatedashboard.pages[61].widgets[423].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[423].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[423].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[423].fields[1204]\":[\"add\"],\"templatedashboard.pages[61].widgets[423].fields[1204].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[423].fields[1204].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[423].fields[1204].value\":[\"add\",\"62\"],\"templatedashboard.pages[61].widgets[423].fields[1204].widget_fieldid\":[\"add\",\"1204\"],\"templatedashboard.pages[61].widgets[423].widgetid\":[\"add\",\"423\"],\"templatedashboard.pages[61].widgets[424]\":[\"add\"],\"templatedashboard.pages[61].widgets[424].x\":[\"add\",\"18\"],\"templatedashboard.pages[61].widgets[424].y\":[\"add\",\"8\"],\"templatedashboard.pages[61].widgets[424].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[424].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[424].fields[1205]\":[\"add\"],\"templatedashboard.pages[61].widgets[424].fields[1205].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[424].fields[1205].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[424].fields[1205].value\":[\"add\",\"72\"],\"templatedashboard.pages[61].widgets[424].fields[1205].widget_fieldid\":[\"add\",\"1205\"],\"templatedashboard.pages[61].widgets[424].widgetid\":[\"add\",\"424\"],\"templatedashboard.pages[61].widgets[425]\":[\"add\"],\"templatedashboard.pages[61].widgets[425].x\":[\"add\",\"1\"],\"templatedashboard.pages[61].widgets[425].y\":[\"add\",\"6\"],\"templatedashboard.pages[61].widgets[425].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[425].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[425].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[425].fields[1206]\":[\"add\"],\"templatedashboard.pages[61].widgets[425].fields[1206].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[425].fields[1206].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[425].fields[1206].value\":[\"add\",\"76\"],\"templatedashboard.pages[61].widgets[425].fields[1206].widget_fieldid\":[\"add\",\"1206\"],\"templatedashboard.pages[61].widgets[425].widgetid\":[\"add\",\"425\"],\"templatedashboard.pages[61].dashboard_pageid\":[\"add\",\"61\"],\"templatedashboard.templateid\":[\"add\",\"7\"],\"templatedashboard.uuid\":[\"add\",\"823cab9175314ab388318190c4529a9c\"],\"templatedashboard.dashboardid\":[\"add\",\"61\"]}'),('clcehql3b00014ciy1dowkwm9',1,'Admin',1672645154,'192.168.64.1',0,43,62,NULL,'t2_2','clcehql3a00004ciyyqzq0wco','{\"templatedashboard.name\":[\"add\",\"t2_2\"],\"templatedashboard.pages[62]\":[\"add\"],\"templatedashboard.pages[62].widgets[426]\":[\"add\"],\"templatedashboard.pages[62].widgets[426].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[426].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[426].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[426].fields[1207]\":[\"add\"],\"templatedashboard.pages[62].widgets[426].fields[1207].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[426].fields[1207].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[426].fields[1207].value\":[\"add\",\"9\"],\"templatedashboard.pages[62].widgets[426].fields[1207].widget_fieldid\":[\"add\",\"1207\"],\"templatedashboard.pages[62].widgets[426].widgetid\":[\"add\",\"426\"],\"templatedashboard.pages[62].widgets[427]\":[\"add\"],\"templatedashboard.pages[62].widgets[427].x\":[\"add\",\"5\"],\"templatedashboard.pages[62].widgets[427].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[427].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[427].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[427].fields[1208]\":[\"add\"],\"templatedashboard.pages[62].widgets[427].fields[1208].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[427].fields[1208].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[427].fields[1208].value\":[\"add\",\"12\"],\"templatedashboard.pages[62].widgets[427].fields[1208].widget_fieldid\":[\"add\",\"1208\"],\"templatedashboard.pages[62].widgets[427].widgetid\":[\"add\",\"427\"],\"templatedashboard.pages[62].widgets[428]\":[\"add\"],\"templatedashboard.pages[62].widgets[428].x\":[\"add\",\"10\"],\"templatedashboard.pages[62].widgets[428].y\":[\"add\",\"1\"],\"templatedashboard.pages[62].widgets[428].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[428].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[428].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[428].fields[1209]\":[\"add\"],\"templatedashboard.pages[62].widgets[428].fields[1209].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[428].fields[1209].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[428].fields[1209].value\":[\"add\",\"9\"],\"templatedashboard.pages[62].widgets[428].fields[1209].widget_fieldid\":[\"add\",\"1209\"],\"templatedashboard.pages[62].widgets[428].widgetid\":[\"add\",\"428\"],\"templatedashboard.pages[62].widgets[429]\":[\"add\"],\"templatedashboard.pages[62].widgets[429].x\":[\"add\",\"14\"],\"templatedashboard.pages[62].widgets[429].y\":[\"add\",\"1\"],\"templatedashboard.pages[62].widgets[429].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[429].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[429].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[429].fields[1210]\":[\"add\"],\"templatedashboard.pages[62].widgets[429].fields[1210].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[429].fields[1210].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[429].fields[1210].value\":[\"add\",\"12\"],\"templatedashboard.pages[62].widgets[429].fields[1210].widget_fieldid\":[\"add\",\"1210\"],\"templatedashboard.pages[62].widgets[429].widgetid\":[\"add\",\"429\"],\"templatedashboard.pages[62].widgets[430]\":[\"add\"],\"templatedashboard.pages[62].widgets[430].x\":[\"add\",\"19\"],\"templatedashboard.pages[62].widgets[430].y\":[\"add\",\"1\"],\"templatedashboard.pages[62].widgets[430].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[430].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[430].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[430].fields[1211]\":[\"add\"],\"templatedashboard.pages[62].widgets[430].fields[1211].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[430].fields[1211].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[430].fields[1211].value\":[\"add\",\"20\"],\"templatedashboard.pages[62].widgets[430].fields[1211].widget_fieldid\":[\"add\",\"1211\"],\"templatedashboard.pages[62].widgets[430].widgetid\":[\"add\",\"430\"],\"templatedashboard.pages[62].widgets[431]\":[\"add\"],\"templatedashboard.pages[62].widgets[431].x\":[\"add\",\"2\"],\"templatedashboard.pages[62].widgets[431].y\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[431].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[431].fields[1212]\":[\"add\"],\"templatedashboard.pages[62].widgets[431].fields[1212].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[431].fields[1212].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[431].fields[1212].value\":[\"add\",\"24\"],\"templatedashboard.pages[62].widgets[431].fields[1212].widget_fieldid\":[\"add\",\"1212\"],\"templatedashboard.pages[62].widgets[431].widgetid\":[\"add\",\"431\"],\"templatedashboard.pages[62].widgets[432]\":[\"add\"],\"templatedashboard.pages[62].widgets[432].x\":[\"add\",\"5\"],\"templatedashboard.pages[62].widgets[432].y\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[432].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[432].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[432].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[432].fields[1213]\":[\"add\"],\"templatedashboard.pages[62].widgets[432].fields[1213].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[432].fields[1213].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[432].fields[1213].value\":[\"add\",\"41\"],\"templatedashboard.pages[62].widgets[432].fields[1213].widget_fieldid\":[\"add\",\"1213\"],\"templatedashboard.pages[62].widgets[432].widgetid\":[\"add\",\"432\"],\"templatedashboard.pages[62].widgets[433]\":[\"add\"],\"templatedashboard.pages[62].widgets[433].x\":[\"add\",\"9\"],\"templatedashboard.pages[62].widgets[433].y\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[433].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[433].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[433].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[433].fields[1214]\":[\"add\"],\"templatedashboard.pages[62].widgets[433].fields[1214].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[433].fields[1214].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[433].fields[1214].value\":[\"add\",\"46\"],\"templatedashboard.pages[62].widgets[433].fields[1214].widget_fieldid\":[\"add\",\"1214\"],\"templatedashboard.pages[62].widgets[433].widgetid\":[\"add\",\"433\"],\"templatedashboard.pages[62].widgets[434]\":[\"add\"],\"templatedashboard.pages[62].widgets[434].x\":[\"add\",\"13\"],\"templatedashboard.pages[62].widgets[434].y\":[\"add\",\"5\"],\"templatedashboard.pages[62].widgets[434].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[434].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[434].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[434].fields[1215]\":[\"add\"],\"templatedashboard.pages[62].widgets[434].fields[1215].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[434].fields[1215].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[434].fields[1215].value\":[\"add\",\"51\"],\"templatedashboard.pages[62].widgets[434].fields[1215].widget_fieldid\":[\"add\",\"1215\"],\"templatedashboard.pages[62].widgets[434].widgetid\":[\"add\",\"434\"],\"templatedashboard.pages[62].widgets[435]\":[\"add\"],\"templatedashboard.pages[62].widgets[435].x\":[\"add\",\"17\"],\"templatedashboard.pages[62].widgets[435].y\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[435].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[435].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[435].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[435].fields[1216]\":[\"add\"],\"templatedashboard.pages[62].widgets[435].fields[1216].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[435].fields[1216].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[435].fields[1216].value\":[\"add\",\"56\"],\"templatedashboard.pages[62].widgets[435].fields[1216].widget_fieldid\":[\"add\",\"1216\"],\"templatedashboard.pages[62].widgets[435].widgetid\":[\"add\",\"435\"],\"templatedashboard.pages[62].widgets[436]\":[\"add\"],\"templatedashboard.pages[62].widgets[436].x\":[\"add\",\"1\"],\"templatedashboard.pages[62].widgets[436].y\":[\"add\",\"8\"],\"templatedashboard.pages[62].widgets[436].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[436].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[436].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[436].fields[1217]\":[\"add\"],\"templatedashboard.pages[62].widgets[436].fields[1217].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[436].fields[1217].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[436].fields[1217].value\":[\"add\",\"62\"],\"templatedashboard.pages[62].widgets[436].fields[1217].widget_fieldid\":[\"add\",\"1217\"],\"templatedashboard.pages[62].widgets[436].widgetid\":[\"add\",\"436\"],\"templatedashboard.pages[62].widgets[437]\":[\"add\"],\"templatedashboard.pages[62].widgets[437].x\":[\"add\",\"6\"],\"templatedashboard.pages[62].widgets[437].y\":[\"add\",\"8\"],\"templatedashboard.pages[62].widgets[437].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[437].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[437].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[437].fields[1218]\":[\"add\"],\"templatedashboard.pages[62].widgets[437].fields[1218].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[437].fields[1218].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[437].fields[1218].value\":[\"add\",\"68\"],\"templatedashboard.pages[62].widgets[437].fields[1218].widget_fieldid\":[\"add\",\"1218\"],\"templatedashboard.pages[62].widgets[437].widgetid\":[\"add\",\"437\"],\"templatedashboard.pages[62].widgets[438]\":[\"add\"],\"templatedashboard.pages[62].widgets[438].x\":[\"add\",\"10\"],\"templatedashboard.pages[62].widgets[438].y\":[\"add\",\"8\"],\"templatedashboard.pages[62].widgets[438].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[438].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[438].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[438].fields[1219]\":[\"add\"],\"templatedashboard.pages[62].widgets[438].fields[1219].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[438].fields[1219].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[438].fields[1219].value\":[\"add\",\"72\"],\"templatedashboard.pages[62].widgets[438].fields[1219].widget_fieldid\":[\"add\",\"1219\"],\"templatedashboard.pages[62].widgets[438].widgetid\":[\"add\",\"438\"],\"templatedashboard.pages[62].widgets[439]\":[\"add\"],\"templatedashboard.pages[62].widgets[439].x\":[\"add\",\"14\"],\"templatedashboard.pages[62].widgets[439].y\":[\"add\",\"9\"],\"templatedashboard.pages[62].widgets[439].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[439].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[439].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[439].fields[1220]\":[\"add\"],\"templatedashboard.pages[62].widgets[439].fields[1220].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[439].fields[1220].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[439].fields[1220].value\":[\"add\",\"76\"],\"templatedashboard.pages[62].widgets[439].fields[1220].widget_fieldid\":[\"add\",\"1220\"],\"templatedashboard.pages[62].widgets[439].widgetid\":[\"add\",\"439\"],\"templatedashboard.pages[62].dashboard_pageid\":[\"add\",\"62\"],\"templatedashboard.templateid\":[\"add\",\"7\"],\"templatedashboard.uuid\":[\"add\",\"8c80f2b035d047869021272fa547ee1a\"],\"templatedashboard.dashboardid\":[\"add\",\"62\"]}'),('clcehque70001fqiys95xlviq',1,'Admin',1672645166,'192.168.64.1',0,43,63,NULL,'t2_3','clcehque70000fqiy4x9c5kl2','{\"templatedashboard.name\":[\"add\",\"t2_3\"],\"templatedashboard.pages[63]\":[\"add\"],\"templatedashboard.pages[63].dashboard_pageid\":[\"add\",\"63\"],\"templatedashboard.templateid\":[\"add\",\"7\"],\"templatedashboard.uuid\":[\"add\",\"58feed816e7648bdb23cc59b4353f3a4\"],\"templatedashboard.dashboardid\":[\"add\",\"63\"]}'),('clcehrb2f00014ciy8s324rbc',1,'Admin',1672645188,'192.168.64.1',1,43,60,NULL,'New dashboard','clcehrb2f00004ciymyz9c3ol','{\"templatedashboard.name\":[\"update\",\"t1_3\",\"New dashboard\"]}'),('clcehspw200014xiyn07ywfeo',1,'Admin',1672645253,'192.168.64.1',0,43,64,NULL,'t3_1','clcehspw200004xiya4t37dto','{\"templatedashboard.name\":[\"add\",\"t3_1\"],\"templatedashboard.pages[64]\":[\"add\"],\"templatedashboard.pages[64].widgets[440]\":[\"add\"],\"templatedashboard.pages[64].widgets[440].x\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[440].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[440].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[440].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[440].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[440].fields[1221]\":[\"add\"],\"templatedashboard.pages[64].widgets[440].fields[1221].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[440].fields[1221].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[440].fields[1221].value\":[\"add\",\"15\"],\"templatedashboard.pages[64].widgets[440].fields[1221].widget_fieldid\":[\"add\",\"1221\"],\"templatedashboard.pages[64].widgets[440].widgetid\":[\"add\",\"440\"],\"templatedashboard.pages[64].widgets[441]\":[\"add\"],\"templatedashboard.pages[64].widgets[441].x\":[\"add\",\"8\"],\"templatedashboard.pages[64].widgets[441].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[441].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[441].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[441].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[441].fields[1222]\":[\"add\"],\"templatedashboard.pages[64].widgets[441].fields[1222].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[441].fields[1222].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[441].fields[1222].value\":[\"add\",\"15\"],\"templatedashboard.pages[64].widgets[441].fields[1222].widget_fieldid\":[\"add\",\"1222\"],\"templatedashboard.pages[64].widgets[441].widgetid\":[\"add\",\"441\"],\"templatedashboard.pages[64].widgets[442]\":[\"add\"],\"templatedashboard.pages[64].widgets[442].x\":[\"add\",\"12\"],\"templatedashboard.pages[64].widgets[442].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[442].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[442].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[442].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[442].fields[1223]\":[\"add\"],\"templatedashboard.pages[64].widgets[442].fields[1223].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[442].fields[1223].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[442].fields[1223].value\":[\"add\",\"15\"],\"templatedashboard.pages[64].widgets[442].fields[1223].widget_fieldid\":[\"add\",\"1223\"],\"templatedashboard.pages[64].widgets[442].widgetid\":[\"add\",\"442\"],\"templatedashboard.pages[64].widgets[443]\":[\"add\"],\"templatedashboard.pages[64].widgets[443].x\":[\"add\",\"16\"],\"templatedashboard.pages[64].widgets[443].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[443].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[443].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[443].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[443].fields[1224]\":[\"add\"],\"templatedashboard.pages[64].widgets[443].fields[1224].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[443].fields[1224].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[443].fields[1224].value\":[\"add\",\"17\"],\"templatedashboard.pages[64].widgets[443].fields[1224].widget_fieldid\":[\"add\",\"1224\"],\"templatedashboard.pages[64].widgets[443].widgetid\":[\"add\",\"443\"],\"templatedashboard.pages[64].widgets[444]\":[\"add\"],\"templatedashboard.pages[64].widgets[444].x\":[\"add\",\"20\"],\"templatedashboard.pages[64].widgets[444].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[444].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[444].fields[1225]\":[\"add\"],\"templatedashboard.pages[64].widgets[444].fields[1225].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[444].fields[1225].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[444].fields[1225].value\":[\"add\",\"34\"],\"templatedashboard.pages[64].widgets[444].fields[1225].widget_fieldid\":[\"add\",\"1225\"],\"templatedashboard.pages[64].widgets[444].widgetid\":[\"add\",\"444\"],\"templatedashboard.pages[64].widgets[445]\":[\"add\"],\"templatedashboard.pages[64].widgets[445].x\":[\"add\",\"6\"],\"templatedashboard.pages[64].widgets[445].y\":[\"add\",\"5\"],\"templatedashboard.pages[64].widgets[445].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[445].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[445].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[445].fields[1226]\":[\"add\"],\"templatedashboard.pages[64].widgets[445].fields[1226].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[445].fields[1226].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[445].fields[1226].value\":[\"add\",\"37\"],\"templatedashboard.pages[64].widgets[445].fields[1226].widget_fieldid\":[\"add\",\"1226\"],\"templatedashboard.pages[64].widgets[445].widgetid\":[\"add\",\"445\"],\"templatedashboard.pages[64].dashboard_pageid\":[\"add\",\"64\"],\"templatedashboard.templateid\":[\"add\",\"8\"],\"templatedashboard.uuid\":[\"add\",\"fd4515aade0144acba62d3b36d53da6b\"],\"templatedashboard.dashboardid\":[\"add\",\"64\"]}'),('clcehtjgv00014ciymg5wl6n4',1,'Admin',1672645292,'192.168.64.1',0,43,65,NULL,'t3_2','clcehtjgv00004ciywl0qndeo','{\"templatedashboard.name\":[\"add\",\"t3_2\"],\"templatedashboard.pages[65]\":[\"add\"],\"templatedashboard.pages[65].widgets[446]\":[\"add\"],\"templatedashboard.pages[65].widgets[446].x\":[\"add\",\"1\"],\"templatedashboard.pages[65].widgets[446].y\":[\"add\",\"1\"],\"templatedashboard.pages[65].widgets[446].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[446].fields[1227]\":[\"add\"],\"templatedashboard.pages[65].widgets[446].fields[1227].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[446].fields[1227].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[446].fields[1227].value\":[\"add\",\"15\"],\"templatedashboard.pages[65].widgets[446].fields[1227].widget_fieldid\":[\"add\",\"1227\"],\"templatedashboard.pages[65].widgets[446].widgetid\":[\"add\",\"446\"],\"templatedashboard.pages[65].widgets[447]\":[\"add\"],\"templatedashboard.pages[65].widgets[447].x\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[447].y\":[\"add\",\"1\"],\"templatedashboard.pages[65].widgets[447].width\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[447].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[447].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[447].fields[1228]\":[\"add\"],\"templatedashboard.pages[65].widgets[447].fields[1228].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[447].fields[1228].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[447].fields[1228].value\":[\"add\",\"15\"],\"templatedashboard.pages[65].widgets[447].fields[1228].widget_fieldid\":[\"add\",\"1228\"],\"templatedashboard.pages[65].widgets[447].widgetid\":[\"add\",\"447\"],\"templatedashboard.pages[65].widgets[448]\":[\"add\"],\"templatedashboard.pages[65].widgets[448].x\":[\"add\",\"9\"],\"templatedashboard.pages[65].widgets[448].y\":[\"add\",\"1\"],\"templatedashboard.pages[65].widgets[448].width\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[448].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[448].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[448].fields[1229]\":[\"add\"],\"templatedashboard.pages[65].widgets[448].fields[1229].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[448].fields[1229].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[448].fields[1229].value\":[\"add\",\"15\"],\"templatedashboard.pages[65].widgets[448].fields[1229].widget_fieldid\":[\"add\",\"1229\"],\"templatedashboard.pages[65].widgets[448].widgetid\":[\"add\",\"448\"],\"templatedashboard.pages[65].widgets[449]\":[\"add\"],\"templatedashboard.pages[65].widgets[449].x\":[\"add\",\"14\"],\"templatedashboard.pages[65].widgets[449].y\":[\"add\",\"2\"],\"templatedashboard.pages[65].widgets[449].width\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[449].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[449].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[449].fields[1230]\":[\"add\"],\"templatedashboard.pages[65].widgets[449].fields[1230].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[449].fields[1230].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[449].fields[1230].value\":[\"add\",\"17\"],\"templatedashboard.pages[65].widgets[449].fields[1230].widget_fieldid\":[\"add\",\"1230\"],\"templatedashboard.pages[65].widgets[449].widgetid\":[\"add\",\"449\"],\"templatedashboard.pages[65].widgets[450]\":[\"add\"],\"templatedashboard.pages[65].widgets[450].x\":[\"add\",\"18\"],\"templatedashboard.pages[65].widgets[450].y\":[\"add\",\"2\"],\"templatedashboard.pages[65].widgets[450].width\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[450].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[450].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[450].fields[1231]\":[\"add\"],\"templatedashboard.pages[65].widgets[450].fields[1231].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[450].fields[1231].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[450].fields[1231].value\":[\"add\",\"34\"],\"templatedashboard.pages[65].widgets[450].fields[1231].widget_fieldid\":[\"add\",\"1231\"],\"templatedashboard.pages[65].widgets[450].widgetid\":[\"add\",\"450\"],\"templatedashboard.pages[65].widgets[451]\":[\"add\"],\"templatedashboard.pages[65].widgets[451].x\":[\"add\",\"22\"],\"templatedashboard.pages[65].widgets[451].y\":[\"add\",\"2\"],\"templatedashboard.pages[65].widgets[451].width\":[\"add\",\"2\"],\"templatedashboard.pages[65].widgets[451].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[451].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[451].fields[1232]\":[\"add\"],\"templatedashboard.pages[65].widgets[451].fields[1232].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[451].fields[1232].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[451].fields[1232].value\":[\"add\",\"37\"],\"templatedashboard.pages[65].widgets[451].fields[1232].widget_fieldid\":[\"add\",\"1232\"],\"templatedashboard.pages[65].widgets[451].widgetid\":[\"add\",\"451\"],\"templatedashboard.pages[65].dashboard_pageid\":[\"add\",\"65\"],\"templatedashboard.templateid\":[\"add\",\"8\"],\"templatedashboard.uuid\":[\"add\",\"24d94fbc340c445eb83a436f76dbcfe0\"],\"templatedashboard.dashboardid\":[\"add\",\"65\"]}'),('clcehtqmv00014ciy59hf695g',1,'Admin',1672645301,'192.168.64.1',0,43,66,NULL,'t3_3','clcehtqmv00004ciy1ocdbtv3','{\"templatedashboard.name\":[\"add\",\"t3_3\"],\"templatedashboard.pages[66]\":[\"add\"],\"templatedashboard.pages[66].dashboard_pageid\":[\"add\",\"66\"],\"templatedashboard.templateid\":[\"add\",\"8\"],\"templatedashboard.uuid\":[\"add\",\"bffd5541610e433e90e10c35e56cd3dc\"],\"templatedashboard.dashboardid\":[\"add\",\"66\"]}'),('clcehwfq200014ciy09lqqrat',1,'Admin',1672645427,'192.168.64.1',0,43,67,NULL,'t4_1','clcehwfq100004ciyoltnmbtn','{\"templatedashboard.name\":[\"add\",\"t4_1\"],\"templatedashboard.pages[67]\":[\"add\"],\"templatedashboard.pages[67].widgets[452]\":[\"add\"],\"templatedashboard.pages[67].widgets[452].x\":[\"add\",\"1\"],\"templatedashboard.pages[67].widgets[452].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[452].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[452].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[452].fields[1233]\":[\"add\"],\"templatedashboard.pages[67].widgets[452].fields[1233].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[452].fields[1233].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[452].fields[1233].value\":[\"add\",\"19\"],\"templatedashboard.pages[67].widgets[452].fields[1233].widget_fieldid\":[\"add\",\"1233\"],\"templatedashboard.pages[67].widgets[452].widgetid\":[\"add\",\"452\"],\"templatedashboard.pages[67].widgets[453]\":[\"add\"],\"templatedashboard.pages[67].widgets[453].x\":[\"add\",\"6\"],\"templatedashboard.pages[67].widgets[453].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[453].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[453].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[453].fields[1234]\":[\"add\"],\"templatedashboard.pages[67].widgets[453].fields[1234].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[453].fields[1234].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[453].fields[1234].value\":[\"add\",\"19\"],\"templatedashboard.pages[67].widgets[453].fields[1234].widget_fieldid\":[\"add\",\"1234\"],\"templatedashboard.pages[67].widgets[453].widgetid\":[\"add\",\"453\"],\"templatedashboard.pages[67].widgets[454]\":[\"add\"],\"templatedashboard.pages[67].widgets[454].x\":[\"add\",\"11\"],\"templatedashboard.pages[67].widgets[454].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[454].fields[1235]\":[\"add\"],\"templatedashboard.pages[67].widgets[454].fields[1235].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[454].fields[1235].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[454].fields[1235].value\":[\"add\",\"19\"],\"templatedashboard.pages[67].widgets[454].fields[1235].widget_fieldid\":[\"add\",\"1235\"],\"templatedashboard.pages[67].widgets[454].widgetid\":[\"add\",\"454\"],\"templatedashboard.pages[67].widgets[455]\":[\"add\"],\"templatedashboard.pages[67].widgets[455].x\":[\"add\",\"13\"],\"templatedashboard.pages[67].widgets[455].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[455].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[455].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[455].fields[1236]\":[\"add\"],\"templatedashboard.pages[67].widgets[455].fields[1236].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[455].fields[1236].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[455].fields[1236].value\":[\"add\",\"23\"],\"templatedashboard.pages[67].widgets[455].fields[1236].widget_fieldid\":[\"add\",\"1236\"],\"templatedashboard.pages[67].widgets[455].widgetid\":[\"add\",\"455\"],\"templatedashboard.pages[67].widgets[456]\":[\"add\"],\"templatedashboard.pages[67].widgets[456].x\":[\"add\",\"17\"],\"templatedashboard.pages[67].widgets[456].y\":[\"add\",\"1\"],\"templatedashboard.pages[67].widgets[456].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[456].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[456].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[456].fields[1237]\":[\"add\"],\"templatedashboard.pages[67].widgets[456].fields[1237].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[456].fields[1237].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[456].fields[1237].value\":[\"add\",\"40\"],\"templatedashboard.pages[67].widgets[456].fields[1237].widget_fieldid\":[\"add\",\"1237\"],\"templatedashboard.pages[67].widgets[456].widgetid\":[\"add\",\"456\"],\"templatedashboard.pages[67].widgets[457]\":[\"add\"],\"templatedashboard.pages[67].widgets[457].x\":[\"add\",\"21\"],\"templatedashboard.pages[67].widgets[457].y\":[\"add\",\"1\"],\"templatedashboard.pages[67].widgets[457].width\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[457].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[457].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[457].fields[1238]\":[\"add\"],\"templatedashboard.pages[67].widgets[457].fields[1238].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[457].fields[1238].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[457].fields[1238].value\":[\"add\",\"45\"],\"templatedashboard.pages[67].widgets[457].fields[1238].widget_fieldid\":[\"add\",\"1238\"],\"templatedashboard.pages[67].widgets[457].widgetid\":[\"add\",\"457\"],\"templatedashboard.pages[67].widgets[458]\":[\"add\"],\"templatedashboard.pages[67].widgets[458].x\":[\"add\",\"1\"],\"templatedashboard.pages[67].widgets[458].y\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[458].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[458].fields[1239]\":[\"add\"],\"templatedashboard.pages[67].widgets[458].fields[1239].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[458].fields[1239].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[458].fields[1239].value\":[\"add\",\"50\"],\"templatedashboard.pages[67].widgets[458].fields[1239].widget_fieldid\":[\"add\",\"1239\"],\"templatedashboard.pages[67].widgets[458].widgetid\":[\"add\",\"458\"],\"templatedashboard.pages[67].widgets[459]\":[\"add\"],\"templatedashboard.pages[67].widgets[459].x\":[\"add\",\"2\"],\"templatedashboard.pages[67].widgets[459].y\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[459].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[459].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[459].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[459].fields[1240]\":[\"add\"],\"templatedashboard.pages[67].widgets[459].fields[1240].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[459].fields[1240].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[459].fields[1240].value\":[\"add\",\"55\"],\"templatedashboard.pages[67].widgets[459].fields[1240].widget_fieldid\":[\"add\",\"1240\"],\"templatedashboard.pages[67].widgets[459].widgetid\":[\"add\",\"459\"],\"templatedashboard.pages[67].widgets[460]\":[\"add\"],\"templatedashboard.pages[67].widgets[460].x\":[\"add\",\"7\"],\"templatedashboard.pages[67].widgets[460].y\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[460].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[460].fields[1241]\":[\"add\"],\"templatedashboard.pages[67].widgets[460].fields[1241].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[460].fields[1241].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[460].fields[1241].value\":[\"add\",\"61\"],\"templatedashboard.pages[67].widgets[460].fields[1241].widget_fieldid\":[\"add\",\"1241\"],\"templatedashboard.pages[67].widgets[460].widgetid\":[\"add\",\"460\"],\"templatedashboard.pages[67].widgets[461]\":[\"add\"],\"templatedashboard.pages[67].widgets[461].x\":[\"add\",\"9\"],\"templatedashboard.pages[67].widgets[461].y\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[461].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[461].fields[1242]\":[\"add\"],\"templatedashboard.pages[67].widgets[461].fields[1242].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[461].fields[1242].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[461].fields[1242].value\":[\"add\",\"67\"],\"templatedashboard.pages[67].widgets[461].fields[1242].widget_fieldid\":[\"add\",\"1242\"],\"templatedashboard.pages[67].widgets[461].widgetid\":[\"add\",\"461\"],\"templatedashboard.pages[67].dashboard_pageid\":[\"add\",\"67\"],\"templatedashboard.templateid\":[\"add\",\"9\"],\"templatedashboard.uuid\":[\"add\",\"3224835a9cbf40d7a077d1cc9433ad65\"],\"templatedashboard.dashboardid\":[\"add\",\"67\"]}'),('clcehxmj200014ciy2nlgqr0a',1,'Admin',1672645482,'192.168.64.1',0,43,68,NULL,'t4_2','clcehxmj100004ciy7qi9cppu','{\"templatedashboard.name\":[\"add\",\"t4_2\"],\"templatedashboard.pages[68]\":[\"add\"],\"templatedashboard.pages[68].widgets[462]\":[\"add\"],\"templatedashboard.pages[68].widgets[462].x\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[462].y\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[462].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[462].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[462].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[462].fields[1243]\":[\"add\"],\"templatedashboard.pages[68].widgets[462].fields[1243].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[462].fields[1243].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[462].fields[1243].value\":[\"add\",\"19\"],\"templatedashboard.pages[68].widgets[462].fields[1243].widget_fieldid\":[\"add\",\"1243\"],\"templatedashboard.pages[68].widgets[462].widgetid\":[\"add\",\"462\"],\"templatedashboard.pages[68].widgets[463]\":[\"add\"],\"templatedashboard.pages[68].widgets[463].x\":[\"add\",\"5\"],\"templatedashboard.pages[68].widgets[463].y\":[\"add\",\"2\"],\"templatedashboard.pages[68].widgets[463].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[463].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[463].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[463].fields[1244]\":[\"add\"],\"templatedashboard.pages[68].widgets[463].fields[1244].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[463].fields[1244].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[463].fields[1244].value\":[\"add\",\"19\"],\"templatedashboard.pages[68].widgets[463].fields[1244].widget_fieldid\":[\"add\",\"1244\"],\"templatedashboard.pages[68].widgets[463].widgetid\":[\"add\",\"463\"],\"templatedashboard.pages[68].widgets[464]\":[\"add\"],\"templatedashboard.pages[68].widgets[464].x\":[\"add\",\"9\"],\"templatedashboard.pages[68].widgets[464].y\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[464].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[464].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[464].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[464].fields[1245]\":[\"add\"],\"templatedashboard.pages[68].widgets[464].fields[1245].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[464].fields[1245].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[464].fields[1245].value\":[\"add\",\"19\"],\"templatedashboard.pages[68].widgets[464].fields[1245].widget_fieldid\":[\"add\",\"1245\"],\"templatedashboard.pages[68].widgets[464].widgetid\":[\"add\",\"464\"],\"templatedashboard.pages[68].widgets[465]\":[\"add\"],\"templatedashboard.pages[68].widgets[465].x\":[\"add\",\"13\"],\"templatedashboard.pages[68].widgets[465].y\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[465].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[465].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[465].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[465].fields[1246]\":[\"add\"],\"templatedashboard.pages[68].widgets[465].fields[1246].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[465].fields[1246].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[465].fields[1246].value\":[\"add\",\"23\"],\"templatedashboard.pages[68].widgets[465].fields[1246].widget_fieldid\":[\"add\",\"1246\"],\"templatedashboard.pages[68].widgets[465].widgetid\":[\"add\",\"465\"],\"templatedashboard.pages[68].widgets[466]\":[\"add\"],\"templatedashboard.pages[68].widgets[466].x\":[\"add\",\"17\"],\"templatedashboard.pages[68].widgets[466].y\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[466].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[466].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[466].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[466].fields[1247]\":[\"add\"],\"templatedashboard.pages[68].widgets[466].fields[1247].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[466].fields[1247].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[466].fields[1247].value\":[\"add\",\"40\"],\"templatedashboard.pages[68].widgets[466].fields[1247].widget_fieldid\":[\"add\",\"1247\"],\"templatedashboard.pages[68].widgets[466].widgetid\":[\"add\",\"466\"],\"templatedashboard.pages[68].widgets[467]\":[\"add\"],\"templatedashboard.pages[68].widgets[467].x\":[\"add\",\"21\"],\"templatedashboard.pages[68].widgets[467].y\":[\"add\",\"2\"],\"templatedashboard.pages[68].widgets[467].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[467].fields[1248]\":[\"add\"],\"templatedashboard.pages[68].widgets[467].fields[1248].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[467].fields[1248].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[467].fields[1248].value\":[\"add\",\"45\"],\"templatedashboard.pages[68].widgets[467].fields[1248].widget_fieldid\":[\"add\",\"1248\"],\"templatedashboard.pages[68].widgets[467].widgetid\":[\"add\",\"467\"],\"templatedashboard.pages[68].widgets[468]\":[\"add\"],\"templatedashboard.pages[68].widgets[468].x\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[468].y\":[\"add\",\"6\"],\"templatedashboard.pages[68].widgets[468].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[468].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[468].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[468].fields[1249]\":[\"add\"],\"templatedashboard.pages[68].widgets[468].fields[1249].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[468].fields[1249].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[468].fields[1249].value\":[\"add\",\"50\"],\"templatedashboard.pages[68].widgets[468].fields[1249].widget_fieldid\":[\"add\",\"1249\"],\"templatedashboard.pages[68].widgets[468].widgetid\":[\"add\",\"468\"],\"templatedashboard.pages[68].widgets[469]\":[\"add\"],\"templatedashboard.pages[68].widgets[469].x\":[\"add\",\"9\"],\"templatedashboard.pages[68].widgets[469].y\":[\"add\",\"5\"],\"templatedashboard.pages[68].widgets[469].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[469].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[469].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[469].fields[1250]\":[\"add\"],\"templatedashboard.pages[68].widgets[469].fields[1250].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[469].fields[1250].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[469].fields[1250].value\":[\"add\",\"55\"],\"templatedashboard.pages[68].widgets[469].fields[1250].widget_fieldid\":[\"add\",\"1250\"],\"templatedashboard.pages[68].widgets[469].widgetid\":[\"add\",\"469\"],\"templatedashboard.pages[68].widgets[470]\":[\"add\"],\"templatedashboard.pages[68].widgets[470].x\":[\"add\",\"14\"],\"templatedashboard.pages[68].widgets[470].y\":[\"add\",\"5\"],\"templatedashboard.pages[68].widgets[470].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[470].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[470].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[470].fields[1251]\":[\"add\"],\"templatedashboard.pages[68].widgets[470].fields[1251].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[470].fields[1251].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[470].fields[1251].value\":[\"add\",\"61\"],\"templatedashboard.pages[68].widgets[470].fields[1251].widget_fieldid\":[\"add\",\"1251\"],\"templatedashboard.pages[68].widgets[470].widgetid\":[\"add\",\"470\"],\"templatedashboard.pages[68].widgets[471]\":[\"add\"],\"templatedashboard.pages[68].widgets[471].x\":[\"add\",\"19\"],\"templatedashboard.pages[68].widgets[471].y\":[\"add\",\"5\"],\"templatedashboard.pages[68].widgets[471].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[471].fields[1252]\":[\"add\"],\"templatedashboard.pages[68].widgets[471].fields[1252].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[471].fields[1252].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[471].fields[1252].value\":[\"add\",\"67\"],\"templatedashboard.pages[68].widgets[471].fields[1252].widget_fieldid\":[\"add\",\"1252\"],\"templatedashboard.pages[68].widgets[471].widgetid\":[\"add\",\"471\"],\"templatedashboard.pages[68].dashboard_pageid\":[\"add\",\"68\"],\"templatedashboard.templateid\":[\"add\",\"9\"],\"templatedashboard.uuid\":[\"add\",\"2a813c3bad4a48f9b778890cbdf6fb17\"],\"templatedashboard.dashboardid\":[\"add\",\"68\"]}'),('clcei02id0001fqiy689l6pgk',1,'Admin',1672645596,'192.168.64.1',0,43,69,NULL,'t4_3','clcei02ic0000fqiyzualp3uk','{\"templatedashboard.name\":[\"add\",\"t4_3\"],\"templatedashboard.pages[69]\":[\"add\"],\"templatedashboard.pages[69].dashboard_pageid\":[\"add\",\"69\"],\"templatedashboard.templateid\":[\"add\",\"9\"],\"templatedashboard.uuid\":[\"add\",\"6e7734bb107249c2b46a4ca3245c88c6\"],\"templatedashboard.dashboardid\":[\"add\",\"69\"]}'),('clcei10cw0001fqiyjwq718zw',1,'Admin',1672645640,'192.168.64.1',0,43,70,NULL,'t5_1','clcei10cv0000fqiy1x5nqpue','{\"templatedashboard.name\":[\"add\",\"t5_1\"],\"templatedashboard.pages[70]\":[\"add\"],\"templatedashboard.pages[70].widgets[472]\":[\"add\"],\"templatedashboard.pages[70].widgets[472].width\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[472].height\":[\"add\",\"3\"],\"templatedashboard.pages[70].widgets[472].type\":[\"add\",\"item\"],\"templatedashboard.pages[70].widgets[472].fields[1253]\":[\"add\"],\"templatedashboard.pages[70].widgets[472].fields[1253].type\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[472].fields[1253].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[70].widgets[472].fields[1253].value\":[\"add\",\"27\"],\"templatedashboard.pages[70].widgets[472].fields[1253].widget_fieldid\":[\"add\",\"1253\"],\"templatedashboard.pages[70].widgets[472].widgetid\":[\"add\",\"472\"],\"templatedashboard.pages[70].widgets[473]\":[\"add\"],\"templatedashboard.pages[70].widgets[473].x\":[\"add\",\"5\"],\"templatedashboard.pages[70].widgets[473].width\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[473].height\":[\"add\",\"3\"],\"templatedashboard.pages[70].widgets[473].type\":[\"add\",\"item\"],\"templatedashboard.pages[70].widgets[473].fields[1254]\":[\"add\"],\"templatedashboard.pages[70].widgets[473].fields[1254].type\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[473].fields[1254].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[70].widgets[473].fields[1254].value\":[\"add\",\"27\"],\"templatedashboard.pages[70].widgets[473].fields[1254].widget_fieldid\":[\"add\",\"1254\"],\"templatedashboard.pages[70].widgets[473].widgetid\":[\"add\",\"473\"],\"templatedashboard.pages[70].widgets[474]\":[\"add\"],\"templatedashboard.pages[70].widgets[474].x\":[\"add\",\"11\"],\"templatedashboard.pages[70].widgets[474].type\":[\"add\",\"item\"],\"templatedashboard.pages[70].widgets[474].fields[1255]\":[\"add\"],\"templatedashboard.pages[70].widgets[474].fields[1255].type\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[474].fields[1255].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[70].widgets[474].fields[1255].value\":[\"add\",\"27\"],\"templatedashboard.pages[70].widgets[474].fields[1255].widget_fieldid\":[\"add\",\"1255\"],\"templatedashboard.pages[70].widgets[474].widgetid\":[\"add\",\"474\"],\"templatedashboard.pages[70].widgets[475]\":[\"add\"],\"templatedashboard.pages[70].widgets[475].x\":[\"add\",\"13\"],\"templatedashboard.pages[70].widgets[475].width\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[475].height\":[\"add\",\"3\"],\"templatedashboard.pages[70].widgets[475].type\":[\"add\",\"item\"],\"templatedashboard.pages[70].widgets[475].fields[1256]\":[\"add\"],\"templatedashboard.pages[70].widgets[475].fields[1256].type\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[475].fields[1256].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[70].widgets[475].fields[1256].value\":[\"add\",\"30\"],\"templatedashboard.pages[70].widgets[475].fields[1256].widget_fieldid\":[\"add\",\"1256\"],\"templatedashboard.pages[70].widgets[475].widgetid\":[\"add\",\"475\"],\"templatedashboard.pages[70].dashboard_pageid\":[\"add\",\"70\"],\"templatedashboard.templateid\":[\"add\",\"10\"],\"templatedashboard.uuid\":[\"add\",\"156b22e22e2a46bb99a5cf1d4f7c3e07\"],\"templatedashboard.dashboardid\":[\"add\",\"70\"]}'),('clcei1jyj00014xiyrktv8h35',1,'Admin',1672645666,'192.168.64.1',0,43,71,NULL,'t5_2','clcei1jyj00004xiytm904mrx','{\"templatedashboard.name\":[\"add\",\"t5_2\"],\"templatedashboard.pages[71]\":[\"add\"],\"templatedashboard.pages[71].widgets[476]\":[\"add\"],\"templatedashboard.pages[71].widgets[476].x\":[\"add\",\"2\"],\"templatedashboard.pages[71].widgets[476].width\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[476].height\":[\"add\",\"3\"],\"templatedashboard.pages[71].widgets[476].type\":[\"add\",\"item\"],\"templatedashboard.pages[71].widgets[476].fields[1257]\":[\"add\"],\"templatedashboard.pages[71].widgets[476].fields[1257].type\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[476].fields[1257].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[71].widgets[476].fields[1257].value\":[\"add\",\"27\"],\"templatedashboard.pages[71].widgets[476].fields[1257].widget_fieldid\":[\"add\",\"1257\"],\"templatedashboard.pages[71].widgets[476].widgetid\":[\"add\",\"476\"],\"templatedashboard.pages[71].widgets[477]\":[\"add\"],\"templatedashboard.pages[71].widgets[477].x\":[\"add\",\"7\"],\"templatedashboard.pages[71].widgets[477].y\":[\"add\",\"1\"],\"templatedashboard.pages[71].widgets[477].width\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[477].height\":[\"add\",\"3\"],\"templatedashboard.pages[71].widgets[477].type\":[\"add\",\"item\"],\"templatedashboard.pages[71].widgets[477].fields[1258]\":[\"add\"],\"templatedashboard.pages[71].widgets[477].fields[1258].type\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[477].fields[1258].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[71].widgets[477].fields[1258].value\":[\"add\",\"27\"],\"templatedashboard.pages[71].widgets[477].fields[1258].widget_fieldid\":[\"add\",\"1258\"],\"templatedashboard.pages[71].widgets[477].widgetid\":[\"add\",\"477\"],\"templatedashboard.pages[71].widgets[478]\":[\"add\"],\"templatedashboard.pages[71].widgets[478].x\":[\"add\",\"12\"],\"templatedashboard.pages[71].widgets[478].y\":[\"add\",\"1\"],\"templatedashboard.pages[71].widgets[478].width\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[478].height\":[\"add\",\"3\"],\"templatedashboard.pages[71].widgets[478].type\":[\"add\",\"item\"],\"templatedashboard.pages[71].widgets[478].fields[1259]\":[\"add\"],\"templatedashboard.pages[71].widgets[478].fields[1259].type\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[478].fields[1259].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[71].widgets[478].fields[1259].value\":[\"add\",\"27\"],\"templatedashboard.pages[71].widgets[478].fields[1259].widget_fieldid\":[\"add\",\"1259\"],\"templatedashboard.pages[71].widgets[478].widgetid\":[\"add\",\"478\"],\"templatedashboard.pages[71].widgets[479]\":[\"add\"],\"templatedashboard.pages[71].widgets[479].x\":[\"add\",\"16\"],\"templatedashboard.pages[71].widgets[479].y\":[\"add\",\"1\"],\"templatedashboard.pages[71].widgets[479].width\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[479].height\":[\"add\",\"3\"],\"templatedashboard.pages[71].widgets[479].type\":[\"add\",\"item\"],\"templatedashboard.pages[71].widgets[479].fields[1260]\":[\"add\"],\"templatedashboard.pages[71].widgets[479].fields[1260].type\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[479].fields[1260].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[71].widgets[479].fields[1260].value\":[\"add\",\"30\"],\"templatedashboard.pages[71].widgets[479].fields[1260].widget_fieldid\":[\"add\",\"1260\"],\"templatedashboard.pages[71].widgets[479].widgetid\":[\"add\",\"479\"],\"templatedashboard.pages[71].dashboard_pageid\":[\"add\",\"71\"],\"templatedashboard.templateid\":[\"add\",\"10\"],\"templatedashboard.uuid\":[\"add\",\"484b8022e817474e8b555cbd4eed6d30\"],\"templatedashboard.dashboardid\":[\"add\",\"71\"]}'),('clcei1qz20001fqiyvfh1cpqt',1,'Admin',1672645675,'192.168.64.1',0,43,72,NULL,'t5_3','clcei1qz20000fqiygj0zfygw','{\"templatedashboard.name\":[\"add\",\"t5_3\"],\"templatedashboard.pages[72]\":[\"add\"],\"templatedashboard.pages[72].dashboard_pageid\":[\"add\",\"72\"],\"templatedashboard.templateid\":[\"add\",\"10\"],\"templatedashboard.uuid\":[\"add\",\"c1957d2208f44561abe0350081d7182a\"],\"templatedashboard.dashboardid\":[\"add\",\"72\"]}'),('clcei3htw00014ciyvkfk658j',1,'Admin',1672645756,'192.168.64.1',0,43,73,NULL,'t6_1','clcei3htw00004ciy0w0jn2pr','{\"templatedashboard.name\":[\"add\",\"t6_1\"],\"templatedashboard.pages[73]\":[\"add\"],\"templatedashboard.pages[73].widgets[480]\":[\"add\"],\"templatedashboard.pages[73].widgets[480].width\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[480].height\":[\"add\",\"3\"],\"templatedashboard.pages[73].widgets[480].type\":[\"add\",\"item\"],\"templatedashboard.pages[73].widgets[480].fields[1261]\":[\"add\"],\"templatedashboard.pages[73].widgets[480].fields[1261].type\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[480].fields[1261].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[73].widgets[480].fields[1261].value\":[\"add\",\"33\"],\"templatedashboard.pages[73].widgets[480].fields[1261].widget_fieldid\":[\"add\",\"1261\"],\"templatedashboard.pages[73].widgets[480].widgetid\":[\"add\",\"480\"],\"templatedashboard.pages[73].widgets[481]\":[\"add\"],\"templatedashboard.pages[73].widgets[481].x\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[481].y\":[\"add\",\"1\"],\"templatedashboard.pages[73].widgets[481].width\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[481].height\":[\"add\",\"3\"],\"templatedashboard.pages[73].widgets[481].type\":[\"add\",\"item\"],\"templatedashboard.pages[73].widgets[481].fields[1262]\":[\"add\"],\"templatedashboard.pages[73].widgets[481].fields[1262].type\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[481].fields[1262].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[73].widgets[481].fields[1262].value\":[\"add\",\"33\"],\"templatedashboard.pages[73].widgets[481].fields[1262].widget_fieldid\":[\"add\",\"1262\"],\"templatedashboard.pages[73].widgets[481].widgetid\":[\"add\",\"481\"],\"templatedashboard.pages[73].widgets[482]\":[\"add\"],\"templatedashboard.pages[73].widgets[482].x\":[\"add\",\"9\"],\"templatedashboard.pages[73].widgets[482].y\":[\"add\",\"1\"],\"templatedashboard.pages[73].widgets[482].width\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[482].height\":[\"add\",\"3\"],\"templatedashboard.pages[73].widgets[482].type\":[\"add\",\"item\"],\"templatedashboard.pages[73].widgets[482].fields[1263]\":[\"add\"],\"templatedashboard.pages[73].widgets[482].fields[1263].type\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[482].fields[1263].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[73].widgets[482].fields[1263].value\":[\"add\",\"33\"],\"templatedashboard.pages[73].widgets[482].fields[1263].widget_fieldid\":[\"add\",\"1263\"],\"templatedashboard.pages[73].widgets[482].widgetid\":[\"add\",\"482\"],\"templatedashboard.pages[73].widgets[483]\":[\"add\"],\"templatedashboard.pages[73].widgets[483].x\":[\"add\",\"13\"],\"templatedashboard.pages[73].widgets[483].y\":[\"add\",\"2\"],\"templatedashboard.pages[73].widgets[483].width\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[483].height\":[\"add\",\"3\"],\"templatedashboard.pages[73].widgets[483].type\":[\"add\",\"item\"],\"templatedashboard.pages[73].widgets[483].fields[1264]\":[\"add\"],\"templatedashboard.pages[73].widgets[483].fields[1264].type\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[483].fields[1264].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[73].widgets[483].fields[1264].value\":[\"add\",\"36\"],\"templatedashboard.pages[73].widgets[483].fields[1264].widget_fieldid\":[\"add\",\"1264\"],\"templatedashboard.pages[73].widgets[483].widgetid\":[\"add\",\"483\"],\"templatedashboard.pages[73].dashboard_pageid\":[\"add\",\"73\"],\"templatedashboard.templateid\":[\"add\",\"11\"],\"templatedashboard.uuid\":[\"add\",\"f6bb49da3a8d48bdb3c79dceb3202b6d\"],\"templatedashboard.dashboardid\":[\"add\",\"73\"]}'),('clcei3yvx0001fqiytzv6770b',1,'Admin',1672645778,'192.168.64.1',0,43,74,NULL,'t6_2','clcei3yvw0000fqiyihuehbvi','{\"templatedashboard.name\":[\"add\",\"t6_2\"],\"templatedashboard.pages[74]\":[\"add\"],\"templatedashboard.pages[74].widgets[484]\":[\"add\"],\"templatedashboard.pages[74].widgets[484].width\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[484].height\":[\"add\",\"3\"],\"templatedashboard.pages[74].widgets[484].type\":[\"add\",\"item\"],\"templatedashboard.pages[74].widgets[484].fields[1265]\":[\"add\"],\"templatedashboard.pages[74].widgets[484].fields[1265].type\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[484].fields[1265].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[74].widgets[484].fields[1265].value\":[\"add\",\"33\"],\"templatedashboard.pages[74].widgets[484].fields[1265].widget_fieldid\":[\"add\",\"1265\"],\"templatedashboard.pages[74].widgets[484].widgetid\":[\"add\",\"484\"],\"templatedashboard.pages[74].widgets[485]\":[\"add\"],\"templatedashboard.pages[74].widgets[485].x\":[\"add\",\"5\"],\"templatedashboard.pages[74].widgets[485].type\":[\"add\",\"item\"],\"templatedashboard.pages[74].widgets[485].fields[1266]\":[\"add\"],\"templatedashboard.pages[74].widgets[485].fields[1266].type\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[485].fields[1266].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[74].widgets[485].fields[1266].value\":[\"add\",\"33\"],\"templatedashboard.pages[74].widgets[485].fields[1266].widget_fieldid\":[\"add\",\"1266\"],\"templatedashboard.pages[74].widgets[485].widgetid\":[\"add\",\"485\"],\"templatedashboard.pages[74].widgets[486]\":[\"add\"],\"templatedashboard.pages[74].widgets[486].x\":[\"add\",\"8\"],\"templatedashboard.pages[74].widgets[486].width\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[486].height\":[\"add\",\"3\"],\"templatedashboard.pages[74].widgets[486].type\":[\"add\",\"item\"],\"templatedashboard.pages[74].widgets[486].fields[1267]\":[\"add\"],\"templatedashboard.pages[74].widgets[486].fields[1267].type\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[486].fields[1267].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[74].widgets[486].fields[1267].value\":[\"add\",\"33\"],\"templatedashboard.pages[74].widgets[486].fields[1267].widget_fieldid\":[\"add\",\"1267\"],\"templatedashboard.pages[74].widgets[486].widgetid\":[\"add\",\"486\"],\"templatedashboard.pages[74].widgets[487]\":[\"add\"],\"templatedashboard.pages[74].widgets[487].x\":[\"add\",\"13\"],\"templatedashboard.pages[74].widgets[487].y\":[\"add\",\"1\"],\"templatedashboard.pages[74].widgets[487].width\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[487].height\":[\"add\",\"3\"],\"templatedashboard.pages[74].widgets[487].type\":[\"add\",\"item\"],\"templatedashboard.pages[74].widgets[487].fields[1268]\":[\"add\"],\"templatedashboard.pages[74].widgets[487].fields[1268].type\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[487].fields[1268].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[74].widgets[487].fields[1268].value\":[\"add\",\"36\"],\"templatedashboard.pages[74].widgets[487].fields[1268].widget_fieldid\":[\"add\",\"1268\"],\"templatedashboard.pages[74].widgets[487].widgetid\":[\"add\",\"487\"],\"templatedashboard.pages[74].dashboard_pageid\":[\"add\",\"74\"],\"templatedashboard.templateid\":[\"add\",\"11\"],\"templatedashboard.uuid\":[\"add\",\"63ea7334f9aa43c0a6b3572a7da908de\"],\"templatedashboard.dashboardid\":[\"add\",\"74\"]}'),('clcei453600014xiyhm6jbupk',1,'Admin',1672645786,'192.168.64.1',0,43,75,NULL,'t6_3','clcei453600004xiy37elhhrk','{\"templatedashboard.name\":[\"add\",\"t6_3\"],\"templatedashboard.pages[75]\":[\"add\"],\"templatedashboard.pages[75].dashboard_pageid\":[\"add\",\"75\"],\"templatedashboard.templateid\":[\"add\",\"11\"],\"templatedashboard.uuid\":[\"add\",\"ef5995be4ddb4877bf37bd5aa4e4e148\"],\"templatedashboard.dashboardid\":[\"add\",\"75\"]}'),('clcei4wvi00014xiyeu6xzzwp',1,'Admin',1672645822,'192.168.64.1',0,43,76,NULL,'t7_1','clcei4wvi00004xiyxmqc8dki','{\"templatedashboard.name\":[\"add\",\"t7_1\"],\"templatedashboard.pages[76]\":[\"add\"],\"templatedashboard.pages[76].widgets[488]\":[\"add\"],\"templatedashboard.pages[76].widgets[488].x\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[488].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[488].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[488].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[488].fields[1269]\":[\"add\"],\"templatedashboard.pages[76].widgets[488].fields[1269].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[488].fields[1269].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[488].fields[1269].value\":[\"add\",\"39\"],\"templatedashboard.pages[76].widgets[488].fields[1269].widget_fieldid\":[\"add\",\"1269\"],\"templatedashboard.pages[76].widgets[488].widgetid\":[\"add\",\"488\"],\"templatedashboard.pages[76].widgets[489]\":[\"add\"],\"templatedashboard.pages[76].widgets[489].x\":[\"add\",\"5\"],\"templatedashboard.pages[76].widgets[489].y\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[489].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[489].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[489].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[489].fields[1270]\":[\"add\"],\"templatedashboard.pages[76].widgets[489].fields[1270].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[489].fields[1270].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[489].fields[1270].value\":[\"add\",\"39\"],\"templatedashboard.pages[76].widgets[489].fields[1270].widget_fieldid\":[\"add\",\"1270\"],\"templatedashboard.pages[76].widgets[489].widgetid\":[\"add\",\"489\"],\"templatedashboard.pages[76].widgets[490]\":[\"add\"],\"templatedashboard.pages[76].widgets[490].x\":[\"add\",\"10\"],\"templatedashboard.pages[76].widgets[490].y\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[490].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[490].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[490].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[490].fields[1271]\":[\"add\"],\"templatedashboard.pages[76].widgets[490].fields[1271].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[490].fields[1271].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[490].fields[1271].value\":[\"add\",\"39\"],\"templatedashboard.pages[76].widgets[490].fields[1271].widget_fieldid\":[\"add\",\"1271\"],\"templatedashboard.pages[76].widgets[490].widgetid\":[\"add\",\"490\"],\"templatedashboard.pages[76].widgets[491]\":[\"add\"],\"templatedashboard.pages[76].widgets[491].x\":[\"add\",\"14\"],\"templatedashboard.pages[76].widgets[491].y\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[491].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[491].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[491].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[491].fields[1272]\":[\"add\"],\"templatedashboard.pages[76].widgets[491].fields[1272].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[491].fields[1272].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[491].fields[1272].value\":[\"add\",\"44\"],\"templatedashboard.pages[76].widgets[491].fields[1272].widget_fieldid\":[\"add\",\"1272\"],\"templatedashboard.pages[76].widgets[491].widgetid\":[\"add\",\"491\"],\"templatedashboard.pages[76].widgets[492]\":[\"add\"],\"templatedashboard.pages[76].widgets[492].x\":[\"add\",\"18\"],\"templatedashboard.pages[76].widgets[492].y\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[492].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[492].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[492].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[492].fields[1273]\":[\"add\"],\"templatedashboard.pages[76].widgets[492].fields[1273].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[492].fields[1273].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[492].fields[1273].value\":[\"add\",\"60\"],\"templatedashboard.pages[76].widgets[492].fields[1273].widget_fieldid\":[\"add\",\"1273\"],\"templatedashboard.pages[76].widgets[492].widgetid\":[\"add\",\"492\"],\"templatedashboard.pages[76].widgets[493]\":[\"add\"],\"templatedashboard.pages[76].widgets[493].x\":[\"add\",\"2\"],\"templatedashboard.pages[76].widgets[493].y\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[493].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[493].fields[1274]\":[\"add\"],\"templatedashboard.pages[76].widgets[493].fields[1274].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[493].fields[1274].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[493].fields[1274].value\":[\"add\",\"66\"],\"templatedashboard.pages[76].widgets[493].fields[1274].widget_fieldid\":[\"add\",\"1274\"],\"templatedashboard.pages[76].widgets[493].widgetid\":[\"add\",\"493\"],\"templatedashboard.pages[76].dashboard_pageid\":[\"add\",\"76\"],\"templatedashboard.templateid\":[\"add\",\"12\"],\"templatedashboard.uuid\":[\"add\",\"13e50f68bd4b41e5afe44aac517ff989\"],\"templatedashboard.dashboardid\":[\"add\",\"76\"]}'),('clcei5jf40001fqiyav889ea9',1,'Admin',1672645852,'192.168.64.1',0,43,77,NULL,'t7_2','clcei5jf40000fqiyelr6z4y8','{\"templatedashboard.name\":[\"add\",\"t7_2\"],\"templatedashboard.pages[77]\":[\"add\"],\"templatedashboard.pages[77].widgets[494]\":[\"add\"],\"templatedashboard.pages[77].widgets[494].x\":[\"add\",\"1\"],\"templatedashboard.pages[77].widgets[494].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[494].fields[1275]\":[\"add\"],\"templatedashboard.pages[77].widgets[494].fields[1275].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[494].fields[1275].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[494].fields[1275].value\":[\"add\",\"39\"],\"templatedashboard.pages[77].widgets[494].fields[1275].widget_fieldid\":[\"add\",\"1275\"],\"templatedashboard.pages[77].widgets[494].widgetid\":[\"add\",\"494\"],\"templatedashboard.pages[77].widgets[495]\":[\"add\"],\"templatedashboard.pages[77].widgets[495].x\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[495].width\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[495].height\":[\"add\",\"3\"],\"templatedashboard.pages[77].widgets[495].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[495].fields[1276]\":[\"add\"],\"templatedashboard.pages[77].widgets[495].fields[1276].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[495].fields[1276].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[495].fields[1276].value\":[\"add\",\"39\"],\"templatedashboard.pages[77].widgets[495].fields[1276].widget_fieldid\":[\"add\",\"1276\"],\"templatedashboard.pages[77].widgets[495].widgetid\":[\"add\",\"495\"],\"templatedashboard.pages[77].widgets[496]\":[\"add\"],\"templatedashboard.pages[77].widgets[496].x\":[\"add\",\"9\"],\"templatedashboard.pages[77].widgets[496].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[496].fields[1277]\":[\"add\"],\"templatedashboard.pages[77].widgets[496].fields[1277].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[496].fields[1277].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[496].fields[1277].value\":[\"add\",\"39\"],\"templatedashboard.pages[77].widgets[496].fields[1277].widget_fieldid\":[\"add\",\"1277\"],\"templatedashboard.pages[77].widgets[496].widgetid\":[\"add\",\"496\"],\"templatedashboard.pages[77].widgets[497]\":[\"add\"],\"templatedashboard.pages[77].widgets[497].x\":[\"add\",\"11\"],\"templatedashboard.pages[77].widgets[497].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[497].fields[1278]\":[\"add\"],\"templatedashboard.pages[77].widgets[497].fields[1278].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[497].fields[1278].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[497].fields[1278].value\":[\"add\",\"44\"],\"templatedashboard.pages[77].widgets[497].fields[1278].widget_fieldid\":[\"add\",\"1278\"],\"templatedashboard.pages[77].widgets[497].widgetid\":[\"add\",\"497\"],\"templatedashboard.pages[77].widgets[498]\":[\"add\"],\"templatedashboard.pages[77].widgets[498].x\":[\"add\",\"12\"],\"templatedashboard.pages[77].widgets[498].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[498].fields[1279]\":[\"add\"],\"templatedashboard.pages[77].widgets[498].fields[1279].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[498].fields[1279].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[498].fields[1279].value\":[\"add\",\"60\"],\"templatedashboard.pages[77].widgets[498].fields[1279].widget_fieldid\":[\"add\",\"1279\"],\"templatedashboard.pages[77].widgets[498].widgetid\":[\"add\",\"498\"],\"templatedashboard.pages[77].widgets[499]\":[\"add\"],\"templatedashboard.pages[77].widgets[499].x\":[\"add\",\"15\"],\"templatedashboard.pages[77].widgets[499].y\":[\"add\",\"1\"],\"templatedashboard.pages[77].widgets[499].width\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[499].height\":[\"add\",\"3\"],\"templatedashboard.pages[77].widgets[499].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[499].fields[1280]\":[\"add\"],\"templatedashboard.pages[77].widgets[499].fields[1280].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[499].fields[1280].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[499].fields[1280].value\":[\"add\",\"66\"],\"templatedashboard.pages[77].widgets[499].fields[1280].widget_fieldid\":[\"add\",\"1280\"],\"templatedashboard.pages[77].widgets[499].widgetid\":[\"add\",\"499\"],\"templatedashboard.pages[77].dashboard_pageid\":[\"add\",\"77\"],\"templatedashboard.templateid\":[\"add\",\"12\"],\"templatedashboard.uuid\":[\"add\",\"1088bd2ca08845478aeeac3813e17a2b\"],\"templatedashboard.dashboardid\":[\"add\",\"77\"]}'),('clcei5ynk0001fqiya0po03l4',1,'Admin',1672645871,'192.168.64.1',0,43,78,NULL,'t7_3','clcei5ynk0000fqiyrkqk5zaw','{\"templatedashboard.name\":[\"add\",\"t7_3\"],\"templatedashboard.pages[78]\":[\"add\"],\"templatedashboard.pages[78].dashboard_pageid\":[\"add\",\"78\"],\"templatedashboard.templateid\":[\"add\",\"12\"],\"templatedashboard.uuid\":[\"add\",\"797249a0beeb4f99a549aeb4bcd92e48\"],\"templatedashboard.dashboardid\":[\"add\",\"78\"]}'),('clceijnv000014xiynmc5wwsv',1,'Admin',1672646510,'192.168.64.1',0,43,79,NULL,'t8_1','clceijnuz00004xiy8n8g7tt4','{\"templatedashboard.name\":[\"add\",\"t8_1\"],\"templatedashboard.pages[79]\":[\"add\"],\"templatedashboard.pages[79].widgets[500]\":[\"add\"],\"templatedashboard.pages[79].widgets[500].x\":[\"add\",\"1\"],\"templatedashboard.pages[79].widgets[500].width\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[500].height\":[\"add\",\"3\"],\"templatedashboard.pages[79].widgets[500].type\":[\"add\",\"item\"],\"templatedashboard.pages[79].widgets[500].fields[1281]\":[\"add\"],\"templatedashboard.pages[79].widgets[500].fields[1281].type\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[500].fields[1281].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[79].widgets[500].fields[1281].value\":[\"add\",\"49\"],\"templatedashboard.pages[79].widgets[500].fields[1281].widget_fieldid\":[\"add\",\"1281\"],\"templatedashboard.pages[79].widgets[500].widgetid\":[\"add\",\"500\"],\"templatedashboard.pages[79].widgets[501]\":[\"add\"],\"templatedashboard.pages[79].widgets[501].x\":[\"add\",\"5\"],\"templatedashboard.pages[79].widgets[501].width\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[501].height\":[\"add\",\"3\"],\"templatedashboard.pages[79].widgets[501].type\":[\"add\",\"item\"],\"templatedashboard.pages[79].widgets[501].fields[1282]\":[\"add\"],\"templatedashboard.pages[79].widgets[501].fields[1282].type\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[501].fields[1282].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[79].widgets[501].fields[1282].value\":[\"add\",\"49\"],\"templatedashboard.pages[79].widgets[501].fields[1282].widget_fieldid\":[\"add\",\"1282\"],\"templatedashboard.pages[79].widgets[501].widgetid\":[\"add\",\"501\"],\"templatedashboard.pages[79].widgets[502]\":[\"add\"],\"templatedashboard.pages[79].widgets[502].x\":[\"add\",\"11\"],\"templatedashboard.pages[79].widgets[502].width\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[502].height\":[\"add\",\"3\"],\"templatedashboard.pages[79].widgets[502].type\":[\"add\",\"item\"],\"templatedashboard.pages[79].widgets[502].fields[1283]\":[\"add\"],\"templatedashboard.pages[79].widgets[502].fields[1283].type\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[502].fields[1283].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[79].widgets[502].fields[1283].value\":[\"add\",\"49\"],\"templatedashboard.pages[79].widgets[502].fields[1283].widget_fieldid\":[\"add\",\"1283\"],\"templatedashboard.pages[79].widgets[502].widgetid\":[\"add\",\"502\"],\"templatedashboard.pages[79].widgets[503]\":[\"add\"],\"templatedashboard.pages[79].widgets[503].x\":[\"add\",\"16\"],\"templatedashboard.pages[79].widgets[503].y\":[\"add\",\"1\"],\"templatedashboard.pages[79].widgets[503].type\":[\"add\",\"item\"],\"templatedashboard.pages[79].widgets[503].fields[1284]\":[\"add\"],\"templatedashboard.pages[79].widgets[503].fields[1284].type\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[503].fields[1284].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[79].widgets[503].fields[1284].value\":[\"add\",\"54\"],\"templatedashboard.pages[79].widgets[503].fields[1284].widget_fieldid\":[\"add\",\"1284\"],\"templatedashboard.pages[79].widgets[503].widgetid\":[\"add\",\"503\"],\"templatedashboard.pages[79].dashboard_pageid\":[\"add\",\"79\"],\"templatedashboard.templateid\":[\"add\",\"13\"],\"templatedashboard.uuid\":[\"add\",\"343c6e486b3a4ff79a6050ffe9e8b23c\"],\"templatedashboard.dashboardid\":[\"add\",\"79\"]}'),('clceik66e0001fqiyibgqdj1c',1,'Admin',1672646534,'192.168.64.1',0,43,80,NULL,'t8_2','clceik66d0000fqiy0onsqnc7','{\"templatedashboard.name\":[\"add\",\"t8_2\"],\"templatedashboard.pages[80]\":[\"add\"],\"templatedashboard.pages[80].widgets[504]\":[\"add\"],\"templatedashboard.pages[80].widgets[504].x\":[\"add\",\"1\"],\"templatedashboard.pages[80].widgets[504].y\":[\"add\",\"1\"],\"templatedashboard.pages[80].widgets[504].type\":[\"add\",\"item\"],\"templatedashboard.pages[80].widgets[504].fields[1285]\":[\"add\"],\"templatedashboard.pages[80].widgets[504].fields[1285].type\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[504].fields[1285].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[80].widgets[504].fields[1285].value\":[\"add\",\"49\"],\"templatedashboard.pages[80].widgets[504].fields[1285].widget_fieldid\":[\"add\",\"1285\"],\"templatedashboard.pages[80].widgets[504].widgetid\":[\"add\",\"504\"],\"templatedashboard.pages[80].widgets[505]\":[\"add\"],\"templatedashboard.pages[80].widgets[505].x\":[\"add\",\"3\"],\"templatedashboard.pages[80].widgets[505].width\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[505].height\":[\"add\",\"3\"],\"templatedashboard.pages[80].widgets[505].type\":[\"add\",\"item\"],\"templatedashboard.pages[80].widgets[505].fields[1286]\":[\"add\"],\"templatedashboard.pages[80].widgets[505].fields[1286].type\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[505].fields[1286].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[80].widgets[505].fields[1286].value\":[\"add\",\"49\"],\"templatedashboard.pages[80].widgets[505].fields[1286].widget_fieldid\":[\"add\",\"1286\"],\"templatedashboard.pages[80].widgets[505].widgetid\":[\"add\",\"505\"],\"templatedashboard.pages[80].widgets[506]\":[\"add\"],\"templatedashboard.pages[80].widgets[506].x\":[\"add\",\"7\"],\"templatedashboard.pages[80].widgets[506].type\":[\"add\",\"item\"],\"templatedashboard.pages[80].widgets[506].fields[1287]\":[\"add\"],\"templatedashboard.pages[80].widgets[506].fields[1287].type\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[506].fields[1287].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[80].widgets[506].fields[1287].value\":[\"add\",\"49\"],\"templatedashboard.pages[80].widgets[506].fields[1287].widget_fieldid\":[\"add\",\"1287\"],\"templatedashboard.pages[80].widgets[506].widgetid\":[\"add\",\"506\"],\"templatedashboard.pages[80].widgets[507]\":[\"add\"],\"templatedashboard.pages[80].widgets[507].x\":[\"add\",\"9\"],\"templatedashboard.pages[80].widgets[507].width\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[507].height\":[\"add\",\"3\"],\"templatedashboard.pages[80].widgets[507].type\":[\"add\",\"item\"],\"templatedashboard.pages[80].widgets[507].fields[1288]\":[\"add\"],\"templatedashboard.pages[80].widgets[507].fields[1288].type\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[507].fields[1288].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[80].widgets[507].fields[1288].value\":[\"add\",\"54\"],\"templatedashboard.pages[80].widgets[507].fields[1288].widget_fieldid\":[\"add\",\"1288\"],\"templatedashboard.pages[80].widgets[507].widgetid\":[\"add\",\"507\"],\"templatedashboard.pages[80].dashboard_pageid\":[\"add\",\"80\"],\"templatedashboard.templateid\":[\"add\",\"13\"],\"templatedashboard.uuid\":[\"add\",\"b0595596f2044d9caeba93dbd355f489\"],\"templatedashboard.dashboardid\":[\"add\",\"80\"]}'),('clceikco500014ciyloo7f29y',1,'Admin',1672646543,'192.168.64.1',0,43,81,NULL,'t8_3','clceikco400004ciyvbfy11yb','{\"templatedashboard.name\":[\"add\",\"t8_3\"],\"templatedashboard.pages[81]\":[\"add\"],\"templatedashboard.pages[81].dashboard_pageid\":[\"add\",\"81\"],\"templatedashboard.templateid\":[\"add\",\"13\"],\"templatedashboard.uuid\":[\"add\",\"742afc18887247ed8fdd5eb8f33b8f56\"],\"templatedashboard.dashboardid\":[\"add\",\"81\"]}'),('clceil72s0001fqiywot8f9hv',1,'Admin',1672646582,'192.168.64.1',0,43,82,NULL,'t9_1','clceil72s0000fqiyfgkh4mhi','{\"templatedashboard.name\":[\"add\",\"t9_1\"],\"templatedashboard.pages[82]\":[\"add\"],\"templatedashboard.pages[82].widgets[508]\":[\"add\"],\"templatedashboard.pages[82].widgets[508].width\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[508].height\":[\"add\",\"3\"],\"templatedashboard.pages[82].widgets[508].type\":[\"add\",\"item\"],\"templatedashboard.pages[82].widgets[508].fields[1289]\":[\"add\"],\"templatedashboard.pages[82].widgets[508].fields[1289].type\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[508].fields[1289].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[82].widgets[508].fields[1289].value\":[\"add\",\"59\"],\"templatedashboard.pages[82].widgets[508].fields[1289].widget_fieldid\":[\"add\",\"1289\"],\"templatedashboard.pages[82].widgets[508].widgetid\":[\"add\",\"508\"],\"templatedashboard.pages[82].widgets[509]\":[\"add\"],\"templatedashboard.pages[82].widgets[509].x\":[\"add\",\"6\"],\"templatedashboard.pages[82].widgets[509].type\":[\"add\",\"item\"],\"templatedashboard.pages[82].widgets[509].fields[1290]\":[\"add\"],\"templatedashboard.pages[82].widgets[509].fields[1290].type\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[509].fields[1290].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[82].widgets[509].fields[1290].value\":[\"add\",\"59\"],\"templatedashboard.pages[82].widgets[509].fields[1290].widget_fieldid\":[\"add\",\"1290\"],\"templatedashboard.pages[82].widgets[509].widgetid\":[\"add\",\"509\"],\"templatedashboard.pages[82].widgets[510]\":[\"add\"],\"templatedashboard.pages[82].widgets[510].x\":[\"add\",\"7\"],\"templatedashboard.pages[82].widgets[510].width\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[510].height\":[\"add\",\"3\"],\"templatedashboard.pages[82].widgets[510].type\":[\"add\",\"item\"],\"templatedashboard.pages[82].widgets[510].fields[1291]\":[\"add\"],\"templatedashboard.pages[82].widgets[510].fields[1291].type\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[510].fields[1291].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[82].widgets[510].fields[1291].value\":[\"add\",\"59\"],\"templatedashboard.pages[82].widgets[510].fields[1291].widget_fieldid\":[\"add\",\"1291\"],\"templatedashboard.pages[82].widgets[510].widgetid\":[\"add\",\"510\"],\"templatedashboard.pages[82].widgets[511]\":[\"add\"],\"templatedashboard.pages[82].widgets[511].x\":[\"add\",\"12\"],\"templatedashboard.pages[82].widgets[511].y\":[\"add\",\"1\"],\"templatedashboard.pages[82].widgets[511].width\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[511].height\":[\"add\",\"3\"],\"templatedashboard.pages[82].widgets[511].type\":[\"add\",\"item\"],\"templatedashboard.pages[82].widgets[511].fields[1292]\":[\"add\"],\"templatedashboard.pages[82].widgets[511].fields[1292].type\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[511].fields[1292].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[82].widgets[511].fields[1292].value\":[\"add\",\"65\"],\"templatedashboard.pages[82].widgets[511].fields[1292].widget_fieldid\":[\"add\",\"1292\"],\"templatedashboard.pages[82].widgets[511].widgetid\":[\"add\",\"511\"],\"templatedashboard.pages[82].dashboard_pageid\":[\"add\",\"82\"],\"templatedashboard.templateid\":[\"add\",\"14\"],\"templatedashboard.uuid\":[\"add\",\"b1c077d19c194124b46fedffbc3ad29a\"],\"templatedashboard.dashboardid\":[\"add\",\"82\"]}'),('clceilojx00014xiy7yxxzp58',1,'Admin',1672646605,'192.168.64.1',0,43,83,NULL,'t9_2','clceilojw00004xiy4jdifw7t','{\"templatedashboard.name\":[\"add\",\"t9_2\"],\"templatedashboard.pages[83]\":[\"add\"],\"templatedashboard.pages[83].widgets[512]\":[\"add\"],\"templatedashboard.pages[83].widgets[512].x\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[512].y\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[512].width\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[512].height\":[\"add\",\"3\"],\"templatedashboard.pages[83].widgets[512].type\":[\"add\",\"item\"],\"templatedashboard.pages[83].widgets[512].fields[1293]\":[\"add\"],\"templatedashboard.pages[83].widgets[512].fields[1293].type\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[512].fields[1293].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[83].widgets[512].fields[1293].value\":[\"add\",\"59\"],\"templatedashboard.pages[83].widgets[512].fields[1293].widget_fieldid\":[\"add\",\"1293\"],\"templatedashboard.pages[83].widgets[512].widgetid\":[\"add\",\"512\"],\"templatedashboard.pages[83].widgets[513]\":[\"add\"],\"templatedashboard.pages[83].widgets[513].x\":[\"add\",\"5\"],\"templatedashboard.pages[83].widgets[513].y\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[513].width\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[513].height\":[\"add\",\"3\"],\"templatedashboard.pages[83].widgets[513].type\":[\"add\",\"item\"],\"templatedashboard.pages[83].widgets[513].fields[1294]\":[\"add\"],\"templatedashboard.pages[83].widgets[513].fields[1294].type\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[513].fields[1294].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[83].widgets[513].fields[1294].value\":[\"add\",\"59\"],\"templatedashboard.pages[83].widgets[513].fields[1294].widget_fieldid\":[\"add\",\"1294\"],\"templatedashboard.pages[83].widgets[513].widgetid\":[\"add\",\"513\"],\"templatedashboard.pages[83].widgets[514]\":[\"add\"],\"templatedashboard.pages[83].widgets[514].x\":[\"add\",\"11\"],\"templatedashboard.pages[83].widgets[514].y\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[514].type\":[\"add\",\"item\"],\"templatedashboard.pages[83].widgets[514].fields[1295]\":[\"add\"],\"templatedashboard.pages[83].widgets[514].fields[1295].type\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[514].fields[1295].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[83].widgets[514].fields[1295].value\":[\"add\",\"59\"],\"templatedashboard.pages[83].widgets[514].fields[1295].widget_fieldid\":[\"add\",\"1295\"],\"templatedashboard.pages[83].widgets[514].widgetid\":[\"add\",\"514\"],\"templatedashboard.pages[83].widgets[515]\":[\"add\"],\"templatedashboard.pages[83].widgets[515].x\":[\"add\",\"13\"],\"templatedashboard.pages[83].widgets[515].y\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[515].width\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[515].height\":[\"add\",\"3\"],\"templatedashboard.pages[83].widgets[515].type\":[\"add\",\"item\"],\"templatedashboard.pages[83].widgets[515].fields[1296]\":[\"add\"],\"templatedashboard.pages[83].widgets[515].fields[1296].type\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[515].fields[1296].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[83].widgets[515].fields[1296].value\":[\"add\",\"65\"],\"templatedashboard.pages[83].widgets[515].fields[1296].widget_fieldid\":[\"add\",\"1296\"],\"templatedashboard.pages[83].widgets[515].widgetid\":[\"add\",\"515\"],\"templatedashboard.pages[83].dashboard_pageid\":[\"add\",\"83\"],\"templatedashboard.templateid\":[\"add\",\"14\"],\"templatedashboard.uuid\":[\"add\",\"c802a70b8f3e4b8f91e0f1ccc379beea\"],\"templatedashboard.dashboardid\":[\"add\",\"83\"]}'),('clceilu8q00014ciykbv5hvjn',1,'Admin',1672646612,'192.168.64.1',0,43,84,NULL,'t9_3','clceilu8q00004ciyvvpj0ndh','{\"templatedashboard.name\":[\"add\",\"t9_3\"],\"templatedashboard.pages[84]\":[\"add\"],\"templatedashboard.pages[84].dashboard_pageid\":[\"add\",\"84\"],\"templatedashboard.templateid\":[\"add\",\"14\"],\"templatedashboard.uuid\":[\"add\",\"c99367ebae2c4ad28766ee579df51952\"],\"templatedashboard.dashboardid\":[\"add\",\"84\"]}'),('clceimfnm00014ciy333xbd6e',1,'Admin',1672646640,'192.168.64.1',0,43,85,NULL,'t10_1','clceimfnm00004ciy7wvw9nay','{\"templatedashboard.name\":[\"add\",\"t10_1\"],\"templatedashboard.pages[85]\":[\"add\"],\"templatedashboard.pages[85].widgets[516]\":[\"add\"],\"templatedashboard.pages[85].widgets[516].x\":[\"add\",\"1\"],\"templatedashboard.pages[85].widgets[516].width\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[516].height\":[\"add\",\"3\"],\"templatedashboard.pages[85].widgets[516].type\":[\"add\",\"item\"],\"templatedashboard.pages[85].widgets[516].fields[1297]\":[\"add\"],\"templatedashboard.pages[85].widgets[516].fields[1297].type\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[516].fields[1297].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[85].widgets[516].fields[1297].value\":[\"add\",\"71\"],\"templatedashboard.pages[85].widgets[516].fields[1297].widget_fieldid\":[\"add\",\"1297\"],\"templatedashboard.pages[85].widgets[516].widgetid\":[\"add\",\"516\"],\"templatedashboard.pages[85].widgets[517]\":[\"add\"],\"templatedashboard.pages[85].widgets[517].x\":[\"add\",\"6\"],\"templatedashboard.pages[85].widgets[517].width\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[517].height\":[\"add\",\"3\"],\"templatedashboard.pages[85].widgets[517].type\":[\"add\",\"item\"],\"templatedashboard.pages[85].widgets[517].fields[1298]\":[\"add\"],\"templatedashboard.pages[85].widgets[517].fields[1298].type\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[517].fields[1298].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[85].widgets[517].fields[1298].value\":[\"add\",\"71\"],\"templatedashboard.pages[85].widgets[517].fields[1298].widget_fieldid\":[\"add\",\"1298\"],\"templatedashboard.pages[85].widgets[517].widgetid\":[\"add\",\"517\"],\"templatedashboard.pages[85].widgets[518]\":[\"add\"],\"templatedashboard.pages[85].widgets[518].x\":[\"add\",\"11\"],\"templatedashboard.pages[85].widgets[518].y\":[\"add\",\"1\"],\"templatedashboard.pages[85].widgets[518].width\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[518].height\":[\"add\",\"3\"],\"templatedashboard.pages[85].widgets[518].type\":[\"add\",\"item\"],\"templatedashboard.pages[85].widgets[518].fields[1299]\":[\"add\"],\"templatedashboard.pages[85].widgets[518].fields[1299].type\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[518].fields[1299].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[85].widgets[518].fields[1299].value\":[\"add\",\"71\"],\"templatedashboard.pages[85].widgets[518].fields[1299].widget_fieldid\":[\"add\",\"1299\"],\"templatedashboard.pages[85].widgets[518].widgetid\":[\"add\",\"518\"],\"templatedashboard.pages[85].widgets[519]\":[\"add\"],\"templatedashboard.pages[85].widgets[519].x\":[\"add\",\"15\"],\"templatedashboard.pages[85].widgets[519].y\":[\"add\",\"1\"],\"templatedashboard.pages[85].widgets[519].width\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[519].height\":[\"add\",\"3\"],\"templatedashboard.pages[85].widgets[519].type\":[\"add\",\"item\"],\"templatedashboard.pages[85].widgets[519].fields[1300]\":[\"add\"],\"templatedashboard.pages[85].widgets[519].fields[1300].type\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[519].fields[1300].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[85].widgets[519].fields[1300].value\":[\"add\",\"75\"],\"templatedashboard.pages[85].widgets[519].fields[1300].widget_fieldid\":[\"add\",\"1300\"],\"templatedashboard.pages[85].widgets[519].widgetid\":[\"add\",\"519\"],\"templatedashboard.pages[85].dashboard_pageid\":[\"add\",\"85\"],\"templatedashboard.templateid\":[\"add\",\"15\"],\"templatedashboard.uuid\":[\"add\",\"8feb14ec4c664a19b289cbd091706943\"],\"templatedashboard.dashboardid\":[\"add\",\"85\"]}'),('clceimves0001fqiyhkkhn2bi',1,'Admin',1672646660,'192.168.64.1',0,43,86,NULL,'t10_2','clceimves0000fqiyjeucmbwg','{\"templatedashboard.name\":[\"add\",\"t10_2\"],\"templatedashboard.pages[86]\":[\"add\"],\"templatedashboard.pages[86].widgets[520]\":[\"add\"],\"templatedashboard.pages[86].widgets[520].width\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[520].height\":[\"add\",\"3\"],\"templatedashboard.pages[86].widgets[520].type\":[\"add\",\"item\"],\"templatedashboard.pages[86].widgets[520].fields[1301]\":[\"add\"],\"templatedashboard.pages[86].widgets[520].fields[1301].type\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[520].fields[1301].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[86].widgets[520].fields[1301].value\":[\"add\",\"71\"],\"templatedashboard.pages[86].widgets[520].fields[1301].widget_fieldid\":[\"add\",\"1301\"],\"templatedashboard.pages[86].widgets[520].widgetid\":[\"add\",\"520\"],\"templatedashboard.pages[86].widgets[521]\":[\"add\"],\"templatedashboard.pages[86].widgets[521].x\":[\"add\",\"5\"],\"templatedashboard.pages[86].widgets[521].type\":[\"add\",\"item\"],\"templatedashboard.pages[86].widgets[521].fields[1302]\":[\"add\"],\"templatedashboard.pages[86].widgets[521].fields[1302].type\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[521].fields[1302].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[86].widgets[521].fields[1302].value\":[\"add\",\"71\"],\"templatedashboard.pages[86].widgets[521].fields[1302].widget_fieldid\":[\"add\",\"1302\"],\"templatedashboard.pages[86].widgets[521].widgetid\":[\"add\",\"521\"],\"templatedashboard.pages[86].widgets[522]\":[\"add\"],\"templatedashboard.pages[86].widgets[522].x\":[\"add\",\"8\"],\"templatedashboard.pages[86].widgets[522].type\":[\"add\",\"item\"],\"templatedashboard.pages[86].widgets[522].fields[1303]\":[\"add\"],\"templatedashboard.pages[86].widgets[522].fields[1303].type\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[522].fields[1303].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[86].widgets[522].fields[1303].value\":[\"add\",\"71\"],\"templatedashboard.pages[86].widgets[522].fields[1303].widget_fieldid\":[\"add\",\"1303\"],\"templatedashboard.pages[86].widgets[522].widgetid\":[\"add\",\"522\"],\"templatedashboard.pages[86].widgets[523]\":[\"add\"],\"templatedashboard.pages[86].widgets[523].x\":[\"add\",\"12\"],\"templatedashboard.pages[86].widgets[523].type\":[\"add\",\"item\"],\"templatedashboard.pages[86].widgets[523].fields[1304]\":[\"add\"],\"templatedashboard.pages[86].widgets[523].fields[1304].type\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[523].fields[1304].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[86].widgets[523].fields[1304].value\":[\"add\",\"75\"],\"templatedashboard.pages[86].widgets[523].fields[1304].widget_fieldid\":[\"add\",\"1304\"],\"templatedashboard.pages[86].widgets[523].widgetid\":[\"add\",\"523\"],\"templatedashboard.pages[86].dashboard_pageid\":[\"add\",\"86\"],\"templatedashboard.templateid\":[\"add\",\"15\"],\"templatedashboard.uuid\":[\"add\",\"babb87dae7b4483bb638f6c751438cef\"],\"templatedashboard.dashboardid\":[\"add\",\"86\"]}'),('clcein1ba00014xiy1lt5mjy2',1,'Admin',1672646668,'192.168.64.1',0,43,87,NULL,'t10_3','clcein1ba00004xiyr3kjub84','{\"templatedashboard.name\":[\"add\",\"t10_3\"],\"templatedashboard.pages[87]\":[\"add\"],\"templatedashboard.pages[87].dashboard_pageid\":[\"add\",\"87\"],\"templatedashboard.templateid\":[\"add\",\"15\"],\"templatedashboard.uuid\":[\"add\",\"70a54fc51ff44060bb0959f24e66f5da\"],\"templatedashboard.dashboardid\":[\"add\",\"87\"]}'),('clceio4nr00014ciy3fsok66y',1,'Admin',1672646719,'192.168.64.1',1,43,58,NULL,'t1_1','clceio4nq00004ciy4izgp9sm','{\"templatedashboard.pages[88]\":[\"add\"],\"templatedashboard.pages[88].widgets[524]\":[\"add\"],\"templatedashboard.pages[88].widgets[524].fields[1305]\":[\"add\"],\"templatedashboard.pages[88].name\":[\"add\",\"p2\"],\"templatedashboard.pages[88].widgets[524].x\":[\"add\",\"3\"],\"templatedashboard.pages[88].widgets[524].y\":[\"add\",\"1\"],\"templatedashboard.pages[88].widgets[524].width\":[\"add\",\"4\"],\"templatedashboard.pages[88].widgets[524].height\":[\"add\",\"3\"],\"templatedashboard.pages[88].widgets[524].type\":[\"add\",\"item\"],\"templatedashboard.pages[88].widgets[524].fields[1305].type\":[\"add\",\"4\"],\"templatedashboard.pages[88].widgets[524].fields[1305].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[88].widgets[524].fields[1305].value\":[\"add\",\"31\"],\"templatedashboard.pages[88].widgets[524].fields[1305].widget_fieldid\":[\"add\",\"1305\"],\"templatedashboard.pages[88].widgets[524].widgetid\":[\"add\",\"524\"],\"templatedashboard.pages[88].dashboard_pageid\":[\"add\",\"88\"]}'),('clceioekf00014ciypbd4uyef',1,'Admin',1672646732,'192.168.64.1',1,43,59,NULL,'t1_2','clceioekf00004ciygz5a4am7','{\"templatedashboard.pages[89]\":[\"add\"],\"templatedashboard.pages[89].widgets[525]\":[\"add\"],\"templatedashboard.pages[89].widgets[525].fields[1306]\":[\"add\"],\"templatedashboard.pages[89].name\":[\"add\",\"p2\"],\"templatedashboard.pages[89].widgets[525].x\":[\"add\",\"1\"],\"templatedashboard.pages[89].widgets[525].width\":[\"add\",\"4\"],\"templatedashboard.pages[89].widgets[525].height\":[\"add\",\"3\"],\"templatedashboard.pages[89].widgets[525].type\":[\"add\",\"item\"],\"templatedashboard.pages[89].widgets[525].fields[1306].type\":[\"add\",\"4\"],\"templatedashboard.pages[89].widgets[525].fields[1306].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[89].widgets[525].fields[1306].value\":[\"add\",\"31\"],\"templatedashboard.pages[89].widgets[525].fields[1306].widget_fieldid\":[\"add\",\"1306\"],\"templatedashboard.pages[89].widgets[525].widgetid\":[\"add\",\"525\"],\"templatedashboard.pages[89].dashboard_pageid\":[\"add\",\"89\"]}'),('clceiq83y00014xiy2hbibmhu',1,'Admin',1672646817,'192.168.64.1',1,43,61,NULL,'t2_1','clceiq83x00004xiybd3kt192','{\"templatedashboard.pages[90]\":[\"add\"],\"templatedashboard.pages[90].widgets[526]\":[\"add\"],\"templatedashboard.pages[90].widgets[526].fields[1307]\":[\"add\"],\"templatedashboard.pages[90].name\":[\"add\",\"p2\"],\"templatedashboard.pages[90].widgets[526].x\":[\"add\",\"3\"],\"templatedashboard.pages[90].widgets[526].y\":[\"add\",\"1\"],\"templatedashboard.pages[90].widgets[526].width\":[\"add\",\"4\"],\"templatedashboard.pages[90].widgets[526].height\":[\"add\",\"3\"],\"templatedashboard.pages[90].widgets[526].type\":[\"add\",\"item\"],\"templatedashboard.pages[90].widgets[526].fields[1307].type\":[\"add\",\"4\"],\"templatedashboard.pages[90].widgets[526].fields[1307].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[90].widgets[526].fields[1307].value\":[\"add\",\"76\"],\"templatedashboard.pages[90].widgets[526].fields[1307].widget_fieldid\":[\"add\",\"1307\"],\"templatedashboard.pages[90].widgets[526].widgetid\":[\"add\",\"526\"],\"templatedashboard.pages[90].dashboard_pageid\":[\"add\",\"90\"]}'),('clceiqlpb0001fqiydmsulfbg',1,'Admin',1672646834,'192.168.64.1',1,43,62,NULL,'t2_2','clceiqlpb0000fqiyojwh4pfy','{\"templatedashboard.pages[91]\":[\"add\"],\"templatedashboard.pages[91].widgets[527]\":[\"add\"],\"templatedashboard.pages[91].widgets[527].fields[1308]\":[\"add\"],\"templatedashboard.pages[91].name\":[\"add\",\"p2\"],\"templatedashboard.pages[91].widgets[527].x\":[\"add\",\"3\"],\"templatedashboard.pages[91].widgets[527].y\":[\"add\",\"1\"],\"templatedashboard.pages[91].widgets[527].type\":[\"add\",\"item\"],\"templatedashboard.pages[91].widgets[527].fields[1308].type\":[\"add\",\"4\"],\"templatedashboard.pages[91].widgets[527].fields[1308].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[91].widgets[527].fields[1308].value\":[\"add\",\"76\"],\"templatedashboard.pages[91].widgets[527].fields[1308].widget_fieldid\":[\"add\",\"1308\"],\"templatedashboard.pages[91].widgets[527].widgetid\":[\"add\",\"527\"],\"templatedashboard.pages[91].dashboard_pageid\":[\"add\",\"91\"]}'),('clceis6yw00014xiyzh77rdla',1,'Admin',1672646908,'192.168.64.1',1,43,67,NULL,'t4_1','clceis6yw00004xiy3suabmto','{\"templatedashboard.pages[92]\":[\"add\"],\"templatedashboard.pages[92].widgets[528]\":[\"add\"],\"templatedashboard.pages[92].widgets[528].fields[1309]\":[\"add\"],\"templatedashboard.pages[92].name\":[\"add\",\"p2\"],\"templatedashboard.pages[92].widgets[528].x\":[\"add\",\"3\"],\"templatedashboard.pages[92].widgets[528].type\":[\"add\",\"item\"],\"templatedashboard.pages[92].widgets[528].fields[1309].type\":[\"add\",\"4\"],\"templatedashboard.pages[92].widgets[528].fields[1309].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[92].widgets[528].fields[1309].value\":[\"add\",\"67\"],\"templatedashboard.pages[92].widgets[528].fields[1309].widget_fieldid\":[\"add\",\"1309\"],\"templatedashboard.pages[92].widgets[528].widgetid\":[\"add\",\"528\"],\"templatedashboard.pages[92].dashboard_pageid\":[\"add\",\"92\"]}'),('clceishhg00014xiy1jgccpyz',1,'Admin',1672646922,'192.168.64.1',1,43,68,NULL,'t4_2','clceishhf00004xiytze7vwhk','{\"templatedashboard.pages[93]\":[\"add\"],\"templatedashboard.pages[93].widgets[529]\":[\"add\"],\"templatedashboard.pages[93].widgets[529].fields[1310]\":[\"add\"],\"templatedashboard.pages[93].name\":[\"add\",\"p2\"],\"templatedashboard.pages[93].widgets[529].x\":[\"add\",\"4\"],\"templatedashboard.pages[93].widgets[529].y\":[\"add\",\"1\"],\"templatedashboard.pages[93].widgets[529].width\":[\"add\",\"4\"],\"templatedashboard.pages[93].widgets[529].height\":[\"add\",\"3\"],\"templatedashboard.pages[93].widgets[529].type\":[\"add\",\"item\"],\"templatedashboard.pages[93].widgets[529].fields[1310].type\":[\"add\",\"4\"],\"templatedashboard.pages[93].widgets[529].fields[1310].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[93].widgets[529].fields[1310].value\":[\"add\",\"67\"],\"templatedashboard.pages[93].widgets[529].fields[1310].widget_fieldid\":[\"add\",\"1310\"],\"templatedashboard.pages[93].widgets[529].widgetid\":[\"add\",\"529\"],\"templatedashboard.pages[93].dashboard_pageid\":[\"add\",\"93\"]}'),('clceit58s00014ciyz349ni1k',1,'Admin',1672646953,'192.168.64.1',1,43,70,NULL,'t5_1','clceit58s00004ciyuxtr8dcz','{\"templatedashboard.pages[94]\":[\"add\"],\"templatedashboard.pages[94].widgets[530]\":[\"add\"],\"templatedashboard.pages[94].widgets[530].fields[1311]\":[\"add\"],\"templatedashboard.pages[94].name\":[\"add\",\"p2\"],\"templatedashboard.pages[94].widgets[530].x\":[\"add\",\"2\"],\"templatedashboard.pages[94].widgets[530].type\":[\"add\",\"item\"],\"templatedashboard.pages[94].widgets[530].fields[1311].type\":[\"add\",\"4\"],\"templatedashboard.pages[94].widgets[530].fields[1311].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[94].widgets[530].fields[1311].value\":[\"add\",\"30\"],\"templatedashboard.pages[94].widgets[530].fields[1311].widget_fieldid\":[\"add\",\"1311\"],\"templatedashboard.pages[94].widgets[530].widgetid\":[\"add\",\"530\"],\"templatedashboard.pages[94].dashboard_pageid\":[\"add\",\"94\"]}'),('clceitbzv00014ciybkdtdwo3',1,'Admin',1672646962,'192.168.64.1',1,43,71,NULL,'t5_2','clceitbzv00004ciy5vtl13bi','{\"templatedashboard.pages[95]\":[\"add\"],\"templatedashboard.pages[95].name\":[\"add\",\"p2\"],\"templatedashboard.pages[95].dashboard_pageid\":[\"add\",\"95\"]}'),('clceitxec0001fqiy53odqeh6',1,'Admin',1672646989,'192.168.64.1',1,43,73,NULL,'t6_1','clceitxec0000fqiyzfpir9oc','{\"templatedashboard.pages[96]\":[\"add\"],\"templatedashboard.pages[96].widgets[531]\":[\"add\"],\"templatedashboard.pages[96].widgets[531].fields[1312]\":[\"add\"],\"templatedashboard.pages[96].name\":[\"add\",\"p2\"],\"templatedashboard.pages[96].widgets[531].x\":[\"add\",\"2\"],\"templatedashboard.pages[96].widgets[531].y\":[\"add\",\"1\"],\"templatedashboard.pages[96].widgets[531].width\":[\"add\",\"4\"],\"templatedashboard.pages[96].widgets[531].height\":[\"add\",\"3\"],\"templatedashboard.pages[96].widgets[531].type\":[\"add\",\"item\"],\"templatedashboard.pages[96].widgets[531].fields[1312].type\":[\"add\",\"4\"],\"templatedashboard.pages[96].widgets[531].fields[1312].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[96].widgets[531].fields[1312].value\":[\"add\",\"36\"],\"templatedashboard.pages[96].widgets[531].fields[1312].widget_fieldid\":[\"add\",\"1312\"],\"templatedashboard.pages[96].widgets[531].widgetid\":[\"add\",\"531\"],\"templatedashboard.pages[96].dashboard_pageid\":[\"add\",\"96\"]}'),('clceiu4m10001fqiy9rtkalml',1,'Admin',1672646999,'192.168.64.1',1,43,74,NULL,'t6_2','clceiu4m10000fqiyw341c0oo','{\"templatedashboard.pages[97]\":[\"add\"],\"templatedashboard.pages[97].name\":[\"add\",\"p2\"],\"templatedashboard.pages[97].dashboard_pageid\":[\"add\",\"97\"]}'),('clceiuqly0001fqiy57hf4nx3',1,'Admin',1672647027,'192.168.64.1',1,43,76,NULL,'t7_1','clceiuqlx0000fqiyau5oc2rz','{\"templatedashboard.pages[98]\":[\"add\"],\"templatedashboard.pages[98].widgets[532]\":[\"add\"],\"templatedashboard.pages[98].widgets[532].fields[1313]\":[\"add\"],\"templatedashboard.pages[98].name\":[\"add\",\"p2\"],\"templatedashboard.pages[98].widgets[532].x\":[\"add\",\"2\"],\"templatedashboard.pages[98].widgets[532].y\":[\"add\",\"1\"],\"templatedashboard.pages[98].widgets[532].type\":[\"add\",\"item\"],\"templatedashboard.pages[98].widgets[532].fields[1313].type\":[\"add\",\"4\"],\"templatedashboard.pages[98].widgets[532].fields[1313].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[98].widgets[532].fields[1313].value\":[\"add\",\"66\"],\"templatedashboard.pages[98].widgets[532].fields[1313].widget_fieldid\":[\"add\",\"1313\"],\"templatedashboard.pages[98].widgets[532].widgetid\":[\"add\",\"532\"],\"templatedashboard.pages[98].dashboard_pageid\":[\"add\",\"98\"]}'),('clceiuwwv00014ciyl15dxwbv',1,'Admin',1672647035,'192.168.64.1',1,43,77,NULL,'t7_2','clceiuwwv00004ciyyh1r8apq','{\"templatedashboard.pages[99]\":[\"add\"],\"templatedashboard.pages[99].name\":[\"add\",\"p2\"],\"templatedashboard.pages[99].dashboard_pageid\":[\"add\",\"99\"]}'),('clceiv26k00014xiyyk5mxx15',1,'Admin',1672647042,'192.168.64.1',1,43,77,NULL,'t7_2','clceiv26j00004xiyylhxibko','{\"templatedashboard.pages[99].widgets[533]\":[\"add\"],\"templatedashboard.pages[99].widgets[533].fields[1314]\":[\"add\"],\"templatedashboard.pages[99].widgets[533].width\":[\"add\",\"4\"],\"templatedashboard.pages[99].widgets[533].height\":[\"add\",\"3\"],\"templatedashboard.pages[99].widgets[533].type\":[\"add\",\"item\"],\"templatedashboard.pages[99].widgets[533].fields[1314].type\":[\"add\",\"4\"],\"templatedashboard.pages[99].widgets[533].fields[1314].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[99].widgets[533].fields[1314].value\":[\"add\",\"66\"],\"templatedashboard.pages[99].widgets[533].fields[1314].widget_fieldid\":[\"add\",\"1314\"],\"templatedashboard.pages[99].widgets[533].widgetid\":[\"add\",\"533\"]}'),('clceivnq30001fqiytc9w5exn',1,'Admin',1672647070,'192.168.64.1',1,43,79,NULL,'t8_1','clceivnq20000fqiynloffzwk','{\"templatedashboard.pages[100]\":[\"add\"],\"templatedashboard.pages[100].widgets[534]\":[\"add\"],\"templatedashboard.pages[100].widgets[534].fields[1315]\":[\"add\"],\"templatedashboard.pages[100].name\":[\"add\",\"p2\"],\"templatedashboard.pages[100].widgets[534].x\":[\"add\",\"2\"],\"templatedashboard.pages[100].widgets[534].y\":[\"add\",\"1\"],\"templatedashboard.pages[100].widgets[534].width\":[\"add\",\"4\"],\"templatedashboard.pages[100].widgets[534].height\":[\"add\",\"3\"],\"templatedashboard.pages[100].widgets[534].type\":[\"add\",\"item\"],\"templatedashboard.pages[100].widgets[534].fields[1315].type\":[\"add\",\"4\"],\"templatedashboard.pages[100].widgets[534].fields[1315].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[100].widgets[534].fields[1315].value\":[\"add\",\"54\"],\"templatedashboard.pages[100].widgets[534].fields[1315].widget_fieldid\":[\"add\",\"1315\"],\"templatedashboard.pages[100].widgets[534].widgetid\":[\"add\",\"534\"],\"templatedashboard.pages[100].dashboard_pageid\":[\"add\",\"100\"]}'),('clceivzg700014ciyi2f2cfa5',1,'Admin',1672647085,'192.168.64.1',1,43,80,NULL,'t8_2','clceivzg600004ciyghag6th4','{\"templatedashboard.pages[101]\":[\"add\"],\"templatedashboard.pages[101].widgets[535]\":[\"add\"],\"templatedashboard.pages[101].widgets[535].fields[1316]\":[\"add\"],\"templatedashboard.pages[101].name\":[\"add\",\"p2\"],\"templatedashboard.pages[101].widgets[535].x\":[\"add\",\"4\"],\"templatedashboard.pages[101].widgets[535].y\":[\"add\",\"2\"],\"templatedashboard.pages[101].widgets[535].width\":[\"add\",\"4\"],\"templatedashboard.pages[101].widgets[535].height\":[\"add\",\"3\"],\"templatedashboard.pages[101].widgets[535].type\":[\"add\",\"item\"],\"templatedashboard.pages[101].widgets[535].fields[1316].type\":[\"add\",\"4\"],\"templatedashboard.pages[101].widgets[535].fields[1316].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[101].widgets[535].fields[1316].value\":[\"add\",\"54\"],\"templatedashboard.pages[101].widgets[535].fields[1316].widget_fieldid\":[\"add\",\"1316\"],\"templatedashboard.pages[101].widgets[535].widgetid\":[\"add\",\"535\"],\"templatedashboard.pages[101].dashboard_pageid\":[\"add\",\"101\"]}'),('clceiwlsb00014ciyulrvf2lj',1,'Admin',1672647114,'192.168.64.1',1,43,82,NULL,'t9_1','clceiwlsb00004ciynmyi22n4','{\"templatedashboard.pages[102]\":[\"add\"],\"templatedashboard.pages[102].widgets[536]\":[\"add\"],\"templatedashboard.pages[102].widgets[536].fields[1317]\":[\"add\"],\"templatedashboard.pages[102].name\":[\"add\",\"p2\"],\"templatedashboard.pages[102].widgets[536].x\":[\"add\",\"2\"],\"templatedashboard.pages[102].widgets[536].width\":[\"add\",\"4\"],\"templatedashboard.pages[102].widgets[536].height\":[\"add\",\"3\"],\"templatedashboard.pages[102].widgets[536].type\":[\"add\",\"item\"],\"templatedashboard.pages[102].widgets[536].fields[1317].type\":[\"add\",\"4\"],\"templatedashboard.pages[102].widgets[536].fields[1317].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[102].widgets[536].fields[1317].value\":[\"add\",\"65\"],\"templatedashboard.pages[102].widgets[536].fields[1317].widget_fieldid\":[\"add\",\"1317\"],\"templatedashboard.pages[102].widgets[536].widgetid\":[\"add\",\"536\"],\"templatedashboard.pages[102].dashboard_pageid\":[\"add\",\"102\"]}'),('clceixqe200014xiyvabg4fbl',1,'Admin',1672647167,'192.168.64.1',1,43,83,NULL,'t9_2','clceixqe200004xiyns1fx2df','{\"templatedashboard.pages[103]\":[\"add\"],\"templatedashboard.pages[103].name\":[\"add\",\"p2\"],\"templatedashboard.pages[103].dashboard_pageid\":[\"add\",\"103\"]}'),('clceixwcw0001fqiyw5ofmogf',1,'Admin',1672647175,'192.168.64.1',1,43,83,NULL,'t9_2','clceixwcw0000fqiyt6o848pr','{\"templatedashboard.pages[103].widgets[537]\":[\"add\"],\"templatedashboard.pages[103].widgets[537].fields[1318]\":[\"add\"],\"templatedashboard.pages[103].widgets[537].x\":[\"add\",\"1\"],\"templatedashboard.pages[103].widgets[537].y\":[\"add\",\"1\"],\"templatedashboard.pages[103].widgets[537].type\":[\"add\",\"item\"],\"templatedashboard.pages[103].widgets[537].fields[1318].type\":[\"add\",\"4\"],\"templatedashboard.pages[103].widgets[537].fields[1318].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[103].widgets[537].fields[1318].value\":[\"add\",\"65\"],\"templatedashboard.pages[103].widgets[537].fields[1318].widget_fieldid\":[\"add\",\"1318\"],\"templatedashboard.pages[103].widgets[537].widgetid\":[\"add\",\"537\"]}'),('clceiyr3j0001fqiyvxrztnqw',1,'Admin',1672647215,'192.168.64.1',1,43,85,NULL,'t10_1','clceiyr3i0000fqiyb7q3who3','{\"templatedashboard.pages[104]\":[\"add\"],\"templatedashboard.pages[104].widgets[538]\":[\"add\"],\"templatedashboard.pages[104].widgets[538].fields[1319]\":[\"add\"],\"templatedashboard.pages[104].name\":[\"add\",\"p2\"],\"templatedashboard.pages[104].widgets[538].x\":[\"add\",\"3\"],\"templatedashboard.pages[104].widgets[538].y\":[\"add\",\"2\"],\"templatedashboard.pages[104].widgets[538].width\":[\"add\",\"4\"],\"templatedashboard.pages[104].widgets[538].height\":[\"add\",\"3\"],\"templatedashboard.pages[104].widgets[538].type\":[\"add\",\"item\"],\"templatedashboard.pages[104].widgets[538].fields[1319].type\":[\"add\",\"4\"],\"templatedashboard.pages[104].widgets[538].fields[1319].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[104].widgets[538].fields[1319].value\":[\"add\",\"75\"],\"templatedashboard.pages[104].widgets[538].fields[1319].widget_fieldid\":[\"add\",\"1319\"],\"templatedashboard.pages[104].widgets[538].widgetid\":[\"add\",\"538\"],\"templatedashboard.pages[104].dashboard_pageid\":[\"add\",\"104\"]}'),('clceiyyy600014xiy3tjp9v91',1,'Admin',1672647225,'192.168.64.1',1,43,86,NULL,'t10_2','clceiyyy500004xiy0jt6plta','{\"templatedashboard.pages[105]\":[\"add\"],\"templatedashboard.pages[105].widgets[539]\":[\"add\"],\"templatedashboard.pages[105].widgets[539].fields[1320]\":[\"add\"],\"templatedashboard.pages[105].name\":[\"add\",\"p2\"],\"templatedashboard.pages[105].widgets[539].x\":[\"add\",\"2\"],\"templatedashboard.pages[105].widgets[539].y\":[\"add\",\"1\"],\"templatedashboard.pages[105].widgets[539].width\":[\"add\",\"4\"],\"templatedashboard.pages[105].widgets[539].height\":[\"add\",\"3\"],\"templatedashboard.pages[105].widgets[539].type\":[\"add\",\"item\"],\"templatedashboard.pages[105].widgets[539].fields[1320].type\":[\"add\",\"4\"],\"templatedashboard.pages[105].widgets[539].fields[1320].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[105].widgets[539].fields[1320].value\":[\"add\",\"75\"],\"templatedashboard.pages[105].widgets[539].fields[1320].widget_fieldid\":[\"add\",\"1320\"],\"templatedashboard.pages[105].widgets[539].widgetid\":[\"add\",\"539\"],\"templatedashboard.pages[105].dashboard_pageid\":[\"add\",\"105\"]}'),('clceizh3x0001fqiy3ddpg5ox',1,'Admin',1672647248,'192.168.64.1',1,43,58,NULL,'t1_1','clceizh3w0000fqiyyfffd6l3','{\"templatedashboard.pages[106]\":[\"add\"],\"templatedashboard.pages[106].name\":[\"add\",\"p3\"],\"templatedashboard.pages[106].dashboard_pageid\":[\"add\",\"106\"]}'),('clceizngo00014xiyon2bcm2a',1,'Admin',1672647256,'192.168.64.1',1,43,59,NULL,'t1_2','clceizngn00004xiydx2vz77x','{\"templatedashboard.pages[107]\":[\"add\"],\"templatedashboard.pages[107].name\":[\"add\",\"p3\"],\"templatedashboard.pages[107].dashboard_pageid\":[\"add\",\"107\"]}'),('clcej003q0001fqiyrnt6nqvi',1,'Admin',1672647273,'192.168.64.1',1,43,61,NULL,'t2_1','clcej003p0000fqiy2auj6oab','{\"templatedashboard.pages[108]\":[\"add\"],\"templatedashboard.pages[108].name\":[\"add\",\"p3\"],\"templatedashboard.pages[108].dashboard_pageid\":[\"add\",\"108\"]}'),('clcej06wp00014xiyq97buzue',1,'Admin',1672647282,'192.168.64.1',1,43,62,NULL,'t2_2','clcej06wp00004xiyrlkclkc2','{\"templatedashboard.pages[109]\":[\"add\"],\"templatedashboard.pages[109].name\":[\"add\",\"p3\"],\"templatedashboard.pages[109].dashboard_pageid\":[\"add\",\"109\"]}'),('clcej0t6v00014ciygwa94e0b',1,'Admin',1672647311,'192.168.64.1',1,43,64,NULL,'t3_1','clcej0t6v00004ciyvxd61tw8','{\"templatedashboard.pages[110]\":[\"add\"],\"templatedashboard.pages[110].widgets[540]\":[\"add\"],\"templatedashboard.pages[110].widgets[540].fields[1321]\":[\"add\"],\"templatedashboard.pages[110].name\":[\"add\",\"p2\"],\"templatedashboard.pages[110].widgets[540].x\":[\"add\",\"3\"],\"templatedashboard.pages[110].widgets[540].y\":[\"add\",\"1\"],\"templatedashboard.pages[110].widgets[540].width\":[\"add\",\"4\"],\"templatedashboard.pages[110].widgets[540].height\":[\"add\",\"3\"],\"templatedashboard.pages[110].widgets[540].type\":[\"add\",\"item\"],\"templatedashboard.pages[110].widgets[540].fields[1321].type\":[\"add\",\"4\"],\"templatedashboard.pages[110].widgets[540].fields[1321].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[110].widgets[540].fields[1321].value\":[\"add\",\"15\"],\"templatedashboard.pages[110].widgets[540].fields[1321].widget_fieldid\":[\"add\",\"1321\"],\"templatedashboard.pages[110].widgets[540].widgetid\":[\"add\",\"540\"],\"templatedashboard.pages[110].dashboard_pageid\":[\"add\",\"110\"]}'),('clcej0yr00001fqiyomh20kuk',1,'Admin',1672647318,'192.168.64.1',1,43,64,NULL,'t3_1','clcej0yqz0000fqiy9agj06ip','{\"templatedashboard.pages[111]\":[\"add\"],\"templatedashboard.pages[111].name\":[\"add\",\"p3\"],\"templatedashboard.pages[111].dashboard_pageid\":[\"add\",\"111\"]}'),('clcej19cn00014xiyfi55aiqa',1,'Admin',1672647331,'192.168.64.1',1,43,65,NULL,'t3_2','clcej19cn00004xiyptw9wk6y','{\"templatedashboard.pages[112]\":[\"add\"],\"templatedashboard.pages[112].widgets[541]\":[\"add\"],\"templatedashboard.pages[112].widgets[541].fields[1322]\":[\"add\"],\"templatedashboard.pages[112].name\":[\"add\",\"p2\"],\"templatedashboard.pages[112].widgets[541].x\":[\"add\",\"2\"],\"templatedashboard.pages[112].widgets[541].type\":[\"add\",\"item\"],\"templatedashboard.pages[112].widgets[541].fields[1322].type\":[\"add\",\"4\"],\"templatedashboard.pages[112].widgets[541].fields[1322].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[112].widgets[541].fields[1322].value\":[\"add\",\"15\"],\"templatedashboard.pages[112].widgets[541].fields[1322].widget_fieldid\":[\"add\",\"1322\"],\"templatedashboard.pages[112].widgets[541].widgetid\":[\"add\",\"541\"],\"templatedashboard.pages[112].dashboard_pageid\":[\"add\",\"112\"]}'),('clcej1j5n0001briyk48k5uj8',1,'Admin',1672647344,'192.168.64.1',1,43,65,NULL,'t3_2','clcej1j5m0000briyjg1ozw0m','{\"templatedashboard.pages[113]\":[\"add\"],\"templatedashboard.pages[113].name\":[\"add\",\"p3\"],\"templatedashboard.pages[113].dashboard_pageid\":[\"add\",\"113\"]}'),('clcej2d280001briyy4ku0rgu',1,'Admin',1672647383,'192.168.64.1',1,43,67,NULL,'t4_1','clcej2d280000briy5rlhsxv8','{\"templatedashboard.pages[114]\":[\"add\"],\"templatedashboard.pages[114].name\":[\"add\",\"p3\"],\"templatedashboard.pages[114].dashboard_pageid\":[\"add\",\"114\"]}'),('clcej2iuf0001fqiy5dxcujtd',1,'Admin',1672647390,'192.168.64.1',1,43,68,NULL,'t4_2','clcej2iue0000fqiyw500gfa1','{\"templatedashboard.pages[115]\":[\"add\"],\"templatedashboard.pages[115].name\":[\"add\",\"p3\"],\"templatedashboard.pages[115].dashboard_pageid\":[\"add\",\"115\"]}'),('clcej3c3z0001briy2zsqg9db',1,'Admin',1672647428,'192.168.64.1',1,43,70,NULL,'t5_1','clcej3c3y0000briy285ylij1','{\"templatedashboard.pages[116]\":[\"add\"],\"templatedashboard.pages[116].name\":[\"add\",\"p3\"],\"templatedashboard.pages[116].dashboard_pageid\":[\"add\",\"116\"]}'),('clcej3iez0001fqiyfftevkll',1,'Admin',1672647437,'192.168.64.1',1,43,71,NULL,'t5_2','clcej3iey0000fqiy6ijzxr3o','{\"templatedashboard.pages[117]\":[\"add\"],\"templatedashboard.pages[117].name\":[\"add\",\"p3\"],\"templatedashboard.pages[117].dashboard_pageid\":[\"add\",\"117\"]}'),('clcej3r210001fqiymc5fweqy',1,'Admin',1672647448,'192.168.64.1',1,43,73,NULL,'t6_1','clcej3r210000fqiyk482ex8k','{\"templatedashboard.pages[118]\":[\"add\"],\"templatedashboard.pages[118].name\":[\"add\",\"p3\"],\"templatedashboard.pages[118].dashboard_pageid\":[\"add\",\"118\"]}'),('clcej3wkj0001briydeaif35r',1,'Admin',1672647455,'192.168.64.1',1,43,74,NULL,'t6_2','clcej3wkj0000briym9p8x39n','{\"templatedashboard.pages[119]\":[\"add\"],\"templatedashboard.pages[119].name\":[\"add\",\"p3\"],\"templatedashboard.pages[119].dashboard_pageid\":[\"add\",\"119\"]}'),('clcej48t20001briykijbqizd',1,'Admin',1672647471,'192.168.64.1',1,43,76,NULL,'t7_1','clcej48t20000briy967iz8k5','{\"templatedashboard.pages[120]\":[\"add\"],\"templatedashboard.pages[120].name\":[\"add\",\"p3\"],\"templatedashboard.pages[120].dashboard_pageid\":[\"add\",\"120\"]}'),('clcej4eax0001briyg5xg1wke',1,'Admin',1672647478,'192.168.64.1',1,43,77,NULL,'t7_2','clcej4eax0000briy8kg11umb','{\"templatedashboard.pages[121]\":[\"add\"],\"templatedashboard.pages[121].name\":[\"add\",\"p3\"],\"templatedashboard.pages[121].dashboard_pageid\":[\"add\",\"121\"]}'),('clcej4nkc0001briyz1i59r9m',1,'Admin',1672647490,'192.168.64.1',1,43,79,NULL,'t8_1','clcej4nkc0000briy8aon9yc6','{\"templatedashboard.pages[122]\":[\"add\"],\"templatedashboard.pages[122].name\":[\"add\",\"p3\"],\"templatedashboard.pages[122].dashboard_pageid\":[\"add\",\"122\"]}'),('clcej4t3n0001briy5xmtgcbe',1,'Admin',1672647497,'192.168.64.1',1,43,80,NULL,'t8_2','clcej4t3n0000briypirkqckr','{\"templatedashboard.pages[123]\":[\"add\"],\"templatedashboard.pages[123].name\":[\"add\",\"p3\"],\"templatedashboard.pages[123].dashboard_pageid\":[\"add\",\"123\"]}'),('clcej52ot0001briyny3i4wsf',1,'Admin',1672647509,'192.168.64.1',1,43,82,NULL,'t9_1','clcej52os0000briycjrorxvv','{\"templatedashboard.pages[124]\":[\"add\"],\"templatedashboard.pages[124].name\":[\"add\",\"p3\"],\"templatedashboard.pages[124].dashboard_pageid\":[\"add\",\"124\"]}'),('clcej57qk0001fqiyykgrdsyx',1,'Admin',1672647516,'192.168.64.1',1,43,83,NULL,'t9_2','clcej57qk0000fqiypz521f4j','{\"templatedashboard.pages[125]\":[\"add\"],\"templatedashboard.pages[125].name\":[\"add\",\"p3\"],\"templatedashboard.pages[125].dashboard_pageid\":[\"add\",\"125\"]}'),('clcej5k520001fqiynf47oiq3',1,'Admin',1672647532,'192.168.64.1',1,43,85,NULL,'t10_1','clcej5k520000fqiyxm0q87yj','{\"templatedashboard.pages[126]\":[\"add\"],\"templatedashboard.pages[126].name\":[\"add\",\"p3\"],\"templatedashboard.pages[126].dashboard_pageid\":[\"add\",\"126\"]}'),('clcej5phz0001fqiyzux8zaeq',1,'Admin',1672647539,'192.168.64.1',1,43,86,NULL,'t10_2','clcej5phz0000fqiy76nz8b6a','{\"templatedashboard.pages[127]\":[\"add\"],\"templatedashboard.pages[127].name\":[\"add\",\"p3\"],\"templatedashboard.pages[127].dashboard_pageid\":[\"add\",\"127\"]}'); /*!40000 ALTER TABLE `auditlog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `autoreg_host` -- DROP TABLE IF EXISTS `autoreg_host`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `autoreg_host` ( `autoreg_hostid` bigint unsigned NOT NULL, `proxy_hostid` bigint unsigned DEFAULT NULL, `host` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `listen_ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `listen_port` int NOT NULL DEFAULT '0', `listen_dns` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_metadata` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `flags` int NOT NULL DEFAULT '0', `tls_accepted` int NOT NULL DEFAULT '1', PRIMARY KEY (`autoreg_hostid`), KEY `autoreg_host_1` (`host`), KEY `autoreg_host_2` (`proxy_hostid`), CONSTRAINT `c_autoreg_host_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `autoreg_host` -- LOCK TABLES `autoreg_host` WRITE; /*!40000 ALTER TABLE `autoreg_host` DISABLE KEYS */; /*!40000 ALTER TABLE `autoreg_host` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `changelog` -- DROP TABLE IF EXISTS `changelog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `changelog` ( `changelogid` bigint unsigned NOT NULL AUTO_INCREMENT, `object` int NOT NULL DEFAULT '0', `objectid` bigint unsigned NOT NULL, `operation` int NOT NULL DEFAULT '0', `clock` int NOT NULL DEFAULT '0', PRIMARY KEY (`changelogid`), KEY `changelog_1` (`clock`) ) ENGINE=InnoDB AUTO_INCREMENT=147746 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `changelog` -- LOCK TABLES `changelog` WRITE; /*!40000 ALTER TABLE `changelog` DISABLE KEYS */; INSERT INTO `changelog` VALUES (71285,7,28244,3,1672318938),(71286,7,28245,3,1672318938),(71287,7,30995,3,1672318938),(71288,7,30996,3,1672318938),(71289,7,30997,3,1672318938),(71290,7,30998,3,1672318938),(71291,7,30999,3,1672318938),(71292,7,30657,3,1672318938),(71293,7,30658,3,1672318938),(71294,7,30659,3,1672318938),(71295,7,30660,3,1672318938),(71296,7,30661,3,1672318938),(71297,7,30662,3,1672318938),(71298,7,30663,3,1672318938),(71299,7,30664,3,1672318938),(71300,7,30665,3,1672318938),(71301,7,31367,3,1672318938),(71302,7,31368,3,1672318938),(71303,7,31369,3,1672318938),(71304,7,31370,3,1672318938),(71305,7,31371,3,1672318938),(71306,7,31372,3,1672318938),(71307,7,31373,3,1672318938),(71308,7,31374,3,1672318938),(71309,7,30674,3,1672318938),(71310,7,30675,3,1672318938),(71311,7,31006,3,1672318938),(71312,7,31007,3,1672318938),(71313,7,31008,3,1672318938),(71314,7,32528,3,1672318938),(71315,7,32529,3,1672318938),(71316,7,32530,3,1672318938),(71317,7,32676,3,1672318938),(71318,7,32677,3,1672318938),(71319,6,625,3,1672318938),(71320,6,5268,3,1672318938),(71321,6,5269,3,1672318938),(71322,6,5270,3,1672318938),(71323,6,5271,3,1672318938),(71324,6,5272,3,1672318938),(71325,6,5273,3,1672318938),(71326,6,5274,3,1672318938),(71327,6,5275,3,1672318938),(71328,6,5276,3,1672318938),(71329,6,5277,3,1672318938),(71330,6,5278,3,1672318938),(71331,6,5279,3,1672318938),(71332,6,5280,3,1672318938),(71333,6,6851,3,1672318938),(71334,6,7326,3,1672318938),(71335,6,7327,3,1672318938),(71336,6,7328,3,1672318938),(71337,6,7447,3,1672318938),(71338,6,7448,3,1672318938),(71339,5,21195,2,1672318938),(71340,5,22404,2,1672318938),(71341,5,22405,2,1672318938),(71342,5,22406,2,1672318938),(71343,5,22407,2,1672318938),(71344,5,22408,2,1672318938),(71345,5,22409,2,1672318938),(71346,5,22410,2,1672318938),(71347,5,22411,2,1672318938),(71348,5,22560,2,1672318938),(71349,5,22988,2,1672318938),(71350,5,22989,2,1672318938),(71351,5,22990,2,1672318938),(71352,5,23091,2,1672318938),(71353,5,21195,3,1672318938),(71354,5,22404,3,1672318938),(71355,5,22405,3,1672318938),(71356,5,22406,3,1672318938),(71357,5,22407,3,1672318938),(71358,5,22408,3,1672318938),(71359,5,22409,3,1672318938),(71360,5,22410,3,1672318938),(71361,5,22411,3,1672318938),(71362,5,22560,3,1672318938),(71363,5,22988,3,1672318938),(71364,5,22989,3,1672318938),(71365,5,22990,3,1672318938),(71366,5,23091,3,1672318938),(71367,8,87798,3,1672318938),(71368,8,87799,3,1672318938),(71369,8,87800,3,1672318938),(71370,8,87801,3,1672318938),(71371,8,87802,3,1672318938),(71372,8,87803,3,1672318938),(71373,8,89648,3,1672318938),(71374,8,89649,3,1672318938),(71375,8,89650,3,1672318938),(71376,8,89651,3,1672318938),(71377,8,89652,3,1672318938),(71378,8,89653,3,1672318938),(71379,8,89654,3,1672318938),(71380,8,89655,3,1672318938),(71381,8,89656,3,1672318938),(71382,8,89657,3,1672318938),(71383,8,89658,3,1672318938),(71384,8,93020,3,1672318938),(71385,8,93021,3,1672318938),(71386,8,93022,3,1672318938),(71387,8,93023,3,1672318938),(71388,8,89675,3,1672318938),(71389,8,89676,3,1672318938),(71390,8,89677,3,1672318938),(71391,8,89678,3,1672318938),(71392,8,89679,3,1672318938),(71393,8,89680,3,1672318938),(71394,8,89681,3,1672318938),(71395,8,89682,3,1672318938),(71396,8,89683,3,1672318938),(71397,8,89684,3,1672318938),(71398,8,89685,3,1672318938),(71399,8,89686,3,1672318938),(71400,8,89687,3,1672318938),(71401,8,89688,3,1672318938),(71402,8,89689,3,1672318938),(71403,8,89690,3,1672318938),(71404,8,89926,3,1672318938),(71405,8,89927,3,1672318938),(71406,8,92559,3,1672318938),(71407,8,92560,3,1672318938),(71408,8,92561,3,1672318938),(71409,8,92562,3,1672318938),(71410,8,92563,3,1672318938),(71411,8,92564,3,1672318938),(71412,8,92565,3,1672318938),(71413,8,92566,3,1672318938),(71414,8,92567,3,1672318938),(71415,8,92568,3,1672318938),(71416,8,92569,3,1672318938),(71417,8,92570,3,1672318938),(71418,8,92571,3,1672318938),(71419,8,92572,3,1672318938),(71420,8,92573,3,1672318938),(71421,8,92574,3,1672318938),(71422,8,92575,3,1672318938),(71423,8,92576,3,1672318938),(71424,8,92577,3,1672318938),(71425,8,92578,3,1672318938),(71426,8,92579,3,1672318938),(71427,8,92580,3,1672318938),(71428,8,92581,3,1672318938),(71429,8,92582,3,1672318938),(71430,8,92583,3,1672318938),(71431,8,92584,3,1672318938),(71432,8,93015,3,1672318938),(71433,8,93026,3,1672318938),(71434,8,93027,3,1672318938),(71435,4,18008,3,1672318938),(71436,4,18009,3,1672318938),(71437,4,18010,3,1672318938),(71438,4,18011,3,1672318938),(71439,4,18012,3,1672318938),(71440,4,18013,3,1672318938),(71441,4,18014,3,1672318938),(71442,4,18015,3,1672318938),(71443,4,18016,3,1672318938),(71444,4,18017,3,1672318938),(71445,4,18018,3,1672318938),(71446,4,18019,3,1672318938),(71447,4,29615,3,1672318938),(71448,4,29617,3,1672318938),(71449,4,29618,3,1672318938),(71450,4,29620,3,1672318938),(71451,4,29621,3,1672318938),(71452,4,29623,3,1672318938),(71453,4,29624,3,1672318938),(71454,4,29626,3,1672318938),(71455,4,29627,3,1672318938),(71456,4,29629,3,1672318938),(71457,4,29630,3,1672318938),(71458,4,29632,3,1672318938),(71459,4,29633,3,1672318938),(71460,4,29635,3,1672318938),(71461,4,29636,3,1672318938),(71462,4,29638,3,1672318938),(71463,4,29639,3,1672318938),(71464,4,29640,3,1672318938),(71465,4,29641,3,1672318938),(71466,4,29642,3,1672318938),(71467,4,29643,3,1672318938),(71468,4,29644,3,1672318938),(71469,4,29645,3,1672318938),(71470,4,29646,3,1672318938),(71471,4,29647,3,1672318938),(71472,4,29648,3,1672318938),(71473,4,29649,3,1672318938),(71474,4,29650,3,1672318938),(71475,4,29651,3,1672318938),(71476,4,29676,3,1672318938),(71477,4,29677,3,1672318938),(71478,4,29678,3,1672318938),(71479,4,29679,3,1672318938),(71480,4,29680,3,1672318938),(71481,4,29681,3,1672318938),(71482,4,29682,3,1672318938),(71483,4,29683,3,1672318938),(71484,4,29684,3,1672318938),(71485,4,29685,3,1672318938),(71486,4,29686,3,1672318938),(71487,4,29687,3,1672318938),(71488,4,32766,3,1672318938),(71489,4,32767,3,1672318938),(71490,4,35249,3,1672318938),(71491,4,35250,3,1672318938),(71492,4,35251,3,1672318938),(71493,4,35252,3,1672318938),(71494,4,35253,3,1672318938),(71495,4,35254,3,1672318938),(71496,4,35255,3,1672318938),(71497,4,35256,3,1672318938),(71498,4,35257,3,1672318938),(71499,4,35258,3,1672318938),(71500,4,35259,3,1672318938),(71501,4,35260,3,1672318938),(71502,4,35261,3,1672318938),(71503,4,35262,3,1672318938),(71504,4,35263,3,1672318938),(71505,4,35264,3,1672318938),(71506,4,35265,3,1672318938),(71507,4,35266,3,1672318938),(71508,4,35267,3,1672318938),(71509,4,35268,3,1672318938),(71510,4,35269,3,1672318938),(71511,4,35270,3,1672318938),(71512,4,35808,3,1672318938),(71513,4,35809,3,1672318938),(71514,4,35810,3,1672318938),(71515,4,35813,3,1672318938),(71516,4,35814,3,1672318938),(71517,3,39812,2,1672318938),(71518,3,39813,2,1672318938),(71519,3,39814,2,1672318938),(71520,3,39815,2,1672318938),(71521,3,42292,2,1672318938),(71522,3,42293,2,1672318938),(71523,3,42294,2,1672318938),(71524,3,42295,2,1672318938),(71525,3,42296,2,1672318938),(71526,3,42297,2,1672318938),(71527,3,42298,2,1672318938),(71528,3,42299,2,1672318938),(71529,3,42300,2,1672318938),(71530,3,42301,2,1672318938),(71531,3,42302,2,1672318938),(71532,3,42303,2,1672318938),(71533,3,42304,2,1672318938),(71534,3,42305,2,1672318938),(71535,3,42306,2,1672318938),(71536,3,42313,2,1672318938),(71537,3,42314,2,1672318938),(71538,3,42315,2,1672318938),(71539,3,42316,2,1672318938),(71540,3,42317,2,1672318938),(71541,3,42318,2,1672318938),(71542,3,42681,2,1672318938),(71543,3,44070,2,1672318938),(71544,3,44071,2,1672318938),(71545,3,44072,2,1672318938),(71546,3,44073,2,1672318938),(71547,3,44074,2,1672318938),(71548,3,44075,2,1672318938),(71549,3,44076,2,1672318938),(71550,3,44077,2,1672318938),(71551,3,44078,2,1672318938),(71552,3,44079,2,1672318938),(71553,3,44080,2,1672318938),(71554,3,44439,2,1672318938),(71555,3,44441,2,1672318938),(71556,3,39812,3,1672318938),(71557,3,39813,3,1672318938),(71558,3,39814,3,1672318938),(71559,3,39815,3,1672318938),(71560,3,42292,3,1672318938),(71561,3,42293,3,1672318938),(71562,3,42294,3,1672318938),(71563,3,42295,3,1672318938),(71564,3,42296,3,1672318938),(71565,3,42297,3,1672318938),(71566,3,42298,3,1672318938),(71567,3,42299,3,1672318938),(71568,3,42300,3,1672318938),(71569,3,42301,3,1672318938),(71570,3,42302,3,1672318938),(71571,3,42303,3,1672318938),(71572,3,42304,3,1672318938),(71573,3,42305,3,1672318938),(71574,3,42306,3,1672318938),(71575,3,42313,3,1672318938),(71576,3,42314,3,1672318938),(71577,3,42315,3,1672318938),(71578,3,42316,3,1672318938),(71579,3,42317,3,1672318938),(71580,3,42318,3,1672318938),(71581,3,42681,3,1672318938),(71582,3,44070,3,1672318938),(71583,3,44071,3,1672318938),(71584,3,44072,3,1672318938),(71585,3,44073,3,1672318938),(71586,3,44074,3,1672318938),(71587,3,44075,3,1672318938),(71588,3,44076,3,1672318938),(71589,3,44077,3,1672318938),(71590,3,44078,3,1672318938),(71591,3,44079,3,1672318938),(71592,3,44080,3,1672318938),(71593,3,44439,3,1672318938),(71594,3,44441,3,1672318938),(71595,8,89636,3,1672318938),(71596,3,39807,2,1672318938),(71597,3,42274,2,1672318938),(71598,3,42275,2,1672318938),(71599,3,42276,2,1672318938),(71600,3,44058,2,1672318938),(71601,3,39807,3,1672318938),(71602,3,42274,3,1672318938),(71603,3,42275,3,1672318938),(71604,3,42276,3,1672318938),(71605,3,44058,3,1672318938),(71606,7,12648,3,1672318938),(71607,7,13205,3,1672318938),(71608,7,13165,3,1672318938),(71609,7,13171,3,1672318938),(71610,7,13173,3,1672318938),(71611,7,13175,3,1672318938),(71612,7,13177,3,1672318938),(71613,7,23301,3,1672318938),(71614,7,13181,3,1672318938),(71615,7,13183,3,1672318938),(71616,7,13185,3,1672318938),(71617,7,13187,3,1672318938),(71618,7,13189,3,1672318938),(71619,7,13191,3,1672318938),(71620,7,23302,3,1672318938),(71621,7,13195,3,1672318938),(71622,7,13199,3,1672318938),(71623,7,13201,3,1672318938),(71624,7,13203,3,1672318938),(71625,7,12895,3,1672318938),(71626,7,12896,3,1672318938),(71627,7,12897,3,1672318938),(71628,7,12898,3,1672318938),(71629,7,12899,3,1672318938),(71630,7,12966,3,1672318938),(71631,7,13161,3,1672318938),(71632,7,13197,3,1672318938),(71633,7,13223,3,1672318938),(71634,7,13227,3,1672318938),(71635,7,13230,3,1672318938),(71636,7,13231,3,1672318938),(71637,7,18077,3,1672318938),(71638,7,18079,3,1672318938),(71639,7,18736,3,1672318938),(71640,7,20767,3,1672318938),(71641,7,20768,3,1672318938),(71642,7,22369,3,1672318938),(71643,7,22370,3,1672318938),(71644,7,23308,3,1672318938),(71645,7,23309,3,1672318938),(71646,7,23310,3,1672318938),(71647,7,23311,3,1672318938),(71648,7,23312,3,1672318938),(71649,7,28254,3,1672318938),(71650,7,30605,3,1672318938),(71651,7,30606,3,1672318938),(71652,7,30607,3,1672318938),(71653,7,30608,3,1672318938),(71654,7,30609,3,1672318938),(71655,7,30610,3,1672318938),(71656,7,30611,3,1672318938),(71657,7,30612,3,1672318938),(71658,7,30613,3,1672318938),(71659,7,30614,3,1672318938),(71660,7,30615,3,1672318938),(71661,7,30616,3,1672318938),(71662,7,30617,3,1672318938),(71663,7,30618,3,1672318938),(71664,7,30619,3,1672318938),(71665,7,30620,3,1672318938),(71666,7,30621,3,1672318938),(71667,7,30955,3,1672318938),(71668,7,30956,3,1672318938),(71669,7,30957,3,1672318938),(71670,7,30958,3,1672318938),(71671,7,30626,3,1672318938),(71672,7,30627,3,1672318938),(71673,7,30628,3,1672318938),(71674,7,30629,3,1672318938),(71675,6,611,3,1672318938),(71676,6,612,3,1672318938),(71677,6,607,3,1672318938),(71678,6,575,3,1672318938),(71679,6,579,3,1672318938),(71680,6,580,3,1672318938),(71681,6,581,3,1672318938),(71682,6,583,3,1672318938),(71683,6,584,3,1672318938),(71684,6,585,3,1672318938),(71685,6,586,3,1672318938),(71686,6,588,3,1672318938),(71687,6,589,3,1672318938),(71688,6,593,3,1672318938),(71689,6,596,3,1672318938),(71690,6,599,3,1672318938),(71691,6,601,3,1672318938),(71692,6,603,3,1672318938),(71693,6,604,3,1672318938),(71694,6,606,3,1672318938),(71695,6,608,3,1672318938),(71696,6,609,3,1672318938),(71697,6,610,3,1672318938),(71698,6,618,3,1672318938),(71699,6,619,3,1672318938),(71700,6,620,3,1672318938),(71701,6,621,3,1672318938),(71702,6,622,3,1672318938),(71703,6,623,3,1672318938),(71704,6,616,3,1672318938),(71705,6,617,3,1672318938),(71706,6,613,3,1672318938),(71707,6,614,3,1672318938),(71708,6,602,3,1672318938),(71709,6,587,3,1672318938),(71710,6,576,3,1672318938),(71711,6,594,3,1672318938),(71712,6,595,3,1672318938),(71713,6,590,3,1672318938),(71714,6,591,3,1672318938),(71715,6,577,3,1672318938),(71716,6,578,3,1672318938),(71717,6,582,3,1672318938),(71718,6,597,3,1672318938),(71719,6,598,3,1672318938),(71720,6,600,3,1672318938),(71721,6,605,3,1672318938),(71722,6,615,3,1672318938),(71723,6,592,3,1672318938),(71724,6,5223,3,1672318938),(71725,6,5224,3,1672318938),(71726,6,5225,3,1672318938),(71727,6,5226,3,1672318938),(71728,6,5227,3,1672318938),(71729,6,5228,3,1672318938),(71730,6,5229,3,1672318938),(71731,6,5230,3,1672318938),(71732,6,5231,3,1672318938),(71733,6,5232,3,1672318938),(71734,6,5233,3,1672318938),(71735,6,5234,3,1672318938),(71736,6,5235,3,1672318938),(71737,6,5236,3,1672318938),(71738,6,5237,3,1672318938),(71739,6,5238,3,1672318938),(71740,6,5239,3,1672318938),(71741,6,5240,3,1672318938),(71742,6,5241,3,1672318938),(71743,5,13075,2,1672318938),(71744,5,13436,2,1672318938),(71745,5,13467,2,1672318938),(71746,5,13468,2,1672318938),(71747,5,13470,2,1672318938),(71748,5,13471,2,1672318938),(71749,5,13472,2,1672318938),(71750,5,13473,2,1672318938),(71751,5,13474,2,1672318938),(71752,5,13475,2,1672318938),(71753,5,13476,2,1672318938),(71754,5,13477,2,1672318938),(71755,5,13479,2,1672318938),(71756,5,13480,2,1672318938),(71757,5,13481,2,1672318938),(71758,5,13482,2,1672318938),(71759,5,13483,2,1672318938),(71760,5,13484,2,1672318938),(71761,5,13485,2,1672318938),(71762,5,13486,2,1672318938),(71763,5,13487,2,1672318938),(71764,5,13488,2,1672318938),(71765,5,13489,2,1672318938),(71766,5,13490,2,1672318938),(71767,5,13537,2,1672318938),(71768,5,13558,2,1672318938),(71769,5,13560,2,1672318938),(71770,5,13563,2,1672318938),(71771,5,13567,2,1672318938),(71772,5,13570,2,1672318938),(71773,5,13571,2,1672318938),(71774,5,15854,2,1672318938),(71775,5,15856,2,1672318938),(71776,5,16274,2,1672318938),(71777,5,17537,2,1672318938),(71778,5,17538,2,1672318938),(71779,5,18532,2,1672318938),(71780,5,18533,2,1672318938),(71781,5,18981,2,1672318938),(71782,5,18982,2,1672318938),(71783,5,18983,2,1672318938),(71784,5,21198,2,1672318938),(71785,5,22382,2,1672318938),(71786,5,22383,2,1672318938),(71787,5,22384,2,1672318938),(71788,5,22385,2,1672318938),(71789,5,22386,2,1672318938),(71790,5,22387,2,1672318938),(71791,5,22388,2,1672318938),(71792,5,22389,2,1672318938),(71793,5,22390,2,1672318938),(71794,5,22391,2,1672318938),(71795,5,22392,2,1672318938),(71796,5,22393,2,1672318938),(71797,5,22394,2,1672318938),(71798,5,22395,2,1672318938),(71799,5,13075,3,1672318938),(71800,5,13436,3,1672318938),(71801,5,13467,3,1672318938),(71802,5,13468,3,1672318938),(71803,5,13470,3,1672318938),(71804,5,13471,3,1672318938),(71805,5,13472,3,1672318938),(71806,5,13473,3,1672318938),(71807,5,13474,3,1672318938),(71808,5,13475,3,1672318938),(71809,5,13476,3,1672318938),(71810,5,13477,3,1672318938),(71811,5,13479,3,1672318938),(71812,5,13480,3,1672318938),(71813,5,13481,3,1672318938),(71814,5,13482,3,1672318938),(71815,5,13483,3,1672318938),(71816,5,13484,3,1672318938),(71817,5,13485,3,1672318938),(71818,5,13486,3,1672318938),(71819,5,13487,3,1672318938),(71820,5,13488,3,1672318938),(71821,5,13489,3,1672318938),(71822,5,13490,3,1672318938),(71823,5,13537,3,1672318938),(71824,5,13558,3,1672318938),(71825,5,13560,3,1672318938),(71826,5,13563,3,1672318938),(71827,5,13567,3,1672318938),(71828,5,13570,3,1672318938),(71829,5,13571,3,1672318938),(71830,5,15854,3,1672318938),(71831,5,15856,3,1672318938),(71832,5,16274,3,1672318938),(71833,5,17537,3,1672318938),(71834,5,17538,3,1672318938),(71835,5,18532,3,1672318938),(71836,5,18533,3,1672318938),(71837,5,18981,3,1672318938),(71838,5,18982,3,1672318938),(71839,5,18983,3,1672318938),(71840,5,21198,3,1672318938),(71841,5,22382,3,1672318938),(71842,5,22383,3,1672318938),(71843,5,22384,3,1672318938),(71844,5,22385,3,1672318938),(71845,5,22386,3,1672318938),(71846,5,22387,3,1672318938),(71847,5,22388,3,1672318938),(71848,5,22389,3,1672318938),(71849,5,22390,3,1672318938),(71850,5,22391,3,1672318938),(71851,5,22392,3,1672318938),(71852,5,22393,3,1672318938),(71853,5,22394,3,1672318938),(71854,5,22395,3,1672318938),(71855,8,78878,3,1672318938),(71856,8,78879,3,1672318938),(71857,8,78880,3,1672318938),(71858,8,78881,3,1672318938),(71859,8,78882,3,1672318938),(71860,8,78883,3,1672318938),(71861,8,78884,3,1672318938),(71862,8,78885,3,1672318938),(71863,8,78886,3,1672318938),(71864,8,84290,3,1672318938),(71865,8,89617,3,1672318938),(71866,8,89618,3,1672318938),(71867,8,89619,3,1672318938),(71868,8,89620,3,1672318938),(71869,8,89621,3,1672318938),(71870,8,89622,3,1672318938),(71871,8,89623,3,1672318938),(71872,8,89624,3,1672318938),(71873,8,89625,3,1672318938),(71874,8,89626,3,1672318938),(71875,8,89627,3,1672318938),(71876,8,89628,3,1672318938),(71877,8,89629,3,1672318938),(71878,8,89630,3,1672318938),(71879,8,89633,3,1672318938),(71880,8,89634,3,1672318938),(71881,4,17939,3,1672318938),(71882,4,17940,3,1672318938),(71883,4,17941,3,1672318938),(71884,4,17942,3,1672318938),(71885,4,17943,3,1672318938),(71886,4,17944,3,1672318938),(71887,4,17945,3,1672318938),(71888,4,17946,3,1672318938),(71889,4,17947,3,1672318938),(71890,4,17948,3,1672318938),(71891,4,17949,3,1672318938),(71892,4,17950,3,1672318938),(71893,4,17951,3,1672318938),(71894,4,17952,3,1672318938),(71895,4,17953,3,1672318938),(71896,4,17954,3,1672318938),(71897,4,17955,3,1672318938),(71898,4,17956,3,1672318938),(71899,4,17957,3,1672318938),(71900,4,17958,3,1672318938),(71901,4,17959,3,1672318938),(71902,4,17960,3,1672318938),(71903,4,17961,3,1672318938),(71904,4,17962,3,1672318938),(71905,4,17963,3,1672318938),(71906,4,17964,3,1672318938),(71907,4,17965,3,1672318938),(71908,4,17966,3,1672318938),(71909,4,17967,3,1672318938),(71910,4,17968,3,1672318938),(71911,4,17969,3,1672318938),(71912,4,17970,3,1672318938),(71913,4,17971,3,1672318938),(71914,4,17972,3,1672318938),(71915,4,17973,3,1672318938),(71916,4,17974,3,1672318938),(71917,4,17975,3,1672318938),(71918,4,17976,3,1672318938),(71919,4,17977,3,1672318938),(71920,4,17978,3,1672318938),(71921,4,17979,3,1672318938),(71922,4,17980,3,1672318938),(71923,4,17981,3,1672318938),(71924,4,17982,3,1672318938),(71925,4,17983,3,1672318938),(71926,4,17984,3,1672318938),(71927,4,17985,3,1672318938),(71928,4,17986,3,1672318938),(71929,4,17987,3,1672318938),(71930,4,17988,3,1672318938),(71931,4,17989,3,1672318938),(71932,4,17990,3,1672318938),(71933,4,17991,3,1672318938),(71934,4,17992,3,1672318938),(71935,4,17993,3,1672318938),(71936,4,17994,3,1672318938),(71937,4,17995,3,1672318938),(71938,4,29492,3,1672318938),(71939,4,29493,3,1672318938),(71940,4,29494,3,1672318938),(71941,4,29495,3,1672318938),(71942,4,29496,3,1672318938),(71943,4,29497,3,1672318938),(71944,4,29498,3,1672318938),(71945,4,29499,3,1672318938),(71946,4,29500,3,1672318938),(71947,4,29501,3,1672318938),(71948,4,29502,3,1672318938),(71949,4,29503,3,1672318938),(71950,4,29504,3,1672318938),(71951,4,29505,3,1672318938),(71952,4,29506,3,1672318938),(71953,4,29507,3,1672318938),(71954,4,29508,3,1672318938),(71955,4,29509,3,1672318938),(71956,4,35223,3,1672318938),(71957,4,29511,3,1672318938),(71958,4,29512,3,1672318938),(71959,4,29513,3,1672318938),(71960,4,29514,3,1672318938),(71961,4,29515,3,1672318938),(71962,4,29516,3,1672318938),(71963,4,29517,3,1672318938),(71964,4,29518,3,1672318938),(71965,4,29519,3,1672318938),(71966,4,29520,3,1672318938),(71967,4,29521,3,1672318938),(71968,4,29522,3,1672318938),(71969,4,29523,3,1672318938),(71970,4,29524,3,1672318938),(71971,4,29525,3,1672318938),(71972,4,29526,3,1672318938),(71973,4,29527,3,1672318938),(71974,4,29528,3,1672318938),(71975,4,29529,3,1672318938),(71976,4,29530,3,1672318938),(71977,4,29531,3,1672318938),(71978,4,29532,3,1672318938),(71979,4,29533,3,1672318938),(71980,4,29534,3,1672318938),(71981,4,29539,3,1672318938),(71982,4,29540,3,1672318938),(71983,4,35226,3,1672318938),(71984,4,35804,3,1672318938),(71985,3,10073,2,1672318938),(71986,3,10074,2,1672318938),(71987,3,10075,2,1672318938),(71988,3,10076,2,1672318938),(71989,3,10077,2,1672318938),(71990,3,10078,2,1672318938),(71991,3,23252,2,1672318938),(71992,3,23253,2,1672318938),(71993,3,23255,2,1672318938),(71994,3,23256,2,1672318938),(71995,3,23257,2,1672318938),(71996,3,23258,2,1672318938),(71997,3,23259,2,1672318938),(71998,3,23260,2,1672318938),(71999,3,23261,2,1672318938),(72000,3,23262,2,1672318938),(72001,3,23264,2,1672318938),(72002,3,23265,2,1672318938),(72003,3,23266,2,1672318938),(72004,3,23267,2,1672318938),(72005,3,23268,2,1672318938),(72006,3,23269,2,1672318938),(72007,3,23270,2,1672318938),(72008,3,23271,2,1672318938),(72009,3,23272,2,1672318938),(72010,3,23273,2,1672318938),(72011,3,23274,2,1672318938),(72012,3,23275,2,1672318938),(72013,3,23276,2,1672318938),(72014,3,23277,2,1672318938),(72015,3,23328,2,1672318938),(72016,3,23620,2,1672318938),(72017,3,23625,2,1672318938),(72018,3,23628,2,1672318938),(72019,3,23635,2,1672318938),(72020,3,23662,2,1672318938),(72021,3,23664,2,1672318938),(72022,3,25367,2,1672318938),(72023,3,25371,2,1672318938),(72024,3,25667,2,1672318938),(72025,3,25668,2,1672318938),(72026,3,28249,2,1672318938),(72027,3,28534,2,1672318938),(72028,3,28536,2,1672318938),(72029,3,28538,2,1672318938),(72030,3,29823,2,1672318938),(72031,3,33024,2,1672318938),(72032,3,33025,2,1672318938),(72033,3,33026,2,1672318938),(72034,3,33027,2,1672318938),(72035,3,34318,2,1672318938),(72036,3,34319,2,1672318938),(72037,3,35275,2,1672318938),(72038,3,35276,2,1672318938),(72039,3,35277,2,1672318938),(72040,3,39805,2,1672318938),(72041,3,39823,2,1672318938),(72042,3,42227,2,1672318938),(72043,3,42228,2,1672318938),(72044,3,42229,2,1672318938),(72045,3,42230,2,1672318938),(72046,3,42231,2,1672318938),(72047,3,42232,2,1672318938),(72048,3,42233,2,1672318938),(72049,3,42234,2,1672318938),(72050,3,42235,2,1672318938),(72051,3,42236,2,1672318938),(72052,3,42237,2,1672318938),(72053,3,42238,2,1672318938),(72054,3,42239,2,1672318938),(72055,3,42240,2,1672318938),(72056,3,42241,2,1672318938),(72057,3,42242,2,1672318938),(72058,3,42243,2,1672318938),(72059,3,42244,2,1672318938),(72060,3,42245,2,1672318938),(72061,3,42246,2,1672318938),(72062,3,42247,2,1672318938),(72063,3,42248,2,1672318938),(72064,3,42249,2,1672318938),(72065,3,42250,2,1672318938),(72066,3,42251,2,1672318938),(72067,3,42252,2,1672318938),(72068,3,42253,2,1672318938),(72069,3,42254,2,1672318938),(72070,3,42255,2,1672318938),(72071,3,42256,2,1672318938),(72072,3,42257,2,1672318938),(72073,3,42258,2,1672318938),(72074,3,42259,2,1672318938),(72075,3,42260,2,1672318938),(72076,3,42261,2,1672318938),(72077,3,42262,2,1672318938),(72078,3,42263,2,1672318938),(72079,3,42264,2,1672318938),(72080,3,42265,2,1672318938),(72081,3,42266,2,1672318938),(72082,3,42269,2,1672318938),(72083,3,42270,2,1672318938),(72084,3,44056,2,1672318938),(72085,3,44437,2,1672318938),(72086,3,10073,3,1672318938),(72087,3,10074,3,1672318938),(72088,3,10075,3,1672318938),(72089,3,10076,3,1672318938),(72090,3,10077,3,1672318938),(72091,3,10078,3,1672318938),(72092,3,23252,3,1672318938),(72093,3,23253,3,1672318938),(72094,3,23255,3,1672318938),(72095,3,23256,3,1672318938),(72096,3,23257,3,1672318938),(72097,3,23258,3,1672318938),(72098,3,23259,3,1672318938),(72099,3,23260,3,1672318938),(72100,3,23261,3,1672318938),(72101,3,23262,3,1672318938),(72102,3,23264,3,1672318938),(72103,3,23265,3,1672318938),(72104,3,23266,3,1672318938),(72105,3,23267,3,1672318938),(72106,3,23268,3,1672318938),(72107,3,23269,3,1672318938),(72108,3,23270,3,1672318938),(72109,3,23271,3,1672318938),(72110,3,23272,3,1672318938),(72111,3,23273,3,1672318938),(72112,3,23274,3,1672318938),(72113,3,23275,3,1672318938),(72114,3,23276,3,1672318938),(72115,3,23277,3,1672318938),(72116,3,23328,3,1672318938),(72117,3,23620,3,1672318938),(72118,3,23625,3,1672318938),(72119,3,23628,3,1672318938),(72120,3,23635,3,1672318938),(72121,3,23662,3,1672318938),(72122,3,23664,3,1672318938),(72123,3,25367,3,1672318938),(72124,3,25371,3,1672318938),(72125,3,25667,3,1672318938),(72126,3,25668,3,1672318938),(72127,3,28249,3,1672318938),(72128,3,28534,3,1672318938),(72129,3,28536,3,1672318938),(72130,3,28538,3,1672318938),(72131,3,29823,3,1672318938),(72132,3,33024,3,1672318938),(72133,3,33025,3,1672318938),(72134,3,33026,3,1672318938),(72135,3,33027,3,1672318938),(72136,3,34318,3,1672318938),(72137,3,34319,3,1672318938),(72138,3,35275,3,1672318938),(72139,3,35276,3,1672318938),(72140,3,35277,3,1672318938),(72141,3,39805,3,1672318938),(72142,3,39823,3,1672318938),(72143,3,42227,3,1672318938),(72144,3,42228,3,1672318938),(72145,3,42229,3,1672318938),(72146,3,42230,3,1672318938),(72147,3,42231,3,1672318938),(72148,3,42232,3,1672318938),(72149,3,42233,3,1672318938),(72150,3,42234,3,1672318938),(72151,3,42235,3,1672318938),(72152,3,42236,3,1672318938),(72153,3,42237,3,1672318938),(72154,3,42238,3,1672318938),(72155,3,42239,3,1672318938),(72156,3,42240,3,1672318938),(72157,3,42241,3,1672318938),(72158,3,42242,3,1672318938),(72159,3,42243,3,1672318938),(72160,3,42244,3,1672318938),(72161,3,42245,3,1672318938),(72162,3,42246,3,1672318938),(72163,3,42247,3,1672318938),(72164,3,42248,3,1672318938),(72165,3,42249,3,1672318938),(72166,3,42250,3,1672318938),(72167,3,42251,3,1672318938),(72168,3,42252,3,1672318938),(72169,3,42253,3,1672318938),(72170,3,42254,3,1672318938),(72171,3,42255,3,1672318938),(72172,3,42256,3,1672318938),(72173,3,42257,3,1672318938),(72174,3,42258,3,1672318938),(72175,3,42259,3,1672318938),(72176,3,42260,3,1672318938),(72177,3,42261,3,1672318938),(72178,3,42262,3,1672318938),(72179,3,42263,3,1672318938),(72180,3,42264,3,1672318938),(72181,3,42265,3,1672318938),(72182,3,42266,3,1672318938),(72183,3,42269,3,1672318938),(72184,3,42270,3,1672318938),(72185,3,44056,3,1672318938),(72186,3,44437,3,1672318938),(72187,1,10084,3,1672318938),(72189,2,1,3,1672318982),(72190,2,2,3,1672318982),(72191,2,3,3,1672318982),(72192,2,5,3,1672318982),(72193,2,6,3,1672318982),(72194,2,7,3,1672318982),(72195,2,8,3,1672318982),(72196,2,9,3,1672318982),(72197,2,10,3,1672318982),(72198,2,11,3,1672318982),(72199,2,12,3,1672318982),(72200,2,13,3,1672318982),(72201,2,15,3,1672318982),(72202,2,16,3,1672318982),(72203,2,17,3,1672318982),(72204,2,18,3,1672318982),(72205,2,19,3,1672318982),(72206,2,20,3,1672318982),(72207,2,21,3,1672318982),(72208,2,22,3,1672318982),(72209,2,23,3,1672318982),(72210,2,24,3,1672318982),(72211,2,25,3,1672318982),(72212,2,26,3,1672318982),(72213,2,27,3,1672318982),(72214,2,28,3,1672318982),(72215,2,29,3,1672318982),(72216,2,30,3,1672318982),(72217,2,31,3,1672318982),(72218,2,32,3,1672318982),(72219,2,33,3,1672318982),(72220,2,35,3,1672318982),(72221,2,36,3,1672318982),(72222,2,37,3,1672318982),(72223,2,38,3,1672318982),(72224,2,39,3,1672318982),(72225,2,40,3,1672318982),(72226,2,41,3,1672318982),(72227,2,42,3,1672318982),(72228,2,43,3,1672318982),(72229,2,44,3,1672318982),(72230,2,45,3,1672318982),(72231,2,46,3,1672318982),(72232,2,47,3,1672318982),(72233,2,48,3,1672318982),(72234,2,49,3,1672318982),(72235,2,50,3,1672318982),(72236,2,51,3,1672318982),(72237,2,52,3,1672318982),(72238,2,53,3,1672318982),(72239,2,54,3,1672318982),(72240,2,55,3,1672318982),(72241,2,56,3,1672318982),(72242,2,57,3,1672318982),(72243,2,58,3,1672318982),(72244,2,59,3,1672318982),(72245,2,60,3,1672318982),(72246,2,61,3,1672318982),(72247,2,62,3,1672318982),(72248,2,63,3,1672318982),(72249,2,64,3,1672318982),(72250,2,65,3,1672318982),(72251,2,66,3,1672318982),(72252,2,67,3,1672318982),(72253,2,68,3,1672318982),(72254,2,69,3,1672318982),(72255,2,70,3,1672318982),(72256,2,71,3,1672318982),(72257,2,72,3,1672318982),(72258,2,73,3,1672318982),(72259,2,74,3,1672318982),(72260,2,75,3,1672318982),(72261,2,76,3,1672318982),(72262,2,77,3,1672318982),(72263,2,78,3,1672318982),(72264,2,79,3,1672318982),(72265,2,80,3,1672318982),(72266,2,81,3,1672318982),(72267,2,82,3,1672318982),(72268,2,83,3,1672318982),(72269,2,84,3,1672318982),(72270,2,85,3,1672318982),(72271,2,86,3,1672318982),(72272,2,87,3,1672318982),(72273,2,88,3,1672318982),(72274,2,89,3,1672318982),(72275,2,90,3,1672318982),(72276,2,91,3,1672318982),(72277,2,92,3,1672318982),(72278,2,93,3,1672318982),(72279,2,94,3,1672318982),(72280,2,95,3,1672318982),(72281,2,96,3,1672318982),(72282,2,97,3,1672318982),(72283,2,98,3,1672318982),(72284,2,99,3,1672318982),(72285,2,100,3,1672318982),(72286,2,101,3,1672318982),(72287,2,102,3,1672318982),(72288,2,103,3,1672318982),(72289,2,104,3,1672318982),(72290,2,105,3,1672318982),(72291,2,106,3,1672318982),(72292,2,107,3,1672318982),(72293,2,108,3,1672318982),(72294,2,109,3,1672318982),(72295,2,110,3,1672318982),(72296,2,111,3,1672318982),(72297,2,112,3,1672318982),(72298,2,113,3,1672318982),(72299,2,114,3,1672318982),(72300,2,115,3,1672318982),(72301,2,116,3,1672318982),(72302,2,117,3,1672318982),(72303,2,121,3,1672318982),(72304,2,122,3,1672318982),(72305,2,123,3,1672318982),(72306,2,124,3,1672318982),(72307,2,125,3,1672318982),(72308,2,126,3,1672318982),(72309,2,127,3,1672318982),(72310,2,129,3,1672318982),(72311,2,130,3,1672318982),(72312,2,131,3,1672318982),(72313,2,132,3,1672318982),(72314,2,133,3,1672318982),(72315,2,134,3,1672318982),(72316,2,135,3,1672318982),(72317,2,136,3,1672318982),(72318,2,137,3,1672318982),(72319,2,138,3,1672318982),(72320,2,139,3,1672318982),(72321,2,140,3,1672318982),(72322,2,141,3,1672318982),(72323,2,142,3,1672318982),(72324,2,143,3,1672318982),(72325,2,144,3,1672318982),(72326,2,145,3,1672318982),(72327,2,146,3,1672318982),(72328,2,147,3,1672318982),(72329,2,148,3,1672318982),(72330,2,149,3,1672318982),(72331,2,150,3,1672318982),(72332,2,151,3,1672318982),(72333,2,152,3,1672318982),(72334,2,153,3,1672318982),(72335,2,154,3,1672318982),(72336,2,155,3,1672318982),(72337,2,156,3,1672318982),(72338,2,157,3,1672318982),(72339,2,158,3,1672318982),(72340,2,159,3,1672318982),(72341,2,160,3,1672318982),(72342,2,161,3,1672318982),(72343,2,162,3,1672318982),(72344,2,163,3,1672318982),(72345,2,164,3,1672318982),(72346,2,165,3,1672318982),(72347,2,166,3,1672318982),(72348,2,167,3,1672318982),(72349,2,168,3,1672318982),(72350,2,169,3,1672318982),(72351,2,170,3,1672318982),(72352,2,171,3,1672318982),(72353,2,172,3,1672318982),(72354,2,173,3,1672318982),(72355,2,174,3,1672318982),(72356,2,175,3,1672318982),(72357,2,176,3,1672318982),(72358,2,177,3,1672318982),(72359,2,178,3,1672318982),(72360,2,179,3,1672318982),(72361,2,180,3,1672318982),(72362,2,181,3,1672318982),(72363,2,182,3,1672318982),(72364,2,183,3,1672318982),(72365,2,184,3,1672318982),(72366,2,185,3,1672318982),(72367,2,186,3,1672318982),(72368,2,187,3,1672318982),(72369,2,188,3,1672318982),(72370,2,189,3,1672318982),(72371,2,190,3,1672318982),(72372,2,191,3,1672318982),(72373,2,192,3,1672318982),(72374,2,193,3,1672318982),(72375,2,194,3,1672318982),(72376,2,195,3,1672318982),(72377,2,196,3,1672318982),(72378,2,197,3,1672318982),(72379,2,198,3,1672318982),(72380,2,199,3,1672318982),(72381,2,200,3,1672318982),(72382,2,201,3,1672318982),(72383,2,202,3,1672318982),(72384,2,203,3,1672318982),(72385,2,204,3,1672318982),(72386,2,205,3,1672318982),(72387,2,206,3,1672318982),(72388,2,207,3,1672318982),(72389,2,208,3,1672318982),(72390,2,209,3,1672318982),(72391,2,210,3,1672318982),(72392,2,211,3,1672318982),(72393,2,212,3,1672318982),(72394,2,213,3,1672318982),(72395,2,214,3,1672318982),(72396,2,215,3,1672318982),(72397,2,216,3,1672318982),(72398,2,217,3,1672318982),(72399,2,218,3,1672318982),(72400,2,219,3,1672318982),(72401,2,220,3,1672318982),(72402,2,221,3,1672318982),(72403,2,222,3,1672318982),(72404,2,223,3,1672318982),(72405,2,224,3,1672318982),(72406,2,225,3,1672318982),(72407,2,226,3,1672318982),(72408,2,227,3,1672318982),(72409,2,228,3,1672318982),(72410,2,229,3,1672318982),(72411,2,230,3,1672318982),(72412,2,231,3,1672318982),(72413,2,232,3,1672318982),(72414,2,233,3,1672318982),(72415,2,234,3,1672318982),(72416,2,235,3,1672318982),(72417,2,236,3,1672318982),(72418,2,237,3,1672318982),(72419,2,238,3,1672318982),(72420,2,239,3,1672318982),(72421,2,240,3,1672318982),(72422,2,241,3,1672318982),(72423,2,242,3,1672318982),(72424,2,243,3,1672318982),(72425,2,244,3,1672318982),(72426,2,245,3,1672318982),(72427,2,246,3,1672318982),(72428,2,247,3,1672318982),(72429,2,248,3,1672318982),(72430,2,249,3,1672318982),(72431,2,250,3,1672318982),(72432,2,251,3,1672318982),(72433,2,252,3,1672318982),(72434,2,253,3,1672318982),(72435,2,254,3,1672318982),(72436,2,255,3,1672318982),(72437,2,256,3,1672318982),(72438,2,257,3,1672318982),(72439,2,258,3,1672318982),(72440,2,259,3,1672318982),(72441,2,260,3,1672318982),(72442,2,261,3,1672318982),(72443,2,262,3,1672318982),(72444,2,263,3,1672318982),(72445,2,264,3,1672318982),(72446,2,265,3,1672318982),(72447,2,266,3,1672318982),(72448,2,267,3,1672318982),(72449,2,268,3,1672318982),(72450,2,269,3,1672318982),(72451,2,270,3,1672318982),(72452,2,271,3,1672318982),(72453,2,272,3,1672318982),(72454,2,273,3,1672318982),(72455,2,274,3,1672318982),(72456,2,275,3,1672318982),(72457,2,276,3,1672318982),(72458,2,277,3,1672318982),(72459,2,278,3,1672318982),(72460,2,279,3,1672318982),(72461,2,280,3,1672318982),(72462,2,281,3,1672318982),(72463,2,282,3,1672318982),(72464,2,283,3,1672318982),(72465,2,284,3,1672318982),(72466,2,285,3,1672318982),(72467,2,286,3,1672318982),(72468,2,287,3,1672318982),(72469,2,288,3,1672318982),(72470,2,289,3,1672318982),(72471,2,290,3,1672318982),(72472,2,291,3,1672318982),(72473,2,292,3,1672318982),(72474,2,293,3,1672318982),(72475,2,294,3,1672318982),(72476,2,295,3,1672318982),(72477,2,296,3,1672318982),(72478,2,297,3,1672318982),(72479,2,298,3,1672318982),(72480,2,299,3,1672318982),(72481,2,300,3,1672318982),(72482,2,301,3,1672318982),(72483,2,302,3,1672318982),(72484,2,303,3,1672318982),(72485,2,304,3,1672318982),(72486,2,305,3,1672318982),(72487,2,306,3,1672318982),(72488,2,307,3,1672318982),(72489,2,308,3,1672318982),(72490,2,309,3,1672318982),(72491,2,310,3,1672318982),(72492,2,311,3,1672318982),(72493,2,312,3,1672318982),(72494,2,313,3,1672318982),(72495,2,314,3,1672318982),(72496,2,315,3,1672318982),(72497,2,316,3,1672318982),(72498,2,317,3,1672318982),(72499,2,318,3,1672318982),(72500,2,319,3,1672318982),(72501,2,320,3,1672318982),(72502,2,321,3,1672318982),(72503,2,322,3,1672318982),(72504,2,323,3,1672318982),(72505,2,324,3,1672318982),(72506,2,325,3,1672318982),(72507,2,326,3,1672318982),(72508,2,327,3,1672318982),(72509,2,328,3,1672318982),(72510,2,329,3,1672318982),(72511,2,330,3,1672318982),(72512,2,331,3,1672318982),(72513,2,332,3,1672318982),(72514,2,333,3,1672318982),(72515,2,334,3,1672318982),(72516,2,335,3,1672318982),(72517,2,336,3,1672318982),(72518,2,337,3,1672318982),(72519,2,338,3,1672318982),(72520,2,339,3,1672318982),(72521,2,340,3,1672318982),(72522,2,341,3,1672318982),(72523,2,342,3,1672318982),(72524,2,343,3,1672318982),(72525,2,344,3,1672318982),(72526,2,345,3,1672318982),(72527,2,346,3,1672318982),(72528,2,347,3,1672318982),(72529,2,348,3,1672318982),(72530,2,349,3,1672318982),(72531,2,350,3,1672318982),(72532,2,351,3,1672318982),(72533,2,352,3,1672318982),(72534,2,353,3,1672318982),(72535,2,354,3,1672318982),(72536,2,355,3,1672318982),(72537,2,356,3,1672318982),(72538,2,357,3,1672318982),(72539,2,358,3,1672318982),(72540,2,359,3,1672318982),(72541,2,360,3,1672318982),(72542,2,361,3,1672318982),(72543,2,362,3,1672318982),(72544,2,363,3,1672318982),(72545,2,364,3,1672318982),(72546,2,365,3,1672318982),(72547,2,366,3,1672318982),(72548,2,367,3,1672318982),(72549,2,368,3,1672318982),(72550,2,369,3,1672318982),(72551,2,370,3,1672318982),(72552,2,371,3,1672318982),(72553,2,372,3,1672318982),(72554,2,373,3,1672318982),(72555,2,374,3,1672318982),(72556,2,375,3,1672318982),(72557,2,376,3,1672318982),(72558,2,377,3,1672318982),(72559,2,378,3,1672318982),(72560,2,379,3,1672318982),(72561,2,380,3,1672318982),(72562,2,381,3,1672318982),(72563,2,382,3,1672318982),(72564,2,383,3,1672318982),(72565,2,384,3,1672318982),(72566,2,385,3,1672318982),(72567,2,386,3,1672318982),(72568,2,387,3,1672318982),(72569,2,388,3,1672318982),(72570,2,389,3,1672318982),(72571,2,390,3,1672318982),(72572,2,391,3,1672318982),(72573,2,392,3,1672318982),(72574,2,393,3,1672318982),(72575,2,394,3,1672318982),(72576,2,395,3,1672318982),(72577,2,396,3,1672318982),(72578,2,397,3,1672318982),(72579,2,398,3,1672318982),(72580,2,399,3,1672318982),(72581,2,400,3,1672318982),(72582,2,401,3,1672318982),(72583,2,402,3,1672318982),(72584,2,403,3,1672318982),(72585,2,404,3,1672318982),(72586,2,405,3,1672318982),(72587,2,406,3,1672318982),(72588,2,407,3,1672318982),(72589,2,408,3,1672318982),(72590,2,409,3,1672318982),(72591,2,410,3,1672318982),(72592,2,411,3,1672318982),(72593,2,412,3,1672318982),(72594,2,413,3,1672318982),(72595,2,414,3,1672318982),(72596,2,415,3,1672318982),(72597,2,416,3,1672318982),(72598,2,417,3,1672318982),(72599,2,418,3,1672318982),(72600,2,419,3,1672318982),(72601,2,420,3,1672318982),(72602,2,421,3,1672318982),(72603,2,422,3,1672318982),(72604,2,423,3,1672318982),(72605,2,424,3,1672318982),(72606,2,425,3,1672318982),(72607,2,426,3,1672318982),(72608,2,427,3,1672318982),(72609,2,428,3,1672318982),(72610,2,429,3,1672318982),(72611,2,430,3,1672318982),(72612,2,431,3,1672318982),(72613,2,432,3,1672318982),(72614,2,433,3,1672318982),(72615,2,434,3,1672318982),(72616,2,435,3,1672318982),(72617,2,436,3,1672318982),(72618,2,437,3,1672318982),(72619,2,438,3,1672318982),(72620,2,439,3,1672318982),(72621,2,440,3,1672318982),(72622,2,441,3,1672318982),(72623,2,442,3,1672318982),(72624,2,443,3,1672318982),(72625,2,444,3,1672318982),(72626,2,445,3,1672318982),(72627,2,446,3,1672318982),(72628,2,447,3,1672318982),(72629,2,448,3,1672318982),(72630,2,449,3,1672318982),(72631,2,450,3,1672318982),(72632,2,451,3,1672318982),(72633,2,452,3,1672318982),(72634,2,453,3,1672318982),(72635,2,454,3,1672318982),(72636,2,455,3,1672318982),(72637,2,456,3,1672318982),(72638,2,457,3,1672318982),(72639,2,458,3,1672318982),(72640,2,459,3,1672318982),(72641,2,460,3,1672318982),(72642,2,461,3,1672318982),(72643,2,462,3,1672318982),(72644,2,463,3,1672318982),(72645,2,464,3,1672318982),(72646,2,465,3,1672318982),(72647,2,466,3,1672318982),(72648,2,467,3,1672318982),(72649,2,468,3,1672318982),(72650,2,469,3,1672318982),(72651,2,470,3,1672318982),(72652,2,471,3,1672318982),(72653,2,472,3,1672318982),(72654,2,473,3,1672318982),(72655,2,474,3,1672318982),(72656,2,475,3,1672318982),(72657,2,476,3,1672318982),(72658,2,477,3,1672318982),(72659,2,478,3,1672318982),(72660,2,479,3,1672318982),(72661,2,480,3,1672318982),(72662,2,481,3,1672318982),(72663,2,482,3,1672318982),(72664,2,483,3,1672318982),(72665,2,484,3,1672318982),(72666,2,485,3,1672318982),(72667,2,486,3,1672318982),(72668,2,487,3,1672318982),(72669,2,488,3,1672318982),(72670,2,489,3,1672318982),(72671,2,490,3,1672318982),(72672,2,491,3,1672318982),(72673,2,492,3,1672318982),(72674,2,493,3,1672318982),(72675,2,494,3,1672318982),(72676,2,495,3,1672318982),(72677,2,496,3,1672318982),(72678,2,497,3,1672318982),(72679,2,498,3,1672318982),(72680,2,499,3,1672318982),(72681,2,500,3,1672318982),(72682,2,501,3,1672318982),(72683,2,502,3,1672318982),(72684,2,503,3,1672318982),(72685,2,504,3,1672318982),(72686,2,505,3,1672318982),(72687,2,506,3,1672318982),(72688,2,507,3,1672318982),(72689,2,508,3,1672318982),(72690,2,509,3,1672318982),(72691,2,510,3,1672318982),(72692,2,511,3,1672318982),(72693,2,512,3,1672318982),(72694,2,513,3,1672318982),(72695,2,514,3,1672318982),(72696,2,515,3,1672318982),(72697,2,516,3,1672318982),(72698,2,517,3,1672318982),(72699,2,518,3,1672318982),(72700,2,519,3,1672318982),(72701,2,520,3,1672318982),(72702,2,521,3,1672318982),(72703,2,522,3,1672318982),(72704,2,523,3,1672318982),(72705,2,524,3,1672318982),(72706,2,525,3,1672318982),(72707,2,526,3,1672318982),(72708,2,527,3,1672318982),(72709,2,528,3,1672318982),(72710,2,529,3,1672318982),(72711,2,530,3,1672318982),(72712,2,531,3,1672318982),(72713,2,532,3,1672318982),(72714,2,533,3,1672318982),(72715,2,534,3,1672318982),(72716,2,535,3,1672318982),(72717,2,536,3,1672318982),(72718,2,537,3,1672318982),(72719,2,538,3,1672318982),(72720,2,539,3,1672318982),(72721,2,540,3,1672318982),(72722,2,541,3,1672318982),(72723,2,542,3,1672318982),(72724,2,543,3,1672318982),(72725,2,544,3,1672318982),(72726,2,545,3,1672318982),(72727,2,546,3,1672318982),(72728,2,547,3,1672318982),(72729,2,548,3,1672318982),(72730,2,549,3,1672318982),(72731,2,550,3,1672318982),(72732,2,551,3,1672318982),(72733,2,552,3,1672318982),(72734,2,553,3,1672318982),(72735,2,554,3,1672318982),(72736,2,555,3,1672318982),(72737,2,556,3,1672318982),(72738,2,557,3,1672318982),(72739,2,558,3,1672318982),(72740,2,559,3,1672318982),(72741,2,560,3,1672318982),(72742,2,561,3,1672318982),(72743,2,562,3,1672318982),(72744,2,563,3,1672318982),(72745,2,564,3,1672318982),(72746,2,565,3,1672318982),(72747,2,566,3,1672318982),(72748,2,567,3,1672318982),(72749,2,568,3,1672318982),(72750,2,569,3,1672318982),(72751,2,570,3,1672318982),(72752,2,571,3,1672318982),(72753,2,572,3,1672318982),(72754,2,573,3,1672318982),(72755,2,574,3,1672318982),(72756,2,575,3,1672318982),(72757,2,576,3,1672318982),(72758,2,577,3,1672318982),(72759,2,578,3,1672318982),(72760,2,579,3,1672318982),(72761,2,580,3,1672318982),(72762,2,581,3,1672318982),(72763,2,582,3,1672318982),(72764,2,583,3,1672318982),(72765,2,584,3,1672318982),(72766,2,585,3,1672318982),(72767,2,586,3,1672318982),(72768,2,587,3,1672318982),(72769,2,588,3,1672318982),(72770,2,589,3,1672318982),(72771,2,590,3,1672318982),(72772,2,591,3,1672318982),(72773,2,592,3,1672318982),(72774,2,593,3,1672318982),(72775,2,594,3,1672318982),(72776,2,595,3,1672318982),(72777,2,596,3,1672318982),(72778,2,597,3,1672318982),(72779,2,598,3,1672318982),(72780,2,599,3,1672318982),(72781,2,600,3,1672318982),(72782,2,601,3,1672318982),(72783,2,602,3,1672318982),(72784,2,603,3,1672318982),(72785,2,604,3,1672318982),(72786,2,605,3,1672318982),(72787,2,606,3,1672318982),(72788,2,607,3,1672318982),(72789,2,608,3,1672318982),(72790,2,609,3,1672318982),(72791,2,610,3,1672318982),(72792,2,611,3,1672318982),(72793,2,612,3,1672318982),(72794,2,613,3,1672318982),(72795,2,614,3,1672318982),(72796,2,615,3,1672318982),(72797,2,616,3,1672318982),(72798,2,617,3,1672318982),(72799,2,618,3,1672318982),(72800,2,619,3,1672318982),(72801,2,620,3,1672318982),(72802,2,621,3,1672318982),(72803,2,622,3,1672318982),(72804,2,623,3,1672318982),(72805,2,624,3,1672318982),(72806,2,625,3,1672318982),(72807,2,626,3,1672318982),(72808,2,627,3,1672318982),(72809,2,628,3,1672318982),(72810,2,629,3,1672318982),(72811,2,630,3,1672318982),(72812,2,631,3,1672318982),(72813,2,632,3,1672318982),(72814,2,633,3,1672318982),(72815,2,634,3,1672318982),(72816,2,635,3,1672318982),(72817,2,636,3,1672318982),(72818,2,637,3,1672318982),(72819,2,638,3,1672318982),(72820,2,639,3,1672318982),(72821,2,640,3,1672318982),(72822,2,641,3,1672318982),(72823,2,642,3,1672318982),(72824,2,643,3,1672318982),(72825,2,644,3,1672318982),(72826,2,645,3,1672318982),(72827,2,646,3,1672318982),(72828,2,647,3,1672318982),(72829,2,648,3,1672318982),(72830,2,649,3,1672318982),(72831,2,650,3,1672318982),(72832,2,651,3,1672318982),(72833,2,652,3,1672318982),(72834,2,653,3,1672318982),(72835,2,654,3,1672318982),(72836,2,655,3,1672318982),(72837,2,656,3,1672318982),(72838,2,657,3,1672318982),(72839,2,658,3,1672318982),(72840,2,659,3,1672318982),(72841,2,660,3,1672318982),(72842,2,661,3,1672318982),(72843,2,662,3,1672318982),(72844,2,663,3,1672318982),(72845,2,664,3,1672318982),(72846,2,665,3,1672318982),(72847,2,666,3,1672318982),(72848,2,667,3,1672318982),(72849,2,668,3,1672318982),(72850,2,669,3,1672318982),(72851,2,670,3,1672318982),(72852,2,671,3,1672318982),(72853,2,672,3,1672318982),(72854,2,673,3,1672318982),(72855,2,674,3,1672318982),(72856,2,675,3,1672318982),(72857,2,676,3,1672318982),(72858,2,677,3,1672318982),(72859,2,678,3,1672318982),(72860,2,679,3,1672318982),(72861,2,680,3,1672318982),(72862,2,681,3,1672318982),(72863,2,682,3,1672318982),(72864,2,683,3,1672318982),(72865,2,684,3,1672318982),(72866,2,685,3,1672318982),(72867,2,686,3,1672318982),(72868,2,687,3,1672318982),(72869,2,688,3,1672318982),(72870,2,689,3,1672318982),(72871,2,690,3,1672318982),(72872,2,691,3,1672318982),(72873,2,692,3,1672318982),(72874,2,693,3,1672318982),(72875,2,694,3,1672318982),(72876,2,695,3,1672318982),(72877,2,696,3,1672318982),(72878,2,697,3,1672318982),(72879,2,698,3,1672318982),(72880,2,699,3,1672318982),(72881,2,700,3,1672318982),(72882,2,701,3,1672318982),(72883,2,702,3,1672318982),(72884,2,703,3,1672318982),(72885,2,704,3,1672318982),(72886,2,705,3,1672318982),(72887,2,706,3,1672318982),(72888,2,707,3,1672318982),(72889,2,708,3,1672318982),(72890,2,709,3,1672318982),(72891,2,710,3,1672318982),(72892,2,711,3,1672318982),(72893,2,712,3,1672318982),(72894,2,713,3,1672318982),(72895,2,714,3,1672318982),(72896,2,715,3,1672318982),(72897,2,716,3,1672318982),(72898,2,717,3,1672318982),(72899,2,718,3,1672318982),(72900,2,719,3,1672318982),(72904,8,77559,3,1672319005),(72905,8,77560,3,1672319005),(72906,8,77561,3,1672319005),(72907,8,77562,3,1672319005),(72908,8,77563,3,1672319005),(72909,8,77564,3,1672319005),(72910,8,77565,3,1672319005),(72911,8,77566,3,1672319005),(72912,8,77567,3,1672319005),(72913,8,77568,3,1672319005),(72914,8,77569,3,1672319005),(72915,8,77570,3,1672319005),(72916,8,77571,3,1672319005),(72917,8,77572,3,1672319005),(72918,8,77573,3,1672319005),(72919,8,77574,3,1672319005),(72920,8,77575,3,1672319005),(72921,8,77576,3,1672319005),(72922,8,77577,3,1672319005),(72923,8,77578,3,1672319005),(72924,8,77579,3,1672319005),(72925,8,77580,3,1672319005),(72926,8,77581,3,1672319005),(72927,8,77582,3,1672319005),(72928,8,77583,3,1672319005),(72929,8,77584,3,1672319005),(72930,8,77585,3,1672319005),(72931,8,77586,3,1672319005),(72932,8,77587,3,1672319005),(72933,8,77588,3,1672319005),(72934,8,77589,3,1672319005),(72935,8,77590,3,1672319005),(72936,8,77591,3,1672319005),(72937,8,77592,3,1672319005),(72938,8,77593,3,1672319005),(72939,8,77594,3,1672319005),(72940,8,77595,3,1672319005),(72941,8,77596,3,1672319005),(72942,8,77597,3,1672319005),(72943,8,77598,3,1672319005),(72944,8,77599,3,1672319005),(72945,8,77600,3,1672319005),(72946,8,77601,3,1672319005),(72947,8,77602,3,1672319005),(72948,8,77603,3,1672319005),(72949,8,77604,3,1672319005),(72950,8,77605,3,1672319005),(72951,8,77606,3,1672319005),(72952,8,77607,3,1672319005),(72953,8,77608,3,1672319005),(72954,8,77609,3,1672319005),(72955,8,77610,3,1672319005),(72956,8,77611,3,1672319005),(72957,8,77612,3,1672319005),(72958,8,77613,3,1672319005),(72959,8,77614,3,1672319005),(72960,8,77615,3,1672319005),(72961,8,77616,3,1672319005),(72962,8,77617,3,1672319005),(72963,8,77618,3,1672319005),(72964,8,77619,3,1672319005),(72965,8,77620,3,1672319005),(72966,8,77621,3,1672319005),(72967,8,77622,3,1672319005),(72968,8,77623,3,1672319005),(72969,8,77624,3,1672319005),(72970,8,77625,3,1672319005),(72971,8,77626,3,1672319005),(72972,8,77627,3,1672319005),(72973,8,77628,3,1672319005),(72974,8,77629,3,1672319005),(72975,8,77630,3,1672319005),(72976,8,77631,3,1672319005),(72977,8,77632,3,1672319005),(72978,8,77633,3,1672319005),(72979,8,77634,3,1672319005),(72980,8,77635,3,1672319005),(72981,8,77636,3,1672319005),(72982,8,77637,3,1672319005),(72983,8,77638,3,1672319005),(72984,8,77639,3,1672319005),(72985,8,77640,3,1672319005),(72986,8,77641,3,1672319005),(72987,8,77642,3,1672319005),(72988,8,77643,3,1672319005),(72989,8,77644,3,1672319005),(72990,8,77645,3,1672319005),(72991,8,77646,3,1672319005),(72992,8,77647,3,1672319005),(72993,8,77648,3,1672319005),(72994,8,77649,3,1672319005),(72995,8,77650,3,1672319005),(72996,8,77651,3,1672319005),(72997,8,77652,3,1672319005),(72998,8,77653,3,1672319005),(72999,8,77654,3,1672319005),(73000,8,77655,3,1672319005),(73001,8,77656,3,1672319005),(73002,8,77657,3,1672319005),(73003,8,77658,3,1672319005),(73004,8,77659,3,1672319005),(73005,8,77660,3,1672319005),(73006,8,77661,3,1672319005),(73007,8,77662,3,1672319005),(73008,8,77663,3,1672319005),(73009,8,77664,3,1672319005),(73010,8,77665,3,1672319005),(73011,8,77666,3,1672319005),(73012,8,77667,3,1672319005),(73013,8,77668,3,1672319005),(73014,8,77669,3,1672319005),(73015,8,77670,3,1672319005),(73016,8,77671,3,1672319005),(73017,8,77672,3,1672319005),(73018,8,77673,3,1672319005),(73019,8,77674,3,1672319005),(73020,8,77675,3,1672319005),(73021,8,77676,3,1672319005),(73022,8,77677,3,1672319005),(73023,8,77678,3,1672319005),(73024,8,77679,3,1672319005),(73025,8,77680,3,1672319005),(73026,8,77681,3,1672319005),(73027,8,77682,3,1672319005),(73028,8,77683,3,1672319005),(73029,8,77684,3,1672319005),(73030,8,77685,3,1672319005),(73031,8,77686,3,1672319005),(73032,8,77687,3,1672319005),(73033,8,77688,3,1672319005),(73034,8,77689,3,1672319005),(73035,8,77690,3,1672319005),(73036,8,77691,3,1672319005),(73037,8,77692,3,1672319005),(73038,8,77693,3,1672319005),(73039,8,77694,3,1672319005),(73040,8,77708,3,1672319005),(73041,8,77709,3,1672319005),(73042,8,77710,3,1672319005),(73043,8,77711,3,1672319005),(73044,8,77712,3,1672319005),(73045,8,77713,3,1672319005),(73046,8,77714,3,1672319005),(73047,8,77715,3,1672319005),(73048,8,77716,3,1672319005),(73049,8,77717,3,1672319005),(73050,8,77718,3,1672319005),(73051,8,77719,3,1672319005),(73052,8,77720,3,1672319005),(73053,8,77721,3,1672319005),(73054,8,77722,3,1672319005),(73055,8,77723,3,1672319005),(73056,8,77724,3,1672319005),(73057,8,77725,3,1672319005),(73058,8,77726,3,1672319005),(73059,8,77727,3,1672319005),(73060,8,77728,3,1672319005),(73061,8,77729,3,1672319005),(73062,8,77730,3,1672319005),(73063,8,77731,3,1672319005),(73064,8,77732,3,1672319005),(73065,8,77733,3,1672319005),(73066,8,77734,3,1672319005),(73067,8,77735,3,1672319005),(73068,8,77736,3,1672319005),(73069,8,77737,3,1672319005),(73070,8,77738,3,1672319005),(73071,8,77739,3,1672319005),(73072,8,77740,3,1672319005),(73073,8,77741,3,1672319005),(73074,8,77742,3,1672319005),(73075,8,77743,3,1672319005),(73076,8,77744,3,1672319005),(73077,8,77745,3,1672319005),(73078,8,77746,3,1672319005),(73079,8,77747,3,1672319005),(73080,8,77748,3,1672319005),(73081,8,77749,3,1672319005),(73082,8,77750,3,1672319005),(73083,8,77751,3,1672319005),(73084,8,77752,3,1672319005),(73085,8,77753,3,1672319005),(73086,8,77754,3,1672319005),(73087,8,77755,3,1672319005),(73088,8,77756,3,1672319005),(73089,8,77757,3,1672319005),(73090,8,77758,3,1672319005),(73091,8,77759,3,1672319005),(73092,8,77760,3,1672319005),(73093,8,77761,3,1672319005),(73094,8,77762,3,1672319005),(73095,8,77763,3,1672319005),(73096,8,77764,3,1672319005),(73097,8,77765,3,1672319005),(73098,8,77766,3,1672319005),(73099,8,77767,3,1672319005),(73100,8,77768,3,1672319005),(73101,8,77769,3,1672319005),(73102,8,77770,3,1672319005),(73103,8,77771,3,1672319005),(73104,8,77772,3,1672319005),(73105,8,77773,3,1672319005),(73106,8,77774,3,1672319005),(73107,8,77775,3,1672319005),(73108,8,77776,3,1672319005),(73109,8,77777,3,1672319005),(73110,8,77778,3,1672319005),(73111,8,77779,3,1672319005),(73112,8,77780,3,1672319005),(73113,8,77781,3,1672319005),(73114,8,77782,3,1672319005),(73115,8,77783,3,1672319005),(73116,8,77784,3,1672319005),(73117,8,77785,3,1672319005),(73118,8,77786,3,1672319005),(73119,8,77787,3,1672319005),(73120,8,77788,3,1672319005),(73121,8,77789,3,1672319005),(73122,8,77790,3,1672319005),(73123,8,77791,3,1672319005),(73124,8,77792,3,1672319005),(73125,8,77793,3,1672319005),(73126,8,77794,3,1672319005),(73127,8,77795,3,1672319005),(73128,8,77796,3,1672319005),(73129,8,77797,3,1672319005),(73130,8,77798,3,1672319005),(73131,8,77799,3,1672319005),(73132,8,77800,3,1672319005),(73133,8,77801,3,1672319005),(73134,8,77802,3,1672319005),(73135,8,77803,3,1672319005),(73136,8,77804,3,1672319005),(73137,8,77805,3,1672319005),(73138,8,77806,3,1672319005),(73139,8,77807,3,1672319005),(73140,8,77808,3,1672319005),(73141,8,77809,3,1672319005),(73142,8,77810,3,1672319005),(73143,8,77811,3,1672319005),(73144,8,77812,3,1672319005),(73145,8,77813,3,1672319005),(73146,8,77814,3,1672319005),(73147,8,77815,3,1672319005),(73148,8,77816,3,1672319005),(73149,8,77817,3,1672319005),(73150,8,77818,3,1672319005),(73151,8,77819,3,1672319005),(73152,8,77820,3,1672319005),(73153,8,77821,3,1672319005),(73154,8,77822,3,1672319005),(73155,8,77823,3,1672319005),(73156,8,77824,3,1672319005),(73157,8,77825,3,1672319005),(73158,8,77826,3,1672319005),(73159,8,77827,3,1672319005),(73160,8,77828,3,1672319005),(73161,8,77829,3,1672319005),(73162,8,77830,3,1672319005),(73163,8,77831,3,1672319005),(73164,8,77832,3,1672319005),(73165,8,77833,3,1672319005),(73166,8,77834,3,1672319005),(73167,8,77835,3,1672319005),(73168,8,77836,3,1672319005),(73169,8,77837,3,1672319005),(73170,8,77838,3,1672319005),(73171,8,77839,3,1672319005),(73172,8,77840,3,1672319005),(73173,8,77841,3,1672319005),(73174,8,77842,3,1672319005),(73175,8,77843,3,1672319005),(73176,8,77844,3,1672319005),(73177,8,77845,3,1672319005),(73178,8,77846,3,1672319005),(73179,8,77847,3,1672319005),(73180,8,77848,3,1672319005),(73181,8,77849,3,1672319005),(73182,8,77850,3,1672319005),(73183,8,77851,3,1672319005),(73184,8,77852,3,1672319005),(73185,8,77853,3,1672319005),(73186,8,77854,3,1672319005),(73187,8,77855,3,1672319005),(73188,8,77856,3,1672319005),(73189,8,77857,3,1672319005),(73190,8,77858,3,1672319005),(73191,8,77859,3,1672319005),(73192,8,77860,3,1672319005),(73193,8,77861,3,1672319005),(73194,8,77862,3,1672319005),(73195,8,77863,3,1672319005),(73196,8,77864,3,1672319005),(73197,8,77865,3,1672319005),(73198,8,77866,3,1672319005),(73199,8,77867,3,1672319005),(73200,8,77868,3,1672319005),(73201,8,77869,3,1672319005),(73202,8,77870,3,1672319005),(73203,8,77871,3,1672319005),(73204,8,77872,3,1672319005),(73205,8,77873,3,1672319005),(73206,8,77874,3,1672319005),(73207,8,77875,3,1672319005),(73208,8,77876,3,1672319005),(73209,8,77877,3,1672319005),(73210,8,77878,3,1672319005),(73211,8,77879,3,1672319005),(73212,8,77880,3,1672319005),(73213,8,77881,3,1672319005),(73214,8,77882,3,1672319005),(73215,8,77883,3,1672319005),(73216,8,77884,3,1672319005),(73217,8,77885,3,1672319005),(73218,8,77886,3,1672319005),(73219,8,77887,3,1672319005),(73220,8,77888,3,1672319005),(73221,8,77889,3,1672319005),(73222,8,77890,3,1672319005),(73223,8,77891,3,1672319005),(73224,8,77892,3,1672319005),(73225,8,77893,3,1672319005),(73226,8,77894,3,1672319005),(73227,8,77895,3,1672319005),(73228,8,77896,3,1672319005),(73229,8,77897,3,1672319005),(73230,8,77898,3,1672319005),(73231,8,77899,3,1672319005),(73232,8,77900,3,1672319005),(73233,8,77901,3,1672319005),(73234,8,77902,3,1672319005),(73235,8,77903,3,1672319005),(73236,8,77904,3,1672319005),(73237,8,77905,3,1672319005),(73238,8,77906,3,1672319005),(73239,8,77907,3,1672319005),(73240,8,77908,3,1672319005),(73241,8,77909,3,1672319005),(73242,8,77910,3,1672319005),(73243,8,77911,3,1672319005),(73244,8,77912,3,1672319005),(73245,8,77913,3,1672319005),(73246,8,77914,3,1672319005),(73247,8,77915,3,1672319005),(73248,8,77916,3,1672319005),(73249,8,77917,3,1672319005),(73250,8,77918,3,1672319005),(73251,8,77919,3,1672319005),(73252,8,77920,3,1672319005),(73253,8,77921,3,1672319005),(73254,8,77922,3,1672319005),(73255,8,77923,3,1672319005),(73256,8,77924,3,1672319005),(73257,8,77925,3,1672319005),(73258,8,77926,3,1672319005),(73259,8,77927,3,1672319005),(73260,8,77928,3,1672319005),(73261,8,77929,3,1672319005),(73262,8,77930,3,1672319005),(73263,8,77931,3,1672319005),(73264,8,77932,3,1672319005),(73265,8,77933,3,1672319005),(73266,8,77934,3,1672319005),(73267,8,77935,3,1672319005),(73268,8,77936,3,1672319005),(73269,8,77937,3,1672319005),(73270,8,77938,3,1672319005),(73271,8,77939,3,1672319005),(73272,8,77940,3,1672319005),(73273,8,77941,3,1672319005),(73274,8,77942,3,1672319005),(73275,8,77943,3,1672319005),(73276,8,77944,3,1672319005),(73277,8,77945,3,1672319005),(73278,8,77946,3,1672319005),(73279,8,77947,3,1672319005),(73280,8,77948,3,1672319005),(73281,8,77949,3,1672319005),(73282,8,77950,3,1672319005),(73283,8,77951,3,1672319005),(73284,8,77952,3,1672319005),(73285,8,77953,3,1672319005),(73286,8,77954,3,1672319005),(73287,8,77955,3,1672319005),(73288,8,77956,3,1672319005),(73289,8,77957,3,1672319005),(73290,8,77958,3,1672319005),(73291,8,77959,3,1672319005),(73292,8,77960,3,1672319005),(73293,8,77961,3,1672319005),(73294,8,77962,3,1672319005),(73295,8,77963,3,1672319005),(73296,8,77964,3,1672319005),(73297,8,77965,3,1672319005),(73298,8,77966,3,1672319005),(73299,8,77967,3,1672319005),(73300,8,77968,3,1672319005),(73301,8,77969,3,1672319005),(73302,8,77970,3,1672319005),(73303,8,77971,3,1672319005),(73304,8,77972,3,1672319005),(73305,8,77973,3,1672319005),(73306,8,77974,3,1672319005),(73307,8,77975,3,1672319005),(73308,8,77976,3,1672319005),(73309,8,77977,3,1672319005),(73310,8,77978,3,1672319005),(73311,8,77979,3,1672319005),(73312,8,77980,3,1672319005),(73313,8,77981,3,1672319005),(73314,8,77982,3,1672319005),(73315,8,77983,3,1672319005),(73316,8,77984,3,1672319005),(73317,8,77985,3,1672319005),(73318,8,77986,3,1672319005),(73319,8,77987,3,1672319005),(73320,8,77988,3,1672319005),(73321,8,77989,3,1672319005),(73322,8,77990,3,1672319005),(73323,8,77991,3,1672319005),(73324,8,77992,3,1672319005),(73325,8,77993,3,1672319005),(73326,8,77994,3,1672319005),(73327,8,77995,3,1672319005),(73328,8,77996,3,1672319005),(73329,8,77997,3,1672319005),(73330,8,77998,3,1672319005),(73331,8,77999,3,1672319005),(73332,8,78000,3,1672319005),(73333,8,78001,3,1672319005),(73334,8,78002,3,1672319005),(73335,8,78003,3,1672319005),(73336,8,78004,3,1672319005),(73337,8,78005,3,1672319005),(73338,8,78006,3,1672319005),(73339,8,78007,3,1672319005),(73340,8,78008,3,1672319005),(73341,8,78009,3,1672319005),(73342,8,78010,3,1672319005),(73343,8,78011,3,1672319005),(73344,8,78012,3,1672319005),(73345,8,78013,3,1672319005),(73346,8,78014,3,1672319005),(73347,8,78015,3,1672319005),(73348,8,78016,3,1672319005),(73349,8,78017,3,1672319005),(73350,8,78018,3,1672319005),(73351,8,78019,3,1672319005),(73352,8,78020,3,1672319005),(73353,8,78021,3,1672319005),(73354,8,78022,3,1672319005),(73355,8,78023,3,1672319005),(73356,8,78024,3,1672319005),(73357,8,78025,3,1672319005),(73358,8,78026,3,1672319005),(73359,8,78027,3,1672319005),(73360,8,78028,3,1672319005),(73361,8,78029,3,1672319005),(73362,8,78030,3,1672319005),(73363,8,78031,3,1672319005),(73364,8,78032,3,1672319005),(73365,8,78033,3,1672319005),(73366,8,78034,3,1672319005),(73367,8,78035,3,1672319005),(73368,8,78036,3,1672319005),(73369,8,78037,3,1672319005),(73370,8,78038,3,1672319005),(73371,8,78039,3,1672319005),(73372,8,78040,3,1672319005),(73373,8,78041,3,1672319005),(73374,8,78042,3,1672319005),(73375,8,78043,3,1672319005),(73376,8,78044,3,1672319005),(73377,8,78045,3,1672319005),(73378,8,78046,3,1672319005),(73379,8,78047,3,1672319005),(73380,8,78048,3,1672319005),(73381,8,78049,3,1672319005),(73382,8,78050,3,1672319005),(73383,8,78056,3,1672319005),(73384,8,78057,3,1672319005),(73385,8,78058,3,1672319005),(73386,8,78059,3,1672319005),(73387,8,78060,3,1672319005),(73388,8,78061,3,1672319005),(73389,8,78063,3,1672319005),(73390,8,78065,3,1672319005),(73391,8,78066,3,1672319005),(73392,8,78067,3,1672319005),(73393,8,78068,3,1672319005),(73394,8,78086,3,1672319005),(73395,8,78087,3,1672319005),(73396,8,78088,3,1672319005),(73397,8,78089,3,1672319005),(73398,8,78090,3,1672319005),(73399,8,78091,3,1672319005),(73400,8,78093,3,1672319005),(73401,8,78094,3,1672319005),(73402,8,78095,3,1672319005),(73403,8,78096,3,1672319005),(73404,8,78097,3,1672319005),(73405,8,78098,3,1672319005),(73406,8,78099,3,1672319005),(73407,8,78100,3,1672319005),(73408,8,78101,3,1672319005),(73409,8,78102,3,1672319005),(73410,8,78103,3,1672319005),(73411,8,78104,3,1672319005),(73412,8,78105,3,1672319005),(73413,8,78106,3,1672319005),(73414,8,78107,3,1672319005),(73415,8,78108,3,1672319005),(73416,8,78109,3,1672319005),(73417,8,78110,3,1672319005),(73418,8,78111,3,1672319005),(73419,8,78113,3,1672319005),(73420,8,78114,3,1672319005),(73421,8,78115,3,1672319005),(73422,8,78116,3,1672319005),(73423,8,78117,3,1672319005),(73424,8,78118,3,1672319005),(73425,8,78119,3,1672319005),(73426,8,78120,3,1672319005),(73427,8,78121,3,1672319005),(73428,8,78122,3,1672319005),(73429,8,78123,3,1672319005),(73430,8,78124,3,1672319005),(73431,8,78125,3,1672319005),(73432,8,78126,3,1672319005),(73433,8,78127,3,1672319005),(73434,8,78128,3,1672319005),(73435,8,78129,3,1672319005),(73436,8,78130,3,1672319005),(73437,8,78131,3,1672319005),(73438,8,78132,3,1672319005),(73439,8,78133,3,1672319005),(73440,8,78134,3,1672319005),(73441,8,78135,3,1672319005),(73442,8,78136,3,1672319005),(73443,8,78137,3,1672319005),(73444,8,78138,3,1672319005),(73445,8,78139,3,1672319005),(73446,8,78140,3,1672319005),(73447,8,78141,3,1672319005),(73448,8,78142,3,1672319005),(73449,8,78143,3,1672319005),(73450,8,78144,3,1672319005),(73451,8,78145,3,1672319005),(73452,8,78146,3,1672319005),(73453,8,78147,3,1672319005),(73454,8,78148,3,1672319005),(73455,8,78149,3,1672319005),(73456,8,78150,3,1672319005),(73457,8,78151,3,1672319005),(73458,8,78152,3,1672319005),(73459,8,78153,3,1672319005),(73460,8,78154,3,1672319005),(73461,8,78155,3,1672319005),(73462,8,78156,3,1672319005),(73463,8,78157,3,1672319005),(73464,8,78158,3,1672319005),(73465,8,78160,3,1672319005),(73466,8,78161,3,1672319005),(73467,8,78162,3,1672319005),(73468,8,78163,3,1672319005),(73469,8,78215,3,1672319005),(73470,8,78216,3,1672319005),(73471,8,78217,3,1672319005),(73472,8,78218,3,1672319005),(73473,8,78219,3,1672319005),(73474,8,78220,3,1672319005),(73475,8,78221,3,1672319005),(73476,8,78222,3,1672319005),(73477,8,78223,3,1672319005),(73478,8,78224,3,1672319005),(73479,8,78225,3,1672319005),(73480,8,78226,3,1672319005),(73481,8,78227,3,1672319005),(73482,8,78228,3,1672319005),(73483,8,78229,3,1672319005),(73484,8,78230,3,1672319005),(73485,8,78231,3,1672319005),(73486,8,78232,3,1672319005),(73487,8,78233,3,1672319005),(73488,8,78235,3,1672319005),(73489,8,78236,3,1672319005),(73490,8,78237,3,1672319005),(73491,8,78238,3,1672319005),(73492,8,78239,3,1672319005),(73493,8,78240,3,1672319005),(73494,8,78241,3,1672319005),(73495,8,78242,3,1672319005),(73496,8,78243,3,1672319005),(73497,8,78244,3,1672319005),(73498,8,78245,3,1672319005),(73499,8,78246,3,1672319005),(73500,8,78247,3,1672319005),(73501,8,78248,3,1672319005),(73502,8,78249,3,1672319005),(73503,8,78250,3,1672319005),(73504,8,78251,3,1672319005),(73505,8,78252,3,1672319005),(73506,8,78253,3,1672319005),(73507,8,78254,3,1672319005),(73508,8,78255,3,1672319005),(73509,8,78256,3,1672319005),(73510,8,78257,3,1672319005),(73511,8,78258,3,1672319005),(73512,8,78259,3,1672319005),(73513,8,78260,3,1672319005),(73514,8,78261,3,1672319005),(73515,8,78262,3,1672319005),(73516,8,78263,3,1672319005),(73517,8,78264,3,1672319005),(73518,8,78265,3,1672319005),(73519,8,78266,3,1672319005),(73520,8,78267,3,1672319005),(73521,8,78268,3,1672319005),(73522,8,78269,3,1672319005),(73523,8,78270,3,1672319005),(73524,8,78271,3,1672319005),(73525,8,78272,3,1672319005),(73526,8,78273,3,1672319005),(73527,8,78274,3,1672319005),(73528,8,78275,3,1672319005),(73529,8,78276,3,1672319005),(73530,8,78277,3,1672319005),(73531,8,78278,3,1672319005),(73532,8,78279,3,1672319005),(73533,8,78280,3,1672319005),(73534,8,78282,3,1672319005),(73535,8,78283,3,1672319005),(73536,8,78284,3,1672319005),(73537,8,78285,3,1672319005),(73538,8,78337,3,1672319005),(73539,8,78338,3,1672319005),(73540,8,78339,3,1672319005),(73541,8,78340,3,1672319005),(73542,8,78341,3,1672319005),(73543,8,78342,3,1672319005),(73544,8,78343,3,1672319005),(73545,8,78344,3,1672319005),(73546,8,78345,3,1672319005),(73547,8,78346,3,1672319005),(73548,8,78347,3,1672319005),(73549,8,78348,3,1672319005),(73550,8,78349,3,1672319005),(73551,8,78350,3,1672319005),(73552,8,78351,3,1672319005),(73553,8,78352,3,1672319005),(73554,8,78353,3,1672319005),(73555,8,78354,3,1672319005),(73556,8,78355,3,1672319005),(73557,8,78356,3,1672319005),(73558,8,78357,3,1672319005),(73559,8,78358,3,1672319005),(73560,8,78359,3,1672319005),(73561,8,78360,3,1672319005),(73562,8,78361,3,1672319005),(73563,8,78362,3,1672319005),(73564,8,78363,3,1672319005),(73565,8,78364,3,1672319005),(73566,8,78365,3,1672319005),(73567,8,78366,3,1672319005),(73568,8,78367,3,1672319005),(73569,8,78368,3,1672319005),(73570,8,78369,3,1672319005),(73571,8,78370,3,1672319005),(73572,8,78371,3,1672319005),(73573,8,78372,3,1672319005),(73574,8,78373,3,1672319005),(73575,8,78374,3,1672319005),(73576,8,78375,3,1672319005),(73577,8,78376,3,1672319005),(73578,8,78377,3,1672319005),(73579,8,78378,3,1672319005),(73580,8,78379,3,1672319005),(73581,8,78380,3,1672319005),(73582,8,78381,3,1672319005),(73583,8,78382,3,1672319005),(73584,8,78383,3,1672319005),(73585,8,78384,3,1672319005),(73586,8,78385,3,1672319005),(73587,8,78386,3,1672319005),(73588,8,78387,3,1672319005),(73589,8,78388,3,1672319005),(73590,8,78389,3,1672319005),(73591,8,78390,3,1672319005),(73592,8,78391,3,1672319005),(73593,8,78392,3,1672319005),(73594,8,78393,3,1672319005),(73595,8,78394,3,1672319005),(73596,8,78395,3,1672319005),(73597,8,78396,3,1672319005),(73598,8,78397,3,1672319005),(73599,8,78398,3,1672319005),(73600,8,78399,3,1672319005),(73601,8,78400,3,1672319005),(73602,8,78401,3,1672319005),(73603,8,78402,3,1672319005),(73604,8,78403,3,1672319005),(73605,8,78404,3,1672319005),(73606,8,78405,3,1672319005),(73607,8,78406,3,1672319005),(73608,8,78407,3,1672319005),(73609,8,78408,3,1672319005),(73610,8,78409,3,1672319005),(73611,8,78410,3,1672319005),(73612,8,78411,3,1672319005),(73613,8,78412,3,1672319005),(73614,8,78413,3,1672319005),(73615,8,78414,3,1672319005),(73616,8,78415,3,1672319005),(73617,8,78416,3,1672319005),(73618,8,78417,3,1672319005),(73619,8,78418,3,1672319005),(73620,8,78419,3,1672319005),(73621,8,78420,3,1672319005),(73622,8,78421,3,1672319005),(73623,8,78422,3,1672319005),(73624,8,78423,3,1672319005),(73625,8,78424,3,1672319005),(73626,8,78425,3,1672319005),(73627,8,78426,3,1672319005),(73628,8,78427,3,1672319005),(73629,8,78428,3,1672319005),(73630,8,78429,3,1672319005),(73631,8,78430,3,1672319005),(73632,8,78431,3,1672319005),(73633,8,78432,3,1672319005),(73634,8,78433,3,1672319005),(73635,8,78434,3,1672319005),(73636,8,78435,3,1672319005),(73637,8,78436,3,1672319005),(73638,8,78437,3,1672319005),(73639,8,78438,3,1672319005),(73640,8,78439,3,1672319005),(73641,8,78440,3,1672319005),(73642,8,78441,3,1672319005),(73643,8,78442,3,1672319005),(73644,8,78443,3,1672319005),(73645,8,78444,3,1672319005),(73646,8,78445,3,1672319005),(73647,8,78446,3,1672319005),(73648,8,78447,3,1672319005),(73649,8,78448,3,1672319005),(73650,8,78449,3,1672319005),(73651,8,78450,3,1672319005),(73652,8,78451,3,1672319005),(73653,8,78452,3,1672319005),(73654,8,78453,3,1672319005),(73655,8,78454,3,1672319005),(73656,8,78455,3,1672319005),(73657,8,78456,3,1672319005),(73658,8,78457,3,1672319005),(73659,8,78458,3,1672319005),(73660,8,78459,3,1672319005),(73661,8,78460,3,1672319005),(73662,8,78461,3,1672319005),(73663,8,78462,3,1672319005),(73664,8,78463,3,1672319005),(73665,8,78464,3,1672319005),(73666,8,78465,3,1672319005),(73667,8,78466,3,1672319005),(73668,8,78467,3,1672319005),(73669,8,78468,3,1672319005),(73670,8,78469,3,1672319005),(73671,8,78470,3,1672319005),(73672,8,78471,3,1672319005),(73673,8,78472,3,1672319005),(73674,8,78473,3,1672319005),(73675,8,78474,3,1672319005),(73676,8,78475,3,1672319005),(73677,8,78476,3,1672319005),(73678,8,78477,3,1672319005),(73679,8,78478,3,1672319005),(73680,8,78479,3,1672319005),(73681,8,78480,3,1672319005),(73682,8,78481,3,1672319005),(73683,8,78482,3,1672319005),(73684,8,78483,3,1672319005),(73685,8,78484,3,1672319005),(73686,8,78485,3,1672319005),(73687,8,78486,3,1672319005),(73688,8,78487,3,1672319005),(73689,8,78488,3,1672319005),(73690,8,78489,3,1672319005),(73691,8,78490,3,1672319005),(73692,8,78491,3,1672319005),(73693,8,78492,3,1672319005),(73694,8,78493,3,1672319005),(73695,8,78494,3,1672319005),(73696,8,78495,3,1672319005),(73697,8,78496,3,1672319005),(73698,8,78497,3,1672319005),(73699,8,78498,3,1672319005),(73700,8,78499,3,1672319005),(73701,8,78500,3,1672319005),(73702,8,78501,3,1672319005),(73703,8,78502,3,1672319005),(73704,8,78503,3,1672319005),(73705,8,78504,3,1672319005),(73706,8,78505,3,1672319005),(73707,8,78506,3,1672319005),(73708,8,78507,3,1672319005),(73709,8,78508,3,1672319005),(73710,8,78509,3,1672319005),(73711,8,78510,3,1672319005),(73712,8,78511,3,1672319005),(73713,8,78512,3,1672319005),(73714,8,78513,3,1672319005),(73715,8,78514,3,1672319005),(73716,8,78515,3,1672319005),(73717,8,78516,3,1672319005),(73718,8,78517,3,1672319005),(73719,8,78518,3,1672319005),(73720,8,78519,3,1672319005),(73721,8,78520,3,1672319005),(73722,8,78521,3,1672319005),(73723,8,78522,3,1672319005),(73724,8,78523,3,1672319005),(73725,8,78524,3,1672319005),(73726,8,78528,3,1672319005),(73727,8,78529,3,1672319005),(73728,8,78530,3,1672319005),(73729,8,78531,3,1672319005),(73730,8,78532,3,1672319005),(73731,8,78533,3,1672319005),(73732,8,78534,3,1672319005),(73733,8,78535,3,1672319005),(73734,8,78536,3,1672319005),(73735,8,78537,3,1672319005),(73736,8,78538,3,1672319005),(73737,8,78539,3,1672319005),(73738,8,78540,3,1672319005),(73739,8,78541,3,1672319005),(73740,8,78542,3,1672319005),(73741,8,78543,3,1672319005),(73742,8,78544,3,1672319005),(73743,8,78545,3,1672319005),(73744,8,78546,3,1672319005),(73745,8,78547,3,1672319005),(73746,8,78548,3,1672319005),(73747,8,78549,3,1672319005),(73748,8,78550,3,1672319005),(73749,8,78551,3,1672319005),(73750,8,78552,3,1672319005),(73751,8,78553,3,1672319005),(73752,8,78554,3,1672319005),(73753,8,78555,3,1672319005),(73754,8,78556,3,1672319005),(73755,8,78557,3,1672319005),(73756,8,78558,3,1672319005),(73757,8,78559,3,1672319005),(73758,8,78560,3,1672319005),(73759,8,78561,3,1672319005),(73760,8,78562,3,1672319005),(73761,8,78563,3,1672319005),(73762,8,78564,3,1672319005),(73763,8,78565,3,1672319005),(73764,8,78566,3,1672319005),(73765,8,78567,3,1672319005),(73766,8,78568,3,1672319005),(73767,8,78569,3,1672319005),(73768,8,78570,3,1672319005),(73769,8,78571,3,1672319005),(73770,8,78572,3,1672319005),(73771,8,78573,3,1672319005),(73772,8,78574,3,1672319005),(73773,8,78575,3,1672319005),(73774,8,78576,3,1672319005),(73775,8,78577,3,1672319005),(73776,8,78578,3,1672319005),(73777,8,78579,3,1672319005),(73778,8,78580,3,1672319005),(73779,8,78581,3,1672319005),(73780,8,78582,3,1672319005),(73781,8,78583,3,1672319005),(73782,8,78584,3,1672319005),(73783,8,78585,3,1672319005),(73784,8,78586,3,1672319005),(73785,8,78587,3,1672319005),(73786,8,78588,3,1672319005),(73787,8,78589,3,1672319005),(73788,8,78590,3,1672319005),(73789,8,78591,3,1672319005),(73790,8,78592,3,1672319005),(73791,8,78593,3,1672319005),(73792,8,78594,3,1672319005),(73793,8,78595,3,1672319005),(73794,8,78596,3,1672319005),(73795,8,78597,3,1672319005),(73796,8,78598,3,1672319005),(73797,8,78599,3,1672319005),(73798,8,78600,3,1672319005),(73799,8,78601,3,1672319005),(73800,8,78602,3,1672319005),(73801,8,78603,3,1672319005),(73802,8,78604,3,1672319005),(73803,8,78605,3,1672319005),(73804,8,78606,3,1672319005),(73805,8,78607,3,1672319005),(73806,8,78608,3,1672319005),(73807,8,78609,3,1672319005),(73808,8,78610,3,1672319005),(73809,8,78613,3,1672319005),(73810,8,78614,3,1672319005),(73811,8,78615,3,1672319005),(73812,8,78616,3,1672319005),(73813,8,78617,3,1672319005),(73814,8,78618,3,1672319005),(73815,8,78619,3,1672319005),(73816,8,78620,3,1672319005),(73817,8,78621,3,1672319005),(73818,8,78622,3,1672319005),(73819,8,78623,3,1672319005),(73820,8,78624,3,1672319005),(73821,8,78625,3,1672319005),(73822,8,78626,3,1672319005),(73823,8,78627,3,1672319005),(73824,8,78628,3,1672319005),(73825,8,78629,3,1672319005),(73826,8,78630,3,1672319005),(73827,8,78631,3,1672319005),(73828,8,78632,3,1672319005),(73829,8,78633,3,1672319005),(73830,8,78634,3,1672319005),(73831,8,78635,3,1672319005),(73832,8,78636,3,1672319005),(73833,8,78637,3,1672319005),(73834,8,78638,3,1672319005),(73835,8,78639,3,1672319005),(73836,8,78640,3,1672319005),(73837,8,78641,3,1672319005),(73838,8,78642,3,1672319005),(73839,8,78643,3,1672319005),(73840,8,78644,3,1672319005),(73841,8,78645,3,1672319005),(73842,8,78646,3,1672319005),(73843,8,78647,3,1672319005),(73844,8,78648,3,1672319005),(73845,8,78649,3,1672319005),(73846,8,78650,3,1672319005),(73847,8,78651,3,1672319005),(73848,8,78652,3,1672319005),(73849,8,78653,3,1672319005),(73850,8,78654,3,1672319005),(73851,8,78655,3,1672319005),(73852,8,78656,3,1672319005),(73853,8,78657,3,1672319005),(73854,8,78658,3,1672319005),(73855,8,78659,3,1672319005),(73856,8,78660,3,1672319005),(73857,8,78661,3,1672319005),(73858,8,78662,3,1672319005),(73859,8,78663,3,1672319005),(73860,8,78664,3,1672319005),(73861,8,78665,3,1672319005),(73862,8,78666,3,1672319005),(73863,8,78667,3,1672319005),(73864,8,78668,3,1672319005),(73865,8,78669,3,1672319005),(73866,8,78670,3,1672319005),(73867,8,78671,3,1672319005),(73868,8,78672,3,1672319005),(73869,8,78673,3,1672319005),(73870,8,78674,3,1672319005),(73871,8,78675,3,1672319005),(73872,8,78676,3,1672319005),(73873,8,78677,3,1672319005),(73874,8,78678,3,1672319005),(73875,8,78679,3,1672319005),(73876,8,78680,3,1672319005),(73877,8,78681,3,1672319005),(73878,8,78682,3,1672319005),(73879,8,78683,3,1672319005),(73880,8,78684,3,1672319005),(73881,8,78685,3,1672319005),(73882,8,78686,3,1672319005),(73883,8,78687,3,1672319005),(73884,8,78688,3,1672319005),(73885,8,78689,3,1672319005),(73886,8,78690,3,1672319005),(73887,8,78691,3,1672319005),(73888,8,78692,3,1672319005),(73889,8,78693,3,1672319005),(73890,8,78694,3,1672319005),(73891,8,78695,3,1672319005),(73892,8,78696,3,1672319005),(73893,8,78697,3,1672319005),(73894,8,78698,3,1672319005),(73895,8,78699,3,1672319005),(73896,8,78700,3,1672319005),(73897,8,78701,3,1672319005),(73898,8,78702,3,1672319005),(73899,8,78703,3,1672319005),(73900,8,78704,3,1672319005),(73901,8,78705,3,1672319005),(73902,8,78706,3,1672319005),(73903,8,78707,3,1672319005),(73904,8,78708,3,1672319005),(73905,8,78709,3,1672319005),(73906,8,78710,3,1672319005),(73907,8,78711,3,1672319005),(73908,8,78712,3,1672319005),(73909,8,78713,3,1672319005),(73910,8,78715,3,1672319005),(73911,8,78716,3,1672319005),(73912,8,78717,3,1672319005),(73913,8,78718,3,1672319005),(73914,8,78719,3,1672319005),(73915,8,78720,3,1672319005),(73916,8,78721,3,1672319005),(73917,8,78722,3,1672319005),(73918,8,78723,3,1672319005),(73919,8,78724,3,1672319005),(73920,8,78725,3,1672319005),(73921,8,78726,3,1672319005),(73922,8,78727,3,1672319005),(73923,8,78728,3,1672319005),(73924,8,78729,3,1672319005),(73925,8,78730,3,1672319005),(73926,8,78731,3,1672319005),(73927,8,78732,3,1672319005),(73928,8,78733,3,1672319005),(73929,8,78734,3,1672319005),(73930,8,78735,3,1672319005),(73931,8,78736,3,1672319005),(73932,8,78737,3,1672319005),(73933,8,78765,3,1672319005),(73934,8,78766,3,1672319005),(73935,8,78767,3,1672319005),(73936,8,78768,3,1672319005),(73937,8,78769,3,1672319005),(73938,8,78770,3,1672319005),(73939,8,78771,3,1672319005),(73940,8,78772,3,1672319005),(73941,8,78773,3,1672319005),(73942,8,78774,3,1672319005),(73943,8,78775,3,1672319005),(73944,8,78776,3,1672319005),(73945,8,78777,3,1672319005),(73946,8,78778,3,1672319005),(73947,8,78779,3,1672319005),(73948,8,78780,3,1672319005),(73949,8,78781,3,1672319005),(73950,8,78782,3,1672319005),(73951,8,78783,3,1672319005),(73952,8,78784,3,1672319005),(73953,8,78785,3,1672319005),(73954,8,78786,3,1672319005),(73955,8,78787,3,1672319005),(73956,8,78788,3,1672319005),(73957,8,78789,3,1672319005),(73958,8,78790,3,1672319005),(73959,8,78791,3,1672319005),(73960,8,78792,3,1672319005),(73961,8,78793,3,1672319005),(73962,8,78794,3,1672319005),(73963,8,78795,3,1672319005),(73964,8,78796,3,1672319005),(73965,8,78797,3,1672319005),(73966,8,78798,3,1672319005),(73967,8,78799,3,1672319005),(73968,8,78801,3,1672319005),(73969,8,78802,3,1672319005),(73970,8,78803,3,1672319005),(73971,8,78804,3,1672319005),(73972,8,78805,3,1672319005),(73973,8,78806,3,1672319005),(73974,8,78807,3,1672319005),(73975,8,78808,3,1672319005),(73976,8,78809,3,1672319005),(73977,8,78810,3,1672319005),(73978,8,78811,3,1672319005),(73979,8,78812,3,1672319005),(73980,8,78813,3,1672319005),(73981,8,78814,3,1672319005),(73982,8,78815,3,1672319005),(73983,8,78816,3,1672319005),(73984,8,78817,3,1672319005),(73985,8,78818,3,1672319005),(73986,8,78819,3,1672319005),(73987,8,78820,3,1672319005),(73988,8,78821,3,1672319005),(73989,8,78822,3,1672319005),(73990,8,78823,3,1672319005),(73991,8,78824,3,1672319005),(73992,8,78825,3,1672319005),(73993,8,78826,3,1672319005),(73994,8,78827,3,1672319005),(73995,8,78828,3,1672319005),(73996,8,78829,3,1672319005),(73997,8,78830,3,1672319005),(73998,8,78831,3,1672319005),(73999,8,78832,3,1672319005),(74000,8,78833,3,1672319005),(74001,8,78834,3,1672319005),(74002,8,78835,3,1672319005),(74003,8,78836,3,1672319005),(74004,8,78837,3,1672319005),(74005,8,78838,3,1672319005),(74006,8,78839,3,1672319005),(74007,8,78840,3,1672319005),(74008,8,78841,3,1672319005),(74009,8,78842,3,1672319005),(74010,8,78843,3,1672319005),(74011,8,78844,3,1672319005),(74012,8,78845,3,1672319005),(74013,8,78846,3,1672319005),(74014,8,78847,3,1672319005),(74015,8,78848,3,1672319005),(74016,8,78849,3,1672319005),(74017,8,78850,3,1672319005),(74018,8,78851,3,1672319005),(74019,8,78852,3,1672319005),(74020,8,78853,3,1672319005),(74021,8,78854,3,1672319005),(74022,8,78855,3,1672319005),(74023,8,78856,3,1672319005),(74024,8,78857,3,1672319005),(74025,8,78858,3,1672319005),(74026,8,78859,3,1672319005),(74027,8,78860,3,1672319005),(74028,8,78861,3,1672319005),(74029,8,78862,3,1672319005),(74030,8,78863,3,1672319005),(74031,8,78864,3,1672319005),(74032,8,78865,3,1672319005),(74033,8,78866,3,1672319005),(74034,8,78867,3,1672319005),(74035,8,78868,3,1672319005),(74036,8,78869,3,1672319005),(74037,8,78870,3,1672319005),(74038,8,78871,3,1672319005),(74039,8,78872,3,1672319005),(74040,8,78873,3,1672319005),(74041,8,78874,3,1672319005),(74042,8,78875,3,1672319005),(74043,8,78876,3,1672319005),(74044,8,78877,3,1672319005),(74045,8,78887,3,1672319005),(74046,8,78888,3,1672319005),(74047,8,78889,3,1672319005),(74048,8,78890,3,1672319005),(74049,8,78891,3,1672319005),(74050,8,78892,3,1672319005),(74051,8,78893,3,1672319005),(74052,8,78894,3,1672319005),(74053,8,78895,3,1672319005),(74054,8,78896,3,1672319005),(74055,8,78897,3,1672319005),(74056,8,78898,3,1672319005),(74057,8,78899,3,1672319005),(74058,8,78900,3,1672319005),(74059,8,78901,3,1672319005),(74060,8,78902,3,1672319005),(74061,8,78903,3,1672319005),(74062,8,78904,3,1672319005),(74063,8,78905,3,1672319005),(74064,8,78906,3,1672319005),(74065,8,78907,3,1672319005),(74066,8,78908,3,1672319005),(74067,8,78909,3,1672319005),(74068,8,78910,3,1672319005),(74069,8,78911,3,1672319005),(74070,8,78912,3,1672319005),(74071,8,78913,3,1672319005),(74072,8,78914,3,1672319005),(74073,8,78915,3,1672319005),(74074,8,78916,3,1672319005),(74075,8,78917,3,1672319005),(74076,8,78918,3,1672319005),(74077,8,78919,3,1672319005),(74078,8,78920,3,1672319005),(74079,8,78921,3,1672319005),(74080,8,78922,3,1672319005),(74081,8,78923,3,1672319005),(74082,8,78924,3,1672319005),(74083,8,78925,3,1672319005),(74084,8,78926,3,1672319005),(74085,8,78927,3,1672319005),(74086,8,78928,3,1672319005),(74087,8,78929,3,1672319005),(74088,8,78930,3,1672319005),(74089,8,78931,3,1672319005),(74090,8,78932,3,1672319005),(74091,8,78933,3,1672319005),(74092,8,78934,3,1672319005),(74093,8,78935,3,1672319005),(74094,8,78936,3,1672319005),(74095,8,78937,3,1672319005),(74096,8,78938,3,1672319005),(74097,8,78939,3,1672319005),(74098,8,78940,3,1672319005),(74099,8,78941,3,1672319005),(74100,8,78942,3,1672319005),(74101,8,78943,3,1672319005),(74102,8,78946,3,1672319005),(74103,8,78947,3,1672319005),(74104,8,78948,3,1672319005),(74105,8,78949,3,1672319005),(74106,8,78950,3,1672319005),(74107,8,78951,3,1672319005),(74108,8,78952,3,1672319005),(74109,8,78953,3,1672319005),(74110,8,78954,3,1672319005),(74111,8,78955,3,1672319005),(74112,8,78956,3,1672319005),(74113,8,78957,3,1672319005),(74114,8,78958,3,1672319005),(74115,8,78959,3,1672319005),(74116,8,78960,3,1672319005),(74117,8,78961,3,1672319005),(74118,8,78962,3,1672319005),(74119,8,78963,3,1672319005),(74120,8,78964,3,1672319005),(74121,8,78965,3,1672319005),(74122,8,78966,3,1672319005),(74123,8,78967,3,1672319005),(74124,8,78968,3,1672319005),(74125,8,78969,3,1672319005),(74126,8,78970,3,1672319005),(74127,8,78971,3,1672319005),(74128,8,78972,3,1672319005),(74129,8,78973,3,1672319005),(74130,8,78974,3,1672319005),(74131,8,78975,3,1672319005),(74132,8,78976,3,1672319005),(74133,8,78977,3,1672319005),(74134,8,78978,3,1672319005),(74135,8,78979,3,1672319005),(74136,8,78980,3,1672319005),(74137,8,78981,3,1672319005),(74138,8,78982,3,1672319005),(74139,8,78983,3,1672319005),(74140,8,78984,3,1672319005),(74141,8,78985,3,1672319005),(74142,8,78986,3,1672319005),(74143,8,78987,3,1672319005),(74144,8,78988,3,1672319005),(74145,8,78989,3,1672319005),(74146,8,78990,3,1672319005),(74147,8,78991,3,1672319005),(74148,8,78992,3,1672319005),(74149,8,78993,3,1672319005),(74150,8,78994,3,1672319005),(74151,8,78995,3,1672319005),(74152,8,78996,3,1672319005),(74153,8,78997,3,1672319005),(74154,8,78998,3,1672319005),(74155,8,78999,3,1672319005),(74156,8,79000,3,1672319005),(74157,8,79001,3,1672319005),(74158,8,79002,3,1672319005),(74159,8,79003,3,1672319005),(74160,8,79004,3,1672319005),(74161,8,79005,3,1672319005),(74162,8,79006,3,1672319005),(74163,8,79007,3,1672319005),(74164,8,79008,3,1672319005),(74165,8,79009,3,1672319005),(74166,8,79010,3,1672319005),(74167,8,79011,3,1672319005),(74168,8,79012,3,1672319005),(74169,8,79013,3,1672319005),(74170,8,79014,3,1672319005),(74171,8,79015,3,1672319005),(74172,8,79016,3,1672319005),(74173,8,79017,3,1672319005),(74174,8,79018,3,1672319005),(74175,8,79019,3,1672319005),(74176,8,79020,3,1672319005),(74177,8,79021,3,1672319005),(74178,8,79022,3,1672319005),(74179,8,79023,3,1672319005),(74180,8,79024,3,1672319005),(74181,8,79025,3,1672319005),(74182,8,79026,3,1672319005),(74183,8,79027,3,1672319005),(74184,8,79028,3,1672319005),(74185,8,79029,3,1672319005),(74186,8,79030,3,1672319005),(74187,8,79031,3,1672319005),(74188,8,79032,3,1672319005),(74189,8,79033,3,1672319005),(74190,8,79034,3,1672319005),(74191,8,79035,3,1672319005),(74192,8,79036,3,1672319005),(74193,8,79037,3,1672319005),(74194,8,79038,3,1672319005),(74195,8,79039,3,1672319005),(74196,8,79040,3,1672319005),(74197,8,79041,3,1672319005),(74198,8,79042,3,1672319005),(74199,8,79043,3,1672319005),(74200,8,79044,3,1672319005),(74201,8,79045,3,1672319005),(74202,8,79046,3,1672319005),(74203,8,79047,3,1672319005),(74204,8,79048,3,1672319005),(74205,8,79049,3,1672319005),(74206,8,79050,3,1672319005),(74207,8,79051,3,1672319005),(74208,8,79052,3,1672319005),(74209,8,79053,3,1672319005),(74210,8,79054,3,1672319005),(74211,8,79055,3,1672319005),(74212,8,79056,3,1672319005),(74213,8,79057,3,1672319005),(74214,8,79058,3,1672319005),(74215,8,79059,3,1672319005),(74216,8,79060,3,1672319005),(74217,8,79061,3,1672319005),(74218,8,79062,3,1672319005),(74219,8,79063,3,1672319005),(74220,8,79064,3,1672319005),(74221,8,79065,3,1672319005),(74222,8,79066,3,1672319005),(74223,8,79067,3,1672319005),(74224,8,79068,3,1672319005),(74225,8,79069,3,1672319005),(74226,8,79070,3,1672319005),(74227,8,79071,3,1672319005),(74228,8,79072,3,1672319005),(74229,8,79073,3,1672319005),(74230,8,79074,3,1672319005),(74231,8,79075,3,1672319005),(74232,8,79076,3,1672319005),(74233,8,79077,3,1672319005),(74234,8,79078,3,1672319005),(74235,8,79079,3,1672319005),(74236,8,79080,3,1672319005),(74237,8,79081,3,1672319005),(74238,8,79082,3,1672319005),(74239,8,79083,3,1672319005),(74240,8,79084,3,1672319005),(74241,8,79085,3,1672319005),(74242,8,79086,3,1672319005),(74243,8,79087,3,1672319005),(74244,8,79088,3,1672319005),(74245,8,79089,3,1672319005),(74246,8,79090,3,1672319005),(74247,8,79091,3,1672319005),(74248,8,79092,3,1672319005),(74249,8,79093,3,1672319005),(74250,8,79094,3,1672319005),(74251,8,79095,3,1672319005),(74252,8,79096,3,1672319005),(74253,8,79097,3,1672319005),(74254,8,79098,3,1672319005),(74255,8,79099,3,1672319005),(74256,8,79100,3,1672319005),(74257,8,79101,3,1672319005),(74258,8,79102,3,1672319005),(74259,8,79103,3,1672319005),(74260,8,79104,3,1672319005),(74261,8,79105,3,1672319005),(74262,8,79106,3,1672319005),(74263,8,79107,3,1672319005),(74264,8,79108,3,1672319005),(74265,8,79109,3,1672319005),(74266,8,79110,3,1672319005),(74267,8,79111,3,1672319005),(74268,8,79112,3,1672319005),(74269,8,79113,3,1672319005),(74270,8,79114,3,1672319005),(74271,8,79115,3,1672319005),(74272,8,79116,3,1672319005),(74273,8,79117,3,1672319005),(74274,8,79118,3,1672319005),(74275,8,79119,3,1672319005),(74276,8,79120,3,1672319005),(74277,8,79121,3,1672319005),(74278,8,79122,3,1672319005),(74279,8,79123,3,1672319005),(74280,8,79124,3,1672319005),(74281,8,79125,3,1672319005),(74282,8,79126,3,1672319005),(74283,8,79127,3,1672319005),(74284,8,79128,3,1672319005),(74285,8,79129,3,1672319005),(74286,8,79130,3,1672319005),(74287,8,79131,3,1672319005),(74288,8,79132,3,1672319005),(74289,8,79133,3,1672319005),(74290,8,79134,3,1672319005),(74291,8,79135,3,1672319005),(74292,8,79136,3,1672319005),(74293,8,79137,3,1672319005),(74294,8,79138,3,1672319005),(74295,8,79139,3,1672319005),(74296,8,79140,3,1672319005),(74297,8,79141,3,1672319005),(74298,8,79142,3,1672319005),(74299,8,79143,3,1672319005),(74300,8,79144,3,1672319005),(74301,8,79145,3,1672319005),(74302,8,79146,3,1672319005),(74303,8,79147,3,1672319005),(74304,8,79148,3,1672319005),(74305,8,79149,3,1672319005),(74306,8,79150,3,1672319005),(74307,8,79151,3,1672319005),(74308,8,79152,3,1672319005),(74309,8,79153,3,1672319005),(74310,8,79154,3,1672319005),(74311,8,79155,3,1672319005),(74312,8,79156,3,1672319005),(74313,8,79157,3,1672319005),(74314,8,79158,3,1672319005),(74315,8,79159,3,1672319005),(74316,8,79160,3,1672319005),(74317,8,79161,3,1672319005),(74318,8,79162,3,1672319005),(74319,8,79163,3,1672319005),(74320,8,79164,3,1672319005),(74321,8,79165,3,1672319005),(74322,8,79166,3,1672319005),(74323,8,79167,3,1672319005),(74324,8,79168,3,1672319005),(74325,8,79169,3,1672319005),(74326,8,79170,3,1672319005),(74327,8,79177,3,1672319005),(74328,8,79178,3,1672319005),(74329,8,79179,3,1672319005),(74330,8,79180,3,1672319005),(74331,8,79181,3,1672319005),(74332,8,79182,3,1672319005),(74333,8,79183,3,1672319005),(74334,8,79184,3,1672319005),(74335,8,79185,3,1672319005),(74336,8,79186,3,1672319005),(74337,8,79187,3,1672319005),(74338,8,79188,3,1672319005),(74339,8,79189,3,1672319005),(74340,8,79190,3,1672319005),(74341,8,79191,3,1672319005),(74342,8,79192,3,1672319005),(74343,8,79193,3,1672319005),(74344,8,79194,3,1672319005),(74345,8,79195,3,1672319005),(74346,8,79196,3,1672319005),(74347,8,79197,3,1672319005),(74348,8,79198,3,1672319005),(74349,8,79199,3,1672319005),(74350,8,79200,3,1672319005),(74351,8,79201,3,1672319005),(74352,8,79202,3,1672319005),(74353,8,79203,3,1672319005),(74354,8,79204,3,1672319005),(74355,8,79205,3,1672319005),(74356,8,79206,3,1672319005),(74357,8,79207,3,1672319005),(74358,8,79208,3,1672319005),(74359,8,79209,3,1672319005),(74360,8,79210,3,1672319005),(74361,8,79211,3,1672319005),(74362,8,79212,3,1672319005),(74363,8,79213,3,1672319005),(74364,8,79214,3,1672319005),(74365,8,79215,3,1672319005),(74366,8,79216,3,1672319005),(74367,8,79217,3,1672319005),(74368,8,79218,3,1672319005),(74369,8,79219,3,1672319005),(74370,8,79220,3,1672319005),(74371,8,79221,3,1672319005),(74372,8,79222,3,1672319005),(74373,8,79223,3,1672319005),(74374,8,79224,3,1672319005),(74375,8,79225,3,1672319005),(74376,8,79226,3,1672319005),(74377,8,79227,3,1672319005),(74378,8,79228,3,1672319005),(74379,8,79229,3,1672319005),(74380,8,79230,3,1672319005),(74381,8,79231,3,1672319005),(74382,8,79232,3,1672319005),(74383,8,79233,3,1672319005),(74384,8,79234,3,1672319005),(74385,8,79235,3,1672319005),(74386,8,79236,3,1672319005),(74387,8,79237,3,1672319005),(74388,8,79238,3,1672319005),(74389,8,79239,3,1672319005),(74390,8,79240,3,1672319005),(74391,8,79241,3,1672319005),(74392,8,79242,3,1672319005),(74393,8,79243,3,1672319005),(74394,8,79244,3,1672319005),(74395,8,79245,3,1672319005),(74396,8,79246,3,1672319005),(74397,8,79247,3,1672319005),(74398,8,79248,3,1672319005),(74399,8,79249,3,1672319005),(74400,8,79250,3,1672319005),(74401,8,79251,3,1672319005),(74402,8,79252,3,1672319005),(74403,8,79253,3,1672319005),(74404,8,79254,3,1672319005),(74405,8,79255,3,1672319005),(74406,8,79256,3,1672319005),(74407,8,79257,3,1672319005),(74408,8,79258,3,1672319005),(74409,8,79259,3,1672319005),(74410,8,79260,3,1672319005),(74411,8,79261,3,1672319005),(74412,8,79262,3,1672319005),(74413,8,79263,3,1672319005),(74414,8,79264,3,1672319005),(74415,8,79265,3,1672319005),(74416,8,79266,3,1672319005),(74417,8,79267,3,1672319005),(74418,8,79268,3,1672319005),(74419,8,79269,3,1672319005),(74420,8,79270,3,1672319005),(74421,8,79271,3,1672319005),(74422,8,79272,3,1672319005),(74423,8,79273,3,1672319005),(74424,8,79274,3,1672319005),(74425,8,79275,3,1672319005),(74426,8,79276,3,1672319005),(74427,8,79277,3,1672319005),(74428,8,79278,3,1672319005),(74429,8,79279,3,1672319005),(74430,8,79280,3,1672319005),(74431,8,79281,3,1672319005),(74432,8,79282,3,1672319005),(74433,8,79283,3,1672319005),(74434,8,79284,3,1672319005),(74435,8,79285,3,1672319005),(74436,8,79286,3,1672319005),(74437,8,79287,3,1672319005),(74438,8,79288,3,1672319005),(74439,8,79289,3,1672319005),(74440,8,79290,3,1672319005),(74441,8,79291,3,1672319005),(74442,8,79292,3,1672319005),(74443,8,79293,3,1672319005),(74444,8,79294,3,1672319005),(74445,8,79295,3,1672319005),(74446,8,79296,3,1672319005),(74447,8,79297,3,1672319005),(74448,8,79298,3,1672319005),(74449,8,79299,3,1672319005),(74450,8,79300,3,1672319005),(74451,8,79301,3,1672319005),(74452,8,79302,3,1672319005),(74453,8,79303,3,1672319005),(74454,8,79304,3,1672319005),(74455,8,79305,3,1672319005),(74456,8,79306,3,1672319005),(74457,8,79307,3,1672319005),(74458,8,79308,3,1672319005),(74459,8,79309,3,1672319005),(74460,8,79310,3,1672319005),(74461,8,79311,3,1672319005),(74462,8,79312,3,1672319005),(74463,8,79313,3,1672319005),(74464,8,79314,3,1672319005),(74465,8,79315,3,1672319005),(74466,8,79316,3,1672319005),(74467,8,79317,3,1672319005),(74468,8,79318,3,1672319005),(74469,8,79319,3,1672319005),(74470,8,79320,3,1672319005),(74471,8,79321,3,1672319005),(74472,8,79322,3,1672319005),(74473,8,79323,3,1672319005),(74474,8,79324,3,1672319005),(74475,8,79325,3,1672319005),(74476,8,79326,3,1672319005),(74477,8,79327,3,1672319005),(74478,8,79328,3,1672319005),(74479,8,79329,3,1672319005),(74480,8,79330,3,1672319005),(74481,8,79331,3,1672319005),(74482,8,79332,3,1672319005),(74483,8,79333,3,1672319005),(74484,8,79334,3,1672319005),(74485,8,79335,3,1672319005),(74486,8,79336,3,1672319005),(74487,8,79337,3,1672319005),(74488,8,79338,3,1672319005),(74489,8,79339,3,1672319005),(74490,8,79340,3,1672319005),(74491,8,79341,3,1672319005),(74492,8,79342,3,1672319005),(74493,8,79343,3,1672319005),(74494,8,79344,3,1672319005),(74495,8,79345,3,1672319005),(74496,8,79346,3,1672319005),(74497,8,79347,3,1672319005),(74498,8,79348,3,1672319005),(74499,8,79349,3,1672319005),(74500,8,79350,3,1672319005),(74501,8,79351,3,1672319005),(74502,8,79352,3,1672319005),(74503,8,79353,3,1672319005),(74504,8,79354,3,1672319005),(74505,8,79355,3,1672319005),(74506,8,79356,3,1672319005),(74507,8,79357,3,1672319005),(74508,8,79358,3,1672319005),(74509,8,79359,3,1672319005),(74510,8,79360,3,1672319005),(74511,8,79361,3,1672319005),(74512,8,79362,3,1672319005),(74513,8,79363,3,1672319005),(74514,8,79364,3,1672319005),(74515,8,79365,3,1672319005),(74516,8,79366,3,1672319005),(74517,8,79367,3,1672319005),(74518,8,79368,3,1672319005),(74519,8,79369,3,1672319005),(74520,8,79370,3,1672319005),(74521,8,79371,3,1672319005),(74522,8,79372,3,1672319005),(74523,8,79373,3,1672319005),(74524,8,79374,3,1672319005),(74525,8,79375,3,1672319005),(74526,8,79376,3,1672319005),(74527,8,79377,3,1672319005),(74528,8,79378,3,1672319005),(74529,8,79379,3,1672319005),(74530,8,79380,3,1672319005),(74531,8,79381,3,1672319005),(74532,8,79382,3,1672319005),(74533,8,79383,3,1672319005),(74534,8,79384,3,1672319005),(74535,8,79385,3,1672319005),(74536,8,79386,3,1672319005),(74537,8,79387,3,1672319005),(74538,8,79388,3,1672319005),(74539,8,79389,3,1672319005),(74540,8,79390,3,1672319005),(74541,8,79391,3,1672319005),(74542,8,79392,3,1672319005),(74543,8,79393,3,1672319005),(74544,8,79394,3,1672319005),(74545,8,79395,3,1672319005),(74546,8,79396,3,1672319005),(74547,8,79397,3,1672319005),(74548,8,79398,3,1672319005),(74549,8,79399,3,1672319005),(74550,8,79400,3,1672319005),(74551,8,79401,3,1672319005),(74552,8,79402,3,1672319005),(74553,8,79403,3,1672319005),(74554,8,79404,3,1672319005),(74555,8,79405,3,1672319005),(74556,8,79406,3,1672319005),(74557,8,79407,3,1672319005),(74558,8,79408,3,1672319005),(74559,8,79409,3,1672319005),(74560,8,79410,3,1672319005),(74561,8,79411,3,1672319005),(74562,8,79412,3,1672319005),(74563,8,79413,3,1672319005),(74564,8,79414,3,1672319005),(74565,8,79415,3,1672319005),(74566,8,79416,3,1672319005),(74567,8,79417,3,1672319005),(74568,8,79418,3,1672319005),(74569,8,79419,3,1672319005),(74570,8,79420,3,1672319005),(74571,8,79421,3,1672319005),(74572,8,79422,3,1672319005),(74573,8,79423,3,1672319005),(74574,8,79424,3,1672319005),(74575,8,79425,3,1672319005),(74576,8,79426,3,1672319005),(74577,8,79427,3,1672319005),(74578,8,79428,3,1672319005),(74579,8,79429,3,1672319005),(74580,8,79430,3,1672319005),(74581,8,79431,3,1672319005),(74582,8,79432,3,1672319005),(74583,8,79433,3,1672319005),(74584,8,79434,3,1672319005),(74585,8,79435,3,1672319005),(74586,8,79436,3,1672319005),(74587,8,79437,3,1672319005),(74588,8,79438,3,1672319005),(74589,8,79439,3,1672319005),(74590,8,79440,3,1672319005),(74591,8,79441,3,1672319005),(74592,8,79442,3,1672319005),(74593,8,79443,3,1672319005),(74594,8,79444,3,1672319005),(74595,8,79445,3,1672319005),(74596,8,79446,3,1672319005),(74597,8,79447,3,1672319005),(74598,8,79448,3,1672319005),(74599,8,79449,3,1672319005),(74600,8,79450,3,1672319005),(74601,8,79451,3,1672319005),(74602,8,79452,3,1672319005),(74603,8,79453,3,1672319005),(74604,8,79454,3,1672319005),(74605,8,79455,3,1672319005),(74606,8,79456,3,1672319005),(74607,8,79457,3,1672319005),(74608,8,79458,3,1672319005),(74609,8,79459,3,1672319005),(74610,8,79460,3,1672319005),(74611,8,79461,3,1672319005),(74612,8,79462,3,1672319005),(74613,8,79463,3,1672319005),(74614,8,79464,3,1672319005),(74615,8,79465,3,1672319005),(74616,8,79466,3,1672319005),(74617,8,79467,3,1672319005),(74618,8,79468,3,1672319005),(74619,8,79469,3,1672319005),(74620,8,79470,3,1672319005),(74621,8,79471,3,1672319005),(74622,8,79472,3,1672319005),(74623,8,79473,3,1672319005),(74624,8,79474,3,1672319005),(74625,8,79475,3,1672319005),(74626,8,79476,3,1672319005),(74627,8,79477,3,1672319005),(74628,8,79478,3,1672319005),(74629,8,79479,3,1672319005),(74630,8,79480,3,1672319005),(74631,8,79481,3,1672319005),(74632,8,79482,3,1672319005),(74633,8,79483,3,1672319005),(74634,8,79484,3,1672319005),(74635,8,79485,3,1672319005),(74636,8,79486,3,1672319005),(74637,8,79487,3,1672319005),(74638,8,79488,3,1672319005),(74639,8,79489,3,1672319005),(74640,8,79490,3,1672319005),(74641,8,79491,3,1672319005),(74642,8,79492,3,1672319005),(74643,8,79493,3,1672319005),(74644,8,79494,3,1672319005),(74645,8,79495,3,1672319005),(74646,8,79496,3,1672319005),(74647,8,79497,3,1672319005),(74648,8,79498,3,1672319005),(74649,8,79499,3,1672319005),(74650,8,79500,3,1672319005),(74651,8,79501,3,1672319005),(74652,8,79502,3,1672319005),(74653,8,79503,3,1672319005),(74654,8,79504,3,1672319005),(74655,8,79505,3,1672319005),(74656,8,79506,3,1672319005),(74657,8,79507,3,1672319005),(74658,8,79508,3,1672319005),(74659,8,79509,3,1672319005),(74660,8,79510,3,1672319005),(74661,8,79511,3,1672319005),(74662,8,79512,3,1672319005),(74663,8,79513,3,1672319005),(74664,8,79514,3,1672319005),(74665,8,79515,3,1672319005),(74666,8,79516,3,1672319005),(74667,8,79517,3,1672319005),(74668,8,79518,3,1672319005),(74669,8,79519,3,1672319005),(74670,8,79520,3,1672319005),(74671,8,79521,3,1672319005),(74672,8,79522,3,1672319005),(74673,8,79523,3,1672319005),(74674,8,79524,3,1672319005),(74675,8,79525,3,1672319005),(74676,8,79526,3,1672319005),(74677,8,79527,3,1672319005),(74678,8,79528,3,1672319005),(74679,8,79529,3,1672319005),(74680,8,79530,3,1672319005),(74681,8,79531,3,1672319005),(74682,8,79532,3,1672319005),(74683,8,79533,3,1672319005),(74684,8,79534,3,1672319005),(74685,8,79535,3,1672319005),(74686,8,79536,3,1672319005),(74687,8,79537,3,1672319005),(74688,8,79538,3,1672319005),(74689,8,79539,3,1672319005),(74690,8,79540,3,1672319005),(74691,8,79541,3,1672319005),(74692,8,79542,3,1672319005),(74693,8,79543,3,1672319005),(74694,8,79544,3,1672319005),(74695,8,79545,3,1672319005),(74696,8,79546,3,1672319005),(74697,8,79547,3,1672319005),(74698,8,79548,3,1672319005),(74699,8,79549,3,1672319005),(74700,8,79550,3,1672319005),(74701,8,79551,3,1672319005),(74702,8,79552,3,1672319005),(74703,8,79553,3,1672319005),(74704,8,79554,3,1672319005),(74705,8,79555,3,1672319005),(74706,8,79556,3,1672319005),(74707,8,79557,3,1672319005),(74708,8,79558,3,1672319005),(74709,8,79559,3,1672319005),(74710,8,79560,3,1672319005),(74711,8,79561,3,1672319005),(74712,8,79562,3,1672319005),(74713,8,79563,3,1672319005),(74714,8,79564,3,1672319005),(74715,8,79565,3,1672319005),(74716,8,79566,3,1672319005),(74717,8,79567,3,1672319005),(74718,8,79568,3,1672319005),(74719,8,79569,3,1672319005),(74720,8,79570,3,1672319005),(74721,8,79571,3,1672319005),(74722,8,79572,3,1672319005),(74723,8,79573,3,1672319005),(74724,8,79574,3,1672319005),(74725,8,79575,3,1672319005),(74726,8,79576,3,1672319005),(74727,8,79577,3,1672319005),(74728,8,79578,3,1672319005),(74729,8,79579,3,1672319005),(74730,8,79580,3,1672319005),(74731,8,79581,3,1672319005),(74732,8,79582,3,1672319005),(74733,8,79583,3,1672319005),(74734,8,79584,3,1672319005),(74735,8,79585,3,1672319005),(74736,8,79586,3,1672319005),(74737,8,79587,3,1672319005),(74738,8,79588,3,1672319005),(74739,8,79589,3,1672319005),(74740,8,79590,3,1672319005),(74741,8,79591,3,1672319005),(74742,8,79592,3,1672319005),(74743,8,79593,3,1672319005),(74744,8,79594,3,1672319005),(74745,8,79595,3,1672319005),(74746,8,79596,3,1672319005),(74747,8,79597,3,1672319005),(74748,8,79598,3,1672319005),(74749,8,79599,3,1672319005),(74750,8,79600,3,1672319005),(74751,8,79601,3,1672319005),(74752,8,79602,3,1672319005),(74753,8,79603,3,1672319005),(74754,8,79604,3,1672319005),(74755,8,79605,3,1672319005),(74756,8,79606,3,1672319005),(74757,8,79607,3,1672319005),(74758,8,79608,3,1672319005),(74759,8,79609,3,1672319005),(74760,8,79610,3,1672319005),(74761,8,79611,3,1672319005),(74762,8,79612,3,1672319005),(74763,8,79613,3,1672319005),(74764,8,79614,3,1672319005),(74765,8,79615,3,1672319005),(74766,8,79616,3,1672319005),(74767,8,79617,3,1672319005),(74768,8,79618,3,1672319005),(74769,8,79619,3,1672319005),(74770,8,79620,3,1672319005),(74771,8,79621,3,1672319005),(74772,8,79622,3,1672319005),(74773,8,79623,3,1672319005),(74774,8,79624,3,1672319005),(74775,8,79625,3,1672319005),(74776,8,79626,3,1672319005),(74777,8,79627,3,1672319005),(74778,8,79628,3,1672319005),(74779,8,79629,3,1672319005),(74780,8,79630,3,1672319005),(74781,8,79631,3,1672319005),(74782,8,79632,3,1672319005),(74783,8,79633,3,1672319005),(74784,8,79634,3,1672319005),(74785,8,79635,3,1672319005),(74786,8,79636,3,1672319005),(74787,8,79637,3,1672319005),(74788,8,79638,3,1672319005),(74789,8,79639,3,1672319005),(74790,8,79640,3,1672319005),(74791,8,79641,3,1672319005),(74792,8,79642,3,1672319005),(74793,8,79643,3,1672319005),(74794,8,79644,3,1672319005),(74795,8,79645,3,1672319005),(74796,8,79646,3,1672319005),(74797,8,79647,3,1672319005),(74798,8,79648,3,1672319005),(74799,8,79649,3,1672319005),(74800,8,79650,3,1672319005),(74801,8,79651,3,1672319005),(74802,8,79652,3,1672319005),(74803,8,79653,3,1672319005),(74804,8,79654,3,1672319005),(74805,8,79655,3,1672319005),(74806,8,79656,3,1672319005),(74807,8,79657,3,1672319005),(74808,8,79658,3,1672319005),(74809,8,79659,3,1672319005),(74810,8,79660,3,1672319005),(74811,8,79661,3,1672319005),(74812,8,79662,3,1672319005),(74813,8,79663,3,1672319005),(74814,8,79664,3,1672319005),(74815,8,79665,3,1672319005),(74816,8,79666,3,1672319005),(74817,8,79667,3,1672319005),(74818,8,79668,3,1672319005),(74819,8,79669,3,1672319005),(74820,8,79670,3,1672319005),(74821,8,79671,3,1672319005),(74822,8,79672,3,1672319005),(74823,8,79673,3,1672319005),(74824,8,79674,3,1672319005),(74825,8,79675,3,1672319005),(74826,8,79676,3,1672319005),(74827,8,79677,3,1672319005),(74828,8,79678,3,1672319005),(74829,8,79679,3,1672319005),(74830,8,79680,3,1672319005),(74831,8,79681,3,1672319005),(74832,8,79682,3,1672319005),(74833,8,79683,3,1672319005),(74834,8,79684,3,1672319005),(74835,8,79685,3,1672319005),(74836,8,79686,3,1672319005),(74837,8,79687,3,1672319005),(74838,8,79688,3,1672319005),(74839,8,79689,3,1672319005),(74840,8,79690,3,1672319005),(74841,8,79691,3,1672319005),(74842,8,79692,3,1672319005),(74843,8,79693,3,1672319005),(74844,8,79694,3,1672319005),(74845,8,79695,3,1672319005),(74846,8,79696,3,1672319005),(74847,8,79697,3,1672319005),(74848,8,79698,3,1672319005),(74849,8,79699,3,1672319005),(74850,8,79700,3,1672319005),(74851,8,79701,3,1672319005),(74852,8,79702,3,1672319005),(74853,8,79703,3,1672319005),(74854,8,79704,3,1672319005),(74855,8,79705,3,1672319005),(74856,8,79706,3,1672319005),(74857,8,79707,3,1672319005),(74858,8,79708,3,1672319005),(74859,8,79709,3,1672319005),(74860,8,79710,3,1672319005),(74861,8,79711,3,1672319005),(74862,8,79712,3,1672319005),(74863,8,79713,3,1672319005),(74864,8,79714,3,1672319005),(74865,8,79715,3,1672319005),(74866,8,79716,3,1672319005),(74867,8,79717,3,1672319005),(74868,8,79718,3,1672319005),(74869,8,79719,3,1672319005),(74870,8,79720,3,1672319005),(74871,8,79721,3,1672319005),(74872,8,79725,3,1672319005),(74873,8,79726,3,1672319005),(74874,8,79727,3,1672319005),(74875,8,79728,3,1672319005),(74876,8,79729,3,1672319005),(74877,8,79730,3,1672319005),(74878,8,79731,3,1672319005),(74879,8,79732,3,1672319005),(74880,8,79733,3,1672319005),(74881,8,79734,3,1672319005),(74882,8,79735,3,1672319005),(74883,8,79736,3,1672319005),(74884,8,79737,3,1672319005),(74885,8,79738,3,1672319005),(74886,8,79739,3,1672319005),(74887,8,79740,3,1672319005),(74888,8,79741,3,1672319005),(74889,8,79742,3,1672319005),(74890,8,79743,3,1672319005),(74891,8,79744,3,1672319005),(74892,8,79745,3,1672319005),(74893,8,79746,3,1672319005),(74894,8,79747,3,1672319005),(74895,8,79748,3,1672319005),(74896,8,79749,3,1672319005),(74897,8,79750,3,1672319005),(74898,8,79751,3,1672319005),(74899,8,79752,3,1672319005),(74900,8,79753,3,1672319005),(74901,8,79754,3,1672319005),(74902,8,79755,3,1672319005),(74903,8,79756,3,1672319005),(74904,8,79757,3,1672319005),(74905,8,79758,3,1672319005),(74906,8,79759,3,1672319005),(74907,8,79760,3,1672319005),(74908,8,79761,3,1672319005),(74909,8,79762,3,1672319005),(74910,8,79763,3,1672319005),(74911,8,79764,3,1672319005),(74912,8,79765,3,1672319005),(74913,8,79766,3,1672319005),(74914,8,79767,3,1672319005),(74915,8,79768,3,1672319005),(74916,8,79769,3,1672319005),(74917,8,79770,3,1672319005),(74918,8,79771,3,1672319005),(74919,8,79772,3,1672319005),(74920,8,79773,3,1672319005),(74921,8,79774,3,1672319005),(74922,8,79775,3,1672319005),(74923,8,79776,3,1672319005),(74924,8,79777,3,1672319005),(74925,8,79778,3,1672319005),(74926,8,79779,3,1672319005),(74927,8,79780,3,1672319005),(74928,8,79781,3,1672319005),(74929,8,79782,3,1672319005),(74930,8,79783,3,1672319005),(74931,8,79784,3,1672319005),(74932,8,79785,3,1672319005),(74933,8,79786,3,1672319005),(74934,8,79787,3,1672319005),(74935,8,79788,3,1672319005),(74936,8,79789,3,1672319005),(74937,8,79790,3,1672319005),(74938,8,79791,3,1672319005),(74939,8,79792,3,1672319005),(74940,8,79793,3,1672319005),(74941,8,79794,3,1672319005),(74942,8,79795,3,1672319005),(74943,8,79797,3,1672319005),(74944,8,79798,3,1672319005),(74945,8,79799,3,1672319005),(74946,8,79800,3,1672319005),(74947,8,79801,3,1672319005),(74948,8,79802,3,1672319005),(74949,8,79803,3,1672319005),(74950,8,79804,3,1672319005),(74951,8,79805,3,1672319005),(74952,8,79806,3,1672319005),(74953,8,79807,3,1672319005),(74954,8,79808,3,1672319005),(74955,8,79809,3,1672319005),(74956,8,79810,3,1672319005),(74957,8,79811,3,1672319005),(74958,8,79812,3,1672319005),(74959,8,79813,3,1672319005),(74960,8,79814,3,1672319005),(74961,8,79815,3,1672319005),(74962,8,79816,3,1672319005),(74963,8,79817,3,1672319005),(74964,8,79818,3,1672319005),(74965,8,79819,3,1672319005),(74966,8,79820,3,1672319005),(74967,8,79821,3,1672319005),(74968,8,79822,3,1672319005),(74969,8,79823,3,1672319005),(74970,8,79824,3,1672319005),(74971,8,79825,3,1672319005),(74972,8,79826,3,1672319005),(74973,8,79827,3,1672319005),(74974,8,79828,3,1672319005),(74975,8,79829,3,1672319005),(74976,8,79830,3,1672319005),(74977,8,79831,3,1672319005),(74978,8,79832,3,1672319005),(74979,8,79833,3,1672319005),(74980,8,79834,3,1672319005),(74981,8,79835,3,1672319005),(74982,8,79836,3,1672319005),(74983,8,79837,3,1672319005),(74984,8,79838,3,1672319005),(74985,8,79839,3,1672319005),(74986,8,79840,3,1672319005),(74987,8,79841,3,1672319005),(74988,8,79842,3,1672319005),(74989,8,79843,3,1672319005),(74990,8,79844,3,1672319005),(74991,8,79845,3,1672319005),(74992,8,79846,3,1672319005),(74993,8,79847,3,1672319005),(74994,8,79848,3,1672319005),(74995,8,79849,3,1672319005),(74996,8,79850,3,1672319005),(74997,8,79851,3,1672319005),(74998,8,79852,3,1672319005),(74999,8,79853,3,1672319005),(75000,8,79854,3,1672319005),(75001,8,79855,3,1672319005),(75002,8,79856,3,1672319005),(75003,8,79857,3,1672319005),(75004,8,79858,3,1672319005),(75005,8,79859,3,1672319005),(75006,8,79860,3,1672319005),(75007,8,79861,3,1672319005),(75008,8,79862,3,1672319005),(75009,8,79863,3,1672319005),(75010,8,79864,3,1672319005),(75011,8,79865,3,1672319005),(75012,8,79866,3,1672319005),(75013,8,79867,3,1672319005),(75014,8,79868,3,1672319005),(75015,8,79869,3,1672319005),(75016,8,79870,3,1672319005),(75017,8,79871,3,1672319005),(75018,8,79872,3,1672319005),(75019,8,79873,3,1672319005),(75020,8,79874,3,1672319005),(75021,8,79875,3,1672319005),(75022,8,79876,3,1672319005),(75023,8,79877,3,1672319005),(75024,8,79878,3,1672319005),(75025,8,79879,3,1672319005),(75026,8,79880,3,1672319005),(75027,8,79881,3,1672319005),(75028,8,79882,3,1672319005),(75029,8,79883,3,1672319005),(75030,8,79884,3,1672319005),(75031,8,79885,3,1672319005),(75032,8,79886,3,1672319005),(75033,8,79887,3,1672319005),(75034,8,79888,3,1672319005),(75035,8,79889,3,1672319005),(75036,8,79890,3,1672319005),(75037,8,79891,3,1672319005),(75038,8,79892,3,1672319005),(75039,8,79893,3,1672319005),(75040,8,79894,3,1672319005),(75041,8,79895,3,1672319005),(75042,8,79896,3,1672319005),(75043,8,79897,3,1672319005),(75044,8,79898,3,1672319005),(75045,8,79899,3,1672319005),(75046,8,79900,3,1672319005),(75047,8,79901,3,1672319005),(75048,8,79902,3,1672319005),(75049,8,79903,3,1672319005),(75050,8,79904,3,1672319005),(75051,8,79905,3,1672319005),(75052,8,79906,3,1672319005),(75053,8,79907,3,1672319005),(75054,8,79908,3,1672319005),(75055,8,79909,3,1672319005),(75056,8,79910,3,1672319005),(75057,8,79911,3,1672319005),(75058,8,79912,3,1672319005),(75059,8,79913,3,1672319005),(75060,8,79914,3,1672319005),(75061,8,79915,3,1672319005),(75062,8,79916,3,1672319005),(75063,8,79917,3,1672319005),(75064,8,79918,3,1672319005),(75065,8,79919,3,1672319005),(75066,8,79920,3,1672319005),(75067,8,79921,3,1672319005),(75068,8,79922,3,1672319005),(75069,8,79923,3,1672319005),(75070,8,79924,3,1672319005),(75071,8,79925,3,1672319005),(75072,8,79926,3,1672319005),(75073,8,79927,3,1672319005),(75074,8,79928,3,1672319005),(75075,8,79929,3,1672319005),(75076,8,79930,3,1672319005),(75077,8,79931,3,1672319005),(75078,8,79932,3,1672319005),(75079,8,79933,3,1672319005),(75080,8,79934,3,1672319005),(75081,8,79935,3,1672319005),(75082,8,79936,3,1672319005),(75083,8,79937,3,1672319005),(75084,8,79938,3,1672319005),(75085,8,79939,3,1672319005),(75086,8,79940,3,1672319005),(75087,8,79941,3,1672319005),(75088,8,79942,3,1672319005),(75089,8,79943,3,1672319005),(75090,8,79944,3,1672319005),(75091,8,79945,3,1672319005),(75092,8,79946,3,1672319005),(75093,8,79947,3,1672319005),(75094,8,79948,3,1672319005),(75095,8,79949,3,1672319005),(75096,8,79950,3,1672319005),(75097,8,79951,3,1672319005),(75098,8,79952,3,1672319005),(75099,8,79953,3,1672319005),(75100,8,79954,3,1672319005),(75101,8,79955,3,1672319005),(75102,8,79956,3,1672319005),(75103,8,79957,3,1672319005),(75104,8,79958,3,1672319005),(75105,8,79959,3,1672319005),(75106,8,79960,3,1672319005),(75107,8,79961,3,1672319005),(75108,8,79962,3,1672319005),(75109,8,79963,3,1672319005),(75110,8,80150,3,1672319005),(75111,8,80155,3,1672319005),(75112,8,80156,3,1672319005),(75113,8,80157,3,1672319005),(75114,8,80158,3,1672319005),(75115,8,80175,3,1672319005),(75116,8,80176,3,1672319005),(75117,8,80177,3,1672319005),(75118,8,80178,3,1672319005),(75119,8,80179,3,1672319005),(75120,8,80180,3,1672319005),(75121,8,80181,3,1672319005),(75122,8,80182,3,1672319005),(75123,8,80183,3,1672319005),(75124,8,80211,3,1672319005),(75125,8,80212,3,1672319005),(75126,8,80213,3,1672319005),(75127,8,80214,3,1672319005),(75128,8,80215,3,1672319005),(75129,8,80216,3,1672319005),(75130,8,80217,3,1672319005),(75131,8,80218,3,1672319005),(75132,8,80219,3,1672319005),(75133,8,80220,3,1672319005),(75134,8,80221,3,1672319005),(75135,8,80453,3,1672319005),(75136,8,80454,3,1672319005),(75137,8,80455,3,1672319005),(75138,8,80456,3,1672319005),(75139,8,80457,3,1672319005),(75140,8,80458,3,1672319005),(75141,8,80459,3,1672319005),(75142,8,80460,3,1672319005),(75143,8,80461,3,1672319005),(75144,8,80462,3,1672319005),(75145,8,80463,3,1672319005),(75146,8,80475,3,1672319005),(75147,8,80476,3,1672319005),(75148,8,80477,3,1672319005),(75149,8,80478,3,1672319005),(75150,8,80501,3,1672319005),(75151,8,80502,3,1672319005),(75152,8,80503,3,1672319005),(75153,8,80504,3,1672319005),(75154,8,80505,3,1672319005),(75155,8,80506,3,1672319005),(75156,8,80507,3,1672319005),(75157,8,80508,3,1672319005),(75158,8,80509,3,1672319005),(75159,8,80510,3,1672319005),(75160,8,80511,3,1672319005),(75161,8,80512,3,1672319005),(75162,8,80513,3,1672319005),(75163,8,80514,3,1672319005),(75164,8,80515,3,1672319005),(75165,8,80516,3,1672319005),(75166,8,80517,3,1672319005),(75167,8,80518,3,1672319005),(75168,8,80519,3,1672319005),(75169,8,80520,3,1672319005),(75170,8,80521,3,1672319005),(75171,8,80522,3,1672319005),(75172,8,80523,3,1672319005),(75173,8,80524,3,1672319005),(75174,8,80537,3,1672319005),(75175,8,80541,3,1672319005),(75176,8,80542,3,1672319005),(75177,8,80543,3,1672319005),(75178,8,80544,3,1672319005),(75179,8,80545,3,1672319005),(75180,8,80546,3,1672319005),(75181,8,80547,3,1672319005),(75182,8,80548,3,1672319005),(75183,8,80549,3,1672319005),(75184,8,80550,3,1672319005),(75185,8,80551,3,1672319005),(75186,8,80552,3,1672319005),(75187,8,80553,3,1672319005),(75188,8,80554,3,1672319005),(75189,8,80555,3,1672319005),(75190,8,80556,3,1672319005),(75191,8,80557,3,1672319005),(75192,8,80558,3,1672319005),(75193,8,80559,3,1672319005),(75194,8,80560,3,1672319005),(75195,8,80561,3,1672319005),(75196,8,80562,3,1672319005),(75197,8,80563,3,1672319005),(75198,8,80564,3,1672319005),(75199,8,80565,3,1672319005),(75200,8,80566,3,1672319005),(75201,8,80567,3,1672319005),(75202,8,80568,3,1672319005),(75203,8,80569,3,1672319005),(75204,8,80570,3,1672319005),(75205,8,80571,3,1672319005),(75206,8,80572,3,1672319005),(75207,8,80573,3,1672319005),(75208,8,80574,3,1672319005),(75209,8,80575,3,1672319005),(75210,8,80576,3,1672319005),(75211,8,80577,3,1672319005),(75212,8,80578,3,1672319005),(75213,8,80579,3,1672319005),(75214,8,80580,3,1672319005),(75215,8,80581,3,1672319005),(75216,8,80582,3,1672319005),(75217,8,80583,3,1672319005),(75218,8,80584,3,1672319005),(75219,8,80585,3,1672319005),(75220,8,80586,3,1672319005),(75221,8,80587,3,1672319005),(75222,8,80588,3,1672319005),(75223,8,80589,3,1672319005),(75224,8,80590,3,1672319005),(75225,8,80591,3,1672319005),(75226,8,80592,3,1672319005),(75227,8,80593,3,1672319005),(75228,8,80594,3,1672319005),(75229,8,80595,3,1672319005),(75230,8,80596,3,1672319005),(75231,8,80597,3,1672319005),(75232,8,80598,3,1672319005),(75233,8,80599,3,1672319005),(75234,8,80600,3,1672319005),(75235,8,80601,3,1672319005),(75236,8,80602,3,1672319005),(75237,8,80603,3,1672319005),(75238,8,80604,3,1672319005),(75239,8,80605,3,1672319005),(75240,8,80606,3,1672319005),(75241,8,80607,3,1672319005),(75242,8,80608,3,1672319005),(75243,8,80609,3,1672319005),(75244,8,80610,3,1672319005),(75245,8,80611,3,1672319005),(75246,8,80612,3,1672319005),(75247,8,80613,3,1672319005),(75248,8,80614,3,1672319005),(75249,8,80615,3,1672319005),(75250,8,80616,3,1672319005),(75251,8,80617,3,1672319005),(75252,8,80618,3,1672319005),(75253,8,80619,3,1672319005),(75254,8,80620,3,1672319005),(75255,8,80621,3,1672319005),(75256,8,80622,3,1672319005),(75257,8,80623,3,1672319005),(75258,8,80624,3,1672319005),(75259,8,80625,3,1672319005),(75260,8,80626,3,1672319005),(75261,8,80627,3,1672319005),(75262,8,80628,3,1672319005),(75263,8,80629,3,1672319005),(75264,8,80630,3,1672319005),(75265,8,80655,3,1672319005),(75266,8,80656,3,1672319005),(75267,8,80661,3,1672319005),(75268,8,80664,3,1672319005),(75269,8,80665,3,1672319005),(75270,8,80666,3,1672319005),(75271,8,80667,3,1672319005),(75272,8,80668,3,1672319005),(75273,8,80669,3,1672319005),(75274,8,80670,3,1672319005),(75275,8,80671,3,1672319005),(75276,8,80672,3,1672319005),(75277,8,80673,3,1672319005),(75278,8,80674,3,1672319005),(75279,8,80697,3,1672319005),(75280,8,80698,3,1672319005),(75281,8,80699,3,1672319005),(75282,8,80700,3,1672319005),(75283,8,80701,3,1672319005),(75284,8,80702,3,1672319005),(75285,8,80703,3,1672319005),(75286,8,80704,3,1672319005),(75287,8,80705,3,1672319005),(75288,8,80706,3,1672319005),(75289,8,80707,3,1672319005),(75290,8,80708,3,1672319005),(75291,8,80709,3,1672319005),(75292,8,80710,3,1672319005),(75293,8,80711,3,1672319005),(75294,8,80712,3,1672319005),(75295,8,80745,3,1672319005),(75296,8,80746,3,1672319005),(75297,8,80747,3,1672319005),(75298,8,80748,3,1672319005),(75299,8,80749,3,1672319005),(75300,8,80750,3,1672319005),(75301,8,80751,3,1672319005),(75302,8,80752,3,1672319005),(75303,8,80753,3,1672319005),(75304,8,80754,3,1672319005),(75305,8,80755,3,1672319005),(75306,8,80756,3,1672319005),(75307,8,80769,3,1672319005),(75308,8,80770,3,1672319005),(75309,8,80773,3,1672319005),(75310,8,80775,3,1672319005),(75311,8,80776,3,1672319005),(75312,8,80777,3,1672319005),(75313,8,80778,3,1672319005),(75314,8,80779,3,1672319005),(75315,8,80780,3,1672319005),(75316,8,80781,3,1672319005),(75317,8,80782,3,1672319005),(75318,8,80783,3,1672319005),(75319,8,80784,3,1672319005),(75320,8,80785,3,1672319005),(75321,8,80797,3,1672319005),(75322,8,80798,3,1672319005),(75323,8,80799,3,1672319005),(75324,8,80800,3,1672319005),(75325,8,80801,3,1672319005),(75326,8,80802,3,1672319005),(75327,8,80803,3,1672319005),(75328,8,80804,3,1672319005),(75329,8,80805,3,1672319005),(75330,8,80806,3,1672319005),(75331,8,80807,3,1672319005),(75332,8,80808,3,1672319005),(75333,8,80809,3,1672319005),(75334,8,80810,3,1672319005),(75335,8,80811,3,1672319005),(75336,8,80812,3,1672319005),(75337,8,80829,3,1672319005),(75338,8,80830,3,1672319005),(75339,8,80831,3,1672319005),(75340,8,80832,3,1672319005),(75341,8,80833,3,1672319005),(75342,8,80834,3,1672319005),(75343,8,80835,3,1672319005),(75344,8,80836,3,1672319005),(75345,8,80837,3,1672319005),(75346,8,80838,3,1672319005),(75347,8,80839,3,1672319005),(75348,8,80840,3,1672319005),(75349,8,80841,3,1672319005),(75350,8,80842,3,1672319005),(75351,8,80843,3,1672319005),(75352,8,80844,3,1672319005),(75353,8,80845,3,1672319005),(75354,8,80846,3,1672319005),(75355,8,80847,3,1672319005),(75356,8,80848,3,1672319005),(75357,8,80849,3,1672319005),(75358,8,80850,3,1672319005),(75359,8,80851,3,1672319005),(75360,8,80852,3,1672319005),(75361,8,80853,3,1672319005),(75362,8,80854,3,1672319005),(75363,8,80855,3,1672319005),(75364,8,80856,3,1672319005),(75365,8,80857,3,1672319005),(75366,8,80858,3,1672319005),(75367,8,80859,3,1672319005),(75368,8,80860,3,1672319005),(75369,8,80861,3,1672319005),(75370,8,80862,3,1672319005),(75371,8,80863,3,1672319005),(75372,8,80864,3,1672319005),(75373,8,80865,3,1672319005),(75374,8,80866,3,1672319005),(75375,8,80867,3,1672319005),(75376,8,80868,3,1672319005),(75377,8,80869,3,1672319005),(75378,8,80870,3,1672319005),(75379,8,80871,3,1672319005),(75380,8,80872,3,1672319005),(75381,8,80873,3,1672319005),(75382,8,80874,3,1672319005),(75383,8,80875,3,1672319005),(75384,8,80876,3,1672319005),(75385,8,80877,3,1672319005),(75386,8,80878,3,1672319005),(75387,8,80879,3,1672319005),(75388,8,80880,3,1672319005),(75389,8,80881,3,1672319005),(75390,8,80882,3,1672319005),(75391,8,80883,3,1672319005),(75392,8,80884,3,1672319005),(75393,8,80885,3,1672319005),(75394,8,80886,3,1672319005),(75395,8,80887,3,1672319005),(75396,8,80888,3,1672319005),(75397,8,80889,3,1672319005),(75398,8,80890,3,1672319005),(75399,8,80891,3,1672319005),(75400,8,80892,3,1672319005),(75401,8,80893,3,1672319005),(75402,8,80894,3,1672319005),(75403,8,80895,3,1672319005),(75404,8,80896,3,1672319005),(75405,8,80897,3,1672319005),(75406,8,80898,3,1672319005),(75407,8,80899,3,1672319005),(75408,8,80900,3,1672319005),(75409,8,80901,3,1672319005),(75410,8,80902,3,1672319005),(75411,8,80903,3,1672319005),(75412,8,80904,3,1672319005),(75413,8,80905,3,1672319005),(75414,8,80906,3,1672319005),(75415,8,80907,3,1672319005),(75416,8,80908,3,1672319005),(75417,8,80909,3,1672319005),(75418,8,80910,3,1672319005),(75419,8,80911,3,1672319005),(75420,8,80912,3,1672319005),(75421,8,80913,3,1672319005),(75422,8,80914,3,1672319005),(75423,8,80915,3,1672319005),(75424,8,80916,3,1672319005),(75425,8,80917,3,1672319005),(75426,8,80918,3,1672319005),(75427,8,80919,3,1672319005),(75428,8,80920,3,1672319005),(75429,8,80921,3,1672319005),(75430,8,80922,3,1672319005),(75431,8,80923,3,1672319005),(75432,8,80924,3,1672319005),(75433,8,80925,3,1672319005),(75434,8,80926,3,1672319005),(75435,8,80927,3,1672319005),(75436,8,80928,3,1672319005),(75437,8,80929,3,1672319005),(75438,8,80930,3,1672319005),(75439,8,80931,3,1672319005),(75440,8,80932,3,1672319005),(75441,8,80933,3,1672319005),(75442,8,80934,3,1672319005),(75443,8,80935,3,1672319005),(75444,8,80936,3,1672319005),(75445,8,80937,3,1672319005),(75446,8,80938,3,1672319005),(75447,8,80939,3,1672319005),(75448,8,80940,3,1672319005),(75449,8,80941,3,1672319005),(75450,8,80942,3,1672319005),(75451,8,80943,3,1672319005),(75452,8,80944,3,1672319005),(75453,8,80945,3,1672319005),(75454,8,80946,3,1672319005),(75455,8,80947,3,1672319005),(75456,8,80957,3,1672319005),(75457,8,80959,3,1672319005),(75458,8,80960,3,1672319005),(75459,8,80961,3,1672319005),(75460,8,80962,3,1672319005),(75461,8,80963,3,1672319005),(75462,8,80964,3,1672319005),(75463,8,80965,3,1672319005),(75464,8,80966,3,1672319005),(75465,8,80967,3,1672319005),(75466,8,80968,3,1672319005),(75467,8,80969,3,1672319005),(75468,8,80970,3,1672319005),(75469,8,80971,3,1672319005),(75470,8,80972,3,1672319005),(75471,8,80973,3,1672319005),(75472,8,80974,3,1672319005),(75473,8,80975,3,1672319005),(75474,8,80976,3,1672319005),(75475,8,80977,3,1672319005),(75476,8,80978,3,1672319005),(75477,8,80979,3,1672319005),(75478,8,80980,3,1672319005),(75479,8,80981,3,1672319005),(75480,8,80982,3,1672319005),(75481,8,80983,3,1672319005),(75482,8,81009,3,1672319005),(75483,8,81011,3,1672319005),(75484,8,81012,3,1672319005),(75485,8,81013,3,1672319005),(75486,8,81017,3,1672319005),(75487,8,81019,3,1672319005),(75488,8,81020,3,1672319005),(75489,8,81021,3,1672319005),(75490,8,81025,3,1672319005),(75491,8,81026,3,1672319005),(75492,8,81027,3,1672319005),(75493,8,81028,3,1672319005),(75494,8,81029,3,1672319005),(75495,8,81030,3,1672319005),(75496,8,81031,3,1672319005),(75497,8,81032,3,1672319005),(75498,8,81041,3,1672319005),(75499,8,81042,3,1672319005),(75500,8,81043,3,1672319005),(75501,8,81044,3,1672319005),(75502,8,81049,3,1672319005),(75503,8,81050,3,1672319005),(75504,8,81051,3,1672319005),(75505,8,81055,3,1672319005),(75506,8,81057,3,1672319005),(75507,8,81058,3,1672319005),(75508,8,81059,3,1672319005),(75509,8,81063,3,1672319005),(75510,8,81064,3,1672319005),(75511,8,81065,3,1672319005),(75512,8,81066,3,1672319005),(75513,8,81067,3,1672319005),(75514,8,81068,3,1672319005),(75515,8,81069,3,1672319005),(75516,8,81070,3,1672319005),(75517,8,81079,3,1672319005),(75518,8,81080,3,1672319005),(75519,8,81081,3,1672319005),(75520,8,81082,3,1672319005),(75521,8,81087,3,1672319005),(75522,8,81088,3,1672319005),(75523,8,81089,3,1672319005),(75524,8,81090,3,1672319005),(75525,8,81091,3,1672319005),(75526,8,81092,3,1672319005),(75527,8,81093,3,1672319005),(75528,8,81094,3,1672319005),(75529,8,81095,3,1672319005),(75530,8,81096,3,1672319005),(75531,8,81097,3,1672319005),(75532,8,81098,3,1672319005),(75533,8,81099,3,1672319005),(75534,8,81100,3,1672319005),(75535,8,81101,3,1672319005),(75536,8,81102,3,1672319005),(75537,8,81103,3,1672319005),(75538,8,81104,3,1672319005),(75539,8,81105,3,1672319005),(75540,8,81106,3,1672319005),(75541,8,81107,3,1672319005),(75542,8,81108,3,1672319005),(75543,8,81109,3,1672319005),(75544,8,81110,3,1672319005),(75545,8,81111,3,1672319005),(75546,8,81112,3,1672319005),(75547,8,81113,3,1672319005),(75548,8,81114,3,1672319005),(75549,8,81115,3,1672319005),(75550,8,81116,3,1672319005),(75551,8,81117,3,1672319005),(75552,8,81118,3,1672319005),(75553,8,81119,3,1672319005),(75554,8,81120,3,1672319005),(75555,8,81121,3,1672319005),(75556,8,81122,3,1672319005),(75557,8,81123,3,1672319005),(75558,8,81124,3,1672319005),(75559,8,81125,3,1672319005),(75560,8,81126,3,1672319005),(75561,8,81127,3,1672319005),(75562,8,81128,3,1672319005),(75563,8,81129,3,1672319005),(75564,8,81130,3,1672319005),(75565,8,81131,3,1672319005),(75566,8,81132,3,1672319005),(75567,8,81133,3,1672319005),(75568,8,81134,3,1672319005),(75569,8,81135,3,1672319005),(75570,8,81136,3,1672319005),(75571,8,81137,3,1672319005),(75572,8,81138,3,1672319005),(75573,8,81139,3,1672319005),(75574,8,81140,3,1672319005),(75575,8,81141,3,1672319005),(75576,8,81142,3,1672319005),(75577,8,81143,3,1672319005),(75578,8,81144,3,1672319005),(75579,8,81145,3,1672319005),(75580,8,81146,3,1672319005),(75581,8,81147,3,1672319005),(75582,8,81148,3,1672319005),(75583,8,81149,3,1672319005),(75584,8,81150,3,1672319005),(75585,8,81151,3,1672319005),(75586,8,81152,3,1672319005),(75587,8,81153,3,1672319005),(75588,8,81154,3,1672319005),(75589,8,81155,3,1672319005),(75590,8,81156,3,1672319005),(75591,8,81157,3,1672319005),(75592,8,81158,3,1672319005),(75593,8,81159,3,1672319005),(75594,8,81160,3,1672319005),(75595,8,81161,3,1672319005),(75596,8,81162,3,1672319005),(75597,8,81163,3,1672319005),(75598,8,81164,3,1672319005),(75599,8,81165,3,1672319005),(75600,8,81166,3,1672319005),(75601,8,81167,3,1672319005),(75602,8,81168,3,1672319005),(75603,8,81169,3,1672319005),(75604,8,81170,3,1672319005),(75605,8,81171,3,1672319005),(75606,8,81172,3,1672319005),(75607,8,81173,3,1672319005),(75608,8,81174,3,1672319005),(75609,8,81175,3,1672319005),(75610,8,81176,3,1672319005),(75611,8,81177,3,1672319005),(75612,8,81178,3,1672319005),(75613,8,81179,3,1672319005),(75614,8,81180,3,1672319005),(75615,8,81181,3,1672319005),(75616,8,81182,3,1672319005),(75617,8,81183,3,1672319005),(75618,8,81184,3,1672319005),(75619,8,81185,3,1672319005),(75620,8,81186,3,1672319005),(75621,8,81187,3,1672319005),(75622,8,81188,3,1672319005),(75623,8,81189,3,1672319005),(75624,8,81190,3,1672319005),(75625,8,81191,3,1672319005),(75626,8,81192,3,1672319005),(75627,8,81193,3,1672319005),(75628,8,81194,3,1672319005),(75629,8,81195,3,1672319005),(75630,8,81196,3,1672319005),(75631,8,81197,3,1672319005),(75632,8,81198,3,1672319005),(75633,8,81199,3,1672319005),(75634,8,81200,3,1672319005),(75635,8,81201,3,1672319005),(75636,8,81202,3,1672319005),(75637,8,81203,3,1672319005),(75638,8,81204,3,1672319005),(75639,8,81205,3,1672319005),(75640,8,81206,3,1672319005),(75641,8,81207,3,1672319005),(75642,8,81208,3,1672319005),(75643,8,81209,3,1672319005),(75644,8,81210,3,1672319005),(75645,8,81211,3,1672319005),(75646,8,81212,3,1672319005),(75647,8,81213,3,1672319005),(75648,8,81214,3,1672319005),(75649,8,81215,3,1672319005),(75650,8,81216,3,1672319005),(75651,8,81217,3,1672319005),(75652,8,81218,3,1672319005),(75653,8,81219,3,1672319005),(75654,8,81220,3,1672319005),(75655,8,81221,3,1672319005),(75656,8,81222,3,1672319005),(75657,8,81223,3,1672319005),(75658,8,81224,3,1672319005),(75659,8,81225,3,1672319005),(75660,8,81226,3,1672319005),(75661,8,81227,3,1672319005),(75662,8,81228,3,1672319005),(75663,8,81229,3,1672319005),(75664,8,81230,3,1672319005),(75665,8,81231,3,1672319005),(75666,8,81232,3,1672319005),(75667,8,81233,3,1672319005),(75668,8,81234,3,1672319005),(75669,8,81235,3,1672319005),(75670,8,81236,3,1672319005),(75671,8,81237,3,1672319005),(75672,8,81238,3,1672319005),(75673,8,81239,3,1672319005),(75674,8,81240,3,1672319005),(75675,8,81241,3,1672319005),(75676,8,81242,3,1672319005),(75677,8,81243,3,1672319005),(75678,8,81244,3,1672319005),(75679,8,81245,3,1672319005),(75680,8,81246,3,1672319005),(75681,8,81247,3,1672319005),(75682,8,81248,3,1672319005),(75683,8,81249,3,1672319005),(75684,8,81250,3,1672319005),(75685,8,81251,3,1672319005),(75686,8,81252,3,1672319005),(75687,8,81253,3,1672319005),(75688,8,81254,3,1672319005),(75689,8,81255,3,1672319005),(75690,8,81256,3,1672319005),(75691,8,81257,3,1672319005),(75692,8,81258,3,1672319005),(75693,8,81259,3,1672319005),(75694,8,81260,3,1672319005),(75695,8,81261,3,1672319005),(75696,8,81262,3,1672319005),(75697,8,81263,3,1672319005),(75698,8,81264,3,1672319005),(75699,8,81265,3,1672319005),(75700,8,81266,3,1672319005),(75701,8,81267,3,1672319005),(75702,8,81268,3,1672319005),(75703,8,81269,3,1672319005),(75704,8,81270,3,1672319005),(75705,8,81271,3,1672319005),(75706,8,81272,3,1672319005),(75707,8,81273,3,1672319005),(75708,8,81274,3,1672319005),(75709,8,81275,3,1672319005),(75710,8,81276,3,1672319005),(75711,8,81277,3,1672319005),(75712,8,81278,3,1672319005),(75713,8,81279,3,1672319005),(75714,8,81280,3,1672319005),(75715,8,81281,3,1672319005),(75716,8,81282,3,1672319005),(75717,8,81283,3,1672319005),(75718,8,81284,3,1672319005),(75719,8,81285,3,1672319005),(75720,8,81286,3,1672319005),(75721,8,81287,3,1672319005),(75722,8,81288,3,1672319005),(75723,8,81289,3,1672319005),(75724,8,81290,3,1672319005),(75725,8,81291,3,1672319005),(75726,8,81292,3,1672319005),(75727,8,81293,3,1672319005),(75728,8,81294,3,1672319005),(75729,8,81295,3,1672319005),(75730,8,81296,3,1672319005),(75731,8,81297,3,1672319005),(75732,8,81298,3,1672319005),(75733,8,81299,3,1672319005),(75734,8,81300,3,1672319005),(75735,8,81301,3,1672319005),(75736,8,81302,3,1672319005),(75737,8,81303,3,1672319005),(75738,8,81304,3,1672319005),(75739,8,81305,3,1672319005),(75740,8,81306,3,1672319005),(75741,8,81307,3,1672319005),(75742,8,81308,3,1672319005),(75743,8,81309,3,1672319005),(75744,8,81310,3,1672319005),(75745,8,81311,3,1672319005),(75746,8,81312,3,1672319005),(75747,8,81313,3,1672319005),(75748,8,81314,3,1672319005),(75749,8,81315,3,1672319005),(75750,8,81316,3,1672319005),(75751,8,81317,3,1672319005),(75752,8,81318,3,1672319005),(75753,8,81319,3,1672319005),(75754,8,81320,3,1672319005),(75755,8,81321,3,1672319005),(75756,8,81322,3,1672319005),(75757,8,81323,3,1672319005),(75758,8,81324,3,1672319005),(75759,8,81325,3,1672319005),(75760,8,81326,3,1672319005),(75761,8,81327,3,1672319005),(75762,8,81328,3,1672319005),(75763,8,81329,3,1672319005),(75764,8,81330,3,1672319005),(75765,8,81331,3,1672319005),(75766,8,81332,3,1672319005),(75767,8,81333,3,1672319005),(75768,8,81334,3,1672319005),(75769,8,81335,3,1672319005),(75770,8,81336,3,1672319005),(75771,8,81337,3,1672319005),(75772,8,81338,3,1672319005),(75773,8,81339,3,1672319005),(75774,8,81340,3,1672319005),(75775,8,81341,3,1672319005),(75776,8,81342,3,1672319005),(75777,8,81343,3,1672319005),(75778,8,81344,3,1672319005),(75779,8,81345,3,1672319005),(75780,8,81346,3,1672319005),(75781,8,81347,3,1672319005),(75782,8,81348,3,1672319005),(75783,8,81349,3,1672319005),(75784,8,81350,3,1672319005),(75785,8,81351,3,1672319005),(75786,8,81352,3,1672319005),(75787,8,81353,3,1672319005),(75788,8,81354,3,1672319005),(75789,8,81355,3,1672319005),(75790,8,81356,3,1672319005),(75791,8,81357,3,1672319005),(75792,8,81358,3,1672319005),(75793,8,81359,3,1672319005),(75794,8,81360,3,1672319005),(75795,8,81361,3,1672319005),(75796,8,81362,3,1672319005),(75797,8,81363,3,1672319005),(75798,8,81364,3,1672319005),(75799,8,81365,3,1672319005),(75800,8,81366,3,1672319005),(75801,8,81367,3,1672319005),(75802,8,81368,3,1672319005),(75803,8,81369,3,1672319005),(75804,8,81370,3,1672319005),(75805,8,81371,3,1672319005),(75806,8,81372,3,1672319005),(75807,8,81373,3,1672319005),(75808,8,81374,3,1672319005),(75809,8,81375,3,1672319005),(75810,8,81376,3,1672319005),(75811,8,81377,3,1672319005),(75812,8,81378,3,1672319005),(75813,8,81379,3,1672319005),(75814,8,81380,3,1672319005),(75815,8,81381,3,1672319005),(75816,8,81382,3,1672319005),(75817,8,81383,3,1672319005),(75818,8,81384,3,1672319005),(75819,8,81385,3,1672319005),(75820,8,81386,3,1672319005),(75821,8,81387,3,1672319005),(75822,8,81388,3,1672319005),(75823,8,81389,3,1672319005),(75824,8,81390,3,1672319005),(75825,8,81391,3,1672319005),(75826,8,81392,3,1672319005),(75827,8,81393,3,1672319005),(75828,8,81394,3,1672319005),(75829,8,81395,3,1672319005),(75830,8,81396,3,1672319005),(75831,8,81397,3,1672319005),(75832,8,81398,3,1672319005),(75833,8,81399,3,1672319005),(75834,8,81400,3,1672319005),(75835,8,81401,3,1672319005),(75836,8,81402,3,1672319005),(75837,8,81403,3,1672319005),(75838,8,81404,3,1672319005),(75839,8,81405,3,1672319005),(75840,8,81406,3,1672319005),(75841,8,81407,3,1672319005),(75842,8,81408,3,1672319005),(75843,8,81409,3,1672319005),(75844,8,81410,3,1672319005),(75845,8,81411,3,1672319005),(75846,8,81412,3,1672319005),(75847,8,81413,3,1672319005),(75848,8,81414,3,1672319005),(75849,8,81415,3,1672319005),(75850,8,81416,3,1672319005),(75851,8,81417,3,1672319005),(75852,8,81418,3,1672319005),(75853,8,81419,3,1672319005),(75854,8,81420,3,1672319005),(75855,8,81421,3,1672319005),(75856,8,81422,3,1672319005),(75857,8,81423,3,1672319005),(75858,8,81424,3,1672319005),(75859,8,81425,3,1672319005),(75860,8,81426,3,1672319005),(75861,8,81427,3,1672319005),(75862,8,81428,3,1672319005),(75863,8,81429,3,1672319005),(75864,8,81430,3,1672319005),(75865,8,81431,3,1672319005),(75866,8,81432,3,1672319005),(75867,8,81433,3,1672319005),(75868,8,81434,3,1672319005),(75869,8,81435,3,1672319005),(75870,8,81436,3,1672319005),(75871,8,81437,3,1672319005),(75872,8,81438,3,1672319005),(75873,8,81439,3,1672319005),(75874,8,81440,3,1672319005),(75875,8,81441,3,1672319005),(75876,8,81442,3,1672319005),(75877,8,81443,3,1672319005),(75878,8,81444,3,1672319005),(75879,8,81445,3,1672319005),(75880,8,81446,3,1672319005),(75881,8,81447,3,1672319005),(75882,8,81448,3,1672319005),(75883,8,81449,3,1672319005),(75884,8,81450,3,1672319005),(75885,8,81451,3,1672319005),(75886,8,81452,3,1672319005),(75887,8,81453,3,1672319005),(75888,8,81454,3,1672319005),(75889,8,81455,3,1672319005),(75890,8,81456,3,1672319005),(75891,8,81457,3,1672319005),(75892,8,81458,3,1672319005),(75893,8,81459,3,1672319005),(75894,8,81460,3,1672319005),(75895,8,81461,3,1672319005),(75896,8,81462,3,1672319005),(75897,8,81463,3,1672319005),(75898,8,81464,3,1672319005),(75899,8,81465,3,1672319005),(75900,8,81466,3,1672319005),(75901,8,81467,3,1672319005),(75902,8,81468,3,1672319005),(75903,8,81469,3,1672319005),(75904,8,81470,3,1672319005),(75905,8,81471,3,1672319005),(75906,8,81472,3,1672319005),(75907,8,81473,3,1672319005),(75908,8,81474,3,1672319005),(75909,8,81475,3,1672319005),(75910,8,81476,3,1672319005),(75911,8,81477,3,1672319005),(75912,8,81478,3,1672319005),(75913,8,81479,3,1672319005),(75914,8,81480,3,1672319005),(75915,8,81481,3,1672319005),(75916,8,81482,3,1672319005),(75917,8,81483,3,1672319005),(75918,8,81484,3,1672319005),(75919,8,81485,3,1672319005),(75920,8,81486,3,1672319005),(75921,8,81487,3,1672319005),(75922,8,81488,3,1672319005),(75923,8,81489,3,1672319005),(75924,8,81490,3,1672319005),(75925,8,81491,3,1672319005),(75926,8,81492,3,1672319005),(75927,8,81493,3,1672319005),(75928,8,81494,3,1672319005),(75929,8,81495,3,1672319005),(75930,8,81496,3,1672319005),(75931,8,81497,3,1672319005),(75932,8,81498,3,1672319005),(75933,8,81499,3,1672319005),(75934,8,81500,3,1672319005),(75935,8,81501,3,1672319005),(75936,8,81502,3,1672319005),(75937,8,81503,3,1672319005),(75938,8,81504,3,1672319005),(75939,8,81505,3,1672319005),(75940,8,81506,3,1672319005),(75941,8,81507,3,1672319005),(75942,8,81508,3,1672319005),(75943,8,81509,3,1672319005),(75944,8,81510,3,1672319005),(75945,8,81511,3,1672319005),(75946,8,81512,3,1672319005),(75947,8,81513,3,1672319005),(75948,8,81514,3,1672319005),(75949,8,81515,3,1672319005),(75950,8,81516,3,1672319005),(75951,8,81517,3,1672319005),(75952,8,81518,3,1672319005),(75953,8,81519,3,1672319005),(75954,8,81520,3,1672319005),(75955,8,81521,3,1672319005),(75956,8,81522,3,1672319005),(75957,8,81523,3,1672319005),(75958,8,81524,3,1672319005),(75959,8,81525,3,1672319005),(75960,8,81526,3,1672319005),(75961,8,81527,3,1672319005),(75962,8,81528,3,1672319005),(75963,8,81529,3,1672319005),(75964,8,81530,3,1672319005),(75965,8,81531,3,1672319005),(75966,8,81532,3,1672319005),(75967,8,81533,3,1672319005),(75968,8,81534,3,1672319005),(75969,8,81535,3,1672319005),(75970,8,81536,3,1672319005),(75971,8,81537,3,1672319005),(75972,8,81538,3,1672319005),(75973,8,81539,3,1672319005),(75974,8,81540,3,1672319005),(75975,8,81541,3,1672319005),(75976,8,81542,3,1672319005),(75977,8,81543,3,1672319005),(75978,8,81544,3,1672319005),(75979,8,81545,3,1672319005),(75980,8,81546,3,1672319005),(75981,8,81547,3,1672319005),(75982,8,81548,3,1672319005),(75983,8,81549,3,1672319005),(75984,8,81550,3,1672319005),(75985,8,81551,3,1672319005),(75986,8,81552,3,1672319005),(75987,8,81553,3,1672319005),(75988,8,81554,3,1672319005),(75989,8,81555,3,1672319005),(75990,8,81556,3,1672319005),(75991,8,81557,3,1672319005),(75992,8,81558,3,1672319005),(75993,8,81559,3,1672319005),(75994,8,81560,3,1672319005),(75995,8,81561,3,1672319005),(75996,8,81562,3,1672319005),(75997,8,81563,3,1672319005),(75998,8,81564,3,1672319005),(75999,8,81565,3,1672319005),(76000,8,81566,3,1672319005),(76001,8,81567,3,1672319005),(76002,8,81568,3,1672319005),(76003,8,81569,3,1672319005),(76004,8,81570,3,1672319005),(76005,8,81571,3,1672319005),(76006,8,81572,3,1672319005),(76007,8,81573,3,1672319005),(76008,8,81574,3,1672319005),(76009,8,81575,3,1672319005),(76010,8,81576,3,1672319005),(76011,8,81577,3,1672319005),(76012,8,81578,3,1672319005),(76013,8,81579,3,1672319005),(76014,8,81580,3,1672319005),(76015,8,81581,3,1672319005),(76016,8,81582,3,1672319005),(76017,8,81583,3,1672319005),(76018,8,81584,3,1672319005),(76019,8,81585,3,1672319005),(76020,8,81586,3,1672319005),(76021,8,81587,3,1672319005),(76022,8,81588,3,1672319005),(76023,8,81589,3,1672319005),(76024,8,81590,3,1672319005),(76025,8,81591,3,1672319005),(76026,8,81592,3,1672319005),(76027,8,81593,3,1672319005),(76028,8,81594,3,1672319005),(76029,8,81595,3,1672319005),(76030,8,81596,3,1672319005),(76031,8,81597,3,1672319005),(76032,8,81598,3,1672319005),(76033,8,81599,3,1672319005),(76034,8,81600,3,1672319005),(76035,8,81601,3,1672319005),(76036,8,81602,3,1672319005),(76037,8,81603,3,1672319005),(76038,8,81604,3,1672319005),(76039,8,81605,3,1672319005),(76040,8,81606,3,1672319005),(76041,8,81607,3,1672319005),(76042,8,81608,3,1672319005),(76043,8,81609,3,1672319005),(76044,8,81610,3,1672319005),(76045,8,81611,3,1672319005),(76046,8,81612,3,1672319005),(76047,8,81613,3,1672319005),(76048,8,81614,3,1672319005),(76049,8,81615,3,1672319005),(76050,8,81616,3,1672319005),(76051,8,81617,3,1672319005),(76052,8,81618,3,1672319005),(76053,8,81619,3,1672319005),(76054,8,81620,3,1672319005),(76055,8,81621,3,1672319005),(76056,8,81622,3,1672319005),(76057,8,81623,3,1672319005),(76058,8,81624,3,1672319005),(76059,8,81625,3,1672319005),(76060,8,81626,3,1672319005),(76061,8,81627,3,1672319005),(76062,8,81628,3,1672319005),(76063,8,81629,3,1672319005),(76064,8,81630,3,1672319005),(76065,8,81631,3,1672319005),(76066,8,81632,3,1672319005),(76067,8,81633,3,1672319005),(76068,8,81634,3,1672319005),(76069,8,81635,3,1672319005),(76070,8,81636,3,1672319005),(76071,8,81637,3,1672319005),(76072,8,81638,3,1672319005),(76073,8,81639,3,1672319005),(76074,8,81640,3,1672319005),(76075,8,81641,3,1672319005),(76076,8,81642,3,1672319005),(76077,8,81643,3,1672319005),(76078,8,81644,3,1672319005),(76079,8,81645,3,1672319005),(76080,8,81646,3,1672319005),(76081,8,81647,3,1672319005),(76082,8,81648,3,1672319005),(76083,8,81649,3,1672319005),(76084,8,81650,3,1672319005),(76085,8,81651,3,1672319005),(76086,8,81652,3,1672319005),(76087,8,81653,3,1672319005),(76088,8,81654,3,1672319005),(76089,8,81655,3,1672319005),(76090,8,81656,3,1672319005),(76091,8,81657,3,1672319005),(76092,8,81658,3,1672319005),(76093,8,81659,3,1672319005),(76094,8,81660,3,1672319005),(76095,8,81661,3,1672319005),(76096,8,81662,3,1672319005),(76097,8,81663,3,1672319005),(76098,8,81664,3,1672319005),(76099,8,81665,3,1672319005),(76100,8,81666,3,1672319005),(76101,8,81667,3,1672319005),(76102,8,81668,3,1672319005),(76103,8,81669,3,1672319005),(76104,8,81670,3,1672319005),(76105,8,81671,3,1672319005),(76106,8,81672,3,1672319005),(76107,8,81673,3,1672319005),(76108,8,81674,3,1672319005),(76109,8,81675,3,1672319005),(76110,8,81676,3,1672319005),(76111,8,81677,3,1672319005),(76112,8,81678,3,1672319005),(76113,8,81679,3,1672319005),(76114,8,81680,3,1672319005),(76115,8,81681,3,1672319005),(76116,8,81682,3,1672319005),(76117,8,81683,3,1672319005),(76118,8,81684,3,1672319005),(76119,8,81685,3,1672319005),(76120,8,81686,3,1672319005),(76121,8,81687,3,1672319005),(76122,8,81688,3,1672319005),(76123,8,81689,3,1672319005),(76124,8,81690,3,1672319005),(76125,8,81691,3,1672319005),(76126,8,81692,3,1672319005),(76127,8,81693,3,1672319005),(76128,8,81694,3,1672319005),(76129,8,81695,3,1672319005),(76130,8,81696,3,1672319005),(76131,8,81697,3,1672319005),(76132,8,81698,3,1672319005),(76133,8,81699,3,1672319005),(76134,8,81700,3,1672319005),(76135,8,81701,3,1672319005),(76136,8,81702,3,1672319005),(76137,8,81703,3,1672319005),(76138,8,81704,3,1672319005),(76139,8,81705,3,1672319005),(76140,8,81706,3,1672319005),(76141,8,81707,3,1672319005),(76142,8,81708,3,1672319005),(76143,8,81709,3,1672319005),(76144,8,81710,3,1672319005),(76145,8,81711,3,1672319005),(76146,8,81712,3,1672319005),(76147,8,81713,3,1672319005),(76148,8,81714,3,1672319005),(76149,8,81715,3,1672319005),(76150,8,81716,3,1672319005),(76151,8,81717,3,1672319005),(76152,8,81718,3,1672319005),(76153,8,81719,3,1672319005),(76154,8,81720,3,1672319005),(76155,8,81721,3,1672319005),(76156,8,81722,3,1672319005),(76157,8,81723,3,1672319005),(76158,8,81724,3,1672319005),(76159,8,81725,3,1672319005),(76160,8,81726,3,1672319005),(76161,8,81727,3,1672319005),(76162,8,81728,3,1672319005),(76163,8,81729,3,1672319005),(76164,8,81730,3,1672319005),(76165,8,81731,3,1672319005),(76166,8,81732,3,1672319005),(76167,8,81733,3,1672319005),(76168,8,81734,3,1672319005),(76169,8,81735,3,1672319005),(76170,8,81736,3,1672319005),(76171,8,81737,3,1672319005),(76172,8,81738,3,1672319005),(76173,8,81739,3,1672319005),(76174,8,81740,3,1672319005),(76175,8,81741,3,1672319005),(76176,8,81742,3,1672319005),(76177,8,81743,3,1672319005),(76178,8,81744,3,1672319005),(76179,8,81745,3,1672319005),(76180,8,81746,3,1672319005),(76181,8,81747,3,1672319005),(76182,8,81748,3,1672319005),(76183,8,81749,3,1672319005),(76184,8,81750,3,1672319005),(76185,8,81751,3,1672319005),(76186,8,81752,3,1672319005),(76187,8,81753,3,1672319005),(76188,8,81754,3,1672319005),(76189,8,81755,3,1672319005),(76190,8,81756,3,1672319005),(76191,8,81757,3,1672319005),(76192,8,81758,3,1672319005),(76193,8,81759,3,1672319005),(76194,8,81760,3,1672319005),(76195,8,81761,3,1672319005),(76196,8,81762,3,1672319005),(76197,8,81763,3,1672319005),(76198,8,81764,3,1672319005),(76199,8,81765,3,1672319005),(76200,8,81766,3,1672319005),(76201,8,81767,3,1672319005),(76202,8,81768,3,1672319005),(76203,8,81769,3,1672319005),(76204,8,81770,3,1672319005),(76205,8,81771,3,1672319005),(76206,8,81772,3,1672319005),(76207,8,81773,3,1672319005),(76208,8,81774,3,1672319005),(76209,8,81775,3,1672319005),(76210,8,81776,3,1672319005),(76211,8,81777,3,1672319005),(76212,8,81778,3,1672319005),(76213,8,81779,3,1672319005),(76214,8,81780,3,1672319005),(76215,8,81794,3,1672319005),(76216,8,81795,3,1672319005),(76217,8,81796,3,1672319005),(76218,8,81797,3,1672319005),(76219,8,81798,3,1672319005),(76220,8,81799,3,1672319005),(76221,8,81800,3,1672319005),(76222,8,81801,3,1672319005),(76223,8,81802,3,1672319005),(76224,8,81803,3,1672319005),(76225,8,81804,3,1672319005),(76226,8,81805,3,1672319005),(76227,8,81806,3,1672319005),(76228,8,81807,3,1672319005),(76229,8,81808,3,1672319005),(76230,8,81809,3,1672319005),(76231,8,81810,3,1672319005),(76232,8,81811,3,1672319005),(76233,8,81812,3,1672319005),(76234,8,81813,3,1672319005),(76235,8,81814,3,1672319005),(76236,8,81815,3,1672319005),(76237,8,81816,3,1672319005),(76238,8,81817,3,1672319005),(76239,8,81818,3,1672319005),(76240,8,81819,3,1672319005),(76241,8,81820,3,1672319005),(76242,8,81821,3,1672319005),(76243,8,81822,3,1672319005),(76244,8,81823,3,1672319005),(76245,8,81824,3,1672319005),(76246,8,81825,3,1672319005),(76247,8,81826,3,1672319005),(76248,8,81827,3,1672319005),(76249,8,81828,3,1672319005),(76250,8,81829,3,1672319005),(76251,8,81830,3,1672319005),(76252,8,81831,3,1672319005),(76253,8,81832,3,1672319005),(76254,8,81833,3,1672319005),(76255,8,81834,3,1672319005),(76256,8,81835,3,1672319005),(76257,8,81836,3,1672319005),(76258,8,81837,3,1672319005),(76259,8,81838,3,1672319005),(76260,8,81839,3,1672319005),(76261,8,81840,3,1672319005),(76262,8,81841,3,1672319005),(76263,8,81842,3,1672319005),(76264,8,81843,3,1672319005),(76265,8,81844,3,1672319005),(76266,8,81845,3,1672319005),(76267,8,81846,3,1672319005),(76268,8,81847,3,1672319005),(76269,8,81848,3,1672319005),(76270,8,81849,3,1672319005),(76271,8,81850,3,1672319005),(76272,8,81851,3,1672319005),(76273,8,81852,3,1672319005),(76274,8,81853,3,1672319005),(76275,8,81854,3,1672319005),(76276,8,81855,3,1672319005),(76277,8,81856,3,1672319005),(76278,8,81857,3,1672319005),(76279,8,81858,3,1672319005),(76280,8,81859,3,1672319005),(76281,8,81860,3,1672319005),(76282,8,81861,3,1672319005),(76283,8,81862,3,1672319005),(76284,8,81863,3,1672319005),(76285,8,81864,3,1672319005),(76286,8,81865,3,1672319005),(76287,8,81866,3,1672319005),(76288,8,81867,3,1672319005),(76289,8,81868,3,1672319005),(76290,8,81869,3,1672319005),(76291,8,81870,3,1672319005),(76292,8,81871,3,1672319005),(76293,8,81872,3,1672319005),(76294,8,81873,3,1672319005),(76295,8,81874,3,1672319005),(76296,8,81875,3,1672319005),(76297,8,81876,3,1672319005),(76298,8,81877,3,1672319005),(76299,8,81878,3,1672319005),(76300,8,81879,3,1672319005),(76301,8,81880,3,1672319005),(76302,8,81881,3,1672319005),(76303,8,81882,3,1672319005),(76304,8,81883,3,1672319005),(76305,8,81884,3,1672319005),(76306,8,81885,3,1672319005),(76307,8,81886,3,1672319005),(76308,8,81887,3,1672319005),(76309,8,81888,3,1672319005),(76310,8,81889,3,1672319005),(76311,8,81890,3,1672319005),(76312,8,81891,3,1672319005),(76313,8,81892,3,1672319005),(76314,8,81893,3,1672319005),(76315,8,81894,3,1672319005),(76316,8,81895,3,1672319005),(76317,8,81896,3,1672319005),(76318,8,81897,3,1672319005),(76319,8,81898,3,1672319005),(76320,8,81899,3,1672319005),(76321,8,81900,3,1672319005),(76322,8,81901,3,1672319005),(76323,8,81902,3,1672319005),(76324,8,81903,3,1672319005),(76325,8,81904,3,1672319005),(76326,8,81905,3,1672319005),(76327,8,81906,3,1672319005),(76328,8,81907,3,1672319005),(76329,8,81908,3,1672319005),(76330,8,81909,3,1672319005),(76331,8,81910,3,1672319005),(76332,8,81911,3,1672319005),(76333,8,81912,3,1672319005),(76334,8,81913,3,1672319005),(76335,8,81914,3,1672319005),(76336,8,81915,3,1672319005),(76337,8,81916,3,1672319005),(76338,8,81917,3,1672319005),(76339,8,81918,3,1672319005),(76340,8,81919,3,1672319005),(76341,8,81920,3,1672319005),(76342,8,81921,3,1672319005),(76343,8,81922,3,1672319005),(76344,8,81923,3,1672319005),(76345,8,81924,3,1672319005),(76346,8,81925,3,1672319005),(76347,8,81926,3,1672319005),(76348,8,81927,3,1672319005),(76349,8,81928,3,1672319005),(76350,8,81929,3,1672319005),(76351,8,81930,3,1672319005),(76352,8,81931,3,1672319005),(76353,8,81932,3,1672319005),(76354,8,81933,3,1672319005),(76355,8,81937,3,1672319005),(76356,8,81938,3,1672319005),(76357,8,81939,3,1672319005),(76358,8,81949,3,1672319005),(76359,8,81950,3,1672319005),(76360,8,81951,3,1672319005),(76361,8,81952,3,1672319005),(76362,8,81953,3,1672319005),(76363,8,81954,3,1672319005),(76364,8,81955,3,1672319005),(76365,8,81956,3,1672319005),(76366,8,81957,3,1672319005),(76367,8,81958,3,1672319005),(76368,8,81959,3,1672319005),(76369,8,81960,3,1672319005),(76370,8,81961,3,1672319005),(76371,8,81962,3,1672319005),(76372,8,81963,3,1672319005),(76373,8,81964,3,1672319005),(76374,8,81965,3,1672319005),(76375,8,81966,3,1672319005),(76376,8,81967,3,1672319005),(76377,8,81968,3,1672319005),(76378,8,81969,3,1672319005),(76379,8,81970,3,1672319005),(76380,8,81971,3,1672319005),(76381,8,81972,3,1672319005),(76382,8,81973,3,1672319005),(76383,8,81974,3,1672319005),(76384,8,81975,3,1672319005),(76385,8,81976,3,1672319005),(76386,8,81977,3,1672319005),(76387,8,81978,3,1672319005),(76388,8,81979,3,1672319005),(76389,8,81980,3,1672319005),(76390,8,81981,3,1672319005),(76391,8,81982,3,1672319005),(76392,8,81983,3,1672319005),(76393,8,81984,3,1672319005),(76394,8,81985,3,1672319005),(76395,8,81986,3,1672319005),(76396,8,81987,3,1672319005),(76397,8,81988,3,1672319005),(76398,8,81989,3,1672319005),(76399,8,81990,3,1672319005),(76400,8,81991,3,1672319005),(76401,8,81992,3,1672319005),(76402,8,81993,3,1672319005),(76403,8,81994,3,1672319005),(76404,8,81995,3,1672319005),(76405,8,81996,3,1672319005),(76406,8,81997,3,1672319005),(76407,8,81998,3,1672319005),(76408,8,81999,3,1672319005),(76409,8,82000,3,1672319005),(76410,8,82001,3,1672319005),(76411,8,82002,3,1672319005),(76412,8,82003,3,1672319005),(76413,8,82004,3,1672319005),(76414,8,82005,3,1672319005),(76415,8,82006,3,1672319005),(76416,8,82007,3,1672319005),(76417,8,82008,3,1672319005),(76418,8,82009,3,1672319005),(76419,8,82010,3,1672319005),(76420,8,82011,3,1672319005),(76421,8,82012,3,1672319005),(76422,8,82013,3,1672319005),(76423,8,82014,3,1672319005),(76424,8,82015,3,1672319005),(76425,8,82016,3,1672319005),(76426,8,82017,3,1672319005),(76427,8,82018,3,1672319005),(76428,8,82019,3,1672319005),(76429,8,82020,3,1672319005),(76430,8,82021,3,1672319005),(76431,8,82022,3,1672319005),(76432,8,82023,3,1672319005),(76433,8,82024,3,1672319005),(76434,8,82025,3,1672319005),(76435,8,82026,3,1672319005),(76436,8,82027,3,1672319005),(76437,8,82028,3,1672319005),(76438,8,82029,3,1672319005),(76439,8,82030,3,1672319005),(76440,8,82031,3,1672319005),(76441,8,82032,3,1672319005),(76442,8,82033,3,1672319005),(76443,8,82034,3,1672319005),(76444,8,82035,3,1672319005),(76445,8,82036,3,1672319005),(76446,8,82037,3,1672319005),(76447,8,82038,3,1672319005),(76448,8,82039,3,1672319005),(76449,8,82040,3,1672319005),(76450,8,82041,3,1672319005),(76451,8,82042,3,1672319005),(76452,8,82043,3,1672319005),(76453,8,82044,3,1672319005),(76454,8,82045,3,1672319005),(76455,8,82046,3,1672319005),(76456,8,82047,3,1672319005),(76457,8,82048,3,1672319005),(76458,8,82049,3,1672319005),(76459,8,82050,3,1672319005),(76460,8,82051,3,1672319005),(76461,8,82052,3,1672319005),(76462,8,82053,3,1672319005),(76463,8,82054,3,1672319005),(76464,8,82055,3,1672319005),(76465,8,82056,3,1672319005),(76466,8,82057,3,1672319005),(76467,8,82058,3,1672319005),(76468,8,82059,3,1672319005),(76469,8,82060,3,1672319005),(76470,8,82061,3,1672319005),(76471,8,82062,3,1672319005),(76472,8,82063,3,1672319005),(76473,8,82064,3,1672319005),(76474,8,82065,3,1672319005),(76475,8,82066,3,1672319005),(76476,8,82067,3,1672319005),(76477,8,82068,3,1672319005),(76478,8,82069,3,1672319005),(76479,8,82070,3,1672319005),(76480,8,82071,3,1672319005),(76481,8,82072,3,1672319005),(76482,8,82073,3,1672319005),(76483,8,82074,3,1672319005),(76484,8,82075,3,1672319005),(76485,8,82076,3,1672319005),(76486,8,82077,3,1672319005),(76487,8,82078,3,1672319005),(76488,8,82079,3,1672319005),(76489,8,82080,3,1672319005),(76490,8,82081,3,1672319005),(76491,8,82082,3,1672319005),(76492,8,82083,3,1672319005),(76493,8,82084,3,1672319005),(76494,8,82085,3,1672319005),(76495,8,82086,3,1672319005),(76496,8,82087,3,1672319005),(76497,8,82088,3,1672319005),(76498,8,82089,3,1672319005),(76499,8,82090,3,1672319005),(76500,8,82091,3,1672319005),(76501,8,82092,3,1672319005),(76502,8,82093,3,1672319005),(76503,8,82094,3,1672319005),(76504,8,82095,3,1672319005),(76505,8,82096,3,1672319005),(76506,8,82097,3,1672319005),(76507,8,82098,3,1672319005),(76508,8,82099,3,1672319005),(76509,8,82100,3,1672319005),(76510,8,82101,3,1672319005),(76511,8,82102,3,1672319005),(76512,8,82103,3,1672319005),(76513,8,82104,3,1672319005),(76514,8,82105,3,1672319005),(76515,8,82106,3,1672319005),(76516,8,82107,3,1672319005),(76517,8,82108,3,1672319005),(76518,8,82109,3,1672319005),(76519,8,82110,3,1672319005),(76520,8,82111,3,1672319005),(76521,8,82112,3,1672319005),(76522,8,82113,3,1672319005),(76523,8,82114,3,1672319005),(76524,8,82115,3,1672319005),(76525,8,82116,3,1672319005),(76526,8,82117,3,1672319005),(76527,8,82118,3,1672319005),(76528,8,82119,3,1672319005),(76529,8,82120,3,1672319005),(76530,8,82121,3,1672319005),(76531,8,82122,3,1672319005),(76532,8,82123,3,1672319005),(76533,8,82124,3,1672319005),(76534,8,82125,3,1672319005),(76535,8,82126,3,1672319005),(76536,8,82127,3,1672319005),(76537,8,82128,3,1672319005),(76538,8,82129,3,1672319005),(76539,8,82130,3,1672319005),(76540,8,82131,3,1672319005),(76541,8,82132,3,1672319005),(76542,8,82133,3,1672319005),(76543,8,82134,3,1672319005),(76544,8,82135,3,1672319005),(76545,8,82136,3,1672319005),(76546,8,82137,3,1672319005),(76547,8,82138,3,1672319005),(76548,8,82139,3,1672319005),(76549,8,82140,3,1672319005),(76550,8,82141,3,1672319005),(76551,8,82142,3,1672319005),(76552,8,82143,3,1672319005),(76553,8,82144,3,1672319005),(76554,8,82145,3,1672319005),(76555,8,82146,3,1672319005),(76556,8,82147,3,1672319005),(76557,8,82148,3,1672319005),(76558,8,82149,3,1672319005),(76559,8,82150,3,1672319005),(76560,8,82151,3,1672319005),(76561,8,82152,3,1672319005),(76562,8,82153,3,1672319005),(76563,8,82154,3,1672319005),(76564,8,82155,3,1672319005),(76565,8,82156,3,1672319005),(76566,8,82157,3,1672319005),(76567,8,82158,3,1672319005),(76568,8,82159,3,1672319005),(76569,8,82160,3,1672319005),(76570,8,82161,3,1672319005),(76571,8,82162,3,1672319005),(76572,8,82163,3,1672319005),(76573,8,82164,3,1672319005),(76574,8,82165,3,1672319005),(76575,8,82166,3,1672319005),(76576,8,82167,3,1672319005),(76577,8,82168,3,1672319005),(76578,8,82169,3,1672319005),(76579,8,82170,3,1672319005),(76580,8,82171,3,1672319005),(76581,8,82172,3,1672319005),(76582,8,82173,3,1672319005),(76583,8,82174,3,1672319005),(76584,8,82175,3,1672319005),(76585,8,82176,3,1672319005),(76586,8,82177,3,1672319005),(76587,8,82178,3,1672319005),(76588,8,82179,3,1672319005),(76589,8,82180,3,1672319005),(76590,8,82181,3,1672319005),(76591,8,82182,3,1672319005),(76592,8,82183,3,1672319005),(76593,8,82184,3,1672319005),(76594,8,82185,3,1672319005),(76595,8,82186,3,1672319005),(76596,8,82187,3,1672319005),(76597,8,82188,3,1672319005),(76598,8,82189,3,1672319005),(76599,8,82190,3,1672319005),(76600,8,82191,3,1672319005),(76601,8,82192,3,1672319005),(76602,8,82193,3,1672319005),(76603,8,82194,3,1672319005),(76604,8,82195,3,1672319005),(76605,8,82196,3,1672319005),(76606,8,82197,3,1672319005),(76607,8,82198,3,1672319005),(76608,8,82199,3,1672319005),(76609,8,82200,3,1672319005),(76610,8,82201,3,1672319005),(76611,8,82202,3,1672319005),(76612,8,82203,3,1672319005),(76613,8,82204,3,1672319005),(76614,8,82205,3,1672319005),(76615,8,82206,3,1672319005),(76616,8,82207,3,1672319005),(76617,8,82208,3,1672319005),(76618,8,82209,3,1672319005),(76619,8,82210,3,1672319005),(76620,8,82211,3,1672319005),(76621,8,82212,3,1672319005),(76622,8,82213,3,1672319005),(76623,8,82214,3,1672319005),(76624,8,82215,3,1672319005),(76625,8,82216,3,1672319005),(76626,8,82217,3,1672319005),(76627,8,82218,3,1672319005),(76628,8,82219,3,1672319005),(76629,8,82220,3,1672319005),(76630,8,82221,3,1672319005),(76631,8,82222,3,1672319005),(76632,8,82223,3,1672319005),(76633,8,82224,3,1672319005),(76634,8,82225,3,1672319005),(76635,8,82226,3,1672319005),(76636,8,82227,3,1672319005),(76637,8,82228,3,1672319005),(76638,8,82229,3,1672319005),(76639,8,82230,3,1672319005),(76640,8,82231,3,1672319005),(76641,8,82232,3,1672319005),(76642,8,82233,3,1672319005),(76643,8,82234,3,1672319005),(76644,8,82235,3,1672319005),(76645,8,82236,3,1672319005),(76646,8,82237,3,1672319005),(76647,8,82238,3,1672319005),(76648,8,82239,3,1672319005),(76649,8,82240,3,1672319005),(76650,8,82241,3,1672319005),(76651,8,82242,3,1672319005),(76652,8,82243,3,1672319005),(76653,8,82244,3,1672319005),(76654,8,82245,3,1672319005),(76655,8,82246,3,1672319005),(76656,8,82247,3,1672319005),(76657,8,82248,3,1672319005),(76658,8,82249,3,1672319005),(76659,8,82250,3,1672319005),(76660,8,82251,3,1672319005),(76661,8,82252,3,1672319005),(76662,8,82253,3,1672319005),(76663,8,82254,3,1672319005),(76664,8,82255,3,1672319005),(76665,8,82256,3,1672319005),(76666,8,82257,3,1672319005),(76667,8,82258,3,1672319005),(76668,8,82259,3,1672319005),(76669,8,82260,3,1672319005),(76670,8,82261,3,1672319005),(76671,8,82262,3,1672319005),(76672,8,82263,3,1672319005),(76673,8,82264,3,1672319005),(76674,8,82265,3,1672319005),(76675,8,82266,3,1672319005),(76676,8,82267,3,1672319005),(76677,8,82268,3,1672319005),(76678,8,82269,3,1672319005),(76679,8,82270,3,1672319005),(76680,8,82271,3,1672319005),(76681,8,82272,3,1672319005),(76682,8,82273,3,1672319005),(76683,8,82274,3,1672319005),(76684,8,82275,3,1672319005),(76685,8,82276,3,1672319005),(76686,8,82277,3,1672319005),(76687,8,82278,3,1672319005),(76688,8,82279,3,1672319005),(76689,8,82280,3,1672319005),(76690,8,82281,3,1672319005),(76691,8,82282,3,1672319005),(76692,8,82283,3,1672319005),(76693,8,82284,3,1672319005),(76694,8,82285,3,1672319005),(76695,8,82286,3,1672319005),(76696,8,82287,3,1672319005),(76697,8,82288,3,1672319005),(76698,8,82289,3,1672319005),(76699,8,82290,3,1672319005),(76700,8,82291,3,1672319005),(76701,8,82292,3,1672319005),(76702,8,82293,3,1672319005),(76703,8,82294,3,1672319005),(76704,8,82295,3,1672319005),(76705,8,82296,3,1672319005),(76706,8,82298,3,1672319005),(76707,8,82299,3,1672319005),(76708,8,82300,3,1672319005),(76709,8,82301,3,1672319005),(76710,8,82302,3,1672319005),(76711,8,82303,3,1672319005),(76712,8,82304,3,1672319005),(76713,8,82305,3,1672319005),(76714,8,82306,3,1672319005),(76715,8,82307,3,1672319005),(76716,8,82308,3,1672319005),(76717,8,82309,3,1672319005),(76718,8,82310,3,1672319005),(76719,8,82312,3,1672319005),(76720,8,82313,3,1672319005),(76721,8,82314,3,1672319005),(76722,8,82315,3,1672319005),(76723,8,82316,3,1672319005),(76724,8,82317,3,1672319005),(76725,8,82318,3,1672319005),(76726,8,82319,3,1672319005),(76727,8,82320,3,1672319005),(76728,8,82321,3,1672319005),(76729,8,82322,3,1672319005),(76730,8,82323,3,1672319005),(76731,8,82324,3,1672319005),(76732,8,82325,3,1672319005),(76733,8,82326,3,1672319005),(76734,8,82327,3,1672319005),(76735,8,82328,3,1672319005),(76736,8,82329,3,1672319005),(76737,8,82330,3,1672319005),(76738,8,82331,3,1672319005),(76739,8,82332,3,1672319005),(76740,8,82333,3,1672319005),(76741,8,82334,3,1672319005),(76742,8,82335,3,1672319005),(76743,8,82336,3,1672319005),(76744,8,82337,3,1672319005),(76745,8,82338,3,1672319005),(76746,8,82339,3,1672319005),(76747,8,82340,3,1672319005),(76748,8,82341,3,1672319005),(76749,8,82342,3,1672319005),(76750,8,82343,3,1672319005),(76751,8,82344,3,1672319005),(76752,8,82345,3,1672319005),(76753,8,82346,3,1672319005),(76754,8,82347,3,1672319005),(76755,8,82348,3,1672319005),(76756,8,82349,3,1672319005),(76757,8,82350,3,1672319005),(76758,8,82351,3,1672319005),(76759,8,82352,3,1672319005),(76760,8,82353,3,1672319005),(76761,8,82354,3,1672319005),(76762,8,82355,3,1672319005),(76763,8,82356,3,1672319005),(76764,8,82357,3,1672319005),(76765,8,82358,3,1672319005),(76766,8,82359,3,1672319005),(76767,8,82360,3,1672319005),(76768,8,82361,3,1672319005),(76769,8,82362,3,1672319005),(76770,8,82363,3,1672319005),(76771,8,82364,3,1672319005),(76772,8,82365,3,1672319005),(76773,8,82366,3,1672319005),(76774,8,82367,3,1672319005),(76775,8,82368,3,1672319005),(76776,8,82369,3,1672319005),(76777,8,82370,3,1672319005),(76778,8,82371,3,1672319005),(76779,8,82372,3,1672319005),(76780,8,82373,3,1672319005),(76781,8,82374,3,1672319005),(76782,8,82375,3,1672319005),(76783,8,82416,3,1672319005),(76784,8,82417,3,1672319005),(76785,8,82418,3,1672319005),(76786,8,82419,3,1672319005),(76787,8,82420,3,1672319005),(76788,8,82421,3,1672319005),(76789,8,82422,3,1672319005),(76790,8,82423,3,1672319005),(76791,8,82424,3,1672319005),(76792,8,82425,3,1672319005),(76793,8,82426,3,1672319005),(76794,8,82427,3,1672319005),(76795,8,82428,3,1672319005),(76796,8,82429,3,1672319005),(76797,8,82430,3,1672319005),(76798,8,82431,3,1672319005),(76799,8,82432,3,1672319005),(76800,8,82433,3,1672319005),(76801,8,82434,3,1672319005),(76802,8,82435,3,1672319005),(76803,8,82436,3,1672319005),(76804,8,82437,3,1672319005),(76805,8,82438,3,1672319005),(76806,8,82439,3,1672319005),(76807,8,82440,3,1672319005),(76808,8,82441,3,1672319005),(76809,8,82442,3,1672319005),(76810,8,82443,3,1672319005),(76811,8,82444,3,1672319005),(76812,8,82445,3,1672319005),(76813,8,82446,3,1672319005),(76814,8,82447,3,1672319005),(76815,8,82448,3,1672319005),(76816,8,82449,3,1672319005),(76817,8,82450,3,1672319005),(76818,8,82451,3,1672319005),(76819,8,82452,3,1672319005),(76820,8,82453,3,1672319005),(76821,8,82454,3,1672319005),(76822,8,82455,3,1672319005),(76823,8,82456,3,1672319005),(76824,8,82457,3,1672319005),(76825,8,82458,3,1672319005),(76826,8,82459,3,1672319005),(76827,8,82460,3,1672319005),(76828,8,82461,3,1672319005),(76829,8,82462,3,1672319005),(76830,8,82463,3,1672319005),(76831,8,82464,3,1672319005),(76832,8,82465,3,1672319005),(76833,8,82466,3,1672319005),(76834,8,82467,3,1672319005),(76835,8,82468,3,1672319005),(76836,8,82469,3,1672319005),(76837,8,82470,3,1672319005),(76838,8,82471,3,1672319005),(76839,8,82472,3,1672319005),(76840,8,82473,3,1672319005),(76841,8,82474,3,1672319005),(76842,8,82475,3,1672319005),(76843,8,82476,3,1672319005),(76844,8,82477,3,1672319005),(76845,8,82478,3,1672319005),(76846,8,82479,3,1672319005),(76847,8,82480,3,1672319005),(76848,8,82481,3,1672319005),(76849,8,82482,3,1672319005),(76850,8,82483,3,1672319005),(76851,8,82484,3,1672319005),(76852,8,82485,3,1672319005),(76853,8,82486,3,1672319005),(76854,8,82487,3,1672319005),(76855,8,82488,3,1672319005),(76856,8,82489,3,1672319005),(76857,8,82490,3,1672319005),(76858,8,82491,3,1672319005),(76859,8,82492,3,1672319005),(76860,8,82493,3,1672319005),(76861,8,82494,3,1672319005),(76862,8,82495,3,1672319005),(76863,8,82496,3,1672319005),(76864,8,82497,3,1672319005),(76865,8,82498,3,1672319005),(76866,8,82499,3,1672319005),(76867,8,82500,3,1672319005),(76868,8,82501,3,1672319005),(76869,8,82502,3,1672319005),(76870,8,82503,3,1672319005),(76871,8,82504,3,1672319005),(76872,8,82505,3,1672319005),(76873,8,82506,3,1672319005),(76874,8,82507,3,1672319005),(76875,8,82508,3,1672319005),(76876,8,82509,3,1672319005),(76877,8,82510,3,1672319005),(76878,8,82511,3,1672319005),(76879,8,82512,3,1672319005),(76880,8,82513,3,1672319005),(76881,8,82514,3,1672319005),(76882,8,82515,3,1672319005),(76883,8,82516,3,1672319005),(76884,8,82517,3,1672319005),(76885,8,82518,3,1672319005),(76886,8,82519,3,1672319005),(76887,8,82520,3,1672319005),(76888,8,82521,3,1672319005),(76889,8,82522,3,1672319005),(76890,8,82523,3,1672319005),(76891,8,82524,3,1672319005),(76892,8,82525,3,1672319005),(76893,8,82526,3,1672319005),(76894,8,82527,3,1672319005),(76895,8,82528,3,1672319005),(76896,8,82529,3,1672319005),(76897,8,82530,3,1672319005),(76898,8,82531,3,1672319005),(76899,8,82532,3,1672319005),(76900,8,82533,3,1672319005),(76901,8,82534,3,1672319005),(76902,8,82535,3,1672319005),(76903,8,82536,3,1672319005),(76904,8,82537,3,1672319005),(76905,8,82538,3,1672319005),(76906,8,82539,3,1672319005),(76907,8,82540,3,1672319005),(76908,8,82541,3,1672319005),(76909,8,82542,3,1672319005),(76910,8,82543,3,1672319005),(76911,8,82544,3,1672319005),(76912,8,82545,3,1672319005),(76913,8,82546,3,1672319005),(76914,8,82547,3,1672319005),(76915,8,82548,3,1672319005),(76916,8,82549,3,1672319005),(76917,8,82550,3,1672319005),(76918,8,82551,3,1672319005),(76919,8,82552,3,1672319005),(76920,8,82553,3,1672319005),(76921,8,82554,3,1672319005),(76922,8,82555,3,1672319005),(76923,8,82556,3,1672319005),(76924,8,82557,3,1672319005),(76925,8,82558,3,1672319005),(76926,8,82559,3,1672319005),(76927,8,82560,3,1672319005),(76928,8,82561,3,1672319005),(76929,8,82562,3,1672319005),(76930,8,82563,3,1672319005),(76931,8,82564,3,1672319005),(76932,8,82565,3,1672319005),(76933,8,82566,3,1672319005),(76934,8,82567,3,1672319005),(76935,8,82568,3,1672319005),(76936,8,82569,3,1672319005),(76937,8,82570,3,1672319005),(76938,8,82571,3,1672319005),(76939,8,82572,3,1672319005),(76940,8,82573,3,1672319005),(76941,8,82574,3,1672319005),(76942,8,82575,3,1672319005),(76943,8,82576,3,1672319005),(76944,8,82577,3,1672319005),(76945,8,82578,3,1672319005),(76946,8,82579,3,1672319005),(76947,8,82580,3,1672319005),(76948,8,82581,3,1672319005),(76949,8,82582,3,1672319005),(76950,8,82583,3,1672319005),(76951,8,82584,3,1672319005),(76952,8,82585,3,1672319005),(76953,8,82586,3,1672319005),(76954,8,82587,3,1672319005),(76955,8,82588,3,1672319005),(76956,8,82589,3,1672319005),(76957,8,82590,3,1672319005),(76958,8,82591,3,1672319005),(76959,8,82592,3,1672319005),(76960,8,82593,3,1672319005),(76961,8,82594,3,1672319005),(76962,8,82595,3,1672319005),(76963,8,82596,3,1672319005),(76964,8,82597,3,1672319005),(76965,8,82598,3,1672319005),(76966,8,82599,3,1672319005),(76967,8,82600,3,1672319005),(76968,8,82601,3,1672319005),(76969,8,82602,3,1672319005),(76970,8,82603,3,1672319005),(76971,8,82604,3,1672319005),(76972,8,82605,3,1672319005),(76973,8,82606,3,1672319005),(76974,8,82607,3,1672319005),(76975,8,82608,3,1672319005),(76976,8,82609,3,1672319005),(76977,8,82610,3,1672319005),(76978,8,82611,3,1672319005),(76979,8,82612,3,1672319005),(76980,8,82613,3,1672319005),(76981,8,82614,3,1672319005),(76982,8,82615,3,1672319005),(76983,8,82616,3,1672319005),(76984,8,82617,3,1672319005),(76985,8,82618,3,1672319005),(76986,8,82619,3,1672319005),(76987,8,82620,3,1672319005),(76988,8,82621,3,1672319005),(76989,8,82622,3,1672319005),(76990,8,82623,3,1672319005),(76991,8,82624,3,1672319005),(76992,8,82625,3,1672319005),(76993,8,82626,3,1672319005),(76994,8,82627,3,1672319005),(76995,8,82628,3,1672319005),(76996,8,82629,3,1672319005),(76997,8,82630,3,1672319005),(76998,8,82631,3,1672319005),(76999,8,82632,3,1672319005),(77000,8,82633,3,1672319005),(77001,8,82634,3,1672319005),(77002,8,82635,3,1672319005),(77003,8,82636,3,1672319005),(77004,8,82637,3,1672319005),(77005,8,82638,3,1672319005),(77006,8,82639,3,1672319005),(77007,8,82640,3,1672319005),(77008,8,82641,3,1672319005),(77009,8,82642,3,1672319005),(77010,8,82643,3,1672319005),(77011,8,82644,3,1672319005),(77012,8,82645,3,1672319005),(77013,8,82646,3,1672319005),(77014,8,82647,3,1672319005),(77015,8,82648,3,1672319005),(77016,8,82649,3,1672319005),(77017,8,82650,3,1672319005),(77018,8,82651,3,1672319005),(77019,8,82652,3,1672319005),(77020,8,82653,3,1672319005),(77021,8,82654,3,1672319005),(77022,8,82655,3,1672319005),(77023,8,82656,3,1672319005),(77024,8,82657,3,1672319005),(77025,8,82658,3,1672319005),(77026,8,82659,3,1672319005),(77027,8,82660,3,1672319005),(77028,8,82661,3,1672319005),(77029,8,82662,3,1672319005),(77030,8,82663,3,1672319005),(77031,8,82664,3,1672319005),(77032,8,82665,3,1672319005),(77033,8,82666,3,1672319005),(77034,8,82667,3,1672319005),(77035,8,82668,3,1672319005),(77036,8,82669,3,1672319005),(77037,8,82670,3,1672319005),(77038,8,82671,3,1672319005),(77039,8,82672,3,1672319005),(77040,8,82673,3,1672319005),(77041,8,82674,3,1672319005),(77042,8,82675,3,1672319005),(77043,8,82676,3,1672319005),(77044,8,82677,3,1672319005),(77045,8,82678,3,1672319005),(77046,8,82679,3,1672319005),(77047,8,82680,3,1672319005),(77048,8,82681,3,1672319005),(77049,8,82682,3,1672319005),(77050,8,82683,3,1672319005),(77051,8,82685,3,1672319005),(77052,8,82686,3,1672319005),(77053,8,82687,3,1672319005),(77054,8,82688,3,1672319005),(77055,8,82689,3,1672319005),(77056,8,82690,3,1672319005),(77057,8,82691,3,1672319005),(77058,8,82692,3,1672319005),(77059,8,82693,3,1672319005),(77060,8,82694,3,1672319005),(77061,8,82695,3,1672319005),(77062,8,82696,3,1672319005),(77063,8,82697,3,1672319005),(77064,8,82698,3,1672319005),(77065,8,82699,3,1672319005),(77066,8,82700,3,1672319005),(77067,8,82701,3,1672319005),(77068,8,82702,3,1672319005),(77069,8,82703,3,1672319005),(77070,8,82704,3,1672319005),(77071,8,82705,3,1672319005),(77072,8,82706,3,1672319005),(77073,8,82707,3,1672319005),(77074,8,82708,3,1672319005),(77075,8,82709,3,1672319005),(77076,8,82710,3,1672319005),(77077,8,82711,3,1672319005),(77078,8,82712,3,1672319005),(77079,8,82713,3,1672319005),(77080,8,82714,3,1672319005),(77081,8,82715,3,1672319005),(77082,8,82716,3,1672319005),(77083,8,82717,3,1672319005),(77084,8,82718,3,1672319005),(77085,8,82719,3,1672319005),(77086,8,82720,3,1672319005),(77087,8,82721,3,1672319005),(77088,8,82722,3,1672319005),(77089,8,82723,3,1672319005),(77090,8,82724,3,1672319005),(77091,8,82725,3,1672319005),(77092,8,82726,3,1672319005),(77093,8,82727,3,1672319005),(77094,8,82728,3,1672319005),(77095,8,82729,3,1672319005),(77096,8,82730,3,1672319005),(77097,8,82731,3,1672319005),(77098,8,82732,3,1672319005),(77099,8,82733,3,1672319005),(77100,8,82734,3,1672319005),(77101,8,82735,3,1672319005),(77102,8,82736,3,1672319005),(77103,8,82737,3,1672319005),(77104,8,82738,3,1672319005),(77105,8,82739,3,1672319005),(77106,8,82740,3,1672319005),(77107,8,82741,3,1672319005),(77108,8,82742,3,1672319005),(77109,8,82743,3,1672319005),(77110,8,82744,3,1672319005),(77111,8,82745,3,1672319005),(77112,8,82746,3,1672319005),(77113,8,82747,3,1672319005),(77114,8,82748,3,1672319005),(77115,8,82749,3,1672319005),(77116,8,82750,3,1672319005),(77117,8,82751,3,1672319005),(77118,8,82752,3,1672319005),(77119,8,82753,3,1672319005),(77120,8,82754,3,1672319005),(77121,8,82755,3,1672319005),(77122,8,82756,3,1672319005),(77123,8,82757,3,1672319005),(77124,8,82758,3,1672319005),(77125,8,82759,3,1672319005),(77126,8,82760,3,1672319005),(77127,8,82761,3,1672319005),(77128,8,82762,3,1672319005),(77129,8,82763,3,1672319005),(77130,8,82764,3,1672319005),(77131,8,82765,3,1672319005),(77132,8,82766,3,1672319005),(77133,8,82767,3,1672319005),(77134,8,82768,3,1672319005),(77135,8,82769,3,1672319005),(77136,8,82770,3,1672319005),(77137,8,82771,3,1672319005),(77138,8,82772,3,1672319005),(77139,8,82773,3,1672319005),(77140,8,82774,3,1672319005),(77141,8,82775,3,1672319005),(77142,8,82776,3,1672319005),(77143,8,82777,3,1672319005),(77144,8,82778,3,1672319005),(77145,8,82779,3,1672319005),(77146,8,82780,3,1672319005),(77147,8,82781,3,1672319005),(77148,8,82782,3,1672319005),(77149,8,82783,3,1672319005),(77150,8,82784,3,1672319005),(77151,8,82785,3,1672319005),(77152,8,82786,3,1672319005),(77153,8,82787,3,1672319005),(77154,8,82788,3,1672319005),(77155,8,82789,3,1672319005),(77156,8,82790,3,1672319005),(77157,8,82791,3,1672319005),(77158,8,82792,3,1672319005),(77159,8,82793,3,1672319005),(77160,8,82794,3,1672319005),(77161,8,82795,3,1672319005),(77162,8,82796,3,1672319005),(77163,8,82797,3,1672319005),(77164,8,82798,3,1672319005),(77165,8,82799,3,1672319005),(77166,8,82800,3,1672319005),(77167,8,82801,3,1672319005),(77168,8,82802,3,1672319005),(77169,8,82803,3,1672319005),(77170,8,82804,3,1672319005),(77171,8,82805,3,1672319005),(77172,8,82806,3,1672319005),(77173,8,82807,3,1672319005),(77174,8,82808,3,1672319005),(77175,8,82809,3,1672319005),(77176,8,82810,3,1672319005),(77177,8,82811,3,1672319005),(77178,8,82812,3,1672319005),(77179,8,82813,3,1672319005),(77180,8,82814,3,1672319005),(77181,8,82815,3,1672319005),(77182,8,82816,3,1672319005),(77183,8,82817,3,1672319005),(77184,8,82818,3,1672319005),(77185,8,82819,3,1672319005),(77186,8,82820,3,1672319005),(77187,8,82821,3,1672319005),(77188,8,82822,3,1672319005),(77189,8,82823,3,1672319005),(77190,8,82824,3,1672319005),(77191,8,82825,3,1672319005),(77192,8,82826,3,1672319005),(77193,8,82827,3,1672319005),(77194,8,82828,3,1672319005),(77195,8,82829,3,1672319005),(77196,8,82830,3,1672319005),(77197,8,82831,3,1672319005),(77198,8,82832,3,1672319005),(77199,8,82833,3,1672319005),(77200,8,82834,3,1672319005),(77201,8,82835,3,1672319005),(77202,8,82836,3,1672319005),(77203,8,82837,3,1672319005),(77204,8,82838,3,1672319005),(77205,8,82839,3,1672319005),(77206,8,82840,3,1672319005),(77207,8,82841,3,1672319005),(77208,8,82842,3,1672319005),(77209,8,82843,3,1672319005),(77210,8,82844,3,1672319005),(77211,8,82845,3,1672319005),(77212,8,82846,3,1672319005),(77213,8,82847,3,1672319005),(77214,8,82848,3,1672319005),(77215,8,82849,3,1672319005),(77216,8,82850,3,1672319005),(77217,8,82851,3,1672319005),(77218,8,82852,3,1672319005),(77219,8,82853,3,1672319005),(77220,8,82854,3,1672319005),(77221,8,82855,3,1672319005),(77222,8,82856,3,1672319005),(77223,8,82857,3,1672319005),(77224,8,82858,3,1672319005),(77225,8,82859,3,1672319005),(77226,8,82860,3,1672319005),(77227,8,82861,3,1672319005),(77228,8,82862,3,1672319005),(77229,8,82863,3,1672319005),(77230,8,82864,3,1672319005),(77231,8,82865,3,1672319005),(77232,8,82866,3,1672319005),(77233,8,82867,3,1672319005),(77234,8,82868,3,1672319005),(77235,8,82869,3,1672319005),(77236,8,82870,3,1672319005),(77237,8,82871,3,1672319005),(77238,8,82872,3,1672319005),(77239,8,82873,3,1672319005),(77240,8,82874,3,1672319005),(77241,8,82875,3,1672319005),(77242,8,82876,3,1672319005),(77243,8,82877,3,1672319005),(77244,8,82878,3,1672319005),(77245,8,82879,3,1672319005),(77246,8,82880,3,1672319005),(77247,8,82881,3,1672319005),(77248,8,82882,3,1672319005),(77249,8,82883,3,1672319005),(77250,8,82884,3,1672319005),(77251,8,82885,3,1672319005),(77252,8,82886,3,1672319005),(77253,8,82887,3,1672319005),(77254,8,82888,3,1672319005),(77255,8,82889,3,1672319005),(77256,8,82890,3,1672319005),(77257,8,82891,3,1672319005),(77258,8,82892,3,1672319005),(77259,8,82893,3,1672319005),(77260,8,82894,3,1672319005),(77261,8,82895,3,1672319005),(77262,8,82896,3,1672319005),(77263,8,82897,3,1672319005),(77264,8,82898,3,1672319005),(77265,8,82900,3,1672319005),(77266,8,82901,3,1672319005),(77267,8,82902,3,1672319005),(77268,8,82903,3,1672319005),(77269,8,82904,3,1672319005),(77270,8,82906,3,1672319005),(77271,8,82907,3,1672319005),(77272,8,82908,3,1672319005),(77273,8,82909,3,1672319005),(77274,8,82910,3,1672319005),(77275,8,82911,3,1672319005),(77276,8,82912,3,1672319005),(77277,8,82913,3,1672319005),(77278,8,82914,3,1672319005),(77279,8,82915,3,1672319005),(77280,8,82916,3,1672319005),(77281,8,82917,3,1672319005),(77282,8,82918,3,1672319005),(77283,8,82919,3,1672319005),(77284,8,82920,3,1672319005),(77285,8,82921,3,1672319005),(77286,8,82922,3,1672319005),(77287,8,82923,3,1672319005),(77288,8,82924,3,1672319005),(77289,8,82925,3,1672319005),(77290,8,82926,3,1672319005),(77291,8,82927,3,1672319005),(77292,8,82928,3,1672319005),(77293,8,82929,3,1672319005),(77294,8,82930,3,1672319005),(77295,8,82931,3,1672319005),(77296,8,82932,3,1672319005),(77297,8,82933,3,1672319005),(77298,8,82934,3,1672319005),(77299,8,82935,3,1672319005),(77300,8,82936,3,1672319005),(77301,8,82937,3,1672319005),(77302,8,82938,3,1672319005),(77303,8,82939,3,1672319005),(77304,8,82940,3,1672319005),(77305,8,82941,3,1672319005),(77306,8,82942,3,1672319005),(77307,8,82943,3,1672319005),(77308,8,82944,3,1672319005),(77309,8,82945,3,1672319005),(77310,8,82946,3,1672319005),(77311,8,82947,3,1672319005),(77312,8,82948,3,1672319005),(77313,8,82949,3,1672319005),(77314,8,82950,3,1672319005),(77315,8,82951,3,1672319005),(77316,8,82952,3,1672319005),(77317,8,82953,3,1672319005),(77318,8,82954,3,1672319005),(77319,8,82955,3,1672319005),(77320,8,82956,3,1672319005),(77321,8,82957,3,1672319005),(77322,8,82958,3,1672319005),(77323,8,82959,3,1672319005),(77324,8,82960,3,1672319005),(77325,8,82961,3,1672319005),(77326,8,82962,3,1672319005),(77327,8,82963,3,1672319005),(77328,8,82964,3,1672319005),(77329,8,82965,3,1672319005),(77330,8,82966,3,1672319005),(77331,8,82967,3,1672319005),(77332,8,82968,3,1672319005),(77333,8,82969,3,1672319005),(77334,8,82970,3,1672319005),(77335,8,82971,3,1672319005),(77336,8,82972,3,1672319005),(77337,8,82973,3,1672319005),(77338,8,82974,3,1672319005),(77339,8,82975,3,1672319005),(77340,8,82976,3,1672319005),(77341,8,82977,3,1672319005),(77342,8,82978,3,1672319005),(77343,8,82979,3,1672319005),(77344,8,82980,3,1672319005),(77345,8,82981,3,1672319005),(77346,8,82982,3,1672319005),(77347,8,82983,3,1672319005),(77348,8,82984,3,1672319005),(77349,8,82985,3,1672319005),(77350,8,82986,3,1672319005),(77351,8,82987,3,1672319005),(77352,8,82988,3,1672319005),(77353,8,82989,3,1672319005),(77354,8,82990,3,1672319005),(77355,8,82991,3,1672319005),(77356,8,82992,3,1672319005),(77357,8,82993,3,1672319005),(77358,8,82994,3,1672319005),(77359,8,82995,3,1672319005),(77360,8,82996,3,1672319005),(77361,8,82997,3,1672319005),(77362,8,82998,3,1672319005),(77363,8,82999,3,1672319005),(77364,8,83000,3,1672319005),(77365,8,83001,3,1672319005),(77366,8,83002,3,1672319005),(77367,8,83003,3,1672319005),(77368,8,83004,3,1672319005),(77369,8,83005,3,1672319005),(77370,8,83006,3,1672319005),(77371,8,83007,3,1672319005),(77372,8,83008,3,1672319005),(77373,8,83009,3,1672319005),(77374,8,83010,3,1672319005),(77375,8,83011,3,1672319005),(77376,8,83012,3,1672319005),(77377,8,83013,3,1672319005),(77378,8,83014,3,1672319005),(77379,8,83015,3,1672319005),(77380,8,83016,3,1672319005),(77381,8,83017,3,1672319005),(77382,8,83018,3,1672319005),(77383,8,83019,3,1672319005),(77384,8,83020,3,1672319005),(77385,8,83021,3,1672319005),(77386,8,83022,3,1672319005),(77387,8,83023,3,1672319005),(77388,8,83024,3,1672319005),(77389,8,83025,3,1672319005),(77390,8,83026,3,1672319005),(77391,8,83027,3,1672319005),(77392,8,83028,3,1672319005),(77393,8,83029,3,1672319005),(77394,8,83030,3,1672319005),(77395,8,83031,3,1672319005),(77396,8,83032,3,1672319005),(77397,8,83033,3,1672319005),(77398,8,83034,3,1672319005),(77399,8,83035,3,1672319005),(77400,8,83036,3,1672319005),(77401,8,83037,3,1672319005),(77402,8,83038,3,1672319005),(77403,8,83039,3,1672319005),(77404,8,83040,3,1672319005),(77405,8,83041,3,1672319005),(77406,8,83042,3,1672319005),(77407,8,83043,3,1672319005),(77408,8,83044,3,1672319005),(77409,8,83045,3,1672319005),(77410,8,83046,3,1672319005),(77411,8,83047,3,1672319005),(77412,8,83048,3,1672319005),(77413,8,83049,3,1672319005),(77414,8,83050,3,1672319005),(77415,8,83051,3,1672319005),(77416,8,83052,3,1672319005),(77417,8,83053,3,1672319005),(77418,8,83054,3,1672319005),(77419,8,83055,3,1672319005),(77420,8,83056,3,1672319005),(77421,8,83057,3,1672319005),(77422,8,83058,3,1672319005),(77423,8,83059,3,1672319005),(77424,8,83060,3,1672319005),(77425,8,83061,3,1672319005),(77426,8,83062,3,1672319005),(77427,8,83063,3,1672319005),(77428,8,83064,3,1672319005),(77429,8,83065,3,1672319005),(77430,8,83066,3,1672319005),(77431,8,83067,3,1672319005),(77432,8,83068,3,1672319005),(77433,8,83069,3,1672319005),(77434,8,83070,3,1672319005),(77435,8,83071,3,1672319005),(77436,8,83072,3,1672319005),(77437,8,83073,3,1672319005),(77438,8,83074,3,1672319005),(77439,8,83075,3,1672319005),(77440,8,83076,3,1672319005),(77441,8,83077,3,1672319005),(77442,8,83078,3,1672319005),(77443,8,83079,3,1672319005),(77444,8,83080,3,1672319005),(77445,8,83081,3,1672319005),(77446,8,83082,3,1672319005),(77447,8,83083,3,1672319005),(77448,8,83084,3,1672319005),(77449,8,83085,3,1672319005),(77450,8,83086,3,1672319005),(77451,8,83087,3,1672319005),(77452,8,83088,3,1672319005),(77453,8,83089,3,1672319005),(77454,8,83090,3,1672319005),(77455,8,83091,3,1672319005),(77456,8,83092,3,1672319005),(77457,8,83093,3,1672319005),(77458,8,83094,3,1672319005),(77459,8,83095,3,1672319005),(77460,8,83096,3,1672319005),(77461,8,83097,3,1672319005),(77462,8,83098,3,1672319005),(77463,8,83099,3,1672319005),(77464,8,83100,3,1672319005),(77465,8,83101,3,1672319005),(77466,8,83102,3,1672319005),(77467,8,83103,3,1672319005),(77468,8,83104,3,1672319005),(77469,8,83105,3,1672319005),(77470,8,83106,3,1672319005),(77471,8,83107,3,1672319005),(77472,8,83108,3,1672319005),(77473,8,83109,3,1672319005),(77474,8,83110,3,1672319005),(77475,8,83111,3,1672319005),(77476,8,83112,3,1672319005),(77477,8,83113,3,1672319005),(77478,8,83114,3,1672319005),(77479,8,83115,3,1672319005),(77480,8,83116,3,1672319005),(77481,8,83117,3,1672319005),(77482,8,83118,3,1672319005),(77483,8,83119,3,1672319005),(77484,8,83120,3,1672319005),(77485,8,83121,3,1672319005),(77486,8,83122,3,1672319005),(77487,8,83123,3,1672319005),(77488,8,83124,3,1672319005),(77489,8,83125,3,1672319005),(77490,8,83126,3,1672319005),(77491,8,83127,3,1672319005),(77492,8,83128,3,1672319005),(77493,8,83129,3,1672319005),(77494,8,83130,3,1672319005),(77495,8,83131,3,1672319005),(77496,8,83132,3,1672319005),(77497,8,83133,3,1672319005),(77498,8,83134,3,1672319005),(77499,8,83135,3,1672319005),(77500,8,83136,3,1672319005),(77501,8,83137,3,1672319005),(77502,8,83138,3,1672319005),(77503,8,83139,3,1672319005),(77504,8,83140,3,1672319005),(77505,8,83141,3,1672319005),(77506,8,83142,3,1672319005),(77507,8,83143,3,1672319005),(77508,8,83144,3,1672319005),(77509,8,83145,3,1672319005),(77510,8,83146,3,1672319005),(77511,8,83147,3,1672319005),(77512,8,83148,3,1672319005),(77513,8,83149,3,1672319005),(77514,8,83150,3,1672319005),(77515,8,83151,3,1672319005),(77516,8,83152,3,1672319005),(77517,8,83153,3,1672319005),(77518,8,83154,3,1672319005),(77519,8,83155,3,1672319005),(77520,8,83156,3,1672319005),(77521,8,83157,3,1672319005),(77522,8,83158,3,1672319005),(77523,8,83159,3,1672319005),(77524,8,83160,3,1672319005),(77525,8,83161,3,1672319005),(77526,8,83162,3,1672319005),(77527,8,83163,3,1672319005),(77528,8,83164,3,1672319005),(77529,8,83165,3,1672319005),(77530,8,83166,3,1672319005),(77531,8,83167,3,1672319005),(77532,8,83168,3,1672319005),(77533,8,83169,3,1672319005),(77534,8,83170,3,1672319005),(77535,8,83171,3,1672319005),(77536,8,83172,3,1672319005),(77537,8,83173,3,1672319005),(77538,8,83174,3,1672319005),(77539,8,83175,3,1672319005),(77540,8,83176,3,1672319005),(77541,8,83177,3,1672319005),(77542,8,83178,3,1672319005),(77543,8,83179,3,1672319005),(77544,8,83180,3,1672319005),(77545,8,83181,3,1672319005),(77546,8,83182,3,1672319005),(77547,8,83183,3,1672319005),(77548,8,83184,3,1672319005),(77549,8,83185,3,1672319005),(77550,8,83186,3,1672319005),(77551,8,83187,3,1672319005),(77552,8,83188,3,1672319005),(77553,8,83189,3,1672319005),(77554,8,83190,3,1672319005),(77555,8,83191,3,1672319005),(77556,8,83192,3,1672319005),(77557,8,83193,3,1672319005),(77558,8,83194,3,1672319005),(77559,8,83195,3,1672319005),(77560,8,83196,3,1672319005),(77561,8,83197,3,1672319005),(77562,8,83198,3,1672319005),(77563,8,83199,3,1672319005),(77564,8,83200,3,1672319005),(77565,8,83201,3,1672319005),(77566,8,83202,3,1672319005),(77567,8,83203,3,1672319005),(77568,8,83204,3,1672319005),(77569,8,83205,3,1672319005),(77570,8,83206,3,1672319005),(77571,8,83207,3,1672319005),(77572,8,83208,3,1672319005),(77573,8,83209,3,1672319005),(77574,8,83210,3,1672319005),(77575,8,83211,3,1672319005),(77576,8,83212,3,1672319005),(77577,8,83213,3,1672319005),(77578,8,83214,3,1672319005),(77579,8,83215,3,1672319005),(77580,8,83216,3,1672319005),(77581,8,83217,3,1672319005),(77582,8,83218,3,1672319005),(77583,8,83219,3,1672319005),(77584,8,83220,3,1672319005),(77585,8,83221,3,1672319005),(77586,8,83222,3,1672319005),(77587,8,83223,3,1672319005),(77588,8,83224,3,1672319005),(77589,8,83225,3,1672319005),(77590,8,83226,3,1672319005),(77591,8,83227,3,1672319005),(77592,8,83228,3,1672319005),(77593,8,83229,3,1672319005),(77594,8,83230,3,1672319005),(77595,8,83231,3,1672319005),(77596,8,83232,3,1672319005),(77597,8,83233,3,1672319005),(77598,8,83234,3,1672319005),(77599,8,83235,3,1672319005),(77600,8,83236,3,1672319005),(77601,8,83237,3,1672319005),(77602,8,83238,3,1672319005),(77603,8,83239,3,1672319005),(77604,8,83240,3,1672319005),(77605,8,83241,3,1672319005),(77606,8,83242,3,1672319005),(77607,8,83243,3,1672319005),(77608,8,83244,3,1672319005),(77609,8,83245,3,1672319005),(77610,8,83246,3,1672319005),(77611,8,83247,3,1672319005),(77612,8,83248,3,1672319005),(77613,8,83249,3,1672319005),(77614,8,83250,3,1672319005),(77615,8,83251,3,1672319005),(77616,8,83252,3,1672319005),(77617,8,83253,3,1672319005),(77618,8,83254,3,1672319005),(77619,8,83255,3,1672319005),(77620,8,83256,3,1672319005),(77621,8,83257,3,1672319005),(77622,8,83258,3,1672319005),(77623,8,83259,3,1672319005),(77624,8,83260,3,1672319005),(77625,8,83261,3,1672319005),(77626,8,83262,3,1672319005),(77627,8,83263,3,1672319005),(77628,8,83264,3,1672319005),(77629,8,83265,3,1672319005),(77630,8,83266,3,1672319005),(77631,8,83267,3,1672319005),(77632,8,83268,3,1672319005),(77633,8,83269,3,1672319005),(77634,8,83270,3,1672319005),(77635,8,83271,3,1672319005),(77636,8,83272,3,1672319005),(77637,8,83273,3,1672319005),(77638,8,83274,3,1672319005),(77639,8,83275,3,1672319005),(77640,8,83276,3,1672319005),(77641,8,83277,3,1672319005),(77642,8,83278,3,1672319005),(77643,8,83279,3,1672319005),(77644,8,83280,3,1672319005),(77645,8,83281,3,1672319005),(77646,8,83282,3,1672319005),(77647,8,83283,3,1672319005),(77648,8,83284,3,1672319005),(77649,8,83285,3,1672319005),(77650,8,83286,3,1672319005),(77651,8,83287,3,1672319005),(77652,8,83288,3,1672319005),(77653,8,83289,3,1672319005),(77654,8,83290,3,1672319005),(77655,8,83291,3,1672319005),(77656,8,83292,3,1672319005),(77657,8,83293,3,1672319005),(77658,8,83294,3,1672319005),(77659,8,83295,3,1672319005),(77660,8,83296,3,1672319005),(77661,8,83297,3,1672319005),(77662,8,83298,3,1672319005),(77663,8,83299,3,1672319005),(77664,8,83300,3,1672319005),(77665,8,83301,3,1672319005),(77666,8,83302,3,1672319005),(77667,8,83303,3,1672319005),(77668,8,83304,3,1672319005),(77669,8,83305,3,1672319005),(77670,8,83306,3,1672319005),(77671,8,83307,3,1672319005),(77672,8,83308,3,1672319005),(77673,8,83309,3,1672319005),(77674,8,83310,3,1672319005),(77675,8,83311,3,1672319005),(77676,8,83312,3,1672319005),(77677,8,83313,3,1672319005),(77678,8,83314,3,1672319005),(77679,8,83315,3,1672319005),(77680,8,83316,3,1672319005),(77681,8,83317,3,1672319005),(77682,8,83318,3,1672319005),(77683,8,83319,3,1672319005),(77684,8,83320,3,1672319005),(77685,8,83321,3,1672319005),(77686,8,83322,3,1672319005),(77687,8,83323,3,1672319005),(77688,8,83324,3,1672319005),(77689,8,83325,3,1672319005),(77690,8,83326,3,1672319005),(77691,8,83327,3,1672319005),(77692,8,83328,3,1672319005),(77693,8,83329,3,1672319005),(77694,8,83330,3,1672319005),(77695,8,83331,3,1672319005),(77696,8,83332,3,1672319005),(77697,8,83333,3,1672319005),(77698,8,83334,3,1672319005),(77699,8,83335,3,1672319005),(77700,8,83336,3,1672319005),(77701,8,83337,3,1672319005),(77702,8,83338,3,1672319005),(77703,8,83339,3,1672319005),(77704,8,83340,3,1672319005),(77705,8,83341,3,1672319005),(77706,8,83342,3,1672319005),(77707,8,83343,3,1672319005),(77708,8,83344,3,1672319005),(77709,8,83345,3,1672319005),(77710,8,83346,3,1672319005),(77711,8,83347,3,1672319005),(77712,8,83348,3,1672319005),(77713,8,83349,3,1672319005),(77714,8,83350,3,1672319005),(77715,8,83351,3,1672319005),(77716,8,83352,3,1672319005),(77717,8,83353,3,1672319005),(77718,8,83354,3,1672319005),(77719,8,83355,3,1672319005),(77720,8,83356,3,1672319005),(77721,8,83357,3,1672319005),(77722,8,83358,3,1672319005),(77723,8,83359,3,1672319005),(77724,8,83360,3,1672319005),(77725,8,83361,3,1672319005),(77726,8,83362,3,1672319005),(77727,8,83363,3,1672319005),(77728,8,83364,3,1672319005),(77729,8,83365,3,1672319005),(77730,8,83366,3,1672319005),(77731,8,83367,3,1672319005),(77732,8,83368,3,1672319005),(77733,8,83369,3,1672319005),(77734,8,83370,3,1672319005),(77735,8,83371,3,1672319005),(77736,8,83372,3,1672319005),(77737,8,83373,3,1672319005),(77738,8,83374,3,1672319005),(77739,8,83375,3,1672319005),(77740,8,83376,3,1672319005),(77741,8,83377,3,1672319005),(77742,8,83378,3,1672319005),(77743,8,83379,3,1672319005),(77744,8,83380,3,1672319005),(77745,8,83381,3,1672319005),(77746,8,83382,3,1672319005),(77747,8,83383,3,1672319005),(77748,8,83384,3,1672319005),(77749,8,83385,3,1672319005),(77750,8,83386,3,1672319005),(77751,8,83387,3,1672319005),(77752,8,83388,3,1672319005),(77753,8,83389,3,1672319005),(77754,8,83390,3,1672319005),(77755,8,83391,3,1672319005),(77756,8,83392,3,1672319005),(77757,8,83393,3,1672319005),(77758,8,83394,3,1672319005),(77759,8,83395,3,1672319005),(77760,8,83396,3,1672319005),(77761,8,83397,3,1672319005),(77762,8,83398,3,1672319005),(77763,8,83399,3,1672319005),(77764,8,83400,3,1672319005),(77765,8,83401,3,1672319005),(77766,8,83402,3,1672319005),(77767,8,83403,3,1672319005),(77768,8,83404,3,1672319005),(77769,8,83405,3,1672319005),(77770,8,83406,3,1672319005),(77771,8,83407,3,1672319005),(77772,8,83408,3,1672319005),(77773,8,83409,3,1672319005),(77774,8,83410,3,1672319005),(77775,8,83411,3,1672319005),(77776,8,83412,3,1672319005),(77777,8,83413,3,1672319005),(77778,8,83414,3,1672319005),(77779,8,83415,3,1672319005),(77780,8,83416,3,1672319005),(77781,8,83417,3,1672319005),(77782,8,83418,3,1672319005),(77783,8,83419,3,1672319005),(77784,8,83420,3,1672319005),(77785,8,83421,3,1672319005),(77786,8,83422,3,1672319005),(77787,8,83423,3,1672319005),(77788,8,83424,3,1672319005),(77789,8,83425,3,1672319005),(77790,8,83426,3,1672319005),(77791,8,83427,3,1672319005),(77792,8,83428,3,1672319005),(77793,8,83429,3,1672319005),(77794,8,83430,3,1672319005),(77795,8,83431,3,1672319005),(77796,8,83432,3,1672319005),(77797,8,83433,3,1672319005),(77798,8,83434,3,1672319005),(77799,8,83435,3,1672319005),(77800,8,83436,3,1672319005),(77801,8,83437,3,1672319005),(77802,8,83438,3,1672319005),(77803,8,83439,3,1672319005),(77804,8,83440,3,1672319005),(77805,8,83441,3,1672319005),(77806,8,83442,3,1672319005),(77807,8,83443,3,1672319005),(77808,8,83444,3,1672319005),(77809,8,83445,3,1672319005),(77810,8,83446,3,1672319005),(77811,8,83447,3,1672319005),(77812,8,83448,3,1672319005),(77813,8,83449,3,1672319005),(77814,8,83450,3,1672319005),(77815,8,83451,3,1672319005),(77816,8,83452,3,1672319005),(77817,8,83453,3,1672319005),(77818,8,83454,3,1672319005),(77819,8,83455,3,1672319005),(77820,8,83456,3,1672319005),(77821,8,83457,3,1672319005),(77822,8,83458,3,1672319005),(77823,8,83459,3,1672319005),(77824,8,83460,3,1672319005),(77825,8,83461,3,1672319005),(77826,8,83462,3,1672319005),(77827,8,83463,3,1672319005),(77828,8,83464,3,1672319005),(77829,8,83465,3,1672319005),(77830,8,83466,3,1672319005),(77831,8,83467,3,1672319005),(77832,8,83468,3,1672319005),(77833,8,83469,3,1672319005),(77834,8,83470,3,1672319005),(77835,8,83471,3,1672319005),(77836,8,83472,3,1672319005),(77837,8,83473,3,1672319005),(77838,8,83474,3,1672319005),(77839,8,83475,3,1672319005),(77840,8,83476,3,1672319005),(77841,8,83477,3,1672319005),(77842,8,83478,3,1672319005),(77843,8,83479,3,1672319005),(77844,8,83480,3,1672319005),(77845,8,83481,3,1672319005),(77846,8,83482,3,1672319005),(77847,8,83483,3,1672319005),(77848,8,83484,3,1672319005),(77849,8,83485,3,1672319005),(77850,8,83486,3,1672319005),(77851,8,83487,3,1672319005),(77852,8,83488,3,1672319005),(77853,8,83489,3,1672319005),(77854,8,83490,3,1672319005),(77855,8,83491,3,1672319005),(77856,8,83492,3,1672319005),(77857,8,83493,3,1672319005),(77858,8,83494,3,1672319005),(77859,8,83495,3,1672319005),(77860,8,83496,3,1672319005),(77861,8,83497,3,1672319005),(77862,8,83498,3,1672319005),(77863,8,83499,3,1672319005),(77864,8,83500,3,1672319005),(77865,8,83501,3,1672319005),(77866,8,83502,3,1672319005),(77867,8,83503,3,1672319005),(77868,8,83504,3,1672319005),(77869,8,83505,3,1672319005),(77870,8,83506,3,1672319005),(77871,8,83507,3,1672319005),(77872,8,83508,3,1672319005),(77873,8,83509,3,1672319005),(77874,8,83510,3,1672319005),(77875,8,83511,3,1672319005),(77876,8,83512,3,1672319005),(77877,8,83513,3,1672319005),(77878,8,83514,3,1672319005),(77879,8,83515,3,1672319005),(77880,8,83516,3,1672319005),(77881,8,83517,3,1672319005),(77882,8,83518,3,1672319005),(77883,8,83519,3,1672319005),(77884,8,83520,3,1672319005),(77885,8,83521,3,1672319005),(77886,8,83522,3,1672319005),(77887,8,83523,3,1672319005),(77888,8,83524,3,1672319005),(77889,8,83525,3,1672319005),(77890,8,83526,3,1672319005),(77891,8,83527,3,1672319005),(77892,8,83528,3,1672319005),(77893,8,83529,3,1672319005),(77894,8,83530,3,1672319005),(77895,8,83531,3,1672319005),(77896,8,83532,3,1672319005),(77897,8,83533,3,1672319005),(77898,8,83534,3,1672319005),(77899,8,83535,3,1672319005),(77900,8,83536,3,1672319005),(77901,8,83537,3,1672319005),(77902,8,83538,3,1672319005),(77903,8,83539,3,1672319005),(77904,8,83540,3,1672319005),(77905,8,83541,3,1672319005),(77906,8,83542,3,1672319005),(77907,8,83543,3,1672319005),(77908,8,83544,3,1672319005),(77909,8,83545,3,1672319005),(77910,8,83546,3,1672319005),(77911,8,83547,3,1672319005),(77912,8,83548,3,1672319005),(77913,8,83549,3,1672319005),(77914,8,83550,3,1672319005),(77915,8,83551,3,1672319005),(77916,8,83552,3,1672319005),(77917,8,83553,3,1672319005),(77918,8,83554,3,1672319005),(77919,8,83555,3,1672319005),(77920,8,83556,3,1672319005),(77921,8,83557,3,1672319005),(77922,8,83558,3,1672319005),(77923,8,83559,3,1672319005),(77924,8,83560,3,1672319005),(77925,8,83561,3,1672319005),(77926,8,83562,3,1672319005),(77927,8,83563,3,1672319005),(77928,8,83564,3,1672319005),(77929,8,83565,3,1672319005),(77930,8,83566,3,1672319005),(77931,8,83567,3,1672319005),(77932,8,83568,3,1672319005),(77933,8,83569,3,1672319005),(77934,8,83623,3,1672319005),(77935,8,83624,3,1672319005),(77936,8,83625,3,1672319005),(77937,8,83626,3,1672319005),(77938,8,83627,3,1672319005),(77939,8,83628,3,1672319005),(77940,8,83629,3,1672319005),(77941,8,83630,3,1672319005),(77942,8,83631,3,1672319005),(77943,8,83632,3,1672319005),(77944,8,83633,3,1672319005),(77945,8,83634,3,1672319005),(77946,8,83635,3,1672319005),(77947,8,83636,3,1672319005),(77948,8,83637,3,1672319005),(77949,8,83638,3,1672319005),(77950,8,83639,3,1672319005),(77951,8,83640,3,1672319005),(77952,8,83641,3,1672319005),(77953,8,83642,3,1672319005),(77954,8,83643,3,1672319005),(77955,8,83644,3,1672319005),(77956,8,83645,3,1672319005),(77957,8,83646,3,1672319005),(77958,8,83647,3,1672319005),(77959,8,83648,3,1672319005),(77960,8,83649,3,1672319005),(77961,8,83650,3,1672319005),(77962,8,83651,3,1672319005),(77963,8,83652,3,1672319005),(77964,8,83653,3,1672319005),(77965,8,83654,3,1672319005),(77966,8,83655,3,1672319005),(77967,8,83656,3,1672319005),(77968,8,83657,3,1672319005),(77969,8,83658,3,1672319005),(77970,8,83659,3,1672319005),(77971,8,83660,3,1672319005),(77972,8,83661,3,1672319005),(77973,8,83662,3,1672319005),(77974,8,83663,3,1672319005),(77975,8,83664,3,1672319005),(77976,8,83665,3,1672319005),(77977,8,83666,3,1672319005),(77978,8,83667,3,1672319005),(77979,8,83668,3,1672319005),(77980,8,83669,3,1672319005),(77981,8,83670,3,1672319005),(77982,8,83671,3,1672319005),(77983,8,83672,3,1672319005),(77984,8,83673,3,1672319005),(77985,8,83674,3,1672319005),(77986,8,83675,3,1672319005),(77987,8,83676,3,1672319005),(77988,8,83677,3,1672319005),(77989,8,83678,3,1672319005),(77990,8,83679,3,1672319005),(77991,8,83680,3,1672319005),(77992,8,83681,3,1672319005),(77993,8,83682,3,1672319005),(77994,8,83683,3,1672319005),(77995,8,83684,3,1672319005),(77996,8,83685,3,1672319005),(77997,8,83686,3,1672319005),(77998,8,83687,3,1672319005),(77999,8,83688,3,1672319005),(78000,8,83689,3,1672319005),(78001,8,83690,3,1672319005),(78002,8,83691,3,1672319005),(78003,8,83692,3,1672319005),(78004,8,83693,3,1672319005),(78005,8,83694,3,1672319005),(78006,8,83695,3,1672319005),(78007,8,83696,3,1672319005),(78008,8,83697,3,1672319005),(78009,8,83698,3,1672319005),(78010,8,83699,3,1672319005),(78011,8,83700,3,1672319005),(78012,8,83701,3,1672319005),(78013,8,83702,3,1672319005),(78014,8,83703,3,1672319005),(78015,8,83704,3,1672319005),(78016,8,83705,3,1672319005),(78017,8,83706,3,1672319005),(78018,8,83707,3,1672319005),(78019,8,83708,3,1672319005),(78020,8,83709,3,1672319005),(78021,8,83710,3,1672319005),(78022,8,83711,3,1672319005),(78023,8,83712,3,1672319005),(78024,8,83713,3,1672319005),(78025,8,83714,3,1672319005),(78026,8,83715,3,1672319005),(78027,8,83716,3,1672319005),(78028,8,83717,3,1672319005),(78029,8,83718,3,1672319005),(78030,8,83719,3,1672319005),(78031,8,83720,3,1672319005),(78032,8,83721,3,1672319005),(78033,8,83722,3,1672319005),(78034,8,83723,3,1672319005),(78035,8,83724,3,1672319005),(78036,8,83725,3,1672319005),(78037,8,83726,3,1672319005),(78038,8,83727,3,1672319005),(78039,8,83728,3,1672319005),(78040,8,83729,3,1672319005),(78041,8,83730,3,1672319005),(78042,8,83731,3,1672319005),(78043,8,83732,3,1672319005),(78044,8,83733,3,1672319005),(78045,8,83734,3,1672319005),(78046,8,83735,3,1672319005),(78047,8,83736,3,1672319005),(78048,8,83737,3,1672319005),(78049,8,83738,3,1672319005),(78050,8,83739,3,1672319005),(78051,8,83740,3,1672319005),(78052,8,83741,3,1672319005),(78053,8,83742,3,1672319005),(78054,8,83743,3,1672319005),(78055,8,83744,3,1672319005),(78056,8,83745,3,1672319005),(78057,8,83746,3,1672319005),(78058,8,83747,3,1672319005),(78059,8,83748,3,1672319005),(78060,8,83749,3,1672319005),(78061,8,83750,3,1672319005),(78062,8,83751,3,1672319005),(78063,8,83752,3,1672319005),(78064,8,83753,3,1672319005),(78065,8,83754,3,1672319005),(78066,8,83755,3,1672319005),(78067,8,83756,3,1672319005),(78068,8,83757,3,1672319005),(78069,8,83758,3,1672319005),(78070,8,83759,3,1672319005),(78071,8,83760,3,1672319005),(78072,8,83761,3,1672319005),(78073,8,83762,3,1672319005),(78074,8,83763,3,1672319005),(78075,8,83764,3,1672319005),(78076,8,83765,3,1672319005),(78077,8,83766,3,1672319005),(78078,8,83767,3,1672319005),(78079,8,83768,3,1672319005),(78080,8,83769,3,1672319005),(78081,8,83770,3,1672319005),(78082,8,83771,3,1672319005),(78083,8,83772,3,1672319005),(78084,8,83773,3,1672319005),(78085,8,83774,3,1672319005),(78086,8,83775,3,1672319005),(78087,8,83776,3,1672319005),(78088,8,83777,3,1672319005),(78089,8,83778,3,1672319005),(78090,8,83779,3,1672319005),(78091,8,83780,3,1672319005),(78092,8,83781,3,1672319005),(78093,8,83782,3,1672319005),(78094,8,83783,3,1672319005),(78095,8,83784,3,1672319005),(78096,8,83785,3,1672319005),(78097,8,83786,3,1672319005),(78098,8,83787,3,1672319005),(78099,8,83788,3,1672319005),(78100,8,83789,3,1672319005),(78101,8,83790,3,1672319005),(78102,8,83791,3,1672319005),(78103,8,83792,3,1672319005),(78104,8,83793,3,1672319005),(78105,8,83794,3,1672319005),(78106,8,83795,3,1672319005),(78107,8,83796,3,1672319005),(78108,8,83797,3,1672319005),(78109,8,83798,3,1672319005),(78110,8,83799,3,1672319005),(78111,8,83800,3,1672319005),(78112,8,83801,3,1672319005),(78113,8,83802,3,1672319005),(78114,8,83803,3,1672319005),(78115,8,83804,3,1672319005),(78116,8,83805,3,1672319005),(78117,8,83806,3,1672319005),(78118,8,83807,3,1672319005),(78119,8,83808,3,1672319005),(78120,8,83809,3,1672319005),(78121,8,83810,3,1672319005),(78122,8,83811,3,1672319005),(78123,8,83812,3,1672319005),(78124,8,83813,3,1672319005),(78125,8,83814,3,1672319005),(78126,8,83815,3,1672319005),(78127,8,83816,3,1672319005),(78128,8,83817,3,1672319005),(78129,8,83818,3,1672319005),(78130,8,83819,3,1672319005),(78131,8,83820,3,1672319005),(78132,8,83821,3,1672319005),(78133,8,83822,3,1672319005),(78134,8,83823,3,1672319005),(78135,8,83824,3,1672319005),(78136,8,83825,3,1672319005),(78137,8,83826,3,1672319005),(78138,8,83827,3,1672319005),(78139,8,83828,3,1672319005),(78140,8,83829,3,1672319005),(78141,8,83830,3,1672319005),(78142,8,83831,3,1672319005),(78143,8,83832,3,1672319005),(78144,8,83833,3,1672319005),(78145,8,83834,3,1672319005),(78146,8,83835,3,1672319005),(78147,8,83836,3,1672319005),(78148,8,83837,3,1672319005),(78149,8,83838,3,1672319005),(78150,8,83839,3,1672319005),(78151,8,83840,3,1672319005),(78152,8,83841,3,1672319005),(78153,8,83842,3,1672319005),(78154,8,83843,3,1672319005),(78155,8,83844,3,1672319005),(78156,8,83845,3,1672319005),(78157,8,83846,3,1672319005),(78158,8,83847,3,1672319005),(78159,8,83848,3,1672319005),(78160,8,83849,3,1672319005),(78161,8,83850,3,1672319005),(78162,8,83851,3,1672319005),(78163,8,83852,3,1672319005),(78164,8,83853,3,1672319005),(78165,8,83854,3,1672319005),(78166,8,83855,3,1672319005),(78167,8,83856,3,1672319005),(78168,8,83857,3,1672319005),(78169,8,83858,3,1672319005),(78170,8,83859,3,1672319005),(78171,8,83860,3,1672319005),(78172,8,83861,3,1672319005),(78173,8,83862,3,1672319005),(78174,8,83863,3,1672319005),(78175,8,83864,3,1672319005),(78176,8,83865,3,1672319005),(78177,8,83866,3,1672319005),(78178,8,83867,3,1672319005),(78179,8,83868,3,1672319005),(78180,8,83869,3,1672319005),(78181,8,83870,3,1672319005),(78182,8,83871,3,1672319005),(78183,8,83872,3,1672319005),(78184,8,83873,3,1672319005),(78185,8,83874,3,1672319005),(78186,8,83875,3,1672319005),(78187,8,83876,3,1672319005),(78188,8,83877,3,1672319005),(78189,8,83878,3,1672319005),(78190,8,83879,3,1672319005),(78191,8,83880,3,1672319005),(78192,8,83881,3,1672319005),(78193,8,83882,3,1672319005),(78194,8,83883,3,1672319005),(78195,8,83884,3,1672319005),(78196,8,83885,3,1672319005),(78197,8,83886,3,1672319005),(78198,8,83887,3,1672319005),(78199,8,83888,3,1672319005),(78200,8,83889,3,1672319005),(78201,8,83890,3,1672319005),(78202,8,83891,3,1672319005),(78203,8,83892,3,1672319005),(78204,8,83893,3,1672319005),(78205,8,83894,3,1672319005),(78206,8,83895,3,1672319005),(78207,8,83896,3,1672319005),(78208,8,83897,3,1672319005),(78209,8,83898,3,1672319005),(78210,8,83899,3,1672319005),(78211,8,83900,3,1672319005),(78212,8,83901,3,1672319005),(78213,8,83902,3,1672319005),(78214,8,83903,3,1672319005),(78215,8,83904,3,1672319005),(78216,8,83905,3,1672319005),(78217,8,83906,3,1672319005),(78218,8,83907,3,1672319005),(78219,8,83908,3,1672319005),(78220,8,83909,3,1672319005),(78221,8,83910,3,1672319005),(78222,8,83911,3,1672319005),(78223,8,83912,3,1672319005),(78224,8,83913,3,1672319005),(78225,8,83914,3,1672319005),(78226,8,83915,3,1672319005),(78227,8,83916,3,1672319005),(78228,8,83917,3,1672319005),(78229,8,83918,3,1672319005),(78230,8,83919,3,1672319005),(78231,8,83920,3,1672319005),(78232,8,83921,3,1672319005),(78233,8,83922,3,1672319005),(78234,8,83923,3,1672319005),(78235,8,83924,3,1672319005),(78236,8,83925,3,1672319005),(78237,8,83926,3,1672319005),(78238,8,83927,3,1672319005),(78239,8,83928,3,1672319005),(78240,8,83929,3,1672319005),(78241,8,83930,3,1672319005),(78242,8,83931,3,1672319005),(78243,8,83932,3,1672319005),(78244,8,83933,3,1672319005),(78245,8,83934,3,1672319005),(78246,8,83935,3,1672319005),(78247,8,83936,3,1672319005),(78248,8,83937,3,1672319005),(78249,8,83938,3,1672319005),(78250,8,83939,3,1672319005),(78251,8,83940,3,1672319005),(78252,8,83941,3,1672319005),(78253,8,83942,3,1672319005),(78254,8,83943,3,1672319005),(78255,8,83944,3,1672319005),(78256,8,83945,3,1672319005),(78257,8,83946,3,1672319005),(78258,8,83947,3,1672319005),(78259,8,83948,3,1672319005),(78260,8,83949,3,1672319005),(78261,8,83950,3,1672319005),(78262,8,83951,3,1672319005),(78263,8,83952,3,1672319005),(78264,8,83953,3,1672319005),(78265,8,83954,3,1672319005),(78266,8,83955,3,1672319005),(78267,8,83956,3,1672319005),(78268,8,83957,3,1672319005),(78269,8,83958,3,1672319005),(78270,8,83959,3,1672319005),(78271,8,83960,3,1672319005),(78272,8,83961,3,1672319005),(78273,8,83962,3,1672319005),(78274,8,83963,3,1672319005),(78275,8,83964,3,1672319005),(78276,8,83965,3,1672319005),(78277,8,83966,3,1672319005),(78278,8,83967,3,1672319005),(78279,8,83968,3,1672319005),(78280,8,83969,3,1672319005),(78281,8,83970,3,1672319005),(78282,8,83971,3,1672319005),(78283,8,83972,3,1672319005),(78284,8,83973,3,1672319005),(78285,8,83974,3,1672319005),(78286,8,83975,3,1672319005),(78287,8,83976,3,1672319005),(78288,8,83977,3,1672319005),(78289,8,83978,3,1672319005),(78290,8,83979,3,1672319005),(78291,8,83980,3,1672319005),(78292,8,83981,3,1672319005),(78293,8,83982,3,1672319005),(78294,8,83983,3,1672319005),(78295,8,83984,3,1672319005),(78296,8,83985,3,1672319005),(78297,8,83986,3,1672319005),(78298,8,83987,3,1672319005),(78299,8,83988,3,1672319005),(78300,8,83989,3,1672319005),(78301,8,83990,3,1672319005),(78302,8,83991,3,1672319005),(78303,8,83992,3,1672319005),(78304,8,83993,3,1672319005),(78305,8,83994,3,1672319005),(78306,8,83995,3,1672319005),(78307,8,83996,3,1672319005),(78308,8,83997,3,1672319005),(78309,8,83998,3,1672319005),(78310,8,83999,3,1672319005),(78311,8,84000,3,1672319005),(78312,8,84001,3,1672319005),(78313,8,84002,3,1672319005),(78314,8,84003,3,1672319005),(78315,8,84004,3,1672319005),(78316,8,84005,3,1672319005),(78317,8,84006,3,1672319005),(78318,8,84007,3,1672319005),(78319,8,84008,3,1672319005),(78320,8,84009,3,1672319005),(78321,8,84010,3,1672319005),(78322,8,84011,3,1672319005),(78323,8,84012,3,1672319005),(78324,8,84013,3,1672319005),(78325,8,84014,3,1672319005),(78326,8,84015,3,1672319005),(78327,8,84016,3,1672319005),(78328,8,84017,3,1672319005),(78329,8,84018,3,1672319005),(78330,8,84019,3,1672319005),(78331,8,84020,3,1672319005),(78332,8,84021,3,1672319005),(78333,8,84022,3,1672319005),(78334,8,84023,3,1672319005),(78335,8,84024,3,1672319005),(78336,8,84025,3,1672319005),(78337,8,84026,3,1672319005),(78338,8,84027,3,1672319005),(78339,8,84028,3,1672319005),(78340,8,84029,3,1672319005),(78341,8,84030,3,1672319005),(78342,8,84031,3,1672319005),(78343,8,84032,3,1672319005),(78344,8,84033,3,1672319005),(78345,8,84034,3,1672319005),(78346,8,84035,3,1672319005),(78347,8,84036,3,1672319005),(78348,8,84037,3,1672319005),(78349,8,84038,3,1672319005),(78350,8,84039,3,1672319005),(78351,8,84040,3,1672319005),(78352,8,84041,3,1672319005),(78353,8,84042,3,1672319005),(78354,8,84043,3,1672319005),(78355,8,84044,3,1672319005),(78356,8,84045,3,1672319005),(78357,8,84046,3,1672319005),(78358,8,84047,3,1672319005),(78359,8,84048,3,1672319005),(78360,8,84049,3,1672319005),(78361,8,84050,3,1672319005),(78362,8,84051,3,1672319005),(78363,8,84052,3,1672319005),(78364,8,84053,3,1672319005),(78365,8,84054,3,1672319005),(78366,8,84055,3,1672319005),(78367,8,84056,3,1672319005),(78368,8,84057,3,1672319005),(78369,8,84058,3,1672319005),(78370,8,84059,3,1672319005),(78371,8,84060,3,1672319005),(78372,8,84061,3,1672319005),(78373,8,84062,3,1672319005),(78374,8,84063,3,1672319005),(78375,8,84064,3,1672319005),(78376,8,84065,3,1672319005),(78377,8,84066,3,1672319005),(78378,8,84067,3,1672319005),(78379,8,84068,3,1672319005),(78380,8,84069,3,1672319005),(78381,8,84070,3,1672319005),(78382,8,84071,3,1672319005),(78383,8,84072,3,1672319005),(78384,8,84073,3,1672319005),(78385,8,84074,3,1672319005),(78386,8,84075,3,1672319005),(78387,8,84076,3,1672319005),(78388,8,84077,3,1672319005),(78389,8,84078,3,1672319005),(78390,8,84079,3,1672319005),(78391,8,84080,3,1672319005),(78392,8,84081,3,1672319005),(78393,8,84082,3,1672319005),(78394,8,84083,3,1672319005),(78395,8,84084,3,1672319005),(78396,8,84085,3,1672319005),(78397,8,84086,3,1672319005),(78398,8,84087,3,1672319005),(78399,8,84088,3,1672319005),(78400,8,84089,3,1672319005),(78401,8,84090,3,1672319005),(78402,8,84091,3,1672319005),(78403,8,84092,3,1672319005),(78404,8,84093,3,1672319005),(78405,8,84094,3,1672319005),(78406,8,84095,3,1672319005),(78407,8,84096,3,1672319005),(78408,8,84097,3,1672319005),(78409,8,84098,3,1672319005),(78410,8,84099,3,1672319005),(78411,8,84100,3,1672319005),(78412,8,84101,3,1672319005),(78413,8,84102,3,1672319005),(78414,8,84103,3,1672319005),(78415,8,84104,3,1672319005),(78416,8,84105,3,1672319005),(78417,8,84106,3,1672319005),(78418,8,84107,3,1672319005),(78419,8,84108,3,1672319005),(78420,8,84109,3,1672319005),(78421,8,84110,3,1672319005),(78422,8,84111,3,1672319005),(78423,8,84112,3,1672319005),(78424,8,84113,3,1672319005),(78425,8,84114,3,1672319005),(78426,8,84115,3,1672319005),(78427,8,84116,3,1672319005),(78428,8,84117,3,1672319005),(78429,8,84118,3,1672319005),(78430,8,84119,3,1672319005),(78431,8,84120,3,1672319005),(78432,8,84121,3,1672319005),(78433,8,84122,3,1672319005),(78434,8,84123,3,1672319005),(78435,8,84124,3,1672319005),(78436,8,84125,3,1672319005),(78437,8,84126,3,1672319005),(78438,8,84127,3,1672319005),(78439,8,84128,3,1672319005),(78440,8,84129,3,1672319005),(78441,8,84130,3,1672319005),(78442,8,84131,3,1672319005),(78443,8,84132,3,1672319005),(78444,8,84133,3,1672319005),(78445,8,84134,3,1672319005),(78446,8,84135,3,1672319005),(78447,8,84136,3,1672319005),(78448,8,84137,3,1672319005),(78449,8,84138,3,1672319005),(78450,8,84139,3,1672319005),(78451,8,84140,3,1672319005),(78452,8,84141,3,1672319005),(78453,8,84142,3,1672319005),(78454,8,84143,3,1672319005),(78455,8,84144,3,1672319005),(78456,8,84145,3,1672319005),(78457,8,84146,3,1672319005),(78458,8,84147,3,1672319005),(78459,8,84148,3,1672319005),(78460,8,84149,3,1672319005),(78461,8,84150,3,1672319005),(78462,8,84151,3,1672319005),(78463,8,84152,3,1672319005),(78464,8,84153,3,1672319005),(78465,8,84154,3,1672319005),(78466,8,84155,3,1672319005),(78467,8,84156,3,1672319005),(78468,8,84157,3,1672319005),(78469,8,84158,3,1672319005),(78470,8,84159,3,1672319005),(78471,8,84160,3,1672319005),(78472,8,84161,3,1672319005),(78473,8,84162,3,1672319005),(78474,8,84163,3,1672319005),(78475,8,84164,3,1672319005),(78476,8,84165,3,1672319005),(78477,8,84166,3,1672319005),(78478,8,84167,3,1672319005),(78479,8,84168,3,1672319005),(78480,8,84169,3,1672319005),(78481,8,84170,3,1672319005),(78482,8,84171,3,1672319005),(78483,8,84172,3,1672319005),(78484,8,84173,3,1672319005),(78485,8,84174,3,1672319005),(78486,8,84175,3,1672319005),(78487,8,84176,3,1672319005),(78488,8,84177,3,1672319005),(78489,8,84178,3,1672319005),(78490,8,84179,3,1672319005),(78491,8,84180,3,1672319005),(78492,8,84181,3,1672319005),(78493,8,84182,3,1672319005),(78494,8,84183,3,1672319005),(78495,8,84184,3,1672319005),(78496,8,84185,3,1672319005),(78497,8,84186,3,1672319005),(78498,8,84187,3,1672319005),(78499,8,84188,3,1672319005),(78500,8,84189,3,1672319005),(78501,8,84190,3,1672319005),(78502,8,84191,3,1672319005),(78503,8,84192,3,1672319005),(78504,8,84193,3,1672319005),(78505,8,84194,3,1672319005),(78506,8,84195,3,1672319005),(78507,8,84196,3,1672319005),(78508,8,84197,3,1672319005),(78509,8,84198,3,1672319005),(78510,8,84199,3,1672319005),(78511,8,84200,3,1672319005),(78512,8,84201,3,1672319005),(78513,8,84202,3,1672319005),(78514,8,84203,3,1672319005),(78515,8,84204,3,1672319005),(78516,8,84205,3,1672319005),(78517,8,84206,3,1672319005),(78518,8,84207,3,1672319005),(78519,8,84208,3,1672319005),(78520,8,84209,3,1672319005),(78521,8,84210,3,1672319005),(78522,8,84211,3,1672319005),(78523,8,84212,3,1672319005),(78524,8,84213,3,1672319005),(78525,8,84214,3,1672319005),(78526,8,84215,3,1672319005),(78527,8,84216,3,1672319005),(78528,8,84217,3,1672319005),(78529,8,84218,3,1672319005),(78530,8,84219,3,1672319005),(78531,8,84220,3,1672319005),(78532,8,84221,3,1672319005),(78533,8,84222,3,1672319005),(78534,8,84223,3,1672319005),(78535,8,84224,3,1672319005),(78536,8,84225,3,1672319005),(78537,8,84226,3,1672319005),(78538,8,84227,3,1672319005),(78539,8,84228,3,1672319005),(78540,8,84229,3,1672319005),(78541,8,84230,3,1672319005),(78542,8,84231,3,1672319005),(78543,8,84232,3,1672319005),(78544,8,84233,3,1672319005),(78545,8,84234,3,1672319005),(78546,8,84235,3,1672319005),(78547,8,84236,3,1672319005),(78548,8,84237,3,1672319005),(78549,8,84238,3,1672319005),(78550,8,84239,3,1672319005),(78551,8,84240,3,1672319005),(78552,8,84241,3,1672319005),(78553,8,84242,3,1672319005),(78554,8,84243,3,1672319005),(78555,8,84244,3,1672319005),(78556,8,84245,3,1672319005),(78557,8,84246,3,1672319005),(78558,8,84247,3,1672319005),(78559,8,84248,3,1672319005),(78560,8,84249,3,1672319005),(78561,8,84250,3,1672319005),(78562,8,84251,3,1672319005),(78563,8,84252,3,1672319005),(78564,8,84253,3,1672319005),(78565,8,84254,3,1672319005),(78566,8,84255,3,1672319005),(78567,8,84256,3,1672319005),(78568,8,84257,3,1672319005),(78569,8,84258,3,1672319005),(78570,8,84259,3,1672319005),(78571,8,84260,3,1672319005),(78572,8,84261,3,1672319005),(78573,8,84262,3,1672319005),(78574,8,84263,3,1672319005),(78575,8,84264,3,1672319005),(78576,8,84265,3,1672319005),(78577,8,84266,3,1672319005),(78578,8,84267,3,1672319005),(78579,8,84268,3,1672319005),(78580,8,84269,3,1672319005),(78581,8,84270,3,1672319005),(78582,8,84271,3,1672319005),(78583,8,84272,3,1672319005),(78584,8,84273,3,1672319005),(78585,8,84274,3,1672319005),(78586,8,84275,3,1672319005),(78587,8,84276,3,1672319005),(78588,8,84277,3,1672319005),(78589,8,84278,3,1672319005),(78590,8,84279,3,1672319005),(78591,8,84280,3,1672319005),(78592,8,84281,3,1672319005),(78593,8,84282,3,1672319005),(78594,8,84283,3,1672319005),(78595,8,84284,3,1672319005),(78596,8,84285,3,1672319005),(78597,8,84286,3,1672319005),(78598,8,84287,3,1672319005),(78599,8,84288,3,1672319005),(78600,8,84289,3,1672319005),(78601,8,84291,3,1672319005),(78602,8,84292,3,1672319005),(78603,8,84293,3,1672319005),(78604,8,84294,3,1672319005),(78605,8,84295,3,1672319005),(78606,8,84296,3,1672319005),(78607,8,84297,3,1672319005),(78608,8,84298,3,1672319005),(78609,8,84299,3,1672319005),(78610,8,84300,3,1672319005),(78611,8,84301,3,1672319005),(78612,8,84302,3,1672319005),(78613,8,84303,3,1672319005),(78614,8,84304,3,1672319005),(78615,8,84305,3,1672319005),(78616,8,84306,3,1672319005),(78617,8,84307,3,1672319005),(78618,8,84308,3,1672319005),(78619,8,84309,3,1672319005),(78620,8,84310,3,1672319005),(78621,8,84311,3,1672319005),(78622,8,84312,3,1672319005),(78623,8,84313,3,1672319005),(78624,8,84314,3,1672319005),(78625,8,84315,3,1672319005),(78626,8,84316,3,1672319005),(78627,8,84317,3,1672319005),(78628,8,84318,3,1672319005),(78629,8,84319,3,1672319005),(78630,8,84320,3,1672319005),(78631,8,84321,3,1672319005),(78632,8,84322,3,1672319005),(78633,8,84323,3,1672319005),(78634,8,84324,3,1672319005),(78635,8,84325,3,1672319005),(78636,8,84326,3,1672319005),(78637,8,84327,3,1672319005),(78638,8,84328,3,1672319005),(78639,8,84329,3,1672319005),(78640,8,84330,3,1672319005),(78641,8,84331,3,1672319005),(78642,8,84332,3,1672319005),(78643,8,84333,3,1672319005),(78644,8,84334,3,1672319005),(78645,8,84335,3,1672319005),(78646,8,84336,3,1672319005),(78647,8,84337,3,1672319005),(78648,8,84338,3,1672319005),(78649,8,84339,3,1672319005),(78650,8,84340,3,1672319005),(78651,8,84341,3,1672319005),(78652,8,84342,3,1672319005),(78653,8,84343,3,1672319005),(78654,8,84344,3,1672319005),(78655,8,84345,3,1672319005),(78656,8,84346,3,1672319005),(78657,8,84347,3,1672319005),(78658,8,84348,3,1672319005),(78659,8,84349,3,1672319005),(78660,8,84350,3,1672319005),(78661,8,84351,3,1672319005),(78662,8,84352,3,1672319005),(78663,8,84353,3,1672319005),(78664,8,84354,3,1672319005),(78665,8,84355,3,1672319005),(78666,8,84356,3,1672319005),(78667,8,84357,3,1672319005),(78668,8,84358,3,1672319005),(78669,8,84359,3,1672319005),(78670,8,84360,3,1672319005),(78671,8,84361,3,1672319005),(78672,8,84362,3,1672319005),(78673,8,84363,3,1672319005),(78674,8,84364,3,1672319005),(78675,8,84365,3,1672319005),(78676,8,84366,3,1672319005),(78677,8,84367,3,1672319005),(78678,8,84368,3,1672319005),(78679,8,84369,3,1672319005),(78680,8,84370,3,1672319005),(78681,8,84371,3,1672319005),(78682,8,84372,3,1672319005),(78683,8,84373,3,1672319005),(78684,8,84374,3,1672319005),(78685,8,84375,3,1672319005),(78686,8,84376,3,1672319005),(78687,8,84377,3,1672319005),(78688,8,84378,3,1672319005),(78689,8,84379,3,1672319005),(78690,8,84380,3,1672319005),(78691,8,84381,3,1672319005),(78692,8,84382,3,1672319005),(78693,8,84383,3,1672319005),(78694,8,84384,3,1672319005),(78695,8,84385,3,1672319005),(78696,8,84386,3,1672319005),(78697,8,84387,3,1672319005),(78698,8,84388,3,1672319005),(78699,8,84389,3,1672319005),(78700,8,84390,3,1672319005),(78701,8,84391,3,1672319005),(78702,8,84392,3,1672319005),(78703,8,84394,3,1672319005),(78704,8,84395,3,1672319005),(78705,8,84396,3,1672319005),(78706,8,84397,3,1672319005),(78707,8,84398,3,1672319005),(78708,8,84399,3,1672319005),(78709,8,84400,3,1672319005),(78710,8,84401,3,1672319005),(78711,8,84402,3,1672319005),(78712,8,84403,3,1672319005),(78713,8,84404,3,1672319005),(78714,8,84405,3,1672319005),(78715,8,84406,3,1672319005),(78716,8,84407,3,1672319005),(78717,8,84408,3,1672319005),(78718,8,84409,3,1672319005),(78719,8,84411,3,1672319005),(78720,8,84412,3,1672319005),(78721,8,84413,3,1672319005),(78722,8,84414,3,1672319005),(78723,8,84415,3,1672319005),(78724,8,84416,3,1672319005),(78725,8,84417,3,1672319005),(78726,8,84423,3,1672319005),(78727,8,84426,3,1672319005),(78728,8,84427,3,1672319005),(78729,8,84428,3,1672319005),(78730,8,84429,3,1672319005),(78731,8,84430,3,1672319005),(78732,8,84431,3,1672319005),(78733,8,84432,3,1672319005),(78734,8,84433,3,1672319005),(78735,8,84434,3,1672319005),(78736,8,84435,3,1672319005),(78737,8,84436,3,1672319005),(78738,8,84437,3,1672319005),(78739,8,84438,3,1672319005),(78740,8,84439,3,1672319005),(78741,8,84440,3,1672319005),(78742,8,84441,3,1672319005),(78743,8,84442,3,1672319005),(78744,8,84443,3,1672319005),(78745,8,84444,3,1672319005),(78746,8,84445,3,1672319005),(78747,8,84446,3,1672319005),(78748,8,84447,3,1672319005),(78749,8,84448,3,1672319005),(78750,8,84449,3,1672319005),(78751,8,84450,3,1672319005),(78752,8,84451,3,1672319005),(78753,8,84452,3,1672319005),(78754,8,84453,3,1672319005),(78755,8,84454,3,1672319005),(78756,8,84455,3,1672319005),(78757,8,84456,3,1672319005),(78758,8,84457,3,1672319005),(78759,8,84458,3,1672319005),(78760,8,84459,3,1672319005),(78761,8,84460,3,1672319005),(78762,8,84461,3,1672319005),(78763,8,84462,3,1672319005),(78764,8,84463,3,1672319005),(78765,8,84464,3,1672319005),(78766,8,84465,3,1672319005),(78767,8,84466,3,1672319005),(78768,8,84467,3,1672319005),(78769,8,84468,3,1672319005),(78770,8,84469,3,1672319005),(78771,8,84470,3,1672319005),(78772,8,84471,3,1672319005),(78773,8,84472,3,1672319005),(78774,8,84473,3,1672319005),(78775,8,84474,3,1672319005),(78776,8,84475,3,1672319005),(78777,8,84476,3,1672319005),(78778,8,84477,3,1672319005),(78779,8,84478,3,1672319005),(78780,8,84479,3,1672319005),(78781,8,84480,3,1672319005),(78782,8,84481,3,1672319005),(78783,8,84482,3,1672319005),(78784,8,84483,3,1672319005),(78785,8,84484,3,1672319005),(78786,8,84485,3,1672319005),(78787,8,84486,3,1672319005),(78788,8,84487,3,1672319005),(78789,8,84488,3,1672319005),(78790,8,84489,3,1672319005),(78791,8,84490,3,1672319005),(78792,8,84491,3,1672319005),(78793,8,84492,3,1672319005),(78794,8,84493,3,1672319005),(78795,8,84494,3,1672319005),(78796,8,84495,3,1672319005),(78797,8,84496,3,1672319005),(78798,8,84497,3,1672319005),(78799,8,84498,3,1672319005),(78800,8,84499,3,1672319005),(78801,8,84500,3,1672319005),(78802,8,84501,3,1672319005),(78803,8,84502,3,1672319005),(78804,8,84503,3,1672319005),(78805,8,84504,3,1672319005),(78806,8,84505,3,1672319005),(78807,8,84506,3,1672319005),(78808,8,84507,3,1672319005),(78809,8,84508,3,1672319005),(78810,8,84509,3,1672319005),(78811,8,84510,3,1672319005),(78812,8,84511,3,1672319005),(78813,8,84512,3,1672319005),(78814,8,84513,3,1672319005),(78815,8,84514,3,1672319005),(78816,8,84515,3,1672319005),(78817,8,84516,3,1672319005),(78818,8,84517,3,1672319005),(78819,8,84518,3,1672319005),(78820,8,84519,3,1672319005),(78821,8,84520,3,1672319005),(78822,8,84521,3,1672319005),(78823,8,84522,3,1672319005),(78824,8,84523,3,1672319005),(78825,8,84524,3,1672319005),(78826,8,84525,3,1672319005),(78827,8,84526,3,1672319005),(78828,8,84527,3,1672319005),(78829,8,84528,3,1672319005),(78830,8,84529,3,1672319005),(78831,8,84530,3,1672319005),(78832,8,84531,3,1672319005),(78833,8,84532,3,1672319005),(78834,8,84533,3,1672319005),(78835,8,84534,3,1672319005),(78836,8,84535,3,1672319005),(78837,8,84536,3,1672319005),(78838,8,84537,3,1672319005),(78839,8,84538,3,1672319005),(78840,8,84539,3,1672319005),(78841,8,84540,3,1672319005),(78842,8,84541,3,1672319005),(78843,8,84542,3,1672319005),(78844,8,84543,3,1672319005),(78845,8,84544,3,1672319005),(78846,8,84545,3,1672319005),(78847,8,84546,3,1672319005),(78848,8,84547,3,1672319005),(78849,8,84548,3,1672319005),(78850,8,84549,3,1672319005),(78851,8,84550,3,1672319005),(78852,8,84551,3,1672319005),(78853,8,84552,3,1672319005),(78854,8,84553,3,1672319005),(78855,8,84554,3,1672319005),(78856,8,84555,3,1672319005),(78857,8,84556,3,1672319005),(78858,8,84557,3,1672319005),(78859,8,84558,3,1672319005),(78860,8,84559,3,1672319005),(78861,8,84560,3,1672319005),(78862,8,84561,3,1672319005),(78863,8,84562,3,1672319005),(78864,8,84563,3,1672319005),(78865,8,84564,3,1672319005),(78866,8,84565,3,1672319005),(78867,8,84566,3,1672319005),(78868,8,84567,3,1672319005),(78869,8,84568,3,1672319005),(78870,8,84569,3,1672319005),(78871,8,84570,3,1672319005),(78872,8,84571,3,1672319005),(78873,8,84572,3,1672319005),(78874,8,84573,3,1672319005),(78875,8,84574,3,1672319005),(78876,8,84575,3,1672319005),(78877,8,84576,3,1672319005),(78878,8,84577,3,1672319005),(78879,8,84578,3,1672319005),(78880,8,84579,3,1672319005),(78881,8,84580,3,1672319005),(78882,8,84581,3,1672319005),(78883,8,84582,3,1672319005),(78884,8,84583,3,1672319005),(78885,8,84584,3,1672319005),(78886,8,84585,3,1672319005),(78887,8,84586,3,1672319005),(78888,8,84587,3,1672319005),(78889,8,84588,3,1672319005),(78890,8,84589,3,1672319005),(78891,8,84590,3,1672319005),(78892,8,84591,3,1672319005),(78893,8,84592,3,1672319005),(78894,8,84593,3,1672319005),(78895,8,84594,3,1672319005),(78896,8,84595,3,1672319005),(78897,8,84596,3,1672319005),(78898,8,84597,3,1672319005),(78899,8,84598,3,1672319005),(78900,8,84599,3,1672319005),(78901,8,84600,3,1672319005),(78902,8,84601,3,1672319005),(78903,8,84602,3,1672319005),(78904,8,84603,3,1672319005),(78905,8,84604,3,1672319005),(78906,8,84605,3,1672319005),(78907,8,84606,3,1672319005),(78908,8,84607,3,1672319005),(78909,8,84608,3,1672319005),(78910,8,84609,3,1672319005),(78911,8,84610,3,1672319005),(78912,8,84611,3,1672319005),(78913,8,84612,3,1672319005),(78914,8,84613,3,1672319005),(78915,8,84614,3,1672319005),(78916,8,84615,3,1672319005),(78917,8,84616,3,1672319005),(78918,8,84617,3,1672319005),(78919,8,84618,3,1672319005),(78920,8,84619,3,1672319005),(78921,8,84620,3,1672319005),(78922,8,84621,3,1672319005),(78923,8,84622,3,1672319005),(78924,8,84623,3,1672319005),(78925,8,84624,3,1672319005),(78926,8,84625,3,1672319005),(78927,8,84626,3,1672319005),(78928,8,84627,3,1672319005),(78929,8,84628,3,1672319005),(78930,8,84629,3,1672319005),(78931,8,84630,3,1672319005),(78932,8,84631,3,1672319005),(78933,8,84632,3,1672319005),(78934,8,84633,3,1672319005),(78935,8,84634,3,1672319005),(78936,8,84635,3,1672319005),(78937,8,84636,3,1672319005),(78938,8,84637,3,1672319005),(78939,8,84638,3,1672319005),(78940,8,84639,3,1672319005),(78941,8,84640,3,1672319005),(78942,8,84641,3,1672319005),(78943,8,84642,3,1672319005),(78944,8,84643,3,1672319005),(78945,8,84644,3,1672319005),(78946,8,84645,3,1672319005),(78947,8,84646,3,1672319005),(78948,8,84647,3,1672319005),(78949,8,84648,3,1672319005),(78950,8,84649,3,1672319005),(78951,8,84650,3,1672319005),(78952,8,84651,3,1672319005),(78953,8,84652,3,1672319005),(78954,8,84653,3,1672319005),(78955,8,84654,3,1672319005),(78956,8,84655,3,1672319005),(78957,8,84656,3,1672319005),(78958,8,84657,3,1672319005),(78959,8,84658,3,1672319005),(78960,8,84659,3,1672319005),(78961,8,84660,3,1672319005),(78962,8,84661,3,1672319005),(78963,8,84662,3,1672319005),(78964,8,84663,3,1672319005),(78965,8,84664,3,1672319005),(78966,8,84665,3,1672319005),(78967,8,84666,3,1672319005),(78968,8,84667,3,1672319005),(78969,8,84668,3,1672319005),(78970,8,84669,3,1672319005),(78971,8,84670,3,1672319005),(78972,8,84671,3,1672319005),(78973,8,84672,3,1672319005),(78974,8,84673,3,1672319005),(78975,8,84674,3,1672319005),(78976,8,84675,3,1672319005),(78977,8,84676,3,1672319005),(78978,8,84677,3,1672319005),(78979,8,84678,3,1672319005),(78980,8,84679,3,1672319005),(78981,8,84680,3,1672319005),(78982,8,84681,3,1672319005),(78983,8,84682,3,1672319005),(78984,8,84683,3,1672319005),(78985,8,84684,3,1672319005),(78986,8,84685,3,1672319005),(78987,8,84686,3,1672319005),(78988,8,84687,3,1672319005),(78989,8,84688,3,1672319005),(78990,8,84689,3,1672319005),(78991,8,84690,3,1672319005),(78992,8,84691,3,1672319005),(78993,8,84692,3,1672319005),(78994,8,84693,3,1672319005),(78995,8,84694,3,1672319005),(78996,8,84695,3,1672319005),(78997,8,84696,3,1672319005),(78998,8,84697,3,1672319005),(78999,8,84698,3,1672319005),(79000,8,84699,3,1672319005),(79001,8,84700,3,1672319005),(79002,8,84701,3,1672319005),(79003,8,84702,3,1672319005),(79004,8,84703,3,1672319005),(79005,8,84704,3,1672319005),(79006,8,84705,3,1672319005),(79007,8,84706,3,1672319005),(79008,8,84707,3,1672319005),(79009,8,84708,3,1672319005),(79010,8,84709,3,1672319005),(79011,8,84710,3,1672319005),(79012,8,84711,3,1672319005),(79013,8,84712,3,1672319005),(79014,8,84713,3,1672319005),(79015,8,84714,3,1672319005),(79016,8,84715,3,1672319005),(79017,8,84716,3,1672319005),(79018,8,84717,3,1672319005),(79019,8,84718,3,1672319005),(79020,8,84719,3,1672319005),(79021,8,84720,3,1672319005),(79022,8,84721,3,1672319005),(79023,8,84722,3,1672319005),(79024,8,84723,3,1672319005),(79025,8,84724,3,1672319005),(79026,8,84725,3,1672319005),(79027,8,84726,3,1672319005),(79028,8,84727,3,1672319005),(79029,8,84728,3,1672319005),(79030,8,84729,3,1672319005),(79031,8,84730,3,1672319005),(79032,8,84731,3,1672319005),(79033,8,84732,3,1672319005),(79034,8,84733,3,1672319005),(79035,8,84734,3,1672319005),(79036,8,84735,3,1672319005),(79037,8,84736,3,1672319005),(79038,8,84737,3,1672319005),(79039,8,84738,3,1672319005),(79040,8,84739,3,1672319005),(79041,8,84740,3,1672319005),(79042,8,84741,3,1672319005),(79043,8,84742,3,1672319005),(79044,8,84743,3,1672319005),(79045,8,84744,3,1672319005),(79046,8,84745,3,1672319005),(79047,8,84746,3,1672319005),(79048,8,84747,3,1672319005),(79049,8,84748,3,1672319005),(79050,8,84749,3,1672319005),(79051,8,84750,3,1672319005),(79052,8,84751,3,1672319005),(79053,8,84752,3,1672319005),(79054,8,84753,3,1672319005),(79055,8,84754,3,1672319005),(79056,8,84755,3,1672319005),(79057,8,84756,3,1672319005),(79058,8,84757,3,1672319005),(79059,8,84758,3,1672319005),(79060,8,84759,3,1672319005),(79061,8,84760,3,1672319005),(79062,8,84761,3,1672319005),(79063,8,84762,3,1672319005),(79064,8,84763,3,1672319005),(79065,8,84764,3,1672319005),(79066,8,84765,3,1672319005),(79067,8,84766,3,1672319005),(79068,8,84767,3,1672319005),(79069,8,84768,3,1672319005),(79070,8,84769,3,1672319005),(79071,8,84770,3,1672319005),(79072,8,84771,3,1672319005),(79073,8,84772,3,1672319005),(79074,8,84773,3,1672319005),(79075,8,84774,3,1672319005),(79076,8,84775,3,1672319005),(79077,8,84776,3,1672319005),(79078,8,84777,3,1672319005),(79079,8,84778,3,1672319005),(79080,8,84779,3,1672319005),(79081,8,84780,3,1672319005),(79082,8,84781,3,1672319005),(79083,8,84782,3,1672319005),(79084,8,84783,3,1672319005),(79085,8,84784,3,1672319005),(79086,8,84785,3,1672319005),(79087,8,84786,3,1672319005),(79088,8,84787,3,1672319005),(79089,8,84788,3,1672319005),(79090,8,84789,3,1672319005),(79091,8,84790,3,1672319005),(79092,8,84791,3,1672319005),(79093,8,84792,3,1672319005),(79094,8,84793,3,1672319005),(79095,8,84794,3,1672319005),(79096,8,84795,3,1672319005),(79097,8,84796,3,1672319005),(79098,8,84797,3,1672319005),(79099,8,84798,3,1672319005),(79100,8,84799,3,1672319005),(79101,8,84800,3,1672319005),(79102,8,84801,3,1672319005),(79103,8,84802,3,1672319005),(79104,8,84803,3,1672319005),(79105,8,84804,3,1672319005),(79106,8,84805,3,1672319005),(79107,8,84806,3,1672319005),(79108,8,84807,3,1672319005),(79109,8,84808,3,1672319005),(79110,8,84809,3,1672319005),(79111,8,84810,3,1672319005),(79112,8,84811,3,1672319005),(79113,8,84812,3,1672319005),(79114,8,84813,3,1672319005),(79115,8,84814,3,1672319005),(79116,8,84815,3,1672319005),(79117,8,84816,3,1672319005),(79118,8,84817,3,1672319005),(79119,8,84818,3,1672319005),(79120,8,84819,3,1672319005),(79121,8,84820,3,1672319005),(79122,8,84821,3,1672319005),(79123,8,84822,3,1672319005),(79124,8,84823,3,1672319005),(79125,8,84824,3,1672319005),(79126,8,84825,3,1672319005),(79127,8,84826,3,1672319005),(79128,8,84827,3,1672319005),(79129,8,84828,3,1672319005),(79130,8,84829,3,1672319005),(79131,8,84830,3,1672319005),(79132,8,84831,3,1672319005),(79133,8,84832,3,1672319005),(79134,8,84833,3,1672319005),(79135,8,84834,3,1672319005),(79136,8,84835,3,1672319005),(79137,8,84836,3,1672319005),(79138,8,84837,3,1672319005),(79139,8,84838,3,1672319005),(79140,8,84839,3,1672319005),(79141,8,84840,3,1672319005),(79142,8,84841,3,1672319005),(79143,8,84842,3,1672319005),(79144,8,84843,3,1672319005),(79145,8,84844,3,1672319005),(79146,8,84845,3,1672319005),(79147,8,84846,3,1672319005),(79148,8,84847,3,1672319005),(79149,8,84848,3,1672319005),(79150,8,84849,3,1672319005),(79151,8,84850,3,1672319005),(79152,8,84851,3,1672319005),(79153,8,84852,3,1672319005),(79154,8,84853,3,1672319005),(79155,8,84854,3,1672319005),(79156,8,84855,3,1672319005),(79157,8,84856,3,1672319005),(79158,8,84857,3,1672319005),(79159,8,84858,3,1672319005),(79160,8,84859,3,1672319005),(79161,8,84860,3,1672319005),(79162,8,84861,3,1672319005),(79163,8,84862,3,1672319005),(79164,8,84863,3,1672319005),(79165,8,84864,3,1672319005),(79166,8,84865,3,1672319005),(79167,8,84866,3,1672319005),(79168,8,84867,3,1672319005),(79169,8,84868,3,1672319005),(79170,8,84869,3,1672319005),(79171,8,84870,3,1672319005),(79172,8,84871,3,1672319005),(79173,8,84872,3,1672319005),(79174,8,84873,3,1672319005),(79175,8,84874,3,1672319005),(79176,8,84875,3,1672319005),(79177,8,84876,3,1672319005),(79178,8,84877,3,1672319005),(79179,8,84878,3,1672319005),(79180,8,84879,3,1672319005),(79181,8,84880,3,1672319005),(79182,8,84881,3,1672319005),(79183,8,84882,3,1672319005),(79184,8,84883,3,1672319005),(79185,8,84884,3,1672319005),(79186,8,84885,3,1672319005),(79187,8,84886,3,1672319005),(79188,8,84887,3,1672319005),(79189,8,84888,3,1672319005),(79190,8,84889,3,1672319005),(79191,8,84890,3,1672319005),(79192,8,84891,3,1672319005),(79193,8,84892,3,1672319005),(79194,8,84893,3,1672319005),(79195,8,84894,3,1672319005),(79196,8,84895,3,1672319005),(79197,8,84896,3,1672319005),(79198,8,84897,3,1672319005),(79199,8,84898,3,1672319005),(79200,8,84899,3,1672319005),(79201,8,84900,3,1672319005),(79202,8,84901,3,1672319005),(79203,8,84902,3,1672319005),(79204,8,84903,3,1672319005),(79205,8,84904,3,1672319005),(79206,8,84905,3,1672319005),(79207,8,84906,3,1672319005),(79208,8,84907,3,1672319005),(79209,8,84908,3,1672319005),(79210,8,84909,3,1672319005),(79211,8,84910,3,1672319005),(79212,8,84911,3,1672319005),(79213,8,84912,3,1672319005),(79214,8,84913,3,1672319005),(79215,8,84914,3,1672319005),(79216,8,84915,3,1672319005),(79217,8,84916,3,1672319005),(79218,8,84917,3,1672319005),(79219,8,84918,3,1672319005),(79220,8,84919,3,1672319005),(79221,8,84920,3,1672319005),(79222,8,84921,3,1672319005),(79223,8,84922,3,1672319005),(79224,8,84923,3,1672319005),(79225,8,84924,3,1672319005),(79226,8,84925,3,1672319005),(79227,8,84926,3,1672319005),(79228,8,84927,3,1672319005),(79229,8,84928,3,1672319005),(79230,8,84929,3,1672319005),(79231,8,84930,3,1672319005),(79232,8,84931,3,1672319005),(79233,8,84932,3,1672319005),(79234,8,84933,3,1672319005),(79235,8,84934,3,1672319005),(79236,8,84935,3,1672319005),(79237,8,84936,3,1672319005),(79238,8,84937,3,1672319005),(79239,8,84938,3,1672319005),(79240,8,84939,3,1672319005),(79241,8,84940,3,1672319005),(79242,8,84941,3,1672319005),(79243,8,84942,3,1672319005),(79244,8,84943,3,1672319005),(79245,8,84944,3,1672319005),(79246,8,84945,3,1672319005),(79247,8,84946,3,1672319005),(79248,8,84947,3,1672319005),(79249,8,84948,3,1672319005),(79250,8,84949,3,1672319005),(79251,8,84950,3,1672319005),(79252,8,84951,3,1672319005),(79253,8,84952,3,1672319005),(79254,8,84953,3,1672319005),(79255,8,84954,3,1672319005),(79256,8,84955,3,1672319005),(79257,8,84956,3,1672319005),(79258,8,84957,3,1672319005),(79259,8,84958,3,1672319005),(79260,8,84959,3,1672319005),(79261,8,84960,3,1672319005),(79262,8,84961,3,1672319005),(79263,8,84962,3,1672319005),(79264,8,84963,3,1672319005),(79265,8,84964,3,1672319005),(79266,8,84965,3,1672319005),(79267,8,84966,3,1672319005),(79268,8,84967,3,1672319005),(79269,8,84968,3,1672319005),(79270,8,84969,3,1672319005),(79271,8,84970,3,1672319005),(79272,8,84971,3,1672319005),(79273,8,84972,3,1672319005),(79274,8,84973,3,1672319005),(79275,8,84974,3,1672319005),(79276,8,84975,3,1672319005),(79277,8,84976,3,1672319005),(79278,8,84977,3,1672319005),(79279,8,84978,3,1672319005),(79280,8,84979,3,1672319005),(79281,8,84980,3,1672319005),(79282,8,84981,3,1672319005),(79283,8,84982,3,1672319005),(79284,8,84983,3,1672319005),(79285,8,84984,3,1672319005),(79286,8,84985,3,1672319005),(79287,8,84986,3,1672319005),(79288,8,84987,3,1672319005),(79289,8,84988,3,1672319005),(79290,8,84989,3,1672319005),(79291,8,84990,3,1672319005),(79292,8,84991,3,1672319005),(79293,8,84992,3,1672319005),(79294,8,84993,3,1672319005),(79295,8,84994,3,1672319005),(79296,8,84995,3,1672319005),(79297,8,84996,3,1672319005),(79298,8,84997,3,1672319005),(79299,8,84998,3,1672319005),(79300,8,84999,3,1672319005),(79301,8,85000,3,1672319005),(79302,8,85001,3,1672319005),(79303,8,85002,3,1672319005),(79304,8,85003,3,1672319005),(79305,8,85004,3,1672319005),(79306,8,85005,3,1672319005),(79307,8,85006,3,1672319005),(79308,8,85007,3,1672319005),(79309,8,85008,3,1672319005),(79310,8,85009,3,1672319005),(79311,8,85010,3,1672319005),(79312,8,85011,3,1672319005),(79313,8,85012,3,1672319005),(79314,8,85013,3,1672319005),(79315,8,85014,3,1672319005),(79316,8,85015,3,1672319005),(79317,8,85016,3,1672319005),(79318,8,85017,3,1672319005),(79319,8,85018,3,1672319005),(79320,8,85019,3,1672319005),(79321,8,85020,3,1672319005),(79322,8,85021,3,1672319005),(79323,8,85022,3,1672319005),(79324,8,85023,3,1672319005),(79325,8,85024,3,1672319005),(79326,8,85025,3,1672319005),(79327,8,85026,3,1672319005),(79328,8,85027,3,1672319005),(79329,8,85028,3,1672319005),(79330,8,85029,3,1672319005),(79331,8,85030,3,1672319005),(79332,8,85031,3,1672319005),(79333,8,85032,3,1672319005),(79334,8,85033,3,1672319005),(79335,8,85034,3,1672319005),(79336,8,85035,3,1672319005),(79337,8,85036,3,1672319005),(79338,8,85037,3,1672319005),(79339,8,85038,3,1672319005),(79340,8,85039,3,1672319005),(79341,8,85040,3,1672319005),(79342,8,85041,3,1672319005),(79343,8,85042,3,1672319005),(79344,8,85043,3,1672319005),(79345,8,85044,3,1672319005),(79346,8,85045,3,1672319005),(79347,8,85046,3,1672319005),(79348,8,85047,3,1672319005),(79349,8,85048,3,1672319005),(79350,8,85049,3,1672319005),(79351,8,85050,3,1672319005),(79352,8,85051,3,1672319005),(79353,8,85052,3,1672319005),(79354,8,85053,3,1672319005),(79355,8,85054,3,1672319005),(79356,8,85055,3,1672319005),(79357,8,85056,3,1672319005),(79358,8,85057,3,1672319005),(79359,8,85058,3,1672319005),(79360,8,85059,3,1672319005),(79361,8,85060,3,1672319005),(79362,8,85061,3,1672319005),(79363,8,85062,3,1672319005),(79364,8,85063,3,1672319005),(79365,8,85064,3,1672319005),(79366,8,85065,3,1672319005),(79367,8,85066,3,1672319005),(79368,8,85067,3,1672319005),(79369,8,85068,3,1672319005),(79370,8,85069,3,1672319005),(79371,8,85070,3,1672319005),(79372,8,85071,3,1672319005),(79373,8,85072,3,1672319005),(79374,8,85073,3,1672319005),(79375,8,85074,3,1672319005),(79376,8,85075,3,1672319005),(79377,8,85076,3,1672319005),(79378,8,85077,3,1672319005),(79379,8,85078,3,1672319005),(79380,8,85079,3,1672319005),(79381,8,85080,3,1672319005),(79382,8,85081,3,1672319005),(79383,8,85082,3,1672319005),(79384,8,85083,3,1672319005),(79385,8,85084,3,1672319005),(79386,8,85085,3,1672319005),(79387,8,85086,3,1672319005),(79388,8,85087,3,1672319005),(79389,8,85088,3,1672319005),(79390,8,85089,3,1672319005),(79391,8,85090,3,1672319005),(79392,8,85091,3,1672319005),(79393,8,85092,3,1672319005),(79394,8,85093,3,1672319005),(79395,8,85094,3,1672319005),(79396,8,85095,3,1672319005),(79397,8,85096,3,1672319005),(79398,8,85097,3,1672319005),(79399,8,85098,3,1672319005),(79400,8,85099,3,1672319005),(79401,8,85100,3,1672319005),(79402,8,85101,3,1672319005),(79403,8,85102,3,1672319005),(79404,8,85103,3,1672319005),(79405,8,85104,3,1672319005),(79406,8,85105,3,1672319005),(79407,8,85106,3,1672319005),(79408,8,85107,3,1672319005),(79409,8,85108,3,1672319005),(79410,8,85109,3,1672319005),(79411,8,85110,3,1672319005),(79412,8,85111,3,1672319005),(79413,8,85112,3,1672319005),(79414,8,85113,3,1672319005),(79415,8,85114,3,1672319005),(79416,8,85115,3,1672319005),(79417,8,85116,3,1672319005),(79418,8,85117,3,1672319005),(79419,8,85118,3,1672319005),(79420,8,85119,3,1672319005),(79421,8,85120,3,1672319005),(79422,8,85121,3,1672319005),(79423,8,85122,3,1672319005),(79424,8,85123,3,1672319005),(79425,8,85124,3,1672319005),(79426,8,85125,3,1672319005),(79427,8,85126,3,1672319005),(79428,8,85127,3,1672319005),(79429,8,85128,3,1672319005),(79430,8,85129,3,1672319005),(79431,8,85130,3,1672319005),(79432,8,85131,3,1672319005),(79433,8,85132,3,1672319005),(79434,8,85133,3,1672319005),(79435,8,85134,3,1672319005),(79436,8,85135,3,1672319005),(79437,8,85136,3,1672319005),(79438,8,85137,3,1672319005),(79439,8,85138,3,1672319005),(79440,8,85139,3,1672319005),(79441,8,85140,3,1672319005),(79442,8,85141,3,1672319005),(79443,8,85142,3,1672319005),(79444,8,85143,3,1672319005),(79445,8,85144,3,1672319005),(79446,8,85145,3,1672319005),(79447,8,85146,3,1672319005),(79448,8,85147,3,1672319005),(79449,8,85148,3,1672319005),(79450,8,85149,3,1672319005),(79451,8,85150,3,1672319005),(79452,8,85151,3,1672319005),(79453,8,85152,3,1672319005),(79454,8,85153,3,1672319005),(79455,8,85154,3,1672319005),(79456,8,85155,3,1672319005),(79457,8,85156,3,1672319005),(79458,8,85157,3,1672319005),(79459,8,85158,3,1672319005),(79460,8,85159,3,1672319005),(79461,8,85160,3,1672319005),(79462,8,85161,3,1672319005),(79463,8,85162,3,1672319005),(79464,8,85163,3,1672319005),(79465,8,85164,3,1672319005),(79466,8,85165,3,1672319005),(79467,8,85166,3,1672319005),(79468,8,85167,3,1672319005),(79469,8,85168,3,1672319005),(79470,8,85169,3,1672319005),(79471,8,85170,3,1672319005),(79472,8,85171,3,1672319005),(79473,8,85172,3,1672319005),(79474,8,85173,3,1672319005),(79475,8,85174,3,1672319005),(79476,8,85175,3,1672319005),(79477,8,85176,3,1672319005),(79478,8,85177,3,1672319005),(79479,8,85178,3,1672319005),(79480,8,85179,3,1672319005),(79481,8,85180,3,1672319005),(79482,8,85181,3,1672319005),(79483,8,85182,3,1672319005),(79484,8,85183,3,1672319005),(79485,8,85184,3,1672319005),(79486,8,85185,3,1672319005),(79487,8,85186,3,1672319005),(79488,8,85187,3,1672319005),(79489,8,85188,3,1672319005),(79490,8,85189,3,1672319005),(79491,8,85190,3,1672319005),(79492,8,85192,3,1672319005),(79493,8,85194,3,1672319005),(79494,8,85195,3,1672319005),(79495,8,85196,3,1672319005),(79496,8,85197,3,1672319005),(79497,8,85198,3,1672319005),(79498,8,85199,3,1672319005),(79499,8,85200,3,1672319005),(79500,8,85201,3,1672319005),(79501,8,85202,3,1672319005),(79502,8,85203,3,1672319005),(79503,8,85204,3,1672319005),(79504,8,85205,3,1672319005),(79505,8,85206,3,1672319005),(79506,8,85207,3,1672319005),(79507,8,85208,3,1672319005),(79508,8,85209,3,1672319005),(79509,8,85210,3,1672319005),(79510,8,85211,3,1672319005),(79511,8,85212,3,1672319005),(79512,8,85213,3,1672319005),(79513,8,85214,3,1672319005),(79514,8,85215,3,1672319005),(79515,8,85216,3,1672319005),(79516,8,85217,3,1672319005),(79517,8,85218,3,1672319005),(79518,8,85219,3,1672319005),(79519,8,85220,3,1672319005),(79520,8,85221,3,1672319005),(79521,8,85222,3,1672319005),(79522,8,85223,3,1672319005),(79523,8,85224,3,1672319005),(79524,8,85225,3,1672319005),(79525,8,85226,3,1672319005),(79526,8,85227,3,1672319005),(79527,8,85228,3,1672319005),(79528,8,85229,3,1672319005),(79529,8,85230,3,1672319005),(79530,8,85231,3,1672319005),(79531,8,85232,3,1672319005),(79532,8,85233,3,1672319005),(79533,8,85234,3,1672319005),(79534,8,85235,3,1672319005),(79535,8,85236,3,1672319005),(79536,8,85237,3,1672319005),(79537,8,85238,3,1672319005),(79538,8,85239,3,1672319005),(79539,8,85240,3,1672319005),(79540,8,85241,3,1672319005),(79541,8,85242,3,1672319005),(79542,8,85243,3,1672319005),(79543,8,85244,3,1672319005),(79544,8,85245,3,1672319005),(79545,8,85246,3,1672319005),(79546,8,85247,3,1672319005),(79547,8,85248,3,1672319005),(79548,8,85249,3,1672319005),(79549,8,85250,3,1672319005),(79550,8,85251,3,1672319005),(79551,8,85252,3,1672319005),(79552,8,85253,3,1672319005),(79553,8,85254,3,1672319005),(79554,8,85255,3,1672319005),(79555,8,85256,3,1672319005),(79556,8,85257,3,1672319005),(79557,8,85258,3,1672319005),(79558,8,85259,3,1672319005),(79559,8,85260,3,1672319005),(79560,8,85261,3,1672319005),(79561,8,85262,3,1672319005),(79562,8,85263,3,1672319005),(79563,8,85264,3,1672319005),(79564,8,85265,3,1672319005),(79565,8,85266,3,1672319005),(79566,8,85267,3,1672319005),(79567,8,85268,3,1672319005),(79568,8,85269,3,1672319005),(79569,8,85270,3,1672319005),(79570,8,85271,3,1672319005),(79571,8,85272,3,1672319005),(79572,8,85273,3,1672319005),(79573,8,85274,3,1672319005),(79574,8,85275,3,1672319005),(79575,8,85276,3,1672319005),(79576,8,85277,3,1672319005),(79577,8,85278,3,1672319005),(79578,8,85279,3,1672319005),(79579,8,85280,3,1672319005),(79580,8,85281,3,1672319005),(79581,8,85282,3,1672319005),(79582,8,85283,3,1672319005),(79583,8,85284,3,1672319005),(79584,8,85285,3,1672319005),(79585,8,85286,3,1672319005),(79586,8,85287,3,1672319005),(79587,8,85288,3,1672319005),(79588,8,85289,3,1672319005),(79589,8,85290,3,1672319005),(79590,8,85291,3,1672319005),(79591,8,85292,3,1672319005),(79592,8,85293,3,1672319005),(79593,8,85294,3,1672319005),(79594,8,85295,3,1672319005),(79595,8,85296,3,1672319005),(79596,8,85297,3,1672319005),(79597,8,85298,3,1672319005),(79598,8,85299,3,1672319005),(79599,8,85300,3,1672319005),(79600,8,85301,3,1672319005),(79601,8,85302,3,1672319005),(79602,8,85303,3,1672319005),(79603,8,85304,3,1672319005),(79604,8,85305,3,1672319005),(79605,8,85306,3,1672319005),(79606,8,85307,3,1672319005),(79607,8,85308,3,1672319005),(79608,8,85309,3,1672319005),(79609,8,85310,3,1672319005),(79610,8,85311,3,1672319005),(79611,8,85312,3,1672319005),(79612,8,85313,3,1672319005),(79613,8,85314,3,1672319005),(79614,8,85315,3,1672319005),(79615,8,85316,3,1672319005),(79616,8,85317,3,1672319005),(79617,8,85318,3,1672319005),(79618,8,85319,3,1672319005),(79619,8,85320,3,1672319005),(79620,8,85321,3,1672319005),(79621,8,85322,3,1672319005),(79622,8,85323,3,1672319005),(79623,8,85324,3,1672319005),(79624,8,85325,3,1672319005),(79625,8,85326,3,1672319005),(79626,8,85327,3,1672319005),(79627,8,85328,3,1672319005),(79628,8,85329,3,1672319005),(79629,8,85330,3,1672319005),(79630,8,85331,3,1672319005),(79631,8,85332,3,1672319005),(79632,8,85333,3,1672319005),(79633,8,85334,3,1672319005),(79634,8,85335,3,1672319005),(79635,8,85336,3,1672319005),(79636,8,85337,3,1672319005),(79637,8,85338,3,1672319005),(79638,8,85339,3,1672319005),(79639,8,85340,3,1672319005),(79640,8,85341,3,1672319005),(79641,8,85342,3,1672319005),(79642,8,85343,3,1672319005),(79643,8,85344,3,1672319005),(79644,8,85345,3,1672319005),(79645,8,85346,3,1672319005),(79646,8,85347,3,1672319005),(79647,8,85348,3,1672319005),(79648,8,85349,3,1672319005),(79649,8,85350,3,1672319005),(79650,8,85351,3,1672319005),(79651,8,85352,3,1672319005),(79652,8,85353,3,1672319005),(79653,8,85354,3,1672319005),(79654,8,85355,3,1672319005),(79655,8,85356,3,1672319005),(79656,8,85357,3,1672319005),(79657,8,85358,3,1672319005),(79658,8,85359,3,1672319005),(79659,8,85360,3,1672319005),(79660,8,85361,3,1672319005),(79661,8,85362,3,1672319005),(79662,8,85363,3,1672319005),(79663,8,85364,3,1672319005),(79664,8,85365,3,1672319005),(79665,8,85366,3,1672319005),(79666,8,85367,3,1672319005),(79667,8,85368,3,1672319005),(79668,8,85369,3,1672319005),(79669,8,85370,3,1672319005),(79670,8,85371,3,1672319005),(79671,8,85372,3,1672319005),(79672,8,85373,3,1672319005),(79673,8,85374,3,1672319005),(79674,8,85375,3,1672319005),(79675,8,85376,3,1672319005),(79676,8,85377,3,1672319005),(79677,8,85378,3,1672319005),(79678,8,85379,3,1672319005),(79679,8,85380,3,1672319005),(79680,8,85381,3,1672319005),(79681,8,85382,3,1672319005),(79682,8,85383,3,1672319005),(79683,8,85384,3,1672319005),(79684,8,85385,3,1672319005),(79685,8,85386,3,1672319005),(79686,8,85387,3,1672319005),(79687,8,85388,3,1672319005),(79688,8,85389,3,1672319005),(79689,8,85390,3,1672319005),(79690,8,85391,3,1672319005),(79691,8,85392,3,1672319005),(79692,8,85393,3,1672319005),(79693,8,85394,3,1672319005),(79694,8,85395,3,1672319005),(79695,8,85396,3,1672319005),(79696,8,85397,3,1672319005),(79697,8,85398,3,1672319005),(79698,8,85399,3,1672319005),(79699,8,85400,3,1672319005),(79700,8,85401,3,1672319005),(79701,8,85402,3,1672319005),(79702,8,85403,3,1672319005),(79703,8,85404,3,1672319005),(79704,8,85405,3,1672319005),(79705,8,85406,3,1672319005),(79706,8,85407,3,1672319005),(79707,8,85408,3,1672319005),(79708,8,85409,3,1672319005),(79709,8,85410,3,1672319005),(79710,8,85411,3,1672319005),(79711,8,85412,3,1672319005),(79712,8,85413,3,1672319005),(79713,8,85414,3,1672319005),(79714,8,85415,3,1672319005),(79715,8,85416,3,1672319005),(79716,8,85417,3,1672319005),(79717,8,85418,3,1672319005),(79718,8,85419,3,1672319005),(79719,8,85420,3,1672319005),(79720,8,85421,3,1672319005),(79721,8,85422,3,1672319005),(79722,8,85423,3,1672319005),(79723,8,85424,3,1672319005),(79724,8,85425,3,1672319005),(79725,8,85426,3,1672319005),(79726,8,85427,3,1672319005),(79727,8,85428,3,1672319005),(79728,8,85429,3,1672319005),(79729,8,85430,3,1672319005),(79730,8,85431,3,1672319005),(79731,8,85432,3,1672319005),(79732,8,85433,3,1672319005),(79733,8,85434,3,1672319005),(79734,8,85435,3,1672319005),(79735,8,85436,3,1672319005),(79736,8,85437,3,1672319005),(79737,8,85438,3,1672319005),(79738,8,85439,3,1672319005),(79739,8,85440,3,1672319005),(79740,8,85441,3,1672319005),(79741,8,85442,3,1672319005),(79742,8,85443,3,1672319005),(79743,8,85444,3,1672319005),(79744,8,85445,3,1672319005),(79745,8,85446,3,1672319005),(79746,8,85447,3,1672319005),(79747,8,85448,3,1672319005),(79748,8,85449,3,1672319005),(79749,8,85450,3,1672319005),(79750,8,85451,3,1672319005),(79751,8,85452,3,1672319005),(79752,8,85453,3,1672319005),(79753,8,85454,3,1672319005),(79754,8,85455,3,1672319005),(79755,8,85456,3,1672319005),(79756,8,85457,3,1672319005),(79757,8,85458,3,1672319005),(79758,8,85459,3,1672319005),(79759,8,85460,3,1672319005),(79760,8,85461,3,1672319005),(79761,8,85462,3,1672319005),(79762,8,85463,3,1672319005),(79763,8,85464,3,1672319005),(79764,8,85465,3,1672319005),(79765,8,85466,3,1672319005),(79766,8,85467,3,1672319005),(79767,8,85468,3,1672319005),(79768,8,85469,3,1672319005),(79769,8,85470,3,1672319005),(79770,8,85471,3,1672319005),(79771,8,85472,3,1672319005),(79772,8,85473,3,1672319005),(79773,8,85474,3,1672319005),(79774,8,85475,3,1672319005),(79775,8,85476,3,1672319005),(79776,8,85477,3,1672319005),(79777,8,85478,3,1672319005),(79778,8,85479,3,1672319005),(79779,8,85480,3,1672319005),(79780,8,85481,3,1672319005),(79781,8,85482,3,1672319005),(79782,8,85483,3,1672319005),(79783,8,85484,3,1672319005),(79784,8,85485,3,1672319005),(79785,8,85486,3,1672319005),(79786,8,85487,3,1672319005),(79787,8,85488,3,1672319005),(79788,8,85489,3,1672319005),(79789,8,85490,3,1672319005),(79790,8,85491,3,1672319005),(79791,8,85492,3,1672319005),(79792,8,85493,3,1672319005),(79793,8,85494,3,1672319005),(79794,8,85495,3,1672319005),(79795,8,85496,3,1672319005),(79796,8,85497,3,1672319005),(79797,8,85498,3,1672319005),(79798,8,85499,3,1672319005),(79799,8,85500,3,1672319005),(79800,8,85501,3,1672319005),(79801,8,85502,3,1672319005),(79802,8,85503,3,1672319005),(79803,8,85504,3,1672319005),(79804,8,85505,3,1672319005),(79805,8,85506,3,1672319005),(79806,8,85507,3,1672319005),(79807,8,85508,3,1672319005),(79808,8,85509,3,1672319005),(79809,8,85510,3,1672319005),(79810,8,85511,3,1672319005),(79811,8,85512,3,1672319005),(79812,8,85513,3,1672319005),(79813,8,85514,3,1672319005),(79814,8,85515,3,1672319005),(79815,8,85516,3,1672319005),(79816,8,85517,3,1672319005),(79817,8,85518,3,1672319005),(79818,8,85519,3,1672319005),(79819,8,85520,3,1672319005),(79820,8,85521,3,1672319005),(79821,8,85522,3,1672319005),(79822,8,85523,3,1672319005),(79823,8,85524,3,1672319005),(79824,8,85525,3,1672319005),(79825,8,85526,3,1672319005),(79826,8,85527,3,1672319005),(79827,8,85528,3,1672319005),(79828,8,85529,3,1672319005),(79829,8,85530,3,1672319005),(79830,8,85531,3,1672319005),(79831,8,85532,3,1672319005),(79832,8,85533,3,1672319005),(79833,8,85534,3,1672319005),(79834,8,85535,3,1672319005),(79835,8,85536,3,1672319005),(79836,8,85537,3,1672319005),(79837,8,85538,3,1672319005),(79838,8,85539,3,1672319005),(79839,8,85540,3,1672319005),(79840,8,85541,3,1672319005),(79841,8,85542,3,1672319005),(79842,8,85543,3,1672319005),(79843,8,85544,3,1672319005),(79844,8,85545,3,1672319005),(79845,8,85546,3,1672319005),(79846,8,85547,3,1672319005),(79847,8,85548,3,1672319005),(79848,8,85549,3,1672319005),(79849,8,85550,3,1672319005),(79850,8,85551,3,1672319005),(79851,8,85552,3,1672319005),(79852,8,85553,3,1672319005),(79853,8,85554,3,1672319005),(79854,8,85555,3,1672319005),(79855,8,85556,3,1672319005),(79856,8,85557,3,1672319005),(79857,8,85558,3,1672319005),(79858,8,85559,3,1672319005),(79859,8,85560,3,1672319005),(79860,8,85561,3,1672319005),(79861,8,85562,3,1672319005),(79862,8,85563,3,1672319005),(79863,8,85564,3,1672319005),(79864,8,85565,3,1672319005),(79865,8,85566,3,1672319005),(79866,8,85567,3,1672319005),(79867,8,85568,3,1672319005),(79868,8,85569,3,1672319005),(79869,8,85570,3,1672319005),(79870,8,85571,3,1672319005),(79871,8,85572,3,1672319005),(79872,8,85573,3,1672319005),(79873,8,85574,3,1672319005),(79874,8,85575,3,1672319005),(79875,8,85576,3,1672319005),(79876,8,85577,3,1672319005),(79877,8,85578,3,1672319005),(79878,8,85579,3,1672319005),(79879,8,85580,3,1672319005),(79880,8,85581,3,1672319005),(79881,8,85582,3,1672319005),(79882,8,85583,3,1672319005),(79883,8,85584,3,1672319005),(79884,8,85585,3,1672319005),(79885,8,85586,3,1672319005),(79886,8,85587,3,1672319005),(79887,8,85588,3,1672319005),(79888,8,85589,3,1672319005),(79889,8,85590,3,1672319005),(79890,8,85591,3,1672319005),(79891,8,85592,3,1672319005),(79892,8,85593,3,1672319005),(79893,8,85594,3,1672319005),(79894,8,85595,3,1672319005),(79895,8,85596,3,1672319005),(79896,8,85597,3,1672319005),(79897,8,85598,3,1672319005),(79898,8,85599,3,1672319005),(79899,8,85600,3,1672319005),(79900,8,85601,3,1672319005),(79901,8,85602,3,1672319005),(79902,8,85603,3,1672319005),(79903,8,85604,3,1672319005),(79904,8,85605,3,1672319005),(79905,8,85606,3,1672319005),(79906,8,85607,3,1672319005),(79907,8,85608,3,1672319005),(79908,8,85609,3,1672319005),(79909,8,85610,3,1672319005),(79910,8,85611,3,1672319005),(79911,8,85612,3,1672319005),(79912,8,85613,3,1672319005),(79913,8,85614,3,1672319005),(79914,8,85615,3,1672319005),(79915,8,85616,3,1672319005),(79916,8,85617,3,1672319005),(79917,8,85618,3,1672319005),(79918,8,85619,3,1672319005),(79919,8,85620,3,1672319005),(79920,8,85621,3,1672319005),(79921,8,85622,3,1672319005),(79922,8,85623,3,1672319005),(79923,8,85624,3,1672319005),(79924,8,85625,3,1672319005),(79925,8,85626,3,1672319005),(79926,8,85627,3,1672319005),(79927,8,85628,3,1672319005),(79928,8,85629,3,1672319005),(79929,8,85630,3,1672319005),(79930,8,85631,3,1672319005),(79931,8,85632,3,1672319005),(79932,8,85633,3,1672319005),(79933,8,85634,3,1672319005),(79934,8,85635,3,1672319005),(79935,8,85636,3,1672319005),(79936,8,85637,3,1672319005),(79937,8,85638,3,1672319005),(79938,8,85639,3,1672319005),(79939,8,85640,3,1672319005),(79940,8,85641,3,1672319005),(79941,8,85642,3,1672319005),(79942,8,85643,3,1672319005),(79943,8,85644,3,1672319005),(79944,8,85645,3,1672319005),(79945,8,85646,3,1672319005),(79946,8,85647,3,1672319005),(79947,8,85648,3,1672319005),(79948,8,85649,3,1672319005),(79949,8,85650,3,1672319005),(79950,8,85651,3,1672319005),(79951,8,85652,3,1672319005),(79952,8,85653,3,1672319005),(79953,8,85654,3,1672319005),(79954,8,85655,3,1672319005),(79955,8,85656,3,1672319005),(79956,8,85657,3,1672319005),(79957,8,85658,3,1672319005),(79958,8,85659,3,1672319005),(79959,8,85660,3,1672319005),(79960,8,85661,3,1672319005),(79961,8,85662,3,1672319005),(79962,8,85663,3,1672319005),(79963,8,85664,3,1672319005),(79964,8,85665,3,1672319005),(79965,8,85666,3,1672319005),(79966,8,85667,3,1672319005),(79967,8,85668,3,1672319005),(79968,8,85669,3,1672319005),(79969,8,85670,3,1672319005),(79970,8,85671,3,1672319005),(79971,8,85672,3,1672319005),(79972,8,85673,3,1672319005),(79973,8,85674,3,1672319005),(79974,8,85675,3,1672319005),(79975,8,85676,3,1672319005),(79976,8,85677,3,1672319005),(79977,8,85678,3,1672319005),(79978,8,85679,3,1672319005),(79979,8,85680,3,1672319005),(79980,8,85681,3,1672319005),(79981,8,85682,3,1672319005),(79982,8,85683,3,1672319005),(79983,8,85684,3,1672319005),(79984,8,85685,3,1672319005),(79985,8,85686,3,1672319005),(79986,8,85687,3,1672319005),(79987,8,85688,3,1672319005),(79988,8,85689,3,1672319005),(79989,8,85690,3,1672319005),(79990,8,85691,3,1672319005),(79991,8,85692,3,1672319005),(79992,8,85693,3,1672319005),(79993,8,85694,3,1672319005),(79994,8,85695,3,1672319005),(79995,8,85696,3,1672319005),(79996,8,85697,3,1672319005),(79997,8,85698,3,1672319005),(79998,8,85699,3,1672319005),(79999,8,85700,3,1672319005),(80000,8,85701,3,1672319005),(80001,8,85702,3,1672319005),(80002,8,85703,3,1672319005),(80003,8,85704,3,1672319005),(80004,8,85705,3,1672319005),(80005,8,85706,3,1672319005),(80006,8,85707,3,1672319005),(80007,8,85708,3,1672319005),(80008,8,85709,3,1672319005),(80009,8,85710,3,1672319005),(80010,8,85711,3,1672319005),(80011,8,85712,3,1672319005),(80012,8,85713,3,1672319005),(80013,8,85714,3,1672319005),(80014,8,85715,3,1672319005),(80015,8,85716,3,1672319005),(80016,8,85717,3,1672319005),(80017,8,85718,3,1672319005),(80018,8,85719,3,1672319005),(80019,8,85720,3,1672319005),(80020,8,85721,3,1672319005),(80021,8,85722,3,1672319005),(80022,8,85723,3,1672319005),(80023,8,85724,3,1672319005),(80024,8,85725,3,1672319005),(80025,8,85726,3,1672319005),(80026,8,85727,3,1672319005),(80027,8,85728,3,1672319005),(80028,8,85729,3,1672319005),(80029,8,85730,3,1672319005),(80030,8,85731,3,1672319005),(80031,8,85732,3,1672319005),(80032,8,85733,3,1672319005),(80033,8,85734,3,1672319005),(80034,8,85735,3,1672319005),(80035,8,85736,3,1672319005),(80036,8,85737,3,1672319005),(80037,8,85738,3,1672319005),(80038,8,85739,3,1672319005),(80039,8,85740,3,1672319005),(80040,8,85741,3,1672319005),(80041,8,85742,3,1672319005),(80042,8,85743,3,1672319005),(80043,8,85744,3,1672319005),(80044,8,85745,3,1672319005),(80045,8,85746,3,1672319005),(80046,8,85747,3,1672319005),(80047,8,85748,3,1672319005),(80048,8,85749,3,1672319005),(80049,8,85750,3,1672319005),(80050,8,85751,3,1672319005),(80051,8,85752,3,1672319005),(80052,8,85753,3,1672319005),(80053,8,85754,3,1672319005),(80054,8,85755,3,1672319005),(80055,8,85756,3,1672319005),(80056,8,85757,3,1672319005),(80057,8,85758,3,1672319005),(80058,8,85759,3,1672319005),(80059,8,85760,3,1672319005),(80060,8,85761,3,1672319005),(80061,8,85762,3,1672319005),(80062,8,85763,3,1672319005),(80063,8,85764,3,1672319005),(80064,8,85765,3,1672319005),(80065,8,85766,3,1672319005),(80066,8,85767,3,1672319005),(80067,8,85768,3,1672319005),(80068,8,85769,3,1672319005),(80069,8,85770,3,1672319005),(80070,8,85771,3,1672319005),(80071,8,85772,3,1672319005),(80072,8,85773,3,1672319005),(80073,8,85774,3,1672319005),(80074,8,85775,3,1672319005),(80075,8,85776,3,1672319005),(80076,8,85777,3,1672319005),(80077,8,85778,3,1672319005),(80078,8,85779,3,1672319005),(80079,8,85780,3,1672319005),(80080,8,85781,3,1672319005),(80081,8,85782,3,1672319005),(80082,8,85783,3,1672319005),(80083,8,85784,3,1672319005),(80084,8,85785,3,1672319005),(80085,8,85786,3,1672319005),(80086,8,85787,3,1672319005),(80087,8,85788,3,1672319005),(80088,8,85789,3,1672319005),(80089,8,85790,3,1672319005),(80090,8,85791,3,1672319005),(80091,8,85792,3,1672319005),(80092,8,85793,3,1672319005),(80093,8,85794,3,1672319005),(80094,8,85795,3,1672319005),(80095,8,85796,3,1672319005),(80096,8,85797,3,1672319005),(80097,8,85798,3,1672319005),(80098,8,85799,3,1672319005),(80099,8,85800,3,1672319005),(80100,8,85801,3,1672319005),(80101,8,85802,3,1672319005),(80102,8,85803,3,1672319005),(80103,8,85804,3,1672319005),(80104,8,85805,3,1672319005),(80105,8,85806,3,1672319005),(80106,8,85807,3,1672319005),(80107,8,85808,3,1672319005),(80108,8,85809,3,1672319005),(80109,8,85810,3,1672319005),(80110,8,85811,3,1672319005),(80111,8,85812,3,1672319005),(80112,8,85813,3,1672319005),(80113,8,85814,3,1672319005),(80114,8,85815,3,1672319005),(80115,8,85816,3,1672319005),(80116,8,85817,3,1672319005),(80117,8,85818,3,1672319005),(80118,8,85819,3,1672319005),(80119,8,85820,3,1672319005),(80120,8,85821,3,1672319005),(80121,8,85822,3,1672319005),(80122,8,85823,3,1672319005),(80123,8,85824,3,1672319005),(80124,8,85825,3,1672319005),(80125,8,85826,3,1672319005),(80126,8,85827,3,1672319005),(80127,8,85828,3,1672319005),(80128,8,85829,3,1672319005),(80129,8,85830,3,1672319005),(80130,8,85831,3,1672319005),(80131,8,85832,3,1672319005),(80132,8,85833,3,1672319005),(80133,8,85834,3,1672319005),(80134,8,85835,3,1672319005),(80135,8,85836,3,1672319005),(80136,8,85837,3,1672319005),(80137,8,85838,3,1672319005),(80138,8,85839,3,1672319005),(80139,8,85840,3,1672319005),(80140,8,85841,3,1672319005),(80141,8,85842,3,1672319005),(80142,8,85843,3,1672319005),(80143,8,85844,3,1672319005),(80144,8,85845,3,1672319005),(80145,8,85846,3,1672319005),(80146,8,85847,3,1672319005),(80147,8,85848,3,1672319005),(80148,8,85849,3,1672319005),(80149,8,85850,3,1672319005),(80150,8,85851,3,1672319005),(80151,8,85852,3,1672319005),(80152,8,85853,3,1672319005),(80153,8,85854,3,1672319005),(80154,8,85855,3,1672319005),(80155,8,85856,3,1672319005),(80156,8,85857,3,1672319005),(80157,8,85858,3,1672319005),(80158,8,85859,3,1672319005),(80159,8,85860,3,1672319005),(80160,8,85861,3,1672319005),(80161,8,85862,3,1672319005),(80162,8,85863,3,1672319005),(80163,8,85864,3,1672319005),(80164,8,85865,3,1672319005),(80165,8,85866,3,1672319005),(80166,8,85867,3,1672319005),(80167,8,85868,3,1672319005),(80168,8,85869,3,1672319005),(80169,8,85870,3,1672319005),(80170,8,85871,3,1672319005),(80171,8,85872,3,1672319005),(80172,8,85873,3,1672319005),(80173,8,85874,3,1672319005),(80174,8,85875,3,1672319005),(80175,8,85876,3,1672319005),(80176,8,85877,3,1672319005),(80177,8,85878,3,1672319005),(80178,8,85879,3,1672319005),(80179,8,85880,3,1672319005),(80180,8,85881,3,1672319005),(80181,8,85882,3,1672319005),(80182,8,85883,3,1672319005),(80183,8,85884,3,1672319005),(80184,8,85885,3,1672319005),(80185,8,85886,3,1672319005),(80186,8,85887,3,1672319005),(80187,8,85888,3,1672319005),(80188,8,85889,3,1672319005),(80189,8,85890,3,1672319005),(80190,8,85891,3,1672319005),(80191,8,85892,3,1672319005),(80192,8,85893,3,1672319005),(80193,8,85894,3,1672319005),(80194,8,85895,3,1672319005),(80195,8,85896,3,1672319005),(80196,8,85897,3,1672319005),(80197,8,85898,3,1672319005),(80198,8,85899,3,1672319005),(80199,8,85900,3,1672319005),(80200,8,85901,3,1672319005),(80201,8,85902,3,1672319005),(80202,8,85903,3,1672319005),(80203,8,85904,3,1672319005),(80204,8,85905,3,1672319005),(80205,8,85906,3,1672319005),(80206,8,85907,3,1672319005),(80207,8,85908,3,1672319005),(80208,8,85909,3,1672319005),(80209,8,85910,3,1672319005),(80210,8,85911,3,1672319005),(80211,8,85912,3,1672319005),(80212,8,85913,3,1672319005),(80213,8,85914,3,1672319005),(80214,8,85915,3,1672319005),(80215,8,85916,3,1672319005),(80216,8,85917,3,1672319005),(80217,8,85918,3,1672319005),(80218,8,85919,3,1672319005),(80219,8,85920,3,1672319005),(80220,8,85921,3,1672319005),(80221,8,85922,3,1672319005),(80222,8,85923,3,1672319005),(80223,8,85924,3,1672319005),(80224,8,85925,3,1672319005),(80225,8,85926,3,1672319005),(80226,8,85927,3,1672319005),(80227,8,85928,3,1672319005),(80228,8,85929,3,1672319005),(80229,8,85930,3,1672319005),(80230,8,85931,3,1672319005),(80231,8,85932,3,1672319005),(80232,8,85933,3,1672319005),(80233,8,85934,3,1672319005),(80234,8,85935,3,1672319005),(80235,8,85936,3,1672319005),(80236,8,85937,3,1672319005),(80237,8,85938,3,1672319005),(80238,8,85939,3,1672319005),(80239,8,85940,3,1672319005),(80240,8,85941,3,1672319005),(80241,8,85942,3,1672319005),(80242,8,85943,3,1672319005),(80243,8,85944,3,1672319005),(80244,8,85945,3,1672319005),(80245,8,85946,3,1672319005),(80246,8,85947,3,1672319005),(80247,8,85948,3,1672319005),(80248,8,85949,3,1672319005),(80249,8,85950,3,1672319005),(80250,8,85951,3,1672319005),(80251,8,85952,3,1672319005),(80252,8,85953,3,1672319005),(80253,8,85954,3,1672319005),(80254,8,85955,3,1672319005),(80255,8,85956,3,1672319005),(80256,8,85957,3,1672319005),(80257,8,85958,3,1672319005),(80258,8,85959,3,1672319005),(80259,8,85960,3,1672319005),(80260,8,85961,3,1672319005),(80261,8,85962,3,1672319005),(80262,8,85963,3,1672319005),(80263,8,85964,3,1672319005),(80264,8,85965,3,1672319005),(80265,8,85966,3,1672319005),(80266,8,85967,3,1672319005),(80267,8,85968,3,1672319005),(80268,8,85975,3,1672319005),(80269,8,85976,3,1672319005),(80270,8,85994,3,1672319005),(80271,8,85995,3,1672319005),(80272,8,85996,3,1672319005),(80273,8,85997,3,1672319005),(80274,8,85998,3,1672319005),(80275,8,85999,3,1672319005),(80276,8,86000,3,1672319005),(80277,8,86001,3,1672319005),(80278,8,86002,3,1672319005),(80279,8,86003,3,1672319005),(80280,8,86004,3,1672319005),(80281,8,86005,3,1672319005),(80282,8,86006,3,1672319005),(80283,8,86007,3,1672319005),(80284,8,86008,3,1672319005),(80285,8,86026,3,1672319005),(80286,8,86027,3,1672319005),(80287,8,86028,3,1672319005),(80288,8,86029,3,1672319005),(80289,8,86030,3,1672319005),(80290,8,86031,3,1672319005),(80291,8,86032,3,1672319005),(80292,8,86033,3,1672319005),(80293,8,86034,3,1672319005),(80294,8,86035,3,1672319005),(80295,8,86036,3,1672319005),(80296,8,86037,3,1672319005),(80297,8,86038,3,1672319005),(80298,8,86039,3,1672319005),(80299,8,86040,3,1672319005),(80300,8,86058,3,1672319005),(80301,8,86059,3,1672319005),(80302,8,86060,3,1672319005),(80303,8,86061,3,1672319005),(80304,8,86062,3,1672319005),(80305,8,86063,3,1672319005),(80306,8,86064,3,1672319005),(80307,8,86065,3,1672319005),(80308,8,86066,3,1672319005),(80309,8,86067,3,1672319005),(80310,8,86068,3,1672319005),(80311,8,86069,3,1672319005),(80312,8,86070,3,1672319005),(80313,8,86071,3,1672319005),(80314,8,86072,3,1672319005),(80315,8,86090,3,1672319005),(80316,8,86091,3,1672319005),(80317,8,86092,3,1672319005),(80318,8,86093,3,1672319005),(80319,8,86094,3,1672319005),(80320,8,86095,3,1672319005),(80321,8,86096,3,1672319005),(80322,8,86097,3,1672319005),(80323,8,86098,3,1672319005),(80324,8,86099,3,1672319005),(80325,8,86100,3,1672319005),(80326,8,86101,3,1672319005),(80327,8,86102,3,1672319005),(80328,8,86103,3,1672319005),(80329,8,86104,3,1672319005),(80330,8,86122,3,1672319005),(80331,8,86123,3,1672319005),(80332,8,86124,3,1672319005),(80333,8,86125,3,1672319005),(80334,8,86126,3,1672319005),(80335,8,86127,3,1672319005),(80336,8,86128,3,1672319005),(80337,8,86129,3,1672319005),(80338,8,86130,3,1672319005),(80339,8,86131,3,1672319005),(80340,8,86132,3,1672319005),(80341,8,86133,3,1672319005),(80342,8,86134,3,1672319005),(80343,8,86135,3,1672319005),(80344,8,86136,3,1672319005),(80345,8,86154,3,1672319005),(80346,8,86155,3,1672319005),(80347,8,86156,3,1672319005),(80348,8,86157,3,1672319005),(80349,8,86158,3,1672319005),(80350,8,86159,3,1672319005),(80351,8,86160,3,1672319005),(80352,8,86161,3,1672319005),(80353,8,86162,3,1672319005),(80354,8,86163,3,1672319005),(80355,8,86164,3,1672319005),(80356,8,86165,3,1672319005),(80357,8,86166,3,1672319005),(80358,8,86167,3,1672319005),(80359,8,86168,3,1672319005),(80360,8,86186,3,1672319005),(80361,8,86187,3,1672319005),(80362,8,86188,3,1672319005),(80363,8,86189,3,1672319005),(80364,8,86190,3,1672319005),(80365,8,86191,3,1672319005),(80366,8,86192,3,1672319005),(80367,8,86193,3,1672319005),(80368,8,86194,3,1672319005),(80369,8,86195,3,1672319005),(80370,8,86196,3,1672319005),(80371,8,86197,3,1672319005),(80372,8,86198,3,1672319005),(80373,8,86199,3,1672319005),(80374,8,86200,3,1672319005),(80375,8,86218,3,1672319005),(80376,8,86219,3,1672319005),(80377,8,86220,3,1672319005),(80378,8,86221,3,1672319005),(80379,8,86222,3,1672319005),(80380,8,86223,3,1672319005),(80381,8,86224,3,1672319005),(80382,8,86225,3,1672319005),(80383,8,86226,3,1672319005),(80384,8,86227,3,1672319005),(80385,8,86228,3,1672319005),(80386,8,86229,3,1672319005),(80387,8,86230,3,1672319005),(80388,8,86231,3,1672319005),(80389,8,86232,3,1672319005),(80390,8,86250,3,1672319005),(80391,8,86251,3,1672319005),(80392,8,86252,3,1672319005),(80393,8,86253,3,1672319005),(80394,8,86254,3,1672319005),(80395,8,86255,3,1672319005),(80396,8,86256,3,1672319005),(80397,8,86257,3,1672319005),(80398,8,86258,3,1672319005),(80399,8,86259,3,1672319005),(80400,8,86260,3,1672319005),(80401,8,86261,3,1672319005),(80402,8,86262,3,1672319005),(80403,8,86263,3,1672319005),(80404,8,86264,3,1672319005),(80405,8,86282,3,1672319005),(80406,8,86283,3,1672319005),(80407,8,86284,3,1672319005),(80408,8,86285,3,1672319005),(80409,8,86286,3,1672319005),(80410,8,86287,3,1672319005),(80411,8,86288,3,1672319005),(80412,8,86289,3,1672319005),(80413,8,86290,3,1672319005),(80414,8,86291,3,1672319005),(80415,8,86292,3,1672319005),(80416,8,86293,3,1672319005),(80417,8,86294,3,1672319005),(80418,8,86295,3,1672319005),(80419,8,86296,3,1672319005),(80420,8,86314,3,1672319005),(80421,8,86315,3,1672319005),(80422,8,86316,3,1672319005),(80423,8,86317,3,1672319005),(80424,8,86318,3,1672319005),(80425,8,86319,3,1672319005),(80426,8,86320,3,1672319005),(80427,8,86321,3,1672319005),(80428,8,86322,3,1672319005),(80429,8,86323,3,1672319005),(80430,8,86324,3,1672319005),(80431,8,86325,3,1672319005),(80432,8,86326,3,1672319005),(80433,8,86327,3,1672319005),(80434,8,86328,3,1672319005),(80435,8,86346,3,1672319005),(80436,8,86347,3,1672319005),(80437,8,86348,3,1672319005),(80438,8,86349,3,1672319005),(80439,8,86350,3,1672319005),(80440,8,86351,3,1672319005),(80441,8,86352,3,1672319005),(80442,8,86353,3,1672319005),(80443,8,86354,3,1672319005),(80444,8,86355,3,1672319005),(80445,8,86356,3,1672319005),(80446,8,86357,3,1672319005),(80447,8,86358,3,1672319005),(80448,8,86359,3,1672319005),(80449,8,86360,3,1672319005),(80450,8,86378,3,1672319005),(80451,8,86379,3,1672319005),(80452,8,86380,3,1672319005),(80453,8,86381,3,1672319005),(80454,8,86382,3,1672319005),(80455,8,86383,3,1672319005),(80456,8,86384,3,1672319005),(80457,8,86385,3,1672319005),(80458,8,86386,3,1672319005),(80459,8,86387,3,1672319005),(80460,8,86388,3,1672319005),(80461,8,86389,3,1672319005),(80462,8,86390,3,1672319005),(80463,8,86391,3,1672319005),(80464,8,86392,3,1672319005),(80465,8,86410,3,1672319005),(80466,8,86411,3,1672319005),(80467,8,86412,3,1672319005),(80468,8,86413,3,1672319005),(80469,8,86414,3,1672319005),(80470,8,86415,3,1672319005),(80471,8,86416,3,1672319005),(80472,8,86417,3,1672319005),(80473,8,86418,3,1672319005),(80474,8,86419,3,1672319005),(80475,8,86420,3,1672319005),(80476,8,86421,3,1672319005),(80477,8,86422,3,1672319005),(80478,8,86423,3,1672319005),(80479,8,86424,3,1672319005),(80480,8,86442,3,1672319005),(80481,8,86443,3,1672319005),(80482,8,86444,3,1672319005),(80483,8,86445,3,1672319005),(80484,8,86446,3,1672319005),(80485,8,86447,3,1672319005),(80486,8,86448,3,1672319005),(80487,8,86449,3,1672319005),(80488,8,86450,3,1672319005),(80489,8,86451,3,1672319005),(80490,8,86452,3,1672319005),(80491,8,86453,3,1672319005),(80492,8,86454,3,1672319005),(80493,8,86455,3,1672319005),(80494,8,86456,3,1672319005),(80495,8,86474,3,1672319005),(80496,8,86475,3,1672319005),(80497,8,86476,3,1672319005),(80498,8,86477,3,1672319005),(80499,8,86478,3,1672319005),(80500,8,86479,3,1672319005),(80501,8,86480,3,1672319005),(80502,8,86481,3,1672319005),(80503,8,86482,3,1672319005),(80504,8,86483,3,1672319005),(80505,8,86484,3,1672319005),(80506,8,86485,3,1672319005),(80507,8,86486,3,1672319005),(80508,8,86487,3,1672319005),(80509,8,86488,3,1672319005),(80510,8,86506,3,1672319005),(80511,8,86507,3,1672319005),(80512,8,86508,3,1672319005),(80513,8,86509,3,1672319005),(80514,8,86510,3,1672319005),(80515,8,86511,3,1672319005),(80516,8,86512,3,1672319005),(80517,8,86513,3,1672319005),(80518,8,86514,3,1672319005),(80519,8,86515,3,1672319005),(80520,8,86516,3,1672319005),(80521,8,86517,3,1672319005),(80522,8,86518,3,1672319005),(80523,8,86519,3,1672319005),(80524,8,86520,3,1672319005),(80525,8,86538,3,1672319005),(80526,8,86539,3,1672319005),(80527,8,86540,3,1672319005),(80528,8,86541,3,1672319005),(80529,8,86542,3,1672319005),(80530,8,86543,3,1672319005),(80531,8,86544,3,1672319005),(80532,8,86545,3,1672319005),(80533,8,86546,3,1672319005),(80534,8,86547,3,1672319005),(80535,8,86548,3,1672319005),(80536,8,86549,3,1672319005),(80537,8,86550,3,1672319005),(80538,8,86551,3,1672319005),(80539,8,86552,3,1672319005),(80540,8,86570,3,1672319005),(80541,8,86571,3,1672319005),(80542,8,86572,3,1672319005),(80543,8,86573,3,1672319005),(80544,8,86574,3,1672319005),(80545,8,86575,3,1672319005),(80546,8,86576,3,1672319005),(80547,8,86577,3,1672319005),(80548,8,86578,3,1672319005),(80549,8,86579,3,1672319005),(80550,8,86580,3,1672319005),(80551,8,86581,3,1672319005),(80552,8,86582,3,1672319005),(80553,8,86583,3,1672319005),(80554,8,86584,3,1672319005),(80555,8,86602,3,1672319005),(80556,8,86603,3,1672319005),(80557,8,86604,3,1672319005),(80558,8,86605,3,1672319005),(80559,8,86606,3,1672319005),(80560,8,86607,3,1672319005),(80561,8,86608,3,1672319005),(80562,8,86609,3,1672319005),(80563,8,86610,3,1672319005),(80564,8,86611,3,1672319005),(80565,8,86612,3,1672319005),(80566,8,86613,3,1672319005),(80567,8,86614,3,1672319005),(80568,8,86615,3,1672319005),(80569,8,86616,3,1672319005),(80570,8,86634,3,1672319005),(80571,8,86635,3,1672319005),(80572,8,86636,3,1672319005),(80573,8,86637,3,1672319005),(80574,8,86638,3,1672319005),(80575,8,86639,3,1672319005),(80576,8,86640,3,1672319005),(80577,8,86641,3,1672319005),(80578,8,86642,3,1672319005),(80579,8,86643,3,1672319005),(80580,8,86644,3,1672319005),(80581,8,86645,3,1672319005),(80582,8,86646,3,1672319005),(80583,8,86647,3,1672319005),(80584,8,86648,3,1672319005),(80585,8,86666,3,1672319005),(80586,8,86667,3,1672319005),(80587,8,86668,3,1672319005),(80588,8,86669,3,1672319005),(80589,8,86670,3,1672319005),(80590,8,86671,3,1672319005),(80591,8,86672,3,1672319005),(80592,8,86673,3,1672319005),(80593,8,86674,3,1672319005),(80594,8,86675,3,1672319005),(80595,8,86676,3,1672319005),(80596,8,86677,3,1672319005),(80597,8,86678,3,1672319005),(80598,8,86679,3,1672319005),(80599,8,86680,3,1672319005),(80600,8,86698,3,1672319005),(80601,8,86699,3,1672319005),(80602,8,86700,3,1672319005),(80603,8,86701,3,1672319005),(80604,8,86702,3,1672319005),(80605,8,86703,3,1672319005),(80606,8,86704,3,1672319005),(80607,8,86705,3,1672319005),(80608,8,86706,3,1672319005),(80609,8,86707,3,1672319005),(80610,8,86708,3,1672319005),(80611,8,86709,3,1672319005),(80612,8,86710,3,1672319005),(80613,8,86711,3,1672319005),(80614,8,86712,3,1672319005),(80615,8,86730,3,1672319005),(80616,8,86731,3,1672319005),(80617,8,86732,3,1672319005),(80618,8,86733,3,1672319005),(80619,8,86734,3,1672319005),(80620,8,86735,3,1672319005),(80621,8,86736,3,1672319005),(80622,8,86737,3,1672319005),(80623,8,86738,3,1672319005),(80624,8,86739,3,1672319005),(80625,8,86740,3,1672319005),(80626,8,86741,3,1672319005),(80627,8,86742,3,1672319005),(80628,8,86743,3,1672319005),(80629,8,86744,3,1672319005),(80630,8,86762,3,1672319005),(80631,8,86763,3,1672319005),(80632,8,86764,3,1672319005),(80633,8,86765,3,1672319005),(80634,8,86766,3,1672319005),(80635,8,86767,3,1672319005),(80636,8,86768,3,1672319005),(80637,8,86769,3,1672319005),(80638,8,86770,3,1672319005),(80639,8,86771,3,1672319005),(80640,8,86772,3,1672319005),(80641,8,86773,3,1672319005),(80642,8,86774,3,1672319005),(80643,8,86775,3,1672319005),(80644,8,86776,3,1672319005),(80645,8,86794,3,1672319005),(80646,8,86795,3,1672319005),(80647,8,86796,3,1672319005),(80648,8,86797,3,1672319005),(80649,8,86798,3,1672319005),(80650,8,86799,3,1672319005),(80651,8,86800,3,1672319005),(80652,8,86801,3,1672319005),(80653,8,86802,3,1672319005),(80654,8,86803,3,1672319005),(80655,8,86804,3,1672319005),(80656,8,86805,3,1672319005),(80657,8,86806,3,1672319005),(80658,8,86807,3,1672319005),(80659,8,86808,3,1672319005),(80660,8,86826,3,1672319005),(80661,8,86827,3,1672319005),(80662,8,86828,3,1672319005),(80663,8,86829,3,1672319005),(80664,8,86830,3,1672319005),(80665,8,86831,3,1672319005),(80666,8,86832,3,1672319005),(80667,8,86833,3,1672319005),(80668,8,86834,3,1672319005),(80669,8,86835,3,1672319005),(80670,8,86836,3,1672319005),(80671,8,86837,3,1672319005),(80672,8,86838,3,1672319005),(80673,8,86839,3,1672319005),(80674,8,86840,3,1672319005),(80675,8,86858,3,1672319005),(80676,8,86859,3,1672319005),(80677,8,86860,3,1672319005),(80678,8,86861,3,1672319005),(80679,8,86862,3,1672319005),(80680,8,86863,3,1672319005),(80681,8,86864,3,1672319005),(80682,8,86865,3,1672319005),(80683,8,86866,3,1672319005),(80684,8,86867,3,1672319005),(80685,8,86868,3,1672319005),(80686,8,86869,3,1672319005),(80687,8,86870,3,1672319005),(80688,8,86871,3,1672319005),(80689,8,86872,3,1672319005),(80690,8,86890,3,1672319005),(80691,8,86891,3,1672319005),(80692,8,86892,3,1672319005),(80693,8,86893,3,1672319005),(80694,8,86894,3,1672319005),(80695,8,86895,3,1672319005),(80696,8,86896,3,1672319005),(80697,8,86897,3,1672319005),(80698,8,86898,3,1672319005),(80699,8,86899,3,1672319005),(80700,8,86900,3,1672319005),(80701,8,86901,3,1672319005),(80702,8,86902,3,1672319005),(80703,8,86903,3,1672319005),(80704,8,86904,3,1672319005),(80705,8,86922,3,1672319005),(80706,8,86923,3,1672319005),(80707,8,86924,3,1672319005),(80708,8,86925,3,1672319005),(80709,8,86926,3,1672319005),(80710,8,86927,3,1672319005),(80711,8,86928,3,1672319005),(80712,8,86929,3,1672319005),(80713,8,86930,3,1672319005),(80714,8,86931,3,1672319005),(80715,8,86932,3,1672319005),(80716,8,86933,3,1672319005),(80717,8,86934,3,1672319005),(80718,8,86935,3,1672319005),(80719,8,86936,3,1672319005),(80720,8,86954,3,1672319005),(80721,8,86955,3,1672319005),(80722,8,86956,3,1672319005),(80723,8,86957,3,1672319005),(80724,8,86958,3,1672319005),(80725,8,86959,3,1672319005),(80726,8,86960,3,1672319005),(80727,8,86961,3,1672319005),(80728,8,86962,3,1672319005),(80729,8,86963,3,1672319005),(80730,8,86964,3,1672319005),(80731,8,86965,3,1672319005),(80732,8,86966,3,1672319005),(80733,8,86967,3,1672319005),(80734,8,86968,3,1672319005),(80735,8,86986,3,1672319005),(80736,8,86987,3,1672319005),(80737,8,86988,3,1672319005),(80738,8,86989,3,1672319005),(80739,8,86990,3,1672319005),(80740,8,86991,3,1672319005),(80741,8,86992,3,1672319005),(80742,8,86993,3,1672319005),(80743,8,86994,3,1672319005),(80744,8,86995,3,1672319005),(80745,8,86996,3,1672319005),(80746,8,86997,3,1672319005),(80747,8,86998,3,1672319005),(80748,8,86999,3,1672319005),(80749,8,87000,3,1672319005),(80750,8,87018,3,1672319005),(80751,8,87019,3,1672319005),(80752,8,87020,3,1672319005),(80753,8,87021,3,1672319005),(80754,8,87022,3,1672319005),(80755,8,87023,3,1672319005),(80756,8,87024,3,1672319005),(80757,8,87025,3,1672319005),(80758,8,87026,3,1672319005),(80759,8,87027,3,1672319005),(80760,8,87028,3,1672319005),(80761,8,87029,3,1672319005),(80762,8,87030,3,1672319005),(80763,8,87031,3,1672319005),(80764,8,87032,3,1672319005),(80765,8,87050,3,1672319005),(80766,8,87051,3,1672319005),(80767,8,87052,3,1672319005),(80768,8,87053,3,1672319005),(80769,8,87054,3,1672319005),(80770,8,87055,3,1672319005),(80771,8,87056,3,1672319005),(80772,8,87057,3,1672319005),(80773,8,87058,3,1672319005),(80774,8,87059,3,1672319005),(80775,8,87060,3,1672319005),(80776,8,87061,3,1672319005),(80777,8,87062,3,1672319005),(80778,8,87063,3,1672319005),(80779,8,87064,3,1672319005),(80780,8,87082,3,1672319005),(80781,8,87083,3,1672319005),(80782,8,87084,3,1672319005),(80783,8,87085,3,1672319005),(80784,8,87086,3,1672319005),(80785,8,87087,3,1672319005),(80786,8,87088,3,1672319005),(80787,8,87089,3,1672319005),(80788,8,87090,3,1672319005),(80789,8,87091,3,1672319005),(80790,8,87092,3,1672319005),(80791,8,87093,3,1672319005),(80792,8,87094,3,1672319005),(80793,8,87095,3,1672319005),(80794,8,87096,3,1672319005),(80795,8,87114,3,1672319005),(80796,8,87115,3,1672319005),(80797,8,87116,3,1672319005),(80798,8,87117,3,1672319005),(80799,8,87118,3,1672319005),(80800,8,87119,3,1672319005),(80801,8,87120,3,1672319005),(80802,8,87121,3,1672319005),(80803,8,87122,3,1672319005),(80804,8,87123,3,1672319005),(80805,8,87124,3,1672319005),(80806,8,87125,3,1672319005),(80807,8,87126,3,1672319005),(80808,8,87127,3,1672319005),(80809,8,87128,3,1672319005),(80810,8,87146,3,1672319005),(80811,8,87147,3,1672319005),(80812,8,87148,3,1672319005),(80813,8,87149,3,1672319005),(80814,8,87150,3,1672319005),(80815,8,87151,3,1672319005),(80816,8,87152,3,1672319005),(80817,8,87153,3,1672319005),(80818,8,87154,3,1672319005),(80819,8,87155,3,1672319005),(80820,8,87156,3,1672319005),(80821,8,87157,3,1672319005),(80822,8,87158,3,1672319005),(80823,8,87159,3,1672319005),(80824,8,87160,3,1672319005),(80825,8,87178,3,1672319005),(80826,8,87179,3,1672319005),(80827,8,87180,3,1672319005),(80828,8,87181,3,1672319005),(80829,8,87182,3,1672319005),(80830,8,87183,3,1672319005),(80831,8,87184,3,1672319005),(80832,8,87185,3,1672319005),(80833,8,87186,3,1672319005),(80834,8,87187,3,1672319005),(80835,8,87188,3,1672319005),(80836,8,87189,3,1672319005),(80837,8,87190,3,1672319005),(80838,8,87191,3,1672319005),(80839,8,87192,3,1672319005),(80840,8,87210,3,1672319005),(80841,8,87211,3,1672319005),(80842,8,87212,3,1672319005),(80843,8,87213,3,1672319005),(80844,8,87214,3,1672319005),(80845,8,87215,3,1672319005),(80846,8,87216,3,1672319005),(80847,8,87217,3,1672319005),(80848,8,87218,3,1672319005),(80849,8,87219,3,1672319005),(80850,8,87220,3,1672319005),(80851,8,87221,3,1672319005),(80852,8,87222,3,1672319005),(80853,8,87223,3,1672319005),(80854,8,87224,3,1672319005),(80855,8,87242,3,1672319005),(80856,8,87243,3,1672319005),(80857,8,87244,3,1672319005),(80858,8,87245,3,1672319005),(80859,8,87246,3,1672319005),(80860,8,87247,3,1672319005),(80861,8,87248,3,1672319005),(80862,8,87249,3,1672319005),(80863,8,87250,3,1672319005),(80864,8,87251,3,1672319005),(80865,8,87252,3,1672319005),(80866,8,87253,3,1672319005),(80867,8,87254,3,1672319005),(80868,8,87255,3,1672319005),(80869,8,87256,3,1672319005),(80870,8,87274,3,1672319005),(80871,8,87275,3,1672319005),(80872,8,87276,3,1672319005),(80873,8,87277,3,1672319005),(80874,8,87278,3,1672319005),(80875,8,87279,3,1672319005),(80876,8,87280,3,1672319005),(80877,8,87281,3,1672319005),(80878,8,87282,3,1672319005),(80879,8,87283,3,1672319005),(80880,8,87284,3,1672319005),(80881,8,87285,3,1672319005),(80882,8,87286,3,1672319005),(80883,8,87287,3,1672319005),(80884,8,87288,3,1672319005),(80885,8,87306,3,1672319005),(80886,8,87307,3,1672319005),(80887,8,87308,3,1672319005),(80888,8,87309,3,1672319005),(80889,8,87310,3,1672319005),(80890,8,87311,3,1672319005),(80891,8,87312,3,1672319005),(80892,8,87313,3,1672319005),(80893,8,87314,3,1672319005),(80894,8,87315,3,1672319005),(80895,8,87316,3,1672319005),(80896,8,87317,3,1672319005),(80897,8,87318,3,1672319005),(80898,8,87319,3,1672319005),(80899,8,87320,3,1672319005),(80900,8,87338,3,1672319005),(80901,8,87339,3,1672319005),(80902,8,87340,3,1672319005),(80903,8,87341,3,1672319005),(80904,8,87342,3,1672319005),(80905,8,87343,3,1672319005),(80906,8,87344,3,1672319005),(80907,8,87345,3,1672319005),(80908,8,87346,3,1672319005),(80909,8,87347,3,1672319005),(80910,8,87348,3,1672319005),(80911,8,87349,3,1672319005),(80912,8,87350,3,1672319005),(80913,8,87351,3,1672319005),(80914,8,87352,3,1672319005),(80915,8,87370,3,1672319005),(80916,8,87371,3,1672319005),(80917,8,87372,3,1672319005),(80918,8,87373,3,1672319005),(80919,8,87374,3,1672319005),(80920,8,87375,3,1672319005),(80921,8,87376,3,1672319005),(80922,8,87377,3,1672319005),(80923,8,87378,3,1672319005),(80924,8,87379,3,1672319005),(80925,8,87380,3,1672319005),(80926,8,87381,3,1672319005),(80927,8,87382,3,1672319005),(80928,8,87383,3,1672319005),(80929,8,87384,3,1672319005),(80930,8,87402,3,1672319005),(80931,8,87403,3,1672319005),(80932,8,87404,3,1672319005),(80933,8,87405,3,1672319005),(80934,8,87406,3,1672319005),(80935,8,87407,3,1672319005),(80936,8,87408,3,1672319005),(80937,8,87409,3,1672319005),(80938,8,87410,3,1672319005),(80939,8,87411,3,1672319005),(80940,8,87412,3,1672319005),(80941,8,87413,3,1672319005),(80942,8,87414,3,1672319005),(80943,8,87415,3,1672319005),(80944,8,87416,3,1672319005),(80945,8,87434,3,1672319005),(80946,8,87435,3,1672319005),(80947,8,87436,3,1672319005),(80948,8,87437,3,1672319005),(80949,8,87438,3,1672319005),(80950,8,87439,3,1672319005),(80951,8,87440,3,1672319005),(80952,8,87441,3,1672319005),(80953,8,87442,3,1672319005),(80954,8,87443,3,1672319005),(80955,8,87444,3,1672319005),(80956,8,87445,3,1672319005),(80957,8,87446,3,1672319005),(80958,8,87447,3,1672319005),(80959,8,87448,3,1672319005),(80960,8,87466,3,1672319005),(80961,8,87467,3,1672319005),(80962,8,87468,3,1672319005),(80963,8,87469,3,1672319005),(80964,8,87470,3,1672319005),(80965,8,87471,3,1672319005),(80966,8,87472,3,1672319005),(80967,8,87473,3,1672319005),(80968,8,87474,3,1672319005),(80969,8,87475,3,1672319005),(80970,8,87476,3,1672319005),(80971,8,87477,3,1672319005),(80972,8,87478,3,1672319005),(80973,8,87479,3,1672319005),(80974,8,87480,3,1672319005),(80975,8,87498,3,1672319005),(80976,8,87499,3,1672319005),(80977,8,87500,3,1672319005),(80978,8,87501,3,1672319005),(80979,8,87502,3,1672319005),(80980,8,87503,3,1672319005),(80981,8,87504,3,1672319005),(80982,8,87505,3,1672319005),(80983,8,87506,3,1672319005),(80984,8,87507,3,1672319005),(80985,8,87508,3,1672319005),(80986,8,87509,3,1672319005),(80987,8,87510,3,1672319005),(80988,8,87511,3,1672319005),(80989,8,87512,3,1672319005),(80990,8,87530,3,1672319005),(80991,8,87531,3,1672319005),(80992,8,87532,3,1672319005),(80993,8,87533,3,1672319005),(80994,8,87534,3,1672319005),(80995,8,87535,3,1672319005),(80996,8,87536,3,1672319005),(80997,8,87537,3,1672319005),(80998,8,87538,3,1672319005),(80999,8,87539,3,1672319005),(81000,8,87540,3,1672319005),(81001,8,87541,3,1672319005),(81002,8,87542,3,1672319005),(81003,8,87543,3,1672319005),(81004,8,87544,3,1672319005),(81005,8,87562,3,1672319005),(81006,8,87563,3,1672319005),(81007,8,87564,3,1672319005),(81008,8,87565,3,1672319005),(81009,8,87566,3,1672319005),(81010,8,87567,3,1672319005),(81011,8,87568,3,1672319005),(81012,8,87569,3,1672319005),(81013,8,87570,3,1672319005),(81014,8,87571,3,1672319005),(81015,8,87572,3,1672319005),(81016,8,87573,3,1672319005),(81017,8,87574,3,1672319005),(81018,8,87575,3,1672319005),(81019,8,87576,3,1672319005),(81020,8,87594,3,1672319005),(81021,8,87595,3,1672319005),(81022,8,87596,3,1672319005),(81023,8,87597,3,1672319005),(81024,8,87598,3,1672319005),(81025,8,87599,3,1672319005),(81026,8,87600,3,1672319005),(81027,8,87601,3,1672319005),(81028,8,87602,3,1672319005),(81029,8,87603,3,1672319005),(81030,8,87604,3,1672319005),(81031,8,87605,3,1672319005),(81032,8,87606,3,1672319005),(81033,8,87607,3,1672319005),(81034,8,87608,3,1672319005),(81035,8,87626,3,1672319005),(81036,8,87627,3,1672319005),(81037,8,87628,3,1672319005),(81038,8,87629,3,1672319005),(81039,8,87630,3,1672319005),(81040,8,87631,3,1672319005),(81041,8,87632,3,1672319005),(81042,8,87633,3,1672319005),(81043,8,87634,3,1672319005),(81044,8,87635,3,1672319005),(81045,8,87636,3,1672319005),(81046,8,87637,3,1672319005),(81047,8,87638,3,1672319005),(81048,8,87639,3,1672319005),(81049,8,87640,3,1672319005),(81050,8,87658,3,1672319005),(81051,8,87659,3,1672319005),(81052,8,87660,3,1672319005),(81053,8,87661,3,1672319005),(81054,8,87662,3,1672319005),(81055,8,87663,3,1672319005),(81056,8,87664,3,1672319005),(81057,8,87665,3,1672319005),(81058,8,87666,3,1672319005),(81059,8,87667,3,1672319005),(81060,8,87668,3,1672319005),(81061,8,87669,3,1672319005),(81062,8,87670,3,1672319005),(81063,8,87671,3,1672319005),(81064,8,87672,3,1672319005),(81065,8,87690,3,1672319005),(81066,8,87691,3,1672319005),(81067,8,87692,3,1672319005),(81068,8,87693,3,1672319005),(81069,8,87694,3,1672319005),(81070,8,87695,3,1672319005),(81071,8,87696,3,1672319005),(81072,8,87697,3,1672319005),(81073,8,87698,3,1672319005),(81074,8,87699,3,1672319005),(81075,8,87700,3,1672319005),(81076,8,87701,3,1672319005),(81077,8,87702,3,1672319005),(81078,8,87703,3,1672319005),(81079,8,87704,3,1672319005),(81080,8,87705,3,1672319005),(81081,8,87706,3,1672319005),(81082,8,87707,3,1672319005),(81083,8,87708,3,1672319005),(81084,8,87709,3,1672319005),(81085,8,87710,3,1672319005),(81086,8,87711,3,1672319005),(81087,8,87712,3,1672319005),(81088,8,87713,3,1672319005),(81089,8,87714,3,1672319005),(81090,8,87715,3,1672319005),(81091,8,87716,3,1672319005),(81092,8,87717,3,1672319005),(81093,8,87718,3,1672319005),(81094,8,87719,3,1672319005),(81095,8,87720,3,1672319005),(81096,8,87721,3,1672319005),(81097,8,87722,3,1672319005),(81098,8,87723,3,1672319005),(81099,8,87724,3,1672319005),(81100,8,87725,3,1672319005),(81101,8,87726,3,1672319005),(81102,8,87727,3,1672319005),(81103,8,87728,3,1672319005),(81104,8,87729,3,1672319005),(81105,8,87730,3,1672319005),(81106,8,87731,3,1672319005),(81107,8,87732,3,1672319005),(81108,8,87733,3,1672319005),(81109,8,87734,3,1672319005),(81110,8,87735,3,1672319005),(81111,8,87736,3,1672319005),(81112,8,87737,3,1672319005),(81113,8,87738,3,1672319005),(81114,8,87739,3,1672319005),(81115,8,87740,3,1672319005),(81116,8,87741,3,1672319005),(81117,8,87742,3,1672319005),(81118,8,87743,3,1672319005),(81119,8,87744,3,1672319005),(81120,8,87745,3,1672319005),(81121,8,87746,3,1672319005),(81122,8,87747,3,1672319005),(81123,8,87748,3,1672319005),(81124,8,87749,3,1672319005),(81125,8,87750,3,1672319005),(81126,8,87751,3,1672319005),(81127,8,87752,3,1672319005),(81128,8,87753,3,1672319005),(81129,8,87754,3,1672319005),(81130,8,87755,3,1672319005),(81131,8,87756,3,1672319005),(81132,8,87757,3,1672319005),(81133,8,87758,3,1672319005),(81134,8,87759,3,1672319005),(81135,8,87760,3,1672319005),(81136,8,87761,3,1672319005),(81137,8,87762,3,1672319005),(81138,8,87763,3,1672319005),(81139,8,87764,3,1672319005),(81140,8,87765,3,1672319005),(81141,8,87766,3,1672319005),(81142,8,87767,3,1672319005),(81143,8,87768,3,1672319005),(81144,8,87769,3,1672319005),(81145,8,87770,3,1672319005),(81146,8,87771,3,1672319005),(81147,8,87772,3,1672319005),(81148,8,87773,3,1672319005),(81149,8,87774,3,1672319005),(81150,8,87775,3,1672319005),(81151,8,87776,3,1672319005),(81152,8,87777,3,1672319005),(81153,8,87778,3,1672319005),(81154,8,87779,3,1672319005),(81155,8,87780,3,1672319005),(81156,8,87781,3,1672319005),(81157,8,87782,3,1672319005),(81158,8,87783,3,1672319005),(81159,8,87784,3,1672319005),(81160,8,87785,3,1672319005),(81161,8,87786,3,1672319005),(81162,8,87791,3,1672319005),(81163,8,87792,3,1672319005),(81164,8,87793,3,1672319005),(81165,8,87794,3,1672319005),(81166,8,87795,3,1672319005),(81167,8,87796,3,1672319005),(81168,8,87797,3,1672319005),(81169,8,87804,3,1672319005),(81170,8,87805,3,1672319005),(81171,8,87806,3,1672319005),(81172,8,87807,3,1672319005),(81173,8,87808,3,1672319005),(81174,8,87809,3,1672319005),(81175,8,87810,3,1672319005),(81176,8,87811,3,1672319005),(81177,8,87813,3,1672319005),(81178,8,87815,3,1672319005),(81179,8,87816,3,1672319005),(81180,8,87817,3,1672319005),(81181,8,87818,3,1672319005),(81182,8,87819,3,1672319005),(81183,8,87820,3,1672319005),(81184,8,87821,3,1672319005),(81185,8,87822,3,1672319005),(81186,8,87823,3,1672319005),(81187,8,87824,3,1672319005),(81188,8,87825,3,1672319005),(81189,8,87826,3,1672319005),(81190,8,87827,3,1672319005),(81191,8,87828,3,1672319005),(81192,8,87829,3,1672319005),(81193,8,87830,3,1672319005),(81194,8,87831,3,1672319005),(81195,8,87832,3,1672319005),(81196,8,87833,3,1672319005),(81197,8,87834,3,1672319005),(81198,8,87835,3,1672319005),(81199,8,87836,3,1672319005),(81200,8,87837,3,1672319005),(81201,8,87838,3,1672319005),(81202,8,87839,3,1672319005),(81203,8,87840,3,1672319005),(81204,8,87841,3,1672319005),(81205,8,87842,3,1672319005),(81206,8,87843,3,1672319005),(81207,8,87844,3,1672319005),(81208,8,87845,3,1672319005),(81209,8,87846,3,1672319005),(81210,8,87847,3,1672319005),(81211,8,87848,3,1672319005),(81212,8,87849,3,1672319005),(81213,8,87850,3,1672319005),(81214,8,87851,3,1672319005),(81215,8,87852,3,1672319005),(81216,8,87853,3,1672319005),(81217,8,87854,3,1672319005),(81218,8,87855,3,1672319005),(81219,8,87856,3,1672319005),(81220,8,87857,3,1672319005),(81221,8,87858,3,1672319005),(81222,8,87859,3,1672319005),(81223,8,87860,3,1672319005),(81224,8,87861,3,1672319005),(81225,8,87862,3,1672319005),(81226,8,87863,3,1672319005),(81227,8,87864,3,1672319005),(81228,8,87865,3,1672319005),(81229,8,87866,3,1672319005),(81230,8,87867,3,1672319005),(81231,8,87868,3,1672319005),(81232,8,87869,3,1672319005),(81233,8,87870,3,1672319005),(81234,8,87871,3,1672319005),(81235,8,87872,3,1672319005),(81236,8,87873,3,1672319005),(81237,8,87874,3,1672319005),(81238,8,87875,3,1672319005),(81239,8,87876,3,1672319005),(81240,8,87877,3,1672319005),(81241,8,87878,3,1672319005),(81242,8,87879,3,1672319005),(81243,8,87880,3,1672319005),(81244,8,87881,3,1672319005),(81245,8,87882,3,1672319005),(81246,8,87883,3,1672319005),(81247,8,87884,3,1672319005),(81248,8,87885,3,1672319005),(81249,8,87886,3,1672319005),(81250,8,87887,3,1672319005),(81251,8,87888,3,1672319005),(81252,8,87889,3,1672319005),(81253,8,87890,3,1672319005),(81254,8,87891,3,1672319005),(81255,8,87892,3,1672319005),(81256,8,87893,3,1672319005),(81257,8,87894,3,1672319005),(81258,8,87895,3,1672319005),(81259,8,87896,3,1672319005),(81260,8,87897,3,1672319005),(81261,8,87898,3,1672319005),(81262,8,87899,3,1672319005),(81263,8,87900,3,1672319005),(81264,8,87901,3,1672319005),(81265,8,87902,3,1672319005),(81266,8,87903,3,1672319005),(81267,8,87904,3,1672319005),(81268,8,87905,3,1672319005),(81269,8,87906,3,1672319005),(81270,8,87907,3,1672319005),(81271,8,87908,3,1672319005),(81272,8,87909,3,1672319005),(81273,8,87910,3,1672319005),(81274,8,87911,3,1672319005),(81275,8,87912,3,1672319005),(81276,8,87913,3,1672319005),(81277,8,87914,3,1672319005),(81278,8,87915,3,1672319005),(81279,8,87916,3,1672319005),(81280,8,87917,3,1672319005),(81281,8,87918,3,1672319005),(81282,8,87919,3,1672319005),(81283,8,87920,3,1672319005),(81284,8,87921,3,1672319005),(81285,8,87922,3,1672319005),(81286,8,87923,3,1672319005),(81287,8,87924,3,1672319005),(81288,8,87925,3,1672319005),(81289,8,87926,3,1672319005),(81290,8,87927,3,1672319005),(81291,8,87928,3,1672319005),(81292,8,87929,3,1672319005),(81293,8,87930,3,1672319005),(81294,8,87931,3,1672319005),(81295,8,87932,3,1672319005),(81296,8,87933,3,1672319005),(81297,8,87934,3,1672319005),(81298,8,87935,3,1672319005),(81299,8,87936,3,1672319005),(81300,8,87937,3,1672319005),(81301,8,87938,3,1672319005),(81302,8,87939,3,1672319005),(81303,8,87940,3,1672319005),(81304,8,87941,3,1672319005),(81305,8,87942,3,1672319005),(81306,8,87943,3,1672319005),(81307,8,87944,3,1672319005),(81308,8,87945,3,1672319005),(81309,8,87946,3,1672319005),(81310,8,87947,3,1672319005),(81311,8,87948,3,1672319005),(81312,8,87949,3,1672319005),(81313,8,87950,3,1672319005),(81314,8,87951,3,1672319005),(81315,8,87952,3,1672319005),(81316,8,87953,3,1672319005),(81317,8,87954,3,1672319005),(81318,8,87955,3,1672319005),(81319,8,87956,3,1672319005),(81320,8,87957,3,1672319005),(81321,8,87958,3,1672319005),(81322,8,87959,3,1672319005),(81323,8,87960,3,1672319005),(81324,8,87961,3,1672319005),(81325,8,87962,3,1672319005),(81326,8,87963,3,1672319005),(81327,8,87964,3,1672319005),(81328,8,87965,3,1672319005),(81329,8,87966,3,1672319005),(81330,8,87967,3,1672319005),(81331,8,87968,3,1672319005),(81332,8,87969,3,1672319005),(81333,8,87970,3,1672319005),(81334,8,87971,3,1672319005),(81335,8,87972,3,1672319005),(81336,8,87973,3,1672319005),(81337,8,87974,3,1672319005),(81338,8,87975,3,1672319005),(81339,8,87976,3,1672319005),(81340,8,87977,3,1672319005),(81341,8,87978,3,1672319005),(81342,8,87979,3,1672319005),(81343,8,87980,3,1672319005),(81344,8,87981,3,1672319005),(81345,8,87982,3,1672319005),(81346,8,87983,3,1672319005),(81347,8,87984,3,1672319005),(81348,8,87985,3,1672319005),(81349,8,87986,3,1672319005),(81350,8,87987,3,1672319005),(81351,8,87988,3,1672319005),(81352,8,87989,3,1672319005),(81353,8,87990,3,1672319005),(81354,8,87991,3,1672319005),(81355,8,87992,3,1672319005),(81356,8,87993,3,1672319005),(81357,8,87994,3,1672319005),(81358,8,87995,3,1672319005),(81359,8,87996,3,1672319005),(81360,8,87997,3,1672319005),(81361,8,87998,3,1672319005),(81362,8,87999,3,1672319005),(81363,8,88000,3,1672319005),(81364,8,88001,3,1672319005),(81365,8,88002,3,1672319005),(81366,8,88003,3,1672319005),(81367,8,88004,3,1672319005),(81368,8,88005,3,1672319005),(81369,8,88006,3,1672319005),(81370,8,88007,3,1672319005),(81371,8,88008,3,1672319005),(81372,8,88009,3,1672319005),(81373,8,88010,3,1672319005),(81374,8,88011,3,1672319005),(81375,8,88012,3,1672319005),(81376,8,88013,3,1672319005),(81377,8,88014,3,1672319005),(81378,8,88015,3,1672319005),(81379,8,88016,3,1672319005),(81380,8,88017,3,1672319005),(81381,8,88018,3,1672319005),(81382,8,88019,3,1672319005),(81383,8,88020,3,1672319005),(81384,8,88021,3,1672319005),(81385,8,88022,3,1672319005),(81386,8,88023,3,1672319005),(81387,8,88024,3,1672319005),(81388,8,88025,3,1672319005),(81389,8,88026,3,1672319005),(81390,8,88027,3,1672319005),(81391,8,88028,3,1672319005),(81392,8,88029,3,1672319005),(81393,8,88030,3,1672319005),(81394,8,88031,3,1672319005),(81395,8,88032,3,1672319005),(81396,8,88033,3,1672319005),(81397,8,88034,3,1672319005),(81398,8,88035,3,1672319005),(81399,8,88036,3,1672319005),(81400,8,88037,3,1672319005),(81401,8,88038,3,1672319005),(81402,8,88039,3,1672319005),(81403,8,88040,3,1672319005),(81404,8,88041,3,1672319005),(81405,8,88042,3,1672319005),(81406,8,88043,3,1672319005),(81407,8,88044,3,1672319005),(81408,8,88045,3,1672319005),(81409,8,88046,3,1672319005),(81410,8,88047,3,1672319005),(81411,8,88048,3,1672319005),(81412,8,88049,3,1672319005),(81413,8,88050,3,1672319005),(81414,8,88051,3,1672319005),(81415,8,88052,3,1672319005),(81416,8,88053,3,1672319005),(81417,8,88054,3,1672319005),(81418,8,88055,3,1672319005),(81419,8,88056,3,1672319005),(81420,8,88057,3,1672319005),(81421,8,88058,3,1672319005),(81422,8,88059,3,1672319005),(81423,8,88060,3,1672319005),(81424,8,88061,3,1672319005),(81425,8,88062,3,1672319005),(81426,8,88063,3,1672319005),(81427,8,88064,3,1672319005),(81428,8,88065,3,1672319005),(81429,8,88066,3,1672319005),(81430,8,88067,3,1672319005),(81431,8,88068,3,1672319005),(81432,8,88069,3,1672319005),(81433,8,88070,3,1672319005),(81434,8,88071,3,1672319005),(81435,8,88072,3,1672319005),(81436,8,88073,3,1672319005),(81437,8,88074,3,1672319005),(81438,8,88075,3,1672319005),(81439,8,88076,3,1672319005),(81440,8,88077,3,1672319005),(81441,8,88078,3,1672319005),(81442,8,88079,3,1672319005),(81443,8,88080,3,1672319005),(81444,8,88081,3,1672319005),(81445,8,88082,3,1672319005),(81446,8,88083,3,1672319005),(81447,8,88084,3,1672319005),(81448,8,88085,3,1672319005),(81449,8,88086,3,1672319005),(81450,8,88087,3,1672319005),(81451,8,88088,3,1672319005),(81452,8,88089,3,1672319005),(81453,8,88090,3,1672319005),(81454,8,88091,3,1672319005),(81455,8,88092,3,1672319005),(81456,8,88093,3,1672319005),(81457,8,88094,3,1672319005),(81458,8,88095,3,1672319005),(81459,8,88096,3,1672319005),(81460,8,88097,3,1672319005),(81461,8,88098,3,1672319005),(81462,8,88099,3,1672319005),(81463,8,88100,3,1672319005),(81464,8,88101,3,1672319005),(81465,8,88102,3,1672319005),(81466,8,88103,3,1672319005),(81467,8,88104,3,1672319005),(81468,8,88105,3,1672319005),(81469,8,88106,3,1672319005),(81470,8,88107,3,1672319005),(81471,8,88108,3,1672319005),(81472,8,88109,3,1672319005),(81473,8,88110,3,1672319005),(81474,8,88111,3,1672319005),(81475,8,88112,3,1672319005),(81476,8,88113,3,1672319005),(81477,8,88114,3,1672319005),(81478,8,88115,3,1672319005),(81479,8,88116,3,1672319005),(81480,8,88117,3,1672319005),(81481,8,88118,3,1672319005),(81482,8,88119,3,1672319005),(81483,8,88120,3,1672319005),(81484,8,88121,3,1672319005),(81485,8,88122,3,1672319005),(81486,8,88123,3,1672319005),(81487,8,88125,3,1672319005),(81488,8,88126,3,1672319005),(81489,8,88127,3,1672319005),(81490,8,88128,3,1672319005),(81491,8,88129,3,1672319005),(81492,8,88130,3,1672319005),(81493,8,88131,3,1672319005),(81494,8,88132,3,1672319005),(81495,8,88133,3,1672319005),(81496,8,88134,3,1672319005),(81497,8,88135,3,1672319005),(81498,8,88136,3,1672319005),(81499,8,88137,3,1672319005),(81500,8,88138,3,1672319005),(81501,8,88139,3,1672319005),(81502,8,88140,3,1672319005),(81503,8,88141,3,1672319005),(81504,8,88142,3,1672319005),(81505,8,88143,3,1672319005),(81506,8,88144,3,1672319005),(81507,8,88145,3,1672319005),(81508,8,88146,3,1672319005),(81509,8,88147,3,1672319005),(81510,8,88148,3,1672319005),(81511,8,88149,3,1672319005),(81512,8,88150,3,1672319005),(81513,8,88151,3,1672319005),(81514,8,88152,3,1672319005),(81515,8,88153,3,1672319005),(81516,8,88154,3,1672319005),(81517,8,88155,3,1672319005),(81518,8,88156,3,1672319005),(81519,8,88157,3,1672319005),(81520,8,88158,3,1672319005),(81521,8,88159,3,1672319005),(81522,8,88160,3,1672319005),(81523,8,88161,3,1672319005),(81524,8,88162,3,1672319005),(81525,8,88163,3,1672319005),(81526,8,88164,3,1672319005),(81527,8,88165,3,1672319005),(81528,8,88166,3,1672319005),(81529,8,88167,3,1672319005),(81530,8,88182,3,1672319005),(81531,8,88183,3,1672319005),(81532,8,88184,3,1672319005),(81533,8,88185,3,1672319005),(81534,8,88186,3,1672319005),(81535,8,88187,3,1672319005),(81536,8,88188,3,1672319005),(81537,8,88189,3,1672319005),(81538,8,88190,3,1672319005),(81539,8,88203,3,1672319005),(81540,8,88204,3,1672319005),(81541,8,88205,3,1672319005),(81542,8,88206,3,1672319005),(81543,8,88207,3,1672319005),(81544,8,88208,3,1672319005),(81545,8,88209,3,1672319005),(81546,8,88210,3,1672319005),(81547,8,88211,3,1672319005),(81548,8,88212,3,1672319005),(81549,8,88213,3,1672319005),(81550,8,88214,3,1672319005),(81551,8,88215,3,1672319005),(81552,8,88216,3,1672319005),(81553,8,88217,3,1672319005),(81554,8,88218,3,1672319005),(81555,8,88219,3,1672319005),(81556,8,88220,3,1672319005),(81557,8,88221,3,1672319005),(81558,8,88222,3,1672319005),(81559,8,88223,3,1672319005),(81560,8,88224,3,1672319005),(81561,8,88225,3,1672319005),(81562,8,88226,3,1672319005),(81563,8,88227,3,1672319005),(81564,8,88228,3,1672319005),(81565,8,88229,3,1672319005),(81566,8,88230,3,1672319005),(81567,8,88231,3,1672319005),(81568,8,88232,3,1672319005),(81569,8,88233,3,1672319005),(81570,8,88234,3,1672319005),(81571,8,88235,3,1672319005),(81572,8,88236,3,1672319005),(81573,8,88237,3,1672319005),(81574,8,88238,3,1672319005),(81575,8,88245,3,1672319005),(81576,8,88246,3,1672319005),(81577,8,88247,3,1672319005),(81578,8,88248,3,1672319005),(81579,8,88249,3,1672319005),(81580,8,88250,3,1672319005),(81581,8,88251,3,1672319005),(81582,8,88252,3,1672319005),(81583,8,88255,3,1672319005),(81584,8,88256,3,1672319005),(81585,8,88257,3,1672319005),(81586,8,88258,3,1672319005),(81587,8,88267,3,1672319005),(81588,8,88268,3,1672319005),(81589,8,88269,3,1672319005),(81590,8,88270,3,1672319005),(81591,8,88271,3,1672319005),(81592,8,88272,3,1672319005),(81593,8,88273,3,1672319005),(81594,8,88274,3,1672319005),(81595,8,88275,3,1672319005),(81596,8,88276,3,1672319005),(81597,8,88277,3,1672319005),(81598,8,88278,3,1672319005),(81599,8,88279,3,1672319005),(81600,8,88280,3,1672319005),(81601,8,88281,3,1672319005),(81602,8,88282,3,1672319005),(81603,8,88283,3,1672319005),(81604,8,88284,3,1672319005),(81605,8,88285,3,1672319005),(81606,8,88286,3,1672319005),(81607,8,88287,3,1672319005),(81608,8,88288,3,1672319005),(81609,8,88289,3,1672319005),(81610,8,88290,3,1672319005),(81611,8,88291,3,1672319005),(81612,8,88292,3,1672319005),(81613,8,88293,3,1672319005),(81614,8,88294,3,1672319005),(81615,8,88295,3,1672319005),(81616,8,88296,3,1672319005),(81617,8,88297,3,1672319005),(81618,8,88298,3,1672319005),(81619,8,88299,3,1672319005),(81620,8,88300,3,1672319005),(81621,8,88301,3,1672319005),(81622,8,88302,3,1672319005),(81623,8,88303,3,1672319005),(81624,8,88304,3,1672319005),(81625,8,88305,3,1672319005),(81626,8,88306,3,1672319005),(81627,8,88307,3,1672319005),(81628,8,88308,3,1672319005),(81629,8,88309,3,1672319005),(81630,8,88310,3,1672319005),(81631,8,88311,3,1672319005),(81632,8,88312,3,1672319005),(81633,8,88313,3,1672319005),(81634,8,88314,3,1672319005),(81635,8,88315,3,1672319005),(81636,8,88316,3,1672319005),(81637,8,88317,3,1672319005),(81638,8,88318,3,1672319005),(81639,8,88319,3,1672319005),(81640,8,88320,3,1672319005),(81641,8,88321,3,1672319005),(81642,8,88322,3,1672319005),(81643,8,88323,3,1672319005),(81644,8,88324,3,1672319005),(81645,8,88325,3,1672319005),(81646,8,88326,3,1672319005),(81647,8,88327,3,1672319005),(81648,8,88328,3,1672319005),(81649,8,88329,3,1672319005),(81650,8,88330,3,1672319005),(81651,8,88331,3,1672319005),(81652,8,88332,3,1672319005),(81653,8,88333,3,1672319005),(81654,8,88334,3,1672319005),(81655,8,88335,3,1672319005),(81656,8,88336,3,1672319005),(81657,8,88337,3,1672319005),(81658,8,88338,3,1672319005),(81659,8,88339,3,1672319005),(81660,8,88340,3,1672319005),(81661,8,88341,3,1672319005),(81662,8,88342,3,1672319005),(81663,8,88343,3,1672319005),(81664,8,88344,3,1672319005),(81665,8,88345,3,1672319005),(81666,8,88346,3,1672319005),(81667,8,88347,3,1672319005),(81668,8,88348,3,1672319005),(81669,8,88349,3,1672319005),(81670,8,88350,3,1672319005),(81671,8,88351,3,1672319005),(81672,8,88352,3,1672319005),(81673,8,88353,3,1672319005),(81674,8,88354,3,1672319005),(81675,8,88355,3,1672319005),(81676,8,88356,3,1672319005),(81677,8,88357,3,1672319005),(81678,8,88358,3,1672319005),(81679,8,88359,3,1672319005),(81680,8,88360,3,1672319005),(81681,8,88361,3,1672319005),(81682,8,88362,3,1672319005),(81683,8,88363,3,1672319005),(81684,8,88364,3,1672319005),(81685,8,88365,3,1672319005),(81686,8,88366,3,1672319005),(81687,8,88367,3,1672319005),(81688,8,88368,3,1672319005),(81689,8,88369,3,1672319005),(81690,8,88370,3,1672319005),(81691,8,88371,3,1672319005),(81692,8,88372,3,1672319005),(81693,8,88373,3,1672319005),(81694,8,88374,3,1672319005),(81695,8,88375,3,1672319005),(81696,8,88376,3,1672319005),(81697,8,88377,3,1672319005),(81698,8,88378,3,1672319005),(81699,8,88379,3,1672319005),(81700,8,88380,3,1672319005),(81701,8,88381,3,1672319005),(81702,8,88382,3,1672319005),(81703,8,88383,3,1672319005),(81704,8,88384,3,1672319005),(81705,8,88385,3,1672319005),(81706,8,88386,3,1672319005),(81707,8,88387,3,1672319005),(81708,8,88388,3,1672319005),(81709,8,88389,3,1672319005),(81710,8,88390,3,1672319005),(81711,8,88391,3,1672319005),(81712,8,88392,3,1672319005),(81713,8,88393,3,1672319005),(81714,8,88394,3,1672319005),(81715,8,88395,3,1672319005),(81716,8,88396,3,1672319005),(81717,8,88397,3,1672319005),(81718,8,88398,3,1672319005),(81719,8,88399,3,1672319005),(81720,8,88400,3,1672319005),(81721,8,88401,3,1672319005),(81722,8,88402,3,1672319005),(81723,8,88403,3,1672319005),(81724,8,88404,3,1672319005),(81725,8,88405,3,1672319005),(81726,8,88406,3,1672319005),(81727,8,88407,3,1672319005),(81728,8,88408,3,1672319005),(81729,8,88409,3,1672319005),(81730,8,88410,3,1672319005),(81731,8,88411,3,1672319005),(81732,8,88412,3,1672319005),(81733,8,88413,3,1672319005),(81734,8,88414,3,1672319005),(81735,8,88415,3,1672319005),(81736,8,88416,3,1672319005),(81737,8,88417,3,1672319005),(81738,8,88418,3,1672319005),(81739,8,88419,3,1672319005),(81740,8,88420,3,1672319005),(81741,8,88421,3,1672319005),(81742,8,88422,3,1672319005),(81743,8,88423,3,1672319005),(81744,8,88424,3,1672319005),(81745,8,88425,3,1672319005),(81746,8,88426,3,1672319005),(81747,8,88427,3,1672319005),(81748,8,88428,3,1672319005),(81749,8,88429,3,1672319005),(81750,8,88430,3,1672319005),(81751,8,88431,3,1672319005),(81752,8,88432,3,1672319005),(81753,8,88433,3,1672319005),(81754,8,88434,3,1672319005),(81755,8,88435,3,1672319005),(81756,8,88436,3,1672319005),(81757,8,88437,3,1672319005),(81758,8,88438,3,1672319005),(81759,8,88439,3,1672319005),(81760,8,88440,3,1672319005),(81761,8,88441,3,1672319005),(81762,8,88442,3,1672319005),(81763,8,88443,3,1672319005),(81764,8,88444,3,1672319005),(81765,8,88445,3,1672319005),(81766,8,88446,3,1672319005),(81767,8,88447,3,1672319005),(81768,8,88448,3,1672319005),(81769,8,88449,3,1672319005),(81770,8,88450,3,1672319005),(81771,8,88451,3,1672319005),(81772,8,88452,3,1672319005),(81773,8,88453,3,1672319005),(81774,8,88454,3,1672319005),(81775,8,88455,3,1672319005),(81776,8,88456,3,1672319005),(81777,8,88457,3,1672319005),(81778,8,88458,3,1672319005),(81779,8,88459,3,1672319005),(81780,8,88460,3,1672319005),(81781,8,88461,3,1672319005),(81782,8,88462,3,1672319005),(81783,8,88463,3,1672319005),(81784,8,88464,3,1672319005),(81785,8,88465,3,1672319005),(81786,8,88466,3,1672319005),(81787,8,88467,3,1672319005),(81788,8,88468,3,1672319005),(81789,8,88469,3,1672319005),(81790,8,88470,3,1672319005),(81791,8,88471,3,1672319005),(81792,8,88472,3,1672319005),(81793,8,88473,3,1672319005),(81794,8,88474,3,1672319005),(81795,8,88475,3,1672319005),(81796,8,88476,3,1672319005),(81797,8,88477,3,1672319005),(81798,8,88478,3,1672319005),(81799,8,88479,3,1672319005),(81800,8,88480,3,1672319005),(81801,8,88481,3,1672319005),(81802,8,88482,3,1672319005),(81803,8,88483,3,1672319005),(81804,8,88484,3,1672319005),(81805,8,88485,3,1672319005),(81806,8,88486,3,1672319005),(81807,8,88487,3,1672319005),(81808,8,88488,3,1672319005),(81809,8,88489,3,1672319005),(81810,8,88490,3,1672319005),(81811,8,88491,3,1672319005),(81812,8,88492,3,1672319005),(81813,8,88493,3,1672319005),(81814,8,88494,3,1672319005),(81815,8,88495,3,1672319005),(81816,8,88496,3,1672319005),(81817,8,88497,3,1672319005),(81818,8,88498,3,1672319005),(81819,8,88499,3,1672319005),(81820,8,88500,3,1672319005),(81821,8,88501,3,1672319005),(81822,8,88502,3,1672319005),(81823,8,88503,3,1672319005),(81824,8,88504,3,1672319005),(81825,8,88505,3,1672319005),(81826,8,88506,3,1672319005),(81827,8,88507,3,1672319005),(81828,8,88508,3,1672319005),(81829,8,88509,3,1672319005),(81830,8,88510,3,1672319005),(81831,8,88511,3,1672319005),(81832,8,88512,3,1672319005),(81833,8,88513,3,1672319005),(81834,8,88514,3,1672319005),(81835,8,88515,3,1672319005),(81836,8,88516,3,1672319005),(81837,8,88517,3,1672319005),(81838,8,88518,3,1672319005),(81839,8,88519,3,1672319005),(81840,8,88520,3,1672319005),(81841,8,88521,3,1672319005),(81842,8,88522,3,1672319005),(81843,8,88523,3,1672319005),(81844,8,88524,3,1672319005),(81845,8,88525,3,1672319005),(81846,8,88526,3,1672319005),(81847,8,88527,3,1672319005),(81848,8,88528,3,1672319005),(81849,8,88529,3,1672319005),(81850,8,88530,3,1672319005),(81851,8,88531,3,1672319005),(81852,8,88532,3,1672319005),(81853,8,88533,3,1672319005),(81854,8,88534,3,1672319005),(81855,8,88535,3,1672319005),(81856,8,88536,3,1672319005),(81857,8,88537,3,1672319005),(81858,8,88538,3,1672319005),(81859,8,88539,3,1672319005),(81860,8,88540,3,1672319005),(81861,8,88541,3,1672319005),(81862,8,88542,3,1672319005),(81863,8,88543,3,1672319005),(81864,8,88544,3,1672319005),(81865,8,88545,3,1672319005),(81866,8,88546,3,1672319005),(81867,8,88547,3,1672319005),(81868,8,88548,3,1672319005),(81869,8,88549,3,1672319005),(81870,8,88550,3,1672319005),(81871,8,88551,3,1672319005),(81872,8,88552,3,1672319005),(81873,8,88553,3,1672319005),(81874,8,88554,3,1672319005),(81875,8,88555,3,1672319005),(81876,8,88556,3,1672319005),(81877,8,88557,3,1672319005),(81878,8,88558,3,1672319005),(81879,8,88559,3,1672319005),(81880,8,88560,3,1672319005),(81881,8,88561,3,1672319005),(81882,8,88562,3,1672319005),(81883,8,88563,3,1672319005),(81884,8,88564,3,1672319005),(81885,8,88565,3,1672319005),(81886,8,88566,3,1672319005),(81887,8,88567,3,1672319005),(81888,8,88568,3,1672319005),(81889,8,88569,3,1672319005),(81890,8,88570,3,1672319005),(81891,8,88571,3,1672319005),(81892,8,88572,3,1672319005),(81893,8,88573,3,1672319005),(81894,8,88574,3,1672319005),(81895,8,88575,3,1672319005),(81896,8,88576,3,1672319005),(81897,8,88577,3,1672319005),(81898,8,88578,3,1672319005),(81899,8,88579,3,1672319005),(81900,8,88580,3,1672319005),(81901,8,88581,3,1672319005),(81902,8,88582,3,1672319005),(81903,8,88583,3,1672319005),(81904,8,88584,3,1672319005),(81905,8,88585,3,1672319005),(81906,8,88586,3,1672319005),(81907,8,88587,3,1672319005),(81908,8,88588,3,1672319005),(81909,8,88589,3,1672319005),(81910,8,88590,3,1672319005),(81911,8,88591,3,1672319005),(81912,8,88592,3,1672319005),(81913,8,88593,3,1672319005),(81914,8,88594,3,1672319005),(81915,8,88595,3,1672319005),(81916,8,88596,3,1672319005),(81917,8,88597,3,1672319005),(81918,8,88598,3,1672319005),(81919,8,88599,3,1672319005),(81920,8,88600,3,1672319005),(81921,8,88601,3,1672319005),(81922,8,88602,3,1672319005),(81923,8,88603,3,1672319005),(81924,8,88604,3,1672319005),(81925,8,88605,3,1672319005),(81926,8,88606,3,1672319005),(81927,8,88607,3,1672319005),(81928,8,88608,3,1672319005),(81929,8,88609,3,1672319005),(81930,8,88610,3,1672319005),(81931,8,88611,3,1672319005),(81932,8,88612,3,1672319005),(81933,8,88613,3,1672319005),(81934,8,88614,3,1672319005),(81935,8,88615,3,1672319005),(81936,8,88616,3,1672319005),(81937,8,88617,3,1672319005),(81938,8,88618,3,1672319005),(81939,8,88619,3,1672319005),(81940,8,88620,3,1672319005),(81941,8,88621,3,1672319005),(81942,8,88622,3,1672319005),(81943,8,88623,3,1672319005),(81944,8,88624,3,1672319005),(81945,8,88625,3,1672319005),(81946,8,88626,3,1672319005),(81947,8,88627,3,1672319005),(81948,8,88628,3,1672319005),(81949,8,88629,3,1672319005),(81950,8,88630,3,1672319005),(81951,8,88631,3,1672319005),(81952,8,88632,3,1672319005),(81953,8,88633,3,1672319005),(81954,8,88634,3,1672319005),(81955,8,88635,3,1672319005),(81956,8,88636,3,1672319005),(81957,8,88637,3,1672319005),(81958,8,88638,3,1672319005),(81959,8,88639,3,1672319005),(81960,8,88640,3,1672319005),(81961,8,88641,3,1672319005),(81962,8,88642,3,1672319005),(81963,8,88643,3,1672319005),(81964,8,88644,3,1672319005),(81965,8,88645,3,1672319005),(81966,8,88646,3,1672319005),(81967,8,88647,3,1672319005),(81968,8,88648,3,1672319005),(81969,8,88649,3,1672319005),(81970,8,88650,3,1672319005),(81971,8,88651,3,1672319005),(81972,8,88652,3,1672319005),(81973,8,88653,3,1672319005),(81974,8,88654,3,1672319005),(81975,8,88655,3,1672319005),(81976,8,88656,3,1672319005),(81977,8,88657,3,1672319005),(81978,8,88658,3,1672319005),(81979,8,88659,3,1672319005),(81980,8,88660,3,1672319005),(81981,8,88661,3,1672319005),(81982,8,88662,3,1672319005),(81983,8,88663,3,1672319005),(81984,8,88664,3,1672319005),(81985,8,88665,3,1672319005),(81986,8,88666,3,1672319005),(81987,8,88667,3,1672319005),(81988,8,88668,3,1672319005),(81989,8,88669,3,1672319005),(81990,8,88670,3,1672319005),(81991,8,88671,3,1672319005),(81992,8,88672,3,1672319005),(81993,8,88673,3,1672319005),(81994,8,88674,3,1672319005),(81995,8,88675,3,1672319005),(81996,8,88676,3,1672319005),(81997,8,88677,3,1672319005),(81998,8,88678,3,1672319005),(81999,8,88679,3,1672319005),(82000,8,88680,3,1672319005),(82001,8,88681,3,1672319005),(82002,8,88682,3,1672319005),(82003,8,88683,3,1672319005),(82004,8,88684,3,1672319005),(82005,8,88685,3,1672319005),(82006,8,88686,3,1672319005),(82007,8,88687,3,1672319005),(82008,8,88688,3,1672319005),(82009,8,88689,3,1672319005),(82010,8,88690,3,1672319005),(82011,8,88691,3,1672319005),(82012,8,88692,3,1672319005),(82013,8,88693,3,1672319005),(82014,8,88694,3,1672319005),(82015,8,88695,3,1672319005),(82016,8,88696,3,1672319005),(82017,8,88697,3,1672319005),(82018,8,88698,3,1672319005),(82019,8,88699,3,1672319005),(82020,8,88700,3,1672319005),(82021,8,88701,3,1672319005),(82022,8,88702,3,1672319005),(82023,8,88703,3,1672319005),(82024,8,88704,3,1672319005),(82025,8,88705,3,1672319005),(82026,8,88706,3,1672319005),(82027,8,88707,3,1672319005),(82028,8,88708,3,1672319005),(82029,8,88709,3,1672319005),(82030,8,88710,3,1672319005),(82031,8,88711,3,1672319005),(82032,8,88712,3,1672319005),(82033,8,88713,3,1672319005),(82034,8,88714,3,1672319005),(82035,8,88715,3,1672319005),(82036,8,88716,3,1672319005),(82037,8,88717,3,1672319005),(82038,8,88718,3,1672319005),(82039,8,88719,3,1672319005),(82040,8,88720,3,1672319005),(82041,8,88721,3,1672319005),(82042,8,88722,3,1672319005),(82043,8,88723,3,1672319005),(82044,8,88724,3,1672319005),(82045,8,88725,3,1672319005),(82046,8,88726,3,1672319005),(82047,8,88727,3,1672319005),(82048,8,88728,3,1672319005),(82049,8,88729,3,1672319005),(82050,8,88730,3,1672319005),(82051,8,88731,3,1672319005),(82052,8,88732,3,1672319005),(82053,8,88733,3,1672319005),(82054,8,88734,3,1672319005),(82055,8,88735,3,1672319005),(82056,8,88736,3,1672319005),(82057,8,88737,3,1672319005),(82058,8,88738,3,1672319005),(82059,8,88739,3,1672319005),(82060,8,88740,3,1672319005),(82061,8,88741,3,1672319005),(82062,8,88742,3,1672319005),(82063,8,88743,3,1672319005),(82064,8,88744,3,1672319005),(82065,8,88745,3,1672319005),(82066,8,88746,3,1672319005),(82067,8,88747,3,1672319005),(82068,8,88748,3,1672319005),(82069,8,88749,3,1672319005),(82070,8,88750,3,1672319005),(82071,8,88751,3,1672319005),(82072,8,88752,3,1672319005),(82073,8,88753,3,1672319005),(82074,8,88754,3,1672319005),(82075,8,88755,3,1672319005),(82076,8,88756,3,1672319005),(82077,8,88757,3,1672319005),(82078,8,88758,3,1672319005),(82079,8,88759,3,1672319005),(82080,8,88760,3,1672319005),(82081,8,88761,3,1672319005),(82082,8,88762,3,1672319005),(82083,8,88763,3,1672319005),(82084,8,88764,3,1672319005),(82085,8,88765,3,1672319005),(82086,8,88766,3,1672319005),(82087,8,88767,3,1672319005),(82088,8,88768,3,1672319005),(82089,8,88769,3,1672319005),(82090,8,88770,3,1672319005),(82091,8,88771,3,1672319005),(82092,8,88772,3,1672319005),(82093,8,88773,3,1672319005),(82094,8,88774,3,1672319005),(82095,8,88775,3,1672319005),(82096,8,88776,3,1672319005),(82097,8,88777,3,1672319005),(82098,8,88778,3,1672319005),(82099,8,88779,3,1672319005),(82100,8,88780,3,1672319005),(82101,8,88781,3,1672319005),(82102,8,88782,3,1672319005),(82103,8,88783,3,1672319005),(82104,8,88784,3,1672319005),(82105,8,88785,3,1672319005),(82106,8,88786,3,1672319005),(82107,8,88787,3,1672319005),(82108,8,88788,3,1672319005),(82109,8,88789,3,1672319005),(82110,8,88790,3,1672319005),(82111,8,88791,3,1672319005),(82112,8,88792,3,1672319005),(82113,8,88793,3,1672319005),(82114,8,88794,3,1672319005),(82115,8,88795,3,1672319005),(82116,8,88796,3,1672319005),(82117,8,88797,3,1672319005),(82118,8,88798,3,1672319005),(82119,8,88799,3,1672319005),(82120,8,88800,3,1672319005),(82121,8,88801,3,1672319005),(82122,8,88802,3,1672319005),(82123,8,88803,3,1672319005),(82124,8,88804,3,1672319005),(82125,8,88805,3,1672319005),(82126,8,88806,3,1672319005),(82127,8,88807,3,1672319005),(82128,8,88808,3,1672319005),(82129,8,88809,3,1672319005),(82130,8,88810,3,1672319005),(82131,8,88811,3,1672319005),(82132,8,88812,3,1672319005),(82133,8,88813,3,1672319005),(82134,8,88814,3,1672319005),(82135,8,88815,3,1672319005),(82136,8,88816,3,1672319005),(82137,8,88817,3,1672319005),(82138,8,88818,3,1672319005),(82139,8,88819,3,1672319005),(82140,8,88820,3,1672319005),(82141,8,88821,3,1672319005),(82142,8,88822,3,1672319005),(82143,8,88823,3,1672319005),(82144,8,88824,3,1672319005),(82145,8,88825,3,1672319005),(82146,8,88826,3,1672319005),(82147,8,88827,3,1672319005),(82148,8,88828,3,1672319005),(82149,8,88829,3,1672319005),(82150,8,88830,3,1672319005),(82151,8,88831,3,1672319005),(82152,8,88832,3,1672319005),(82153,8,88833,3,1672319005),(82154,8,88834,3,1672319005),(82155,8,88835,3,1672319005),(82156,8,88836,3,1672319005),(82157,8,88837,3,1672319005),(82158,8,88838,3,1672319005),(82159,8,88839,3,1672319005),(82160,8,88840,3,1672319005),(82161,8,88841,3,1672319005),(82162,8,88842,3,1672319005),(82163,8,88843,3,1672319005),(82164,8,88844,3,1672319005),(82165,8,88845,3,1672319005),(82166,8,88846,3,1672319005),(82167,8,88847,3,1672319005),(82168,8,88848,3,1672319005),(82169,8,88849,3,1672319005),(82170,8,88850,3,1672319005),(82171,8,88851,3,1672319005),(82172,8,88852,3,1672319005),(82173,8,88853,3,1672319005),(82174,8,88854,3,1672319005),(82175,8,88855,3,1672319005),(82176,8,88856,3,1672319005),(82177,8,88857,3,1672319005),(82178,8,88858,3,1672319005),(82179,8,88859,3,1672319005),(82180,8,88860,3,1672319005),(82181,8,88861,3,1672319005),(82182,8,88862,3,1672319005),(82183,8,88863,3,1672319005),(82184,8,88864,3,1672319005),(82185,8,88865,3,1672319005),(82186,8,88866,3,1672319005),(82187,8,88867,3,1672319005),(82188,8,88868,3,1672319005),(82189,8,88869,3,1672319005),(82190,8,88870,3,1672319005),(82191,8,88871,3,1672319005),(82192,8,88872,3,1672319005),(82193,8,88873,3,1672319005),(82194,8,88874,3,1672319005),(82195,8,88875,3,1672319005),(82196,8,88876,3,1672319005),(82197,8,88877,3,1672319005),(82198,8,88878,3,1672319005),(82199,8,88879,3,1672319005),(82200,8,88880,3,1672319005),(82201,8,88881,3,1672319005),(82202,8,88882,3,1672319005),(82203,8,88883,3,1672319005),(82204,8,88884,3,1672319005),(82205,8,88885,3,1672319005),(82206,8,88886,3,1672319005),(82207,8,88887,3,1672319005),(82208,8,88888,3,1672319005),(82209,8,88889,3,1672319005),(82210,8,88890,3,1672319005),(82211,8,88891,3,1672319005),(82212,8,88892,3,1672319005),(82213,8,88893,3,1672319005),(82214,8,88894,3,1672319005),(82215,8,88895,3,1672319005),(82216,8,88896,3,1672319005),(82217,8,88897,3,1672319005),(82218,8,88898,3,1672319005),(82219,8,88899,3,1672319005),(82220,8,88900,3,1672319005),(82221,8,88901,3,1672319005),(82222,8,88902,3,1672319005),(82223,8,88903,3,1672319005),(82224,8,88904,3,1672319005),(82225,8,88905,3,1672319005),(82226,8,88906,3,1672319005),(82227,8,88907,3,1672319005),(82228,8,88908,3,1672319005),(82229,8,88909,3,1672319005),(82230,8,88910,3,1672319005),(82231,8,88911,3,1672319005),(82232,8,88912,3,1672319005),(82233,8,88913,3,1672319005),(82234,8,88914,3,1672319005),(82235,8,88915,3,1672319005),(82236,8,88916,3,1672319005),(82237,8,88917,3,1672319005),(82238,8,88918,3,1672319005),(82239,8,88919,3,1672319005),(82240,8,88920,3,1672319005),(82241,8,88921,3,1672319005),(82242,8,88922,3,1672319005),(82243,8,88923,3,1672319005),(82244,8,88924,3,1672319005),(82245,8,88925,3,1672319005),(82246,8,88926,3,1672319005),(82247,8,88927,3,1672319005),(82248,8,88928,3,1672319005),(82249,8,88929,3,1672319005),(82250,8,88930,3,1672319005),(82251,8,88931,3,1672319005),(82252,8,88932,3,1672319005),(82253,8,88933,3,1672319005),(82254,8,88934,3,1672319005),(82255,8,88935,3,1672319005),(82256,8,88936,3,1672319005),(82257,8,88937,3,1672319005),(82258,8,88938,3,1672319005),(82259,8,88939,3,1672319005),(82260,8,88940,3,1672319005),(82261,8,88941,3,1672319005),(82262,8,88942,3,1672319005),(82263,8,88943,3,1672319005),(82264,8,88944,3,1672319005),(82265,8,88945,3,1672319005),(82266,8,88946,3,1672319005),(82267,8,88947,3,1672319005),(82268,8,88948,3,1672319005),(82269,8,88949,3,1672319005),(82270,8,88950,3,1672319005),(82271,8,88951,3,1672319005),(82272,8,88952,3,1672319005),(82273,8,88953,3,1672319005),(82274,8,88954,3,1672319005),(82275,8,88955,3,1672319005),(82276,8,88956,3,1672319005),(82277,8,88957,3,1672319005),(82278,8,88958,3,1672319005),(82279,8,88959,3,1672319005),(82280,8,88960,3,1672319005),(82281,8,88961,3,1672319005),(82282,8,88962,3,1672319005),(82283,8,88963,3,1672319005),(82284,8,88964,3,1672319005),(82285,8,88965,3,1672319005),(82286,8,88966,3,1672319005),(82287,8,88967,3,1672319005),(82288,8,88968,3,1672319005),(82289,8,88969,3,1672319005),(82290,8,88970,3,1672319005),(82291,8,88971,3,1672319005),(82292,8,88972,3,1672319005),(82293,8,88973,3,1672319005),(82294,8,88974,3,1672319005),(82295,8,88975,3,1672319005),(82296,8,88976,3,1672319005),(82297,8,88977,3,1672319005),(82298,8,88978,3,1672319005),(82299,8,88979,3,1672319005),(82300,8,88980,3,1672319005),(82301,8,88981,3,1672319005),(82302,8,88982,3,1672319005),(82303,8,88983,3,1672319005),(82304,8,88984,3,1672319005),(82305,8,88985,3,1672319005),(82306,8,88986,3,1672319005),(82307,8,88987,3,1672319005),(82308,8,88988,3,1672319005),(82309,8,88989,3,1672319005),(82310,8,88990,3,1672319005),(82311,8,88991,3,1672319005),(82312,8,88992,3,1672319005),(82313,8,88993,3,1672319005),(82314,8,88994,3,1672319005),(82315,8,88995,3,1672319005),(82316,8,88996,3,1672319005),(82317,8,88997,3,1672319005),(82318,8,88998,3,1672319005),(82319,8,88999,3,1672319005),(82320,8,89000,3,1672319005),(82321,8,89001,3,1672319005),(82322,8,89002,3,1672319005),(82323,8,89003,3,1672319005),(82324,8,89004,3,1672319005),(82325,8,89005,3,1672319005),(82326,8,89006,3,1672319005),(82327,8,89007,3,1672319005),(82328,8,89008,3,1672319005),(82329,8,89009,3,1672319005),(82330,8,89010,3,1672319005),(82331,8,89011,3,1672319005),(82332,8,89012,3,1672319005),(82333,8,89013,3,1672319005),(82334,8,89014,3,1672319005),(82335,8,89015,3,1672319005),(82336,8,89016,3,1672319005),(82337,8,89017,3,1672319005),(82338,8,89018,3,1672319005),(82339,8,89019,3,1672319005),(82340,8,89020,3,1672319005),(82341,8,89021,3,1672319005),(82342,8,89022,3,1672319005),(82343,8,89023,3,1672319005),(82344,8,89024,3,1672319005),(82345,8,89025,3,1672319005),(82346,8,89026,3,1672319005),(82347,8,89027,3,1672319005),(82348,8,89028,3,1672319005),(82349,8,89029,3,1672319005),(82350,8,89030,3,1672319005),(82351,8,89031,3,1672319005),(82352,8,89032,3,1672319005),(82353,8,89033,3,1672319005),(82354,8,89034,3,1672319005),(82355,8,89035,3,1672319005),(82356,8,89036,3,1672319005),(82357,8,89037,3,1672319005),(82358,8,89038,3,1672319005),(82359,8,89039,3,1672319005),(82360,8,89040,3,1672319005),(82361,8,89041,3,1672319005),(82362,8,89042,3,1672319005),(82363,8,89043,3,1672319005),(82364,8,89044,3,1672319005),(82365,8,89045,3,1672319005),(82366,8,89046,3,1672319005),(82367,8,89047,3,1672319005),(82368,8,89048,3,1672319005),(82369,8,89049,3,1672319005),(82370,8,89050,3,1672319005),(82371,8,89051,3,1672319005),(82372,8,89052,3,1672319005),(82373,8,89053,3,1672319005),(82374,8,89054,3,1672319005),(82375,8,89055,3,1672319005),(82376,8,89056,3,1672319005),(82377,8,89057,3,1672319005),(82378,8,89058,3,1672319005),(82379,8,89059,3,1672319005),(82380,8,89060,3,1672319005),(82381,8,89061,3,1672319005),(82382,8,89062,3,1672319005),(82383,8,89063,3,1672319005),(82384,8,89064,3,1672319005),(82385,8,89065,3,1672319005),(82386,8,89066,3,1672319005),(82387,8,89067,3,1672319005),(82388,8,89068,3,1672319005),(82389,8,89069,3,1672319005),(82390,8,89070,3,1672319005),(82391,8,89071,3,1672319005),(82392,8,89072,3,1672319005),(82393,8,89073,3,1672319005),(82394,8,89074,3,1672319005),(82395,8,89075,3,1672319005),(82396,8,89076,3,1672319005),(82397,8,89077,3,1672319005),(82398,8,89078,3,1672319005),(82399,8,89079,3,1672319005),(82400,8,89080,3,1672319005),(82401,8,89081,3,1672319005),(82402,8,89082,3,1672319005),(82403,8,89083,3,1672319005),(82404,8,89084,3,1672319005),(82405,8,89085,3,1672319005),(82406,8,89086,3,1672319005),(82407,8,89087,3,1672319005),(82408,8,89088,3,1672319005),(82409,8,89089,3,1672319005),(82410,8,89090,3,1672319005),(82411,8,89091,3,1672319005),(82412,8,89092,3,1672319005),(82413,8,89093,3,1672319005),(82414,8,89094,3,1672319005),(82415,8,89095,3,1672319005),(82416,8,89096,3,1672319005),(82417,8,89097,3,1672319005),(82418,8,89098,3,1672319005),(82419,8,89099,3,1672319005),(82420,8,89100,3,1672319005),(82421,8,89101,3,1672319005),(82422,8,89102,3,1672319005),(82423,8,89103,3,1672319005),(82424,8,89104,3,1672319005),(82425,8,89105,3,1672319005),(82426,8,89106,3,1672319005),(82427,8,89107,3,1672319005),(82428,8,89108,3,1672319005),(82429,8,89109,3,1672319005),(82430,8,89110,3,1672319005),(82431,8,89111,3,1672319005),(82432,8,89112,3,1672319005),(82433,8,89113,3,1672319005),(82434,8,89114,3,1672319005),(82435,8,89115,3,1672319005),(82436,8,89116,3,1672319005),(82437,8,89117,3,1672319005),(82438,8,89118,3,1672319005),(82439,8,89119,3,1672319005),(82440,8,89120,3,1672319005),(82441,8,89121,3,1672319005),(82442,8,89122,3,1672319005),(82443,8,89123,3,1672319005),(82444,8,89124,3,1672319005),(82445,8,89125,3,1672319005),(82446,8,89126,3,1672319005),(82447,8,89127,3,1672319005),(82448,8,89128,3,1672319005),(82449,8,89129,3,1672319005),(82450,8,89130,3,1672319005),(82451,8,89131,3,1672319005),(82452,8,89132,3,1672319005),(82453,8,89133,3,1672319005),(82454,8,89134,3,1672319005),(82455,8,89135,3,1672319005),(82456,8,89136,3,1672319005),(82457,8,89137,3,1672319005),(82458,8,89138,3,1672319005),(82459,8,89139,3,1672319005),(82460,8,89140,3,1672319005),(82461,8,89141,3,1672319005),(82462,8,89142,3,1672319005),(82463,8,89143,3,1672319005),(82464,8,89144,3,1672319005),(82465,8,89145,3,1672319005),(82466,8,89146,3,1672319005),(82467,8,89147,3,1672319005),(82468,8,89148,3,1672319005),(82469,8,89149,3,1672319005),(82470,8,89150,3,1672319005),(82471,8,89151,3,1672319005),(82472,8,89152,3,1672319005),(82473,8,89153,3,1672319005),(82474,8,89154,3,1672319005),(82475,8,89155,3,1672319005),(82476,8,89156,3,1672319005),(82477,8,89157,3,1672319005),(82478,8,89158,3,1672319005),(82479,8,89159,3,1672319005),(82480,8,89160,3,1672319005),(82481,8,89161,3,1672319005),(82482,8,89162,3,1672319005),(82483,8,89163,3,1672319005),(82484,8,89164,3,1672319005),(82485,8,89165,3,1672319005),(82486,8,89166,3,1672319005),(82487,8,89167,3,1672319005),(82488,8,89168,3,1672319005),(82489,8,89169,3,1672319005),(82490,8,89170,3,1672319005),(82491,8,89171,3,1672319005),(82492,8,89172,3,1672319005),(82493,8,89173,3,1672319005),(82494,8,89174,3,1672319005),(82495,8,89175,3,1672319005),(82496,8,89176,3,1672319005),(82497,8,89177,3,1672319005),(82498,8,89178,3,1672319005),(82499,8,89179,3,1672319005),(82500,8,89180,3,1672319005),(82501,8,89181,3,1672319005),(82502,8,89182,3,1672319005),(82503,8,89183,3,1672319005),(82504,8,89184,3,1672319005),(82505,8,89185,3,1672319005),(82506,8,89186,3,1672319005),(82507,8,89187,3,1672319005),(82508,8,89188,3,1672319005),(82509,8,89189,3,1672319005),(82510,8,89190,3,1672319005),(82511,8,89191,3,1672319005),(82512,8,89192,3,1672319005),(82513,8,89193,3,1672319005),(82514,8,89194,3,1672319005),(82515,8,89195,3,1672319005),(82516,8,89196,3,1672319005),(82517,8,89197,3,1672319005),(82518,8,89198,3,1672319005),(82519,8,89199,3,1672319005),(82520,8,89200,3,1672319005),(82521,8,89201,3,1672319005),(82522,8,89202,3,1672319005),(82523,8,89203,3,1672319005),(82524,8,89204,3,1672319005),(82525,8,89205,3,1672319005),(82526,8,89206,3,1672319005),(82527,8,89207,3,1672319005),(82528,8,89208,3,1672319005),(82529,8,89209,3,1672319005),(82530,8,89210,3,1672319005),(82531,8,89211,3,1672319005),(82532,8,89212,3,1672319005),(82533,8,89213,3,1672319005),(82534,8,89214,3,1672319005),(82535,8,89215,3,1672319005),(82536,8,89216,3,1672319005),(82537,8,89217,3,1672319005),(82538,8,89218,3,1672319005),(82539,8,89219,3,1672319005),(82540,8,89220,3,1672319005),(82541,8,89221,3,1672319005),(82542,8,89222,3,1672319005),(82543,8,89223,3,1672319005),(82544,8,89224,3,1672319005),(82545,8,89225,3,1672319005),(82546,8,89226,3,1672319005),(82547,8,89227,3,1672319005),(82548,8,89228,3,1672319005),(82549,8,89229,3,1672319005),(82550,8,89230,3,1672319005),(82551,8,89231,3,1672319005),(82552,8,89232,3,1672319005),(82553,8,89233,3,1672319005),(82554,8,89234,3,1672319005),(82555,8,89235,3,1672319005),(82556,8,89236,3,1672319005),(82557,8,89237,3,1672319005),(82558,8,89238,3,1672319005),(82559,8,89239,3,1672319005),(82560,8,89240,3,1672319005),(82561,8,89241,3,1672319005),(82562,8,89242,3,1672319005),(82563,8,89243,3,1672319005),(82564,8,89244,3,1672319005),(82565,8,89245,3,1672319005),(82566,8,89246,3,1672319005),(82567,8,89247,3,1672319005),(82568,8,89248,3,1672319005),(82569,8,89249,3,1672319005),(82570,8,89250,3,1672319005),(82571,8,89251,3,1672319005),(82572,8,89252,3,1672319005),(82573,8,89253,3,1672319005),(82574,8,89254,3,1672319005),(82575,8,89255,3,1672319005),(82576,8,89256,3,1672319005),(82577,8,89257,3,1672319005),(82578,8,89258,3,1672319005),(82579,8,89259,3,1672319005),(82580,8,89260,3,1672319005),(82581,8,89261,3,1672319005),(82582,8,89262,3,1672319005),(82583,8,89263,3,1672319005),(82584,8,89264,3,1672319005),(82585,8,89265,3,1672319005),(82586,8,89266,3,1672319005),(82587,8,89267,3,1672319005),(82588,8,89268,3,1672319005),(82589,8,89269,3,1672319005),(82590,8,89270,3,1672319005),(82591,8,89271,3,1672319005),(82592,8,89272,3,1672319005),(82593,8,89273,3,1672319005),(82594,8,89274,3,1672319005),(82595,8,89275,3,1672319005),(82596,8,89276,3,1672319005),(82597,8,89277,3,1672319005),(82598,8,89278,3,1672319005),(82599,8,89279,3,1672319005),(82600,8,89280,3,1672319005),(82601,8,89281,3,1672319005),(82602,8,89282,3,1672319005),(82603,8,89283,3,1672319005),(82604,8,89284,3,1672319005),(82605,8,89285,3,1672319005),(82606,8,89286,3,1672319005),(82607,8,89287,3,1672319005),(82608,8,89288,3,1672319005),(82609,8,89289,3,1672319005),(82610,8,89290,3,1672319005),(82611,8,89291,3,1672319005),(82612,8,89292,3,1672319005),(82613,8,89293,3,1672319005),(82614,8,89294,3,1672319005),(82615,8,89295,3,1672319005),(82616,8,89296,3,1672319005),(82617,8,89297,3,1672319005),(82618,8,89298,3,1672319005),(82619,8,89299,3,1672319005),(82620,8,89300,3,1672319005),(82621,8,89301,3,1672319005),(82622,8,89302,3,1672319005),(82623,8,89303,3,1672319005),(82624,8,89304,3,1672319005),(82625,8,89305,3,1672319005),(82626,8,89306,3,1672319005),(82627,8,89307,3,1672319005),(82628,8,89308,3,1672319005),(82629,8,89309,3,1672319005),(82630,8,89310,3,1672319005),(82631,8,89311,3,1672319005),(82632,8,89312,3,1672319005),(82633,8,89313,3,1672319005),(82634,8,89314,3,1672319005),(82635,8,89315,3,1672319005),(82636,8,89316,3,1672319005),(82637,8,89317,3,1672319005),(82638,8,89318,3,1672319005),(82639,8,89319,3,1672319005),(82640,8,89320,3,1672319005),(82641,8,89321,3,1672319005),(82642,8,89322,3,1672319005),(82643,8,89323,3,1672319005),(82644,8,89324,3,1672319005),(82645,8,89325,3,1672319005),(82646,8,89326,3,1672319005),(82647,8,89327,3,1672319005),(82648,8,89328,3,1672319005),(82649,8,89329,3,1672319005),(82650,8,89330,3,1672319005),(82651,8,89331,3,1672319005),(82652,8,89332,3,1672319005),(82653,8,89333,3,1672319005),(82654,8,89334,3,1672319005),(82655,8,89335,3,1672319005),(82656,8,89336,3,1672319005),(82657,8,89337,3,1672319005),(82658,8,89338,3,1672319005),(82659,8,89339,3,1672319005),(82660,8,89340,3,1672319005),(82661,8,89341,3,1672319005),(82662,8,89342,3,1672319005),(82663,8,89343,3,1672319005),(82664,8,89344,3,1672319005),(82665,8,89345,3,1672319005),(82666,8,89346,3,1672319005),(82667,8,89347,3,1672319005),(82668,8,89348,3,1672319005),(82669,8,89349,3,1672319005),(82670,8,89350,3,1672319005),(82671,8,89351,3,1672319005),(82672,8,89352,3,1672319005),(82673,8,89353,3,1672319005),(82674,8,89354,3,1672319005),(82675,8,89355,3,1672319005),(82676,8,89356,3,1672319005),(82677,8,89357,3,1672319005),(82678,8,89358,3,1672319005),(82679,8,89359,3,1672319005),(82680,8,89360,3,1672319005),(82681,8,89361,3,1672319005),(82682,8,89362,3,1672319005),(82683,8,89363,3,1672319005),(82684,8,89364,3,1672319005),(82685,8,89365,3,1672319005),(82686,8,89366,3,1672319005),(82687,8,89367,3,1672319005),(82688,8,89368,3,1672319005),(82689,8,89369,3,1672319005),(82690,8,89370,3,1672319005),(82691,8,89371,3,1672319005),(82692,8,89372,3,1672319005),(82693,8,89373,3,1672319005),(82694,8,89374,3,1672319005),(82695,8,89375,3,1672319005),(82696,8,89376,3,1672319005),(82697,8,89377,3,1672319005),(82698,8,89378,3,1672319005),(82699,8,89379,3,1672319005),(82700,8,89380,3,1672319005),(82701,8,89381,3,1672319005),(82702,8,89382,3,1672319005),(82703,8,89383,3,1672319005),(82704,8,89384,3,1672319005),(82705,8,89385,3,1672319005),(82706,8,89386,3,1672319005),(82707,8,89387,3,1672319005),(82708,8,89388,3,1672319005),(82709,8,89389,3,1672319005),(82710,8,89390,3,1672319005),(82711,8,89391,3,1672319005),(82712,8,89392,3,1672319005),(82713,8,89393,3,1672319005),(82714,8,89394,3,1672319005),(82715,8,89395,3,1672319005),(82716,8,89396,3,1672319005),(82717,8,89397,3,1672319005),(82718,8,89398,3,1672319005),(82719,8,89399,3,1672319005),(82720,8,89400,3,1672319005),(82721,8,89401,3,1672319005),(82722,8,89402,3,1672319005),(82723,8,89403,3,1672319005),(82724,8,89404,3,1672319005),(82725,8,89405,3,1672319005),(82726,8,89406,3,1672319005),(82727,8,89407,3,1672319005),(82728,8,89408,3,1672319005),(82729,8,89409,3,1672319005),(82730,8,89410,3,1672319005),(82731,8,89411,3,1672319005),(82732,8,89412,3,1672319005),(82733,8,89413,3,1672319005),(82734,8,89414,3,1672319005),(82735,8,89415,3,1672319005),(82736,8,89416,3,1672319005),(82737,8,89417,3,1672319005),(82738,8,89418,3,1672319005),(82739,8,89419,3,1672319005),(82740,8,89420,3,1672319005),(82741,8,89421,3,1672319005),(82742,8,89422,3,1672319005),(82743,8,89423,3,1672319005),(82744,8,89424,3,1672319005),(82745,8,89425,3,1672319005),(82746,8,89426,3,1672319005),(82747,8,89427,3,1672319005),(82748,8,89428,3,1672319005),(82749,8,89429,3,1672319005),(82750,8,89430,3,1672319005),(82751,8,89431,3,1672319005),(82752,8,89432,3,1672319005),(82753,8,89433,3,1672319005),(82754,8,89434,3,1672319005),(82755,8,89435,3,1672319005),(82756,8,89436,3,1672319005),(82757,8,89437,3,1672319005),(82758,8,89438,3,1672319005),(82759,8,89439,3,1672319005),(82760,8,89440,3,1672319005),(82761,8,89441,3,1672319005),(82762,8,89442,3,1672319005),(82763,8,89443,3,1672319005),(82764,8,89444,3,1672319005),(82765,8,89445,3,1672319005),(82766,8,89446,3,1672319005),(82767,8,89447,3,1672319005),(82768,8,89448,3,1672319005),(82769,8,89449,3,1672319005),(82770,8,89450,3,1672319005),(82771,8,89451,3,1672319005),(82772,8,89452,3,1672319005),(82773,8,89453,3,1672319005),(82774,8,89454,3,1672319005),(82775,8,89455,3,1672319005),(82776,8,89456,3,1672319005),(82777,8,89457,3,1672319005),(82778,8,89458,3,1672319005),(82779,8,89459,3,1672319005),(82780,8,89460,3,1672319005),(82781,8,89461,3,1672319005),(82782,8,89462,3,1672319005),(82783,8,89463,3,1672319005),(82784,8,89464,3,1672319005),(82785,8,89465,3,1672319005),(82786,8,89466,3,1672319005),(82787,8,89467,3,1672319005),(82788,8,89468,3,1672319005),(82789,8,89469,3,1672319005),(82790,8,89470,3,1672319005),(82791,8,89471,3,1672319005),(82792,8,89472,3,1672319005),(82793,8,89473,3,1672319005),(82794,8,89474,3,1672319005),(82795,8,89475,3,1672319005),(82796,8,89476,3,1672319005),(82797,8,89477,3,1672319005),(82798,8,89478,3,1672319005),(82799,8,89479,3,1672319005),(82800,8,89480,3,1672319005),(82801,8,89481,3,1672319005),(82802,8,89482,3,1672319005),(82803,8,89483,3,1672319005),(82804,8,89484,3,1672319005),(82805,8,89485,3,1672319005),(82806,8,89486,3,1672319005),(82807,8,89487,3,1672319005),(82808,8,89488,3,1672319005),(82809,8,89489,3,1672319005),(82810,8,89490,3,1672319005),(82811,8,89491,3,1672319005),(82812,8,89492,3,1672319005),(82813,8,89493,3,1672319005),(82814,8,89494,3,1672319005),(82815,8,89495,3,1672319005),(82816,8,89496,3,1672319005),(82817,8,89497,3,1672319005),(82818,8,89498,3,1672319005),(82819,8,89499,3,1672319005),(82820,8,89500,3,1672319005),(82821,8,89501,3,1672319005),(82822,8,89502,3,1672319005),(82823,8,89503,3,1672319005),(82824,8,89504,3,1672319005),(82825,8,89505,3,1672319005),(82826,8,89506,3,1672319005),(82827,8,89507,3,1672319005),(82828,8,89508,3,1672319005),(82829,8,89509,3,1672319005),(82830,8,89510,3,1672319005),(82831,8,89511,3,1672319005),(82832,8,89512,3,1672319005),(82833,8,89513,3,1672319005),(82834,8,89514,3,1672319005),(82835,8,89515,3,1672319005),(82836,8,89516,3,1672319005),(82837,8,89517,3,1672319005),(82838,8,89518,3,1672319005),(82839,8,89519,3,1672319005),(82840,8,89520,3,1672319005),(82841,8,89521,3,1672319005),(82842,8,89522,3,1672319005),(82843,8,89523,3,1672319005),(82844,8,89524,3,1672319005),(82845,8,89525,3,1672319005),(82846,8,89526,3,1672319005),(82847,8,89527,3,1672319005),(82848,8,89528,3,1672319005),(82849,8,89529,3,1672319005),(82850,8,89530,3,1672319005),(82851,8,89531,3,1672319005),(82852,8,89532,3,1672319005),(82853,8,89533,3,1672319005),(82854,8,89534,3,1672319005),(82855,8,89535,3,1672319005),(82856,8,89536,3,1672319005),(82857,8,89537,3,1672319005),(82858,8,89538,3,1672319005),(82859,8,89539,3,1672319005),(82860,8,89540,3,1672319005),(82861,8,89541,3,1672319005),(82862,8,89542,3,1672319005),(82863,8,89543,3,1672319005),(82864,8,89544,3,1672319005),(82865,8,89545,3,1672319005),(82866,8,89546,3,1672319005),(82867,8,89547,3,1672319005),(82868,8,89548,3,1672319005),(82869,8,89549,3,1672319005),(82870,8,89550,3,1672319005),(82871,8,89551,3,1672319005),(82872,8,89552,3,1672319005),(82873,8,89553,3,1672319005),(82874,8,89554,3,1672319005),(82875,8,89555,3,1672319005),(82876,8,89556,3,1672319005),(82877,8,89557,3,1672319005),(82878,8,89558,3,1672319005),(82879,8,89559,3,1672319005),(82880,8,89560,3,1672319005),(82881,8,89561,3,1672319005),(82882,8,89562,3,1672319005),(82883,8,89563,3,1672319005),(82884,8,89564,3,1672319005),(82885,8,89565,3,1672319005),(82886,8,89566,3,1672319005),(82887,8,89567,3,1672319005),(82888,8,89568,3,1672319005),(82889,8,89569,3,1672319005),(82890,8,89570,3,1672319005),(82891,8,89571,3,1672319005),(82892,8,89572,3,1672319005),(82893,8,89573,3,1672319005),(82894,8,89574,3,1672319005),(82895,8,89575,3,1672319005),(82896,8,89576,3,1672319005),(82897,8,89577,3,1672319005),(82898,8,89578,3,1672319005),(82899,8,89579,3,1672319005),(82900,8,89580,3,1672319005),(82901,8,89581,3,1672319005),(82902,8,89582,3,1672319005),(82903,8,89583,3,1672319005),(82904,8,89584,3,1672319005),(82905,8,89585,3,1672319005),(82906,8,89586,3,1672319005),(82907,8,89587,3,1672319005),(82908,8,89588,3,1672319005),(82909,8,89589,3,1672319005),(82910,8,89590,3,1672319005),(82911,8,89591,3,1672319005),(82912,8,89592,3,1672319005),(82913,8,89593,3,1672319005),(82914,8,89594,3,1672319005),(82915,8,89595,3,1672319005),(82916,8,89596,3,1672319005),(82917,8,89597,3,1672319005),(82918,8,89598,3,1672319005),(82919,8,89599,3,1672319005),(82920,8,89600,3,1672319005),(82921,8,89601,3,1672319005),(82922,8,89602,3,1672319005),(82923,8,89603,3,1672319005),(82924,8,89604,3,1672319005),(82925,8,89605,3,1672319005),(82926,8,89606,3,1672319005),(82927,8,89607,3,1672319005),(82928,8,89608,3,1672319005),(82929,8,89609,3,1672319005),(82930,8,89610,3,1672319005),(82931,8,89611,3,1672319005),(82932,8,89612,3,1672319005),(82933,8,89613,3,1672319005),(82934,8,89614,3,1672319005),(82935,8,89615,3,1672319005),(82936,8,89616,3,1672319005),(82937,8,89631,3,1672319005),(82938,8,89632,3,1672319005),(82939,8,89635,3,1672319005),(82940,8,89637,3,1672319005),(82941,8,89638,3,1672319005),(82942,8,89639,3,1672319005),(82943,8,89640,3,1672319005),(82944,8,89641,3,1672319005),(82945,8,89642,3,1672319005),(82946,8,89643,3,1672319005),(82947,8,89644,3,1672319005),(82948,8,89645,3,1672319005),(82949,8,89646,3,1672319005),(82950,8,89647,3,1672319005),(82951,8,89659,3,1672319005),(82952,8,89660,3,1672319005),(82953,8,89661,3,1672319005),(82954,8,89662,3,1672319005),(82955,8,89663,3,1672319005),(82956,8,89664,3,1672319005),(82957,8,89665,3,1672319005),(82958,8,89666,3,1672319005),(82959,8,89667,3,1672319005),(82960,8,89668,3,1672319005),(82961,8,89669,3,1672319005),(82962,8,89670,3,1672319005),(82963,8,89671,3,1672319005),(82964,8,89672,3,1672319005),(82965,8,89673,3,1672319005),(82966,8,89674,3,1672319005),(82967,8,89691,3,1672319005),(82968,8,89692,3,1672319005),(82969,8,89693,3,1672319005),(82970,8,89694,3,1672319005),(82971,8,89695,3,1672319005),(82972,8,89696,3,1672319005),(82973,8,89697,3,1672319005),(82974,8,89698,3,1672319005),(82975,8,89699,3,1672319005),(82976,8,89700,3,1672319005),(82977,8,89701,3,1672319005),(82978,8,89702,3,1672319005),(82979,8,89703,3,1672319005),(82980,8,89704,3,1672319005),(82981,8,89705,3,1672319005),(82982,8,89706,3,1672319005),(82983,8,89707,3,1672319005),(82984,8,89708,3,1672319005),(82985,8,89709,3,1672319005),(82986,8,89710,3,1672319005),(82987,8,89711,3,1672319005),(82988,8,89712,3,1672319005),(82989,8,89713,3,1672319005),(82990,8,89714,3,1672319005),(82991,8,89715,3,1672319005),(82992,8,89716,3,1672319005),(82993,8,89717,3,1672319005),(82994,8,89718,3,1672319005),(82995,8,89719,3,1672319005),(82996,8,89720,3,1672319005),(82997,8,89721,3,1672319005),(82998,8,89722,3,1672319005),(82999,8,89723,3,1672319005),(83000,8,89724,3,1672319005),(83001,8,89725,3,1672319005),(83002,8,89726,3,1672319005),(83003,8,89727,3,1672319005),(83004,8,89728,3,1672319005),(83005,8,89729,3,1672319005),(83006,8,89730,3,1672319005),(83007,8,89731,3,1672319005),(83008,8,89732,3,1672319005),(83009,8,89733,3,1672319005),(83010,8,89734,3,1672319005),(83011,8,89735,3,1672319005),(83012,8,89736,3,1672319005),(83013,8,89737,3,1672319005),(83014,8,89738,3,1672319005),(83015,8,89739,3,1672319005),(83016,8,89740,3,1672319005),(83017,8,89741,3,1672319005),(83018,8,89742,3,1672319005),(83019,8,89743,3,1672319005),(83020,8,89744,3,1672319005),(83021,8,89745,3,1672319005),(83022,8,89746,3,1672319005),(83023,8,89747,3,1672319005),(83024,8,89748,3,1672319005),(83025,8,89749,3,1672319005),(83026,8,89750,3,1672319005),(83027,8,89751,3,1672319005),(83028,8,89752,3,1672319005),(83029,8,89753,3,1672319005),(83030,8,89754,3,1672319005),(83031,8,89755,3,1672319005),(83032,8,89756,3,1672319005),(83033,8,89757,3,1672319005),(83034,8,89758,3,1672319005),(83035,8,89759,3,1672319005),(83036,8,89760,3,1672319005),(83037,8,89761,3,1672319005),(83038,8,89762,3,1672319005),(83039,8,89763,3,1672319005),(83040,8,89764,3,1672319005),(83041,8,89765,3,1672319005),(83042,8,89766,3,1672319005),(83043,8,89767,3,1672319005),(83044,8,89768,3,1672319005),(83045,8,89769,3,1672319005),(83046,8,89770,3,1672319005),(83047,8,89771,3,1672319005),(83048,8,89772,3,1672319005),(83049,8,89773,3,1672319005),(83050,8,89774,3,1672319005),(83051,8,89775,3,1672319005),(83052,8,89776,3,1672319005),(83053,8,89777,3,1672319005),(83054,8,89778,3,1672319005),(83055,8,89779,3,1672319005),(83056,8,89780,3,1672319005),(83057,8,89781,3,1672319005),(83058,8,89782,3,1672319005),(83059,8,89783,3,1672319005),(83060,8,89784,3,1672319005),(83061,8,89785,3,1672319005),(83062,8,89786,3,1672319005),(83063,8,89787,3,1672319005),(83064,8,89788,3,1672319005),(83065,8,89789,3,1672319005),(83066,8,89790,3,1672319005),(83067,8,89791,3,1672319005),(83068,8,89792,3,1672319005),(83069,8,89793,3,1672319005),(83070,8,89794,3,1672319005),(83071,8,89795,3,1672319005),(83072,8,89796,3,1672319005),(83073,8,89797,3,1672319005),(83074,8,89798,3,1672319005),(83075,8,89799,3,1672319005),(83076,8,89800,3,1672319005),(83077,8,89801,3,1672319005),(83078,8,89802,3,1672319005),(83079,8,89803,3,1672319005),(83080,8,89804,3,1672319005),(83081,8,89805,3,1672319005),(83082,8,89806,3,1672319005),(83083,8,89807,3,1672319005),(83084,8,89808,3,1672319005),(83085,8,89809,3,1672319005),(83086,8,89810,3,1672319005),(83087,8,89811,3,1672319005),(83088,8,89812,3,1672319005),(83089,8,89813,3,1672319005),(83090,8,89814,3,1672319005),(83091,8,89815,3,1672319005),(83092,8,89816,3,1672319005),(83093,8,89817,3,1672319005),(83094,8,89818,3,1672319005),(83095,8,89819,3,1672319005),(83096,8,89820,3,1672319005),(83097,8,89821,3,1672319005),(83098,8,89822,3,1672319005),(83099,8,89823,3,1672319005),(83100,8,89824,3,1672319005),(83101,8,89825,3,1672319005),(83102,8,89826,3,1672319005),(83103,8,89827,3,1672319005),(83104,8,89828,3,1672319005),(83105,8,89829,3,1672319005),(83106,8,89830,3,1672319005),(83107,8,89831,3,1672319005),(83108,8,89832,3,1672319005),(83109,8,89833,3,1672319005),(83110,8,89834,3,1672319005),(83111,8,89835,3,1672319005),(83112,8,89836,3,1672319005),(83113,8,89837,3,1672319005),(83114,8,89838,3,1672319005),(83115,8,89839,3,1672319005),(83116,8,89840,3,1672319005),(83117,8,89841,3,1672319005),(83118,8,89842,3,1672319005),(83119,8,89843,3,1672319005),(83120,8,89844,3,1672319005),(83121,8,89845,3,1672319005),(83122,8,89846,3,1672319005),(83123,8,89847,3,1672319005),(83124,8,89848,3,1672319005),(83125,8,89849,3,1672319005),(83126,8,89850,3,1672319005),(83127,8,89851,3,1672319005),(83128,8,89852,3,1672319005),(83129,8,89853,3,1672319005),(83130,8,89854,3,1672319005),(83131,8,89855,3,1672319005),(83132,8,89856,3,1672319005),(83133,8,89857,3,1672319005),(83134,8,89858,3,1672319005),(83135,8,89859,3,1672319005),(83136,8,89860,3,1672319005),(83137,8,89861,3,1672319005),(83138,8,89862,3,1672319005),(83139,8,89863,3,1672319005),(83140,8,89864,3,1672319005),(83141,8,89865,3,1672319005),(83142,8,89866,3,1672319005),(83143,8,89867,3,1672319005),(83144,8,89868,3,1672319005),(83145,8,89869,3,1672319005),(83146,8,89870,3,1672319005),(83147,8,89871,3,1672319005),(83148,8,89872,3,1672319005),(83149,8,89873,3,1672319005),(83150,8,89874,3,1672319005),(83151,8,89875,3,1672319005),(83152,8,89876,3,1672319005),(83153,8,89877,3,1672319005),(83154,8,89878,3,1672319005),(83155,8,89879,3,1672319005),(83156,8,89880,3,1672319005),(83157,8,89881,3,1672319005),(83158,8,89882,3,1672319005),(83159,8,89883,3,1672319005),(83160,8,89884,3,1672319005),(83161,8,89885,3,1672319005),(83162,8,89886,3,1672319005),(83163,8,89887,3,1672319005),(83164,8,89888,3,1672319005),(83165,8,89889,3,1672319005),(83166,8,89890,3,1672319005),(83167,8,89891,3,1672319005),(83168,8,89892,3,1672319005),(83169,8,89893,3,1672319005),(83170,8,89894,3,1672319005),(83171,8,89895,3,1672319005),(83172,8,89896,3,1672319005),(83173,8,89897,3,1672319005),(83174,8,89898,3,1672319005),(83175,8,89899,3,1672319005),(83176,8,89900,3,1672319005),(83177,8,89901,3,1672319005),(83178,8,89902,3,1672319005),(83179,8,89903,3,1672319005),(83180,8,89904,3,1672319005),(83181,8,89905,3,1672319005),(83182,8,89906,3,1672319005),(83183,8,89907,3,1672319005),(83184,8,89908,3,1672319005),(83185,8,89909,3,1672319005),(83186,8,89910,3,1672319005),(83187,8,89911,3,1672319005),(83188,8,89912,3,1672319005),(83189,8,89913,3,1672319005),(83190,8,89914,3,1672319005),(83191,8,89915,3,1672319005),(83192,8,89916,3,1672319005),(83193,8,89917,3,1672319005),(83194,8,89918,3,1672319005),(83195,8,89919,3,1672319005),(83196,8,89920,3,1672319005),(83197,8,89922,3,1672319005),(83198,8,89923,3,1672319005),(83199,8,89924,3,1672319005),(83200,8,89925,3,1672319005),(83201,8,89928,3,1672319005),(83202,8,89929,3,1672319005),(83203,8,89930,3,1672319005),(83204,8,89931,3,1672319005),(83205,8,89932,3,1672319005),(83206,8,89933,3,1672319005),(83207,8,89934,3,1672319005),(83208,8,89935,3,1672319005),(83209,8,89936,3,1672319005),(83210,8,89937,3,1672319005),(83211,8,89938,3,1672319005),(83212,8,89939,3,1672319005),(83213,8,89940,3,1672319005),(83214,8,89941,3,1672319005),(83215,8,89942,3,1672319005),(83216,8,89943,3,1672319005),(83217,8,89944,3,1672319005),(83218,8,89945,3,1672319005),(83219,8,89946,3,1672319005),(83220,8,89947,3,1672319005),(83221,8,89948,3,1672319005),(83222,8,89949,3,1672319005),(83223,8,89950,3,1672319005),(83224,8,89951,3,1672319005),(83225,8,89952,3,1672319005),(83226,8,89953,3,1672319005),(83227,8,89954,3,1672319005),(83228,8,89955,3,1672319005),(83229,8,89956,3,1672319005),(83230,8,89957,3,1672319005),(83231,8,89958,3,1672319005),(83232,8,89959,3,1672319005),(83233,8,89960,3,1672319005),(83234,8,89961,3,1672319005),(83235,8,89962,3,1672319005),(83236,8,89963,3,1672319005),(83237,8,89964,3,1672319005),(83238,8,89965,3,1672319005),(83239,8,89966,3,1672319005),(83240,8,89967,3,1672319005),(83241,8,89968,3,1672319005),(83242,8,89969,3,1672319005),(83243,8,89970,3,1672319005),(83244,8,89971,3,1672319005),(83245,8,89972,3,1672319005),(83246,8,89973,3,1672319005),(83247,8,89974,3,1672319005),(83248,8,89975,3,1672319005),(83249,8,89976,3,1672319005),(83250,8,89977,3,1672319005),(83251,8,89978,3,1672319005),(83252,8,89979,3,1672319005),(83253,8,89980,3,1672319005),(83254,8,89981,3,1672319005),(83255,8,89982,3,1672319005),(83256,8,89983,3,1672319005),(83257,8,89984,3,1672319005),(83258,8,89985,3,1672319005),(83259,8,89986,3,1672319005),(83260,8,89987,3,1672319005),(83261,8,89988,3,1672319005),(83262,8,89989,3,1672319005),(83263,8,89990,3,1672319005),(83264,8,89991,3,1672319005),(83265,8,89992,3,1672319005),(83266,8,89993,3,1672319005),(83267,8,89994,3,1672319005),(83268,8,89995,3,1672319005),(83269,8,89996,3,1672319005),(83270,8,89997,3,1672319005),(83271,8,89998,3,1672319005),(83272,8,89999,3,1672319005),(83273,8,90000,3,1672319005),(83274,8,90001,3,1672319005),(83275,8,90002,3,1672319005),(83276,8,90003,3,1672319005),(83277,8,90004,3,1672319005),(83278,8,90005,3,1672319005),(83279,8,90006,3,1672319005),(83280,8,90007,3,1672319005),(83281,8,90008,3,1672319005),(83282,8,90009,3,1672319005),(83283,8,90010,3,1672319005),(83284,8,90011,3,1672319005),(83285,8,90012,3,1672319005),(83286,8,90013,3,1672319005),(83287,8,90014,3,1672319005),(83288,8,90015,3,1672319005),(83289,8,90016,3,1672319005),(83290,8,90017,3,1672319005),(83291,8,90018,3,1672319005),(83292,8,90019,3,1672319005),(83293,8,90020,3,1672319005),(83294,8,90021,3,1672319005),(83295,8,90022,3,1672319005),(83296,8,90023,3,1672319005),(83297,8,90024,3,1672319005),(83298,8,90025,3,1672319005),(83299,8,90026,3,1672319005),(83300,8,90027,3,1672319005),(83301,8,90028,3,1672319005),(83302,8,90029,3,1672319005),(83303,8,90030,3,1672319005),(83304,8,90031,3,1672319005),(83305,8,90032,3,1672319005),(83306,8,90033,3,1672319005),(83307,8,90034,3,1672319005),(83308,8,90035,3,1672319005),(83309,8,90036,3,1672319005),(83310,8,90037,3,1672319005),(83311,8,90038,3,1672319005),(83312,8,90039,3,1672319005),(83313,8,90040,3,1672319005),(83314,8,90041,3,1672319005),(83315,8,90042,3,1672319005),(83316,8,90043,3,1672319005),(83317,8,90044,3,1672319005),(83318,8,90045,3,1672319005),(83319,8,90046,3,1672319005),(83320,8,90047,3,1672319005),(83321,8,90048,3,1672319005),(83322,8,90049,3,1672319005),(83323,8,90050,3,1672319005),(83324,8,90051,3,1672319005),(83325,8,90052,3,1672319005),(83326,8,90053,3,1672319005),(83327,8,90054,3,1672319005),(83328,8,90055,3,1672319005),(83329,8,90056,3,1672319005),(83330,8,90057,3,1672319005),(83331,8,90058,3,1672319005),(83332,8,90059,3,1672319005),(83333,8,90060,3,1672319005),(83334,8,90061,3,1672319005),(83335,8,90062,3,1672319005),(83336,8,90063,3,1672319005),(83337,8,90064,3,1672319005),(83338,8,90065,3,1672319005),(83339,8,90066,3,1672319005),(83340,8,90067,3,1672319005),(83341,8,90068,3,1672319005),(83342,8,90069,3,1672319005),(83343,8,90070,3,1672319005),(83344,8,90071,3,1672319005),(83345,8,90072,3,1672319005),(83346,8,90073,3,1672319005),(83347,8,90074,3,1672319005),(83348,8,90075,3,1672319005),(83349,8,90076,3,1672319005),(83350,8,90077,3,1672319005),(83351,8,90078,3,1672319005),(83352,8,90079,3,1672319005),(83353,8,90080,3,1672319005),(83354,8,90081,3,1672319005),(83355,8,90082,3,1672319005),(83356,8,90083,3,1672319005),(83357,8,90084,3,1672319005),(83358,8,90085,3,1672319005),(83359,8,90086,3,1672319005),(83360,8,90087,3,1672319005),(83361,8,90088,3,1672319005),(83362,8,90089,3,1672319005),(83363,8,90090,3,1672319005),(83364,8,90091,3,1672319005),(83365,8,90092,3,1672319005),(83366,8,90093,3,1672319005),(83367,8,90094,3,1672319005),(83368,8,90095,3,1672319005),(83369,8,90096,3,1672319005),(83370,8,90097,3,1672319005),(83371,8,90098,3,1672319005),(83372,8,90099,3,1672319005),(83373,8,90100,3,1672319005),(83374,8,90101,3,1672319005),(83375,8,90102,3,1672319005),(83376,8,90103,3,1672319005),(83377,8,90104,3,1672319005),(83378,8,90105,3,1672319005),(83379,8,90106,3,1672319005),(83380,8,90107,3,1672319005),(83381,8,90108,3,1672319005),(83382,8,90109,3,1672319005),(83383,8,90110,3,1672319005),(83384,8,90111,3,1672319005),(83385,8,90112,3,1672319005),(83386,8,90113,3,1672319005),(83387,8,90114,3,1672319005),(83388,8,90115,3,1672319005),(83389,8,90116,3,1672319005),(83390,8,90117,3,1672319005),(83391,8,90118,3,1672319005),(83392,8,90119,3,1672319005),(83393,8,90120,3,1672319005),(83394,8,90121,3,1672319005),(83395,8,90122,3,1672319005),(83396,8,90123,3,1672319005),(83397,8,90124,3,1672319005),(83398,8,90125,3,1672319005),(83399,8,90126,3,1672319005),(83400,8,90127,3,1672319005),(83401,8,90128,3,1672319005),(83402,8,90129,3,1672319005),(83403,8,90130,3,1672319005),(83404,8,90131,3,1672319005),(83405,8,90132,3,1672319005),(83406,8,90133,3,1672319005),(83407,8,90134,3,1672319005),(83408,8,90135,3,1672319005),(83409,8,90136,3,1672319005),(83410,8,90137,3,1672319005),(83411,8,90138,3,1672319005),(83412,8,90139,3,1672319005),(83413,8,90140,3,1672319005),(83414,8,90141,3,1672319005),(83415,8,90142,3,1672319005),(83416,8,90143,3,1672319005),(83417,8,90144,3,1672319005),(83418,8,90145,3,1672319005),(83419,8,90146,3,1672319005),(83420,8,90147,3,1672319005),(83421,8,90148,3,1672319005),(83422,8,90149,3,1672319005),(83423,8,90150,3,1672319005),(83424,8,90151,3,1672319005),(83425,8,90152,3,1672319005),(83426,8,90153,3,1672319005),(83427,8,90154,3,1672319005),(83428,8,90155,3,1672319005),(83429,8,90156,3,1672319005),(83430,8,90157,3,1672319005),(83431,8,90158,3,1672319005),(83432,8,90159,3,1672319005),(83433,8,90160,3,1672319005),(83434,8,90161,3,1672319005),(83435,8,90162,3,1672319005),(83436,8,90163,3,1672319005),(83437,8,90164,3,1672319005),(83438,8,90165,3,1672319005),(83439,8,90166,3,1672319005),(83440,8,90167,3,1672319005),(83441,8,90168,3,1672319005),(83442,8,90169,3,1672319005),(83443,8,90170,3,1672319005),(83444,8,90171,3,1672319005),(83445,8,90172,3,1672319005),(83446,8,90173,3,1672319005),(83447,8,90174,3,1672319005),(83448,8,90175,3,1672319005),(83449,8,90176,3,1672319005),(83450,8,90177,3,1672319005),(83451,8,90178,3,1672319005),(83452,8,90179,3,1672319005),(83453,8,90180,3,1672319005),(83454,8,90181,3,1672319005),(83455,8,90182,3,1672319005),(83456,8,90183,3,1672319005),(83457,8,90184,3,1672319005),(83458,8,90185,3,1672319005),(83459,8,90186,3,1672319005),(83460,8,90187,3,1672319005),(83461,8,90188,3,1672319005),(83462,8,90189,3,1672319005),(83463,8,90190,3,1672319005),(83464,8,90191,3,1672319005),(83465,8,90192,3,1672319005),(83466,8,90193,3,1672319005),(83467,8,90194,3,1672319005),(83468,8,90195,3,1672319005),(83469,8,90196,3,1672319005),(83470,8,90197,3,1672319005),(83471,8,90198,3,1672319005),(83472,8,90199,3,1672319005),(83473,8,90200,3,1672319005),(83474,8,90201,3,1672319005),(83475,8,90202,3,1672319005),(83476,8,90203,3,1672319005),(83477,8,90204,3,1672319005),(83478,8,90205,3,1672319005),(83479,8,90206,3,1672319005),(83480,8,90207,3,1672319005),(83481,8,90208,3,1672319005),(83482,8,90209,3,1672319005),(83483,8,90210,3,1672319005),(83484,8,90211,3,1672319005),(83485,8,90212,3,1672319005),(83486,8,90213,3,1672319005),(83487,8,90214,3,1672319005),(83488,8,90215,3,1672319005),(83489,8,90216,3,1672319005),(83490,8,90217,3,1672319005),(83491,8,90218,3,1672319005),(83492,8,90219,3,1672319005),(83493,8,90220,3,1672319005),(83494,8,90221,3,1672319005),(83495,8,90222,3,1672319005),(83496,8,90223,3,1672319005),(83497,8,90224,3,1672319005),(83498,8,90225,3,1672319005),(83499,8,90226,3,1672319005),(83500,8,90227,3,1672319005),(83501,8,90228,3,1672319005),(83502,8,90229,3,1672319005),(83503,8,90230,3,1672319005),(83504,8,90231,3,1672319005),(83505,8,90232,3,1672319005),(83506,8,90233,3,1672319005),(83507,8,90234,3,1672319005),(83508,8,90235,3,1672319005),(83509,8,90236,3,1672319005),(83510,8,90237,3,1672319005),(83511,8,90238,3,1672319005),(83512,8,90239,3,1672319005),(83513,8,90240,3,1672319005),(83514,8,90241,3,1672319005),(83515,8,90242,3,1672319005),(83516,8,90243,3,1672319005),(83517,8,90244,3,1672319005),(83518,8,90245,3,1672319005),(83519,8,90246,3,1672319005),(83520,8,90247,3,1672319005),(83521,8,90248,3,1672319005),(83522,8,90249,3,1672319005),(83523,8,90250,3,1672319005),(83524,8,90251,3,1672319005),(83525,8,90252,3,1672319005),(83526,8,90253,3,1672319005),(83527,8,90254,3,1672319005),(83528,8,90255,3,1672319005),(83529,8,90256,3,1672319005),(83530,8,90257,3,1672319005),(83531,8,90258,3,1672319005),(83532,8,90259,3,1672319005),(83533,8,90260,3,1672319005),(83534,8,90261,3,1672319005),(83535,8,90262,3,1672319005),(83536,8,90263,3,1672319005),(83537,8,90264,3,1672319005),(83538,8,90265,3,1672319005),(83539,8,90266,3,1672319005),(83540,8,90267,3,1672319005),(83541,8,90268,3,1672319005),(83542,8,90269,3,1672319005),(83543,8,90270,3,1672319005),(83544,8,90271,3,1672319005),(83545,8,90272,3,1672319005),(83546,8,90273,3,1672319005),(83547,8,90274,3,1672319005),(83548,8,90275,3,1672319005),(83549,8,90276,3,1672319005),(83550,8,90277,3,1672319005),(83551,8,90278,3,1672319005),(83552,8,90279,3,1672319005),(83553,8,90280,3,1672319005),(83554,8,90281,3,1672319005),(83555,8,90282,3,1672319005),(83556,8,90283,3,1672319005),(83557,8,90284,3,1672319005),(83558,8,90285,3,1672319005),(83559,8,90286,3,1672319005),(83560,8,90287,3,1672319005),(83561,8,90288,3,1672319005),(83562,8,90289,3,1672319005),(83563,8,90290,3,1672319005),(83564,8,90291,3,1672319005),(83565,8,90292,3,1672319005),(83566,8,90293,3,1672319005),(83567,8,90294,3,1672319005),(83568,8,90295,3,1672319005),(83569,8,90296,3,1672319005),(83570,8,90297,3,1672319005),(83571,8,90298,3,1672319005),(83572,8,90299,3,1672319005),(83573,8,90300,3,1672319005),(83574,8,90301,3,1672319005),(83575,8,90302,3,1672319005),(83576,8,90303,3,1672319005),(83577,8,90304,3,1672319005),(83578,8,90305,3,1672319005),(83579,8,90306,3,1672319005),(83580,8,90307,3,1672319005),(83581,8,90308,3,1672319005),(83582,8,90309,3,1672319005),(83583,8,90310,3,1672319005),(83584,8,90311,3,1672319005),(83585,8,90312,3,1672319005),(83586,8,90313,3,1672319005),(83587,8,90314,3,1672319005),(83588,8,90315,3,1672319005),(83589,8,90316,3,1672319005),(83590,8,90317,3,1672319005),(83591,8,90318,3,1672319005),(83592,8,90319,3,1672319005),(83593,8,90320,3,1672319005),(83594,8,90321,3,1672319005),(83595,8,90322,3,1672319005),(83596,8,90323,3,1672319005),(83597,8,90324,3,1672319005),(83598,8,90325,3,1672319005),(83599,8,90326,3,1672319005),(83600,8,90327,3,1672319005),(83601,8,90328,3,1672319005),(83602,8,90329,3,1672319005),(83603,8,90330,3,1672319005),(83604,8,90331,3,1672319005),(83605,8,90332,3,1672319005),(83606,8,90333,3,1672319005),(83607,8,90334,3,1672319005),(83608,8,90335,3,1672319005),(83609,8,90336,3,1672319005),(83610,8,90337,3,1672319005),(83611,8,90338,3,1672319005),(83612,8,90339,3,1672319005),(83613,8,90340,3,1672319005),(83614,8,90341,3,1672319005),(83615,8,90342,3,1672319005),(83616,8,90343,3,1672319005),(83617,8,90344,3,1672319005),(83618,8,90345,3,1672319005),(83619,8,90346,3,1672319005),(83620,8,90347,3,1672319005),(83621,8,90348,3,1672319005),(83622,8,90349,3,1672319005),(83623,8,90350,3,1672319005),(83624,8,90351,3,1672319005),(83625,8,90352,3,1672319005),(83626,8,90353,3,1672319005),(83627,8,90354,3,1672319005),(83628,8,90355,3,1672319005),(83629,8,90356,3,1672319005),(83630,8,90357,3,1672319005),(83631,8,90358,3,1672319005),(83632,8,90359,3,1672319005),(83633,8,90360,3,1672319005),(83634,8,90361,3,1672319005),(83635,8,90362,3,1672319005),(83636,8,90363,3,1672319005),(83637,8,90364,3,1672319005),(83638,8,90365,3,1672319005),(83639,8,90366,3,1672319005),(83640,8,90367,3,1672319005),(83641,8,90368,3,1672319005),(83642,8,90369,3,1672319005),(83643,8,90370,3,1672319005),(83644,8,90371,3,1672319005),(83645,8,90372,3,1672319005),(83646,8,90373,3,1672319005),(83647,8,90374,3,1672319005),(83648,8,90375,3,1672319005),(83649,8,90376,3,1672319005),(83650,8,90377,3,1672319005),(83651,8,90378,3,1672319005),(83652,8,90379,3,1672319005),(83653,8,90380,3,1672319005),(83654,8,90381,3,1672319005),(83655,8,90382,3,1672319005),(83656,8,90383,3,1672319005),(83657,8,90384,3,1672319005),(83658,8,90385,3,1672319005),(83659,8,90386,3,1672319005),(83660,8,90387,3,1672319005),(83661,8,90388,3,1672319005),(83662,8,90389,3,1672319005),(83663,8,90390,3,1672319005),(83664,8,90391,3,1672319005),(83665,8,90392,3,1672319005),(83666,8,90393,3,1672319005),(83667,8,90394,3,1672319005),(83668,8,90395,3,1672319005),(83669,8,90396,3,1672319005),(83670,8,90397,3,1672319005),(83671,8,90398,3,1672319005),(83672,8,90399,3,1672319005),(83673,8,90400,3,1672319005),(83674,8,90401,3,1672319005),(83675,8,90402,3,1672319005),(83676,8,90403,3,1672319005),(83677,8,90404,3,1672319005),(83678,8,90405,3,1672319005),(83679,8,90406,3,1672319005),(83680,8,90407,3,1672319005),(83681,8,90408,3,1672319005),(83682,8,90409,3,1672319005),(83683,8,90410,3,1672319005),(83684,8,90411,3,1672319005),(83685,8,90412,3,1672319005),(83686,8,90413,3,1672319005),(83687,8,90414,3,1672319005),(83688,8,90415,3,1672319005),(83689,8,90416,3,1672319005),(83690,8,90417,3,1672319005),(83691,8,90418,3,1672319005),(83692,8,90419,3,1672319005),(83693,8,90420,3,1672319005),(83694,8,90421,3,1672319005),(83695,8,90422,3,1672319005),(83696,8,90423,3,1672319005),(83697,8,90424,3,1672319005),(83698,8,90425,3,1672319005),(83699,8,90426,3,1672319005),(83700,8,90427,3,1672319005),(83701,8,90428,3,1672319005),(83702,8,90429,3,1672319005),(83703,8,90430,3,1672319005),(83704,8,90431,3,1672319005),(83705,8,90432,3,1672319005),(83706,8,90433,3,1672319005),(83707,8,90434,3,1672319005),(83708,8,90435,3,1672319005),(83709,8,90436,3,1672319005),(83710,8,90437,3,1672319005),(83711,8,90438,3,1672319005),(83712,8,90439,3,1672319005),(83713,8,90440,3,1672319005),(83714,8,90441,3,1672319005),(83715,8,90442,3,1672319005),(83716,8,90443,3,1672319005),(83717,8,90444,3,1672319005),(83718,8,90445,3,1672319005),(83719,8,90446,3,1672319005),(83720,8,90447,3,1672319005),(83721,8,90448,3,1672319005),(83722,8,90449,3,1672319005),(83723,8,90450,3,1672319005),(83724,8,90451,3,1672319005),(83725,8,90452,3,1672319005),(83726,8,90453,3,1672319005),(83727,8,90454,3,1672319005),(83728,8,90455,3,1672319005),(83729,8,90456,3,1672319005),(83730,8,90457,3,1672319005),(83731,8,90458,3,1672319005),(83732,8,90459,3,1672319005),(83733,8,90460,3,1672319005),(83734,8,90461,3,1672319005),(83735,8,90462,3,1672319005),(83736,8,90463,3,1672319005),(83737,8,90464,3,1672319005),(83738,8,90465,3,1672319005),(83739,8,90466,3,1672319005),(83740,8,90467,3,1672319005),(83741,8,90468,3,1672319005),(83742,8,90469,3,1672319005),(83743,8,90470,3,1672319005),(83744,8,90471,3,1672319005),(83745,8,90472,3,1672319005),(83746,8,90473,3,1672319005),(83747,8,90474,3,1672319005),(83748,8,90475,3,1672319005),(83749,8,90476,3,1672319005),(83750,8,90477,3,1672319005),(83751,8,90478,3,1672319005),(83752,8,90479,3,1672319005),(83753,8,90480,3,1672319005),(83754,8,90481,3,1672319005),(83755,8,90482,3,1672319005),(83756,8,90483,3,1672319005),(83757,8,90484,3,1672319005),(83758,8,90485,3,1672319005),(83759,8,90486,3,1672319005),(83760,8,90487,3,1672319005),(83761,8,90488,3,1672319005),(83762,8,90489,3,1672319005),(83763,8,90490,3,1672319005),(83764,8,90491,3,1672319005),(83765,8,90492,3,1672319005),(83766,8,90493,3,1672319005),(83767,8,90494,3,1672319005),(83768,8,90495,3,1672319005),(83769,8,90496,3,1672319005),(83770,8,90497,3,1672319005),(83771,8,90498,3,1672319005),(83772,8,90499,3,1672319005),(83773,8,90500,3,1672319005),(83774,8,90501,3,1672319005),(83775,8,90502,3,1672319005),(83776,8,90503,3,1672319005),(83777,8,90504,3,1672319005),(83778,8,90505,3,1672319005),(83779,8,90506,3,1672319005),(83780,8,90507,3,1672319005),(83781,8,90508,3,1672319005),(83782,8,90509,3,1672319005),(83783,8,90510,3,1672319005),(83784,8,90511,3,1672319005),(83785,8,90512,3,1672319005),(83786,8,90513,3,1672319005),(83787,8,90514,3,1672319005),(83788,8,90515,3,1672319005),(83789,8,90516,3,1672319005),(83790,8,90517,3,1672319005),(83791,8,90518,3,1672319005),(83792,8,90519,3,1672319005),(83793,8,90520,3,1672319005),(83794,8,90521,3,1672319005),(83795,8,90522,3,1672319005),(83796,8,90523,3,1672319005),(83797,8,90524,3,1672319005),(83798,8,90525,3,1672319005),(83799,8,90526,3,1672319005),(83800,8,90527,3,1672319005),(83801,8,90528,3,1672319005),(83802,8,90529,3,1672319005),(83803,8,90530,3,1672319005),(83804,8,90531,3,1672319005),(83805,8,90532,3,1672319005),(83806,8,90533,3,1672319005),(83807,8,90534,3,1672319005),(83808,8,90535,3,1672319005),(83809,8,90536,3,1672319005),(83810,8,90537,3,1672319005),(83811,8,90538,3,1672319005),(83812,8,90539,3,1672319005),(83813,8,90540,3,1672319005),(83814,8,90541,3,1672319005),(83815,8,90542,3,1672319005),(83816,8,90543,3,1672319005),(83817,8,90544,3,1672319005),(83818,8,90545,3,1672319005),(83819,8,90546,3,1672319005),(83820,8,90547,3,1672319005),(83821,8,90548,3,1672319005),(83822,8,90549,3,1672319005),(83823,8,90550,3,1672319005),(83824,8,90551,3,1672319005),(83825,8,90552,3,1672319005),(83826,8,90553,3,1672319005),(83827,8,90554,3,1672319005),(83828,8,90555,3,1672319005),(83829,8,90556,3,1672319005),(83830,8,90557,3,1672319005),(83831,8,90558,3,1672319005),(83832,8,90559,3,1672319005),(83833,8,90560,3,1672319005),(83834,8,90561,3,1672319005),(83835,8,90562,3,1672319005),(83836,8,90563,3,1672319005),(83837,8,90564,3,1672319005),(83838,8,90565,3,1672319005),(83839,8,90566,3,1672319005),(83840,8,90567,3,1672319005),(83841,8,90568,3,1672319005),(83842,8,90569,3,1672319005),(83843,8,90570,3,1672319005),(83844,8,90571,3,1672319005),(83845,8,90572,3,1672319005),(83846,8,90573,3,1672319005),(83847,8,90574,3,1672319005),(83848,8,90575,3,1672319005),(83849,8,90576,3,1672319005),(83850,8,90577,3,1672319005),(83851,8,90578,3,1672319005),(83852,8,90579,3,1672319005),(83853,8,90580,3,1672319005),(83854,8,90581,3,1672319005),(83855,8,90582,3,1672319005),(83856,8,90583,3,1672319005),(83857,8,90584,3,1672319005),(83858,8,90585,3,1672319005),(83859,8,90586,3,1672319005),(83860,8,90587,3,1672319005),(83861,8,90588,3,1672319005),(83862,8,90589,3,1672319005),(83863,8,90590,3,1672319005),(83864,8,90591,3,1672319005),(83865,8,90592,3,1672319005),(83866,8,90593,3,1672319005),(83867,8,90594,3,1672319005),(83868,8,90595,3,1672319005),(83869,8,90596,3,1672319005),(83870,8,90597,3,1672319005),(83871,8,90598,3,1672319005),(83872,8,90599,3,1672319005),(83873,8,90600,3,1672319005),(83874,8,90601,3,1672319005),(83875,8,90602,3,1672319005),(83876,8,90603,3,1672319005),(83877,8,90604,3,1672319005),(83878,8,90605,3,1672319005),(83879,8,90606,3,1672319005),(83880,8,90607,3,1672319005),(83881,8,90608,3,1672319005),(83882,8,90609,3,1672319005),(83883,8,90610,3,1672319005),(83884,8,90611,3,1672319005),(83885,8,90612,3,1672319005),(83886,8,90613,3,1672319005),(83887,8,90614,3,1672319005),(83888,8,90615,3,1672319005),(83889,8,90616,3,1672319005),(83890,8,90617,3,1672319005),(83891,8,90618,3,1672319005),(83892,8,90619,3,1672319005),(83893,8,90620,3,1672319005),(83894,8,90621,3,1672319005),(83895,8,90622,3,1672319005),(83896,8,90623,3,1672319005),(83897,8,90624,3,1672319005),(83898,8,90625,3,1672319005),(83899,8,90626,3,1672319005),(83900,8,90627,3,1672319005),(83901,8,90628,3,1672319005),(83902,8,90629,3,1672319005),(83903,8,90630,3,1672319005),(83904,8,90631,3,1672319005),(83905,8,90632,3,1672319005),(83906,8,90633,3,1672319005),(83907,8,90634,3,1672319005),(83908,8,90635,3,1672319005),(83909,8,90636,3,1672319005),(83910,8,90637,3,1672319005),(83911,8,90638,3,1672319005),(83912,8,90639,3,1672319005),(83913,8,90640,3,1672319005),(83914,8,90641,3,1672319005),(83915,8,90642,3,1672319005),(83916,8,90643,3,1672319005),(83917,8,90644,3,1672319005),(83918,8,90645,3,1672319005),(83919,8,90646,3,1672319005),(83920,8,90647,3,1672319005),(83921,8,90648,3,1672319005),(83922,8,90649,3,1672319005),(83923,8,90650,3,1672319005),(83924,8,90651,3,1672319005),(83925,8,90652,3,1672319005),(83926,8,90653,3,1672319005),(83927,8,90654,3,1672319005),(83928,8,90655,3,1672319005),(83929,8,90656,3,1672319005),(83930,8,90657,3,1672319005),(83931,8,90658,3,1672319005),(83932,8,90659,3,1672319005),(83933,8,90660,3,1672319005),(83934,8,90661,3,1672319005),(83935,8,90662,3,1672319005),(83936,8,90663,3,1672319005),(83937,8,90664,3,1672319005),(83938,8,90665,3,1672319005),(83939,8,90666,3,1672319005),(83940,8,90667,3,1672319005),(83941,8,90668,3,1672319005),(83942,8,90669,3,1672319005),(83943,8,90670,3,1672319005),(83944,8,90671,3,1672319005),(83945,8,90672,3,1672319005),(83946,8,90673,3,1672319005),(83947,8,90674,3,1672319005),(83948,8,90675,3,1672319005),(83949,8,90676,3,1672319005),(83950,8,90677,3,1672319005),(83951,8,90678,3,1672319005),(83952,8,90679,3,1672319005),(83953,8,90680,3,1672319005),(83954,8,90681,3,1672319005),(83955,8,90682,3,1672319005),(83956,8,90683,3,1672319005),(83957,8,90684,3,1672319005),(83958,8,90685,3,1672319005),(83959,8,90686,3,1672319005),(83960,8,90687,3,1672319005),(83961,8,90688,3,1672319005),(83962,8,90689,3,1672319005),(83963,8,90690,3,1672319005),(83964,8,90691,3,1672319005),(83965,8,90692,3,1672319005),(83966,8,90693,3,1672319005),(83967,8,90694,3,1672319005),(83968,8,90695,3,1672319005),(83969,8,90696,3,1672319005),(83970,8,90717,3,1672319005),(83971,8,90718,3,1672319005),(83972,8,90719,3,1672319005),(83973,8,90720,3,1672319005),(83974,8,90721,3,1672319005),(83975,8,90722,3,1672319005),(83976,8,90723,3,1672319005),(83977,8,90724,3,1672319005),(83978,8,90725,3,1672319005),(83979,8,90726,3,1672319005),(83980,8,90727,3,1672319005),(83981,8,90728,3,1672319005),(83982,8,90729,3,1672319005),(83983,8,90730,3,1672319005),(83984,8,90731,3,1672319005),(83985,8,90732,3,1672319005),(83986,8,90733,3,1672319005),(83987,8,90734,3,1672319005),(83988,8,90735,3,1672319005),(83989,8,90736,3,1672319005),(83990,8,90737,3,1672319005),(83991,8,90738,3,1672319005),(83992,8,90739,3,1672319005),(83993,8,90740,3,1672319005),(83994,8,90741,3,1672319005),(83995,8,90742,3,1672319005),(83996,8,90743,3,1672319005),(83997,8,90744,3,1672319005),(83998,8,90745,3,1672319005),(83999,8,90746,3,1672319005),(84000,8,90747,3,1672319005),(84001,8,90748,3,1672319005),(84002,8,90749,3,1672319005),(84003,8,90750,3,1672319005),(84004,8,90751,3,1672319005),(84005,8,90752,3,1672319005),(84006,8,90753,3,1672319005),(84007,8,90754,3,1672319005),(84008,8,90755,3,1672319005),(84009,8,90756,3,1672319005),(84010,8,90757,3,1672319005),(84011,8,90758,3,1672319005),(84012,8,90759,3,1672319005),(84013,8,90760,3,1672319005),(84014,8,90761,3,1672319005),(84015,8,90762,3,1672319005),(84016,8,90763,3,1672319005),(84017,8,90764,3,1672319005),(84018,8,90765,3,1672319005),(84019,8,90766,3,1672319005),(84020,8,90767,3,1672319005),(84021,8,90768,3,1672319005),(84022,8,90769,3,1672319005),(84023,8,90770,3,1672319005),(84024,8,90771,3,1672319005),(84025,8,90772,3,1672319005),(84026,8,90773,3,1672319005),(84027,8,90774,3,1672319005),(84028,8,90775,3,1672319005),(84029,8,90776,3,1672319005),(84030,8,90777,3,1672319005),(84031,8,90778,3,1672319005),(84032,8,90779,3,1672319005),(84033,8,90780,3,1672319005),(84034,8,90781,3,1672319005),(84035,8,90782,3,1672319005),(84036,8,90783,3,1672319005),(84037,8,90784,3,1672319005),(84038,8,90785,3,1672319005),(84039,8,90786,3,1672319005),(84040,8,90787,3,1672319005),(84041,8,90788,3,1672319005),(84042,8,90789,3,1672319005),(84043,8,90790,3,1672319005),(84044,8,90791,3,1672319005),(84045,8,90792,3,1672319005),(84046,8,90793,3,1672319005),(84047,8,90794,3,1672319005),(84048,8,90795,3,1672319005),(84049,8,90796,3,1672319005),(84050,8,90797,3,1672319005),(84051,8,90798,3,1672319005),(84052,8,90799,3,1672319005),(84053,8,90800,3,1672319005),(84054,8,90801,3,1672319005),(84055,8,90802,3,1672319005),(84056,8,90803,3,1672319005),(84057,8,90804,3,1672319005),(84058,8,90805,3,1672319005),(84059,8,90806,3,1672319005),(84060,8,90807,3,1672319005),(84061,8,90808,3,1672319005),(84062,8,90809,3,1672319005),(84063,8,90810,3,1672319005),(84064,8,90811,3,1672319005),(84065,8,90812,3,1672319005),(84066,8,90813,3,1672319005),(84067,8,90814,3,1672319005),(84068,8,90815,3,1672319005),(84069,8,90816,3,1672319005),(84070,8,90817,3,1672319005),(84071,8,90818,3,1672319005),(84072,8,90819,3,1672319005),(84073,8,90820,3,1672319005),(84074,8,90821,3,1672319005),(84075,8,90822,3,1672319005),(84076,8,90823,3,1672319005),(84077,8,90824,3,1672319005),(84078,8,90825,3,1672319005),(84079,8,90826,3,1672319005),(84080,8,90827,3,1672319005),(84081,8,90828,3,1672319005),(84082,8,90829,3,1672319005),(84083,8,90830,3,1672319005),(84084,8,90831,3,1672319005),(84085,8,90832,3,1672319005),(84086,8,90833,3,1672319005),(84087,8,90834,3,1672319005),(84088,8,90835,3,1672319005),(84089,8,90836,3,1672319005),(84090,8,90837,3,1672319005),(84091,8,90838,3,1672319005),(84092,8,90839,3,1672319005),(84093,8,90840,3,1672319005),(84094,8,90841,3,1672319005),(84095,8,90842,3,1672319005),(84096,8,90843,3,1672319005),(84097,8,90844,3,1672319005),(84098,8,90845,3,1672319005),(84099,8,90846,3,1672319005),(84100,8,90847,3,1672319005),(84101,8,90848,3,1672319005),(84102,8,90849,3,1672319005),(84103,8,90850,3,1672319005),(84104,8,90851,3,1672319005),(84105,8,90852,3,1672319005),(84106,8,90853,3,1672319005),(84107,8,90854,3,1672319005),(84108,8,90855,3,1672319005),(84109,8,90856,3,1672319005),(84110,8,90857,3,1672319005),(84111,8,90858,3,1672319005),(84112,8,90859,3,1672319005),(84113,8,90860,3,1672319005),(84114,8,90861,3,1672319005),(84115,8,90862,3,1672319005),(84116,8,90863,3,1672319005),(84117,8,90864,3,1672319005),(84118,8,90865,3,1672319005),(84119,8,90866,3,1672319005),(84120,8,90867,3,1672319005),(84121,8,90868,3,1672319005),(84122,8,90869,3,1672319005),(84123,8,90870,3,1672319005),(84124,8,90871,3,1672319005),(84125,8,90872,3,1672319005),(84126,8,90873,3,1672319005),(84127,8,90874,3,1672319005),(84128,8,90875,3,1672319005),(84129,8,90876,3,1672319005),(84130,8,90877,3,1672319005),(84131,8,90878,3,1672319005),(84132,8,90879,3,1672319005),(84133,8,90880,3,1672319005),(84134,8,90881,3,1672319005),(84135,8,90882,3,1672319005),(84136,8,90883,3,1672319005),(84137,8,90884,3,1672319005),(84138,8,90885,3,1672319005),(84139,8,90886,3,1672319005),(84140,8,90887,3,1672319005),(84141,8,90888,3,1672319005),(84142,8,90889,3,1672319005),(84143,8,90890,3,1672319005),(84144,8,90891,3,1672319005),(84145,8,90892,3,1672319005),(84146,8,90893,3,1672319005),(84147,8,90894,3,1672319005),(84148,8,90895,3,1672319005),(84149,8,90896,3,1672319005),(84150,8,90897,3,1672319005),(84151,8,90898,3,1672319005),(84152,8,90899,3,1672319005),(84153,8,90900,3,1672319005),(84154,8,90901,3,1672319005),(84155,8,90902,3,1672319005),(84156,8,90903,3,1672319005),(84157,8,90924,3,1672319005),(84158,8,90925,3,1672319005),(84159,8,90926,3,1672319005),(84160,8,90927,3,1672319005),(84161,8,90928,3,1672319005),(84162,8,90929,3,1672319005),(84163,8,90930,3,1672319005),(84164,8,90931,3,1672319005),(84165,8,90932,3,1672319005),(84166,8,90933,3,1672319005),(84167,8,90934,3,1672319005),(84168,8,90935,3,1672319005),(84169,8,90936,3,1672319005),(84170,8,90937,3,1672319005),(84171,8,90938,3,1672319005),(84172,8,90939,3,1672319005),(84173,8,90940,3,1672319005),(84174,8,90941,3,1672319005),(84175,8,90942,3,1672319005),(84176,8,90943,3,1672319005),(84177,8,90944,3,1672319005),(84178,8,90945,3,1672319005),(84179,8,90946,3,1672319005),(84180,8,90947,3,1672319005),(84181,8,90948,3,1672319005),(84182,8,90949,3,1672319005),(84183,8,90950,3,1672319005),(84184,8,90951,3,1672319005),(84185,8,90952,3,1672319005),(84186,8,90953,3,1672319005),(84187,8,90954,3,1672319005),(84188,8,90955,3,1672319005),(84189,8,90956,3,1672319005),(84190,8,90957,3,1672319005),(84191,8,90958,3,1672319005),(84192,8,90959,3,1672319005),(84193,8,90960,3,1672319005),(84194,8,90961,3,1672319005),(84195,8,90962,3,1672319005),(84196,8,90963,3,1672319005),(84197,8,90964,3,1672319005),(84198,8,90965,3,1672319005),(84199,8,90966,3,1672319005),(84200,8,90967,3,1672319005),(84201,8,90968,3,1672319005),(84202,8,90969,3,1672319005),(84203,8,90970,3,1672319005),(84204,8,90971,3,1672319005),(84205,8,90972,3,1672319005),(84206,8,90973,3,1672319005),(84207,8,90974,3,1672319005),(84208,8,90975,3,1672319005),(84209,8,90976,3,1672319005),(84210,8,90977,3,1672319005),(84211,8,90978,3,1672319005),(84212,8,90979,3,1672319005),(84213,8,90980,3,1672319005),(84214,8,90981,3,1672319005),(84215,8,90982,3,1672319005),(84216,8,90983,3,1672319005),(84217,8,90984,3,1672319005),(84218,8,90985,3,1672319005),(84219,8,90986,3,1672319005),(84220,8,90987,3,1672319005),(84221,8,90988,3,1672319005),(84222,8,90989,3,1672319005),(84223,8,90990,3,1672319005),(84224,8,90991,3,1672319005),(84225,8,90992,3,1672319005),(84226,8,90993,3,1672319005),(84227,8,90994,3,1672319005),(84228,8,90995,3,1672319005),(84229,8,90996,3,1672319005),(84230,8,90997,3,1672319005),(84231,8,90998,3,1672319005),(84232,8,90999,3,1672319005),(84233,8,91000,3,1672319005),(84234,8,91001,3,1672319005),(84235,8,91002,3,1672319005),(84236,8,91003,3,1672319005),(84237,8,91004,3,1672319005),(84238,8,91005,3,1672319005),(84239,8,91006,3,1672319005),(84240,8,91007,3,1672319005),(84241,8,91008,3,1672319005),(84242,8,91009,3,1672319005),(84243,8,91010,3,1672319005),(84244,8,91011,3,1672319005),(84245,8,91012,3,1672319005),(84246,8,91013,3,1672319005),(84247,8,91014,3,1672319005),(84248,8,91015,3,1672319005),(84249,8,91016,3,1672319005),(84250,8,91017,3,1672319005),(84251,8,91018,3,1672319005),(84252,8,91019,3,1672319005),(84253,8,91020,3,1672319005),(84254,8,91021,3,1672319005),(84255,8,91022,3,1672319005),(84256,8,91023,3,1672319005),(84257,8,91024,3,1672319005),(84258,8,91025,3,1672319005),(84259,8,91026,3,1672319005),(84260,8,91027,3,1672319005),(84261,8,91028,3,1672319005),(84262,8,91029,3,1672319005),(84263,8,91030,3,1672319005),(84264,8,91031,3,1672319005),(84265,8,91032,3,1672319005),(84266,8,91033,3,1672319005),(84267,8,91034,3,1672319005),(84268,8,91035,3,1672319005),(84269,8,91036,3,1672319005),(84270,8,91037,3,1672319005),(84271,8,91038,3,1672319005),(84272,8,91039,3,1672319005),(84273,8,91040,3,1672319005),(84274,8,91041,3,1672319005),(84275,8,91042,3,1672319005),(84276,8,91043,3,1672319005),(84277,8,91044,3,1672319005),(84278,8,91045,3,1672319005),(84279,8,91046,3,1672319005),(84280,8,91047,3,1672319005),(84281,8,91048,3,1672319005),(84282,8,91049,3,1672319005),(84283,8,91050,3,1672319005),(84284,8,91051,3,1672319005),(84285,8,91052,3,1672319005),(84286,8,91053,3,1672319005),(84287,8,91054,3,1672319005),(84288,8,91055,3,1672319005),(84289,8,91056,3,1672319005),(84290,8,91057,3,1672319005),(84291,8,91058,3,1672319005),(84292,8,91059,3,1672319005),(84293,8,91060,3,1672319005),(84294,8,91061,3,1672319005),(84295,8,91062,3,1672319005),(84296,8,91063,3,1672319005),(84297,8,91064,3,1672319005),(84298,8,91065,3,1672319005),(84299,8,91066,3,1672319005),(84300,8,91067,3,1672319005),(84301,8,91068,3,1672319005),(84302,8,91069,3,1672319005),(84303,8,91070,3,1672319005),(84304,8,91071,3,1672319005),(84305,8,91072,3,1672319005),(84306,8,91073,3,1672319005),(84307,8,91074,3,1672319005),(84308,8,91075,3,1672319005),(84309,8,91076,3,1672319005),(84310,8,91077,3,1672319005),(84311,8,91078,3,1672319005),(84312,8,91079,3,1672319005),(84313,8,91080,3,1672319005),(84314,8,91081,3,1672319005),(84315,8,91082,3,1672319005),(84316,8,91083,3,1672319005),(84317,8,91084,3,1672319005),(84318,8,91085,3,1672319005),(84319,8,91086,3,1672319005),(84320,8,91087,3,1672319005),(84321,8,91088,3,1672319005),(84322,8,91089,3,1672319005),(84323,8,91090,3,1672319005),(84324,8,91091,3,1672319005),(84325,8,91092,3,1672319005),(84326,8,91093,3,1672319005),(84327,8,91094,3,1672319005),(84328,8,91095,3,1672319005),(84329,8,91096,3,1672319005),(84330,8,91097,3,1672319005),(84331,8,91098,3,1672319005),(84332,8,91099,3,1672319005),(84333,8,91100,3,1672319005),(84334,8,91101,3,1672319005),(84335,8,91102,3,1672319005),(84336,8,91103,3,1672319005),(84337,8,91104,3,1672319005),(84338,8,91105,3,1672319005),(84339,8,91106,3,1672319005),(84340,8,91107,3,1672319005),(84341,8,91108,3,1672319005),(84342,8,91109,3,1672319005),(84343,8,91110,3,1672319005),(84344,8,91111,3,1672319005),(84345,8,91112,3,1672319005),(84346,8,91113,3,1672319005),(84347,8,91114,3,1672319005),(84348,8,91115,3,1672319005),(84349,8,91116,3,1672319005),(84350,8,91117,3,1672319005),(84351,8,91118,3,1672319005),(84352,8,91119,3,1672319005),(84353,8,91120,3,1672319005),(84354,8,91121,3,1672319005),(84355,8,91122,3,1672319005),(84356,8,91123,3,1672319005),(84357,8,91124,3,1672319005),(84358,8,91125,3,1672319005),(84359,8,91126,3,1672319005),(84360,8,91127,3,1672319005),(84361,8,91128,3,1672319005),(84362,8,91129,3,1672319005),(84363,8,91130,3,1672319005),(84364,8,91131,3,1672319005),(84365,8,91132,3,1672319005),(84366,8,91133,3,1672319005),(84367,8,91134,3,1672319005),(84368,8,91135,3,1672319005),(84369,8,91136,3,1672319005),(84370,8,91137,3,1672319005),(84371,8,91138,3,1672319005),(84372,8,91139,3,1672319005),(84373,8,91140,3,1672319005),(84374,8,91141,3,1672319005),(84375,8,91142,3,1672319005),(84376,8,91143,3,1672319005),(84377,8,91144,3,1672319005),(84378,8,91146,3,1672319005),(84379,8,91147,3,1672319005),(84380,8,91148,3,1672319005),(84381,8,91149,3,1672319005),(84382,8,91150,3,1672319005),(84383,8,91151,3,1672319005),(84384,8,91152,3,1672319005),(84385,8,91153,3,1672319005),(84386,8,91154,3,1672319005),(84387,8,91155,3,1672319005),(84388,8,91156,3,1672319005),(84389,8,91157,3,1672319005),(84390,8,91158,3,1672319005),(84391,8,91159,3,1672319005),(84392,8,91160,3,1672319005),(84393,8,91161,3,1672319005),(84394,8,91162,3,1672319005),(84395,8,91163,3,1672319005),(84396,8,91164,3,1672319005),(84397,8,91165,3,1672319005),(84398,8,91166,3,1672319005),(84399,8,91167,3,1672319005),(84400,8,91168,3,1672319005),(84401,8,91169,3,1672319005),(84402,8,91170,3,1672319005),(84403,8,91171,3,1672319005),(84404,8,91172,3,1672319005),(84405,8,91173,3,1672319005),(84406,8,91174,3,1672319005),(84407,8,91175,3,1672319005),(84408,8,91176,3,1672319005),(84409,8,91177,3,1672319005),(84410,8,91178,3,1672319005),(84411,8,91179,3,1672319005),(84412,8,91180,3,1672319005),(84413,8,91181,3,1672319005),(84414,8,91182,3,1672319005),(84415,8,91183,3,1672319005),(84416,8,91184,3,1672319005),(84417,8,91185,3,1672319005),(84418,8,91186,3,1672319005),(84419,8,91187,3,1672319005),(84420,8,91188,3,1672319005),(84421,8,91189,3,1672319005),(84422,8,91190,3,1672319005),(84423,8,91191,3,1672319005),(84424,8,91192,3,1672319005),(84425,8,91193,3,1672319005),(84426,8,91194,3,1672319005),(84427,8,91195,3,1672319005),(84428,8,91196,3,1672319005),(84429,8,91197,3,1672319005),(84430,8,91198,3,1672319005),(84431,8,91199,3,1672319005),(84432,8,91200,3,1672319005),(84433,8,91201,3,1672319005),(84434,8,91202,3,1672319005),(84435,8,91203,3,1672319005),(84436,8,91204,3,1672319005),(84437,8,91205,3,1672319005),(84438,8,91206,3,1672319005),(84439,8,91207,3,1672319005),(84440,8,91208,3,1672319005),(84441,8,91209,3,1672319005),(84442,8,91210,3,1672319005),(84443,8,91211,3,1672319005),(84444,8,91212,3,1672319005),(84445,8,91213,3,1672319005),(84446,8,91214,3,1672319005),(84447,8,91215,3,1672319005),(84448,8,91216,3,1672319005),(84449,8,91217,3,1672319005),(84450,8,91218,3,1672319005),(84451,8,91219,3,1672319005),(84452,8,91220,3,1672319005),(84453,8,91221,3,1672319005),(84454,8,91222,3,1672319005),(84455,8,91223,3,1672319005),(84456,8,91224,3,1672319005),(84457,8,91225,3,1672319005),(84458,8,91226,3,1672319005),(84459,8,91227,3,1672319005),(84460,8,91228,3,1672319005),(84461,8,91229,3,1672319005),(84462,8,91230,3,1672319005),(84463,8,91231,3,1672319005),(84464,8,91232,3,1672319005),(84465,8,91233,3,1672319005),(84466,8,91234,3,1672319005),(84467,8,91235,3,1672319005),(84468,8,91236,3,1672319005),(84469,8,91237,3,1672319005),(84470,8,91238,3,1672319005),(84471,8,91239,3,1672319005),(84472,8,91240,3,1672319005),(84473,8,91241,3,1672319005),(84474,8,91242,3,1672319005),(84475,8,91243,3,1672319005),(84476,8,91244,3,1672319005),(84477,8,91245,3,1672319005),(84478,8,91246,3,1672319005),(84479,8,91247,3,1672319005),(84480,8,91248,3,1672319005),(84481,8,91249,3,1672319005),(84482,8,91250,3,1672319005),(84483,8,91251,3,1672319005),(84484,8,91252,3,1672319005),(84485,8,91253,3,1672319005),(84486,8,91254,3,1672319005),(84487,8,91255,3,1672319005),(84488,8,91256,3,1672319005),(84489,8,91257,3,1672319005),(84490,8,91258,3,1672319005),(84491,8,91259,3,1672319005),(84492,8,91260,3,1672319005),(84493,8,91261,3,1672319005),(84494,8,91262,3,1672319005),(84495,8,91263,3,1672319005),(84496,8,91264,3,1672319005),(84497,8,91265,3,1672319005),(84498,8,91266,3,1672319005),(84499,8,91267,3,1672319005),(84500,8,91268,3,1672319005),(84501,8,91269,3,1672319005),(84502,8,91270,3,1672319005),(84503,8,91271,3,1672319005),(84504,8,91272,3,1672319005),(84505,8,91273,3,1672319005),(84506,8,91274,3,1672319005),(84507,8,91275,3,1672319005),(84508,8,91276,3,1672319005),(84509,8,91277,3,1672319005),(84510,8,91278,3,1672319005),(84511,8,91279,3,1672319005),(84512,8,91280,3,1672319005),(84513,8,91281,3,1672319005),(84514,8,91282,3,1672319005),(84515,8,91283,3,1672319005),(84516,8,91284,3,1672319005),(84517,8,91285,3,1672319005),(84518,8,91286,3,1672319005),(84519,8,91287,3,1672319005),(84520,8,91288,3,1672319005),(84521,8,91289,3,1672319005),(84522,8,91290,3,1672319005),(84523,8,91291,3,1672319005),(84524,8,91292,3,1672319005),(84525,8,91293,3,1672319005),(84526,8,91294,3,1672319005),(84527,8,91295,3,1672319005),(84528,8,91296,3,1672319005),(84529,8,91297,3,1672319005),(84530,8,91298,3,1672319005),(84531,8,91299,3,1672319005),(84532,8,91300,3,1672319005),(84533,8,91301,3,1672319005),(84534,8,91302,3,1672319005),(84535,8,91303,3,1672319005),(84536,8,91304,3,1672319005),(84537,8,91305,3,1672319005),(84538,8,91306,3,1672319005),(84539,8,91307,3,1672319005),(84540,8,91308,3,1672319005),(84541,8,91309,3,1672319005),(84542,8,91310,3,1672319005),(84543,8,91311,3,1672319005),(84544,8,91312,3,1672319005),(84545,8,91313,3,1672319005),(84546,8,91314,3,1672319005),(84547,8,91315,3,1672319005),(84548,8,91316,3,1672319005),(84549,8,91317,3,1672319005),(84550,8,91318,3,1672319005),(84551,8,91319,3,1672319005),(84552,8,91320,3,1672319005),(84553,8,91321,3,1672319005),(84554,8,91322,3,1672319005),(84555,8,91323,3,1672319005),(84556,8,91324,3,1672319005),(84557,8,91325,3,1672319005),(84558,8,91326,3,1672319005),(84559,8,91327,3,1672319005),(84560,8,91328,3,1672319005),(84561,8,91329,3,1672319005),(84562,8,91330,3,1672319005),(84563,8,91331,3,1672319005),(84564,8,91332,3,1672319005),(84565,8,91333,3,1672319005),(84566,8,91334,3,1672319005),(84567,8,91335,3,1672319005),(84568,8,91336,3,1672319005),(84569,8,91337,3,1672319005),(84570,8,91338,3,1672319005),(84571,8,91339,3,1672319005),(84572,8,91340,3,1672319005),(84573,8,91341,3,1672319005),(84574,8,91342,3,1672319005),(84575,8,91343,3,1672319005),(84576,8,91344,3,1672319005),(84577,8,91345,3,1672319005),(84578,8,91346,3,1672319005),(84579,8,91347,3,1672319005),(84580,8,91348,3,1672319005),(84581,8,91349,3,1672319005),(84582,8,91350,3,1672319005),(84583,8,91351,3,1672319005),(84584,8,91352,3,1672319005),(84585,8,91353,3,1672319005),(84586,8,91354,3,1672319005),(84587,8,91355,3,1672319005),(84588,8,91356,3,1672319005),(84589,8,91357,3,1672319005),(84590,8,91358,3,1672319005),(84591,8,91359,3,1672319005),(84592,8,91360,3,1672319005),(84593,8,91361,3,1672319005),(84594,8,91362,3,1672319005),(84595,8,91363,3,1672319005),(84596,8,91364,3,1672319005),(84597,8,91365,3,1672319005),(84598,8,91366,3,1672319005),(84599,8,91367,3,1672319005),(84600,8,91368,3,1672319005),(84601,8,91369,3,1672319005),(84602,8,91370,3,1672319005),(84603,8,91371,3,1672319005),(84604,8,91372,3,1672319005),(84605,8,91373,3,1672319005),(84606,8,91374,3,1672319005),(84607,8,91375,3,1672319005),(84608,8,91376,3,1672319005),(84609,8,91377,3,1672319005),(84610,8,91378,3,1672319005),(84611,8,91379,3,1672319005),(84612,8,91380,3,1672319005),(84613,8,91381,3,1672319005),(84614,8,91382,3,1672319005),(84615,8,91383,3,1672319005),(84616,8,91384,3,1672319005),(84617,8,91385,3,1672319005),(84618,8,91386,3,1672319005),(84619,8,91387,3,1672319005),(84620,8,91388,3,1672319005),(84621,8,91389,3,1672319005),(84622,8,91390,3,1672319005),(84623,8,91391,3,1672319005),(84624,8,91392,3,1672319005),(84625,8,91393,3,1672319005),(84626,8,91394,3,1672319005),(84627,8,91395,3,1672319005),(84628,8,91396,3,1672319005),(84629,8,91397,3,1672319005),(84630,8,91398,3,1672319005),(84631,8,91399,3,1672319005),(84632,8,91400,3,1672319005),(84633,8,91401,3,1672319005),(84634,8,91402,3,1672319005),(84635,8,91403,3,1672319005),(84636,8,91404,3,1672319005),(84637,8,91405,3,1672319005),(84638,8,91406,3,1672319005),(84639,8,91407,3,1672319005),(84640,8,91408,3,1672319005),(84641,8,91409,3,1672319005),(84642,8,91410,3,1672319005),(84643,8,91411,3,1672319005),(84644,8,91412,3,1672319005),(84645,8,91413,3,1672319005),(84646,8,91414,3,1672319005),(84647,8,91415,3,1672319005),(84648,8,91416,3,1672319005),(84649,8,91417,3,1672319005),(84650,8,91418,3,1672319005),(84651,8,91419,3,1672319005),(84652,8,91420,3,1672319005),(84653,8,91421,3,1672319005),(84654,8,91422,3,1672319005),(84655,8,91423,3,1672319005),(84656,8,91424,3,1672319005),(84657,8,91425,3,1672319005),(84658,8,91426,3,1672319005),(84659,8,91427,3,1672319005),(84660,8,91428,3,1672319005),(84661,8,91429,3,1672319005),(84662,8,91430,3,1672319005),(84663,8,91431,3,1672319005),(84664,8,91432,3,1672319005),(84665,8,91433,3,1672319005),(84666,8,91434,3,1672319005),(84667,8,91435,3,1672319005),(84668,8,91436,3,1672319005),(84669,8,91437,3,1672319005),(84670,8,91438,3,1672319005),(84671,8,91439,3,1672319005),(84672,8,91440,3,1672319005),(84673,8,91441,3,1672319005),(84674,8,91442,3,1672319005),(84675,8,91443,3,1672319005),(84676,8,91444,3,1672319005),(84677,8,91445,3,1672319005),(84678,8,91446,3,1672319005),(84679,8,91447,3,1672319005),(84680,8,91448,3,1672319005),(84681,8,91449,3,1672319005),(84682,8,91450,3,1672319005),(84683,8,91451,3,1672319005),(84684,8,91452,3,1672319005),(84685,8,91453,3,1672319005),(84686,8,91454,3,1672319005),(84687,8,91455,3,1672319005),(84688,8,91456,3,1672319005),(84689,8,91457,3,1672319005),(84690,8,91458,3,1672319005),(84691,8,91459,3,1672319005),(84692,8,91460,3,1672319005),(84693,8,91461,3,1672319005),(84694,8,91462,3,1672319005),(84695,8,91463,3,1672319005),(84696,8,91464,3,1672319005),(84697,8,91465,3,1672319005),(84698,8,91466,3,1672319005),(84699,8,91467,3,1672319005),(84700,8,91468,3,1672319005),(84701,8,91469,3,1672319005),(84702,8,91470,3,1672319005),(84703,8,91471,3,1672319005),(84704,8,91472,3,1672319005),(84705,8,91473,3,1672319005),(84706,8,91474,3,1672319005),(84707,8,91475,3,1672319005),(84708,8,91476,3,1672319005),(84709,8,91477,3,1672319005),(84710,8,91478,3,1672319005),(84711,8,91479,3,1672319005),(84712,8,91480,3,1672319005),(84713,8,91481,3,1672319005),(84714,8,91482,3,1672319005),(84715,8,91483,3,1672319005),(84716,8,91484,3,1672319005),(84717,8,91485,3,1672319005),(84718,8,91486,3,1672319005),(84719,8,91487,3,1672319005),(84720,8,91488,3,1672319005),(84721,8,91489,3,1672319005),(84722,8,91490,3,1672319005),(84723,8,91491,3,1672319005),(84724,8,91492,3,1672319005),(84725,8,91493,3,1672319005),(84726,8,91494,3,1672319005),(84727,8,91495,3,1672319005),(84728,8,91496,3,1672319005),(84729,8,91497,3,1672319005),(84730,8,91498,3,1672319005),(84731,8,91499,3,1672319005),(84732,8,91500,3,1672319005),(84733,8,91501,3,1672319005),(84734,8,91502,3,1672319005),(84735,8,91503,3,1672319005),(84736,8,91504,3,1672319005),(84737,8,91505,3,1672319005),(84738,8,91506,3,1672319005),(84739,8,91507,3,1672319005),(84740,8,91508,3,1672319005),(84741,8,91509,3,1672319005),(84742,8,91510,3,1672319005),(84743,8,91511,3,1672319005),(84744,8,91512,3,1672319005),(84745,8,91513,3,1672319005),(84746,8,91514,3,1672319005),(84747,8,91515,3,1672319005),(84748,8,91516,3,1672319005),(84749,8,91517,3,1672319005),(84750,8,91518,3,1672319005),(84751,8,91519,3,1672319005),(84752,8,91520,3,1672319005),(84753,8,91521,3,1672319005),(84754,8,91522,3,1672319005),(84755,8,91523,3,1672319005),(84756,8,91524,3,1672319005),(84757,8,91525,3,1672319005),(84758,8,91526,3,1672319005),(84759,8,91527,3,1672319005),(84760,8,91528,3,1672319005),(84761,8,91529,3,1672319005),(84762,8,91530,3,1672319005),(84763,8,91531,3,1672319005),(84764,8,91532,3,1672319005),(84765,8,91533,3,1672319005),(84766,8,91534,3,1672319005),(84767,8,91535,3,1672319005),(84768,8,91536,3,1672319005),(84769,8,91537,3,1672319005),(84770,8,91538,3,1672319005),(84771,8,91539,3,1672319005),(84772,8,91540,3,1672319005),(84773,8,91541,3,1672319005),(84774,8,91542,3,1672319005),(84775,8,91543,3,1672319005),(84776,8,91544,3,1672319005),(84777,8,91545,3,1672319005),(84778,8,91546,3,1672319005),(84779,8,91547,3,1672319005),(84780,8,91548,3,1672319005),(84781,8,91549,3,1672319005),(84782,8,91550,3,1672319005),(84783,8,91551,3,1672319005),(84784,8,91552,3,1672319005),(84785,8,91553,3,1672319005),(84786,8,91554,3,1672319005),(84787,8,91555,3,1672319005),(84788,8,91556,3,1672319005),(84789,8,91557,3,1672319005),(84790,8,91558,3,1672319005),(84791,8,91559,3,1672319005),(84792,8,91560,3,1672319005),(84793,8,91561,3,1672319005),(84794,8,91562,3,1672319005),(84795,8,91563,3,1672319005),(84796,8,91564,3,1672319005),(84797,8,91565,3,1672319005),(84798,8,91566,3,1672319005),(84799,8,91567,3,1672319005),(84800,8,91568,3,1672319005),(84801,8,91569,3,1672319005),(84802,8,91570,3,1672319005),(84803,8,91571,3,1672319005),(84804,8,91572,3,1672319005),(84805,8,91573,3,1672319005),(84806,8,91574,3,1672319005),(84807,8,91575,3,1672319005),(84808,8,91576,3,1672319005),(84809,8,91577,3,1672319005),(84810,8,91578,3,1672319005),(84811,8,91579,3,1672319005),(84812,8,91580,3,1672319005),(84813,8,91581,3,1672319005),(84814,8,91582,3,1672319005),(84815,8,91583,3,1672319005),(84816,8,91584,3,1672319005),(84817,8,91585,3,1672319005),(84818,8,91586,3,1672319005),(84819,8,91587,3,1672319005),(84820,8,91588,3,1672319005),(84821,8,91589,3,1672319005),(84822,8,91590,3,1672319005),(84823,8,91591,3,1672319005),(84824,8,91592,3,1672319005),(84825,8,91593,3,1672319005),(84826,8,91594,3,1672319005),(84827,8,91595,3,1672319005),(84828,8,91596,3,1672319005),(84829,8,91597,3,1672319005),(84830,8,91598,3,1672319005),(84831,8,91599,3,1672319005),(84832,8,91600,3,1672319005),(84833,8,91601,3,1672319005),(84834,8,91602,3,1672319005),(84835,8,91603,3,1672319005),(84836,8,91604,3,1672319005),(84837,8,91605,3,1672319005),(84838,8,91606,3,1672319005),(84839,8,91607,3,1672319005),(84840,8,91608,3,1672319005),(84841,8,91609,3,1672319005),(84842,8,91610,3,1672319005),(84843,8,91611,3,1672319005),(84844,8,91612,3,1672319005),(84845,8,91613,3,1672319005),(84846,8,91614,3,1672319005),(84847,8,91615,3,1672319005),(84848,8,91616,3,1672319005),(84849,8,91617,3,1672319005),(84850,8,91618,3,1672319005),(84851,8,91619,3,1672319005),(84852,8,91620,3,1672319005),(84853,8,91621,3,1672319005),(84854,8,91622,3,1672319005),(84855,8,91623,3,1672319005),(84856,8,91624,3,1672319005),(84857,8,91625,3,1672319005),(84858,8,91626,3,1672319005),(84859,8,91627,3,1672319005),(84860,8,91628,3,1672319005),(84861,8,91629,3,1672319005),(84862,8,91630,3,1672319005),(84863,8,91631,3,1672319005),(84864,8,91632,3,1672319005),(84865,8,91633,3,1672319005),(84866,8,91634,3,1672319005),(84867,8,91635,3,1672319005),(84868,8,91636,3,1672319005),(84869,8,91637,3,1672319005),(84870,8,91638,3,1672319005),(84871,8,91639,3,1672319005),(84872,8,91640,3,1672319005),(84873,8,91641,3,1672319005),(84874,8,91642,3,1672319005),(84875,8,91643,3,1672319005),(84876,8,91644,3,1672319005),(84877,8,91645,3,1672319005),(84878,8,91646,3,1672319005),(84879,8,91647,3,1672319005),(84880,8,91648,3,1672319005),(84881,8,91649,3,1672319005),(84882,8,91650,3,1672319005),(84883,8,91651,3,1672319005),(84884,8,91652,3,1672319005),(84885,8,91653,3,1672319005),(84886,8,91654,3,1672319005),(84887,8,91655,3,1672319005),(84888,8,91656,3,1672319005),(84889,8,91657,3,1672319005),(84890,8,91658,3,1672319005),(84891,8,91659,3,1672319005),(84892,8,91660,3,1672319005),(84893,8,91661,3,1672319005),(84894,8,91662,3,1672319005),(84895,8,91663,3,1672319005),(84896,8,91664,3,1672319005),(84897,8,91665,3,1672319005),(84898,8,91666,3,1672319005),(84899,8,91667,3,1672319005),(84900,8,91668,3,1672319005),(84901,8,91669,3,1672319005),(84902,8,91670,3,1672319005),(84903,8,91671,3,1672319005),(84904,8,91672,3,1672319005),(84905,8,91673,3,1672319005),(84906,8,91674,3,1672319005),(84907,8,91675,3,1672319005),(84908,8,91676,3,1672319005),(84909,8,91677,3,1672319005),(84910,8,91678,3,1672319005),(84911,8,91679,3,1672319005),(84912,8,91680,3,1672319005),(84913,8,91681,3,1672319005),(84914,8,91682,3,1672319005),(84915,8,91683,3,1672319005),(84916,8,91684,3,1672319005),(84917,8,91685,3,1672319005),(84918,8,91686,3,1672319005),(84919,8,91687,3,1672319005),(84920,8,91688,3,1672319005),(84921,8,91689,3,1672319005),(84922,8,91690,3,1672319005),(84923,8,91691,3,1672319005),(84924,8,91692,3,1672319005),(84925,8,91693,3,1672319005),(84926,8,91694,3,1672319005),(84927,8,91695,3,1672319005),(84928,8,91696,3,1672319005),(84929,8,91697,3,1672319005),(84930,8,91698,3,1672319005),(84931,8,91699,3,1672319005),(84932,8,91700,3,1672319005),(84933,8,91701,3,1672319005),(84934,8,91702,3,1672319005),(84935,8,91703,3,1672319005),(84936,8,91704,3,1672319005),(84937,8,91705,3,1672319005),(84938,8,91706,3,1672319005),(84939,8,91707,3,1672319005),(84940,8,91708,3,1672319005),(84941,8,91709,3,1672319005),(84942,8,91710,3,1672319005),(84943,8,91711,3,1672319005),(84944,8,91712,3,1672319005),(84945,8,91713,3,1672319005),(84946,8,91714,3,1672319005),(84947,8,91715,3,1672319005),(84948,8,91716,3,1672319005),(84949,8,91717,3,1672319005),(84950,8,91718,3,1672319005),(84951,8,91719,3,1672319005),(84952,8,91720,3,1672319005),(84953,8,91721,3,1672319005),(84954,8,91722,3,1672319005),(84955,8,91723,3,1672319005),(84956,8,91724,3,1672319005),(84957,8,91725,3,1672319005),(84958,8,91726,3,1672319005),(84959,8,91727,3,1672319005),(84960,8,91728,3,1672319005),(84961,8,91729,3,1672319005),(84962,8,91730,3,1672319005),(84963,8,91731,3,1672319005),(84964,8,91732,3,1672319005),(84965,8,91733,3,1672319005),(84966,8,91734,3,1672319005),(84967,8,91735,3,1672319005),(84968,8,91736,3,1672319005),(84969,8,91737,3,1672319005),(84970,8,91738,3,1672319005),(84971,8,91739,3,1672319005),(84972,8,91740,3,1672319005),(84973,8,91741,3,1672319005),(84974,8,91742,3,1672319005),(84975,8,91743,3,1672319005),(84976,8,91744,3,1672319005),(84977,8,91745,3,1672319005),(84978,8,91746,3,1672319005),(84979,8,91747,3,1672319005),(84980,8,91748,3,1672319005),(84981,8,91749,3,1672319005),(84982,8,91750,3,1672319005),(84983,8,91751,3,1672319005),(84984,8,91752,3,1672319005),(84985,8,91753,3,1672319005),(84986,8,91754,3,1672319005),(84987,8,91755,3,1672319005),(84988,8,91756,3,1672319005),(84989,8,91757,3,1672319005),(84990,8,91758,3,1672319005),(84991,8,91759,3,1672319005),(84992,8,91760,3,1672319005),(84993,8,91761,3,1672319005),(84994,8,91762,3,1672319005),(84995,8,91763,3,1672319005),(84996,8,91764,3,1672319005),(84997,8,91765,3,1672319005),(84998,8,91766,3,1672319005),(84999,8,91767,3,1672319005),(85000,8,91768,3,1672319005),(85001,8,91769,3,1672319005),(85002,8,91770,3,1672319005),(85003,8,91771,3,1672319005),(85004,8,91772,3,1672319005),(85005,8,91773,3,1672319005),(85006,8,91774,3,1672319005),(85007,8,91775,3,1672319005),(85008,8,91776,3,1672319005),(85009,8,91777,3,1672319005),(85010,8,91778,3,1672319005),(85011,8,91779,3,1672319005),(85012,8,91780,3,1672319005),(85013,8,91781,3,1672319005),(85014,8,91782,3,1672319005),(85015,8,91783,3,1672319005),(85016,8,91784,3,1672319005),(85017,8,91785,3,1672319005),(85018,8,91786,3,1672319005),(85019,8,91787,3,1672319005),(85020,8,91788,3,1672319005),(85021,8,91789,3,1672319005),(85022,8,91790,3,1672319005),(85023,8,91791,3,1672319005),(85024,8,91792,3,1672319005),(85025,8,91793,3,1672319005),(85026,8,91794,3,1672319005),(85027,8,91795,3,1672319005),(85028,8,91796,3,1672319005),(85029,8,91797,3,1672319005),(85030,8,91798,3,1672319005),(85031,8,91799,3,1672319005),(85032,8,91800,3,1672319005),(85033,8,91801,3,1672319005),(85034,8,91802,3,1672319005),(85035,8,91803,3,1672319005),(85036,8,91804,3,1672319005),(85037,8,91805,3,1672319005),(85038,8,91806,3,1672319005),(85039,8,91807,3,1672319005),(85040,8,91808,3,1672319005),(85041,8,91809,3,1672319005),(85042,8,91810,3,1672319005),(85043,8,91811,3,1672319005),(85044,8,91812,3,1672319005),(85045,8,91813,3,1672319005),(85046,8,91814,3,1672319005),(85047,8,91815,3,1672319005),(85048,8,91816,3,1672319005),(85049,8,91817,3,1672319005),(85050,8,91818,3,1672319005),(85051,8,91819,3,1672319005),(85052,8,91820,3,1672319005),(85053,8,91821,3,1672319005),(85054,8,91822,3,1672319005),(85055,8,91823,3,1672319005),(85056,8,91824,3,1672319005),(85057,8,91825,3,1672319005),(85058,8,91826,3,1672319005),(85059,8,91827,3,1672319005),(85060,8,91828,3,1672319005),(85061,8,91829,3,1672319005),(85062,8,91830,3,1672319005),(85063,8,91831,3,1672319005),(85064,8,91832,3,1672319005),(85065,8,91833,3,1672319005),(85066,8,91834,3,1672319005),(85067,8,91835,3,1672319005),(85068,8,91836,3,1672319005),(85069,8,91837,3,1672319005),(85070,8,91838,3,1672319005),(85071,8,91839,3,1672319005),(85072,8,91840,3,1672319005),(85073,8,91841,3,1672319005),(85074,8,91842,3,1672319005),(85075,8,91843,3,1672319005),(85076,8,91844,3,1672319005),(85077,8,91845,3,1672319005),(85078,8,91846,3,1672319005),(85079,8,91847,3,1672319005),(85080,8,91848,3,1672319005),(85081,8,91849,3,1672319005),(85082,8,91850,3,1672319005),(85083,8,91851,3,1672319005),(85084,8,91852,3,1672319005),(85085,8,91853,3,1672319005),(85086,8,91854,3,1672319005),(85087,8,91855,3,1672319005),(85088,8,91856,3,1672319005),(85089,8,91857,3,1672319005),(85090,8,91858,3,1672319005),(85091,8,91859,3,1672319005),(85092,8,91860,3,1672319005),(85093,8,91861,3,1672319005),(85094,8,91862,3,1672319005),(85095,8,91863,3,1672319005),(85096,8,91864,3,1672319005),(85097,8,91865,3,1672319005),(85098,8,91866,3,1672319005),(85099,8,91867,3,1672319005),(85100,8,91868,3,1672319005),(85101,8,91869,3,1672319005),(85102,8,91870,3,1672319005),(85103,8,91871,3,1672319005),(85104,8,91872,3,1672319005),(85105,8,91873,3,1672319005),(85106,8,91874,3,1672319005),(85107,8,91875,3,1672319005),(85108,8,91876,3,1672319005),(85109,8,91877,3,1672319005),(85110,8,91878,3,1672319005),(85111,8,91879,3,1672319005),(85112,8,91880,3,1672319005),(85113,8,91881,3,1672319005),(85114,8,91882,3,1672319005),(85115,8,91883,3,1672319005),(85116,8,91884,3,1672319005),(85117,8,91885,3,1672319005),(85118,8,91886,3,1672319005),(85119,8,91887,3,1672319005),(85120,8,91888,3,1672319005),(85121,8,91889,3,1672319005),(85122,8,91890,3,1672319005),(85123,8,91891,3,1672319005),(85124,8,91892,3,1672319005),(85125,8,91893,3,1672319005),(85126,8,91894,3,1672319005),(85127,8,91895,3,1672319005),(85128,8,91896,3,1672319005),(85129,8,91897,3,1672319005),(85130,8,91898,3,1672319005),(85131,8,91899,3,1672319005),(85132,8,91900,3,1672319005),(85133,8,91901,3,1672319005),(85134,8,91902,3,1672319005),(85135,8,91903,3,1672319005),(85136,8,91904,3,1672319005),(85137,8,91905,3,1672319005),(85138,8,91906,3,1672319005),(85139,8,91907,3,1672319005),(85140,8,91908,3,1672319005),(85141,8,91909,3,1672319005),(85142,8,91910,3,1672319005),(85143,8,91911,3,1672319005),(85144,8,91912,3,1672319005),(85145,8,91913,3,1672319005),(85146,8,91914,3,1672319005),(85147,8,91915,3,1672319005),(85148,8,91916,3,1672319005),(85149,8,91917,3,1672319005),(85150,8,91918,3,1672319005),(85151,8,91919,3,1672319005),(85152,8,91920,3,1672319005),(85153,8,91921,3,1672319005),(85154,8,91922,3,1672319005),(85155,8,91923,3,1672319005),(85156,8,91924,3,1672319005),(85157,8,91925,3,1672319005),(85158,8,91926,3,1672319005),(85159,8,91927,3,1672319005),(85160,8,91928,3,1672319005),(85161,8,91929,3,1672319005),(85162,8,91930,3,1672319005),(85163,8,91931,3,1672319005),(85164,8,91932,3,1672319005),(85165,8,91933,3,1672319005),(85166,8,91934,3,1672319005),(85167,8,91935,3,1672319005),(85168,8,91936,3,1672319005),(85169,8,91937,3,1672319005),(85170,8,91938,3,1672319005),(85171,8,91939,3,1672319005),(85172,8,91940,3,1672319005),(85173,8,91941,3,1672319005),(85174,8,91942,3,1672319005),(85175,8,91943,3,1672319005),(85176,8,91944,3,1672319005),(85177,8,91945,3,1672319005),(85178,8,91946,3,1672319005),(85179,8,91947,3,1672319005),(85180,8,91948,3,1672319005),(85181,8,91949,3,1672319005),(85182,8,91950,3,1672319005),(85183,8,91951,3,1672319005),(85184,8,91952,3,1672319005),(85185,8,91953,3,1672319005),(85186,8,91954,3,1672319005),(85187,8,91955,3,1672319005),(85188,8,91956,3,1672319005),(85189,8,91957,3,1672319005),(85190,8,91958,3,1672319005),(85191,8,91959,3,1672319005),(85192,8,91960,3,1672319005),(85193,8,91961,3,1672319005),(85194,8,91962,3,1672319005),(85195,8,91963,3,1672319005),(85196,8,91964,3,1672319005),(85197,8,91965,3,1672319005),(85198,8,91966,3,1672319005),(85199,8,91967,3,1672319005),(85200,8,91968,3,1672319005),(85201,8,91969,3,1672319005),(85202,8,91970,3,1672319005),(85203,8,91971,3,1672319005),(85204,8,91972,3,1672319005),(85205,8,91973,3,1672319005),(85206,8,91974,3,1672319005),(85207,8,91975,3,1672319005),(85208,8,91976,3,1672319005),(85209,8,91977,3,1672319005),(85210,8,91978,3,1672319005),(85211,8,91979,3,1672319005),(85212,8,91980,3,1672319005),(85213,8,91981,3,1672319005),(85214,8,91982,3,1672319005),(85215,8,91983,3,1672319005),(85216,8,91984,3,1672319005),(85217,8,91985,3,1672319005),(85218,8,91986,3,1672319005),(85219,8,91987,3,1672319005),(85220,8,91988,3,1672319005),(85221,8,91989,3,1672319005),(85222,8,91990,3,1672319005),(85223,8,91991,3,1672319005),(85224,8,91992,3,1672319005),(85225,8,91993,3,1672319005),(85226,8,91994,3,1672319005),(85227,8,91995,3,1672319005),(85228,8,91996,3,1672319005),(85229,8,91997,3,1672319005),(85230,8,91998,3,1672319005),(85231,8,91999,3,1672319005),(85232,8,92000,3,1672319005),(85233,8,92001,3,1672319005),(85234,8,92002,3,1672319005),(85235,8,92003,3,1672319005),(85236,8,92004,3,1672319005),(85237,8,92005,3,1672319005),(85238,8,92006,3,1672319005),(85239,8,92007,3,1672319005),(85240,8,92008,3,1672319005),(85241,8,92009,3,1672319005),(85242,8,92010,3,1672319005),(85243,8,92011,3,1672319005),(85244,8,92012,3,1672319005),(85245,8,92013,3,1672319005),(85246,8,92014,3,1672319005),(85247,8,92015,3,1672319005),(85248,8,92016,3,1672319005),(85249,8,92017,3,1672319005),(85250,8,92018,3,1672319005),(85251,8,92019,3,1672319005),(85252,8,92020,3,1672319005),(85253,8,92021,3,1672319005),(85254,8,92022,3,1672319005),(85255,8,92023,3,1672319005),(85256,8,92024,3,1672319005),(85257,8,92025,3,1672319005),(85258,8,92026,3,1672319005),(85259,8,92027,3,1672319005),(85260,8,92028,3,1672319005),(85261,8,92029,3,1672319005),(85262,8,92030,3,1672319005),(85263,8,92031,3,1672319005),(85264,8,92032,3,1672319005),(85265,8,92033,3,1672319005),(85266,8,92034,3,1672319005),(85267,8,92035,3,1672319005),(85268,8,92036,3,1672319005),(85269,8,92037,3,1672319005),(85270,8,92038,3,1672319005),(85271,8,92039,3,1672319005),(85272,8,92040,3,1672319005),(85273,8,92041,3,1672319005),(85274,8,92042,3,1672319005),(85275,8,92043,3,1672319005),(85276,8,92044,3,1672319005),(85277,8,92045,3,1672319005),(85278,8,92046,3,1672319005),(85279,8,92047,3,1672319005),(85280,8,92048,3,1672319005),(85281,8,92049,3,1672319005),(85282,8,92050,3,1672319005),(85283,8,92051,3,1672319005),(85284,8,92052,3,1672319005),(85285,8,92053,3,1672319005),(85286,8,92054,3,1672319005),(85287,8,92055,3,1672319005),(85288,8,92056,3,1672319005),(85289,8,92057,3,1672319005),(85290,8,92058,3,1672319005),(85291,8,92059,3,1672319005),(85292,8,92060,3,1672319005),(85293,8,92061,3,1672319005),(85294,8,92062,3,1672319005),(85295,8,92063,3,1672319005),(85296,8,92064,3,1672319005),(85297,8,92065,3,1672319005),(85298,8,92066,3,1672319005),(85299,8,92067,3,1672319005),(85300,8,92068,3,1672319005),(85301,8,92069,3,1672319005),(85302,8,92070,3,1672319005),(85303,8,92071,3,1672319005),(85304,8,92072,3,1672319005),(85305,8,92073,3,1672319005),(85306,8,92074,3,1672319005),(85307,8,92075,3,1672319005),(85308,8,92076,3,1672319005),(85309,8,92077,3,1672319005),(85310,8,92078,3,1672319005),(85311,8,92079,3,1672319005),(85312,8,92080,3,1672319005),(85313,8,92081,3,1672319005),(85314,8,92082,3,1672319005),(85315,8,92083,3,1672319005),(85316,8,92084,3,1672319005),(85317,8,92085,3,1672319005),(85318,8,92086,3,1672319005),(85319,8,92087,3,1672319005),(85320,8,92088,3,1672319005),(85321,8,92089,3,1672319005),(85322,8,92090,3,1672319005),(85323,8,92091,3,1672319005),(85324,8,92092,3,1672319005),(85325,8,92093,3,1672319005),(85326,8,92094,3,1672319005),(85327,8,92095,3,1672319005),(85328,8,92096,3,1672319005),(85329,8,92097,3,1672319005),(85330,8,92098,3,1672319005),(85331,8,92099,3,1672319005),(85332,8,92100,3,1672319005),(85333,8,92101,3,1672319005),(85334,8,92102,3,1672319005),(85335,8,92103,3,1672319005),(85336,8,92104,3,1672319005),(85337,8,92105,3,1672319005),(85338,8,92106,3,1672319005),(85339,8,92107,3,1672319005),(85340,8,92108,3,1672319005),(85341,8,92109,3,1672319005),(85342,8,92110,3,1672319005),(85343,8,92111,3,1672319005),(85344,8,92112,3,1672319005),(85345,8,92113,3,1672319005),(85346,8,92114,3,1672319005),(85347,8,92115,3,1672319005),(85348,8,92116,3,1672319005),(85349,8,92117,3,1672319005),(85350,8,92118,3,1672319005),(85351,8,92119,3,1672319005),(85352,8,92120,3,1672319005),(85353,8,92121,3,1672319005),(85354,8,92122,3,1672319005),(85355,8,92123,3,1672319005),(85356,8,92124,3,1672319005),(85357,8,92125,3,1672319005),(85358,8,92126,3,1672319005),(85359,8,92127,3,1672319005),(85360,8,92128,3,1672319005),(85361,8,92129,3,1672319005),(85362,8,92130,3,1672319005),(85363,8,92131,3,1672319005),(85364,8,92132,3,1672319005),(85365,8,92133,3,1672319005),(85366,8,92134,3,1672319005),(85367,8,92135,3,1672319005),(85368,8,92136,3,1672319005),(85369,8,92137,3,1672319005),(85370,8,92138,3,1672319005),(85371,8,92139,3,1672319005),(85372,8,92140,3,1672319005),(85373,8,92141,3,1672319005),(85374,8,92142,3,1672319005),(85375,8,92143,3,1672319005),(85376,8,92144,3,1672319005),(85377,8,92145,3,1672319005),(85378,8,92146,3,1672319005),(85379,8,92147,3,1672319005),(85380,8,92148,3,1672319005),(85381,8,92149,3,1672319005),(85382,8,92150,3,1672319005),(85383,8,92151,3,1672319005),(85384,8,92152,3,1672319005),(85385,8,92153,3,1672319005),(85386,8,92154,3,1672319005),(85387,8,92155,3,1672319005),(85388,8,92156,3,1672319005),(85389,8,92157,3,1672319005),(85390,8,92158,3,1672319005),(85391,8,92159,3,1672319005),(85392,8,92160,3,1672319005),(85393,8,92161,3,1672319005),(85394,8,92162,3,1672319005),(85395,8,92163,3,1672319005),(85396,8,92164,3,1672319005),(85397,8,92165,3,1672319005),(85398,8,92166,3,1672319005),(85399,8,92167,3,1672319005),(85400,8,92168,3,1672319005),(85401,8,92169,3,1672319005),(85402,8,92170,3,1672319005),(85403,8,92171,3,1672319005),(85404,8,92172,3,1672319005),(85405,8,92173,3,1672319005),(85406,8,92174,3,1672319005),(85407,8,92175,3,1672319005),(85408,8,92176,3,1672319005),(85409,8,92177,3,1672319005),(85410,8,92178,3,1672319005),(85411,8,92179,3,1672319005),(85412,8,92180,3,1672319005),(85413,8,92181,3,1672319005),(85414,8,92182,3,1672319005),(85415,8,92183,3,1672319005),(85416,8,92184,3,1672319005),(85417,8,92185,3,1672319005),(85418,8,92186,3,1672319005),(85419,8,92187,3,1672319005),(85420,8,92188,3,1672319005),(85421,8,92189,3,1672319005),(85422,8,92190,3,1672319005),(85423,8,92191,3,1672319005),(85424,8,92192,3,1672319005),(85425,8,92193,3,1672319005),(85426,8,92194,3,1672319005),(85427,8,92195,3,1672319005),(85428,8,92196,3,1672319005),(85429,8,92197,3,1672319005),(85430,8,92198,3,1672319005),(85431,8,92199,3,1672319005),(85432,8,92200,3,1672319005),(85433,8,92201,3,1672319005),(85434,8,92202,3,1672319005),(85435,8,92203,3,1672319005),(85436,8,92204,3,1672319005),(85437,8,92205,3,1672319005),(85438,8,92206,3,1672319005),(85439,8,92207,3,1672319005),(85440,8,92208,3,1672319005),(85441,8,92209,3,1672319005),(85442,8,92210,3,1672319005),(85443,8,92211,3,1672319005),(85444,8,92212,3,1672319005),(85445,8,92213,3,1672319005),(85446,8,92214,3,1672319005),(85447,8,92215,3,1672319005),(85448,8,92216,3,1672319005),(85449,8,92217,3,1672319005),(85450,8,92218,3,1672319005),(85451,8,92219,3,1672319005),(85452,8,92220,3,1672319005),(85453,8,92221,3,1672319005),(85454,8,92222,3,1672319005),(85455,8,92223,3,1672319005),(85456,8,92224,3,1672319005),(85457,8,92225,3,1672319005),(85458,8,92226,3,1672319005),(85459,8,92227,3,1672319005),(85460,8,92228,3,1672319005),(85461,8,92229,3,1672319005),(85462,8,92230,3,1672319005),(85463,8,92231,3,1672319005),(85464,8,92232,3,1672319005),(85465,8,92233,3,1672319005),(85466,8,92234,3,1672319005),(85467,8,92235,3,1672319005),(85468,8,92236,3,1672319005),(85469,8,92237,3,1672319005),(85470,8,92238,3,1672319005),(85471,8,92239,3,1672319005),(85472,8,92240,3,1672319005),(85473,8,92241,3,1672319005),(85474,8,92242,3,1672319005),(85475,8,92243,3,1672319005),(85476,8,92244,3,1672319005),(85477,8,92245,3,1672319005),(85478,8,92246,3,1672319005),(85479,8,92247,3,1672319005),(85480,8,92248,3,1672319005),(85481,8,92249,3,1672319005),(85482,8,92250,3,1672319005),(85483,8,92251,3,1672319005),(85484,8,92252,3,1672319005),(85485,8,92253,3,1672319005),(85486,8,92254,3,1672319005),(85487,8,92255,3,1672319005),(85488,8,92256,3,1672319005),(85489,8,92257,3,1672319005),(85490,8,92258,3,1672319005),(85491,8,92259,3,1672319005),(85492,8,92260,3,1672319005),(85493,8,92261,3,1672319005),(85494,8,92262,3,1672319005),(85495,8,92263,3,1672319005),(85496,8,92264,3,1672319005),(85497,8,92265,3,1672319005),(85498,8,92266,3,1672319005),(85499,8,92267,3,1672319005),(85500,8,92268,3,1672319005),(85501,8,92269,3,1672319005),(85502,8,92270,3,1672319005),(85503,8,92271,3,1672319005),(85504,8,92272,3,1672319005),(85505,8,92273,3,1672319005),(85506,8,92274,3,1672319005),(85507,8,92275,3,1672319005),(85508,8,92276,3,1672319005),(85509,8,92277,3,1672319005),(85510,8,92278,3,1672319005),(85511,8,92279,3,1672319005),(85512,8,92280,3,1672319005),(85513,8,92281,3,1672319005),(85514,8,92282,3,1672319005),(85515,8,92283,3,1672319005),(85516,8,92284,3,1672319005),(85517,8,92285,3,1672319005),(85518,8,92286,3,1672319005),(85519,8,92287,3,1672319005),(85520,8,92288,3,1672319005),(85521,8,92289,3,1672319005),(85522,8,92290,3,1672319005),(85523,8,92291,3,1672319005),(85524,8,92292,3,1672319005),(85525,8,92293,3,1672319005),(85526,8,92294,3,1672319005),(85527,8,92295,3,1672319005),(85528,8,92296,3,1672319005),(85529,8,92297,3,1672319005),(85530,8,92298,3,1672319005),(85531,8,92299,3,1672319005),(85532,8,92300,3,1672319005),(85533,8,92301,3,1672319005),(85534,8,92302,3,1672319005),(85535,8,92303,3,1672319005),(85536,8,92304,3,1672319005),(85537,8,92305,3,1672319005),(85538,8,92306,3,1672319005),(85539,8,92307,3,1672319005),(85540,8,92308,3,1672319005),(85541,8,92309,3,1672319005),(85542,8,92310,3,1672319005),(85543,8,92311,3,1672319005),(85544,8,92312,3,1672319005),(85545,8,92313,3,1672319005),(85546,8,92314,3,1672319005),(85547,8,92315,3,1672319005),(85548,8,92316,3,1672319005),(85549,8,92317,3,1672319005),(85550,8,92318,3,1672319005),(85551,8,92319,3,1672319005),(85552,8,92320,3,1672319005),(85553,8,92321,3,1672319005),(85554,8,92322,3,1672319005),(85555,8,92323,3,1672319005),(85556,8,92324,3,1672319005),(85557,8,92325,3,1672319005),(85558,8,92326,3,1672319005),(85559,8,92327,3,1672319005),(85560,8,92328,3,1672319005),(85561,8,92329,3,1672319005),(85562,8,92330,3,1672319005),(85563,8,92331,3,1672319005),(85564,8,92332,3,1672319005),(85565,8,92333,3,1672319005),(85566,8,92334,3,1672319005),(85567,8,92335,3,1672319005),(85568,8,92336,3,1672319005),(85569,8,92337,3,1672319005),(85570,8,92338,3,1672319005),(85571,8,92339,3,1672319005),(85572,8,92340,3,1672319005),(85573,8,92341,3,1672319005),(85574,8,92342,3,1672319005),(85575,8,92343,3,1672319005),(85576,8,92344,3,1672319005),(85577,8,92345,3,1672319005),(85578,8,92346,3,1672319005),(85579,8,92347,3,1672319005),(85580,8,92348,3,1672319005),(85581,8,92349,3,1672319005),(85582,8,92350,3,1672319005),(85583,8,92351,3,1672319005),(85584,8,92352,3,1672319005),(85585,8,92353,3,1672319005),(85586,8,92354,3,1672319005),(85587,8,92355,3,1672319005),(85588,8,92356,3,1672319005),(85589,8,92357,3,1672319005),(85590,8,92358,3,1672319005),(85591,8,92359,3,1672319005),(85592,8,92360,3,1672319005),(85593,8,92361,3,1672319005),(85594,8,92362,3,1672319005),(85595,8,92363,3,1672319005),(85596,8,92364,3,1672319005),(85597,8,92365,3,1672319005),(85598,8,92366,3,1672319005),(85599,8,92367,3,1672319005),(85600,8,92368,3,1672319005),(85601,8,92369,3,1672319005),(85602,8,92370,3,1672319005),(85603,8,92371,3,1672319005),(85604,8,92372,3,1672319005),(85605,8,92373,3,1672319005),(85606,8,92374,3,1672319005),(85607,8,92375,3,1672319005),(85608,8,92376,3,1672319005),(85609,8,92377,3,1672319005),(85610,8,92378,3,1672319005),(85611,8,92379,3,1672319005),(85612,8,92380,3,1672319005),(85613,8,92381,3,1672319005),(85614,8,92382,3,1672319005),(85615,8,92383,3,1672319005),(85616,8,92384,3,1672319005),(85617,8,92385,3,1672319005),(85618,8,92386,3,1672319005),(85619,8,92387,3,1672319005),(85620,8,92388,3,1672319005),(85621,8,92389,3,1672319005),(85622,8,92390,3,1672319005),(85623,8,92391,3,1672319005),(85624,8,92392,3,1672319005),(85625,8,92393,3,1672319005),(85626,8,92394,3,1672319005),(85627,8,92395,3,1672319005),(85628,8,92396,3,1672319005),(85629,8,92397,3,1672319005),(85630,8,92398,3,1672319005),(85631,8,92399,3,1672319005),(85632,8,92400,3,1672319005),(85633,8,92401,3,1672319005),(85634,8,92402,3,1672319005),(85635,8,92403,3,1672319005),(85636,8,92404,3,1672319005),(85637,8,92405,3,1672319005),(85638,8,92406,3,1672319005),(85639,8,92407,3,1672319005),(85640,8,92408,3,1672319005),(85641,8,92409,3,1672319005),(85642,8,92410,3,1672319005),(85643,8,92411,3,1672319005),(85644,8,92412,3,1672319005),(85645,8,92413,3,1672319005),(85646,8,92414,3,1672319005),(85647,8,92415,3,1672319005),(85648,8,92416,3,1672319005),(85649,8,92417,3,1672319005),(85650,8,92418,3,1672319005),(85651,8,92419,3,1672319005),(85652,8,92420,3,1672319005),(85653,8,92421,3,1672319005),(85654,8,92422,3,1672319005),(85655,8,92423,3,1672319005),(85656,8,92424,3,1672319005),(85657,8,92425,3,1672319005),(85658,8,92426,3,1672319005),(85659,8,92427,3,1672319005),(85660,8,92428,3,1672319005),(85661,8,92429,3,1672319005),(85662,8,92430,3,1672319005),(85663,8,92431,3,1672319005),(85664,8,92432,3,1672319005),(85665,8,92433,3,1672319005),(85666,8,92434,3,1672319005),(85667,8,92435,3,1672319005),(85668,8,92436,3,1672319005),(85669,8,92437,3,1672319005),(85670,8,92438,3,1672319005),(85671,8,92439,3,1672319005),(85672,8,92440,3,1672319005),(85673,8,92441,3,1672319005),(85674,8,92442,3,1672319005),(85675,8,92443,3,1672319005),(85676,8,92444,3,1672319005),(85677,8,92445,3,1672319005),(85678,8,92446,3,1672319005),(85679,8,92447,3,1672319005),(85680,8,92448,3,1672319005),(85681,8,92449,3,1672319005),(85682,8,92450,3,1672319005),(85683,8,92451,3,1672319005),(85684,8,92452,3,1672319005),(85685,8,92453,3,1672319005),(85686,8,92454,3,1672319005),(85687,8,92455,3,1672319005),(85688,8,92456,3,1672319005),(85689,8,92457,3,1672319005),(85690,8,92458,3,1672319005),(85691,8,92459,3,1672319005),(85692,8,92460,3,1672319005),(85693,8,92461,3,1672319005),(85694,8,92462,3,1672319005),(85695,8,92463,3,1672319005),(85696,8,92464,3,1672319005),(85697,8,92465,3,1672319005),(85698,8,92466,3,1672319005),(85699,8,92467,3,1672319005),(85700,8,92468,3,1672319005),(85701,8,92469,3,1672319005),(85702,8,92470,3,1672319005),(85703,8,92471,3,1672319005),(85704,8,92472,3,1672319005),(85705,8,92473,3,1672319005),(85706,8,92474,3,1672319005),(85707,8,92475,3,1672319005),(85708,8,92476,3,1672319005),(85709,8,92477,3,1672319005),(85710,8,92478,3,1672319005),(85711,8,92479,3,1672319005),(85712,8,92480,3,1672319005),(85713,8,92481,3,1672319005),(85714,8,92482,3,1672319005),(85715,8,92483,3,1672319005),(85716,8,92484,3,1672319005),(85717,8,92485,3,1672319005),(85718,8,92486,3,1672319005),(85719,8,92487,3,1672319005),(85720,8,92488,3,1672319005),(85721,8,92489,3,1672319005),(85722,8,92490,3,1672319005),(85723,8,92491,3,1672319005),(85724,8,92492,3,1672319005),(85725,8,92493,3,1672319005),(85726,8,92494,3,1672319005),(85727,8,92495,3,1672319005),(85728,8,92496,3,1672319005),(85729,8,92497,3,1672319005),(85730,8,92498,3,1672319005),(85731,8,92499,3,1672319005),(85732,8,92500,3,1672319005),(85733,8,92501,3,1672319005),(85734,8,92502,3,1672319005),(85735,8,92503,3,1672319005),(85736,8,92504,3,1672319005),(85737,8,92505,3,1672319005),(85738,8,92506,3,1672319005),(85739,8,92507,3,1672319005),(85740,8,92508,3,1672319005),(85741,8,92509,3,1672319005),(85742,8,92510,3,1672319005),(85743,8,92511,3,1672319005),(85744,8,92512,3,1672319005),(85745,8,92513,3,1672319005),(85746,8,92514,3,1672319005),(85747,8,92515,3,1672319005),(85748,8,92516,3,1672319005),(85749,8,92517,3,1672319005),(85750,8,92518,3,1672319005),(85751,8,92519,3,1672319005),(85752,8,92520,3,1672319005),(85753,8,92521,3,1672319005),(85754,8,92522,3,1672319005),(85755,8,92523,3,1672319005),(85756,8,92524,3,1672319005),(85757,8,92525,3,1672319005),(85758,8,92526,3,1672319005),(85759,8,92527,3,1672319005),(85760,8,92528,3,1672319005),(85761,8,92529,3,1672319005),(85762,8,92530,3,1672319005),(85763,8,92531,3,1672319005),(85764,8,92532,3,1672319005),(85765,8,92533,3,1672319005),(85766,8,92534,3,1672319005),(85767,8,92535,3,1672319005),(85768,8,92536,3,1672319005),(85769,8,92537,3,1672319005),(85770,8,92538,3,1672319005),(85771,8,92539,3,1672319005),(85772,8,92540,3,1672319005),(85773,8,92541,3,1672319005),(85774,8,92542,3,1672319005),(85775,8,92543,3,1672319005),(85776,8,92544,3,1672319005),(85777,8,92545,3,1672319005),(85778,8,92546,3,1672319005),(85779,8,92547,3,1672319005),(85780,8,92548,3,1672319005),(85781,8,92549,3,1672319005),(85782,8,92550,3,1672319005),(85783,8,92551,3,1672319005),(85784,8,92552,3,1672319005),(85785,8,92553,3,1672319005),(85786,8,92554,3,1672319005),(85787,8,92555,3,1672319005),(85788,8,92556,3,1672319005),(85789,8,92557,3,1672319005),(85790,8,92558,3,1672319005),(85791,8,92585,3,1672319005),(85792,8,92586,3,1672319005),(85793,8,92587,3,1672319005),(85794,8,92588,3,1672319005),(85795,8,92589,3,1672319005),(85796,8,92590,3,1672319005),(85797,8,92591,3,1672319005),(85798,8,92592,3,1672319005),(85799,8,92593,3,1672319005),(85800,8,92594,3,1672319005),(85801,8,92595,3,1672319005),(85802,8,92596,3,1672319005),(85803,8,92597,3,1672319005),(85804,8,92598,3,1672319005),(85805,8,92599,3,1672319005),(85806,8,92600,3,1672319005),(85807,8,92601,3,1672319005),(85808,8,92602,3,1672319005),(85809,8,92603,3,1672319005),(85810,8,92604,3,1672319005),(85811,8,92605,3,1672319005),(85812,8,92606,3,1672319005),(85813,8,92607,3,1672319005),(85814,8,92608,3,1672319005),(85815,8,92609,3,1672319005),(85816,8,92610,3,1672319005),(85817,8,92611,3,1672319005),(85818,8,92612,3,1672319005),(85819,8,92613,3,1672319005),(85820,8,92614,3,1672319005),(85821,8,92615,3,1672319005),(85822,8,92616,3,1672319005),(85823,8,92617,3,1672319005),(85824,8,92618,3,1672319005),(85825,8,92619,3,1672319005),(85826,8,92620,3,1672319005),(85827,8,92621,3,1672319005),(85828,8,92622,3,1672319005),(85829,8,92623,3,1672319005),(85830,8,92624,3,1672319005),(85831,8,92625,3,1672319005),(85832,8,92626,3,1672319005),(85833,8,92627,3,1672319005),(85834,8,92628,3,1672319005),(85835,8,92629,3,1672319005),(85836,8,92630,3,1672319005),(85837,8,92631,3,1672319005),(85838,8,92632,3,1672319005),(85839,8,92633,3,1672319005),(85840,8,92634,3,1672319005),(85841,8,92635,3,1672319005),(85842,8,92636,3,1672319005),(85843,8,92637,3,1672319005),(85844,8,92638,3,1672319005),(85845,8,92639,3,1672319005),(85846,8,92640,3,1672319005),(85847,8,92641,3,1672319005),(85848,8,92642,3,1672319005),(85849,8,92643,3,1672319005),(85850,8,92644,3,1672319005),(85851,8,92645,3,1672319005),(85852,8,92646,3,1672319005),(85853,8,92647,3,1672319005),(85854,8,92648,3,1672319005),(85855,8,92649,3,1672319005),(85856,8,92650,3,1672319005),(85857,8,92651,3,1672319005),(85858,8,92652,3,1672319005),(85859,8,92653,3,1672319005),(85860,8,92654,3,1672319005),(85861,8,92655,3,1672319005),(85862,8,92656,3,1672319005),(85863,8,92657,3,1672319005),(85864,8,92658,3,1672319005),(85865,8,92659,3,1672319005),(85866,8,92660,3,1672319005),(85867,8,92661,3,1672319005),(85868,8,92662,3,1672319005),(85869,8,92663,3,1672319005),(85870,8,92664,3,1672319005),(85871,8,92665,3,1672319005),(85872,8,92666,3,1672319005),(85873,8,92667,3,1672319005),(85874,8,92668,3,1672319005),(85875,8,92669,3,1672319005),(85876,8,92670,3,1672319005),(85877,8,92671,3,1672319005),(85878,8,92672,3,1672319005),(85879,8,92673,3,1672319005),(85880,8,92674,3,1672319005),(85881,8,92675,3,1672319005),(85882,8,92676,3,1672319005),(85883,8,92677,3,1672319005),(85884,8,92678,3,1672319005),(85885,8,92679,3,1672319005),(85886,8,92680,3,1672319005),(85887,8,92681,3,1672319005),(85888,8,92682,3,1672319005),(85889,8,92683,3,1672319005),(85890,8,92684,3,1672319005),(85891,8,92685,3,1672319005),(85892,8,92686,3,1672319005),(85893,8,92687,3,1672319005),(85894,8,92688,3,1672319005),(85895,8,92689,3,1672319005),(85896,8,92690,3,1672319005),(85897,8,92691,3,1672319005),(85898,8,92692,3,1672319005),(85899,8,92693,3,1672319005),(85900,8,92694,3,1672319005),(85901,8,92695,3,1672319005),(85902,8,92696,3,1672319005),(85903,8,92697,3,1672319005),(85904,8,92698,3,1672319005),(85905,8,92699,3,1672319005),(85906,8,92700,3,1672319005),(85907,8,92701,3,1672319005),(85908,8,92702,3,1672319005),(85909,8,92703,3,1672319005),(85910,8,92704,3,1672319005),(85911,8,92705,3,1672319005),(85912,8,92706,3,1672319005),(85913,8,92707,3,1672319005),(85914,8,92708,3,1672319005),(85915,8,92709,3,1672319005),(85916,8,92710,3,1672319005),(85917,8,92711,3,1672319005),(85918,8,92712,3,1672319005),(85919,8,92713,3,1672319005),(85920,8,92714,3,1672319005),(85921,8,92715,3,1672319005),(85922,8,92716,3,1672319005),(85923,8,92717,3,1672319005),(85924,8,92718,3,1672319005),(85925,8,92719,3,1672319005),(85926,8,92720,3,1672319005),(85927,8,92721,3,1672319005),(85928,8,92722,3,1672319005),(85929,8,92723,3,1672319005),(85930,8,92724,3,1672319005),(85931,8,92725,3,1672319005),(85932,8,92726,3,1672319005),(85933,8,92727,3,1672319005),(85934,8,92728,3,1672319005),(85935,8,92729,3,1672319005),(85936,8,92730,3,1672319005),(85937,8,92731,3,1672319005),(85938,8,92732,3,1672319005),(85939,8,92733,3,1672319005),(85940,8,92734,3,1672319005),(85941,8,92735,3,1672319005),(85942,8,92736,3,1672319005),(85943,8,92737,3,1672319005),(85944,8,92738,3,1672319005),(85945,8,92739,3,1672319005),(85946,8,92740,3,1672319005),(85947,8,92741,3,1672319005),(85948,8,92742,3,1672319005),(85949,8,92743,3,1672319005),(85950,8,92744,3,1672319005),(85951,8,92745,3,1672319005),(85952,8,92746,3,1672319005),(85953,8,92747,3,1672319005),(85954,8,92748,3,1672319005),(85955,8,92749,3,1672319005),(85956,8,92750,3,1672319005),(85957,8,92751,3,1672319005),(85958,8,92752,3,1672319005),(85959,8,92753,3,1672319005),(85960,8,92754,3,1672319005),(85961,8,92755,3,1672319005),(85962,8,92756,3,1672319005),(85963,8,92757,3,1672319005),(85964,8,92758,3,1672319005),(85965,8,92759,3,1672319005),(85966,8,92760,3,1672319005),(85967,8,92761,3,1672319005),(85968,8,92762,3,1672319005),(85969,8,92763,3,1672319005),(85970,8,92764,3,1672319005),(85971,8,92765,3,1672319005),(85972,8,92766,3,1672319005),(85973,8,92767,3,1672319005),(85974,8,92768,3,1672319005),(85975,8,92769,3,1672319005),(85976,8,92770,3,1672319005),(85977,8,92771,3,1672319005),(85978,8,92772,3,1672319005),(85979,8,92773,3,1672319005),(85980,8,92774,3,1672319005),(85981,8,92775,3,1672319005),(85982,8,92776,3,1672319005),(85983,8,92777,3,1672319005),(85984,8,92778,3,1672319005),(85985,8,92779,3,1672319005),(85986,8,92780,3,1672319005),(85987,8,92781,3,1672319005),(85988,8,92782,3,1672319005),(85989,8,92783,3,1672319005),(85990,8,92784,3,1672319005),(85991,8,92785,3,1672319005),(85992,8,92786,3,1672319005),(85993,8,92787,3,1672319005),(85994,8,92788,3,1672319005),(85995,8,92789,3,1672319005),(85996,8,92790,3,1672319005),(85997,8,92791,3,1672319005),(85998,8,92792,3,1672319005),(85999,8,92793,3,1672319005),(86000,8,92794,3,1672319005),(86001,8,92795,3,1672319005),(86002,8,92796,3,1672319005),(86003,8,92797,3,1672319005),(86004,8,92798,3,1672319005),(86005,8,92799,3,1672319005),(86006,8,92800,3,1672319005),(86007,8,92801,3,1672319005),(86008,8,92802,3,1672319005),(86009,8,92803,3,1672319005),(86010,8,92804,3,1672319005),(86011,8,92805,3,1672319005),(86012,8,92806,3,1672319005),(86013,8,92807,3,1672319005),(86014,8,92808,3,1672319005),(86015,8,92809,3,1672319005),(86016,8,92810,3,1672319005),(86017,8,92811,3,1672319005),(86018,8,92812,3,1672319005),(86019,8,92813,3,1672319005),(86020,8,92814,3,1672319005),(86021,8,92815,3,1672319005),(86022,8,92816,3,1672319005),(86023,8,92817,3,1672319005),(86024,8,92818,3,1672319005),(86025,8,92819,3,1672319005),(86026,8,92820,3,1672319005),(86027,8,92821,3,1672319005),(86028,8,92822,3,1672319005),(86029,8,92823,3,1672319005),(86030,8,92824,3,1672319005),(86031,8,92825,3,1672319005),(86032,8,92826,3,1672319005),(86033,8,92827,3,1672319005),(86034,8,92828,3,1672319005),(86035,8,92829,3,1672319005),(86036,8,92830,3,1672319005),(86037,8,92831,3,1672319005),(86038,8,92832,3,1672319005),(86039,8,92833,3,1672319005),(86040,8,92834,3,1672319005),(86041,8,92835,3,1672319005),(86042,8,92836,3,1672319005),(86043,8,92837,3,1672319005),(86044,8,92838,3,1672319005),(86045,8,92839,3,1672319005),(86046,8,92840,3,1672319005),(86047,8,92841,3,1672319005),(86048,8,92842,3,1672319005),(86049,8,92843,3,1672319005),(86050,8,92844,3,1672319005),(86051,8,92845,3,1672319005),(86052,8,92846,3,1672319005),(86053,8,92847,3,1672319005),(86054,8,92848,3,1672319005),(86055,8,92849,3,1672319005),(86056,8,92850,3,1672319005),(86057,8,92851,3,1672319005),(86058,8,92852,3,1672319005),(86059,8,92853,3,1672319005),(86060,8,92854,3,1672319005),(86061,8,92855,3,1672319005),(86062,8,92856,3,1672319005),(86063,8,92857,3,1672319005),(86064,8,92858,3,1672319005),(86065,8,92859,3,1672319005),(86066,8,92860,3,1672319005),(86067,8,92861,3,1672319005),(86068,8,92862,3,1672319005),(86069,8,92863,3,1672319005),(86070,8,92864,3,1672319005),(86071,8,92865,3,1672319005),(86072,8,92866,3,1672319005),(86073,8,92867,3,1672319005),(86074,8,92868,3,1672319005),(86075,8,92869,3,1672319005),(86076,8,92870,3,1672319005),(86077,8,92871,3,1672319005),(86078,8,92872,3,1672319005),(86079,8,92873,3,1672319005),(86080,8,92874,3,1672319005),(86081,8,92875,3,1672319005),(86082,8,92876,3,1672319005),(86083,8,92877,3,1672319005),(86084,8,92879,3,1672319005),(86085,8,92881,3,1672319005),(86086,8,92882,3,1672319005),(86087,8,92883,3,1672319005),(86088,8,92884,3,1672319005),(86089,8,92885,3,1672319005),(86090,8,92886,3,1672319005),(86091,8,92887,3,1672319005),(86092,8,92888,3,1672319005),(86093,8,92889,3,1672319005),(86094,8,92890,3,1672319005),(86095,8,92891,3,1672319005),(86096,8,92892,3,1672319005),(86097,8,92893,3,1672319005),(86098,8,92894,3,1672319005),(86099,8,92895,3,1672319005),(86100,8,92896,3,1672319005),(86101,8,92897,3,1672319005),(86102,8,92898,3,1672319005),(86103,8,92899,3,1672319005),(86104,8,92900,3,1672319005),(86105,8,92901,3,1672319005),(86106,8,92902,3,1672319005),(86107,8,92903,3,1672319005),(86108,8,92904,3,1672319005),(86109,8,92905,3,1672319005),(86110,8,92906,3,1672319005),(86111,8,92907,3,1672319005),(86112,8,92908,3,1672319005),(86113,8,92909,3,1672319005),(86114,8,92910,3,1672319005),(86115,8,92911,3,1672319005),(86116,8,92912,3,1672319005),(86117,8,92913,3,1672319005),(86118,8,92914,3,1672319005),(86119,8,92915,3,1672319005),(86120,8,92916,3,1672319005),(86121,8,92917,3,1672319005),(86122,8,92918,3,1672319005),(86123,8,92919,3,1672319005),(86124,8,92920,3,1672319005),(86125,8,92921,3,1672319005),(86126,8,92922,3,1672319005),(86127,8,92923,3,1672319005),(86128,8,92924,3,1672319005),(86129,8,92925,3,1672319005),(86130,8,92926,3,1672319005),(86131,8,92927,3,1672319005),(86132,8,92928,3,1672319005),(86133,8,92929,3,1672319005),(86134,8,92930,3,1672319005),(86135,8,92931,3,1672319005),(86136,8,92932,3,1672319005),(86137,8,92933,3,1672319005),(86138,8,92934,3,1672319005),(86139,8,92935,3,1672319005),(86140,8,92936,3,1672319005),(86141,8,92937,3,1672319005),(86142,8,92938,3,1672319005),(86143,8,92939,3,1672319005),(86144,8,92940,3,1672319005),(86145,8,92941,3,1672319005),(86146,8,92942,3,1672319005),(86147,8,92943,3,1672319005),(86148,8,92944,3,1672319005),(86149,8,92945,3,1672319005),(86150,8,92946,3,1672319005),(86151,8,92947,3,1672319005),(86152,8,92948,3,1672319005),(86153,8,92949,3,1672319005),(86154,8,92950,3,1672319005),(86155,8,92951,3,1672319005),(86156,8,92952,3,1672319005),(86157,8,92953,3,1672319005),(86158,8,92954,3,1672319005),(86159,8,92955,3,1672319005),(86160,8,92956,3,1672319005),(86161,8,92957,3,1672319005),(86162,8,92958,3,1672319005),(86163,8,92959,3,1672319005),(86164,8,92960,3,1672319005),(86165,8,92961,3,1672319005),(86166,8,92962,3,1672319005),(86167,8,92963,3,1672319005),(86168,8,92964,3,1672319005),(86169,8,92965,3,1672319005),(86170,8,92966,3,1672319005),(86171,8,92967,3,1672319005),(86172,8,92968,3,1672319005),(86173,8,92969,3,1672319005),(86174,8,92970,3,1672319005),(86175,8,92971,3,1672319005),(86176,8,92972,3,1672319005),(86177,8,92973,3,1672319005),(86178,8,92974,3,1672319005),(86179,8,92975,3,1672319005),(86180,8,92976,3,1672319005),(86181,8,92977,3,1672319005),(86182,8,92978,3,1672319005),(86183,8,92979,3,1672319005),(86184,8,92980,3,1672319005),(86185,8,92981,3,1672319005),(86186,8,92982,3,1672319005),(86187,8,92983,3,1672319005),(86188,8,92984,3,1672319005),(86189,8,92985,3,1672319005),(86190,8,92986,3,1672319005),(86191,8,92987,3,1672319005),(86192,8,92988,3,1672319005),(86193,8,92989,3,1672319005),(86194,8,92990,3,1672319005),(86195,8,92991,3,1672319005),(86196,8,92992,3,1672319005),(86197,8,92993,3,1672319005),(86198,8,92994,3,1672319005),(86199,8,92995,3,1672319005),(86200,8,92996,3,1672319005),(86201,8,92997,3,1672319005),(86202,8,92998,3,1672319005),(86203,8,92999,3,1672319005),(86204,8,93000,3,1672319005),(86205,8,93001,3,1672319005),(86206,8,93002,3,1672319005),(86207,8,93003,3,1672319005),(86208,8,93004,3,1672319005),(86209,8,93005,3,1672319005),(86210,8,93006,3,1672319005),(86211,8,93007,3,1672319005),(86212,8,93008,3,1672319005),(86213,8,93009,3,1672319005),(86214,8,93010,3,1672319005),(86215,8,93011,3,1672319005),(86216,8,93012,3,1672319005),(86217,8,93013,3,1672319005),(86218,8,93014,3,1672319005),(86219,8,93016,3,1672319005),(86220,8,93017,3,1672319005),(86221,8,93018,3,1672319005),(86222,8,93019,3,1672319005),(86223,8,93024,3,1672319005),(86224,8,93025,3,1672319005),(86225,8,93028,3,1672319005),(86226,8,93029,3,1672319005),(86227,8,93030,3,1672319005),(86228,8,93031,3,1672319005),(86229,8,93032,3,1672319005),(86230,8,93033,3,1672319005),(86231,8,93034,3,1672319005),(86232,8,93035,3,1672319005),(86233,8,93036,3,1672319005),(86234,8,93037,3,1672319005),(86235,8,93038,3,1672319005),(86236,8,93039,3,1672319005),(86237,8,93040,3,1672319005),(86238,8,93041,3,1672319005),(86239,8,93042,3,1672319005),(86240,8,93043,3,1672319005),(86241,8,93044,3,1672319005),(86242,8,93045,3,1672319005),(86243,8,93046,3,1672319005),(86244,8,93047,3,1672319005),(86245,8,93048,3,1672319005),(86246,8,93049,3,1672319005),(86247,8,93050,3,1672319005),(86248,8,93051,3,1672319005),(86249,8,93052,3,1672319005),(86250,8,93053,3,1672319005),(86251,8,93054,3,1672319005),(86252,8,93055,3,1672319005),(86253,8,93056,3,1672319005),(86254,8,93057,3,1672319005),(86255,8,93058,3,1672319005),(86256,8,93059,3,1672319005),(86257,8,93060,3,1672319005),(86258,8,93061,3,1672319005),(86259,8,93062,3,1672319005),(86260,8,93063,3,1672319005),(86261,8,93064,3,1672319005),(86264,4,6439,3,1672319027),(86265,4,6444,3,1672319027),(86266,4,6449,3,1672319027),(86267,4,6454,3,1672319027),(86268,4,6459,3,1672319027),(86269,4,6464,3,1672319027),(86270,4,6469,3,1672319027),(86271,4,6474,3,1672319027),(86272,4,6479,3,1672319027),(86273,4,6484,3,1672319027),(86274,4,6489,3,1672319027),(86275,4,6494,3,1672319027),(86276,4,6499,3,1672319027),(86277,4,6504,3,1672319027),(86278,4,6509,3,1672319027),(86279,4,6514,3,1672319027),(86280,4,6519,3,1672319027),(86281,4,6524,3,1672319027),(86282,4,6529,3,1672319027),(86283,4,6534,3,1672319027),(86284,4,6539,3,1672319027),(86285,4,6544,3,1672319027),(86286,4,6549,3,1672319027),(86287,4,6609,3,1672319027),(86288,4,6614,3,1672319027),(86289,4,6619,3,1672319027),(86290,4,6624,3,1672319027),(86291,4,6629,3,1672319027),(86292,4,6634,3,1672319027),(86293,4,6639,3,1672319027),(86294,4,6644,3,1672319027),(86295,4,6649,3,1672319027),(86296,4,6654,3,1672319027),(86297,4,6659,3,1672319027),(86298,4,6664,3,1672319027),(86299,4,6754,3,1672319027),(86300,4,6759,3,1672319027),(86301,4,6764,3,1672319027),(86302,4,6769,3,1672319027),(86303,4,6774,3,1672319027),(86304,4,6779,3,1672319027),(86305,4,6784,3,1672319027),(86306,4,6789,3,1672319027),(86307,4,6794,3,1672319027),(86308,4,6799,3,1672319027),(86309,4,6804,3,1672319027),(86310,4,6809,3,1672319027),(86311,4,6814,3,1672319027),(86312,4,6819,3,1672319027),(86313,4,6824,3,1672319027),(86314,4,6829,3,1672319027),(86315,4,6834,3,1672319027),(86316,4,6839,3,1672319027),(86317,4,6844,3,1672319027),(86318,4,6849,3,1672319027),(86319,4,6854,3,1672319027),(86320,4,6859,3,1672319027),(86321,4,6864,3,1672319027),(86322,4,6924,3,1672319027),(86323,4,6929,3,1672319027),(86324,4,6934,3,1672319027),(86325,4,6939,3,1672319027),(86326,4,6944,3,1672319027),(86327,4,6949,3,1672319027),(86328,4,6954,3,1672319027),(86329,4,6959,3,1672319027),(86330,4,6964,3,1672319027),(86331,4,6969,3,1672319027),(86332,4,6974,3,1672319027),(86333,4,6979,3,1672319027),(86334,4,8507,3,1672319027),(86335,4,8512,3,1672319027),(86336,4,8517,3,1672319027),(86337,4,8522,3,1672319027),(86338,4,8527,3,1672319027),(86339,4,8532,3,1672319027),(86340,4,11054,3,1672319027),(86341,4,11055,3,1672319027),(86342,4,11057,3,1672319027),(86343,4,11061,3,1672319027),(86344,4,11062,3,1672319027),(86345,4,11064,3,1672319027),(86346,4,11068,3,1672319027),(86347,4,11069,3,1672319027),(86348,4,11071,3,1672319027),(86349,4,11075,3,1672319027),(86350,4,11076,3,1672319027),(86351,4,11078,3,1672319027),(86352,4,11082,3,1672319027),(86353,4,11083,3,1672319027),(86354,4,11085,3,1672319027),(86355,4,11089,3,1672319027),(86356,4,11090,3,1672319027),(86357,4,11092,3,1672319027),(86358,4,11096,3,1672319027),(86359,4,11097,3,1672319027),(86360,4,11099,3,1672319027),(86361,4,11103,3,1672319027),(86362,4,11104,3,1672319027),(86363,4,11106,3,1672319027),(86364,4,11110,3,1672319027),(86365,4,11111,3,1672319027),(86366,4,11113,3,1672319027),(86367,4,11117,3,1672319027),(86368,4,11118,3,1672319027),(86369,4,11120,3,1672319027),(86370,4,11124,3,1672319027),(86371,4,11125,3,1672319027),(86372,4,11127,3,1672319027),(86373,4,11131,3,1672319027),(86374,4,11132,3,1672319027),(86375,4,11134,3,1672319027),(86376,4,11138,3,1672319027),(86377,4,11139,3,1672319027),(86378,4,11141,3,1672319027),(86379,4,11145,3,1672319027),(86380,4,11146,3,1672319027),(86381,4,11148,3,1672319027),(86382,4,11152,3,1672319027),(86383,4,11153,3,1672319027),(86384,4,11155,3,1672319027),(86385,4,11159,3,1672319027),(86386,4,11160,3,1672319027),(86387,4,11162,3,1672319027),(86388,4,11166,3,1672319027),(86389,4,11167,3,1672319027),(86390,4,11169,3,1672319027),(86391,4,11173,3,1672319027),(86392,4,11174,3,1672319027),(86393,4,11176,3,1672319027),(86394,4,11180,3,1672319027),(86395,4,11181,3,1672319027),(86396,4,11182,3,1672319027),(86397,4,11187,3,1672319027),(86398,4,11188,3,1672319027),(86399,4,11189,3,1672319027),(86400,4,11194,3,1672319027),(86401,4,11195,3,1672319027),(86402,4,11196,3,1672319027),(86403,4,11201,3,1672319027),(86404,4,11202,3,1672319027),(86405,4,11203,3,1672319027),(86406,4,11208,3,1672319027),(86407,4,11209,3,1672319027),(86408,4,11210,3,1672319027),(86409,4,11215,3,1672319027),(86410,4,11216,3,1672319027),(86411,4,11217,3,1672319027),(86412,4,11222,3,1672319027),(86413,4,11223,3,1672319027),(86414,4,11224,3,1672319027),(86415,4,11229,3,1672319027),(86416,4,11230,3,1672319027),(86417,4,11231,3,1672319027),(86418,4,11236,3,1672319027),(86419,4,11237,3,1672319027),(86420,4,11238,3,1672319027),(86421,4,11243,3,1672319027),(86422,4,11244,3,1672319027),(86423,4,11245,3,1672319027),(86424,4,11250,3,1672319027),(86425,4,11255,3,1672319027),(86426,4,11260,3,1672319027),(86427,4,11265,3,1672319027),(86428,4,11270,3,1672319027),(86429,4,11275,3,1672319027),(86430,4,11280,3,1672319027),(86431,4,11285,3,1672319027),(86432,4,11290,3,1672319027),(86433,4,11291,3,1672319027),(86434,4,11296,3,1672319027),(86435,4,11297,3,1672319027),(86436,4,11302,3,1672319027),(86437,4,11303,3,1672319027),(86438,4,11308,3,1672319027),(86439,4,11309,3,1672319027),(86440,4,11314,3,1672319027),(86441,4,11315,3,1672319027),(86442,4,11320,3,1672319027),(86443,4,11321,3,1672319027),(86444,4,11326,3,1672319027),(86445,4,11327,3,1672319027),(86446,4,11783,3,1672319027),(86447,4,11785,3,1672319027),(86448,4,11786,3,1672319027),(86449,4,11787,3,1672319027),(86450,4,11789,3,1672319027),(86451,4,11791,3,1672319027),(86452,4,11793,3,1672319027),(86453,4,11794,3,1672319027),(86454,4,11795,3,1672319027),(86455,4,11796,3,1672319027),(86456,4,11797,3,1672319027),(86457,4,11798,3,1672319027),(86458,4,11799,3,1672319027),(86459,4,11800,3,1672319027),(86460,4,11801,3,1672319027),(86461,4,11802,3,1672319027),(86462,4,11803,3,1672319027),(86463,4,11804,3,1672319027),(86464,4,11805,3,1672319027),(86465,4,11806,3,1672319027),(86466,4,11808,3,1672319027),(86467,4,11810,3,1672319027),(86468,4,11812,3,1672319027),(86469,4,11814,3,1672319027),(86470,4,11816,3,1672319027),(86471,4,11817,3,1672319027),(86472,4,11818,3,1672319027),(86473,4,11819,3,1672319027),(86474,4,11820,3,1672319027),(86475,4,11821,3,1672319027),(86476,4,11822,3,1672319027),(86477,4,11823,3,1672319027),(86478,4,11824,3,1672319027),(86479,4,11825,3,1672319027),(86480,4,11826,3,1672319027),(86481,4,11827,3,1672319027),(86482,4,11828,3,1672319027),(86483,4,11829,3,1672319027),(86484,4,11830,3,1672319027),(86485,4,11831,3,1672319027),(86486,4,11832,3,1672319027),(86487,4,11833,3,1672319027),(86488,4,11834,3,1672319027),(86489,4,11835,3,1672319027),(86490,4,11836,3,1672319027),(86491,4,11837,3,1672319027),(86492,4,11838,3,1672319027),(86493,4,11839,3,1672319027),(86494,4,11840,3,1672319027),(86495,4,11841,3,1672319027),(86496,4,11842,3,1672319027),(86497,4,11843,3,1672319027),(86498,4,11844,3,1672319027),(86499,4,11845,3,1672319027),(86500,4,11846,3,1672319027),(86501,4,11847,3,1672319027),(86502,4,11848,3,1672319027),(86503,4,11850,3,1672319027),(86504,4,11852,3,1672319027),(86505,4,11854,3,1672319027),(86506,4,11856,3,1672319027),(86507,4,11857,3,1672319027),(86508,4,11858,3,1672319027),(86509,4,11859,3,1672319027),(86510,4,11860,3,1672319027),(86511,4,11861,3,1672319027),(86512,4,11862,3,1672319027),(86513,4,11863,3,1672319027),(86514,4,11864,3,1672319027),(86515,4,11865,3,1672319027),(86516,4,11866,3,1672319027),(86517,4,11867,3,1672319027),(86518,4,11868,3,1672319027),(86519,4,11869,3,1672319027),(86520,4,11870,3,1672319027),(86521,4,11871,3,1672319027),(86522,4,11872,3,1672319027),(86523,4,11873,3,1672319027),(86524,4,11874,3,1672319027),(86525,4,11875,3,1672319027),(86526,4,11876,3,1672319027),(86527,4,11877,3,1672319027),(86528,4,11878,3,1672319027),(86529,4,11879,3,1672319027),(86530,4,11880,3,1672319027),(86531,4,11881,3,1672319027),(86532,4,11882,3,1672319027),(86533,4,11883,3,1672319027),(86534,4,11884,3,1672319027),(86535,4,11885,3,1672319027),(86536,4,11886,3,1672319027),(86537,4,11887,3,1672319027),(86538,4,11888,3,1672319027),(86539,4,11889,3,1672319027),(86540,4,11890,3,1672319027),(86541,4,11891,3,1672319027),(86542,4,11892,3,1672319027),(86543,4,11893,3,1672319027),(86544,4,11894,3,1672319027),(86545,4,11895,3,1672319027),(86546,4,11896,3,1672319027),(86547,4,11897,3,1672319027),(86548,4,11898,3,1672319027),(86549,4,11899,3,1672319027),(86550,4,11900,3,1672319027),(86551,4,11901,3,1672319027),(86552,4,11902,3,1672319027),(86553,4,11903,3,1672319027),(86554,4,11904,3,1672319027),(86555,4,11905,3,1672319027),(86556,4,11906,3,1672319027),(86557,4,11907,3,1672319027),(86558,4,11908,3,1672319027),(86559,4,11909,3,1672319027),(86560,4,11910,3,1672319027),(86561,4,11911,3,1672319027),(86562,4,11912,3,1672319027),(86563,4,11913,3,1672319027),(86564,4,11914,3,1672319027),(86565,4,11915,3,1672319027),(86566,4,11916,3,1672319027),(86567,4,11917,3,1672319027),(86568,4,11918,3,1672319027),(86569,4,11919,3,1672319027),(86570,4,11920,3,1672319027),(86571,4,11921,3,1672319027),(86572,4,11922,3,1672319027),(86573,4,11923,3,1672319027),(86574,4,11924,3,1672319027),(86575,4,11925,3,1672319027),(86576,4,11926,3,1672319027),(86577,4,11927,3,1672319027),(86578,4,11928,3,1672319027),(86579,4,11929,3,1672319027),(86580,4,11930,3,1672319027),(86581,4,11931,3,1672319027),(86582,4,11932,3,1672319027),(86583,4,11933,3,1672319027),(86584,4,11934,3,1672319027),(86585,4,11935,3,1672319027),(86586,4,11936,3,1672319027),(86587,4,11937,3,1672319027),(86588,4,11938,3,1672319027),(86589,4,11939,3,1672319027),(86590,4,11940,3,1672319027),(86591,4,11941,3,1672319027),(86592,4,11942,3,1672319027),(86593,4,11943,3,1672319027),(86594,4,11944,3,1672319027),(86595,4,11945,3,1672319027),(86596,4,11946,3,1672319027),(86597,4,11947,3,1672319027),(86598,4,11948,3,1672319027),(86599,4,11949,3,1672319027),(86600,4,11950,3,1672319027),(86601,4,11951,3,1672319027),(86602,4,11952,3,1672319027),(86603,4,11953,3,1672319027),(86604,4,11954,3,1672319027),(86605,4,11955,3,1672319027),(86606,4,11956,3,1672319027),(86607,4,11957,3,1672319027),(86608,4,11958,3,1672319027),(86609,4,11959,3,1672319027),(86610,4,11960,3,1672319027),(86611,4,11961,3,1672319027),(86612,4,11962,3,1672319027),(86613,4,11963,3,1672319027),(86614,4,11964,3,1672319027),(86615,4,11965,3,1672319027),(86616,4,11966,3,1672319027),(86617,4,11967,3,1672319027),(86618,4,11968,3,1672319027),(86619,4,11969,3,1672319027),(86620,4,11970,3,1672319027),(86621,4,11971,3,1672319027),(86622,4,11972,3,1672319027),(86623,4,11973,3,1672319027),(86624,4,11974,3,1672319027),(86625,4,11975,3,1672319027),(86626,4,11976,3,1672319027),(86627,4,11977,3,1672319027),(86628,4,11978,3,1672319027),(86629,4,11979,3,1672319027),(86630,4,11980,3,1672319027),(86631,4,11981,3,1672319027),(86632,4,11982,3,1672319027),(86633,4,11983,3,1672319027),(86634,4,11984,3,1672319027),(86635,4,11985,3,1672319027),(86636,4,11986,3,1672319027),(86637,4,11987,3,1672319027),(86638,4,11988,3,1672319027),(86639,4,11989,3,1672319027),(86640,4,11990,3,1672319027),(86641,4,11991,3,1672319027),(86642,4,11992,3,1672319027),(86643,4,11993,3,1672319027),(86644,4,11994,3,1672319027),(86645,4,11995,3,1672319027),(86646,4,11996,3,1672319027),(86647,4,11997,3,1672319027),(86648,4,11998,3,1672319027),(86649,4,11999,3,1672319027),(86650,4,12000,3,1672319027),(86651,4,12001,3,1672319027),(86652,4,12002,3,1672319027),(86653,4,12003,3,1672319027),(86654,4,12004,3,1672319027),(86655,4,12005,3,1672319027),(86656,4,12006,3,1672319027),(86657,4,12007,3,1672319027),(86658,4,12008,3,1672319027),(86659,4,12009,3,1672319027),(86660,4,12010,3,1672319027),(86661,4,12011,3,1672319027),(86662,4,12012,3,1672319027),(86663,4,12013,3,1672319027),(86664,4,12014,3,1672319027),(86665,4,12015,3,1672319027),(86666,4,12016,3,1672319027),(86667,4,12017,3,1672319027),(86668,4,12018,3,1672319027),(86669,4,12019,3,1672319027),(86670,4,12020,3,1672319027),(86671,4,12021,3,1672319027),(86672,4,12022,3,1672319027),(86673,4,12023,3,1672319027),(86674,4,12024,3,1672319027),(86675,4,12025,3,1672319027),(86676,4,12026,3,1672319027),(86677,4,12027,3,1672319027),(86678,4,12028,3,1672319027),(86679,4,12029,3,1672319027),(86680,4,12030,3,1672319027),(86681,4,12032,3,1672319027),(86682,4,12040,3,1672319027),(86683,4,12042,3,1672319027),(86684,4,12043,3,1672319027),(86685,4,12045,3,1672319027),(86686,4,12046,3,1672319027),(86687,4,12048,3,1672319027),(86688,4,12049,3,1672319027),(86689,4,12050,3,1672319027),(86690,4,12051,3,1672319027),(86691,4,12052,3,1672319027),(86692,4,12053,3,1672319027),(86693,4,12054,3,1672319027),(86694,4,12055,3,1672319027),(86695,4,12057,3,1672319027),(86696,4,12058,3,1672319027),(86697,4,12059,3,1672319027),(86698,4,12060,3,1672319027),(86699,4,12061,3,1672319027),(86700,4,12062,3,1672319027),(86701,4,12063,3,1672319027),(86702,4,12064,3,1672319027),(86703,4,12065,3,1672319027),(86704,4,12066,3,1672319027),(86705,4,12067,3,1672319027),(86706,4,12068,3,1672319027),(86707,4,12069,3,1672319027),(86708,4,12070,3,1672319027),(86709,4,12071,3,1672319027),(86710,4,12072,3,1672319027),(86711,4,12073,3,1672319027),(86712,4,12074,3,1672319027),(86713,4,12075,3,1672319027),(86714,4,12076,3,1672319027),(86715,4,12077,3,1672319027),(86716,4,12078,3,1672319027),(86717,4,12079,3,1672319027),(86718,4,12080,3,1672319027),(86719,4,12081,3,1672319027),(86720,4,12082,3,1672319027),(86721,4,12083,3,1672319027),(86722,4,12084,3,1672319027),(86723,4,12085,3,1672319027),(86724,4,12086,3,1672319027),(86725,4,12087,3,1672319027),(86726,4,12088,3,1672319027),(86727,4,12089,3,1672319027),(86728,4,12090,3,1672319027),(86729,4,12091,3,1672319027),(86730,4,12092,3,1672319027),(86731,4,12093,3,1672319027),(86732,4,12094,3,1672319027),(86733,4,12095,3,1672319027),(86734,4,12096,3,1672319027),(86735,4,12097,3,1672319027),(86736,4,12098,3,1672319027),(86737,4,12099,3,1672319027),(86738,4,12100,3,1672319027),(86739,4,12101,3,1672319027),(86740,4,12102,3,1672319027),(86741,4,12103,3,1672319027),(86742,4,12104,3,1672319027),(86743,4,12105,3,1672319027),(86744,4,12106,3,1672319027),(86745,4,12107,3,1672319027),(86746,4,12108,3,1672319027),(86747,4,12109,3,1672319027),(86748,4,12110,3,1672319027),(86749,4,12111,3,1672319027),(86750,4,12112,3,1672319027),(86751,4,12113,3,1672319027),(86752,4,12114,3,1672319027),(86753,4,12115,3,1672319027),(86754,4,12116,3,1672319027),(86755,4,12117,3,1672319027),(86756,4,12118,3,1672319027),(86757,4,12119,3,1672319027),(86758,4,12120,3,1672319027),(86759,4,12121,3,1672319027),(86760,4,12122,3,1672319027),(86761,4,12123,3,1672319027),(86762,4,12124,3,1672319027),(86763,4,12125,3,1672319027),(86764,4,12126,3,1672319027),(86765,4,12127,3,1672319027),(86766,4,12128,3,1672319027),(86767,4,12129,3,1672319027),(86768,4,12130,3,1672319027),(86769,4,12131,3,1672319027),(86770,4,12132,3,1672319027),(86771,4,12133,3,1672319027),(86772,4,12134,3,1672319027),(86773,4,12135,3,1672319027),(86774,4,12136,3,1672319027),(86775,4,12137,3,1672319027),(86776,4,12138,3,1672319027),(86777,4,12139,3,1672319027),(86778,4,12140,3,1672319027),(86779,4,12141,3,1672319027),(86780,4,12142,3,1672319027),(86781,4,12143,3,1672319027),(86782,4,12144,3,1672319027),(86783,4,12145,3,1672319027),(86784,4,12146,3,1672319027),(86785,4,12147,3,1672319027),(86786,4,12148,3,1672319027),(86787,4,12149,3,1672319027),(86788,4,12150,3,1672319027),(86789,4,12151,3,1672319027),(86790,4,12152,3,1672319027),(86791,4,12153,3,1672319027),(86792,4,12154,3,1672319027),(86793,4,12155,3,1672319027),(86794,4,12156,3,1672319027),(86795,4,12157,3,1672319027),(86796,4,12158,3,1672319027),(86797,4,12159,3,1672319027),(86798,4,12160,3,1672319027),(86799,4,12161,3,1672319027),(86800,4,12162,3,1672319027),(86801,4,12163,3,1672319027),(86802,4,12164,3,1672319027),(86803,4,12165,3,1672319027),(86804,4,12166,3,1672319027),(86805,4,12167,3,1672319027),(86806,4,12168,3,1672319027),(86807,4,12169,3,1672319027),(86808,4,12170,3,1672319027),(86809,4,12171,3,1672319027),(86810,4,12172,3,1672319027),(86811,4,12173,3,1672319027),(86812,4,12174,3,1672319027),(86813,4,12175,3,1672319027),(86814,4,12176,3,1672319027),(86815,4,12177,3,1672319027),(86816,4,12178,3,1672319027),(86817,4,12179,3,1672319027),(86818,4,12180,3,1672319027),(86819,4,12181,3,1672319027),(86820,4,12182,3,1672319027),(86821,4,12183,3,1672319027),(86822,4,12184,3,1672319027),(86823,4,12185,3,1672319027),(86824,4,12186,3,1672319027),(86825,4,12187,3,1672319027),(86826,4,12188,3,1672319027),(86827,4,12189,3,1672319027),(86828,4,12190,3,1672319027),(86829,4,12191,3,1672319027),(86830,4,12192,3,1672319027),(86831,4,12193,3,1672319027),(86832,4,12194,3,1672319027),(86833,4,12195,3,1672319027),(86834,4,12196,3,1672319027),(86835,4,12197,3,1672319027),(86836,4,12198,3,1672319027),(86837,4,12200,3,1672319027),(86838,4,12201,3,1672319027),(86839,4,12202,3,1672319027),(86840,4,12203,3,1672319027),(86841,4,12204,3,1672319027),(86842,4,12205,3,1672319027),(86843,4,12206,3,1672319027),(86844,4,12207,3,1672319027),(86845,4,12208,3,1672319027),(86846,4,12209,3,1672319027),(86847,4,12210,3,1672319027),(86848,4,12211,3,1672319027),(86849,4,12212,3,1672319027),(86850,4,12213,3,1672319027),(86851,4,12214,3,1672319027),(86852,4,12215,3,1672319027),(86853,4,12216,3,1672319027),(86854,4,12217,3,1672319027),(86855,4,12218,3,1672319027),(86856,4,12219,3,1672319027),(86857,4,12220,3,1672319027),(86858,4,12221,3,1672319027),(86859,4,12222,3,1672319027),(86860,4,12223,3,1672319027),(86861,4,12224,3,1672319027),(86862,4,12225,3,1672319027),(86863,4,12226,3,1672319027),(86864,4,12227,3,1672319027),(86865,4,12228,3,1672319027),(86866,4,12229,3,1672319027),(86867,4,12230,3,1672319027),(86868,4,12231,3,1672319027),(86869,4,14962,3,1672319027),(86870,4,14963,3,1672319027),(86871,4,14964,3,1672319027),(86872,4,14965,3,1672319027),(86873,4,14966,3,1672319027),(86874,4,14967,3,1672319027),(86875,4,14968,3,1672319027),(86876,4,14969,3,1672319027),(86877,4,14970,3,1672319027),(86878,4,14971,3,1672319027),(86879,4,14972,3,1672319027),(86880,4,14973,3,1672319027),(86881,4,14974,3,1672319027),(86882,4,14975,3,1672319027),(86883,4,14976,3,1672319027),(86884,4,14977,3,1672319027),(86885,4,14978,3,1672319027),(86886,4,14979,3,1672319027),(86887,4,14980,3,1672319027),(86888,4,14981,3,1672319027),(86889,4,14982,3,1672319027),(86890,4,14983,3,1672319027),(86891,4,14984,3,1672319027),(86892,4,14989,3,1672319027),(86893,4,14990,3,1672319027),(86894,4,14991,3,1672319027),(86895,4,14992,3,1672319027),(86896,4,14993,3,1672319027),(86897,4,14994,3,1672319027),(86898,4,14995,3,1672319027),(86899,4,14996,3,1672319027),(86900,4,14997,3,1672319027),(86901,4,14998,3,1672319027),(86902,4,14999,3,1672319027),(86903,4,15000,3,1672319027),(86904,4,15001,3,1672319027),(86905,4,15002,3,1672319027),(86906,4,15003,3,1672319027),(86907,4,15004,3,1672319027),(86908,4,15005,3,1672319027),(86909,4,15006,3,1672319027),(86910,4,15007,3,1672319027),(86911,4,15008,3,1672319027),(86912,4,15009,3,1672319027),(86913,4,15010,3,1672319027),(86914,4,15011,3,1672319027),(86915,4,15012,3,1672319027),(86916,4,15013,3,1672319027),(86917,4,15014,3,1672319027),(86918,4,15015,3,1672319027),(86919,4,15016,3,1672319027),(86920,4,15017,3,1672319027),(86921,4,15018,3,1672319027),(86922,4,15019,3,1672319027),(86923,4,15020,3,1672319027),(86924,4,15021,3,1672319027),(86925,4,15022,3,1672319027),(86926,4,15023,3,1672319027),(86927,4,15024,3,1672319027),(86928,4,15025,3,1672319027),(86929,4,15026,3,1672319027),(86930,4,15027,3,1672319027),(86931,4,15028,3,1672319027),(86932,4,15029,3,1672319027),(86933,4,15030,3,1672319027),(86934,4,15031,3,1672319027),(86935,4,15032,3,1672319027),(86936,4,15033,3,1672319027),(86937,4,15034,3,1672319027),(86938,4,15035,3,1672319027),(86939,4,15036,3,1672319027),(86940,4,15037,3,1672319027),(86941,4,15038,3,1672319027),(86942,4,15039,3,1672319027),(86943,4,15040,3,1672319027),(86944,4,15041,3,1672319027),(86945,4,15042,3,1672319027),(86946,4,15043,3,1672319027),(86947,4,15044,3,1672319027),(86948,4,15045,3,1672319027),(86949,4,15046,3,1672319027),(86950,4,15047,3,1672319027),(86951,4,15048,3,1672319027),(86952,4,15049,3,1672319027),(86953,4,15050,3,1672319027),(86954,4,15051,3,1672319027),(86955,4,15052,3,1672319027),(86956,4,15053,3,1672319027),(86957,4,15054,3,1672319027),(86958,4,15055,3,1672319027),(86959,4,15056,3,1672319027),(86960,4,15057,3,1672319027),(86961,4,15058,3,1672319027),(86962,4,15059,3,1672319027),(86963,4,15060,3,1672319027),(86964,4,15061,3,1672319027),(86965,4,15062,3,1672319027),(86966,4,15063,3,1672319027),(86967,4,15064,3,1672319027),(86968,4,15065,3,1672319027),(86969,4,15066,3,1672319027),(86970,4,15067,3,1672319027),(86971,4,15068,3,1672319027),(86972,4,15069,3,1672319027),(86973,4,15070,3,1672319027),(86974,4,15071,3,1672319027),(86975,4,15072,3,1672319027),(86976,4,15073,3,1672319027),(86977,4,15074,3,1672319027),(86978,4,15075,3,1672319027),(86979,4,15076,3,1672319027),(86980,4,15077,3,1672319027),(86981,4,15078,3,1672319027),(86982,4,15079,3,1672319027),(86983,4,15080,3,1672319027),(86984,4,15081,3,1672319027),(86985,4,15082,3,1672319027),(86986,4,15083,3,1672319027),(86987,4,15084,3,1672319027),(86988,4,15085,3,1672319027),(86989,4,15086,3,1672319027),(86990,4,15087,3,1672319027),(86991,4,15088,3,1672319027),(86992,4,15089,3,1672319027),(86993,4,15090,3,1672319027),(86994,4,15091,3,1672319027),(86995,4,15092,3,1672319027),(86996,4,15093,3,1672319027),(86997,4,15094,3,1672319027),(86998,4,15095,3,1672319027),(86999,4,15096,3,1672319027),(87000,4,15097,3,1672319027),(87001,4,15098,3,1672319027),(87002,4,15099,3,1672319027),(87003,4,15100,3,1672319027),(87004,4,15101,3,1672319027),(87005,4,15102,3,1672319027),(87006,4,15103,3,1672319027),(87007,4,15104,3,1672319027),(87008,4,15105,3,1672319027),(87009,4,15106,3,1672319027),(87010,4,15107,3,1672319027),(87011,4,15108,3,1672319027),(87012,4,15109,3,1672319027),(87013,4,15110,3,1672319027),(87014,4,15111,3,1672319027),(87015,4,15112,3,1672319027),(87016,4,15113,3,1672319027),(87017,4,15114,3,1672319027),(87018,4,15115,3,1672319027),(87019,4,15116,3,1672319027),(87020,4,15117,3,1672319027),(87021,4,15118,3,1672319027),(87022,4,15119,3,1672319027),(87023,4,15120,3,1672319027),(87024,4,15121,3,1672319027),(87025,4,15122,3,1672319027),(87026,4,15123,3,1672319027),(87027,4,15124,3,1672319027),(87028,4,15125,3,1672319027),(87029,4,15126,3,1672319027),(87030,4,15127,3,1672319027),(87031,4,15128,3,1672319027),(87032,4,15129,3,1672319027),(87033,4,15130,3,1672319027),(87034,4,15131,3,1672319027),(87035,4,15132,3,1672319027),(87036,4,15133,3,1672319027),(87037,4,15134,3,1672319027),(87038,4,15135,3,1672319027),(87039,4,15136,3,1672319027),(87040,4,15137,3,1672319027),(87041,4,15138,3,1672319027),(87042,4,15139,3,1672319027),(87043,4,15140,3,1672319027),(87044,4,15141,3,1672319027),(87045,4,15142,3,1672319027),(87046,4,15143,3,1672319027),(87047,4,15144,3,1672319027),(87048,4,15145,3,1672319027),(87049,4,15146,3,1672319027),(87050,4,15147,3,1672319027),(87051,4,15148,3,1672319027),(87052,4,15149,3,1672319027),(87053,4,15150,3,1672319027),(87054,4,15151,3,1672319027),(87055,4,15152,3,1672319027),(87056,4,15153,3,1672319027),(87057,4,15154,3,1672319027),(87058,4,15155,3,1672319027),(87059,4,15156,3,1672319027),(87060,4,15157,3,1672319027),(87061,4,15158,3,1672319027),(87062,4,15159,3,1672319027),(87063,4,15160,3,1672319027),(87064,4,15161,3,1672319027),(87065,4,15162,3,1672319027),(87066,4,15163,3,1672319027),(87067,4,15164,3,1672319027),(87068,4,15165,3,1672319027),(87069,4,15166,3,1672319027),(87070,4,15167,3,1672319027),(87071,4,15168,3,1672319027),(87072,4,15169,3,1672319027),(87073,4,15170,3,1672319027),(87074,4,15171,3,1672319027),(87075,4,15172,3,1672319027),(87076,4,15173,3,1672319027),(87077,4,15174,3,1672319027),(87078,4,15175,3,1672319027),(87079,4,15176,3,1672319027),(87080,4,15177,3,1672319027),(87081,4,15178,3,1672319027),(87082,4,15179,3,1672319027),(87083,4,15180,3,1672319027),(87084,4,15181,3,1672319027),(87085,4,15182,3,1672319027),(87086,4,15183,3,1672319027),(87087,4,15184,3,1672319027),(87088,4,15185,3,1672319027),(87089,4,15186,3,1672319027),(87090,4,15187,3,1672319027),(87091,4,15188,3,1672319027),(87092,4,15189,3,1672319027),(87093,4,15190,3,1672319027),(87094,4,15191,3,1672319027),(87095,4,15192,3,1672319027),(87096,4,15193,3,1672319027),(87097,4,15194,3,1672319027),(87098,4,15195,3,1672319027),(87099,4,15196,3,1672319027),(87100,4,15197,3,1672319027),(87101,4,15198,3,1672319027),(87102,4,15199,3,1672319027),(87103,4,15200,3,1672319027),(87104,4,15201,3,1672319027),(87105,4,15202,3,1672319027),(87106,4,15203,3,1672319027),(87107,4,15204,3,1672319027),(87108,4,15205,3,1672319027),(87109,4,15206,3,1672319027),(87110,4,15207,3,1672319027),(87111,4,15208,3,1672319027),(87112,4,15209,3,1672319027),(87113,4,15210,3,1672319027),(87114,4,15211,3,1672319027),(87115,4,15212,3,1672319027),(87116,4,15213,3,1672319027),(87117,4,15214,3,1672319027),(87118,4,15215,3,1672319027),(87119,4,15216,3,1672319027),(87120,4,15217,3,1672319027),(87121,4,15218,3,1672319027),(87122,4,15219,3,1672319027),(87123,4,15220,3,1672319027),(87124,4,15221,3,1672319027),(87125,4,15222,3,1672319027),(87126,4,15223,3,1672319027),(87127,4,15224,3,1672319027),(87128,4,15225,3,1672319027),(87129,4,15226,3,1672319027),(87130,4,15227,3,1672319027),(87131,4,15228,3,1672319027),(87132,4,15229,3,1672319027),(87133,4,15230,3,1672319027),(87134,4,15231,3,1672319027),(87135,4,15232,3,1672319027),(87136,4,15233,3,1672319027),(87137,4,15234,3,1672319027),(87138,4,15235,3,1672319027),(87139,4,15236,3,1672319027),(87140,4,15237,3,1672319027),(87141,4,15238,3,1672319027),(87142,4,15239,3,1672319027),(87143,4,15240,3,1672319027),(87144,4,15241,3,1672319027),(87145,4,15242,3,1672319027),(87146,4,15243,3,1672319027),(87147,4,15244,3,1672319027),(87148,4,15245,3,1672319027),(87149,4,15246,3,1672319027),(87150,4,15247,3,1672319027),(87151,4,15248,3,1672319027),(87152,4,15249,3,1672319027),(87153,4,15250,3,1672319027),(87154,4,15251,3,1672319027),(87155,4,15252,3,1672319027),(87156,4,15253,3,1672319027),(87157,4,15254,3,1672319027),(87158,4,15255,3,1672319027),(87159,4,15256,3,1672319027),(87160,4,15257,3,1672319027),(87161,4,15258,3,1672319027),(87162,4,15259,3,1672319027),(87163,4,15260,3,1672319027),(87164,4,15261,3,1672319027),(87165,4,15262,3,1672319027),(87166,4,15263,3,1672319027),(87167,4,15264,3,1672319027),(87168,4,15265,3,1672319027),(87169,4,15266,3,1672319027),(87170,4,15267,3,1672319027),(87171,4,15268,3,1672319027),(87172,4,15269,3,1672319027),(87173,4,15270,3,1672319027),(87174,4,15271,3,1672319027),(87175,4,15272,3,1672319027),(87176,4,15273,3,1672319027),(87177,4,15274,3,1672319027),(87178,4,15275,3,1672319027),(87179,4,15276,3,1672319027),(87180,4,15277,3,1672319027),(87181,4,15278,3,1672319027),(87182,4,15279,3,1672319027),(87183,4,15280,3,1672319027),(87184,4,15281,3,1672319027),(87185,4,15282,3,1672319027),(87186,4,15283,3,1672319027),(87187,4,15284,3,1672319027),(87188,4,15285,3,1672319027),(87189,4,15286,3,1672319027),(87190,4,15287,3,1672319027),(87191,4,15288,3,1672319027),(87192,4,15289,3,1672319027),(87193,4,15290,3,1672319027),(87194,4,15291,3,1672319027),(87195,4,15292,3,1672319027),(87196,4,15293,3,1672319027),(87197,4,15294,3,1672319027),(87198,4,15295,3,1672319027),(87199,4,15296,3,1672319027),(87200,4,15297,3,1672319027),(87201,4,15298,3,1672319027),(87202,4,15299,3,1672319027),(87203,4,15300,3,1672319027),(87204,4,15301,3,1672319027),(87205,4,15302,3,1672319027),(87206,4,15303,3,1672319027),(87207,4,15304,3,1672319027),(87208,4,15305,3,1672319027),(87209,4,15306,3,1672319027),(87210,4,15307,3,1672319027),(87211,4,15308,3,1672319027),(87212,4,15309,3,1672319027),(87213,4,15310,3,1672319027),(87214,4,15311,3,1672319027),(87215,4,15312,3,1672319027),(87216,4,15313,3,1672319027),(87217,4,15314,3,1672319027),(87218,4,15315,3,1672319027),(87219,4,15316,3,1672319027),(87220,4,15317,3,1672319027),(87221,4,15318,3,1672319027),(87222,4,15319,3,1672319027),(87223,4,15320,3,1672319027),(87224,4,15321,3,1672319027),(87225,4,15322,3,1672319027),(87226,4,15323,3,1672319027),(87227,4,15324,3,1672319027),(87228,4,15325,3,1672319027),(87229,4,15326,3,1672319027),(87230,4,15327,3,1672319027),(87231,4,15328,3,1672319027),(87232,4,15329,3,1672319027),(87233,4,15330,3,1672319027),(87234,4,15331,3,1672319027),(87235,4,15332,3,1672319027),(87236,4,15333,3,1672319027),(87237,4,15334,3,1672319027),(87238,4,15335,3,1672319027),(87239,4,15336,3,1672319027),(87240,4,15337,3,1672319027),(87241,4,15338,3,1672319027),(87242,4,15339,3,1672319027),(87243,4,15340,3,1672319027),(87244,4,15341,3,1672319027),(87245,4,15342,3,1672319027),(87246,4,15343,3,1672319027),(87247,4,15344,3,1672319027),(87248,4,15345,3,1672319027),(87249,4,15346,3,1672319027),(87250,4,15347,3,1672319027),(87251,4,15348,3,1672319027),(87252,4,15349,3,1672319027),(87253,4,15350,3,1672319027),(87254,4,15351,3,1672319027),(87255,4,15352,3,1672319027),(87256,4,15353,3,1672319027),(87257,4,15354,3,1672319027),(87258,4,15355,3,1672319027),(87259,4,15356,3,1672319027),(87260,4,15357,3,1672319027),(87261,4,15358,3,1672319027),(87262,4,15359,3,1672319027),(87263,4,15360,3,1672319027),(87264,4,15361,3,1672319027),(87265,4,15362,3,1672319027),(87266,4,15363,3,1672319027),(87267,4,15364,3,1672319027),(87268,4,15365,3,1672319027),(87269,4,15366,3,1672319027),(87270,4,15367,3,1672319027),(87271,4,15368,3,1672319027),(87272,4,15369,3,1672319027),(87273,4,15370,3,1672319027),(87274,4,15371,3,1672319027),(87275,4,15372,3,1672319027),(87276,4,15373,3,1672319027),(87277,4,15374,3,1672319027),(87278,4,15375,3,1672319027),(87279,4,15376,3,1672319027),(87280,4,15377,3,1672319027),(87281,4,15378,3,1672319027),(87282,4,15379,3,1672319027),(87283,4,15380,3,1672319027),(87284,4,15381,3,1672319027),(87285,4,15382,3,1672319027),(87286,4,15383,3,1672319027),(87287,4,15384,3,1672319027),(87288,4,15385,3,1672319027),(87289,4,15386,3,1672319027),(87290,4,15387,3,1672319027),(87291,4,15388,3,1672319027),(87292,4,15389,3,1672319027),(87293,4,15390,3,1672319027),(87294,4,15391,3,1672319027),(87295,4,15392,3,1672319027),(87296,4,15393,3,1672319027),(87297,4,15394,3,1672319027),(87298,4,15395,3,1672319027),(87299,4,15396,3,1672319027),(87300,4,15397,3,1672319027),(87301,4,15398,3,1672319027),(87302,4,15399,3,1672319027),(87303,4,15400,3,1672319027),(87304,4,15401,3,1672319027),(87305,4,15402,3,1672319027),(87306,4,15403,3,1672319027),(87307,4,15404,3,1672319027),(87308,4,15405,3,1672319027),(87309,4,15406,3,1672319027),(87310,4,15407,3,1672319027),(87311,4,15408,3,1672319027),(87312,4,15409,3,1672319027),(87313,4,15410,3,1672319027),(87314,4,15411,3,1672319027),(87315,4,15412,3,1672319027),(87316,4,15413,3,1672319027),(87317,4,15414,3,1672319027),(87318,4,15415,3,1672319027),(87319,4,15416,3,1672319027),(87320,4,15417,3,1672319027),(87321,4,15418,3,1672319027),(87322,4,15419,3,1672319027),(87323,4,15420,3,1672319027),(87324,4,15421,3,1672319027),(87325,4,15422,3,1672319027),(87326,4,15423,3,1672319027),(87327,4,15424,3,1672319027),(87328,4,15425,3,1672319027),(87329,4,15426,3,1672319027),(87330,4,15427,3,1672319027),(87331,4,15428,3,1672319027),(87332,4,15429,3,1672319027),(87333,4,15430,3,1672319027),(87334,4,15431,3,1672319027),(87335,4,15432,3,1672319027),(87336,4,15433,3,1672319027),(87337,4,15434,3,1672319027),(87338,4,15435,3,1672319027),(87339,4,15436,3,1672319027),(87340,4,15437,3,1672319027),(87341,4,15438,3,1672319027),(87342,4,15439,3,1672319027),(87343,4,15440,3,1672319027),(87344,4,15441,3,1672319027),(87345,4,15442,3,1672319027),(87346,4,15443,3,1672319027),(87347,4,15444,3,1672319027),(87348,4,15445,3,1672319027),(87349,4,15446,3,1672319027),(87350,4,15447,3,1672319027),(87351,4,15448,3,1672319027),(87352,4,15449,3,1672319027),(87353,4,15450,3,1672319027),(87354,4,15451,3,1672319027),(87355,4,15452,3,1672319027),(87356,4,15453,3,1672319027),(87357,4,15454,3,1672319027),(87358,4,15455,3,1672319027),(87359,4,15456,3,1672319027),(87360,4,15457,3,1672319027),(87361,4,15458,3,1672319027),(87362,4,15459,3,1672319027),(87363,4,15460,3,1672319027),(87364,4,15461,3,1672319027),(87365,4,15462,3,1672319027),(87366,4,15463,3,1672319027),(87367,4,15464,3,1672319027),(87368,4,15465,3,1672319027),(87369,4,15466,3,1672319027),(87370,4,15467,3,1672319027),(87371,4,15468,3,1672319027),(87372,4,15469,3,1672319027),(87373,4,15470,3,1672319027),(87374,4,15471,3,1672319027),(87375,4,15472,3,1672319027),(87376,4,15473,3,1672319027),(87377,4,15474,3,1672319027),(87378,4,15475,3,1672319027),(87379,4,15476,3,1672319027),(87380,4,15477,3,1672319027),(87381,4,15478,3,1672319027),(87382,4,15479,3,1672319027),(87383,4,15480,3,1672319027),(87384,4,15481,3,1672319027),(87385,4,15482,3,1672319027),(87386,4,15483,3,1672319027),(87387,4,15484,3,1672319027),(87388,4,15485,3,1672319027),(87389,4,15486,3,1672319027),(87390,4,15487,3,1672319027),(87391,4,15488,3,1672319027),(87392,4,15489,3,1672319027),(87393,4,15490,3,1672319027),(87394,4,15491,3,1672319027),(87395,4,15492,3,1672319027),(87396,4,15493,3,1672319027),(87397,4,15494,3,1672319027),(87398,4,15495,3,1672319027),(87399,4,15496,3,1672319027),(87400,4,15497,3,1672319027),(87401,4,15498,3,1672319027),(87402,4,15499,3,1672319027),(87403,4,15500,3,1672319027),(87404,4,15501,3,1672319027),(87405,4,15502,3,1672319027),(87406,4,15503,3,1672319027),(87407,4,15504,3,1672319027),(87408,4,15505,3,1672319027),(87409,4,15506,3,1672319027),(87410,4,15507,3,1672319027),(87411,4,15508,3,1672319027),(87412,4,15509,3,1672319027),(87413,4,15510,3,1672319027),(87414,4,15511,3,1672319027),(87415,4,15512,3,1672319027),(87416,4,15513,3,1672319027),(87417,4,15514,3,1672319027),(87418,4,15515,3,1672319027),(87419,4,15516,3,1672319027),(87420,4,15517,3,1672319027),(87421,4,15518,3,1672319027),(87422,4,15519,3,1672319027),(87423,4,15520,3,1672319027),(87424,4,15521,3,1672319027),(87425,4,15522,3,1672319027),(87426,4,15523,3,1672319027),(87427,4,15524,3,1672319027),(87428,4,15525,3,1672319027),(87429,4,15526,3,1672319027),(87430,4,15527,3,1672319027),(87431,4,15528,3,1672319027),(87432,4,15529,3,1672319027),(87433,4,15530,3,1672319027),(87434,4,15531,3,1672319027),(87435,4,15532,3,1672319027),(87436,4,15533,3,1672319027),(87437,4,15534,3,1672319027),(87438,4,15535,3,1672319027),(87439,4,15536,3,1672319027),(87440,4,15537,3,1672319027),(87441,4,15538,3,1672319027),(87442,4,15539,3,1672319027),(87443,4,15540,3,1672319027),(87444,4,15541,3,1672319027),(87445,4,15542,3,1672319027),(87446,4,15543,3,1672319027),(87447,4,15544,3,1672319027),(87448,4,15545,3,1672319027),(87449,4,15546,3,1672319027),(87450,4,15547,3,1672319027),(87451,4,15548,3,1672319027),(87452,4,15549,3,1672319027),(87453,4,15550,3,1672319027),(87454,4,15551,3,1672319027),(87455,4,15552,3,1672319027),(87456,4,15553,3,1672319027),(87457,4,15554,3,1672319027),(87458,4,15555,3,1672319027),(87459,4,15556,3,1672319027),(87460,4,15557,3,1672319027),(87461,4,15558,3,1672319027),(87462,4,15559,3,1672319027),(87463,4,15560,3,1672319027),(87464,4,15561,3,1672319027),(87465,4,15562,3,1672319027),(87466,4,15563,3,1672319027),(87467,4,15564,3,1672319027),(87468,4,15565,3,1672319027),(87469,4,15566,3,1672319027),(87470,4,15567,3,1672319027),(87471,4,15568,3,1672319027),(87472,4,15569,3,1672319027),(87473,4,15570,3,1672319027),(87474,4,15571,3,1672319027),(87475,4,15572,3,1672319027),(87476,4,15573,3,1672319027),(87477,4,15574,3,1672319027),(87478,4,15575,3,1672319027),(87479,4,15576,3,1672319027),(87480,4,15577,3,1672319027),(87481,4,15578,3,1672319027),(87482,4,15579,3,1672319027),(87483,4,15580,3,1672319027),(87484,4,15581,3,1672319027),(87485,4,15582,3,1672319027),(87486,4,15583,3,1672319027),(87487,4,15584,3,1672319027),(87488,4,15585,3,1672319027),(87489,4,15586,3,1672319027),(87490,4,15587,3,1672319027),(87491,4,15588,3,1672319027),(87492,4,15589,3,1672319027),(87493,4,15590,3,1672319027),(87494,4,15591,3,1672319027),(87495,4,15592,3,1672319027),(87496,4,15593,3,1672319027),(87497,4,15594,3,1672319027),(87498,4,15595,3,1672319027),(87499,4,15596,3,1672319027),(87500,4,15597,3,1672319027),(87501,4,15598,3,1672319027),(87502,4,15599,3,1672319027),(87503,4,15600,3,1672319027),(87504,4,15601,3,1672319027),(87505,4,15602,3,1672319027),(87506,4,15603,3,1672319027),(87507,4,15604,3,1672319027),(87508,4,15605,3,1672319027),(87509,4,15606,3,1672319027),(87510,4,15607,3,1672319027),(87511,4,15608,3,1672319027),(87512,4,15609,3,1672319027),(87513,4,15610,3,1672319027),(87514,4,15611,3,1672319027),(87515,4,15628,3,1672319027),(87516,4,15629,3,1672319027),(87517,4,15630,3,1672319027),(87518,4,15631,3,1672319027),(87519,4,15632,3,1672319027),(87520,4,15633,3,1672319027),(87521,4,15634,3,1672319027),(87522,4,15635,3,1672319027),(87523,4,15636,3,1672319027),(87524,4,15639,3,1672319027),(87525,4,15641,3,1672319027),(87526,4,15642,3,1672319027),(87527,4,15643,3,1672319027),(87528,4,15656,3,1672319027),(87529,4,15657,3,1672319027),(87530,4,15658,3,1672319027),(87531,4,15659,3,1672319027),(87532,4,15660,3,1672319027),(87533,4,15661,3,1672319027),(87534,4,15662,3,1672319027),(87535,4,15665,3,1672319027),(87536,4,15666,3,1672319027),(87537,4,15667,3,1672319027),(87538,4,15668,3,1672319027),(87539,4,15669,3,1672319027),(87540,4,15670,3,1672319027),(87541,4,15671,3,1672319027),(87542,4,15672,3,1672319027),(87543,4,15673,3,1672319027),(87544,4,15674,3,1672319027),(87545,4,15675,3,1672319027),(87546,4,15676,3,1672319027),(87547,4,15677,3,1672319027),(87548,4,15678,3,1672319027),(87549,4,15679,3,1672319027),(87550,4,15680,3,1672319027),(87551,4,15681,3,1672319027),(87552,4,15682,3,1672319027),(87553,4,15683,3,1672319027),(87554,4,15684,3,1672319027),(87555,4,15685,3,1672319027),(87556,4,15686,3,1672319027),(87557,4,15687,3,1672319027),(87558,4,15688,3,1672319027),(87559,4,15689,3,1672319027),(87560,4,15690,3,1672319027),(87561,4,15691,3,1672319027),(87562,4,15692,3,1672319027),(87563,4,15693,3,1672319027),(87564,4,15694,3,1672319027),(87565,4,15695,3,1672319027),(87566,4,15696,3,1672319027),(87567,4,15697,3,1672319027),(87568,4,15698,3,1672319027),(87569,4,15699,3,1672319027),(87570,4,15700,3,1672319027),(87571,4,15701,3,1672319027),(87572,4,15702,3,1672319027),(87573,4,15703,3,1672319027),(87574,4,15704,3,1672319027),(87575,4,15705,3,1672319027),(87576,4,15706,3,1672319027),(87577,4,15707,3,1672319027),(87578,4,15708,3,1672319027),(87579,4,15709,3,1672319027),(87580,4,15710,3,1672319027),(87581,4,15711,3,1672319027),(87582,4,15712,3,1672319027),(87583,4,15713,3,1672319027),(87584,4,15714,3,1672319027),(87585,4,15715,3,1672319027),(87586,4,15716,3,1672319027),(87587,4,15717,3,1672319027),(87588,4,15718,3,1672319027),(87589,4,15719,3,1672319027),(87590,4,15720,3,1672319027),(87591,4,15721,3,1672319027),(87592,4,15722,3,1672319027),(87593,4,15723,3,1672319027),(87594,4,15724,3,1672319027),(87595,4,15725,3,1672319027),(87596,4,15726,3,1672319027),(87597,4,15727,3,1672319027),(87598,4,15728,3,1672319027),(87599,4,15729,3,1672319027),(87600,4,15730,3,1672319027),(87601,4,15731,3,1672319027),(87602,4,15732,3,1672319027),(87603,4,15733,3,1672319027),(87604,4,15734,3,1672319027),(87605,4,15735,3,1672319027),(87606,4,15736,3,1672319027),(87607,4,15737,3,1672319027),(87608,4,15738,3,1672319027),(87609,4,15739,3,1672319027),(87610,4,15740,3,1672319027),(87611,4,15741,3,1672319027),(87612,4,15742,3,1672319027),(87613,4,15743,3,1672319027),(87614,4,15744,3,1672319027),(87615,4,15745,3,1672319027),(87616,4,15746,3,1672319027),(87617,4,15747,3,1672319027),(87618,4,15748,3,1672319027),(87619,4,15749,3,1672319027),(87620,4,15750,3,1672319027),(87621,4,15751,3,1672319027),(87622,4,15752,3,1672319027),(87623,4,15753,3,1672319027),(87624,4,15754,3,1672319027),(87625,4,15755,3,1672319027),(87626,4,15756,3,1672319027),(87627,4,15757,3,1672319027),(87628,4,15758,3,1672319027),(87629,4,15759,3,1672319027),(87630,4,15760,3,1672319027),(87631,4,15761,3,1672319027),(87632,4,15762,3,1672319027),(87633,4,15763,3,1672319027),(87634,4,15764,3,1672319027),(87635,4,15765,3,1672319027),(87636,4,15766,3,1672319027),(87637,4,15767,3,1672319027),(87638,4,15768,3,1672319027),(87639,4,15769,3,1672319027),(87640,4,15770,3,1672319027),(87641,4,15771,3,1672319027),(87642,4,15772,3,1672319027),(87643,4,15773,3,1672319027),(87644,4,15774,3,1672319027),(87645,4,15775,3,1672319027),(87646,4,15776,3,1672319027),(87647,4,15777,3,1672319027),(87648,4,15778,3,1672319027),(87649,4,15779,3,1672319027),(87650,4,15780,3,1672319027),(87651,4,15781,3,1672319027),(87652,4,15782,3,1672319027),(87653,4,15783,3,1672319027),(87654,4,15784,3,1672319027),(87655,4,15785,3,1672319027),(87656,4,15786,3,1672319027),(87657,4,15787,3,1672319027),(87658,4,15788,3,1672319027),(87659,4,15789,3,1672319027),(87660,4,15790,3,1672319027),(87661,4,15791,3,1672319027),(87662,4,15792,3,1672319027),(87663,4,15793,3,1672319027),(87664,4,15794,3,1672319027),(87665,4,15795,3,1672319027),(87666,4,15796,3,1672319027),(87667,4,15797,3,1672319027),(87668,4,15798,3,1672319027),(87669,4,15799,3,1672319027),(87670,4,15800,3,1672319027),(87671,4,15801,3,1672319027),(87672,4,15802,3,1672319027),(87673,4,15803,3,1672319027),(87674,4,15804,3,1672319027),(87675,4,15805,3,1672319027),(87676,4,15806,3,1672319027),(87677,4,15807,3,1672319027),(87678,4,15808,3,1672319027),(87679,4,15809,3,1672319027),(87680,4,15810,3,1672319027),(87681,4,15811,3,1672319027),(87682,4,15812,3,1672319027),(87683,4,15813,3,1672319027),(87684,4,15814,3,1672319027),(87685,4,15815,3,1672319027),(87686,4,15816,3,1672319027),(87687,4,15817,3,1672319027),(87688,4,15818,3,1672319027),(87689,4,15819,3,1672319027),(87690,4,15820,3,1672319027),(87691,4,15821,3,1672319027),(87692,4,15822,3,1672319027),(87693,4,15823,3,1672319027),(87694,4,15824,3,1672319027),(87695,4,15825,3,1672319027),(87696,4,15826,3,1672319027),(87697,4,15827,3,1672319027),(87698,4,15828,3,1672319027),(87699,4,15829,3,1672319027),(87700,4,15830,3,1672319027),(87701,4,15831,3,1672319027),(87702,4,15832,3,1672319027),(87703,4,15833,3,1672319027),(87704,4,15834,3,1672319027),(87705,4,15835,3,1672319027),(87706,4,15836,3,1672319027),(87707,4,15837,3,1672319027),(87708,4,15838,3,1672319027),(87709,4,15839,3,1672319027),(87710,4,15840,3,1672319027),(87711,4,15841,3,1672319027),(87712,4,15842,3,1672319027),(87713,4,15843,3,1672319027),(87714,4,15844,3,1672319027),(87715,4,15845,3,1672319027),(87716,4,15846,3,1672319027),(87717,4,15847,3,1672319027),(87718,4,15848,3,1672319027),(87719,4,15849,3,1672319027),(87720,4,15850,3,1672319027),(87721,4,15851,3,1672319027),(87722,4,15852,3,1672319027),(87723,4,15853,3,1672319027),(87724,4,15854,3,1672319027),(87725,4,15855,3,1672319027),(87726,4,15856,3,1672319027),(87727,4,15857,3,1672319027),(87728,4,15858,3,1672319027),(87729,4,15859,3,1672319027),(87730,4,15860,3,1672319027),(87731,4,15861,3,1672319027),(87732,4,15862,3,1672319027),(87733,4,15863,3,1672319027),(87734,4,15864,3,1672319027),(87735,4,15865,3,1672319027),(87736,4,15866,3,1672319027),(87737,4,15867,3,1672319027),(87738,4,15868,3,1672319027),(87739,4,15869,3,1672319027),(87740,4,15870,3,1672319027),(87741,4,15871,3,1672319027),(87742,4,15872,3,1672319027),(87743,4,15873,3,1672319027),(87744,4,15874,3,1672319027),(87745,4,15875,3,1672319027),(87746,4,15876,3,1672319027),(87747,4,15877,3,1672319027),(87748,4,15878,3,1672319027),(87749,4,15879,3,1672319027),(87750,4,15880,3,1672319027),(87751,4,15881,3,1672319027),(87752,4,15882,3,1672319027),(87753,4,15883,3,1672319027),(87754,4,15884,3,1672319027),(87755,4,15885,3,1672319027),(87756,4,15886,3,1672319027),(87757,4,15887,3,1672319027),(87758,4,15888,3,1672319027),(87759,4,15889,3,1672319027),(87760,4,15890,3,1672319027),(87761,4,15891,3,1672319027),(87762,4,15892,3,1672319027),(87763,4,15893,3,1672319027),(87764,4,15894,3,1672319027),(87765,4,15895,3,1672319027),(87766,4,15896,3,1672319027),(87767,4,15897,3,1672319027),(87768,4,15898,3,1672319027),(87769,4,15899,3,1672319027),(87770,4,15900,3,1672319027),(87771,4,15901,3,1672319027),(87772,4,15902,3,1672319027),(87773,4,15903,3,1672319027),(87774,4,15904,3,1672319027),(87775,4,15905,3,1672319027),(87776,4,15906,3,1672319027),(87777,4,15907,3,1672319027),(87778,4,15908,3,1672319027),(87779,4,15909,3,1672319027),(87780,4,15910,3,1672319027),(87781,4,15911,3,1672319027),(87782,4,15912,3,1672319027),(87783,4,15913,3,1672319027),(87784,4,15914,3,1672319027),(87785,4,15915,3,1672319027),(87786,4,15916,3,1672319027),(87787,4,15917,3,1672319027),(87788,4,15918,3,1672319027),(87789,4,15919,3,1672319027),(87790,4,15920,3,1672319027),(87791,4,15921,3,1672319027),(87792,4,15922,3,1672319027),(87793,4,15923,3,1672319027),(87794,4,15924,3,1672319027),(87795,4,15925,3,1672319027),(87796,4,15926,3,1672319027),(87797,4,15927,3,1672319027),(87798,4,15928,3,1672319027),(87799,4,15929,3,1672319027),(87800,4,15930,3,1672319027),(87801,4,15931,3,1672319027),(87802,4,15932,3,1672319027),(87803,4,15933,3,1672319027),(87804,4,15934,3,1672319027),(87805,4,15935,3,1672319027),(87806,4,15936,3,1672319027),(87807,4,15937,3,1672319027),(87808,4,15938,3,1672319027),(87809,4,15939,3,1672319027),(87810,4,15940,3,1672319027),(87811,4,15941,3,1672319027),(87812,4,15942,3,1672319027),(87813,4,15943,3,1672319027),(87814,4,15944,3,1672319027),(87815,4,15945,3,1672319027),(87816,4,15946,3,1672319027),(87817,4,15947,3,1672319027),(87818,4,15948,3,1672319027),(87819,4,15949,3,1672319027),(87820,4,15950,3,1672319027),(87821,4,15951,3,1672319027),(87822,4,15952,3,1672319027),(87823,4,15953,3,1672319027),(87824,4,15954,3,1672319027),(87825,4,15955,3,1672319027),(87826,4,15956,3,1672319027),(87827,4,15957,3,1672319027),(87828,4,15958,3,1672319027),(87829,4,15959,3,1672319027),(87830,4,15960,3,1672319027),(87831,4,15961,3,1672319027),(87832,4,15962,3,1672319027),(87833,4,15963,3,1672319027),(87834,4,15964,3,1672319027),(87835,4,15965,3,1672319027),(87836,4,15966,3,1672319027),(87837,4,15967,3,1672319027),(87838,4,15968,3,1672319027),(87839,4,15969,3,1672319027),(87840,4,15970,3,1672319027),(87841,4,15971,3,1672319027),(87842,4,15972,3,1672319027),(87843,4,15973,3,1672319027),(87844,4,15974,3,1672319027),(87845,4,15975,3,1672319027),(87846,4,15976,3,1672319027),(87847,4,15977,3,1672319027),(87848,4,15978,3,1672319027),(87849,4,15979,3,1672319027),(87850,4,15980,3,1672319027),(87851,4,15981,3,1672319027),(87852,4,15982,3,1672319027),(87853,4,15983,3,1672319027),(87854,4,15984,3,1672319027),(87855,4,15985,3,1672319027),(87856,4,15986,3,1672319027),(87857,4,15987,3,1672319027),(87858,4,15988,3,1672319027),(87859,4,15989,3,1672319027),(87860,4,15990,3,1672319027),(87861,4,15991,3,1672319027),(87862,4,15992,3,1672319027),(87863,4,15993,3,1672319027),(87864,4,15994,3,1672319027),(87865,4,15995,3,1672319027),(87866,4,15996,3,1672319027),(87867,4,15997,3,1672319027),(87868,4,15998,3,1672319027),(87869,4,15999,3,1672319027),(87870,4,16000,3,1672319027),(87871,4,16001,3,1672319027),(87872,4,16002,3,1672319027),(87873,4,16003,3,1672319027),(87874,4,16004,3,1672319027),(87875,4,16005,3,1672319027),(87876,4,16006,3,1672319027),(87877,4,16007,3,1672319027),(87878,4,16008,3,1672319027),(87879,4,16009,3,1672319027),(87880,4,16010,3,1672319027),(87881,4,16011,3,1672319027),(87882,4,16012,3,1672319027),(87883,4,16013,3,1672319027),(87884,4,16014,3,1672319027),(87885,4,16015,3,1672319027),(87886,4,16016,3,1672319027),(87887,4,16017,3,1672319027),(87888,4,16018,3,1672319027),(87889,4,16019,3,1672319027),(87890,4,16020,3,1672319027),(87891,4,16021,3,1672319027),(87892,4,16022,3,1672319027),(87893,4,16023,3,1672319027),(87894,4,16024,3,1672319027),(87895,4,16025,3,1672319027),(87896,4,16026,3,1672319027),(87897,4,16027,3,1672319027),(87898,4,16028,3,1672319027),(87899,4,16029,3,1672319027),(87900,4,16030,3,1672319027),(87901,4,16031,3,1672319027),(87902,4,16032,3,1672319027),(87903,4,16033,3,1672319027),(87904,4,16034,3,1672319027),(87905,4,16035,3,1672319027),(87906,4,16036,3,1672319027),(87907,4,16037,3,1672319027),(87908,4,16038,3,1672319027),(87909,4,16039,3,1672319027),(87910,4,16040,3,1672319027),(87911,4,16041,3,1672319027),(87912,4,16042,3,1672319027),(87913,4,16043,3,1672319027),(87914,4,16044,3,1672319027),(87915,4,16045,3,1672319027),(87916,4,16046,3,1672319027),(87917,4,16047,3,1672319027),(87918,4,16048,3,1672319027),(87919,4,16049,3,1672319027),(87920,4,16050,3,1672319027),(87921,4,16051,3,1672319027),(87922,4,16052,3,1672319027),(87923,4,16053,3,1672319027),(87924,4,16054,3,1672319027),(87925,4,16055,3,1672319027),(87926,4,16056,3,1672319027),(87927,4,16057,3,1672319027),(87928,4,16058,3,1672319027),(87929,4,16059,3,1672319027),(87930,4,16060,3,1672319027),(87931,4,16061,3,1672319027),(87932,4,16062,3,1672319027),(87933,4,16063,3,1672319027),(87934,4,16064,3,1672319027),(87935,4,16065,3,1672319027),(87936,4,16066,3,1672319027),(87937,4,16067,3,1672319027),(87938,4,16068,3,1672319027),(87939,4,16069,3,1672319027),(87940,4,16070,3,1672319027),(87941,4,16071,3,1672319027),(87942,4,16072,3,1672319027),(87943,4,16073,3,1672319027),(87944,4,16074,3,1672319027),(87945,4,16075,3,1672319027),(87946,4,16076,3,1672319027),(87947,4,16077,3,1672319027),(87948,4,16078,3,1672319027),(87949,4,16079,3,1672319027),(87950,4,16080,3,1672319027),(87951,4,16081,3,1672319027),(87952,4,16082,3,1672319027),(87953,4,16083,3,1672319027),(87954,4,16084,3,1672319027),(87955,4,16085,3,1672319027),(87956,4,16086,3,1672319027),(87957,4,16087,3,1672319027),(87958,4,16088,3,1672319027),(87959,4,16089,3,1672319027),(87960,4,16090,3,1672319027),(87961,4,16091,3,1672319027),(87962,4,16092,3,1672319027),(87963,4,16093,3,1672319027),(87964,4,16094,3,1672319027),(87965,4,16095,3,1672319027),(87966,4,16096,3,1672319027),(87967,4,16097,3,1672319027),(87968,4,16098,3,1672319027),(87969,4,16099,3,1672319027),(87970,4,16100,3,1672319027),(87971,4,16101,3,1672319027),(87972,4,16102,3,1672319027),(87973,4,16103,3,1672319027),(87974,4,16104,3,1672319027),(87975,4,16105,3,1672319027),(87976,4,16106,3,1672319027),(87977,4,16107,3,1672319027),(87978,4,16108,3,1672319027),(87979,4,16109,3,1672319027),(87980,4,16110,3,1672319027),(87981,4,16111,3,1672319027),(87982,4,16112,3,1672319027),(87983,4,16113,3,1672319027),(87984,4,16114,3,1672319027),(87985,4,16115,3,1672319027),(87986,4,16116,3,1672319027),(87987,4,16117,3,1672319027),(87988,4,16118,3,1672319027),(87989,4,16119,3,1672319027),(87990,4,16120,3,1672319027),(87991,4,16121,3,1672319027),(87992,4,16122,3,1672319027),(87993,4,16123,3,1672319027),(87994,4,16124,3,1672319027),(87995,4,16125,3,1672319027),(87996,4,16126,3,1672319027),(87997,4,16127,3,1672319027),(87998,4,16128,3,1672319027),(87999,4,16129,3,1672319027),(88000,4,16130,3,1672319027),(88001,4,16131,3,1672319027),(88002,4,16132,3,1672319027),(88003,4,16133,3,1672319027),(88004,4,16134,3,1672319027),(88005,4,16135,3,1672319027),(88006,4,16136,3,1672319027),(88007,4,16137,3,1672319027),(88008,4,16138,3,1672319027),(88009,4,16139,3,1672319027),(88010,4,16140,3,1672319027),(88011,4,16141,3,1672319027),(88012,4,16142,3,1672319027),(88013,4,16143,3,1672319027),(88014,4,16144,3,1672319027),(88015,4,16145,3,1672319027),(88016,4,16146,3,1672319027),(88017,4,16147,3,1672319027),(88018,4,16148,3,1672319027),(88019,4,16149,3,1672319027),(88020,4,16150,3,1672319027),(88021,4,16151,3,1672319027),(88022,4,16152,3,1672319027),(88023,4,16153,3,1672319027),(88024,4,16154,3,1672319027),(88025,4,16155,3,1672319027),(88026,4,16156,3,1672319027),(88027,4,16157,3,1672319027),(88028,4,16158,3,1672319027),(88029,4,16159,3,1672319027),(88030,4,16160,3,1672319027),(88031,4,16161,3,1672319027),(88032,4,16162,3,1672319027),(88033,4,16163,3,1672319027),(88034,4,16164,3,1672319027),(88035,4,16165,3,1672319027),(88036,4,16166,3,1672319027),(88037,4,16167,3,1672319027),(88038,4,16168,3,1672319027),(88039,4,16169,3,1672319027),(88040,4,16170,3,1672319027),(88041,4,16171,3,1672319027),(88042,4,16172,3,1672319027),(88043,4,16173,3,1672319027),(88044,4,16174,3,1672319027),(88045,4,16175,3,1672319027),(88046,4,16176,3,1672319027),(88047,4,16177,3,1672319027),(88048,4,16178,3,1672319027),(88049,4,16179,3,1672319027),(88050,4,16180,3,1672319027),(88051,4,16181,3,1672319027),(88052,4,16182,3,1672319027),(88053,4,16183,3,1672319027),(88054,4,16184,3,1672319027),(88055,4,16185,3,1672319027),(88056,4,16186,3,1672319027),(88057,4,16187,3,1672319027),(88058,4,16188,3,1672319027),(88059,4,16189,3,1672319027),(88060,4,16190,3,1672319027),(88061,4,16191,3,1672319027),(88062,4,16192,3,1672319027),(88063,4,16193,3,1672319027),(88064,4,16194,3,1672319027),(88065,4,16195,3,1672319027),(88066,4,16196,3,1672319027),(88067,4,16197,3,1672319027),(88068,4,16198,3,1672319027),(88069,4,16199,3,1672319027),(88070,4,16200,3,1672319027),(88071,4,16201,3,1672319027),(88072,4,16202,3,1672319027),(88073,4,16203,3,1672319027),(88074,4,16204,3,1672319027),(88075,4,16205,3,1672319027),(88076,4,16206,3,1672319027),(88077,4,16207,3,1672319027),(88078,4,16208,3,1672319027),(88079,4,16209,3,1672319027),(88080,4,16210,3,1672319027),(88081,4,16211,3,1672319027),(88082,4,16212,3,1672319027),(88083,4,16213,3,1672319027),(88084,4,16214,3,1672319027),(88085,4,16215,3,1672319027),(88086,4,16216,3,1672319027),(88087,4,16217,3,1672319027),(88088,4,16218,3,1672319027),(88089,4,16219,3,1672319027),(88090,4,16220,3,1672319027),(88091,4,16221,3,1672319027),(88092,4,16222,3,1672319027),(88093,4,16223,3,1672319027),(88094,4,16224,3,1672319027),(88095,4,16225,3,1672319027),(88096,4,16226,3,1672319027),(88097,4,16227,3,1672319027),(88098,4,16228,3,1672319027),(88099,4,16229,3,1672319027),(88100,4,16230,3,1672319027),(88101,4,16231,3,1672319027),(88102,4,16232,3,1672319027),(88103,4,16233,3,1672319027),(88104,4,16234,3,1672319027),(88105,4,16235,3,1672319027),(88106,4,16236,3,1672319027),(88107,4,16237,3,1672319027),(88108,4,16238,3,1672319027),(88109,4,16239,3,1672319027),(88110,4,16240,3,1672319027),(88111,4,16241,3,1672319027),(88112,4,16242,3,1672319027),(88113,4,16243,3,1672319027),(88114,4,16244,3,1672319027),(88115,4,16245,3,1672319027),(88116,4,16246,3,1672319027),(88117,4,16247,3,1672319027),(88118,4,16248,3,1672319027),(88119,4,16249,3,1672319027),(88120,4,16250,3,1672319027),(88121,4,16251,3,1672319027),(88122,4,16252,3,1672319027),(88123,4,16253,3,1672319027),(88124,4,16254,3,1672319027),(88125,4,16255,3,1672319027),(88126,4,16256,3,1672319027),(88127,4,16257,3,1672319027),(88128,4,16258,3,1672319027),(88129,4,16259,3,1672319027),(88130,4,16260,3,1672319027),(88131,4,16261,3,1672319027),(88132,4,16262,3,1672319027),(88133,4,16263,3,1672319027),(88134,4,16264,3,1672319027),(88135,4,16265,3,1672319027),(88136,4,16266,3,1672319027),(88137,4,16267,3,1672319027),(88138,4,16268,3,1672319027),(88139,4,16269,3,1672319027),(88140,4,16270,3,1672319027),(88141,4,16271,3,1672319027),(88142,4,16272,3,1672319027),(88143,4,16273,3,1672319027),(88144,4,16274,3,1672319027),(88145,4,16275,3,1672319027),(88146,4,16276,3,1672319027),(88147,4,16277,3,1672319027),(88148,4,16278,3,1672319027),(88149,4,16279,3,1672319027),(88150,4,16280,3,1672319027),(88151,4,16281,3,1672319027),(88152,4,16282,3,1672319027),(88153,4,16283,3,1672319027),(88154,4,16284,3,1672319027),(88155,4,16285,3,1672319027),(88156,4,16286,3,1672319027),(88157,4,16287,3,1672319027),(88158,4,16288,3,1672319027),(88159,4,16289,3,1672319027),(88160,4,16290,3,1672319027),(88161,4,16291,3,1672319027),(88162,4,16292,3,1672319027),(88163,4,16293,3,1672319027),(88164,4,16294,3,1672319027),(88165,4,16295,3,1672319027),(88166,4,16296,3,1672319027),(88167,4,16297,3,1672319027),(88168,4,16298,3,1672319027),(88169,4,16299,3,1672319027),(88170,4,16300,3,1672319027),(88171,4,16301,3,1672319027),(88172,4,16302,3,1672319027),(88173,4,16303,3,1672319027),(88174,4,16304,3,1672319027),(88175,4,16305,3,1672319027),(88176,4,16306,3,1672319027),(88177,4,16307,3,1672319027),(88178,4,16308,3,1672319027),(88179,4,16309,3,1672319027),(88180,4,16310,3,1672319027),(88181,4,16311,3,1672319027),(88182,4,16312,3,1672319027),(88183,4,16313,3,1672319027),(88184,4,16314,3,1672319027),(88185,4,16315,3,1672319027),(88186,4,16316,3,1672319027),(88187,4,16317,3,1672319027),(88188,4,16318,3,1672319027),(88189,4,16319,3,1672319027),(88190,4,16320,3,1672319027),(88191,4,16321,3,1672319027),(88192,4,16322,3,1672319027),(88193,4,16323,3,1672319027),(88194,4,16324,3,1672319027),(88195,4,16325,3,1672319027),(88196,4,16326,3,1672319027),(88197,4,16327,3,1672319027),(88198,4,16328,3,1672319027),(88199,4,16329,3,1672319027),(88200,4,16330,3,1672319027),(88201,4,16331,3,1672319027),(88202,4,16332,3,1672319027),(88203,4,16333,3,1672319027),(88204,4,16334,3,1672319027),(88205,4,16335,3,1672319027),(88206,4,16336,3,1672319027),(88207,4,16337,3,1672319027),(88208,4,16338,3,1672319027),(88209,4,16339,3,1672319027),(88210,4,16340,3,1672319027),(88211,4,16341,3,1672319027),(88212,4,16342,3,1672319027),(88213,4,16343,3,1672319027),(88214,4,16344,3,1672319027),(88215,4,16345,3,1672319027),(88216,4,16346,3,1672319027),(88217,4,16347,3,1672319027),(88218,4,16348,3,1672319027),(88219,4,16349,3,1672319027),(88220,4,16350,3,1672319027),(88221,4,16351,3,1672319027),(88222,4,16352,3,1672319027),(88223,4,16353,3,1672319027),(88224,4,16354,3,1672319027),(88225,4,16355,3,1672319027),(88226,4,16356,3,1672319027),(88227,4,16357,3,1672319027),(88228,4,16358,3,1672319027),(88229,4,16359,3,1672319027),(88230,4,16360,3,1672319027),(88231,4,16361,3,1672319027),(88232,4,16362,3,1672319027),(88233,4,16363,3,1672319027),(88234,4,16364,3,1672319027),(88235,4,16365,3,1672319027),(88236,4,16366,3,1672319027),(88237,4,16367,3,1672319027),(88238,4,16368,3,1672319027),(88239,4,16369,3,1672319027),(88240,4,16370,3,1672319027),(88241,4,16371,3,1672319027),(88242,4,16372,3,1672319027),(88243,4,16373,3,1672319027),(88244,4,16374,3,1672319027),(88245,4,16375,3,1672319027),(88246,4,16380,3,1672319027),(88247,4,16381,3,1672319027),(88248,4,16382,3,1672319027),(88249,4,16383,3,1672319027),(88250,4,16384,3,1672319027),(88251,4,16385,3,1672319027),(88252,4,16386,3,1672319027),(88253,4,16387,3,1672319027),(88254,4,16388,3,1672319027),(88255,4,16389,3,1672319027),(88256,4,16390,3,1672319027),(88257,4,16391,3,1672319027),(88258,4,16392,3,1672319027),(88259,4,16393,3,1672319027),(88260,4,16394,3,1672319027),(88261,4,16395,3,1672319027),(88262,4,16396,3,1672319027),(88263,4,16397,3,1672319027),(88264,4,16398,3,1672319027),(88265,4,16399,3,1672319027),(88266,4,16400,3,1672319027),(88267,4,16401,3,1672319027),(88268,4,16402,3,1672319027),(88269,4,16403,3,1672319027),(88270,4,16404,3,1672319027),(88271,4,16405,3,1672319027),(88272,4,16406,3,1672319027),(88273,4,16407,3,1672319027),(88274,4,16408,3,1672319027),(88275,4,16409,3,1672319027),(88276,4,16410,3,1672319027),(88277,4,16411,3,1672319027),(88278,4,16412,3,1672319027),(88279,4,16413,3,1672319027),(88280,4,16414,3,1672319027),(88281,4,16415,3,1672319027),(88282,4,16416,3,1672319027),(88283,4,16417,3,1672319027),(88284,4,16418,3,1672319027),(88285,4,16419,3,1672319027),(88286,4,16420,3,1672319027),(88287,4,16421,3,1672319027),(88288,4,16422,3,1672319027),(88289,4,16423,3,1672319027),(88290,4,16424,3,1672319027),(88291,4,16425,3,1672319027),(88292,4,16426,3,1672319027),(88293,4,16427,3,1672319027),(88294,4,16428,3,1672319027),(88295,4,16429,3,1672319027),(88296,4,16430,3,1672319027),(88297,4,16431,3,1672319027),(88298,4,16432,3,1672319027),(88299,4,16433,3,1672319027),(88300,4,16434,3,1672319027),(88301,4,16435,3,1672319027),(88302,4,16436,3,1672319027),(88303,4,16437,3,1672319027),(88304,4,16438,3,1672319027),(88305,4,16439,3,1672319027),(88306,4,16440,3,1672319027),(88307,4,16441,3,1672319027),(88308,4,16442,3,1672319027),(88309,4,16443,3,1672319027),(88310,4,16444,3,1672319027),(88311,4,16445,3,1672319027),(88312,4,16446,3,1672319027),(88313,4,16447,3,1672319027),(88314,4,16448,3,1672319027),(88315,4,16449,3,1672319027),(88316,4,16450,3,1672319027),(88317,4,16451,3,1672319027),(88318,4,16452,3,1672319027),(88319,4,16453,3,1672319027),(88320,4,16454,3,1672319027),(88321,4,16455,3,1672319027),(88322,4,16456,3,1672319027),(88323,4,16457,3,1672319027),(88324,4,16458,3,1672319027),(88325,4,16459,3,1672319027),(88326,4,16460,3,1672319027),(88327,4,16461,3,1672319027),(88328,4,16462,3,1672319027),(88329,4,16463,3,1672319027),(88330,4,16464,3,1672319027),(88331,4,16465,3,1672319027),(88332,4,16466,3,1672319027),(88333,4,16467,3,1672319027),(88334,4,16468,3,1672319027),(88335,4,16469,3,1672319027),(88336,4,16470,3,1672319027),(88337,4,16471,3,1672319027),(88338,4,16472,3,1672319027),(88339,4,16473,3,1672319027),(88340,4,16474,3,1672319027),(88341,4,16475,3,1672319027),(88342,4,16476,3,1672319027),(88343,4,16477,3,1672319027),(88344,4,16478,3,1672319027),(88345,4,16479,3,1672319027),(88346,4,16480,3,1672319027),(88347,4,16481,3,1672319027),(88348,4,16482,3,1672319027),(88349,4,16483,3,1672319027),(88350,4,16484,3,1672319027),(88351,4,16485,3,1672319027),(88352,4,16486,3,1672319027),(88353,4,16487,3,1672319027),(88354,4,16488,3,1672319027),(88355,4,16489,3,1672319027),(88356,4,16490,3,1672319027),(88357,4,16491,3,1672319027),(88358,4,16492,3,1672319027),(88359,4,16493,3,1672319027),(88360,4,16494,3,1672319027),(88361,4,16495,3,1672319027),(88362,4,16496,3,1672319027),(88363,4,16497,3,1672319027),(88364,4,16498,3,1672319027),(88365,4,16499,3,1672319027),(88366,4,16500,3,1672319027),(88367,4,16501,3,1672319027),(88368,4,16502,3,1672319027),(88369,4,16503,3,1672319027),(88370,4,16504,3,1672319027),(88371,4,16505,3,1672319027),(88372,4,16506,3,1672319027),(88373,4,16507,3,1672319027),(88374,4,16508,3,1672319027),(88375,4,16509,3,1672319027),(88376,4,16510,3,1672319027),(88377,4,16511,3,1672319027),(88378,4,16512,3,1672319027),(88379,4,16513,3,1672319027),(88380,4,16514,3,1672319027),(88381,4,16515,3,1672319027),(88382,4,16516,3,1672319027),(88383,4,16517,3,1672319027),(88384,4,16518,3,1672319027),(88385,4,16519,3,1672319027),(88386,4,16520,3,1672319027),(88387,4,16521,3,1672319027),(88388,4,16522,3,1672319027),(88389,4,16523,3,1672319027),(88390,4,16524,3,1672319027),(88391,4,16525,3,1672319027),(88392,4,16526,3,1672319027),(88393,4,16527,3,1672319027),(88394,4,16528,3,1672319027),(88395,4,16529,3,1672319027),(88396,4,16530,3,1672319027),(88397,4,16531,3,1672319027),(88398,4,16532,3,1672319027),(88399,4,16533,3,1672319027),(88400,4,16534,3,1672319027),(88401,4,16535,3,1672319027),(88402,4,16536,3,1672319027),(88403,4,16537,3,1672319027),(88404,4,16538,3,1672319027),(88405,4,16539,3,1672319027),(88406,4,16540,3,1672319027),(88407,4,16541,3,1672319027),(88408,4,16542,3,1672319027),(88409,4,16543,3,1672319027),(88410,4,16544,3,1672319027),(88411,4,16545,3,1672319027),(88412,4,16546,3,1672319027),(88413,4,16547,3,1672319027),(88414,4,16548,3,1672319027),(88415,4,16549,3,1672319027),(88416,4,16550,3,1672319027),(88417,4,16551,3,1672319027),(88418,4,16552,3,1672319027),(88419,4,16553,3,1672319027),(88420,4,16554,3,1672319027),(88421,4,16555,3,1672319027),(88422,4,16556,3,1672319027),(88423,4,16557,3,1672319027),(88424,4,16558,3,1672319027),(88425,4,16559,3,1672319027),(88426,4,16560,3,1672319027),(88427,4,16561,3,1672319027),(88428,4,16562,3,1672319027),(88429,4,16563,3,1672319027),(88430,4,16564,3,1672319027),(88431,4,16565,3,1672319027),(88432,4,16566,3,1672319027),(88433,4,16567,3,1672319027),(88434,4,16568,3,1672319027),(88435,4,16569,3,1672319027),(88436,4,16570,3,1672319027),(88437,4,16571,3,1672319027),(88438,4,16572,3,1672319027),(88439,4,16573,3,1672319027),(88440,4,16574,3,1672319027),(88441,4,16575,3,1672319027),(88442,4,16576,3,1672319027),(88443,4,16577,3,1672319027),(88444,4,16578,3,1672319027),(88445,4,16579,3,1672319027),(88446,4,16580,3,1672319027),(88447,4,16581,3,1672319027),(88448,4,16582,3,1672319027),(88449,4,16583,3,1672319027),(88450,4,16584,3,1672319027),(88451,4,16585,3,1672319027),(88452,4,16586,3,1672319027),(88453,4,16587,3,1672319027),(88454,4,16588,3,1672319027),(88455,4,16589,3,1672319027),(88456,4,16590,3,1672319027),(88457,4,16591,3,1672319027),(88458,4,16592,3,1672319027),(88459,4,16593,3,1672319027),(88460,4,16594,3,1672319027),(88461,4,16595,3,1672319027),(88462,4,16596,3,1672319027),(88463,4,16597,3,1672319027),(88464,4,16598,3,1672319027),(88465,4,16599,3,1672319027),(88466,4,16600,3,1672319027),(88467,4,16601,3,1672319027),(88468,4,16602,3,1672319027),(88469,4,16603,3,1672319027),(88470,4,16604,3,1672319027),(88471,4,16605,3,1672319027),(88472,4,16606,3,1672319027),(88473,4,16607,3,1672319027),(88474,4,16608,3,1672319027),(88475,4,16609,3,1672319027),(88476,4,16610,3,1672319027),(88477,4,16611,3,1672319027),(88478,4,16612,3,1672319027),(88479,4,16613,3,1672319027),(88480,4,16614,3,1672319027),(88481,4,16615,3,1672319027),(88482,4,16616,3,1672319027),(88483,4,16617,3,1672319027),(88484,4,16618,3,1672319027),(88485,4,16619,3,1672319027),(88486,4,16620,3,1672319027),(88487,4,16621,3,1672319027),(88488,4,16622,3,1672319027),(88489,4,16623,3,1672319027),(88490,4,16624,3,1672319027),(88491,4,16625,3,1672319027),(88492,4,16626,3,1672319027),(88493,4,16627,3,1672319027),(88494,4,16628,3,1672319027),(88495,4,16629,3,1672319027),(88496,4,16657,3,1672319027),(88497,4,16660,3,1672319027),(88498,4,16661,3,1672319027),(88499,4,16662,3,1672319027),(88500,4,16663,3,1672319027),(88501,4,16664,3,1672319027),(88502,4,16665,3,1672319027),(88503,4,16666,3,1672319027),(88504,4,16667,3,1672319027),(88505,4,16669,3,1672319027),(88506,4,16670,3,1672319027),(88507,4,16671,3,1672319027),(88508,4,16672,3,1672319027),(88509,4,16673,3,1672319027),(88510,4,16674,3,1672319027),(88511,4,16675,3,1672319027),(88512,4,16676,3,1672319027),(88513,4,16677,3,1672319027),(88514,4,16678,3,1672319027),(88515,4,16679,3,1672319027),(88516,4,16686,3,1672319027),(88517,4,16687,3,1672319027),(88518,4,16688,3,1672319027),(88519,4,16689,3,1672319027),(88520,4,16690,3,1672319027),(88521,4,16691,3,1672319027),(88522,4,16692,3,1672319027),(88523,4,16693,3,1672319027),(88524,4,16694,3,1672319027),(88525,4,16695,3,1672319027),(88526,4,16696,3,1672319027),(88527,4,16697,3,1672319027),(88528,4,16698,3,1672319027),(88529,4,16699,3,1672319027),(88530,4,16700,3,1672319027),(88531,4,16701,3,1672319027),(88532,4,16702,3,1672319027),(88533,4,16703,3,1672319027),(88534,4,16704,3,1672319027),(88535,4,16705,3,1672319027),(88536,4,16706,3,1672319027),(88537,4,16707,3,1672319027),(88538,4,16708,3,1672319027),(88539,4,16709,3,1672319027),(88540,4,16710,3,1672319027),(88541,4,16711,3,1672319027),(88542,4,16712,3,1672319027),(88543,4,16713,3,1672319027),(88544,4,16714,3,1672319027),(88545,4,16715,3,1672319027),(88546,4,16716,3,1672319027),(88547,4,16717,3,1672319027),(88548,4,16718,3,1672319027),(88549,4,16719,3,1672319027),(88550,4,16720,3,1672319027),(88551,4,16721,3,1672319027),(88552,4,16722,3,1672319027),(88553,4,16723,3,1672319027),(88554,4,16724,3,1672319027),(88555,4,16725,3,1672319027),(88556,4,16726,3,1672319027),(88557,4,16727,3,1672319027),(88558,4,16728,3,1672319027),(88559,4,16729,3,1672319027),(88560,4,16730,3,1672319027),(88561,4,16731,3,1672319027),(88562,4,16732,3,1672319027),(88563,4,16733,3,1672319027),(88564,4,16734,3,1672319027),(88565,4,16735,3,1672319027),(88566,4,16736,3,1672319027),(88567,4,16737,3,1672319027),(88568,4,16738,3,1672319027),(88569,4,16739,3,1672319027),(88570,4,16740,3,1672319027),(88571,4,16741,3,1672319027),(88572,4,16742,3,1672319027),(88573,4,16743,3,1672319027),(88574,4,16744,3,1672319027),(88575,4,16745,3,1672319027),(88576,4,16746,3,1672319027),(88577,4,16747,3,1672319027),(88578,4,16748,3,1672319027),(88579,4,16749,3,1672319027),(88580,4,16750,3,1672319027),(88581,4,16751,3,1672319027),(88582,4,16752,3,1672319027),(88583,4,16753,3,1672319027),(88584,4,16754,3,1672319027),(88585,4,16755,3,1672319027),(88586,4,16756,3,1672319027),(88587,4,16757,3,1672319027),(88588,4,16758,3,1672319027),(88589,4,16759,3,1672319027),(88590,4,16760,3,1672319027),(88591,4,16761,3,1672319027),(88592,4,16762,3,1672319027),(88593,4,16763,3,1672319027),(88594,4,16764,3,1672319027),(88595,4,16765,3,1672319027),(88596,4,16766,3,1672319027),(88597,4,16767,3,1672319027),(88598,4,16768,3,1672319027),(88599,4,16769,3,1672319027),(88600,4,16770,3,1672319027),(88601,4,16771,3,1672319027),(88602,4,16772,3,1672319027),(88603,4,16773,3,1672319027),(88604,4,16774,3,1672319027),(88605,4,16775,3,1672319027),(88606,4,16776,3,1672319027),(88607,4,16777,3,1672319027),(88608,4,16778,3,1672319027),(88609,4,16779,3,1672319027),(88610,4,16780,3,1672319027),(88611,4,16792,3,1672319027),(88612,4,16793,3,1672319027),(88613,4,16795,3,1672319027),(88614,4,16799,3,1672319027),(88615,4,16800,3,1672319027),(88616,4,16801,3,1672319027),(88617,4,16802,3,1672319027),(88618,4,16803,3,1672319027),(88619,4,16804,3,1672319027),(88620,4,16805,3,1672319027),(88621,4,16806,3,1672319027),(88622,4,16807,3,1672319027),(88623,4,16808,3,1672319027),(88624,4,16809,3,1672319027),(88625,4,16810,3,1672319027),(88626,4,16811,3,1672319027),(88627,4,16812,3,1672319027),(88628,4,16813,3,1672319027),(88629,4,16814,3,1672319027),(88630,4,16815,3,1672319027),(88631,4,16816,3,1672319027),(88632,4,16817,3,1672319027),(88633,4,16818,3,1672319027),(88634,4,16819,3,1672319027),(88635,4,16820,3,1672319027),(88636,4,16821,3,1672319027),(88637,4,16822,3,1672319027),(88638,4,16823,3,1672319027),(88639,4,16824,3,1672319027),(88640,4,16825,3,1672319027),(88641,4,16826,3,1672319027),(88642,4,16827,3,1672319027),(88643,4,16828,3,1672319027),(88644,4,16829,3,1672319027),(88645,4,16830,3,1672319027),(88646,4,16831,3,1672319027),(88647,4,16832,3,1672319027),(88648,4,16833,3,1672319027),(88649,4,16834,3,1672319027),(88650,4,16835,3,1672319027),(88651,4,16836,3,1672319027),(88652,4,16837,3,1672319027),(88653,4,16838,3,1672319027),(88654,4,16843,3,1672319027),(88655,4,16844,3,1672319027),(88656,4,16845,3,1672319027),(88657,4,16846,3,1672319027),(88658,4,16847,3,1672319027),(88659,4,16848,3,1672319027),(88660,4,16849,3,1672319027),(88661,4,16850,3,1672319027),(88662,4,16851,3,1672319027),(88663,4,16852,3,1672319027),(88664,4,16853,3,1672319027),(88665,4,16854,3,1672319027),(88666,4,16855,3,1672319027),(88667,4,16856,3,1672319027),(88668,4,16857,3,1672319027),(88669,4,16858,3,1672319027),(88670,4,16859,3,1672319027),(88671,4,16860,3,1672319027),(88672,4,16861,3,1672319027),(88673,4,16862,3,1672319027),(88674,4,16863,3,1672319027),(88675,4,16864,3,1672319027),(88676,4,16865,3,1672319027),(88677,4,16866,3,1672319027),(88678,4,16867,3,1672319027),(88679,4,16868,3,1672319027),(88680,4,16869,3,1672319027),(88681,4,16870,3,1672319027),(88682,4,16871,3,1672319027),(88683,4,16872,3,1672319027),(88684,4,16873,3,1672319027),(88685,4,16874,3,1672319027),(88686,4,16875,3,1672319027),(88687,4,16876,3,1672319027),(88688,4,16877,3,1672319027),(88689,4,16878,3,1672319027),(88690,4,16879,3,1672319027),(88691,4,16880,3,1672319027),(88692,4,16881,3,1672319027),(88693,4,16882,3,1672319027),(88694,4,16883,3,1672319027),(88695,4,16884,3,1672319027),(88696,4,16885,3,1672319027),(88697,4,16886,3,1672319027),(88698,4,16887,3,1672319027),(88699,4,16888,3,1672319027),(88700,4,16889,3,1672319027),(88701,4,16890,3,1672319027),(88702,4,16891,3,1672319027),(88703,4,16892,3,1672319027),(88704,4,16893,3,1672319027),(88705,4,16894,3,1672319027),(88706,4,16895,3,1672319027),(88707,4,16896,3,1672319027),(88708,4,16897,3,1672319027),(88709,4,16898,3,1672319027),(88710,4,16899,3,1672319027),(88711,4,16900,3,1672319027),(88712,4,16901,3,1672319027),(88713,4,16902,3,1672319027),(88714,4,16903,3,1672319027),(88715,4,16904,3,1672319027),(88716,4,16905,3,1672319027),(88717,4,16906,3,1672319027),(88718,4,16907,3,1672319027),(88719,4,16908,3,1672319027),(88720,4,16909,3,1672319027),(88721,4,16910,3,1672319027),(88722,4,16911,3,1672319027),(88723,4,16912,3,1672319027),(88724,4,16913,3,1672319027),(88725,4,16914,3,1672319027),(88726,4,16915,3,1672319027),(88727,4,16916,3,1672319027),(88728,4,16917,3,1672319027),(88729,4,16918,3,1672319027),(88730,4,16919,3,1672319027),(88731,4,16920,3,1672319027),(88732,4,16921,3,1672319027),(88733,4,16922,3,1672319027),(88734,4,16923,3,1672319027),(88735,4,16924,3,1672319027),(88736,4,16925,3,1672319027),(88737,4,16926,3,1672319027),(88738,4,16927,3,1672319027),(88739,4,16928,3,1672319027),(88740,4,16929,3,1672319027),(88741,4,16930,3,1672319027),(88742,4,16931,3,1672319027),(88743,4,16932,3,1672319027),(88744,4,16933,3,1672319027),(88745,4,16934,3,1672319027),(88746,4,16935,3,1672319027),(88747,4,16936,3,1672319027),(88748,4,16937,3,1672319027),(88749,4,16938,3,1672319027),(88750,4,16939,3,1672319027),(88751,4,16940,3,1672319027),(88752,4,16941,3,1672319027),(88753,4,16942,3,1672319027),(88754,4,16943,3,1672319027),(88755,4,16944,3,1672319027),(88756,4,16945,3,1672319027),(88757,4,16946,3,1672319027),(88758,4,16947,3,1672319027),(88759,4,16948,3,1672319027),(88760,4,16949,3,1672319027),(88761,4,16950,3,1672319027),(88762,4,16951,3,1672319027),(88763,4,16952,3,1672319027),(88764,4,16953,3,1672319027),(88765,4,16954,3,1672319027),(88766,4,16955,3,1672319027),(88767,4,16956,3,1672319027),(88768,4,16957,3,1672319027),(88769,4,16958,3,1672319027),(88770,4,16959,3,1672319027),(88771,4,16960,3,1672319027),(88772,4,16961,3,1672319027),(88773,4,16962,3,1672319027),(88774,4,16963,3,1672319027),(88775,4,16964,3,1672319027),(88776,4,16965,3,1672319027),(88777,4,16966,3,1672319027),(88778,4,16967,3,1672319027),(88779,4,16968,3,1672319027),(88780,4,16969,3,1672319027),(88781,4,16970,3,1672319027),(88782,4,16971,3,1672319027),(88783,4,16972,3,1672319027),(88784,4,16973,3,1672319027),(88785,4,16974,3,1672319027),(88786,4,16975,3,1672319027),(88787,4,16976,3,1672319027),(88788,4,16977,3,1672319027),(88789,4,16978,3,1672319027),(88790,4,16979,3,1672319027),(88791,4,16980,3,1672319027),(88792,4,16981,3,1672319027),(88793,4,16982,3,1672319027),(88794,4,16983,3,1672319027),(88795,4,16984,3,1672319027),(88796,4,16985,3,1672319027),(88797,4,16986,3,1672319027),(88798,4,16987,3,1672319027),(88799,4,16988,3,1672319027),(88800,4,16989,3,1672319027),(88801,4,16990,3,1672319027),(88802,4,16991,3,1672319027),(88803,4,16992,3,1672319027),(88804,4,16993,3,1672319027),(88805,4,16994,3,1672319027),(88806,4,16995,3,1672319027),(88807,4,16996,3,1672319027),(88808,4,16997,3,1672319027),(88809,4,16998,3,1672319027),(88810,4,16999,3,1672319027),(88811,4,17000,3,1672319027),(88812,4,17001,3,1672319027),(88813,4,17002,3,1672319027),(88814,4,17003,3,1672319027),(88815,4,17004,3,1672319027),(88816,4,17005,3,1672319027),(88817,4,17006,3,1672319027),(88818,4,17007,3,1672319027),(88819,4,17008,3,1672319027),(88820,4,17009,3,1672319027),(88821,4,17010,3,1672319027),(88822,4,17011,3,1672319027),(88823,4,17012,3,1672319027),(88824,4,17013,3,1672319027),(88825,4,17014,3,1672319027),(88826,4,17015,3,1672319027),(88827,4,17016,3,1672319027),(88828,4,17017,3,1672319027),(88829,4,17018,3,1672319027),(88830,4,17019,3,1672319027),(88831,4,17020,3,1672319027),(88832,4,17021,3,1672319027),(88833,4,17022,3,1672319027),(88834,4,17023,3,1672319027),(88835,4,17024,3,1672319027),(88836,4,17025,3,1672319027),(88837,4,17026,3,1672319027),(88838,4,17027,3,1672319027),(88839,4,17028,3,1672319027),(88840,4,17029,3,1672319027),(88841,4,17030,3,1672319027),(88842,4,17031,3,1672319027),(88843,4,17032,3,1672319027),(88844,4,17033,3,1672319027),(88845,4,17034,3,1672319027),(88846,4,17035,3,1672319027),(88847,4,17036,3,1672319027),(88848,4,17037,3,1672319027),(88849,4,17038,3,1672319027),(88850,4,17039,3,1672319027),(88851,4,17040,3,1672319027),(88852,4,17041,3,1672319027),(88853,4,17042,3,1672319027),(88854,4,17043,3,1672319027),(88855,4,17044,3,1672319027),(88856,4,17045,3,1672319027),(88857,4,17046,3,1672319027),(88858,4,17047,3,1672319027),(88859,4,17048,3,1672319027),(88860,4,17049,3,1672319027),(88861,4,17050,3,1672319027),(88862,4,17051,3,1672319027),(88863,4,17052,3,1672319027),(88864,4,17053,3,1672319027),(88865,4,17054,3,1672319027),(88866,4,17055,3,1672319027),(88867,4,17056,3,1672319027),(88868,4,17057,3,1672319027),(88869,4,17058,3,1672319027),(88870,4,17059,3,1672319027),(88871,4,17060,3,1672319027),(88872,4,17061,3,1672319027),(88873,4,17062,3,1672319027),(88874,4,17063,3,1672319027),(88875,4,17064,3,1672319027),(88876,4,17065,3,1672319027),(88877,4,17066,3,1672319027),(88878,4,17067,3,1672319027),(88879,4,17068,3,1672319027),(88880,4,17069,3,1672319027),(88881,4,17070,3,1672319027),(88882,4,17071,3,1672319027),(88883,4,17072,3,1672319027),(88884,4,17073,3,1672319027),(88885,4,17074,3,1672319027),(88886,4,17075,3,1672319027),(88887,4,17076,3,1672319027),(88888,4,17077,3,1672319027),(88889,4,17078,3,1672319027),(88890,4,17079,3,1672319027),(88891,4,17080,3,1672319027),(88892,4,17081,3,1672319027),(88893,4,17082,3,1672319027),(88894,4,17083,3,1672319027),(88895,4,17084,3,1672319027),(88896,4,17085,3,1672319027),(88897,4,17086,3,1672319027),(88898,4,17087,3,1672319027),(88899,4,17088,3,1672319027),(88900,4,17089,3,1672319027),(88901,4,17090,3,1672319027),(88902,4,17091,3,1672319027),(88903,4,17092,3,1672319027),(88904,4,17093,3,1672319027),(88905,4,17094,3,1672319027),(88906,4,17095,3,1672319027),(88907,4,17096,3,1672319027),(88908,4,17097,3,1672319027),(88909,4,17098,3,1672319027),(88910,4,17099,3,1672319027),(88911,4,17100,3,1672319027),(88912,4,17101,3,1672319027),(88913,4,17102,3,1672319027),(88914,4,17103,3,1672319027),(88915,4,17104,3,1672319027),(88916,4,17105,3,1672319027),(88917,4,17106,3,1672319027),(88918,4,17107,3,1672319027),(88919,4,17108,3,1672319027),(88920,4,17109,3,1672319027),(88921,4,17110,3,1672319027),(88922,4,17111,3,1672319027),(88923,4,17112,3,1672319027),(88924,4,17113,3,1672319027),(88925,4,17114,3,1672319027),(88926,4,17115,3,1672319027),(88927,4,17116,3,1672319027),(88928,4,17117,3,1672319027),(88929,4,17118,3,1672319027),(88930,4,17119,3,1672319027),(88931,4,17120,3,1672319027),(88932,4,17121,3,1672319027),(88933,4,17122,3,1672319027),(88934,4,17123,3,1672319027),(88935,4,17124,3,1672319027),(88936,4,17125,3,1672319027),(88937,4,17126,3,1672319027),(88938,4,17127,3,1672319027),(88939,4,17128,3,1672319027),(88940,4,17129,3,1672319027),(88941,4,17130,3,1672319027),(88942,4,17131,3,1672319027),(88943,4,17132,3,1672319027),(88944,4,17133,3,1672319027),(88945,4,17134,3,1672319027),(88946,4,17135,3,1672319027),(88947,4,17136,3,1672319027),(88948,4,17137,3,1672319027),(88949,4,17138,3,1672319027),(88950,4,17139,3,1672319027),(88951,4,17140,3,1672319027),(88952,4,17141,3,1672319027),(88953,4,17142,3,1672319027),(88954,4,17143,3,1672319027),(88955,4,17144,3,1672319027),(88956,4,17145,3,1672319027),(88957,4,17146,3,1672319027),(88958,4,17147,3,1672319027),(88959,4,17148,3,1672319027),(88960,4,17149,3,1672319027),(88961,4,17150,3,1672319027),(88962,4,17151,3,1672319027),(88963,4,17152,3,1672319027),(88964,4,17153,3,1672319027),(88965,4,17154,3,1672319027),(88966,4,17155,3,1672319027),(88967,4,17156,3,1672319027),(88968,4,17157,3,1672319027),(88969,4,17158,3,1672319027),(88970,4,17159,3,1672319027),(88971,4,17160,3,1672319027),(88972,4,17161,3,1672319027),(88973,4,17162,3,1672319027),(88974,4,17163,3,1672319027),(88975,4,17164,3,1672319027),(88976,4,17165,3,1672319027),(88977,4,17166,3,1672319027),(88978,4,17167,3,1672319027),(88979,4,17168,3,1672319027),(88980,4,17169,3,1672319027),(88981,4,17170,3,1672319027),(88982,4,17171,3,1672319027),(88983,4,17172,3,1672319027),(88984,4,17173,3,1672319027),(88985,4,17174,3,1672319027),(88986,4,17175,3,1672319027),(88987,4,17176,3,1672319027),(88988,4,17177,3,1672319027),(88989,4,17178,3,1672319027),(88990,4,17179,3,1672319027),(88991,4,17180,3,1672319027),(88992,4,17181,3,1672319027),(88993,4,17182,3,1672319027),(88994,4,17183,3,1672319027),(88995,4,17184,3,1672319027),(88996,4,17185,3,1672319027),(88997,4,17186,3,1672319027),(88998,4,17187,3,1672319027),(88999,4,17188,3,1672319027),(89000,4,17189,3,1672319027),(89001,4,17190,3,1672319027),(89002,4,17191,3,1672319027),(89003,4,17192,3,1672319027),(89004,4,17193,3,1672319027),(89005,4,17194,3,1672319027),(89006,4,17195,3,1672319027),(89007,4,17196,3,1672319027),(89008,4,17197,3,1672319027),(89009,4,17198,3,1672319027),(89010,4,17199,3,1672319027),(89011,4,17200,3,1672319027),(89012,4,17201,3,1672319027),(89013,4,17202,3,1672319027),(89014,4,17203,3,1672319027),(89015,4,17204,3,1672319027),(89016,4,17205,3,1672319027),(89017,4,17206,3,1672319027),(89018,4,17207,3,1672319027),(89019,4,17208,3,1672319027),(89020,4,17209,3,1672319027),(89021,4,17210,3,1672319027),(89022,4,17211,3,1672319027),(89023,4,17212,3,1672319027),(89024,4,17213,3,1672319027),(89025,4,17214,3,1672319027),(89026,4,17215,3,1672319027),(89027,4,17216,3,1672319027),(89028,4,17217,3,1672319027),(89029,4,17218,3,1672319027),(89030,4,17219,3,1672319027),(89031,4,17220,3,1672319027),(89032,4,17221,3,1672319027),(89033,4,17222,3,1672319027),(89034,4,17223,3,1672319027),(89035,4,17224,3,1672319027),(89036,4,17225,3,1672319027),(89037,4,17226,3,1672319027),(89038,4,17227,3,1672319027),(89039,4,17228,3,1672319027),(89040,4,17229,3,1672319027),(89041,4,17230,3,1672319027),(89042,4,17231,3,1672319027),(89043,4,17232,3,1672319027),(89044,4,17233,3,1672319027),(89045,4,17234,3,1672319027),(89046,4,17235,3,1672319027),(89047,4,17236,3,1672319027),(89048,4,17237,3,1672319027),(89049,4,17238,3,1672319027),(89050,4,17239,3,1672319027),(89051,4,17240,3,1672319027),(89052,4,17241,3,1672319027),(89053,4,17242,3,1672319027),(89054,4,17243,3,1672319027),(89055,4,17244,3,1672319027),(89056,4,17245,3,1672319027),(89057,4,17246,3,1672319027),(89058,4,17247,3,1672319027),(89059,4,17248,3,1672319027),(89060,4,17249,3,1672319027),(89061,4,17250,3,1672319027),(89062,4,17251,3,1672319027),(89063,4,17252,3,1672319027),(89064,4,17253,3,1672319027),(89065,4,17254,3,1672319027),(89066,4,17255,3,1672319027),(89067,4,17256,3,1672319027),(89068,4,17257,3,1672319027),(89069,4,17258,3,1672319027),(89070,4,17259,3,1672319027),(89071,4,17260,3,1672319027),(89072,4,17261,3,1672319027),(89073,4,17262,3,1672319027),(89074,4,17263,3,1672319027),(89075,4,17264,3,1672319027),(89076,4,17265,3,1672319027),(89077,4,17266,3,1672319027),(89078,4,17267,3,1672319027),(89079,4,17268,3,1672319027),(89080,4,17269,3,1672319027),(89081,4,17270,3,1672319027),(89082,4,17271,3,1672319027),(89083,4,17272,3,1672319027),(89084,4,17273,3,1672319027),(89085,4,17274,3,1672319027),(89086,4,17275,3,1672319027),(89087,4,17276,3,1672319027),(89088,4,17277,3,1672319027),(89089,4,17278,3,1672319027),(89090,4,17279,3,1672319027),(89091,4,17280,3,1672319027),(89092,4,17281,3,1672319027),(89093,4,17282,3,1672319027),(89094,4,17283,3,1672319027),(89095,4,17284,3,1672319027),(89096,4,17285,3,1672319027),(89097,4,17286,3,1672319027),(89098,4,17287,3,1672319027),(89099,4,17288,3,1672319027),(89100,4,17289,3,1672319027),(89101,4,17290,3,1672319027),(89102,4,17291,3,1672319027),(89103,4,17292,3,1672319027),(89104,4,17293,3,1672319027),(89105,4,17294,3,1672319027),(89106,4,17295,3,1672319027),(89107,4,17296,3,1672319027),(89108,4,17297,3,1672319027),(89109,4,17298,3,1672319027),(89110,4,17299,3,1672319027),(89111,4,17300,3,1672319027),(89112,4,17301,3,1672319027),(89113,4,17302,3,1672319027),(89114,4,17303,3,1672319027),(89115,4,17304,3,1672319027),(89116,4,17305,3,1672319027),(89117,4,17306,3,1672319027),(89118,4,17307,3,1672319027),(89119,4,17308,3,1672319027),(89120,4,17309,3,1672319027),(89121,4,17310,3,1672319027),(89122,4,17311,3,1672319027),(89123,4,17312,3,1672319027),(89124,4,17313,3,1672319027),(89125,4,17314,3,1672319027),(89126,4,17315,3,1672319027),(89127,4,17316,3,1672319027),(89128,4,17317,3,1672319027),(89129,4,17318,3,1672319027),(89130,4,17319,3,1672319027),(89131,4,17320,3,1672319027),(89132,4,17321,3,1672319027),(89133,4,17322,3,1672319027),(89134,4,17323,3,1672319027),(89135,4,17324,3,1672319027),(89136,4,17325,3,1672319027),(89137,4,17326,3,1672319027),(89138,4,17327,3,1672319027),(89139,4,17328,3,1672319027),(89140,4,17329,3,1672319027),(89141,4,17330,3,1672319027),(89142,4,17331,3,1672319027),(89143,4,17332,3,1672319027),(89144,4,17333,3,1672319027),(89145,4,17334,3,1672319027),(89146,4,17335,3,1672319027),(89147,4,17336,3,1672319027),(89148,4,17337,3,1672319027),(89149,4,17338,3,1672319027),(89150,4,17339,3,1672319027),(89151,4,17340,3,1672319027),(89152,4,17341,3,1672319027),(89153,4,17342,3,1672319027),(89154,4,17343,3,1672319027),(89155,4,17344,3,1672319027),(89156,4,17345,3,1672319027),(89157,4,17346,3,1672319027),(89158,4,17347,3,1672319027),(89159,4,17348,3,1672319027),(89160,4,17349,3,1672319027),(89161,4,17350,3,1672319027),(89162,4,17351,3,1672319027),(89163,4,17352,3,1672319027),(89164,4,17353,3,1672319027),(89165,4,17354,3,1672319027),(89166,4,17355,3,1672319027),(89167,4,17356,3,1672319027),(89168,4,17357,3,1672319027),(89169,4,17358,3,1672319027),(89170,4,17359,3,1672319027),(89171,4,17360,3,1672319027),(89172,4,17361,3,1672319027),(89173,4,17362,3,1672319027),(89174,4,17363,3,1672319027),(89175,4,17364,3,1672319027),(89176,4,17365,3,1672319027),(89177,4,17366,3,1672319027),(89178,4,17367,3,1672319027),(89179,4,17368,3,1672319027),(89180,4,17369,3,1672319027),(89181,4,17370,3,1672319027),(89182,4,17371,3,1672319027),(89183,4,17372,3,1672319027),(89184,4,17373,3,1672319027),(89185,4,17374,3,1672319027),(89186,4,17375,3,1672319027),(89187,4,17376,3,1672319027),(89188,4,17377,3,1672319027),(89189,4,17378,3,1672319027),(89190,4,17379,3,1672319027),(89191,4,17380,3,1672319027),(89192,4,17381,3,1672319027),(89193,4,17382,3,1672319027),(89194,4,17383,3,1672319027),(89195,4,17384,3,1672319027),(89196,4,17385,3,1672319027),(89197,4,17386,3,1672319027),(89198,4,17387,3,1672319027),(89199,4,17388,3,1672319027),(89200,4,17389,3,1672319027),(89201,4,17390,3,1672319027),(89202,4,17391,3,1672319027),(89203,4,17392,3,1672319027),(89204,4,17393,3,1672319027),(89205,4,17394,3,1672319027),(89206,4,17395,3,1672319027),(89207,4,17396,3,1672319027),(89208,4,17397,3,1672319027),(89209,4,17398,3,1672319027),(89210,4,17399,3,1672319027),(89211,4,17400,3,1672319027),(89212,4,17401,3,1672319027),(89213,4,17402,3,1672319027),(89214,4,17403,3,1672319027),(89215,4,17404,3,1672319027),(89216,4,17405,3,1672319027),(89217,4,17406,3,1672319027),(89218,4,17407,3,1672319027),(89219,4,17408,3,1672319027),(89220,4,17409,3,1672319027),(89221,4,17410,3,1672319027),(89222,4,17411,3,1672319027),(89223,4,17412,3,1672319027),(89224,4,17413,3,1672319027),(89225,4,17414,3,1672319027),(89226,4,17415,3,1672319027),(89227,4,17416,3,1672319027),(89228,4,17417,3,1672319027),(89229,4,17418,3,1672319027),(89230,4,17419,3,1672319027),(89231,4,17420,3,1672319027),(89232,4,17421,3,1672319027),(89233,4,17422,3,1672319027),(89234,4,17423,3,1672319027),(89235,4,17424,3,1672319027),(89236,4,17425,3,1672319027),(89237,4,17426,3,1672319027),(89238,4,17427,3,1672319027),(89239,4,17428,3,1672319027),(89240,4,17429,3,1672319027),(89241,4,17430,3,1672319027),(89242,4,17431,3,1672319027),(89243,4,17432,3,1672319027),(89244,4,17433,3,1672319027),(89245,4,17434,3,1672319027),(89246,4,17435,3,1672319027),(89247,4,17436,3,1672319027),(89248,4,17437,3,1672319027),(89249,4,17438,3,1672319027),(89250,4,17439,3,1672319027),(89251,4,17440,3,1672319027),(89252,4,17441,3,1672319027),(89253,4,17442,3,1672319027),(89254,4,17443,3,1672319027),(89255,4,17444,3,1672319027),(89256,4,17445,3,1672319027),(89257,4,17446,3,1672319027),(89258,4,17447,3,1672319027),(89259,4,17448,3,1672319027),(89260,4,17449,3,1672319027),(89261,4,17450,3,1672319027),(89262,4,17451,3,1672319027),(89263,4,17452,3,1672319027),(89264,4,17453,3,1672319027),(89265,4,17454,3,1672319027),(89266,4,17455,3,1672319027),(89267,4,17456,3,1672319027),(89268,4,17457,3,1672319027),(89269,4,17458,3,1672319027),(89270,4,17459,3,1672319027),(89271,4,17460,3,1672319027),(89272,4,17461,3,1672319027),(89273,4,17462,3,1672319027),(89274,4,17463,3,1672319027),(89275,4,17464,3,1672319027),(89276,4,17465,3,1672319027),(89277,4,17466,3,1672319027),(89278,4,17467,3,1672319027),(89279,4,17468,3,1672319027),(89280,4,17469,3,1672319027),(89281,4,17470,3,1672319027),(89282,4,17471,3,1672319027),(89283,4,17472,3,1672319027),(89284,4,17473,3,1672319027),(89285,4,17474,3,1672319027),(89286,4,17475,3,1672319027),(89287,4,17476,3,1672319027),(89288,4,17477,3,1672319027),(89289,4,17478,3,1672319027),(89290,4,17479,3,1672319027),(89291,4,17480,3,1672319027),(89292,4,17481,3,1672319027),(89293,4,17482,3,1672319027),(89294,4,17483,3,1672319027),(89295,4,17484,3,1672319027),(89296,4,17485,3,1672319027),(89297,4,17486,3,1672319027),(89298,4,17487,3,1672319027),(89299,4,17488,3,1672319027),(89300,4,17489,3,1672319027),(89301,4,17490,3,1672319027),(89302,4,17491,3,1672319027),(89303,4,17492,3,1672319027),(89304,4,17493,3,1672319027),(89305,4,17494,3,1672319027),(89306,4,17495,3,1672319027),(89307,4,17496,3,1672319027),(89308,4,17497,3,1672319027),(89309,4,17498,3,1672319027),(89310,4,17499,3,1672319027),(89311,4,17500,3,1672319027),(89312,4,17501,3,1672319027),(89313,4,17502,3,1672319027),(89314,4,17503,3,1672319027),(89315,4,17504,3,1672319027),(89316,4,17505,3,1672319027),(89317,4,17506,3,1672319027),(89318,4,17507,3,1672319027),(89319,4,17508,3,1672319027),(89320,4,17509,3,1672319027),(89321,4,17510,3,1672319027),(89322,4,17511,3,1672319027),(89323,4,17512,3,1672319027),(89324,4,17513,3,1672319027),(89325,4,17514,3,1672319027),(89326,4,17515,3,1672319027),(89327,4,17516,3,1672319027),(89328,4,17517,3,1672319027),(89329,4,17518,3,1672319027),(89330,4,17519,3,1672319027),(89331,4,17520,3,1672319027),(89332,4,17521,3,1672319027),(89333,4,17522,3,1672319027),(89334,4,17523,3,1672319027),(89335,4,17524,3,1672319027),(89336,4,17525,3,1672319027),(89337,4,17526,3,1672319027),(89338,4,17527,3,1672319027),(89339,4,17528,3,1672319027),(89340,4,17529,3,1672319027),(89341,4,17530,3,1672319027),(89342,4,17531,3,1672319027),(89343,4,17532,3,1672319027),(89344,4,17533,3,1672319027),(89345,4,17534,3,1672319027),(89346,4,17535,3,1672319027),(89347,4,17536,3,1672319027),(89348,4,17537,3,1672319027),(89349,4,17539,3,1672319027),(89350,4,17540,3,1672319027),(89351,4,17541,3,1672319027),(89352,4,17542,3,1672319027),(89353,4,17543,3,1672319027),(89354,4,17544,3,1672319027),(89355,4,17545,3,1672319027),(89356,4,17546,3,1672319027),(89357,4,17547,3,1672319027),(89358,4,17548,3,1672319027),(89359,4,17549,3,1672319027),(89360,4,17550,3,1672319027),(89361,4,17551,3,1672319027),(89362,4,17552,3,1672319027),(89363,4,17553,3,1672319027),(89364,4,17554,3,1672319027),(89365,4,17555,3,1672319027),(89366,4,17556,3,1672319027),(89367,4,17557,3,1672319027),(89368,4,17558,3,1672319027),(89369,4,17559,3,1672319027),(89370,4,17560,3,1672319027),(89371,4,17561,3,1672319027),(89372,4,17562,3,1672319027),(89373,4,17563,3,1672319027),(89374,4,17564,3,1672319027),(89375,4,17565,3,1672319027),(89376,4,17566,3,1672319027),(89377,4,17567,3,1672319027),(89378,4,17568,3,1672319027),(89379,4,17569,3,1672319027),(89380,4,17570,3,1672319027),(89381,4,17571,3,1672319027),(89382,4,17572,3,1672319027),(89383,4,17573,3,1672319027),(89384,4,17574,3,1672319027),(89385,4,17575,3,1672319027),(89386,4,17576,3,1672319027),(89387,4,17577,3,1672319027),(89388,4,17578,3,1672319027),(89389,4,17579,3,1672319027),(89390,4,17580,3,1672319027),(89391,4,17581,3,1672319027),(89392,4,17582,3,1672319027),(89393,4,17583,3,1672319027),(89394,4,17584,3,1672319027),(89395,4,17585,3,1672319027),(89396,4,17586,3,1672319027),(89397,4,17587,3,1672319027),(89398,4,17588,3,1672319027),(89399,4,17589,3,1672319027),(89400,4,17590,3,1672319027),(89401,4,17591,3,1672319027),(89402,4,17592,3,1672319027),(89403,4,17593,3,1672319027),(89404,4,17594,3,1672319027),(89405,4,17595,3,1672319027),(89406,4,17596,3,1672319027),(89407,4,17597,3,1672319027),(89408,4,17598,3,1672319027),(89409,4,17599,3,1672319027),(89410,4,17600,3,1672319027),(89411,4,17601,3,1672319027),(89412,4,17602,3,1672319027),(89413,4,17603,3,1672319027),(89414,4,17604,3,1672319027),(89415,4,17605,3,1672319027),(89416,4,17606,3,1672319027),(89417,4,17607,3,1672319027),(89418,4,17608,3,1672319027),(89419,4,17609,3,1672319027),(89420,4,17610,3,1672319027),(89421,4,17611,3,1672319027),(89422,4,17612,3,1672319027),(89423,4,17613,3,1672319027),(89424,4,17614,3,1672319027),(89425,4,17615,3,1672319027),(89426,4,17616,3,1672319027),(89427,4,17617,3,1672319027),(89428,4,17618,3,1672319027),(89429,4,17619,3,1672319027),(89430,4,17620,3,1672319027),(89431,4,17621,3,1672319027),(89432,4,17622,3,1672319027),(89433,4,17623,3,1672319027),(89434,4,17624,3,1672319027),(89435,4,17625,3,1672319027),(89436,4,17626,3,1672319027),(89437,4,17627,3,1672319027),(89438,4,17628,3,1672319027),(89439,4,17629,3,1672319027),(89440,4,17630,3,1672319027),(89441,4,17631,3,1672319027),(89442,4,17632,3,1672319027),(89443,4,17633,3,1672319027),(89444,4,17634,3,1672319027),(89445,4,17635,3,1672319027),(89446,4,17636,3,1672319027),(89447,4,17637,3,1672319027),(89448,4,17638,3,1672319027),(89449,4,17639,3,1672319027),(89450,4,17640,3,1672319027),(89451,4,17641,3,1672319027),(89452,4,17642,3,1672319027),(89453,4,17643,3,1672319027),(89454,4,17644,3,1672319027),(89455,4,17645,3,1672319027),(89456,4,17646,3,1672319027),(89457,4,17647,3,1672319027),(89458,4,17648,3,1672319027),(89459,4,17649,3,1672319027),(89460,4,17650,3,1672319027),(89461,4,17651,3,1672319027),(89462,4,17652,3,1672319027),(89463,4,17653,3,1672319027),(89464,4,17654,3,1672319027),(89465,4,17655,3,1672319027),(89466,4,17656,3,1672319027),(89467,4,17657,3,1672319027),(89468,4,17658,3,1672319027),(89469,4,17659,3,1672319027),(89470,4,17660,3,1672319027),(89471,4,17661,3,1672319027),(89472,4,17662,3,1672319027),(89473,4,17663,3,1672319027),(89474,4,17664,3,1672319027),(89475,4,17665,3,1672319027),(89476,4,17666,3,1672319027),(89477,4,17667,3,1672319027),(89478,4,17668,3,1672319027),(89479,4,17669,3,1672319027),(89480,4,17670,3,1672319027),(89481,4,17671,3,1672319027),(89482,4,17672,3,1672319027),(89483,4,17673,3,1672319027),(89484,4,17674,3,1672319027),(89485,4,17675,3,1672319027),(89486,4,17676,3,1672319027),(89487,4,17677,3,1672319027),(89488,4,17678,3,1672319027),(89489,4,17679,3,1672319027),(89490,4,17680,3,1672319027),(89491,4,17681,3,1672319027),(89492,4,17682,3,1672319027),(89493,4,17683,3,1672319027),(89494,4,17684,3,1672319027),(89495,4,17685,3,1672319027),(89496,4,17686,3,1672319027),(89497,4,17687,3,1672319027),(89498,4,17688,3,1672319027),(89499,4,17689,3,1672319027),(89500,4,17690,3,1672319027),(89501,4,17691,3,1672319027),(89502,4,17692,3,1672319027),(89503,4,17693,3,1672319027),(89504,4,17694,3,1672319027),(89505,4,17695,3,1672319027),(89506,4,17696,3,1672319027),(89507,4,17697,3,1672319027),(89508,4,17698,3,1672319027),(89509,4,17699,3,1672319027),(89510,4,17700,3,1672319027),(89511,4,17701,3,1672319027),(89512,4,17702,3,1672319027),(89513,4,17703,3,1672319027),(89514,4,17704,3,1672319027),(89515,4,17705,3,1672319027),(89516,4,17706,3,1672319027),(89517,4,17707,3,1672319027),(89518,4,17708,3,1672319027),(89519,4,17709,3,1672319027),(89520,4,17710,3,1672319027),(89521,4,17711,3,1672319027),(89522,4,17712,3,1672319027),(89523,4,17713,3,1672319027),(89524,4,17714,3,1672319027),(89525,4,17715,3,1672319027),(89526,4,17716,3,1672319027),(89527,4,17717,3,1672319027),(89528,4,17718,3,1672319027),(89529,4,17719,3,1672319027),(89530,4,17720,3,1672319027),(89531,4,17721,3,1672319027),(89532,4,17722,3,1672319027),(89533,4,17723,3,1672319027),(89534,4,17724,3,1672319027),(89535,4,17725,3,1672319027),(89536,4,17726,3,1672319027),(89537,4,17727,3,1672319027),(89538,4,17728,3,1672319027),(89539,4,17729,3,1672319027),(89540,4,17730,3,1672319027),(89541,4,17731,3,1672319027),(89542,4,17732,3,1672319027),(89543,4,17733,3,1672319027),(89544,4,17734,3,1672319027),(89545,4,17735,3,1672319027),(89546,4,17736,3,1672319027),(89547,4,17737,3,1672319027),(89548,4,17738,3,1672319027),(89549,4,17739,3,1672319027),(89550,4,17740,3,1672319027),(89551,4,17741,3,1672319027),(89552,4,17742,3,1672319027),(89553,4,17743,3,1672319027),(89554,4,17744,3,1672319027),(89555,4,17745,3,1672319027),(89556,4,17746,3,1672319027),(89557,4,17747,3,1672319027),(89558,4,17748,3,1672319027),(89559,4,17749,3,1672319027),(89560,4,17750,3,1672319027),(89561,4,17751,3,1672319027),(89562,4,17752,3,1672319027),(89563,4,17753,3,1672319027),(89564,4,17754,3,1672319027),(89565,4,17755,3,1672319027),(89566,4,17756,3,1672319027),(89567,4,17757,3,1672319027),(89568,4,17758,3,1672319027),(89569,4,17759,3,1672319027),(89570,4,17760,3,1672319027),(89571,4,17761,3,1672319027),(89572,4,17762,3,1672319027),(89573,4,17763,3,1672319027),(89574,4,17764,3,1672319027),(89575,4,17765,3,1672319027),(89576,4,17766,3,1672319027),(89577,4,17767,3,1672319027),(89578,4,17768,3,1672319027),(89579,4,17769,3,1672319027),(89580,4,17770,3,1672319027),(89581,4,17771,3,1672319027),(89582,4,17772,3,1672319027),(89583,4,17773,3,1672319027),(89584,4,17774,3,1672319027),(89585,4,17775,3,1672319027),(89586,4,17776,3,1672319027),(89587,4,17777,3,1672319027),(89588,4,17778,3,1672319027),(89589,4,17779,3,1672319027),(89590,4,17780,3,1672319027),(89591,4,17781,3,1672319027),(89592,4,17782,3,1672319027),(89593,4,17783,3,1672319027),(89594,4,17784,3,1672319027),(89595,4,17785,3,1672319027),(89596,4,17786,3,1672319027),(89597,4,17787,3,1672319027),(89598,4,17788,3,1672319027),(89599,4,17789,3,1672319027),(89600,4,17790,3,1672319027),(89601,4,17791,3,1672319027),(89602,4,17792,3,1672319027),(89603,4,17793,3,1672319027),(89604,4,17794,3,1672319027),(89605,4,17795,3,1672319027),(89606,4,17796,3,1672319027),(89607,4,17797,3,1672319027),(89608,4,17798,3,1672319027),(89609,4,17799,3,1672319027),(89610,4,17800,3,1672319027),(89611,4,17801,3,1672319027),(89612,4,17802,3,1672319027),(89613,4,17803,3,1672319027),(89614,4,17804,3,1672319027),(89615,4,17805,3,1672319027),(89616,4,17806,3,1672319027),(89617,4,17807,3,1672319027),(89618,4,17808,3,1672319027),(89619,4,17809,3,1672319027),(89620,4,17810,3,1672319027),(89621,4,17811,3,1672319027),(89622,4,17812,3,1672319027),(89623,4,17813,3,1672319027),(89624,4,17814,3,1672319027),(89625,4,17815,3,1672319027),(89626,4,17816,3,1672319027),(89627,4,17818,3,1672319027),(89628,4,17819,3,1672319027),(89629,4,17820,3,1672319027),(89630,4,17821,3,1672319027),(89631,4,17822,3,1672319027),(89632,4,17823,3,1672319027),(89633,4,17824,3,1672319027),(89634,4,17825,3,1672319027),(89635,4,17826,3,1672319027),(89636,4,17827,3,1672319027),(89637,4,17828,3,1672319027),(89638,4,17829,3,1672319027),(89639,4,17830,3,1672319027),(89640,4,17831,3,1672319027),(89641,4,17832,3,1672319027),(89642,4,17833,3,1672319027),(89643,4,17834,3,1672319027),(89644,4,17835,3,1672319027),(89645,4,17836,3,1672319027),(89646,4,17837,3,1672319027),(89647,4,17838,3,1672319027),(89648,4,17839,3,1672319027),(89649,4,17840,3,1672319027),(89650,4,17882,3,1672319027),(89651,4,17883,3,1672319027),(89652,4,17884,3,1672319027),(89653,4,17885,3,1672319027),(89654,4,17886,3,1672319027),(89655,4,17887,3,1672319027),(89656,4,17888,3,1672319027),(89657,4,17889,3,1672319027),(89658,4,17890,3,1672319027),(89659,4,17891,3,1672319027),(89660,4,17892,3,1672319027),(89661,4,17893,3,1672319027),(89662,4,17894,3,1672319027),(89663,4,17895,3,1672319027),(89664,4,17896,3,1672319027),(89665,4,17897,3,1672319027),(89666,4,17898,3,1672319027),(89667,4,17899,3,1672319027),(89668,4,17900,3,1672319027),(89669,4,17901,3,1672319027),(89670,4,17902,3,1672319027),(89671,4,17903,3,1672319027),(89672,4,17904,3,1672319027),(89673,4,17905,3,1672319027),(89674,4,17906,3,1672319027),(89675,4,17907,3,1672319027),(89676,4,17908,3,1672319027),(89677,4,17909,3,1672319027),(89678,4,17910,3,1672319027),(89679,4,17911,3,1672319027),(89680,4,17912,3,1672319027),(89681,4,17913,3,1672319027),(89682,4,17914,3,1672319027),(89683,4,17915,3,1672319027),(89684,4,17916,3,1672319027),(89685,4,17917,3,1672319027),(89686,4,17918,3,1672319027),(89687,4,17919,3,1672319027),(89688,4,17920,3,1672319027),(89689,4,17921,3,1672319027),(89690,4,17922,3,1672319027),(89691,4,17923,3,1672319027),(89692,4,17924,3,1672319027),(89693,4,17925,3,1672319027),(89694,4,17926,3,1672319027),(89695,4,17927,3,1672319027),(89696,4,17928,3,1672319027),(89697,4,17929,3,1672319027),(89698,4,17930,3,1672319027),(89699,4,17931,3,1672319027),(89700,4,17932,3,1672319027),(89701,4,17933,3,1672319027),(89702,4,17934,3,1672319027),(89703,4,17935,3,1672319027),(89704,4,17936,3,1672319027),(89705,4,17937,3,1672319027),(89706,4,17938,3,1672319027),(89707,4,17996,3,1672319027),(89708,4,17997,3,1672319027),(89709,4,17998,3,1672319027),(89710,4,17999,3,1672319027),(89711,4,18000,3,1672319027),(89712,4,18001,3,1672319027),(89713,4,18002,3,1672319027),(89714,4,18003,3,1672319027),(89715,4,18004,3,1672319027),(89716,4,18005,3,1672319027),(89717,4,18006,3,1672319027),(89718,4,18007,3,1672319027),(89719,4,18020,3,1672319027),(89720,4,18021,3,1672319027),(89721,4,18022,3,1672319027),(89722,4,18023,3,1672319027),(89723,4,18024,3,1672319027),(89724,4,18025,3,1672319027),(89725,4,18026,3,1672319027),(89726,4,18027,3,1672319027),(89727,4,18028,3,1672319027),(89728,4,18029,3,1672319027),(89729,4,18030,3,1672319027),(89730,4,18031,3,1672319027),(89731,4,18032,3,1672319027),(89732,4,18033,3,1672319027),(89733,4,18034,3,1672319027),(89734,4,18035,3,1672319027),(89735,4,18036,3,1672319027),(89736,4,18037,3,1672319027),(89737,4,18038,3,1672319027),(89738,4,18039,3,1672319027),(89739,4,18040,3,1672319027),(89740,4,18041,3,1672319027),(89741,4,18042,3,1672319027),(89742,4,18043,3,1672319027),(89743,4,18044,3,1672319027),(89744,4,18045,3,1672319027),(89745,4,18046,3,1672319027),(89746,4,18047,3,1672319027),(89747,4,18048,3,1672319027),(89748,4,18049,3,1672319027),(89749,4,18050,3,1672319027),(89750,4,18051,3,1672319027),(89751,4,18052,3,1672319027),(89752,4,18053,3,1672319027),(89753,4,18054,3,1672319027),(89754,4,18055,3,1672319027),(89755,4,18056,3,1672319027),(89756,4,18057,3,1672319027),(89757,4,18058,3,1672319027),(89758,4,18059,3,1672319027),(89759,4,18060,3,1672319027),(89760,4,18061,3,1672319027),(89761,4,18062,3,1672319027),(89762,4,18063,3,1672319027),(89763,4,18064,3,1672319027),(89764,4,18065,3,1672319027),(89765,4,18066,3,1672319027),(89766,4,18067,3,1672319027),(89767,4,18068,3,1672319027),(89768,4,18069,3,1672319027),(89769,4,18070,3,1672319027),(89770,4,18071,3,1672319027),(89771,4,18072,3,1672319027),(89772,4,18073,3,1672319027),(89773,4,18074,3,1672319027),(89774,4,18075,3,1672319027),(89775,4,18076,3,1672319027),(89776,4,18077,3,1672319027),(89777,4,18078,3,1672319027),(89778,4,18079,3,1672319027),(89779,4,18080,3,1672319027),(89780,4,18081,3,1672319027),(89781,4,18082,3,1672319027),(89782,4,18083,3,1672319027),(89783,4,18084,3,1672319027),(89784,4,18085,3,1672319027),(89785,4,18086,3,1672319027),(89786,4,18087,3,1672319027),(89787,4,18088,3,1672319027),(89788,4,18089,3,1672319027),(89789,4,18090,3,1672319027),(89790,4,18091,3,1672319027),(89791,4,18092,3,1672319027),(89792,4,18093,3,1672319027),(89793,4,18094,3,1672319027),(89794,4,18095,3,1672319027),(89795,4,18096,3,1672319027),(89796,4,18097,3,1672319027),(89797,4,18098,3,1672319027),(89798,4,18099,3,1672319027),(89799,4,18100,3,1672319027),(89800,4,18101,3,1672319027),(89801,4,18102,3,1672319027),(89802,4,18103,3,1672319027),(89803,4,18104,3,1672319027),(89804,4,18105,3,1672319027),(89805,4,18106,3,1672319027),(89806,4,18107,3,1672319027),(89807,4,18108,3,1672319027),(89808,4,18109,3,1672319027),(89809,4,18110,3,1672319027),(89810,4,18111,3,1672319027),(89811,4,18112,3,1672319027),(89812,4,18113,3,1672319027),(89813,4,18114,3,1672319027),(89814,4,18115,3,1672319027),(89815,4,18116,3,1672319027),(89816,4,18117,3,1672319027),(89817,4,18118,3,1672319027),(89818,4,18119,3,1672319027),(89819,4,18120,3,1672319027),(89820,4,18121,3,1672319027),(89821,4,18122,3,1672319027),(89822,4,18123,3,1672319027),(89823,4,18124,3,1672319027),(89824,4,18125,3,1672319027),(89825,4,18126,3,1672319027),(89826,4,18127,3,1672319027),(89827,4,18128,3,1672319027),(89828,4,18129,3,1672319027),(89829,4,18130,3,1672319027),(89830,4,18131,3,1672319027),(89831,4,18132,3,1672319027),(89832,4,18133,3,1672319027),(89833,4,18134,3,1672319027),(89834,4,18135,3,1672319027),(89835,4,18136,3,1672319027),(89836,4,18137,3,1672319027),(89837,4,18138,3,1672319027),(89838,4,18139,3,1672319027),(89839,4,18140,3,1672319027),(89840,4,18141,3,1672319027),(89841,4,18142,3,1672319027),(89842,4,18143,3,1672319027),(89843,4,18144,3,1672319027),(89844,4,18145,3,1672319027),(89845,4,18146,3,1672319027),(89846,4,18147,3,1672319027),(89847,4,18148,3,1672319027),(89848,4,18149,3,1672319027),(89849,4,18150,3,1672319027),(89850,4,18151,3,1672319027),(89851,4,18152,3,1672319027),(89852,4,18153,3,1672319027),(89853,4,18154,3,1672319027),(89854,4,18155,3,1672319027),(89855,4,18156,3,1672319027),(89856,4,18157,3,1672319027),(89857,4,18158,3,1672319027),(89858,4,18159,3,1672319027),(89859,4,18160,3,1672319027),(89860,4,18161,3,1672319027),(89861,4,18162,3,1672319027),(89862,4,18163,3,1672319027),(89863,4,18164,3,1672319027),(89864,4,18165,3,1672319027),(89865,4,18166,3,1672319027),(89866,4,18167,3,1672319027),(89867,4,18168,3,1672319027),(89868,4,18169,3,1672319027),(89869,4,18170,3,1672319027),(89870,4,18171,3,1672319027),(89871,4,18172,3,1672319027),(89872,4,18173,3,1672319027),(89873,4,18174,3,1672319027),(89874,4,18175,3,1672319027),(89875,4,18176,3,1672319027),(89876,4,18177,3,1672319027),(89877,4,18178,3,1672319027),(89878,4,18179,3,1672319027),(89879,4,18180,3,1672319027),(89880,4,18181,3,1672319027),(89881,4,18182,3,1672319027),(89882,4,18183,3,1672319027),(89883,4,18184,3,1672319027),(89884,4,18185,3,1672319027),(89885,4,18186,3,1672319027),(89886,4,18187,3,1672319027),(89887,4,18188,3,1672319027),(89888,4,18189,3,1672319027),(89889,4,18190,3,1672319027),(89890,4,18191,3,1672319027),(89891,4,18192,3,1672319027),(89892,4,18193,3,1672319027),(89893,4,18194,3,1672319027),(89894,4,18195,3,1672319027),(89895,4,18196,3,1672319027),(89896,4,18197,3,1672319027),(89897,4,18198,3,1672319027),(89898,4,18199,3,1672319027),(89899,4,18200,3,1672319027),(89900,4,18201,3,1672319027),(89901,4,18202,3,1672319027),(89902,4,18203,3,1672319027),(89903,4,18204,3,1672319027),(89904,4,18205,3,1672319027),(89905,4,18206,3,1672319027),(89906,4,18207,3,1672319027),(89907,4,18208,3,1672319027),(89908,4,18209,3,1672319027),(89909,4,18210,3,1672319027),(89910,4,18211,3,1672319027),(89911,4,18212,3,1672319027),(89912,4,18213,3,1672319027),(89913,4,18214,3,1672319027),(89914,4,18215,3,1672319027),(89915,4,18216,3,1672319027),(89916,4,18217,3,1672319027),(89917,4,18218,3,1672319027),(89918,4,18219,3,1672319027),(89919,4,18220,3,1672319027),(89920,4,18221,3,1672319027),(89921,4,18222,3,1672319027),(89922,4,18223,3,1672319027),(89923,4,18224,3,1672319027),(89924,4,18225,3,1672319027),(89925,4,18226,3,1672319027),(89926,4,18227,3,1672319027),(89927,4,18228,3,1672319027),(89928,4,18229,3,1672319027),(89929,4,18230,3,1672319027),(89930,4,18231,3,1672319027),(89931,4,18232,3,1672319027),(89932,4,18233,3,1672319027),(89933,4,18234,3,1672319027),(89934,4,18235,3,1672319027),(89935,4,18236,3,1672319027),(89936,4,18237,3,1672319027),(89937,4,18238,3,1672319027),(89938,4,18239,3,1672319027),(89939,4,18240,3,1672319027),(89940,4,18241,3,1672319027),(89941,4,18242,3,1672319027),(89942,4,18243,3,1672319027),(89943,4,18244,3,1672319027),(89944,4,18245,3,1672319027),(89945,4,18246,3,1672319027),(89946,4,18247,3,1672319027),(89947,4,18248,3,1672319027),(89948,4,18249,3,1672319027),(89949,4,18250,3,1672319027),(89950,4,18251,3,1672319027),(89951,4,18252,3,1672319027),(89952,4,18253,3,1672319027),(89953,4,18254,3,1672319027),(89954,4,18255,3,1672319027),(89955,4,18256,3,1672319027),(89956,4,18257,3,1672319027),(89957,4,18258,3,1672319027),(89958,4,18259,3,1672319027),(89959,4,18260,3,1672319027),(89960,4,18261,3,1672319027),(89961,4,18262,3,1672319027),(89962,4,18263,3,1672319027),(89963,4,18264,3,1672319027),(89964,4,18265,3,1672319027),(89965,4,18266,3,1672319027),(89966,4,18267,3,1672319027),(89967,4,18268,3,1672319027),(89968,4,18269,3,1672319027),(89969,4,18270,3,1672319027),(89970,4,18271,3,1672319027),(89971,4,18272,3,1672319027),(89972,4,18273,3,1672319027),(89973,4,18274,3,1672319027),(89974,4,18275,3,1672319027),(89975,4,18276,3,1672319027),(89976,4,18277,3,1672319027),(89977,4,18278,3,1672319027),(89978,4,18279,3,1672319027),(89979,4,18280,3,1672319027),(89980,4,18281,3,1672319027),(89981,4,18282,3,1672319027),(89982,4,18283,3,1672319027),(89983,4,18284,3,1672319027),(89984,4,18285,3,1672319027),(89985,4,18286,3,1672319027),(89986,4,18287,3,1672319027),(89987,4,18288,3,1672319027),(89988,4,18289,3,1672319027),(89989,4,18290,3,1672319027),(89990,4,18291,3,1672319027),(89991,4,18292,3,1672319027),(89992,4,18293,3,1672319027),(89993,4,18294,3,1672319027),(89994,4,18295,3,1672319027),(89995,4,18296,3,1672319027),(89996,4,18297,3,1672319027),(89997,4,18298,3,1672319027),(89998,4,18299,3,1672319027),(89999,4,18300,3,1672319027),(90000,4,18301,3,1672319027),(90001,4,18302,3,1672319027),(90002,4,18303,3,1672319027),(90003,4,18304,3,1672319027),(90004,4,18305,3,1672319027),(90005,4,18306,3,1672319027),(90006,4,18307,3,1672319027),(90007,4,18308,3,1672319027),(90008,4,18309,3,1672319027),(90009,4,18310,3,1672319027),(90010,4,18311,3,1672319027),(90011,4,18312,3,1672319027),(90012,4,18313,3,1672319027),(90013,4,18314,3,1672319027),(90014,4,18315,3,1672319027),(90015,4,18316,3,1672319027),(90016,4,18317,3,1672319027),(90017,4,18318,3,1672319027),(90018,4,18319,3,1672319027),(90019,4,18320,3,1672319027),(90020,4,18321,3,1672319027),(90021,4,18322,3,1672319027),(90022,4,18323,3,1672319027),(90023,4,18324,3,1672319027),(90024,4,18325,3,1672319027),(90025,4,18326,3,1672319027),(90026,4,18327,3,1672319027),(90027,4,18328,3,1672319027),(90028,4,18329,3,1672319027),(90029,4,18330,3,1672319027),(90030,4,18331,3,1672319027),(90031,4,18332,3,1672319027),(90032,4,18333,3,1672319027),(90033,4,18334,3,1672319027),(90034,4,18335,3,1672319027),(90035,4,18336,3,1672319027),(90036,4,18337,3,1672319027),(90037,4,18338,3,1672319027),(90038,4,18339,3,1672319027),(90039,4,18340,3,1672319027),(90040,4,18341,3,1672319027),(90041,4,18342,3,1672319027),(90042,4,18343,3,1672319027),(90043,4,18344,3,1672319027),(90044,4,18345,3,1672319027),(90045,4,18346,3,1672319027),(90046,4,18347,3,1672319027),(90047,4,18348,3,1672319027),(90048,4,18349,3,1672319027),(90049,4,18350,3,1672319027),(90050,4,18351,3,1672319027),(90051,4,18352,3,1672319027),(90052,4,18353,3,1672319027),(90053,4,18354,3,1672319027),(90054,4,18355,3,1672319027),(90055,4,18356,3,1672319027),(90056,4,18357,3,1672319027),(90057,4,18358,3,1672319027),(90058,4,18359,3,1672319027),(90059,4,18360,3,1672319027),(90060,4,18361,3,1672319027),(90061,4,18362,3,1672319027),(90062,4,18363,3,1672319027),(90063,4,18364,3,1672319027),(90064,4,18365,3,1672319027),(90065,4,18366,3,1672319027),(90066,4,18367,3,1672319027),(90067,4,18368,3,1672319027),(90068,4,18369,3,1672319027),(90069,4,18370,3,1672319027),(90070,4,18371,3,1672319027),(90071,4,18372,3,1672319027),(90072,4,18373,3,1672319027),(90073,4,18374,3,1672319027),(90074,4,18375,3,1672319027),(90075,4,18376,3,1672319027),(90076,4,18377,3,1672319027),(90077,4,18378,3,1672319027),(90078,4,18379,3,1672319027),(90079,4,18380,3,1672319027),(90080,4,18381,3,1672319027),(90081,4,18382,3,1672319027),(90082,4,18383,3,1672319027),(90083,4,18384,3,1672319027),(90084,4,18385,3,1672319027),(90085,4,18386,3,1672319027),(90086,4,18387,3,1672319027),(90087,4,18388,3,1672319027),(90088,4,18389,3,1672319027),(90089,4,18390,3,1672319027),(90090,4,18391,3,1672319027),(90091,4,18392,3,1672319027),(90092,4,18393,3,1672319027),(90093,4,18394,3,1672319027),(90094,4,18395,3,1672319027),(90095,4,18396,3,1672319027),(90096,4,18397,3,1672319027),(90097,4,18398,3,1672319027),(90098,4,18399,3,1672319027),(90099,4,18400,3,1672319027),(90100,4,18401,3,1672319027),(90101,4,18402,3,1672319027),(90102,4,18403,3,1672319027),(90103,4,18405,3,1672319027),(90104,4,18406,3,1672319027),(90105,4,18407,3,1672319027),(90106,4,18408,3,1672319027),(90107,4,18413,3,1672319027),(90108,4,18414,3,1672319027),(90109,4,18415,3,1672319027),(90110,4,18416,3,1672319027),(90111,4,18417,3,1672319027),(90112,4,18418,3,1672319027),(90113,4,18419,3,1672319027),(90114,4,18420,3,1672319027),(90115,4,18421,3,1672319027),(90116,4,18422,3,1672319027),(90117,4,18423,3,1672319027),(90118,4,18424,3,1672319027),(90119,4,18425,3,1672319027),(90120,4,18426,3,1672319027),(90121,4,18427,3,1672319027),(90122,4,18428,3,1672319027),(90123,4,18429,3,1672319027),(90124,4,18430,3,1672319027),(90125,4,18431,3,1672319027),(90126,4,18432,3,1672319027),(90127,4,18433,3,1672319027),(90128,4,18434,3,1672319027),(90129,4,18435,3,1672319027),(90130,4,18436,3,1672319027),(90131,4,18437,3,1672319027),(90132,4,18438,3,1672319027),(90133,4,18439,3,1672319027),(90134,4,18442,3,1672319027),(90135,4,18443,3,1672319027),(90136,4,18444,3,1672319027),(90137,4,18445,3,1672319027),(90138,4,18446,3,1672319027),(90139,4,18447,3,1672319027),(90140,4,18448,3,1672319027),(90141,4,18449,3,1672319027),(90142,4,18450,3,1672319027),(90143,4,18451,3,1672319027),(90144,4,18452,3,1672319027),(90145,4,18453,3,1672319027),(90146,4,18454,3,1672319027),(90147,4,18455,3,1672319027),(90148,4,18456,3,1672319027),(90149,4,18457,3,1672319027),(90150,4,18458,3,1672319027),(90151,4,18459,3,1672319027),(90152,4,18460,3,1672319027),(90153,4,18461,3,1672319027),(90154,4,18462,3,1672319027),(90155,4,18463,3,1672319027),(90156,4,18464,3,1672319027),(90157,4,18465,3,1672319027),(90158,4,18466,3,1672319027),(90159,4,18467,3,1672319027),(90160,4,18468,3,1672319027),(90161,4,18469,3,1672319027),(90162,4,18470,3,1672319027),(90163,4,18471,3,1672319027),(90164,4,18472,3,1672319027),(90165,4,18473,3,1672319027),(90166,4,18474,3,1672319027),(90167,4,18475,3,1672319027),(90168,4,18476,3,1672319027),(90169,4,18477,3,1672319027),(90170,4,18478,3,1672319027),(90171,4,18479,3,1672319027),(90172,4,18480,3,1672319027),(90173,4,18481,3,1672319027),(90174,4,18482,3,1672319027),(90175,4,18483,3,1672319027),(90176,4,18484,3,1672319027),(90177,4,18485,3,1672319027),(90178,4,18486,3,1672319027),(90179,4,18487,3,1672319027),(90180,4,18488,3,1672319027),(90181,4,18489,3,1672319027),(90182,4,18490,3,1672319027),(90183,4,18491,3,1672319027),(90184,4,18492,3,1672319027),(90185,4,18493,3,1672319027),(90186,4,18494,3,1672319027),(90187,4,18495,3,1672319027),(90188,4,18496,3,1672319027),(90189,4,18497,3,1672319027),(90190,4,18498,3,1672319027),(90191,4,18499,3,1672319027),(90192,4,18500,3,1672319027),(90193,4,18501,3,1672319027),(90194,4,18502,3,1672319027),(90195,4,18503,3,1672319027),(90196,4,18504,3,1672319027),(90197,4,18505,3,1672319027),(90198,4,18506,3,1672319027),(90199,4,18507,3,1672319027),(90200,4,18508,3,1672319027),(90201,4,18509,3,1672319027),(90202,4,18510,3,1672319027),(90203,4,18511,3,1672319027),(90204,4,18512,3,1672319027),(90205,4,18513,3,1672319027),(90206,4,18514,3,1672319027),(90207,4,18515,3,1672319027),(90208,4,18516,3,1672319027),(90209,4,18517,3,1672319027),(90210,4,18518,3,1672319027),(90211,4,18519,3,1672319027),(90212,4,18520,3,1672319027),(90213,4,18521,3,1672319027),(90214,4,18522,3,1672319027),(90215,4,18523,3,1672319027),(90216,4,18524,3,1672319027),(90217,4,18525,3,1672319027),(90218,4,18526,3,1672319027),(90219,4,18527,3,1672319027),(90220,4,18528,3,1672319027),(90221,4,18529,3,1672319027),(90222,4,18530,3,1672319027),(90223,4,18531,3,1672319027),(90224,4,18532,3,1672319027),(90225,4,18533,3,1672319027),(90226,4,18534,3,1672319027),(90227,4,18535,3,1672319027),(90228,4,18536,3,1672319027),(90229,4,18537,3,1672319027),(90230,4,18538,3,1672319027),(90231,4,18539,3,1672319027),(90232,4,18540,3,1672319027),(90233,4,18541,3,1672319027),(90234,4,18542,3,1672319027),(90235,4,18543,3,1672319027),(90236,4,18544,3,1672319027),(90237,4,18545,3,1672319027),(90238,4,18546,3,1672319027),(90239,4,18547,3,1672319027),(90240,4,18548,3,1672319027),(90241,4,18549,3,1672319027),(90242,4,18550,3,1672319027),(90243,4,18551,3,1672319027),(90244,4,18552,3,1672319027),(90245,4,18553,3,1672319027),(90246,4,18554,3,1672319027),(90247,4,18555,3,1672319027),(90248,4,18556,3,1672319027),(90249,4,18557,3,1672319027),(90250,4,18558,3,1672319027),(90251,4,18559,3,1672319027),(90252,4,18560,3,1672319027),(90253,4,18561,3,1672319027),(90254,4,18562,3,1672319027),(90255,4,18563,3,1672319027),(90256,4,18564,3,1672319027),(90257,4,18565,3,1672319027),(90258,4,18566,3,1672319027),(90259,4,18567,3,1672319027),(90260,4,18568,3,1672319027),(90261,4,18569,3,1672319027),(90262,4,18570,3,1672319027),(90263,4,18571,3,1672319027),(90264,4,18572,3,1672319027),(90265,4,18573,3,1672319027),(90266,4,18574,3,1672319027),(90267,4,18575,3,1672319027),(90268,4,18576,3,1672319027),(90269,4,18577,3,1672319027),(90270,4,18578,3,1672319027),(90271,4,18579,3,1672319027),(90272,4,18580,3,1672319027),(90273,4,18581,3,1672319027),(90274,4,18582,3,1672319027),(90275,4,18583,3,1672319027),(90276,4,18584,3,1672319027),(90277,4,18585,3,1672319027),(90278,4,18586,3,1672319027),(90279,4,18587,3,1672319027),(90280,4,18588,3,1672319027),(90281,4,18589,3,1672319027),(90282,4,18590,3,1672319027),(90283,4,18591,3,1672319027),(90284,4,18592,3,1672319027),(90285,4,18593,3,1672319027),(90286,4,18594,3,1672319027),(90287,4,18595,3,1672319027),(90288,4,18596,3,1672319027),(90289,4,18597,3,1672319027),(90290,4,18598,3,1672319027),(90291,4,18599,3,1672319027),(90292,4,18600,3,1672319027),(90293,4,18601,3,1672319027),(90294,4,18602,3,1672319027),(90295,4,18603,3,1672319027),(90296,4,18604,3,1672319027),(90297,4,18605,3,1672319027),(90298,4,18606,3,1672319027),(90299,4,18607,3,1672319027),(90300,4,18608,3,1672319027),(90301,4,18609,3,1672319027),(90302,4,18610,3,1672319027),(90303,4,18611,3,1672319027),(90304,4,18612,3,1672319027),(90305,4,18613,3,1672319027),(90306,4,18614,3,1672319027),(90307,4,18615,3,1672319027),(90308,4,18616,3,1672319027),(90309,4,18617,3,1672319027),(90310,4,18618,3,1672319027),(90311,4,18619,3,1672319027),(90312,4,18620,3,1672319027),(90313,4,18621,3,1672319027),(90314,4,18622,3,1672319027),(90315,4,18623,3,1672319027),(90316,4,18624,3,1672319027),(90317,4,18625,3,1672319027),(90318,4,18626,3,1672319027),(90319,4,18627,3,1672319027),(90320,4,18628,3,1672319027),(90321,4,18629,3,1672319027),(90322,4,18630,3,1672319027),(90323,4,18631,3,1672319027),(90324,4,18632,3,1672319027),(90325,4,18633,3,1672319027),(90326,4,18634,3,1672319027),(90327,4,18635,3,1672319027),(90328,4,18636,3,1672319027),(90329,4,18637,3,1672319027),(90330,4,18638,3,1672319027),(90331,4,18639,3,1672319027),(90332,4,18640,3,1672319027),(90333,4,18641,3,1672319027),(90334,4,18642,3,1672319027),(90335,4,18643,3,1672319027),(90336,4,18644,3,1672319027),(90337,4,18645,3,1672319027),(90338,4,18646,3,1672319027),(90339,4,18647,3,1672319027),(90340,4,18648,3,1672319027),(90341,4,18649,3,1672319027),(90342,4,18650,3,1672319027),(90343,4,18651,3,1672319027),(90344,4,18652,3,1672319027),(90345,4,18653,3,1672319027),(90346,4,18654,3,1672319027),(90347,4,18655,3,1672319027),(90348,4,18656,3,1672319027),(90349,4,18657,3,1672319027),(90350,4,18658,3,1672319027),(90351,4,18659,3,1672319027),(90352,4,18660,3,1672319027),(90353,4,18661,3,1672319027),(90354,4,18662,3,1672319027),(90355,4,18663,3,1672319027),(90356,4,18664,3,1672319027),(90357,4,18665,3,1672319027),(90358,4,18666,3,1672319027),(90359,4,18667,3,1672319027),(90360,4,18668,3,1672319027),(90361,4,18669,3,1672319027),(90362,4,18670,3,1672319027),(90363,4,18671,3,1672319027),(90364,4,18672,3,1672319027),(90365,4,18673,3,1672319027),(90366,4,18674,3,1672319027),(90367,4,18675,3,1672319027),(90368,4,18676,3,1672319027),(90369,4,18677,3,1672319027),(90370,4,18678,3,1672319027),(90371,4,18679,3,1672319027),(90372,4,18680,3,1672319027),(90373,4,18681,3,1672319027),(90374,4,18682,3,1672319027),(90375,4,18683,3,1672319027),(90376,4,18684,3,1672319027),(90377,4,18685,3,1672319027),(90378,4,18686,3,1672319027),(90379,4,18687,3,1672319027),(90380,4,18688,3,1672319027),(90381,4,18689,3,1672319027),(90382,4,18690,3,1672319027),(90383,4,18691,3,1672319027),(90384,4,18692,3,1672319027),(90385,4,18693,3,1672319027),(90386,4,18694,3,1672319027),(90387,4,18695,3,1672319027),(90388,4,18696,3,1672319027),(90389,4,18697,3,1672319027),(90390,4,18698,3,1672319027),(90391,4,18699,3,1672319027),(90392,4,18700,3,1672319027),(90393,4,18701,3,1672319027),(90394,4,18702,3,1672319027),(90395,4,18703,3,1672319027),(90396,4,18704,3,1672319027),(90397,4,18705,3,1672319027),(90398,4,18706,3,1672319027),(90399,4,18707,3,1672319027),(90400,4,18708,3,1672319027),(90401,4,18709,3,1672319027),(90402,4,18710,3,1672319027),(90403,4,18711,3,1672319027),(90404,4,18712,3,1672319027),(90405,4,18713,3,1672319027),(90406,4,18714,3,1672319027),(90407,4,18715,3,1672319027),(90408,4,18716,3,1672319027),(90409,4,18717,3,1672319027),(90410,4,18718,3,1672319027),(90411,4,18719,3,1672319027),(90412,4,18720,3,1672319027),(90413,4,18721,3,1672319027),(90414,4,18722,3,1672319027),(90415,4,18723,3,1672319027),(90416,4,18724,3,1672319027),(90417,4,18725,3,1672319027),(90418,4,18726,3,1672319027),(90419,4,18727,3,1672319027),(90420,4,18728,3,1672319027),(90421,4,18729,3,1672319027),(90422,4,18730,3,1672319027),(90423,4,18731,3,1672319027),(90424,4,18732,3,1672319027),(90425,4,18733,3,1672319027),(90426,4,18734,3,1672319027),(90427,4,18735,3,1672319027),(90428,4,18736,3,1672319027),(90429,4,18737,3,1672319027),(90430,4,18738,3,1672319027),(90431,4,18739,3,1672319027),(90432,4,18740,3,1672319027),(90433,4,18741,3,1672319027),(90434,4,18742,3,1672319027),(90435,4,18743,3,1672319027),(90436,4,18744,3,1672319027),(90437,4,18745,3,1672319027),(90438,4,18746,3,1672319027),(90439,4,18747,3,1672319027),(90440,4,18748,3,1672319027),(90441,4,18749,3,1672319027),(90442,4,18750,3,1672319027),(90443,4,18751,3,1672319027),(90444,4,18752,3,1672319027),(90445,4,18753,3,1672319027),(90446,4,18754,3,1672319027),(90447,4,18755,3,1672319027),(90448,4,18756,3,1672319027),(90449,4,18757,3,1672319027),(90450,4,18758,3,1672319027),(90451,4,18759,3,1672319027),(90452,4,18760,3,1672319027),(90453,4,18761,3,1672319027),(90454,4,18762,3,1672319027),(90455,4,18763,3,1672319027),(90456,4,18764,3,1672319027),(90457,4,18765,3,1672319027),(90458,4,18766,3,1672319027),(90459,4,18767,3,1672319027),(90460,4,18768,3,1672319027),(90461,4,18769,3,1672319027),(90462,4,18770,3,1672319027),(90463,4,18771,3,1672319027),(90464,4,18772,3,1672319027),(90465,4,18773,3,1672319027),(90466,4,18774,3,1672319027),(90467,4,18775,3,1672319027),(90468,4,18776,3,1672319027),(90469,4,18777,3,1672319027),(90470,4,18778,3,1672319027),(90471,4,18779,3,1672319027),(90472,4,18780,3,1672319027),(90473,4,18781,3,1672319027),(90474,4,18782,3,1672319027),(90475,4,18783,3,1672319027),(90476,4,18784,3,1672319027),(90477,4,18785,3,1672319027),(90478,4,18786,3,1672319027),(90479,4,18788,3,1672319027),(90480,4,18789,3,1672319027),(90481,4,18790,3,1672319027),(90482,4,18791,3,1672319027),(90483,4,18792,3,1672319027),(90484,4,18793,3,1672319027),(90485,4,18794,3,1672319027),(90486,4,18795,3,1672319027),(90487,4,18796,3,1672319027),(90488,4,18797,3,1672319027),(90489,4,18798,3,1672319027),(90490,4,18799,3,1672319027),(90491,4,18800,3,1672319027),(90492,4,18801,3,1672319027),(90493,4,18802,3,1672319027),(90494,4,18803,3,1672319027),(90495,4,18804,3,1672319027),(90496,4,18805,3,1672319027),(90497,4,18806,3,1672319027),(90498,4,18807,3,1672319027),(90499,4,18808,3,1672319027),(90500,4,18809,3,1672319027),(90501,4,18810,3,1672319027),(90502,4,18811,3,1672319027),(90503,4,18812,3,1672319027),(90504,4,18813,3,1672319027),(90505,4,18814,3,1672319027),(90506,4,18815,3,1672319027),(90507,4,18816,3,1672319027),(90508,4,18817,3,1672319027),(90509,4,18818,3,1672319027),(90510,4,18820,3,1672319027),(90511,4,18821,3,1672319027),(90512,4,18822,3,1672319027),(90513,4,18823,3,1672319027),(90514,4,18824,3,1672319027),(90515,4,18825,3,1672319027),(90516,4,18826,3,1672319027),(90517,4,18827,3,1672319027),(90518,4,18828,3,1672319027),(90519,4,18829,3,1672319027),(90520,4,18830,3,1672319027),(90521,4,18831,3,1672319027),(90522,4,18832,3,1672319027),(90523,4,18833,3,1672319027),(90524,4,18834,3,1672319027),(90525,4,18835,3,1672319027),(90526,4,18836,3,1672319027),(90527,4,18837,3,1672319027),(90528,4,18838,3,1672319027),(90529,4,18839,3,1672319027),(90530,4,18840,3,1672319027),(90531,4,18841,3,1672319027),(90532,4,18842,3,1672319027),(90533,4,18843,3,1672319027),(90534,4,18844,3,1672319027),(90535,4,18845,3,1672319027),(90536,4,18846,3,1672319027),(90537,4,18847,3,1672319027),(90538,4,18848,3,1672319027),(90539,4,18849,3,1672319027),(90540,4,18850,3,1672319027),(90541,4,18851,3,1672319027),(90542,4,18852,3,1672319027),(90543,4,18853,3,1672319027),(90544,4,18854,3,1672319027),(90545,4,18855,3,1672319027),(90546,4,18856,3,1672319027),(90547,4,18857,3,1672319027),(90548,4,18858,3,1672319027),(90549,4,18859,3,1672319027),(90550,4,18860,3,1672319027),(90551,4,18861,3,1672319027),(90552,4,18862,3,1672319027),(90553,4,18863,3,1672319027),(90554,4,18864,3,1672319027),(90555,4,18865,3,1672319027),(90556,4,18866,3,1672319027),(90557,4,18867,3,1672319027),(90558,4,18868,3,1672319027),(90559,4,18869,3,1672319027),(90560,4,18870,3,1672319027),(90561,4,18871,3,1672319027),(90562,4,18872,3,1672319027),(90563,4,18873,3,1672319027),(90564,4,18874,3,1672319027),(90565,4,18875,3,1672319027),(90566,4,18876,3,1672319027),(90567,4,18877,3,1672319027),(90568,4,18878,3,1672319027),(90569,4,18879,3,1672319027),(90570,4,18880,3,1672319027),(90571,4,18881,3,1672319027),(90572,4,18882,3,1672319027),(90573,4,18883,3,1672319027),(90574,4,18884,3,1672319027),(90575,4,18885,3,1672319027),(90576,4,18886,3,1672319027),(90577,4,18887,3,1672319027),(90578,4,18888,3,1672319027),(90579,4,18889,3,1672319027),(90580,4,18890,3,1672319027),(90581,4,18891,3,1672319027),(90582,4,18892,3,1672319027),(90583,4,18893,3,1672319027),(90584,4,18894,3,1672319027),(90585,4,18895,3,1672319027),(90586,4,18896,3,1672319027),(90587,4,18897,3,1672319027),(90588,4,18898,3,1672319027),(90589,4,18899,3,1672319027),(90590,4,18900,3,1672319027),(90591,4,18901,3,1672319027),(90592,4,18902,3,1672319027),(90593,4,18903,3,1672319027),(90594,4,18904,3,1672319027),(90595,4,18905,3,1672319027),(90596,4,18906,3,1672319027),(90597,4,18907,3,1672319027),(90598,4,18908,3,1672319027),(90599,4,18909,3,1672319027),(90600,4,18910,3,1672319027),(90601,4,18911,3,1672319027),(90602,4,18912,3,1672319027),(90603,4,18913,3,1672319027),(90604,4,18914,3,1672319027),(90605,4,18915,3,1672319027),(90606,4,18916,3,1672319027),(90607,4,18917,3,1672319027),(90608,4,18918,3,1672319027),(90609,4,18919,3,1672319027),(90610,4,18920,3,1672319027),(90611,4,18921,3,1672319027),(90612,4,18922,3,1672319027),(90613,4,18923,3,1672319027),(90614,4,18924,3,1672319027),(90615,4,18925,3,1672319027),(90616,4,18926,3,1672319027),(90617,4,18927,3,1672319027),(90618,4,18928,3,1672319027),(90619,4,18929,3,1672319027),(90620,4,18930,3,1672319027),(90621,4,18931,3,1672319027),(90622,4,18932,3,1672319027),(90623,4,18933,3,1672319027),(90624,4,18934,3,1672319027),(90625,4,18935,3,1672319027),(90626,4,18936,3,1672319027),(90627,4,18937,3,1672319027),(90628,4,18938,3,1672319027),(90629,4,18939,3,1672319027),(90630,4,18940,3,1672319027),(90631,4,18941,3,1672319027),(90632,4,18942,3,1672319027),(90633,4,18943,3,1672319027),(90634,4,18944,3,1672319027),(90635,4,18945,3,1672319027),(90636,4,18946,3,1672319027),(90637,4,18947,3,1672319027),(90638,4,18948,3,1672319027),(90639,4,18949,3,1672319027),(90640,4,18950,3,1672319027),(90641,4,18951,3,1672319027),(90642,4,18952,3,1672319027),(90643,4,18953,3,1672319027),(90644,4,18954,3,1672319027),(90645,4,18955,3,1672319027),(90646,4,18956,3,1672319027),(90647,4,18957,3,1672319027),(90648,4,18958,3,1672319027),(90649,4,18959,3,1672319027),(90650,4,18960,3,1672319027),(90651,4,18961,3,1672319027),(90652,4,18962,3,1672319027),(90653,4,18963,3,1672319027),(90654,4,18964,3,1672319027),(90655,4,18965,3,1672319027),(90656,4,18966,3,1672319027),(90657,4,18967,3,1672319027),(90658,4,18968,3,1672319027),(90659,4,18969,3,1672319027),(90660,4,18970,3,1672319027),(90661,4,18971,3,1672319027),(90662,4,18972,3,1672319027),(90663,4,18973,3,1672319027),(90664,4,18974,3,1672319027),(90665,4,18975,3,1672319027),(90666,4,18976,3,1672319027),(90667,4,18977,3,1672319027),(90668,4,18978,3,1672319027),(90669,4,18979,3,1672319027),(90670,4,18980,3,1672319027),(90671,4,18981,3,1672319027),(90672,4,18982,3,1672319027),(90673,4,18983,3,1672319027),(90674,4,18984,3,1672319027),(90675,4,18985,3,1672319027),(90676,4,18986,3,1672319027),(90677,4,18987,3,1672319027),(90678,4,18988,3,1672319027),(90679,4,18989,3,1672319027),(90680,4,18990,3,1672319027),(90681,4,18991,3,1672319027),(90682,4,18992,3,1672319027),(90683,4,18993,3,1672319027),(90684,4,18994,3,1672319027),(90685,4,18995,3,1672319027),(90686,4,18996,3,1672319027),(90687,4,18997,3,1672319027),(90688,4,18998,3,1672319027),(90689,4,18999,3,1672319027),(90690,4,19000,3,1672319027),(90691,4,19001,3,1672319027),(90692,4,19002,3,1672319027),(90693,4,19003,3,1672319027),(90694,4,19004,3,1672319027),(90695,4,19005,3,1672319027),(90696,4,19006,3,1672319027),(90697,4,19007,3,1672319027),(90698,4,19008,3,1672319027),(90699,4,19009,3,1672319027),(90700,4,19010,3,1672319027),(90701,4,19011,3,1672319027),(90702,4,19012,3,1672319027),(90703,4,19013,3,1672319027),(90704,4,19014,3,1672319027),(90705,4,19015,3,1672319027),(90706,4,19016,3,1672319027),(90707,4,19017,3,1672319027),(90708,4,19018,3,1672319027),(90709,4,19019,3,1672319027),(90710,4,19020,3,1672319027),(90711,4,19021,3,1672319027),(90712,4,19022,3,1672319027),(90713,4,19023,3,1672319027),(90714,4,19024,3,1672319027),(90715,4,19025,3,1672319027),(90716,4,19026,3,1672319027),(90717,4,19027,3,1672319027),(90718,4,19028,3,1672319027),(90719,4,19029,3,1672319027),(90720,4,19030,3,1672319027),(90721,4,19031,3,1672319027),(90722,4,19032,3,1672319027),(90723,4,19033,3,1672319027),(90724,4,19034,3,1672319027),(90725,4,19035,3,1672319027),(90726,4,19036,3,1672319027),(90727,4,19037,3,1672319027),(90728,4,19038,3,1672319027),(90729,4,19039,3,1672319027),(90730,4,19040,3,1672319027),(90731,4,19041,3,1672319027),(90732,4,19042,3,1672319027),(90733,4,19043,3,1672319027),(90734,4,19044,3,1672319027),(90735,4,19045,3,1672319027),(90736,4,19046,3,1672319027),(90737,4,19047,3,1672319027),(90738,4,19048,3,1672319027),(90739,4,19049,3,1672319027),(90740,4,19050,3,1672319027),(90741,4,19051,3,1672319027),(90742,4,19052,3,1672319027),(90743,4,19053,3,1672319027),(90744,4,19054,3,1672319027),(90745,4,19055,3,1672319027),(90746,4,19056,3,1672319027),(90747,4,19057,3,1672319027),(90748,4,19058,3,1672319027),(90749,4,19059,3,1672319027),(90750,4,19060,3,1672319027),(90751,4,19061,3,1672319027),(90752,4,19062,3,1672319027),(90753,4,19063,3,1672319027),(90754,4,19064,3,1672319027),(90755,4,19065,3,1672319027),(90756,4,19066,3,1672319027),(90757,4,19067,3,1672319027),(90758,4,19068,3,1672319027),(90759,4,19069,3,1672319027),(90760,4,19070,3,1672319027),(90761,4,19071,3,1672319027),(90762,4,19072,3,1672319027),(90763,4,19073,3,1672319027),(90764,4,19074,3,1672319027),(90765,4,19075,3,1672319027),(90766,4,19076,3,1672319027),(90767,4,19077,3,1672319027),(90768,4,19078,3,1672319027),(90769,4,19079,3,1672319027),(90770,4,19080,3,1672319027),(90771,4,19081,3,1672319027),(90772,4,19082,3,1672319027),(90773,4,19083,3,1672319027),(90774,4,19084,3,1672319027),(90775,4,19085,3,1672319027),(90776,4,19086,3,1672319027),(90777,4,19087,3,1672319027),(90778,4,19088,3,1672319027),(90779,4,19089,3,1672319027),(90780,4,19090,3,1672319027),(90781,4,19091,3,1672319027),(90782,4,19092,3,1672319027),(90783,4,19093,3,1672319027),(90784,4,19094,3,1672319027),(90785,4,19095,3,1672319027),(90786,4,19096,3,1672319027),(90787,4,19097,3,1672319027),(90788,4,19098,3,1672319027),(90789,4,19099,3,1672319027),(90790,4,19100,3,1672319027),(90791,4,19101,3,1672319027),(90792,4,19102,3,1672319027),(90793,4,19103,3,1672319027),(90794,4,19104,3,1672319027),(90795,4,19105,3,1672319027),(90796,4,19106,3,1672319027),(90797,4,19107,3,1672319027),(90798,4,19108,3,1672319027),(90799,4,19109,3,1672319027),(90800,4,19110,3,1672319027),(90801,4,19111,3,1672319027),(90802,4,19112,3,1672319027),(90803,4,19113,3,1672319027),(90804,4,19114,3,1672319027),(90805,4,19115,3,1672319027),(90806,4,19116,3,1672319027),(90807,4,19117,3,1672319027),(90808,4,19118,3,1672319027),(90809,4,19119,3,1672319027),(90810,4,19120,3,1672319027),(90811,4,19121,3,1672319027),(90812,4,19122,3,1672319027),(90813,4,19123,3,1672319027),(90814,4,19124,3,1672319027),(90815,4,19125,3,1672319027),(90816,4,19126,3,1672319027),(90817,4,19127,3,1672319027),(90818,4,19128,3,1672319027),(90819,4,19129,3,1672319027),(90820,4,19130,3,1672319027),(90821,4,19131,3,1672319027),(90822,4,19132,3,1672319027),(90823,4,19133,3,1672319027),(90824,4,19134,3,1672319027),(90825,4,19135,3,1672319027),(90826,4,19136,3,1672319027),(90827,4,19137,3,1672319027),(90828,4,19138,3,1672319027),(90829,4,19139,3,1672319027),(90830,4,19140,3,1672319027),(90831,4,19141,3,1672319027),(90832,4,19142,3,1672319027),(90833,4,19143,3,1672319027),(90834,4,19144,3,1672319027),(90835,4,19145,3,1672319027),(90836,4,19146,3,1672319027),(90837,4,19147,3,1672319027),(90838,4,19148,3,1672319027),(90839,4,19149,3,1672319027),(90840,4,19150,3,1672319027),(90841,4,19151,3,1672319027),(90842,4,19152,3,1672319027),(90843,4,19153,3,1672319027),(90844,4,19154,3,1672319027),(90845,4,19155,3,1672319027),(90846,4,19156,3,1672319027),(90847,4,19157,3,1672319027),(90848,4,19158,3,1672319027),(90849,4,19159,3,1672319027),(90850,4,19160,3,1672319027),(90851,4,19161,3,1672319027),(90852,4,19162,3,1672319027),(90853,4,19163,3,1672319027),(90854,4,19164,3,1672319027),(90855,4,19165,3,1672319027),(90856,4,19166,3,1672319027),(90857,4,19167,3,1672319027),(90858,4,19168,3,1672319027),(90859,4,19169,3,1672319027),(90860,4,19170,3,1672319027),(90861,4,19171,3,1672319027),(90862,4,19172,3,1672319027),(90863,4,19173,3,1672319027),(90864,4,19174,3,1672319027),(90865,4,19175,3,1672319027),(90866,4,19176,3,1672319027),(90867,4,19177,3,1672319027),(90868,4,19178,3,1672319027),(90869,4,19179,3,1672319027),(90870,4,19180,3,1672319027),(90871,4,19181,3,1672319027),(90872,4,19182,3,1672319027),(90873,4,19183,3,1672319027),(90874,4,19184,3,1672319027),(90875,4,19185,3,1672319027),(90876,4,19186,3,1672319027),(90877,4,19187,3,1672319027),(90878,4,19188,3,1672319027),(90879,4,19189,3,1672319027),(90880,4,19190,3,1672319027),(90881,4,19191,3,1672319027),(90882,4,19192,3,1672319027),(90883,4,19193,3,1672319027),(90884,4,19194,3,1672319027),(90885,4,19195,3,1672319027),(90886,4,19196,3,1672319027),(90887,4,19197,3,1672319027),(90888,4,19198,3,1672319027),(90889,4,19199,3,1672319027),(90890,4,19200,3,1672319027),(90891,4,19201,3,1672319027),(90892,4,19202,3,1672319027),(90893,4,19203,3,1672319027),(90894,4,19204,3,1672319027),(90895,4,19205,3,1672319027),(90896,4,19206,3,1672319027),(90897,4,19207,3,1672319027),(90898,4,19208,3,1672319027),(90899,4,19209,3,1672319027),(90900,4,19210,3,1672319027),(90901,4,19211,3,1672319027),(90902,4,19212,3,1672319027),(90903,4,19213,3,1672319027),(90904,4,19214,3,1672319027),(90905,4,19215,3,1672319027),(90906,4,19216,3,1672319027),(90907,4,19217,3,1672319027),(90908,4,19218,3,1672319027),(90909,4,19219,3,1672319027),(90910,4,19220,3,1672319027),(90911,4,19221,3,1672319027),(90912,4,19222,3,1672319027),(90913,4,19223,3,1672319027),(90914,4,19224,3,1672319027),(90915,4,19225,3,1672319027),(90916,4,19226,3,1672319027),(90917,4,19227,3,1672319027),(90918,4,19228,3,1672319027),(90919,4,19229,3,1672319027),(90920,4,19230,3,1672319027),(90921,4,19231,3,1672319027),(90922,4,19232,3,1672319027),(90923,4,19233,3,1672319027),(90924,4,19234,3,1672319027),(90925,4,19235,3,1672319027),(90926,4,19236,3,1672319027),(90927,4,19237,3,1672319027),(90928,4,19238,3,1672319027),(90929,4,19239,3,1672319027),(90930,4,19240,3,1672319027),(90931,4,19241,3,1672319027),(90932,4,19242,3,1672319027),(90933,4,19243,3,1672319027),(90934,4,19244,3,1672319027),(90935,4,19245,3,1672319027),(90936,4,19246,3,1672319027),(90937,4,19247,3,1672319027),(90938,4,19248,3,1672319027),(90939,4,19249,3,1672319027),(90940,4,19250,3,1672319027),(90941,4,19251,3,1672319027),(90942,4,19252,3,1672319027),(90943,4,19253,3,1672319027),(90944,4,19254,3,1672319027),(90945,4,19255,3,1672319027),(90946,4,19256,3,1672319027),(90947,4,19257,3,1672319027),(90948,4,19258,3,1672319027),(90949,4,19259,3,1672319027),(90950,4,19260,3,1672319027),(90951,4,19261,3,1672319027),(90952,4,19262,3,1672319027),(90953,4,19263,3,1672319027),(90954,4,19264,3,1672319027),(90955,4,19265,3,1672319027),(90956,4,19266,3,1672319027),(90957,4,19267,3,1672319027),(90958,4,19268,3,1672319027),(90959,4,19269,3,1672319027),(90960,4,19270,3,1672319027),(90961,4,19271,3,1672319027),(90962,4,19272,3,1672319027),(90963,4,19273,3,1672319027),(90964,4,19274,3,1672319027),(90965,4,19275,3,1672319027),(90966,4,19276,3,1672319027),(90967,4,19277,3,1672319027),(90968,4,19278,3,1672319027),(90969,4,19279,3,1672319027),(90970,4,19280,3,1672319027),(90971,4,19281,3,1672319027),(90972,4,19282,3,1672319027),(90973,4,19283,3,1672319027),(90974,4,19284,3,1672319027),(90975,4,19285,3,1672319027),(90976,4,19286,3,1672319027),(90977,4,19287,3,1672319027),(90978,4,19288,3,1672319027),(90979,4,19289,3,1672319027),(90980,4,19290,3,1672319027),(90981,4,19291,3,1672319027),(90982,4,19292,3,1672319027),(90983,4,19293,3,1672319027),(90984,4,19294,3,1672319027),(90985,4,19295,3,1672319027),(90986,4,19296,3,1672319027),(90987,4,19297,3,1672319027),(90988,4,19298,3,1672319027),(90989,4,19299,3,1672319027),(90990,4,19300,3,1672319027),(90991,4,19301,3,1672319027),(90992,4,19302,3,1672319027),(90993,4,19303,3,1672319027),(90994,4,19304,3,1672319027),(90995,4,19305,3,1672319027),(90996,4,19306,3,1672319027),(90997,4,19307,3,1672319027),(90998,4,19308,3,1672319027),(90999,4,19309,3,1672319027),(91000,4,19310,3,1672319027),(91001,4,19311,3,1672319027),(91002,4,19312,3,1672319027),(91003,4,19313,3,1672319027),(91004,4,19314,3,1672319027),(91005,4,19315,3,1672319027),(91006,4,19316,3,1672319027),(91007,4,19317,3,1672319027),(91008,4,19318,3,1672319027),(91009,4,19319,3,1672319027),(91010,4,19320,3,1672319027),(91011,4,19321,3,1672319027),(91012,4,19322,3,1672319027),(91013,4,19323,3,1672319027),(91014,4,19324,3,1672319027),(91015,4,19325,3,1672319027),(91016,4,19326,3,1672319027),(91017,4,19327,3,1672319027),(91018,4,19328,3,1672319027),(91019,4,19329,3,1672319027),(91020,4,19330,3,1672319027),(91021,4,19331,3,1672319027),(91022,4,19332,3,1672319027),(91023,4,19333,3,1672319027),(91024,4,19334,3,1672319027),(91025,4,19335,3,1672319027),(91026,4,19336,3,1672319027),(91027,4,19337,3,1672319027),(91028,4,19338,3,1672319027),(91029,4,19339,3,1672319027),(91030,4,19340,3,1672319027),(91031,4,19341,3,1672319027),(91032,4,19342,3,1672319027),(91033,4,19343,3,1672319027),(91034,4,19344,3,1672319027),(91035,4,19345,3,1672319027),(91036,4,19346,3,1672319027),(91037,4,19347,3,1672319027),(91038,4,19348,3,1672319027),(91039,4,19349,3,1672319027),(91040,4,19350,3,1672319027),(91041,4,19351,3,1672319027),(91042,4,19352,3,1672319027),(91043,4,19353,3,1672319027),(91044,4,19354,3,1672319027),(91045,4,19355,3,1672319027),(91046,4,19356,3,1672319027),(91047,4,19357,3,1672319027),(91048,4,19358,3,1672319027),(91049,4,19359,3,1672319027),(91050,4,19360,3,1672319027),(91051,4,19361,3,1672319027),(91052,4,19362,3,1672319027),(91053,4,19363,3,1672319027),(91054,4,19364,3,1672319027),(91055,4,19365,3,1672319027),(91056,4,19366,3,1672319027),(91057,4,19367,3,1672319027),(91058,4,19368,3,1672319027),(91059,4,19369,3,1672319027),(91060,4,19370,3,1672319027),(91061,4,19371,3,1672319027),(91062,4,19372,3,1672319027),(91063,4,19373,3,1672319027),(91064,4,19374,3,1672319027),(91065,4,19375,3,1672319027),(91066,4,19376,3,1672319027),(91067,4,19377,3,1672319027),(91068,4,19378,3,1672319027),(91069,4,19379,3,1672319027),(91070,4,19380,3,1672319027),(91071,4,19381,3,1672319027),(91072,4,19382,3,1672319027),(91073,4,19383,3,1672319027),(91074,4,19384,3,1672319027),(91075,4,19385,3,1672319027),(91076,4,19386,3,1672319027),(91077,4,19387,3,1672319027),(91078,4,19388,3,1672319027),(91079,4,19389,3,1672319027),(91080,4,19390,3,1672319027),(91081,4,19391,3,1672319027),(91082,4,19392,3,1672319027),(91083,4,19393,3,1672319027),(91084,4,19394,3,1672319027),(91085,4,19395,3,1672319027),(91086,4,19396,3,1672319027),(91087,4,19397,3,1672319027),(91088,4,19398,3,1672319027),(91089,4,19399,3,1672319027),(91090,4,19400,3,1672319027),(91091,4,19401,3,1672319027),(91092,4,19402,3,1672319027),(91093,4,19403,3,1672319027),(91094,4,19404,3,1672319027),(91095,4,19405,3,1672319027),(91096,4,19406,3,1672319027),(91097,4,19407,3,1672319027),(91098,4,19408,3,1672319027),(91099,4,19409,3,1672319027),(91100,4,19410,3,1672319027),(91101,4,19411,3,1672319027),(91102,4,19412,3,1672319027),(91103,4,19413,3,1672319027),(91104,4,19414,3,1672319027),(91105,4,19415,3,1672319027),(91106,4,19416,3,1672319027),(91107,4,19417,3,1672319027),(91108,4,19418,3,1672319027),(91109,4,19419,3,1672319027),(91110,4,19420,3,1672319027),(91111,4,19421,3,1672319027),(91112,4,19422,3,1672319027),(91113,4,19423,3,1672319027),(91114,4,19424,3,1672319027),(91115,4,19425,3,1672319027),(91116,4,19426,3,1672319027),(91117,4,19427,3,1672319027),(91118,4,19428,3,1672319027),(91119,4,19429,3,1672319027),(91120,4,19430,3,1672319027),(91121,4,19431,3,1672319027),(91122,4,19432,3,1672319027),(91123,4,19433,3,1672319027),(91124,4,19434,3,1672319027),(91125,4,19435,3,1672319027),(91126,4,19436,3,1672319027),(91127,4,19437,3,1672319027),(91128,4,19438,3,1672319027),(91129,4,19439,3,1672319027),(91130,4,19440,3,1672319027),(91131,4,19441,3,1672319027),(91132,4,19442,3,1672319027),(91133,4,19443,3,1672319027),(91134,4,19444,3,1672319027),(91135,4,19445,3,1672319027),(91136,4,19446,3,1672319027),(91137,4,19447,3,1672319027),(91138,4,19448,3,1672319027),(91139,4,19449,3,1672319027),(91140,4,19450,3,1672319027),(91141,4,19451,3,1672319027),(91142,4,19452,3,1672319027),(91143,4,19453,3,1672319027),(91144,4,19454,3,1672319027),(91145,4,19455,3,1672319027),(91146,4,19456,3,1672319027),(91147,4,19457,3,1672319027),(91148,4,19458,3,1672319027),(91149,4,19459,3,1672319027),(91150,4,19460,3,1672319027),(91151,4,19461,3,1672319027),(91152,4,19462,3,1672319027),(91153,4,19463,3,1672319027),(91154,4,19464,3,1672319027),(91155,4,19465,3,1672319027),(91156,4,19466,3,1672319027),(91157,4,19467,3,1672319027),(91158,4,19468,3,1672319027),(91159,4,19469,3,1672319027),(91160,4,19470,3,1672319027),(91161,4,19471,3,1672319027),(91162,4,19472,3,1672319027),(91163,4,19473,3,1672319027),(91164,4,19474,3,1672319027),(91165,4,19475,3,1672319027),(91166,4,19476,3,1672319027),(91167,4,19477,3,1672319027),(91168,4,19478,3,1672319027),(91169,4,19479,3,1672319027),(91170,4,19480,3,1672319027),(91171,4,19481,3,1672319027),(91172,4,19482,3,1672319027),(91173,4,19483,3,1672319027),(91174,4,19484,3,1672319027),(91175,4,19485,3,1672319027),(91176,4,19486,3,1672319027),(91177,4,19487,3,1672319027),(91178,4,19488,3,1672319027),(91179,4,19489,3,1672319027),(91180,4,19490,3,1672319027),(91181,4,19491,3,1672319027),(91182,4,19492,3,1672319027),(91183,4,19493,3,1672319027),(91184,4,19494,3,1672319027),(91185,4,19495,3,1672319027),(91186,4,19496,3,1672319027),(91187,4,19497,3,1672319027),(91188,4,19498,3,1672319027),(91189,4,19499,3,1672319027),(91190,4,19500,3,1672319027),(91191,4,19501,3,1672319027),(91192,4,19502,3,1672319027),(91193,4,19503,3,1672319027),(91194,4,19504,3,1672319027),(91195,4,19505,3,1672319027),(91196,4,19506,3,1672319027),(91197,4,19507,3,1672319027),(91198,4,19508,3,1672319027),(91199,4,19509,3,1672319027),(91200,4,19510,3,1672319027),(91201,4,19511,3,1672319027),(91202,4,19512,3,1672319027),(91203,4,19513,3,1672319027),(91204,4,19514,3,1672319027),(91205,4,19515,3,1672319027),(91206,4,19516,3,1672319027),(91207,4,19517,3,1672319027),(91208,4,19518,3,1672319027),(91209,4,19519,3,1672319027),(91210,4,19520,3,1672319027),(91211,4,19521,3,1672319027),(91212,4,19522,3,1672319027),(91213,4,19523,3,1672319027),(91214,4,19524,3,1672319027),(91215,4,19525,3,1672319027),(91216,4,19526,3,1672319027),(91217,4,19527,3,1672319027),(91218,4,19528,3,1672319027),(91219,4,19529,3,1672319027),(91220,4,19530,3,1672319027),(91221,4,19531,3,1672319027),(91222,4,19532,3,1672319027),(91223,4,19533,3,1672319027),(91224,4,19534,3,1672319027),(91225,4,19535,3,1672319027),(91226,4,19536,3,1672319027),(91227,4,19537,3,1672319027),(91228,4,19538,3,1672319027),(91229,4,19539,3,1672319027),(91230,4,19540,3,1672319027),(91231,4,19541,3,1672319027),(91232,4,19542,3,1672319027),(91233,4,19543,3,1672319027),(91234,4,19544,3,1672319027),(91235,4,19545,3,1672319027),(91236,4,19546,3,1672319027),(91237,4,19547,3,1672319027),(91238,4,19548,3,1672319027),(91239,4,19549,3,1672319027),(91240,4,19550,3,1672319027),(91241,4,19551,3,1672319027),(91242,4,19552,3,1672319027),(91243,4,19553,3,1672319027),(91244,4,19554,3,1672319027),(91245,4,19555,3,1672319027),(91246,4,19556,3,1672319027),(91247,4,19557,3,1672319027),(91248,4,19558,3,1672319027),(91249,4,19559,3,1672319027),(91250,4,19560,3,1672319027),(91251,4,19561,3,1672319027),(91252,4,19562,3,1672319027),(91253,4,19563,3,1672319027),(91254,4,19564,3,1672319027),(91255,4,19565,3,1672319027),(91256,4,19566,3,1672319027),(91257,4,19567,3,1672319027),(91258,4,19568,3,1672319027),(91259,4,19569,3,1672319027),(91260,4,19570,3,1672319027),(91261,4,19571,3,1672319027),(91262,4,19572,3,1672319027),(91263,4,19573,3,1672319027),(91264,4,19574,3,1672319027),(91265,4,19575,3,1672319027),(91266,4,19576,3,1672319027),(91267,4,19577,3,1672319027),(91268,4,19578,3,1672319027),(91269,4,19579,3,1672319027),(91270,4,19580,3,1672319027),(91271,4,19581,3,1672319027),(91272,4,19582,3,1672319027),(91273,4,19583,3,1672319027),(91274,4,19584,3,1672319027),(91275,4,19585,3,1672319027),(91276,4,19586,3,1672319027),(91277,4,19587,3,1672319027),(91278,4,19588,3,1672319027),(91279,4,19589,3,1672319027),(91280,4,19590,3,1672319027),(91281,4,19591,3,1672319027),(91282,4,19592,3,1672319027),(91283,4,19593,3,1672319027),(91284,4,19594,3,1672319027),(91285,4,19595,3,1672319027),(91286,4,19596,3,1672319027),(91287,4,19597,3,1672319027),(91288,4,19598,3,1672319027),(91289,4,19599,3,1672319027),(91290,4,19600,3,1672319027),(91291,4,19601,3,1672319027),(91292,4,19602,3,1672319027),(91293,4,19603,3,1672319027),(91294,4,19604,3,1672319027),(91295,4,19605,3,1672319027),(91296,4,19606,3,1672319027),(91297,4,19607,3,1672319027),(91298,4,19608,3,1672319027),(91299,4,19609,3,1672319027),(91300,4,19610,3,1672319027),(91301,4,19611,3,1672319027),(91302,4,19612,3,1672319027),(91303,4,19613,3,1672319027),(91304,4,19614,3,1672319027),(91305,4,19615,3,1672319027),(91306,4,19616,3,1672319027),(91307,4,19617,3,1672319027),(91308,4,19618,3,1672319027),(91309,4,19619,3,1672319027),(91310,4,19620,3,1672319027),(91311,4,19621,3,1672319027),(91312,4,19622,3,1672319027),(91313,4,19623,3,1672319027),(91314,4,19624,3,1672319027),(91315,4,19625,3,1672319027),(91316,4,19626,3,1672319027),(91317,4,19627,3,1672319027),(91318,4,19628,3,1672319027),(91319,4,19629,3,1672319027),(91320,4,19630,3,1672319027),(91321,4,19631,3,1672319027),(91322,4,19632,3,1672319027),(91323,4,19633,3,1672319027),(91324,4,19634,3,1672319027),(91325,4,19635,3,1672319027),(91326,4,19636,3,1672319027),(91327,4,19637,3,1672319027),(91328,4,19638,3,1672319027),(91329,4,19639,3,1672319027),(91330,4,19640,3,1672319027),(91331,4,19641,3,1672319027),(91332,4,19642,3,1672319027),(91333,4,19643,3,1672319027),(91334,4,19644,3,1672319027),(91335,4,19645,3,1672319027),(91336,4,19646,3,1672319027),(91337,4,19647,3,1672319027),(91338,4,19648,3,1672319027),(91339,4,19649,3,1672319027),(91340,4,19650,3,1672319027),(91341,4,19651,3,1672319027),(91342,4,19652,3,1672319027),(91343,4,19653,3,1672319027),(91344,4,19654,3,1672319027),(91345,4,19655,3,1672319027),(91346,4,19656,3,1672319027),(91347,4,19657,3,1672319027),(91348,4,19658,3,1672319027),(91349,4,19659,3,1672319027),(91350,4,19660,3,1672319027),(91351,4,19661,3,1672319027),(91352,4,19662,3,1672319027),(91353,4,19663,3,1672319027),(91354,4,19664,3,1672319027),(91355,4,19665,3,1672319027),(91356,4,19666,3,1672319027),(91357,4,19667,3,1672319027),(91358,4,19668,3,1672319027),(91359,4,19669,3,1672319027),(91360,4,19670,3,1672319027),(91361,4,19671,3,1672319027),(91362,4,19672,3,1672319027),(91363,4,19673,3,1672319027),(91364,4,19674,3,1672319027),(91365,4,19675,3,1672319027),(91366,4,19676,3,1672319027),(91367,4,19677,3,1672319027),(91368,4,19678,3,1672319027),(91369,4,19679,3,1672319027),(91370,4,19680,3,1672319027),(91371,4,19681,3,1672319027),(91372,4,19682,3,1672319027),(91373,4,19683,3,1672319027),(91374,4,19684,3,1672319027),(91375,4,19685,3,1672319027),(91376,4,19686,3,1672319027),(91377,4,19687,3,1672319027),(91378,4,19688,3,1672319027),(91379,4,19689,3,1672319027),(91380,4,19690,3,1672319027),(91381,4,19691,3,1672319027),(91382,4,19692,3,1672319027),(91383,4,19693,3,1672319027),(91384,4,19694,3,1672319027),(91385,4,19695,3,1672319027),(91386,4,19696,3,1672319027),(91387,4,19697,3,1672319027),(91388,4,19698,3,1672319027),(91389,4,19699,3,1672319027),(91390,4,19700,3,1672319027),(91391,4,19701,3,1672319027),(91392,4,19702,3,1672319027),(91393,4,19703,3,1672319027),(91394,4,19704,3,1672319027),(91395,4,19705,3,1672319027),(91396,4,19706,3,1672319027),(91397,4,19707,3,1672319027),(91398,4,19708,3,1672319027),(91399,4,19709,3,1672319027),(91400,4,19710,3,1672319027),(91401,4,19711,3,1672319027),(91402,4,19712,3,1672319027),(91403,4,19713,3,1672319027),(91404,4,19714,3,1672319027),(91405,4,19715,3,1672319027),(91406,4,19716,3,1672319027),(91407,4,19717,3,1672319027),(91408,4,19718,3,1672319027),(91409,4,19719,3,1672319027),(91410,4,19720,3,1672319027),(91411,4,19721,3,1672319027),(91412,4,19722,3,1672319027),(91413,4,19723,3,1672319027),(91414,4,19724,3,1672319027),(91415,4,19725,3,1672319027),(91416,4,19726,3,1672319027),(91417,4,19727,3,1672319027),(91418,4,19728,3,1672319027),(91419,4,19729,3,1672319027),(91420,4,19730,3,1672319027),(91421,4,19731,3,1672319027),(91422,4,19732,3,1672319027),(91423,4,19733,3,1672319027),(91424,4,19734,3,1672319027),(91425,4,19735,3,1672319027),(91426,4,19736,3,1672319027),(91427,4,19737,3,1672319027),(91428,4,19738,3,1672319027),(91429,4,19739,3,1672319027),(91430,4,19740,3,1672319027),(91431,4,19741,3,1672319027),(91432,4,19742,3,1672319027),(91433,4,19743,3,1672319027),(91434,4,19744,3,1672319027),(91435,4,19745,3,1672319027),(91436,4,19746,3,1672319027),(91437,4,19747,3,1672319027),(91438,4,19748,3,1672319027),(91439,4,19749,3,1672319027),(91440,4,19750,3,1672319027),(91441,4,19751,3,1672319027),(91442,4,19752,3,1672319027),(91443,4,19753,3,1672319027),(91444,4,19754,3,1672319027),(91445,4,19755,3,1672319027),(91446,4,19756,3,1672319027),(91447,4,19757,3,1672319027),(91448,4,19758,3,1672319027),(91449,4,19759,3,1672319027),(91450,4,19760,3,1672319027),(91451,4,19761,3,1672319027),(91452,4,19762,3,1672319027),(91453,4,19763,3,1672319027),(91454,4,19764,3,1672319027),(91455,4,19765,3,1672319027),(91456,4,19766,3,1672319027),(91457,4,19767,3,1672319027),(91458,4,19768,3,1672319027),(91459,4,19769,3,1672319027),(91460,4,19770,3,1672319027),(91461,4,19771,3,1672319027),(91462,4,19772,3,1672319027),(91463,4,19773,3,1672319027),(91464,4,19774,3,1672319027),(91465,4,19775,3,1672319027),(91466,4,19776,3,1672319027),(91467,4,19777,3,1672319027),(91468,4,19778,3,1672319027),(91469,4,19779,3,1672319027),(91470,4,19780,3,1672319027),(91471,4,19781,3,1672319027),(91472,4,19782,3,1672319027),(91473,4,19783,3,1672319027),(91474,4,19784,3,1672319027),(91475,4,19785,3,1672319027),(91476,4,19786,3,1672319027),(91477,4,19787,3,1672319027),(91478,4,19788,3,1672319027),(91479,4,19789,3,1672319027),(91480,4,19790,3,1672319027),(91481,4,19791,3,1672319027),(91482,4,19792,3,1672319027),(91483,4,19793,3,1672319027),(91484,4,19794,3,1672319027),(91485,4,19795,3,1672319027),(91486,4,19796,3,1672319027),(91487,4,19797,3,1672319027),(91488,4,19798,3,1672319027),(91489,4,19799,3,1672319027),(91490,4,19800,3,1672319027),(91491,4,19801,3,1672319027),(91492,4,19802,3,1672319027),(91493,4,19803,3,1672319027),(91494,4,19804,3,1672319027),(91495,4,19805,3,1672319027),(91496,4,19806,3,1672319027),(91497,4,19807,3,1672319027),(91498,4,19808,3,1672319027),(91499,4,19809,3,1672319027),(91500,4,19810,3,1672319027),(91501,4,19811,3,1672319027),(91502,4,19812,3,1672319027),(91503,4,19813,3,1672319027),(91504,4,19814,3,1672319027),(91505,4,19815,3,1672319027),(91506,4,19816,3,1672319027),(91507,4,19817,3,1672319027),(91508,4,19818,3,1672319027),(91509,4,19819,3,1672319027),(91510,4,19820,3,1672319027),(91511,4,19821,3,1672319027),(91512,4,19822,3,1672319027),(91513,4,19823,3,1672319027),(91514,4,19824,3,1672319027),(91515,4,19825,3,1672319027),(91516,4,19826,3,1672319027),(91517,4,19827,3,1672319027),(91518,4,19828,3,1672319027),(91519,4,19829,3,1672319027),(91520,4,19830,3,1672319027),(91521,4,19831,3,1672319027),(91522,4,19832,3,1672319027),(91523,4,19833,3,1672319027),(91524,4,19834,3,1672319027),(91525,4,19835,3,1672319027),(91526,4,19836,3,1672319027),(91527,4,19837,3,1672319027),(91528,4,19838,3,1672319027),(91529,4,19839,3,1672319027),(91530,4,19840,3,1672319027),(91531,4,19841,3,1672319027),(91532,4,19842,3,1672319027),(91533,4,19843,3,1672319027),(91534,4,19844,3,1672319027),(91535,4,19845,3,1672319027),(91536,4,19846,3,1672319027),(91537,4,19847,3,1672319027),(91538,4,19848,3,1672319027),(91539,4,19849,3,1672319027),(91540,4,19850,3,1672319027),(91541,4,19851,3,1672319027),(91542,4,19852,3,1672319027),(91543,4,19853,3,1672319027),(91544,4,19854,3,1672319027),(91545,4,19855,3,1672319027),(91546,4,19856,3,1672319027),(91547,4,19857,3,1672319027),(91548,4,19858,3,1672319027),(91549,4,19859,3,1672319027),(91550,4,19860,3,1672319027),(91551,4,19861,3,1672319027),(91552,4,19862,3,1672319027),(91553,4,19863,3,1672319027),(91554,4,19864,3,1672319027),(91555,4,19865,3,1672319027),(91556,4,19866,3,1672319027),(91557,4,19867,3,1672319027),(91558,4,19868,3,1672319027),(91559,4,19869,3,1672319027),(91560,4,19870,3,1672319027),(91561,4,19871,3,1672319027),(91562,4,19872,3,1672319027),(91563,4,19873,3,1672319027),(91564,4,19874,3,1672319027),(91565,4,19875,3,1672319027),(91566,4,19876,3,1672319027),(91567,4,19877,3,1672319027),(91568,4,19878,3,1672319027),(91569,4,19879,3,1672319027),(91570,4,19880,3,1672319027),(91571,4,19881,3,1672319027),(91572,4,19882,3,1672319027),(91573,4,19883,3,1672319027),(91574,4,19884,3,1672319027),(91575,4,19885,3,1672319027),(91576,4,19886,3,1672319027),(91577,4,19887,3,1672319027),(91578,4,19888,3,1672319027),(91579,4,19889,3,1672319027),(91580,4,19890,3,1672319027),(91581,4,19891,3,1672319027),(91582,4,19892,3,1672319027),(91583,4,19893,3,1672319027),(91584,4,19894,3,1672319027),(91585,4,19895,3,1672319027),(91586,4,19896,3,1672319027),(91587,4,19897,3,1672319027),(91588,4,19898,3,1672319027),(91589,4,19899,3,1672319027),(91590,4,19900,3,1672319027),(91591,4,19901,3,1672319027),(91592,4,19902,3,1672319027),(91593,4,19903,3,1672319027),(91594,4,19904,3,1672319027),(91595,4,19905,3,1672319027),(91596,4,19906,3,1672319027),(91597,4,19907,3,1672319027),(91598,4,19908,3,1672319027),(91599,4,19909,3,1672319027),(91600,4,19910,3,1672319027),(91601,4,19911,3,1672319027),(91602,4,19912,3,1672319027),(91603,4,19913,3,1672319027),(91604,4,19914,3,1672319027),(91605,4,19915,3,1672319027),(91606,4,19916,3,1672319027),(91607,4,19917,3,1672319027),(91608,4,19918,3,1672319027),(91609,4,19919,3,1672319027),(91610,4,19920,3,1672319027),(91611,4,19921,3,1672319027),(91612,4,19922,3,1672319027),(91613,4,19923,3,1672319027),(91614,4,19924,3,1672319027),(91615,4,19925,3,1672319027),(91616,4,19926,3,1672319027),(91617,4,19927,3,1672319027),(91618,4,19928,3,1672319027),(91619,4,19929,3,1672319027),(91620,4,19930,3,1672319027),(91621,4,19931,3,1672319027),(91622,4,19932,3,1672319027),(91623,4,19933,3,1672319027),(91624,4,19934,3,1672319027),(91625,4,19935,3,1672319027),(91626,4,19936,3,1672319027),(91627,4,19937,3,1672319027),(91628,4,19938,3,1672319027),(91629,4,19939,3,1672319027),(91630,4,19940,3,1672319027),(91631,4,19941,3,1672319027),(91632,4,19942,3,1672319027),(91633,4,19943,3,1672319027),(91634,4,19944,3,1672319027),(91635,4,19945,3,1672319027),(91636,4,19946,3,1672319027),(91637,4,19947,3,1672319027),(91638,4,19948,3,1672319027),(91639,4,19949,3,1672319027),(91640,4,19950,3,1672319027),(91641,4,19951,3,1672319027),(91642,4,19952,3,1672319027),(91643,4,19953,3,1672319027),(91644,4,19954,3,1672319027),(91645,4,19955,3,1672319027),(91646,4,19956,3,1672319027),(91647,4,19957,3,1672319027),(91648,4,19958,3,1672319027),(91649,4,19959,3,1672319027),(91650,4,19960,3,1672319027),(91651,4,19961,3,1672319027),(91652,4,19962,3,1672319027),(91653,4,19963,3,1672319027),(91654,4,19964,3,1672319027),(91655,4,19965,3,1672319027),(91656,4,19966,3,1672319027),(91657,4,19967,3,1672319027),(91658,4,19968,3,1672319027),(91659,4,19969,3,1672319027),(91660,4,19970,3,1672319027),(91661,4,19971,3,1672319027),(91662,4,19972,3,1672319027),(91663,4,19973,3,1672319027),(91664,4,19974,3,1672319027),(91665,4,19975,3,1672319027),(91666,4,19976,3,1672319027),(91667,4,19977,3,1672319027),(91668,4,19978,3,1672319027),(91669,4,19979,3,1672319027),(91670,4,19980,3,1672319027),(91671,4,19981,3,1672319027),(91672,4,19982,3,1672319027),(91673,4,19983,3,1672319027),(91674,4,19984,3,1672319027),(91675,4,19985,3,1672319027),(91676,4,19986,3,1672319027),(91677,4,19987,3,1672319027),(91678,4,19988,3,1672319027),(91679,4,19989,3,1672319027),(91680,4,19990,3,1672319027),(91681,4,19991,3,1672319027),(91682,4,19992,3,1672319027),(91683,4,19993,3,1672319027),(91684,4,19994,3,1672319027),(91685,4,19995,3,1672319027),(91686,4,19996,3,1672319027),(91687,4,19997,3,1672319027),(91688,4,19998,3,1672319027),(91689,4,19999,3,1672319027),(91690,4,20000,3,1672319027),(91691,4,20001,3,1672319027),(91692,4,20002,3,1672319027),(91693,4,20003,3,1672319027),(91694,4,20004,3,1672319027),(91695,4,20005,3,1672319027),(91696,4,20006,3,1672319027),(91697,4,20007,3,1672319027),(91698,4,20008,3,1672319027),(91699,4,20009,3,1672319027),(91700,4,20010,3,1672319027),(91701,4,20011,3,1672319027),(91702,4,20012,3,1672319027),(91703,4,20013,3,1672319027),(91704,4,20014,3,1672319027),(91705,4,20015,3,1672319027),(91706,4,20016,3,1672319027),(91707,4,20017,3,1672319027),(91708,4,20018,3,1672319027),(91709,4,20019,3,1672319027),(91710,4,20020,3,1672319027),(91711,4,20021,3,1672319027),(91712,4,20022,3,1672319027),(91713,4,20023,3,1672319027),(91714,4,20024,3,1672319027),(91715,4,20025,3,1672319027),(91716,4,20026,3,1672319027),(91717,4,20027,3,1672319027),(91718,4,20028,3,1672319027),(91719,4,20029,3,1672319027),(91720,4,20030,3,1672319027),(91721,4,20031,3,1672319027),(91722,4,20032,3,1672319027),(91723,4,20033,3,1672319027),(91724,4,20034,3,1672319027),(91725,4,20035,3,1672319027),(91726,4,20036,3,1672319027),(91727,4,20037,3,1672319027),(91728,4,20038,3,1672319027),(91729,4,20039,3,1672319027),(91730,4,20040,3,1672319027),(91731,4,20041,3,1672319027),(91732,4,20042,3,1672319027),(91733,4,20043,3,1672319027),(91734,4,20044,3,1672319027),(91735,4,20045,3,1672319027),(91736,4,20046,3,1672319027),(91737,4,20047,3,1672319027),(91738,4,20048,3,1672319027),(91739,4,20049,3,1672319027),(91740,4,20050,3,1672319027),(91741,4,20051,3,1672319027),(91742,4,20052,3,1672319027),(91743,4,20053,3,1672319027),(91744,4,20054,3,1672319027),(91745,4,20055,3,1672319027),(91746,4,20056,3,1672319027),(91747,4,20057,3,1672319027),(91748,4,20058,3,1672319027),(91749,4,20059,3,1672319027),(91750,4,20060,3,1672319027),(91751,4,20061,3,1672319027),(91752,4,20062,3,1672319027),(91753,4,20063,3,1672319027),(91754,4,20064,3,1672319027),(91755,4,20065,3,1672319027),(91756,4,20066,3,1672319027),(91757,4,20067,3,1672319027),(91758,4,20068,3,1672319027),(91759,4,20069,3,1672319027),(91760,4,20070,3,1672319027),(91761,4,20071,3,1672319027),(91762,4,20072,3,1672319027),(91763,4,20073,3,1672319027),(91764,4,20074,3,1672319027),(91765,4,20075,3,1672319027),(91766,4,20076,3,1672319027),(91767,4,20077,3,1672319027),(91768,4,20078,3,1672319027),(91769,4,20079,3,1672319027),(91770,4,20080,3,1672319027),(91771,4,20081,3,1672319027),(91772,4,20082,3,1672319027),(91773,4,20083,3,1672319027),(91774,4,20084,3,1672319027),(91775,4,20085,3,1672319027),(91776,4,20086,3,1672319027),(91777,4,20087,3,1672319027),(91778,4,20088,3,1672319027),(91779,4,20089,3,1672319027),(91780,4,20090,3,1672319027),(91781,4,20091,3,1672319027),(91782,4,20092,3,1672319027),(91783,4,20093,3,1672319027),(91784,4,20094,3,1672319027),(91785,4,20095,3,1672319027),(91786,4,20096,3,1672319027),(91787,4,20097,3,1672319027),(91788,4,20098,3,1672319027),(91789,4,20099,3,1672319027),(91790,4,20100,3,1672319027),(91791,4,20101,3,1672319027),(91792,4,20102,3,1672319027),(91793,4,20103,3,1672319027),(91794,4,20104,3,1672319027),(91795,4,20105,3,1672319027),(91796,4,20106,3,1672319027),(91797,4,20107,3,1672319027),(91798,4,20108,3,1672319027),(91799,4,20109,3,1672319027),(91800,4,20110,3,1672319027),(91801,4,20111,3,1672319027),(91802,4,20112,3,1672319027),(91803,4,20113,3,1672319027),(91804,4,20114,3,1672319027),(91805,4,20115,3,1672319027),(91806,4,20116,3,1672319027),(91807,4,20117,3,1672319027),(91808,4,20118,3,1672319027),(91809,4,20119,3,1672319027),(91810,4,20120,3,1672319027),(91811,4,20121,3,1672319027),(91812,4,20122,3,1672319027),(91813,4,20123,3,1672319027),(91814,4,20124,3,1672319027),(91815,4,20125,3,1672319027),(91816,4,20126,3,1672319027),(91817,4,20127,3,1672319027),(91818,4,20128,3,1672319027),(91819,4,20129,3,1672319027),(91820,4,20130,3,1672319027),(91821,4,20131,3,1672319027),(91822,4,20132,3,1672319027),(91823,4,20133,3,1672319027),(91824,4,20134,3,1672319027),(91825,4,20135,3,1672319027),(91826,4,20136,3,1672319027),(91827,4,20137,3,1672319027),(91828,4,20138,3,1672319027),(91829,4,20139,3,1672319027),(91830,4,20140,3,1672319027),(91831,4,20141,3,1672319027),(91832,4,20142,3,1672319027),(91833,4,20143,3,1672319027),(91834,4,20144,3,1672319027),(91835,4,20145,3,1672319027),(91836,4,20146,3,1672319027),(91837,4,20147,3,1672319027),(91838,4,20148,3,1672319027),(91839,4,20149,3,1672319027),(91840,4,20150,3,1672319027),(91841,4,20151,3,1672319027),(91842,4,20152,3,1672319027),(91843,4,20153,3,1672319027),(91844,4,20154,3,1672319027),(91845,4,20155,3,1672319027),(91846,4,20156,3,1672319027),(91847,4,20157,3,1672319027),(91848,4,20158,3,1672319027),(91849,4,20159,3,1672319027),(91850,4,20160,3,1672319027),(91851,4,20161,3,1672319027),(91852,4,20162,3,1672319027),(91853,4,20163,3,1672319027),(91854,4,20164,3,1672319027),(91855,4,20165,3,1672319027),(91856,4,20166,3,1672319027),(91857,4,20167,3,1672319027),(91858,4,20168,3,1672319027),(91859,4,20169,3,1672319027),(91860,4,20170,3,1672319027),(91861,4,20171,3,1672319027),(91862,4,20172,3,1672319027),(91863,4,20173,3,1672319027),(91864,4,20174,3,1672319027),(91865,4,20175,3,1672319027),(91866,4,20176,3,1672319027),(91867,4,20177,3,1672319027),(91868,4,20178,3,1672319027),(91869,4,20179,3,1672319027),(91870,4,20180,3,1672319027),(91871,4,20181,3,1672319027),(91872,4,20182,3,1672319027),(91873,4,20183,3,1672319027),(91874,4,20184,3,1672319027),(91875,4,20185,3,1672319027),(91876,4,20186,3,1672319027),(91877,4,20187,3,1672319027),(91878,4,20188,3,1672319027),(91879,4,20189,3,1672319027),(91880,4,20190,3,1672319027),(91881,4,20191,3,1672319027),(91882,4,20192,3,1672319027),(91883,4,20193,3,1672319027),(91884,4,20194,3,1672319027),(91885,4,20195,3,1672319027),(91886,4,20196,3,1672319027),(91887,4,20197,3,1672319027),(91888,4,20198,3,1672319027),(91889,4,20199,3,1672319027),(91890,4,20200,3,1672319027),(91891,4,20201,3,1672319027),(91892,4,20202,3,1672319027),(91893,4,20203,3,1672319027),(91894,4,20204,3,1672319027),(91895,4,20205,3,1672319027),(91896,4,20206,3,1672319027),(91897,4,20207,3,1672319027),(91898,4,20208,3,1672319027),(91899,4,20209,3,1672319027),(91900,4,20210,3,1672319027),(91901,4,20211,3,1672319027),(91902,4,20212,3,1672319027),(91903,4,20213,3,1672319027),(91904,4,20214,3,1672319027),(91905,4,20215,3,1672319027),(91906,4,20216,3,1672319027),(91907,4,20217,3,1672319027),(91908,4,20218,3,1672319027),(91909,4,20219,3,1672319027),(91910,4,20220,3,1672319027),(91911,4,20221,3,1672319027),(91912,4,20222,3,1672319027),(91913,4,20223,3,1672319027),(91914,4,20224,3,1672319027),(91915,4,20225,3,1672319027),(91916,4,20226,3,1672319027),(91917,4,20227,3,1672319027),(91918,4,20228,3,1672319027),(91919,4,20229,3,1672319027),(91920,4,20230,3,1672319027),(91921,4,20231,3,1672319027),(91922,4,20232,3,1672319027),(91923,4,20233,3,1672319027),(91924,4,20234,3,1672319027),(91925,4,20235,3,1672319027),(91926,4,20236,3,1672319027),(91927,4,20237,3,1672319027),(91928,4,20238,3,1672319027),(91929,4,20239,3,1672319027),(91930,4,20240,3,1672319027),(91931,4,20241,3,1672319027),(91932,4,20242,3,1672319027),(91933,4,20243,3,1672319027),(91934,4,20244,3,1672319027),(91935,4,20245,3,1672319027),(91936,4,20246,3,1672319027),(91937,4,20247,3,1672319027),(91938,4,20248,3,1672319027),(91939,4,20249,3,1672319027),(91940,4,20250,3,1672319027),(91941,4,20251,3,1672319027),(91942,4,20252,3,1672319027),(91943,4,20253,3,1672319027),(91944,4,20254,3,1672319027),(91945,4,20255,3,1672319027),(91946,4,20256,3,1672319027),(91947,4,20257,3,1672319027),(91948,4,20258,3,1672319027),(91949,4,20259,3,1672319027),(91950,4,20260,3,1672319027),(91951,4,20261,3,1672319027),(91952,4,20262,3,1672319027),(91953,4,20263,3,1672319027),(91954,4,20264,3,1672319027),(91955,4,20265,3,1672319027),(91956,4,20266,3,1672319027),(91957,4,20267,3,1672319027),(91958,4,20268,3,1672319027),(91959,4,20269,3,1672319027),(91960,4,20270,3,1672319027),(91961,4,20271,3,1672319027),(91962,4,20272,3,1672319027),(91963,4,20273,3,1672319027),(91964,4,20274,3,1672319027),(91965,4,20275,3,1672319027),(91966,4,20276,3,1672319027),(91967,4,20277,3,1672319027),(91968,4,20278,3,1672319027),(91969,4,20279,3,1672319027),(91970,4,20280,3,1672319027),(91971,4,20281,3,1672319027),(91972,4,20282,3,1672319027),(91973,4,20283,3,1672319027),(91974,4,20284,3,1672319027),(91975,4,20285,3,1672319027),(91976,4,20286,3,1672319027),(91977,4,20287,3,1672319027),(91978,4,20288,3,1672319027),(91979,4,20289,3,1672319027),(91980,4,20290,3,1672319027),(91981,4,20291,3,1672319027),(91982,4,20292,3,1672319027),(91983,4,20293,3,1672319027),(91984,4,20294,3,1672319027),(91985,4,20295,3,1672319027),(91986,4,20296,3,1672319027),(91987,4,20297,3,1672319027),(91988,4,20298,3,1672319027),(91989,4,20299,3,1672319027),(91990,4,20300,3,1672319027),(91991,4,20301,3,1672319027),(91992,4,20302,3,1672319027),(91993,4,20303,3,1672319027),(91994,4,20304,3,1672319027),(91995,4,20305,3,1672319027),(91996,4,20306,3,1672319027),(91997,4,20307,3,1672319027),(91998,4,20308,3,1672319027),(91999,4,20309,3,1672319027),(92000,4,20310,3,1672319027),(92001,4,20311,3,1672319027),(92002,4,20312,3,1672319027),(92003,4,20313,3,1672319027),(92004,4,20314,3,1672319027),(92005,4,20315,3,1672319027),(92006,4,20316,3,1672319027),(92007,4,20317,3,1672319027),(92008,4,20318,3,1672319027),(92009,4,20319,3,1672319027),(92010,4,20320,3,1672319027),(92011,4,20321,3,1672319027),(92012,4,20322,3,1672319027),(92013,4,20323,3,1672319027),(92014,4,20324,3,1672319027),(92015,4,20325,3,1672319027),(92016,4,20326,3,1672319027),(92017,4,20327,3,1672319027),(92018,4,20328,3,1672319027),(92019,4,20329,3,1672319027),(92020,4,20330,3,1672319027),(92021,4,20331,3,1672319027),(92022,4,20332,3,1672319027),(92023,4,20333,3,1672319027),(92024,4,20334,3,1672319027),(92025,4,20335,3,1672319027),(92026,4,20336,3,1672319027),(92027,4,20337,3,1672319027),(92028,4,20338,3,1672319027),(92029,4,20339,3,1672319027),(92030,4,20340,3,1672319027),(92031,4,20341,3,1672319027),(92032,4,20342,3,1672319027),(92033,4,20343,3,1672319027),(92034,4,20344,3,1672319027),(92035,4,20345,3,1672319027),(92036,4,20346,3,1672319027),(92037,4,20347,3,1672319027),(92038,4,20348,3,1672319027),(92039,4,20349,3,1672319027),(92040,4,20350,3,1672319027),(92041,4,20351,3,1672319027),(92042,4,20352,3,1672319027),(92043,4,20353,3,1672319027),(92044,4,20354,3,1672319027),(92045,4,20355,3,1672319027),(92046,4,20356,3,1672319027),(92047,4,20357,3,1672319027),(92048,4,20358,3,1672319027),(92049,4,20359,3,1672319027),(92050,4,20360,3,1672319027),(92051,4,20361,3,1672319027),(92052,4,20362,3,1672319027),(92053,4,20363,3,1672319027),(92054,4,20364,3,1672319027),(92055,4,20365,3,1672319027),(92056,4,20366,3,1672319027),(92057,4,20367,3,1672319027),(92058,4,20368,3,1672319027),(92059,4,20369,3,1672319027),(92060,4,20370,3,1672319027),(92061,4,20371,3,1672319027),(92062,4,20372,3,1672319027),(92063,4,20373,3,1672319027),(92064,4,20374,3,1672319027),(92065,4,20375,3,1672319027),(92066,4,20376,3,1672319027),(92067,4,20377,3,1672319027),(92068,4,20378,3,1672319027),(92069,4,20379,3,1672319027),(92070,4,20380,3,1672319027),(92071,4,20381,3,1672319027),(92072,4,20382,3,1672319027),(92073,4,20383,3,1672319027),(92074,4,20384,3,1672319027),(92075,4,20385,3,1672319027),(92076,4,20386,3,1672319027),(92077,4,20387,3,1672319027),(92078,4,20388,3,1672319027),(92079,4,20389,3,1672319027),(92080,4,20390,3,1672319027),(92081,4,20391,3,1672319027),(92082,4,20392,3,1672319027),(92083,4,20393,3,1672319027),(92084,4,20394,3,1672319027),(92085,4,20395,3,1672319027),(92086,4,20396,3,1672319027),(92087,4,20397,3,1672319027),(92088,4,20398,3,1672319027),(92089,4,20399,3,1672319027),(92090,4,20400,3,1672319027),(92091,4,20401,3,1672319027),(92092,4,20402,3,1672319027),(92093,4,20403,3,1672319027),(92094,4,20404,3,1672319027),(92095,4,20405,3,1672319027),(92096,4,20406,3,1672319027),(92097,4,20407,3,1672319027),(92098,4,20408,3,1672319027),(92099,4,20409,3,1672319027),(92100,4,20410,3,1672319027),(92101,4,20411,3,1672319027),(92102,4,20412,3,1672319027),(92103,4,20477,3,1672319027),(92104,4,20478,3,1672319027),(92105,4,20479,3,1672319027),(92106,4,20480,3,1672319027),(92107,4,20481,3,1672319027),(92108,4,20482,3,1672319027),(92109,4,20483,3,1672319027),(92110,4,20484,3,1672319027),(92111,4,20485,3,1672319027),(92112,4,20486,3,1672319027),(92113,4,20487,3,1672319027),(92114,4,20488,3,1672319027),(92115,4,20489,3,1672319027),(92116,4,20490,3,1672319027),(92117,4,20491,3,1672319027),(92118,4,20492,3,1672319027),(92119,4,20493,3,1672319027),(92120,4,20494,3,1672319027),(92121,4,20495,3,1672319027),(92122,4,20496,3,1672319027),(92123,4,20497,3,1672319027),(92124,4,20498,3,1672319027),(92125,4,20499,3,1672319027),(92126,4,20500,3,1672319027),(92127,4,20501,3,1672319027),(92128,4,20502,3,1672319027),(92129,4,20503,3,1672319027),(92130,4,20504,3,1672319027),(92131,4,20505,3,1672319027),(92132,4,20506,3,1672319027),(92133,4,20507,3,1672319027),(92134,4,20508,3,1672319027),(92135,4,20509,3,1672319027),(92136,4,20510,3,1672319027),(92137,4,20511,3,1672319027),(92138,4,20512,3,1672319027),(92139,4,20513,3,1672319027),(92140,4,20514,3,1672319027),(92141,4,20515,3,1672319027),(92142,4,20516,3,1672319027),(92143,4,20517,3,1672319027),(92144,4,20518,3,1672319027),(92145,4,20519,3,1672319027),(92146,4,20520,3,1672319027),(92147,4,20521,3,1672319027),(92148,4,20522,3,1672319027),(92149,4,20523,3,1672319027),(92150,4,20524,3,1672319027),(92151,4,20525,3,1672319027),(92152,4,20526,3,1672319027),(92153,4,20527,3,1672319027),(92154,4,20528,3,1672319027),(92155,4,20529,3,1672319027),(92156,4,20530,3,1672319027),(92157,4,20531,3,1672319027),(92158,4,20532,3,1672319027),(92159,4,20533,3,1672319027),(92160,4,20534,3,1672319027),(92161,4,20535,3,1672319027),(92162,4,20536,3,1672319027),(92163,4,20537,3,1672319027),(92164,4,20538,3,1672319027),(92165,4,20539,3,1672319027),(92166,4,20540,3,1672319027),(92167,4,20541,3,1672319027),(92168,4,20542,3,1672319027),(92169,4,20543,3,1672319027),(92170,4,20544,3,1672319027),(92171,4,20545,3,1672319027),(92172,4,20546,3,1672319027),(92173,4,20547,3,1672319027),(92174,4,20548,3,1672319027),(92175,4,20549,3,1672319027),(92176,4,20550,3,1672319027),(92177,4,20551,3,1672319027),(92178,4,20552,3,1672319027),(92179,4,20553,3,1672319027),(92180,4,20554,3,1672319027),(92181,4,20555,3,1672319027),(92182,4,20556,3,1672319027),(92183,4,20557,3,1672319027),(92184,4,20558,3,1672319027),(92185,4,20559,3,1672319027),(92186,4,20560,3,1672319027),(92187,4,20561,3,1672319027),(92188,4,20562,3,1672319027),(92189,4,20563,3,1672319027),(92190,4,20564,3,1672319027),(92191,4,20565,3,1672319027),(92192,4,20566,3,1672319027),(92193,4,20567,3,1672319027),(92194,4,20568,3,1672319027),(92195,4,20569,3,1672319027),(92196,4,20570,3,1672319027),(92197,4,20571,3,1672319027),(92198,4,20572,3,1672319027),(92199,4,20573,3,1672319027),(92200,4,20574,3,1672319027),(92201,4,20575,3,1672319027),(92202,4,20576,3,1672319027),(92203,4,20577,3,1672319027),(92204,4,20578,3,1672319027),(92205,4,20579,3,1672319027),(92206,4,20580,3,1672319027),(92207,4,20581,3,1672319027),(92208,4,20582,3,1672319027),(92209,4,20583,3,1672319027),(92210,4,20584,3,1672319027),(92211,4,20585,3,1672319027),(92212,4,20586,3,1672319027),(92213,4,20587,3,1672319027),(92214,4,20588,3,1672319027),(92215,4,20589,3,1672319027),(92216,4,20590,3,1672319027),(92217,4,20591,3,1672319027),(92218,4,20592,3,1672319027),(92219,4,20593,3,1672319027),(92220,4,20594,3,1672319027),(92221,4,20595,3,1672319027),(92222,4,20596,3,1672319027),(92223,4,20597,3,1672319027),(92224,4,20598,3,1672319027),(92225,4,20599,3,1672319027),(92226,4,20600,3,1672319027),(92227,4,20601,3,1672319027),(92228,4,20602,3,1672319027),(92229,4,20603,3,1672319027),(92230,4,20604,3,1672319027),(92231,4,20605,3,1672319027),(92232,4,20606,3,1672319027),(92233,4,20607,3,1672319027),(92234,4,20608,3,1672319027),(92235,4,20609,3,1672319027),(92236,4,20610,3,1672319027),(92237,4,20611,3,1672319027),(92238,4,20612,3,1672319027),(92239,4,20613,3,1672319027),(92240,4,20614,3,1672319027),(92241,4,20615,3,1672319027),(92242,4,20616,3,1672319027),(92243,4,20617,3,1672319027),(92244,4,20618,3,1672319027),(92245,4,20619,3,1672319027),(92246,4,20620,3,1672319027),(92247,4,20621,3,1672319027),(92248,4,20622,3,1672319027),(92249,4,20623,3,1672319027),(92250,4,20624,3,1672319027),(92251,4,20625,3,1672319027),(92252,4,20626,3,1672319027),(92253,4,20627,3,1672319027),(92254,4,20628,3,1672319027),(92255,4,20629,3,1672319027),(92256,4,20630,3,1672319027),(92257,4,20631,3,1672319027),(92258,4,20632,3,1672319027),(92259,4,20633,3,1672319027),(92260,4,20634,3,1672319027),(92261,4,20635,3,1672319027),(92262,4,20636,3,1672319027),(92263,4,20637,3,1672319027),(92264,4,20638,3,1672319027),(92265,4,20639,3,1672319027),(92266,4,20640,3,1672319027),(92267,4,20641,3,1672319027),(92268,4,20642,3,1672319027),(92269,4,20643,3,1672319027),(92270,4,20644,3,1672319027),(92271,4,20645,3,1672319027),(92272,4,20646,3,1672319027),(92273,4,20647,3,1672319027),(92274,4,20648,3,1672319027),(92275,4,20649,3,1672319027),(92276,4,20650,3,1672319027),(92277,4,20651,3,1672319027),(92278,4,20652,3,1672319027),(92279,4,20653,3,1672319027),(92280,4,20654,3,1672319027),(92281,4,20655,3,1672319027),(92282,4,20656,3,1672319027),(92283,4,20657,3,1672319027),(92284,4,20658,3,1672319027),(92285,4,20659,3,1672319027),(92286,4,20660,3,1672319027),(92287,4,20661,3,1672319027),(92288,4,20662,3,1672319027),(92289,4,20663,3,1672319027),(92290,4,20664,3,1672319027),(92291,4,20665,3,1672319027),(92292,4,20666,3,1672319027),(92293,4,20667,3,1672319027),(92294,4,20668,3,1672319027),(92295,4,20669,3,1672319027),(92296,4,20670,3,1672319027),(92297,4,20671,3,1672319027),(92298,4,20672,3,1672319027),(92299,4,20673,3,1672319027),(92300,4,20674,3,1672319027),(92301,4,20675,3,1672319027),(92302,4,20676,3,1672319027),(92303,4,20677,3,1672319027),(92304,4,20678,3,1672319027),(92305,4,20679,3,1672319027),(92306,4,20680,3,1672319027),(92307,4,20681,3,1672319027),(92308,4,20682,3,1672319027),(92309,4,20683,3,1672319027),(92310,4,20684,3,1672319027),(92311,4,20685,3,1672319027),(92312,4,20686,3,1672319027),(92313,4,20687,3,1672319027),(92314,4,20688,3,1672319027),(92315,4,20689,3,1672319027),(92316,4,20690,3,1672319027),(92317,4,20691,3,1672319027),(92318,4,20692,3,1672319027),(92319,4,20693,3,1672319027),(92320,4,20694,3,1672319027),(92321,4,20695,3,1672319027),(92322,4,20696,3,1672319027),(92323,4,20697,3,1672319027),(92324,4,20698,3,1672319027),(92325,4,20699,3,1672319027),(92326,4,20700,3,1672319027),(92327,4,20701,3,1672319027),(92328,4,20702,3,1672319027),(92329,4,20703,3,1672319027),(92330,4,20704,3,1672319027),(92331,4,20705,3,1672319027),(92332,4,20706,3,1672319027),(92333,4,20707,3,1672319027),(92334,4,20708,3,1672319027),(92335,4,20709,3,1672319027),(92336,4,20710,3,1672319027),(92337,4,20711,3,1672319027),(92338,4,20712,3,1672319027),(92339,4,20713,3,1672319027),(92340,4,20714,3,1672319027),(92341,4,20715,3,1672319027),(92342,4,20716,3,1672319027),(92343,4,20717,3,1672319027),(92344,4,20718,3,1672319027),(92345,4,20719,3,1672319027),(92346,4,20720,3,1672319027),(92347,4,20721,3,1672319027),(92348,4,20722,3,1672319027),(92349,4,20723,3,1672319027),(92350,4,20724,3,1672319027),(92351,4,20725,3,1672319027),(92352,4,20726,3,1672319027),(92353,4,20727,3,1672319027),(92354,4,20728,3,1672319027),(92355,4,20729,3,1672319027),(92356,4,20730,3,1672319027),(92357,4,20731,3,1672319027),(92358,4,20732,3,1672319027),(92359,4,20733,3,1672319027),(92360,4,20734,3,1672319027),(92361,4,20735,3,1672319027),(92362,4,20736,3,1672319027),(92363,4,20737,3,1672319027),(92364,4,20738,3,1672319027),(92365,4,20739,3,1672319027),(92366,4,20740,3,1672319027),(92367,4,20741,3,1672319027),(92368,4,20742,3,1672319027),(92369,4,20743,3,1672319027),(92370,4,20744,3,1672319027),(92371,4,20745,3,1672319027),(92372,4,20746,3,1672319027),(92373,4,20747,3,1672319027),(92374,4,20748,3,1672319027),(92375,4,20749,3,1672319027),(92376,4,20750,3,1672319027),(92377,4,20751,3,1672319027),(92378,4,20752,3,1672319027),(92379,4,20753,3,1672319027),(92380,4,20754,3,1672319027),(92381,4,20755,3,1672319027),(92382,4,20756,3,1672319027),(92383,4,20757,3,1672319027),(92384,4,20758,3,1672319027),(92385,4,20759,3,1672319027),(92386,4,20760,3,1672319027),(92387,4,20761,3,1672319027),(92388,4,20762,3,1672319027),(92389,4,20763,3,1672319027),(92390,4,20764,3,1672319027),(92391,4,20765,3,1672319027),(92392,4,20766,3,1672319027),(92393,4,20767,3,1672319027),(92394,4,20768,3,1672319027),(92395,4,20769,3,1672319027),(92396,4,20770,3,1672319027),(92397,4,20771,3,1672319027),(92398,4,20772,3,1672319027),(92399,4,20773,3,1672319027),(92400,4,20774,3,1672319027),(92401,4,20775,3,1672319027),(92402,4,20776,3,1672319027),(92403,4,20777,3,1672319027),(92404,4,20778,3,1672319027),(92405,4,20779,3,1672319027),(92406,4,20780,3,1672319027),(92407,4,20781,3,1672319027),(92408,4,20782,3,1672319027),(92409,4,20783,3,1672319027),(92410,4,20784,3,1672319027),(92411,4,20785,3,1672319027),(92412,4,20786,3,1672319027),(92413,4,20787,3,1672319027),(92414,4,20788,3,1672319027),(92415,4,20789,3,1672319027),(92416,4,20790,3,1672319027),(92417,4,20791,3,1672319027),(92418,4,20792,3,1672319027),(92419,4,20793,3,1672319027),(92420,4,20794,3,1672319027),(92421,4,20795,3,1672319027),(92422,4,20796,3,1672319027),(92423,4,20797,3,1672319027),(92424,4,20798,3,1672319027),(92425,4,20799,3,1672319027),(92426,4,20800,3,1672319027),(92427,4,20801,3,1672319027),(92428,4,20802,3,1672319027),(92429,4,20803,3,1672319027),(92430,4,20804,3,1672319027),(92431,4,20805,3,1672319027),(92432,4,20806,3,1672319027),(92433,4,20807,3,1672319027),(92434,4,20808,3,1672319027),(92435,4,20809,3,1672319027),(92436,4,20810,3,1672319027),(92437,4,20811,3,1672319027),(92438,4,20812,3,1672319027),(92439,4,20813,3,1672319027),(92440,4,20814,3,1672319027),(92441,4,20815,3,1672319027),(92442,4,20816,3,1672319027),(92443,4,20817,3,1672319027),(92444,4,20818,3,1672319027),(92445,4,20819,3,1672319027),(92446,4,20820,3,1672319027),(92447,4,20821,3,1672319027),(92448,4,20822,3,1672319027),(92449,4,20823,3,1672319027),(92450,4,20824,3,1672319027),(92451,4,20825,3,1672319027),(92452,4,20826,3,1672319027),(92453,4,20827,3,1672319027),(92454,4,20828,3,1672319027),(92455,4,20829,3,1672319027),(92456,4,20830,3,1672319027),(92457,4,20831,3,1672319027),(92458,4,20832,3,1672319027),(92459,4,20833,3,1672319027),(92460,4,20834,3,1672319027),(92461,4,20835,3,1672319027),(92462,4,20836,3,1672319027),(92463,4,20837,3,1672319027),(92464,4,20838,3,1672319027),(92465,4,20839,3,1672319027),(92466,4,20840,3,1672319027),(92467,4,20841,3,1672319027),(92468,4,20842,3,1672319027),(92469,4,20843,3,1672319027),(92470,4,20844,3,1672319027),(92471,4,20845,3,1672319027),(92472,4,20846,3,1672319027),(92473,4,20847,3,1672319027),(92474,4,20848,3,1672319027),(92475,4,20849,3,1672319027),(92476,4,20850,3,1672319027),(92477,4,20851,3,1672319027),(92478,4,20852,3,1672319027),(92479,4,20853,3,1672319027),(92480,4,20854,3,1672319027),(92481,4,20855,3,1672319027),(92482,4,20856,3,1672319027),(92483,4,20857,3,1672319027),(92484,4,20858,3,1672319027),(92485,4,20859,3,1672319027),(92486,4,20860,3,1672319027),(92487,4,20861,3,1672319027),(92488,4,20862,3,1672319027),(92489,4,20863,3,1672319027),(92490,4,20864,3,1672319027),(92491,4,20865,3,1672319027),(92492,4,20866,3,1672319027),(92493,4,20867,3,1672319027),(92494,4,20868,3,1672319027),(92495,4,20869,3,1672319027),(92496,4,20870,3,1672319027),(92497,4,20871,3,1672319027),(92498,4,20872,3,1672319027),(92499,4,20873,3,1672319027),(92500,4,20874,3,1672319027),(92501,4,20875,3,1672319027),(92502,4,20876,3,1672319027),(92503,4,20877,3,1672319027),(92504,4,20878,3,1672319027),(92505,4,20879,3,1672319027),(92506,4,20880,3,1672319027),(92507,4,20881,3,1672319027),(92508,4,20882,3,1672319027),(92509,4,20883,3,1672319027),(92510,4,20884,3,1672319027),(92511,4,20885,3,1672319027),(92512,4,20886,3,1672319027),(92513,4,20887,3,1672319027),(92514,4,20888,3,1672319027),(92515,4,20889,3,1672319027),(92516,4,20890,3,1672319027),(92517,4,20891,3,1672319027),(92518,4,20892,3,1672319027),(92519,4,20893,3,1672319027),(92520,4,20894,3,1672319027),(92521,4,20895,3,1672319027),(92522,4,20896,3,1672319027),(92523,4,20897,3,1672319027),(92524,4,20898,3,1672319027),(92525,4,20899,3,1672319027),(92526,4,20900,3,1672319027),(92527,4,20901,3,1672319027),(92528,4,20902,3,1672319027),(92529,4,20903,3,1672319027),(92530,4,20904,3,1672319027),(92531,4,20905,3,1672319027),(92532,4,20906,3,1672319027),(92533,4,20907,3,1672319027),(92534,4,20908,3,1672319027),(92535,4,20909,3,1672319027),(92536,4,20910,3,1672319027),(92537,4,20911,3,1672319027),(92538,4,20912,3,1672319027),(92539,4,20913,3,1672319027),(92540,4,20914,3,1672319027),(92541,4,20915,3,1672319027),(92542,4,20916,3,1672319027),(92543,4,20917,3,1672319027),(92544,4,20918,3,1672319027),(92545,4,20919,3,1672319027),(92546,4,20920,3,1672319027),(92547,4,20921,3,1672319027),(92548,4,20922,3,1672319027),(92549,4,20923,3,1672319027),(92550,4,20924,3,1672319027),(92551,4,20925,3,1672319027),(92552,4,20926,3,1672319027),(92553,4,20927,3,1672319027),(92554,4,20928,3,1672319027),(92555,4,20929,3,1672319027),(92556,4,20930,3,1672319027),(92557,4,20931,3,1672319027),(92558,4,20932,3,1672319027),(92559,4,20933,3,1672319027),(92560,4,20934,3,1672319027),(92561,4,20935,3,1672319027),(92562,4,20936,3,1672319027),(92563,4,20937,3,1672319027),(92564,4,20938,3,1672319027),(92565,4,20939,3,1672319027),(92566,4,20940,3,1672319027),(92567,4,20941,3,1672319027),(92568,4,20942,3,1672319027),(92569,4,20943,3,1672319027),(92570,4,20944,3,1672319027),(92571,4,20945,3,1672319027),(92572,4,20946,3,1672319027),(92573,4,20947,3,1672319027),(92574,4,20948,3,1672319027),(92575,4,20949,3,1672319027),(92576,4,20950,3,1672319027),(92577,4,20951,3,1672319027),(92578,4,20952,3,1672319027),(92579,4,20953,3,1672319027),(92580,4,20954,3,1672319027),(92581,4,20955,3,1672319027),(92582,4,20956,3,1672319027),(92583,4,20957,3,1672319027),(92584,4,20958,3,1672319027),(92585,4,20959,3,1672319027),(92586,4,20960,3,1672319027),(92587,4,20961,3,1672319027),(92588,4,20962,3,1672319027),(92589,4,20963,3,1672319027),(92590,4,20964,3,1672319027),(92591,4,20965,3,1672319027),(92592,4,20966,3,1672319027),(92593,4,20967,3,1672319027),(92594,4,20968,3,1672319027),(92595,4,20969,3,1672319027),(92596,4,20970,3,1672319027),(92597,4,20971,3,1672319027),(92598,4,20972,3,1672319027),(92599,4,20973,3,1672319027),(92600,4,20974,3,1672319027),(92601,4,20975,3,1672319027),(92602,4,20976,3,1672319027),(92603,4,20977,3,1672319027),(92604,4,20978,3,1672319027),(92605,4,20979,3,1672319027),(92606,4,20980,3,1672319027),(92607,4,20981,3,1672319027),(92608,4,20982,3,1672319027),(92609,4,20983,3,1672319027),(92610,4,20984,3,1672319027),(92611,4,20985,3,1672319027),(92612,4,20986,3,1672319027),(92613,4,20987,3,1672319027),(92614,4,20988,3,1672319027),(92615,4,20989,3,1672319027),(92616,4,20990,3,1672319027),(92617,4,20991,3,1672319027),(92618,4,20992,3,1672319027),(92619,4,20993,3,1672319027),(92620,4,20994,3,1672319027),(92621,4,20995,3,1672319027),(92622,4,20996,3,1672319027),(92623,4,20997,3,1672319027),(92624,4,20998,3,1672319027),(92625,4,20999,3,1672319027),(92626,4,21000,3,1672319027),(92627,4,21001,3,1672319027),(92628,4,21002,3,1672319027),(92629,4,21003,3,1672319027),(92630,4,21004,3,1672319027),(92631,4,21005,3,1672319027),(92632,4,21006,3,1672319027),(92633,4,21007,3,1672319027),(92634,4,21008,3,1672319027),(92635,4,21009,3,1672319027),(92636,4,21010,3,1672319027),(92637,4,21011,3,1672319027),(92638,4,21012,3,1672319027),(92639,4,21013,3,1672319027),(92640,4,21014,3,1672319027),(92641,4,21015,3,1672319027),(92642,4,21016,3,1672319027),(92643,4,21017,3,1672319027),(92644,4,21018,3,1672319027),(92645,4,21019,3,1672319027),(92646,4,21020,3,1672319027),(92647,4,21021,3,1672319027),(92648,4,21022,3,1672319027),(92649,4,21023,3,1672319027),(92650,4,21024,3,1672319027),(92651,4,21025,3,1672319027),(92652,4,21026,3,1672319027),(92653,4,21027,3,1672319027),(92654,4,21028,3,1672319027),(92655,4,21029,3,1672319027),(92656,4,21030,3,1672319027),(92657,4,21031,3,1672319027),(92658,4,21032,3,1672319027),(92659,4,21033,3,1672319027),(92660,4,21034,3,1672319027),(92661,4,21035,3,1672319027),(92662,4,21036,3,1672319027),(92663,4,21037,3,1672319027),(92664,4,21038,3,1672319027),(92665,4,21039,3,1672319027),(92666,4,21040,3,1672319027),(92667,4,21041,3,1672319027),(92668,4,21042,3,1672319027),(92669,4,21043,3,1672319027),(92670,4,21044,3,1672319027),(92671,4,21045,3,1672319027),(92672,4,21046,3,1672319027),(92673,4,21047,3,1672319027),(92674,4,21048,3,1672319027),(92675,4,21049,3,1672319027),(92676,4,21050,3,1672319027),(92677,4,21051,3,1672319027),(92678,4,21052,3,1672319027),(92679,4,21053,3,1672319027),(92680,4,21054,3,1672319027),(92681,4,21055,3,1672319027),(92682,4,21056,3,1672319027),(92683,4,21057,3,1672319027),(92684,4,21058,3,1672319027),(92685,4,21059,3,1672319027),(92686,4,21060,3,1672319027),(92687,4,21061,3,1672319027),(92688,4,21062,3,1672319027),(92689,4,21063,3,1672319027),(92690,4,21064,3,1672319027),(92691,4,21065,3,1672319027),(92692,4,21066,3,1672319027),(92693,4,21067,3,1672319027),(92694,4,21068,3,1672319027),(92695,4,21069,3,1672319027),(92696,4,21070,3,1672319027),(92697,4,21071,3,1672319027),(92698,4,21072,3,1672319027),(92699,4,21073,3,1672319027),(92700,4,21074,3,1672319027),(92701,4,21075,3,1672319027),(92702,4,21076,3,1672319027),(92703,4,21077,3,1672319027),(92704,4,21078,3,1672319027),(92705,4,21079,3,1672319027),(92706,4,21080,3,1672319027),(92707,4,21081,3,1672319027),(92708,4,21082,3,1672319027),(92709,4,21083,3,1672319027),(92710,4,21084,3,1672319027),(92711,4,21085,3,1672319027),(92712,4,21086,3,1672319027),(92713,4,21087,3,1672319027),(92714,4,21088,3,1672319027),(92715,4,21089,3,1672319027),(92716,4,21090,3,1672319027),(92717,4,21091,3,1672319027),(92718,4,21092,3,1672319027),(92719,4,21093,3,1672319027),(92720,4,21094,3,1672319027),(92721,4,21095,3,1672319027),(92722,4,21096,3,1672319027),(92723,4,21097,3,1672319027),(92724,4,21098,3,1672319027),(92725,4,21099,3,1672319027),(92726,4,21100,3,1672319027),(92727,4,21101,3,1672319027),(92728,4,21102,3,1672319027),(92729,4,21103,3,1672319027),(92730,4,21104,3,1672319027),(92731,4,21105,3,1672319027),(92732,4,21106,3,1672319027),(92733,4,21107,3,1672319027),(92734,4,21108,3,1672319027),(92735,4,21109,3,1672319027),(92736,4,21110,3,1672319027),(92737,4,21111,3,1672319027),(92738,4,21112,3,1672319027),(92739,4,21113,3,1672319027),(92740,4,21114,3,1672319027),(92741,4,21115,3,1672319027),(92742,4,21116,3,1672319027),(92743,4,21117,3,1672319027),(92744,4,21118,3,1672319027),(92745,4,21119,3,1672319027),(92746,4,21120,3,1672319027),(92747,4,21121,3,1672319027),(92748,4,21122,3,1672319027),(92749,4,21123,3,1672319027),(92750,4,21124,3,1672319027),(92751,4,21125,3,1672319027),(92752,4,21126,3,1672319027),(92753,4,21127,3,1672319027),(92754,4,21128,3,1672319027),(92755,4,21129,3,1672319027),(92756,4,21130,3,1672319027),(92757,4,21131,3,1672319027),(92758,4,21132,3,1672319027),(92759,4,21133,3,1672319027),(92760,4,21134,3,1672319027),(92761,4,21135,3,1672319027),(92762,4,21136,3,1672319027),(92763,4,21137,3,1672319027),(92764,4,21138,3,1672319027),(92765,4,21139,3,1672319027),(92766,4,21140,3,1672319027),(92767,4,21141,3,1672319027),(92768,4,21142,3,1672319027),(92769,4,21143,3,1672319027),(92770,4,21144,3,1672319027),(92771,4,21145,3,1672319027),(92772,4,21146,3,1672319027),(92773,4,21147,3,1672319027),(92774,4,21148,3,1672319027),(92775,4,21149,3,1672319027),(92776,4,21150,3,1672319027),(92777,4,21151,3,1672319027),(92778,4,21152,3,1672319027),(92779,4,21153,3,1672319027),(92780,4,21154,3,1672319027),(92781,4,21155,3,1672319027),(92782,4,21156,3,1672319027),(92783,4,21157,3,1672319027),(92784,4,21158,3,1672319027),(92785,4,21159,3,1672319027),(92786,4,21160,3,1672319027),(92787,4,21161,3,1672319027),(92788,4,21162,3,1672319027),(92789,4,21163,3,1672319027),(92790,4,21164,3,1672319027),(92791,4,21165,3,1672319027),(92792,4,21166,3,1672319027),(92793,4,21167,3,1672319027),(92794,4,21168,3,1672319027),(92795,4,21169,3,1672319027),(92796,4,21170,3,1672319027),(92797,4,21171,3,1672319027),(92798,4,21172,3,1672319027),(92799,4,21173,3,1672319027),(92800,4,21174,3,1672319027),(92801,4,21175,3,1672319027),(92802,4,21176,3,1672319027),(92803,4,21177,3,1672319027),(92804,4,21178,3,1672319027),(92805,4,21179,3,1672319027),(92806,4,21180,3,1672319027),(92807,4,21181,3,1672319027),(92808,4,21182,3,1672319027),(92809,4,21183,3,1672319027),(92810,4,21184,3,1672319027),(92811,4,21185,3,1672319027),(92812,4,21186,3,1672319027),(92813,4,21187,3,1672319027),(92814,4,21188,3,1672319027),(92815,4,21189,3,1672319027),(92816,4,21190,3,1672319027),(92817,4,21191,3,1672319027),(92818,4,21192,3,1672319027),(92819,4,21193,3,1672319027),(92820,4,21194,3,1672319027),(92821,4,21195,3,1672319027),(92822,4,21196,3,1672319027),(92823,4,21197,3,1672319027),(92824,4,21198,3,1672319027),(92825,4,21199,3,1672319027),(92826,4,21200,3,1672319027),(92827,4,21201,3,1672319027),(92828,4,21202,3,1672319027),(92829,4,21203,3,1672319027),(92830,4,21204,3,1672319027),(92831,4,21205,3,1672319027),(92832,4,21206,3,1672319027),(92833,4,21207,3,1672319027),(92834,4,21208,3,1672319027),(92835,4,21209,3,1672319027),(92836,4,21210,3,1672319027),(92837,4,21211,3,1672319027),(92838,4,21212,3,1672319027),(92839,4,21213,3,1672319027),(92840,4,21214,3,1672319027),(92841,4,21215,3,1672319027),(92842,4,21216,3,1672319027),(92843,4,21217,3,1672319027),(92844,4,21218,3,1672319027),(92845,4,21219,3,1672319027),(92846,4,21220,3,1672319027),(92847,4,21221,3,1672319027),(92848,4,21222,3,1672319027),(92849,4,21223,3,1672319027),(92850,4,21224,3,1672319027),(92851,4,21225,3,1672319027),(92852,4,21226,3,1672319027),(92853,4,21227,3,1672319027),(92854,4,21228,3,1672319027),(92855,4,21229,3,1672319027),(92856,4,21230,3,1672319027),(92857,4,21231,3,1672319027),(92858,4,21232,3,1672319027),(92859,4,21233,3,1672319027),(92860,4,21234,3,1672319027),(92861,4,21235,3,1672319027),(92862,4,21236,3,1672319027),(92863,4,21237,3,1672319027),(92864,4,21238,3,1672319027),(92865,4,21239,3,1672319027),(92866,4,21240,3,1672319027),(92867,4,21241,3,1672319027),(92868,4,21242,3,1672319027),(92869,4,21243,3,1672319027),(92870,4,21244,3,1672319027),(92871,4,21245,3,1672319027),(92872,4,21246,3,1672319027),(92873,4,21247,3,1672319027),(92874,4,21248,3,1672319027),(92875,4,21249,3,1672319027),(92876,4,21250,3,1672319027),(92877,4,21251,3,1672319027),(92878,4,21252,3,1672319027),(92879,4,21253,3,1672319027),(92880,4,21254,3,1672319027),(92881,4,21255,3,1672319027),(92882,4,21256,3,1672319027),(92883,4,21257,3,1672319027),(92884,4,21258,3,1672319027),(92885,4,21259,3,1672319027),(92886,4,21260,3,1672319027),(92887,4,21261,3,1672319027),(92888,4,21262,3,1672319027),(92889,4,21263,3,1672319027),(92890,4,21264,3,1672319027),(92891,4,21265,3,1672319027),(92892,4,21266,3,1672319027),(92893,4,21267,3,1672319027),(92894,4,21268,3,1672319027),(92895,4,21269,3,1672319027),(92896,4,21270,3,1672319027),(92897,4,21271,3,1672319027),(92898,4,21272,3,1672319027),(92899,4,21273,3,1672319027),(92900,4,21274,3,1672319027),(92901,4,21275,3,1672319027),(92902,4,21276,3,1672319027),(92903,4,21277,3,1672319027),(92904,4,21278,3,1672319027),(92905,4,21279,3,1672319027),(92906,4,21280,3,1672319027),(92907,4,21281,3,1672319027),(92908,4,21282,3,1672319027),(92909,4,21283,3,1672319027),(92910,4,21284,3,1672319027),(92911,4,21285,3,1672319027),(92912,4,21286,3,1672319027),(92913,4,21287,3,1672319027),(92914,4,21288,3,1672319027),(92915,4,21289,3,1672319027),(92916,4,21290,3,1672319027),(92917,4,21291,3,1672319027),(92918,4,21292,3,1672319027),(92919,4,21293,3,1672319027),(92920,4,21294,3,1672319027),(92921,4,21295,3,1672319027),(92922,4,21296,3,1672319027),(92923,4,21297,3,1672319027),(92924,4,21298,3,1672319027),(92925,4,21299,3,1672319027),(92926,4,21300,3,1672319027),(92927,4,21301,3,1672319027),(92928,4,21302,3,1672319027),(92929,4,21303,3,1672319027),(92930,4,21304,3,1672319027),(92931,4,21305,3,1672319027),(92932,4,21306,3,1672319027),(92933,4,21307,3,1672319027),(92934,4,21308,3,1672319027),(92935,4,21309,3,1672319027),(92936,4,21310,3,1672319027),(92937,4,21311,3,1672319027),(92938,4,21312,3,1672319027),(92939,4,21313,3,1672319027),(92940,4,21314,3,1672319027),(92941,4,21315,3,1672319027),(92942,4,21316,3,1672319027),(92943,4,21317,3,1672319027),(92944,4,21318,3,1672319027),(92945,4,21319,3,1672319027),(92946,4,21320,3,1672319027),(92947,4,21321,3,1672319027),(92948,4,21322,3,1672319027),(92949,4,21323,3,1672319027),(92950,4,21324,3,1672319027),(92951,4,21325,3,1672319027),(92952,4,21326,3,1672319027),(92953,4,21327,3,1672319027),(92954,4,21328,3,1672319027),(92955,4,21329,3,1672319027),(92956,4,21330,3,1672319027),(92957,4,21331,3,1672319027),(92958,4,21332,3,1672319027),(92959,4,21333,3,1672319027),(92960,4,21334,3,1672319027),(92961,4,21335,3,1672319027),(92962,4,21336,3,1672319027),(92963,4,21337,3,1672319027),(92964,4,21338,3,1672319027),(92965,4,21339,3,1672319027),(92966,4,21340,3,1672319027),(92967,4,21341,3,1672319027),(92968,4,21342,3,1672319027),(92969,4,21343,3,1672319027),(92970,4,21344,3,1672319027),(92971,4,21345,3,1672319027),(92972,4,21346,3,1672319027),(92973,4,21347,3,1672319027),(92974,4,21348,3,1672319027),(92975,4,21349,3,1672319027),(92976,4,21350,3,1672319027),(92977,4,21351,3,1672319027),(92978,4,21352,3,1672319027),(92979,4,21353,3,1672319027),(92980,4,21354,3,1672319027),(92981,4,21355,3,1672319027),(92982,4,21356,3,1672319027),(92983,4,21357,3,1672319027),(92984,4,21358,3,1672319027),(92985,4,21359,3,1672319027),(92986,4,21360,3,1672319027),(92987,4,21361,3,1672319027),(92988,4,21362,3,1672319027),(92989,4,21363,3,1672319027),(92990,4,21364,3,1672319027),(92991,4,21365,3,1672319027),(92992,4,21366,3,1672319027),(92993,4,21367,3,1672319027),(92994,4,21368,3,1672319027),(92995,4,21369,3,1672319027),(92996,4,21370,3,1672319027),(92997,4,21371,3,1672319027),(92998,4,21372,3,1672319027),(92999,4,21373,3,1672319027),(93000,4,21374,3,1672319027),(93001,4,21375,3,1672319027),(93002,4,21376,3,1672319027),(93003,4,21377,3,1672319027),(93004,4,21378,3,1672319027),(93005,4,21379,3,1672319027),(93006,4,21380,3,1672319027),(93007,4,21381,3,1672319027),(93008,4,21382,3,1672319027),(93009,4,21383,3,1672319027),(93010,4,21384,3,1672319027),(93011,4,21385,3,1672319027),(93012,4,21386,3,1672319027),(93013,4,21387,3,1672319027),(93014,4,21388,3,1672319027),(93015,4,21389,3,1672319027),(93016,4,21390,3,1672319027),(93017,4,21391,3,1672319027),(93018,4,21392,3,1672319027),(93019,4,21393,3,1672319027),(93020,4,21394,3,1672319027),(93021,4,21395,3,1672319027),(93022,4,21396,3,1672319027),(93023,4,21397,3,1672319027),(93024,4,21398,3,1672319027),(93025,4,21399,3,1672319027),(93026,4,21400,3,1672319027),(93027,4,21401,3,1672319027),(93028,4,21402,3,1672319027),(93029,4,21403,3,1672319027),(93030,4,21404,3,1672319027),(93031,4,21405,3,1672319027),(93032,4,21406,3,1672319027),(93033,4,21407,3,1672319027),(93034,4,21408,3,1672319027),(93035,4,21409,3,1672319027),(93036,4,21410,3,1672319027),(93037,4,21411,3,1672319027),(93038,4,21412,3,1672319027),(93039,4,21413,3,1672319027),(93040,4,21414,3,1672319027),(93041,4,21415,3,1672319027),(93042,4,21416,3,1672319027),(93043,4,21417,3,1672319027),(93044,4,21418,3,1672319027),(93045,4,21419,3,1672319027),(93046,4,21420,3,1672319027),(93047,4,21421,3,1672319027),(93048,4,21422,3,1672319027),(93049,4,21423,3,1672319027),(93050,4,21424,3,1672319027),(93051,4,21425,3,1672319027),(93052,4,21426,3,1672319027),(93053,4,21427,3,1672319027),(93054,4,21428,3,1672319027),(93055,4,21429,3,1672319027),(93056,4,21430,3,1672319027),(93057,4,21431,3,1672319027),(93058,4,21432,3,1672319027),(93059,4,21433,3,1672319027),(93060,4,21434,3,1672319027),(93061,4,21435,3,1672319027),(93062,4,21436,3,1672319027),(93063,4,21437,3,1672319027),(93064,4,21438,3,1672319027),(93065,4,21439,3,1672319027),(93066,4,21440,3,1672319027),(93067,4,21441,3,1672319027),(93068,4,21442,3,1672319027),(93069,4,21443,3,1672319027),(93070,4,21444,3,1672319027),(93071,4,21445,3,1672319027),(93072,4,21446,3,1672319027),(93073,4,21447,3,1672319027),(93074,4,21448,3,1672319027),(93075,4,21449,3,1672319027),(93076,4,21450,3,1672319027),(93077,4,21451,3,1672319027),(93078,4,21452,3,1672319027),(93079,4,21453,3,1672319027),(93080,4,21454,3,1672319027),(93081,4,21455,3,1672319027),(93082,4,21456,3,1672319027),(93083,4,21457,3,1672319027),(93084,4,21458,3,1672319027),(93085,4,21459,3,1672319027),(93086,4,21460,3,1672319027),(93087,4,21461,3,1672319027),(93088,4,21462,3,1672319027),(93089,4,21463,3,1672319027),(93090,4,21464,3,1672319027),(93091,4,21465,3,1672319027),(93092,4,21466,3,1672319027),(93093,4,21467,3,1672319027),(93094,4,21468,3,1672319027),(93095,4,21469,3,1672319027),(93096,4,21470,3,1672319027),(93097,4,21471,3,1672319027),(93098,4,21472,3,1672319027),(93099,4,21473,3,1672319027),(93100,4,21474,3,1672319027),(93101,4,21475,3,1672319027),(93102,4,21476,3,1672319027),(93103,4,21477,3,1672319027),(93104,4,21478,3,1672319027),(93105,4,21479,3,1672319027),(93106,4,21480,3,1672319027),(93107,4,21481,3,1672319027),(93108,4,21482,3,1672319027),(93109,4,21483,3,1672319027),(93110,4,21484,3,1672319027),(93111,4,21485,3,1672319027),(93112,4,21486,3,1672319027),(93113,4,21487,3,1672319027),(93114,4,21488,3,1672319027),(93115,4,21489,3,1672319027),(93116,4,21490,3,1672319027),(93117,4,21491,3,1672319027),(93118,4,21492,3,1672319027),(93119,4,21493,3,1672319027),(93120,4,21494,3,1672319027),(93121,4,21495,3,1672319027),(93122,4,21496,3,1672319027),(93123,4,21497,3,1672319027),(93124,4,21498,3,1672319027),(93125,4,21499,3,1672319027),(93126,4,21500,3,1672319027),(93127,4,21501,3,1672319027),(93128,4,21502,3,1672319027),(93129,4,21503,3,1672319027),(93130,4,21504,3,1672319027),(93131,4,21505,3,1672319027),(93132,4,21506,3,1672319027),(93133,4,21507,3,1672319027),(93134,4,21508,3,1672319027),(93135,4,21509,3,1672319027),(93136,4,21510,3,1672319027),(93137,4,21511,3,1672319027),(93138,4,21512,3,1672319027),(93139,4,21513,3,1672319027),(93140,4,21514,3,1672319027),(93141,4,21515,3,1672319027),(93142,4,21516,3,1672319027),(93143,4,21517,3,1672319027),(93144,4,21518,3,1672319027),(93145,4,21519,3,1672319027),(93146,4,21520,3,1672319027),(93147,4,21521,3,1672319027),(93148,4,21522,3,1672319027),(93149,4,21523,3,1672319027),(93150,4,21524,3,1672319027),(93151,4,21525,3,1672319027),(93152,4,21526,3,1672319027),(93153,4,21527,3,1672319027),(93154,4,21528,3,1672319027),(93155,4,21529,3,1672319027),(93156,4,21530,3,1672319027),(93157,4,21531,3,1672319027),(93158,4,21532,3,1672319027),(93159,4,21533,3,1672319027),(93160,4,21534,3,1672319027),(93161,4,21535,3,1672319027),(93162,4,21536,3,1672319027),(93163,4,21537,3,1672319027),(93164,4,21538,3,1672319027),(93165,4,21539,3,1672319027),(93166,4,21540,3,1672319027),(93167,4,21541,3,1672319027),(93168,4,21542,3,1672319027),(93169,4,21543,3,1672319027),(93170,4,21544,3,1672319027),(93171,4,21545,3,1672319027),(93172,4,21546,3,1672319027),(93173,4,21547,3,1672319027),(93174,4,21548,3,1672319027),(93175,4,21549,3,1672319027),(93176,4,21550,3,1672319027),(93177,4,21551,3,1672319027),(93178,4,21552,3,1672319027),(93179,4,21553,3,1672319027),(93180,4,21554,3,1672319027),(93181,4,21555,3,1672319027),(93182,4,21556,3,1672319027),(93183,4,21557,3,1672319027),(93184,4,21558,3,1672319027),(93185,4,21559,3,1672319027),(93186,4,21560,3,1672319027),(93187,4,21561,3,1672319027),(93188,4,21562,3,1672319027),(93189,4,21563,3,1672319027),(93190,4,21564,3,1672319027),(93191,4,21565,3,1672319027),(93192,4,21566,3,1672319027),(93193,4,21567,3,1672319027),(93194,4,21568,3,1672319027),(93195,4,21569,3,1672319027),(93196,4,21570,3,1672319027),(93197,4,21571,3,1672319027),(93198,4,21572,3,1672319027),(93199,4,21573,3,1672319027),(93200,4,21574,3,1672319027),(93201,4,21575,3,1672319027),(93202,4,21576,3,1672319027),(93203,4,21577,3,1672319027),(93204,4,21578,3,1672319027),(93205,4,21579,3,1672319027),(93206,4,21580,3,1672319027),(93207,4,21581,3,1672319027),(93208,4,21582,3,1672319027),(93209,4,21583,3,1672319027),(93210,4,21584,3,1672319027),(93211,4,21585,3,1672319027),(93212,4,21586,3,1672319027),(93213,4,21587,3,1672319027),(93214,4,21588,3,1672319027),(93215,4,21589,3,1672319027),(93216,4,21590,3,1672319027),(93217,4,21591,3,1672319027),(93218,4,21592,3,1672319027),(93219,4,21593,3,1672319027),(93220,4,21594,3,1672319027),(93221,4,21595,3,1672319027),(93222,4,21596,3,1672319027),(93223,4,21597,3,1672319027),(93224,4,21598,3,1672319027),(93225,4,21599,3,1672319027),(93226,4,21600,3,1672319027),(93227,4,21601,3,1672319027),(93228,4,21602,3,1672319027),(93229,4,21603,3,1672319027),(93230,4,21604,3,1672319027),(93231,4,21605,3,1672319027),(93232,4,21606,3,1672319027),(93233,4,21607,3,1672319027),(93234,4,21608,3,1672319027),(93235,4,21609,3,1672319027),(93236,4,21610,3,1672319027),(93237,4,21611,3,1672319027),(93238,4,21612,3,1672319027),(93239,4,21613,3,1672319027),(93240,4,21614,3,1672319027),(93241,4,21615,3,1672319027),(93242,4,21616,3,1672319027),(93243,4,21617,3,1672319027),(93244,4,21618,3,1672319027),(93245,4,21619,3,1672319027),(93246,4,21620,3,1672319027),(93247,4,21621,3,1672319027),(93248,4,21622,3,1672319027),(93249,4,21623,3,1672319027),(93250,4,21624,3,1672319027),(93251,4,21625,3,1672319027),(93252,4,21626,3,1672319027),(93253,4,21627,3,1672319027),(93254,4,21628,3,1672319027),(93255,4,21629,3,1672319027),(93256,4,21630,3,1672319027),(93257,4,21631,3,1672319027),(93258,4,21632,3,1672319027),(93259,4,21633,3,1672319027),(93260,4,21634,3,1672319027),(93261,4,21635,3,1672319027),(93262,4,21636,3,1672319027),(93263,4,21637,3,1672319027),(93264,4,21638,3,1672319027),(93265,4,21639,3,1672319027),(93266,4,21640,3,1672319027),(93267,4,21641,3,1672319027),(93268,4,21642,3,1672319027),(93269,4,21643,3,1672319027),(93270,4,21644,3,1672319027),(93271,4,21645,3,1672319027),(93272,4,21646,3,1672319027),(93273,4,21647,3,1672319027),(93274,4,21648,3,1672319027),(93275,4,21649,3,1672319027),(93276,4,21650,3,1672319027),(93277,4,21651,3,1672319027),(93278,4,21652,3,1672319027),(93279,4,21653,3,1672319027),(93280,4,21654,3,1672319027),(93281,4,21655,3,1672319027),(93282,4,21656,3,1672319027),(93283,4,21657,3,1672319027),(93284,4,21658,3,1672319027),(93285,4,21659,3,1672319027),(93286,4,21660,3,1672319027),(93287,4,21661,3,1672319027),(93288,4,21662,3,1672319027),(93289,4,21663,3,1672319027),(93290,4,21664,3,1672319027),(93291,4,21665,3,1672319027),(93292,4,21666,3,1672319027),(93293,4,21667,3,1672319027),(93294,4,21668,3,1672319027),(93295,4,21669,3,1672319027),(93296,4,21670,3,1672319027),(93297,4,21671,3,1672319027),(93298,4,21672,3,1672319027),(93299,4,21673,3,1672319027),(93300,4,21674,3,1672319027),(93301,4,21675,3,1672319027),(93302,4,21676,3,1672319027),(93303,4,21677,3,1672319027),(93304,4,21678,3,1672319027),(93305,4,21679,3,1672319027),(93306,4,21680,3,1672319027),(93307,4,21681,3,1672319027),(93308,4,21682,3,1672319027),(93309,4,21683,3,1672319027),(93310,4,21684,3,1672319027),(93311,4,21685,3,1672319027),(93312,4,21686,3,1672319027),(93313,4,21687,3,1672319027),(93314,4,21688,3,1672319027),(93315,4,21689,3,1672319027),(93316,4,21690,3,1672319027),(93317,4,21691,3,1672319027),(93318,4,21692,3,1672319027),(93319,4,21693,3,1672319027),(93320,4,21694,3,1672319027),(93321,4,21695,3,1672319027),(93322,4,21696,3,1672319027),(93323,4,21697,3,1672319027),(93324,4,21698,3,1672319027),(93325,4,21699,3,1672319027),(93326,4,21700,3,1672319027),(93327,4,21701,3,1672319027),(93328,4,21702,3,1672319027),(93329,4,21703,3,1672319027),(93330,4,21704,3,1672319027),(93331,4,21705,3,1672319027),(93332,4,21706,3,1672319027),(93333,4,21707,3,1672319027),(93334,4,21708,3,1672319027),(93335,4,21709,3,1672319027),(93336,4,21710,3,1672319027),(93337,4,21711,3,1672319027),(93338,4,21712,3,1672319027),(93339,4,21713,3,1672319027),(93340,4,21714,3,1672319027),(93341,4,21715,3,1672319027),(93342,4,21716,3,1672319027),(93343,4,21717,3,1672319027),(93344,4,21718,3,1672319027),(93345,4,21719,3,1672319027),(93346,4,21720,3,1672319027),(93347,4,21721,3,1672319027),(93348,4,21722,3,1672319027),(93349,4,21723,3,1672319027),(93350,4,21724,3,1672319027),(93351,4,21725,3,1672319027),(93352,4,21726,3,1672319027),(93353,4,21727,3,1672319027),(93354,4,21728,3,1672319027),(93355,4,21729,3,1672319027),(93356,4,21730,3,1672319027),(93357,4,21731,3,1672319027),(93358,4,21732,3,1672319027),(93359,4,21733,3,1672319027),(93360,4,21734,3,1672319027),(93361,4,21735,3,1672319027),(93362,4,21736,3,1672319027),(93363,4,21737,3,1672319027),(93364,4,21738,3,1672319027),(93365,4,21739,3,1672319027),(93366,4,21740,3,1672319027),(93367,4,21741,3,1672319027),(93368,4,21742,3,1672319027),(93369,4,21743,3,1672319027),(93370,4,21744,3,1672319027),(93371,4,21745,3,1672319027),(93372,4,21746,3,1672319027),(93373,4,21747,3,1672319027),(93374,4,21748,3,1672319027),(93375,4,21749,3,1672319027),(93376,4,21750,3,1672319027),(93377,4,21751,3,1672319027),(93378,4,21752,3,1672319027),(93379,4,21753,3,1672319027),(93380,4,21754,3,1672319027),(93381,4,21755,3,1672319027),(93382,4,21756,3,1672319027),(93383,4,21757,3,1672319027),(93384,4,21758,3,1672319027),(93385,4,21759,3,1672319027),(93386,4,21760,3,1672319027),(93387,4,21761,3,1672319027),(93388,4,21762,3,1672319027),(93389,4,21763,3,1672319027),(93390,4,21764,3,1672319027),(93391,4,21765,3,1672319027),(93392,4,21766,3,1672319027),(93393,4,21767,3,1672319027),(93394,4,21768,3,1672319027),(93395,4,21769,3,1672319027),(93396,4,21770,3,1672319027),(93397,4,21771,3,1672319027),(93398,4,21772,3,1672319027),(93399,4,21773,3,1672319027),(93400,4,21774,3,1672319027),(93401,4,21775,3,1672319027),(93402,4,21776,3,1672319027),(93403,4,21777,3,1672319027),(93404,4,21778,3,1672319027),(93405,4,21779,3,1672319027),(93406,4,21780,3,1672319027),(93407,4,21781,3,1672319027),(93408,4,21782,3,1672319027),(93409,4,21783,3,1672319027),(93410,4,21784,3,1672319027),(93411,4,21785,3,1672319027),(93412,4,21786,3,1672319027),(93413,4,21787,3,1672319027),(93414,4,21788,3,1672319027),(93415,4,21789,3,1672319027),(93416,4,21790,3,1672319027),(93417,4,21791,3,1672319027),(93418,4,21792,3,1672319027),(93419,4,21793,3,1672319027),(93420,4,21794,3,1672319027),(93421,4,21795,3,1672319027),(93422,4,21796,3,1672319027),(93423,4,21797,3,1672319027),(93424,4,21798,3,1672319027),(93425,4,21799,3,1672319027),(93426,4,21800,3,1672319027),(93427,4,21801,3,1672319027),(93428,4,21802,3,1672319027),(93429,4,21803,3,1672319027),(93430,4,21804,3,1672319027),(93431,4,21805,3,1672319027),(93432,4,21806,3,1672319027),(93433,4,21807,3,1672319027),(93434,4,21808,3,1672319027),(93435,4,21809,3,1672319027),(93436,4,21810,3,1672319027),(93437,4,21811,3,1672319027),(93438,4,21812,3,1672319027),(93439,4,21813,3,1672319027),(93440,4,21814,3,1672319027),(93441,4,21815,3,1672319027),(93442,4,21816,3,1672319027),(93443,4,21817,3,1672319027),(93444,4,21818,3,1672319027),(93445,4,21819,3,1672319027),(93446,4,21820,3,1672319027),(93447,4,21821,3,1672319027),(93448,4,21822,3,1672319027),(93449,4,21823,3,1672319027),(93450,4,21824,3,1672319027),(93451,4,21825,3,1672319027),(93452,4,21826,3,1672319027),(93453,4,21827,3,1672319027),(93454,4,21828,3,1672319027),(93455,4,21829,3,1672319027),(93456,4,21830,3,1672319027),(93457,4,21831,3,1672319027),(93458,4,21832,3,1672319027),(93459,4,21833,3,1672319027),(93460,4,21834,3,1672319027),(93461,4,21835,3,1672319027),(93462,4,21836,3,1672319027),(93463,4,21837,3,1672319027),(93464,4,21838,3,1672319027),(93465,4,21839,3,1672319027),(93466,4,21840,3,1672319027),(93467,4,21841,3,1672319027),(93468,4,21842,3,1672319027),(93469,4,21843,3,1672319027),(93470,4,21844,3,1672319027),(93471,4,21845,3,1672319027),(93472,4,21846,3,1672319027),(93473,4,21847,3,1672319027),(93474,4,21848,3,1672319027),(93475,4,21849,3,1672319027),(93476,4,21850,3,1672319027),(93477,4,21851,3,1672319027),(93478,4,21852,3,1672319027),(93479,4,21853,3,1672319027),(93480,4,21854,3,1672319027),(93481,4,21855,3,1672319027),(93482,4,21856,3,1672319027),(93483,4,21857,3,1672319027),(93484,4,21858,3,1672319027),(93485,4,21859,3,1672319027),(93486,4,21860,3,1672319027),(93487,4,21861,3,1672319027),(93488,4,21862,3,1672319027),(93489,4,21863,3,1672319027),(93490,4,21864,3,1672319027),(93491,4,21865,3,1672319027),(93492,4,21866,3,1672319027),(93493,4,21867,3,1672319027),(93494,4,21868,3,1672319027),(93495,4,21869,3,1672319027),(93496,4,21870,3,1672319027),(93497,4,21871,3,1672319027),(93498,4,21872,3,1672319027),(93499,4,21873,3,1672319027),(93500,4,21874,3,1672319027),(93501,4,21875,3,1672319027),(93502,4,21876,3,1672319027),(93503,4,21877,3,1672319027),(93504,4,21878,3,1672319027),(93505,4,21879,3,1672319027),(93506,4,21880,3,1672319027),(93507,4,21881,3,1672319027),(93508,4,21882,3,1672319027),(93509,4,21883,3,1672319027),(93510,4,21884,3,1672319027),(93511,4,21885,3,1672319027),(93512,4,21886,3,1672319027),(93513,4,21887,3,1672319027),(93514,4,21888,3,1672319027),(93515,4,21889,3,1672319027),(93516,4,21890,3,1672319027),(93517,4,21891,3,1672319027),(93518,4,21892,3,1672319027),(93519,4,21893,3,1672319027),(93520,4,21894,3,1672319027),(93521,4,21895,3,1672319027),(93522,4,21896,3,1672319027),(93523,4,21897,3,1672319027),(93524,4,21898,3,1672319027),(93525,4,21899,3,1672319027),(93526,4,21900,3,1672319027),(93527,4,21901,3,1672319027),(93528,4,21902,3,1672319027),(93529,4,21903,3,1672319027),(93530,4,21904,3,1672319027),(93531,4,21905,3,1672319027),(93532,4,21906,3,1672319027),(93533,4,21907,3,1672319027),(93534,4,21908,3,1672319027),(93535,4,21909,3,1672319027),(93536,4,21910,3,1672319027),(93537,4,21911,3,1672319027),(93538,4,21912,3,1672319027),(93539,4,21913,3,1672319027),(93540,4,21914,3,1672319027),(93541,4,21915,3,1672319027),(93542,4,21916,3,1672319027),(93543,4,21917,3,1672319027),(93544,4,21918,3,1672319027),(93545,4,21919,3,1672319027),(93546,4,21920,3,1672319027),(93547,4,21921,3,1672319027),(93548,4,21922,3,1672319027),(93549,4,21923,3,1672319027),(93550,4,21924,3,1672319027),(93551,4,21925,3,1672319027),(93552,4,21926,3,1672319027),(93553,4,21927,3,1672319027),(93554,4,21928,3,1672319027),(93555,4,21929,3,1672319027),(93556,4,21930,3,1672319027),(93557,4,21931,3,1672319027),(93558,4,21932,3,1672319027),(93559,4,21933,3,1672319027),(93560,4,21934,3,1672319027),(93561,4,21935,3,1672319027),(93562,4,21936,3,1672319027),(93563,4,21937,3,1672319027),(93564,4,21938,3,1672319027),(93565,4,21939,3,1672319027),(93566,4,21940,3,1672319027),(93567,4,21941,3,1672319027),(93568,4,21942,3,1672319027),(93569,4,21943,3,1672319027),(93570,4,21944,3,1672319027),(93571,4,21945,3,1672319027),(93572,4,21946,3,1672319027),(93573,4,21947,3,1672319027),(93574,4,21948,3,1672319027),(93575,4,21949,3,1672319027),(93576,4,21950,3,1672319027),(93577,4,21951,3,1672319027),(93578,4,21952,3,1672319027),(93579,4,21953,3,1672319027),(93580,4,21954,3,1672319027),(93581,4,21955,3,1672319027),(93582,4,21956,3,1672319027),(93583,4,21957,3,1672319027),(93584,4,21958,3,1672319027),(93585,4,21959,3,1672319027),(93586,4,21960,3,1672319027),(93587,4,21961,3,1672319027),(93588,4,21962,3,1672319027),(93589,4,21963,3,1672319027),(93590,4,21964,3,1672319027),(93591,4,21965,3,1672319027),(93592,4,21966,3,1672319027),(93593,4,21967,3,1672319027),(93594,4,21968,3,1672319027),(93595,4,21969,3,1672319027),(93596,4,21970,3,1672319027),(93597,4,21971,3,1672319027),(93598,4,21972,3,1672319027),(93599,4,21973,3,1672319027),(93600,4,21974,3,1672319027),(93601,4,21975,3,1672319027),(93602,4,21976,3,1672319027),(93603,4,21977,3,1672319027),(93604,4,21978,3,1672319027),(93605,4,21979,3,1672319027),(93606,4,21980,3,1672319027),(93607,4,21981,3,1672319027),(93608,4,21982,3,1672319027),(93609,4,21983,3,1672319027),(93610,4,21984,3,1672319027),(93611,4,21985,3,1672319027),(93612,4,21986,3,1672319027),(93613,4,21987,3,1672319027),(93614,4,21988,3,1672319027),(93615,4,21989,3,1672319027),(93616,4,21990,3,1672319027),(93617,4,21991,3,1672319027),(93618,4,21992,3,1672319027),(93619,4,21993,3,1672319027),(93620,4,21994,3,1672319027),(93621,4,21995,3,1672319027),(93622,4,21996,3,1672319027),(93623,4,21997,3,1672319027),(93624,4,21998,3,1672319027),(93625,4,21999,3,1672319027),(93626,4,22000,3,1672319027),(93627,4,22001,3,1672319027),(93628,4,22002,3,1672319027),(93629,4,22003,3,1672319027),(93630,4,22004,3,1672319027),(93631,4,22005,3,1672319027),(93632,4,22006,3,1672319027),(93633,4,22007,3,1672319027),(93634,4,22008,3,1672319027),(93635,4,22009,3,1672319027),(93636,4,22010,3,1672319027),(93637,4,22011,3,1672319027),(93638,4,22012,3,1672319027),(93639,4,22013,3,1672319027),(93640,4,22014,3,1672319027),(93641,4,22015,3,1672319027),(93642,4,22016,3,1672319027),(93643,4,22017,3,1672319027),(93644,4,22018,3,1672319027),(93645,4,22019,3,1672319027),(93646,4,22020,3,1672319027),(93647,4,22021,3,1672319027),(93648,4,22022,3,1672319027),(93649,4,22023,3,1672319027),(93650,4,22024,3,1672319027),(93651,4,22025,3,1672319027),(93652,4,22026,3,1672319027),(93653,4,22027,3,1672319027),(93654,4,22028,3,1672319027),(93655,4,22029,3,1672319027),(93656,4,22030,3,1672319027),(93657,4,22031,3,1672319027),(93658,4,22032,3,1672319027),(93659,4,22033,3,1672319027),(93660,4,22034,3,1672319027),(93661,4,22035,3,1672319027),(93662,4,22036,3,1672319027),(93663,4,22037,3,1672319027),(93664,4,22038,3,1672319027),(93665,4,22039,3,1672319027),(93666,4,22040,3,1672319027),(93667,4,22041,3,1672319027),(93668,4,22042,3,1672319027),(93669,4,22043,3,1672319027),(93670,4,22044,3,1672319027),(93671,4,22045,3,1672319027),(93672,4,22046,3,1672319027),(93673,4,22047,3,1672319027),(93674,4,22048,3,1672319027),(93675,4,22049,3,1672319027),(93676,4,22050,3,1672319027),(93677,4,22051,3,1672319027),(93678,4,22052,3,1672319027),(93679,4,22053,3,1672319027),(93680,4,22054,3,1672319027),(93681,4,22055,3,1672319027),(93682,4,22056,3,1672319027),(93683,4,22057,3,1672319027),(93684,4,22058,3,1672319027),(93685,4,22059,3,1672319027),(93686,4,22060,3,1672319027),(93687,4,22061,3,1672319027),(93688,4,22062,3,1672319027),(93689,4,22063,3,1672319027),(93690,4,22064,3,1672319027),(93691,4,22065,3,1672319027),(93692,4,22066,3,1672319027),(93693,4,22067,3,1672319027),(93694,4,22068,3,1672319027),(93695,4,22069,3,1672319027),(93696,4,22070,3,1672319027),(93697,4,22071,3,1672319027),(93698,4,22072,3,1672319027),(93699,4,22073,3,1672319027),(93700,4,22074,3,1672319027),(93701,4,22075,3,1672319027),(93702,4,22076,3,1672319027),(93703,4,22077,3,1672319027),(93704,4,22078,3,1672319027),(93705,4,22079,3,1672319027),(93706,4,22080,3,1672319027),(93707,4,22081,3,1672319027),(93708,4,22082,3,1672319027),(93709,4,22083,3,1672319027),(93710,4,22084,3,1672319027),(93711,4,22085,3,1672319027),(93712,4,22086,3,1672319027),(93713,4,22087,3,1672319027),(93714,4,22088,3,1672319027),(93715,4,22089,3,1672319027),(93716,4,22090,3,1672319027),(93717,4,22091,3,1672319027),(93718,4,22092,3,1672319027),(93719,4,22093,3,1672319027),(93720,4,22094,3,1672319027),(93721,4,22095,3,1672319027),(93722,4,22096,3,1672319027),(93723,4,22097,3,1672319027),(93724,4,22098,3,1672319027),(93725,4,22099,3,1672319027),(93726,4,22100,3,1672319027),(93727,4,22101,3,1672319027),(93728,4,22102,3,1672319027),(93729,4,22103,3,1672319027),(93730,4,22104,3,1672319027),(93731,4,22105,3,1672319027),(93732,4,22106,3,1672319027),(93733,4,22107,3,1672319027),(93734,4,22108,3,1672319027),(93735,4,22109,3,1672319027),(93736,4,22110,3,1672319027),(93737,4,22111,3,1672319027),(93738,4,22112,3,1672319027),(93739,4,22113,3,1672319027),(93740,4,22114,3,1672319027),(93741,4,22115,3,1672319027),(93742,4,22116,3,1672319027),(93743,4,22117,3,1672319027),(93744,4,22118,3,1672319027),(93745,4,22119,3,1672319027),(93746,4,22120,3,1672319027),(93747,4,22121,3,1672319027),(93748,4,22122,3,1672319027),(93749,4,22123,3,1672319027),(93750,4,22124,3,1672319027),(93751,4,22125,3,1672319027),(93752,4,22126,3,1672319027),(93753,4,22127,3,1672319027),(93754,4,22128,3,1672319027),(93755,4,22129,3,1672319027),(93756,4,22130,3,1672319027),(93757,4,22131,3,1672319027),(93758,4,22132,3,1672319027),(93759,4,22133,3,1672319027),(93760,4,22134,3,1672319027),(93761,4,22135,3,1672319027),(93762,4,22136,3,1672319027),(93763,4,22137,3,1672319027),(93764,4,22138,3,1672319027),(93765,4,22139,3,1672319027),(93766,4,22140,3,1672319027),(93767,4,22141,3,1672319027),(93768,4,22142,3,1672319027),(93769,4,22143,3,1672319027),(93770,4,22144,3,1672319027),(93771,4,22145,3,1672319027),(93772,4,22146,3,1672319027),(93773,4,22147,3,1672319027),(93774,4,22148,3,1672319027),(93775,4,22149,3,1672319027),(93776,4,22150,3,1672319027),(93777,4,22151,3,1672319027),(93778,4,22152,3,1672319027),(93779,4,22153,3,1672319027),(93780,4,22154,3,1672319027),(93781,4,22155,3,1672319027),(93782,4,22156,3,1672319027),(93783,4,22157,3,1672319027),(93784,4,22158,3,1672319027),(93785,4,22159,3,1672319027),(93786,4,22160,3,1672319027),(93787,4,22161,3,1672319027),(93788,4,22162,3,1672319027),(93789,4,22163,3,1672319027),(93790,4,22164,3,1672319027),(93791,4,22165,3,1672319027),(93792,4,22166,3,1672319027),(93793,4,22167,3,1672319027),(93794,4,22168,3,1672319027),(93795,4,22169,3,1672319027),(93796,4,22170,3,1672319027),(93797,4,22171,3,1672319027),(93798,4,22172,3,1672319027),(93799,4,22173,3,1672319027),(93800,4,22174,3,1672319027),(93801,4,22175,3,1672319027),(93802,4,22176,3,1672319027),(93803,4,22177,3,1672319027),(93804,4,22178,3,1672319027),(93805,4,22179,3,1672319027),(93806,4,22180,3,1672319027),(93807,4,22181,3,1672319027),(93808,4,22182,3,1672319027),(93809,4,22183,3,1672319027),(93810,4,22184,3,1672319027),(93811,4,22185,3,1672319027),(93812,4,22186,3,1672319027),(93813,4,22187,3,1672319027),(93814,4,22188,3,1672319027),(93815,4,22189,3,1672319027),(93816,4,22190,3,1672319027),(93817,4,22191,3,1672319027),(93818,4,22192,3,1672319027),(93819,4,22193,3,1672319027),(93820,4,22194,3,1672319027),(93821,4,22195,3,1672319027),(93822,4,22196,3,1672319027),(93823,4,22197,3,1672319027),(93824,4,22198,3,1672319027),(93825,4,22199,3,1672319027),(93826,4,22200,3,1672319027),(93827,4,22201,3,1672319027),(93828,4,22202,3,1672319027),(93829,4,22203,3,1672319027),(93830,4,22204,3,1672319027),(93831,4,22205,3,1672319027),(93832,4,22206,3,1672319027),(93833,4,22207,3,1672319027),(93834,4,22208,3,1672319027),(93835,4,22209,3,1672319027),(93836,4,22210,3,1672319027),(93837,4,22211,3,1672319027),(93838,4,22212,3,1672319027),(93839,4,22213,3,1672319027),(93840,4,22214,3,1672319027),(93841,4,22215,3,1672319027),(93842,4,22216,3,1672319027),(93843,4,22217,3,1672319027),(93844,4,22218,3,1672319027),(93845,4,22219,3,1672319027),(93846,4,22220,3,1672319027),(93847,4,22221,3,1672319027),(93848,4,22222,3,1672319027),(93849,4,22223,3,1672319027),(93850,4,22224,3,1672319027),(93851,4,22225,3,1672319027),(93852,4,22226,3,1672319027),(93853,4,22227,3,1672319027),(93854,4,22228,3,1672319027),(93855,4,22229,3,1672319027),(93856,4,22230,3,1672319027),(93857,4,22231,3,1672319027),(93858,4,22232,3,1672319027),(93859,4,22233,3,1672319027),(93860,4,22234,3,1672319027),(93861,4,22235,3,1672319027),(93862,4,22236,3,1672319027),(93863,4,22237,3,1672319027),(93864,4,22238,3,1672319027),(93865,4,22239,3,1672319027),(93866,4,22240,3,1672319027),(93867,4,22241,3,1672319027),(93868,4,22242,3,1672319027),(93869,4,22243,3,1672319027),(93870,4,22244,3,1672319027),(93871,4,22245,3,1672319027),(93872,4,22246,3,1672319027),(93873,4,22247,3,1672319027),(93874,4,22248,3,1672319027),(93875,4,22249,3,1672319027),(93876,4,22250,3,1672319027),(93877,4,22251,3,1672319027),(93878,4,22252,3,1672319027),(93879,4,22253,3,1672319027),(93880,4,22254,3,1672319027),(93881,4,22255,3,1672319027),(93882,4,22256,3,1672319027),(93883,4,22257,3,1672319027),(93884,4,22258,3,1672319027),(93885,4,22259,3,1672319027),(93886,4,22260,3,1672319027),(93887,4,22261,3,1672319027),(93888,4,22262,3,1672319027),(93889,4,22263,3,1672319027),(93890,4,22264,3,1672319027),(93891,4,22265,3,1672319027),(93892,4,22266,3,1672319027),(93893,4,22267,3,1672319027),(93894,4,22268,3,1672319027),(93895,4,22269,3,1672319027),(93896,4,22270,3,1672319027),(93897,4,22271,3,1672319027),(93898,4,22272,3,1672319027),(93899,4,22273,3,1672319027),(93900,4,22274,3,1672319027),(93901,4,22275,3,1672319027),(93902,4,22276,3,1672319027),(93903,4,22277,3,1672319027),(93904,4,22278,3,1672319027),(93905,4,22279,3,1672319027),(93906,4,22280,3,1672319027),(93907,4,22281,3,1672319027),(93908,4,22282,3,1672319027),(93909,4,22283,3,1672319027),(93910,4,22284,3,1672319027),(93911,4,22285,3,1672319027),(93912,4,22286,3,1672319027),(93913,4,22287,3,1672319027),(93914,4,22288,3,1672319027),(93915,4,22289,3,1672319027),(93916,4,22290,3,1672319027),(93917,4,22291,3,1672319027),(93918,4,22292,3,1672319027),(93919,4,22293,3,1672319027),(93920,4,22294,3,1672319027),(93921,4,22295,3,1672319027),(93922,4,22296,3,1672319027),(93923,4,22297,3,1672319027),(93924,4,22298,3,1672319027),(93925,4,22299,3,1672319027),(93926,4,22300,3,1672319027),(93927,4,22301,3,1672319027),(93928,4,22302,3,1672319027),(93929,4,22303,3,1672319027),(93930,4,22304,3,1672319027),(93931,4,22305,3,1672319027),(93932,4,22306,3,1672319027),(93933,4,22307,3,1672319027),(93934,4,22308,3,1672319027),(93935,4,22309,3,1672319027),(93936,4,22310,3,1672319027),(93937,4,22311,3,1672319027),(93938,4,22312,3,1672319027),(93939,4,22313,3,1672319027),(93940,4,22314,3,1672319027),(93941,4,22315,3,1672319027),(93942,4,22316,3,1672319027),(93943,4,22317,3,1672319027),(93944,4,22318,3,1672319027),(93945,4,22319,3,1672319027),(93946,4,22320,3,1672319027),(93947,4,22321,3,1672319027),(93948,4,22322,3,1672319027),(93949,4,22323,3,1672319027),(93950,4,22324,3,1672319027),(93951,4,22325,3,1672319027),(93952,4,22326,3,1672319027),(93953,4,22327,3,1672319027),(93954,4,22328,3,1672319027),(93955,4,22329,3,1672319027),(93956,4,22330,3,1672319027),(93957,4,22331,3,1672319027),(93958,4,22332,3,1672319027),(93959,4,22333,3,1672319027),(93960,4,22334,3,1672319027),(93961,4,22335,3,1672319027),(93962,4,22336,3,1672319027),(93963,4,22337,3,1672319027),(93964,4,22338,3,1672319027),(93965,4,22339,3,1672319027),(93966,4,22340,3,1672319027),(93967,4,22341,3,1672319027),(93968,4,22342,3,1672319027),(93969,4,22343,3,1672319027),(93970,4,22344,3,1672319027),(93971,4,22345,3,1672319027),(93972,4,22346,3,1672319027),(93973,4,22347,3,1672319027),(93974,4,22348,3,1672319027),(93975,4,22349,3,1672319027),(93976,4,22350,3,1672319027),(93977,4,22351,3,1672319027),(93978,4,22352,3,1672319027),(93979,4,22353,3,1672319027),(93980,4,22354,3,1672319027),(93981,4,22355,3,1672319027),(93982,4,22356,3,1672319027),(93983,4,22357,3,1672319027),(93984,4,22358,3,1672319027),(93985,4,22359,3,1672319027),(93986,4,22360,3,1672319027),(93987,4,22361,3,1672319027),(93988,4,22362,3,1672319027),(93989,4,22363,3,1672319027),(93990,4,22364,3,1672319027),(93991,4,22365,3,1672319027),(93992,4,22366,3,1672319027),(93993,4,22367,3,1672319027),(93994,4,22368,3,1672319027),(93995,4,22369,3,1672319027),(93996,4,22370,3,1672319027),(93997,4,22371,3,1672319027),(93998,4,22372,3,1672319027),(93999,4,22373,3,1672319027),(94000,4,22374,3,1672319027),(94001,4,22375,3,1672319027),(94002,4,22376,3,1672319027),(94003,4,22377,3,1672319027),(94004,4,22378,3,1672319027),(94005,4,22379,3,1672319027),(94006,4,22380,3,1672319027),(94007,4,22381,3,1672319027),(94008,4,22382,3,1672319027),(94009,4,22383,3,1672319027),(94010,4,22384,3,1672319027),(94011,4,22385,3,1672319027),(94012,4,22386,3,1672319027),(94013,4,22387,3,1672319027),(94014,4,22388,3,1672319027),(94015,4,22389,3,1672319027),(94016,4,22390,3,1672319027),(94017,4,22391,3,1672319027),(94018,4,22392,3,1672319027),(94019,4,22393,3,1672319027),(94020,4,22394,3,1672319027),(94021,4,22395,3,1672319027),(94022,4,22396,3,1672319027),(94023,4,22397,3,1672319027),(94024,4,22398,3,1672319027),(94025,4,22399,3,1672319027),(94026,4,22400,3,1672319027),(94027,4,22401,3,1672319027),(94028,4,22402,3,1672319027),(94029,4,22403,3,1672319027),(94030,4,22404,3,1672319027),(94031,4,22405,3,1672319027),(94032,4,22406,3,1672319027),(94033,4,22407,3,1672319027),(94034,4,22408,3,1672319027),(94035,4,22409,3,1672319027),(94036,4,22410,3,1672319027),(94037,4,22411,3,1672319027),(94038,4,22412,3,1672319027),(94039,4,22413,3,1672319027),(94040,4,22414,3,1672319027),(94041,4,22415,3,1672319027),(94042,4,22416,3,1672319027),(94043,4,22417,3,1672319027),(94044,4,22418,3,1672319027),(94045,4,22419,3,1672319027),(94046,4,22420,3,1672319027),(94047,4,22421,3,1672319027),(94048,4,22422,3,1672319027),(94049,4,22423,3,1672319027),(94050,4,22424,3,1672319027),(94051,4,22425,3,1672319027),(94052,4,22426,3,1672319027),(94053,4,22427,3,1672319027),(94054,4,22428,3,1672319027),(94055,4,22429,3,1672319027),(94056,4,22430,3,1672319027),(94057,4,22431,3,1672319027),(94058,4,22432,3,1672319027),(94059,4,22433,3,1672319027),(94060,4,22434,3,1672319027),(94061,4,22435,3,1672319027),(94062,4,22436,3,1672319027),(94063,4,22437,3,1672319027),(94064,4,22438,3,1672319027),(94065,4,22439,3,1672319027),(94066,4,22440,3,1672319027),(94067,4,22441,3,1672319027),(94068,4,22442,3,1672319027),(94069,4,22443,3,1672319027),(94070,4,22444,3,1672319027),(94071,4,22445,3,1672319027),(94072,4,22446,3,1672319027),(94073,4,22447,3,1672319027),(94074,4,22448,3,1672319027),(94075,4,22449,3,1672319027),(94076,4,22450,3,1672319027),(94077,4,22451,3,1672319027),(94078,4,22452,3,1672319027),(94079,4,22453,3,1672319027),(94080,4,22454,3,1672319027),(94081,4,22455,3,1672319027),(94082,4,22456,3,1672319027),(94083,4,22457,3,1672319027),(94084,4,22458,3,1672319027),(94085,4,22459,3,1672319027),(94086,4,22460,3,1672319027),(94087,4,22461,3,1672319027),(94088,4,22462,3,1672319027),(94089,4,22463,3,1672319027),(94090,4,22464,3,1672319027),(94091,4,22465,3,1672319027),(94092,4,22466,3,1672319027),(94093,4,22467,3,1672319027),(94094,4,22468,3,1672319027),(94095,4,22469,3,1672319027),(94096,4,22470,3,1672319027),(94097,4,22471,3,1672319027),(94098,4,22472,3,1672319027),(94099,4,22473,3,1672319027),(94100,4,22474,3,1672319027),(94101,4,22475,3,1672319027),(94102,4,22476,3,1672319027),(94103,4,22477,3,1672319027),(94104,4,22478,3,1672319027),(94105,4,22479,3,1672319027),(94106,4,22480,3,1672319027),(94107,4,22481,3,1672319027),(94108,4,22482,3,1672319027),(94109,4,22483,3,1672319027),(94110,4,22484,3,1672319027),(94111,4,22485,3,1672319027),(94112,4,22486,3,1672319027),(94113,4,22487,3,1672319027),(94114,4,22488,3,1672319027),(94115,4,22489,3,1672319027),(94116,4,22490,3,1672319027),(94117,4,22491,3,1672319027),(94118,4,22492,3,1672319027),(94119,4,22493,3,1672319027),(94120,4,22494,3,1672319027),(94121,4,22495,3,1672319027),(94122,4,22496,3,1672319027),(94123,4,22497,3,1672319027),(94124,4,22498,3,1672319027),(94125,4,22499,3,1672319027),(94126,4,22500,3,1672319027),(94127,4,22501,3,1672319027),(94128,4,22502,3,1672319027),(94129,4,22503,3,1672319027),(94130,4,22504,3,1672319027),(94131,4,22505,3,1672319027),(94132,4,22506,3,1672319027),(94133,4,22507,3,1672319027),(94134,4,22508,3,1672319027),(94135,4,22509,3,1672319027),(94136,4,22510,3,1672319027),(94137,4,22511,3,1672319027),(94138,4,22512,3,1672319027),(94139,4,22513,3,1672319027),(94140,4,22514,3,1672319027),(94141,4,22515,3,1672319027),(94142,4,22516,3,1672319027),(94143,4,22517,3,1672319027),(94144,4,22518,3,1672319027),(94145,4,22519,3,1672319027),(94146,4,22520,3,1672319027),(94147,4,22521,3,1672319027),(94148,4,22522,3,1672319027),(94149,4,22523,3,1672319027),(94150,4,22524,3,1672319027),(94151,4,22525,3,1672319027),(94152,4,22526,3,1672319027),(94153,4,22527,3,1672319027),(94154,4,22528,3,1672319027),(94155,4,22529,3,1672319027),(94156,4,22530,3,1672319027),(94157,4,22531,3,1672319027),(94158,4,22532,3,1672319027),(94159,4,22533,3,1672319027),(94160,4,22534,3,1672319027),(94161,4,22535,3,1672319027),(94162,4,22536,3,1672319027),(94163,4,22537,3,1672319027),(94164,4,22538,3,1672319027),(94165,4,22539,3,1672319027),(94166,4,22540,3,1672319027),(94167,4,22541,3,1672319027),(94168,4,22542,3,1672319027),(94169,4,22543,3,1672319027),(94170,4,22544,3,1672319027),(94171,4,22545,3,1672319027),(94172,4,22546,3,1672319027),(94173,4,22547,3,1672319027),(94174,4,22548,3,1672319027),(94175,4,22549,3,1672319027),(94176,4,22550,3,1672319027),(94177,4,22551,3,1672319027),(94178,4,22552,3,1672319027),(94179,4,22553,3,1672319027),(94180,4,22554,3,1672319027),(94181,4,22555,3,1672319027),(94182,4,22556,3,1672319027),(94183,4,22557,3,1672319027),(94184,4,22558,3,1672319027),(94185,4,22559,3,1672319027),(94186,4,22560,3,1672319027),(94187,4,22561,3,1672319027),(94188,4,22562,3,1672319027),(94189,4,22563,3,1672319027),(94190,4,22564,3,1672319027),(94191,4,22565,3,1672319027),(94192,4,22566,3,1672319027),(94193,4,22567,3,1672319027),(94194,4,22568,3,1672319027),(94195,4,22569,3,1672319027),(94196,4,22570,3,1672319027),(94197,4,22571,3,1672319027),(94198,4,22572,3,1672319027),(94199,4,22573,3,1672319027),(94200,4,22574,3,1672319027),(94201,4,22575,3,1672319027),(94202,4,22576,3,1672319027),(94203,4,22577,3,1672319027),(94204,4,22578,3,1672319027),(94205,4,22579,3,1672319027),(94206,4,22580,3,1672319027),(94207,4,22581,3,1672319027),(94208,4,22582,3,1672319027),(94209,4,22583,3,1672319027),(94210,4,22584,3,1672319027),(94211,4,22585,3,1672319027),(94212,4,22586,3,1672319027),(94213,4,22587,3,1672319027),(94214,4,22588,3,1672319027),(94215,4,22589,3,1672319027),(94216,4,22590,3,1672319027),(94217,4,22591,3,1672319027),(94218,4,22592,3,1672319027),(94219,4,22593,3,1672319027),(94220,4,22594,3,1672319027),(94221,4,22595,3,1672319027),(94222,4,22596,3,1672319027),(94223,4,22597,3,1672319027),(94224,4,22598,3,1672319027),(94225,4,22599,3,1672319027),(94226,4,22600,3,1672319027),(94227,4,22601,3,1672319027),(94228,4,22602,3,1672319027),(94229,4,22603,3,1672319027),(94230,4,22604,3,1672319027),(94231,4,22605,3,1672319027),(94232,4,22606,3,1672319027),(94233,4,22607,3,1672319027),(94234,4,22608,3,1672319027),(94235,4,22609,3,1672319027),(94236,4,22610,3,1672319027),(94237,4,22611,3,1672319027),(94238,4,22612,3,1672319027),(94239,4,22613,3,1672319027),(94240,4,22614,3,1672319027),(94241,4,22615,3,1672319027),(94242,4,22616,3,1672319027),(94243,4,22617,3,1672319027),(94244,4,22618,3,1672319027),(94245,4,22619,3,1672319027),(94246,4,22620,3,1672319027),(94247,4,22621,3,1672319027),(94248,4,22622,3,1672319027),(94249,4,22623,3,1672319027),(94250,4,22624,3,1672319027),(94251,4,22625,3,1672319027),(94252,4,22626,3,1672319027),(94253,4,22627,3,1672319027),(94254,4,22628,3,1672319027),(94255,4,22629,3,1672319027),(94256,4,22630,3,1672319027),(94257,4,22631,3,1672319027),(94258,4,22632,3,1672319027),(94259,4,22633,3,1672319027),(94260,4,22634,3,1672319027),(94261,4,22635,3,1672319027),(94262,4,22636,3,1672319027),(94263,4,22637,3,1672319027),(94264,4,22638,3,1672319027),(94265,4,22639,3,1672319027),(94266,4,22640,3,1672319027),(94267,4,22641,3,1672319027),(94268,4,22642,3,1672319027),(94269,4,22643,3,1672319027),(94270,4,22644,3,1672319027),(94271,4,22645,3,1672319027),(94272,4,22646,3,1672319027),(94273,4,22647,3,1672319027),(94274,4,22648,3,1672319027),(94275,4,22649,3,1672319027),(94276,4,22650,3,1672319027),(94277,4,22651,3,1672319027),(94278,4,22652,3,1672319027),(94279,4,22653,3,1672319027),(94280,4,22654,3,1672319027),(94281,4,22655,3,1672319027),(94282,4,22656,3,1672319027),(94283,4,22657,3,1672319027),(94284,4,22658,3,1672319027),(94285,4,22659,3,1672319027),(94286,4,22660,3,1672319027),(94287,4,22661,3,1672319027),(94288,4,22662,3,1672319027),(94289,4,22663,3,1672319027),(94290,4,22664,3,1672319027),(94291,4,22665,3,1672319027),(94292,4,22666,3,1672319027),(94293,4,22667,3,1672319027),(94294,4,22668,3,1672319027),(94295,4,22669,3,1672319027),(94296,4,22670,3,1672319027),(94297,4,22671,3,1672319027),(94298,4,22672,3,1672319027),(94299,4,22673,3,1672319027),(94300,4,22674,3,1672319027),(94301,4,22675,3,1672319027),(94302,4,22676,3,1672319027),(94303,4,22677,3,1672319027),(94304,4,22678,3,1672319027),(94305,4,22679,3,1672319027),(94306,4,22680,3,1672319027),(94307,4,22681,3,1672319027),(94308,4,22682,3,1672319027),(94309,4,22683,3,1672319027),(94310,4,22684,3,1672319027),(94311,4,22685,3,1672319027),(94312,4,22686,3,1672319027),(94313,4,22687,3,1672319027),(94314,4,22688,3,1672319027),(94315,4,22689,3,1672319027),(94316,4,22690,3,1672319027),(94317,4,22691,3,1672319027),(94318,4,22692,3,1672319027),(94319,4,22693,3,1672319027),(94320,4,22694,3,1672319027),(94321,4,22695,3,1672319027),(94322,4,22696,3,1672319027),(94323,4,22697,3,1672319027),(94324,4,22698,3,1672319027),(94325,4,22699,3,1672319027),(94326,4,22700,3,1672319027),(94327,4,22701,3,1672319027),(94328,4,22702,3,1672319027),(94329,4,22703,3,1672319027),(94330,4,22704,3,1672319027),(94331,4,22705,3,1672319027),(94332,4,22706,3,1672319027),(94333,4,22707,3,1672319027),(94334,4,22708,3,1672319027),(94335,4,22709,3,1672319027),(94336,4,22710,3,1672319027),(94337,4,22711,3,1672319027),(94338,4,22712,3,1672319027),(94339,4,22713,3,1672319027),(94340,4,22714,3,1672319027),(94341,4,22715,3,1672319027),(94342,4,22716,3,1672319027),(94343,4,22717,3,1672319027),(94344,4,22718,3,1672319027),(94345,4,22719,3,1672319027),(94346,4,22720,3,1672319027),(94347,4,22721,3,1672319027),(94348,4,22722,3,1672319027),(94349,4,22723,3,1672319027),(94350,4,22724,3,1672319027),(94351,4,22725,3,1672319027),(94352,4,22726,3,1672319027),(94353,4,22727,3,1672319027),(94354,4,22728,3,1672319027),(94355,4,22729,3,1672319027),(94356,4,22730,3,1672319027),(94357,4,22731,3,1672319027),(94358,4,22732,3,1672319027),(94359,4,22733,3,1672319027),(94360,4,22734,3,1672319027),(94361,4,22735,3,1672319027),(94362,4,22736,3,1672319027),(94363,4,22737,3,1672319027),(94364,4,22738,3,1672319027),(94365,4,22739,3,1672319027),(94366,4,22740,3,1672319027),(94367,4,22741,3,1672319027),(94368,4,22742,3,1672319027),(94369,4,22743,3,1672319027),(94370,4,22744,3,1672319027),(94371,4,22745,3,1672319027),(94372,4,22746,3,1672319027),(94373,4,22747,3,1672319027),(94374,4,22748,3,1672319027),(94375,4,22749,3,1672319027),(94376,4,22750,3,1672319027),(94377,4,22751,3,1672319027),(94378,4,22752,3,1672319027),(94379,4,22753,3,1672319027),(94380,4,22754,3,1672319027),(94381,4,22755,3,1672319027),(94382,4,22756,3,1672319027),(94383,4,22757,3,1672319027),(94384,4,22758,3,1672319027),(94385,4,22759,3,1672319027),(94386,4,22760,3,1672319027),(94387,4,22761,3,1672319027),(94388,4,22762,3,1672319027),(94389,4,22763,3,1672319027),(94390,4,22764,3,1672319027),(94391,4,22765,3,1672319027),(94392,4,22766,3,1672319027),(94393,4,22767,3,1672319027),(94394,4,22768,3,1672319027),(94395,4,22769,3,1672319027),(94396,4,22770,3,1672319027),(94397,4,22771,3,1672319027),(94398,4,22772,3,1672319027),(94399,4,22773,3,1672319027),(94400,4,22774,3,1672319027),(94401,4,22775,3,1672319027),(94402,4,22776,3,1672319027),(94403,4,22777,3,1672319027),(94404,4,22778,3,1672319027),(94405,4,22779,3,1672319027),(94406,4,22780,3,1672319027),(94407,4,22781,3,1672319027),(94408,4,22782,3,1672319027),(94409,4,22783,3,1672319027),(94410,4,22784,3,1672319027),(94411,4,22785,3,1672319027),(94412,4,22786,3,1672319027),(94413,4,22787,3,1672319027),(94414,4,22788,3,1672319027),(94415,4,22789,3,1672319027),(94416,4,22790,3,1672319027),(94417,4,22791,3,1672319027),(94418,4,22792,3,1672319027),(94419,4,22793,3,1672319027),(94420,4,22794,3,1672319027),(94421,4,22795,3,1672319027),(94422,4,22796,3,1672319027),(94423,4,22797,3,1672319027),(94424,4,22798,3,1672319027),(94425,4,22799,3,1672319027),(94426,4,22800,3,1672319027),(94427,4,22801,3,1672319027),(94428,4,22802,3,1672319027),(94429,4,22803,3,1672319027),(94430,4,22804,3,1672319027),(94431,4,22805,3,1672319027),(94432,4,22806,3,1672319027),(94433,4,22807,3,1672319027),(94434,4,22808,3,1672319027),(94435,4,22809,3,1672319027),(94436,4,22810,3,1672319027),(94437,4,22811,3,1672319027),(94438,4,22812,3,1672319027),(94439,4,22813,3,1672319027),(94440,4,22814,3,1672319027),(94441,4,22815,3,1672319027),(94442,4,22816,3,1672319027),(94443,4,22817,3,1672319027),(94444,4,22818,3,1672319027),(94445,4,22819,3,1672319027),(94446,4,22820,3,1672319027),(94447,4,22821,3,1672319027),(94448,4,22822,3,1672319027),(94449,4,22823,3,1672319027),(94450,4,22824,3,1672319027),(94451,4,22825,3,1672319027),(94452,4,22826,3,1672319027),(94453,4,22827,3,1672319027),(94454,4,22828,3,1672319027),(94455,4,22829,3,1672319027),(94456,4,22830,3,1672319027),(94457,4,22831,3,1672319027),(94458,4,22832,3,1672319027),(94459,4,22833,3,1672319027),(94460,4,22834,3,1672319027),(94461,4,22835,3,1672319027),(94462,4,22836,3,1672319027),(94463,4,22837,3,1672319027),(94464,4,22838,3,1672319027),(94465,4,22839,3,1672319027),(94466,4,22840,3,1672319027),(94467,4,22841,3,1672319027),(94468,4,22842,3,1672319027),(94469,4,22843,3,1672319027),(94470,4,22844,3,1672319027),(94471,4,22845,3,1672319027),(94472,4,22846,3,1672319027),(94473,4,22847,3,1672319027),(94474,4,22848,3,1672319027),(94475,4,22849,3,1672319027),(94476,4,22850,3,1672319027),(94477,4,22851,3,1672319027),(94478,4,22852,3,1672319027),(94479,4,22853,3,1672319027),(94480,4,22854,3,1672319027),(94481,4,22855,3,1672319027),(94482,4,22856,3,1672319027),(94483,4,22857,3,1672319027),(94484,4,22858,3,1672319027),(94485,4,22859,3,1672319027),(94486,4,22860,3,1672319027),(94487,4,22861,3,1672319027),(94488,4,22862,3,1672319027),(94489,4,22863,3,1672319027),(94490,4,22864,3,1672319027),(94491,4,22865,3,1672319027),(94492,4,22866,3,1672319027),(94493,4,22867,3,1672319027),(94494,4,22868,3,1672319027),(94495,4,22869,3,1672319027),(94496,4,22870,3,1672319027),(94497,4,22871,3,1672319027),(94498,4,22872,3,1672319027),(94499,4,22873,3,1672319027),(94500,4,22874,3,1672319027),(94501,4,22875,3,1672319027),(94502,4,22876,3,1672319027),(94503,4,22877,3,1672319027),(94504,4,22878,3,1672319027),(94505,4,22879,3,1672319027),(94506,4,22880,3,1672319027),(94507,4,22881,3,1672319027),(94508,4,22882,3,1672319027),(94509,4,22883,3,1672319027),(94510,4,22884,3,1672319027),(94511,4,22885,3,1672319027),(94512,4,22886,3,1672319027),(94513,4,22887,3,1672319027),(94514,4,22888,3,1672319027),(94515,4,22889,3,1672319027),(94516,4,22890,3,1672319027),(94517,4,22891,3,1672319027),(94518,4,22892,3,1672319027),(94519,4,22893,3,1672319027),(94520,4,22894,3,1672319027),(94521,4,22895,3,1672319027),(94522,4,22896,3,1672319027),(94523,4,22897,3,1672319027),(94524,4,22898,3,1672319027),(94525,4,22899,3,1672319027),(94526,4,22900,3,1672319027),(94527,4,22901,3,1672319027),(94528,4,22902,3,1672319027),(94529,4,22903,3,1672319027),(94530,4,22904,3,1672319027),(94531,4,22905,3,1672319027),(94532,4,22906,3,1672319027),(94533,4,22907,3,1672319027),(94534,4,22908,3,1672319027),(94535,4,22909,3,1672319027),(94536,4,22910,3,1672319027),(94537,4,22911,3,1672319027),(94538,4,22912,3,1672319027),(94539,4,22913,3,1672319027),(94540,4,22914,3,1672319027),(94541,4,22915,3,1672319027),(94542,4,22916,3,1672319027),(94543,4,22917,3,1672319027),(94544,4,22918,3,1672319027),(94545,4,22919,3,1672319027),(94546,4,22920,3,1672319027),(94547,4,22921,3,1672319027),(94548,4,22922,3,1672319027),(94549,4,22923,3,1672319027),(94550,4,22924,3,1672319027),(94551,4,22925,3,1672319027),(94552,4,22926,3,1672319027),(94553,4,22927,3,1672319027),(94554,4,22928,3,1672319027),(94555,4,22929,3,1672319027),(94556,4,22930,3,1672319027),(94557,4,22931,3,1672319027),(94558,4,22932,3,1672319027),(94559,4,22933,3,1672319027),(94560,4,22934,3,1672319027),(94561,4,22935,3,1672319027),(94562,4,22936,3,1672319027),(94563,4,22937,3,1672319027),(94564,4,22938,3,1672319027),(94565,4,22939,3,1672319027),(94566,4,22940,3,1672319027),(94567,4,22941,3,1672319027),(94568,4,22942,3,1672319027),(94569,4,22943,3,1672319027),(94570,4,22944,3,1672319027),(94571,4,22945,3,1672319027),(94572,4,22946,3,1672319027),(94573,4,22947,3,1672319027),(94574,4,22948,3,1672319027),(94575,4,22949,3,1672319027),(94576,4,22950,3,1672319027),(94577,4,22951,3,1672319027),(94578,4,22952,3,1672319027),(94579,4,22953,3,1672319027),(94580,4,22954,3,1672319027),(94581,4,22955,3,1672319027),(94582,4,22956,3,1672319027),(94583,4,22957,3,1672319027),(94584,4,22958,3,1672319027),(94585,4,22959,3,1672319027),(94586,4,22960,3,1672319027),(94587,4,22961,3,1672319027),(94588,4,22962,3,1672319027),(94589,4,22963,3,1672319027),(94590,4,22964,3,1672319027),(94591,4,22965,3,1672319027),(94592,4,22966,3,1672319027),(94593,4,22967,3,1672319027),(94594,4,22968,3,1672319027),(94595,4,22969,3,1672319027),(94596,4,22970,3,1672319027),(94597,4,22971,3,1672319027),(94598,4,22972,3,1672319027),(94599,4,22973,3,1672319027),(94600,4,22974,3,1672319027),(94601,4,22975,3,1672319027),(94602,4,22976,3,1672319027),(94603,4,22977,3,1672319027),(94604,4,22978,3,1672319027),(94605,4,22979,3,1672319027),(94606,4,22980,3,1672319027),(94607,4,22981,3,1672319027),(94608,4,22982,3,1672319027),(94609,4,22983,3,1672319027),(94610,4,22984,3,1672319027),(94611,4,22985,3,1672319027),(94612,4,22986,3,1672319027),(94613,4,22987,3,1672319027),(94614,4,22988,3,1672319027),(94615,4,22989,3,1672319027),(94616,4,22990,3,1672319027),(94617,4,22991,3,1672319027),(94618,4,22992,3,1672319027),(94619,4,22993,3,1672319027),(94620,4,22994,3,1672319027),(94621,4,22995,3,1672319027),(94622,4,22996,3,1672319027),(94623,4,22997,3,1672319027),(94624,4,22998,3,1672319027),(94625,4,22999,3,1672319027),(94626,4,23000,3,1672319027),(94627,4,23001,3,1672319027),(94628,4,23002,3,1672319027),(94629,4,23003,3,1672319027),(94630,4,23004,3,1672319027),(94631,4,23005,3,1672319027),(94632,4,23006,3,1672319027),(94633,4,23007,3,1672319027),(94634,4,23008,3,1672319027),(94635,4,23009,3,1672319027),(94636,4,23010,3,1672319027),(94637,4,23011,3,1672319027),(94638,4,23012,3,1672319027),(94639,4,23013,3,1672319027),(94640,4,23014,3,1672319027),(94641,4,23015,3,1672319027),(94642,4,23016,3,1672319027),(94643,4,23017,3,1672319027),(94644,4,23018,3,1672319027),(94645,4,23019,3,1672319027),(94646,4,23020,3,1672319027),(94647,4,23021,3,1672319027),(94648,4,23022,3,1672319027),(94649,4,23023,3,1672319027),(94650,4,23024,3,1672319027),(94651,4,23025,3,1672319027),(94652,4,23026,3,1672319027),(94653,4,23027,3,1672319027),(94654,4,23028,3,1672319027),(94655,4,23029,3,1672319027),(94656,4,23030,3,1672319027),(94657,4,23031,3,1672319027),(94658,4,23032,3,1672319027),(94659,4,23033,3,1672319027),(94660,4,23034,3,1672319027),(94661,4,23035,3,1672319027),(94662,4,23036,3,1672319027),(94663,4,23037,3,1672319027),(94664,4,23038,3,1672319027),(94665,4,23039,3,1672319027),(94666,4,23040,3,1672319027),(94667,4,23041,3,1672319027),(94668,4,23042,3,1672319027),(94669,4,23043,3,1672319027),(94670,4,23044,3,1672319027),(94671,4,23045,3,1672319027),(94672,4,23046,3,1672319027),(94673,4,23047,3,1672319027),(94674,4,23048,3,1672319027),(94675,4,23049,3,1672319027),(94676,4,23050,3,1672319027),(94677,4,23051,3,1672319027),(94678,4,23052,3,1672319027),(94679,4,23053,3,1672319027),(94680,4,23054,3,1672319027),(94681,4,23055,3,1672319027),(94682,4,23056,3,1672319027),(94683,4,23057,3,1672319027),(94684,4,23058,3,1672319027),(94685,4,23059,3,1672319027),(94686,4,23060,3,1672319027),(94687,4,23061,3,1672319027),(94688,4,23062,3,1672319027),(94689,4,23063,3,1672319027),(94690,4,23064,3,1672319027),(94691,4,23065,3,1672319027),(94692,4,23066,3,1672319027),(94693,4,23067,3,1672319027),(94694,4,23068,3,1672319027),(94695,4,23069,3,1672319027),(94696,4,23070,3,1672319027),(94697,4,23071,3,1672319027),(94698,4,23072,3,1672319027),(94699,4,23073,3,1672319027),(94700,4,23074,3,1672319027),(94701,4,23075,3,1672319027),(94702,4,23076,3,1672319027),(94703,4,23077,3,1672319027),(94704,4,23078,3,1672319027),(94705,4,23079,3,1672319027),(94706,4,23080,3,1672319027),(94707,4,23081,3,1672319027),(94708,4,23082,3,1672319027),(94709,4,23083,3,1672319027),(94710,4,23084,3,1672319027),(94711,4,23085,3,1672319027),(94712,4,23086,3,1672319027),(94713,4,23087,3,1672319027),(94714,4,23088,3,1672319027),(94715,4,23089,3,1672319027),(94716,4,23090,3,1672319027),(94717,4,23091,3,1672319027),(94718,4,23092,3,1672319027),(94719,4,23093,3,1672319027),(94720,4,23094,3,1672319027),(94721,4,23095,3,1672319027),(94722,4,23096,3,1672319027),(94723,4,23097,3,1672319027),(94724,4,23098,3,1672319027),(94725,4,23099,3,1672319027),(94726,4,23100,3,1672319027),(94727,4,23101,3,1672319027),(94728,4,23102,3,1672319027),(94729,4,23103,3,1672319027),(94730,4,23104,3,1672319027),(94731,4,23105,3,1672319027),(94732,4,23106,3,1672319027),(94733,4,23107,3,1672319027),(94734,4,23108,3,1672319027),(94735,4,23109,3,1672319027),(94736,4,23110,3,1672319027),(94737,4,23111,3,1672319027),(94738,4,23112,3,1672319027),(94739,4,23113,3,1672319027),(94740,4,23114,3,1672319027),(94741,4,23115,3,1672319027),(94742,4,23116,3,1672319027),(94743,4,23117,3,1672319027),(94744,4,23118,3,1672319027),(94745,4,23119,3,1672319027),(94746,4,23120,3,1672319027),(94747,4,23121,3,1672319027),(94748,4,23122,3,1672319027),(94749,4,23123,3,1672319027),(94750,4,23124,3,1672319027),(94751,4,23125,3,1672319027),(94752,4,23126,3,1672319027),(94753,4,23127,3,1672319027),(94754,4,23128,3,1672319027),(94755,4,23129,3,1672319027),(94756,4,23130,3,1672319027),(94757,4,23131,3,1672319027),(94758,4,23132,3,1672319027),(94759,4,23133,3,1672319027),(94760,4,23134,3,1672319027),(94761,4,23135,3,1672319027),(94762,4,23136,3,1672319027),(94763,4,23137,3,1672319027),(94764,4,23138,3,1672319027),(94765,4,23139,3,1672319027),(94766,4,23140,3,1672319027),(94767,4,23141,3,1672319027),(94768,4,23142,3,1672319027),(94769,4,23143,3,1672319027),(94770,4,23144,3,1672319027),(94771,4,23145,3,1672319027),(94772,4,23146,3,1672319027),(94773,4,23147,3,1672319027),(94774,4,23148,3,1672319027),(94775,4,23149,3,1672319027),(94776,4,23150,3,1672319027),(94777,4,23151,3,1672319027),(94778,4,23152,3,1672319027),(94779,4,23153,3,1672319027),(94780,4,23154,3,1672319027),(94781,4,23155,3,1672319027),(94782,4,23156,3,1672319027),(94783,4,23157,3,1672319027),(94784,4,23158,3,1672319027),(94785,4,23159,3,1672319027),(94786,4,23160,3,1672319027),(94787,4,23161,3,1672319027),(94788,4,23162,3,1672319027),(94789,4,23163,3,1672319027),(94790,4,23164,3,1672319027),(94791,4,23165,3,1672319027),(94792,4,23166,3,1672319027),(94793,4,23167,3,1672319027),(94794,4,23168,3,1672319027),(94795,4,23169,3,1672319027),(94796,4,23170,3,1672319027),(94797,4,23171,3,1672319027),(94798,4,23172,3,1672319027),(94799,4,23173,3,1672319027),(94800,4,23174,3,1672319027),(94801,4,23175,3,1672319027),(94802,4,23176,3,1672319027),(94803,4,23177,3,1672319027),(94804,4,23178,3,1672319027),(94805,4,23179,3,1672319027),(94806,4,23180,3,1672319027),(94807,4,23181,3,1672319027),(94808,4,23182,3,1672319027),(94809,4,23183,3,1672319027),(94810,4,23184,3,1672319027),(94811,4,23185,3,1672319027),(94812,4,23186,3,1672319027),(94813,4,23187,3,1672319027),(94814,4,23188,3,1672319027),(94815,4,23189,3,1672319027),(94816,4,23190,3,1672319027),(94817,4,23191,3,1672319027),(94818,4,23192,3,1672319027),(94819,4,23193,3,1672319027),(94820,4,23194,3,1672319027),(94821,4,23195,3,1672319027),(94822,4,23196,3,1672319027),(94823,4,23197,3,1672319027),(94824,4,23198,3,1672319027),(94825,4,23199,3,1672319027),(94826,4,23200,3,1672319027),(94827,4,23201,3,1672319027),(94828,4,23202,3,1672319027),(94829,4,23203,3,1672319027),(94830,4,23204,3,1672319027),(94831,4,23205,3,1672319027),(94832,4,23206,3,1672319027),(94833,4,23207,3,1672319027),(94834,4,23208,3,1672319027),(94835,4,23209,3,1672319027),(94836,4,23210,3,1672319027),(94837,4,23211,3,1672319027),(94838,4,23212,3,1672319027),(94839,4,23213,3,1672319027),(94840,4,23214,3,1672319027),(94841,4,23215,3,1672319027),(94842,4,23216,3,1672319027),(94843,4,23217,3,1672319027),(94844,4,23218,3,1672319027),(94845,4,23219,3,1672319027),(94846,4,23220,3,1672319027),(94847,4,23221,3,1672319027),(94848,4,23222,3,1672319027),(94849,4,23223,3,1672319027),(94850,4,23224,3,1672319027),(94851,4,23225,3,1672319027),(94852,4,23226,3,1672319027),(94853,4,23227,3,1672319027),(94854,4,23228,3,1672319027),(94855,4,23229,3,1672319027),(94856,4,23230,3,1672319027),(94857,4,23231,3,1672319027),(94858,4,23232,3,1672319027),(94859,4,23233,3,1672319027),(94860,4,23234,3,1672319027),(94861,4,23235,3,1672319027),(94862,4,23236,3,1672319027),(94863,4,23237,3,1672319027),(94864,4,23238,3,1672319027),(94865,4,23239,3,1672319027),(94866,4,23240,3,1672319027),(94867,4,23241,3,1672319027),(94868,4,23242,3,1672319027),(94869,4,23243,3,1672319027),(94870,4,23244,3,1672319027),(94871,4,23245,3,1672319027),(94872,4,23246,3,1672319027),(94873,4,23247,3,1672319027),(94874,4,23248,3,1672319027),(94875,4,23249,3,1672319027),(94876,4,23250,3,1672319027),(94877,4,23251,3,1672319027),(94878,4,23252,3,1672319027),(94879,4,23253,3,1672319027),(94880,4,23254,3,1672319027),(94881,4,23255,3,1672319027),(94882,4,23256,3,1672319027),(94883,4,23257,3,1672319027),(94884,4,23258,3,1672319027),(94885,4,23259,3,1672319027),(94886,4,23260,3,1672319027),(94887,4,23261,3,1672319027),(94888,4,23262,3,1672319027),(94889,4,23263,3,1672319027),(94890,4,23264,3,1672319027),(94891,4,23265,3,1672319027),(94892,4,23266,3,1672319027),(94893,4,23267,3,1672319027),(94894,4,23268,3,1672319027),(94895,4,23269,3,1672319027),(94896,4,23270,3,1672319027),(94897,4,23271,3,1672319027),(94898,4,23272,3,1672319027),(94899,4,23273,3,1672319027),(94900,4,23274,3,1672319027),(94901,4,23275,3,1672319027),(94902,4,23276,3,1672319027),(94903,4,23277,3,1672319027),(94904,4,23278,3,1672319027),(94905,4,23279,3,1672319027),(94906,4,23280,3,1672319027),(94907,4,23281,3,1672319027),(94908,4,23282,3,1672319027),(94909,4,23283,3,1672319027),(94910,4,23284,3,1672319027),(94911,4,23285,3,1672319027),(94912,4,23286,3,1672319027),(94913,4,23287,3,1672319027),(94914,4,23288,3,1672319027),(94915,4,23289,3,1672319027),(94916,4,23290,3,1672319027),(94917,4,23291,3,1672319027),(94918,4,23292,3,1672319027),(94919,4,23293,3,1672319027),(94920,4,23294,3,1672319027),(94921,4,23295,3,1672319027),(94922,4,23296,3,1672319027),(94923,4,23297,3,1672319027),(94924,4,23298,3,1672319027),(94925,4,23299,3,1672319027),(94926,4,23300,3,1672319027),(94927,4,23301,3,1672319027),(94928,4,23302,3,1672319027),(94929,4,23303,3,1672319027),(94930,4,23304,3,1672319027),(94931,4,23305,3,1672319027),(94932,4,23306,3,1672319027),(94933,4,23307,3,1672319027),(94934,4,23308,3,1672319027),(94935,4,23309,3,1672319027),(94936,4,23310,3,1672319027),(94937,4,23311,3,1672319027),(94938,4,23312,3,1672319027),(94939,4,23313,3,1672319027),(94940,4,23314,3,1672319027),(94941,4,23315,3,1672319027),(94942,4,23316,3,1672319027),(94943,4,23317,3,1672319027),(94944,4,23318,3,1672319027),(94945,4,23319,3,1672319027),(94946,4,23320,3,1672319027),(94947,4,23321,3,1672319027),(94948,4,23322,3,1672319027),(94949,4,23323,3,1672319027),(94950,4,23324,3,1672319027),(94951,4,23325,3,1672319027),(94952,4,23326,3,1672319027),(94953,4,23327,3,1672319027),(94954,4,23328,3,1672319027),(94955,4,23329,3,1672319027),(94956,4,23330,3,1672319027),(94957,4,23331,3,1672319027),(94958,4,23332,3,1672319027),(94959,4,23333,3,1672319027),(94960,4,23334,3,1672319027),(94961,4,23335,3,1672319027),(94962,4,23336,3,1672319027),(94963,4,23337,3,1672319027),(94964,4,23338,3,1672319027),(94965,4,23339,3,1672319027),(94966,4,23340,3,1672319027),(94967,4,23341,3,1672319027),(94968,4,23342,3,1672319027),(94969,4,23343,3,1672319027),(94970,4,23344,3,1672319027),(94971,4,23345,3,1672319027),(94972,4,23346,3,1672319027),(94973,4,23347,3,1672319027),(94974,4,23348,3,1672319027),(94975,4,23349,3,1672319027),(94976,4,23350,3,1672319027),(94977,4,23351,3,1672319027),(94978,4,23352,3,1672319027),(94979,4,23353,3,1672319027),(94980,4,23354,3,1672319027),(94981,4,23355,3,1672319027),(94982,4,23356,3,1672319027),(94983,4,23357,3,1672319027),(94984,4,23358,3,1672319027),(94985,4,23359,3,1672319027),(94986,4,23360,3,1672319027),(94987,4,23361,3,1672319027),(94988,4,23362,3,1672319027),(94989,4,23363,3,1672319027),(94990,4,23364,3,1672319027),(94991,4,23365,3,1672319027),(94992,4,23366,3,1672319027),(94993,4,23367,3,1672319027),(94994,4,23368,3,1672319027),(94995,4,23369,3,1672319027),(94996,4,23370,3,1672319027),(94997,4,23371,3,1672319027),(94998,4,23372,3,1672319027),(94999,4,23373,3,1672319027),(95000,4,23374,3,1672319027),(95001,4,23375,3,1672319027),(95002,4,23376,3,1672319027),(95003,4,23377,3,1672319027),(95004,4,23378,3,1672319027),(95005,4,23379,3,1672319027),(95006,4,23380,3,1672319027),(95007,4,23381,3,1672319027),(95008,4,23382,3,1672319027),(95009,4,23383,3,1672319027),(95010,4,23384,3,1672319027),(95011,4,23385,3,1672319027),(95012,4,23386,3,1672319027),(95013,4,23387,3,1672319027),(95014,4,23388,3,1672319027),(95015,4,23389,3,1672319027),(95016,4,23390,3,1672319027),(95017,4,23391,3,1672319027),(95018,4,23392,3,1672319027),(95019,4,23393,3,1672319027),(95020,4,23394,3,1672319027),(95021,4,23395,3,1672319027),(95022,4,23396,3,1672319027),(95023,4,23397,3,1672319027),(95024,4,23398,3,1672319027),(95025,4,23399,3,1672319027),(95026,4,23400,3,1672319027),(95027,4,23401,3,1672319027),(95028,4,23402,3,1672319027),(95029,4,23403,3,1672319027),(95030,4,23404,3,1672319027),(95031,4,23405,3,1672319027),(95032,4,23406,3,1672319027),(95033,4,23407,3,1672319027),(95034,4,23408,3,1672319027),(95035,4,23409,3,1672319027),(95036,4,23410,3,1672319027),(95037,4,23411,3,1672319027),(95038,4,23412,3,1672319027),(95039,4,23413,3,1672319027),(95040,4,23414,3,1672319027),(95041,4,23415,3,1672319027),(95042,4,23416,3,1672319027),(95043,4,23417,3,1672319027),(95044,4,23418,3,1672319027),(95045,4,23419,3,1672319027),(95046,4,23420,3,1672319027),(95047,4,23421,3,1672319027),(95048,4,23422,3,1672319027),(95049,4,23423,3,1672319027),(95050,4,23424,3,1672319027),(95051,4,23425,3,1672319027),(95052,4,23426,3,1672319027),(95053,4,23427,3,1672319027),(95054,4,23428,3,1672319027),(95055,4,23429,3,1672319027),(95056,4,23430,3,1672319027),(95057,4,23431,3,1672319027),(95058,4,23432,3,1672319027),(95059,4,23433,3,1672319027),(95060,4,23434,3,1672319027),(95061,4,23435,3,1672319027),(95062,4,23436,3,1672319027),(95063,4,23437,3,1672319027),(95064,4,23438,3,1672319027),(95065,4,23439,3,1672319027),(95066,4,23440,3,1672319027),(95067,4,23441,3,1672319027),(95068,4,23442,3,1672319027),(95069,4,23443,3,1672319027),(95070,4,23444,3,1672319027),(95071,4,23445,3,1672319027),(95072,4,23446,3,1672319027),(95073,4,23447,3,1672319027),(95074,4,23448,3,1672319027),(95075,4,23449,3,1672319027),(95076,4,23450,3,1672319027),(95077,4,23451,3,1672319027),(95078,4,23452,3,1672319027),(95079,4,23453,3,1672319027),(95080,4,23454,3,1672319027),(95081,4,23455,3,1672319027),(95082,4,23456,3,1672319027),(95083,4,23457,3,1672319027),(95084,4,23458,3,1672319027),(95085,4,23459,3,1672319027),(95086,4,23460,3,1672319027),(95087,4,23461,3,1672319027),(95088,4,23462,3,1672319027),(95089,4,23463,3,1672319027),(95090,4,23464,3,1672319027),(95091,4,23465,3,1672319027),(95092,4,23466,3,1672319027),(95093,4,23467,3,1672319027),(95094,4,23468,3,1672319027),(95095,4,23469,3,1672319027),(95096,4,23470,3,1672319027),(95097,4,23471,3,1672319027),(95098,4,23472,3,1672319027),(95099,4,23473,3,1672319027),(95100,4,23474,3,1672319027),(95101,4,23475,3,1672319027),(95102,4,23476,3,1672319027),(95103,4,23477,3,1672319027),(95104,4,23478,3,1672319027),(95105,4,23479,3,1672319027),(95106,4,23480,3,1672319027),(95107,4,23481,3,1672319027),(95108,4,23482,3,1672319027),(95109,4,23483,3,1672319027),(95110,4,23484,3,1672319027),(95111,4,23485,3,1672319027),(95112,4,23486,3,1672319027),(95113,4,23487,3,1672319027),(95114,4,23488,3,1672319027),(95115,4,23489,3,1672319027),(95116,4,23490,3,1672319027),(95117,4,23491,3,1672319027),(95118,4,23492,3,1672319027),(95119,4,23493,3,1672319027),(95120,4,23494,3,1672319027),(95121,4,23495,3,1672319027),(95122,4,23496,3,1672319027),(95123,4,23497,3,1672319027),(95124,4,23498,3,1672319027),(95125,4,23499,3,1672319027),(95126,4,23500,3,1672319027),(95127,4,23501,3,1672319027),(95128,4,23502,3,1672319027),(95129,4,23503,3,1672319027),(95130,4,23504,3,1672319027),(95131,4,23505,3,1672319027),(95132,4,23506,3,1672319027),(95133,4,23507,3,1672319027),(95134,4,23508,3,1672319027),(95135,4,23509,3,1672319027),(95136,4,23510,3,1672319027),(95137,4,23511,3,1672319027),(95138,4,23512,3,1672319027),(95139,4,23513,3,1672319027),(95140,4,23514,3,1672319027),(95141,4,23515,3,1672319027),(95142,4,23516,3,1672319027),(95143,4,23517,3,1672319027),(95144,4,23518,3,1672319027),(95145,4,23519,3,1672319027),(95146,4,23520,3,1672319027),(95147,4,23521,3,1672319027),(95148,4,23522,3,1672319027),(95149,4,23523,3,1672319027),(95150,4,23524,3,1672319027),(95151,4,23525,3,1672319027),(95152,4,23526,3,1672319027),(95153,4,23527,3,1672319027),(95154,4,23528,3,1672319027),(95155,4,23529,3,1672319027),(95156,4,23530,3,1672319027),(95157,4,23531,3,1672319027),(95158,4,23532,3,1672319027),(95159,4,23533,3,1672319027),(95160,4,23534,3,1672319027),(95161,4,23535,3,1672319027),(95162,4,23536,3,1672319027),(95163,4,23537,3,1672319027),(95164,4,23538,3,1672319027),(95165,4,23539,3,1672319027),(95166,4,23540,3,1672319027),(95167,4,23541,3,1672319027),(95168,4,23542,3,1672319027),(95169,4,23543,3,1672319027),(95170,4,23544,3,1672319027),(95171,4,23545,3,1672319027),(95172,4,23546,3,1672319027),(95173,4,23547,3,1672319027),(95174,4,23548,3,1672319027),(95175,4,23549,3,1672319027),(95176,4,23550,3,1672319027),(95177,4,23551,3,1672319027),(95178,4,23552,3,1672319027),(95179,4,23553,3,1672319027),(95180,4,23554,3,1672319027),(95181,4,23555,3,1672319027),(95182,4,23556,3,1672319027),(95183,4,23557,3,1672319027),(95184,4,23558,3,1672319027),(95185,4,23559,3,1672319027),(95186,4,23560,3,1672319027),(95187,4,23561,3,1672319027),(95188,4,23562,3,1672319027),(95189,4,23563,3,1672319027),(95190,4,23564,3,1672319027),(95191,4,23565,3,1672319027),(95192,4,23566,3,1672319027),(95193,4,23567,3,1672319027),(95194,4,23568,3,1672319027),(95195,4,23569,3,1672319027),(95196,4,23570,3,1672319027),(95197,4,23571,3,1672319027),(95198,4,23572,3,1672319027),(95199,4,23573,3,1672319027),(95200,4,23574,3,1672319027),(95201,4,23575,3,1672319027),(95202,4,23576,3,1672319027),(95203,4,23577,3,1672319027),(95204,4,23578,3,1672319027),(95205,4,23579,3,1672319027),(95206,4,23580,3,1672319027),(95207,4,23581,3,1672319027),(95208,4,23582,3,1672319027),(95209,4,23583,3,1672319027),(95210,4,23584,3,1672319027),(95211,4,23585,3,1672319027),(95212,4,23586,3,1672319027),(95213,4,23587,3,1672319027),(95214,4,23588,3,1672319027),(95215,4,23589,3,1672319027),(95216,4,23590,3,1672319027),(95217,4,23591,3,1672319027),(95218,4,23592,3,1672319027),(95219,4,23593,3,1672319027),(95220,4,23594,3,1672319027),(95221,4,23595,3,1672319027),(95222,4,23596,3,1672319027),(95223,4,23597,3,1672319027),(95224,4,23598,3,1672319027),(95225,4,23599,3,1672319027),(95226,4,23600,3,1672319027),(95227,4,23601,3,1672319027),(95228,4,23602,3,1672319027),(95229,4,23603,3,1672319027),(95230,4,23604,3,1672319027),(95231,4,23605,3,1672319027),(95232,4,23606,3,1672319027),(95233,4,23607,3,1672319027),(95234,4,23608,3,1672319027),(95235,4,23609,3,1672319027),(95236,4,23610,3,1672319027),(95237,4,23611,3,1672319027),(95238,4,23612,3,1672319027),(95239,4,23613,3,1672319027),(95240,4,23614,3,1672319027),(95241,4,23615,3,1672319027),(95242,4,23616,3,1672319027),(95243,4,23617,3,1672319027),(95244,4,23618,3,1672319027),(95245,4,23619,3,1672319027),(95246,4,23620,3,1672319027),(95247,4,23621,3,1672319027),(95248,4,23622,3,1672319027),(95249,4,23623,3,1672319027),(95250,4,23624,3,1672319027),(95251,4,23625,3,1672319027),(95252,4,23626,3,1672319027),(95253,4,23627,3,1672319027),(95254,4,23628,3,1672319027),(95255,4,23629,3,1672319027),(95256,4,23630,3,1672319027),(95257,4,23631,3,1672319027),(95258,4,23632,3,1672319027),(95259,4,23633,3,1672319027),(95260,4,23634,3,1672319027),(95261,4,23635,3,1672319027),(95262,4,23636,3,1672319027),(95263,4,23637,3,1672319027),(95264,4,23638,3,1672319027),(95265,4,23639,3,1672319027),(95266,4,23640,3,1672319027),(95267,4,23641,3,1672319027),(95268,4,23642,3,1672319027),(95269,4,23643,3,1672319027),(95270,4,23644,3,1672319027),(95271,4,23645,3,1672319027),(95272,4,23646,3,1672319027),(95273,4,23647,3,1672319027),(95274,4,23648,3,1672319027),(95275,4,23649,3,1672319027),(95276,4,23650,3,1672319027),(95277,4,23651,3,1672319027),(95278,4,23652,3,1672319027),(95279,4,23653,3,1672319027),(95280,4,23654,3,1672319027),(95281,4,23655,3,1672319027),(95282,4,23656,3,1672319027),(95283,4,23657,3,1672319027),(95284,4,23658,3,1672319027),(95285,4,23659,3,1672319027),(95286,4,23660,3,1672319027),(95287,4,23661,3,1672319027),(95288,4,23662,3,1672319027),(95289,4,23663,3,1672319027),(95290,4,23664,3,1672319027),(95291,4,23665,3,1672319027),(95292,4,23666,3,1672319027),(95293,4,23667,3,1672319027),(95294,4,23668,3,1672319027),(95295,4,23669,3,1672319027),(95296,4,23670,3,1672319027),(95297,4,23671,3,1672319027),(95298,4,23672,3,1672319027),(95299,4,23673,3,1672319027),(95300,4,23674,3,1672319027),(95301,4,23675,3,1672319027),(95302,4,23676,3,1672319027),(95303,4,23677,3,1672319027),(95304,4,23678,3,1672319027),(95305,4,23679,3,1672319027),(95306,4,23680,3,1672319027),(95307,4,23681,3,1672319027),(95308,4,23682,3,1672319027),(95309,4,23683,3,1672319027),(95310,4,23684,3,1672319027),(95311,4,23685,3,1672319027),(95312,4,23686,3,1672319027),(95313,4,23687,3,1672319027),(95314,4,23688,3,1672319027),(95315,4,23689,3,1672319027),(95316,4,23690,3,1672319027),(95317,4,23691,3,1672319027),(95318,4,23692,3,1672319027),(95319,4,23693,3,1672319027),(95320,4,23694,3,1672319027),(95321,4,23695,3,1672319027),(95322,4,23696,3,1672319027),(95323,4,23697,3,1672319027),(95324,4,23698,3,1672319027),(95325,4,23699,3,1672319027),(95326,4,23700,3,1672319027),(95327,4,23701,3,1672319027),(95328,4,23702,3,1672319027),(95329,4,23703,3,1672319027),(95330,4,23704,3,1672319027),(95331,4,23705,3,1672319027),(95332,4,23706,3,1672319027),(95333,4,23707,3,1672319027),(95334,4,23708,3,1672319027),(95335,4,23709,3,1672319027),(95336,4,23710,3,1672319027),(95337,4,23711,3,1672319027),(95338,4,23712,3,1672319027),(95339,4,23713,3,1672319027),(95340,4,23714,3,1672319027),(95341,4,23715,3,1672319027),(95342,4,23716,3,1672319027),(95343,4,23717,3,1672319027),(95344,4,23718,3,1672319027),(95345,4,23719,3,1672319027),(95346,4,23720,3,1672319027),(95347,4,23721,3,1672319027),(95348,4,23722,3,1672319027),(95349,4,23723,3,1672319027),(95350,4,23724,3,1672319027),(95351,4,23725,3,1672319027),(95352,4,23726,3,1672319027),(95353,4,23727,3,1672319027),(95354,4,23728,3,1672319027),(95355,4,23729,3,1672319027),(95356,4,23730,3,1672319027),(95357,4,23731,3,1672319027),(95358,4,23732,3,1672319027),(95359,4,23733,3,1672319027),(95360,4,23734,3,1672319027),(95361,4,23735,3,1672319027),(95362,4,23736,3,1672319027),(95363,4,23737,3,1672319027),(95364,4,23738,3,1672319027),(95365,4,23739,3,1672319027),(95366,4,23740,3,1672319027),(95367,4,23741,3,1672319027),(95368,4,23742,3,1672319027),(95369,4,23743,3,1672319027),(95370,4,23744,3,1672319027),(95371,4,23745,3,1672319027),(95372,4,23746,3,1672319027),(95373,4,23747,3,1672319027),(95374,4,23748,3,1672319027),(95375,4,23749,3,1672319027),(95376,4,23750,3,1672319027),(95377,4,23751,3,1672319027),(95378,4,23752,3,1672319027),(95379,4,23753,3,1672319027),(95380,4,23754,3,1672319027),(95381,4,23755,3,1672319027),(95382,4,23756,3,1672319027),(95383,4,23757,3,1672319027),(95384,4,23758,3,1672319027),(95385,4,23759,3,1672319027),(95386,4,23760,3,1672319027),(95387,4,23761,3,1672319027),(95388,4,23762,3,1672319027),(95389,4,23763,3,1672319027),(95390,4,23764,3,1672319027),(95391,4,23765,3,1672319027),(95392,4,23766,3,1672319027),(95393,4,23767,3,1672319027),(95394,4,23768,3,1672319027),(95395,4,23769,3,1672319027),(95396,4,23770,3,1672319027),(95397,4,23771,3,1672319027),(95398,4,23772,3,1672319027),(95399,4,23773,3,1672319027),(95400,4,23774,3,1672319027),(95401,4,23775,3,1672319027),(95402,4,23776,3,1672319027),(95403,4,23777,3,1672319027),(95404,4,23778,3,1672319027),(95405,4,23779,3,1672319027),(95406,4,23780,3,1672319027),(95407,4,23781,3,1672319027),(95408,4,23782,3,1672319027),(95409,4,23783,3,1672319027),(95410,4,23784,3,1672319027),(95411,4,23785,3,1672319027),(95412,4,23786,3,1672319027),(95413,4,23787,3,1672319027),(95414,4,23788,3,1672319027),(95415,4,23789,3,1672319027),(95416,4,23790,3,1672319027),(95417,4,23791,3,1672319027),(95418,4,23792,3,1672319027),(95419,4,23793,3,1672319027),(95420,4,23794,3,1672319027),(95421,4,23795,3,1672319027),(95422,4,23796,3,1672319027),(95423,4,23797,3,1672319027),(95424,4,23798,3,1672319027),(95425,4,23799,3,1672319027),(95426,4,23800,3,1672319027),(95427,4,23801,3,1672319027),(95428,4,23802,3,1672319027),(95429,4,23803,3,1672319027),(95430,4,23804,3,1672319027),(95431,4,23805,3,1672319027),(95432,4,23806,3,1672319027),(95433,4,23807,3,1672319027),(95434,4,23808,3,1672319027),(95435,4,23809,3,1672319027),(95436,4,23810,3,1672319027),(95437,4,23811,3,1672319027),(95438,4,23812,3,1672319027),(95439,4,23813,3,1672319027),(95440,4,23814,3,1672319027),(95441,4,23815,3,1672319027),(95442,4,23816,3,1672319027),(95443,4,23817,3,1672319027),(95444,4,23818,3,1672319027),(95445,4,23819,3,1672319027),(95446,4,23820,3,1672319027),(95447,4,23821,3,1672319027),(95448,4,23822,3,1672319027),(95449,4,23823,3,1672319027),(95450,4,23824,3,1672319027),(95451,4,23825,3,1672319027),(95452,4,23826,3,1672319027),(95453,4,23827,3,1672319027),(95454,4,23828,3,1672319027),(95455,4,23829,3,1672319027),(95456,4,23830,3,1672319027),(95457,4,23831,3,1672319027),(95458,4,23832,3,1672319027),(95459,4,23833,3,1672319027),(95460,4,23834,3,1672319027),(95461,4,23835,3,1672319027),(95462,4,23836,3,1672319027),(95463,4,23837,3,1672319027),(95464,4,23838,3,1672319027),(95465,4,23839,3,1672319027),(95466,4,23840,3,1672319027),(95467,4,23841,3,1672319027),(95468,4,23842,3,1672319027),(95469,4,23843,3,1672319027),(95470,4,23844,3,1672319027),(95471,4,23845,3,1672319027),(95472,4,23846,3,1672319027),(95473,4,23847,3,1672319027),(95474,4,23848,3,1672319027),(95475,4,23849,3,1672319027),(95476,4,23850,3,1672319027),(95477,4,23851,3,1672319027),(95478,4,23852,3,1672319027),(95479,4,23853,3,1672319027),(95480,4,23854,3,1672319027),(95481,4,23855,3,1672319027),(95482,4,23856,3,1672319027),(95483,4,23857,3,1672319027),(95484,4,23858,3,1672319027),(95485,4,23859,3,1672319027),(95486,4,23860,3,1672319027),(95487,4,23861,3,1672319027),(95488,4,23862,3,1672319027),(95489,4,23863,3,1672319027),(95490,4,23864,3,1672319027),(95491,4,23865,3,1672319027),(95492,4,23866,3,1672319027),(95493,4,23867,3,1672319027),(95494,4,23868,3,1672319027),(95495,4,23869,3,1672319027),(95496,4,23870,3,1672319027),(95497,4,23871,3,1672319027),(95498,4,23872,3,1672319027),(95499,4,23873,3,1672319027),(95500,4,23874,3,1672319027),(95501,4,23875,3,1672319027),(95502,4,23876,3,1672319027),(95503,4,23877,3,1672319027),(95504,4,23878,3,1672319027),(95505,4,23879,3,1672319027),(95506,4,23880,3,1672319027),(95507,4,23881,3,1672319027),(95508,4,23882,3,1672319027),(95509,4,23883,3,1672319027),(95510,4,23884,3,1672319027),(95511,4,23885,3,1672319027),(95512,4,23886,3,1672319027),(95513,4,23887,3,1672319027),(95514,4,23888,3,1672319027),(95515,4,23889,3,1672319027),(95516,4,23890,3,1672319027),(95517,4,23891,3,1672319027),(95518,4,23892,3,1672319027),(95519,4,23893,3,1672319027),(95520,4,23894,3,1672319027),(95521,4,23895,3,1672319027),(95522,4,23896,3,1672319027),(95523,4,23897,3,1672319027),(95524,4,23898,3,1672319027),(95525,4,23899,3,1672319027),(95526,4,23900,3,1672319027),(95527,4,23901,3,1672319027),(95528,4,23902,3,1672319027),(95529,4,23903,3,1672319027),(95530,4,23904,3,1672319027),(95531,4,23905,3,1672319027),(95532,4,23906,3,1672319027),(95533,4,23907,3,1672319027),(95534,4,23908,3,1672319027),(95535,4,23909,3,1672319027),(95536,4,23910,3,1672319027),(95537,4,23911,3,1672319027),(95538,4,23912,3,1672319027),(95539,4,23913,3,1672319027),(95540,4,23914,3,1672319027),(95541,4,23915,3,1672319027),(95542,4,23916,3,1672319027),(95543,4,23917,3,1672319027),(95544,4,23918,3,1672319027),(95545,4,23919,3,1672319027),(95546,4,23920,3,1672319027),(95547,4,23921,3,1672319027),(95548,4,23922,3,1672319027),(95549,4,23923,3,1672319027),(95550,4,23924,3,1672319027),(95551,4,23925,3,1672319027),(95552,4,23926,3,1672319027),(95553,4,23927,3,1672319027),(95554,4,23928,3,1672319027),(95555,4,23929,3,1672319027),(95556,4,23930,3,1672319027),(95557,4,23931,3,1672319027),(95558,4,23932,3,1672319027),(95559,4,23933,3,1672319027),(95560,4,23934,3,1672319027),(95561,4,23935,3,1672319027),(95562,4,23936,3,1672319027),(95563,4,23937,3,1672319027),(95564,4,23938,3,1672319027),(95565,4,23939,3,1672319027),(95566,4,23940,3,1672319027),(95567,4,23941,3,1672319027),(95568,4,23942,3,1672319027),(95569,4,23943,3,1672319027),(95570,4,23944,3,1672319027),(95571,4,23945,3,1672319027),(95572,4,23946,3,1672319027),(95573,4,23947,3,1672319027),(95574,4,23948,3,1672319027),(95575,4,23949,3,1672319027),(95576,4,23950,3,1672319027),(95577,4,23951,3,1672319027),(95578,4,23952,3,1672319027),(95579,4,23953,3,1672319027),(95580,4,23954,3,1672319027),(95581,4,23955,3,1672319027),(95582,4,23956,3,1672319027),(95583,4,23957,3,1672319027),(95584,4,23958,3,1672319027),(95585,4,23959,3,1672319027),(95586,4,23960,3,1672319027),(95587,4,23961,3,1672319027),(95588,4,23962,3,1672319027),(95589,4,23963,3,1672319027),(95590,4,23964,3,1672319027),(95591,4,23965,3,1672319027),(95592,4,23966,3,1672319027),(95593,4,23967,3,1672319027),(95594,4,23968,3,1672319027),(95595,4,23969,3,1672319027),(95596,4,23970,3,1672319027),(95597,4,23971,3,1672319027),(95598,4,23972,3,1672319027),(95599,4,23973,3,1672319027),(95600,4,23974,3,1672319027),(95601,4,23975,3,1672319027),(95602,4,23976,3,1672319027),(95603,4,23977,3,1672319027),(95604,4,23978,3,1672319027),(95605,4,23979,3,1672319027),(95606,4,23980,3,1672319027),(95607,4,23981,3,1672319027),(95608,4,23982,3,1672319027),(95609,4,23983,3,1672319027),(95610,4,23984,3,1672319027),(95611,4,23985,3,1672319027),(95612,4,23986,3,1672319027),(95613,4,23987,3,1672319027),(95614,4,23988,3,1672319027),(95615,4,23989,3,1672319027),(95616,4,23990,3,1672319027),(95617,4,23991,3,1672319027),(95618,4,23992,3,1672319027),(95619,4,23993,3,1672319027),(95620,4,23994,3,1672319027),(95621,4,23995,3,1672319027),(95622,4,23996,3,1672319027),(95623,4,23997,3,1672319027),(95624,4,23998,3,1672319027),(95625,4,23999,3,1672319027),(95626,4,24000,3,1672319027),(95627,4,24001,3,1672319027),(95628,4,24002,3,1672319027),(95629,4,24003,3,1672319027),(95630,4,24004,3,1672319027),(95631,4,24005,3,1672319027),(95632,4,24006,3,1672319027),(95633,4,24007,3,1672319027),(95634,4,24008,3,1672319027),(95635,4,24009,3,1672319027),(95636,4,24010,3,1672319027),(95637,4,24011,3,1672319027),(95638,4,24012,3,1672319027),(95639,4,24013,3,1672319027),(95640,4,24014,3,1672319027),(95641,4,24015,3,1672319027),(95642,4,24016,3,1672319027),(95643,4,24017,3,1672319027),(95644,4,24018,3,1672319027),(95645,4,24019,3,1672319027),(95646,4,24020,3,1672319027),(95647,4,24021,3,1672319027),(95648,4,24022,3,1672319027),(95649,4,24023,3,1672319027),(95650,4,24024,3,1672319027),(95651,4,24025,3,1672319027),(95652,4,24026,3,1672319027),(95653,4,24027,3,1672319027),(95654,4,24028,3,1672319027),(95655,4,24029,3,1672319027),(95656,4,24030,3,1672319027),(95657,4,24031,3,1672319027),(95658,4,24032,3,1672319027),(95659,4,24033,3,1672319027),(95660,4,24034,3,1672319027),(95661,4,24035,3,1672319027),(95662,4,24036,3,1672319027),(95663,4,24037,3,1672319027),(95664,4,24038,3,1672319027),(95665,4,24039,3,1672319027),(95666,4,24040,3,1672319027),(95667,4,24041,3,1672319027),(95668,4,24042,3,1672319027),(95669,4,24043,3,1672319027),(95670,4,24044,3,1672319027),(95671,4,24045,3,1672319027),(95672,4,24046,3,1672319027),(95673,4,24047,3,1672319027),(95674,4,24048,3,1672319027),(95675,4,24049,3,1672319027),(95676,4,24050,3,1672319027),(95677,4,24051,3,1672319027),(95678,4,24052,3,1672319027),(95679,4,24053,3,1672319027),(95680,4,24054,3,1672319027),(95681,4,24055,3,1672319027),(95682,4,24056,3,1672319027),(95683,4,24057,3,1672319027),(95684,4,24058,3,1672319027),(95685,4,24059,3,1672319027),(95686,4,24060,3,1672319027),(95687,4,24061,3,1672319027),(95688,4,24062,3,1672319027),(95689,4,24063,3,1672319027),(95690,4,24064,3,1672319027),(95691,4,24065,3,1672319027),(95692,4,24066,3,1672319027),(95693,4,24067,3,1672319027),(95694,4,24068,3,1672319027),(95695,4,24069,3,1672319027),(95696,4,24070,3,1672319027),(95697,4,24071,3,1672319027),(95698,4,24072,3,1672319027),(95699,4,24073,3,1672319027),(95700,4,24074,3,1672319027),(95701,4,24075,3,1672319027),(95702,4,24076,3,1672319027),(95703,4,24077,3,1672319027),(95704,4,24078,3,1672319027),(95705,4,24079,3,1672319027),(95706,4,24080,3,1672319027),(95707,4,24081,3,1672319027),(95708,4,24082,3,1672319027),(95709,4,24083,3,1672319027),(95710,4,24084,3,1672319027),(95711,4,24085,3,1672319027),(95712,4,24086,3,1672319027),(95713,4,24087,3,1672319027),(95714,4,24088,3,1672319027),(95715,4,24089,3,1672319027),(95716,4,24090,3,1672319027),(95717,4,24091,3,1672319027),(95718,4,24092,3,1672319027),(95719,4,24093,3,1672319027),(95720,4,24094,3,1672319027),(95721,4,24095,3,1672319027),(95722,4,24096,3,1672319027),(95723,4,24097,3,1672319027),(95724,4,24098,3,1672319027),(95725,4,24099,3,1672319027),(95726,4,24100,3,1672319027),(95727,4,24101,3,1672319027),(95728,4,24102,3,1672319027),(95729,4,24103,3,1672319027),(95730,4,24104,3,1672319027),(95731,4,24105,3,1672319027),(95732,4,24106,3,1672319027),(95733,4,24107,3,1672319027),(95734,4,24108,3,1672319027),(95735,4,24109,3,1672319027),(95736,4,24110,3,1672319027),(95737,4,24111,3,1672319027),(95738,4,24112,3,1672319027),(95739,4,24113,3,1672319027),(95740,4,24114,3,1672319027),(95741,4,24115,3,1672319027),(95742,4,24116,3,1672319027),(95743,4,24117,3,1672319027),(95744,4,24118,3,1672319027),(95745,4,24119,3,1672319027),(95746,4,24120,3,1672319027),(95747,4,24121,3,1672319027),(95748,4,24122,3,1672319027),(95749,4,24123,3,1672319027),(95750,4,24124,3,1672319027),(95751,4,24125,3,1672319027),(95752,4,24126,3,1672319027),(95753,4,24127,3,1672319027),(95754,4,24128,3,1672319027),(95755,4,24129,3,1672319027),(95756,4,24130,3,1672319027),(95757,4,24131,3,1672319027),(95758,4,24132,3,1672319027),(95759,4,24133,3,1672319027),(95760,4,24134,3,1672319027),(95761,4,24135,3,1672319027),(95762,4,24136,3,1672319027),(95763,4,24137,3,1672319027),(95764,4,24138,3,1672319027),(95765,4,24139,3,1672319027),(95766,4,24140,3,1672319027),(95767,4,24141,3,1672319027),(95768,4,24142,3,1672319027),(95769,4,24143,3,1672319027),(95770,4,24144,3,1672319027),(95771,4,24145,3,1672319027),(95772,4,24146,3,1672319027),(95773,4,24147,3,1672319027),(95774,4,24148,3,1672319027),(95775,4,24149,3,1672319027),(95776,4,24150,3,1672319027),(95777,4,24151,3,1672319027),(95778,4,24152,3,1672319027),(95779,4,24153,3,1672319027),(95780,4,24154,3,1672319027),(95781,4,24155,3,1672319027),(95782,4,24156,3,1672319027),(95783,4,24157,3,1672319027),(95784,4,24158,3,1672319027),(95785,4,24159,3,1672319027),(95786,4,24160,3,1672319027),(95787,4,24161,3,1672319027),(95788,4,24162,3,1672319027),(95789,4,24163,3,1672319027),(95790,4,24164,3,1672319027),(95791,4,24165,3,1672319027),(95792,4,24166,3,1672319027),(95793,4,24167,3,1672319027),(95794,4,24168,3,1672319027),(95795,4,24169,3,1672319027),(95796,4,24170,3,1672319027),(95797,4,24171,3,1672319027),(95798,4,24172,3,1672319027),(95799,4,24173,3,1672319027),(95800,4,24174,3,1672319027),(95801,4,24175,3,1672319027),(95802,4,24176,3,1672319027),(95803,4,24177,3,1672319027),(95804,4,24178,3,1672319027),(95805,4,24179,3,1672319027),(95806,4,24180,3,1672319027),(95807,4,24181,3,1672319027),(95808,4,24182,3,1672319027),(95809,4,24183,3,1672319027),(95810,4,24184,3,1672319027),(95811,4,24185,3,1672319027),(95812,4,24186,3,1672319027),(95813,4,24187,3,1672319027),(95814,4,24188,3,1672319027),(95815,4,24189,3,1672319027),(95816,4,24190,3,1672319027),(95817,4,24191,3,1672319027),(95818,4,24192,3,1672319027),(95819,4,24193,3,1672319027),(95820,4,24194,3,1672319027),(95821,4,24195,3,1672319027),(95822,4,24196,3,1672319027),(95823,4,24197,3,1672319027),(95824,4,24198,3,1672319027),(95825,4,24199,3,1672319027),(95826,4,24200,3,1672319027),(95827,4,24201,3,1672319027),(95828,4,24202,3,1672319027),(95829,4,24203,3,1672319027),(95830,4,24204,3,1672319027),(95831,4,24205,3,1672319027),(95832,4,24206,3,1672319027),(95833,4,24207,3,1672319027),(95834,4,24208,3,1672319027),(95835,4,24209,3,1672319027),(95836,4,24210,3,1672319027),(95837,4,24211,3,1672319027),(95838,4,24212,3,1672319027),(95839,4,24213,3,1672319027),(95840,4,24214,3,1672319027),(95841,4,24215,3,1672319027),(95842,4,24216,3,1672319027),(95843,4,24217,3,1672319027),(95844,4,24218,3,1672319027),(95845,4,24219,3,1672319027),(95846,4,24220,3,1672319027),(95847,4,24221,3,1672319027),(95848,4,24222,3,1672319027),(95849,4,24223,3,1672319027),(95850,4,24224,3,1672319027),(95851,4,24225,3,1672319027),(95852,4,24226,3,1672319027),(95853,4,24227,3,1672319027),(95854,4,24228,3,1672319027),(95855,4,24229,3,1672319027),(95856,4,24230,3,1672319027),(95857,4,24231,3,1672319027),(95858,4,24232,3,1672319027),(95859,4,24233,3,1672319027),(95860,4,24234,3,1672319027),(95861,4,24235,3,1672319027),(95862,4,24236,3,1672319027),(95863,4,24237,3,1672319027),(95864,4,24238,3,1672319027),(95865,4,24239,3,1672319027),(95866,4,24240,3,1672319027),(95867,4,24241,3,1672319027),(95868,4,24242,3,1672319027),(95869,4,24243,3,1672319027),(95870,4,24244,3,1672319027),(95871,4,24245,3,1672319027),(95872,4,24246,3,1672319027),(95873,4,24247,3,1672319027),(95874,4,24248,3,1672319027),(95875,4,24249,3,1672319027),(95876,4,24250,3,1672319027),(95877,4,24251,3,1672319027),(95878,4,24252,3,1672319027),(95879,4,24253,3,1672319027),(95880,4,24254,3,1672319027),(95881,4,24255,3,1672319027),(95882,4,24256,3,1672319027),(95883,4,24257,3,1672319027),(95884,4,24258,3,1672319027),(95885,4,24259,3,1672319027),(95886,4,24260,3,1672319027),(95887,4,24261,3,1672319027),(95888,4,24262,3,1672319027),(95889,4,24263,3,1672319027),(95890,4,24264,3,1672319027),(95891,4,24265,3,1672319027),(95892,4,24266,3,1672319027),(95893,4,24267,3,1672319027),(95894,4,24268,3,1672319027),(95895,4,24269,3,1672319027),(95896,4,24270,3,1672319027),(95897,4,24271,3,1672319027),(95898,4,24272,3,1672319027),(95899,4,24273,3,1672319027),(95900,4,24274,3,1672319027),(95901,4,24275,3,1672319027),(95902,4,24276,3,1672319027),(95903,4,24277,3,1672319027),(95904,4,24278,3,1672319027),(95905,4,24279,3,1672319027),(95906,4,24280,3,1672319027),(95907,4,24281,3,1672319027),(95908,4,24282,3,1672319027),(95909,4,24283,3,1672319027),(95910,4,24284,3,1672319027),(95911,4,24285,3,1672319027),(95912,4,24286,3,1672319027),(95913,4,24287,3,1672319027),(95914,4,24288,3,1672319027),(95915,4,24289,3,1672319027),(95916,4,24290,3,1672319027),(95917,4,24291,3,1672319027),(95918,4,24292,3,1672319027),(95919,4,24293,3,1672319027),(95920,4,24294,3,1672319027),(95921,4,24295,3,1672319027),(95922,4,24296,3,1672319027),(95923,4,24297,3,1672319027),(95924,4,24298,3,1672319027),(95925,4,24299,3,1672319027),(95926,4,24300,3,1672319027),(95927,4,24301,3,1672319027),(95928,4,24302,3,1672319027),(95929,4,24303,3,1672319027),(95930,4,24304,3,1672319027),(95931,4,24305,3,1672319027),(95932,4,24306,3,1672319027),(95933,4,24307,3,1672319027),(95934,4,24308,3,1672319027),(95935,4,24309,3,1672319027),(95936,4,24310,3,1672319027),(95937,4,24311,3,1672319027),(95938,4,24312,3,1672319027),(95939,4,24313,3,1672319027),(95940,4,24314,3,1672319027),(95941,4,24315,3,1672319027),(95942,4,24316,3,1672319027),(95943,4,24317,3,1672319027),(95944,4,24318,3,1672319027),(95945,4,24319,3,1672319027),(95946,4,24320,3,1672319027),(95947,4,24321,3,1672319027),(95948,4,24322,3,1672319027),(95949,4,24323,3,1672319027),(95950,4,24324,3,1672319027),(95951,4,24325,3,1672319027),(95952,4,24326,3,1672319027),(95953,4,24327,3,1672319027),(95954,4,24328,3,1672319027),(95955,4,24329,3,1672319027),(95956,4,24330,3,1672319027),(95957,4,24331,3,1672319027),(95958,4,24332,3,1672319027),(95959,4,24333,3,1672319027),(95960,4,24334,3,1672319027),(95961,4,24335,3,1672319027),(95962,4,24336,3,1672319027),(95963,4,24337,3,1672319027),(95964,4,24338,3,1672319027),(95965,4,24339,3,1672319027),(95966,4,24340,3,1672319027),(95967,4,24341,3,1672319027),(95968,4,24342,3,1672319027),(95969,4,24343,3,1672319027),(95970,4,24344,3,1672319027),(95971,4,24345,3,1672319027),(95972,4,24346,3,1672319027),(95973,4,24347,3,1672319027),(95974,4,24348,3,1672319027),(95975,4,24349,3,1672319027),(95976,4,24350,3,1672319027),(95977,4,24351,3,1672319027),(95978,4,24352,3,1672319027),(95979,4,24353,3,1672319027),(95980,4,24354,3,1672319027),(95981,4,24355,3,1672319027),(95982,4,24356,3,1672319027),(95983,4,24357,3,1672319027),(95984,4,24358,3,1672319027),(95985,4,24359,3,1672319027),(95986,4,24360,3,1672319027),(95987,4,24361,3,1672319027),(95988,4,24362,3,1672319027),(95989,4,24363,3,1672319027),(95990,4,24364,3,1672319027),(95991,4,24365,3,1672319027),(95992,4,24366,3,1672319027),(95993,4,24367,3,1672319027),(95994,4,24368,3,1672319027),(95995,4,24369,3,1672319027),(95996,4,24370,3,1672319027),(95997,4,24371,3,1672319027),(95998,4,24372,3,1672319027),(95999,4,24373,3,1672319027),(96000,4,24374,3,1672319027),(96001,4,24375,3,1672319027),(96002,4,24376,3,1672319027),(96003,4,24377,3,1672319027),(96004,4,24378,3,1672319027),(96005,4,24379,3,1672319027),(96006,4,24380,3,1672319027),(96007,4,24381,3,1672319027),(96008,4,24382,3,1672319027),(96009,4,24383,3,1672319027),(96010,4,24384,3,1672319027),(96011,4,24385,3,1672319027),(96012,4,24386,3,1672319027),(96013,4,24387,3,1672319027),(96014,4,24388,3,1672319027),(96015,4,24389,3,1672319027),(96016,4,24390,3,1672319027),(96017,4,24391,3,1672319027),(96018,4,24392,3,1672319027),(96019,4,24393,3,1672319027),(96020,4,24394,3,1672319027),(96021,4,24395,3,1672319027),(96022,4,24396,3,1672319027),(96023,4,24397,3,1672319027),(96024,4,24398,3,1672319027),(96025,4,24399,3,1672319027),(96026,4,24400,3,1672319027),(96027,4,24401,3,1672319027),(96028,4,24402,3,1672319027),(96029,4,24403,3,1672319027),(96030,4,24404,3,1672319027),(96031,4,24405,3,1672319027),(96032,4,24406,3,1672319027),(96033,4,24407,3,1672319027),(96034,4,24408,3,1672319027),(96035,4,24409,3,1672319027),(96036,4,24410,3,1672319027),(96037,4,24411,3,1672319027),(96038,4,24412,3,1672319027),(96039,4,24413,3,1672319027),(96040,4,24414,3,1672319027),(96041,4,24415,3,1672319027),(96042,4,24416,3,1672319027),(96043,4,24417,3,1672319027),(96044,4,24418,3,1672319027),(96045,4,24419,3,1672319027),(96046,4,24420,3,1672319027),(96047,4,24421,3,1672319027),(96048,4,24422,3,1672319027),(96049,4,24423,3,1672319027),(96050,4,24424,3,1672319027),(96051,4,24425,3,1672319027),(96052,4,24426,3,1672319027),(96053,4,24427,3,1672319027),(96054,4,24428,3,1672319027),(96055,4,24429,3,1672319027),(96056,4,24430,3,1672319027),(96057,4,24431,3,1672319027),(96058,4,24432,3,1672319027),(96059,4,24433,3,1672319027),(96060,4,24434,3,1672319027),(96061,4,24435,3,1672319027),(96062,4,24436,3,1672319027),(96063,4,24437,3,1672319027),(96064,4,24438,3,1672319027),(96065,4,24439,3,1672319027),(96066,4,24440,3,1672319027),(96067,4,24441,3,1672319027),(96068,4,24442,3,1672319027),(96069,4,24443,3,1672319027),(96070,4,24444,3,1672319027),(96071,4,24445,3,1672319027),(96072,4,24446,3,1672319027),(96073,4,24447,3,1672319027),(96074,4,24448,3,1672319027),(96075,4,24449,3,1672319027),(96076,4,24450,3,1672319027),(96077,4,24451,3,1672319027),(96078,4,24452,3,1672319027),(96079,4,24453,3,1672319027),(96080,4,24454,3,1672319027),(96081,4,24455,3,1672319027),(96082,4,24456,3,1672319027),(96083,4,24457,3,1672319027),(96084,4,24458,3,1672319027),(96085,4,24459,3,1672319027),(96086,4,24460,3,1672319027),(96087,4,24461,3,1672319027),(96088,4,24462,3,1672319027),(96089,4,24463,3,1672319027),(96090,4,24464,3,1672319027),(96091,4,24465,3,1672319027),(96092,4,24466,3,1672319027),(96093,4,24467,3,1672319027),(96094,4,24468,3,1672319027),(96095,4,24469,3,1672319027),(96096,4,24470,3,1672319027),(96097,4,24471,3,1672319027),(96098,4,24472,3,1672319027),(96099,4,24473,3,1672319027),(96100,4,24474,3,1672319027),(96101,4,24475,3,1672319027),(96102,4,24476,3,1672319027),(96103,4,24477,3,1672319027),(96104,4,24478,3,1672319027),(96105,4,24479,3,1672319027),(96106,4,24480,3,1672319027),(96107,4,24481,3,1672319027),(96108,4,24482,3,1672319027),(96109,4,24483,3,1672319027),(96110,4,24484,3,1672319027),(96111,4,24485,3,1672319027),(96112,4,24486,3,1672319027),(96113,4,24487,3,1672319027),(96114,4,24488,3,1672319027),(96115,4,24489,3,1672319027),(96116,4,24490,3,1672319027),(96117,4,24491,3,1672319027),(96118,4,24492,3,1672319027),(96119,4,24493,3,1672319027),(96120,4,24494,3,1672319027),(96121,4,24495,3,1672319027),(96122,4,24496,3,1672319027),(96123,4,24497,3,1672319027),(96124,4,24498,3,1672319027),(96125,4,24499,3,1672319027),(96126,4,24500,3,1672319027),(96127,4,24501,3,1672319027),(96128,4,24502,3,1672319027),(96129,4,24503,3,1672319027),(96130,4,24504,3,1672319027),(96131,4,24505,3,1672319027),(96132,4,24506,3,1672319027),(96133,4,24507,3,1672319027),(96134,4,24508,3,1672319027),(96135,4,24509,3,1672319027),(96136,4,24510,3,1672319027),(96137,4,24511,3,1672319027),(96138,4,24512,3,1672319027),(96139,4,24513,3,1672319027),(96140,4,24514,3,1672319027),(96141,4,24515,3,1672319027),(96142,4,24516,3,1672319027),(96143,4,24517,3,1672319027),(96144,4,24518,3,1672319027),(96145,4,24519,3,1672319027),(96146,4,24520,3,1672319027),(96147,4,24521,3,1672319027),(96148,4,24522,3,1672319027),(96149,4,24523,3,1672319027),(96150,4,24524,3,1672319027),(96151,4,24525,3,1672319027),(96152,4,24526,3,1672319027),(96153,4,24527,3,1672319027),(96154,4,24528,3,1672319027),(96155,4,24529,3,1672319027),(96156,4,24530,3,1672319027),(96157,4,24531,3,1672319027),(96158,4,24532,3,1672319027),(96159,4,24533,3,1672319027),(96160,4,24534,3,1672319027),(96161,4,24535,3,1672319027),(96162,4,24536,3,1672319027),(96163,4,24537,3,1672319027),(96164,4,24538,3,1672319027),(96165,4,24539,3,1672319027),(96166,4,24540,3,1672319027),(96167,4,24541,3,1672319027),(96168,4,24542,3,1672319027),(96169,4,24543,3,1672319027),(96170,4,24544,3,1672319027),(96171,4,24545,3,1672319027),(96172,4,24546,3,1672319027),(96173,4,24547,3,1672319027),(96174,4,24548,3,1672319027),(96175,4,24549,3,1672319027),(96176,4,24550,3,1672319027),(96177,4,24551,3,1672319027),(96178,4,24552,3,1672319027),(96179,4,24553,3,1672319027),(96180,4,24554,3,1672319027),(96181,4,24555,3,1672319027),(96182,4,24556,3,1672319027),(96183,4,24557,3,1672319027),(96184,4,24558,3,1672319027),(96185,4,24559,3,1672319027),(96186,4,24560,3,1672319027),(96187,4,24561,3,1672319027),(96188,4,24562,3,1672319027),(96189,4,24563,3,1672319027),(96190,4,24564,3,1672319027),(96191,4,24565,3,1672319027),(96192,4,24566,3,1672319027),(96193,4,24567,3,1672319027),(96194,4,24568,3,1672319027),(96195,4,24569,3,1672319027),(96196,4,24570,3,1672319027),(96197,4,24571,3,1672319027),(96198,4,24572,3,1672319027),(96199,4,24573,3,1672319027),(96200,4,24574,3,1672319027),(96201,4,24575,3,1672319027),(96202,4,24576,3,1672319027),(96203,4,24577,3,1672319027),(96204,4,24578,3,1672319027),(96205,4,24579,3,1672319027),(96206,4,24580,3,1672319027),(96207,4,24581,3,1672319027),(96208,4,24582,3,1672319027),(96209,4,24583,3,1672319027),(96210,4,24584,3,1672319027),(96211,4,24585,3,1672319027),(96212,4,24586,3,1672319027),(96213,4,24587,3,1672319027),(96214,4,24588,3,1672319027),(96215,4,24589,3,1672319027),(96216,4,24590,3,1672319027),(96217,4,24591,3,1672319027),(96218,4,24592,3,1672319027),(96219,4,24593,3,1672319027),(96220,4,24594,3,1672319027),(96221,4,24595,3,1672319027),(96222,4,24596,3,1672319027),(96223,4,24597,3,1672319027),(96224,4,24598,3,1672319027),(96225,4,24599,3,1672319027),(96226,4,24600,3,1672319027),(96227,4,24601,3,1672319027),(96228,4,24602,3,1672319027),(96229,4,24603,3,1672319027),(96230,4,24604,3,1672319027),(96231,4,24605,3,1672319027),(96232,4,24606,3,1672319027),(96233,4,24607,3,1672319027),(96234,4,24608,3,1672319027),(96235,4,24609,3,1672319027),(96236,4,24610,3,1672319027),(96237,4,24611,3,1672319027),(96238,4,24612,3,1672319027),(96239,4,24613,3,1672319027),(96240,4,24614,3,1672319027),(96241,4,24615,3,1672319027),(96242,4,24616,3,1672319027),(96243,4,24617,3,1672319027),(96244,4,24618,3,1672319027),(96245,4,24619,3,1672319027),(96246,4,24620,3,1672319027),(96247,4,24621,3,1672319027),(96248,4,24622,3,1672319027),(96249,4,24623,3,1672319027),(96250,4,24624,3,1672319027),(96251,4,24625,3,1672319027),(96252,4,24626,3,1672319027),(96253,4,24627,3,1672319027),(96254,4,24628,3,1672319027),(96255,4,24629,3,1672319027),(96256,4,24630,3,1672319027),(96257,4,24631,3,1672319027),(96258,4,24632,3,1672319027),(96259,4,24633,3,1672319027),(96260,4,24634,3,1672319027),(96261,4,24635,3,1672319027),(96262,4,24636,3,1672319027),(96263,4,24637,3,1672319027),(96264,4,24638,3,1672319027),(96265,4,24639,3,1672319027),(96266,4,24640,3,1672319027),(96267,4,24641,3,1672319027),(96268,4,24642,3,1672319027),(96269,4,24643,3,1672319027),(96270,4,24644,3,1672319027),(96271,4,24645,3,1672319027),(96272,4,24646,3,1672319027),(96273,4,24647,3,1672319027),(96274,4,24648,3,1672319027),(96275,4,24649,3,1672319027),(96276,4,24650,3,1672319027),(96277,4,24651,3,1672319027),(96278,4,24652,3,1672319027),(96279,4,24653,3,1672319027),(96280,4,24654,3,1672319027),(96281,4,24655,3,1672319027),(96282,4,24656,3,1672319027),(96283,4,24657,3,1672319027),(96284,4,24658,3,1672319027),(96285,4,24659,3,1672319027),(96286,4,24660,3,1672319027),(96287,4,24661,3,1672319027),(96288,4,24662,3,1672319027),(96289,4,24663,3,1672319027),(96290,4,24664,3,1672319027),(96291,4,24665,3,1672319027),(96292,4,24666,3,1672319027),(96293,4,24667,3,1672319027),(96294,4,24668,3,1672319027),(96295,4,24669,3,1672319027),(96296,4,24670,3,1672319027),(96297,4,24671,3,1672319027),(96298,4,24672,3,1672319027),(96299,4,24673,3,1672319027),(96300,4,24674,3,1672319027),(96301,4,24675,3,1672319027),(96302,4,24676,3,1672319027),(96303,4,24677,3,1672319027),(96304,4,24678,3,1672319027),(96305,4,24679,3,1672319027),(96306,4,24680,3,1672319027),(96307,4,24681,3,1672319027),(96308,4,24682,3,1672319027),(96309,4,24683,3,1672319027),(96310,4,24684,3,1672319027),(96311,4,24685,3,1672319027),(96312,4,24686,3,1672319027),(96313,4,24687,3,1672319027),(96314,4,24688,3,1672319027),(96315,4,24689,3,1672319027),(96316,4,24690,3,1672319027),(96317,4,24691,3,1672319027),(96318,4,24692,3,1672319027),(96319,4,24693,3,1672319027),(96320,4,24694,3,1672319027),(96321,4,24695,3,1672319027),(96322,4,24696,3,1672319027),(96323,4,24697,3,1672319027),(96324,4,24698,3,1672319027),(96325,4,24699,3,1672319027),(96326,4,24700,3,1672319027),(96327,4,24701,3,1672319027),(96328,4,24702,3,1672319027),(96329,4,24703,3,1672319027),(96330,4,24704,3,1672319027),(96331,4,24705,3,1672319027),(96332,4,24706,3,1672319027),(96333,4,24707,3,1672319027),(96334,4,24708,3,1672319027),(96335,4,24709,3,1672319027),(96336,4,24710,3,1672319027),(96337,4,24711,3,1672319027),(96338,4,24712,3,1672319027),(96339,4,24713,3,1672319027),(96340,4,24714,3,1672319027),(96341,4,24715,3,1672319027),(96342,4,24716,3,1672319027),(96343,4,24717,3,1672319027),(96344,4,24718,3,1672319027),(96345,4,24719,3,1672319027),(96346,4,24720,3,1672319027),(96347,4,24721,3,1672319027),(96348,4,24722,3,1672319027),(96349,4,24723,3,1672319027),(96350,4,24724,3,1672319027),(96351,4,24725,3,1672319027),(96352,4,24726,3,1672319027),(96353,4,24727,3,1672319027),(96354,4,24728,3,1672319027),(96355,4,24729,3,1672319027),(96356,4,24730,3,1672319027),(96357,4,24731,3,1672319027),(96358,4,24732,3,1672319027),(96359,4,24733,3,1672319027),(96360,4,24734,3,1672319027),(96361,4,24735,3,1672319027),(96362,4,24736,3,1672319027),(96363,4,24737,3,1672319027),(96364,4,24738,3,1672319027),(96365,4,24739,3,1672319027),(96366,4,24740,3,1672319027),(96367,4,24741,3,1672319027),(96368,4,24742,3,1672319027),(96369,4,24743,3,1672319027),(96370,4,24744,3,1672319027),(96371,4,24745,3,1672319027),(96372,4,24746,3,1672319027),(96373,4,24747,3,1672319027),(96374,4,24748,3,1672319027),(96375,4,24749,3,1672319027),(96376,4,24750,3,1672319027),(96377,4,24751,3,1672319027),(96378,4,24752,3,1672319027),(96379,4,24753,3,1672319027),(96380,4,24754,3,1672319027),(96381,4,24755,3,1672319027),(96382,4,24756,3,1672319027),(96383,4,24757,3,1672319027),(96384,4,24758,3,1672319027),(96385,4,24759,3,1672319027),(96386,4,24760,3,1672319027),(96387,4,24761,3,1672319027),(96388,4,24762,3,1672319027),(96389,4,24763,3,1672319027),(96390,4,24764,3,1672319027),(96391,4,24765,3,1672319027),(96392,4,24766,3,1672319027),(96393,4,24767,3,1672319027),(96394,4,24768,3,1672319027),(96395,4,24769,3,1672319027),(96396,4,24770,3,1672319027),(96397,4,24771,3,1672319027),(96398,4,24772,3,1672319027),(96399,4,24773,3,1672319027),(96400,4,24774,3,1672319027),(96401,4,24775,3,1672319027),(96402,4,24776,3,1672319027),(96403,4,24777,3,1672319027),(96404,4,24778,3,1672319027),(96405,4,24779,3,1672319027),(96406,4,24780,3,1672319027),(96407,4,24781,3,1672319027),(96408,4,24782,3,1672319027),(96409,4,24783,3,1672319027),(96410,4,24784,3,1672319027),(96411,4,24785,3,1672319027),(96412,4,24786,3,1672319027),(96413,4,24787,3,1672319027),(96414,4,24788,3,1672319027),(96415,4,24789,3,1672319027),(96416,4,24790,3,1672319027),(96417,4,24791,3,1672319027),(96418,4,24792,3,1672319027),(96419,4,24793,3,1672319027),(96420,4,24794,3,1672319027),(96421,4,24795,3,1672319027),(96422,4,24796,3,1672319027),(96423,4,24797,3,1672319027),(96424,4,24798,3,1672319027),(96425,4,24799,3,1672319027),(96426,4,24800,3,1672319027),(96427,4,24801,3,1672319027),(96428,4,24802,3,1672319027),(96429,4,24803,3,1672319027),(96430,4,24804,3,1672319027),(96431,4,24805,3,1672319027),(96432,4,24806,3,1672319027),(96433,4,24807,3,1672319027),(96434,4,24808,3,1672319027),(96435,4,24809,3,1672319027),(96436,4,24810,3,1672319027),(96437,4,24811,3,1672319027),(96438,4,24812,3,1672319027),(96439,4,24813,3,1672319027),(96440,4,24814,3,1672319027),(96441,4,24815,3,1672319027),(96442,4,24816,3,1672319027),(96443,4,24817,3,1672319027),(96444,4,24818,3,1672319027),(96445,4,24819,3,1672319027),(96446,4,24820,3,1672319027),(96447,4,24821,3,1672319027),(96448,4,24822,3,1672319027),(96449,4,24823,3,1672319027),(96450,4,24824,3,1672319027),(96451,4,24825,3,1672319027),(96452,4,24826,3,1672319027),(96453,4,24827,3,1672319027),(96454,4,24828,3,1672319027),(96455,4,24829,3,1672319027),(96456,4,24830,3,1672319027),(96457,4,24831,3,1672319027),(96458,4,24832,3,1672319027),(96459,4,24833,3,1672319027),(96460,4,24834,3,1672319027),(96461,4,24835,3,1672319027),(96462,4,24836,3,1672319027),(96463,4,24837,3,1672319027),(96464,4,24838,3,1672319027),(96465,4,24839,3,1672319027),(96466,4,24840,3,1672319027),(96467,4,24841,3,1672319027),(96468,4,24842,3,1672319027),(96469,4,24843,3,1672319027),(96470,4,24844,3,1672319027),(96471,4,24845,3,1672319027),(96472,4,24846,3,1672319027),(96473,4,24847,3,1672319027),(96474,4,24848,3,1672319027),(96475,4,24849,3,1672319027),(96476,4,24850,3,1672319027),(96477,4,24851,3,1672319027),(96478,4,24852,3,1672319027),(96479,4,24853,3,1672319027),(96480,4,24854,3,1672319027),(96481,4,24855,3,1672319027),(96482,4,24856,3,1672319027),(96483,4,24857,3,1672319027),(96484,4,24858,3,1672319027),(96485,4,24859,3,1672319027),(96486,4,24860,3,1672319027),(96487,4,24861,3,1672319027),(96488,4,24862,3,1672319027),(96489,4,24863,3,1672319027),(96490,4,24864,3,1672319027),(96491,4,24865,3,1672319027),(96492,4,24866,3,1672319027),(96493,4,24867,3,1672319027),(96494,4,24868,3,1672319027),(96495,4,24869,3,1672319027),(96496,4,24870,3,1672319027),(96497,4,24871,3,1672319027),(96498,4,24872,3,1672319027),(96499,4,24873,3,1672319027),(96500,4,24874,3,1672319027),(96501,4,24875,3,1672319027),(96502,4,24876,3,1672319027),(96503,4,24877,3,1672319027),(96504,4,24878,3,1672319027),(96505,4,24879,3,1672319027),(96506,4,24880,3,1672319027),(96507,4,24881,3,1672319027),(96508,4,24882,3,1672319027),(96509,4,24883,3,1672319027),(96510,4,24884,3,1672319027),(96511,4,24885,3,1672319027),(96512,4,24886,3,1672319027),(96513,4,24887,3,1672319027),(96514,4,24888,3,1672319027),(96515,4,24889,3,1672319027),(96516,4,24890,3,1672319027),(96517,4,24891,3,1672319027),(96518,4,24892,3,1672319027),(96519,4,24893,3,1672319027),(96520,4,24894,3,1672319027),(96521,4,24895,3,1672319027),(96522,4,24896,3,1672319027),(96523,4,24897,3,1672319027),(96524,4,24898,3,1672319027),(96525,4,24899,3,1672319027),(96526,4,24900,3,1672319027),(96527,4,24901,3,1672319027),(96528,4,24902,3,1672319027),(96529,4,24903,3,1672319027),(96530,4,24904,3,1672319027),(96531,4,24905,3,1672319027),(96532,4,24906,3,1672319027),(96533,4,24907,3,1672319027),(96534,4,24908,3,1672319027),(96535,4,24909,3,1672319027),(96536,4,24910,3,1672319027),(96537,4,24911,3,1672319027),(96538,4,24912,3,1672319027),(96539,4,24913,3,1672319027),(96540,4,24914,3,1672319027),(96541,4,24915,3,1672319027),(96542,4,24916,3,1672319027),(96543,4,24917,3,1672319027),(96544,4,24918,3,1672319027),(96545,4,24919,3,1672319027),(96546,4,24920,3,1672319027),(96547,4,24921,3,1672319027),(96548,4,24922,3,1672319027),(96549,4,24923,3,1672319027),(96550,4,24924,3,1672319027),(96551,4,24925,3,1672319027),(96552,4,24926,3,1672319027),(96553,4,24927,3,1672319027),(96554,4,24928,3,1672319027),(96555,4,24929,3,1672319027),(96556,4,24930,3,1672319027),(96557,4,24931,3,1672319027),(96558,4,24932,3,1672319027),(96559,4,24933,3,1672319027),(96560,4,24934,3,1672319027),(96561,4,24935,3,1672319027),(96562,4,24936,3,1672319027),(96563,4,24937,3,1672319027),(96564,4,24938,3,1672319027),(96565,4,24939,3,1672319027),(96566,4,24940,3,1672319027),(96567,4,24941,3,1672319027),(96568,4,24942,3,1672319027),(96569,4,24943,3,1672319027),(96570,4,24944,3,1672319027),(96571,4,24945,3,1672319027),(96572,4,24946,3,1672319027),(96573,4,24947,3,1672319027),(96574,4,24948,3,1672319027),(96575,4,24949,3,1672319027),(96576,4,24950,3,1672319027),(96577,4,24951,3,1672319027),(96578,4,24952,3,1672319027),(96579,4,24953,3,1672319027),(96580,4,24954,3,1672319027),(96581,4,24955,3,1672319027),(96582,4,24956,3,1672319027),(96583,4,24957,3,1672319027),(96584,4,24958,3,1672319027),(96585,4,24959,3,1672319027),(96586,4,24960,3,1672319027),(96587,4,24961,3,1672319027),(96588,4,24962,3,1672319027),(96589,4,24963,3,1672319027),(96590,4,24964,3,1672319027),(96591,4,24965,3,1672319027),(96592,4,24966,3,1672319027),(96593,4,24967,3,1672319027),(96594,4,24968,3,1672319027),(96595,4,24969,3,1672319027),(96596,4,24970,3,1672319027),(96597,4,24971,3,1672319027),(96598,4,24972,3,1672319027),(96599,4,24973,3,1672319027),(96600,4,24974,3,1672319027),(96601,4,24975,3,1672319027),(96602,4,24976,3,1672319027),(96603,4,24977,3,1672319027),(96604,4,24978,3,1672319027),(96605,4,24979,3,1672319027),(96606,4,24980,3,1672319027),(96607,4,24981,3,1672319027),(96608,4,24982,3,1672319027),(96609,4,24983,3,1672319027),(96610,4,24984,3,1672319027),(96611,4,24985,3,1672319027),(96612,4,24986,3,1672319027),(96613,4,24987,3,1672319027),(96614,4,24988,3,1672319027),(96615,4,24989,3,1672319027),(96616,4,24990,3,1672319027),(96617,4,24991,3,1672319027),(96618,4,24992,3,1672319027),(96619,4,24993,3,1672319027),(96620,4,24994,3,1672319027),(96621,4,24995,3,1672319027),(96622,4,24996,3,1672319027),(96623,4,24997,3,1672319027),(96624,4,24998,3,1672319027),(96625,4,24999,3,1672319027),(96626,4,25000,3,1672319027),(96627,4,25001,3,1672319027),(96628,4,25002,3,1672319027),(96629,4,25003,3,1672319027),(96630,4,25004,3,1672319027),(96631,4,25005,3,1672319027),(96632,4,25006,3,1672319027),(96633,4,25007,3,1672319027),(96634,4,25008,3,1672319027),(96635,4,25009,3,1672319027),(96636,4,25010,3,1672319027),(96637,4,25011,3,1672319027),(96638,4,25012,3,1672319027),(96639,4,25013,3,1672319027),(96640,4,25014,3,1672319027),(96641,4,25015,3,1672319027),(96642,4,25016,3,1672319027),(96643,4,25017,3,1672319027),(96644,4,25018,3,1672319027),(96645,4,25019,3,1672319027),(96646,4,25020,3,1672319027),(96647,4,25021,3,1672319027),(96648,4,25022,3,1672319027),(96649,4,25023,3,1672319027),(96650,4,25024,3,1672319027),(96651,4,25025,3,1672319027),(96652,4,25026,3,1672319027),(96653,4,25027,3,1672319027),(96654,4,25028,3,1672319027),(96655,4,25029,3,1672319027),(96656,4,25030,3,1672319027),(96657,4,25031,3,1672319027),(96658,4,25032,3,1672319027),(96659,4,25033,3,1672319027),(96660,4,25034,3,1672319027),(96661,4,25035,3,1672319027),(96662,4,25036,3,1672319027),(96663,4,25037,3,1672319027),(96664,4,25038,3,1672319027),(96665,4,25039,3,1672319027),(96666,4,25040,3,1672319027),(96667,4,25041,3,1672319027),(96668,4,25042,3,1672319027),(96669,4,25043,3,1672319027),(96670,4,25044,3,1672319027),(96671,4,25045,3,1672319027),(96672,4,25046,3,1672319027),(96673,4,25047,3,1672319027),(96674,4,25048,3,1672319027),(96675,4,25049,3,1672319027),(96676,4,25050,3,1672319027),(96677,4,25051,3,1672319027),(96678,4,25052,3,1672319027),(96679,4,25053,3,1672319027),(96680,4,25054,3,1672319027),(96681,4,25055,3,1672319027),(96682,4,25056,3,1672319027),(96683,4,25057,3,1672319027),(96684,4,25058,3,1672319027),(96685,4,25059,3,1672319027),(96686,4,25060,3,1672319027),(96687,4,25061,3,1672319027),(96688,4,25062,3,1672319027),(96689,4,25063,3,1672319027),(96690,4,25064,3,1672319027),(96691,4,25065,3,1672319027),(96692,4,25066,3,1672319027),(96693,4,25067,3,1672319027),(96694,4,25068,3,1672319027),(96695,4,25069,3,1672319027),(96696,4,25070,3,1672319027),(96697,4,25071,3,1672319027),(96698,4,25072,3,1672319027),(96699,4,25073,3,1672319027),(96700,4,25074,3,1672319027),(96701,4,25075,3,1672319027),(96702,4,25076,3,1672319027),(96703,4,25077,3,1672319027),(96704,4,25078,3,1672319027),(96705,4,25079,3,1672319027),(96706,4,25080,3,1672319027),(96707,4,25081,3,1672319027),(96708,4,25082,3,1672319027),(96709,4,25083,3,1672319027),(96710,4,25084,3,1672319027),(96711,4,25085,3,1672319027),(96712,4,25086,3,1672319027),(96713,4,25087,3,1672319027),(96714,4,25088,3,1672319027),(96715,4,25089,3,1672319027),(96716,4,25090,3,1672319027),(96717,4,25091,3,1672319027),(96718,4,25092,3,1672319027),(96719,4,25093,3,1672319027),(96720,4,25094,3,1672319027),(96721,4,25095,3,1672319027),(96722,4,25096,3,1672319027),(96723,4,25097,3,1672319027),(96724,4,25098,3,1672319027),(96725,4,25099,3,1672319027),(96726,4,25100,3,1672319027),(96727,4,25101,3,1672319027),(96728,4,25102,3,1672319027),(96729,4,25103,3,1672319027),(96730,4,25104,3,1672319027),(96731,4,25105,3,1672319027),(96732,4,25106,3,1672319027),(96733,4,25107,3,1672319027),(96734,4,25108,3,1672319027),(96735,4,25109,3,1672319027),(96736,4,25110,3,1672319027),(96737,4,25111,3,1672319027),(96738,4,25112,3,1672319027),(96739,4,25113,3,1672319027),(96740,4,25114,3,1672319027),(96741,4,25115,3,1672319027),(96742,4,25116,3,1672319027),(96743,4,25117,3,1672319027),(96744,4,25118,3,1672319027),(96745,4,25119,3,1672319027),(96746,4,25120,3,1672319027),(96747,4,25121,3,1672319027),(96748,4,25122,3,1672319027),(96749,4,25123,3,1672319027),(96750,4,25124,3,1672319027),(96751,4,25125,3,1672319027),(96752,4,25126,3,1672319027),(96753,4,25127,3,1672319027),(96754,4,25128,3,1672319027),(96755,4,25129,3,1672319027),(96756,4,25130,3,1672319027),(96757,4,25131,3,1672319027),(96758,4,25132,3,1672319027),(96759,4,25133,3,1672319027),(96760,4,25134,3,1672319027),(96761,4,25135,3,1672319027),(96762,4,25136,3,1672319027),(96763,4,25137,3,1672319027),(96764,4,25138,3,1672319027),(96765,4,25139,3,1672319027),(96766,4,25140,3,1672319027),(96767,4,25141,3,1672319027),(96768,4,25142,3,1672319027),(96769,4,25143,3,1672319027),(96770,4,25144,3,1672319027),(96771,4,25145,3,1672319027),(96772,4,25146,3,1672319027),(96773,4,25147,3,1672319027),(96774,4,25148,3,1672319027),(96775,4,25149,3,1672319027),(96776,4,25150,3,1672319027),(96777,4,25151,3,1672319027),(96778,4,25152,3,1672319027),(96779,4,25153,3,1672319027),(96780,4,25154,3,1672319027),(96781,4,25155,3,1672319027),(96782,4,25156,3,1672319027),(96783,4,25157,3,1672319027),(96784,4,25158,3,1672319027),(96785,4,25159,3,1672319027),(96786,4,25160,3,1672319027),(96787,4,25161,3,1672319027),(96788,4,25162,3,1672319027),(96789,4,25163,3,1672319027),(96790,4,25164,3,1672319027),(96791,4,25165,3,1672319027),(96792,4,25166,3,1672319027),(96793,4,25167,3,1672319027),(96794,4,25168,3,1672319027),(96795,4,25169,3,1672319027),(96796,4,25170,3,1672319027),(96797,4,25171,3,1672319027),(96798,4,25172,3,1672319027),(96799,4,25173,3,1672319027),(96800,4,25174,3,1672319027),(96801,4,25175,3,1672319027),(96802,4,25176,3,1672319027),(96803,4,25177,3,1672319027),(96804,4,25178,3,1672319027),(96805,4,25179,3,1672319027),(96806,4,25180,3,1672319027),(96807,4,25181,3,1672319027),(96808,4,25182,3,1672319027),(96809,4,25183,3,1672319027),(96810,4,25184,3,1672319027),(96811,4,25185,3,1672319027),(96812,4,25186,3,1672319027),(96813,4,25187,3,1672319027),(96814,4,25188,3,1672319027),(96815,4,25189,3,1672319027),(96816,4,25190,3,1672319027),(96817,4,25191,3,1672319027),(96818,4,25192,3,1672319027),(96819,4,25193,3,1672319027),(96820,4,25194,3,1672319027),(96821,4,25195,3,1672319027),(96822,4,25196,3,1672319027),(96823,4,25197,3,1672319027),(96824,4,25198,3,1672319027),(96825,4,25199,3,1672319027),(96826,4,25200,3,1672319027),(96827,4,25201,3,1672319027),(96828,4,25202,3,1672319027),(96829,4,25203,3,1672319027),(96830,4,25204,3,1672319027),(96831,4,25205,3,1672319027),(96832,4,25206,3,1672319027),(96833,4,25207,3,1672319027),(96834,4,25208,3,1672319027),(96835,4,25209,3,1672319027),(96836,4,25210,3,1672319027),(96837,4,25211,3,1672319027),(96838,4,25212,3,1672319027),(96839,4,25213,3,1672319027),(96840,4,25214,3,1672319027),(96841,4,25215,3,1672319027),(96842,4,25216,3,1672319027),(96843,4,25217,3,1672319027),(96844,4,25218,3,1672319027),(96845,4,25219,3,1672319027),(96846,4,25220,3,1672319027),(96847,4,25221,3,1672319027),(96848,4,25222,3,1672319027),(96849,4,25223,3,1672319027),(96850,4,25224,3,1672319027),(96851,4,25225,3,1672319027),(96852,4,25226,3,1672319027),(96853,4,25227,3,1672319027),(96854,4,25228,3,1672319027),(96855,4,25229,3,1672319027),(96856,4,25230,3,1672319027),(96857,4,25231,3,1672319027),(96858,4,25232,3,1672319027),(96859,4,25233,3,1672319027),(96860,4,25234,3,1672319027),(96861,4,25235,3,1672319027),(96862,4,25236,3,1672319027),(96863,4,25237,3,1672319027),(96864,4,25238,3,1672319027),(96865,4,25239,3,1672319027),(96866,4,25240,3,1672319027),(96867,4,25241,3,1672319027),(96868,4,25242,3,1672319027),(96869,4,25243,3,1672319027),(96870,4,25244,3,1672319027),(96871,4,25245,3,1672319027),(96872,4,25246,3,1672319027),(96873,4,25247,3,1672319027),(96874,4,25248,3,1672319027),(96875,4,25249,3,1672319027),(96876,4,25250,3,1672319027),(96877,4,25251,3,1672319027),(96878,4,25252,3,1672319027),(96879,4,25253,3,1672319027),(96880,4,25254,3,1672319027),(96881,4,25255,3,1672319027),(96882,4,25256,3,1672319027),(96883,4,25257,3,1672319027),(96884,4,25258,3,1672319027),(96885,4,25259,3,1672319027),(96886,4,25260,3,1672319027),(96887,4,25261,3,1672319027),(96888,4,25262,3,1672319027),(96889,4,25263,3,1672319027),(96890,4,25264,3,1672319027),(96891,4,25265,3,1672319027),(96892,4,25266,3,1672319027),(96893,4,25267,3,1672319027),(96894,4,25268,3,1672319027),(96895,4,25269,3,1672319027),(96896,4,25270,3,1672319027),(96897,4,25271,3,1672319027),(96898,4,25272,3,1672319027),(96899,4,25273,3,1672319027),(96900,4,25274,3,1672319027),(96901,4,25275,3,1672319027),(96902,4,25276,3,1672319027),(96903,4,25277,3,1672319027),(96904,4,25278,3,1672319027),(96905,4,25279,3,1672319027),(96906,4,25280,3,1672319027),(96907,4,25281,3,1672319027),(96908,4,25282,3,1672319027),(96909,4,25283,3,1672319027),(96910,4,25284,3,1672319027),(96911,4,25285,3,1672319027),(96912,4,25286,3,1672319027),(96913,4,25287,3,1672319027),(96914,4,25288,3,1672319027),(96915,4,25289,3,1672319027),(96916,4,25290,3,1672319027),(96917,4,25291,3,1672319027),(96918,4,25292,3,1672319027),(96919,4,25293,3,1672319027),(96920,4,25294,3,1672319027),(96921,4,25295,3,1672319027),(96922,4,25296,3,1672319027),(96923,4,25297,3,1672319027),(96924,4,25298,3,1672319027),(96925,4,25299,3,1672319027),(96926,4,25300,3,1672319027),(96927,4,25301,3,1672319027),(96928,4,25302,3,1672319027),(96929,4,25303,3,1672319027),(96930,4,25304,3,1672319027),(96931,4,25305,3,1672319027),(96932,4,25306,3,1672319027),(96933,4,25307,3,1672319027),(96934,4,25308,3,1672319027),(96935,4,25309,3,1672319027),(96936,4,25310,3,1672319027),(96937,4,25311,3,1672319027),(96938,4,25312,3,1672319027),(96939,4,25313,3,1672319027),(96940,4,25314,3,1672319027),(96941,4,25315,3,1672319027),(96942,4,25316,3,1672319027),(96943,4,25317,3,1672319027),(96944,4,25318,3,1672319027),(96945,4,25319,3,1672319027),(96946,4,25320,3,1672319027),(96947,4,25321,3,1672319027),(96948,4,25322,3,1672319027),(96949,4,25323,3,1672319027),(96950,4,25324,3,1672319027),(96951,4,25325,3,1672319027),(96952,4,25326,3,1672319027),(96953,4,25327,3,1672319027),(96954,4,25328,3,1672319027),(96955,4,25329,3,1672319027),(96956,4,25330,3,1672319027),(96957,4,25331,3,1672319027),(96958,4,25332,3,1672319027),(96959,4,25333,3,1672319027),(96960,4,25334,3,1672319027),(96961,4,25335,3,1672319027),(96962,4,25336,3,1672319027),(96963,4,25337,3,1672319027),(96964,4,25338,3,1672319027),(96965,4,25339,3,1672319027),(96966,4,25340,3,1672319027),(96967,4,25341,3,1672319027),(96968,4,25342,3,1672319027),(96969,4,25343,3,1672319027),(96970,4,25344,3,1672319027),(96971,4,25345,3,1672319027),(96972,4,25346,3,1672319027),(96973,4,25347,3,1672319027),(96974,4,25348,3,1672319027),(96975,4,25349,3,1672319027),(96976,4,25350,3,1672319027),(96977,4,25351,3,1672319027),(96978,4,25352,3,1672319027),(96979,4,25353,3,1672319027),(96980,4,25354,3,1672319027),(96981,4,25355,3,1672319027),(96982,4,25356,3,1672319027),(96983,4,25357,3,1672319027),(96984,4,25358,3,1672319027),(96985,4,25359,3,1672319027),(96986,4,25360,3,1672319027),(96987,4,25361,3,1672319027),(96988,4,25362,3,1672319027),(96989,4,25363,3,1672319027),(96990,4,25364,3,1672319027),(96991,4,25365,3,1672319027),(96992,4,25366,3,1672319027),(96993,4,25367,3,1672319027),(96994,4,25368,3,1672319027),(96995,4,25369,3,1672319027),(96996,4,25370,3,1672319027),(96997,4,25371,3,1672319027),(96998,4,25372,3,1672319027),(96999,4,25373,3,1672319027),(97000,4,25374,3,1672319027),(97001,4,25375,3,1672319027),(97002,4,25376,3,1672319027),(97003,4,25377,3,1672319027),(97004,4,25378,3,1672319027),(97005,4,25379,3,1672319027),(97006,4,25380,3,1672319027),(97007,4,25381,3,1672319027),(97008,4,25382,3,1672319027),(97009,4,25383,3,1672319027),(97010,4,25384,3,1672319027),(97011,4,25385,3,1672319027),(97012,4,25386,3,1672319027),(97013,4,25387,3,1672319027),(97014,4,25388,3,1672319027),(97015,4,25389,3,1672319027),(97016,4,25390,3,1672319027),(97017,4,25391,3,1672319027),(97018,4,25392,3,1672319027),(97019,4,25393,3,1672319027),(97020,4,25394,3,1672319027),(97021,4,25395,3,1672319027),(97022,4,25396,3,1672319027),(97023,4,25397,3,1672319027),(97024,4,25398,3,1672319027),(97025,4,25399,3,1672319027),(97026,4,25400,3,1672319027),(97027,4,25401,3,1672319027),(97028,4,25402,3,1672319027),(97029,4,25403,3,1672319027),(97030,4,25404,3,1672319027),(97031,4,25405,3,1672319027),(97032,4,25406,3,1672319027),(97033,4,25407,3,1672319027),(97034,4,25408,3,1672319027),(97035,4,25409,3,1672319027),(97036,4,25410,3,1672319027),(97037,4,25411,3,1672319027),(97038,4,25412,3,1672319027),(97039,4,25413,3,1672319027),(97040,4,25414,3,1672319027),(97041,4,25415,3,1672319027),(97042,4,25416,3,1672319027),(97043,4,25417,3,1672319027),(97044,4,25418,3,1672319027),(97045,4,25419,3,1672319027),(97046,4,25420,3,1672319027),(97047,4,25421,3,1672319027),(97048,4,25422,3,1672319027),(97049,4,25423,3,1672319027),(97050,4,25424,3,1672319027),(97051,4,25425,3,1672319027),(97052,4,25426,3,1672319027),(97053,4,25427,3,1672319027),(97054,4,25428,3,1672319027),(97055,4,25429,3,1672319027),(97056,4,25430,3,1672319027),(97057,4,25431,3,1672319027),(97058,4,25432,3,1672319027),(97059,4,25433,3,1672319027),(97060,4,25434,3,1672319027),(97061,4,25435,3,1672319027),(97062,4,25436,3,1672319027),(97063,4,25437,3,1672319027),(97064,4,25438,3,1672319027),(97065,4,25439,3,1672319027),(97066,4,25440,3,1672319027),(97067,4,25441,3,1672319027),(97068,4,25442,3,1672319027),(97069,4,25443,3,1672319027),(97070,4,25444,3,1672319027),(97071,4,25445,3,1672319027),(97072,4,25446,3,1672319027),(97073,4,25447,3,1672319027),(97074,4,25448,3,1672319027),(97075,4,25449,3,1672319027),(97076,4,25450,3,1672319027),(97077,4,25451,3,1672319027),(97078,4,25452,3,1672319027),(97079,4,25453,3,1672319027),(97080,4,25454,3,1672319027),(97081,4,25455,3,1672319027),(97082,4,25456,3,1672319027),(97083,4,25457,3,1672319027),(97084,4,25458,3,1672319027),(97085,4,25459,3,1672319027),(97086,4,25460,3,1672319027),(97087,4,25461,3,1672319027),(97088,4,25462,3,1672319027),(97089,4,25463,3,1672319027),(97090,4,25464,3,1672319027),(97091,4,25465,3,1672319027),(97092,4,25466,3,1672319027),(97093,4,25467,3,1672319027),(97094,4,25468,3,1672319027),(97095,4,25469,3,1672319027),(97096,4,25470,3,1672319027),(97097,4,25471,3,1672319027),(97098,4,25472,3,1672319027),(97099,4,25473,3,1672319027),(97100,4,25474,3,1672319027),(97101,4,25475,3,1672319027),(97102,4,25476,3,1672319027),(97103,4,25477,3,1672319027),(97104,4,25478,3,1672319027),(97105,4,25479,3,1672319027),(97106,4,25480,3,1672319027),(97107,4,25481,3,1672319027),(97108,4,25482,3,1672319027),(97109,4,25483,3,1672319027),(97110,4,25484,3,1672319027),(97111,4,25485,3,1672319027),(97112,4,25486,3,1672319027),(97113,4,25487,3,1672319027),(97114,4,25488,3,1672319027),(97115,4,25489,3,1672319027),(97116,4,25490,3,1672319027),(97117,4,25491,3,1672319027),(97118,4,25492,3,1672319027),(97119,4,25493,3,1672319027),(97120,4,25494,3,1672319027),(97121,4,25495,3,1672319027),(97122,4,25496,3,1672319027),(97123,4,25497,3,1672319027),(97124,4,25498,3,1672319027),(97125,4,25499,3,1672319027),(97126,4,25500,3,1672319027),(97127,4,25501,3,1672319027),(97128,4,25502,3,1672319027),(97129,4,25503,3,1672319027),(97130,4,25504,3,1672319027),(97131,4,25505,3,1672319027),(97132,4,25506,3,1672319027),(97133,4,25507,3,1672319027),(97134,4,25508,3,1672319027),(97135,4,25509,3,1672319027),(97136,4,25510,3,1672319027),(97137,4,25511,3,1672319027),(97138,4,25512,3,1672319027),(97139,4,25513,3,1672319027),(97140,4,25514,3,1672319027),(97141,4,25515,3,1672319027),(97142,4,25516,3,1672319027),(97143,4,25517,3,1672319027),(97144,4,25518,3,1672319027),(97145,4,25519,3,1672319027),(97146,4,25520,3,1672319027),(97147,4,25521,3,1672319027),(97148,4,25522,3,1672319027),(97149,4,25523,3,1672319027),(97150,4,25524,3,1672319027),(97151,4,25525,3,1672319027),(97152,4,25526,3,1672319027),(97153,4,25527,3,1672319027),(97154,4,25528,3,1672319027),(97155,4,25529,3,1672319027),(97156,4,25530,3,1672319027),(97157,4,25531,3,1672319027),(97158,4,25532,3,1672319027),(97159,4,25533,3,1672319027),(97160,4,25534,3,1672319027),(97161,4,25535,3,1672319027),(97162,4,25536,3,1672319027),(97163,4,25537,3,1672319027),(97164,4,25538,3,1672319027),(97165,4,25539,3,1672319027),(97166,4,25540,3,1672319027),(97167,4,25541,3,1672319027),(97168,4,25542,3,1672319027),(97169,4,25543,3,1672319027),(97170,4,25544,3,1672319027),(97171,4,25545,3,1672319027),(97172,4,25546,3,1672319027),(97173,4,25547,3,1672319027),(97174,4,25548,3,1672319027),(97175,4,25549,3,1672319027),(97176,4,25550,3,1672319027),(97177,4,25551,3,1672319027),(97178,4,25552,3,1672319027),(97179,4,25553,3,1672319027),(97180,4,25554,3,1672319027),(97181,4,25555,3,1672319027),(97182,4,25556,3,1672319027),(97183,4,25557,3,1672319027),(97184,4,25558,3,1672319027),(97185,4,25559,3,1672319027),(97186,4,25560,3,1672319027),(97187,4,25561,3,1672319027),(97188,4,25562,3,1672319027),(97189,4,25563,3,1672319027),(97190,4,25564,3,1672319027),(97191,4,25565,3,1672319027),(97192,4,25566,3,1672319027),(97193,4,25567,3,1672319027),(97194,4,25568,3,1672319027),(97195,4,25569,3,1672319027),(97196,4,25570,3,1672319027),(97197,4,25571,3,1672319027),(97198,4,25572,3,1672319027),(97199,4,25573,3,1672319027),(97200,4,25574,3,1672319027),(97201,4,25575,3,1672319027),(97202,4,25576,3,1672319027),(97203,4,25577,3,1672319027),(97204,4,25578,3,1672319027),(97205,4,25579,3,1672319027),(97206,4,25580,3,1672319027),(97207,4,25581,3,1672319027),(97208,4,25582,3,1672319027),(97209,4,25583,3,1672319027),(97210,4,25584,3,1672319027),(97211,4,25585,3,1672319027),(97212,4,25586,3,1672319027),(97213,4,25587,3,1672319027),(97214,4,25588,3,1672319027),(97215,4,25589,3,1672319027),(97216,4,25590,3,1672319027),(97217,4,25591,3,1672319027),(97218,4,25592,3,1672319027),(97219,4,25593,3,1672319027),(97220,4,25594,3,1672319027),(97221,4,25595,3,1672319027),(97222,4,25596,3,1672319027),(97223,4,25597,3,1672319027),(97224,4,25598,3,1672319027),(97225,4,25599,3,1672319027),(97226,4,25600,3,1672319027),(97227,4,25601,3,1672319027),(97228,4,25602,3,1672319027),(97229,4,25603,3,1672319027),(97230,4,25604,3,1672319027),(97231,4,25605,3,1672319027),(97232,4,25606,3,1672319027),(97233,4,25607,3,1672319027),(97234,4,25608,3,1672319027),(97235,4,25609,3,1672319027),(97236,4,25610,3,1672319027),(97237,4,25611,3,1672319027),(97238,4,25612,3,1672319027),(97239,4,25613,3,1672319027),(97240,4,25614,3,1672319027),(97241,4,25615,3,1672319027),(97242,4,25616,3,1672319027),(97243,4,25617,3,1672319027),(97244,4,25618,3,1672319027),(97245,4,25619,3,1672319027),(97246,4,25620,3,1672319027),(97247,4,25621,3,1672319027),(97248,4,25622,3,1672319027),(97249,4,25623,3,1672319027),(97250,4,25624,3,1672319027),(97251,4,25625,3,1672319027),(97252,4,25626,3,1672319027),(97253,4,25627,3,1672319027),(97254,4,25628,3,1672319027),(97255,4,25629,3,1672319027),(97256,4,25630,3,1672319027),(97257,4,25631,3,1672319027),(97258,4,25632,3,1672319027),(97259,4,25633,3,1672319027),(97260,4,25634,3,1672319027),(97261,4,25635,3,1672319027),(97262,4,25636,3,1672319027),(97263,4,25637,3,1672319027),(97264,4,25638,3,1672319027),(97265,4,25639,3,1672319027),(97266,4,25640,3,1672319027),(97267,4,25641,3,1672319027),(97268,4,25642,3,1672319027),(97269,4,25643,3,1672319027),(97270,4,25644,3,1672319027),(97271,4,25645,3,1672319027),(97272,4,25646,3,1672319027),(97273,4,25647,3,1672319027),(97274,4,25648,3,1672319027),(97275,4,25649,3,1672319027),(97276,4,25650,3,1672319027),(97277,4,25651,3,1672319027),(97278,4,25652,3,1672319027),(97279,4,25653,3,1672319027),(97280,4,25654,3,1672319027),(97281,4,25655,3,1672319027),(97282,4,25656,3,1672319027),(97283,4,25657,3,1672319027),(97284,4,25658,3,1672319027),(97285,4,25659,3,1672319027),(97286,4,25660,3,1672319027),(97287,4,25661,3,1672319027),(97288,4,25662,3,1672319027),(97289,4,25663,3,1672319027),(97290,4,25664,3,1672319027),(97291,4,25665,3,1672319027),(97292,4,25666,3,1672319027),(97293,4,25667,3,1672319027),(97294,4,25668,3,1672319027),(97295,4,25669,3,1672319027),(97296,4,25670,3,1672319027),(97297,4,25671,3,1672319027),(97298,4,25672,3,1672319027),(97299,4,25673,3,1672319027),(97300,4,25674,3,1672319027),(97301,4,25675,3,1672319027),(97302,4,25676,3,1672319027),(97303,4,25677,3,1672319027),(97304,4,25678,3,1672319027),(97305,4,25679,3,1672319027),(97306,4,25680,3,1672319027),(97307,4,25681,3,1672319027),(97308,4,25682,3,1672319027),(97309,4,25683,3,1672319027),(97310,4,25684,3,1672319027),(97311,4,25685,3,1672319027),(97312,4,25686,3,1672319027),(97313,4,25687,3,1672319027),(97314,4,25688,3,1672319027),(97315,4,25689,3,1672319027),(97316,4,25690,3,1672319027),(97317,4,25691,3,1672319027),(97318,4,25692,3,1672319027),(97319,4,25693,3,1672319027),(97320,4,25694,3,1672319027),(97321,4,25695,3,1672319027),(97322,4,25696,3,1672319027),(97323,4,25697,3,1672319027),(97324,4,25698,3,1672319027),(97325,4,25699,3,1672319027),(97326,4,25700,3,1672319027),(97327,4,25701,3,1672319027),(97328,4,25702,3,1672319027),(97329,4,25703,3,1672319027),(97330,4,25704,3,1672319027),(97331,4,25705,3,1672319027),(97332,4,25706,3,1672319027),(97333,4,25707,3,1672319027),(97334,4,25708,3,1672319027),(97335,4,25709,3,1672319027),(97336,4,25710,3,1672319027),(97337,4,25711,3,1672319027),(97338,4,25712,3,1672319027),(97339,4,25713,3,1672319027),(97340,4,25714,3,1672319027),(97341,4,25715,3,1672319027),(97342,4,25716,3,1672319027),(97343,4,25717,3,1672319027),(97344,4,25718,3,1672319027),(97345,4,25719,3,1672319027),(97346,4,25720,3,1672319027),(97347,4,25721,3,1672319027),(97348,4,25722,3,1672319027),(97349,4,25723,3,1672319027),(97350,4,25724,3,1672319027),(97351,4,25725,3,1672319027),(97352,4,25726,3,1672319027),(97353,4,25727,3,1672319027),(97354,4,25728,3,1672319027),(97355,4,25729,3,1672319027),(97356,4,25730,3,1672319027),(97357,4,25731,3,1672319027),(97358,4,25732,3,1672319027),(97359,4,25733,3,1672319027),(97360,4,25734,3,1672319027),(97361,4,25735,3,1672319027),(97362,4,25736,3,1672319027),(97363,4,25737,3,1672319027),(97364,4,25738,3,1672319027),(97365,4,25739,3,1672319027),(97366,4,25740,3,1672319027),(97367,4,25741,3,1672319027),(97368,4,25742,3,1672319027),(97369,4,25743,3,1672319027),(97370,4,25744,3,1672319027),(97371,4,25745,3,1672319027),(97372,4,25746,3,1672319027),(97373,4,25747,3,1672319027),(97374,4,25748,3,1672319027),(97375,4,25749,3,1672319027),(97376,4,25750,3,1672319027),(97377,4,25751,3,1672319027),(97378,4,25752,3,1672319027),(97379,4,25753,3,1672319027),(97380,4,25754,3,1672319027),(97381,4,25755,3,1672319027),(97382,4,25756,3,1672319027),(97383,4,25757,3,1672319027),(97384,4,25758,3,1672319027),(97385,4,25759,3,1672319027),(97386,4,25760,3,1672319027),(97387,4,25761,3,1672319027),(97388,4,25762,3,1672319027),(97389,4,25763,3,1672319027),(97390,4,25764,3,1672319027),(97391,4,25765,3,1672319027),(97392,4,25766,3,1672319027),(97393,4,25767,3,1672319027),(97394,4,25768,3,1672319027),(97395,4,25769,3,1672319027),(97396,4,25770,3,1672319027),(97397,4,25771,3,1672319027),(97398,4,25772,3,1672319027),(97399,4,25773,3,1672319027),(97400,4,25774,3,1672319027),(97401,4,25775,3,1672319027),(97402,4,25776,3,1672319027),(97403,4,25777,3,1672319027),(97404,4,25778,3,1672319027),(97405,4,25779,3,1672319027),(97406,4,25780,3,1672319027),(97407,4,25781,3,1672319027),(97408,4,25782,3,1672319027),(97409,4,25783,3,1672319027),(97410,4,25784,3,1672319027),(97411,4,25785,3,1672319027),(97412,4,25786,3,1672319027),(97413,4,25787,3,1672319027),(97414,4,25788,3,1672319027),(97415,4,25789,3,1672319027),(97416,4,25790,3,1672319027),(97417,4,25791,3,1672319027),(97418,4,25792,3,1672319027),(97419,4,25793,3,1672319027),(97420,4,25794,3,1672319027),(97421,4,25795,3,1672319027),(97422,4,25796,3,1672319027),(97423,4,25797,3,1672319027),(97424,4,25798,3,1672319027),(97425,4,25799,3,1672319027),(97426,4,25800,3,1672319027),(97427,4,25801,3,1672319027),(97428,4,25802,3,1672319027),(97429,4,25803,3,1672319027),(97430,4,25804,3,1672319027),(97431,4,25805,3,1672319027),(97432,4,25806,3,1672319027),(97433,4,25807,3,1672319027),(97434,4,25808,3,1672319027),(97435,4,25809,3,1672319027),(97436,4,25810,3,1672319027),(97437,4,25811,3,1672319027),(97438,4,25812,3,1672319027),(97439,4,25813,3,1672319027),(97440,4,25814,3,1672319027),(97441,4,25815,3,1672319027),(97442,4,25816,3,1672319027),(97443,4,25817,3,1672319027),(97444,4,25818,3,1672319027),(97445,4,25819,3,1672319027),(97446,4,25820,3,1672319027),(97447,4,25821,3,1672319027),(97448,4,25822,3,1672319027),(97449,4,25823,3,1672319027),(97450,4,25824,3,1672319027),(97451,4,25825,3,1672319027),(97452,4,25826,3,1672319027),(97453,4,25827,3,1672319027),(97454,4,25828,3,1672319027),(97455,4,25829,3,1672319027),(97456,4,25830,3,1672319027),(97457,4,25831,3,1672319027),(97458,4,25832,3,1672319027),(97459,4,25833,3,1672319027),(97460,4,25834,3,1672319027),(97461,4,25835,3,1672319027),(97462,4,25836,3,1672319027),(97463,4,25837,3,1672319027),(97464,4,25838,3,1672319027),(97465,4,25839,3,1672319027),(97466,4,25840,3,1672319027),(97467,4,25841,3,1672319027),(97468,4,25842,3,1672319027),(97469,4,25843,3,1672319027),(97470,4,25844,3,1672319027),(97471,4,25845,3,1672319027),(97472,4,25846,3,1672319027),(97473,4,25847,3,1672319027),(97474,4,25848,3,1672319027),(97475,4,25849,3,1672319027),(97476,4,25850,3,1672319027),(97477,4,25851,3,1672319027),(97478,4,25852,3,1672319027),(97479,4,25853,3,1672319027),(97480,4,25854,3,1672319027),(97481,4,25855,3,1672319027),(97482,4,25856,3,1672319027),(97483,4,25857,3,1672319027),(97484,4,25858,3,1672319027),(97485,4,25859,3,1672319027),(97486,4,25860,3,1672319027),(97487,4,25861,3,1672319027),(97488,4,25862,3,1672319027),(97489,4,25863,3,1672319027),(97490,4,25864,3,1672319027),(97491,4,25865,3,1672319027),(97492,4,25866,3,1672319027),(97493,4,25867,3,1672319027),(97494,4,25868,3,1672319027),(97495,4,25869,3,1672319027),(97496,4,25870,3,1672319027),(97497,4,25871,3,1672319027),(97498,4,25872,3,1672319027),(97499,4,25873,3,1672319027),(97500,4,25874,3,1672319027),(97501,4,25875,3,1672319027),(97502,4,25876,3,1672319027),(97503,4,25877,3,1672319027),(97504,4,25878,3,1672319027),(97505,4,25879,3,1672319027),(97506,4,25880,3,1672319027),(97507,4,25881,3,1672319027),(97508,4,25882,3,1672319027),(97509,4,25883,3,1672319027),(97510,4,25884,3,1672319027),(97511,4,25885,3,1672319027),(97512,4,25886,3,1672319027),(97513,4,25887,3,1672319027),(97514,4,25888,3,1672319027),(97515,4,25889,3,1672319027),(97516,4,25890,3,1672319027),(97517,4,25891,3,1672319027),(97518,4,25892,3,1672319027),(97519,4,25893,3,1672319027),(97520,4,25894,3,1672319027),(97521,4,25895,3,1672319027),(97522,4,25896,3,1672319027),(97523,4,25897,3,1672319027),(97524,4,25898,3,1672319027),(97525,4,25899,3,1672319027),(97526,4,25900,3,1672319027),(97527,4,25901,3,1672319027),(97528,4,25902,3,1672319027),(97529,4,25903,3,1672319027),(97530,4,25904,3,1672319027),(97531,4,25905,3,1672319027),(97532,4,25906,3,1672319027),(97533,4,25907,3,1672319027),(97534,4,25908,3,1672319027),(97535,4,25909,3,1672319027),(97536,4,25910,3,1672319027),(97537,4,25911,3,1672319027),(97538,4,25912,3,1672319027),(97539,4,25913,3,1672319027),(97540,4,25914,3,1672319027),(97541,4,25915,3,1672319027),(97542,4,25916,3,1672319027),(97543,4,25917,3,1672319027),(97544,4,25918,3,1672319027),(97545,4,25919,3,1672319027),(97546,4,25920,3,1672319027),(97547,4,25921,3,1672319027),(97548,4,25922,3,1672319027),(97549,4,25923,3,1672319027),(97550,4,25924,3,1672319027),(97551,4,25925,3,1672319027),(97552,4,25926,3,1672319027),(97553,4,25927,3,1672319027),(97554,4,25928,3,1672319027),(97555,4,25929,3,1672319027),(97556,4,25930,3,1672319027),(97557,4,25931,3,1672319027),(97558,4,25932,3,1672319027),(97559,4,25933,3,1672319027),(97560,4,25934,3,1672319027),(97561,4,25935,3,1672319027),(97562,4,25936,3,1672319027),(97563,4,25937,3,1672319027),(97564,4,25938,3,1672319027),(97565,4,25939,3,1672319027),(97566,4,25940,3,1672319027),(97567,4,25941,3,1672319027),(97568,4,25942,3,1672319027),(97569,4,25943,3,1672319027),(97570,4,25944,3,1672319027),(97571,4,25945,3,1672319027),(97572,4,25946,3,1672319027),(97573,4,25947,3,1672319027),(97574,4,25948,3,1672319027),(97575,4,25949,3,1672319027),(97576,4,25950,3,1672319027),(97577,4,25951,3,1672319027),(97578,4,25952,3,1672319027),(97579,4,25953,3,1672319027),(97580,4,25954,3,1672319027),(97581,4,25955,3,1672319027),(97582,4,25956,3,1672319027),(97583,4,25957,3,1672319027),(97584,4,25958,3,1672319027),(97585,4,25959,3,1672319027),(97586,4,25960,3,1672319027),(97587,4,25961,3,1672319027),(97588,4,25962,3,1672319027),(97589,4,25963,3,1672319027),(97590,4,25964,3,1672319027),(97591,4,25965,3,1672319027),(97592,4,25966,3,1672319027),(97593,4,25967,3,1672319027),(97594,4,25968,3,1672319027),(97595,4,25969,3,1672319027),(97596,4,25970,3,1672319027),(97597,4,25971,3,1672319027),(97598,4,25972,3,1672319027),(97599,4,25973,3,1672319027),(97600,4,25974,3,1672319027),(97601,4,25975,3,1672319027),(97602,4,25976,3,1672319027),(97603,4,25977,3,1672319027),(97604,4,25978,3,1672319027),(97605,4,25979,3,1672319027),(97606,4,25980,3,1672319027),(97607,4,25981,3,1672319027),(97608,4,25982,3,1672319027),(97609,4,25983,3,1672319027),(97610,4,25984,3,1672319027),(97611,4,25985,3,1672319027),(97612,4,25986,3,1672319027),(97613,4,25987,3,1672319027),(97614,4,25988,3,1672319027),(97615,4,25989,3,1672319027),(97616,4,25990,3,1672319027),(97617,4,25991,3,1672319027),(97618,4,25992,3,1672319027),(97619,4,25993,3,1672319027),(97620,4,25994,3,1672319027),(97621,4,25995,3,1672319027),(97622,4,25996,3,1672319027),(97623,4,25997,3,1672319027),(97624,4,25998,3,1672319027),(97625,4,25999,3,1672319027),(97626,4,26000,3,1672319027),(97627,4,26001,3,1672319027),(97628,4,26002,3,1672319027),(97629,4,26003,3,1672319027),(97630,4,26004,3,1672319027),(97631,4,26005,3,1672319027),(97632,4,26006,3,1672319027),(97633,4,26007,3,1672319027),(97634,4,26008,3,1672319027),(97635,4,26009,3,1672319027),(97636,4,26010,3,1672319027),(97637,4,26011,3,1672319027),(97638,4,26012,3,1672319027),(97639,4,26013,3,1672319027),(97640,4,26014,3,1672319027),(97641,4,26015,3,1672319027),(97642,4,26016,3,1672319027),(97643,4,26017,3,1672319027),(97644,4,26018,3,1672319027),(97645,4,26019,3,1672319027),(97646,4,26020,3,1672319027),(97647,4,26021,3,1672319027),(97648,4,26022,3,1672319027),(97649,4,26023,3,1672319027),(97650,4,26024,3,1672319027),(97651,4,26025,3,1672319027),(97652,4,26026,3,1672319027),(97653,4,26027,3,1672319027),(97654,4,26028,3,1672319027),(97655,4,26029,3,1672319027),(97656,4,26030,3,1672319027),(97657,4,26031,3,1672319027),(97658,4,26032,3,1672319027),(97659,4,26033,3,1672319027),(97660,4,26034,3,1672319027),(97661,4,26035,3,1672319027),(97662,4,26036,3,1672319027),(97663,4,26037,3,1672319027),(97664,4,26038,3,1672319027),(97665,4,26039,3,1672319027),(97666,4,26040,3,1672319027),(97667,4,26041,3,1672319027),(97668,4,26042,3,1672319027),(97669,4,26043,3,1672319027),(97670,4,26044,3,1672319027),(97671,4,26045,3,1672319027),(97672,4,26046,3,1672319027),(97673,4,26047,3,1672319027),(97674,4,26048,3,1672319027),(97675,4,26049,3,1672319027),(97676,4,26050,3,1672319027),(97677,4,26051,3,1672319027),(97678,4,26052,3,1672319027),(97679,4,26053,3,1672319027),(97680,4,26054,3,1672319027),(97681,4,26055,3,1672319027),(97682,4,26056,3,1672319027),(97683,4,26057,3,1672319027),(97684,4,26058,3,1672319027),(97685,4,26059,3,1672319027),(97686,4,26060,3,1672319027),(97687,4,26061,3,1672319027),(97688,4,26062,3,1672319027),(97689,4,26063,3,1672319027),(97690,4,26064,3,1672319027),(97691,4,26065,3,1672319027),(97692,4,26066,3,1672319027),(97693,4,26067,3,1672319027),(97694,4,26068,3,1672319027),(97695,4,26069,3,1672319027),(97696,4,26070,3,1672319027),(97697,4,26071,3,1672319027),(97698,4,26072,3,1672319027),(97699,4,26073,3,1672319027),(97700,4,26074,3,1672319027),(97701,4,26075,3,1672319027),(97702,4,26076,3,1672319027),(97703,4,26077,3,1672319027),(97704,4,26078,3,1672319027),(97705,4,26079,3,1672319027),(97706,4,26080,3,1672319027),(97707,4,26081,3,1672319027),(97708,4,26082,3,1672319027),(97709,4,26083,3,1672319027),(97710,4,26084,3,1672319027),(97711,4,26085,3,1672319027),(97712,4,26086,3,1672319027),(97713,4,26087,3,1672319027),(97714,4,26088,3,1672319027),(97715,4,26089,3,1672319027),(97716,4,26090,3,1672319027),(97717,4,26091,3,1672319027),(97718,4,26092,3,1672319027),(97719,4,26093,3,1672319027),(97720,4,26094,3,1672319027),(97721,4,26095,3,1672319027),(97722,4,26096,3,1672319027),(97723,4,26097,3,1672319027),(97724,4,26098,3,1672319027),(97725,4,26099,3,1672319027),(97726,4,26100,3,1672319027),(97727,4,26101,3,1672319027),(97728,4,26102,3,1672319027),(97729,4,26103,3,1672319027),(97730,4,26104,3,1672319027),(97731,4,26105,3,1672319027),(97732,4,26106,3,1672319027),(97733,4,26107,3,1672319027),(97734,4,26108,3,1672319027),(97735,4,26109,3,1672319027),(97736,4,26110,3,1672319027),(97737,4,26111,3,1672319027),(97738,4,26112,3,1672319027),(97739,4,26113,3,1672319027),(97740,4,26114,3,1672319027),(97741,4,26115,3,1672319027),(97742,4,26116,3,1672319027),(97743,4,26117,3,1672319027),(97744,4,26118,3,1672319027),(97745,4,26119,3,1672319027),(97746,4,26120,3,1672319027),(97747,4,26121,3,1672319027),(97748,4,26122,3,1672319027),(97749,4,26123,3,1672319027),(97750,4,26124,3,1672319027),(97751,4,26125,3,1672319027),(97752,4,26126,3,1672319027),(97753,4,26127,3,1672319027),(97754,4,26128,3,1672319027),(97755,4,26129,3,1672319027),(97756,4,26130,3,1672319027),(97757,4,26131,3,1672319027),(97758,4,26132,3,1672319027),(97759,4,26133,3,1672319027),(97760,4,26134,3,1672319027),(97761,4,26135,3,1672319027),(97762,4,26136,3,1672319027),(97763,4,26137,3,1672319027),(97764,4,26138,3,1672319027),(97765,4,26139,3,1672319027),(97766,4,26140,3,1672319027),(97767,4,26141,3,1672319027),(97768,4,26142,3,1672319027),(97769,4,26143,3,1672319027),(97770,4,26144,3,1672319027),(97771,4,26145,3,1672319027),(97772,4,26146,3,1672319027),(97773,4,26147,3,1672319027),(97774,4,26148,3,1672319027),(97775,4,26149,3,1672319027),(97776,4,26150,3,1672319027),(97777,4,26151,3,1672319027),(97778,4,26152,3,1672319027),(97779,4,26153,3,1672319027),(97780,4,26154,3,1672319027),(97781,4,26155,3,1672319027),(97782,4,26156,3,1672319027),(97783,4,26157,3,1672319027),(97784,4,26158,3,1672319027),(97785,4,26159,3,1672319027),(97786,4,26160,3,1672319027),(97787,4,26161,3,1672319027),(97788,4,26162,3,1672319027),(97789,4,26163,3,1672319027),(97790,4,26164,3,1672319027),(97791,4,26165,3,1672319027),(97792,4,26166,3,1672319027),(97793,4,26167,3,1672319027),(97794,4,26168,3,1672319027),(97795,4,26169,3,1672319027),(97796,4,26170,3,1672319027),(97797,4,26171,3,1672319027),(97798,4,26172,3,1672319027),(97799,4,26173,3,1672319027),(97800,4,26174,3,1672319027),(97801,4,26175,3,1672319027),(97802,4,26176,3,1672319027),(97803,4,26177,3,1672319027),(97804,4,26178,3,1672319027),(97805,4,26179,3,1672319027),(97806,4,26180,3,1672319027),(97807,4,26181,3,1672319027),(97808,4,26182,3,1672319027),(97809,4,26183,3,1672319027),(97810,4,26184,3,1672319027),(97811,4,26185,3,1672319027),(97812,4,26186,3,1672319027),(97813,4,26187,3,1672319027),(97814,4,26188,3,1672319027),(97815,4,26189,3,1672319027),(97816,4,26190,3,1672319027),(97817,4,26191,3,1672319027),(97818,4,26192,3,1672319027),(97819,4,26193,3,1672319027),(97820,4,26194,3,1672319027),(97821,4,26195,3,1672319027),(97822,4,26196,3,1672319027),(97823,4,26197,3,1672319027),(97824,4,26198,3,1672319027),(97825,4,26199,3,1672319027),(97826,4,26200,3,1672319027),(97827,4,26201,3,1672319027),(97828,4,26202,3,1672319027),(97829,4,26203,3,1672319027),(97830,4,26204,3,1672319027),(97831,4,26205,3,1672319027),(97832,4,26206,3,1672319027),(97833,4,26207,3,1672319027),(97834,4,26208,3,1672319027),(97835,4,26209,3,1672319027),(97836,4,26210,3,1672319027),(97837,4,26211,3,1672319027),(97838,4,26212,3,1672319027),(97839,4,26213,3,1672319027),(97840,4,26214,3,1672319027),(97841,4,26215,3,1672319027),(97842,4,26216,3,1672319027),(97843,4,26217,3,1672319027),(97844,4,26218,3,1672319027),(97845,4,26219,3,1672319027),(97846,4,26220,3,1672319027),(97847,4,26221,3,1672319027),(97848,4,26222,3,1672319027),(97849,4,26223,3,1672319027),(97850,4,26224,3,1672319027),(97851,4,26225,3,1672319027),(97852,4,26226,3,1672319027),(97853,4,26227,3,1672319027),(97854,4,26228,3,1672319027),(97855,4,26229,3,1672319027),(97856,4,26230,3,1672319027),(97857,4,26231,3,1672319027),(97858,4,26232,3,1672319027),(97859,4,26233,3,1672319027),(97860,4,26234,3,1672319027),(97861,4,26235,3,1672319027),(97862,4,26236,3,1672319027),(97863,4,26237,3,1672319027),(97864,4,26238,3,1672319027),(97865,4,26239,3,1672319027),(97866,4,26240,3,1672319027),(97867,4,26241,3,1672319027),(97868,4,26242,3,1672319027),(97869,4,26243,3,1672319027),(97870,4,26244,3,1672319027),(97871,4,26245,3,1672319027),(97872,4,26246,3,1672319027),(97873,4,26247,3,1672319027),(97874,4,26248,3,1672319027),(97875,4,26249,3,1672319027),(97876,4,26250,3,1672319027),(97877,4,26251,3,1672319027),(97878,4,26252,3,1672319027),(97879,4,26253,3,1672319027),(97880,4,26254,3,1672319027),(97881,4,26255,3,1672319027),(97882,4,26256,3,1672319027),(97883,4,26257,3,1672319027),(97884,4,26258,3,1672319027),(97885,4,26259,3,1672319027),(97886,4,26260,3,1672319027),(97887,4,26261,3,1672319027),(97888,4,26262,3,1672319027),(97889,4,26263,3,1672319027),(97890,4,26264,3,1672319027),(97891,4,26265,3,1672319027),(97892,4,26266,3,1672319027),(97893,4,26267,3,1672319027),(97894,4,26268,3,1672319027),(97895,4,26269,3,1672319027),(97896,4,26270,3,1672319027),(97897,4,26271,3,1672319027),(97898,4,26272,3,1672319027),(97899,4,26273,3,1672319027),(97900,4,26274,3,1672319027),(97901,4,26275,3,1672319027),(97902,4,26276,3,1672319027),(97903,4,26277,3,1672319027),(97904,4,26278,3,1672319027),(97905,4,26279,3,1672319027),(97906,4,26280,3,1672319027),(97907,4,26281,3,1672319027),(97908,4,26282,3,1672319027),(97909,4,26283,3,1672319027),(97910,4,26284,3,1672319027),(97911,4,26285,3,1672319027),(97912,4,26286,3,1672319027),(97913,4,26287,3,1672319027),(97914,4,26288,3,1672319027),(97915,4,26289,3,1672319027),(97916,4,26290,3,1672319027),(97917,4,26291,3,1672319027),(97918,4,26292,3,1672319027),(97919,4,26293,3,1672319027),(97920,4,26294,3,1672319027),(97921,4,26295,3,1672319027),(97922,4,26296,3,1672319027),(97923,4,26297,3,1672319027),(97924,4,26298,3,1672319027),(97925,4,26299,3,1672319027),(97926,4,26300,3,1672319027),(97927,4,26301,3,1672319027),(97928,4,26302,3,1672319027),(97929,4,26303,3,1672319027),(97930,4,26304,3,1672319027),(97931,4,26305,3,1672319027),(97932,4,26306,3,1672319027),(97933,4,26307,3,1672319027),(97934,4,26308,3,1672319027),(97935,4,26309,3,1672319027),(97936,4,26310,3,1672319027),(97937,4,26311,3,1672319027),(97938,4,26312,3,1672319027),(97939,4,26313,3,1672319027),(97940,4,26314,3,1672319027),(97941,4,26315,3,1672319027),(97942,4,26316,3,1672319027),(97943,4,26317,3,1672319027),(97944,4,26318,3,1672319027),(97945,4,26319,3,1672319027),(97946,4,26320,3,1672319027),(97947,4,26321,3,1672319027),(97948,4,26322,3,1672319027),(97949,4,26323,3,1672319027),(97950,4,26324,3,1672319027),(97951,4,26325,3,1672319027),(97952,4,26326,3,1672319027),(97953,4,26327,3,1672319027),(97954,4,26328,3,1672319027),(97955,4,26329,3,1672319027),(97956,4,26330,3,1672319027),(97957,4,26331,3,1672319027),(97958,4,26332,3,1672319027),(97959,4,26333,3,1672319027),(97960,4,26334,3,1672319027),(97961,4,26335,3,1672319027),(97962,4,26336,3,1672319027),(97963,4,26337,3,1672319027),(97964,4,26338,3,1672319027),(97965,4,26339,3,1672319027),(97966,4,26340,3,1672319027),(97967,4,26341,3,1672319027),(97968,4,26342,3,1672319027),(97969,4,26343,3,1672319027),(97970,4,26344,3,1672319027),(97971,4,26345,3,1672319027),(97972,4,26346,3,1672319027),(97973,4,26347,3,1672319027),(97974,4,26348,3,1672319027),(97975,4,26349,3,1672319027),(97976,4,26350,3,1672319027),(97977,4,26351,3,1672319027),(97978,4,26352,3,1672319027),(97979,4,26353,3,1672319027),(97980,4,26354,3,1672319027),(97981,4,26355,3,1672319027),(97982,4,26356,3,1672319027),(97983,4,26357,3,1672319027),(97984,4,26358,3,1672319027),(97985,4,26359,3,1672319027),(97986,4,26360,3,1672319027),(97987,4,26361,3,1672319027),(97988,4,26362,3,1672319027),(97989,4,26363,3,1672319027),(97990,4,26364,3,1672319027),(97991,4,26365,3,1672319027),(97992,4,26366,3,1672319027),(97993,4,26367,3,1672319027),(97994,4,26368,3,1672319027),(97995,4,26369,3,1672319027),(97996,4,26370,3,1672319027),(97997,4,26371,3,1672319027),(97998,4,26372,3,1672319027),(97999,4,26373,3,1672319027),(98000,4,26374,3,1672319027),(98001,4,26375,3,1672319027),(98002,4,26376,3,1672319027),(98003,4,26377,3,1672319027),(98004,4,26378,3,1672319027),(98005,4,26379,3,1672319027),(98006,4,26380,3,1672319027),(98007,4,26381,3,1672319027),(98008,4,26382,3,1672319027),(98009,4,26383,3,1672319027),(98010,4,26384,3,1672319027),(98011,4,26385,3,1672319027),(98012,4,26386,3,1672319027),(98013,4,26387,3,1672319027),(98014,4,26388,3,1672319027),(98015,4,26389,3,1672319027),(98016,4,26390,3,1672319027),(98017,4,26391,3,1672319027),(98018,4,26392,3,1672319027),(98019,4,26393,3,1672319027),(98020,4,26394,3,1672319027),(98021,4,26395,3,1672319027),(98022,4,26396,3,1672319027),(98023,4,26397,3,1672319027),(98024,4,26398,3,1672319027),(98025,4,26399,3,1672319027),(98026,4,26400,3,1672319027),(98027,4,26401,3,1672319027),(98028,4,26402,3,1672319027),(98029,4,26403,3,1672319027),(98030,4,26404,3,1672319027),(98031,4,26405,3,1672319027),(98032,4,26406,3,1672319027),(98033,4,26407,3,1672319027),(98034,4,26408,3,1672319027),(98035,4,26409,3,1672319027),(98036,4,26410,3,1672319027),(98037,4,26411,3,1672319027),(98038,4,26412,3,1672319027),(98039,4,26413,3,1672319027),(98040,4,26414,3,1672319027),(98041,4,26415,3,1672319027),(98042,4,26416,3,1672319027),(98043,4,26417,3,1672319027),(98044,4,26418,3,1672319027),(98045,4,26419,3,1672319027),(98046,4,26420,3,1672319027),(98047,4,26421,3,1672319027),(98048,4,26422,3,1672319027),(98049,4,26423,3,1672319027),(98050,4,26424,3,1672319027),(98051,4,26425,3,1672319027),(98052,4,26426,3,1672319027),(98053,4,26427,3,1672319027),(98054,4,26428,3,1672319027),(98055,4,26429,3,1672319027),(98056,4,26430,3,1672319027),(98057,4,26431,3,1672319027),(98058,4,26432,3,1672319027),(98059,4,26433,3,1672319027),(98060,4,26434,3,1672319027),(98061,4,26435,3,1672319027),(98062,4,26436,3,1672319027),(98063,4,26437,3,1672319027),(98064,4,26438,3,1672319027),(98065,4,26439,3,1672319027),(98066,4,26440,3,1672319027),(98067,4,26441,3,1672319027),(98068,4,26442,3,1672319027),(98069,4,26443,3,1672319027),(98070,4,26444,3,1672319027),(98071,4,26445,3,1672319027),(98072,4,26446,3,1672319027),(98073,4,26447,3,1672319027),(98074,4,26448,3,1672319027),(98075,4,26449,3,1672319027),(98076,4,26450,3,1672319027),(98077,4,26451,3,1672319027),(98078,4,26452,3,1672319027),(98079,4,26453,3,1672319027),(98080,4,26454,3,1672319027),(98081,4,26455,3,1672319027),(98082,4,26456,3,1672319027),(98083,4,26457,3,1672319027),(98084,4,26458,3,1672319027),(98085,4,26459,3,1672319027),(98086,4,26460,3,1672319027),(98087,4,26461,3,1672319027),(98088,4,26462,3,1672319027),(98089,4,26463,3,1672319027),(98090,4,26464,3,1672319027),(98091,4,26465,3,1672319027),(98092,4,26466,3,1672319027),(98093,4,26467,3,1672319027),(98094,4,26468,3,1672319027),(98095,4,26469,3,1672319027),(98096,4,26470,3,1672319027),(98097,4,26471,3,1672319027),(98098,4,26472,3,1672319027),(98099,4,26473,3,1672319027),(98100,4,26474,3,1672319027),(98101,4,26475,3,1672319027),(98102,4,26476,3,1672319027),(98103,4,26477,3,1672319027),(98104,4,26478,3,1672319027),(98105,4,26479,3,1672319027),(98106,4,26480,3,1672319027),(98107,4,26481,3,1672319027),(98108,4,26482,3,1672319027),(98109,4,26483,3,1672319027),(98110,4,26484,3,1672319027),(98111,4,26485,3,1672319027),(98112,4,26486,3,1672319027),(98113,4,26487,3,1672319027),(98114,4,26488,3,1672319027),(98115,4,26489,3,1672319027),(98116,4,26490,3,1672319027),(98117,4,26491,3,1672319027),(98118,4,26492,3,1672319027),(98119,4,26493,3,1672319027),(98120,4,26494,3,1672319027),(98121,4,26495,3,1672319027),(98122,4,26496,3,1672319027),(98123,4,26497,3,1672319027),(98124,4,26498,3,1672319027),(98125,4,26499,3,1672319027),(98126,4,26500,3,1672319027),(98127,4,26501,3,1672319027),(98128,4,26502,3,1672319027),(98129,4,26503,3,1672319027),(98130,4,26504,3,1672319027),(98131,4,26505,3,1672319027),(98132,4,26506,3,1672319027),(98133,4,26507,3,1672319027),(98134,4,26508,3,1672319027),(98135,4,26509,3,1672319027),(98136,4,26510,3,1672319027),(98137,4,26511,3,1672319027),(98138,4,26512,3,1672319027),(98139,4,26513,3,1672319027),(98140,4,26514,3,1672319027),(98141,4,26515,3,1672319027),(98142,4,26516,3,1672319027),(98143,4,26517,3,1672319027),(98144,4,26518,3,1672319027),(98145,4,26519,3,1672319027),(98146,4,26520,3,1672319027),(98147,4,26521,3,1672319027),(98148,4,26522,3,1672319027),(98149,4,26523,3,1672319027),(98150,4,26524,3,1672319027),(98151,4,26525,3,1672319027),(98152,4,26526,3,1672319027),(98153,4,26527,3,1672319027),(98154,4,26528,3,1672319027),(98155,4,26529,3,1672319027),(98156,4,26530,3,1672319027),(98157,4,26531,3,1672319027),(98158,4,26532,3,1672319027),(98159,4,26533,3,1672319027),(98160,4,26534,3,1672319027),(98161,4,26535,3,1672319027),(98162,4,26536,3,1672319027),(98163,4,26537,3,1672319027),(98164,4,26538,3,1672319027),(98165,4,26539,3,1672319027),(98166,4,26540,3,1672319027),(98167,4,26541,3,1672319027),(98168,4,26542,3,1672319027),(98169,4,26543,3,1672319027),(98170,4,26544,3,1672319027),(98171,4,26545,3,1672319027),(98172,4,26546,3,1672319027),(98173,4,26547,3,1672319027),(98174,4,26548,3,1672319027),(98175,4,26549,3,1672319027),(98176,4,26550,3,1672319027),(98177,4,26551,3,1672319027),(98178,4,26552,3,1672319027),(98179,4,26553,3,1672319027),(98180,4,26554,3,1672319027),(98181,4,26555,3,1672319027),(98182,4,26556,3,1672319027),(98183,4,26557,3,1672319027),(98184,4,26558,3,1672319027),(98185,4,26559,3,1672319027),(98186,4,26560,3,1672319027),(98187,4,26561,3,1672319027),(98188,4,26562,3,1672319027),(98189,4,26563,3,1672319027),(98190,4,26564,3,1672319027),(98191,4,26565,3,1672319027),(98192,4,26566,3,1672319027),(98193,4,26567,3,1672319027),(98194,4,26568,3,1672319027),(98195,4,26569,3,1672319027),(98196,4,26570,3,1672319027),(98197,4,26571,3,1672319027),(98198,4,26572,3,1672319027),(98199,4,26573,3,1672319027),(98200,4,26574,3,1672319027),(98201,4,26575,3,1672319027),(98202,4,26576,3,1672319027),(98203,4,26577,3,1672319027),(98204,4,26578,3,1672319027),(98205,4,26579,3,1672319027),(98206,4,26580,3,1672319027),(98207,4,26581,3,1672319027),(98208,4,26582,3,1672319027),(98209,4,26583,3,1672319027),(98210,4,26584,3,1672319027),(98211,4,26585,3,1672319027),(98212,4,26586,3,1672319027),(98213,4,26587,3,1672319027),(98214,4,26588,3,1672319027),(98215,4,26589,3,1672319027),(98216,4,26590,3,1672319027),(98217,4,26591,3,1672319027),(98218,4,26592,3,1672319027),(98219,4,26593,3,1672319027),(98220,4,26594,3,1672319027),(98221,4,26595,3,1672319027),(98222,4,26596,3,1672319027),(98223,4,26597,3,1672319027),(98224,4,26598,3,1672319027),(98225,4,26599,3,1672319027),(98226,4,26600,3,1672319027),(98227,4,26601,3,1672319027),(98228,4,26602,3,1672319027),(98229,4,26603,3,1672319027),(98230,4,26604,3,1672319027),(98231,4,26605,3,1672319027),(98232,4,26606,3,1672319027),(98233,4,26607,3,1672319027),(98234,4,26608,3,1672319027),(98235,4,26609,3,1672319027),(98236,4,26610,3,1672319027),(98237,4,26611,3,1672319027),(98238,4,26612,3,1672319027),(98239,4,26613,3,1672319027),(98240,4,26614,3,1672319027),(98241,4,26615,3,1672319027),(98242,4,26616,3,1672319027),(98243,4,26617,3,1672319027),(98244,4,26618,3,1672319027),(98245,4,26619,3,1672319027),(98246,4,26620,3,1672319027),(98247,4,26621,3,1672319027),(98248,4,26622,3,1672319027),(98249,4,26623,3,1672319027),(98250,4,26624,3,1672319027),(98251,4,26625,3,1672319027),(98252,4,26626,3,1672319027),(98253,4,26627,3,1672319027),(98254,4,26628,3,1672319027),(98255,4,26629,3,1672319027),(98256,4,26630,3,1672319027),(98257,4,26631,3,1672319027),(98258,4,26632,3,1672319027),(98259,4,26633,3,1672319027),(98260,4,26634,3,1672319027),(98261,4,26635,3,1672319027),(98262,4,26636,3,1672319027),(98263,4,26637,3,1672319027),(98264,4,26638,3,1672319027),(98265,4,26639,3,1672319027),(98266,4,26640,3,1672319027),(98267,4,26641,3,1672319027),(98268,4,26642,3,1672319027),(98269,4,26643,3,1672319027),(98270,4,26644,3,1672319027),(98271,4,26645,3,1672319027),(98272,4,26646,3,1672319027),(98273,4,26647,3,1672319027),(98274,4,26648,3,1672319027),(98275,4,26649,3,1672319027),(98276,4,26650,3,1672319027),(98277,4,26651,3,1672319027),(98278,4,26652,3,1672319027),(98279,4,26653,3,1672319027),(98280,4,26654,3,1672319027),(98281,4,26655,3,1672319027),(98282,4,26656,3,1672319027),(98283,4,26657,3,1672319027),(98284,4,26658,3,1672319027),(98285,4,26659,3,1672319027),(98286,4,26660,3,1672319027),(98287,4,26661,3,1672319027),(98288,4,26662,3,1672319027),(98289,4,26663,3,1672319027),(98290,4,26664,3,1672319027),(98291,4,26665,3,1672319027),(98292,4,26666,3,1672319027),(98293,4,26667,3,1672319027),(98294,4,26668,3,1672319027),(98295,4,26669,3,1672319027),(98296,4,26670,3,1672319027),(98297,4,26671,3,1672319027),(98298,4,26672,3,1672319027),(98299,4,26673,3,1672319027),(98300,4,26674,3,1672319027),(98301,4,26675,3,1672319027),(98302,4,26676,3,1672319027),(98303,4,26677,3,1672319027),(98304,4,26678,3,1672319027),(98305,4,26679,3,1672319027),(98306,4,26680,3,1672319027),(98307,4,26681,3,1672319027),(98308,4,26682,3,1672319027),(98309,4,26683,3,1672319027),(98310,4,26684,3,1672319027),(98311,4,26685,3,1672319027),(98312,4,26686,3,1672319027),(98313,4,26687,3,1672319027),(98314,4,26688,3,1672319027),(98315,4,26689,3,1672319027),(98316,4,26690,3,1672319027),(98317,4,26691,3,1672319027),(98318,4,26692,3,1672319027),(98319,4,26693,3,1672319027),(98320,4,26694,3,1672319027),(98321,4,26695,3,1672319027),(98322,4,26696,3,1672319027),(98323,4,26697,3,1672319027),(98324,4,26698,3,1672319027),(98325,4,26699,3,1672319027),(98326,4,26700,3,1672319027),(98327,4,26701,3,1672319027),(98328,4,26702,3,1672319027),(98329,4,26703,3,1672319027),(98330,4,26704,3,1672319027),(98331,4,26705,3,1672319027),(98332,4,26706,3,1672319027),(98333,4,26707,3,1672319027),(98334,4,26708,3,1672319027),(98335,4,26709,3,1672319027),(98336,4,26710,3,1672319027),(98337,4,26711,3,1672319027),(98338,4,26712,3,1672319027),(98339,4,26713,3,1672319027),(98340,4,26714,3,1672319027),(98341,4,26715,3,1672319027),(98342,4,26716,3,1672319027),(98343,4,26717,3,1672319027),(98344,4,26718,3,1672319027),(98345,4,26719,3,1672319027),(98346,4,26720,3,1672319027),(98347,4,26721,3,1672319027),(98348,4,26722,3,1672319027),(98349,4,26723,3,1672319027),(98350,4,26724,3,1672319027),(98351,4,26725,3,1672319027),(98352,4,26726,3,1672319027),(98353,4,26727,3,1672319027),(98354,4,26728,3,1672319027),(98355,4,26729,3,1672319027),(98356,4,26730,3,1672319027),(98357,4,26731,3,1672319027),(98358,4,26732,3,1672319027),(98359,4,26733,3,1672319027),(98360,4,26734,3,1672319027),(98361,4,26735,3,1672319027),(98362,4,26736,3,1672319027),(98363,4,26737,3,1672319027),(98364,4,26738,3,1672319027),(98365,4,26739,3,1672319027),(98366,4,26740,3,1672319027),(98367,4,26741,3,1672319027),(98368,4,26742,3,1672319027),(98369,4,26743,3,1672319027),(98370,4,26744,3,1672319027),(98371,4,26745,3,1672319027),(98372,4,26746,3,1672319027),(98373,4,26747,3,1672319027),(98374,4,26748,3,1672319027),(98375,4,26749,3,1672319027),(98376,4,26750,3,1672319027),(98377,4,26751,3,1672319027),(98378,4,26752,3,1672319027),(98379,4,26753,3,1672319027),(98380,4,26754,3,1672319027),(98381,4,26755,3,1672319027),(98382,4,26756,3,1672319027),(98383,4,26757,3,1672319027),(98384,4,26758,3,1672319027),(98385,4,26759,3,1672319027),(98386,4,26760,3,1672319027),(98387,4,26761,3,1672319027),(98388,4,26762,3,1672319027),(98389,4,26763,3,1672319027),(98390,4,26764,3,1672319027),(98391,4,26765,3,1672319027),(98392,4,26766,3,1672319027),(98393,4,26767,3,1672319027),(98394,4,26768,3,1672319027),(98395,4,26769,3,1672319027),(98396,4,26770,3,1672319027),(98397,4,26771,3,1672319027),(98398,4,26772,3,1672319027),(98399,4,26773,3,1672319027),(98400,4,26774,3,1672319027),(98401,4,26775,3,1672319027),(98402,4,26776,3,1672319027),(98403,4,26777,3,1672319027),(98404,4,26778,3,1672319027),(98405,4,26779,3,1672319027),(98406,4,26780,3,1672319027),(98407,4,26781,3,1672319027),(98408,4,26782,3,1672319027),(98409,4,26783,3,1672319027),(98410,4,26784,3,1672319027),(98411,4,26785,3,1672319027),(98412,4,26786,3,1672319027),(98413,4,26787,3,1672319027),(98414,4,26788,3,1672319027),(98415,4,26789,3,1672319027),(98416,4,26790,3,1672319027),(98417,4,26791,3,1672319027),(98418,4,26792,3,1672319027),(98419,4,26793,3,1672319027),(98420,4,26794,3,1672319027),(98421,4,26795,3,1672319027),(98422,4,26796,3,1672319027),(98423,4,26797,3,1672319027),(98424,4,26798,3,1672319027),(98425,4,26799,3,1672319027),(98426,4,26800,3,1672319027),(98427,4,26801,3,1672319027),(98428,4,26802,3,1672319027),(98429,4,26803,3,1672319027),(98430,4,26804,3,1672319027),(98431,4,26805,3,1672319027),(98432,4,26806,3,1672319027),(98433,4,26807,3,1672319027),(98434,4,26808,3,1672319027),(98435,4,26809,3,1672319027),(98436,4,26810,3,1672319027),(98437,4,26811,3,1672319027),(98438,4,26812,3,1672319027),(98439,4,26813,3,1672319027),(98440,4,26814,3,1672319027),(98441,4,26815,3,1672319027),(98442,4,26816,3,1672319027),(98443,4,26817,3,1672319027),(98444,4,26818,3,1672319027),(98445,4,26819,3,1672319027),(98446,4,26820,3,1672319027),(98447,4,26821,3,1672319027),(98448,4,26822,3,1672319027),(98449,4,26823,3,1672319027),(98450,4,26824,3,1672319027),(98451,4,26825,3,1672319027),(98452,4,26826,3,1672319027),(98453,4,26827,3,1672319027),(98454,4,26828,3,1672319027),(98455,4,26829,3,1672319027),(98456,4,26830,3,1672319027),(98457,4,26831,3,1672319027),(98458,4,26832,3,1672319027),(98459,4,26833,3,1672319027),(98460,4,26834,3,1672319027),(98461,4,26835,3,1672319027),(98462,4,26836,3,1672319027),(98463,4,26837,3,1672319027),(98464,4,26838,3,1672319027),(98465,4,26839,3,1672319027),(98466,4,26840,3,1672319027),(98467,4,26841,3,1672319027),(98468,4,26842,3,1672319027),(98469,4,26843,3,1672319027),(98470,4,26844,3,1672319027),(98471,4,26845,3,1672319027),(98472,4,26846,3,1672319027),(98473,4,26847,3,1672319027),(98474,4,26848,3,1672319027),(98475,4,26849,3,1672319027),(98476,4,26850,3,1672319027),(98477,4,26851,3,1672319027),(98478,4,26852,3,1672319027),(98479,4,26853,3,1672319027),(98480,4,26854,3,1672319027),(98481,4,26855,3,1672319027),(98482,4,26856,3,1672319027),(98483,4,26857,3,1672319027),(98484,4,26858,3,1672319027),(98485,4,26859,3,1672319027),(98486,4,26860,3,1672319027),(98487,4,26861,3,1672319027),(98488,4,26862,3,1672319027),(98489,4,26863,3,1672319027),(98490,4,26864,3,1672319027),(98491,4,26865,3,1672319027),(98492,4,26866,3,1672319027),(98493,4,26867,3,1672319027),(98494,4,26868,3,1672319027),(98495,4,26869,3,1672319027),(98496,4,26870,3,1672319027),(98497,4,26871,3,1672319027),(98498,4,26872,3,1672319027),(98499,4,26873,3,1672319027),(98500,4,26874,3,1672319027),(98501,4,26875,3,1672319027),(98502,4,26876,3,1672319027),(98503,4,26877,3,1672319027),(98504,4,26878,3,1672319027),(98505,4,26879,3,1672319027),(98506,4,26880,3,1672319027),(98507,4,26881,3,1672319027),(98508,4,26882,3,1672319027),(98509,4,26883,3,1672319027),(98510,4,26884,3,1672319027),(98511,4,26885,3,1672319027),(98512,4,26886,3,1672319027),(98513,4,26887,3,1672319027),(98514,4,26888,3,1672319027),(98515,4,26889,3,1672319027),(98516,4,26890,3,1672319027),(98517,4,26891,3,1672319027),(98518,4,26892,3,1672319027),(98519,4,26893,3,1672319027),(98520,4,26894,3,1672319027),(98521,4,26895,3,1672319027),(98522,4,26896,3,1672319027),(98523,4,26897,3,1672319027),(98524,4,26898,3,1672319027),(98525,4,26899,3,1672319027),(98526,4,26900,3,1672319027),(98527,4,26901,3,1672319027),(98528,4,26902,3,1672319027),(98529,4,26903,3,1672319027),(98530,4,26904,3,1672319027),(98531,4,26905,3,1672319027),(98532,4,26906,3,1672319027),(98533,4,26907,3,1672319027),(98534,4,26908,3,1672319027),(98535,4,26909,3,1672319027),(98536,4,26910,3,1672319027),(98537,4,26911,3,1672319027),(98538,4,26912,3,1672319027),(98539,4,26913,3,1672319027),(98540,4,26914,3,1672319027),(98541,4,26915,3,1672319027),(98542,4,26916,3,1672319027),(98543,4,26917,3,1672319027),(98544,4,26918,3,1672319027),(98545,4,26919,3,1672319027),(98546,4,26920,3,1672319027),(98547,4,26921,3,1672319027),(98548,4,26922,3,1672319027),(98549,4,26923,3,1672319027),(98550,4,26924,3,1672319027),(98551,4,26925,3,1672319027),(98552,4,26926,3,1672319027),(98553,4,26927,3,1672319027),(98554,4,26928,3,1672319027),(98555,4,26929,3,1672319027),(98556,4,26930,3,1672319027),(98557,4,26931,3,1672319027),(98558,4,26932,3,1672319027),(98559,4,26933,3,1672319027),(98560,4,26934,3,1672319027),(98561,4,26935,3,1672319027),(98562,4,26936,3,1672319027),(98563,4,26937,3,1672319027),(98564,4,26938,3,1672319027),(98565,4,26939,3,1672319027),(98566,4,26940,3,1672319027),(98567,4,26941,3,1672319027),(98568,4,26942,3,1672319027),(98569,4,26943,3,1672319027),(98570,4,26944,3,1672319027),(98571,4,26945,3,1672319027),(98572,4,26946,3,1672319027),(98573,4,26947,3,1672319027),(98574,4,26948,3,1672319027),(98575,4,26949,3,1672319027),(98576,4,26950,3,1672319027),(98577,4,26951,3,1672319027),(98578,4,26952,3,1672319027),(98579,4,26953,3,1672319027),(98580,4,26954,3,1672319027),(98581,4,26955,3,1672319027),(98582,4,26956,3,1672319027),(98583,4,26957,3,1672319027),(98584,4,26958,3,1672319027),(98585,4,26959,3,1672319027),(98586,4,26960,3,1672319027),(98587,4,26961,3,1672319027),(98588,4,26962,3,1672319027),(98589,4,26963,3,1672319027),(98590,4,26964,3,1672319027),(98591,4,26965,3,1672319027),(98592,4,26966,3,1672319027),(98593,4,26967,3,1672319027),(98594,4,26968,3,1672319027),(98595,4,26969,3,1672319027),(98596,4,26970,3,1672319027),(98597,4,26971,3,1672319027),(98598,4,26972,3,1672319027),(98599,4,26973,3,1672319027),(98600,4,26974,3,1672319027),(98601,4,26975,3,1672319027),(98602,4,26976,3,1672319027),(98603,4,26977,3,1672319027),(98604,4,26978,3,1672319027),(98605,4,26979,3,1672319027),(98606,4,26980,3,1672319027),(98607,4,26981,3,1672319027),(98608,4,26982,3,1672319027),(98609,4,26983,3,1672319027),(98610,4,26984,3,1672319027),(98611,4,26985,3,1672319027),(98612,4,26986,3,1672319027),(98613,4,26987,3,1672319027),(98614,4,26988,3,1672319027),(98615,4,26989,3,1672319027),(98616,4,26990,3,1672319027),(98617,4,26991,3,1672319027),(98618,4,26992,3,1672319027),(98619,4,26993,3,1672319027),(98620,4,26994,3,1672319027),(98621,4,26995,3,1672319027),(98622,4,26996,3,1672319027),(98623,4,26997,3,1672319027),(98624,4,26998,3,1672319027),(98625,4,26999,3,1672319027),(98626,4,27000,3,1672319027),(98627,4,27001,3,1672319027),(98628,4,27002,3,1672319027),(98629,4,27003,3,1672319027),(98630,4,27004,3,1672319027),(98631,4,27005,3,1672319027),(98632,4,27006,3,1672319027),(98633,4,27007,3,1672319027),(98634,4,27008,3,1672319027),(98635,4,27009,3,1672319027),(98636,4,27010,3,1672319027),(98637,4,27011,3,1672319027),(98638,4,27012,3,1672319027),(98639,4,27013,3,1672319027),(98640,4,27014,3,1672319027),(98641,4,27015,3,1672319027),(98642,4,27016,3,1672319027),(98643,4,27017,3,1672319027),(98644,4,27018,3,1672319027),(98645,4,27019,3,1672319027),(98646,4,27020,3,1672319027),(98647,4,27021,3,1672319027),(98648,4,27022,3,1672319027),(98649,4,27023,3,1672319027),(98650,4,27024,3,1672319027),(98651,4,27025,3,1672319027),(98652,4,27026,3,1672319027),(98653,4,27027,3,1672319027),(98654,4,27028,3,1672319027),(98655,4,27029,3,1672319027),(98656,4,27030,3,1672319027),(98657,4,27031,3,1672319027),(98658,4,27032,3,1672319027),(98659,4,27033,3,1672319027),(98660,4,27034,3,1672319027),(98661,4,27035,3,1672319027),(98662,4,27036,3,1672319027),(98663,4,27037,3,1672319027),(98664,4,27038,3,1672319027),(98665,4,27039,3,1672319027),(98666,4,27040,3,1672319027),(98667,4,27041,3,1672319027),(98668,4,27042,3,1672319027),(98669,4,27043,3,1672319027),(98670,4,27044,3,1672319027),(98671,4,27045,3,1672319027),(98672,4,27046,3,1672319027),(98673,4,27047,3,1672319027),(98674,4,27048,3,1672319027),(98675,4,27049,3,1672319027),(98676,4,27050,3,1672319027),(98677,4,27051,3,1672319027),(98678,4,27052,3,1672319027),(98679,4,27053,3,1672319027),(98680,4,27054,3,1672319027),(98681,4,27055,3,1672319027),(98682,4,27056,3,1672319027),(98683,4,27057,3,1672319027),(98684,4,27058,3,1672319027),(98685,4,27059,3,1672319027),(98686,4,27060,3,1672319027),(98687,4,27061,3,1672319027),(98688,4,27062,3,1672319027),(98689,4,27063,3,1672319027),(98690,4,27064,3,1672319027),(98691,4,27065,3,1672319027),(98692,4,27066,3,1672319027),(98693,4,27067,3,1672319027),(98694,4,27068,3,1672319027),(98695,4,27069,3,1672319027),(98696,4,27070,3,1672319027),(98697,4,27071,3,1672319027),(98698,4,27072,3,1672319027),(98699,4,27073,3,1672319027),(98700,4,27074,3,1672319027),(98701,4,27075,3,1672319027),(98702,4,27076,3,1672319027),(98703,4,27077,3,1672319027),(98704,4,27078,3,1672319027),(98705,4,27079,3,1672319027),(98706,4,27080,3,1672319027),(98707,4,27081,3,1672319027),(98708,4,27082,3,1672319027),(98709,4,27083,3,1672319027),(98710,4,27084,3,1672319027),(98711,4,27085,3,1672319027),(98712,4,27086,3,1672319027),(98713,4,27087,3,1672319027),(98714,4,27088,3,1672319027),(98715,4,27089,3,1672319027),(98716,4,27090,3,1672319027),(98717,4,27091,3,1672319027),(98718,4,27092,3,1672319027),(98719,4,27093,3,1672319027),(98720,4,27094,3,1672319027),(98721,4,27095,3,1672319027),(98722,4,27096,3,1672319027),(98723,4,27097,3,1672319027),(98724,4,27098,3,1672319027),(98725,4,27099,3,1672319027),(98726,4,27100,3,1672319027),(98727,4,27101,3,1672319027),(98728,4,27102,3,1672319027),(98729,4,27103,3,1672319027),(98730,4,27104,3,1672319027),(98731,4,27105,3,1672319027),(98732,4,27106,3,1672319027),(98733,4,27107,3,1672319027),(98734,4,27108,3,1672319027),(98735,4,27109,3,1672319027),(98736,4,27110,3,1672319027),(98737,4,27111,3,1672319027),(98738,4,27112,3,1672319027),(98739,4,27113,3,1672319027),(98740,4,27114,3,1672319027),(98741,4,27115,3,1672319027),(98742,4,27116,3,1672319027),(98743,4,27117,3,1672319027),(98744,4,27118,3,1672319027),(98745,4,27119,3,1672319027),(98746,4,27120,3,1672319027),(98747,4,27121,3,1672319027),(98748,4,27122,3,1672319027),(98749,4,27123,3,1672319027),(98750,4,27124,3,1672319027),(98751,4,27125,3,1672319027),(98752,4,27126,3,1672319027),(98753,4,27127,3,1672319027),(98754,4,27128,3,1672319027),(98755,4,27129,3,1672319027),(98756,4,27130,3,1672319027),(98757,4,27131,3,1672319027),(98758,4,27132,3,1672319027),(98759,4,27133,3,1672319027),(98760,4,27134,3,1672319027),(98761,4,27135,3,1672319027),(98762,4,27136,3,1672319027),(98763,4,27137,3,1672319027),(98764,4,27138,3,1672319027),(98765,4,27139,3,1672319027),(98766,4,27140,3,1672319027),(98767,4,27141,3,1672319027),(98768,4,27142,3,1672319027),(98769,4,27143,3,1672319027),(98770,4,27144,3,1672319027),(98771,4,27145,3,1672319027),(98772,4,27146,3,1672319027),(98773,4,27147,3,1672319027),(98774,4,27148,3,1672319027),(98775,4,27149,3,1672319027),(98776,4,27150,3,1672319027),(98777,4,27151,3,1672319027),(98778,4,27152,3,1672319027),(98779,4,27153,3,1672319027),(98780,4,27154,3,1672319027),(98781,4,27155,3,1672319027),(98782,4,27156,3,1672319027),(98783,4,27157,3,1672319027),(98784,4,27158,3,1672319027),(98785,4,27159,3,1672319027),(98786,4,27160,3,1672319027),(98787,4,27161,3,1672319027),(98788,4,27162,3,1672319027),(98789,4,27163,3,1672319027),(98790,4,27164,3,1672319027),(98791,4,27165,3,1672319027),(98792,4,27166,3,1672319027),(98793,4,27167,3,1672319027),(98794,4,27168,3,1672319027),(98795,4,27169,3,1672319027),(98796,4,27170,3,1672319027),(98797,4,27171,3,1672319027),(98798,4,27172,3,1672319027),(98799,4,27173,3,1672319027),(98800,4,27174,3,1672319027),(98801,4,27175,3,1672319027),(98802,4,27176,3,1672319027),(98803,4,27177,3,1672319027),(98804,4,27178,3,1672319027),(98805,4,27179,3,1672319027),(98806,4,27180,3,1672319027),(98807,4,27181,3,1672319027),(98808,4,27182,3,1672319027),(98809,4,27183,3,1672319027),(98810,4,27184,3,1672319027),(98811,4,27185,3,1672319027),(98812,4,27186,3,1672319027),(98813,4,27187,3,1672319027),(98814,4,27188,3,1672319027),(98815,4,27189,3,1672319027),(98816,4,27190,3,1672319027),(98817,4,27191,3,1672319027),(98818,4,27192,3,1672319027),(98819,4,27193,3,1672319027),(98820,4,27194,3,1672319027),(98821,4,27195,3,1672319027),(98822,4,27196,3,1672319027),(98823,4,27197,3,1672319027),(98824,4,27198,3,1672319027),(98825,4,27199,3,1672319027),(98826,4,27200,3,1672319027),(98827,4,27201,3,1672319027),(98828,4,27202,3,1672319027),(98829,4,27203,3,1672319027),(98830,4,27204,3,1672319027),(98831,4,27205,3,1672319027),(98832,4,27206,3,1672319027),(98833,4,27207,3,1672319027),(98834,4,27208,3,1672319027),(98835,4,27209,3,1672319027),(98836,4,27210,3,1672319027),(98837,4,27211,3,1672319027),(98838,4,27212,3,1672319027),(98839,4,27213,3,1672319027),(98840,4,27214,3,1672319027),(98841,4,27215,3,1672319027),(98842,4,27216,3,1672319027),(98843,4,27217,3,1672319027),(98844,4,27218,3,1672319027),(98845,4,27219,3,1672319027),(98846,4,27220,3,1672319027),(98847,4,27221,3,1672319027),(98848,4,27222,3,1672319027),(98849,4,27223,3,1672319027),(98850,4,27224,3,1672319027),(98851,4,27225,3,1672319027),(98852,4,27226,3,1672319027),(98853,4,27227,3,1672319027),(98854,4,27228,3,1672319027),(98855,4,27229,3,1672319027),(98856,4,27230,3,1672319027),(98857,4,27231,3,1672319027),(98858,4,27232,3,1672319027),(98859,4,27233,3,1672319027),(98860,4,27234,3,1672319027),(98861,4,27235,3,1672319027),(98862,4,27236,3,1672319027),(98863,4,27237,3,1672319027),(98864,4,27238,3,1672319027),(98865,4,27239,3,1672319027),(98866,4,27240,3,1672319027),(98867,4,27241,3,1672319027),(98868,4,27242,3,1672319027),(98869,4,27243,3,1672319027),(98870,4,27244,3,1672319027),(98871,4,27245,3,1672319027),(98872,4,27246,3,1672319027),(98873,4,27247,3,1672319027),(98874,4,27248,3,1672319027),(98875,4,27249,3,1672319027),(98876,4,27250,3,1672319027),(98877,4,27251,3,1672319027),(98878,4,27252,3,1672319027),(98879,4,27253,3,1672319027),(98880,4,27254,3,1672319027),(98881,4,27255,3,1672319027),(98882,4,27256,3,1672319027),(98883,4,27257,3,1672319027),(98884,4,27258,3,1672319027),(98885,4,27259,3,1672319027),(98886,4,27260,3,1672319027),(98887,4,27261,3,1672319027),(98888,4,27262,3,1672319027),(98889,4,27263,3,1672319027),(98890,4,27264,3,1672319027),(98891,4,27265,3,1672319027),(98892,4,27266,3,1672319027),(98893,4,27267,3,1672319027),(98894,4,27268,3,1672319027),(98895,4,27269,3,1672319027),(98896,4,27270,3,1672319027),(98897,4,27271,3,1672319027),(98898,4,27272,3,1672319027),(98899,4,27273,3,1672319027),(98900,4,27274,3,1672319027),(98901,4,27275,3,1672319027),(98902,4,27276,3,1672319027),(98903,4,27277,3,1672319027),(98904,4,27278,3,1672319027),(98905,4,27279,3,1672319027),(98906,4,27280,3,1672319027),(98907,4,27281,3,1672319027),(98908,4,27282,3,1672319027),(98909,4,27283,3,1672319027),(98910,4,27284,3,1672319027),(98911,4,27285,3,1672319027),(98912,4,27286,3,1672319027),(98913,4,27287,3,1672319027),(98914,4,27288,3,1672319027),(98915,4,27289,3,1672319027),(98916,4,27290,3,1672319027),(98917,4,27291,3,1672319027),(98918,4,27292,3,1672319027),(98919,4,27293,3,1672319027),(98920,4,27294,3,1672319027),(98921,4,27295,3,1672319027),(98922,4,27296,3,1672319027),(98923,4,27297,3,1672319027),(98924,4,27298,3,1672319027),(98925,4,27299,3,1672319027),(98926,4,27300,3,1672319027),(98927,4,27301,3,1672319027),(98928,4,27302,3,1672319027),(98929,4,27303,3,1672319027),(98930,4,27304,3,1672319027),(98931,4,27305,3,1672319027),(98932,4,27306,3,1672319027),(98933,4,27307,3,1672319027),(98934,4,27308,3,1672319027),(98935,4,27309,3,1672319027),(98936,4,27310,3,1672319027),(98937,4,27311,3,1672319027),(98938,4,27312,3,1672319027),(98939,4,27313,3,1672319027),(98940,4,27314,3,1672319027),(98941,4,27315,3,1672319027),(98942,4,27316,3,1672319027),(98943,4,27317,3,1672319027),(98944,4,27318,3,1672319027),(98945,4,27319,3,1672319027),(98946,4,27320,3,1672319027),(98947,4,27321,3,1672319027),(98948,4,27322,3,1672319027),(98949,4,27323,3,1672319027),(98950,4,27324,3,1672319027),(98951,4,27325,3,1672319027),(98952,4,27326,3,1672319027),(98953,4,27327,3,1672319027),(98954,4,27328,3,1672319027),(98955,4,27329,3,1672319027),(98956,4,27330,3,1672319027),(98957,4,27331,3,1672319027),(98958,4,27332,3,1672319027),(98959,4,27333,3,1672319027),(98960,4,27334,3,1672319027),(98961,4,27335,3,1672319027),(98962,4,27336,3,1672319027),(98963,4,27337,3,1672319027),(98964,4,27338,3,1672319027),(98965,4,27339,3,1672319027),(98966,4,27340,3,1672319027),(98967,4,27341,3,1672319027),(98968,4,27342,3,1672319027),(98969,4,27343,3,1672319027),(98970,4,27344,3,1672319027),(98971,4,27345,3,1672319027),(98972,4,27346,3,1672319027),(98973,4,27347,3,1672319027),(98974,4,27348,3,1672319027),(98975,4,27349,3,1672319027),(98976,4,27350,3,1672319027),(98977,4,27351,3,1672319027),(98978,4,27352,3,1672319027),(98979,4,27353,3,1672319027),(98980,4,27354,3,1672319027),(98981,4,27355,3,1672319027),(98982,4,27356,3,1672319027),(98983,4,27357,3,1672319027),(98984,4,27358,3,1672319027),(98985,4,27359,3,1672319027),(98986,4,27360,3,1672319027),(98987,4,27361,3,1672319027),(98988,4,27362,3,1672319027),(98989,4,27363,3,1672319027),(98990,4,27364,3,1672319027),(98991,4,27365,3,1672319027),(98992,4,27366,3,1672319027),(98993,4,27367,3,1672319027),(98994,4,27368,3,1672319027),(98995,4,27369,3,1672319027),(98996,4,27370,3,1672319027),(98997,4,27371,3,1672319027),(98998,4,27372,3,1672319027),(98999,4,27373,3,1672319027),(99000,4,27374,3,1672319027),(99001,4,27375,3,1672319027),(99002,4,27376,3,1672319027),(99003,4,27377,3,1672319027),(99004,4,27378,3,1672319027),(99005,4,27379,3,1672319027),(99006,4,27380,3,1672319027),(99007,4,27381,3,1672319027),(99008,4,27382,3,1672319027),(99009,4,27383,3,1672319027),(99010,4,27384,3,1672319027),(99011,4,27385,3,1672319027),(99012,4,27386,3,1672319027),(99013,4,27387,3,1672319027),(99014,4,27388,3,1672319027),(99015,4,27389,3,1672319027),(99016,4,27390,3,1672319027),(99017,4,27391,3,1672319027),(99018,4,27392,3,1672319027),(99019,4,27393,3,1672319027),(99020,4,27394,3,1672319027),(99021,4,27395,3,1672319027),(99022,4,27396,3,1672319027),(99023,4,27397,3,1672319027),(99024,4,27398,3,1672319027),(99025,4,27399,3,1672319027),(99026,4,27400,3,1672319027),(99027,4,27401,3,1672319027),(99028,4,27402,3,1672319027),(99029,4,27403,3,1672319027),(99030,4,27404,3,1672319027),(99031,4,27405,3,1672319027),(99032,4,27406,3,1672319027),(99033,4,27407,3,1672319027),(99034,4,27408,3,1672319027),(99035,4,27409,3,1672319027),(99036,4,27410,3,1672319027),(99037,4,27411,3,1672319027),(99038,4,27412,3,1672319027),(99039,4,27413,3,1672319027),(99040,4,27414,3,1672319027),(99041,4,27415,3,1672319027),(99042,4,27416,3,1672319027),(99043,4,27417,3,1672319027),(99044,4,27418,3,1672319027),(99045,4,27419,3,1672319027),(99046,4,27420,3,1672319027),(99047,4,27421,3,1672319027),(99048,4,27422,3,1672319027),(99049,4,27423,3,1672319027),(99050,4,27424,3,1672319027),(99051,4,27425,3,1672319027),(99052,4,27426,3,1672319027),(99053,4,27427,3,1672319027),(99054,4,27428,3,1672319027),(99055,4,27429,3,1672319027),(99056,4,27430,3,1672319027),(99057,4,27431,3,1672319027),(99058,4,27432,3,1672319027),(99059,4,27433,3,1672319027),(99060,4,27434,3,1672319027),(99061,4,27435,3,1672319027),(99062,4,27436,3,1672319027),(99063,4,27437,3,1672319027),(99064,4,27438,3,1672319027),(99065,4,27439,3,1672319027),(99066,4,27440,3,1672319027),(99067,4,27441,3,1672319027),(99068,4,27442,3,1672319027),(99069,4,27443,3,1672319027),(99070,4,27444,3,1672319027),(99071,4,27445,3,1672319027),(99072,4,27446,3,1672319027),(99073,4,27447,3,1672319027),(99074,4,27448,3,1672319027),(99075,4,27449,3,1672319027),(99076,4,27450,3,1672319027),(99077,4,27451,3,1672319027),(99078,4,27452,3,1672319027),(99079,4,27453,3,1672319027),(99080,4,27454,3,1672319027),(99081,4,27455,3,1672319027),(99082,4,27456,3,1672319027),(99083,4,27457,3,1672319027),(99084,4,27458,3,1672319027),(99085,4,27459,3,1672319027),(99086,4,27460,3,1672319027),(99087,4,27461,3,1672319027),(99088,4,27462,3,1672319027),(99089,4,27463,3,1672319027),(99090,4,27464,3,1672319027),(99091,4,27465,3,1672319027),(99092,4,27466,3,1672319027),(99093,4,27467,3,1672319027),(99094,4,27468,3,1672319027),(99095,4,27469,3,1672319027),(99096,4,27470,3,1672319027),(99097,4,27471,3,1672319027),(99098,4,27472,3,1672319027),(99099,4,27473,3,1672319027),(99100,4,27474,3,1672319027),(99101,4,27475,3,1672319027),(99102,4,27476,3,1672319027),(99103,4,27477,3,1672319027),(99104,4,27478,3,1672319027),(99105,4,27479,3,1672319027),(99106,4,27480,3,1672319027),(99107,4,27481,3,1672319027),(99108,4,27482,3,1672319027),(99109,4,27483,3,1672319027),(99110,4,27484,3,1672319027),(99111,4,27485,3,1672319027),(99112,4,27486,3,1672319027),(99113,4,27487,3,1672319027),(99114,4,27488,3,1672319027),(99115,4,27489,3,1672319027),(99116,4,27490,3,1672319027),(99117,4,27491,3,1672319027),(99118,4,27492,3,1672319027),(99119,4,27493,3,1672319027),(99120,4,27494,3,1672319027),(99121,4,27495,3,1672319027),(99122,4,27496,3,1672319027),(99123,4,27497,3,1672319027),(99124,4,27498,3,1672319027),(99125,4,27499,3,1672319027),(99126,4,27500,3,1672319027),(99127,4,27501,3,1672319027),(99128,4,27502,3,1672319027),(99129,4,27503,3,1672319027),(99130,4,27504,3,1672319027),(99131,4,27505,3,1672319027),(99132,4,27506,3,1672319027),(99133,4,27507,3,1672319027),(99134,4,27508,3,1672319027),(99135,4,27509,3,1672319027),(99136,4,27510,3,1672319027),(99137,4,27511,3,1672319027),(99138,4,27512,3,1672319027),(99139,4,27513,3,1672319027),(99140,4,27514,3,1672319027),(99141,4,27515,3,1672319027),(99142,4,27516,3,1672319027),(99143,4,27517,3,1672319027),(99144,4,27518,3,1672319027),(99145,4,27519,3,1672319027),(99146,4,27520,3,1672319027),(99147,4,27521,3,1672319027),(99148,4,27522,3,1672319027),(99149,4,27523,3,1672319027),(99150,4,27524,3,1672319027),(99151,4,27525,3,1672319027),(99152,4,27526,3,1672319027),(99153,4,27527,3,1672319027),(99154,4,27528,3,1672319027),(99155,4,27529,3,1672319027),(99156,4,27530,3,1672319027),(99157,4,27531,3,1672319027),(99158,4,27532,3,1672319027),(99159,4,27533,3,1672319027),(99160,4,27534,3,1672319027),(99161,4,27535,3,1672319027),(99162,4,27536,3,1672319027),(99163,4,27537,3,1672319027),(99164,4,27538,3,1672319027),(99165,4,27539,3,1672319027),(99166,4,27540,3,1672319027),(99167,4,27541,3,1672319027),(99168,4,27542,3,1672319027),(99169,4,27543,3,1672319027),(99170,4,27544,3,1672319027),(99171,4,27545,3,1672319027),(99172,4,27546,3,1672319027),(99173,4,27547,3,1672319027),(99174,4,27548,3,1672319027),(99175,4,27549,3,1672319027),(99176,4,27550,3,1672319027),(99177,4,27551,3,1672319027),(99178,4,27552,3,1672319027),(99179,4,27553,3,1672319027),(99180,4,27554,3,1672319027),(99181,4,27555,3,1672319027),(99182,4,27556,3,1672319027),(99183,4,27557,3,1672319027),(99184,4,27558,3,1672319027),(99185,4,27559,3,1672319027),(99186,4,27560,3,1672319027),(99187,4,27561,3,1672319027),(99188,4,27562,3,1672319027),(99189,4,27563,3,1672319027),(99190,4,27564,3,1672319027),(99191,4,27565,3,1672319027),(99192,4,27566,3,1672319027),(99193,4,27567,3,1672319027),(99194,4,27568,3,1672319027),(99195,4,27569,3,1672319027),(99196,4,27570,3,1672319027),(99197,4,27571,3,1672319027),(99198,4,27572,3,1672319027),(99199,4,27573,3,1672319027),(99200,4,27574,3,1672319027),(99201,4,27575,3,1672319027),(99202,4,27576,3,1672319027),(99203,4,27577,3,1672319027),(99204,4,27578,3,1672319027),(99205,4,27579,3,1672319027),(99206,4,27580,3,1672319027),(99207,4,27581,3,1672319027),(99208,4,27582,3,1672319027),(99209,4,27583,3,1672319027),(99210,4,27584,3,1672319027),(99211,4,27585,3,1672319027),(99212,4,27586,3,1672319027),(99213,4,27587,3,1672319027),(99214,4,27588,3,1672319027),(99215,4,27589,3,1672319027),(99216,4,27590,3,1672319027),(99217,4,27591,3,1672319027),(99218,4,27592,3,1672319027),(99219,4,27593,3,1672319027),(99220,4,27594,3,1672319027),(99221,4,27595,3,1672319027),(99222,4,27596,3,1672319027),(99223,4,27597,3,1672319027),(99224,4,27598,3,1672319027),(99225,4,27599,3,1672319027),(99226,4,27600,3,1672319027),(99227,4,27601,3,1672319027),(99228,4,27602,3,1672319027),(99229,4,27603,3,1672319027),(99230,4,27604,3,1672319027),(99231,4,27605,3,1672319027),(99232,4,27606,3,1672319027),(99233,4,27607,3,1672319027),(99234,4,27608,3,1672319027),(99235,4,27609,3,1672319027),(99236,4,27610,3,1672319027),(99237,4,27611,3,1672319027),(99238,4,27612,3,1672319027),(99239,4,27613,3,1672319027),(99240,4,27614,3,1672319027),(99241,4,27615,3,1672319027),(99242,4,27616,3,1672319027),(99243,4,27617,3,1672319027),(99244,4,27618,3,1672319027),(99245,4,27619,3,1672319027),(99246,4,27620,3,1672319027),(99247,4,27621,3,1672319027),(99248,4,27622,3,1672319027),(99249,4,27623,3,1672319027),(99250,4,27624,3,1672319027),(99251,4,27625,3,1672319027),(99252,4,27626,3,1672319027),(99253,4,27627,3,1672319027),(99254,4,27628,3,1672319027),(99255,4,27629,3,1672319027),(99256,4,27630,3,1672319027),(99257,4,27631,3,1672319027),(99258,4,27632,3,1672319027),(99259,4,27633,3,1672319027),(99260,4,27634,3,1672319027),(99261,4,27635,3,1672319027),(99262,4,27636,3,1672319027),(99263,4,27637,3,1672319027),(99264,4,27638,3,1672319027),(99265,4,27639,3,1672319027),(99266,4,27640,3,1672319027),(99267,4,27641,3,1672319027),(99268,4,27642,3,1672319027),(99269,4,27643,3,1672319027),(99270,4,27644,3,1672319027),(99271,4,27645,3,1672319027),(99272,4,27646,3,1672319027),(99273,4,27647,3,1672319027),(99274,4,27648,3,1672319027),(99275,4,27649,3,1672319027),(99276,4,27650,3,1672319027),(99277,4,27651,3,1672319027),(99278,4,27652,3,1672319027),(99279,4,27653,3,1672319027),(99280,4,27654,3,1672319027),(99281,4,27655,3,1672319027),(99282,4,27656,3,1672319027),(99283,4,27657,3,1672319027),(99284,4,27658,3,1672319027),(99285,4,27659,3,1672319027),(99286,4,27660,3,1672319027),(99287,4,27661,3,1672319027),(99288,4,27662,3,1672319027),(99289,4,27663,3,1672319027),(99290,4,27664,3,1672319027),(99291,4,27665,3,1672319027),(99292,4,27666,3,1672319027),(99293,4,27667,3,1672319027),(99294,4,27668,3,1672319027),(99295,4,27669,3,1672319027),(99296,4,27670,3,1672319027),(99297,4,27671,3,1672319027),(99298,4,27672,3,1672319027),(99299,4,27673,3,1672319027),(99300,4,27674,3,1672319027),(99301,4,27675,3,1672319027),(99302,4,27676,3,1672319027),(99303,4,27677,3,1672319027),(99304,4,27678,3,1672319027),(99305,4,27679,3,1672319027),(99306,4,27680,3,1672319027),(99307,4,27681,3,1672319027),(99308,4,27682,3,1672319027),(99309,4,27683,3,1672319027),(99310,4,27684,3,1672319027),(99311,4,27685,3,1672319027),(99312,4,27686,3,1672319027),(99313,4,27687,3,1672319027),(99314,4,27688,3,1672319027),(99315,4,27689,3,1672319027),(99316,4,27690,3,1672319027),(99317,4,27691,3,1672319027),(99318,4,27692,3,1672319027),(99319,4,27693,3,1672319027),(99320,4,27694,3,1672319027),(99321,4,27695,3,1672319027),(99322,4,27696,3,1672319027),(99323,4,27697,3,1672319027),(99324,4,27698,3,1672319027),(99325,4,27699,3,1672319027),(99326,4,27700,3,1672319027),(99327,4,27701,3,1672319027),(99328,4,27702,3,1672319027),(99329,4,27703,3,1672319027),(99330,4,27704,3,1672319027),(99331,4,27705,3,1672319027),(99332,4,27706,3,1672319027),(99333,4,27707,3,1672319027),(99334,4,27708,3,1672319027),(99335,4,27709,3,1672319027),(99336,4,27710,3,1672319027),(99337,4,27711,3,1672319027),(99338,4,27712,3,1672319027),(99339,4,27713,3,1672319027),(99340,4,27714,3,1672319027),(99341,4,27715,3,1672319027),(99342,4,27716,3,1672319027),(99343,4,27717,3,1672319027),(99344,4,27718,3,1672319027),(99345,4,27719,3,1672319027),(99346,4,27720,3,1672319027),(99347,4,27721,3,1672319027),(99348,4,27722,3,1672319027),(99349,4,27723,3,1672319027),(99350,4,27724,3,1672319027),(99351,4,27725,3,1672319027),(99352,4,27726,3,1672319027),(99353,4,27727,3,1672319027),(99354,4,27728,3,1672319027),(99355,4,27729,3,1672319027),(99356,4,27730,3,1672319027),(99357,4,27731,3,1672319027),(99358,4,27732,3,1672319027),(99359,4,27733,3,1672319027),(99360,4,27734,3,1672319027),(99361,4,27735,3,1672319027),(99362,4,27736,3,1672319027),(99363,4,27737,3,1672319027),(99364,4,27738,3,1672319027),(99365,4,27739,3,1672319027),(99366,4,27740,3,1672319027),(99367,4,27741,3,1672319027),(99368,4,27742,3,1672319027),(99369,4,27743,3,1672319027),(99370,4,27744,3,1672319027),(99371,4,27745,3,1672319027),(99372,4,27746,3,1672319027),(99373,4,27747,3,1672319027),(99374,4,27748,3,1672319027),(99375,4,27749,3,1672319027),(99376,4,27750,3,1672319027),(99377,4,27751,3,1672319027),(99378,4,27752,3,1672319027),(99379,4,27753,3,1672319027),(99380,4,27754,3,1672319027),(99381,4,27755,3,1672319027),(99382,4,27756,3,1672319027),(99383,4,27757,3,1672319027),(99384,4,27758,3,1672319027),(99385,4,27759,3,1672319027),(99386,4,27760,3,1672319027),(99387,4,27761,3,1672319027),(99388,4,27762,3,1672319027),(99389,4,27763,3,1672319027),(99390,4,27764,3,1672319027),(99391,4,27765,3,1672319027),(99392,4,27766,3,1672319027),(99393,4,27767,3,1672319027),(99394,4,27768,3,1672319027),(99395,4,27769,3,1672319027),(99396,4,27770,3,1672319027),(99397,4,27771,3,1672319027),(99398,4,27772,3,1672319027),(99399,4,27773,3,1672319027),(99400,4,27774,3,1672319027),(99401,4,27775,3,1672319027),(99402,4,27776,3,1672319027),(99403,4,27777,3,1672319027),(99404,4,27778,3,1672319027),(99405,4,27779,3,1672319027),(99406,4,27780,3,1672319027),(99407,4,27781,3,1672319027),(99408,4,27782,3,1672319027),(99409,4,27783,3,1672319027),(99410,4,27784,3,1672319027),(99411,4,27785,3,1672319027),(99412,4,27786,3,1672319027),(99413,4,27787,3,1672319027),(99414,4,27788,3,1672319027),(99415,4,27789,3,1672319027),(99416,4,27790,3,1672319027),(99417,4,27791,3,1672319027),(99418,4,27792,3,1672319027),(99419,4,27793,3,1672319027),(99420,4,27794,3,1672319027),(99421,4,27795,3,1672319027),(99422,4,27796,3,1672319027),(99423,4,27797,3,1672319027),(99424,4,27798,3,1672319027),(99425,4,27799,3,1672319027),(99426,4,27800,3,1672319027),(99427,4,27801,3,1672319027),(99428,4,27802,3,1672319027),(99429,4,27803,3,1672319027),(99430,4,27804,3,1672319027),(99431,4,27805,3,1672319027),(99432,4,27806,3,1672319027),(99433,4,27807,3,1672319027),(99434,4,27808,3,1672319027),(99435,4,27809,3,1672319027),(99436,4,27810,3,1672319027),(99437,4,27811,3,1672319027),(99438,4,27812,3,1672319027),(99439,4,27813,3,1672319027),(99440,4,27814,3,1672319027),(99441,4,27815,3,1672319027),(99442,4,27816,3,1672319027),(99443,4,27817,3,1672319027),(99444,4,27818,3,1672319027),(99445,4,27819,3,1672319027),(99446,4,27820,3,1672319027),(99447,4,27821,3,1672319027),(99448,4,27822,3,1672319027),(99449,4,27823,3,1672319027),(99450,4,27824,3,1672319027),(99451,4,27825,3,1672319027),(99452,4,27826,3,1672319027),(99453,4,27827,3,1672319027),(99454,4,27828,3,1672319027),(99455,4,27829,3,1672319027),(99456,4,27830,3,1672319027),(99457,4,27831,3,1672319027),(99458,4,27832,3,1672319027),(99459,4,27833,3,1672319027),(99460,4,27834,3,1672319027),(99461,4,27835,3,1672319027),(99462,4,27836,3,1672319027),(99463,4,27837,3,1672319027),(99464,4,27838,3,1672319027),(99465,4,27839,3,1672319027),(99466,4,27840,3,1672319027),(99467,4,27841,3,1672319027),(99468,4,27842,3,1672319027),(99469,4,27843,3,1672319027),(99470,4,27844,3,1672319027),(99471,4,27845,3,1672319027),(99472,4,27846,3,1672319027),(99473,4,27847,3,1672319027),(99474,4,27848,3,1672319027),(99475,4,27849,3,1672319027),(99476,4,27850,3,1672319027),(99477,4,27851,3,1672319027),(99478,4,27852,3,1672319027),(99479,4,27853,3,1672319027),(99480,4,27854,3,1672319027),(99481,4,27855,3,1672319027),(99482,4,27856,3,1672319027),(99483,4,27857,3,1672319027),(99484,4,27858,3,1672319027),(99485,4,27859,3,1672319027),(99486,4,27860,3,1672319027),(99487,4,27861,3,1672319027),(99488,4,27862,3,1672319027),(99489,4,27863,3,1672319027),(99490,4,27864,3,1672319027),(99491,4,27865,3,1672319027),(99492,4,27866,3,1672319027),(99493,4,27867,3,1672319027),(99494,4,27868,3,1672319027),(99495,4,27869,3,1672319027),(99496,4,27870,3,1672319027),(99497,4,27871,3,1672319027),(99498,4,27872,3,1672319027),(99499,4,27873,3,1672319027),(99500,4,27874,3,1672319027),(99501,4,27875,3,1672319027),(99502,4,27876,3,1672319027),(99503,4,27877,3,1672319027),(99504,4,27878,3,1672319027),(99505,4,27879,3,1672319027),(99506,4,27880,3,1672319027),(99507,4,27881,3,1672319027),(99508,4,27882,3,1672319027),(99509,4,27883,3,1672319027),(99510,4,27884,3,1672319027),(99511,4,27885,3,1672319027),(99512,4,27886,3,1672319027),(99513,4,27887,3,1672319027),(99514,4,27888,3,1672319027),(99515,4,27889,3,1672319027),(99516,4,27890,3,1672319027),(99517,4,27891,3,1672319027),(99518,4,27892,3,1672319027),(99519,4,27893,3,1672319027),(99520,4,27894,3,1672319027),(99521,4,27895,3,1672319027),(99522,4,27896,3,1672319027),(99523,4,27897,3,1672319027),(99524,4,27898,3,1672319027),(99525,4,27899,3,1672319027),(99526,4,27900,3,1672319027),(99527,4,27901,3,1672319027),(99528,4,27902,3,1672319027),(99529,4,27903,3,1672319027),(99530,4,27904,3,1672319027),(99531,4,27905,3,1672319027),(99532,4,27906,3,1672319027),(99533,4,27907,3,1672319027),(99534,4,27908,3,1672319027),(99535,4,27909,3,1672319027),(99536,4,27910,3,1672319027),(99537,4,27911,3,1672319027),(99538,4,27912,3,1672319027),(99539,4,27913,3,1672319027),(99540,4,27914,3,1672319027),(99541,4,27915,3,1672319027),(99542,4,27916,3,1672319027),(99543,4,27917,3,1672319027),(99544,4,27918,3,1672319027),(99545,4,27919,3,1672319027),(99546,4,27920,3,1672319027),(99547,4,27921,3,1672319027),(99548,4,27922,3,1672319027),(99549,4,27923,3,1672319027),(99550,4,27924,3,1672319027),(99551,4,27925,3,1672319027),(99552,4,27926,3,1672319027),(99553,4,27927,3,1672319027),(99554,4,27928,3,1672319027),(99555,4,27929,3,1672319027),(99556,4,27930,3,1672319027),(99557,4,27931,3,1672319027),(99558,4,27932,3,1672319027),(99559,4,27933,3,1672319027),(99560,4,27934,3,1672319027),(99561,4,27935,3,1672319027),(99562,4,27936,3,1672319027),(99563,4,27937,3,1672319027),(99564,4,27938,3,1672319027),(99565,4,27939,3,1672319027),(99566,4,27940,3,1672319027),(99567,4,27941,3,1672319027),(99568,4,27942,3,1672319027),(99569,4,27943,3,1672319027),(99570,4,27944,3,1672319027),(99571,4,27945,3,1672319027),(99572,4,27946,3,1672319027),(99573,4,27947,3,1672319027),(99574,4,27948,3,1672319027),(99575,4,27949,3,1672319027),(99576,4,27950,3,1672319027),(99577,4,27951,3,1672319027),(99578,4,27952,3,1672319027),(99579,4,27953,3,1672319027),(99580,4,27954,3,1672319027),(99581,4,27955,3,1672319027),(99582,4,27956,3,1672319027),(99583,4,27957,3,1672319027),(99584,4,27958,3,1672319027),(99585,4,27959,3,1672319027),(99586,4,27960,3,1672319027),(99587,4,27961,3,1672319027),(99588,4,27962,3,1672319027),(99589,4,27963,3,1672319027),(99590,4,27964,3,1672319027),(99591,4,27965,3,1672319027),(99592,4,27966,3,1672319027),(99593,4,27967,3,1672319027),(99594,4,27968,3,1672319027),(99595,4,27969,3,1672319027),(99596,4,27970,3,1672319027),(99597,4,27971,3,1672319027),(99598,4,27972,3,1672319027),(99599,4,27973,3,1672319027),(99600,4,27974,3,1672319027),(99601,4,27975,3,1672319027),(99602,4,27976,3,1672319027),(99603,4,27977,3,1672319027),(99604,4,27978,3,1672319027),(99605,4,27979,3,1672319027),(99606,4,27980,3,1672319027),(99607,4,27981,3,1672319027),(99608,4,27982,3,1672319027),(99609,4,27983,3,1672319027),(99610,4,27984,3,1672319027),(99611,4,27985,3,1672319027),(99612,4,27986,3,1672319027),(99613,4,27987,3,1672319027),(99614,4,27988,3,1672319027),(99615,4,27989,3,1672319027),(99616,4,27990,3,1672319027),(99617,4,27991,3,1672319027),(99618,4,27992,3,1672319027),(99619,4,27993,3,1672319027),(99620,4,27994,3,1672319027),(99621,4,27995,3,1672319027),(99622,4,27996,3,1672319027),(99623,4,27997,3,1672319027),(99624,4,27998,3,1672319027),(99625,4,27999,3,1672319027),(99626,4,28000,3,1672319027),(99627,4,28001,3,1672319027),(99628,4,28002,3,1672319027),(99629,4,28003,3,1672319027),(99630,4,28004,3,1672319027),(99631,4,28005,3,1672319027),(99632,4,28006,3,1672319027),(99633,4,28007,3,1672319027),(99634,4,28008,3,1672319027),(99635,4,28009,3,1672319027),(99636,4,28010,3,1672319027),(99637,4,28011,3,1672319027),(99638,4,28012,3,1672319027),(99639,4,28013,3,1672319027),(99640,4,28014,3,1672319027),(99641,4,28015,3,1672319027),(99642,4,28016,3,1672319027),(99643,4,28017,3,1672319027),(99644,4,28018,3,1672319027),(99645,4,28019,3,1672319027),(99646,4,28020,3,1672319027),(99647,4,28021,3,1672319027),(99648,4,28022,3,1672319027),(99649,4,28023,3,1672319027),(99650,4,28024,3,1672319027),(99651,4,28025,3,1672319027),(99652,4,28026,3,1672319027),(99653,4,28027,3,1672319027),(99654,4,28028,3,1672319027),(99655,4,28029,3,1672319027),(99656,4,28030,3,1672319027),(99657,4,28031,3,1672319027),(99658,4,28032,3,1672319027),(99659,4,28033,3,1672319027),(99660,4,28034,3,1672319027),(99661,4,28035,3,1672319027),(99662,4,28036,3,1672319027),(99663,4,28037,3,1672319027),(99664,4,28038,3,1672319027),(99665,4,28039,3,1672319027),(99666,4,28040,3,1672319027),(99667,4,28041,3,1672319027),(99668,4,28042,3,1672319027),(99669,4,28043,3,1672319027),(99670,4,28044,3,1672319027),(99671,4,28045,3,1672319027),(99672,4,28046,3,1672319027),(99673,4,28047,3,1672319027),(99674,4,28048,3,1672319027),(99675,4,28049,3,1672319027),(99676,4,28050,3,1672319027),(99677,4,28051,3,1672319027),(99678,4,28052,3,1672319027),(99679,4,28053,3,1672319027),(99680,4,28054,3,1672319027),(99681,4,28055,3,1672319027),(99682,4,28056,3,1672319027),(99683,4,28057,3,1672319027),(99684,4,28058,3,1672319027),(99685,4,28059,3,1672319027),(99686,4,28060,3,1672319027),(99687,4,28061,3,1672319027),(99688,4,28062,3,1672319027),(99689,4,28063,3,1672319027),(99690,4,28064,3,1672319027),(99691,4,28065,3,1672319027),(99692,4,28066,3,1672319027),(99693,4,28067,3,1672319027),(99694,4,28068,3,1672319027),(99695,4,28069,3,1672319027),(99696,4,28070,3,1672319027),(99697,4,28071,3,1672319027),(99698,4,28072,3,1672319027),(99699,4,28073,3,1672319027),(99700,4,28074,3,1672319027),(99701,4,28075,3,1672319027),(99702,4,28076,3,1672319027),(99703,4,28077,3,1672319027),(99704,4,28078,3,1672319027),(99705,4,28079,3,1672319027),(99706,4,28080,3,1672319027),(99707,4,28081,3,1672319027),(99708,4,28082,3,1672319027),(99709,4,28083,3,1672319027),(99710,4,28084,3,1672319027),(99711,4,28085,3,1672319027),(99712,4,28086,3,1672319027),(99713,4,28087,3,1672319027),(99714,4,28088,3,1672319027),(99715,4,28089,3,1672319027),(99716,4,28090,3,1672319027),(99717,4,28091,3,1672319027),(99718,4,28092,3,1672319027),(99719,4,28093,3,1672319027),(99720,4,28094,3,1672319027),(99721,4,28095,3,1672319027),(99722,4,28096,3,1672319027),(99723,4,28097,3,1672319027),(99724,4,28098,3,1672319027),(99725,4,28099,3,1672319027),(99726,4,28100,3,1672319027),(99727,4,28101,3,1672319027),(99728,4,28102,3,1672319027),(99729,4,28103,3,1672319027),(99730,4,28104,3,1672319027),(99731,4,28105,3,1672319027),(99732,4,28106,3,1672319027),(99733,4,28107,3,1672319027),(99734,4,28108,3,1672319027),(99735,4,28109,3,1672319027),(99736,4,28110,3,1672319027),(99737,4,28111,3,1672319027),(99738,4,28112,3,1672319027),(99739,4,28113,3,1672319027),(99740,4,28114,3,1672319027),(99741,4,28115,3,1672319027),(99742,4,28116,3,1672319027),(99743,4,28117,3,1672319027),(99744,4,28118,3,1672319027),(99745,4,28119,3,1672319027),(99746,4,28120,3,1672319027),(99747,4,28121,3,1672319027),(99748,4,28122,3,1672319027),(99749,4,28123,3,1672319027),(99750,4,28124,3,1672319027),(99751,4,28125,3,1672319027),(99752,4,28126,3,1672319027),(99753,4,28127,3,1672319027),(99754,4,28128,3,1672319027),(99755,4,28129,3,1672319027),(99756,4,28130,3,1672319027),(99757,4,28131,3,1672319027),(99758,4,28132,3,1672319027),(99759,4,28133,3,1672319027),(99760,4,28134,3,1672319027),(99761,4,28135,3,1672319027),(99762,4,28136,3,1672319027),(99763,4,28137,3,1672319027),(99764,4,28138,3,1672319027),(99765,4,28139,3,1672319027),(99766,4,28140,3,1672319027),(99767,4,28141,3,1672319027),(99768,4,28142,3,1672319027),(99769,4,28143,3,1672319027),(99770,4,28144,3,1672319027),(99771,4,28145,3,1672319027),(99772,4,28146,3,1672319027),(99773,4,28147,3,1672319027),(99774,4,28148,3,1672319027),(99775,4,28149,3,1672319027),(99776,4,28150,3,1672319027),(99777,4,28151,3,1672319027),(99778,4,28152,3,1672319027),(99779,4,28153,3,1672319027),(99780,4,28154,3,1672319027),(99781,4,28155,3,1672319027),(99782,4,28156,3,1672319027),(99783,4,28157,3,1672319027),(99784,4,28158,3,1672319027),(99785,4,28159,3,1672319027),(99786,4,28160,3,1672319027),(99787,4,28161,3,1672319027),(99788,4,28162,3,1672319027),(99789,4,28163,3,1672319027),(99790,4,28164,3,1672319027),(99791,4,28165,3,1672319027),(99792,4,28166,3,1672319027),(99793,4,28167,3,1672319027),(99794,4,28168,3,1672319027),(99795,4,28169,3,1672319027),(99796,4,28170,3,1672319027),(99797,4,28171,3,1672319027),(99798,4,28172,3,1672319027),(99799,4,28173,3,1672319027),(99800,4,28174,3,1672319027),(99801,4,28175,3,1672319027),(99802,4,28176,3,1672319027),(99803,4,28177,3,1672319027),(99804,4,28178,3,1672319027),(99805,4,28179,3,1672319027),(99806,4,28180,3,1672319027),(99807,4,28181,3,1672319027),(99808,4,28182,3,1672319027),(99809,4,28183,3,1672319027),(99810,4,28184,3,1672319027),(99811,4,28185,3,1672319027),(99812,4,28186,3,1672319027),(99813,4,28187,3,1672319027),(99814,4,28188,3,1672319027),(99815,4,28189,3,1672319027),(99816,4,28190,3,1672319027),(99817,4,28191,3,1672319027),(99818,4,28192,3,1672319027),(99819,4,28193,3,1672319027),(99820,4,28194,3,1672319027),(99821,4,28195,3,1672319027),(99822,4,28196,3,1672319027),(99823,4,28197,3,1672319027),(99824,4,28198,3,1672319027),(99825,4,28199,3,1672319027),(99826,4,28200,3,1672319027),(99827,4,28201,3,1672319027),(99828,4,28202,3,1672319027),(99829,4,28203,3,1672319027),(99830,4,28204,3,1672319027),(99831,4,28205,3,1672319027),(99832,4,28206,3,1672319027),(99833,4,28207,3,1672319027),(99834,4,28208,3,1672319027),(99835,4,28209,3,1672319027),(99836,4,28210,3,1672319027),(99837,4,28211,3,1672319027),(99838,4,28212,3,1672319027),(99839,4,28213,3,1672319027),(99840,4,28214,3,1672319027),(99841,4,28215,3,1672319027),(99842,4,28216,3,1672319027),(99843,4,28217,3,1672319027),(99844,4,28218,3,1672319027),(99845,4,28219,3,1672319027),(99846,4,28220,3,1672319027),(99847,4,28221,3,1672319027),(99848,4,28222,3,1672319027),(99849,4,28223,3,1672319027),(99850,4,28224,3,1672319027),(99851,4,28225,3,1672319027),(99852,4,28226,3,1672319027),(99853,4,28227,3,1672319027),(99854,4,28228,3,1672319027),(99855,4,28229,3,1672319027),(99856,4,28230,3,1672319027),(99857,4,28231,3,1672319027),(99858,4,28232,3,1672319027),(99859,4,28233,3,1672319027),(99860,4,28234,3,1672319027),(99861,4,28235,3,1672319027),(99862,4,28236,3,1672319027),(99863,4,28237,3,1672319027),(99864,4,28238,3,1672319027),(99865,4,28239,3,1672319027),(99866,4,28240,3,1672319027),(99867,4,28241,3,1672319027),(99868,4,28242,3,1672319027),(99869,4,28243,3,1672319027),(99870,4,28244,3,1672319027),(99871,4,28245,3,1672319027),(99872,4,28246,3,1672319027),(99873,4,28247,3,1672319027),(99874,4,28248,3,1672319027),(99875,4,28249,3,1672319027),(99876,4,28250,3,1672319027),(99877,4,28251,3,1672319027),(99878,4,28252,3,1672319027),(99879,4,28253,3,1672319027),(99880,4,28254,3,1672319027),(99881,4,28255,3,1672319027),(99882,4,28256,3,1672319027),(99883,4,28257,3,1672319027),(99884,4,28258,3,1672319027),(99885,4,28259,3,1672319027),(99886,4,28260,3,1672319027),(99887,4,28261,3,1672319027),(99888,4,28262,3,1672319027),(99889,4,28263,3,1672319027),(99890,4,28264,3,1672319027),(99891,4,28265,3,1672319027),(99892,4,28266,3,1672319027),(99893,4,28267,3,1672319027),(99894,4,28268,3,1672319027),(99895,4,28269,3,1672319027),(99896,4,28270,3,1672319027),(99897,4,28271,3,1672319027),(99898,4,28272,3,1672319027),(99899,4,28273,3,1672319027),(99900,4,28274,3,1672319027),(99901,4,28275,3,1672319027),(99902,4,28276,3,1672319027),(99903,4,28277,3,1672319027),(99904,4,28278,3,1672319027),(99905,4,28279,3,1672319027),(99906,4,28280,3,1672319027),(99907,4,28281,3,1672319027),(99908,4,28282,3,1672319027),(99909,4,28283,3,1672319027),(99910,4,28284,3,1672319027),(99911,4,28285,3,1672319027),(99912,4,28286,3,1672319027),(99913,4,28287,3,1672319027),(99914,4,28288,3,1672319027),(99915,4,28289,3,1672319027),(99916,4,28290,3,1672319027),(99917,4,28291,3,1672319027),(99918,4,28292,3,1672319027),(99919,4,28293,3,1672319027),(99920,4,28294,3,1672319027),(99921,4,28295,3,1672319027),(99922,4,28296,3,1672319027),(99923,4,28297,3,1672319027),(99924,4,28298,3,1672319027),(99925,4,28299,3,1672319027),(99926,4,28300,3,1672319027),(99927,4,28301,3,1672319027),(99928,4,28302,3,1672319027),(99929,4,28303,3,1672319027),(99930,4,28304,3,1672319027),(99931,4,28305,3,1672319027),(99932,4,28306,3,1672319027),(99933,4,28307,3,1672319027),(99934,4,28308,3,1672319027),(99935,4,28309,3,1672319027),(99936,4,28310,3,1672319027),(99937,4,28311,3,1672319027),(99938,4,28312,3,1672319027),(99939,4,28313,3,1672319027),(99940,4,28314,3,1672319027),(99941,4,28315,3,1672319027),(99942,4,28316,3,1672319027),(99943,4,28317,3,1672319027),(99944,4,28318,3,1672319027),(99945,4,28319,3,1672319027),(99946,4,28320,3,1672319027),(99947,4,28321,3,1672319027),(99948,4,28322,3,1672319027),(99949,4,28323,3,1672319027),(99950,4,28324,3,1672319027),(99951,4,28325,3,1672319027),(99952,4,28326,3,1672319027),(99953,4,28327,3,1672319027),(99954,4,28328,3,1672319027),(99955,4,28329,3,1672319027),(99956,4,28330,3,1672319027),(99957,4,28331,3,1672319027),(99958,4,28332,3,1672319027),(99959,4,28333,3,1672319027),(99960,4,28334,3,1672319027),(99961,4,28335,3,1672319027),(99962,4,28336,3,1672319027),(99963,4,28337,3,1672319027),(99964,4,28338,3,1672319027),(99965,4,28339,3,1672319027),(99966,4,28340,3,1672319027),(99967,4,28341,3,1672319027),(99968,4,28342,3,1672319027),(99969,4,28343,3,1672319027),(99970,4,28344,3,1672319027),(99971,4,28345,3,1672319027),(99972,4,28346,3,1672319027),(99973,4,28347,3,1672319027),(99974,4,28348,3,1672319027),(99975,4,28349,3,1672319027),(99976,4,28350,3,1672319027),(99977,4,28351,3,1672319027),(99978,4,28352,3,1672319027),(99979,4,28353,3,1672319027),(99980,4,28354,3,1672319027),(99981,4,28355,3,1672319027),(99982,4,28356,3,1672319027),(99983,4,28357,3,1672319027),(99984,4,28358,3,1672319027),(99985,4,28359,3,1672319027),(99986,4,28360,3,1672319027),(99987,4,28361,3,1672319027),(99988,4,28362,3,1672319027),(99989,4,28363,3,1672319027),(99990,4,28364,3,1672319027),(99991,4,28365,3,1672319027),(99992,4,28366,3,1672319027),(99993,4,28367,3,1672319027),(99994,4,28368,3,1672319027),(99995,4,28369,3,1672319027),(99996,4,28370,3,1672319027),(99997,4,28371,3,1672319027),(99998,4,28372,3,1672319027),(99999,4,28373,3,1672319027),(100000,4,28374,3,1672319027),(100001,4,28375,3,1672319027),(100002,4,28376,3,1672319027),(100003,4,28377,3,1672319027),(100004,4,28378,3,1672319027),(100005,4,28379,3,1672319027),(100006,4,28380,3,1672319027),(100007,4,28381,3,1672319027),(100008,4,28382,3,1672319027),(100009,4,28383,3,1672319027),(100010,4,28384,3,1672319027),(100011,4,28385,3,1672319027),(100012,4,28386,3,1672319027),(100013,4,28387,3,1672319027),(100014,4,28388,3,1672319027),(100015,4,28389,3,1672319027),(100016,4,28390,3,1672319027),(100017,4,28391,3,1672319027),(100018,4,28392,3,1672319027),(100019,4,28393,3,1672319027),(100020,4,28394,3,1672319027),(100021,4,28395,3,1672319027),(100022,4,28396,3,1672319027),(100023,4,28397,3,1672319027),(100024,4,28398,3,1672319027),(100025,4,28399,3,1672319027),(100026,4,28400,3,1672319027),(100027,4,28401,3,1672319027),(100028,4,28402,3,1672319027),(100029,4,28403,3,1672319027),(100030,4,28404,3,1672319027),(100031,4,28405,3,1672319027),(100032,4,28406,3,1672319027),(100033,4,28407,3,1672319027),(100034,4,28408,3,1672319027),(100035,4,28409,3,1672319027),(100036,4,28410,3,1672319027),(100037,4,28411,3,1672319027),(100038,4,28412,3,1672319027),(100039,4,28413,3,1672319027),(100040,4,28414,3,1672319027),(100041,4,28415,3,1672319027),(100042,4,28416,3,1672319027),(100043,4,28417,3,1672319027),(100044,4,28418,3,1672319027),(100045,4,28419,3,1672319027),(100046,4,28420,3,1672319027),(100047,4,28421,3,1672319027),(100048,4,28422,3,1672319027),(100049,4,28423,3,1672319027),(100050,4,28424,3,1672319027),(100051,4,28425,3,1672319027),(100052,4,28426,3,1672319027),(100053,4,28427,3,1672319027),(100054,4,28428,3,1672319027),(100055,4,28429,3,1672319027),(100056,4,28430,3,1672319027),(100057,4,28431,3,1672319027),(100058,4,28432,3,1672319027),(100059,4,28433,3,1672319027),(100060,4,28434,3,1672319027),(100061,4,28435,3,1672319027),(100062,4,28436,3,1672319027),(100063,4,28437,3,1672319027),(100064,4,28438,3,1672319027),(100065,4,28439,3,1672319027),(100066,4,28440,3,1672319027),(100067,4,28441,3,1672319027),(100068,4,28442,3,1672319027),(100069,4,28443,3,1672319027),(100070,4,28444,3,1672319027),(100071,4,28445,3,1672319027),(100072,4,28446,3,1672319027),(100073,4,28447,3,1672319027),(100074,4,28448,3,1672319027),(100075,4,28449,3,1672319027),(100076,4,28450,3,1672319027),(100077,4,28451,3,1672319027),(100078,4,28452,3,1672319027),(100079,4,28453,3,1672319027),(100080,4,28454,3,1672319027),(100081,4,28455,3,1672319027),(100082,4,28456,3,1672319027),(100083,4,28457,3,1672319027),(100084,4,28458,3,1672319027),(100085,4,28459,3,1672319027),(100086,4,28460,3,1672319027),(100087,4,28461,3,1672319027),(100088,4,28462,3,1672319027),(100089,4,28463,3,1672319027),(100090,4,28464,3,1672319027),(100091,4,28465,3,1672319027),(100092,4,28466,3,1672319027),(100093,4,28467,3,1672319027),(100094,4,28468,3,1672319027),(100095,4,28469,3,1672319027),(100096,4,28470,3,1672319027),(100097,4,28471,3,1672319027),(100098,4,28472,3,1672319027),(100099,4,28473,3,1672319027),(100100,4,28474,3,1672319027),(100101,4,28475,3,1672319027),(100102,4,28476,3,1672319027),(100103,4,28477,3,1672319027),(100104,4,28478,3,1672319027),(100105,4,28479,3,1672319027),(100106,4,28480,3,1672319027),(100107,4,28481,3,1672319027),(100108,4,28482,3,1672319027),(100109,4,28483,3,1672319027),(100110,4,28484,3,1672319027),(100111,4,28485,3,1672319027),(100112,4,28486,3,1672319027),(100113,4,28487,3,1672319027),(100114,4,28488,3,1672319027),(100115,4,28489,3,1672319027),(100116,4,28490,3,1672319027),(100117,4,28491,3,1672319027),(100118,4,28492,3,1672319027),(100119,4,28493,3,1672319027),(100120,4,28494,3,1672319027),(100121,4,28495,3,1672319027),(100122,4,28496,3,1672319027),(100123,4,28497,3,1672319027),(100124,4,28498,3,1672319027),(100125,4,28499,3,1672319027),(100126,4,28500,3,1672319027),(100127,4,28501,3,1672319027),(100128,4,28502,3,1672319027),(100129,4,28503,3,1672319027),(100130,4,28504,3,1672319027),(100131,4,28505,3,1672319027),(100132,4,28506,3,1672319027),(100133,4,28507,3,1672319027),(100134,4,28508,3,1672319027),(100135,4,28509,3,1672319027),(100136,4,28510,3,1672319027),(100137,4,28511,3,1672319027),(100138,4,28512,3,1672319027),(100139,4,28513,3,1672319027),(100140,4,28514,3,1672319027),(100141,4,28515,3,1672319027),(100142,4,28516,3,1672319027),(100143,4,28517,3,1672319027),(100144,4,28518,3,1672319027),(100145,4,28519,3,1672319027),(100146,4,28520,3,1672319027),(100147,4,28521,3,1672319027),(100148,4,28522,3,1672319027),(100149,4,28523,3,1672319027),(100150,4,28524,3,1672319027),(100151,4,28525,3,1672319027),(100152,4,28526,3,1672319027),(100153,4,28527,3,1672319027),(100154,4,28528,3,1672319027),(100155,4,28529,3,1672319027),(100156,4,28530,3,1672319027),(100157,4,28531,3,1672319027),(100158,4,28532,3,1672319027),(100159,4,28533,3,1672319027),(100160,4,28534,3,1672319027),(100161,4,28535,3,1672319027),(100162,4,28536,3,1672319027),(100163,4,28537,3,1672319027),(100164,4,28538,3,1672319027),(100165,4,28539,3,1672319027),(100166,4,28540,3,1672319027),(100167,4,28541,3,1672319027),(100168,4,28542,3,1672319027),(100169,4,28543,3,1672319027),(100170,4,28544,3,1672319027),(100171,4,28545,3,1672319027),(100172,4,28546,3,1672319027),(100173,4,28547,3,1672319027),(100174,4,28548,3,1672319027),(100175,4,28549,3,1672319027),(100176,4,28550,3,1672319027),(100177,4,28551,3,1672319027),(100178,4,28552,3,1672319027),(100179,4,28553,3,1672319027),(100180,4,28554,3,1672319027),(100181,4,28555,3,1672319027),(100182,4,28556,3,1672319027),(100183,4,28557,3,1672319027),(100184,4,28558,3,1672319027),(100185,4,28559,3,1672319027),(100186,4,28560,3,1672319027),(100187,4,28561,3,1672319027),(100188,4,28562,3,1672319027),(100189,4,28563,3,1672319027),(100190,4,28564,3,1672319027),(100191,4,28565,3,1672319027),(100192,4,28566,3,1672319027),(100193,4,28567,3,1672319027),(100194,4,28568,3,1672319027),(100195,4,28569,3,1672319027),(100196,4,28570,3,1672319027),(100197,4,28571,3,1672319027),(100198,4,28572,3,1672319027),(100199,4,28573,3,1672319027),(100200,4,28574,3,1672319027),(100201,4,28575,3,1672319027),(100202,4,28576,3,1672319027),(100203,4,28577,3,1672319027),(100204,4,28578,3,1672319027),(100205,4,28579,3,1672319027),(100206,4,28580,3,1672319027),(100207,4,28581,3,1672319027),(100208,4,28582,3,1672319027),(100209,4,28583,3,1672319027),(100210,4,28584,3,1672319027),(100211,4,28585,3,1672319027),(100212,4,28586,3,1672319027),(100213,4,28587,3,1672319027),(100214,4,28588,3,1672319027),(100215,4,28589,3,1672319027),(100216,4,28590,3,1672319027),(100217,4,28591,3,1672319027),(100218,4,28592,3,1672319027),(100219,4,28593,3,1672319027),(100220,4,28594,3,1672319027),(100221,4,28595,3,1672319027),(100222,4,28596,3,1672319027),(100223,4,28597,3,1672319027),(100224,4,28598,3,1672319027),(100225,4,28599,3,1672319027),(100226,4,28600,3,1672319027),(100227,4,28601,3,1672319027),(100228,4,28602,3,1672319027),(100229,4,28603,3,1672319027),(100230,4,28604,3,1672319027),(100231,4,28605,3,1672319027),(100232,4,28606,3,1672319027),(100233,4,28607,3,1672319027),(100234,4,28608,3,1672319027),(100235,4,28609,3,1672319027),(100236,4,28610,3,1672319027),(100237,4,28611,3,1672319027),(100238,4,28612,3,1672319027),(100239,4,28613,3,1672319027),(100240,4,28614,3,1672319027),(100241,4,28615,3,1672319027),(100242,4,28616,3,1672319027),(100243,4,28617,3,1672319027),(100244,4,28618,3,1672319027),(100245,4,28619,3,1672319027),(100246,4,28620,3,1672319027),(100247,4,28621,3,1672319027),(100248,4,28622,3,1672319027),(100249,4,28623,3,1672319027),(100250,4,28624,3,1672319027),(100251,4,28625,3,1672319027),(100252,4,28626,3,1672319027),(100253,4,28627,3,1672319027),(100254,4,28628,3,1672319027),(100255,4,28629,3,1672319027),(100256,4,28630,3,1672319027),(100257,4,28631,3,1672319027),(100258,4,28632,3,1672319027),(100259,4,28633,3,1672319027),(100260,4,28634,3,1672319027),(100261,4,28635,3,1672319027),(100262,4,28636,3,1672319027),(100263,4,28637,3,1672319027),(100264,4,28638,3,1672319027),(100265,4,28639,3,1672319027),(100266,4,28640,3,1672319027),(100267,4,28641,3,1672319027),(100268,4,28642,3,1672319027),(100269,4,28643,3,1672319027),(100270,4,28644,3,1672319027),(100271,4,28645,3,1672319027),(100272,4,28646,3,1672319027),(100273,4,28647,3,1672319027),(100274,4,28648,3,1672319027),(100275,4,28649,3,1672319027),(100276,4,28650,3,1672319027),(100277,4,28651,3,1672319027),(100278,4,28652,3,1672319027),(100279,4,28653,3,1672319027),(100280,4,28654,3,1672319027),(100281,4,28655,3,1672319027),(100282,4,28656,3,1672319027),(100283,4,28657,3,1672319027),(100284,4,28658,3,1672319027),(100285,4,28659,3,1672319027),(100286,4,28660,3,1672319027),(100287,4,28661,3,1672319027),(100288,4,28662,3,1672319027),(100289,4,28663,3,1672319027),(100290,4,28664,3,1672319027),(100291,4,28665,3,1672319027),(100292,4,28666,3,1672319027),(100293,4,28667,3,1672319027),(100294,4,28668,3,1672319027),(100295,4,28669,3,1672319027),(100296,4,28670,3,1672319027),(100297,4,28671,3,1672319027),(100298,4,28672,3,1672319027),(100299,4,28673,3,1672319027),(100300,4,28674,3,1672319027),(100301,4,28675,3,1672319027),(100302,4,28676,3,1672319027),(100303,4,28677,3,1672319027),(100304,4,28678,3,1672319027),(100305,4,28679,3,1672319027),(100306,4,28680,3,1672319027),(100307,4,28681,3,1672319027),(100308,4,28682,3,1672319027),(100309,4,28683,3,1672319027),(100310,4,28684,3,1672319027),(100311,4,28685,3,1672319027),(100312,4,28686,3,1672319027),(100313,4,28687,3,1672319027),(100314,4,28688,3,1672319027),(100315,4,28689,3,1672319027),(100316,4,28690,3,1672319027),(100317,4,28691,3,1672319027),(100318,4,28692,3,1672319027),(100319,4,28693,3,1672319027),(100320,4,28694,3,1672319027),(100321,4,28695,3,1672319027),(100322,4,28696,3,1672319027),(100323,4,28697,3,1672319027),(100324,4,28698,3,1672319027),(100325,4,28699,3,1672319027),(100326,4,28700,3,1672319027),(100327,4,28701,3,1672319027),(100328,4,28702,3,1672319027),(100329,4,28703,3,1672319027),(100330,4,28704,3,1672319027),(100331,4,28705,3,1672319027),(100332,4,28706,3,1672319027),(100333,4,28707,3,1672319027),(100334,4,28708,3,1672319027),(100335,4,28709,3,1672319027),(100336,4,28710,3,1672319027),(100337,4,28711,3,1672319027),(100338,4,28712,3,1672319027),(100339,4,28713,3,1672319027),(100340,4,28714,3,1672319027),(100341,4,28715,3,1672319027),(100342,4,28716,3,1672319027),(100343,4,28717,3,1672319027),(100344,4,28718,3,1672319027),(100345,4,28719,3,1672319027),(100346,4,28720,3,1672319027),(100347,4,28721,3,1672319027),(100348,4,28722,3,1672319027),(100349,4,28723,3,1672319027),(100350,4,28724,3,1672319027),(100351,4,28725,3,1672319027),(100352,4,28726,3,1672319027),(100353,4,28727,3,1672319027),(100354,4,28728,3,1672319027),(100355,4,28729,3,1672319027),(100356,4,28730,3,1672319027),(100357,4,28731,3,1672319027),(100358,4,28732,3,1672319027),(100359,4,28733,3,1672319027),(100360,4,28734,3,1672319027),(100361,4,28735,3,1672319027),(100362,4,28736,3,1672319027),(100363,4,28737,3,1672319027),(100364,4,28738,3,1672319027),(100365,4,28739,3,1672319027),(100366,4,28740,3,1672319027),(100367,4,28741,3,1672319027),(100368,4,28742,3,1672319027),(100369,4,28743,3,1672319027),(100370,4,28744,3,1672319027),(100371,4,28745,3,1672319027),(100372,4,28746,3,1672319027),(100373,4,28747,3,1672319027),(100374,4,28748,3,1672319027),(100375,4,28749,3,1672319027),(100376,4,28750,3,1672319027),(100377,4,28751,3,1672319027),(100378,4,28752,3,1672319027),(100379,4,28753,3,1672319027),(100380,4,28754,3,1672319027),(100381,4,28755,3,1672319027),(100382,4,28756,3,1672319027),(100383,4,28757,3,1672319027),(100384,4,28758,3,1672319027),(100385,4,28759,3,1672319027),(100386,4,28760,3,1672319027),(100387,4,28761,3,1672319027),(100388,4,28762,3,1672319027),(100389,4,28763,3,1672319027),(100390,4,28764,3,1672319027),(100391,4,28765,3,1672319027),(100392,4,28766,3,1672319027),(100393,4,28767,3,1672319027),(100394,4,28768,3,1672319027),(100395,4,28769,3,1672319027),(100396,4,28770,3,1672319027),(100397,4,28771,3,1672319027),(100398,4,28772,3,1672319027),(100399,4,28773,3,1672319027),(100400,4,28774,3,1672319027),(100401,4,28775,3,1672319027),(100402,4,28776,3,1672319027),(100403,4,28777,3,1672319027),(100404,4,28778,3,1672319027),(100405,4,28779,3,1672319027),(100406,4,28780,3,1672319027),(100407,4,28781,3,1672319027),(100408,4,28782,3,1672319027),(100409,4,28783,3,1672319027),(100410,4,28784,3,1672319027),(100411,4,28785,3,1672319027),(100412,4,28786,3,1672319027),(100413,4,28787,3,1672319027),(100414,4,28788,3,1672319027),(100415,4,28789,3,1672319027),(100416,4,28790,3,1672319027),(100417,4,28791,3,1672319027),(100418,4,28792,3,1672319027),(100419,4,28793,3,1672319027),(100420,4,28794,3,1672319027),(100421,4,28795,3,1672319027),(100422,4,28796,3,1672319027),(100423,4,28797,3,1672319027),(100424,4,28798,3,1672319027),(100425,4,28799,3,1672319027),(100426,4,28800,3,1672319027),(100427,4,28801,3,1672319027),(100428,4,28802,3,1672319027),(100429,4,28803,3,1672319027),(100430,4,28804,3,1672319027),(100431,4,28805,3,1672319027),(100432,4,28806,3,1672319027),(100433,4,28807,3,1672319027),(100434,4,28808,3,1672319027),(100435,4,28809,3,1672319027),(100436,4,28810,3,1672319027),(100437,4,28811,3,1672319027),(100438,4,28812,3,1672319027),(100439,4,28813,3,1672319027),(100440,4,28814,3,1672319027),(100441,4,28815,3,1672319027),(100442,4,28816,3,1672319027),(100443,4,28817,3,1672319027),(100444,4,28818,3,1672319027),(100445,4,28819,3,1672319027),(100446,4,28820,3,1672319027),(100447,4,28821,3,1672319027),(100448,4,28822,3,1672319027),(100449,4,28823,3,1672319027),(100450,4,28824,3,1672319027),(100451,4,28825,3,1672319027),(100452,4,28826,3,1672319027),(100453,4,28827,3,1672319027),(100454,4,28828,3,1672319027),(100455,4,28829,3,1672319027),(100456,4,28830,3,1672319027),(100457,4,28831,3,1672319027),(100458,4,28832,3,1672319027),(100459,4,28833,3,1672319027),(100460,4,28834,3,1672319027),(100461,4,28835,3,1672319027),(100462,4,28836,3,1672319027),(100463,4,28837,3,1672319027),(100464,4,28838,3,1672319027),(100465,4,28839,3,1672319027),(100466,4,28840,3,1672319027),(100467,4,28841,3,1672319027),(100468,4,28842,3,1672319027),(100469,4,28843,3,1672319027),(100470,4,28844,3,1672319027),(100471,4,28845,3,1672319027),(100472,4,28846,3,1672319027),(100473,4,28847,3,1672319027),(100474,4,28848,3,1672319027),(100475,4,28849,3,1672319027),(100476,4,28850,3,1672319027),(100477,4,28851,3,1672319027),(100478,4,28852,3,1672319027),(100479,4,28853,3,1672319027),(100480,4,28854,3,1672319027),(100481,4,28855,3,1672319027),(100482,4,28856,3,1672319027),(100483,4,28857,3,1672319027),(100484,4,28858,3,1672319027),(100485,4,28859,3,1672319027),(100486,4,28860,3,1672319027),(100487,4,28861,3,1672319027),(100488,4,28862,3,1672319027),(100489,4,28863,3,1672319027),(100490,4,28864,3,1672319027),(100491,4,28865,3,1672319027),(100492,4,28866,3,1672319027),(100493,4,28867,3,1672319027),(100494,4,28868,3,1672319027),(100495,4,28869,3,1672319027),(100496,4,28870,3,1672319027),(100497,4,28871,3,1672319027),(100498,4,28872,3,1672319027),(100499,4,28873,3,1672319027),(100500,4,28874,3,1672319027),(100501,4,28875,3,1672319027),(100502,4,28876,3,1672319027),(100503,4,28877,3,1672319027),(100504,4,28878,3,1672319027),(100505,4,28879,3,1672319027),(100506,4,28880,3,1672319027),(100507,4,28881,3,1672319027),(100508,4,28882,3,1672319027),(100509,4,28883,3,1672319027),(100510,4,28884,3,1672319027),(100511,4,28885,3,1672319027),(100512,4,28886,3,1672319027),(100513,4,28887,3,1672319027),(100514,4,28888,3,1672319027),(100515,4,28889,3,1672319027),(100516,4,28890,3,1672319027),(100517,4,28891,3,1672319027),(100518,4,28892,3,1672319027),(100519,4,28893,3,1672319027),(100520,4,28894,3,1672319027),(100521,4,28895,3,1672319027),(100522,4,28896,3,1672319027),(100523,4,28897,3,1672319027),(100524,4,28898,3,1672319027),(100525,4,28899,3,1672319027),(100526,4,28900,3,1672319027),(100527,4,28901,3,1672319027),(100528,4,28902,3,1672319027),(100529,4,28903,3,1672319027),(100530,4,28904,3,1672319027),(100531,4,28905,3,1672319027),(100532,4,28906,3,1672319027),(100533,4,28907,3,1672319027),(100534,4,28908,3,1672319027),(100535,4,28909,3,1672319027),(100536,4,28910,3,1672319027),(100537,4,28911,3,1672319027),(100538,4,28912,3,1672319027),(100539,4,28913,3,1672319027),(100540,4,28914,3,1672319027),(100541,4,28915,3,1672319027),(100542,4,28916,3,1672319027),(100543,4,28917,3,1672319027),(100544,4,28918,3,1672319027),(100545,4,28919,3,1672319027),(100546,4,28920,3,1672319027),(100547,4,28921,3,1672319027),(100548,4,28922,3,1672319027),(100549,4,28923,3,1672319027),(100550,4,28924,3,1672319027),(100551,4,28925,3,1672319027),(100552,4,28926,3,1672319027),(100553,4,28927,3,1672319027),(100554,4,28928,3,1672319027),(100555,4,28929,3,1672319027),(100556,4,28930,3,1672319027),(100557,4,28931,3,1672319027),(100558,4,28932,3,1672319027),(100559,4,28933,3,1672319027),(100560,4,28934,3,1672319027),(100561,4,28935,3,1672319027),(100562,4,28936,3,1672319027),(100563,4,28937,3,1672319027),(100564,4,28938,3,1672319027),(100565,4,28939,3,1672319027),(100566,4,28940,3,1672319027),(100567,4,28941,3,1672319027),(100568,4,28942,3,1672319027),(100569,4,28943,3,1672319027),(100570,4,28944,3,1672319027),(100571,4,28945,3,1672319027),(100572,4,28946,3,1672319027),(100573,4,28947,3,1672319027),(100574,4,28948,3,1672319027),(100575,4,28949,3,1672319027),(100576,4,28950,3,1672319027),(100577,4,28951,3,1672319027),(100578,4,28952,3,1672319027),(100579,4,28953,3,1672319027),(100580,4,28954,3,1672319027),(100581,4,28955,3,1672319027),(100582,4,28956,3,1672319027),(100583,4,28957,3,1672319027),(100584,4,28958,3,1672319027),(100585,4,28959,3,1672319027),(100586,4,28960,3,1672319027),(100587,4,28961,3,1672319027),(100588,4,28962,3,1672319027),(100589,4,28963,3,1672319027),(100590,4,28964,3,1672319027),(100591,4,28965,3,1672319027),(100592,4,28966,3,1672319027),(100593,4,28967,3,1672319027),(100594,4,28968,3,1672319027),(100595,4,28969,3,1672319027),(100596,4,28970,3,1672319027),(100597,4,28971,3,1672319027),(100598,4,28972,3,1672319027),(100599,4,28973,3,1672319027),(100600,4,28974,3,1672319027),(100601,4,28975,3,1672319027),(100602,4,28976,3,1672319027),(100603,4,28977,3,1672319027),(100604,4,28978,3,1672319027),(100605,4,28979,3,1672319027),(100606,4,28980,3,1672319027),(100607,4,28981,3,1672319027),(100608,4,28982,3,1672319027),(100609,4,28983,3,1672319027),(100610,4,28984,3,1672319027),(100611,4,28985,3,1672319027),(100612,4,28986,3,1672319027),(100613,4,28987,3,1672319027),(100614,4,28988,3,1672319027),(100615,4,28989,3,1672319027),(100616,4,28990,3,1672319027),(100617,4,28991,3,1672319027),(100618,4,28992,3,1672319027),(100619,4,28993,3,1672319027),(100620,4,28994,3,1672319027),(100621,4,28995,3,1672319027),(100622,4,28996,3,1672319027),(100623,4,28997,3,1672319027),(100624,4,28998,3,1672319027),(100625,4,28999,3,1672319027),(100626,4,29000,3,1672319027),(100627,4,29001,3,1672319027),(100628,4,29002,3,1672319027),(100629,4,29003,3,1672319027),(100630,4,29004,3,1672319027),(100631,4,29005,3,1672319027),(100632,4,29006,3,1672319027),(100633,4,29007,3,1672319027),(100634,4,29008,3,1672319027),(100635,4,29009,3,1672319027),(100636,4,29010,3,1672319027),(100637,4,29011,3,1672319027),(100638,4,29012,3,1672319027),(100639,4,29013,3,1672319027),(100640,4,29014,3,1672319027),(100641,4,29015,3,1672319027),(100642,4,29016,3,1672319027),(100643,4,29017,3,1672319027),(100644,4,29018,3,1672319027),(100645,4,29019,3,1672319027),(100646,4,29020,3,1672319027),(100647,4,29021,3,1672319027),(100648,4,29022,3,1672319027),(100649,4,29023,3,1672319027),(100650,4,29024,3,1672319027),(100651,4,29025,3,1672319027),(100652,4,29026,3,1672319027),(100653,4,29027,3,1672319027),(100654,4,29028,3,1672319027),(100655,4,29029,3,1672319027),(100656,4,29030,3,1672319027),(100657,4,29031,3,1672319027),(100658,4,29032,3,1672319027),(100659,4,29033,3,1672319027),(100660,4,29034,3,1672319027),(100661,4,29035,3,1672319027),(100662,4,29036,3,1672319027),(100663,4,29037,3,1672319027),(100664,4,29038,3,1672319027),(100665,4,29039,3,1672319027),(100666,4,29040,3,1672319027),(100667,4,29041,3,1672319027),(100668,4,29042,3,1672319027),(100669,4,29043,3,1672319027),(100670,4,29044,3,1672319027),(100671,4,29045,3,1672319027),(100672,4,29046,3,1672319027),(100673,4,29047,3,1672319027),(100674,4,29048,3,1672319027),(100675,4,29049,3,1672319027),(100676,4,29050,3,1672319027),(100677,4,29051,3,1672319027),(100678,4,29052,3,1672319027),(100679,4,29053,3,1672319027),(100680,4,29054,3,1672319027),(100681,4,29055,3,1672319027),(100682,4,29056,3,1672319027),(100683,4,29057,3,1672319027),(100684,4,29058,3,1672319027),(100685,4,29059,3,1672319027),(100686,4,29060,3,1672319027),(100687,4,29061,3,1672319027),(100688,4,29062,3,1672319027),(100689,4,29063,3,1672319027),(100690,4,29064,3,1672319027),(100691,4,29065,3,1672319027),(100692,4,29066,3,1672319027),(100693,4,29067,3,1672319027),(100694,4,29068,3,1672319027),(100695,4,29069,3,1672319027),(100696,4,29070,3,1672319027),(100697,4,29071,3,1672319027),(100698,4,29072,3,1672319027),(100699,4,29073,3,1672319027),(100700,4,29074,3,1672319027),(100701,4,29075,3,1672319027),(100702,4,29076,3,1672319027),(100703,4,29077,3,1672319027),(100704,4,29078,3,1672319027),(100705,4,29079,3,1672319027),(100706,4,29080,3,1672319027),(100707,4,29081,3,1672319027),(100708,4,29082,3,1672319027),(100709,4,29083,3,1672319027),(100710,4,29084,3,1672319027),(100711,4,29085,3,1672319027),(100712,4,29086,3,1672319027),(100713,4,29087,3,1672319027),(100714,4,29088,3,1672319027),(100715,4,29089,3,1672319027),(100716,4,29090,3,1672319027),(100717,4,29091,3,1672319027),(100718,4,29092,3,1672319027),(100719,4,29093,3,1672319027),(100720,4,29094,3,1672319027),(100721,4,29095,3,1672319027),(100722,4,29096,3,1672319027),(100723,4,29097,3,1672319027),(100724,4,29098,3,1672319027),(100725,4,29099,3,1672319027),(100726,4,29100,3,1672319027),(100727,4,29101,3,1672319027),(100728,4,29102,3,1672319027),(100729,4,29103,3,1672319027),(100730,4,29104,3,1672319027),(100731,4,29105,3,1672319027),(100732,4,29106,3,1672319027),(100733,4,29107,3,1672319027),(100734,4,29108,3,1672319027),(100735,4,29109,3,1672319027),(100736,4,29110,3,1672319027),(100737,4,29111,3,1672319027),(100738,4,29112,3,1672319027),(100739,4,29113,3,1672319027),(100740,4,29114,3,1672319027),(100741,4,29115,3,1672319027),(100742,4,29116,3,1672319027),(100743,4,29117,3,1672319027),(100744,4,29118,3,1672319027),(100745,4,29119,3,1672319027),(100746,4,29120,3,1672319027),(100747,4,29121,3,1672319027),(100748,4,29122,3,1672319027),(100749,4,29123,3,1672319027),(100750,4,29124,3,1672319027),(100751,4,29125,3,1672319027),(100752,4,29126,3,1672319027),(100753,4,29127,3,1672319027),(100754,4,29128,3,1672319027),(100755,4,29129,3,1672319027),(100756,4,29130,3,1672319027),(100757,4,29131,3,1672319027),(100758,4,29132,3,1672319027),(100759,4,29133,3,1672319027),(100760,4,29134,3,1672319027),(100761,4,29135,3,1672319027),(100762,4,29136,3,1672319027),(100763,4,29137,3,1672319027),(100764,4,29138,3,1672319027),(100765,4,29139,3,1672319027),(100766,4,29140,3,1672319027),(100767,4,29141,3,1672319027),(100768,4,29142,3,1672319027),(100769,4,29143,3,1672319027),(100770,4,29144,3,1672319027),(100771,4,29145,3,1672319027),(100772,4,29146,3,1672319027),(100773,4,29147,3,1672319027),(100774,4,29148,3,1672319027),(100775,4,29149,3,1672319027),(100776,4,29150,3,1672319027),(100777,4,29151,3,1672319027),(100778,4,29152,3,1672319027),(100779,4,29153,3,1672319027),(100780,4,29154,3,1672319027),(100781,4,29155,3,1672319027),(100782,4,29156,3,1672319027),(100783,4,29157,3,1672319027),(100784,4,29158,3,1672319027),(100785,4,29159,3,1672319027),(100786,4,29160,3,1672319027),(100787,4,29161,3,1672319027),(100788,4,29162,3,1672319027),(100789,4,29163,3,1672319027),(100790,4,29164,3,1672319027),(100791,4,29165,3,1672319027),(100792,4,29166,3,1672319027),(100793,4,29167,3,1672319027),(100794,4,29168,3,1672319027),(100795,4,29169,3,1672319027),(100796,4,29170,3,1672319027),(100797,4,29171,3,1672319027),(100798,4,29172,3,1672319027),(100799,4,29173,3,1672319027),(100800,4,29174,3,1672319027),(100801,4,29175,3,1672319027),(100802,4,29176,3,1672319027),(100803,4,29177,3,1672319027),(100804,4,29178,3,1672319027),(100805,4,29179,3,1672319027),(100806,4,29180,3,1672319027),(100807,4,29181,3,1672319027),(100808,4,29182,3,1672319027),(100809,4,29183,3,1672319027),(100810,4,29184,3,1672319027),(100811,4,29185,3,1672319027),(100812,4,29186,3,1672319027),(100813,4,29187,3,1672319027),(100814,4,29188,3,1672319027),(100815,4,29189,3,1672319027),(100816,4,29190,3,1672319027),(100817,4,29191,3,1672319027),(100818,4,29192,3,1672319027),(100819,4,29193,3,1672319027),(100820,4,29194,3,1672319027),(100821,4,29195,3,1672319027),(100822,4,29196,3,1672319027),(100823,4,29197,3,1672319027),(100824,4,29198,3,1672319027),(100825,4,29199,3,1672319027),(100826,4,29200,3,1672319027),(100827,4,29201,3,1672319027),(100828,4,29202,3,1672319027),(100829,4,29203,3,1672319027),(100830,4,29204,3,1672319027),(100831,4,29205,3,1672319027),(100832,4,29206,3,1672319027),(100833,4,29207,3,1672319027),(100834,4,29208,3,1672319027),(100835,4,29209,3,1672319027),(100836,4,29210,3,1672319027),(100837,4,29211,3,1672319027),(100838,4,29212,3,1672319027),(100839,4,29213,3,1672319027),(100840,4,29214,3,1672319027),(100841,4,29215,3,1672319027),(100842,4,29216,3,1672319027),(100843,4,29217,3,1672319027),(100844,4,29218,3,1672319027),(100845,4,29219,3,1672319027),(100846,4,29220,3,1672319027),(100847,4,29221,3,1672319027),(100848,4,29222,3,1672319027),(100849,4,29223,3,1672319027),(100850,4,29224,3,1672319027),(100851,4,29225,3,1672319027),(100852,4,29226,3,1672319027),(100853,4,29227,3,1672319027),(100854,4,29228,3,1672319027),(100855,4,29229,3,1672319027),(100856,4,29230,3,1672319027),(100857,4,29231,3,1672319027),(100858,4,29232,3,1672319027),(100859,4,29233,3,1672319027),(100860,4,29234,3,1672319027),(100861,4,29235,3,1672319027),(100862,4,29236,3,1672319027),(100863,4,29237,3,1672319027),(100864,4,29238,3,1672319027),(100865,4,29239,3,1672319027),(100866,4,29240,3,1672319027),(100867,4,29241,3,1672319027),(100868,4,29242,3,1672319027),(100869,4,29243,3,1672319027),(100870,4,29244,3,1672319027),(100871,4,29245,3,1672319027),(100872,4,29246,3,1672319027),(100873,4,29247,3,1672319027),(100874,4,29248,3,1672319027),(100875,4,29249,3,1672319027),(100876,4,29250,3,1672319027),(100877,4,29251,3,1672319027),(100878,4,29252,3,1672319027),(100879,4,29253,3,1672319027),(100880,4,29254,3,1672319027),(100881,4,29255,3,1672319027),(100882,4,29256,3,1672319027),(100883,4,29257,3,1672319027),(100884,4,29258,3,1672319027),(100885,4,29259,3,1672319027),(100886,4,29260,3,1672319027),(100887,4,29261,3,1672319027),(100888,4,29262,3,1672319027),(100889,4,29263,3,1672319027),(100890,4,29264,3,1672319027),(100891,4,29265,3,1672319027),(100892,4,29266,3,1672319027),(100893,4,29267,3,1672319027),(100894,4,29268,3,1672319027),(100895,4,29269,3,1672319027),(100896,4,29270,3,1672319027),(100897,4,29271,3,1672319027),(100898,4,29272,3,1672319027),(100899,4,29273,3,1672319027),(100900,4,29274,3,1672319027),(100901,4,29275,3,1672319027),(100902,4,29276,3,1672319027),(100903,4,29277,3,1672319027),(100904,4,29278,3,1672319027),(100905,4,29279,3,1672319027),(100906,4,29280,3,1672319027),(100907,4,29281,3,1672319027),(100908,4,29282,3,1672319027),(100909,4,29283,3,1672319027),(100910,4,29284,3,1672319027),(100911,4,29285,3,1672319027),(100912,4,29286,3,1672319027),(100913,4,29287,3,1672319027),(100914,4,29288,3,1672319027),(100915,4,29289,3,1672319027),(100916,4,29290,3,1672319027),(100917,4,29291,3,1672319027),(100918,4,29292,3,1672319027),(100919,4,29293,3,1672319027),(100920,4,29294,3,1672319027),(100921,4,29295,3,1672319027),(100922,4,29296,3,1672319027),(100923,4,29297,3,1672319027),(100924,4,29298,3,1672319027),(100925,4,29299,3,1672319027),(100926,4,29300,3,1672319027),(100927,4,29301,3,1672319027),(100928,4,29302,3,1672319027),(100929,4,29303,3,1672319027),(100930,4,29304,3,1672319027),(100931,4,29305,3,1672319027),(100932,4,29306,3,1672319027),(100933,4,29307,3,1672319027),(100934,4,29308,3,1672319027),(100935,4,29309,3,1672319027),(100936,4,29310,3,1672319027),(100937,4,29311,3,1672319027),(100938,4,29312,3,1672319027),(100939,4,29313,3,1672319027),(100940,4,29314,3,1672319027),(100941,4,29315,3,1672319027),(100942,4,29316,3,1672319027),(100943,4,29317,3,1672319027),(100944,4,29318,3,1672319027),(100945,4,29319,3,1672319027),(100946,4,29320,3,1672319027),(100947,4,29321,3,1672319027),(100948,4,29322,3,1672319027),(100949,4,29323,3,1672319027),(100950,4,29324,3,1672319027),(100951,4,29325,3,1672319027),(100952,4,29326,3,1672319027),(100953,4,29327,3,1672319027),(100954,4,29328,3,1672319027),(100955,4,29329,3,1672319027),(100956,4,29330,3,1672319027),(100957,4,29331,3,1672319027),(100958,4,29332,3,1672319027),(100959,4,29333,3,1672319027),(100960,4,29334,3,1672319027),(100961,4,29335,3,1672319027),(100962,4,29336,3,1672319027),(100963,4,29337,3,1672319027),(100964,4,29338,3,1672319027),(100965,4,29339,3,1672319027),(100966,4,29340,3,1672319027),(100967,4,29341,3,1672319027),(100968,4,29342,3,1672319027),(100969,4,29343,3,1672319027),(100970,4,29344,3,1672319027),(100971,4,29345,3,1672319027),(100972,4,29346,3,1672319027),(100973,4,29347,3,1672319027),(100974,4,29348,3,1672319027),(100975,4,29349,3,1672319027),(100976,4,29350,3,1672319027),(100977,4,29351,3,1672319027),(100978,4,29352,3,1672319027),(100979,4,29353,3,1672319027),(100980,4,29354,3,1672319027),(100981,4,29355,3,1672319027),(100982,4,29356,3,1672319027),(100983,4,29357,3,1672319027),(100984,4,29358,3,1672319027),(100985,4,29359,3,1672319027),(100986,4,29360,3,1672319027),(100987,4,29361,3,1672319027),(100988,4,29362,3,1672319027),(100989,4,29363,3,1672319027),(100990,4,29364,3,1672319027),(100991,4,29365,3,1672319027),(100992,4,29366,3,1672319027),(100993,4,29367,3,1672319027),(100994,4,29368,3,1672319027),(100995,4,29369,3,1672319027),(100996,4,29370,3,1672319027),(100997,4,29371,3,1672319027),(100998,4,29372,3,1672319027),(100999,4,29373,3,1672319027),(101000,4,29374,3,1672319027),(101001,4,29375,3,1672319027),(101002,4,29376,3,1672319027),(101003,4,29377,3,1672319027),(101004,4,29378,3,1672319027),(101005,4,29379,3,1672319027),(101006,4,29380,3,1672319027),(101007,4,29381,3,1672319027),(101008,4,29382,3,1672319027),(101009,4,29383,3,1672319027),(101010,4,29384,3,1672319027),(101011,4,29385,3,1672319027),(101012,4,29386,3,1672319027),(101013,4,29387,3,1672319027),(101014,4,29388,3,1672319027),(101015,4,29389,3,1672319027),(101016,4,29390,3,1672319027),(101017,4,29391,3,1672319027),(101018,4,29392,3,1672319027),(101019,4,29393,3,1672319027),(101020,4,29394,3,1672319027),(101021,4,29395,3,1672319027),(101022,4,29396,3,1672319027),(101023,4,29397,3,1672319027),(101024,4,29398,3,1672319027),(101025,4,29399,3,1672319027),(101026,4,29400,3,1672319027),(101027,4,29401,3,1672319027),(101028,4,29402,3,1672319027),(101029,4,29403,3,1672319027),(101030,4,29404,3,1672319027),(101031,4,29405,3,1672319027),(101032,4,29406,3,1672319027),(101033,4,29407,3,1672319027),(101034,4,29408,3,1672319027),(101035,4,29409,3,1672319027),(101036,4,29410,3,1672319027),(101037,4,29411,3,1672319027),(101038,4,29412,3,1672319027),(101039,4,29413,3,1672319027),(101040,4,29414,3,1672319027),(101041,4,29415,3,1672319027),(101042,4,29416,3,1672319027),(101043,4,29417,3,1672319027),(101044,4,29418,3,1672319027),(101045,4,29419,3,1672319027),(101046,4,29420,3,1672319027),(101047,4,29421,3,1672319027),(101048,4,29422,3,1672319027),(101049,4,29423,3,1672319027),(101050,4,29424,3,1672319027),(101051,4,29425,3,1672319027),(101052,4,29426,3,1672319027),(101053,4,29427,3,1672319027),(101054,4,29428,3,1672319027),(101055,4,29429,3,1672319027),(101056,4,29430,3,1672319027),(101057,4,29431,3,1672319027),(101058,4,29432,3,1672319027),(101059,4,29433,3,1672319027),(101060,4,29434,3,1672319027),(101061,4,29435,3,1672319027),(101062,4,29436,3,1672319027),(101063,4,29437,3,1672319027),(101064,4,29438,3,1672319027),(101065,4,29439,3,1672319027),(101066,4,29440,3,1672319027),(101067,4,29441,3,1672319027),(101068,4,29442,3,1672319027),(101069,4,29443,3,1672319027),(101070,4,29444,3,1672319027),(101071,4,29446,3,1672319027),(101072,4,29447,3,1672319027),(101073,4,29448,3,1672319027),(101074,4,29449,3,1672319027),(101075,4,29450,3,1672319027),(101076,4,29451,3,1672319027),(101077,4,29452,3,1672319027),(101078,4,29453,3,1672319027),(101079,4,29454,3,1672319027),(101080,4,29455,3,1672319027),(101081,4,29456,3,1672319027),(101082,4,29457,3,1672319027),(101083,4,29458,3,1672319027),(101084,4,29459,3,1672319027),(101085,4,29460,3,1672319027),(101086,4,29461,3,1672319027),(101087,4,29462,3,1672319027),(101088,4,29463,3,1672319027),(101089,4,29464,3,1672319027),(101090,4,29465,3,1672319027),(101091,4,29466,3,1672319027),(101092,4,29468,3,1672319027),(101093,4,29469,3,1672319027),(101094,4,29470,3,1672319027),(101095,4,29471,3,1672319027),(101096,4,29472,3,1672319027),(101097,4,29473,3,1672319027),(101098,4,29474,3,1672319027),(101099,4,29475,3,1672319027),(101100,4,29476,3,1672319027),(101101,4,29477,3,1672319027),(101102,4,29478,3,1672319027),(101103,4,29479,3,1672319027),(101104,4,29480,3,1672319027),(101105,4,29481,3,1672319027),(101106,4,29482,3,1672319027),(101107,4,29483,3,1672319027),(101108,4,29484,3,1672319027),(101109,4,29485,3,1672319027),(101110,4,29486,3,1672319027),(101111,4,29487,3,1672319027),(101112,4,29488,3,1672319027),(101113,4,29489,3,1672319027),(101114,4,29490,3,1672319027),(101115,4,29491,3,1672319027),(101116,4,29535,3,1672319027),(101117,4,29536,3,1672319027),(101118,4,29537,3,1672319027),(101119,4,29538,3,1672319027),(101120,4,29541,3,1672319027),(101121,4,29542,3,1672319027),(101122,4,29543,3,1672319027),(101123,4,29544,3,1672319027),(101124,4,29545,3,1672319027),(101125,4,29546,3,1672319027),(101126,4,29547,3,1672319027),(101127,4,29548,3,1672319027),(101128,4,29549,3,1672319027),(101129,4,29551,3,1672319027),(101130,4,29552,3,1672319027),(101131,4,29554,3,1672319027),(101132,4,29555,3,1672319027),(101133,4,29557,3,1672319027),(101134,4,29558,3,1672319027),(101135,4,29560,3,1672319027),(101136,4,29561,3,1672319027),(101137,4,29563,3,1672319027),(101138,4,29564,3,1672319027),(101139,4,29566,3,1672319027),(101140,4,29567,3,1672319027),(101141,4,29569,3,1672319027),(101142,4,29570,3,1672319027),(101143,4,29572,3,1672319027),(101144,4,29573,3,1672319027),(101145,4,29574,3,1672319027),(101146,4,29575,3,1672319027),(101147,4,29576,3,1672319027),(101148,4,29577,3,1672319027),(101149,4,29578,3,1672319027),(101150,4,29580,3,1672319027),(101151,4,29581,3,1672319027),(101152,4,29583,3,1672319027),(101153,4,29584,3,1672319027),(101154,4,29586,3,1672319027),(101155,4,29587,3,1672319027),(101156,4,29589,3,1672319027),(101157,4,29590,3,1672319027),(101158,4,29592,3,1672319027),(101159,4,29593,3,1672319027),(101160,4,29595,3,1672319027),(101161,4,29596,3,1672319027),(101162,4,29598,3,1672319027),(101163,4,29599,3,1672319027),(101164,4,29601,3,1672319027),(101165,4,29602,3,1672319027),(101166,4,29603,3,1672319027),(101167,4,29604,3,1672319027),(101168,4,29605,3,1672319027),(101169,4,29606,3,1672319027),(101170,4,29607,3,1672319027),(101171,4,29608,3,1672319027),(101172,4,29609,3,1672319027),(101173,4,29610,3,1672319027),(101174,4,29611,3,1672319027),(101175,4,29612,3,1672319027),(101176,4,29613,3,1672319027),(101177,4,29614,3,1672319027),(101178,4,29652,3,1672319027),(101179,4,29653,3,1672319027),(101180,4,29654,3,1672319027),(101181,4,29655,3,1672319027),(101182,4,29656,3,1672319027),(101183,4,29657,3,1672319027),(101184,4,29658,3,1672319027),(101185,4,29659,3,1672319027),(101186,4,29660,3,1672319027),(101187,4,29661,3,1672319027),(101188,4,29662,3,1672319027),(101189,4,29663,3,1672319027),(101190,4,29664,3,1672319027),(101191,4,29665,3,1672319027),(101192,4,29666,3,1672319027),(101193,4,29667,3,1672319027),(101194,4,29668,3,1672319027),(101195,4,29669,3,1672319027),(101196,4,29670,3,1672319027),(101197,4,29671,3,1672319027),(101198,4,29672,3,1672319027),(101199,4,29673,3,1672319027),(101200,4,29674,3,1672319027),(101201,4,29675,3,1672319027),(101202,4,29688,3,1672319027),(101203,4,29689,3,1672319027),(101204,4,29690,3,1672319027),(101205,4,29691,3,1672319027),(101206,4,29692,3,1672319027),(101207,4,29693,3,1672319027),(101208,4,29694,3,1672319027),(101209,4,29695,3,1672319027),(101210,4,29696,3,1672319027),(101211,4,29697,3,1672319027),(101212,4,29698,3,1672319027),(101213,4,29699,3,1672319027),(101214,4,29700,3,1672319027),(101215,4,29701,3,1672319027),(101216,4,29702,3,1672319027),(101217,4,29703,3,1672319027),(101218,4,29704,3,1672319027),(101219,4,29705,3,1672319027),(101220,4,29706,3,1672319027),(101221,4,29707,3,1672319027),(101222,4,29708,3,1672319027),(101223,4,29709,3,1672319027),(101224,4,29710,3,1672319027),(101225,4,29711,3,1672319027),(101226,4,29712,3,1672319027),(101227,4,29713,3,1672319027),(101228,4,29714,3,1672319027),(101229,4,29715,3,1672319027),(101230,4,29716,3,1672319027),(101231,4,29718,3,1672319027),(101232,4,29719,3,1672319027),(101233,4,29720,3,1672319027),(101234,4,29721,3,1672319027),(101235,4,29722,3,1672319027),(101236,4,29723,3,1672319027),(101237,4,29724,3,1672319027),(101238,4,29725,3,1672319027),(101239,4,29726,3,1672319027),(101240,4,29727,3,1672319027),(101241,4,29728,3,1672319027),(101242,4,29729,3,1672319027),(101243,4,29730,3,1672319027),(101244,4,29731,3,1672319027),(101245,4,29732,3,1672319027),(101246,4,29733,3,1672319027),(101247,4,29734,3,1672319027),(101248,4,29735,3,1672319027),(101249,4,29736,3,1672319027),(101250,4,29737,3,1672319027),(101251,4,29738,3,1672319027),(101252,4,29739,3,1672319027),(101253,4,29740,3,1672319027),(101254,4,29741,3,1672319027),(101255,4,29742,3,1672319027),(101256,4,29743,3,1672319027),(101257,4,29744,3,1672319027),(101258,4,29746,3,1672319027),(101259,4,29747,3,1672319027),(101260,4,29748,3,1672319027),(101261,4,29749,3,1672319027),(101262,4,29750,3,1672319027),(101263,4,29751,3,1672319027),(101264,4,29752,3,1672319027),(101265,4,29753,3,1672319027),(101266,4,29754,3,1672319027),(101267,4,29755,3,1672319027),(101268,4,29756,3,1672319027),(101269,4,29757,3,1672319027),(101270,4,29758,3,1672319027),(101271,4,29759,3,1672319027),(101272,4,29760,3,1672319027),(101273,4,29761,3,1672319027),(101274,4,29762,3,1672319027),(101275,4,29763,3,1672319027),(101276,4,29764,3,1672319027),(101277,4,29765,3,1672319027),(101278,4,29766,3,1672319027),(101279,4,29767,3,1672319027),(101280,4,29768,3,1672319027),(101281,4,29769,3,1672319027),(101282,4,29770,3,1672319027),(101283,4,29771,3,1672319027),(101284,4,29772,3,1672319027),(101285,4,29773,3,1672319027),(101286,4,29774,3,1672319027),(101287,4,29775,3,1672319027),(101288,4,29776,3,1672319027),(101289,4,29777,3,1672319027),(101290,4,29778,3,1672319027),(101291,4,29779,3,1672319027),(101292,4,29780,3,1672319027),(101293,4,29781,3,1672319027),(101294,4,29782,3,1672319027),(101295,4,29783,3,1672319027),(101296,4,29784,3,1672319027),(101297,4,29785,3,1672319027),(101298,4,29786,3,1672319027),(101299,4,29788,3,1672319027),(101300,4,29789,3,1672319027),(101301,4,29791,3,1672319027),(101302,4,29792,3,1672319027),(101303,4,29794,3,1672319027),(101304,4,29795,3,1672319027),(101305,4,29797,3,1672319027),(101306,4,29798,3,1672319027),(101307,4,29800,3,1672319027),(101308,4,29801,3,1672319027),(101309,4,29803,3,1672319027),(101310,4,29804,3,1672319027),(101311,4,29806,3,1672319027),(101312,4,29807,3,1672319027),(101313,4,29809,3,1672319027),(101314,4,29810,3,1672319027),(101315,4,29812,3,1672319027),(101316,4,29813,3,1672319027),(101317,4,29815,3,1672319027),(101318,4,29816,3,1672319027),(101319,4,29818,3,1672319027),(101320,4,29819,3,1672319027),(101321,4,29821,3,1672319027),(101322,4,29822,3,1672319027),(101323,4,29824,3,1672319027),(101324,4,29825,3,1672319027),(101325,4,29827,3,1672319027),(101326,4,29828,3,1672319027),(101327,4,29830,3,1672319027),(101328,4,29831,3,1672319027),(101329,4,29833,3,1672319027),(101330,4,29834,3,1672319027),(101331,4,29835,3,1672319027),(101332,4,29836,3,1672319027),(101333,4,29837,3,1672319027),(101334,4,29838,3,1672319027),(101335,4,29839,3,1672319027),(101336,4,29840,3,1672319027),(101337,4,29841,3,1672319027),(101338,4,29842,3,1672319027),(101339,4,29843,3,1672319027),(101340,4,29844,3,1672319027),(101341,4,29845,3,1672319027),(101342,4,29846,3,1672319027),(101343,4,29847,3,1672319027),(101344,4,29848,3,1672319027),(101345,4,29849,3,1672319027),(101346,4,29850,3,1672319027),(101347,4,29851,3,1672319027),(101348,4,29852,3,1672319027),(101349,4,29853,3,1672319027),(101350,4,29854,3,1672319027),(101351,4,29855,3,1672319027),(101352,4,29856,3,1672319027),(101353,4,29857,3,1672319027),(101354,4,29858,3,1672319027),(101355,4,29859,3,1672319027),(101356,4,29860,3,1672319027),(101357,4,29861,3,1672319027),(101358,4,29862,3,1672319027),(101359,4,29863,3,1672319027),(101360,4,29864,3,1672319027),(101361,4,29865,3,1672319027),(101362,4,29866,3,1672319027),(101363,4,29867,3,1672319027),(101364,4,29868,3,1672319027),(101365,4,29869,3,1672319027),(101366,4,29870,3,1672319027),(101367,4,29871,3,1672319027),(101368,4,29872,3,1672319027),(101369,4,29873,3,1672319027),(101370,4,29874,3,1672319027),(101371,4,29875,3,1672319027),(101372,4,29876,3,1672319027),(101373,4,29877,3,1672319027),(101374,4,29878,3,1672319027),(101375,4,29879,3,1672319027),(101376,4,29880,3,1672319027),(101377,4,29881,3,1672319027),(101378,4,29882,3,1672319027),(101379,4,29883,3,1672319027),(101380,4,29884,3,1672319027),(101381,4,29885,3,1672319027),(101382,4,29886,3,1672319027),(101383,4,29887,3,1672319027),(101384,4,29888,3,1672319027),(101385,4,29889,3,1672319027),(101386,4,29890,3,1672319027),(101387,4,29891,3,1672319027),(101388,4,29892,3,1672319027),(101389,4,29893,3,1672319027),(101390,4,29894,3,1672319027),(101391,4,29895,3,1672319027),(101392,4,29896,3,1672319027),(101393,4,29897,3,1672319027),(101394,4,29898,3,1672319027),(101395,4,29899,3,1672319027),(101396,4,29900,3,1672319027),(101397,4,29901,3,1672319027),(101398,4,29902,3,1672319027),(101399,4,29903,3,1672319027),(101400,4,29904,3,1672319027),(101401,4,29905,3,1672319027),(101402,4,29906,3,1672319027),(101403,4,29907,3,1672319027),(101404,4,29908,3,1672319027),(101405,4,29909,3,1672319027),(101406,4,29910,3,1672319027),(101407,4,29911,3,1672319027),(101408,4,29912,3,1672319027),(101409,4,29913,3,1672319027),(101410,4,29914,3,1672319027),(101411,4,29915,3,1672319027),(101412,4,29916,3,1672319027),(101413,4,29917,3,1672319027),(101414,4,29918,3,1672319027),(101415,4,29919,3,1672319027),(101416,4,29920,3,1672319027),(101417,4,29921,3,1672319027),(101418,4,29922,3,1672319027),(101419,4,29923,3,1672319027),(101420,4,29924,3,1672319027),(101421,4,29925,3,1672319027),(101422,4,29926,3,1672319027),(101423,4,29927,3,1672319027),(101424,4,29928,3,1672319027),(101425,4,29929,3,1672319027),(101426,4,29930,3,1672319027),(101427,4,29931,3,1672319027),(101428,4,29932,3,1672319027),(101429,4,29933,3,1672319027),(101430,4,29934,3,1672319027),(101431,4,29935,3,1672319027),(101432,4,29936,3,1672319027),(101433,4,29937,3,1672319027),(101434,4,29938,3,1672319027),(101435,4,29939,3,1672319027),(101436,4,29940,3,1672319027),(101437,4,29941,3,1672319027),(101438,4,29942,3,1672319027),(101439,4,29943,3,1672319027),(101440,4,29944,3,1672319027),(101441,4,29945,3,1672319027),(101442,4,29946,3,1672319027),(101443,4,29947,3,1672319027),(101444,4,29948,3,1672319027),(101445,4,29949,3,1672319027),(101446,4,29950,3,1672319027),(101447,4,29951,3,1672319027),(101448,4,29952,3,1672319027),(101449,4,29953,3,1672319027),(101450,4,29954,3,1672319027),(101451,4,29955,3,1672319027),(101452,4,29956,3,1672319027),(101453,4,29957,3,1672319027),(101454,4,29958,3,1672319027),(101455,4,29959,3,1672319027),(101456,4,29960,3,1672319027),(101457,4,29961,3,1672319027),(101458,4,29962,3,1672319027),(101459,4,29963,3,1672319027),(101460,4,29964,3,1672319027),(101461,4,29965,3,1672319027),(101462,4,29966,3,1672319027),(101463,4,29967,3,1672319027),(101464,4,29968,3,1672319027),(101465,4,29969,3,1672319027),(101466,4,29970,3,1672319027),(101467,4,29971,3,1672319027),(101468,4,29972,3,1672319027),(101469,4,29973,3,1672319027),(101470,4,29974,3,1672319027),(101471,4,29975,3,1672319027),(101472,4,29976,3,1672319027),(101473,4,29977,3,1672319027),(101474,4,29978,3,1672319027),(101475,4,29979,3,1672319027),(101476,4,29980,3,1672319027),(101477,4,29981,3,1672319027),(101478,4,29982,3,1672319027),(101479,4,29983,3,1672319027),(101480,4,29984,3,1672319027),(101481,4,29985,3,1672319027),(101482,4,29986,3,1672319027),(101483,4,29987,3,1672319027),(101484,4,29988,3,1672319027),(101485,4,29989,3,1672319027),(101486,4,29990,3,1672319027),(101487,4,29991,3,1672319027),(101488,4,29992,3,1672319027),(101489,4,29993,3,1672319027),(101490,4,29994,3,1672319027),(101491,4,29995,3,1672319027),(101492,4,29996,3,1672319027),(101493,4,29997,3,1672319027),(101494,4,29998,3,1672319027),(101495,4,29999,3,1672319027),(101496,4,30000,3,1672319027),(101497,4,30001,3,1672319027),(101498,4,30002,3,1672319027),(101499,4,30003,3,1672319027),(101500,4,30004,3,1672319027),(101501,4,30005,3,1672319027),(101502,4,30006,3,1672319027),(101503,4,30007,3,1672319027),(101504,4,30008,3,1672319027),(101505,4,30009,3,1672319027),(101506,4,30010,3,1672319027),(101507,4,30011,3,1672319027),(101508,4,30012,3,1672319027),(101509,4,30013,3,1672319027),(101510,4,30014,3,1672319027),(101511,4,30015,3,1672319027),(101512,4,30016,3,1672319027),(101513,4,30017,3,1672319027),(101514,4,30018,3,1672319027),(101515,4,30019,3,1672319027),(101516,4,30020,3,1672319027),(101517,4,30021,3,1672319027),(101518,4,30022,3,1672319027),(101519,4,30023,3,1672319027),(101520,4,30024,3,1672319027),(101521,4,30025,3,1672319027),(101522,4,30026,3,1672319027),(101523,4,30027,3,1672319027),(101524,4,30028,3,1672319027),(101525,4,30029,3,1672319027),(101526,4,30030,3,1672319027),(101527,4,30031,3,1672319027),(101528,4,30032,3,1672319027),(101529,4,30033,3,1672319027),(101530,4,30034,3,1672319027),(101531,4,30035,3,1672319027),(101532,4,30036,3,1672319027),(101533,4,30037,3,1672319027),(101534,4,30038,3,1672319027),(101535,4,30039,3,1672319027),(101536,4,30040,3,1672319027),(101537,4,30041,3,1672319027),(101538,4,30042,3,1672319027),(101539,4,30043,3,1672319027),(101540,4,30044,3,1672319027),(101541,4,30045,3,1672319027),(101542,4,30046,3,1672319027),(101543,4,30047,3,1672319027),(101544,4,30048,3,1672319027),(101545,4,30049,3,1672319027),(101546,4,30050,3,1672319027),(101547,4,30051,3,1672319027),(101548,4,30052,3,1672319027),(101549,4,30053,3,1672319027),(101550,4,30054,3,1672319027),(101551,4,30055,3,1672319027),(101552,4,30056,3,1672319027),(101553,4,30057,3,1672319027),(101554,4,30058,3,1672319027),(101555,4,30059,3,1672319027),(101556,4,30060,3,1672319027),(101557,4,30061,3,1672319027),(101558,4,30062,3,1672319027),(101559,4,30063,3,1672319027),(101560,4,30064,3,1672319027),(101561,4,30065,3,1672319027),(101562,4,30066,3,1672319027),(101563,4,30067,3,1672319027),(101564,4,30068,3,1672319027),(101565,4,30069,3,1672319027),(101566,4,30070,3,1672319027),(101567,4,30071,3,1672319027),(101568,4,30072,3,1672319027),(101569,4,30073,3,1672319027),(101570,4,30074,3,1672319027),(101571,4,30075,3,1672319027),(101572,4,30076,3,1672319027),(101573,4,30077,3,1672319027),(101574,4,30078,3,1672319027),(101575,4,30079,3,1672319027),(101576,4,30080,3,1672319027),(101577,4,30081,3,1672319027),(101578,4,30082,3,1672319027),(101579,4,30083,3,1672319027),(101580,4,30084,3,1672319027),(101581,4,30085,3,1672319027),(101582,4,30086,3,1672319027),(101583,4,30087,3,1672319027),(101584,4,30088,3,1672319027),(101585,4,30089,3,1672319027),(101586,4,30090,3,1672319027),(101587,4,30091,3,1672319027),(101588,4,30092,3,1672319027),(101589,4,30093,3,1672319027),(101590,4,30094,3,1672319027),(101591,4,30095,3,1672319027),(101592,4,30096,3,1672319027),(101593,4,30097,3,1672319027),(101594,4,30098,3,1672319027),(101595,4,30099,3,1672319027),(101596,4,30100,3,1672319027),(101597,4,30101,3,1672319027),(101598,4,30102,3,1672319027),(101599,4,30103,3,1672319027),(101600,4,30104,3,1672319027),(101601,4,30105,3,1672319027),(101602,4,30106,3,1672319027),(101603,4,30107,3,1672319027),(101604,4,30108,3,1672319027),(101605,4,30109,3,1672319027),(101606,4,30110,3,1672319027),(101607,4,30111,3,1672319027),(101608,4,30112,3,1672319027),(101609,4,30113,3,1672319027),(101610,4,30114,3,1672319027),(101611,4,30115,3,1672319027),(101612,4,30116,3,1672319027),(101613,4,30117,3,1672319027),(101614,4,30118,3,1672319027),(101615,4,30119,3,1672319027),(101616,4,30120,3,1672319027),(101617,4,30121,3,1672319027),(101618,4,30122,3,1672319027),(101619,4,30123,3,1672319027),(101620,4,30124,3,1672319027),(101621,4,30125,3,1672319027),(101622,4,30126,3,1672319027),(101623,4,30127,3,1672319027),(101624,4,30128,3,1672319027),(101625,4,30129,3,1672319027),(101626,4,30130,3,1672319027),(101627,4,30131,3,1672319027),(101628,4,30132,3,1672319027),(101629,4,30133,3,1672319027),(101630,4,30134,3,1672319027),(101631,4,30135,3,1672319027),(101632,4,30136,3,1672319027),(101633,4,30137,3,1672319027),(101634,4,30138,3,1672319027),(101635,4,30139,3,1672319027),(101636,4,30140,3,1672319027),(101637,4,30141,3,1672319027),(101638,4,30142,3,1672319027),(101639,4,30143,3,1672319027),(101640,4,30144,3,1672319027),(101641,4,30145,3,1672319027),(101642,4,30146,3,1672319027),(101643,4,30147,3,1672319027),(101644,4,30148,3,1672319027),(101645,4,30149,3,1672319027),(101646,4,30150,3,1672319027),(101647,4,30151,3,1672319027),(101648,4,30152,3,1672319027),(101649,4,30153,3,1672319027),(101650,4,30154,3,1672319027),(101651,4,30155,3,1672319027),(101652,4,30156,3,1672319027),(101653,4,30157,3,1672319027),(101654,4,30158,3,1672319027),(101655,4,30159,3,1672319027),(101656,4,30160,3,1672319027),(101657,4,30161,3,1672319027),(101658,4,30162,3,1672319027),(101659,4,30163,3,1672319027),(101660,4,30164,3,1672319027),(101661,4,30165,3,1672319027),(101662,4,30166,3,1672319027),(101663,4,30167,3,1672319027),(101664,4,30168,3,1672319027),(101665,4,30169,3,1672319027),(101666,4,30170,3,1672319027),(101667,4,30171,3,1672319027),(101668,4,30172,3,1672319027),(101669,4,30173,3,1672319027),(101670,4,30174,3,1672319027),(101671,4,30175,3,1672319027),(101672,4,30176,3,1672319027),(101673,4,30177,3,1672319027),(101674,4,30178,3,1672319027),(101675,4,30179,3,1672319027),(101676,4,30180,3,1672319027),(101677,4,30181,3,1672319027),(101678,4,30182,3,1672319027),(101679,4,30183,3,1672319027),(101680,4,30184,3,1672319027),(101681,4,30185,3,1672319027),(101682,4,30186,3,1672319027),(101683,4,30187,3,1672319027),(101684,4,30188,3,1672319027),(101685,4,30189,3,1672319027),(101686,4,30190,3,1672319027),(101687,4,30191,3,1672319027),(101688,4,30192,3,1672319027),(101689,4,30193,3,1672319027),(101690,4,30194,3,1672319027),(101691,4,30195,3,1672319027),(101692,4,30196,3,1672319027),(101693,4,30197,3,1672319027),(101694,4,30198,3,1672319027),(101695,4,30199,3,1672319027),(101696,4,30200,3,1672319027),(101697,4,30201,3,1672319027),(101698,4,30202,3,1672319027),(101699,4,30203,3,1672319027),(101700,4,30204,3,1672319027),(101701,4,30205,3,1672319027),(101702,4,30206,3,1672319027),(101703,4,30207,3,1672319027),(101704,4,30208,3,1672319027),(101705,4,30209,3,1672319027),(101706,4,30210,3,1672319027),(101707,4,30211,3,1672319027),(101708,4,30212,3,1672319027),(101709,4,30213,3,1672319027),(101710,4,30214,3,1672319027),(101711,4,30215,3,1672319027),(101712,4,30216,3,1672319027),(101713,4,30217,3,1672319027),(101714,4,30218,3,1672319027),(101715,4,30219,3,1672319027),(101716,4,30220,3,1672319027),(101717,4,30221,3,1672319027),(101718,4,30222,3,1672319027),(101719,4,30223,3,1672319027),(101720,4,30224,3,1672319027),(101721,4,30225,3,1672319027),(101722,4,30226,3,1672319027),(101723,4,30227,3,1672319027),(101724,4,30228,3,1672319027),(101725,4,30229,3,1672319027),(101726,4,30230,3,1672319027),(101727,4,30231,3,1672319027),(101728,4,30232,3,1672319027),(101729,4,30233,3,1672319027),(101730,4,30234,3,1672319027),(101731,4,30235,3,1672319027),(101732,4,30236,3,1672319027),(101733,4,30237,3,1672319027),(101734,4,30238,3,1672319027),(101735,4,30239,3,1672319027),(101736,4,30240,3,1672319027),(101737,4,30241,3,1672319027),(101738,4,30242,3,1672319027),(101739,4,30243,3,1672319027),(101740,4,30244,3,1672319027),(101741,4,30245,3,1672319027),(101742,4,30246,3,1672319027),(101743,4,30247,3,1672319027),(101744,4,30248,3,1672319027),(101745,4,30249,3,1672319027),(101746,4,30250,3,1672319027),(101747,4,30251,3,1672319027),(101748,4,30252,3,1672319027),(101749,4,30253,3,1672319027),(101750,4,30254,3,1672319027),(101751,4,30255,3,1672319027),(101752,4,30256,3,1672319027),(101753,4,30257,3,1672319027),(101754,4,30258,3,1672319027),(101755,4,30259,3,1672319027),(101756,4,30260,3,1672319027),(101757,4,30261,3,1672319027),(101758,4,30262,3,1672319027),(101759,4,30263,3,1672319027),(101760,4,30264,3,1672319027),(101761,4,30265,3,1672319027),(101762,4,30266,3,1672319027),(101763,4,30267,3,1672319027),(101764,4,30268,3,1672319027),(101765,4,30269,3,1672319027),(101766,4,30270,3,1672319027),(101767,4,30271,3,1672319027),(101768,4,30272,3,1672319027),(101769,4,30273,3,1672319027),(101770,4,30274,3,1672319027),(101771,4,30275,3,1672319027),(101772,4,30276,3,1672319027),(101773,4,30277,3,1672319027),(101774,4,30278,3,1672319027),(101775,4,30279,3,1672319027),(101776,4,30280,3,1672319027),(101777,4,30281,3,1672319027),(101778,4,30282,3,1672319027),(101779,4,30283,3,1672319027),(101780,4,30284,3,1672319027),(101781,4,30285,3,1672319027),(101782,4,30286,3,1672319027),(101783,4,30287,3,1672319027),(101784,4,30288,3,1672319027),(101785,4,30289,3,1672319027),(101786,4,30290,3,1672319027),(101787,4,30291,3,1672319027),(101788,4,30292,3,1672319027),(101789,4,30293,3,1672319027),(101790,4,30294,3,1672319027),(101791,4,30295,3,1672319027),(101792,4,30296,3,1672319027),(101793,4,30297,3,1672319027),(101794,4,30298,3,1672319027),(101795,4,30299,3,1672319027),(101796,4,30300,3,1672319027),(101797,4,30301,3,1672319027),(101798,4,30302,3,1672319027),(101799,4,30303,3,1672319027),(101800,4,30304,3,1672319027),(101801,4,30305,3,1672319027),(101802,4,30306,3,1672319027),(101803,4,30307,3,1672319027),(101804,4,30308,3,1672319027),(101805,4,30309,3,1672319027),(101806,4,30310,3,1672319027),(101807,4,30311,3,1672319027),(101808,4,30312,3,1672319027),(101809,4,30313,3,1672319027),(101810,4,30314,3,1672319027),(101811,4,30315,3,1672319027),(101812,4,30316,3,1672319027),(101813,4,30317,3,1672319027),(101814,4,30318,3,1672319027),(101815,4,30319,3,1672319027),(101816,4,30320,3,1672319027),(101817,4,30321,3,1672319027),(101818,4,30322,3,1672319027),(101819,4,30323,3,1672319027),(101820,4,30324,3,1672319027),(101821,4,30325,3,1672319027),(101822,4,30326,3,1672319027),(101823,4,30327,3,1672319027),(101824,4,30328,3,1672319027),(101825,4,30329,3,1672319027),(101826,4,30330,3,1672319027),(101827,4,30331,3,1672319027),(101828,4,30332,3,1672319027),(101829,4,30333,3,1672319027),(101830,4,30334,3,1672319027),(101831,4,30335,3,1672319027),(101832,4,30336,3,1672319027),(101833,4,30337,3,1672319027),(101834,4,30338,3,1672319027),(101835,4,30339,3,1672319027),(101836,4,30340,3,1672319027),(101837,4,30341,3,1672319027),(101838,4,30342,3,1672319027),(101839,4,30343,3,1672319027),(101840,4,30344,3,1672319027),(101841,4,30345,3,1672319027),(101842,4,30346,3,1672319027),(101843,4,30347,3,1672319027),(101844,4,30348,3,1672319027),(101845,4,30349,3,1672319027),(101846,4,30350,3,1672319027),(101847,4,30351,3,1672319027),(101848,4,30352,3,1672319027),(101849,4,30353,3,1672319027),(101850,4,30354,3,1672319027),(101851,4,30355,3,1672319027),(101852,4,30356,3,1672319027),(101853,4,30357,3,1672319027),(101854,4,30358,3,1672319027),(101855,4,30359,3,1672319027),(101856,4,30360,3,1672319027),(101857,4,30361,3,1672319027),(101858,4,30362,3,1672319027),(101859,4,30363,3,1672319027),(101860,4,30364,3,1672319027),(101861,4,30365,3,1672319027),(101862,4,30366,3,1672319027),(101863,4,30367,3,1672319027),(101864,4,30368,3,1672319027),(101865,4,30369,3,1672319027),(101866,4,30370,3,1672319027),(101867,4,30371,3,1672319027),(101868,4,30372,3,1672319027),(101869,4,30373,3,1672319027),(101870,4,30374,3,1672319027),(101871,4,30375,3,1672319027),(101872,4,30376,3,1672319027),(101873,4,30377,3,1672319027),(101874,4,30378,3,1672319027),(101875,4,30379,3,1672319027),(101876,4,30380,3,1672319027),(101877,4,30381,3,1672319027),(101878,4,30382,3,1672319027),(101879,4,30383,3,1672319027),(101880,4,30384,3,1672319027),(101881,4,30385,3,1672319027),(101882,4,30386,3,1672319027),(101883,4,30387,3,1672319027),(101884,4,30388,3,1672319027),(101885,4,30389,3,1672319027),(101886,4,30390,3,1672319027),(101887,4,30391,3,1672319027),(101888,4,30392,3,1672319027),(101889,4,30393,3,1672319027),(101890,4,30394,3,1672319027),(101891,4,30395,3,1672319027),(101892,4,30396,3,1672319027),(101893,4,30397,3,1672319027),(101894,4,30398,3,1672319027),(101895,4,30399,3,1672319027),(101896,4,30400,3,1672319027),(101897,4,30401,3,1672319027),(101898,4,30402,3,1672319027),(101899,4,30403,3,1672319027),(101900,4,30404,3,1672319027),(101901,4,30405,3,1672319027),(101902,4,30406,3,1672319027),(101903,4,30407,3,1672319027),(101904,4,30408,3,1672319027),(101905,4,30409,3,1672319027),(101906,4,30410,3,1672319027),(101907,4,30411,3,1672319027),(101908,4,30412,3,1672319027),(101909,4,30413,3,1672319027),(101910,4,30414,3,1672319027),(101911,4,30415,3,1672319027),(101912,4,30416,3,1672319027),(101913,4,30417,3,1672319027),(101914,4,30418,3,1672319027),(101915,4,30419,3,1672319027),(101916,4,30420,3,1672319027),(101917,4,30421,3,1672319027),(101918,4,30422,3,1672319027),(101919,4,30423,3,1672319027),(101920,4,30424,3,1672319027),(101921,4,30425,3,1672319027),(101922,4,30426,3,1672319027),(101923,4,30427,3,1672319027),(101924,4,30428,3,1672319027),(101925,4,30429,3,1672319027),(101926,4,30430,3,1672319027),(101927,4,30431,3,1672319027),(101928,4,30432,3,1672319027),(101929,4,30433,3,1672319027),(101930,4,30434,3,1672319027),(101931,4,30435,3,1672319027),(101932,4,30436,3,1672319027),(101933,4,30437,3,1672319027),(101934,4,30438,3,1672319027),(101935,4,30439,3,1672319027),(101936,4,30440,3,1672319027),(101937,4,30441,3,1672319027),(101938,4,30442,3,1672319027),(101939,4,30443,3,1672319027),(101940,4,30444,3,1672319027),(101941,4,30445,3,1672319027),(101942,4,30446,3,1672319027),(101943,4,30447,3,1672319027),(101944,4,30448,3,1672319027),(101945,4,30449,3,1672319027),(101946,4,30450,3,1672319027),(101947,4,30451,3,1672319027),(101948,4,30452,3,1672319027),(101949,4,30453,3,1672319027),(101950,4,30454,3,1672319027),(101951,4,30455,3,1672319027),(101952,4,30456,3,1672319027),(101953,4,30457,3,1672319027),(101954,4,30458,3,1672319027),(101955,4,30459,3,1672319027),(101956,4,30460,3,1672319027),(101957,4,30461,3,1672319027),(101958,4,30462,3,1672319027),(101959,4,30463,3,1672319027),(101960,4,30464,3,1672319027),(101961,4,30465,3,1672319027),(101962,4,30466,3,1672319027),(101963,4,30467,3,1672319027),(101964,4,30468,3,1672319027),(101965,4,30469,3,1672319027),(101966,4,30470,3,1672319027),(101967,4,30471,3,1672319027),(101968,4,30472,3,1672319027),(101969,4,30473,3,1672319027),(101970,4,30474,3,1672319027),(101971,4,30475,3,1672319027),(101972,4,30476,3,1672319027),(101973,4,30477,3,1672319027),(101974,4,30478,3,1672319027),(101975,4,30479,3,1672319027),(101976,4,30480,3,1672319027),(101977,4,30481,3,1672319027),(101978,4,30482,3,1672319027),(101979,4,30483,3,1672319027),(101980,4,30484,3,1672319027),(101981,4,30485,3,1672319027),(101982,4,30486,3,1672319027),(101983,4,30487,3,1672319027),(101984,4,30488,3,1672319027),(101985,4,30489,3,1672319027),(101986,4,30490,3,1672319027),(101987,4,30491,3,1672319027),(101988,4,30492,3,1672319027),(101989,4,30493,3,1672319027),(101990,4,30494,3,1672319027),(101991,4,30495,3,1672319027),(101992,4,30496,3,1672319027),(101993,4,30497,3,1672319027),(101994,4,30498,3,1672319027),(101995,4,30499,3,1672319027),(101996,4,30500,3,1672319027),(101997,4,30501,3,1672319027),(101998,4,30502,3,1672319027),(101999,4,30503,3,1672319027),(102000,4,30504,3,1672319027),(102001,4,30505,3,1672319027),(102002,4,30506,3,1672319027),(102003,4,30507,3,1672319027),(102004,4,30508,3,1672319027),(102005,4,30509,3,1672319027),(102006,4,30510,3,1672319027),(102007,4,30511,3,1672319027),(102008,4,30512,3,1672319027),(102009,4,30513,3,1672319027),(102010,4,30514,3,1672319027),(102011,4,30515,3,1672319027),(102012,4,30516,3,1672319027),(102013,4,30517,3,1672319027),(102014,4,30518,3,1672319027),(102015,4,30519,3,1672319027),(102016,4,30520,3,1672319027),(102017,4,30521,3,1672319027),(102018,4,30522,3,1672319027),(102019,4,30523,3,1672319027),(102020,4,30524,3,1672319027),(102021,4,30525,3,1672319027),(102022,4,30526,3,1672319027),(102023,4,30527,3,1672319027),(102024,4,30528,3,1672319027),(102025,4,30529,3,1672319027),(102026,4,30530,3,1672319027),(102027,4,30531,3,1672319027),(102028,4,30532,3,1672319027),(102029,4,30533,3,1672319027),(102030,4,30534,3,1672319027),(102031,4,30535,3,1672319027),(102032,4,30536,3,1672319027),(102033,4,30537,3,1672319027),(102034,4,30538,3,1672319027),(102035,4,30539,3,1672319027),(102036,4,30540,3,1672319027),(102037,4,30541,3,1672319027),(102038,4,30542,3,1672319027),(102039,4,30543,3,1672319027),(102040,4,30544,3,1672319027),(102041,4,30545,3,1672319027),(102042,4,30546,3,1672319027),(102043,4,30547,3,1672319027),(102044,4,30548,3,1672319027),(102045,4,30549,3,1672319027),(102046,4,30550,3,1672319027),(102047,4,30551,3,1672319027),(102048,4,30552,3,1672319027),(102049,4,30553,3,1672319027),(102050,4,30554,3,1672319027),(102051,4,30555,3,1672319027),(102052,4,30556,3,1672319027),(102053,4,30557,3,1672319027),(102054,4,30558,3,1672319027),(102055,4,30559,3,1672319027),(102056,4,30560,3,1672319027),(102057,4,30561,3,1672319027),(102058,4,30562,3,1672319027),(102059,4,30563,3,1672319027),(102060,4,30564,3,1672319027),(102061,4,30565,3,1672319027),(102062,4,30566,3,1672319027),(102063,4,30567,3,1672319027),(102064,4,30568,3,1672319027),(102065,4,30569,3,1672319027),(102066,4,30570,3,1672319027),(102067,4,30571,3,1672319027),(102068,4,30572,3,1672319027),(102069,4,30573,3,1672319027),(102070,4,30574,3,1672319027),(102071,4,30575,3,1672319027),(102072,4,30576,3,1672319027),(102073,4,30577,3,1672319027),(102074,4,30578,3,1672319027),(102075,4,30579,3,1672319027),(102076,4,30580,3,1672319027),(102077,4,30581,3,1672319027),(102078,4,30582,3,1672319027),(102079,4,30583,3,1672319027),(102080,4,30584,3,1672319027),(102081,4,30585,3,1672319027),(102082,4,30586,3,1672319027),(102083,4,30587,3,1672319027),(102084,4,30588,3,1672319027),(102085,4,30589,3,1672319027),(102086,4,30590,3,1672319027),(102087,4,30591,3,1672319027),(102088,4,30592,3,1672319027),(102089,4,30593,3,1672319027),(102090,4,30594,3,1672319027),(102091,4,30595,3,1672319027),(102092,4,30596,3,1672319027),(102093,4,30597,3,1672319027),(102094,4,30598,3,1672319027),(102095,4,30599,3,1672319027),(102096,4,30600,3,1672319027),(102097,4,30601,3,1672319027),(102098,4,30602,3,1672319027),(102099,4,30603,3,1672319027),(102100,4,30604,3,1672319027),(102101,4,30605,3,1672319027),(102102,4,30606,3,1672319027),(102103,4,30607,3,1672319027),(102104,4,30608,3,1672319027),(102105,4,30609,3,1672319027),(102106,4,30610,3,1672319027),(102107,4,30611,3,1672319027),(102108,4,30612,3,1672319027),(102109,4,30613,3,1672319027),(102110,4,30614,3,1672319027),(102111,4,30615,3,1672319027),(102112,4,30616,3,1672319027),(102113,4,30617,3,1672319027),(102114,4,30618,3,1672319027),(102115,4,30619,3,1672319027),(102116,4,30620,3,1672319027),(102117,4,30621,3,1672319027),(102118,4,30622,3,1672319027),(102119,4,30623,3,1672319027),(102120,4,30624,3,1672319027),(102121,4,30625,3,1672319027),(102122,4,30626,3,1672319027),(102123,4,30627,3,1672319027),(102124,4,30628,3,1672319027),(102125,4,30629,3,1672319027),(102126,4,30630,3,1672319027),(102127,4,30631,3,1672319027),(102128,4,30632,3,1672319027),(102129,4,30633,3,1672319027),(102130,4,30634,3,1672319027),(102131,4,30635,3,1672319027),(102132,4,30636,3,1672319027),(102133,4,30637,3,1672319027),(102134,4,30638,3,1672319027),(102135,4,30639,3,1672319027),(102136,4,30640,3,1672319027),(102137,4,30641,3,1672319027),(102138,4,30642,3,1672319027),(102139,4,30643,3,1672319027),(102140,4,30644,3,1672319027),(102141,4,30645,3,1672319027),(102142,4,30646,3,1672319027),(102143,4,30647,3,1672319027),(102144,4,30648,3,1672319027),(102145,4,30649,3,1672319027),(102146,4,30650,3,1672319027),(102147,4,30651,3,1672319027),(102148,4,30652,3,1672319027),(102149,4,30653,3,1672319027),(102150,4,30654,3,1672319027),(102151,4,30655,3,1672319027),(102152,4,30656,3,1672319027),(102153,4,30657,3,1672319027),(102154,4,30658,3,1672319027),(102155,4,30659,3,1672319027),(102156,4,30660,3,1672319027),(102157,4,30661,3,1672319027),(102158,4,30662,3,1672319027),(102159,4,30663,3,1672319027),(102160,4,30664,3,1672319027),(102161,4,30665,3,1672319027),(102162,4,30666,3,1672319027),(102163,4,30667,3,1672319027),(102164,4,30668,3,1672319027),(102165,4,30669,3,1672319027),(102166,4,30670,3,1672319027),(102167,4,30671,3,1672319027),(102168,4,30672,3,1672319027),(102169,4,30673,3,1672319027),(102170,4,30674,3,1672319027),(102171,4,30675,3,1672319027),(102172,4,30676,3,1672319027),(102173,4,30677,3,1672319027),(102174,4,30678,3,1672319027),(102175,4,30679,3,1672319027),(102176,4,30680,3,1672319027),(102177,4,30681,3,1672319027),(102178,4,30682,3,1672319027),(102179,4,30683,3,1672319027),(102180,4,30684,3,1672319027),(102181,4,30685,3,1672319027),(102182,4,30686,3,1672319027),(102183,4,30687,3,1672319027),(102184,4,30688,3,1672319027),(102185,4,30689,3,1672319027),(102186,4,30690,3,1672319027),(102187,4,30691,3,1672319027),(102188,4,30692,3,1672319027),(102189,4,30693,3,1672319027),(102190,4,30694,3,1672319027),(102191,4,30695,3,1672319027),(102192,4,30696,3,1672319027),(102193,4,30697,3,1672319027),(102194,4,30698,3,1672319027),(102195,4,30699,3,1672319027),(102196,4,30700,3,1672319027),(102197,4,30701,3,1672319027),(102198,4,30702,3,1672319027),(102199,4,30703,3,1672319027),(102200,4,30704,3,1672319027),(102201,4,30705,3,1672319027),(102202,4,30706,3,1672319027),(102203,4,30707,3,1672319027),(102204,4,30708,3,1672319027),(102205,4,30709,3,1672319027),(102206,4,30710,3,1672319027),(102207,4,30711,3,1672319027),(102208,4,30712,3,1672319027),(102209,4,30713,3,1672319027),(102210,4,30714,3,1672319027),(102211,4,30715,3,1672319027),(102212,4,30716,3,1672319027),(102213,4,30717,3,1672319027),(102214,4,30718,3,1672319027),(102215,4,30719,3,1672319027),(102216,4,30720,3,1672319027),(102217,4,30721,3,1672319027),(102218,4,30722,3,1672319027),(102219,4,30723,3,1672319027),(102220,4,30724,3,1672319027),(102221,4,30725,3,1672319027),(102222,4,30726,3,1672319027),(102223,4,30727,3,1672319027),(102224,4,30728,3,1672319027),(102225,4,30729,3,1672319027),(102226,4,30730,3,1672319027),(102227,4,30731,3,1672319027),(102228,4,30732,3,1672319027),(102229,4,30733,3,1672319027),(102230,4,30734,3,1672319027),(102231,4,30735,3,1672319027),(102232,4,30736,3,1672319027),(102233,4,30737,3,1672319027),(102234,4,30738,3,1672319027),(102235,4,30739,3,1672319027),(102236,4,30740,3,1672319027),(102237,4,30741,3,1672319027),(102238,4,30742,3,1672319027),(102239,4,30743,3,1672319027),(102240,4,30744,3,1672319027),(102241,4,30745,3,1672319027),(102242,4,30746,3,1672319027),(102243,4,30747,3,1672319027),(102244,4,30748,3,1672319027),(102245,4,30749,3,1672319027),(102246,4,30750,3,1672319027),(102247,4,30751,3,1672319027),(102248,4,30752,3,1672319027),(102249,4,30753,3,1672319027),(102250,4,30754,3,1672319027),(102251,4,30755,3,1672319027),(102252,4,30756,3,1672319027),(102253,4,30757,3,1672319027),(102254,4,30758,3,1672319027),(102255,4,30759,3,1672319027),(102256,4,30760,3,1672319027),(102257,4,30761,3,1672319027),(102258,4,30762,3,1672319027),(102259,4,30763,3,1672319027),(102260,4,30764,3,1672319027),(102261,4,30765,3,1672319027),(102262,4,30766,3,1672319027),(102263,4,30767,3,1672319027),(102264,4,30768,3,1672319027),(102265,4,30769,3,1672319027),(102266,4,30770,3,1672319027),(102267,4,30771,3,1672319027),(102268,4,30772,3,1672319027),(102269,4,30773,3,1672319027),(102270,4,30774,3,1672319027),(102271,4,30775,3,1672319027),(102272,4,30776,3,1672319027),(102273,4,30777,3,1672319027),(102274,4,30778,3,1672319027),(102275,4,30779,3,1672319027),(102276,4,30780,3,1672319027),(102277,4,30781,3,1672319027),(102278,4,30782,3,1672319027),(102279,4,30783,3,1672319027),(102280,4,30784,3,1672319027),(102281,4,30785,3,1672319027),(102282,4,30786,3,1672319027),(102283,4,30787,3,1672319027),(102284,4,30788,3,1672319027),(102285,4,30789,3,1672319027),(102286,4,30790,3,1672319027),(102287,4,30791,3,1672319027),(102288,4,30792,3,1672319027),(102289,4,30793,3,1672319027),(102290,4,30794,3,1672319027),(102291,4,30795,3,1672319027),(102292,4,30796,3,1672319027),(102293,4,30797,3,1672319027),(102294,4,30798,3,1672319027),(102295,4,30799,3,1672319027),(102296,4,30800,3,1672319027),(102297,4,30801,3,1672319027),(102298,4,30802,3,1672319027),(102299,4,30803,3,1672319027),(102300,4,30804,3,1672319027),(102301,4,30805,3,1672319027),(102302,4,30806,3,1672319027),(102303,4,30807,3,1672319027),(102304,4,30808,3,1672319027),(102305,4,30809,3,1672319027),(102306,4,30810,3,1672319027),(102307,4,30811,3,1672319027),(102308,4,30812,3,1672319027),(102309,4,30813,3,1672319027),(102310,4,30814,3,1672319027),(102311,4,30815,3,1672319027),(102312,4,30816,3,1672319027),(102313,4,30817,3,1672319027),(102314,4,30818,3,1672319027),(102315,4,30819,3,1672319027),(102316,4,30820,3,1672319027),(102317,4,30821,3,1672319027),(102318,4,30822,3,1672319027),(102319,4,30823,3,1672319027),(102320,4,30824,3,1672319027),(102321,4,30825,3,1672319027),(102322,4,30826,3,1672319027),(102323,4,30827,3,1672319027),(102324,4,30828,3,1672319027),(102325,4,30829,3,1672319027),(102326,4,30830,3,1672319027),(102327,4,30831,3,1672319027),(102328,4,30832,3,1672319027),(102329,4,30833,3,1672319027),(102330,4,30834,3,1672319027),(102331,4,30835,3,1672319027),(102332,4,30836,3,1672319027),(102333,4,30837,3,1672319027),(102334,4,30838,3,1672319027),(102335,4,30839,3,1672319027),(102336,4,30840,3,1672319027),(102337,4,30841,3,1672319027),(102338,4,30842,3,1672319027),(102339,4,30843,3,1672319027),(102340,4,30844,3,1672319027),(102341,4,30845,3,1672319027),(102342,4,30846,3,1672319027),(102343,4,30847,3,1672319027),(102344,4,30848,3,1672319027),(102345,4,30849,3,1672319027),(102346,4,30850,3,1672319027),(102347,4,30851,3,1672319027),(102348,4,30852,3,1672319027),(102349,4,30853,3,1672319027),(102350,4,30854,3,1672319027),(102351,4,30855,3,1672319027),(102352,4,30856,3,1672319027),(102353,4,30857,3,1672319027),(102354,4,30858,3,1672319027),(102355,4,30859,3,1672319027),(102356,4,30860,3,1672319027),(102357,4,30861,3,1672319027),(102358,4,30862,3,1672319027),(102359,4,30863,3,1672319027),(102360,4,30864,3,1672319027),(102361,4,30865,3,1672319027),(102362,4,30866,3,1672319027),(102363,4,30867,3,1672319027),(102364,4,30868,3,1672319027),(102365,4,30869,3,1672319027),(102366,4,30870,3,1672319027),(102367,4,30871,3,1672319027),(102368,4,30872,3,1672319027),(102369,4,30873,3,1672319027),(102370,4,30874,3,1672319027),(102371,4,30875,3,1672319027),(102372,4,30876,3,1672319027),(102373,4,30877,3,1672319027),(102374,4,30878,3,1672319027),(102375,4,30879,3,1672319027),(102376,4,30880,3,1672319027),(102377,4,30881,3,1672319027),(102378,4,30882,3,1672319027),(102379,4,30883,3,1672319027),(102380,4,30884,3,1672319027),(102381,4,30885,3,1672319027),(102382,4,30886,3,1672319027),(102383,4,30887,3,1672319027),(102384,4,30888,3,1672319027),(102385,4,30889,3,1672319027),(102386,4,30890,3,1672319027),(102387,4,30891,3,1672319027),(102388,4,30892,3,1672319027),(102389,4,30893,3,1672319027),(102390,4,30894,3,1672319027),(102391,4,30895,3,1672319027),(102392,4,30896,3,1672319027),(102393,4,30897,3,1672319027),(102394,4,30898,3,1672319027),(102395,4,30899,3,1672319027),(102396,4,30900,3,1672319027),(102397,4,30901,3,1672319027),(102398,4,30902,3,1672319027),(102399,4,30903,3,1672319027),(102400,4,30904,3,1672319027),(102401,4,30905,3,1672319027),(102402,4,30906,3,1672319027),(102403,4,30907,3,1672319027),(102404,4,30908,3,1672319027),(102405,4,30909,3,1672319027),(102406,4,30910,3,1672319027),(102407,4,30911,3,1672319027),(102408,4,30912,3,1672319027),(102409,4,30913,3,1672319027),(102410,4,30914,3,1672319027),(102411,4,30915,3,1672319027),(102412,4,30916,3,1672319027),(102413,4,30917,3,1672319027),(102414,4,30918,3,1672319027),(102415,4,30919,3,1672319027),(102416,4,30920,3,1672319027),(102417,4,30921,3,1672319027),(102418,4,30922,3,1672319027),(102419,4,30923,3,1672319027),(102420,4,30924,3,1672319027),(102421,4,30925,3,1672319027),(102422,4,30926,3,1672319027),(102423,4,30927,3,1672319027),(102424,4,30928,3,1672319027),(102425,4,30929,3,1672319027),(102426,4,30930,3,1672319027),(102427,4,30931,3,1672319027),(102428,4,30932,3,1672319027),(102429,4,30933,3,1672319027),(102430,4,30934,3,1672319027),(102431,4,30935,3,1672319027),(102432,4,30936,3,1672319027),(102433,4,30937,3,1672319027),(102434,4,30938,3,1672319027),(102435,4,30939,3,1672319027),(102436,4,30940,3,1672319027),(102437,4,30941,3,1672319027),(102438,4,30942,3,1672319027),(102439,4,30943,3,1672319027),(102440,4,30944,3,1672319027),(102441,4,30945,3,1672319027),(102442,4,30946,3,1672319027),(102443,4,30947,3,1672319027),(102444,4,30948,3,1672319027),(102445,4,30949,3,1672319027),(102446,4,30950,3,1672319027),(102447,4,30951,3,1672319027),(102448,4,30952,3,1672319027),(102449,4,30953,3,1672319027),(102450,4,30954,3,1672319027),(102451,4,30955,3,1672319027),(102452,4,30956,3,1672319027),(102453,4,30957,3,1672319027),(102454,4,30958,3,1672319027),(102455,4,30959,3,1672319027),(102456,4,30960,3,1672319027),(102457,4,30961,3,1672319027),(102458,4,30962,3,1672319027),(102459,4,30963,3,1672319027),(102460,4,30964,3,1672319027),(102461,4,30965,3,1672319027),(102462,4,30966,3,1672319027),(102463,4,30967,3,1672319027),(102464,4,30968,3,1672319027),(102465,4,30969,3,1672319027),(102466,4,30970,3,1672319027),(102467,4,30971,3,1672319027),(102468,4,30972,3,1672319027),(102469,4,30973,3,1672319027),(102470,4,30974,3,1672319027),(102471,4,30975,3,1672319027),(102472,4,30976,3,1672319027),(102473,4,30977,3,1672319027),(102474,4,30978,3,1672319027),(102475,4,30979,3,1672319027),(102476,4,30980,3,1672319027),(102477,4,30981,3,1672319027),(102478,4,30982,3,1672319027),(102479,4,30983,3,1672319027),(102480,4,30984,3,1672319027),(102481,4,30985,3,1672319027),(102482,4,30986,3,1672319027),(102483,4,30987,3,1672319027),(102484,4,30988,3,1672319027),(102485,4,30989,3,1672319027),(102486,4,30990,3,1672319027),(102487,4,30991,3,1672319027),(102488,4,30992,3,1672319027),(102489,4,30993,3,1672319027),(102490,4,30994,3,1672319027),(102491,4,30995,3,1672319027),(102492,4,30996,3,1672319027),(102493,4,30997,3,1672319027),(102494,4,30998,3,1672319027),(102495,4,30999,3,1672319027),(102496,4,31000,3,1672319027),(102497,4,31001,3,1672319027),(102498,4,31002,3,1672319027),(102499,4,31003,3,1672319027),(102500,4,31004,3,1672319027),(102501,4,31005,3,1672319027),(102502,4,31006,3,1672319027),(102503,4,31007,3,1672319027),(102504,4,31008,3,1672319027),(102505,4,31009,3,1672319027),(102506,4,31010,3,1672319027),(102507,4,31011,3,1672319027),(102508,4,31012,3,1672319027),(102509,4,31013,3,1672319027),(102510,4,31014,3,1672319027),(102511,4,31015,3,1672319027),(102512,4,31016,3,1672319027),(102513,4,31017,3,1672319027),(102514,4,31018,3,1672319027),(102515,4,31019,3,1672319027),(102516,4,31020,3,1672319027),(102517,4,31021,3,1672319027),(102518,4,31022,3,1672319027),(102519,4,31023,3,1672319027),(102520,4,31024,3,1672319027),(102521,4,31025,3,1672319027),(102522,4,31026,3,1672319027),(102523,4,31027,3,1672319027),(102524,4,31028,3,1672319027),(102525,4,31029,3,1672319027),(102526,4,31030,3,1672319027),(102527,4,31031,3,1672319027),(102528,4,31032,3,1672319027),(102529,4,31033,3,1672319027),(102530,4,31034,3,1672319027),(102531,4,31035,3,1672319027),(102532,4,31036,3,1672319027),(102533,4,31037,3,1672319027),(102534,4,31038,3,1672319027),(102535,4,31039,3,1672319027),(102536,4,31040,3,1672319027),(102537,4,31041,3,1672319027),(102538,4,31042,3,1672319027),(102539,4,31043,3,1672319027),(102540,4,31044,3,1672319027),(102541,4,31045,3,1672319027),(102542,4,31046,3,1672319027),(102543,4,31047,3,1672319027),(102544,4,31048,3,1672319027),(102545,4,31049,3,1672319027),(102546,4,31050,3,1672319027),(102547,4,31051,3,1672319027),(102548,4,31052,3,1672319027),(102549,4,31053,3,1672319027),(102550,4,31054,3,1672319027),(102551,4,31055,3,1672319027),(102552,4,31056,3,1672319027),(102553,4,31057,3,1672319027),(102554,4,31058,3,1672319027),(102555,4,31059,3,1672319027),(102556,4,31060,3,1672319027),(102557,4,31061,3,1672319027),(102558,4,31062,3,1672319027),(102559,4,31063,3,1672319027),(102560,4,31064,3,1672319027),(102561,4,31065,3,1672319027),(102562,4,31066,3,1672319027),(102563,4,31067,3,1672319027),(102564,4,31068,3,1672319027),(102565,4,31069,3,1672319027),(102566,4,31070,3,1672319027),(102567,4,31071,3,1672319027),(102568,4,31072,3,1672319027),(102569,4,31073,3,1672319027),(102570,4,31074,3,1672319027),(102571,4,31075,3,1672319027),(102572,4,31076,3,1672319027),(102573,4,31077,3,1672319027),(102574,4,31078,3,1672319027),(102575,4,31079,3,1672319027),(102576,4,31080,3,1672319027),(102577,4,31081,3,1672319027),(102578,4,31082,3,1672319027),(102579,4,31083,3,1672319027),(102580,4,31084,3,1672319027),(102581,4,31085,3,1672319027),(102582,4,31086,3,1672319027),(102583,4,31087,3,1672319027),(102584,4,31088,3,1672319027),(102585,4,31089,3,1672319027),(102586,4,31090,3,1672319027),(102587,4,31091,3,1672319027),(102588,4,31092,3,1672319027),(102589,4,31093,3,1672319027),(102590,4,31094,3,1672319027),(102591,4,31095,3,1672319027),(102592,4,31096,3,1672319027),(102593,4,31097,3,1672319027),(102594,4,31098,3,1672319027),(102595,4,31099,3,1672319027),(102596,4,31100,3,1672319027),(102597,4,31101,3,1672319027),(102598,4,31102,3,1672319027),(102599,4,31103,3,1672319027),(102600,4,31104,3,1672319027),(102601,4,31105,3,1672319027),(102602,4,31106,3,1672319027),(102603,4,31107,3,1672319027),(102604,4,31108,3,1672319027),(102605,4,31109,3,1672319027),(102606,4,31110,3,1672319027),(102607,4,31111,3,1672319027),(102608,4,31112,3,1672319027),(102609,4,31113,3,1672319027),(102610,4,31114,3,1672319027),(102611,4,31115,3,1672319027),(102612,4,31116,3,1672319027),(102613,4,31117,3,1672319027),(102614,4,31118,3,1672319027),(102615,4,31119,3,1672319027),(102616,4,31120,3,1672319027),(102617,4,31121,3,1672319027),(102618,4,31122,3,1672319027),(102619,4,31123,3,1672319027),(102620,4,31124,3,1672319027),(102621,4,31125,3,1672319027),(102622,4,31126,3,1672319027),(102623,4,31127,3,1672319027),(102624,4,31128,3,1672319027),(102625,4,31129,3,1672319027),(102626,4,31130,3,1672319027),(102627,4,31131,3,1672319027),(102628,4,31132,3,1672319027),(102629,4,31133,3,1672319027),(102630,4,31134,3,1672319027),(102631,4,31135,3,1672319027),(102632,4,31136,3,1672319027),(102633,4,31137,3,1672319027),(102634,4,31138,3,1672319027),(102635,4,31139,3,1672319027),(102636,4,31140,3,1672319027),(102637,4,31141,3,1672319027),(102638,4,31142,3,1672319027),(102639,4,31143,3,1672319027),(102640,4,31144,3,1672319027),(102641,4,31145,3,1672319027),(102642,4,31146,3,1672319027),(102643,4,31147,3,1672319027),(102644,4,31148,3,1672319027),(102645,4,31149,3,1672319027),(102646,4,31150,3,1672319027),(102647,4,31151,3,1672319027),(102648,4,31152,3,1672319027),(102649,4,31153,3,1672319027),(102650,4,31154,3,1672319027),(102651,4,31155,3,1672319027),(102652,4,31156,3,1672319027),(102653,4,31157,3,1672319027),(102654,4,31158,3,1672319027),(102655,4,31159,3,1672319027),(102656,4,31160,3,1672319027),(102657,4,31161,3,1672319027),(102658,4,31162,3,1672319027),(102659,4,31163,3,1672319027),(102660,4,31164,3,1672319027),(102661,4,31165,3,1672319027),(102662,4,31166,3,1672319027),(102663,4,31167,3,1672319027),(102664,4,31168,3,1672319027),(102665,4,31169,3,1672319027),(102666,4,31170,3,1672319027),(102667,4,31171,3,1672319027),(102668,4,31172,3,1672319027),(102669,4,31173,3,1672319027),(102670,4,31174,3,1672319027),(102671,4,31175,3,1672319027),(102672,4,31176,3,1672319027),(102673,4,31177,3,1672319027),(102674,4,31178,3,1672319027),(102675,4,31179,3,1672319027),(102676,4,31180,3,1672319027),(102677,4,31181,3,1672319027),(102678,4,31182,3,1672319027),(102679,4,31183,3,1672319027),(102680,4,31184,3,1672319027),(102681,4,31185,3,1672319027),(102682,4,31186,3,1672319027),(102683,4,31187,3,1672319027),(102684,4,31188,3,1672319027),(102685,4,31189,3,1672319027),(102686,4,31190,3,1672319027),(102687,4,31191,3,1672319027),(102688,4,31192,3,1672319027),(102689,4,31193,3,1672319027),(102690,4,31194,3,1672319027),(102691,4,31195,3,1672319027),(102692,4,31196,3,1672319027),(102693,4,31197,3,1672319027),(102694,4,31198,3,1672319027),(102695,4,31199,3,1672319027),(102696,4,31200,3,1672319027),(102697,4,31201,3,1672319027),(102698,4,31202,3,1672319027),(102699,4,31203,3,1672319027),(102700,4,31204,3,1672319027),(102701,4,31205,3,1672319027),(102702,4,31206,3,1672319027),(102703,4,31207,3,1672319027),(102704,4,31208,3,1672319027),(102705,4,31209,3,1672319027),(102706,4,31210,3,1672319027),(102707,4,31211,3,1672319027),(102708,4,31212,3,1672319027),(102709,4,31213,3,1672319027),(102710,4,31214,3,1672319027),(102711,4,31215,3,1672319027),(102712,4,31216,3,1672319027),(102713,4,31217,3,1672319027),(102714,4,31218,3,1672319027),(102715,4,31219,3,1672319027),(102716,4,31220,3,1672319027),(102717,4,31221,3,1672319027),(102718,4,31222,3,1672319027),(102719,4,31223,3,1672319027),(102720,4,31224,3,1672319027),(102721,4,31225,3,1672319027),(102722,4,31226,3,1672319027),(102723,4,31227,3,1672319027),(102724,4,31228,3,1672319027),(102725,4,31229,3,1672319027),(102726,4,31230,3,1672319027),(102727,4,31231,3,1672319027),(102728,4,31232,3,1672319027),(102729,4,31233,3,1672319027),(102730,4,31234,3,1672319027),(102731,4,31235,3,1672319027),(102732,4,31236,3,1672319027),(102733,4,31237,3,1672319027),(102734,4,31238,3,1672319027),(102735,4,31239,3,1672319027),(102736,4,31240,3,1672319027),(102737,4,31241,3,1672319027),(102738,4,31242,3,1672319027),(102739,4,31243,3,1672319027),(102740,4,31244,3,1672319027),(102741,4,31245,3,1672319027),(102742,4,31246,3,1672319027),(102743,4,31247,3,1672319027),(102744,4,31248,3,1672319027),(102745,4,31249,3,1672319027),(102746,4,31250,3,1672319027),(102747,4,31251,3,1672319027),(102748,4,31252,3,1672319027),(102749,4,31253,3,1672319027),(102750,4,31254,3,1672319027),(102751,4,31255,3,1672319027),(102752,4,31256,3,1672319027),(102753,4,31257,3,1672319027),(102754,4,31258,3,1672319027),(102755,4,31259,3,1672319027),(102756,4,31260,3,1672319027),(102757,4,31261,3,1672319027),(102758,4,31262,3,1672319027),(102759,4,31263,3,1672319027),(102760,4,31264,3,1672319027),(102761,4,31265,3,1672319027),(102762,4,31266,3,1672319027),(102763,4,31267,3,1672319027),(102764,4,31268,3,1672319027),(102765,4,31269,3,1672319027),(102766,4,31270,3,1672319027),(102767,4,31271,3,1672319027),(102768,4,31272,3,1672319027),(102769,4,31273,3,1672319027),(102770,4,31274,3,1672319027),(102771,4,31275,3,1672319027),(102772,4,31276,3,1672319027),(102773,4,31277,3,1672319027),(102774,4,31278,3,1672319027),(102775,4,31279,3,1672319027),(102776,4,31280,3,1672319027),(102777,4,31281,3,1672319027),(102778,4,31282,3,1672319027),(102779,4,31283,3,1672319027),(102780,4,31284,3,1672319027),(102781,4,31285,3,1672319027),(102782,4,31286,3,1672319027),(102783,4,31287,3,1672319027),(102784,4,31288,3,1672319027),(102785,4,31289,3,1672319027),(102786,4,31290,3,1672319027),(102787,4,31291,3,1672319027),(102788,4,31292,3,1672319027),(102789,4,31293,3,1672319027),(102790,4,31294,3,1672319027),(102791,4,31295,3,1672319027),(102792,4,31296,3,1672319027),(102793,4,31297,3,1672319027),(102794,4,31298,3,1672319027),(102795,4,31299,3,1672319027),(102796,4,31300,3,1672319027),(102797,4,31301,3,1672319027),(102798,4,31302,3,1672319027),(102799,4,31303,3,1672319027),(102800,4,31304,3,1672319027),(102801,4,31305,3,1672319027),(102802,4,31306,3,1672319027),(102803,4,31307,3,1672319027),(102804,4,31308,3,1672319027),(102805,4,31309,3,1672319027),(102806,4,31310,3,1672319027),(102807,4,31311,3,1672319027),(102808,4,31312,3,1672319027),(102809,4,31313,3,1672319027),(102810,4,31314,3,1672319027),(102811,4,31315,3,1672319027),(102812,4,31316,3,1672319027),(102813,4,31317,3,1672319027),(102814,4,31318,3,1672319027),(102815,4,31319,3,1672319027),(102816,4,31320,3,1672319027),(102817,4,31321,3,1672319027),(102818,4,31322,3,1672319027),(102819,4,31323,3,1672319027),(102820,4,31324,3,1672319027),(102821,4,31325,3,1672319027),(102822,4,31326,3,1672319027),(102823,4,31327,3,1672319027),(102824,4,31328,3,1672319027),(102825,4,31329,3,1672319027),(102826,4,31330,3,1672319027),(102827,4,31331,3,1672319027),(102828,4,31332,3,1672319027),(102829,4,31333,3,1672319027),(102830,4,31334,3,1672319027),(102831,4,31335,3,1672319027),(102832,4,31336,3,1672319027),(102833,4,31337,3,1672319027),(102834,4,31338,3,1672319027),(102835,4,31339,3,1672319027),(102836,4,31340,3,1672319027),(102837,4,31341,3,1672319027),(102838,4,31342,3,1672319027),(102839,4,31343,3,1672319027),(102840,4,31344,3,1672319027),(102841,4,31345,3,1672319027),(102842,4,31346,3,1672319027),(102843,4,31347,3,1672319027),(102844,4,31348,3,1672319027),(102845,4,31349,3,1672319027),(102846,4,31350,3,1672319027),(102847,4,31351,3,1672319027),(102848,4,31352,3,1672319027),(102849,4,31353,3,1672319027),(102850,4,31354,3,1672319027),(102851,4,31355,3,1672319027),(102852,4,31356,3,1672319027),(102853,4,31357,3,1672319027),(102854,4,31358,3,1672319027),(102855,4,31359,3,1672319027),(102856,4,31360,3,1672319027),(102857,4,31361,3,1672319027),(102858,4,31362,3,1672319027),(102859,4,31363,3,1672319027),(102860,4,31364,3,1672319027),(102861,4,31365,3,1672319027),(102862,4,31366,3,1672319027),(102863,4,31367,3,1672319027),(102864,4,31368,3,1672319027),(102865,4,31369,3,1672319027),(102866,4,31370,3,1672319027),(102867,4,31371,3,1672319027),(102868,4,31372,3,1672319027),(102869,4,31373,3,1672319027),(102870,4,31374,3,1672319027),(102871,4,31375,3,1672319027),(102872,4,31376,3,1672319027),(102873,4,31377,3,1672319027),(102874,4,31378,3,1672319027),(102875,4,31379,3,1672319027),(102876,4,31380,3,1672319027),(102877,4,31381,3,1672319027),(102878,4,31382,3,1672319027),(102879,4,31383,3,1672319027),(102880,4,31384,3,1672319027),(102881,4,31385,3,1672319027),(102882,4,31386,3,1672319027),(102883,4,31387,3,1672319027),(102884,4,31388,3,1672319027),(102885,4,31389,3,1672319027),(102886,4,31390,3,1672319027),(102887,4,31391,3,1672319027),(102888,4,31392,3,1672319027),(102889,4,31393,3,1672319027),(102890,4,31394,3,1672319027),(102891,4,31395,3,1672319027),(102892,4,31396,3,1672319027),(102893,4,31397,3,1672319027),(102894,4,31398,3,1672319027),(102895,4,31399,3,1672319027),(102896,4,31400,3,1672319027),(102897,4,31401,3,1672319027),(102898,4,31402,3,1672319027),(102899,4,31403,3,1672319027),(102900,4,31404,3,1672319027),(102901,4,31405,3,1672319027),(102902,4,31406,3,1672319027),(102903,4,31407,3,1672319027),(102904,4,31408,3,1672319027),(102905,4,31409,3,1672319027),(102906,4,31410,3,1672319027),(102907,4,31411,3,1672319027),(102908,4,31412,3,1672319027),(102909,4,31413,3,1672319027),(102910,4,31414,3,1672319027),(102911,4,31415,3,1672319027),(102912,4,31416,3,1672319027),(102913,4,31417,3,1672319027),(102914,4,31418,3,1672319027),(102915,4,31419,3,1672319027),(102916,4,31420,3,1672319027),(102917,4,31421,3,1672319027),(102918,4,31422,3,1672319027),(102919,4,31423,3,1672319027),(102920,4,31424,3,1672319027),(102921,4,31425,3,1672319027),(102922,4,31426,3,1672319027),(102923,4,31427,3,1672319027),(102924,4,31428,3,1672319027),(102925,4,31429,3,1672319027),(102926,4,31430,3,1672319027),(102927,4,31431,3,1672319027),(102928,4,31432,3,1672319027),(102929,4,31433,3,1672319027),(102930,4,31434,3,1672319027),(102931,4,31435,3,1672319027),(102932,4,31436,3,1672319027),(102933,4,31437,3,1672319027),(102934,4,31438,3,1672319027),(102935,4,31439,3,1672319027),(102936,4,31440,3,1672319027),(102937,4,31441,3,1672319027),(102938,4,31442,3,1672319027),(102939,4,31443,3,1672319027),(102940,4,31444,3,1672319027),(102941,4,31445,3,1672319027),(102942,4,31446,3,1672319027),(102943,4,31447,3,1672319027),(102944,4,31448,3,1672319027),(102945,4,31449,3,1672319027),(102946,4,31450,3,1672319027),(102947,4,31451,3,1672319027),(102948,4,31452,3,1672319027),(102949,4,31453,3,1672319027),(102950,4,31454,3,1672319027),(102951,4,31455,3,1672319027),(102952,4,31456,3,1672319027),(102953,4,31457,3,1672319027),(102954,4,31458,3,1672319027),(102955,4,31459,3,1672319027),(102956,4,31460,3,1672319027),(102957,4,31461,3,1672319027),(102958,4,31462,3,1672319027),(102959,4,31463,3,1672319027),(102960,4,31464,3,1672319027),(102961,4,31465,3,1672319027),(102962,4,31466,3,1672319027),(102963,4,31467,3,1672319027),(102964,4,31468,3,1672319027),(102965,4,31469,3,1672319027),(102966,4,31470,3,1672319027),(102967,4,31471,3,1672319027),(102968,4,31472,3,1672319027),(102969,4,31473,3,1672319027),(102970,4,31474,3,1672319027),(102971,4,31475,3,1672319027),(102972,4,31476,3,1672319027),(102973,4,31477,3,1672319027),(102974,4,31478,3,1672319027),(102975,4,31479,3,1672319027),(102976,4,31480,3,1672319027),(102977,4,31481,3,1672319027),(102978,4,31482,3,1672319027),(102979,4,31483,3,1672319027),(102980,4,31484,3,1672319027),(102981,4,31485,3,1672319027),(102982,4,31486,3,1672319027),(102983,4,31487,3,1672319027),(102984,4,31488,3,1672319027),(102985,4,31489,3,1672319027),(102986,4,31490,3,1672319027),(102987,4,31491,3,1672319027),(102988,4,31492,3,1672319027),(102989,4,31493,3,1672319027),(102990,4,31494,3,1672319027),(102991,4,31495,3,1672319027),(102992,4,31496,3,1672319027),(102993,4,31497,3,1672319027),(102994,4,31498,3,1672319027),(102995,4,31499,3,1672319027),(102996,4,31500,3,1672319027),(102997,4,31501,3,1672319027),(102998,4,31502,3,1672319027),(102999,4,31503,3,1672319027),(103000,4,31504,3,1672319027),(103001,4,31505,3,1672319027),(103002,4,31506,3,1672319027),(103003,4,31507,3,1672319027),(103004,4,31508,3,1672319027),(103005,4,31509,3,1672319027),(103006,4,31510,3,1672319027),(103007,4,31511,3,1672319027),(103008,4,31512,3,1672319027),(103009,4,31513,3,1672319027),(103010,4,31514,3,1672319027),(103011,4,31515,3,1672319027),(103012,4,31516,3,1672319027),(103013,4,31517,3,1672319027),(103014,4,31518,3,1672319027),(103015,4,31519,3,1672319027),(103016,4,31520,3,1672319027),(103017,4,31521,3,1672319027),(103018,4,31522,3,1672319027),(103019,4,31523,3,1672319027),(103020,4,31524,3,1672319027),(103021,4,31525,3,1672319027),(103022,4,31526,3,1672319027),(103023,4,31527,3,1672319027),(103024,4,31528,3,1672319027),(103025,4,31529,3,1672319027),(103026,4,31530,3,1672319027),(103027,4,31531,3,1672319027),(103028,4,31532,3,1672319027),(103029,4,31533,3,1672319027),(103030,4,31534,3,1672319027),(103031,4,31535,3,1672319027),(103032,4,31536,3,1672319027),(103033,4,31537,3,1672319027),(103034,4,31538,3,1672319027),(103035,4,31539,3,1672319027),(103036,4,31540,3,1672319027),(103037,4,31541,3,1672319027),(103038,4,31542,3,1672319027),(103039,4,31543,3,1672319027),(103040,4,31544,3,1672319027),(103041,4,31545,3,1672319027),(103042,4,31546,3,1672319027),(103043,4,31547,3,1672319027),(103044,4,31548,3,1672319027),(103045,4,31549,3,1672319027),(103046,4,31550,3,1672319027),(103047,4,31551,3,1672319027),(103048,4,31552,3,1672319027),(103049,4,31553,3,1672319027),(103050,4,31554,3,1672319027),(103051,4,31555,3,1672319027),(103052,4,31556,3,1672319027),(103053,4,31557,3,1672319027),(103054,4,31558,3,1672319027),(103055,4,31559,3,1672319027),(103056,4,31560,3,1672319027),(103057,4,31561,3,1672319027),(103058,4,31562,3,1672319027),(103059,4,31563,3,1672319027),(103060,4,31564,3,1672319027),(103061,4,31565,3,1672319027),(103062,4,31566,3,1672319027),(103063,4,31567,3,1672319027),(103064,4,31568,3,1672319027),(103065,4,31569,3,1672319027),(103066,4,31570,3,1672319027),(103067,4,31571,3,1672319027),(103068,4,31572,3,1672319027),(103069,4,31573,3,1672319027),(103070,4,31574,3,1672319027),(103071,4,31575,3,1672319027),(103072,4,31576,3,1672319027),(103073,4,31577,3,1672319027),(103074,4,31578,3,1672319027),(103075,4,31579,3,1672319027),(103076,4,31580,3,1672319027),(103077,4,31581,3,1672319027),(103078,4,31582,3,1672319027),(103079,4,31583,3,1672319027),(103080,4,31584,3,1672319027),(103081,4,31585,3,1672319027),(103082,4,31586,3,1672319027),(103083,4,31587,3,1672319027),(103084,4,31588,3,1672319027),(103085,4,31589,3,1672319027),(103086,4,31590,3,1672319027),(103087,4,31591,3,1672319027),(103088,4,31592,3,1672319027),(103089,4,31593,3,1672319027),(103090,4,31594,3,1672319027),(103091,4,31595,3,1672319027),(103092,4,31596,3,1672319027),(103093,4,31597,3,1672319027),(103094,4,31598,3,1672319027),(103095,4,31599,3,1672319027),(103096,4,31600,3,1672319027),(103097,4,31601,3,1672319027),(103098,4,31602,3,1672319027),(103099,4,31603,3,1672319027),(103100,4,31604,3,1672319027),(103101,4,31605,3,1672319027),(103102,4,31606,3,1672319027),(103103,4,31607,3,1672319027),(103104,4,31608,3,1672319027),(103105,4,31609,3,1672319027),(103106,4,31610,3,1672319027),(103107,4,31611,3,1672319027),(103108,4,31612,3,1672319027),(103109,4,31613,3,1672319027),(103110,4,31614,3,1672319027),(103111,4,31615,3,1672319027),(103112,4,31616,3,1672319027),(103113,4,31617,3,1672319027),(103114,4,31618,3,1672319027),(103115,4,31619,3,1672319027),(103116,4,31620,3,1672319027),(103117,4,31621,3,1672319027),(103118,4,31622,3,1672319027),(103119,4,31623,3,1672319027),(103120,4,31624,3,1672319027),(103121,4,31625,3,1672319027),(103122,4,31626,3,1672319027),(103123,4,31627,3,1672319027),(103124,4,31628,3,1672319027),(103125,4,31629,3,1672319027),(103126,4,31630,3,1672319027),(103127,4,31631,3,1672319027),(103128,4,31632,3,1672319027),(103129,4,31633,3,1672319027),(103130,4,31634,3,1672319027),(103131,4,31635,3,1672319027),(103132,4,31636,3,1672319027),(103133,4,31637,3,1672319027),(103134,4,31638,3,1672319027),(103135,4,31639,3,1672319027),(103136,4,31640,3,1672319027),(103137,4,31641,3,1672319027),(103138,4,31642,3,1672319027),(103139,4,31643,3,1672319027),(103140,4,31644,3,1672319027),(103141,4,31645,3,1672319027),(103142,4,31646,3,1672319027),(103143,4,31647,3,1672319027),(103144,4,31648,3,1672319027),(103145,4,31649,3,1672319027),(103146,4,31650,3,1672319027),(103147,4,31651,3,1672319027),(103148,4,31652,3,1672319027),(103149,4,31653,3,1672319027),(103150,4,31654,3,1672319027),(103151,4,31655,3,1672319027),(103152,4,31656,3,1672319027),(103153,4,31657,3,1672319027),(103154,4,31658,3,1672319027),(103155,4,31659,3,1672319027),(103156,4,31660,3,1672319027),(103157,4,31661,3,1672319027),(103158,4,31662,3,1672319027),(103159,4,31663,3,1672319027),(103160,4,31664,3,1672319027),(103161,4,31665,3,1672319027),(103162,4,31666,3,1672319027),(103163,4,31667,3,1672319027),(103164,4,31668,3,1672319027),(103165,4,31669,3,1672319027),(103166,4,31670,3,1672319027),(103167,4,31671,3,1672319027),(103168,4,31672,3,1672319027),(103169,4,31673,3,1672319027),(103170,4,31674,3,1672319027),(103171,4,31675,3,1672319027),(103172,4,31676,3,1672319027),(103173,4,31677,3,1672319027),(103174,4,31678,3,1672319027),(103175,4,31679,3,1672319027),(103176,4,31680,3,1672319027),(103177,4,31681,3,1672319027),(103178,4,31682,3,1672319027),(103179,4,31683,3,1672319027),(103180,4,31684,3,1672319027),(103181,4,31685,3,1672319027),(103182,4,31686,3,1672319027),(103183,4,31687,3,1672319027),(103184,4,31688,3,1672319027),(103185,4,31689,3,1672319027),(103186,4,31690,3,1672319027),(103187,4,31691,3,1672319027),(103188,4,31692,3,1672319027),(103189,4,31693,3,1672319027),(103190,4,31694,3,1672319027),(103191,4,31695,3,1672319027),(103192,4,31696,3,1672319027),(103193,4,31697,3,1672319027),(103194,4,31698,3,1672319027),(103195,4,31699,3,1672319027),(103196,4,31700,3,1672319027),(103197,4,31701,3,1672319027),(103198,4,31702,3,1672319027),(103199,4,31703,3,1672319027),(103200,4,31704,3,1672319027),(103201,4,31705,3,1672319027),(103202,4,31706,3,1672319027),(103203,4,31707,3,1672319027),(103204,4,31708,3,1672319027),(103205,4,31709,3,1672319027),(103206,4,31710,3,1672319027),(103207,4,31711,3,1672319027),(103208,4,31712,3,1672319027),(103209,4,31713,3,1672319027),(103210,4,31714,3,1672319027),(103211,4,31715,3,1672319027),(103212,4,31716,3,1672319027),(103213,4,31717,3,1672319027),(103214,4,31718,3,1672319027),(103215,4,31719,3,1672319027),(103216,4,31720,3,1672319027),(103217,4,31721,3,1672319027),(103218,4,31722,3,1672319027),(103219,4,31723,3,1672319027),(103220,4,31724,3,1672319027),(103221,4,31725,3,1672319027),(103222,4,31726,3,1672319027),(103223,4,31727,3,1672319027),(103224,4,31728,3,1672319027),(103225,4,31729,3,1672319027),(103226,4,31730,3,1672319027),(103227,4,31731,3,1672319027),(103228,4,31732,3,1672319027),(103229,4,31733,3,1672319027),(103230,4,31734,3,1672319027),(103231,4,31735,3,1672319027),(103232,4,31736,3,1672319027),(103233,4,31737,3,1672319027),(103234,4,31738,3,1672319027),(103235,4,31739,3,1672319027),(103236,4,31740,3,1672319027),(103237,4,31741,3,1672319027),(103238,4,31742,3,1672319027),(103239,4,31743,3,1672319027),(103240,4,31744,3,1672319027),(103241,4,31745,3,1672319027),(103242,4,31746,3,1672319027),(103243,4,31747,3,1672319027),(103244,4,31748,3,1672319027),(103245,4,31749,3,1672319027),(103246,4,31750,3,1672319027),(103247,4,31751,3,1672319027),(103248,4,31752,3,1672319027),(103249,4,31753,3,1672319027),(103250,4,31754,3,1672319027),(103251,4,31755,3,1672319027),(103252,4,31756,3,1672319027),(103253,4,31757,3,1672319027),(103254,4,31758,3,1672319027),(103255,4,31759,3,1672319027),(103256,4,31760,3,1672319027),(103257,4,31761,3,1672319027),(103258,4,31762,3,1672319027),(103259,4,31763,3,1672319027),(103260,4,31764,3,1672319027),(103261,4,31765,3,1672319027),(103262,4,31766,3,1672319027),(103263,4,31767,3,1672319027),(103264,4,31768,3,1672319027),(103265,4,31769,3,1672319027),(103266,4,31770,3,1672319027),(103267,4,31771,3,1672319027),(103268,4,31772,3,1672319027),(103269,4,31773,3,1672319027),(103270,4,31774,3,1672319027),(103271,4,31775,3,1672319027),(103272,4,31776,3,1672319027),(103273,4,31777,3,1672319027),(103274,4,31778,3,1672319027),(103275,4,31779,3,1672319027),(103276,4,31780,3,1672319027),(103277,4,31781,3,1672319027),(103278,4,31782,3,1672319027),(103279,4,31783,3,1672319027),(103280,4,31784,3,1672319027),(103281,4,31785,3,1672319027),(103282,4,31786,3,1672319027),(103283,4,31787,3,1672319027),(103284,4,31788,3,1672319027),(103285,4,31789,3,1672319027),(103286,4,31790,3,1672319027),(103287,4,31791,3,1672319027),(103288,4,31792,3,1672319027),(103289,4,31793,3,1672319027),(103290,4,31794,3,1672319027),(103291,4,31795,3,1672319027),(103292,4,31796,3,1672319027),(103293,4,31797,3,1672319027),(103294,4,31798,3,1672319027),(103295,4,31799,3,1672319027),(103296,4,31800,3,1672319027),(103297,4,31801,3,1672319027),(103298,4,31802,3,1672319027),(103299,4,31803,3,1672319027),(103300,4,31804,3,1672319027),(103301,4,31805,3,1672319027),(103302,4,31806,3,1672319027),(103303,4,31807,3,1672319027),(103304,4,31808,3,1672319027),(103305,4,31809,3,1672319027),(103306,4,31810,3,1672319027),(103307,4,31811,3,1672319027),(103308,4,31812,3,1672319027),(103309,4,31813,3,1672319027),(103310,4,31814,3,1672319027),(103311,4,31815,3,1672319027),(103312,4,31816,3,1672319027),(103313,4,31817,3,1672319027),(103314,4,31818,3,1672319027),(103315,4,31819,3,1672319027),(103316,4,31820,3,1672319027),(103317,4,31821,3,1672319027),(103318,4,31822,3,1672319027),(103319,4,31823,3,1672319027),(103320,4,31824,3,1672319027),(103321,4,31825,3,1672319027),(103322,4,31826,3,1672319027),(103323,4,31827,3,1672319027),(103324,4,31828,3,1672319027),(103325,4,31829,3,1672319027),(103326,4,31830,3,1672319027),(103327,4,31831,3,1672319027),(103328,4,31832,3,1672319027),(103329,4,31833,3,1672319027),(103330,4,31834,3,1672319027),(103331,4,31835,3,1672319027),(103332,4,31836,3,1672319027),(103333,4,31837,3,1672319027),(103334,4,31838,3,1672319027),(103335,4,31839,3,1672319027),(103336,4,31840,3,1672319027),(103337,4,31841,3,1672319027),(103338,4,31842,3,1672319027),(103339,4,31843,3,1672319027),(103340,4,31844,3,1672319027),(103341,4,31845,3,1672319027),(103342,4,31846,3,1672319027),(103343,4,31847,3,1672319027),(103344,4,31848,3,1672319027),(103345,4,31849,3,1672319027),(103346,4,31850,3,1672319027),(103347,4,31851,3,1672319027),(103348,4,31852,3,1672319027),(103349,4,31853,3,1672319027),(103350,4,31854,3,1672319027),(103351,4,31855,3,1672319027),(103352,4,31856,3,1672319027),(103353,4,31857,3,1672319027),(103354,4,31858,3,1672319027),(103355,4,31859,3,1672319027),(103356,4,31860,3,1672319027),(103357,4,31861,3,1672319027),(103358,4,31862,3,1672319027),(103359,4,31863,3,1672319027),(103360,4,31864,3,1672319027),(103361,4,31865,3,1672319027),(103362,4,31866,3,1672319027),(103363,4,31867,3,1672319027),(103364,4,31868,3,1672319027),(103365,4,31869,3,1672319027),(103366,4,31870,3,1672319027),(103367,4,31871,3,1672319027),(103368,4,31872,3,1672319027),(103369,4,31873,3,1672319027),(103370,4,31874,3,1672319027),(103371,4,31875,3,1672319027),(103372,4,31876,3,1672319027),(103373,4,31877,3,1672319027),(103374,4,31878,3,1672319027),(103375,4,31879,3,1672319027),(103376,4,31880,3,1672319027),(103377,4,31881,3,1672319027),(103378,4,31882,3,1672319027),(103379,4,31883,3,1672319027),(103380,4,31884,3,1672319027),(103381,4,31885,3,1672319027),(103382,4,31886,3,1672319027),(103383,4,31887,3,1672319027),(103384,4,31888,3,1672319027),(103385,4,31889,3,1672319027),(103386,4,31890,3,1672319027),(103387,4,31891,3,1672319027),(103388,4,31892,3,1672319027),(103389,4,31893,3,1672319027),(103390,4,31894,3,1672319027),(103391,4,31895,3,1672319027),(103392,4,31896,3,1672319027),(103393,4,31897,3,1672319027),(103394,4,31898,3,1672319027),(103395,4,31899,3,1672319027),(103396,4,31900,3,1672319027),(103397,4,31901,3,1672319027),(103398,4,31902,3,1672319027),(103399,4,31903,3,1672319027),(103400,4,31904,3,1672319027),(103401,4,31905,3,1672319027),(103402,4,31906,3,1672319027),(103403,4,31907,3,1672319027),(103404,4,31908,3,1672319027),(103405,4,31909,3,1672319027),(103406,4,31910,3,1672319027),(103407,4,31911,3,1672319027),(103408,4,31912,3,1672319027),(103409,4,31913,3,1672319027),(103410,4,31914,3,1672319027),(103411,4,31915,3,1672319027),(103412,4,31916,3,1672319027),(103413,4,31917,3,1672319027),(103414,4,31918,3,1672319027),(103415,4,31919,3,1672319027),(103416,4,31920,3,1672319027),(103417,4,31921,3,1672319027),(103418,4,31922,3,1672319027),(103419,4,31923,3,1672319027),(103420,4,31924,3,1672319027),(103421,4,31925,3,1672319027),(103422,4,31926,3,1672319027),(103423,4,31927,3,1672319027),(103424,4,31928,3,1672319027),(103425,4,31929,3,1672319027),(103426,4,31930,3,1672319027),(103427,4,31931,3,1672319027),(103428,4,31932,3,1672319027),(103429,4,31933,3,1672319027),(103430,4,31934,3,1672319027),(103431,4,31935,3,1672319027),(103432,4,31936,3,1672319027),(103433,4,31937,3,1672319027),(103434,4,31938,3,1672319027),(103435,4,31939,3,1672319027),(103436,4,31940,3,1672319027),(103437,4,31941,3,1672319027),(103438,4,31942,3,1672319027),(103439,4,31943,3,1672319027),(103440,4,31944,3,1672319027),(103441,4,31945,3,1672319027),(103442,4,31946,3,1672319027),(103443,4,31947,3,1672319027),(103444,4,31948,3,1672319027),(103445,4,31949,3,1672319027),(103446,4,31950,3,1672319027),(103447,4,31951,3,1672319027),(103448,4,31952,3,1672319027),(103449,4,31953,3,1672319027),(103450,4,31954,3,1672319027),(103451,4,31955,3,1672319027),(103452,4,31956,3,1672319027),(103453,4,31957,3,1672319027),(103454,4,31958,3,1672319027),(103455,4,31959,3,1672319027),(103456,4,31960,3,1672319027),(103457,4,31961,3,1672319027),(103458,4,31962,3,1672319027),(103459,4,31963,3,1672319027),(103460,4,31964,3,1672319027),(103461,4,31965,3,1672319027),(103462,4,31966,3,1672319027),(103463,4,31967,3,1672319027),(103464,4,31968,3,1672319027),(103465,4,31969,3,1672319027),(103466,4,31970,3,1672319027),(103467,4,31971,3,1672319027),(103468,4,31972,3,1672319027),(103469,4,31973,3,1672319027),(103470,4,31974,3,1672319027),(103471,4,31975,3,1672319027),(103472,4,31976,3,1672319027),(103473,4,31977,3,1672319027),(103474,4,31978,3,1672319027),(103475,4,31979,3,1672319027),(103476,4,31980,3,1672319027),(103477,4,31981,3,1672319027),(103478,4,31982,3,1672319027),(103479,4,31983,3,1672319027),(103480,4,31984,3,1672319027),(103481,4,31985,3,1672319027),(103482,4,31986,3,1672319027),(103483,4,31987,3,1672319027),(103484,4,31988,3,1672319027),(103485,4,31989,3,1672319027),(103486,4,31990,3,1672319027),(103487,4,31991,3,1672319027),(103488,4,31992,3,1672319027),(103489,4,31993,3,1672319027),(103490,4,31994,3,1672319027),(103491,4,31995,3,1672319027),(103492,4,31996,3,1672319027),(103493,4,31997,3,1672319027),(103494,4,31998,3,1672319027),(103495,4,31999,3,1672319027),(103496,4,32000,3,1672319027),(103497,4,32001,3,1672319027),(103498,4,32002,3,1672319027),(103499,4,32003,3,1672319027),(103500,4,32004,3,1672319027),(103501,4,32005,3,1672319027),(103502,4,32006,3,1672319027),(103503,4,32007,3,1672319027),(103504,4,32008,3,1672319027),(103505,4,32009,3,1672319027),(103506,4,32010,3,1672319027),(103507,4,32011,3,1672319027),(103508,4,32012,3,1672319027),(103509,4,32013,3,1672319027),(103510,4,32014,3,1672319027),(103511,4,32015,3,1672319027),(103512,4,32016,3,1672319027),(103513,4,32017,3,1672319027),(103514,4,32018,3,1672319027),(103515,4,32019,3,1672319027),(103516,4,32020,3,1672319027),(103517,4,32021,3,1672319027),(103518,4,32022,3,1672319027),(103519,4,32023,3,1672319027),(103520,4,32024,3,1672319027),(103521,4,32025,3,1672319027),(103522,4,32026,3,1672319027),(103523,4,32027,3,1672319027),(103524,4,32028,3,1672319027),(103525,4,32029,3,1672319027),(103526,4,32030,3,1672319027),(103527,4,32031,3,1672319027),(103528,4,32032,3,1672319027),(103529,4,32033,3,1672319027),(103530,4,32034,3,1672319027),(103531,4,32035,3,1672319027),(103532,4,32036,3,1672319027),(103533,4,32037,3,1672319027),(103534,4,32038,3,1672319027),(103535,4,32039,3,1672319027),(103536,4,32040,3,1672319027),(103537,4,32041,3,1672319027),(103538,4,32042,3,1672319027),(103539,4,32043,3,1672319027),(103540,4,32044,3,1672319027),(103541,4,32045,3,1672319027),(103542,4,32046,3,1672319027),(103543,4,32047,3,1672319027),(103544,4,32048,3,1672319027),(103545,4,32049,3,1672319027),(103546,4,32050,3,1672319027),(103547,4,32051,3,1672319027),(103548,4,32052,3,1672319027),(103549,4,32053,3,1672319027),(103550,4,32054,3,1672319027),(103551,4,32055,3,1672319027),(103552,4,32056,3,1672319027),(103553,4,32057,3,1672319027),(103554,4,32058,3,1672319027),(103555,4,32059,3,1672319027),(103556,4,32060,3,1672319027),(103557,4,32061,3,1672319027),(103558,4,32062,3,1672319027),(103559,4,32063,3,1672319027),(103560,4,32064,3,1672319027),(103561,4,32065,3,1672319027),(103562,4,32066,3,1672319027),(103563,4,32067,3,1672319027),(103564,4,32068,3,1672319027),(103565,4,32069,3,1672319027),(103566,4,32070,3,1672319027),(103567,4,32071,3,1672319027),(103568,4,32072,3,1672319027),(103569,4,32073,3,1672319027),(103570,4,32074,3,1672319027),(103571,4,32075,3,1672319027),(103572,4,32076,3,1672319027),(103573,4,32077,3,1672319027),(103574,4,32078,3,1672319027),(103575,4,32079,3,1672319027),(103576,4,32080,3,1672319027),(103577,4,32081,3,1672319027),(103578,4,32082,3,1672319027),(103579,4,32083,3,1672319027),(103580,4,32084,3,1672319027),(103581,4,32085,3,1672319027),(103582,4,32086,3,1672319027),(103583,4,32087,3,1672319027),(103584,4,32088,3,1672319027),(103585,4,32089,3,1672319027),(103586,4,32090,3,1672319027),(103587,4,32091,3,1672319027),(103588,4,32092,3,1672319027),(103589,4,32093,3,1672319027),(103590,4,32094,3,1672319027),(103591,4,32095,3,1672319027),(103592,4,32096,3,1672319027),(103593,4,32097,3,1672319027),(103594,4,32098,3,1672319027),(103595,4,32099,3,1672319027),(103596,4,32100,3,1672319027),(103597,4,32101,3,1672319027),(103598,4,32102,3,1672319027),(103599,4,32103,3,1672319027),(103600,4,32104,3,1672319027),(103601,4,32105,3,1672319027),(103602,4,32106,3,1672319027),(103603,4,32107,3,1672319027),(103604,4,32108,3,1672319027),(103605,4,32109,3,1672319027),(103606,4,32110,3,1672319027),(103607,4,32111,3,1672319027),(103608,4,32112,3,1672319027),(103609,4,32113,3,1672319027),(103610,4,32114,3,1672319027),(103611,4,32115,3,1672319027),(103612,4,32116,3,1672319027),(103613,4,32117,3,1672319027),(103614,4,32118,3,1672319027),(103615,4,32119,3,1672319027),(103616,4,32120,3,1672319027),(103617,4,32121,3,1672319027),(103618,4,32122,3,1672319027),(103619,4,32123,3,1672319027),(103620,4,32124,3,1672319027),(103621,4,32125,3,1672319027),(103622,4,32126,3,1672319027),(103623,4,32127,3,1672319027),(103624,4,32128,3,1672319027),(103625,4,32129,3,1672319027),(103626,4,32130,3,1672319027),(103627,4,32131,3,1672319027),(103628,4,32132,3,1672319027),(103629,4,32133,3,1672319027),(103630,4,32134,3,1672319027),(103631,4,32135,3,1672319027),(103632,4,32136,3,1672319027),(103633,4,32137,3,1672319027),(103634,4,32138,3,1672319027),(103635,4,32139,3,1672319027),(103636,4,32140,3,1672319027),(103637,4,32141,3,1672319027),(103638,4,32142,3,1672319027),(103639,4,32143,3,1672319027),(103640,4,32144,3,1672319027),(103641,4,32145,3,1672319027),(103642,4,32146,3,1672319027),(103643,4,32147,3,1672319027),(103644,4,32148,3,1672319027),(103645,4,32149,3,1672319027),(103646,4,32150,3,1672319027),(103647,4,32151,3,1672319027),(103648,4,32152,3,1672319027),(103649,4,32153,3,1672319027),(103650,4,32154,3,1672319027),(103651,4,32155,3,1672319027),(103652,4,32156,3,1672319027),(103653,4,32157,3,1672319027),(103654,4,32158,3,1672319027),(103655,4,32159,3,1672319027),(103656,4,32160,3,1672319027),(103657,4,32161,3,1672319027),(103658,4,32162,3,1672319027),(103659,4,32163,3,1672319027),(103660,4,32164,3,1672319027),(103661,4,32165,3,1672319027),(103662,4,32166,3,1672319027),(103663,4,32167,3,1672319027),(103664,4,32168,3,1672319027),(103665,4,32169,3,1672319027),(103666,4,32170,3,1672319027),(103667,4,32171,3,1672319027),(103668,4,32172,3,1672319027),(103669,4,32173,3,1672319027),(103670,4,32174,3,1672319027),(103671,4,32175,3,1672319027),(103672,4,32176,3,1672319027),(103673,4,32177,3,1672319027),(103674,4,32178,3,1672319027),(103675,4,32179,3,1672319027),(103676,4,32180,3,1672319027),(103677,4,32181,3,1672319027),(103678,4,32182,3,1672319027),(103679,4,32183,3,1672319027),(103680,4,32184,3,1672319027),(103681,4,32185,3,1672319027),(103682,4,32186,3,1672319027),(103683,4,32187,3,1672319027),(103684,4,32188,3,1672319027),(103685,4,32189,3,1672319027),(103686,4,32190,3,1672319027),(103687,4,32191,3,1672319027),(103688,4,32192,3,1672319027),(103689,4,32193,3,1672319027),(103690,4,32194,3,1672319027),(103691,4,32195,3,1672319027),(103692,4,32196,3,1672319027),(103693,4,32197,3,1672319027),(103694,4,32198,3,1672319027),(103695,4,32199,3,1672319027),(103696,4,32200,3,1672319027),(103697,4,32201,3,1672319027),(103698,4,32202,3,1672319027),(103699,4,32203,3,1672319027),(103700,4,32204,3,1672319027),(103701,4,32205,3,1672319027),(103702,4,32206,3,1672319027),(103703,4,32207,3,1672319027),(103704,4,32208,3,1672319027),(103705,4,32209,3,1672319027),(103706,4,32210,3,1672319027),(103707,4,32211,3,1672319027),(103708,4,32212,3,1672319027),(103709,4,32213,3,1672319027),(103710,4,32214,3,1672319027),(103711,4,32215,3,1672319027),(103712,4,32216,3,1672319027),(103713,4,32217,3,1672319027),(103714,4,32218,3,1672319027),(103715,4,32219,3,1672319027),(103716,4,32220,3,1672319027),(103717,4,32221,3,1672319027),(103718,4,32222,3,1672319027),(103719,4,32223,3,1672319027),(103720,4,32224,3,1672319027),(103721,4,32225,3,1672319027),(103722,4,32226,3,1672319027),(103723,4,32227,3,1672319027),(103724,4,32228,3,1672319027),(103725,4,32229,3,1672319027),(103726,4,32230,3,1672319027),(103727,4,32231,3,1672319027),(103728,4,32232,3,1672319027),(103729,4,32233,3,1672319027),(103730,4,32234,3,1672319027),(103731,4,32235,3,1672319027),(103732,4,32236,3,1672319027),(103733,4,32237,3,1672319027),(103734,4,32238,3,1672319027),(103735,4,32239,3,1672319027),(103736,4,32240,3,1672319027),(103737,4,32241,3,1672319027),(103738,4,32242,3,1672319027),(103739,4,32243,3,1672319027),(103740,4,32244,3,1672319027),(103741,4,32245,3,1672319027),(103742,4,32246,3,1672319027),(103743,4,32247,3,1672319027),(103744,4,32248,3,1672319027),(103745,4,32249,3,1672319027),(103746,4,32250,3,1672319027),(103747,4,32251,3,1672319027),(103748,4,32252,3,1672319027),(103749,4,32253,3,1672319027),(103750,4,32254,3,1672319027),(103751,4,32255,3,1672319027),(103752,4,32256,3,1672319027),(103753,4,32257,3,1672319027),(103754,4,32258,3,1672319027),(103755,4,32259,3,1672319027),(103756,4,32260,3,1672319027),(103757,4,32261,3,1672319027),(103758,4,32262,3,1672319027),(103759,4,32263,3,1672319027),(103760,4,32264,3,1672319027),(103761,4,32265,3,1672319027),(103762,4,32266,3,1672319027),(103763,4,32267,3,1672319027),(103764,4,32268,3,1672319027),(103765,4,32269,3,1672319027),(103766,4,32270,3,1672319027),(103767,4,32271,3,1672319027),(103768,4,32272,3,1672319027),(103769,4,32273,3,1672319027),(103770,4,32274,3,1672319027),(103771,4,32275,3,1672319027),(103772,4,32276,3,1672319027),(103773,4,32277,3,1672319027),(103774,4,32278,3,1672319027),(103775,4,32279,3,1672319027),(103776,4,32280,3,1672319027),(103777,4,32281,3,1672319027),(103778,4,32282,3,1672319027),(103779,4,32283,3,1672319027),(103780,4,32284,3,1672319027),(103781,4,32285,3,1672319027),(103782,4,32286,3,1672319027),(103783,4,32287,3,1672319027),(103784,4,32288,3,1672319027),(103785,4,32289,3,1672319027),(103786,4,32290,3,1672319027),(103787,4,32291,3,1672319027),(103788,4,32292,3,1672319027),(103789,4,32293,3,1672319027),(103790,4,32294,3,1672319027),(103791,4,32295,3,1672319027),(103792,4,32296,3,1672319027),(103793,4,32297,3,1672319027),(103794,4,32298,3,1672319027),(103795,4,32299,3,1672319027),(103796,4,32300,3,1672319027),(103797,4,32301,3,1672319027),(103798,4,32302,3,1672319027),(103799,4,32303,3,1672319027),(103800,4,32304,3,1672319027),(103801,4,32305,3,1672319027),(103802,4,32306,3,1672319027),(103803,4,32307,3,1672319027),(103804,4,32308,3,1672319027),(103805,4,32309,3,1672319027),(103806,4,32310,3,1672319027),(103807,4,32311,3,1672319027),(103808,4,32312,3,1672319027),(103809,4,32313,3,1672319027),(103810,4,32314,3,1672319027),(103811,4,32315,3,1672319027),(103812,4,32316,3,1672319027),(103813,4,32317,3,1672319027),(103814,4,32318,3,1672319027),(103815,4,32319,3,1672319027),(103816,4,32320,3,1672319027),(103817,4,32321,3,1672319027),(103818,4,32322,3,1672319027),(103819,4,32323,3,1672319027),(103820,4,32324,3,1672319027),(103821,4,32325,3,1672319027),(103822,4,32326,3,1672319027),(103823,4,32327,3,1672319027),(103824,4,32328,3,1672319027),(103825,4,32329,3,1672319027),(103826,4,32330,3,1672319027),(103827,4,32331,3,1672319027),(103828,4,32332,3,1672319027),(103829,4,32333,3,1672319027),(103830,4,32334,3,1672319027),(103831,4,32335,3,1672319027),(103832,4,32336,3,1672319027),(103833,4,32337,3,1672319027),(103834,4,32338,3,1672319027),(103835,4,32339,3,1672319027),(103836,4,32340,3,1672319027),(103837,4,32341,3,1672319027),(103838,4,32342,3,1672319027),(103839,4,32343,3,1672319027),(103840,4,32344,3,1672319027),(103841,4,32345,3,1672319027),(103842,4,32346,3,1672319027),(103843,4,32347,3,1672319027),(103844,4,32348,3,1672319027),(103845,4,32349,3,1672319027),(103846,4,32350,3,1672319027),(103847,4,32351,3,1672319027),(103848,4,32352,3,1672319027),(103849,4,32353,3,1672319027),(103850,4,32354,3,1672319027),(103851,4,32355,3,1672319027),(103852,4,32356,3,1672319027),(103853,4,32357,3,1672319027),(103854,4,32358,3,1672319027),(103855,4,32359,3,1672319027),(103856,4,32360,3,1672319027),(103857,4,32361,3,1672319027),(103858,4,32362,3,1672319027),(103859,4,32363,3,1672319027),(103860,4,32364,3,1672319027),(103861,4,32365,3,1672319027),(103862,4,32366,3,1672319027),(103863,4,32367,3,1672319027),(103864,4,32368,3,1672319027),(103865,4,32369,3,1672319027),(103866,4,32370,3,1672319027),(103867,4,32371,3,1672319027),(103868,4,32372,3,1672319027),(103869,4,32373,3,1672319027),(103870,4,32374,3,1672319027),(103871,4,32375,3,1672319027),(103872,4,32376,3,1672319027),(103873,4,32377,3,1672319027),(103874,4,32378,3,1672319027),(103875,4,32379,3,1672319027),(103876,4,32380,3,1672319027),(103877,4,32381,3,1672319027),(103878,4,32382,3,1672319027),(103879,4,32383,3,1672319027),(103880,4,32384,3,1672319027),(103881,4,32385,3,1672319027),(103882,4,32386,3,1672319027),(103883,4,32387,3,1672319027),(103884,4,32388,3,1672319027),(103885,4,32389,3,1672319027),(103886,4,32390,3,1672319027),(103887,4,32391,3,1672319027),(103888,4,32392,3,1672319027),(103889,4,32393,3,1672319027),(103890,4,32394,3,1672319027),(103891,4,32395,3,1672319027),(103892,4,32396,3,1672319027),(103893,4,32397,3,1672319027),(103894,4,32398,3,1672319027),(103895,4,32399,3,1672319027),(103896,4,32400,3,1672319027),(103897,4,32401,3,1672319027),(103898,4,32402,3,1672319027),(103899,4,32403,3,1672319027),(103900,4,32404,3,1672319027),(103901,4,32405,3,1672319027),(103902,4,32406,3,1672319027),(103903,4,32407,3,1672319027),(103904,4,32408,3,1672319027),(103905,4,32409,3,1672319027),(103906,4,32410,3,1672319027),(103907,4,32411,3,1672319027),(103908,4,32412,3,1672319027),(103909,4,32413,3,1672319027),(103910,4,32414,3,1672319027),(103911,4,32415,3,1672319027),(103912,4,32416,3,1672319027),(103913,4,32417,3,1672319027),(103914,4,32418,3,1672319027),(103915,4,32419,3,1672319027),(103916,4,32420,3,1672319027),(103917,4,32421,3,1672319027),(103918,4,32422,3,1672319027),(103919,4,32423,3,1672319027),(103920,4,32424,3,1672319027),(103921,4,32425,3,1672319027),(103922,4,32426,3,1672319027),(103923,4,32427,3,1672319027),(103924,4,32428,3,1672319027),(103925,4,32429,3,1672319027),(103926,4,32430,3,1672319027),(103927,4,32431,3,1672319027),(103928,4,32432,3,1672319027),(103929,4,32433,3,1672319027),(103930,4,32434,3,1672319027),(103931,4,32435,3,1672319027),(103932,4,32436,3,1672319027),(103933,4,32437,3,1672319027),(103934,4,32438,3,1672319027),(103935,4,32439,3,1672319027),(103936,4,32440,3,1672319027),(103937,4,32441,3,1672319027),(103938,4,32442,3,1672319027),(103939,4,32443,3,1672319027),(103940,4,32444,3,1672319027),(103941,4,32445,3,1672319027),(103942,4,32446,3,1672319027),(103943,4,32447,3,1672319027),(103944,4,32448,3,1672319027),(103945,4,32449,3,1672319027),(103946,4,32450,3,1672319027),(103947,4,32451,3,1672319027),(103948,4,32452,3,1672319027),(103949,4,32453,3,1672319027),(103950,4,32454,3,1672319027),(103951,4,32455,3,1672319027),(103952,4,32456,3,1672319027),(103953,4,32457,3,1672319027),(103954,4,32458,3,1672319027),(103955,4,32459,3,1672319027),(103956,4,32460,3,1672319027),(103957,4,32461,3,1672319027),(103958,4,32462,3,1672319027),(103959,4,32463,3,1672319027),(103960,4,32464,3,1672319027),(103961,4,32465,3,1672319027),(103962,4,32466,3,1672319027),(103963,4,32467,3,1672319027),(103964,4,32468,3,1672319027),(103965,4,32469,3,1672319027),(103966,4,32470,3,1672319027),(103967,4,32471,3,1672319027),(103968,4,32472,3,1672319027),(103969,4,32473,3,1672319027),(103970,4,32474,3,1672319027),(103971,4,32475,3,1672319027),(103972,4,32476,3,1672319027),(103973,4,32477,3,1672319027),(103974,4,32478,3,1672319027),(103975,4,32479,3,1672319027),(103976,4,32480,3,1672319027),(103977,4,32481,3,1672319027),(103978,4,32482,3,1672319027),(103979,4,32483,3,1672319027),(103980,4,32484,3,1672319027),(103981,4,32485,3,1672319027),(103982,4,32486,3,1672319027),(103983,4,32487,3,1672319027),(103984,4,32488,3,1672319027),(103985,4,32489,3,1672319027),(103986,4,32490,3,1672319027),(103987,4,32491,3,1672319027),(103988,4,32492,3,1672319027),(103989,4,32493,3,1672319027),(103990,4,32494,3,1672319027),(103991,4,32495,3,1672319027),(103992,4,32496,3,1672319027),(103993,4,32497,3,1672319027),(103994,4,32498,3,1672319027),(103995,4,32499,3,1672319027),(103996,4,32500,3,1672319027),(103997,4,32501,3,1672319027),(103998,4,32502,3,1672319027),(103999,4,32503,3,1672319027),(104000,4,32504,3,1672319027),(104001,4,32505,3,1672319027),(104002,4,32506,3,1672319027),(104003,4,32507,3,1672319027),(104004,4,32508,3,1672319027),(104005,4,32509,3,1672319027),(104006,4,32510,3,1672319027),(104007,4,32511,3,1672319027),(104008,4,32512,3,1672319027),(104009,4,32513,3,1672319027),(104010,4,32514,3,1672319027),(104011,4,32515,3,1672319027),(104012,4,32516,3,1672319027),(104013,4,32517,3,1672319027),(104014,4,32518,3,1672319027),(104015,4,32519,3,1672319027),(104016,4,32520,3,1672319027),(104017,4,32521,3,1672319027),(104018,4,32522,3,1672319027),(104019,4,32523,3,1672319027),(104020,4,32524,3,1672319027),(104021,4,32525,3,1672319027),(104022,4,32526,3,1672319027),(104023,4,32527,3,1672319027),(104024,4,32528,3,1672319027),(104025,4,32529,3,1672319027),(104026,4,32530,3,1672319027),(104027,4,32531,3,1672319027),(104028,4,32532,3,1672319027),(104029,4,32533,3,1672319027),(104030,4,32534,3,1672319027),(104031,4,32535,3,1672319027),(104032,4,32536,3,1672319027),(104033,4,32537,3,1672319027),(104034,4,32538,3,1672319027),(104035,4,32539,3,1672319027),(104036,4,32540,3,1672319027),(104037,4,32541,3,1672319027),(104038,4,32542,3,1672319027),(104039,4,32543,3,1672319027),(104040,4,32544,3,1672319027),(104041,4,32545,3,1672319027),(104042,4,32546,3,1672319027),(104043,4,32547,3,1672319027),(104044,4,32548,3,1672319027),(104045,4,32549,3,1672319027),(104046,4,32550,3,1672319027),(104047,4,32551,3,1672319027),(104048,4,32552,3,1672319027),(104049,4,32553,3,1672319027),(104050,4,32554,3,1672319027),(104051,4,32555,3,1672319027),(104052,4,32556,3,1672319027),(104053,4,32557,3,1672319027),(104054,4,32558,3,1672319027),(104055,4,32559,3,1672319027),(104056,4,32560,3,1672319027),(104057,4,32561,3,1672319027),(104058,4,32562,3,1672319027),(104059,4,32563,3,1672319027),(104060,4,32564,3,1672319027),(104061,4,32565,3,1672319027),(104062,4,32566,3,1672319027),(104063,4,32567,3,1672319027),(104064,4,32568,3,1672319027),(104065,4,32569,3,1672319027),(104066,4,32570,3,1672319027),(104067,4,32571,3,1672319027),(104068,4,32572,3,1672319027),(104069,4,32573,3,1672319027),(104070,4,32574,3,1672319027),(104071,4,32575,3,1672319027),(104072,4,32576,3,1672319027),(104073,4,32577,3,1672319027),(104074,4,32578,3,1672319027),(104075,4,32579,3,1672319027),(104076,4,32580,3,1672319027),(104077,4,32581,3,1672319027),(104078,4,32582,3,1672319027),(104079,4,32583,3,1672319027),(104080,4,32584,3,1672319027),(104081,4,32585,3,1672319027),(104082,4,32586,3,1672319027),(104083,4,32587,3,1672319027),(104084,4,32588,3,1672319027),(104085,4,32589,3,1672319027),(104086,4,32590,3,1672319027),(104087,4,32591,3,1672319027),(104088,4,32592,3,1672319027),(104089,4,32593,3,1672319027),(104090,4,32594,3,1672319027),(104091,4,32595,3,1672319027),(104092,4,32596,3,1672319027),(104093,4,32597,3,1672319027),(104094,4,32598,3,1672319027),(104095,4,32599,3,1672319027),(104096,4,32600,3,1672319027),(104097,4,32601,3,1672319027),(104098,4,32602,3,1672319027),(104099,4,32603,3,1672319027),(104100,4,32604,3,1672319027),(104101,4,32605,3,1672319027),(104102,4,32606,3,1672319027),(104103,4,32607,3,1672319027),(104104,4,32608,3,1672319027),(104105,4,32609,3,1672319027),(104106,4,32610,3,1672319027),(104107,4,32611,3,1672319027),(104108,4,32612,3,1672319027),(104109,4,32613,3,1672319027),(104110,4,32614,3,1672319027),(104111,4,32615,3,1672319027),(104112,4,32616,3,1672319027),(104113,4,32617,3,1672319027),(104114,4,32618,3,1672319027),(104115,4,32619,3,1672319027),(104116,4,32620,3,1672319027),(104117,4,32621,3,1672319027),(104118,4,32622,3,1672319027),(104119,4,32623,3,1672319027),(104120,4,32624,3,1672319027),(104121,4,32625,3,1672319027),(104122,4,32626,3,1672319027),(104123,4,32627,3,1672319027),(104124,4,32628,3,1672319027),(104125,4,32629,3,1672319027),(104126,4,32630,3,1672319027),(104127,4,32631,3,1672319027),(104128,4,32632,3,1672319027),(104129,4,32633,3,1672319027),(104130,4,32634,3,1672319027),(104131,4,32635,3,1672319027),(104132,4,32636,3,1672319027),(104133,4,32637,3,1672319027),(104134,4,32638,3,1672319027),(104135,4,32639,3,1672319027),(104136,4,32640,3,1672319027),(104137,4,32641,3,1672319027),(104138,4,32642,3,1672319027),(104139,4,32643,3,1672319027),(104140,4,32644,3,1672319027),(104141,4,32645,3,1672319027),(104142,4,32646,3,1672319027),(104143,4,32647,3,1672319027),(104144,4,32648,3,1672319027),(104145,4,32649,3,1672319027),(104146,4,32650,3,1672319027),(104147,4,32651,3,1672319027),(104148,4,32652,3,1672319027),(104149,4,32653,3,1672319027),(104150,4,32654,3,1672319027),(104151,4,32655,3,1672319027),(104152,4,32656,3,1672319027),(104153,4,32657,3,1672319027),(104154,4,32658,3,1672319027),(104155,4,32659,3,1672319027),(104156,4,32660,3,1672319027),(104157,4,32661,3,1672319027),(104158,4,32662,3,1672319027),(104159,4,32663,3,1672319027),(104160,4,32664,3,1672319027),(104161,4,32665,3,1672319027),(104162,4,32666,3,1672319027),(104163,4,32667,3,1672319027),(104164,4,32668,3,1672319027),(104165,4,32669,3,1672319027),(104166,4,32670,3,1672319027),(104167,4,32671,3,1672319027),(104168,4,32672,3,1672319027),(104169,4,32673,3,1672319027),(104170,4,32674,3,1672319027),(104171,4,32675,3,1672319027),(104172,4,32676,3,1672319027),(104173,4,32721,3,1672319027),(104174,4,32722,3,1672319027),(104175,4,32723,3,1672319027),(104176,4,32724,3,1672319027),(104177,4,32725,3,1672319027),(104178,4,32726,3,1672319027),(104179,4,32727,3,1672319027),(104180,4,32728,3,1672319027),(104181,4,32729,3,1672319027),(104182,4,32730,3,1672319027),(104183,4,32731,3,1672319027),(104184,4,32732,3,1672319027),(104185,4,32733,3,1672319027),(104186,4,32734,3,1672319027),(104187,4,32735,3,1672319027),(104188,4,32736,3,1672319027),(104189,4,32737,3,1672319027),(104190,4,32738,3,1672319027),(104191,4,32739,3,1672319027),(104192,4,32740,3,1672319027),(104193,4,32741,3,1672319027),(104194,4,32742,3,1672319027),(104195,4,32743,3,1672319027),(104196,4,32744,3,1672319027),(104197,4,32745,3,1672319027),(104198,4,32746,3,1672319027),(104199,4,32747,3,1672319027),(104200,4,32748,3,1672319027),(104201,4,32749,3,1672319027),(104202,4,32751,3,1672319027),(104203,4,32752,3,1672319027),(104204,4,32753,3,1672319027),(104205,4,32754,3,1672319027),(104206,4,32755,3,1672319027),(104207,4,32756,3,1672319027),(104208,4,32757,3,1672319027),(104209,4,32758,3,1672319027),(104210,4,32759,3,1672319027),(104211,4,32760,3,1672319027),(104212,4,32761,3,1672319027),(104213,4,32762,3,1672319027),(104214,4,32763,3,1672319027),(104215,4,32764,3,1672319027),(104216,4,32765,3,1672319027),(104217,4,32768,3,1672319027),(104218,4,32769,3,1672319027),(104219,4,32770,3,1672319027),(104220,4,32771,3,1672319027),(104221,4,32772,3,1672319027),(104222,4,32773,3,1672319027),(104223,4,32774,3,1672319027),(104224,4,32775,3,1672319027),(104225,4,32776,3,1672319027),(104226,4,32777,3,1672319027),(104227,4,32778,3,1672319027),(104228,4,32779,3,1672319027),(104229,4,32780,3,1672319027),(104230,4,32781,3,1672319027),(104231,4,32782,3,1672319027),(104232,4,32783,3,1672319027),(104233,4,32784,3,1672319027),(104234,4,32785,3,1672319027),(104235,4,32786,3,1672319027),(104236,4,32787,3,1672319027),(104237,4,32788,3,1672319027),(104238,4,32789,3,1672319027),(104239,4,32790,3,1672319027),(104240,4,32791,3,1672319027),(104241,4,32792,3,1672319027),(104242,4,32793,3,1672319027),(104243,4,32794,3,1672319027),(104244,4,32795,3,1672319027),(104245,4,32796,3,1672319027),(104246,4,32797,3,1672319027),(104247,4,32798,3,1672319027),(104248,4,32799,3,1672319027),(104249,4,32800,3,1672319027),(104250,4,32801,3,1672319027),(104251,4,32802,3,1672319027),(104252,4,32803,3,1672319027),(104253,4,32804,3,1672319027),(104254,4,32805,3,1672319027),(104255,4,32806,3,1672319027),(104256,4,32807,3,1672319027),(104257,4,32808,3,1672319027),(104258,4,32809,3,1672319027),(104259,4,32810,3,1672319027),(104260,4,32811,3,1672319027),(104261,4,32812,3,1672319027),(104262,4,32813,3,1672319027),(104263,4,32814,3,1672319027),(104264,4,32815,3,1672319027),(104265,4,32816,3,1672319027),(104266,4,32817,3,1672319027),(104267,4,32818,3,1672319027),(104268,4,32819,3,1672319027),(104269,4,32820,3,1672319027),(104270,4,32821,3,1672319027),(104271,4,32822,3,1672319027),(104272,4,32823,3,1672319027),(104273,4,32824,3,1672319027),(104274,4,32825,3,1672319027),(104275,4,32826,3,1672319027),(104276,4,32827,3,1672319027),(104277,4,32828,3,1672319027),(104278,4,32829,3,1672319027),(104279,4,32830,3,1672319027),(104280,4,32831,3,1672319027),(104281,4,32832,3,1672319027),(104282,4,32833,3,1672319027),(104283,4,32834,3,1672319027),(104284,4,32835,3,1672319027),(104285,4,32836,3,1672319027),(104286,4,32837,3,1672319027),(104287,4,32838,3,1672319027),(104288,4,32839,3,1672319027),(104289,4,32840,3,1672319027),(104290,4,32841,3,1672319027),(104291,4,32842,3,1672319027),(104292,4,32843,3,1672319027),(104293,4,32844,3,1672319027),(104294,4,32845,3,1672319027),(104295,4,32846,3,1672319027),(104296,4,32847,3,1672319027),(104297,4,32848,3,1672319027),(104298,4,32849,3,1672319027),(104299,4,32850,3,1672319027),(104300,4,32851,3,1672319027),(104301,4,32852,3,1672319027),(104302,4,32853,3,1672319027),(104303,4,32854,3,1672319027),(104304,4,32855,3,1672319027),(104305,4,32856,3,1672319027),(104306,4,32857,3,1672319027),(104307,4,32858,3,1672319027),(104308,4,32859,3,1672319027),(104309,4,32860,3,1672319027),(104310,4,32861,3,1672319027),(104311,4,32862,3,1672319027),(104312,4,32863,3,1672319027),(104313,4,32864,3,1672319027),(104314,4,32865,3,1672319027),(104315,4,32866,3,1672319027),(104316,4,32867,3,1672319027),(104317,4,32868,3,1672319027),(104318,4,32869,3,1672319027),(104319,4,32870,3,1672319027),(104320,4,32871,3,1672319027),(104321,4,32872,3,1672319027),(104322,4,32873,3,1672319027),(104323,4,32874,3,1672319027),(104324,4,32875,3,1672319027),(104325,4,32876,3,1672319027),(104326,4,32877,3,1672319027),(104327,4,32878,3,1672319027),(104328,4,32879,3,1672319027),(104329,4,32880,3,1672319027),(104330,4,32881,3,1672319027),(104331,4,32882,3,1672319027),(104332,4,32883,3,1672319027),(104333,4,32884,3,1672319027),(104334,4,32885,3,1672319027),(104335,4,32886,3,1672319027),(104336,4,32887,3,1672319027),(104337,4,32888,3,1672319027),(104338,4,32889,3,1672319027),(104339,4,32890,3,1672319027),(104340,4,32891,3,1672319027),(104341,4,32892,3,1672319027),(104342,4,32893,3,1672319027),(104343,4,32894,3,1672319027),(104344,4,32895,3,1672319027),(104345,4,32896,3,1672319027),(104346,4,32897,3,1672319027),(104347,4,32898,3,1672319027),(104348,4,32899,3,1672319027),(104349,4,32900,3,1672319027),(104350,4,32901,3,1672319027),(104351,4,32902,3,1672319027),(104352,4,32903,3,1672319027),(104353,4,32904,3,1672319027),(104354,4,32905,3,1672319027),(104355,4,32906,3,1672319027),(104356,4,32907,3,1672319027),(104357,4,32908,3,1672319027),(104358,4,32909,3,1672319027),(104359,4,32910,3,1672319027),(104360,4,32911,3,1672319027),(104361,4,32912,3,1672319027),(104362,4,32913,3,1672319027),(104363,4,32914,3,1672319027),(104364,4,32915,3,1672319027),(104365,4,32916,3,1672319027),(104366,4,32917,3,1672319027),(104367,4,32918,3,1672319027),(104368,4,32919,3,1672319027),(104369,4,32920,3,1672319027),(104370,4,32921,3,1672319027),(104371,4,32922,3,1672319027),(104372,4,32923,3,1672319027),(104373,4,32924,3,1672319027),(104374,4,32925,3,1672319027),(104375,4,32926,3,1672319027),(104376,4,32927,3,1672319027),(104377,4,32928,3,1672319027),(104378,4,32929,3,1672319027),(104379,4,32930,3,1672319027),(104380,4,32931,3,1672319027),(104381,4,32932,3,1672319027),(104382,4,32933,3,1672319027),(104383,4,32934,3,1672319027),(104384,4,32935,3,1672319027),(104385,4,32936,3,1672319027),(104386,4,32937,3,1672319027),(104387,4,32938,3,1672319027),(104388,4,32939,3,1672319027),(104389,4,32940,3,1672319027),(104390,4,32941,3,1672319027),(104391,4,32942,3,1672319027),(104392,4,32943,3,1672319027),(104393,4,32944,3,1672319027),(104394,4,32945,3,1672319027),(104395,4,32946,3,1672319027),(104396,4,32947,3,1672319027),(104397,4,32948,3,1672319027),(104398,4,32949,3,1672319027),(104399,4,32950,3,1672319027),(104400,4,32951,3,1672319027),(104401,4,32952,3,1672319027),(104402,4,32953,3,1672319027),(104403,4,32954,3,1672319027),(104404,4,32955,3,1672319027),(104405,4,32956,3,1672319027),(104406,4,32957,3,1672319027),(104407,4,32958,3,1672319027),(104408,4,32959,3,1672319027),(104409,4,32960,3,1672319027),(104410,4,32961,3,1672319027),(104411,4,32962,3,1672319027),(104412,4,32963,3,1672319027),(104413,4,32964,3,1672319027),(104414,4,32965,3,1672319027),(104415,4,32966,3,1672319027),(104416,4,32967,3,1672319027),(104417,4,32968,3,1672319027),(104418,4,32969,3,1672319027),(104419,4,32970,3,1672319027),(104420,4,32971,3,1672319027),(104421,4,32972,3,1672319027),(104422,4,32973,3,1672319027),(104423,4,32974,3,1672319027),(104424,4,32975,3,1672319027),(104425,4,32976,3,1672319027),(104426,4,32977,3,1672319027),(104427,4,32978,3,1672319027),(104428,4,32979,3,1672319027),(104429,4,32980,3,1672319027),(104430,4,32981,3,1672319027),(104431,4,32982,3,1672319027),(104432,4,32983,3,1672319027),(104433,4,32984,3,1672319027),(104434,4,32985,3,1672319027),(104435,4,32986,3,1672319027),(104436,4,32987,3,1672319027),(104437,4,32988,3,1672319027),(104438,4,32989,3,1672319027),(104439,4,32990,3,1672319027),(104440,4,32991,3,1672319027),(104441,4,32992,3,1672319027),(104442,4,32993,3,1672319027),(104443,4,32994,3,1672319027),(104444,4,32995,3,1672319027),(104445,4,32996,3,1672319027),(104446,4,32997,3,1672319027),(104447,4,32998,3,1672319027),(104448,4,32999,3,1672319027),(104449,4,33000,3,1672319027),(104450,4,33001,3,1672319027),(104451,4,33002,3,1672319027),(104452,4,33003,3,1672319027),(104453,4,33004,3,1672319027),(104454,4,33005,3,1672319027),(104455,4,33006,3,1672319027),(104456,4,33007,3,1672319027),(104457,4,33008,3,1672319027),(104458,4,33009,3,1672319027),(104459,4,33010,3,1672319027),(104460,4,33011,3,1672319027),(104461,4,33012,3,1672319027),(104462,4,33013,3,1672319027),(104463,4,33014,3,1672319027),(104464,4,33015,3,1672319027),(104465,4,33016,3,1672319027),(104466,4,33017,3,1672319027),(104467,4,33018,3,1672319027),(104468,4,33019,3,1672319027),(104469,4,33020,3,1672319027),(104470,4,33021,3,1672319027),(104471,4,33022,3,1672319027),(104472,4,33023,3,1672319027),(104473,4,33024,3,1672319027),(104474,4,33025,3,1672319027),(104475,4,33026,3,1672319027),(104476,4,33027,3,1672319027),(104477,4,33028,3,1672319027),(104478,4,33029,3,1672319027),(104479,4,33030,3,1672319027),(104480,4,33031,3,1672319027),(104481,4,33032,3,1672319027),(104482,4,33033,3,1672319027),(104483,4,33034,3,1672319027),(104484,4,33035,3,1672319027),(104485,4,33036,3,1672319027),(104486,4,33037,3,1672319027),(104487,4,33038,3,1672319027),(104488,4,33039,3,1672319027),(104489,4,33040,3,1672319027),(104490,4,33041,3,1672319027),(104491,4,33042,3,1672319027),(104492,4,33043,3,1672319027),(104493,4,33044,3,1672319027),(104494,4,33045,3,1672319027),(104495,4,33046,3,1672319027),(104496,4,33047,3,1672319027),(104497,4,33048,3,1672319027),(104498,4,33049,3,1672319027),(104499,4,33050,3,1672319027),(104500,4,33051,3,1672319027),(104501,4,33052,3,1672319027),(104502,4,33053,3,1672319027),(104503,4,33054,3,1672319027),(104504,4,33055,3,1672319027),(104505,4,33056,3,1672319027),(104506,4,33057,3,1672319027),(104507,4,33058,3,1672319027),(104508,4,33059,3,1672319027),(104509,4,33060,3,1672319027),(104510,4,33061,3,1672319027),(104511,4,33062,3,1672319027),(104512,4,33063,3,1672319027),(104513,4,33064,3,1672319027),(104514,4,33065,3,1672319027),(104515,4,33066,3,1672319027),(104516,4,33067,3,1672319027),(104517,4,33068,3,1672319027),(104518,4,33069,3,1672319027),(104519,4,33070,3,1672319027),(104520,4,33071,3,1672319027),(104521,4,33072,3,1672319027),(104522,4,33073,3,1672319027),(104523,4,33074,3,1672319027),(104524,4,33075,3,1672319027),(104525,4,33076,3,1672319027),(104526,4,33077,3,1672319027),(104527,4,33078,3,1672319027),(104528,4,33079,3,1672319027),(104529,4,33080,3,1672319027),(104530,4,33081,3,1672319027),(104531,4,33082,3,1672319027),(104532,4,33083,3,1672319027),(104533,4,33084,3,1672319027),(104534,4,33085,3,1672319027),(104535,4,33086,3,1672319027),(104536,4,33087,3,1672319027),(104537,4,33088,3,1672319027),(104538,4,33089,3,1672319027),(104539,4,33090,3,1672319027),(104540,4,33091,3,1672319027),(104541,4,33092,3,1672319027),(104542,4,33093,3,1672319027),(104543,4,33094,3,1672319027),(104544,4,33095,3,1672319027),(104545,4,33096,3,1672319027),(104546,4,33097,3,1672319027),(104547,4,33098,3,1672319027),(104548,4,33099,3,1672319027),(104549,4,33100,3,1672319027),(104550,4,33101,3,1672319027),(104551,4,33102,3,1672319027),(104552,4,33103,3,1672319027),(104553,4,33104,3,1672319027),(104554,4,33105,3,1672319027),(104555,4,33106,3,1672319027),(104556,4,33107,3,1672319027),(104557,4,33108,3,1672319027),(104558,4,33109,3,1672319027),(104559,4,33110,3,1672319027),(104560,4,33111,3,1672319027),(104561,4,33112,3,1672319027),(104562,4,33113,3,1672319027),(104563,4,33114,3,1672319027),(104564,4,33115,3,1672319027),(104565,4,33116,3,1672319027),(104566,4,33117,3,1672319027),(104567,4,33118,3,1672319027),(104568,4,33119,3,1672319027),(104569,4,33120,3,1672319027),(104570,4,33121,3,1672319027),(104571,4,33122,3,1672319027),(104572,4,33123,3,1672319027),(104573,4,33124,3,1672319027),(104574,4,33125,3,1672319027),(104575,4,33126,3,1672319027),(104576,4,33127,3,1672319027),(104577,4,33128,3,1672319027),(104578,4,33129,3,1672319027),(104579,4,33130,3,1672319027),(104580,4,33131,3,1672319027),(104581,4,33132,3,1672319027),(104582,4,33133,3,1672319027),(104583,4,33134,3,1672319027),(104584,4,33135,3,1672319027),(104585,4,33136,3,1672319027),(104586,4,33137,3,1672319027),(104587,4,33138,3,1672319027),(104588,4,33139,3,1672319027),(104589,4,33140,3,1672319027),(104590,4,33141,3,1672319027),(104591,4,33142,3,1672319027),(104592,4,33143,3,1672319027),(104593,4,33144,3,1672319027),(104594,4,33145,3,1672319027),(104595,4,33146,3,1672319027),(104596,4,33147,3,1672319027),(104597,4,33148,3,1672319027),(104598,4,33149,3,1672319027),(104599,4,33150,3,1672319027),(104600,4,33151,3,1672319027),(104601,4,33152,3,1672319027),(104602,4,33153,3,1672319027),(104603,4,33154,3,1672319027),(104604,4,33155,3,1672319027),(104605,4,33156,3,1672319027),(104606,4,33157,3,1672319027),(104607,4,33158,3,1672319027),(104608,4,33159,3,1672319027),(104609,4,33160,3,1672319027),(104610,4,33161,3,1672319027),(104611,4,33162,3,1672319027),(104612,4,33163,3,1672319027),(104613,4,33164,3,1672319027),(104614,4,33165,3,1672319027),(104615,4,33166,3,1672319027),(104616,4,33167,3,1672319027),(104617,4,33168,3,1672319027),(104618,4,33169,3,1672319027),(104619,4,33170,3,1672319027),(104620,4,33171,3,1672319027),(104621,4,33172,3,1672319027),(104622,4,33173,3,1672319027),(104623,4,33174,3,1672319027),(104624,4,33175,3,1672319027),(104625,4,33176,3,1672319027),(104626,4,33177,3,1672319027),(104627,4,33178,3,1672319027),(104628,4,33179,3,1672319027),(104629,4,33180,3,1672319027),(104630,4,33181,3,1672319027),(104631,4,33182,3,1672319027),(104632,4,33183,3,1672319027),(104633,4,33184,3,1672319027),(104634,4,33185,3,1672319027),(104635,4,33186,3,1672319027),(104636,4,33187,3,1672319027),(104637,4,33188,3,1672319027),(104638,4,33189,3,1672319027),(104639,4,33190,3,1672319027),(104640,4,33191,3,1672319027),(104641,4,33192,3,1672319027),(104642,4,33193,3,1672319027),(104643,4,33194,3,1672319027),(104644,4,33195,3,1672319027),(104645,4,33196,3,1672319027),(104646,4,33197,3,1672319027),(104647,4,33198,3,1672319027),(104648,4,33199,3,1672319027),(104649,4,33200,3,1672319027),(104650,4,33201,3,1672319027),(104651,4,33202,3,1672319027),(104652,4,33203,3,1672319027),(104653,4,33204,3,1672319027),(104654,4,33205,3,1672319027),(104655,4,33206,3,1672319027),(104656,4,33207,3,1672319027),(104657,4,33208,3,1672319027),(104658,4,33209,3,1672319027),(104659,4,33210,3,1672319027),(104660,4,33211,3,1672319027),(104661,4,33212,3,1672319027),(104662,4,33213,3,1672319027),(104663,4,33214,3,1672319027),(104664,4,33215,3,1672319027),(104665,4,33216,3,1672319027),(104666,4,33217,3,1672319027),(104667,4,33218,3,1672319027),(104668,4,33219,3,1672319027),(104669,4,33220,3,1672319027),(104670,4,33221,3,1672319027),(104671,4,33222,3,1672319027),(104672,4,33223,3,1672319027),(104673,4,33224,3,1672319027),(104674,4,33225,3,1672319027),(104675,4,33226,3,1672319027),(104676,4,33227,3,1672319027),(104677,4,33228,3,1672319027),(104678,4,33229,3,1672319027),(104679,4,33230,3,1672319027),(104680,4,33231,3,1672319027),(104681,4,33232,3,1672319027),(104682,4,33233,3,1672319027),(104683,4,33234,3,1672319027),(104684,4,33235,3,1672319027),(104685,4,33236,3,1672319027),(104686,4,33237,3,1672319027),(104687,4,33238,3,1672319027),(104688,4,33239,3,1672319027),(104689,4,33240,3,1672319027),(104690,4,33241,3,1672319027),(104691,4,33242,3,1672319027),(104692,4,33243,3,1672319027),(104693,4,33244,3,1672319027),(104694,4,33245,3,1672319027),(104695,4,33246,3,1672319027),(104696,4,33247,3,1672319027),(104697,4,33248,3,1672319027),(104698,4,33249,3,1672319027),(104699,4,33250,3,1672319027),(104700,4,33251,3,1672319027),(104701,4,33252,3,1672319027),(104702,4,33253,3,1672319027),(104703,4,33254,3,1672319027),(104704,4,33255,3,1672319027),(104705,4,33256,3,1672319027),(104706,4,33257,3,1672319027),(104707,4,33258,3,1672319027),(104708,4,33259,3,1672319027),(104709,4,33260,3,1672319027),(104710,4,33261,3,1672319027),(104711,4,33262,3,1672319027),(104712,4,33263,3,1672319027),(104713,4,33264,3,1672319027),(104714,4,33265,3,1672319027),(104715,4,33266,3,1672319027),(104716,4,33267,3,1672319027),(104717,4,33268,3,1672319027),(104718,4,33269,3,1672319027),(104719,4,33270,3,1672319027),(104720,4,33271,3,1672319027),(104721,4,33272,3,1672319027),(104722,4,33273,3,1672319027),(104723,4,33274,3,1672319027),(104724,4,33275,3,1672319027),(104725,4,33276,3,1672319027),(104726,4,33277,3,1672319027),(104727,4,33278,3,1672319027),(104728,4,33279,3,1672319027),(104729,4,33280,3,1672319027),(104730,4,33281,3,1672319027),(104731,4,33282,3,1672319027),(104732,4,33283,3,1672319027),(104733,4,33284,3,1672319027),(104734,4,33285,3,1672319027),(104735,4,33286,3,1672319027),(104736,4,33287,3,1672319027),(104737,4,33288,3,1672319027),(104738,4,33289,3,1672319027),(104739,4,33290,3,1672319027),(104740,4,33291,3,1672319027),(104741,4,33292,3,1672319027),(104742,4,33293,3,1672319027),(104743,4,33294,3,1672319027),(104744,4,33295,3,1672319027),(104745,4,33296,3,1672319027),(104746,4,33297,3,1672319027),(104747,4,33298,3,1672319027),(104748,4,33299,3,1672319027),(104749,4,33300,3,1672319027),(104750,4,33301,3,1672319027),(104751,4,33302,3,1672319027),(104752,4,33303,3,1672319027),(104753,4,33304,3,1672319027),(104754,4,33305,3,1672319027),(104755,4,33306,3,1672319027),(104756,4,33307,3,1672319027),(104757,4,33308,3,1672319027),(104758,4,33309,3,1672319027),(104759,4,33310,3,1672319027),(104760,4,33311,3,1672319027),(104761,4,33312,3,1672319027),(104762,4,33313,3,1672319027),(104763,4,33314,3,1672319027),(104764,4,33315,3,1672319027),(104765,4,33316,3,1672319027),(104766,4,33317,3,1672319027),(104767,4,33318,3,1672319027),(104768,4,33319,3,1672319027),(104769,4,33320,3,1672319027),(104770,4,33321,3,1672319027),(104771,4,33322,3,1672319027),(104772,4,33323,3,1672319027),(104773,4,33324,3,1672319027),(104774,4,33325,3,1672319027),(104775,4,33326,3,1672319027),(104776,4,33327,3,1672319027),(104777,4,33328,3,1672319027),(104778,4,33329,3,1672319027),(104779,4,33330,3,1672319027),(104780,4,33331,3,1672319027),(104781,4,33332,3,1672319027),(104782,4,33333,3,1672319027),(104783,4,33334,3,1672319027),(104784,4,33335,3,1672319027),(104785,4,33336,3,1672319027),(104786,4,33337,3,1672319027),(104787,4,33338,3,1672319027),(104788,4,33339,3,1672319027),(104789,4,33340,3,1672319027),(104790,4,33341,3,1672319027),(104791,4,33342,3,1672319027),(104792,4,33343,3,1672319027),(104793,4,33344,3,1672319027),(104794,4,33345,3,1672319027),(104795,4,33346,3,1672319027),(104796,4,33347,3,1672319027),(104797,4,33348,3,1672319027),(104798,4,33349,3,1672319027),(104799,4,33350,3,1672319027),(104800,4,33351,3,1672319027),(104801,4,33352,3,1672319027),(104802,4,33353,3,1672319027),(104803,4,33354,3,1672319027),(104804,4,33355,3,1672319027),(104805,4,33356,3,1672319027),(104806,4,33357,3,1672319027),(104807,4,33358,3,1672319027),(104808,4,33359,3,1672319027),(104809,4,33360,3,1672319027),(104810,4,33361,3,1672319027),(104811,4,33362,3,1672319027),(104812,4,33363,3,1672319027),(104813,4,33364,3,1672319027),(104814,4,33365,3,1672319027),(104815,4,33366,3,1672319027),(104816,4,33367,3,1672319027),(104817,4,33368,3,1672319027),(104818,4,33369,3,1672319027),(104819,4,33370,3,1672319027),(104820,4,33371,3,1672319027),(104821,4,33372,3,1672319027),(104822,4,33373,3,1672319027),(104823,4,33374,3,1672319027),(104824,4,33375,3,1672319027),(104825,4,33376,3,1672319027),(104826,4,33377,3,1672319027),(104827,4,33378,3,1672319027),(104828,4,33379,3,1672319027),(104829,4,33380,3,1672319027),(104830,4,33381,3,1672319027),(104831,4,33382,3,1672319027),(104832,4,33383,3,1672319027),(104833,4,33384,3,1672319027),(104834,4,33385,3,1672319027),(104835,4,33386,3,1672319027),(104836,4,33387,3,1672319027),(104837,4,33388,3,1672319027),(104838,4,33389,3,1672319027),(104839,4,33390,3,1672319027),(104840,4,33391,3,1672319027),(104841,4,33392,3,1672319027),(104842,4,33393,3,1672319027),(104843,4,33394,3,1672319027),(104844,4,33395,3,1672319027),(104845,4,33396,3,1672319027),(104846,4,33397,3,1672319027),(104847,4,33398,3,1672319027),(104848,4,33399,3,1672319027),(104849,4,33400,3,1672319027),(104850,4,33401,3,1672319027),(104851,4,33402,3,1672319027),(104852,4,33403,3,1672319027),(104853,4,33404,3,1672319027),(104854,4,33405,3,1672319027),(104855,4,33406,3,1672319027),(104856,4,33407,3,1672319027),(104857,4,33408,3,1672319027),(104858,4,33409,3,1672319027),(104859,4,33410,3,1672319027),(104860,4,33411,3,1672319027),(104861,4,33412,3,1672319027),(104862,4,33413,3,1672319027),(104863,4,33414,3,1672319027),(104864,4,33415,3,1672319027),(104865,4,33416,3,1672319027),(104866,4,33417,3,1672319027),(104867,4,33418,3,1672319027),(104868,4,33419,3,1672319027),(104869,4,33420,3,1672319027),(104870,4,33421,3,1672319027),(104871,4,33422,3,1672319027),(104872,4,33423,3,1672319027),(104873,4,33424,3,1672319027),(104874,4,33425,3,1672319027),(104875,4,33426,3,1672319027),(104876,4,33427,3,1672319027),(104877,4,33428,3,1672319027),(104878,4,33429,3,1672319027),(104879,4,33430,3,1672319027),(104880,4,33431,3,1672319027),(104881,4,33432,3,1672319027),(104882,4,33433,3,1672319027),(104883,4,33434,3,1672319027),(104884,4,33435,3,1672319027),(104885,4,33436,3,1672319027),(104886,4,33437,3,1672319027),(104887,4,33438,3,1672319027),(104888,4,33439,3,1672319027),(104889,4,33440,3,1672319027),(104890,4,33441,3,1672319027),(104891,4,33442,3,1672319027),(104892,4,33443,3,1672319027),(104893,4,33444,3,1672319027),(104894,4,33445,3,1672319027),(104895,4,33446,3,1672319027),(104896,4,33447,3,1672319027),(104897,4,33448,3,1672319027),(104898,4,33449,3,1672319027),(104899,4,33450,3,1672319027),(104900,4,33451,3,1672319027),(104901,4,33452,3,1672319027),(104902,4,33453,3,1672319027),(104903,4,33454,3,1672319027),(104904,4,33455,3,1672319027),(104905,4,33456,3,1672319027),(104906,4,33457,3,1672319027),(104907,4,33458,3,1672319027),(104908,4,33459,3,1672319027),(104909,4,33460,3,1672319027),(104910,4,33461,3,1672319027),(104911,4,33462,3,1672319027),(104912,4,33463,3,1672319027),(104913,4,33464,3,1672319027),(104914,4,33465,3,1672319027),(104915,4,33466,3,1672319027),(104916,4,33467,3,1672319027),(104917,4,33468,3,1672319027),(104918,4,33469,3,1672319027),(104919,4,33470,3,1672319027),(104920,4,33471,3,1672319027),(104921,4,33472,3,1672319027),(104922,4,33473,3,1672319027),(104923,4,33474,3,1672319027),(104924,4,33475,3,1672319027),(104925,4,33476,3,1672319027),(104926,4,33477,3,1672319027),(104927,4,33478,3,1672319027),(104928,4,33479,3,1672319027),(104929,4,33480,3,1672319027),(104930,4,33481,3,1672319027),(104931,4,33482,3,1672319027),(104932,4,33483,3,1672319027),(104933,4,33484,3,1672319027),(104934,4,33485,3,1672319027),(104935,4,33486,3,1672319027),(104936,4,33487,3,1672319027),(104937,4,33488,3,1672319027),(104938,4,33489,3,1672319027),(104939,4,33490,3,1672319027),(104940,4,33491,3,1672319027),(104941,4,33492,3,1672319027),(104942,4,33493,3,1672319027),(104943,4,33494,3,1672319027),(104944,4,33495,3,1672319027),(104945,4,33496,3,1672319027),(104946,4,33497,3,1672319027),(104947,4,33498,3,1672319027),(104948,4,33499,3,1672319027),(104949,4,33500,3,1672319027),(104950,4,33501,3,1672319027),(104951,4,33502,3,1672319027),(104952,4,33503,3,1672319027),(104953,4,33504,3,1672319027),(104954,4,33505,3,1672319027),(104955,4,33506,3,1672319027),(104956,4,33507,3,1672319027),(104957,4,33508,3,1672319027),(104958,4,33509,3,1672319027),(104959,4,33510,3,1672319027),(104960,4,33511,3,1672319027),(104961,4,33512,3,1672319027),(104962,4,33513,3,1672319027),(104963,4,33514,3,1672319027),(104964,4,33515,3,1672319027),(104965,4,33516,3,1672319027),(104966,4,33517,3,1672319027),(104967,4,33518,3,1672319027),(104968,4,33519,3,1672319027),(104969,4,33520,3,1672319027),(104970,4,33521,3,1672319027),(104971,4,33522,3,1672319027),(104972,4,33523,3,1672319027),(104973,4,33524,3,1672319027),(104974,4,33525,3,1672319027),(104975,4,33526,3,1672319027),(104976,4,33527,3,1672319027),(104977,4,33528,3,1672319027),(104978,4,33529,3,1672319027),(104979,4,33530,3,1672319027),(104980,4,33531,3,1672319027),(104981,4,33532,3,1672319027),(104982,4,33533,3,1672319027),(104983,4,33534,3,1672319027),(104984,4,33535,3,1672319027),(104985,4,33536,3,1672319027),(104986,4,33537,3,1672319027),(104987,4,33538,3,1672319027),(104988,4,33539,3,1672319027),(104989,4,33540,3,1672319027),(104990,4,33541,3,1672319027),(104991,4,33542,3,1672319027),(104992,4,33543,3,1672319027),(104993,4,33544,3,1672319027),(104994,4,33545,3,1672319027),(104995,4,33546,3,1672319027),(104996,4,33547,3,1672319027),(104997,4,33548,3,1672319027),(104998,4,33549,3,1672319027),(104999,4,33550,3,1672319027),(105000,4,33551,3,1672319027),(105001,4,33552,3,1672319027),(105002,4,33553,3,1672319027),(105003,4,33554,3,1672319027),(105004,4,33555,3,1672319027),(105005,4,33556,3,1672319027),(105006,4,33557,3,1672319027),(105007,4,33558,3,1672319027),(105008,4,33559,3,1672319027),(105009,4,33560,3,1672319027),(105010,4,33561,3,1672319027),(105011,4,33562,3,1672319027),(105012,4,33563,3,1672319027),(105013,4,33564,3,1672319027),(105014,4,33565,3,1672319027),(105015,4,33566,3,1672319027),(105016,4,33567,3,1672319027),(105017,4,33568,3,1672319027),(105018,4,33569,3,1672319027),(105019,4,33570,3,1672319027),(105020,4,33571,3,1672319027),(105021,4,33572,3,1672319027),(105022,4,33573,3,1672319027),(105023,4,33574,3,1672319027),(105024,4,33575,3,1672319027),(105025,4,33576,3,1672319027),(105026,4,33577,3,1672319027),(105027,4,33578,3,1672319027),(105028,4,33579,3,1672319027),(105029,4,33580,3,1672319027),(105030,4,33581,3,1672319027),(105031,4,33582,3,1672319027),(105032,4,33583,3,1672319027),(105033,4,33584,3,1672319027),(105034,4,33585,3,1672319027),(105035,4,33586,3,1672319027),(105036,4,33587,3,1672319027),(105037,4,33588,3,1672319027),(105038,4,33589,3,1672319027),(105039,4,33590,3,1672319027),(105040,4,33591,3,1672319027),(105041,4,33592,3,1672319027),(105042,4,33593,3,1672319027),(105043,4,33594,3,1672319027),(105044,4,33595,3,1672319027),(105045,4,33596,3,1672319027),(105046,4,33597,3,1672319027),(105047,4,33598,3,1672319027),(105048,4,33599,3,1672319027),(105049,4,33600,3,1672319027),(105050,4,33601,3,1672319027),(105051,4,33602,3,1672319027),(105052,4,33603,3,1672319027),(105053,4,33604,3,1672319027),(105054,4,33605,3,1672319027),(105055,4,33606,3,1672319027),(105056,4,33607,3,1672319027),(105057,4,33608,3,1672319027),(105058,4,33609,3,1672319027),(105059,4,33610,3,1672319027),(105060,4,33611,3,1672319027),(105061,4,33612,3,1672319027),(105062,4,33613,3,1672319027),(105063,4,33614,3,1672319027),(105064,4,33615,3,1672319027),(105065,4,33616,3,1672319027),(105066,4,33617,3,1672319027),(105067,4,33618,3,1672319027),(105068,4,33619,3,1672319027),(105069,4,33620,3,1672319027),(105070,4,33621,3,1672319027),(105071,4,33622,3,1672319027),(105072,4,33623,3,1672319027),(105073,4,33624,3,1672319027),(105074,4,33625,3,1672319027),(105075,4,33626,3,1672319027),(105076,4,33627,3,1672319027),(105077,4,33628,3,1672319027),(105078,4,33629,3,1672319027),(105079,4,33630,3,1672319027),(105080,4,33631,3,1672319027),(105081,4,33632,3,1672319027),(105082,4,33633,3,1672319027),(105083,4,33634,3,1672319027),(105084,4,33635,3,1672319027),(105085,4,33636,3,1672319027),(105086,4,33637,3,1672319027),(105087,4,33638,3,1672319027),(105088,4,33639,3,1672319027),(105089,4,33640,3,1672319027),(105090,4,33641,3,1672319027),(105091,4,33642,3,1672319027),(105092,4,33643,3,1672319027),(105093,4,33644,3,1672319027),(105094,4,33645,3,1672319027),(105095,4,33646,3,1672319027),(105096,4,33647,3,1672319027),(105097,4,33648,3,1672319027),(105098,4,33649,3,1672319027),(105099,4,33650,3,1672319027),(105100,4,33651,3,1672319027),(105101,4,33652,3,1672319027),(105102,4,33653,3,1672319027),(105103,4,33654,3,1672319027),(105104,4,33655,3,1672319027),(105105,4,33656,3,1672319027),(105106,4,33657,3,1672319027),(105107,4,33658,3,1672319027),(105108,4,33659,3,1672319027),(105109,4,33660,3,1672319027),(105110,4,33661,3,1672319027),(105111,4,33662,3,1672319027),(105112,4,33663,3,1672319027),(105113,4,33664,3,1672319027),(105114,4,33665,3,1672319027),(105115,4,33666,3,1672319027),(105116,4,33667,3,1672319027),(105117,4,33668,3,1672319027),(105118,4,33669,3,1672319027),(105119,4,33670,3,1672319027),(105120,4,33671,3,1672319027),(105121,4,33672,3,1672319027),(105122,4,33673,3,1672319027),(105123,4,33674,3,1672319027),(105124,4,33675,3,1672319027),(105125,4,33676,3,1672319027),(105126,4,33677,3,1672319027),(105127,4,33678,3,1672319027),(105128,4,33679,3,1672319027),(105129,4,33680,3,1672319027),(105130,4,33681,3,1672319027),(105131,4,33682,3,1672319027),(105132,4,33683,3,1672319027),(105133,4,33684,3,1672319027),(105134,4,33685,3,1672319027),(105135,4,33686,3,1672319027),(105136,4,33687,3,1672319027),(105137,4,33688,3,1672319027),(105138,4,33689,3,1672319027),(105139,4,33690,3,1672319027),(105140,4,33691,3,1672319027),(105141,4,33692,3,1672319027),(105142,4,33693,3,1672319027),(105143,4,33694,3,1672319027),(105144,4,33695,3,1672319027),(105145,4,33696,3,1672319027),(105146,4,33697,3,1672319027),(105147,4,33698,3,1672319027),(105148,4,33699,3,1672319027),(105149,4,33700,3,1672319027),(105150,4,33701,3,1672319027),(105151,4,33702,3,1672319027),(105152,4,33703,3,1672319027),(105153,4,33704,3,1672319027),(105154,4,33705,3,1672319027),(105155,4,33706,3,1672319027),(105156,4,33707,3,1672319027),(105157,4,33708,3,1672319027),(105158,4,33709,3,1672319027),(105159,4,33710,3,1672319027),(105160,4,33711,3,1672319027),(105161,4,33712,3,1672319027),(105162,4,33713,3,1672319027),(105163,4,33714,3,1672319027),(105164,4,33715,3,1672319027),(105165,4,33716,3,1672319027),(105166,4,33717,3,1672319027),(105167,4,33718,3,1672319027),(105168,4,33719,3,1672319027),(105169,4,33720,3,1672319027),(105170,4,33721,3,1672319027),(105171,4,33722,3,1672319027),(105172,4,33723,3,1672319027),(105173,4,33724,3,1672319027),(105174,4,33725,3,1672319027),(105175,4,33726,3,1672319027),(105176,4,33727,3,1672319027),(105177,4,33728,3,1672319027),(105178,4,33729,3,1672319027),(105179,4,33730,3,1672319027),(105180,4,33731,3,1672319027),(105181,4,33732,3,1672319027),(105182,4,33733,3,1672319027),(105183,4,33734,3,1672319027),(105184,4,33735,3,1672319027),(105185,4,33736,3,1672319027),(105186,4,33737,3,1672319027),(105187,4,33738,3,1672319027),(105188,4,33739,3,1672319027),(105189,4,33740,3,1672319027),(105190,4,33741,3,1672319027),(105191,4,33742,3,1672319027),(105192,4,33743,3,1672319027),(105193,4,33744,3,1672319027),(105194,4,33745,3,1672319027),(105195,4,33746,3,1672319027),(105196,4,33747,3,1672319027),(105197,4,33748,3,1672319027),(105198,4,33749,3,1672319027),(105199,4,33750,3,1672319027),(105200,4,33751,3,1672319027),(105201,4,33752,3,1672319027),(105202,4,33753,3,1672319027),(105203,4,33754,3,1672319027),(105204,4,33755,3,1672319027),(105205,4,33756,3,1672319027),(105206,4,33757,3,1672319027),(105207,4,33758,3,1672319027),(105208,4,33759,3,1672319027),(105209,4,33760,3,1672319027),(105210,4,33761,3,1672319027),(105211,4,33762,3,1672319027),(105212,4,33763,3,1672319027),(105213,4,33764,3,1672319027),(105214,4,33765,3,1672319027),(105215,4,33766,3,1672319027),(105216,4,33767,3,1672319027),(105217,4,33768,3,1672319027),(105218,4,33769,3,1672319027),(105219,4,33770,3,1672319027),(105220,4,33771,3,1672319027),(105221,4,33772,3,1672319027),(105222,4,33773,3,1672319027),(105223,4,33774,3,1672319027),(105224,4,33775,3,1672319027),(105225,4,33776,3,1672319027),(105226,4,33777,3,1672319027),(105227,4,33778,3,1672319027),(105228,4,33779,3,1672319027),(105229,4,33780,3,1672319027),(105230,4,33781,3,1672319027),(105231,4,33782,3,1672319027),(105232,4,33783,3,1672319027),(105233,4,33784,3,1672319027),(105234,4,33785,3,1672319027),(105235,4,33786,3,1672319027),(105236,4,33787,3,1672319027),(105237,4,33788,3,1672319027),(105238,4,33789,3,1672319027),(105239,4,33790,3,1672319027),(105240,4,33791,3,1672319027),(105241,4,33792,3,1672319027),(105242,4,33793,3,1672319027),(105243,4,33794,3,1672319027),(105244,4,33795,3,1672319027),(105245,4,33796,3,1672319027),(105246,4,33797,3,1672319027),(105247,4,33798,3,1672319027),(105248,4,33799,3,1672319027),(105249,4,33800,3,1672319027),(105250,4,33801,3,1672319027),(105251,4,33802,3,1672319027),(105252,4,33803,3,1672319027),(105253,4,33804,3,1672319027),(105254,4,33805,3,1672319027),(105255,4,33806,3,1672319027),(105256,4,33807,3,1672319027),(105257,4,33808,3,1672319027),(105258,4,33809,3,1672319027),(105259,4,33810,3,1672319027),(105260,4,33811,3,1672319027),(105261,4,33812,3,1672319027),(105262,4,33813,3,1672319027),(105263,4,33814,3,1672319027),(105264,4,33815,3,1672319027),(105265,4,33816,3,1672319027),(105266,4,33817,3,1672319027),(105267,4,33818,3,1672319027),(105268,4,33819,3,1672319027),(105269,4,33820,3,1672319027),(105270,4,33821,3,1672319027),(105271,4,33822,3,1672319027),(105272,4,33823,3,1672319027),(105273,4,33824,3,1672319027),(105274,4,33825,3,1672319027),(105275,4,33826,3,1672319027),(105276,4,33827,3,1672319027),(105277,4,33828,3,1672319027),(105278,4,33829,3,1672319027),(105279,4,33830,3,1672319027),(105280,4,33831,3,1672319027),(105281,4,33832,3,1672319027),(105282,4,33833,3,1672319027),(105283,4,33834,3,1672319027),(105284,4,33835,3,1672319027),(105285,4,33836,3,1672319027),(105286,4,33837,3,1672319027),(105287,4,33838,3,1672319027),(105288,4,33839,3,1672319027),(105289,4,33840,3,1672319027),(105290,4,33841,3,1672319027),(105291,4,33842,3,1672319027),(105292,4,33843,3,1672319027),(105293,4,33844,3,1672319027),(105294,4,33845,3,1672319027),(105295,4,33846,3,1672319027),(105296,4,33847,3,1672319027),(105297,4,33848,3,1672319027),(105298,4,33849,3,1672319027),(105299,4,33850,3,1672319027),(105300,4,33851,3,1672319027),(105301,4,33852,3,1672319027),(105302,4,33853,3,1672319027),(105303,4,33854,3,1672319027),(105304,4,33855,3,1672319027),(105305,4,33856,3,1672319027),(105306,4,33857,3,1672319027),(105307,4,33858,3,1672319027),(105308,4,33859,3,1672319027),(105309,4,33860,3,1672319027),(105310,4,33861,3,1672319027),(105311,4,33862,3,1672319027),(105312,4,33863,3,1672319027),(105313,4,33864,3,1672319027),(105314,4,33865,3,1672319027),(105315,4,33866,3,1672319027),(105316,4,33867,3,1672319027),(105317,4,33868,3,1672319027),(105318,4,33869,3,1672319027),(105319,4,33870,3,1672319027),(105320,4,33871,3,1672319027),(105321,4,33872,3,1672319027),(105322,4,33873,3,1672319027),(105323,4,33874,3,1672319027),(105324,4,33875,3,1672319027),(105325,4,33876,3,1672319027),(105326,4,33877,3,1672319027),(105327,4,33878,3,1672319027),(105328,4,33879,3,1672319027),(105329,4,33880,3,1672319027),(105330,4,33881,3,1672319027),(105331,4,33882,3,1672319027),(105332,4,33883,3,1672319027),(105333,4,33884,3,1672319027),(105334,4,33885,3,1672319027),(105335,4,33886,3,1672319027),(105336,4,33887,3,1672319027),(105337,4,33888,3,1672319027),(105338,4,33889,3,1672319027),(105339,4,33890,3,1672319027),(105340,4,33891,3,1672319027),(105341,4,33892,3,1672319027),(105342,4,33893,3,1672319027),(105343,4,33894,3,1672319027),(105344,4,33895,3,1672319027),(105345,4,33896,3,1672319027),(105346,4,33897,3,1672319027),(105347,4,33898,3,1672319027),(105348,4,33899,3,1672319027),(105349,4,33900,3,1672319027),(105350,4,33901,3,1672319027),(105351,4,33902,3,1672319027),(105352,4,33903,3,1672319027),(105353,4,33904,3,1672319027),(105354,4,33905,3,1672319027),(105355,4,33906,3,1672319027),(105356,4,33907,3,1672319027),(105357,4,33908,3,1672319027),(105358,4,33909,3,1672319027),(105359,4,33910,3,1672319027),(105360,4,33911,3,1672319027),(105361,4,33912,3,1672319027),(105362,4,33913,3,1672319027),(105363,4,33914,3,1672319027),(105364,4,33915,3,1672319027),(105365,4,33916,3,1672319027),(105366,4,33917,3,1672319027),(105367,4,33918,3,1672319027),(105368,4,33919,3,1672319027),(105369,4,33920,3,1672319027),(105370,4,33921,3,1672319027),(105371,4,33922,3,1672319027),(105372,4,33923,3,1672319027),(105373,4,33924,3,1672319027),(105374,4,33925,3,1672319027),(105375,4,33926,3,1672319027),(105376,4,33927,3,1672319027),(105377,4,33928,3,1672319027),(105378,4,33929,3,1672319027),(105379,4,33930,3,1672319027),(105380,4,33931,3,1672319027),(105381,4,33932,3,1672319027),(105382,4,33933,3,1672319027),(105383,4,33934,3,1672319027),(105384,4,33935,3,1672319027),(105385,4,33936,3,1672319027),(105386,4,33937,3,1672319027),(105387,4,33938,3,1672319027),(105388,4,33939,3,1672319027),(105389,4,33940,3,1672319027),(105390,4,33941,3,1672319027),(105391,4,33942,3,1672319027),(105392,4,33943,3,1672319027),(105393,4,33944,3,1672319027),(105394,4,33945,3,1672319027),(105395,4,33946,3,1672319027),(105396,4,33947,3,1672319027),(105397,4,33948,3,1672319027),(105398,4,33949,3,1672319027),(105399,4,33950,3,1672319027),(105400,4,33951,3,1672319027),(105401,4,33952,3,1672319027),(105402,4,33953,3,1672319027),(105403,4,33954,3,1672319027),(105404,4,33955,3,1672319027),(105405,4,33956,3,1672319027),(105406,4,33957,3,1672319027),(105407,4,33958,3,1672319027),(105408,4,33959,3,1672319027),(105409,4,33960,3,1672319027),(105410,4,33961,3,1672319027),(105411,4,33962,3,1672319027),(105412,4,33963,3,1672319027),(105413,4,33964,3,1672319027),(105414,4,33965,3,1672319027),(105415,4,33966,3,1672319027),(105416,4,33967,3,1672319027),(105417,4,33968,3,1672319027),(105418,4,33969,3,1672319027),(105419,4,33970,3,1672319027),(105420,4,33971,3,1672319027),(105421,4,33972,3,1672319027),(105422,4,33973,3,1672319027),(105423,4,33974,3,1672319027),(105424,4,33975,3,1672319027),(105425,4,33976,3,1672319027),(105426,4,33977,3,1672319027),(105427,4,33978,3,1672319027),(105428,4,33979,3,1672319027),(105429,4,33980,3,1672319027),(105430,4,33981,3,1672319027),(105431,4,33982,3,1672319027),(105432,4,33983,3,1672319027),(105433,4,33984,3,1672319027),(105434,4,33985,3,1672319027),(105435,4,33986,3,1672319027),(105436,4,33987,3,1672319027),(105437,4,33988,3,1672319027),(105438,4,33989,3,1672319027),(105439,4,33990,3,1672319027),(105440,4,33991,3,1672319027),(105441,4,33992,3,1672319027),(105442,4,33993,3,1672319027),(105443,4,33994,3,1672319027),(105444,4,33995,3,1672319027),(105445,4,33996,3,1672319027),(105446,4,33997,3,1672319027),(105447,4,33998,3,1672319027),(105448,4,33999,3,1672319027),(105449,4,34000,3,1672319027),(105450,4,34001,3,1672319027),(105451,4,34002,3,1672319027),(105452,4,34003,3,1672319027),(105453,4,34004,3,1672319027),(105454,4,34005,3,1672319027),(105455,4,34006,3,1672319027),(105456,4,34007,3,1672319027),(105457,4,34008,3,1672319027),(105458,4,34009,3,1672319027),(105459,4,34010,3,1672319027),(105460,4,34011,3,1672319027),(105461,4,34012,3,1672319027),(105462,4,34013,3,1672319027),(105463,4,34014,3,1672319027),(105464,4,34015,3,1672319027),(105465,4,34016,3,1672319027),(105466,4,34017,3,1672319027),(105467,4,34018,3,1672319027),(105468,4,34019,3,1672319027),(105469,4,34020,3,1672319027),(105470,4,34021,3,1672319027),(105471,4,34022,3,1672319027),(105472,4,34023,3,1672319027),(105473,4,34024,3,1672319027),(105474,4,34025,3,1672319027),(105475,4,34026,3,1672319027),(105476,4,34027,3,1672319027),(105477,4,34028,3,1672319027),(105478,4,34029,3,1672319027),(105479,4,34030,3,1672319027),(105480,4,34031,3,1672319027),(105481,4,34032,3,1672319027),(105482,4,34033,3,1672319027),(105483,4,34034,3,1672319027),(105484,4,34035,3,1672319027),(105485,4,34036,3,1672319027),(105486,4,34037,3,1672319027),(105487,4,34038,3,1672319027),(105488,4,34039,3,1672319027),(105489,4,34040,3,1672319027),(105490,4,34041,3,1672319027),(105491,4,34042,3,1672319027),(105492,4,34043,3,1672319027),(105493,4,34044,3,1672319027),(105494,4,34045,3,1672319027),(105495,4,34046,3,1672319027),(105496,4,34047,3,1672319027),(105497,4,34048,3,1672319027),(105498,4,34049,3,1672319027),(105499,4,34050,3,1672319027),(105500,4,34051,3,1672319027),(105501,4,34052,3,1672319027),(105502,4,34053,3,1672319027),(105503,4,34054,3,1672319027),(105504,4,34055,3,1672319027),(105505,4,34056,3,1672319027),(105506,4,34057,3,1672319027),(105507,4,34058,3,1672319027),(105508,4,34059,3,1672319027),(105509,4,34060,3,1672319027),(105510,4,34061,3,1672319027),(105511,4,34062,3,1672319027),(105512,4,34063,3,1672319027),(105513,4,34064,3,1672319027),(105514,4,34065,3,1672319027),(105515,4,34066,3,1672319027),(105516,4,34067,3,1672319027),(105517,4,34068,3,1672319027),(105518,4,34069,3,1672319027),(105519,4,34070,3,1672319027),(105520,4,34071,3,1672319027),(105521,4,34072,3,1672319027),(105522,4,34073,3,1672319027),(105523,4,34074,3,1672319027),(105524,4,34075,3,1672319027),(105525,4,34076,3,1672319027),(105526,4,34077,3,1672319027),(105527,4,34078,3,1672319027),(105528,4,34079,3,1672319027),(105529,4,34080,3,1672319027),(105530,4,34081,3,1672319027),(105531,4,34082,3,1672319027),(105532,4,34083,3,1672319027),(105533,4,34084,3,1672319027),(105534,4,34085,3,1672319027),(105535,4,34086,3,1672319027),(105536,4,34087,3,1672319027),(105537,4,34088,3,1672319027),(105538,4,34089,3,1672319027),(105539,4,34090,3,1672319027),(105540,4,34091,3,1672319027),(105541,4,34092,3,1672319027),(105542,4,34093,3,1672319027),(105543,4,34094,3,1672319027),(105544,4,34095,3,1672319027),(105545,4,34096,3,1672319027),(105546,4,34097,3,1672319027),(105547,4,34098,3,1672319027),(105548,4,34099,3,1672319027),(105549,4,34100,3,1672319027),(105550,4,34101,3,1672319027),(105551,4,34102,3,1672319027),(105552,4,34103,3,1672319027),(105553,4,34104,3,1672319027),(105554,4,34105,3,1672319027),(105555,4,34106,3,1672319027),(105556,4,34107,3,1672319027),(105557,4,34108,3,1672319027),(105558,4,34109,3,1672319027),(105559,4,34110,3,1672319027),(105560,4,34111,3,1672319027),(105561,4,34112,3,1672319027),(105562,4,34113,3,1672319027),(105563,4,34114,3,1672319027),(105564,4,34115,3,1672319027),(105565,4,34116,3,1672319027),(105566,4,34117,3,1672319027),(105567,4,34118,3,1672319027),(105568,4,34119,3,1672319027),(105569,4,34120,3,1672319027),(105570,4,34121,3,1672319027),(105571,4,34122,3,1672319027),(105572,4,34123,3,1672319027),(105573,4,34124,3,1672319027),(105574,4,34125,3,1672319027),(105575,4,34126,3,1672319027),(105576,4,34127,3,1672319027),(105577,4,34128,3,1672319027),(105578,4,34129,3,1672319027),(105579,4,34130,3,1672319027),(105580,4,34131,3,1672319027),(105581,4,34132,3,1672319027),(105582,4,34133,3,1672319027),(105583,4,34134,3,1672319027),(105584,4,34135,3,1672319027),(105585,4,34136,3,1672319027),(105586,4,34137,3,1672319027),(105587,4,34138,3,1672319027),(105588,4,34139,3,1672319027),(105589,4,34140,3,1672319027),(105590,4,34141,3,1672319027),(105591,4,34142,3,1672319027),(105592,4,34143,3,1672319027),(105593,4,34144,3,1672319027),(105594,4,34145,3,1672319027),(105595,4,34146,3,1672319027),(105596,4,34147,3,1672319027),(105597,4,34148,3,1672319027),(105598,4,34149,3,1672319027),(105599,4,34150,3,1672319027),(105600,4,34151,3,1672319027),(105601,4,34152,3,1672319027),(105602,4,34153,3,1672319027),(105603,4,34154,3,1672319027),(105604,4,34155,3,1672319027),(105605,4,34156,3,1672319027),(105606,4,34157,3,1672319027),(105607,4,34158,3,1672319027),(105608,4,34159,3,1672319027),(105609,4,34160,3,1672319027),(105610,4,34161,3,1672319027),(105611,4,34162,3,1672319027),(105612,4,34163,3,1672319027),(105613,4,34164,3,1672319027),(105614,4,34165,3,1672319027),(105615,4,34166,3,1672319027),(105616,4,34167,3,1672319027),(105617,4,34168,3,1672319027),(105618,4,34169,3,1672319027),(105619,4,34170,3,1672319027),(105620,4,34171,3,1672319027),(105621,4,34172,3,1672319027),(105622,4,34173,3,1672319027),(105623,4,34174,3,1672319027),(105624,4,34175,3,1672319027),(105625,4,34176,3,1672319027),(105626,4,34177,3,1672319027),(105627,4,34178,3,1672319027),(105628,4,34179,3,1672319027),(105629,4,34180,3,1672319027),(105630,4,34181,3,1672319027),(105631,4,34182,3,1672319027),(105632,4,34183,3,1672319027),(105633,4,34184,3,1672319027),(105634,4,34185,3,1672319027),(105635,4,34186,3,1672319027),(105636,4,34187,3,1672319027),(105637,4,34188,3,1672319027),(105638,4,34189,3,1672319027),(105639,4,34190,3,1672319027),(105640,4,34191,3,1672319027),(105641,4,34192,3,1672319027),(105642,4,34193,3,1672319027),(105643,4,34194,3,1672319027),(105644,4,34195,3,1672319027),(105645,4,34196,3,1672319027),(105646,4,34197,3,1672319027),(105647,4,34198,3,1672319027),(105648,4,34199,3,1672319027),(105649,4,34200,3,1672319027),(105650,4,34201,3,1672319027),(105651,4,34202,3,1672319027),(105652,4,34203,3,1672319027),(105653,4,34204,3,1672319027),(105654,4,34205,3,1672319027),(105655,4,34206,3,1672319027),(105656,4,34207,3,1672319027),(105657,4,34208,3,1672319027),(105658,4,34209,3,1672319027),(105659,4,34210,3,1672319027),(105660,4,34211,3,1672319027),(105661,4,34212,3,1672319027),(105662,4,34213,3,1672319027),(105663,4,34214,3,1672319027),(105664,4,34215,3,1672319027),(105665,4,34216,3,1672319027),(105666,4,34217,3,1672319027),(105667,4,34218,3,1672319027),(105668,4,34219,3,1672319027),(105669,4,34220,3,1672319027),(105670,4,34221,3,1672319027),(105671,4,34222,3,1672319027),(105672,4,34223,3,1672319027),(105673,4,34224,3,1672319027),(105674,4,34225,3,1672319027),(105675,4,34226,3,1672319027),(105676,4,34227,3,1672319027),(105677,4,34228,3,1672319027),(105678,4,34229,3,1672319027),(105679,4,34230,3,1672319027),(105680,4,34231,3,1672319027),(105681,4,34232,3,1672319027),(105682,4,34233,3,1672319027),(105683,4,34234,3,1672319027),(105684,4,34235,3,1672319027),(105685,4,34236,3,1672319027),(105686,4,34237,3,1672319027),(105687,4,34238,3,1672319027),(105688,4,34239,3,1672319027),(105689,4,34240,3,1672319027),(105690,4,34241,3,1672319027),(105691,4,34242,3,1672319027),(105692,4,34243,3,1672319027),(105693,4,34244,3,1672319027),(105694,4,34245,3,1672319027),(105695,4,34246,3,1672319027),(105696,4,34247,3,1672319027),(105697,4,34248,3,1672319027),(105698,4,34249,3,1672319027),(105699,4,34250,3,1672319027),(105700,4,34251,3,1672319027),(105701,4,34252,3,1672319027),(105702,4,34253,3,1672319027),(105703,4,34254,3,1672319027),(105704,4,34255,3,1672319027),(105705,4,34256,3,1672319027),(105706,4,34257,3,1672319027),(105707,4,34258,3,1672319027),(105708,4,34259,3,1672319027),(105709,4,34260,3,1672319027),(105710,4,34261,3,1672319027),(105711,4,34262,3,1672319027),(105712,4,34263,3,1672319027),(105713,4,34264,3,1672319027),(105714,4,34265,3,1672319027),(105715,4,34266,3,1672319027),(105716,4,34267,3,1672319027),(105717,4,34268,3,1672319027),(105718,4,34269,3,1672319027),(105719,4,34270,3,1672319027),(105720,4,34271,3,1672319027),(105721,4,34272,3,1672319027),(105722,4,34273,3,1672319027),(105723,4,34274,3,1672319027),(105724,4,34275,3,1672319027),(105725,4,34276,3,1672319027),(105726,4,34277,3,1672319027),(105727,4,34278,3,1672319027),(105728,4,34279,3,1672319027),(105729,4,34280,3,1672319027),(105730,4,34281,3,1672319027),(105731,4,34282,3,1672319027),(105732,4,34283,3,1672319027),(105733,4,34284,3,1672319027),(105734,4,34285,3,1672319027),(105735,4,34286,3,1672319027),(105736,4,34287,3,1672319027),(105737,4,34288,3,1672319027),(105738,4,34289,3,1672319027),(105739,4,34290,3,1672319027),(105740,4,34291,3,1672319027),(105741,4,34292,3,1672319027),(105742,4,34293,3,1672319027),(105743,4,34294,3,1672319027),(105744,4,34295,3,1672319027),(105745,4,34296,3,1672319027),(105746,4,34297,3,1672319027),(105747,4,34298,3,1672319027),(105748,4,34299,3,1672319027),(105749,4,34300,3,1672319027),(105750,4,34301,3,1672319027),(105751,4,34302,3,1672319027),(105752,4,34303,3,1672319027),(105753,4,34304,3,1672319027),(105754,4,34305,3,1672319027),(105755,4,34306,3,1672319027),(105756,4,34307,3,1672319027),(105757,4,34308,3,1672319027),(105758,4,34309,3,1672319027),(105759,4,34310,3,1672319027),(105760,4,34311,3,1672319027),(105761,4,34312,3,1672319027),(105762,4,34313,3,1672319027),(105763,4,34314,3,1672319027),(105764,4,34315,3,1672319027),(105765,4,34316,3,1672319027),(105766,4,34317,3,1672319027),(105767,4,34318,3,1672319027),(105768,4,34319,3,1672319027),(105769,4,34320,3,1672319027),(105770,4,34321,3,1672319027),(105771,4,34322,3,1672319027),(105772,4,34323,3,1672319027),(105773,4,34324,3,1672319027),(105774,4,34325,3,1672319027),(105775,4,34326,3,1672319027),(105776,4,34327,3,1672319027),(105777,4,34328,3,1672319027),(105778,4,34329,3,1672319027),(105779,4,34330,3,1672319027),(105780,4,34331,3,1672319027),(105781,4,34332,3,1672319027),(105782,4,34333,3,1672319027),(105783,4,34334,3,1672319027),(105784,4,34335,3,1672319027),(105785,4,34336,3,1672319027),(105786,4,34337,3,1672319027),(105787,4,34338,3,1672319027),(105788,4,34339,3,1672319027),(105789,4,34340,3,1672319027),(105790,4,34341,3,1672319027),(105791,4,34342,3,1672319027),(105792,4,34343,3,1672319027),(105793,4,34344,3,1672319027),(105794,4,34345,3,1672319027),(105795,4,34346,3,1672319027),(105796,4,34347,3,1672319027),(105797,4,34348,3,1672319027),(105798,4,34349,3,1672319027),(105799,4,34350,3,1672319027),(105800,4,34351,3,1672319027),(105801,4,34352,3,1672319027),(105802,4,34353,3,1672319027),(105803,4,34354,3,1672319027),(105804,4,34355,3,1672319027),(105805,4,34356,3,1672319027),(105806,4,34357,3,1672319027),(105807,4,34358,3,1672319027),(105808,4,34359,3,1672319027),(105809,4,34360,3,1672319027),(105810,4,34361,3,1672319027),(105811,4,34362,3,1672319027),(105812,4,34363,3,1672319027),(105813,4,34364,3,1672319027),(105814,4,34365,3,1672319027),(105815,4,34366,3,1672319027),(105816,4,34367,3,1672319027),(105817,4,34368,3,1672319027),(105818,4,34369,3,1672319027),(105819,4,34370,3,1672319027),(105820,4,34371,3,1672319027),(105821,4,34372,3,1672319027),(105822,4,34373,3,1672319027),(105823,4,34374,3,1672319027),(105824,4,34375,3,1672319027),(105825,4,34376,3,1672319027),(105826,4,34377,3,1672319027),(105827,4,34378,3,1672319027),(105828,4,34379,3,1672319027),(105829,4,34380,3,1672319027),(105830,4,34381,3,1672319027),(105831,4,34382,3,1672319027),(105832,4,34383,3,1672319027),(105833,4,34384,3,1672319027),(105834,4,34385,3,1672319027),(105835,4,34386,3,1672319027),(105836,4,34387,3,1672319027),(105837,4,34388,3,1672319027),(105838,4,34389,3,1672319027),(105839,4,34390,3,1672319027),(105840,4,34391,3,1672319027),(105841,4,34392,3,1672319027),(105842,4,34393,3,1672319027),(105843,4,34394,3,1672319027),(105844,4,34395,3,1672319027),(105845,4,34396,3,1672319027),(105846,4,34397,3,1672319027),(105847,4,34398,3,1672319027),(105848,4,34399,3,1672319027),(105849,4,34400,3,1672319027),(105850,4,34401,3,1672319027),(105851,4,34402,3,1672319027),(105852,4,34403,3,1672319027),(105853,4,34404,3,1672319027),(105854,4,34405,3,1672319027),(105855,4,34406,3,1672319027),(105856,4,34407,3,1672319027),(105857,4,34408,3,1672319027),(105858,4,34409,3,1672319027),(105859,4,34410,3,1672319027),(105860,4,34411,3,1672319027),(105861,4,34412,3,1672319027),(105862,4,34413,3,1672319027),(105863,4,34414,3,1672319027),(105864,4,34415,3,1672319027),(105865,4,34416,3,1672319027),(105866,4,34417,3,1672319027),(105867,4,34418,3,1672319027),(105868,4,34419,3,1672319027),(105869,4,34420,3,1672319027),(105870,4,34421,3,1672319027),(105871,4,34422,3,1672319027),(105872,4,34423,3,1672319027),(105873,4,34424,3,1672319027),(105874,4,34425,3,1672319027),(105875,4,34426,3,1672319027),(105876,4,34427,3,1672319027),(105877,4,34428,3,1672319027),(105878,4,34429,3,1672319027),(105879,4,34430,3,1672319027),(105880,4,34431,3,1672319027),(105881,4,34432,3,1672319027),(105882,4,34433,3,1672319027),(105883,4,34434,3,1672319027),(105884,4,34435,3,1672319027),(105885,4,34436,3,1672319027),(105886,4,34437,3,1672319027),(105887,4,34438,3,1672319027),(105888,4,34439,3,1672319027),(105889,4,34440,3,1672319027),(105890,4,34441,3,1672319027),(105891,4,34442,3,1672319027),(105892,4,34443,3,1672319027),(105893,4,34444,3,1672319027),(105894,4,34445,3,1672319027),(105895,4,34446,3,1672319027),(105896,4,34447,3,1672319027),(105897,4,34448,3,1672319027),(105898,4,34449,3,1672319027),(105899,4,34450,3,1672319027),(105900,4,34451,3,1672319027),(105901,4,34452,3,1672319027),(105902,4,34453,3,1672319027),(105903,4,34454,3,1672319027),(105904,4,34455,3,1672319027),(105905,4,34456,3,1672319027),(105906,4,34457,3,1672319027),(105907,4,34458,3,1672319027),(105908,4,34459,3,1672319027),(105909,4,34460,3,1672319027),(105910,4,34461,3,1672319027),(105911,4,34462,3,1672319027),(105912,4,34463,3,1672319027),(105913,4,34464,3,1672319027),(105914,4,34465,3,1672319027),(105915,4,34466,3,1672319027),(105916,4,34467,3,1672319027),(105917,4,34468,3,1672319027),(105918,4,34469,3,1672319027),(105919,4,34470,3,1672319027),(105920,4,34471,3,1672319027),(105921,4,34472,3,1672319027),(105922,4,34473,3,1672319027),(105923,4,34474,3,1672319027),(105924,4,34475,3,1672319027),(105925,4,34476,3,1672319027),(105926,4,34477,3,1672319027),(105927,4,34478,3,1672319027),(105928,4,34479,3,1672319027),(105929,4,34480,3,1672319027),(105930,4,34481,3,1672319027),(105931,4,34482,3,1672319027),(105932,4,34483,3,1672319027),(105933,4,34484,3,1672319027),(105934,4,34485,3,1672319027),(105935,4,34486,3,1672319027),(105936,4,34487,3,1672319027),(105937,4,34488,3,1672319027),(105938,4,34489,3,1672319027),(105939,4,34490,3,1672319027),(105940,4,34491,3,1672319027),(105941,4,34492,3,1672319027),(105942,4,34493,3,1672319027),(105943,4,34494,3,1672319027),(105944,4,34495,3,1672319027),(105945,4,34496,3,1672319027),(105946,4,34497,3,1672319027),(105947,4,34498,3,1672319027),(105948,4,34499,3,1672319027),(105949,4,34500,3,1672319027),(105950,4,34501,3,1672319027),(105951,4,34502,3,1672319027),(105952,4,34503,3,1672319027),(105953,4,34504,3,1672319027),(105954,4,34505,3,1672319027),(105955,4,34506,3,1672319027),(105956,4,34507,3,1672319027),(105957,4,34508,3,1672319027),(105958,4,34509,3,1672319027),(105959,4,34510,3,1672319027),(105960,4,34511,3,1672319027),(105961,4,34512,3,1672319027),(105962,4,34513,3,1672319027),(105963,4,34514,3,1672319027),(105964,4,34515,3,1672319027),(105965,4,34516,3,1672319027),(105966,4,34517,3,1672319027),(105967,4,34518,3,1672319027),(105968,4,34519,3,1672319027),(105969,4,34520,3,1672319027),(105970,4,34521,3,1672319027),(105971,4,34522,3,1672319027),(105972,4,34523,3,1672319027),(105973,4,34524,3,1672319027),(105974,4,34525,3,1672319027),(105975,4,34526,3,1672319027),(105976,4,34527,3,1672319027),(105977,4,34528,3,1672319027),(105978,4,34529,3,1672319027),(105979,4,34530,3,1672319027),(105980,4,34531,3,1672319027),(105981,4,34532,3,1672319027),(105982,4,34533,3,1672319027),(105983,4,34534,3,1672319027),(105984,4,34535,3,1672319027),(105985,4,34536,3,1672319027),(105986,4,34537,3,1672319027),(105987,4,34538,3,1672319027),(105988,4,34539,3,1672319027),(105989,4,34540,3,1672319027),(105990,4,34541,3,1672319027),(105991,4,34542,3,1672319027),(105992,4,34543,3,1672319027),(105993,4,34544,3,1672319027),(105994,4,34545,3,1672319027),(105995,4,34546,3,1672319027),(105996,4,34547,3,1672319027),(105997,4,34548,3,1672319027),(105998,4,34549,3,1672319027),(105999,4,34550,3,1672319027),(106000,4,34551,3,1672319027),(106001,4,34552,3,1672319027),(106002,4,34553,3,1672319027),(106003,4,34554,3,1672319027),(106004,4,34555,3,1672319027),(106005,4,34556,3,1672319027),(106006,4,34557,3,1672319027),(106007,4,34558,3,1672319027),(106008,4,34559,3,1672319027),(106009,4,34560,3,1672319027),(106010,4,34561,3,1672319027),(106011,4,34562,3,1672319027),(106012,4,34563,3,1672319027),(106013,4,34564,3,1672319027),(106014,4,34565,3,1672319027),(106015,4,34566,3,1672319027),(106016,4,34567,3,1672319027),(106017,4,34568,3,1672319027),(106018,4,34569,3,1672319027),(106019,4,34570,3,1672319027),(106020,4,34571,3,1672319027),(106021,4,34572,3,1672319027),(106022,4,34573,3,1672319027),(106023,4,34574,3,1672319027),(106024,4,34575,3,1672319027),(106025,4,34576,3,1672319027),(106026,4,34577,3,1672319027),(106027,4,34578,3,1672319027),(106028,4,34579,3,1672319027),(106029,4,34580,3,1672319027),(106030,4,34581,3,1672319027); INSERT INTO `changelog` VALUES (106031,4,34582,3,1672319027),(106032,4,34583,3,1672319027),(106033,4,34584,3,1672319027),(106034,4,34585,3,1672319027),(106035,4,34586,3,1672319027),(106036,4,34587,3,1672319027),(106037,4,34588,3,1672319027),(106038,4,34589,3,1672319027),(106039,4,34590,3,1672319027),(106040,4,34591,3,1672319027),(106041,4,34592,3,1672319027),(106042,4,34593,3,1672319027),(106043,4,34594,3,1672319027),(106044,4,34595,3,1672319027),(106045,4,34596,3,1672319027),(106046,4,34597,3,1672319027),(106047,4,34598,3,1672319027),(106048,4,34599,3,1672319027),(106049,4,34600,3,1672319027),(106050,4,34601,3,1672319027),(106051,4,34602,3,1672319027),(106052,4,34603,3,1672319027),(106053,4,34604,3,1672319027),(106054,4,34605,3,1672319027),(106055,4,34606,3,1672319027),(106056,4,34607,3,1672319027),(106057,4,34608,3,1672319027),(106058,4,34609,3,1672319027),(106059,4,34610,3,1672319027),(106060,4,34611,3,1672319027),(106061,4,34612,3,1672319027),(106062,4,34613,3,1672319027),(106063,4,34614,3,1672319027),(106064,4,34615,3,1672319027),(106065,4,34616,3,1672319027),(106066,4,34617,3,1672319027),(106067,4,34618,3,1672319027),(106068,4,34619,3,1672319027),(106069,4,34620,3,1672319027),(106070,4,34621,3,1672319027),(106071,4,34622,3,1672319027),(106072,4,34623,3,1672319027),(106073,4,34624,3,1672319027),(106074,4,34625,3,1672319027),(106075,4,34626,3,1672319027),(106076,4,34627,3,1672319027),(106077,4,34628,3,1672319027),(106078,4,34629,3,1672319027),(106079,4,34630,3,1672319027),(106080,4,34631,3,1672319027),(106081,4,34632,3,1672319027),(106082,4,34633,3,1672319027),(106083,4,34634,3,1672319027),(106084,4,34635,3,1672319027),(106085,4,34636,3,1672319027),(106086,4,34637,3,1672319027),(106087,4,34638,3,1672319027),(106088,4,34639,3,1672319027),(106089,4,34640,3,1672319027),(106090,4,34641,3,1672319027),(106091,4,34642,3,1672319027),(106092,4,34643,3,1672319027),(106093,4,34644,3,1672319027),(106094,4,34645,3,1672319027),(106095,4,34646,3,1672319027),(106096,4,34647,3,1672319027),(106097,4,34648,3,1672319027),(106098,4,34649,3,1672319027),(106099,4,34650,3,1672319027),(106100,4,34651,3,1672319027),(106101,4,34652,3,1672319027),(106102,4,34653,3,1672319027),(106103,4,34654,3,1672319027),(106104,4,34655,3,1672319027),(106105,4,34656,3,1672319027),(106106,4,34657,3,1672319027),(106107,4,34658,3,1672319027),(106108,4,34659,3,1672319027),(106109,4,34660,3,1672319027),(106110,4,34661,3,1672319027),(106111,4,34662,3,1672319027),(106112,4,34663,3,1672319027),(106113,4,34664,3,1672319027),(106114,4,34665,3,1672319027),(106115,4,34666,3,1672319027),(106116,4,34667,3,1672319027),(106117,4,34668,3,1672319027),(106118,4,34669,3,1672319027),(106119,4,34670,3,1672319027),(106120,4,34671,3,1672319027),(106121,4,34672,3,1672319027),(106122,4,34673,3,1672319027),(106123,4,34674,3,1672319027),(106124,4,34675,3,1672319027),(106125,4,34676,3,1672319027),(106126,4,34677,3,1672319027),(106127,4,34678,3,1672319027),(106128,4,34679,3,1672319027),(106129,4,34680,3,1672319027),(106130,4,34681,3,1672319027),(106131,4,34682,3,1672319027),(106132,4,34683,3,1672319027),(106133,4,34684,3,1672319027),(106134,4,34685,3,1672319027),(106135,4,34686,3,1672319027),(106136,4,34687,3,1672319027),(106137,4,34688,3,1672319027),(106138,4,34689,3,1672319027),(106139,4,34690,3,1672319027),(106140,4,34691,3,1672319027),(106141,4,34692,3,1672319027),(106142,4,34693,3,1672319027),(106143,4,34694,3,1672319027),(106144,4,34695,3,1672319027),(106145,4,34696,3,1672319027),(106146,4,34697,3,1672319027),(106147,4,34698,3,1672319027),(106148,4,34699,3,1672319027),(106149,4,34700,3,1672319027),(106150,4,34701,3,1672319027),(106151,4,34702,3,1672319027),(106152,4,34703,3,1672319027),(106153,4,34704,3,1672319027),(106154,4,34705,3,1672319027),(106155,4,34706,3,1672319027),(106156,4,34707,3,1672319027),(106157,4,34708,3,1672319027),(106158,4,34709,3,1672319027),(106159,4,34710,3,1672319027),(106160,4,34711,3,1672319027),(106161,4,34712,3,1672319027),(106162,4,34713,3,1672319027),(106163,4,34714,3,1672319027),(106164,4,34715,3,1672319027),(106165,4,34716,3,1672319027),(106166,4,34717,3,1672319027),(106167,4,34718,3,1672319027),(106168,4,34719,3,1672319027),(106169,4,34720,3,1672319027),(106170,4,34721,3,1672319027),(106171,4,34722,3,1672319027),(106172,4,34723,3,1672319027),(106173,4,34724,3,1672319027),(106174,4,34725,3,1672319027),(106175,4,34726,3,1672319027),(106176,4,34727,3,1672319027),(106177,4,34728,3,1672319027),(106178,4,34729,3,1672319027),(106179,4,34730,3,1672319027),(106180,4,34731,3,1672319027),(106181,4,34732,3,1672319027),(106182,4,34733,3,1672319027),(106183,4,34734,3,1672319027),(106184,4,34735,3,1672319027),(106185,4,34736,3,1672319027),(106186,4,34737,3,1672319027),(106187,4,34738,3,1672319027),(106188,4,34739,3,1672319027),(106189,4,34740,3,1672319027),(106190,4,34741,3,1672319027),(106191,4,34742,3,1672319027),(106192,4,34743,3,1672319027),(106193,4,34744,3,1672319027),(106194,4,34745,3,1672319027),(106195,4,34746,3,1672319027),(106196,4,34747,3,1672319027),(106197,4,34748,3,1672319027),(106198,4,34749,3,1672319027),(106199,4,34750,3,1672319027),(106200,4,34751,3,1672319027),(106201,4,34752,3,1672319027),(106202,4,34753,3,1672319027),(106203,4,34754,3,1672319027),(106204,4,34755,3,1672319027),(106205,4,34756,3,1672319027),(106206,4,34757,3,1672319027),(106207,4,34758,3,1672319027),(106208,4,34759,3,1672319027),(106209,4,34760,3,1672319027),(106210,4,34761,3,1672319027),(106211,4,34762,3,1672319027),(106212,4,34763,3,1672319027),(106213,4,34764,3,1672319027),(106214,4,34765,3,1672319027),(106215,4,34766,3,1672319027),(106216,4,34767,3,1672319027),(106217,4,34768,3,1672319027),(106218,4,34769,3,1672319027),(106219,4,34770,3,1672319027),(106220,4,34771,3,1672319027),(106221,4,34772,3,1672319027),(106222,4,34773,3,1672319027),(106223,4,34774,3,1672319027),(106224,4,34775,3,1672319027),(106225,4,34776,3,1672319027),(106226,4,34777,3,1672319027),(106227,4,34778,3,1672319027),(106228,4,34779,3,1672319027),(106229,4,34780,3,1672319027),(106230,4,34781,3,1672319027),(106231,4,34782,3,1672319027),(106232,4,34783,3,1672319027),(106233,4,34784,3,1672319027),(106234,4,34785,3,1672319027),(106235,4,34786,3,1672319027),(106236,4,34787,3,1672319027),(106237,4,34788,3,1672319027),(106238,4,34789,3,1672319027),(106239,4,34790,3,1672319027),(106240,4,34791,3,1672319027),(106241,4,34792,3,1672319027),(106242,4,34793,3,1672319027),(106243,4,34794,3,1672319027),(106244,4,34795,3,1672319027),(106245,4,34796,3,1672319027),(106246,4,34797,3,1672319027),(106247,4,34798,3,1672319027),(106248,4,34799,3,1672319027),(106249,4,34800,3,1672319027),(106250,4,34801,3,1672319027),(106251,4,34802,3,1672319027),(106252,4,34803,3,1672319027),(106253,4,34804,3,1672319027),(106254,4,34805,3,1672319027),(106255,4,34806,3,1672319027),(106256,4,34807,3,1672319027),(106257,4,34808,3,1672319027),(106258,4,34809,3,1672319027),(106259,4,34810,3,1672319027),(106260,4,34811,3,1672319027),(106261,4,34812,3,1672319027),(106262,4,34813,3,1672319027),(106263,4,34814,3,1672319027),(106264,4,34815,3,1672319027),(106265,4,34816,3,1672319027),(106266,4,34817,3,1672319027),(106267,4,34818,3,1672319027),(106268,4,34819,3,1672319027),(106269,4,34820,3,1672319027),(106270,4,34821,3,1672319027),(106271,4,34822,3,1672319027),(106272,4,34823,3,1672319027),(106273,4,34824,3,1672319027),(106274,4,34825,3,1672319027),(106275,4,34826,3,1672319027),(106276,4,34827,3,1672319027),(106277,4,34828,3,1672319027),(106278,4,34829,3,1672319027),(106279,4,34830,3,1672319027),(106280,4,34831,3,1672319027),(106281,4,34832,3,1672319027),(106282,4,34833,3,1672319027),(106283,4,34834,3,1672319027),(106284,4,34835,3,1672319027),(106285,4,34836,3,1672319027),(106286,4,34837,3,1672319027),(106287,4,34838,3,1672319027),(106288,4,34839,3,1672319027),(106289,4,34840,3,1672319027),(106290,4,34841,3,1672319027),(106291,4,34842,3,1672319027),(106292,4,34843,3,1672319027),(106293,4,34844,3,1672319027),(106294,4,34845,3,1672319027),(106295,4,34846,3,1672319027),(106296,4,34847,3,1672319027),(106297,4,34848,3,1672319027),(106298,4,34849,3,1672319027),(106299,4,34850,3,1672319027),(106300,4,34851,3,1672319027),(106301,4,34852,3,1672319027),(106302,4,34853,3,1672319027),(106303,4,34854,3,1672319027),(106304,4,34855,3,1672319027),(106305,4,34856,3,1672319027),(106306,4,34857,3,1672319027),(106307,4,34858,3,1672319027),(106308,4,34859,3,1672319027),(106309,4,34860,3,1672319027),(106310,4,34861,3,1672319027),(106311,4,34862,3,1672319027),(106312,4,34863,3,1672319027),(106313,4,34864,3,1672319027),(106314,4,34865,3,1672319027),(106315,4,34866,3,1672319027),(106316,4,34867,3,1672319027),(106317,4,34868,3,1672319027),(106318,4,34869,3,1672319027),(106319,4,34870,3,1672319027),(106320,4,34871,3,1672319027),(106321,4,34872,3,1672319027),(106322,4,34873,3,1672319027),(106323,4,34874,3,1672319027),(106324,4,34875,3,1672319027),(106325,4,34876,3,1672319027),(106326,4,34877,3,1672319027),(106327,4,34878,3,1672319027),(106328,4,34879,3,1672319027),(106329,4,34880,3,1672319027),(106330,4,34881,3,1672319027),(106331,4,34882,3,1672319027),(106332,4,34883,3,1672319027),(106333,4,34884,3,1672319027),(106334,4,34885,3,1672319027),(106335,4,34886,3,1672319027),(106336,4,34887,3,1672319027),(106337,4,34888,3,1672319027),(106338,4,34889,3,1672319027),(106339,4,34890,3,1672319027),(106340,4,34891,3,1672319027),(106341,4,34892,3,1672319027),(106342,4,34893,3,1672319027),(106343,4,34894,3,1672319027),(106344,4,34895,3,1672319027),(106345,4,34896,3,1672319027),(106346,4,34897,3,1672319027),(106347,4,34898,3,1672319027),(106348,4,34899,3,1672319027),(106349,4,34900,3,1672319027),(106350,4,34901,3,1672319027),(106351,4,34902,3,1672319027),(106352,4,34903,3,1672319027),(106353,4,34904,3,1672319027),(106354,4,34905,3,1672319027),(106355,4,34906,3,1672319027),(106356,4,34907,3,1672319027),(106357,4,34908,3,1672319027),(106358,4,34909,3,1672319027),(106359,4,34910,3,1672319027),(106360,4,34911,3,1672319027),(106361,4,34912,3,1672319027),(106362,4,34913,3,1672319027),(106363,4,34914,3,1672319027),(106364,4,34915,3,1672319027),(106365,4,34916,3,1672319027),(106366,4,34917,3,1672319027),(106367,4,34918,3,1672319027),(106368,4,34919,3,1672319027),(106369,4,34920,3,1672319027),(106370,4,34921,3,1672319027),(106371,4,34922,3,1672319027),(106372,4,34923,3,1672319027),(106373,4,34924,3,1672319027),(106374,4,34925,3,1672319027),(106375,4,34926,3,1672319027),(106376,4,34927,3,1672319027),(106377,4,34928,3,1672319027),(106378,4,34929,3,1672319027),(106379,4,34930,3,1672319027),(106380,4,34931,3,1672319027),(106381,4,34932,3,1672319027),(106382,4,34933,3,1672319027),(106383,4,34934,3,1672319027),(106384,4,34935,3,1672319027),(106385,4,34936,3,1672319027),(106386,4,34937,3,1672319027),(106387,4,34938,3,1672319027),(106388,4,34939,3,1672319027),(106389,4,34940,3,1672319027),(106390,4,34941,3,1672319027),(106391,4,34942,3,1672319027),(106392,4,34943,3,1672319027),(106393,4,34944,3,1672319027),(106394,4,34945,3,1672319027),(106395,4,34946,3,1672319027),(106396,4,34947,3,1672319027),(106397,4,34948,3,1672319027),(106398,4,34949,3,1672319027),(106399,4,34950,3,1672319027),(106400,4,34951,3,1672319027),(106401,4,34952,3,1672319027),(106402,4,34953,3,1672319027),(106403,4,34954,3,1672319027),(106404,4,34955,3,1672319027),(106405,4,34956,3,1672319027),(106406,4,34957,3,1672319027),(106407,4,34958,3,1672319027),(106408,4,34959,3,1672319027),(106409,4,34960,3,1672319027),(106410,4,34961,3,1672319027),(106411,4,34962,3,1672319027),(106412,4,34963,3,1672319027),(106413,4,34964,3,1672319027),(106414,4,34965,3,1672319027),(106415,4,34966,3,1672319027),(106416,4,34967,3,1672319027),(106417,4,34968,3,1672319027),(106418,4,34969,3,1672319027),(106419,4,34970,3,1672319027),(106420,4,34971,3,1672319027),(106421,4,34972,3,1672319027),(106422,4,34973,3,1672319027),(106423,4,34974,3,1672319027),(106424,4,34975,3,1672319027),(106425,4,34976,3,1672319027),(106426,4,34977,3,1672319027),(106427,4,34978,3,1672319027),(106428,4,34979,3,1672319027),(106429,4,34980,3,1672319027),(106430,4,34981,3,1672319027),(106431,4,34982,3,1672319027),(106432,4,34983,3,1672319027),(106433,4,34984,3,1672319027),(106434,4,34985,3,1672319027),(106435,4,34986,3,1672319027),(106436,4,34987,3,1672319027),(106437,4,34988,3,1672319027),(106438,4,34989,3,1672319027),(106439,4,34990,3,1672319027),(106440,4,34991,3,1672319027),(106441,4,34992,3,1672319027),(106442,4,34993,3,1672319027),(106443,4,34994,3,1672319027),(106444,4,34995,3,1672319027),(106445,4,34996,3,1672319027),(106446,4,34997,3,1672319027),(106447,4,34998,3,1672319027),(106448,4,34999,3,1672319027),(106449,4,35000,3,1672319027),(106450,4,35001,3,1672319027),(106451,4,35002,3,1672319027),(106452,4,35003,3,1672319027),(106453,4,35004,3,1672319027),(106454,4,35005,3,1672319027),(106455,4,35006,3,1672319027),(106456,4,35007,3,1672319027),(106457,4,35008,3,1672319027),(106458,4,35009,3,1672319027),(106459,4,35010,3,1672319027),(106460,4,35011,3,1672319027),(106461,4,35012,3,1672319027),(106462,4,35013,3,1672319027),(106463,4,35014,3,1672319027),(106464,4,35015,3,1672319027),(106465,4,35016,3,1672319027),(106466,4,35017,3,1672319027),(106467,4,35018,3,1672319027),(106468,4,35019,3,1672319027),(106469,4,35020,3,1672319027),(106470,4,35021,3,1672319027),(106471,4,35022,3,1672319027),(106472,4,35023,3,1672319027),(106473,4,35024,3,1672319027),(106474,4,35025,3,1672319027),(106475,4,35026,3,1672319027),(106476,4,35027,3,1672319027),(106477,4,35028,3,1672319027),(106478,4,35029,3,1672319027),(106479,4,35030,3,1672319027),(106480,4,35031,3,1672319027),(106481,4,35032,3,1672319027),(106482,4,35033,3,1672319027),(106483,4,35034,3,1672319027),(106484,4,35035,3,1672319027),(106485,4,35036,3,1672319027),(106486,4,35037,3,1672319027),(106487,4,35038,3,1672319027),(106488,4,35039,3,1672319027),(106489,4,35040,3,1672319027),(106490,4,35041,3,1672319027),(106491,4,35042,3,1672319027),(106492,4,35043,3,1672319027),(106493,4,35044,3,1672319027),(106494,4,35045,3,1672319027),(106495,4,35046,3,1672319027),(106496,4,35047,3,1672319027),(106497,4,35048,3,1672319027),(106498,4,35049,3,1672319027),(106499,4,35050,3,1672319027),(106500,4,35051,3,1672319027),(106501,4,35052,3,1672319027),(106502,4,35053,3,1672319027),(106503,4,35054,3,1672319027),(106504,4,35055,3,1672319027),(106505,4,35056,3,1672319027),(106506,4,35057,3,1672319027),(106507,4,35058,3,1672319027),(106508,4,35059,3,1672319027),(106509,4,35060,3,1672319027),(106510,4,35061,3,1672319027),(106511,4,35062,3,1672319027),(106512,4,35063,3,1672319027),(106513,4,35064,3,1672319027),(106514,4,35065,3,1672319027),(106515,4,35066,3,1672319027),(106516,4,35067,3,1672319027),(106517,4,35068,3,1672319027),(106518,4,35069,3,1672319027),(106519,4,35070,3,1672319027),(106520,4,35071,3,1672319027),(106521,4,35072,3,1672319027),(106522,4,35073,3,1672319027),(106523,4,35074,3,1672319027),(106524,4,35075,3,1672319027),(106525,4,35076,3,1672319027),(106526,4,35077,3,1672319027),(106527,4,35078,3,1672319027),(106528,4,35079,3,1672319027),(106529,4,35080,3,1672319027),(106530,4,35081,3,1672319027),(106531,4,35082,3,1672319027),(106532,4,35083,3,1672319027),(106533,4,35084,3,1672319027),(106534,4,35085,3,1672319027),(106535,4,35086,3,1672319027),(106536,4,35087,3,1672319027),(106537,4,35088,3,1672319027),(106538,4,35089,3,1672319027),(106539,4,35090,3,1672319027),(106540,4,35091,3,1672319027),(106541,4,35092,3,1672319027),(106542,4,35093,3,1672319027),(106543,4,35094,3,1672319027),(106544,4,35095,3,1672319027),(106545,4,35096,3,1672319027),(106546,4,35097,3,1672319027),(106547,4,35098,3,1672319027),(106548,4,35099,3,1672319027),(106549,4,35100,3,1672319027),(106550,4,35101,3,1672319027),(106551,4,35102,3,1672319027),(106552,4,35103,3,1672319027),(106553,4,35104,3,1672319027),(106554,4,35105,3,1672319027),(106555,4,35106,3,1672319027),(106556,4,35107,3,1672319027),(106557,4,35108,3,1672319027),(106558,4,35109,3,1672319027),(106559,4,35110,3,1672319027),(106560,4,35111,3,1672319027),(106561,4,35112,3,1672319027),(106562,4,35113,3,1672319027),(106563,4,35114,3,1672319027),(106564,4,35115,3,1672319027),(106565,4,35116,3,1672319027),(106566,4,35117,3,1672319027),(106567,4,35118,3,1672319027),(106568,4,35119,3,1672319027),(106569,4,35120,3,1672319027),(106570,4,35121,3,1672319027),(106571,4,35122,3,1672319027),(106572,4,35123,3,1672319027),(106573,4,35124,3,1672319027),(106574,4,35125,3,1672319027),(106575,4,35126,3,1672319027),(106576,4,35127,3,1672319027),(106577,4,35128,3,1672319027),(106578,4,35129,3,1672319027),(106579,4,35130,3,1672319027),(106580,4,35131,3,1672319027),(106581,4,35132,3,1672319027),(106582,4,35133,3,1672319027),(106583,4,35134,3,1672319027),(106584,4,35135,3,1672319027),(106585,4,35136,3,1672319027),(106586,4,35137,3,1672319027),(106587,4,35138,3,1672319027),(106588,4,35139,3,1672319027),(106589,4,35140,3,1672319027),(106590,4,35141,3,1672319027),(106591,4,35142,3,1672319027),(106592,4,35143,3,1672319027),(106593,4,35144,3,1672319027),(106594,4,35145,3,1672319027),(106595,4,35146,3,1672319027),(106596,4,35147,3,1672319027),(106597,4,35148,3,1672319027),(106598,4,35149,3,1672319027),(106599,4,35150,3,1672319027),(106600,4,35151,3,1672319027),(106601,4,35152,3,1672319027),(106602,4,35153,3,1672319027),(106603,4,35154,3,1672319027),(106604,4,35155,3,1672319027),(106605,4,35156,3,1672319027),(106606,4,35157,3,1672319027),(106607,4,35158,3,1672319027),(106608,4,35159,3,1672319027),(106609,4,35160,3,1672319027),(106610,4,35161,3,1672319027),(106611,4,35162,3,1672319027),(106612,4,35163,3,1672319027),(106613,4,35164,3,1672319027),(106614,4,35165,3,1672319027),(106615,4,35166,3,1672319027),(106616,4,35167,3,1672319027),(106617,4,35168,3,1672319027),(106618,4,35169,3,1672319027),(106619,4,35170,3,1672319027),(106620,4,35171,3,1672319027),(106621,4,35172,3,1672319027),(106622,4,35173,3,1672319027),(106623,4,35174,3,1672319027),(106624,4,35175,3,1672319027),(106625,4,35176,3,1672319027),(106626,4,35177,3,1672319027),(106627,4,35178,3,1672319027),(106628,4,35179,3,1672319027),(106629,4,35180,3,1672319027),(106630,4,35181,3,1672319027),(106631,4,35182,3,1672319027),(106632,4,35183,3,1672319027),(106633,4,35184,3,1672319027),(106634,4,35185,3,1672319027),(106635,4,35186,3,1672319027),(106636,4,35187,3,1672319027),(106637,4,35188,3,1672319027),(106638,4,35189,3,1672319027),(106639,4,35190,3,1672319027),(106640,4,35191,3,1672319027),(106641,4,35192,3,1672319027),(106642,4,35193,3,1672319027),(106643,4,35194,3,1672319027),(106644,4,35195,3,1672319027),(106645,4,35196,3,1672319027),(106646,4,35197,3,1672319027),(106647,4,35198,3,1672319027),(106648,4,35199,3,1672319027),(106649,4,35200,3,1672319027),(106650,4,35201,3,1672319027),(106651,4,35202,3,1672319027),(106652,4,35203,3,1672319027),(106653,4,35204,3,1672319027),(106654,4,35205,3,1672319027),(106655,4,35206,3,1672319027),(106656,4,35207,3,1672319027),(106657,4,35208,3,1672319027),(106658,4,35209,3,1672319027),(106659,4,35210,3,1672319027),(106660,4,35211,3,1672319027),(106661,4,35212,3,1672319027),(106662,4,35213,3,1672319027),(106663,4,35214,3,1672319027),(106664,4,35215,3,1672319027),(106665,4,35216,3,1672319027),(106666,4,35217,3,1672319027),(106667,4,35218,3,1672319027),(106668,4,35219,3,1672319027),(106669,4,35220,3,1672319027),(106670,4,35221,3,1672319027),(106671,4,35222,3,1672319027),(106672,4,35224,3,1672319027),(106673,4,35225,3,1672319027),(106674,4,35227,3,1672319027),(106675,4,35228,3,1672319027),(106676,4,35229,3,1672319027),(106677,4,35230,3,1672319027),(106678,4,35231,3,1672319027),(106679,4,35232,3,1672319027),(106680,4,35233,3,1672319027),(106681,4,35234,3,1672319027),(106682,4,35235,3,1672319027),(106683,4,35236,3,1672319027),(106684,4,35237,3,1672319027),(106685,4,35238,3,1672319027),(106686,4,35239,3,1672319027),(106687,4,35240,3,1672319027),(106688,4,35241,3,1672319027),(106689,4,35242,3,1672319027),(106690,4,35243,3,1672319027),(106691,4,35244,3,1672319027),(106692,4,35245,3,1672319027),(106693,4,35246,3,1672319027),(106694,4,35247,3,1672319027),(106695,4,35248,3,1672319027),(106696,4,35271,3,1672319027),(106697,4,35272,3,1672319027),(106698,4,35273,3,1672319027),(106699,4,35274,3,1672319027),(106700,4,35275,3,1672319027),(106701,4,35276,3,1672319027),(106702,4,35277,3,1672319027),(106703,4,35278,3,1672319027),(106704,4,35279,3,1672319027),(106705,4,35280,3,1672319027),(106706,4,35281,3,1672319027),(106707,4,35282,3,1672319027),(106708,4,35283,3,1672319027),(106709,4,35284,3,1672319027),(106710,4,35285,3,1672319027),(106711,4,35286,3,1672319027),(106712,4,35287,3,1672319027),(106713,4,35288,3,1672319027),(106714,4,35289,3,1672319027),(106715,4,35290,3,1672319027),(106716,4,35291,3,1672319027),(106717,4,35292,3,1672319027),(106718,4,35293,3,1672319027),(106719,4,35294,3,1672319027),(106720,4,35295,3,1672319027),(106721,4,35296,3,1672319027),(106722,4,35297,3,1672319027),(106723,4,35298,3,1672319027),(106724,4,35299,3,1672319027),(106725,4,35300,3,1672319027),(106726,4,35301,3,1672319027),(106727,4,35302,3,1672319027),(106728,4,35303,3,1672319027),(106729,4,35304,3,1672319027),(106730,4,35305,3,1672319027),(106731,4,35306,3,1672319027),(106732,4,35307,3,1672319027),(106733,4,35308,3,1672319027),(106734,4,35309,3,1672319027),(106735,4,35310,3,1672319027),(106736,4,35311,3,1672319027),(106737,4,35312,3,1672319027),(106738,4,35313,3,1672319027),(106739,4,35314,3,1672319027),(106740,4,35315,3,1672319027),(106741,4,35316,3,1672319027),(106742,4,35317,3,1672319027),(106743,4,35318,3,1672319027),(106744,4,35319,3,1672319027),(106745,4,35320,3,1672319027),(106746,4,35321,3,1672319027),(106747,4,35322,3,1672319027),(106748,4,35323,3,1672319027),(106749,4,35324,3,1672319027),(106750,4,35325,3,1672319027),(106751,4,35326,3,1672319027),(106752,4,35327,3,1672319027),(106753,4,35328,3,1672319027),(106754,4,35329,3,1672319027),(106755,4,35330,3,1672319027),(106756,4,35331,3,1672319027),(106757,4,35332,3,1672319027),(106758,4,35333,3,1672319027),(106759,4,35334,3,1672319027),(106760,4,35335,3,1672319027),(106761,4,35336,3,1672319027),(106762,4,35337,3,1672319027),(106763,4,35338,3,1672319027),(106764,4,35339,3,1672319027),(106765,4,35340,3,1672319027),(106766,4,35341,3,1672319027),(106767,4,35342,3,1672319027),(106768,4,35343,3,1672319027),(106769,4,35344,3,1672319027),(106770,4,35345,3,1672319027),(106771,4,35346,3,1672319027),(106772,4,35347,3,1672319027),(106773,4,35348,3,1672319027),(106774,4,35349,3,1672319027),(106775,4,35350,3,1672319027),(106776,4,35351,3,1672319027),(106777,4,35352,3,1672319027),(106778,4,35353,3,1672319027),(106779,4,35354,3,1672319027),(106780,4,35355,3,1672319027),(106781,4,35356,3,1672319027),(106782,4,35357,3,1672319027),(106783,4,35358,3,1672319027),(106784,4,35359,3,1672319027),(106785,4,35360,3,1672319027),(106786,4,35361,3,1672319027),(106787,4,35362,3,1672319027),(106788,4,35363,3,1672319027),(106789,4,35364,3,1672319027),(106790,4,35365,3,1672319027),(106791,4,35366,3,1672319027),(106792,4,35367,3,1672319027),(106793,4,35368,3,1672319027),(106794,4,35369,3,1672319027),(106795,4,35370,3,1672319027),(106796,4,35371,3,1672319027),(106797,4,35372,3,1672319027),(106798,4,35373,3,1672319027),(106799,4,35374,3,1672319027),(106800,4,35375,3,1672319027),(106801,4,35376,3,1672319027),(106802,4,35377,3,1672319027),(106803,4,35378,3,1672319027),(106804,4,35379,3,1672319027),(106805,4,35380,3,1672319027),(106806,4,35381,3,1672319027),(106807,4,35382,3,1672319027),(106808,4,35383,3,1672319027),(106809,4,35384,3,1672319027),(106810,4,35385,3,1672319027),(106811,4,35386,3,1672319027),(106812,4,35387,3,1672319027),(106813,4,35388,3,1672319027),(106814,4,35389,3,1672319027),(106815,4,35390,3,1672319027),(106816,4,35391,3,1672319027),(106817,4,35392,3,1672319027),(106818,4,35393,3,1672319027),(106819,4,35394,3,1672319027),(106820,4,35395,3,1672319027),(106821,4,35396,3,1672319027),(106822,4,35397,3,1672319027),(106823,4,35398,3,1672319027),(106824,4,35399,3,1672319027),(106825,4,35400,3,1672319027),(106826,4,35401,3,1672319027),(106827,4,35402,3,1672319027),(106828,4,35403,3,1672319027),(106829,4,35404,3,1672319027),(106830,4,35405,3,1672319027),(106831,4,35406,3,1672319027),(106832,4,35407,3,1672319027),(106833,4,35408,3,1672319027),(106834,4,35409,3,1672319027),(106835,4,35410,3,1672319027),(106836,4,35411,3,1672319027),(106837,4,35412,3,1672319027),(106838,4,35413,3,1672319027),(106839,4,35414,3,1672319027),(106840,4,35415,3,1672319027),(106841,4,35416,3,1672319027),(106842,4,35417,3,1672319027),(106843,4,35418,3,1672319027),(106844,4,35419,3,1672319027),(106845,4,35420,3,1672319027),(106846,4,35421,3,1672319027),(106847,4,35422,3,1672319027),(106848,4,35423,3,1672319027),(106849,4,35424,3,1672319027),(106850,4,35425,3,1672319027),(106851,4,35426,3,1672319027),(106852,4,35427,3,1672319027),(106853,4,35428,3,1672319027),(106854,4,35429,3,1672319027),(106855,4,35430,3,1672319027),(106856,4,35431,3,1672319027),(106857,4,35432,3,1672319027),(106858,4,35433,3,1672319027),(106859,4,35434,3,1672319027),(106860,4,35435,3,1672319027),(106861,4,35436,3,1672319027),(106862,4,35437,3,1672319027),(106863,4,35438,3,1672319027),(106864,4,35439,3,1672319027),(106865,4,35440,3,1672319027),(106866,4,35441,3,1672319027),(106867,4,35442,3,1672319027),(106868,4,35443,3,1672319027),(106869,4,35444,3,1672319027),(106870,4,35445,3,1672319027),(106871,4,35446,3,1672319027),(106872,4,35447,3,1672319027),(106873,4,35448,3,1672319027),(106874,4,35449,3,1672319027),(106875,4,35450,3,1672319027),(106876,4,35451,3,1672319027),(106877,4,35452,3,1672319027),(106878,4,35453,3,1672319027),(106879,4,35454,3,1672319027),(106880,4,35455,3,1672319027),(106881,4,35456,3,1672319027),(106882,4,35457,3,1672319027),(106883,4,35458,3,1672319027),(106884,4,35459,3,1672319027),(106885,4,35460,3,1672319027),(106886,4,35461,3,1672319027),(106887,4,35462,3,1672319027),(106888,4,35463,3,1672319027),(106889,4,35464,3,1672319027),(106890,4,35465,3,1672319027),(106891,4,35466,3,1672319027),(106892,4,35467,3,1672319027),(106893,4,35468,3,1672319027),(106894,4,35469,3,1672319027),(106895,4,35470,3,1672319027),(106896,4,35471,3,1672319027),(106897,4,35472,3,1672319027),(106898,4,35473,3,1672319027),(106899,4,35474,3,1672319027),(106900,4,35475,3,1672319027),(106901,4,35476,3,1672319027),(106902,4,35477,3,1672319027),(106903,4,35478,3,1672319027),(106904,4,35479,3,1672319027),(106905,4,35480,3,1672319027),(106906,4,35481,3,1672319027),(106907,4,35482,3,1672319027),(106908,4,35483,3,1672319027),(106909,4,35484,3,1672319027),(106910,4,35485,3,1672319027),(106911,4,35486,3,1672319027),(106912,4,35487,3,1672319027),(106913,4,35488,3,1672319027),(106914,4,35489,3,1672319027),(106915,4,35490,3,1672319027),(106916,4,35491,3,1672319027),(106917,4,35492,3,1672319027),(106918,4,35493,3,1672319027),(106919,4,35494,3,1672319027),(106920,4,35495,3,1672319027),(106921,4,35496,3,1672319027),(106922,4,35497,3,1672319027),(106923,4,35498,3,1672319027),(106924,4,35499,3,1672319027),(106925,4,35500,3,1672319027),(106926,4,35501,3,1672319027),(106927,4,35502,3,1672319027),(106928,4,35503,3,1672319027),(106929,4,35504,3,1672319027),(106930,4,35505,3,1672319027),(106931,4,35506,3,1672319027),(106932,4,35507,3,1672319027),(106933,4,35508,3,1672319027),(106934,4,35509,3,1672319027),(106935,4,35510,3,1672319027),(106936,4,35511,3,1672319027),(106937,4,35512,3,1672319027),(106938,4,35513,3,1672319027),(106939,4,35514,3,1672319027),(106940,4,35515,3,1672319027),(106941,4,35516,3,1672319027),(106942,4,35517,3,1672319027),(106943,4,35518,3,1672319027),(106944,4,35519,3,1672319027),(106945,4,35520,3,1672319027),(106946,4,35521,3,1672319027),(106947,4,35522,3,1672319027),(106948,4,35523,3,1672319027),(106949,4,35524,3,1672319027),(106950,4,35525,3,1672319027),(106951,4,35526,3,1672319027),(106952,4,35527,3,1672319027),(106953,4,35528,3,1672319027),(106954,4,35529,3,1672319027),(106955,4,35530,3,1672319027),(106956,4,35531,3,1672319027),(106957,4,35532,3,1672319027),(106958,4,35533,3,1672319027),(106959,4,35534,3,1672319027),(106960,4,35535,3,1672319027),(106961,4,35536,3,1672319027),(106962,4,35537,3,1672319027),(106963,4,35538,3,1672319027),(106964,4,35539,3,1672319027),(106965,4,35540,3,1672319027),(106966,4,35541,3,1672319027),(106967,4,35542,3,1672319027),(106968,4,35543,3,1672319027),(106969,4,35544,3,1672319027),(106970,4,35545,3,1672319027),(106971,4,35546,3,1672319027),(106972,4,35547,3,1672319027),(106973,4,35548,3,1672319027),(106974,4,35549,3,1672319027),(106975,4,35550,3,1672319027),(106976,4,35551,3,1672319027),(106977,4,35552,3,1672319027),(106978,4,35553,3,1672319027),(106979,4,35554,3,1672319027),(106980,4,35555,3,1672319027),(106981,4,35556,3,1672319027),(106982,4,35557,3,1672319027),(106983,4,35558,3,1672319027),(106984,4,35559,3,1672319027),(106985,4,35560,3,1672319027),(106986,4,35561,3,1672319027),(106987,4,35562,3,1672319027),(106988,4,35563,3,1672319027),(106989,4,35564,3,1672319027),(106990,4,35565,3,1672319027),(106991,4,35566,3,1672319027),(106992,4,35567,3,1672319027),(106993,4,35568,3,1672319027),(106994,4,35569,3,1672319027),(106995,4,35570,3,1672319027),(106996,4,35571,3,1672319027),(106997,4,35572,3,1672319027),(106998,4,35573,3,1672319027),(106999,4,35574,3,1672319027),(107000,4,35575,3,1672319027),(107001,4,35576,3,1672319027),(107002,4,35577,3,1672319027),(107003,4,35578,3,1672319027),(107004,4,35579,3,1672319027),(107005,4,35580,3,1672319027),(107006,4,35581,3,1672319027),(107007,4,35582,3,1672319027),(107008,4,35583,3,1672319027),(107009,4,35584,3,1672319027),(107010,4,35585,3,1672319027),(107011,4,35586,3,1672319027),(107012,4,35587,3,1672319027),(107013,4,35588,3,1672319027),(107014,4,35589,3,1672319027),(107015,4,35590,3,1672319027),(107016,4,35591,3,1672319027),(107017,4,35592,3,1672319027),(107018,4,35593,3,1672319027),(107019,4,35594,3,1672319027),(107020,4,35595,3,1672319027),(107021,4,35596,3,1672319027),(107022,4,35597,3,1672319027),(107023,4,35598,3,1672319027),(107024,4,35599,3,1672319027),(107025,4,35600,3,1672319027),(107026,4,35601,3,1672319027),(107027,4,35602,3,1672319027),(107028,4,35603,3,1672319027),(107029,4,35604,3,1672319027),(107030,4,35605,3,1672319027),(107031,4,35606,3,1672319027),(107032,4,35607,3,1672319027),(107033,4,35608,3,1672319027),(107034,4,35609,3,1672319027),(107035,4,35610,3,1672319027),(107036,4,35611,3,1672319027),(107037,4,35612,3,1672319027),(107038,4,35613,3,1672319027),(107039,4,35614,3,1672319027),(107040,4,35615,3,1672319027),(107041,4,35616,3,1672319027),(107042,4,35617,3,1672319027),(107043,4,35618,3,1672319027),(107044,4,35619,3,1672319027),(107045,4,35620,3,1672319027),(107046,4,35621,3,1672319027),(107047,4,35622,3,1672319027),(107048,4,35623,3,1672319027),(107049,4,35624,3,1672319027),(107050,4,35625,3,1672319027),(107051,4,35626,3,1672319027),(107052,4,35627,3,1672319027),(107053,4,35628,3,1672319027),(107054,4,35629,3,1672319027),(107055,4,35630,3,1672319027),(107056,4,35631,3,1672319027),(107057,4,35632,3,1672319027),(107058,4,35633,3,1672319027),(107059,4,35634,3,1672319027),(107060,4,35635,3,1672319027),(107061,4,35636,3,1672319027),(107062,4,35637,3,1672319027),(107063,4,35638,3,1672319027),(107064,4,35639,3,1672319027),(107065,4,35640,3,1672319027),(107066,4,35641,3,1672319027),(107067,4,35642,3,1672319027),(107068,4,35643,3,1672319027),(107069,4,35644,3,1672319027),(107070,4,35645,3,1672319027),(107071,4,35646,3,1672319027),(107072,4,35647,3,1672319027),(107073,4,35648,3,1672319027),(107074,4,35649,3,1672319027),(107075,4,35650,3,1672319027),(107076,4,35651,3,1672319027),(107077,4,35652,3,1672319027),(107078,4,35653,3,1672319027),(107079,4,35654,3,1672319027),(107080,4,35655,3,1672319027),(107081,4,35656,3,1672319027),(107082,4,35657,3,1672319027),(107083,4,35658,3,1672319027),(107084,4,35659,3,1672319027),(107085,4,35660,3,1672319027),(107086,4,35661,3,1672319027),(107087,4,35662,3,1672319027),(107088,4,35663,3,1672319027),(107089,4,35664,3,1672319027),(107090,4,35665,3,1672319027),(107091,4,35666,3,1672319027),(107092,4,35667,3,1672319027),(107093,4,35668,3,1672319027),(107094,4,35669,3,1672319027),(107095,4,35670,3,1672319027),(107096,4,35671,3,1672319027),(107097,4,35672,3,1672319027),(107098,4,35673,3,1672319027),(107099,4,35674,3,1672319027),(107100,4,35675,3,1672319027),(107101,4,35676,3,1672319027),(107102,4,35677,3,1672319027),(107103,4,35678,3,1672319027),(107104,4,35679,3,1672319027),(107105,4,35680,3,1672319027),(107106,4,35681,3,1672319027),(107107,4,35682,3,1672319027),(107108,4,35683,3,1672319027),(107109,4,35684,3,1672319027),(107110,4,35685,3,1672319027),(107111,4,35686,3,1672319027),(107112,4,35687,3,1672319027),(107113,4,35688,3,1672319027),(107114,4,35689,3,1672319027),(107115,4,35690,3,1672319027),(107116,4,35691,3,1672319027),(107117,4,35692,3,1672319027),(107118,4,35693,3,1672319027),(107119,4,35694,3,1672319027),(107120,4,35695,3,1672319027),(107121,4,35696,3,1672319027),(107122,4,35697,3,1672319027),(107123,4,35698,3,1672319027),(107124,4,35699,3,1672319027),(107125,4,35700,3,1672319027),(107126,4,35701,3,1672319027),(107127,4,35702,3,1672319027),(107128,4,35703,3,1672319027),(107129,4,35704,3,1672319027),(107130,4,35705,3,1672319027),(107131,4,35706,3,1672319027),(107132,4,35707,3,1672319027),(107133,4,35708,3,1672319027),(107134,4,35709,3,1672319027),(107135,4,35710,3,1672319027),(107136,4,35711,3,1672319027),(107137,4,35712,3,1672319027),(107138,4,35713,3,1672319027),(107139,4,35714,3,1672319027),(107140,4,35715,3,1672319027),(107141,4,35716,3,1672319027),(107142,4,35717,3,1672319027),(107143,4,35718,3,1672319027),(107144,4,35719,3,1672319027),(107145,4,35720,3,1672319027),(107146,4,35721,3,1672319027),(107147,4,35722,3,1672319027),(107148,4,35723,3,1672319027),(107149,4,35724,3,1672319027),(107150,4,35725,3,1672319027),(107151,4,35726,3,1672319027),(107152,4,35727,3,1672319027),(107153,4,35728,3,1672319027),(107154,4,35729,3,1672319027),(107155,4,35730,3,1672319027),(107156,4,35731,3,1672319027),(107157,4,35732,3,1672319027),(107158,4,35733,3,1672319027),(107159,4,35734,3,1672319027),(107160,4,35735,3,1672319027),(107161,4,35736,3,1672319027),(107162,4,35737,3,1672319027),(107163,4,35738,3,1672319027),(107164,4,35739,3,1672319027),(107165,4,35740,3,1672319027),(107166,4,35741,3,1672319027),(107167,4,35742,3,1672319027),(107168,4,35743,3,1672319027),(107169,4,35744,3,1672319027),(107170,4,35745,3,1672319027),(107171,4,35746,3,1672319027),(107172,4,35747,3,1672319027),(107173,4,35748,3,1672319027),(107174,4,35749,3,1672319027),(107175,4,35750,3,1672319027),(107176,4,35751,3,1672319027),(107177,4,35752,3,1672319027),(107178,4,35753,3,1672319027),(107179,4,35754,3,1672319027),(107180,4,35755,3,1672319027),(107181,4,35756,3,1672319027),(107182,4,35757,3,1672319027),(107183,4,35758,3,1672319027),(107184,4,35759,3,1672319027),(107185,4,35760,3,1672319027),(107186,4,35761,3,1672319027),(107187,4,35762,3,1672319027),(107188,4,35763,3,1672319027),(107189,4,35764,3,1672319027),(107190,4,35765,3,1672319027),(107191,4,35766,3,1672319027),(107192,4,35767,3,1672319027),(107193,4,35768,3,1672319027),(107194,4,35769,3,1672319027),(107195,4,35770,3,1672319027),(107196,4,35771,3,1672319027),(107197,4,35772,3,1672319027),(107198,4,35773,3,1672319027),(107199,4,35774,3,1672319027),(107200,4,35775,3,1672319027),(107201,4,35776,3,1672319027),(107202,4,35777,3,1672319027),(107203,4,35778,3,1672319027),(107204,4,35779,3,1672319027),(107205,4,35780,3,1672319027),(107206,4,35781,3,1672319027),(107207,4,35782,3,1672319027),(107208,4,35783,3,1672319027),(107209,4,35784,3,1672319027),(107210,4,35785,3,1672319027),(107211,4,35786,3,1672319027),(107212,4,35787,3,1672319027),(107213,4,35788,3,1672319027),(107214,4,35789,3,1672319027),(107215,4,35790,3,1672319027),(107216,4,35791,3,1672319027),(107217,4,35792,3,1672319027),(107218,4,35793,3,1672319027),(107219,4,35794,3,1672319027),(107220,4,35795,3,1672319027),(107221,4,35796,3,1672319027),(107222,4,35797,3,1672319027),(107223,4,35798,3,1672319027),(107224,4,35799,3,1672319027),(107225,4,35800,3,1672319027),(107226,4,35801,3,1672319027),(107227,4,35802,3,1672319027),(107228,4,35803,3,1672319027),(107229,4,35805,3,1672319027),(107230,4,35806,3,1672319027),(107231,4,35807,3,1672319027),(107232,4,35811,3,1672319027),(107233,4,35812,3,1672319027),(107234,4,35815,3,1672319027),(107235,4,35816,3,1672319027),(107236,4,35817,3,1672319027),(107237,4,35818,3,1672319027),(107238,4,35819,3,1672319027),(107239,4,35820,3,1672319027),(107240,4,35821,3,1672319027),(107241,4,35822,3,1672319027),(107242,4,35823,3,1672319027),(107243,4,35824,3,1672319027),(107244,4,35825,3,1672319027),(107245,4,35826,3,1672319027),(107246,4,35827,3,1672319027),(107247,4,35828,3,1672319027),(107248,4,35829,3,1672319027),(107249,4,35830,3,1672319027),(107250,4,35831,3,1672319027),(107251,4,35832,3,1672319027),(107252,4,35833,3,1672319027),(107253,4,35834,3,1672319027),(107254,4,35835,3,1672319027),(107255,4,35836,3,1672319027),(107256,4,35837,3,1672319027),(107257,4,35838,3,1672319027),(107258,4,35839,3,1672319027),(107259,4,35840,3,1672319027),(107260,4,35841,3,1672319027),(107261,4,35842,3,1672319027),(107262,4,35843,3,1672319027),(107263,4,35844,3,1672319027),(107277,7,12641,3,1672319033),(107278,7,12645,3,1672319033),(107279,7,12646,3,1672319033),(107280,7,12649,3,1672319033),(107281,7,12651,3,1672319033),(107282,7,12653,3,1672319033),(107283,7,12726,3,1672319033),(107284,7,12742,3,1672319033),(107285,7,12758,3,1672319033),(107286,7,12790,3,1672319033),(107287,7,12806,3,1672319033),(107288,7,12949,3,1672319033),(107289,7,12965,3,1672319033),(107290,7,12996,3,1672319033),(107291,7,12997,3,1672319033),(107292,7,12998,3,1672319033),(107293,7,13068,3,1672319033),(107294,7,13069,3,1672319033),(107295,7,13070,3,1672319033),(107296,7,13071,3,1672319033),(107297,7,13072,3,1672319033),(107298,7,13073,3,1672319033),(107299,7,13074,3,1672319033),(107300,7,13075,3,1672319033),(107301,7,13086,3,1672319033),(107302,7,13087,3,1672319033),(107303,7,13088,3,1672319033),(107304,7,13089,3,1672319033),(107305,7,13090,3,1672319033),(107306,7,13091,3,1672319033),(107307,7,13092,3,1672319033),(107308,7,13093,3,1672319033),(107309,7,13152,3,1672319033),(107310,7,13154,3,1672319033),(107311,7,13156,3,1672319033),(107312,7,13157,3,1672319033),(107313,7,13158,3,1672319033),(107314,7,13159,3,1672319033),(107315,7,13160,3,1672319033),(107316,7,13164,3,1672319033),(107317,7,13170,3,1672319033),(107318,7,13172,3,1672319033),(107319,7,13174,3,1672319033),(107320,7,13176,3,1672319033),(107321,7,13180,3,1672319033),(107322,7,13182,3,1672319033),(107323,7,13184,3,1672319033),(107324,7,13186,3,1672319033),(107325,7,13188,3,1672319033),(107326,7,13190,3,1672319033),(107327,7,13194,3,1672319033),(107328,7,13196,3,1672319033),(107329,7,13198,3,1672319033),(107330,7,13200,3,1672319033),(107331,7,13202,3,1672319033),(107332,7,13204,3,1672319033),(107333,7,13222,3,1672319033),(107334,7,13226,3,1672319033),(107335,7,13228,3,1672319033),(107336,7,13229,3,1672319033),(107337,7,14378,3,1672319033),(107338,7,14379,3,1672319033),(107339,7,14380,3,1672319033),(107340,7,15111,3,1672319033),(107341,7,15112,3,1672319033),(107342,7,15113,3,1672319033),(107343,7,15114,3,1672319033),(107344,7,15115,3,1672319033),(107345,7,15116,3,1672319033),(107346,7,15731,3,1672319033),(107347,7,16818,3,1672319033),(107348,7,16819,3,1672319033),(107349,7,16820,3,1672319033),(107350,7,16821,3,1672319033),(107351,7,16822,3,1672319033),(107352,7,16829,3,1672319033),(107353,7,16830,3,1672319033),(107354,7,16831,3,1672319033),(107355,7,16832,3,1672319033),(107356,7,16833,3,1672319033),(107357,7,16840,3,1672319033),(107358,7,16841,3,1672319033),(107359,7,16842,3,1672319033),(107360,7,16843,3,1672319033),(107361,7,16844,3,1672319033),(107362,7,16845,3,1672319033),(107363,7,16846,3,1672319033),(107364,7,16847,3,1672319033),(107365,7,16890,3,1672319033),(107366,7,16891,3,1672319033),(107367,7,16895,3,1672319033),(107368,7,16896,3,1672319033),(107369,7,16897,3,1672319033),(107370,7,16898,3,1672319033),(107371,7,16899,3,1672319033),(107372,7,16900,3,1672319033),(107373,7,16901,3,1672319033),(107374,7,16902,3,1672319033),(107375,7,16903,3,1672319033),(107376,7,16904,3,1672319033),(107377,7,16905,3,1672319033),(107378,7,16906,3,1672319033),(107379,7,16907,3,1672319033),(107380,7,16908,3,1672319033),(107381,7,16909,3,1672319033),(107382,7,16910,3,1672319033),(107383,7,16911,3,1672319033),(107384,7,16912,3,1672319033),(107385,7,16913,3,1672319033),(107386,7,16914,3,1672319033),(107387,7,16915,3,1672319033),(107388,7,16924,3,1672319033),(107389,7,16925,3,1672319033),(107390,7,16926,3,1672319033),(107391,7,16927,3,1672319033),(107392,7,16928,3,1672319033),(107393,7,16935,3,1672319033),(107394,7,16936,3,1672319033),(107395,7,17692,3,1672319033),(107396,7,17693,3,1672319033),(107397,7,17694,3,1672319033),(107398,7,17695,3,1672319033),(107399,7,17696,3,1672319033),(107400,7,17812,3,1672319033),(107401,7,17813,3,1672319033),(107402,7,17814,3,1672319033),(107403,7,17815,3,1672319033),(107404,7,17816,3,1672319033),(107405,7,17827,3,1672319033),(107406,7,17828,3,1672319033),(107407,7,17829,3,1672319033),(107408,7,17830,3,1672319033),(107409,7,17831,3,1672319033),(107410,7,17866,3,1672319033),(107411,7,17869,3,1672319033),(107412,7,17870,3,1672319033),(107413,7,17871,3,1672319033),(107414,7,17872,3,1672319033),(107415,7,17873,3,1672319033),(107416,7,17879,3,1672319033),(107417,7,17880,3,1672319033),(107418,7,17881,3,1672319033),(107419,7,17892,3,1672319033),(107420,7,17893,3,1672319033),(107421,7,17900,3,1672319033),(107422,7,17901,3,1672319033),(107423,7,17902,3,1672319033),(107424,7,17903,3,1672319033),(107425,7,17904,3,1672319033),(107426,7,17905,3,1672319033),(107427,7,17906,3,1672319033),(107428,7,17907,3,1672319033),(107429,7,17908,3,1672319033),(107430,7,17909,3,1672319033),(107431,7,17910,3,1672319033),(107432,7,17911,3,1672319033),(107433,7,17912,3,1672319033),(107434,7,17913,3,1672319033),(107435,7,17914,3,1672319033),(107436,7,17917,3,1672319033),(107437,7,17918,3,1672319033),(107438,7,17919,3,1672319033),(107439,7,17920,3,1672319033),(107440,7,17921,3,1672319033),(107441,7,17922,3,1672319033),(107442,7,17923,3,1672319033),(107443,7,17924,3,1672319033),(107444,7,17925,3,1672319033),(107445,7,17971,3,1672319033),(107446,7,17972,3,1672319033),(107447,7,17973,3,1672319033),(107448,7,17974,3,1672319033),(107449,7,17975,3,1672319033),(107450,7,17976,3,1672319033),(107451,7,17977,3,1672319033),(107452,7,17983,3,1672319033),(107453,7,17984,3,1672319033),(107454,7,17987,3,1672319033),(107455,7,17988,3,1672319033),(107456,7,17989,3,1672319033),(107457,7,17990,3,1672319033),(107458,7,17993,3,1672319033),(107459,7,17994,3,1672319033),(107460,7,18031,3,1672319033),(107461,7,18032,3,1672319033),(107462,7,18033,3,1672319033),(107463,7,18042,3,1672319033),(107464,7,18043,3,1672319033),(107465,7,18044,3,1672319033),(107466,7,18045,3,1672319033),(107467,7,18046,3,1672319033),(107468,7,18047,3,1672319033),(107469,7,18048,3,1672319033),(107470,7,18049,3,1672319033),(107471,7,18050,3,1672319033),(107472,7,18051,3,1672319033),(107473,7,18052,3,1672319033),(107474,7,18053,3,1672319033),(107475,7,18054,3,1672319033),(107476,7,18055,3,1672319033),(107477,7,18056,3,1672319033),(107478,7,18076,3,1672319033),(107479,7,18078,3,1672319033),(107480,7,18080,3,1672319033),(107481,7,18081,3,1672319033),(107482,7,18082,3,1672319033),(107483,7,18083,3,1672319033),(107484,7,18084,3,1672319033),(107485,7,18085,3,1672319033),(107486,7,18086,3,1672319033),(107487,7,18087,3,1672319033),(107488,7,18088,3,1672319033),(107489,7,18089,3,1672319033),(107490,7,18090,3,1672319033),(107491,7,18091,3,1672319033),(107492,7,18092,3,1672319033),(107493,7,18094,3,1672319033),(107494,7,18095,3,1672319033),(107495,7,18096,3,1672319033),(107496,7,18097,3,1672319033),(107497,7,18098,3,1672319033),(107498,7,18099,3,1672319033),(107499,7,18100,3,1672319033),(107500,7,18101,3,1672319033),(107501,7,18102,3,1672319033),(107502,7,18103,3,1672319033),(107503,7,18104,3,1672319033),(107504,7,18105,3,1672319033),(107505,7,18106,3,1672319033),(107506,7,18107,3,1672319033),(107507,7,18108,3,1672319033),(107508,7,18109,3,1672319033),(107509,7,18110,3,1672319033),(107510,7,18111,3,1672319033),(107511,7,18112,3,1672319033),(107512,7,18117,3,1672319033),(107513,7,18175,3,1672319033),(107514,7,18176,3,1672319033),(107515,7,18177,3,1672319033),(107516,7,18178,3,1672319033),(107517,7,18191,3,1672319033),(107518,7,18192,3,1672319033),(107519,7,18193,3,1672319033),(107520,7,18255,3,1672319033),(107521,7,18264,3,1672319033),(107522,7,18265,3,1672319033),(107523,7,18300,3,1672319033),(107524,7,18306,3,1672319033),(107525,7,18307,3,1672319033),(107526,7,18310,3,1672319033),(107527,7,18311,3,1672319033),(107528,7,18312,3,1672319033),(107529,7,18313,3,1672319033),(107530,7,18363,3,1672319033),(107531,7,18364,3,1672319033),(107532,7,18501,3,1672319033),(107533,7,18502,3,1672319033),(107534,7,18505,3,1672319033),(107535,7,18506,3,1672319033),(107536,7,18507,3,1672319033),(107537,7,18510,3,1672319033),(107538,7,18513,3,1672319033),(107539,7,18526,3,1672319033),(107540,7,18527,3,1672319033),(107541,7,18528,3,1672319033),(107542,7,18529,3,1672319033),(107543,7,18530,3,1672319033),(107544,7,18531,3,1672319033),(107545,7,18532,3,1672319033),(107546,7,18533,3,1672319033),(107547,7,18534,3,1672319033),(107548,7,18545,3,1672319033),(107549,7,18546,3,1672319033),(107550,7,18548,3,1672319033),(107551,7,18549,3,1672319033),(107552,7,18550,3,1672319033),(107553,7,18555,3,1672319033),(107554,7,18556,3,1672319033),(107555,7,18557,3,1672319033),(107556,7,18558,3,1672319033),(107557,7,18620,3,1672319033),(107558,7,18621,3,1672319033),(107559,7,18711,3,1672319033),(107560,7,18715,3,1672319033),(107561,7,18719,3,1672319033),(107562,7,18720,3,1672319033),(107563,7,18726,3,1672319033),(107564,7,18727,3,1672319033),(107565,7,18730,3,1672319033),(107566,7,18731,3,1672319033),(107567,7,18732,3,1672319033),(107568,7,18733,3,1672319033),(107569,7,18734,3,1672319033),(107570,7,18735,3,1672319033),(107571,7,18756,3,1672319033),(107572,7,19090,3,1672319033),(107573,7,19091,3,1672319033),(107574,7,19093,3,1672319033),(107575,7,19098,3,1672319033),(107576,7,19099,3,1672319033),(107577,7,19100,3,1672319033),(107578,7,19104,3,1672319033),(107579,7,19105,3,1672319033),(107580,7,19113,3,1672319033),(107581,7,19114,3,1672319033),(107582,7,19115,3,1672319033),(107583,7,19116,3,1672319033),(107584,7,19117,3,1672319033),(107585,7,19118,3,1672319033),(107586,7,19119,3,1672319033),(107587,7,19120,3,1672319033),(107588,7,19121,3,1672319033),(107589,7,19122,3,1672319033),(107590,7,19123,3,1672319033),(107591,7,19124,3,1672319033),(107592,7,19125,3,1672319033),(107593,7,19126,3,1672319033),(107594,7,19127,3,1672319033),(107595,7,19128,3,1672319033),(107596,7,19129,3,1672319033),(107597,7,19130,3,1672319033),(107598,7,19131,3,1672319033),(107599,7,19132,3,1672319033),(107600,7,19133,3,1672319033),(107601,7,19134,3,1672319033),(107602,7,19135,3,1672319033),(107603,7,19136,3,1672319033),(107604,7,19137,3,1672319033),(107605,7,19138,3,1672319033),(107606,7,19139,3,1672319033),(107607,7,19140,3,1672319033),(107608,7,19141,3,1672319033),(107609,7,19142,3,1672319033),(107610,7,19143,3,1672319033),(107611,7,19144,3,1672319033),(107612,7,19145,3,1672319033),(107613,7,19146,3,1672319033),(107614,7,19147,3,1672319033),(107615,7,19148,3,1672319033),(107616,7,19149,3,1672319033),(107617,7,19150,3,1672319033),(107618,7,19151,3,1672319033),(107619,7,19152,3,1672319033),(107620,7,19153,3,1672319033),(107621,7,19156,3,1672319033),(107622,7,19157,3,1672319033),(107623,7,19158,3,1672319033),(107624,7,19159,3,1672319033),(107625,7,19160,3,1672319033),(107626,7,19161,3,1672319033),(107627,7,19162,3,1672319033),(107628,7,19163,3,1672319033),(107629,7,19164,3,1672319033),(107630,7,19165,3,1672319033),(107631,7,19166,3,1672319033),(107632,7,19171,3,1672319033),(107633,7,19175,3,1672319033),(107634,7,19176,3,1672319033),(107635,7,19177,3,1672319033),(107636,7,19179,3,1672319033),(107637,7,19185,3,1672319033),(107638,7,19186,3,1672319033),(107639,7,19187,3,1672319033),(107640,7,19188,3,1672319033),(107641,7,19189,3,1672319033),(107642,7,19190,3,1672319033),(107643,7,19193,3,1672319033),(107644,7,19202,3,1672319033),(107645,7,19203,3,1672319033),(107646,7,19209,3,1672319033),(107647,7,19213,3,1672319033),(107648,7,19217,3,1672319033),(107649,7,19219,3,1672319033),(107650,7,19225,3,1672319033),(107651,7,19227,3,1672319033),(107652,7,19229,3,1672319033),(107653,7,19235,3,1672319033),(107654,7,19240,3,1672319033),(107655,7,19249,3,1672319033),(107656,7,19259,3,1672319033),(107657,7,19263,3,1672319033),(107658,7,19264,3,1672319033),(107659,7,19265,3,1672319033),(107660,7,19267,3,1672319033),(107661,7,19269,3,1672319033),(107662,7,19270,3,1672319033),(107663,7,19271,3,1672319033),(107664,7,19272,3,1672319033),(107665,7,19299,3,1672319033),(107666,7,19300,3,1672319033),(107667,7,19301,3,1672319033),(107668,7,19302,3,1672319033),(107669,7,19305,3,1672319033),(107670,7,19306,3,1672319033),(107671,7,19307,3,1672319033),(107672,7,19308,3,1672319033),(107673,7,19406,3,1672319033),(107674,7,19456,3,1672319033),(107675,7,19459,3,1672319033),(107676,7,19460,3,1672319033),(107677,7,19461,3,1672319033),(107678,7,19462,3,1672319033),(107679,7,19463,3,1672319033),(107680,7,19464,3,1672319033),(107681,7,19466,3,1672319033),(107682,7,19467,3,1672319033),(107683,7,19468,3,1672319033),(107684,7,19469,3,1672319033),(107685,7,19470,3,1672319033),(107686,7,19471,3,1672319033),(107687,7,19472,3,1672319033),(107688,7,19474,3,1672319033),(107689,7,19479,3,1672319033),(107690,7,19480,3,1672319033),(107691,7,19481,3,1672319033),(107692,7,19482,3,1672319033),(107693,7,19484,3,1672319033),(107694,7,19485,3,1672319033),(107695,7,19486,3,1672319033),(107696,7,19487,3,1672319033),(107697,7,19488,3,1672319033),(107698,7,19489,3,1672319033),(107699,7,19490,3,1672319033),(107700,7,19494,3,1672319033),(107701,7,19495,3,1672319033),(107702,7,19497,3,1672319033),(107703,7,19498,3,1672319033),(107704,7,19501,3,1672319033),(107705,7,19502,3,1672319033),(107706,7,19503,3,1672319033),(107707,7,19504,3,1672319033),(107708,7,19505,3,1672319033),(107709,7,19511,3,1672319033),(107710,7,19512,3,1672319033),(107711,7,19513,3,1672319033),(107712,7,19514,3,1672319033),(107713,7,19517,3,1672319033),(107714,7,19548,3,1672319033),(107715,7,19549,3,1672319033),(107716,7,19552,3,1672319033),(107717,7,19558,3,1672319033),(107718,7,19560,3,1672319033),(107719,7,19562,3,1672319033),(107720,7,19563,3,1672319033),(107721,7,19564,3,1672319033),(107722,7,19567,3,1672319033),(107723,7,19568,3,1672319033),(107724,7,19569,3,1672319033),(107725,7,19570,3,1672319033),(107726,7,19572,3,1672319033),(107727,7,19575,3,1672319033),(107728,7,19577,3,1672319033),(107729,7,19578,3,1672319033),(107730,7,19579,3,1672319033),(107731,7,19580,3,1672319033),(107732,7,19581,3,1672319033),(107733,7,19582,3,1672319033),(107734,7,19583,3,1672319033),(107735,7,19584,3,1672319033),(107736,7,19585,3,1672319033),(107737,7,19588,3,1672319033),(107738,7,19589,3,1672319033),(107739,7,19592,3,1672319033),(107740,7,19593,3,1672319033),(107741,7,19594,3,1672319033),(107742,7,19595,3,1672319033),(107743,7,19596,3,1672319033),(107744,7,19597,3,1672319033),(107745,7,19598,3,1672319033),(107746,7,19599,3,1672319033),(107747,7,19600,3,1672319033),(107748,7,19603,3,1672319033),(107749,7,19605,3,1672319033),(107750,7,19606,3,1672319033),(107751,7,19607,3,1672319033),(107752,7,19608,3,1672319033),(107753,7,19611,3,1672319033),(107754,7,19612,3,1672319033),(107755,7,19613,3,1672319033),(107756,7,19614,3,1672319033),(107757,7,19616,3,1672319033),(107758,7,19617,3,1672319033),(107759,7,19618,3,1672319033),(107760,7,19619,3,1672319033),(107761,7,19620,3,1672319033),(107762,7,19621,3,1672319033),(107763,7,19622,3,1672319033),(107764,7,19623,3,1672319033),(107765,7,19624,3,1672319033),(107766,7,19625,3,1672319033),(107767,7,19626,3,1672319033),(107768,7,19627,3,1672319033),(107769,7,19628,3,1672319033),(107770,7,19629,3,1672319033),(107771,7,19630,3,1672319033),(107772,7,19631,3,1672319033),(107773,7,19632,3,1672319033),(107774,7,19633,3,1672319033),(107775,7,19634,3,1672319033),(107776,7,19635,3,1672319033),(107777,7,19636,3,1672319033),(107778,7,19637,3,1672319033),(107779,7,19638,3,1672319033),(107780,7,19639,3,1672319033),(107781,7,19640,3,1672319033),(107782,7,19641,3,1672319033),(107783,7,19642,3,1672319033),(107784,7,19643,3,1672319033),(107785,7,19644,3,1672319033),(107786,7,19645,3,1672319033),(107787,7,19659,3,1672319033),(107788,7,19660,3,1672319033),(107789,7,19674,3,1672319033),(107790,7,19675,3,1672319033),(107791,7,19676,3,1672319033),(107792,7,19677,3,1672319033),(107793,7,19679,3,1672319033),(107794,7,19680,3,1672319033),(107795,7,19683,3,1672319033),(107796,7,19684,3,1672319033),(107797,7,19687,3,1672319033),(107798,7,19688,3,1672319033),(107799,7,19689,3,1672319033),(107800,7,19690,3,1672319033),(107801,7,19691,3,1672319033),(107802,7,19692,3,1672319033),(107803,7,19693,3,1672319033),(107804,7,19756,3,1672319033),(107805,7,19757,3,1672319033),(107806,7,19792,3,1672319033),(107807,7,19796,3,1672319033),(107808,7,19797,3,1672319033),(107809,7,19800,3,1672319033),(107810,7,19801,3,1672319033),(107811,7,19802,3,1672319033),(107812,7,19803,3,1672319033),(107813,7,19804,3,1672319033),(107814,7,19805,3,1672319033),(107815,7,19806,3,1672319033),(107816,7,19809,3,1672319033),(107817,7,19810,3,1672319033),(107818,7,19811,3,1672319033),(107819,7,19812,3,1672319033),(107820,7,19813,3,1672319033),(107821,7,19814,3,1672319033),(107822,7,19815,3,1672319033),(107823,7,19816,3,1672319033),(107824,7,19817,3,1672319033),(107825,7,19819,3,1672319033),(107826,7,19820,3,1672319033),(107827,7,19821,3,1672319033),(107828,7,19822,3,1672319033),(107829,7,19823,3,1672319033),(107830,7,19824,3,1672319033),(107831,7,19825,3,1672319033),(107832,7,19827,3,1672319033),(107833,7,19832,3,1672319033),(107834,7,19833,3,1672319033),(107835,7,19834,3,1672319033),(107836,7,19841,3,1672319033),(107837,7,19842,3,1672319033),(107838,7,19845,3,1672319033),(107839,7,19846,3,1672319033),(107840,7,19847,3,1672319033),(107841,7,19848,3,1672319033),(107842,7,19849,3,1672319033),(107843,7,19850,3,1672319033),(107844,7,19851,3,1672319033),(107845,7,19852,3,1672319033),(107846,7,19853,3,1672319033),(107847,7,19854,3,1672319033),(107848,7,19855,3,1672319033),(107849,7,19856,3,1672319033),(107850,7,19857,3,1672319033),(107851,7,19858,3,1672319033),(107852,7,19863,3,1672319033),(107853,7,19865,3,1672319033),(107854,7,19866,3,1672319033),(107855,7,19867,3,1672319033),(107856,7,19868,3,1672319033),(107857,7,19869,3,1672319033),(107858,7,19870,3,1672319033),(107859,7,19873,3,1672319033),(107860,7,19874,3,1672319033),(107861,7,19875,3,1672319033),(107862,7,19876,3,1672319033),(107863,7,19877,3,1672319033),(107864,7,19878,3,1672319033),(107865,7,19879,3,1672319033),(107866,7,19880,3,1672319033),(107867,7,19881,3,1672319033),(107868,7,19888,3,1672319033),(107869,7,19889,3,1672319033),(107870,7,19890,3,1672319033),(107871,7,19891,3,1672319033),(107872,7,19892,3,1672319033),(107873,7,19893,3,1672319033),(107874,7,19894,3,1672319033),(107875,7,19895,3,1672319033),(107876,7,19896,3,1672319033),(107877,7,19897,3,1672319033),(107878,7,19898,3,1672319033),(107879,7,19899,3,1672319033),(107880,7,19900,3,1672319033),(107881,7,19901,3,1672319033),(107882,7,19902,3,1672319033),(107883,7,19903,3,1672319033),(107884,7,19904,3,1672319033),(107885,7,19905,3,1672319033),(107886,7,19906,3,1672319033),(107887,7,19907,3,1672319033),(107888,7,19908,3,1672319033),(107889,7,19909,3,1672319033),(107890,7,19910,3,1672319033),(107891,7,19911,3,1672319033),(107892,7,19912,3,1672319033),(107893,7,19913,3,1672319033),(107894,7,19914,3,1672319033),(107895,7,19915,3,1672319033),(107896,7,19916,3,1672319033),(107897,7,19917,3,1672319033),(107898,7,19922,3,1672319033),(107899,7,19924,3,1672319033),(107900,7,19925,3,1672319033),(107901,7,19926,3,1672319033),(107902,7,19927,3,1672319033),(107903,7,19928,3,1672319033),(107904,7,19929,3,1672319033),(107905,7,19932,3,1672319033),(107906,7,19933,3,1672319033),(107907,7,19934,3,1672319033),(107908,7,19935,3,1672319033),(107909,7,19936,3,1672319033),(107910,7,19937,3,1672319033),(107911,7,19938,3,1672319033),(107912,7,19941,3,1672319033),(107913,7,19943,3,1672319033),(107914,7,19947,3,1672319033),(107915,7,19949,3,1672319033),(107916,7,19950,3,1672319033),(107917,7,19951,3,1672319033),(107918,7,19952,3,1672319033),(107919,7,19956,3,1672319033),(107920,7,19957,3,1672319033),(107921,7,19978,3,1672319033),(107922,7,19979,3,1672319033),(107923,7,20000,3,1672319033),(107924,7,20078,3,1672319033),(107925,7,20079,3,1672319033),(107926,7,20080,3,1672319033),(107927,7,20081,3,1672319033),(107928,7,20082,3,1672319033),(107929,7,20083,3,1672319033),(107930,7,20084,3,1672319033),(107931,7,20085,3,1672319033),(107932,7,20086,3,1672319033),(107933,7,20087,3,1672319033),(107934,7,20088,3,1672319033),(107935,7,20089,3,1672319033),(107936,7,20090,3,1672319033),(107937,7,20091,3,1672319033),(107938,7,20092,3,1672319033),(107939,7,20093,3,1672319033),(107940,7,20094,3,1672319033),(107941,7,20095,3,1672319033),(107942,7,20096,3,1672319033),(107943,7,20101,3,1672319033),(107944,7,20103,3,1672319033),(107945,7,20108,3,1672319033),(107946,7,20109,3,1672319033),(107947,7,20111,3,1672319033),(107948,7,20112,3,1672319033),(107949,7,20113,3,1672319033),(107950,7,20128,3,1672319033),(107951,7,20129,3,1672319033),(107952,7,20130,3,1672319033),(107953,7,20131,3,1672319033),(107954,7,20132,3,1672319033),(107955,7,20133,3,1672319033),(107956,7,20134,3,1672319033),(107957,7,20135,3,1672319033),(107958,7,20136,3,1672319033),(107959,7,20137,3,1672319033),(107960,7,20138,3,1672319033),(107961,7,20139,3,1672319033),(107962,7,20140,3,1672319033),(107963,7,20141,3,1672319033),(107964,7,20142,3,1672319033),(107965,7,20143,3,1672319033),(107966,7,20144,3,1672319033),(107967,7,20145,3,1672319033),(107968,7,20146,3,1672319033),(107969,7,20147,3,1672319033),(107970,7,20148,3,1672319033),(107971,7,20149,3,1672319033),(107972,7,20150,3,1672319033),(107973,7,20151,3,1672319033),(107974,7,20152,3,1672319033),(107975,7,20153,3,1672319033),(107976,7,20154,3,1672319033),(107977,7,20155,3,1672319033),(107978,7,20156,3,1672319033),(107979,7,20157,3,1672319033),(107980,7,20158,3,1672319033),(107981,7,20159,3,1672319033),(107982,7,20160,3,1672319033),(107983,7,20161,3,1672319033),(107984,7,20162,3,1672319033),(107985,7,20163,3,1672319033),(107986,7,20164,3,1672319033),(107987,7,20165,3,1672319033),(107988,7,20166,3,1672319033),(107989,7,20167,3,1672319033),(107990,7,20168,3,1672319033),(107991,7,20169,3,1672319033),(107992,7,20170,3,1672319033),(107993,7,20171,3,1672319033),(107994,7,20172,3,1672319033),(107995,7,20173,3,1672319033),(107996,7,20174,3,1672319033),(107997,7,20175,3,1672319033),(107998,7,20176,3,1672319033),(107999,7,20177,3,1672319033),(108000,7,20178,3,1672319033),(108001,7,20179,3,1672319033),(108002,7,20180,3,1672319033),(108003,7,20181,3,1672319033),(108004,7,20182,3,1672319033),(108005,7,20183,3,1672319033),(108006,7,20184,3,1672319033),(108007,7,20185,3,1672319033),(108008,7,20186,3,1672319033),(108009,7,20187,3,1672319033),(108010,7,20188,3,1672319033),(108011,7,20189,3,1672319033),(108012,7,20190,3,1672319033),(108013,7,20191,3,1672319033),(108014,7,20192,3,1672319033),(108015,7,20193,3,1672319033),(108016,7,20194,3,1672319033),(108017,7,20195,3,1672319033),(108018,7,20200,3,1672319033),(108019,7,20201,3,1672319033),(108020,7,20203,3,1672319033),(108021,7,20204,3,1672319033),(108022,7,20205,3,1672319033),(108023,7,20206,3,1672319033),(108024,7,20207,3,1672319033),(108025,7,20208,3,1672319033),(108026,7,20211,3,1672319033),(108027,7,20212,3,1672319033),(108028,7,20213,3,1672319033),(108029,7,20214,3,1672319033),(108030,7,20217,3,1672319033),(108031,7,20218,3,1672319033),(108032,7,20219,3,1672319033),(108033,7,20221,3,1672319033),(108034,7,20285,3,1672319033),(108035,7,20286,3,1672319033),(108036,7,20287,3,1672319033),(108037,7,20290,3,1672319033),(108038,7,20291,3,1672319033),(108039,7,20293,3,1672319033),(108040,7,20295,3,1672319033),(108041,7,20298,3,1672319033),(108042,7,20312,3,1672319033),(108043,7,20313,3,1672319033),(108044,7,20318,3,1672319033),(108045,7,20319,3,1672319033),(108046,7,20320,3,1672319033),(108047,7,20321,3,1672319033),(108048,7,20322,3,1672319033),(108049,7,20323,3,1672319033),(108050,7,20324,3,1672319033),(108051,7,20327,3,1672319033),(108052,7,20330,3,1672319033),(108053,7,20354,3,1672319033),(108054,7,20355,3,1672319033),(108055,7,20364,3,1672319033),(108056,7,20365,3,1672319033),(108057,7,20399,3,1672319033),(108058,7,20400,3,1672319033),(108059,7,20403,3,1672319033),(108060,7,20404,3,1672319033),(108061,7,20405,3,1672319033),(108062,7,20408,3,1672319033),(108063,7,20409,3,1672319033),(108064,7,20410,3,1672319033),(108065,7,20411,3,1672319033),(108066,7,20449,3,1672319033),(108067,7,20450,3,1672319033),(108068,7,20543,3,1672319033),(108069,7,20544,3,1672319033),(108070,7,20545,3,1672319033),(108071,7,20546,3,1672319033),(108072,7,20547,3,1672319033),(108073,7,20548,3,1672319033),(108074,7,20549,3,1672319033),(108075,7,20550,3,1672319033),(108076,7,20566,3,1672319033),(108077,7,20567,3,1672319033),(108078,7,20568,3,1672319033),(108079,7,20569,3,1672319033),(108080,7,20570,3,1672319033),(108081,7,20571,3,1672319033),(108082,7,20572,3,1672319033),(108083,7,20573,3,1672319033),(108084,7,20574,3,1672319033),(108085,7,20595,3,1672319033),(108086,7,20596,3,1672319033),(108087,7,20597,3,1672319033),(108088,7,20600,3,1672319033),(108089,7,20601,3,1672319033),(108090,7,20602,3,1672319033),(108091,7,20603,3,1672319033),(108092,7,20604,3,1672319033),(108093,7,20605,3,1672319033),(108094,7,20608,3,1672319033),(108095,7,20609,3,1672319033),(108096,7,20610,3,1672319033),(108097,7,20611,3,1672319033),(108098,7,20612,3,1672319033),(108099,7,20613,3,1672319033),(108100,7,20614,3,1672319033),(108101,7,20615,3,1672319033),(108102,7,20616,3,1672319033),(108103,7,20619,3,1672319033),(108104,7,20620,3,1672319033),(108105,7,20621,3,1672319033),(108106,7,20622,3,1672319033),(108107,7,20623,3,1672319033),(108108,7,20624,3,1672319033),(108109,7,20625,3,1672319033),(108110,7,20627,3,1672319033),(108111,7,20628,3,1672319033),(108112,7,20629,3,1672319033),(108113,7,20630,3,1672319033),(108114,7,20631,3,1672319033),(108115,7,20634,3,1672319033),(108116,7,20635,3,1672319033),(108117,7,20636,3,1672319033),(108118,7,20638,3,1672319033),(108119,7,20639,3,1672319033),(108120,7,20641,3,1672319033),(108121,7,20642,3,1672319033),(108122,7,20643,3,1672319033),(108123,7,20644,3,1672319033),(108124,7,20645,3,1672319033),(108125,7,20646,3,1672319033),(108126,7,20647,3,1672319033),(108127,7,20648,3,1672319033),(108128,7,20649,3,1672319033),(108129,7,20650,3,1672319033),(108130,7,20651,3,1672319033),(108131,7,20652,3,1672319033),(108132,7,20653,3,1672319033),(108133,7,20654,3,1672319033),(108134,7,20655,3,1672319033),(108135,7,20656,3,1672319033),(108136,7,20657,3,1672319033),(108137,7,20658,3,1672319033),(108138,7,20659,3,1672319033),(108139,7,20660,3,1672319033),(108140,7,20661,3,1672319033),(108141,7,20662,3,1672319033),(108142,7,20663,3,1672319033),(108143,7,20664,3,1672319033),(108144,7,20665,3,1672319033),(108145,7,20666,3,1672319033),(108146,7,20667,3,1672319033),(108147,7,20668,3,1672319033),(108148,7,20669,3,1672319033),(108149,7,20670,3,1672319033),(108150,7,20671,3,1672319033),(108151,7,20674,3,1672319033),(108152,7,20675,3,1672319033),(108153,7,20676,3,1672319033),(108154,7,20677,3,1672319033),(108155,7,20678,3,1672319033),(108156,7,20679,3,1672319033),(108157,7,20680,3,1672319033),(108158,7,20683,3,1672319033),(108159,7,20684,3,1672319033),(108160,7,20685,3,1672319033),(108161,7,20686,3,1672319033),(108162,7,20687,3,1672319033),(108163,7,20688,3,1672319033),(108164,7,20689,3,1672319033),(108165,7,20690,3,1672319033),(108166,7,20691,3,1672319033),(108167,7,20692,3,1672319033),(108168,7,20693,3,1672319033),(108169,7,20694,3,1672319033),(108170,7,20695,3,1672319033),(108171,7,20696,3,1672319033),(108172,7,20697,3,1672319033),(108173,7,20698,3,1672319033),(108174,7,20699,3,1672319033),(108175,7,20700,3,1672319033),(108176,7,20701,3,1672319033),(108177,7,20702,3,1672319033),(108178,7,20703,3,1672319033),(108179,7,20704,3,1672319033),(108180,7,20705,3,1672319033),(108181,7,20706,3,1672319033),(108182,7,20707,3,1672319033),(108183,7,20708,3,1672319033),(108184,7,20709,3,1672319033),(108185,7,20710,3,1672319033),(108186,7,20711,3,1672319033),(108187,7,20712,3,1672319033),(108188,7,20715,3,1672319033),(108189,7,20716,3,1672319033),(108190,7,20717,3,1672319033),(108191,7,20718,3,1672319033),(108192,7,20721,3,1672319033),(108193,7,20722,3,1672319033),(108194,7,20723,3,1672319033),(108195,7,20724,3,1672319033),(108196,7,20725,3,1672319033),(108197,7,20726,3,1672319033),(108198,7,20727,3,1672319033),(108199,7,20728,3,1672319033),(108200,7,20731,3,1672319033),(108201,7,20732,3,1672319033),(108202,7,20733,3,1672319033),(108203,7,20734,3,1672319033),(108204,7,20735,3,1672319033),(108205,7,20736,3,1672319033),(108206,7,20737,3,1672319033),(108207,7,20738,3,1672319033),(108208,7,20739,3,1672319033),(108209,7,20741,3,1672319033),(108210,7,20744,3,1672319033),(108211,7,20745,3,1672319033),(108212,7,20746,3,1672319033),(108213,7,20747,3,1672319033),(108214,7,20748,3,1672319033),(108215,7,20749,3,1672319033),(108216,7,20752,3,1672319033),(108217,7,20756,3,1672319033),(108218,7,20757,3,1672319033),(108219,7,20758,3,1672319033),(108220,7,20761,3,1672319033),(108221,7,20762,3,1672319033),(108222,7,20765,3,1672319033),(108223,7,20766,3,1672319033),(108224,7,20771,3,1672319033),(108225,7,20772,3,1672319033),(108226,7,20773,3,1672319033),(108227,7,20774,3,1672319033),(108228,7,20775,3,1672319033),(108229,7,20776,3,1672319033),(108230,7,20777,3,1672319033),(108231,7,20778,3,1672319033),(108232,7,20779,3,1672319033),(108233,7,20780,3,1672319033),(108234,7,20781,3,1672319033),(108235,7,20782,3,1672319033),(108236,7,20783,3,1672319033),(108237,7,20784,3,1672319033),(108238,7,20785,3,1672319033),(108239,7,20786,3,1672319033),(108240,7,20787,3,1672319033),(108241,7,20788,3,1672319033),(108242,7,20789,3,1672319033),(108243,7,20790,3,1672319033),(108244,7,20791,3,1672319033),(108245,7,20792,3,1672319033),(108246,7,20793,3,1672319033),(108247,7,20794,3,1672319033),(108248,7,20795,3,1672319033),(108249,7,20796,3,1672319033),(108250,7,20797,3,1672319033),(108251,7,20798,3,1672319033),(108252,7,20799,3,1672319033),(108253,7,20800,3,1672319033),(108254,7,20801,3,1672319033),(108255,7,20802,3,1672319033),(108256,7,20824,3,1672319033),(108257,7,20825,3,1672319033),(108258,7,20826,3,1672319033),(108259,7,20827,3,1672319033),(108260,7,20828,3,1672319033),(108261,7,20829,3,1672319033),(108262,7,20830,3,1672319033),(108263,7,20831,3,1672319033),(108264,7,20832,3,1672319033),(108265,7,20833,3,1672319033),(108266,7,20834,3,1672319033),(108267,7,20835,3,1672319033),(108268,7,20836,3,1672319033),(108269,7,20837,3,1672319033),(108270,7,20838,3,1672319033),(108271,7,20839,3,1672319033),(108272,7,20840,3,1672319033),(108273,7,20841,3,1672319033),(108274,7,20842,3,1672319033),(108275,7,20843,3,1672319033),(108276,7,20844,3,1672319033),(108277,7,20845,3,1672319033),(108278,7,20846,3,1672319033),(108279,7,20847,3,1672319033),(108280,7,20848,3,1672319033),(108281,7,20849,3,1672319033),(108282,7,20850,3,1672319033),(108283,7,20851,3,1672319033),(108284,7,20852,3,1672319033),(108285,7,20853,3,1672319033),(108286,7,20854,3,1672319033),(108287,7,20855,3,1672319033),(108288,7,20856,3,1672319033),(108289,7,20857,3,1672319033),(108290,7,20858,3,1672319033),(108291,7,20859,3,1672319033),(108292,7,20860,3,1672319033),(108293,7,20861,3,1672319033),(108294,7,20862,3,1672319033),(108295,7,20863,3,1672319033),(108296,7,20864,3,1672319033),(108297,7,20865,3,1672319033),(108298,7,20866,3,1672319033),(108299,7,20867,3,1672319033),(108300,7,20868,3,1672319033),(108301,7,20869,3,1672319033),(108302,7,20870,3,1672319033),(108303,7,20871,3,1672319033),(108304,7,20872,3,1672319033),(108305,7,20874,3,1672319033),(108306,7,20875,3,1672319033),(108307,7,20876,3,1672319033),(108308,7,20877,3,1672319033),(108309,7,20878,3,1672319033),(108310,7,20879,3,1672319033),(108311,7,20880,3,1672319033),(108312,7,20881,3,1672319033),(108313,7,20882,3,1672319033),(108314,7,20883,3,1672319033),(108315,7,20884,3,1672319033),(108316,7,20885,3,1672319033),(108317,7,20886,3,1672319033),(108318,7,20887,3,1672319033),(108319,7,20888,3,1672319033),(108320,7,20889,3,1672319033),(108321,7,20890,3,1672319033),(108322,7,20891,3,1672319033),(108323,7,20892,3,1672319033),(108324,7,20893,3,1672319033),(108325,7,20894,3,1672319033),(108326,7,20895,3,1672319033),(108327,7,20896,3,1672319033),(108328,7,20897,3,1672319033),(108329,7,20898,3,1672319033),(108330,7,20899,3,1672319033),(108331,7,20900,3,1672319033),(108332,7,20901,3,1672319033),(108333,7,20902,3,1672319033),(108334,7,20903,3,1672319033),(108335,7,20904,3,1672319033),(108336,7,20905,3,1672319033),(108337,7,20906,3,1672319033),(108338,7,20907,3,1672319033),(108339,7,20908,3,1672319033),(108340,7,20909,3,1672319033),(108341,7,20910,3,1672319033),(108342,7,20911,3,1672319033),(108343,7,20912,3,1672319033),(108344,7,20913,3,1672319033),(108345,7,20914,3,1672319033),(108346,7,20915,3,1672319033),(108347,7,20916,3,1672319033),(108348,7,20917,3,1672319033),(108349,7,20918,3,1672319033),(108350,7,20919,3,1672319033),(108351,7,20920,3,1672319033),(108352,7,20921,3,1672319033),(108353,7,20922,3,1672319033),(108354,7,20923,3,1672319033),(108355,7,20924,3,1672319033),(108356,7,20925,3,1672319033),(108357,7,20926,3,1672319033),(108358,7,20927,3,1672319033),(108359,7,20928,3,1672319033),(108360,7,20929,3,1672319033),(108361,7,20930,3,1672319033),(108362,7,20932,3,1672319033),(108363,7,20933,3,1672319033),(108364,7,20934,3,1672319033),(108365,7,20935,3,1672319033),(108366,7,20936,3,1672319033),(108367,7,20937,3,1672319033),(108368,7,20938,3,1672319033),(108369,7,20939,3,1672319033),(108370,7,20940,3,1672319033),(108371,7,20941,3,1672319033),(108372,7,20942,3,1672319033),(108373,7,20943,3,1672319033),(108374,7,20944,3,1672319033),(108375,7,20945,3,1672319033),(108376,7,20946,3,1672319033),(108377,7,20947,3,1672319033),(108378,7,20948,3,1672319033),(108379,7,20949,3,1672319033),(108380,7,20950,3,1672319033),(108381,7,20951,3,1672319033),(108382,7,20952,3,1672319033),(108383,7,20953,3,1672319033),(108384,7,20954,3,1672319033),(108385,7,20955,3,1672319033),(108386,7,20956,3,1672319033),(108387,7,20957,3,1672319033),(108388,7,20958,3,1672319033),(108389,7,20959,3,1672319033),(108390,7,20960,3,1672319033),(108391,7,20961,3,1672319033),(108392,7,20962,3,1672319033),(108393,7,20963,3,1672319033),(108394,7,20964,3,1672319033),(108395,7,20965,3,1672319033),(108396,7,20966,3,1672319033),(108397,7,20967,3,1672319033),(108398,7,20968,3,1672319033),(108399,7,20969,3,1672319033),(108400,7,20970,3,1672319033),(108401,7,20971,3,1672319033),(108402,7,20972,3,1672319033),(108403,7,20973,3,1672319033),(108404,7,20974,3,1672319033),(108405,7,20976,3,1672319033),(108406,7,20977,3,1672319033),(108407,7,20978,3,1672319033),(108408,7,20979,3,1672319033),(108409,7,20980,3,1672319033),(108410,7,20981,3,1672319033),(108411,7,20982,3,1672319033),(108412,7,20983,3,1672319033),(108413,7,20984,3,1672319033),(108414,7,20985,3,1672319033),(108415,7,20986,3,1672319033),(108416,7,20987,3,1672319033),(108417,7,20988,3,1672319033),(108418,7,20989,3,1672319033),(108419,7,20990,3,1672319033),(108420,7,20991,3,1672319033),(108421,7,20992,3,1672319033),(108422,7,20993,3,1672319033),(108423,7,20994,3,1672319033),(108424,7,20995,3,1672319033),(108425,7,20996,3,1672319033),(108426,7,20997,3,1672319033),(108427,7,20998,3,1672319033),(108428,7,21000,3,1672319033),(108429,7,21001,3,1672319033),(108430,7,21002,3,1672319033),(108431,7,21003,3,1672319033),(108432,7,21004,3,1672319033),(108433,7,21005,3,1672319033),(108434,7,21006,3,1672319033),(108435,7,21007,3,1672319033),(108436,7,21008,3,1672319033),(108437,7,21009,3,1672319033),(108438,7,21010,3,1672319033),(108439,7,21011,3,1672319033),(108440,7,21012,3,1672319033),(108441,7,21013,3,1672319033),(108442,7,21014,3,1672319033),(108443,7,21015,3,1672319033),(108444,7,21016,3,1672319033),(108445,7,21017,3,1672319033),(108446,7,21018,3,1672319033),(108447,7,21019,3,1672319033),(108448,7,21020,3,1672319033),(108449,7,21021,3,1672319033),(108450,7,21022,3,1672319033),(108451,7,21023,3,1672319033),(108452,7,21024,3,1672319033),(108453,7,21025,3,1672319033),(108454,7,21026,3,1672319033),(108455,7,21027,3,1672319033),(108456,7,21028,3,1672319033),(108457,7,21029,3,1672319033),(108458,7,21030,3,1672319033),(108459,7,21031,3,1672319033),(108460,7,21032,3,1672319033),(108461,7,21033,3,1672319033),(108462,7,21034,3,1672319033),(108463,7,21035,3,1672319033),(108464,7,21036,3,1672319033),(108465,7,21037,3,1672319033),(108466,7,21038,3,1672319033),(108467,7,21039,3,1672319033),(108468,7,21040,3,1672319033),(108469,7,21041,3,1672319033),(108470,7,21042,3,1672319033),(108471,7,21043,3,1672319033),(108472,7,21044,3,1672319033),(108473,7,21045,3,1672319033),(108474,7,21046,3,1672319033),(108475,7,21047,3,1672319033),(108476,7,21048,3,1672319033),(108477,7,21049,3,1672319033),(108478,7,21050,3,1672319033),(108479,7,21051,3,1672319033),(108480,7,21052,3,1672319033),(108481,7,21053,3,1672319033),(108482,7,21054,3,1672319033),(108483,7,21055,3,1672319033),(108484,7,21056,3,1672319033),(108485,7,21057,3,1672319033),(108486,7,21058,3,1672319033),(108487,7,21059,3,1672319033),(108488,7,21060,3,1672319033),(108489,7,21061,3,1672319033),(108490,7,21062,3,1672319033),(108491,7,21063,3,1672319033),(108492,7,21065,3,1672319033),(108493,7,21066,3,1672319033),(108494,7,21067,3,1672319033),(108495,7,21068,3,1672319033),(108496,7,21069,3,1672319033),(108497,7,21070,3,1672319033),(108498,7,21071,3,1672319033),(108499,7,21072,3,1672319033),(108500,7,21073,3,1672319033),(108501,7,21074,3,1672319033),(108502,7,21075,3,1672319033),(108503,7,21076,3,1672319033),(108504,7,21077,3,1672319033),(108505,7,21078,3,1672319033),(108506,7,21079,3,1672319033),(108507,7,21080,3,1672319033),(108508,7,21081,3,1672319033),(108509,7,21082,3,1672319033),(108510,7,21083,3,1672319033),(108511,7,21084,3,1672319033),(108512,7,21085,3,1672319033),(108513,7,21086,3,1672319033),(108514,7,21087,3,1672319033),(108515,7,21088,3,1672319033),(108516,7,21089,3,1672319033),(108517,7,21090,3,1672319033),(108518,7,21091,3,1672319033),(108519,7,21092,3,1672319033),(108520,7,21093,3,1672319033),(108521,7,21094,3,1672319033),(108522,7,21095,3,1672319033),(108523,7,21096,3,1672319033),(108524,7,21097,3,1672319033),(108525,7,21098,3,1672319033),(108526,7,21099,3,1672319033),(108527,7,21100,3,1672319033),(108528,7,21101,3,1672319033),(108529,7,21102,3,1672319033),(108530,7,21103,3,1672319033),(108531,7,21104,3,1672319033),(108532,7,21106,3,1672319033),(108533,7,21107,3,1672319033),(108534,7,21108,3,1672319033),(108535,7,21109,3,1672319033),(108536,7,21110,3,1672319033),(108537,7,21111,3,1672319033),(108538,7,21112,3,1672319033),(108539,7,21113,3,1672319033),(108540,7,21114,3,1672319033),(108541,7,21115,3,1672319033),(108542,7,21116,3,1672319033),(108543,7,21117,3,1672319033),(108544,7,21118,3,1672319033),(108545,7,21119,3,1672319033),(108546,7,21120,3,1672319033),(108547,7,21121,3,1672319033),(108548,7,21122,3,1672319033),(108549,7,21123,3,1672319033),(108550,7,21124,3,1672319033),(108551,7,21125,3,1672319033),(108552,7,21126,3,1672319033),(108553,7,21127,3,1672319033),(108554,7,21128,3,1672319033),(108555,7,21129,3,1672319033),(108556,7,21130,3,1672319033),(108557,7,21131,3,1672319033),(108558,7,21132,3,1672319033),(108559,7,21133,3,1672319033),(108560,7,21134,3,1672319033),(108561,7,21135,3,1672319033),(108562,7,21136,3,1672319033),(108563,7,21137,3,1672319033),(108564,7,21138,3,1672319033),(108565,7,21139,3,1672319033),(108566,7,21140,3,1672319033),(108567,7,21141,3,1672319033),(108568,7,21142,3,1672319033),(108569,7,21143,3,1672319033),(108570,7,21145,3,1672319033),(108571,7,21146,3,1672319033),(108572,7,21147,3,1672319033),(108573,7,21148,3,1672319033),(108574,7,21149,3,1672319033),(108575,7,21150,3,1672319033),(108576,7,21151,3,1672319033),(108577,7,21152,3,1672319033),(108578,7,21153,3,1672319033),(108579,7,21154,3,1672319033),(108580,7,21155,3,1672319033),(108581,7,21156,3,1672319033),(108582,7,21157,3,1672319033),(108583,7,21164,3,1672319033),(108584,7,21165,3,1672319033),(108585,7,21166,3,1672319033),(108586,7,21167,3,1672319033),(108587,7,21168,3,1672319033),(108588,7,21174,3,1672319033),(108589,7,21175,3,1672319033),(108590,7,21176,3,1672319033),(108591,7,21177,3,1672319033),(108592,7,21178,3,1672319033),(108593,7,21193,3,1672319033),(108594,7,21194,3,1672319033),(108595,7,21195,3,1672319033),(108596,7,21196,3,1672319033),(108597,7,21197,3,1672319033),(108598,7,21198,3,1672319033),(108599,7,21199,3,1672319033),(108600,7,21200,3,1672319033),(108601,7,21201,3,1672319033),(108602,7,21202,3,1672319033),(108603,7,21203,3,1672319033),(108604,7,21204,3,1672319033),(108605,7,21205,3,1672319033),(108606,7,21206,3,1672319033),(108607,7,21211,3,1672319033),(108608,7,21212,3,1672319033),(108609,7,21213,3,1672319033),(108610,7,21214,3,1672319033),(108611,7,21215,3,1672319033),(108612,7,21216,3,1672319033),(108613,7,21217,3,1672319033),(108614,7,21218,3,1672319033),(108615,7,21219,3,1672319033),(108616,7,21220,3,1672319033),(108617,7,21221,3,1672319033),(108618,7,21222,3,1672319033),(108619,7,21223,3,1672319033),(108620,7,21224,3,1672319033),(108621,7,21225,3,1672319033),(108622,7,21226,3,1672319033),(108623,7,21227,3,1672319033),(108624,7,21228,3,1672319033),(108625,7,21229,3,1672319033),(108626,7,21230,3,1672319033),(108627,7,21231,3,1672319033),(108628,7,21232,3,1672319033),(108629,7,21233,3,1672319033),(108630,7,21234,3,1672319033),(108631,7,21235,3,1672319033),(108632,7,21236,3,1672319033),(108633,7,21237,3,1672319033),(108634,7,21238,3,1672319033),(108635,7,21239,3,1672319033),(108636,7,21240,3,1672319033),(108637,7,21241,3,1672319033),(108638,7,21242,3,1672319033),(108639,7,21245,3,1672319033),(108640,7,21246,3,1672319033),(108641,7,21247,3,1672319033),(108642,7,21248,3,1672319033),(108643,7,21249,3,1672319033),(108644,7,21250,3,1672319033),(108645,7,21251,3,1672319033),(108646,7,21252,3,1672319033),(108647,7,21253,3,1672319033),(108648,7,21254,3,1672319033),(108649,7,21255,3,1672319033),(108650,7,21256,3,1672319033),(108651,7,21262,3,1672319033),(108652,7,21266,3,1672319033),(108653,7,21267,3,1672319033),(108654,7,21268,3,1672319033),(108655,7,21269,3,1672319033),(108656,7,21275,3,1672319033),(108657,7,21276,3,1672319033),(108658,7,21277,3,1672319033),(108659,7,21278,3,1672319033),(108660,7,21279,3,1672319033),(108661,7,21280,3,1672319033),(108662,7,21281,3,1672319033),(108663,7,21282,3,1672319033),(108664,7,21283,3,1672319033),(108665,7,21284,3,1672319033),(108666,7,21285,3,1672319033),(108667,7,21286,3,1672319033),(108668,7,21287,3,1672319033),(108669,7,21288,3,1672319033),(108670,7,21289,3,1672319033),(108671,7,21290,3,1672319033),(108672,7,21291,3,1672319033),(108673,7,21292,3,1672319033),(108674,7,21295,3,1672319033),(108675,7,21296,3,1672319033),(108676,7,21303,3,1672319033),(108677,7,21304,3,1672319033),(108678,7,21305,3,1672319033),(108679,7,21306,3,1672319033),(108680,7,21307,3,1672319033),(108681,7,21308,3,1672319033),(108682,7,21309,3,1672319033),(108683,7,21310,3,1672319033),(108684,7,21311,3,1672319033),(108685,7,21312,3,1672319033),(108686,7,21313,3,1672319033),(108687,7,21314,3,1672319033),(108688,7,21315,3,1672319033),(108689,7,21316,3,1672319033),(108690,7,21317,3,1672319033),(108691,7,21318,3,1672319033),(108692,7,21319,3,1672319033),(108693,7,21320,3,1672319033),(108694,7,21321,3,1672319033),(108695,7,21322,3,1672319033),(108696,7,21323,3,1672319033),(108697,7,21324,3,1672319033),(108698,7,21325,3,1672319033),(108699,7,21326,3,1672319033),(108700,7,21327,3,1672319033),(108701,7,21328,3,1672319033),(108702,7,21329,3,1672319033),(108703,7,21330,3,1672319033),(108704,7,21331,3,1672319033),(108705,7,21332,3,1672319033),(108706,7,21333,3,1672319033),(108707,7,21334,3,1672319033),(108708,7,21335,3,1672319033),(108709,7,21336,3,1672319033),(108710,7,21337,3,1672319033),(108711,7,21338,3,1672319033),(108712,7,21339,3,1672319033),(108713,7,21340,3,1672319033),(108714,7,21341,3,1672319033),(108715,7,21342,3,1672319033),(108716,7,21343,3,1672319033),(108717,7,21345,3,1672319033),(108718,7,21348,3,1672319033),(108719,7,21349,3,1672319033),(108720,7,21350,3,1672319033),(108721,7,21351,3,1672319033),(108722,7,21566,3,1672319033),(108723,7,21567,3,1672319033),(108724,7,21568,3,1672319033),(108725,7,21571,3,1672319033),(108726,7,21575,3,1672319033),(108727,7,21576,3,1672319033),(108728,7,21577,3,1672319033),(108729,7,21578,3,1672319033),(108730,7,21579,3,1672319033),(108731,7,21580,3,1672319033),(108732,7,21581,3,1672319033),(108733,7,21582,3,1672319033),(108734,7,21583,3,1672319033),(108735,7,21584,3,1672319033),(108736,7,21585,3,1672319033),(108737,7,21586,3,1672319033),(108738,7,21587,3,1672319033),(108739,7,21592,3,1672319033),(108740,7,21619,3,1672319033),(108741,7,21637,3,1672319033),(108742,7,21649,3,1672319033),(108743,7,21657,3,1672319033),(108744,7,21677,3,1672319033),(108745,7,21704,3,1672319033),(108746,7,21705,3,1672319033),(108747,7,21706,3,1672319033),(108748,7,21707,3,1672319033),(108749,7,21708,3,1672319033),(108750,7,21710,3,1672319033),(108751,7,21711,3,1672319033),(108752,7,21712,3,1672319033),(108753,7,21713,3,1672319033),(108754,7,21714,3,1672319033),(108755,7,21715,3,1672319033),(108756,7,21716,3,1672319033),(108757,7,21717,3,1672319033),(108758,7,21718,3,1672319033),(108759,7,21719,3,1672319033),(108760,7,21720,3,1672319033),(108761,7,21721,3,1672319033),(108762,7,21722,3,1672319033),(108763,7,21723,3,1672319033),(108764,7,21724,3,1672319033),(108765,7,21725,3,1672319033),(108766,7,21726,3,1672319033),(108767,7,21727,3,1672319033),(108768,7,21728,3,1672319033),(108769,7,21729,3,1672319033),(108770,7,21730,3,1672319033),(108771,7,21731,3,1672319033),(108772,7,21732,3,1672319033),(108773,7,21733,3,1672319033),(108774,7,21734,3,1672319033),(108775,7,21735,3,1672319033),(108776,7,21736,3,1672319033),(108777,7,21737,3,1672319033),(108778,7,21738,3,1672319033),(108779,7,21739,3,1672319033),(108780,7,21740,3,1672319033),(108781,7,21741,3,1672319033),(108782,7,21742,3,1672319033),(108783,7,21743,3,1672319033),(108784,7,21744,3,1672319033),(108785,7,21745,3,1672319033),(108786,7,21746,3,1672319033),(108787,7,21747,3,1672319033),(108788,7,21748,3,1672319033),(108789,7,21749,3,1672319033),(108790,7,21750,3,1672319033),(108791,7,21751,3,1672319033),(108792,7,21756,3,1672319033),(108793,7,21758,3,1672319033),(108794,7,21759,3,1672319033),(108795,7,21760,3,1672319033),(108796,7,21761,3,1672319033),(108797,7,21762,3,1672319033),(108798,7,21763,3,1672319033),(108799,7,21764,3,1672319033),(108800,7,21765,3,1672319033),(108801,7,21768,3,1672319033),(108802,7,21769,3,1672319033),(108803,7,21770,3,1672319033),(108804,7,21771,3,1672319033),(108805,7,21772,3,1672319033),(108806,7,21773,3,1672319033),(108807,7,21774,3,1672319033),(108808,7,21775,3,1672319033),(108809,7,21776,3,1672319033),(108810,7,21777,3,1672319033),(108811,7,21778,3,1672319033),(108812,7,21779,3,1672319033),(108813,7,21780,3,1672319033),(108814,7,21802,3,1672319033),(108815,7,21803,3,1672319033),(108816,7,21804,3,1672319033),(108817,7,21805,3,1672319033),(108818,7,21806,3,1672319033),(108819,7,21807,3,1672319033),(108820,7,21808,3,1672319033),(108821,7,21956,3,1672319033),(108822,7,21957,3,1672319033),(108823,7,21958,3,1672319033),(108824,7,21959,3,1672319033),(108825,7,21960,3,1672319033),(108826,7,21961,3,1672319033),(108827,7,21962,3,1672319033),(108828,7,21970,3,1672319033),(108829,7,21971,3,1672319033),(108830,7,21972,3,1672319033),(108831,7,21980,3,1672319033),(108832,7,21981,3,1672319033),(108833,7,21984,3,1672319033),(108834,7,21985,3,1672319033),(108835,7,21986,3,1672319033),(108836,7,21987,3,1672319033),(108837,7,21988,3,1672319033),(108838,7,21989,3,1672319033),(108839,7,21990,3,1672319033),(108840,7,21991,3,1672319033),(108841,7,21992,3,1672319033),(108842,7,21993,3,1672319033),(108843,7,21994,3,1672319033),(108844,7,21995,3,1672319033),(108845,7,21996,3,1672319033),(108846,7,21997,3,1672319033),(108847,7,21998,3,1672319033),(108848,7,21999,3,1672319033),(108849,7,22000,3,1672319033),(108850,7,22001,3,1672319033),(108851,7,22002,3,1672319033),(108852,7,22003,3,1672319033),(108853,7,22004,3,1672319033),(108854,7,22005,3,1672319033),(108855,7,22006,3,1672319033),(108856,7,22007,3,1672319033),(108857,7,22008,3,1672319033),(108858,7,22009,3,1672319033),(108859,7,22010,3,1672319033),(108860,7,22011,3,1672319033),(108861,7,22012,3,1672319033),(108862,7,22013,3,1672319033),(108863,7,22014,3,1672319033),(108864,7,22015,3,1672319033),(108865,7,22023,3,1672319033),(108866,7,22024,3,1672319033),(108867,7,22027,3,1672319033),(108868,7,22028,3,1672319033),(108869,7,22029,3,1672319033),(108870,7,22030,3,1672319033),(108871,7,22031,3,1672319033),(108872,7,22032,3,1672319033),(108873,7,22033,3,1672319033),(108874,7,22034,3,1672319033),(108875,7,22035,3,1672319033),(108876,7,22036,3,1672319033),(108877,7,22037,3,1672319033),(108878,7,22038,3,1672319033),(108879,7,22039,3,1672319033),(108880,7,22040,3,1672319033),(108881,7,22041,3,1672319033),(108882,7,22042,3,1672319033),(108883,7,22043,3,1672319033),(108884,7,22044,3,1672319033),(108885,7,22045,3,1672319033),(108886,7,22046,3,1672319033),(108887,7,22047,3,1672319033),(108888,7,22048,3,1672319033),(108889,7,22049,3,1672319033),(108890,7,22050,3,1672319033),(108891,7,22051,3,1672319033),(108892,7,22052,3,1672319033),(108893,7,22053,3,1672319033),(108894,7,22054,3,1672319033),(108895,7,22055,3,1672319033),(108896,7,22056,3,1672319033),(108897,7,22057,3,1672319033),(108898,7,22058,3,1672319033),(108899,7,22066,3,1672319033),(108900,7,22067,3,1672319033),(108901,7,22070,3,1672319033),(108902,7,22071,3,1672319033),(108903,7,22072,3,1672319033),(108904,7,22073,3,1672319033),(108905,7,22074,3,1672319033),(108906,7,22075,3,1672319033),(108907,7,22076,3,1672319033),(108908,7,22077,3,1672319033),(108909,7,22078,3,1672319033),(108910,7,22079,3,1672319033),(108911,7,22080,3,1672319033),(108912,7,22081,3,1672319033),(108913,7,22082,3,1672319033),(108914,7,22083,3,1672319033),(108915,7,22084,3,1672319033),(108916,7,22085,3,1672319033),(108917,7,22086,3,1672319033),(108918,7,22087,3,1672319033),(108919,7,22088,3,1672319033),(108920,7,22089,3,1672319033),(108921,7,22090,3,1672319033),(108922,7,22091,3,1672319033),(108923,7,22092,3,1672319033),(108924,7,22093,3,1672319033),(108925,7,22094,3,1672319033),(108926,7,22095,3,1672319033),(108927,7,22096,3,1672319033),(108928,7,22097,3,1672319033),(108929,7,22098,3,1672319033),(108930,7,22099,3,1672319033),(108931,7,22100,3,1672319033),(108932,7,22101,3,1672319033),(108933,7,22109,3,1672319033),(108934,7,22110,3,1672319033),(108935,7,22113,3,1672319033),(108936,7,22114,3,1672319033),(108937,7,22115,3,1672319033),(108938,7,22116,3,1672319033),(108939,7,22117,3,1672319033),(108940,7,22118,3,1672319033),(108941,7,22119,3,1672319033),(108942,7,22120,3,1672319033),(108943,7,22121,3,1672319033),(108944,7,22122,3,1672319033),(108945,7,22123,3,1672319033),(108946,7,22124,3,1672319033),(108947,7,22125,3,1672319033),(108948,7,22126,3,1672319033),(108949,7,22127,3,1672319033),(108950,7,22128,3,1672319033),(108951,7,22129,3,1672319033),(108952,7,22130,3,1672319033),(108953,7,22131,3,1672319033),(108954,7,22132,3,1672319033),(108955,7,22133,3,1672319033),(108956,7,22134,3,1672319033),(108957,7,22135,3,1672319033),(108958,7,22136,3,1672319033),(108959,7,22137,3,1672319033),(108960,7,22138,3,1672319033),(108961,7,22139,3,1672319033),(108962,7,22140,3,1672319033),(108963,7,22141,3,1672319033),(108964,7,22142,3,1672319033),(108965,7,22143,3,1672319033),(108966,7,22144,3,1672319033),(108967,7,22152,3,1672319033),(108968,7,22153,3,1672319033),(108969,7,22156,3,1672319033),(108970,7,22157,3,1672319033),(108971,7,22158,3,1672319033),(108972,7,22159,3,1672319033),(108973,7,22160,3,1672319033),(108974,7,22161,3,1672319033),(108975,7,22162,3,1672319033),(108976,7,22163,3,1672319033),(108977,7,22164,3,1672319033),(108978,7,22165,3,1672319033),(108979,7,22166,3,1672319033),(108980,7,22167,3,1672319033),(108981,7,22168,3,1672319033),(108982,7,22169,3,1672319033),(108983,7,22170,3,1672319033),(108984,7,22171,3,1672319033),(108985,7,22172,3,1672319033),(108986,7,22173,3,1672319033),(108987,7,22174,3,1672319033),(108988,7,22175,3,1672319033),(108989,7,22176,3,1672319033),(108990,7,22177,3,1672319033),(108991,7,22178,3,1672319033),(108992,7,22179,3,1672319033),(108993,7,22180,3,1672319033),(108994,7,22181,3,1672319033),(108995,7,22182,3,1672319033),(108996,7,22183,3,1672319033),(108997,7,22184,3,1672319033),(108998,7,22185,3,1672319033),(108999,7,22188,3,1672319033),(109000,7,22192,3,1672319033),(109001,7,22194,3,1672319033),(109002,7,22195,3,1672319033),(109003,7,22196,3,1672319033),(109004,7,22197,3,1672319033),(109005,7,22198,3,1672319033),(109006,7,22199,3,1672319033),(109007,7,22200,3,1672319033),(109008,7,22201,3,1672319033),(109009,7,22202,3,1672319033),(109010,7,22203,3,1672319033),(109011,7,22204,3,1672319033),(109012,7,22205,3,1672319033),(109013,7,22208,3,1672319033),(109014,7,22209,3,1672319033),(109015,7,22210,3,1672319033),(109016,7,22211,3,1672319033),(109017,7,22212,3,1672319033),(109018,7,22213,3,1672319033),(109019,7,22214,3,1672319033),(109020,7,22215,3,1672319033),(109021,7,22224,3,1672319033),(109022,7,22231,3,1672319033),(109023,7,22232,3,1672319033),(109024,7,22233,3,1672319033),(109025,7,22234,3,1672319033),(109026,7,22247,3,1672319033),(109027,7,22248,3,1672319033),(109028,7,22249,3,1672319033),(109029,7,22250,3,1672319033),(109030,7,22257,3,1672319033),(109031,7,22258,3,1672319033),(109032,7,22259,3,1672319033),(109033,7,22260,3,1672319033),(109034,7,22261,3,1672319033),(109035,7,22262,3,1672319033),(109036,7,22263,3,1672319033),(109037,7,22264,3,1672319033),(109038,7,22265,3,1672319033),(109039,7,22266,3,1672319033),(109040,7,22267,3,1672319033),(109041,7,22268,3,1672319033),(109042,7,22269,3,1672319033),(109043,7,22270,3,1672319033),(109044,7,22278,3,1672319033),(109045,7,22279,3,1672319033),(109046,7,22280,3,1672319033),(109047,7,22281,3,1672319033),(109048,7,22282,3,1672319033),(109049,7,22283,3,1672319033),(109050,7,22284,3,1672319033),(109051,7,22292,3,1672319033),(109052,7,22293,3,1672319033),(109053,7,22294,3,1672319033),(109054,7,22295,3,1672319033),(109055,7,22299,3,1672319033),(109056,7,22300,3,1672319033),(109057,7,22301,3,1672319033),(109058,7,22302,3,1672319033),(109059,7,22303,3,1672319033),(109060,7,22304,3,1672319033),(109061,7,22305,3,1672319033),(109062,7,22306,3,1672319033),(109063,7,22307,3,1672319033),(109064,7,22308,3,1672319033),(109065,7,22309,3,1672319033),(109066,7,22310,3,1672319033),(109067,7,22311,3,1672319033),(109068,7,22312,3,1672319033),(109069,7,22313,3,1672319033),(109070,7,22314,3,1672319033),(109071,7,22318,3,1672319033),(109072,7,22319,3,1672319033),(109073,7,22321,3,1672319033),(109074,7,22322,3,1672319033),(109075,7,22323,3,1672319033),(109076,7,22324,3,1672319033),(109077,7,22325,3,1672319033),(109078,7,22326,3,1672319033),(109079,7,22327,3,1672319033),(109080,7,22328,3,1672319033),(109081,7,22329,3,1672319033),(109082,7,22330,3,1672319033),(109083,7,22345,3,1672319033),(109084,7,22346,3,1672319033),(109085,7,22347,3,1672319033),(109086,7,22356,3,1672319033),(109087,7,22357,3,1672319033),(109088,7,22358,3,1672319033),(109089,7,22360,3,1672319033),(109090,7,22361,3,1672319033),(109091,7,22362,3,1672319033),(109092,7,22363,3,1672319033),(109093,7,22364,3,1672319033),(109094,7,22365,3,1672319033),(109095,7,22366,3,1672319033),(109096,7,22367,3,1672319033),(109097,7,22368,3,1672319033),(109098,7,22371,3,1672319033),(109099,7,22372,3,1672319033),(109100,7,22373,3,1672319033),(109101,7,22374,3,1672319033),(109102,7,22375,3,1672319033),(109103,7,22376,3,1672319033),(109104,7,22377,3,1672319033),(109105,7,22378,3,1672319033),(109106,7,22379,3,1672319033),(109107,7,22380,3,1672319033),(109108,7,22381,3,1672319033),(109109,7,22382,3,1672319033),(109110,7,22383,3,1672319033),(109111,7,22384,3,1672319033),(109112,7,22385,3,1672319033),(109113,7,22386,3,1672319033),(109114,7,22387,3,1672319033),(109115,7,22390,3,1672319033),(109116,7,22391,3,1672319033),(109117,7,22392,3,1672319033),(109118,7,22393,3,1672319033),(109119,7,22394,3,1672319033),(109120,7,22395,3,1672319033),(109121,7,22396,3,1672319033),(109122,7,22397,3,1672319033),(109123,7,22398,3,1672319033),(109124,7,22399,3,1672319033),(109125,7,22400,3,1672319033),(109126,7,22401,3,1672319033),(109127,7,22402,3,1672319033),(109128,7,22403,3,1672319033),(109129,7,22404,3,1672319033),(109130,7,22405,3,1672319033),(109131,7,22406,3,1672319033),(109132,7,22407,3,1672319033),(109133,7,22408,3,1672319033),(109134,7,22411,3,1672319033),(109135,7,22412,3,1672319033),(109136,7,22414,3,1672319033),(109137,7,22415,3,1672319033),(109138,7,22416,3,1672319033),(109139,7,22417,3,1672319033),(109140,7,22418,3,1672319033),(109141,7,22419,3,1672319033),(109142,7,22420,3,1672319033),(109143,7,22421,3,1672319033),(109144,7,22422,3,1672319033),(109145,7,22423,3,1672319033),(109146,7,22424,3,1672319033),(109147,7,22425,3,1672319033),(109148,7,22426,3,1672319033),(109149,7,22427,3,1672319033),(109150,7,22428,3,1672319033),(109151,7,22429,3,1672319033),(109152,7,22430,3,1672319033),(109153,7,22431,3,1672319033),(109154,7,22432,3,1672319033),(109155,7,22433,3,1672319033),(109156,7,22434,3,1672319033),(109157,7,22435,3,1672319033),(109158,7,22436,3,1672319033),(109159,7,22437,3,1672319033),(109160,7,22441,3,1672319033),(109161,7,22442,3,1672319033),(109162,7,22443,3,1672319033),(109163,7,22444,3,1672319033),(109164,7,22445,3,1672319033),(109165,7,22446,3,1672319033),(109166,7,22447,3,1672319033),(109167,7,22448,3,1672319033),(109168,7,22449,3,1672319033),(109169,7,22450,3,1672319033),(109170,7,22451,3,1672319033),(109171,7,22452,3,1672319033),(109172,7,22453,3,1672319033),(109173,7,22454,3,1672319033),(109174,7,22455,3,1672319033),(109175,7,22456,3,1672319033),(109176,7,22457,3,1672319033),(109177,7,22458,3,1672319033),(109178,7,22459,3,1672319033),(109179,7,22460,3,1672319033),(109180,7,22461,3,1672319033),(109181,7,22462,3,1672319033),(109182,7,22463,3,1672319033),(109183,7,22464,3,1672319033),(109184,7,22465,3,1672319033),(109185,7,22466,3,1672319033),(109186,7,22467,3,1672319033),(109187,7,22468,3,1672319033),(109188,7,22469,3,1672319033),(109189,7,22470,3,1672319033),(109190,7,22471,3,1672319033),(109191,7,22472,3,1672319033),(109192,7,22473,3,1672319033),(109193,7,22474,3,1672319033),(109194,7,22475,3,1672319033),(109195,7,22479,3,1672319033),(109196,7,22480,3,1672319033),(109197,7,22481,3,1672319033),(109198,7,22482,3,1672319033),(109199,7,22483,3,1672319033),(109200,7,22484,3,1672319033),(109201,7,22485,3,1672319033),(109202,7,22486,3,1672319033),(109203,7,22487,3,1672319033),(109204,7,22488,3,1672319033),(109205,7,22489,3,1672319033),(109206,7,22490,3,1672319033),(109207,7,22491,3,1672319033),(109208,7,22492,3,1672319033),(109209,7,22493,3,1672319033),(109210,7,22494,3,1672319033),(109211,7,22495,3,1672319033),(109212,7,22496,3,1672319033),(109213,7,22497,3,1672319033),(109214,7,22498,3,1672319033),(109215,7,22499,3,1672319033),(109216,7,22500,3,1672319033),(109217,7,22501,3,1672319033),(109218,7,22502,3,1672319033),(109219,7,22503,3,1672319033),(109220,7,22504,3,1672319033),(109221,7,22505,3,1672319033),(109222,7,22506,3,1672319033),(109223,7,22507,3,1672319033),(109224,7,22508,3,1672319033),(109225,7,22509,3,1672319033),(109226,7,22510,3,1672319033),(109227,7,22511,3,1672319033),(109228,7,22512,3,1672319033),(109229,7,22513,3,1672319033),(109230,7,22517,3,1672319033),(109231,7,22518,3,1672319033),(109232,7,22519,3,1672319033),(109233,7,22520,3,1672319033),(109234,7,22521,3,1672319033),(109235,7,22522,3,1672319033),(109236,7,22523,3,1672319033),(109237,7,22524,3,1672319033),(109238,7,22525,3,1672319033),(109239,7,22526,3,1672319033),(109240,7,22527,3,1672319033),(109241,7,22528,3,1672319033),(109242,7,22529,3,1672319033),(109243,7,22530,3,1672319033),(109244,7,22531,3,1672319033),(109245,7,22532,3,1672319033),(109246,7,22533,3,1672319033),(109247,7,22534,3,1672319033),(109248,7,22535,3,1672319033),(109249,7,22536,3,1672319033),(109250,7,22537,3,1672319033),(109251,7,22538,3,1672319033),(109252,7,22539,3,1672319033),(109253,7,22540,3,1672319033),(109254,7,22541,3,1672319033),(109255,7,22542,3,1672319033),(109256,7,22543,3,1672319033),(109257,7,22544,3,1672319033),(109258,7,22545,3,1672319033),(109259,7,22546,3,1672319033),(109260,7,22547,3,1672319033),(109261,7,22548,3,1672319033),(109262,7,22549,3,1672319033),(109263,7,22550,3,1672319033),(109264,7,22551,3,1672319033),(109265,7,22555,3,1672319033),(109266,7,22556,3,1672319033),(109267,7,22557,3,1672319033),(109268,7,22558,3,1672319033),(109269,7,22559,3,1672319033),(109270,7,22560,3,1672319033),(109271,7,22561,3,1672319033),(109272,7,22562,3,1672319033),(109273,7,22563,3,1672319033),(109274,7,22564,3,1672319033),(109275,7,22565,3,1672319033),(109276,7,22566,3,1672319033),(109277,7,22567,3,1672319033),(109278,7,22568,3,1672319033),(109279,7,22569,3,1672319033),(109280,7,22570,3,1672319033),(109281,7,22571,3,1672319033),(109282,7,22572,3,1672319033),(109283,7,22573,3,1672319033),(109284,7,22574,3,1672319033),(109285,7,22575,3,1672319033),(109286,7,22576,3,1672319033),(109287,7,22577,3,1672319033),(109288,7,22578,3,1672319033),(109289,7,22579,3,1672319033),(109290,7,22580,3,1672319033),(109291,7,22581,3,1672319033),(109292,7,22582,3,1672319033),(109293,7,22583,3,1672319033),(109294,7,22584,3,1672319033),(109295,7,22585,3,1672319033),(109296,7,22586,3,1672319033),(109297,7,22587,3,1672319033),(109298,7,22588,3,1672319033),(109299,7,22589,3,1672319033),(109300,7,22593,3,1672319033),(109301,7,22594,3,1672319033),(109302,7,22595,3,1672319033),(109303,7,22596,3,1672319033),(109304,7,22597,3,1672319033),(109305,7,22598,3,1672319033),(109306,7,22599,3,1672319033),(109307,7,22600,3,1672319033),(109308,7,22601,3,1672319033),(109309,7,22602,3,1672319033),(109310,7,22603,3,1672319033),(109311,7,22604,3,1672319033),(109312,7,22605,3,1672319033),(109313,7,22606,3,1672319033),(109314,7,22645,3,1672319033),(109315,7,22646,3,1672319033),(109316,7,22647,3,1672319033),(109317,7,22648,3,1672319033),(109318,7,22649,3,1672319033),(109319,7,22650,3,1672319033),(109320,7,22651,3,1672319033),(109321,7,22652,3,1672319033),(109322,7,22653,3,1672319033),(109323,7,22654,3,1672319033),(109324,7,22655,3,1672319033),(109325,7,22656,3,1672319033),(109326,7,22657,3,1672319033),(109327,7,22658,3,1672319033),(109328,7,22659,3,1672319033),(109329,7,22660,3,1672319033),(109330,7,22661,3,1672319033),(109331,7,22662,3,1672319033),(109332,7,22663,3,1672319033),(109333,7,22664,3,1672319033),(109334,7,22665,3,1672319033),(109335,7,22669,3,1672319033),(109336,7,22670,3,1672319033),(109337,7,22671,3,1672319033),(109338,7,22672,3,1672319033),(109339,7,22673,3,1672319033),(109340,7,22674,3,1672319033),(109341,7,22675,3,1672319033),(109342,7,22676,3,1672319033),(109343,7,22677,3,1672319033),(109344,7,22678,3,1672319033),(109345,7,22679,3,1672319033),(109346,7,22680,3,1672319033),(109347,7,22681,3,1672319033),(109348,7,22682,3,1672319033),(109349,7,22683,3,1672319033),(109350,7,22686,3,1672319033),(109351,7,22687,3,1672319033),(109352,7,22688,3,1672319033),(109353,7,22689,3,1672319033),(109354,7,22690,3,1672319033),(109355,7,22691,3,1672319033),(109356,7,22692,3,1672319033),(109357,7,22693,3,1672319033),(109358,7,22694,3,1672319033),(109359,7,22695,3,1672319033),(109360,7,22696,3,1672319033),(109361,7,22697,3,1672319033),(109362,7,22698,3,1672319033),(109363,7,22699,3,1672319033),(109364,7,22700,3,1672319033),(109365,7,22701,3,1672319033),(109366,7,22702,3,1672319033),(109367,7,22703,3,1672319033),(109368,7,22704,3,1672319033),(109369,7,22705,3,1672319033),(109370,7,22706,3,1672319033),(109371,7,22707,3,1672319033),(109372,7,22708,3,1672319033),(109373,7,22709,3,1672319033),(109374,7,22713,3,1672319033),(109375,7,22714,3,1672319033),(109376,7,22715,3,1672319033),(109377,7,22716,3,1672319033),(109378,7,22717,3,1672319033),(109379,7,22718,3,1672319033),(109380,7,22719,3,1672319033),(109381,7,22720,3,1672319033),(109382,7,22721,3,1672319033),(109383,7,22722,3,1672319033),(109384,7,22723,3,1672319033),(109385,7,22724,3,1672319033),(109386,7,22725,3,1672319033),(109387,7,22726,3,1672319033),(109388,7,22727,3,1672319033),(109389,7,22728,3,1672319033),(109390,7,22729,3,1672319033),(109391,7,22730,3,1672319033),(109392,7,22731,3,1672319033),(109393,7,22732,3,1672319033),(109394,7,22733,3,1672319033),(109395,7,22734,3,1672319033),(109396,7,22735,3,1672319033),(109397,7,22736,3,1672319033),(109398,7,22737,3,1672319033),(109399,7,22738,3,1672319033),(109400,7,22739,3,1672319033),(109401,7,22740,3,1672319033),(109402,7,22741,3,1672319033),(109403,7,22742,3,1672319033),(109404,7,22743,3,1672319033),(109405,7,22744,3,1672319033),(109406,7,22745,3,1672319033),(109407,7,22746,3,1672319033),(109408,7,22747,3,1672319033),(109409,7,22751,3,1672319033),(109410,7,22752,3,1672319033),(109411,7,22753,3,1672319033),(109412,7,22754,3,1672319033),(109413,7,22755,3,1672319033),(109414,7,22756,3,1672319033),(109415,7,22757,3,1672319033),(109416,7,22758,3,1672319033),(109417,7,22759,3,1672319033),(109418,7,22760,3,1672319033),(109419,7,22761,3,1672319033),(109420,7,22762,3,1672319033),(109421,7,22763,3,1672319033),(109422,7,22764,3,1672319033),(109423,7,22765,3,1672319033),(109424,7,22766,3,1672319033),(109425,7,22767,3,1672319033),(109426,7,22768,3,1672319033),(109427,7,22769,3,1672319033),(109428,7,22770,3,1672319033),(109429,7,22771,3,1672319033),(109430,7,22772,3,1672319033),(109431,7,22773,3,1672319033),(109432,7,22774,3,1672319033),(109433,7,22775,3,1672319033),(109434,7,22776,3,1672319033),(109435,7,22777,3,1672319033),(109436,7,22778,3,1672319033),(109437,7,22779,3,1672319033),(109438,7,22780,3,1672319033),(109439,7,22781,3,1672319033),(109440,7,22782,3,1672319033),(109441,7,22783,3,1672319033),(109442,7,22784,3,1672319033),(109443,7,22785,3,1672319033),(109444,7,22789,3,1672319033),(109445,7,22790,3,1672319033),(109446,7,22791,3,1672319033),(109447,7,22792,3,1672319033),(109448,7,22793,3,1672319033),(109449,7,22794,3,1672319033),(109450,7,22795,3,1672319033),(109451,7,22796,3,1672319033),(109452,7,22797,3,1672319033),(109453,7,22798,3,1672319033),(109454,7,22799,3,1672319033),(109455,7,22800,3,1672319033),(109456,7,22801,3,1672319033),(109457,7,22802,3,1672319033),(109458,7,22977,3,1672319033),(109459,7,23029,3,1672319033),(109460,7,23030,3,1672319033),(109461,7,23031,3,1672319033),(109462,7,23106,3,1672319033),(109463,7,23116,3,1672319033),(109464,7,23117,3,1672319033),(109465,7,23121,3,1672319033),(109466,7,23122,3,1672319033),(109467,7,23126,3,1672319033),(109468,7,23127,3,1672319033),(109469,7,23128,3,1672319033),(109470,7,23129,3,1672319033),(109471,7,23130,3,1672319033),(109472,7,23131,3,1672319033),(109473,7,23132,3,1672319033),(109474,7,23133,3,1672319033),(109475,7,23134,3,1672319033),(109476,7,23135,3,1672319033),(109477,7,23136,3,1672319033),(109478,7,23137,3,1672319033),(109479,7,23138,3,1672319033),(109480,7,23143,3,1672319033),(109481,7,23144,3,1672319033),(109482,7,23145,3,1672319033),(109483,7,23146,3,1672319033),(109484,7,23147,3,1672319033),(109485,7,23148,3,1672319033),(109486,7,23149,3,1672319033),(109487,7,23150,3,1672319033),(109488,7,23151,3,1672319033),(109489,7,23152,3,1672319033),(109490,7,23153,3,1672319033),(109491,7,23154,3,1672319033),(109492,7,23159,3,1672319033),(109493,7,23160,3,1672319033),(109494,7,23161,3,1672319033),(109495,7,23162,3,1672319033),(109496,7,23163,3,1672319033),(109497,7,23164,3,1672319033),(109498,7,23165,3,1672319033),(109499,7,23166,3,1672319033),(109500,7,23167,3,1672319033),(109501,7,23168,3,1672319033),(109502,7,23169,3,1672319033),(109503,7,23170,3,1672319033),(109504,7,23171,3,1672319033),(109505,7,23172,3,1672319033),(109506,7,23173,3,1672319033),(109507,7,23174,3,1672319033),(109508,7,23175,3,1672319033),(109509,7,23176,3,1672319033),(109510,7,23177,3,1672319033),(109511,7,23178,3,1672319033),(109512,7,23179,3,1672319033),(109513,7,23180,3,1672319033),(109514,7,23181,3,1672319033),(109515,7,23182,3,1672319033),(109516,7,23183,3,1672319033),(109517,7,23184,3,1672319033),(109518,7,23185,3,1672319033),(109519,7,23186,3,1672319033),(109520,7,23187,3,1672319033),(109521,7,23188,3,1672319033),(109522,7,23189,3,1672319033),(109523,7,23190,3,1672319033),(109524,7,23191,3,1672319033),(109525,7,23192,3,1672319033),(109526,7,23193,3,1672319033),(109527,7,23194,3,1672319033),(109528,7,23195,3,1672319033),(109529,7,23196,3,1672319033),(109530,7,23197,3,1672319033),(109531,7,23198,3,1672319033),(109532,7,23199,3,1672319033),(109533,7,23200,3,1672319033),(109534,7,23201,3,1672319033),(109535,7,23202,3,1672319033),(109536,7,23203,3,1672319033),(109537,7,23204,3,1672319033),(109538,7,23205,3,1672319033),(109539,7,23206,3,1672319033),(109540,7,23207,3,1672319033),(109541,7,23208,3,1672319033),(109542,7,23209,3,1672319033),(109543,7,23210,3,1672319033),(109544,7,23211,3,1672319033),(109545,7,23212,3,1672319033),(109546,7,23213,3,1672319033),(109547,7,23214,3,1672319033),(109548,7,23215,3,1672319033),(109549,7,23216,3,1672319033),(109550,7,23217,3,1672319033),(109551,7,23218,3,1672319033),(109552,7,23219,3,1672319033),(109553,7,23220,3,1672319033),(109554,7,23221,3,1672319033),(109555,7,23222,3,1672319033),(109556,7,23223,3,1672319033),(109557,7,23224,3,1672319033),(109558,7,23225,3,1672319033),(109559,7,23226,3,1672319033),(109560,7,23227,3,1672319033),(109561,7,23228,3,1672319033),(109562,7,23229,3,1672319033),(109563,7,23230,3,1672319033),(109564,7,23231,3,1672319033),(109565,7,23232,3,1672319033),(109566,7,23233,3,1672319033),(109567,7,23234,3,1672319033),(109568,7,23235,3,1672319033),(109569,7,23236,3,1672319033),(109570,7,23237,3,1672319033),(109571,7,23238,3,1672319033),(109572,7,23239,3,1672319033),(109573,7,23240,3,1672319033),(109574,7,23241,3,1672319033),(109575,7,23242,3,1672319033),(109576,7,23243,3,1672319033),(109577,7,23244,3,1672319033),(109578,7,23245,3,1672319033),(109579,7,23246,3,1672319033),(109580,7,23247,3,1672319033),(109581,7,23248,3,1672319033),(109582,7,23249,3,1672319033),(109583,7,23250,3,1672319033),(109584,7,23251,3,1672319033),(109585,7,23252,3,1672319033),(109586,7,23253,3,1672319033),(109587,7,23254,3,1672319033),(109588,7,23255,3,1672319033),(109589,7,23256,3,1672319033),(109590,7,23257,3,1672319033),(109591,7,23258,3,1672319033),(109592,7,23259,3,1672319033),(109593,7,23260,3,1672319033),(109594,7,23261,3,1672319033),(109595,7,23262,3,1672319033),(109596,7,23263,3,1672319033),(109597,7,23264,3,1672319033),(109598,7,23265,3,1672319033),(109599,7,23266,3,1672319033),(109600,7,23267,3,1672319033),(109601,7,23268,3,1672319033),(109602,7,23269,3,1672319033),(109603,7,23270,3,1672319033),(109604,7,23271,3,1672319033),(109605,7,23272,3,1672319033),(109606,7,23273,3,1672319033),(109607,7,23274,3,1672319033),(109608,7,23275,3,1672319033),(109609,7,23276,3,1672319033),(109610,7,23277,3,1672319033),(109611,7,23278,3,1672319033),(109612,7,23279,3,1672319033),(109613,7,23280,3,1672319033),(109614,7,23281,3,1672319033),(109615,7,23282,3,1672319033),(109616,7,23283,3,1672319033),(109617,7,23284,3,1672319033),(109618,7,23285,3,1672319033),(109619,7,23286,3,1672319033),(109620,7,23287,3,1672319033),(109621,7,23288,3,1672319033),(109622,7,23289,3,1672319033),(109623,7,23290,3,1672319033),(109624,7,23291,3,1672319033),(109625,7,23292,3,1672319033),(109626,7,23293,3,1672319033),(109627,7,23294,3,1672319033),(109628,7,23295,3,1672319033),(109629,7,23296,3,1672319033),(109630,7,23297,3,1672319033),(109631,7,23298,3,1672319033),(109632,7,23299,3,1672319033),(109633,7,23300,3,1672319033),(109634,7,23303,3,1672319033),(109635,7,23304,3,1672319033),(109636,7,23305,3,1672319033),(109637,7,23306,3,1672319033),(109638,7,23307,3,1672319033),(109639,7,23313,3,1672319033),(109640,7,23314,3,1672319033),(109641,7,23315,3,1672319033),(109642,7,23316,3,1672319033),(109643,7,23317,3,1672319033),(109644,7,23318,3,1672319033),(109645,7,23319,3,1672319033),(109646,7,23320,3,1672319033),(109647,7,23321,3,1672319033),(109648,7,23322,3,1672319033),(109649,7,23323,3,1672319033),(109650,7,23324,3,1672319033),(109651,7,23325,3,1672319033),(109652,7,23326,3,1672319033),(109653,7,23327,3,1672319033),(109654,7,23328,3,1672319033),(109655,7,23329,3,1672319033),(109656,7,23330,3,1672319033),(109657,7,23331,3,1672319033),(109658,7,23332,3,1672319033),(109659,7,23333,3,1672319033),(109660,7,23334,3,1672319033),(109661,7,23335,3,1672319033),(109662,7,23336,3,1672319033),(109663,7,23337,3,1672319033),(109664,7,23338,3,1672319033),(109665,7,23339,3,1672319033),(109666,7,23340,3,1672319033),(109667,7,23341,3,1672319033),(109668,7,23342,3,1672319033),(109669,7,23343,3,1672319033),(109670,7,23344,3,1672319033),(109671,7,23345,3,1672319033),(109672,7,23346,3,1672319033),(109673,7,23347,3,1672319033),(109674,7,23348,3,1672319033),(109675,7,23349,3,1672319033),(109676,7,23350,3,1672319033),(109677,7,23351,3,1672319033),(109678,7,23352,3,1672319033),(109679,7,23353,3,1672319033),(109680,7,23354,3,1672319033),(109681,7,23355,3,1672319033),(109682,7,23356,3,1672319033),(109683,7,23357,3,1672319033),(109684,7,23358,3,1672319033),(109685,7,23359,3,1672319033),(109686,7,23360,3,1672319033),(109687,7,23361,3,1672319033),(109688,7,23362,3,1672319033),(109689,7,23363,3,1672319033),(109690,7,23364,3,1672319033),(109691,7,23365,3,1672319033),(109692,7,23366,3,1672319033),(109693,7,23367,3,1672319033),(109694,7,23368,3,1672319033),(109695,7,23369,3,1672319033),(109696,7,23370,3,1672319033),(109697,7,23371,3,1672319033),(109698,7,23372,3,1672319033),(109699,7,23373,3,1672319033),(109700,7,23374,3,1672319033),(109701,7,23375,3,1672319033),(109702,7,23376,3,1672319033),(109703,7,23377,3,1672319033),(109704,7,23378,3,1672319033),(109705,7,23379,3,1672319033),(109706,7,23380,3,1672319033),(109707,7,23381,3,1672319033),(109708,7,23382,3,1672319033),(109709,7,23383,3,1672319033),(109710,7,23384,3,1672319033),(109711,7,23385,3,1672319033),(109712,7,23386,3,1672319033),(109713,7,23387,3,1672319033),(109714,7,23388,3,1672319033),(109715,7,23389,3,1672319033),(109716,7,23390,3,1672319033),(109717,7,23391,3,1672319033),(109718,7,23392,3,1672319033),(109719,7,23393,3,1672319033),(109720,7,23394,3,1672319033),(109721,7,23395,3,1672319033),(109722,7,23396,3,1672319033),(109723,7,23397,3,1672319033),(109724,7,23398,3,1672319033),(109725,7,23399,3,1672319033),(109726,7,23400,3,1672319033),(109727,7,23401,3,1672319033),(109728,7,23402,3,1672319033),(109729,7,23403,3,1672319033),(109730,7,23404,3,1672319033),(109731,7,23405,3,1672319033),(109732,7,23406,3,1672319033),(109733,7,23407,3,1672319033),(109734,7,23408,3,1672319033),(109735,7,23409,3,1672319033),(109736,7,23410,3,1672319033),(109737,7,23411,3,1672319033),(109738,7,23412,3,1672319033),(109739,7,23413,3,1672319033),(109740,7,23414,3,1672319033),(109741,7,23415,3,1672319033),(109742,7,23416,3,1672319033),(109743,7,23417,3,1672319033),(109744,7,23418,3,1672319033),(109745,7,23419,3,1672319033),(109746,7,23420,3,1672319033),(109747,7,23421,3,1672319033),(109748,7,23422,3,1672319033),(109749,7,23423,3,1672319033),(109750,7,23424,3,1672319033),(109751,7,23425,3,1672319033),(109752,7,23426,3,1672319033),(109753,7,23427,3,1672319033),(109754,7,23428,3,1672319033),(109755,7,23429,3,1672319033),(109756,7,23430,3,1672319033),(109757,7,23431,3,1672319033),(109758,7,23432,3,1672319033),(109759,7,23433,3,1672319033),(109760,7,23434,3,1672319033),(109761,7,23435,3,1672319033),(109762,7,23436,3,1672319033),(109763,7,23437,3,1672319033),(109764,7,23438,3,1672319033),(109765,7,23439,3,1672319033),(109766,7,23440,3,1672319033),(109767,7,23441,3,1672319033),(109768,7,23442,3,1672319033),(109769,7,23443,3,1672319033),(109770,7,23444,3,1672319033),(109771,7,23445,3,1672319033),(109772,7,23446,3,1672319033),(109773,7,23447,3,1672319033),(109774,7,23448,3,1672319033),(109775,7,23449,3,1672319033),(109776,7,23450,3,1672319033),(109777,7,23451,3,1672319033),(109778,7,23452,3,1672319033),(109779,7,23453,3,1672319033),(109780,7,23454,3,1672319033),(109781,7,23455,3,1672319033),(109782,7,23456,3,1672319033),(109783,7,23457,3,1672319033),(109784,7,23458,3,1672319033),(109785,7,23459,3,1672319033),(109786,7,23460,3,1672319033),(109787,7,23461,3,1672319033),(109788,7,23462,3,1672319033),(109789,7,23463,3,1672319033),(109790,7,23464,3,1672319033),(109791,7,23465,3,1672319033),(109792,7,23466,3,1672319033),(109793,7,23467,3,1672319033),(109794,7,23468,3,1672319033),(109795,7,23469,3,1672319033),(109796,7,23470,3,1672319033),(109797,7,23471,3,1672319033),(109798,7,23472,3,1672319033),(109799,7,23473,3,1672319033),(109800,7,23474,3,1672319033),(109801,7,23475,3,1672319033),(109802,7,23476,3,1672319033),(109803,7,23477,3,1672319033),(109804,7,23478,3,1672319033),(109805,7,23479,3,1672319033),(109806,7,23480,3,1672319033),(109807,7,23481,3,1672319033),(109808,7,23482,3,1672319033),(109809,7,23483,3,1672319033),(109810,7,23484,3,1672319033),(109811,7,23485,3,1672319033),(109812,7,23486,3,1672319033),(109813,7,23487,3,1672319033),(109814,7,23488,3,1672319033),(109815,7,23489,3,1672319033),(109816,7,23490,3,1672319033),(109817,7,23491,3,1672319033),(109818,7,23492,3,1672319033),(109819,7,23493,3,1672319033),(109820,7,23494,3,1672319033),(109821,7,23495,3,1672319033),(109822,7,23496,3,1672319033),(109823,7,23497,3,1672319033),(109824,7,23498,3,1672319033),(109825,7,23499,3,1672319033),(109826,7,23500,3,1672319033),(109827,7,23501,3,1672319033),(109828,7,23502,3,1672319033),(109829,7,23503,3,1672319033),(109830,7,23504,3,1672319033),(109831,7,23505,3,1672319033),(109832,7,23506,3,1672319033),(109833,7,23507,3,1672319033),(109834,7,23508,3,1672319033),(109835,7,23509,3,1672319033),(109836,7,23510,3,1672319033),(109837,7,23511,3,1672319033),(109838,7,23512,3,1672319033),(109839,7,23513,3,1672319033),(109840,7,23514,3,1672319033),(109841,7,23515,3,1672319033),(109842,7,23516,3,1672319033),(109843,7,23517,3,1672319033),(109844,7,23518,3,1672319033),(109845,7,23519,3,1672319033),(109846,7,23520,3,1672319033),(109847,7,23521,3,1672319033),(109848,7,23522,3,1672319033),(109849,7,23523,3,1672319033),(109850,7,23620,3,1672319033),(109851,7,23621,3,1672319033),(109852,7,23622,3,1672319033),(109853,7,23632,3,1672319033),(109854,7,23633,3,1672319033),(109855,7,23634,3,1672319033),(109856,7,23695,3,1672319033),(109857,7,23696,3,1672319033),(109858,7,23697,3,1672319033),(109859,7,23707,3,1672319033),(109860,7,23708,3,1672319033),(109861,7,23709,3,1672319033),(109862,7,23710,3,1672319033),(109863,7,23711,3,1672319033),(109864,7,23712,3,1672319033),(109865,7,23713,3,1672319033),(109866,7,23714,3,1672319033),(109867,7,23715,3,1672319033),(109868,7,23716,3,1672319033),(109869,7,23717,3,1672319033),(109870,7,23718,3,1672319033),(109871,7,23719,3,1672319033),(109872,7,23720,3,1672319033),(109873,7,23721,3,1672319033),(109874,7,23722,3,1672319033),(109875,7,23723,3,1672319033),(109876,7,23724,3,1672319033),(109877,7,23725,3,1672319033),(109878,7,23726,3,1672319033),(109879,7,23727,3,1672319033),(109880,7,23728,3,1672319033),(109881,7,23729,3,1672319033),(109882,7,23730,3,1672319033),(109883,7,23731,3,1672319033),(109884,7,23732,3,1672319033),(109885,7,23733,3,1672319033),(109886,7,23734,3,1672319033),(109887,7,23735,3,1672319033),(109888,7,23736,3,1672319033),(109889,7,23737,3,1672319033),(109890,7,23738,3,1672319033),(109891,7,23739,3,1672319033),(109892,7,23740,3,1672319033),(109893,7,23741,3,1672319033),(109894,7,23742,3,1672319033),(109895,7,23743,3,1672319033),(109896,7,23744,3,1672319033),(109897,7,23745,3,1672319033),(109898,7,23746,3,1672319033),(109899,7,23747,3,1672319033),(109900,7,23748,3,1672319033),(109901,7,23749,3,1672319033),(109902,7,23750,3,1672319033),(109903,7,23751,3,1672319033),(109904,7,23752,3,1672319033),(109905,7,23753,3,1672319033),(109906,7,23754,3,1672319033),(109907,7,23755,3,1672319033),(109908,7,23756,3,1672319033),(109909,7,23757,3,1672319033),(109910,7,23758,3,1672319033),(109911,7,23759,3,1672319033),(109912,7,23760,3,1672319033),(109913,7,23761,3,1672319033),(109914,7,23762,3,1672319033),(109915,7,23763,3,1672319033),(109916,7,23764,3,1672319033),(109917,7,23765,3,1672319033),(109918,7,23766,3,1672319033),(109919,7,23767,3,1672319033),(109920,7,23768,3,1672319033),(109921,7,23769,3,1672319033),(109922,7,23770,3,1672319033),(109923,7,23771,3,1672319033),(109924,7,23772,3,1672319033),(109925,7,23773,3,1672319033),(109926,7,23774,3,1672319033),(109927,7,23775,3,1672319033),(109928,7,23776,3,1672319033),(109929,7,23777,3,1672319033),(109930,7,23778,3,1672319033),(109931,7,23779,3,1672319033),(109932,7,23780,3,1672319033),(109933,7,23781,3,1672319033),(109934,7,23782,3,1672319033),(109935,7,23783,3,1672319033),(109936,7,23784,3,1672319033),(109937,7,23785,3,1672319033),(109938,7,23786,3,1672319033),(109939,7,23787,3,1672319033),(109940,7,23788,3,1672319033),(109941,7,23789,3,1672319033),(109942,7,23790,3,1672319033),(109943,7,23791,3,1672319033),(109944,7,23792,3,1672319033),(109945,7,23793,3,1672319033),(109946,7,23794,3,1672319033),(109947,7,23795,3,1672319033),(109948,7,23796,3,1672319033),(109949,7,23797,3,1672319033),(109950,7,23798,3,1672319033),(109951,7,23799,3,1672319033),(109952,7,23800,3,1672319033),(109953,7,23801,3,1672319033),(109954,7,23802,3,1672319033),(109955,7,23803,3,1672319033),(109956,7,23804,3,1672319033),(109957,7,23805,3,1672319033),(109958,7,23806,3,1672319033),(109959,7,23807,3,1672319033),(109960,7,23808,3,1672319033),(109961,7,23809,3,1672319033),(109962,7,23828,3,1672319033),(109963,7,23829,3,1672319033),(109964,7,23830,3,1672319033),(109965,7,23840,3,1672319033),(109966,7,23841,3,1672319033),(109967,7,23842,3,1672319033),(109968,7,23843,3,1672319033),(109969,7,23844,3,1672319033),(109970,7,23845,3,1672319033),(109971,7,23846,3,1672319033),(109972,7,23847,3,1672319033),(109973,7,23848,3,1672319033),(109974,7,23849,3,1672319033),(109975,7,23850,3,1672319033),(109976,7,23851,3,1672319033),(109977,7,23852,3,1672319033),(109978,7,23853,3,1672319033),(109979,7,23854,3,1672319033),(109980,7,23855,3,1672319033),(109981,7,23856,3,1672319033),(109982,7,23857,3,1672319033),(109983,7,23858,3,1672319033),(109984,7,23859,3,1672319033),(109985,7,23860,3,1672319033),(109986,7,23861,3,1672319033),(109987,7,23862,3,1672319033),(109988,7,23863,3,1672319033),(109989,7,23864,3,1672319033),(109990,7,23865,3,1672319033),(109991,7,23866,3,1672319033),(109992,7,23870,3,1672319033),(109993,7,23871,3,1672319033),(109994,7,23873,3,1672319033),(109995,7,23874,3,1672319033),(109996,7,23875,3,1672319033),(109997,7,23882,3,1672319033),(109998,7,23883,3,1672319033),(109999,7,23884,3,1672319033),(110000,7,23885,3,1672319033),(110001,7,23886,3,1672319033),(110002,7,23887,3,1672319033),(110003,7,23888,3,1672319033),(110004,7,23889,3,1672319033),(110005,7,23890,3,1672319033),(110006,7,23891,3,1672319033),(110007,7,23892,3,1672319033),(110008,7,23893,3,1672319033),(110009,7,23894,3,1672319033),(110010,7,23895,3,1672319033),(110011,7,23896,3,1672319033),(110012,7,23897,3,1672319033),(110013,7,23898,3,1672319033),(110014,7,23899,3,1672319033),(110015,7,23900,3,1672319033),(110016,7,23901,3,1672319033),(110017,7,23902,3,1672319033),(110018,7,23903,3,1672319033),(110019,7,23904,3,1672319033),(110020,7,23905,3,1672319033),(110021,7,23906,3,1672319033),(110022,7,23907,3,1672319033),(110023,7,23908,3,1672319033),(110024,7,23909,3,1672319033),(110025,7,23910,3,1672319033),(110026,7,23911,3,1672319033),(110027,7,23912,3,1672319033),(110028,7,23913,3,1672319033),(110029,7,23914,3,1672319033),(110030,7,23915,3,1672319033),(110031,7,23916,3,1672319033),(110032,7,23917,3,1672319033),(110033,7,23918,3,1672319033),(110034,7,23919,3,1672319033),(110035,7,23920,3,1672319033),(110036,7,23921,3,1672319033),(110037,7,23922,3,1672319033),(110038,7,23923,3,1672319033),(110039,7,23924,3,1672319033),(110040,7,23925,3,1672319033),(110041,7,23926,3,1672319033),(110042,7,23927,3,1672319033),(110043,7,23928,3,1672319033),(110044,7,23929,3,1672319033),(110045,7,23930,3,1672319033),(110046,7,23931,3,1672319033),(110047,7,23932,3,1672319033),(110048,7,23933,3,1672319033),(110049,7,23934,3,1672319033),(110050,7,23935,3,1672319033),(110051,7,23936,3,1672319033),(110052,7,23937,3,1672319033),(110053,7,23938,3,1672319033),(110054,7,23939,3,1672319033),(110055,7,23940,3,1672319033),(110056,7,23941,3,1672319033),(110057,7,23942,3,1672319033),(110058,7,23943,3,1672319033),(110059,7,23944,3,1672319033),(110060,7,23945,3,1672319033),(110061,7,23946,3,1672319033),(110062,7,23947,3,1672319033),(110063,7,23948,3,1672319033),(110064,7,23949,3,1672319033),(110065,7,23950,3,1672319033),(110066,7,23951,3,1672319033),(110067,7,23952,3,1672319033),(110068,7,23953,3,1672319033),(110069,7,23954,3,1672319033),(110070,7,23955,3,1672319033),(110071,7,23956,3,1672319033),(110072,7,23957,3,1672319033),(110073,7,23958,3,1672319033),(110074,7,23959,3,1672319033),(110075,7,23960,3,1672319033),(110076,7,23961,3,1672319033),(110077,7,23962,3,1672319033),(110078,7,23963,3,1672319033),(110079,7,23964,3,1672319033),(110080,7,23965,3,1672319033),(110081,7,23966,3,1672319033),(110082,7,23967,3,1672319033),(110083,7,23968,3,1672319033),(110084,7,23969,3,1672319033),(110085,7,23971,3,1672319033),(110086,7,23972,3,1672319033),(110087,7,23973,3,1672319033),(110088,7,23974,3,1672319033),(110089,7,23975,3,1672319033),(110090,7,23976,3,1672319033),(110091,7,23977,3,1672319033),(110092,7,23978,3,1672319033),(110093,7,23979,3,1672319033),(110094,7,23980,3,1672319033),(110095,7,23981,3,1672319033),(110096,7,23982,3,1672319033),(110097,7,23983,3,1672319033),(110098,7,23984,3,1672319033),(110099,7,23985,3,1672319033),(110100,7,23986,3,1672319033),(110101,7,23987,3,1672319033),(110102,7,23988,3,1672319033),(110103,7,23989,3,1672319033),(110104,7,23990,3,1672319033),(110105,7,23991,3,1672319033),(110106,7,23993,3,1672319033),(110107,7,23994,3,1672319033),(110108,7,23995,3,1672319033),(110109,7,23996,3,1672319033),(110110,7,23997,3,1672319033),(110111,7,23998,3,1672319033),(110112,7,23999,3,1672319033),(110113,7,24000,3,1672319033),(110114,7,24001,3,1672319033),(110115,7,24002,3,1672319033),(110116,7,24003,3,1672319033),(110117,7,24004,3,1672319033),(110118,7,24005,3,1672319033),(110119,7,24006,3,1672319033),(110120,7,24007,3,1672319033),(110121,7,24008,3,1672319033),(110122,7,24009,3,1672319033),(110123,7,24010,3,1672319033),(110124,7,24011,3,1672319033),(110125,7,24012,3,1672319033),(110126,7,24014,3,1672319033),(110127,7,24015,3,1672319033),(110128,7,24016,3,1672319033),(110129,7,24017,3,1672319033),(110130,7,24018,3,1672319033),(110131,7,24019,3,1672319033),(110132,7,24020,3,1672319033),(110133,7,24021,3,1672319033),(110134,7,24023,3,1672319033),(110135,7,24024,3,1672319033),(110136,7,24025,3,1672319033),(110137,7,24026,3,1672319033),(110138,7,24027,3,1672319033),(110139,7,24028,3,1672319033),(110140,7,24029,3,1672319033),(110141,7,24030,3,1672319033),(110142,7,24031,3,1672319033),(110143,7,24032,3,1672319033),(110144,7,24033,3,1672319033),(110145,7,24034,3,1672319033),(110146,7,24035,3,1672319033),(110147,7,24036,3,1672319033),(110148,7,24037,3,1672319033),(110149,7,24038,3,1672319033),(110150,7,24039,3,1672319033),(110151,7,24040,3,1672319033),(110152,7,24041,3,1672319033),(110153,7,24042,3,1672319033),(110154,7,24043,3,1672319033),(110155,7,24044,3,1672319033),(110156,7,24045,3,1672319033),(110157,7,24046,3,1672319033),(110158,7,24047,3,1672319033),(110159,7,24048,3,1672319033),(110160,7,24049,3,1672319033),(110161,7,24050,3,1672319033),(110162,7,24051,3,1672319033),(110163,7,24052,3,1672319033),(110164,7,24053,3,1672319033),(110165,7,24054,3,1672319033),(110166,7,24055,3,1672319033),(110167,7,24056,3,1672319033),(110168,7,24057,3,1672319033),(110169,7,24059,3,1672319033),(110170,7,24060,3,1672319033),(110171,7,24061,3,1672319033),(110172,7,24062,3,1672319033),(110173,7,24063,3,1672319033),(110174,7,24064,3,1672319033),(110175,7,24065,3,1672319033),(110176,7,24066,3,1672319033),(110177,7,24067,3,1672319033),(110178,7,24068,3,1672319033),(110179,7,24069,3,1672319033),(110180,7,24070,3,1672319033),(110181,7,24071,3,1672319033),(110182,7,24072,3,1672319033),(110183,7,24073,3,1672319033),(110184,7,24074,3,1672319033),(110185,7,24075,3,1672319033),(110186,7,24076,3,1672319033),(110187,7,24077,3,1672319033),(110188,7,24078,3,1672319033),(110189,7,24079,3,1672319033),(110190,7,24080,3,1672319033),(110191,7,24081,3,1672319033),(110192,7,24082,3,1672319033),(110193,7,24083,3,1672319033),(110194,7,24084,3,1672319033),(110195,7,24085,3,1672319033),(110196,7,24086,3,1672319033),(110197,7,24087,3,1672319033),(110198,7,24088,3,1672319033),(110199,7,24089,3,1672319033),(110200,7,24090,3,1672319033),(110201,7,24091,3,1672319033),(110202,7,24092,3,1672319033),(110203,7,24093,3,1672319033),(110204,7,24094,3,1672319033),(110205,7,24095,3,1672319033),(110206,7,24096,3,1672319033),(110207,7,24097,3,1672319033),(110208,7,24098,3,1672319033),(110209,7,24099,3,1672319033),(110210,7,24100,3,1672319033),(110211,7,24102,3,1672319033),(110212,7,24103,3,1672319033),(110213,7,24104,3,1672319033),(110214,7,24105,3,1672319033),(110215,7,24106,3,1672319033),(110216,7,24107,3,1672319033),(110217,7,24108,3,1672319033),(110218,7,24109,3,1672319033),(110219,7,24110,3,1672319033),(110220,7,24111,3,1672319033),(110221,7,24112,3,1672319033),(110222,7,24113,3,1672319033),(110223,7,24114,3,1672319033),(110224,7,24115,3,1672319033),(110225,7,24116,3,1672319033),(110226,7,24117,3,1672319033),(110227,7,24118,3,1672319033),(110228,7,24119,3,1672319033),(110229,7,24120,3,1672319033),(110230,7,24121,3,1672319033),(110231,7,24122,3,1672319033),(110232,7,24123,3,1672319033),(110233,7,24125,3,1672319033),(110234,7,24126,3,1672319033),(110235,7,24127,3,1672319033),(110236,7,24128,3,1672319033),(110237,7,24129,3,1672319033),(110238,7,24130,3,1672319033),(110239,7,24131,3,1672319033),(110240,7,24132,3,1672319033),(110241,7,24133,3,1672319033),(110242,7,24134,3,1672319033),(110243,7,24135,3,1672319033),(110244,7,24136,3,1672319033),(110245,7,24137,3,1672319033),(110246,7,24138,3,1672319033),(110247,7,24139,3,1672319033),(110248,7,24140,3,1672319033),(110249,7,24141,3,1672319033),(110250,7,24143,3,1672319033),(110251,7,24144,3,1672319033),(110252,7,24145,3,1672319033),(110253,7,24146,3,1672319033),(110254,7,24147,3,1672319033),(110255,7,24148,3,1672319033),(110256,7,24149,3,1672319033),(110257,7,24150,3,1672319033),(110258,7,24151,3,1672319033),(110259,7,24152,3,1672319033),(110260,7,24153,3,1672319033),(110261,7,24154,3,1672319033),(110262,7,24155,3,1672319033),(110263,7,24156,3,1672319033),(110264,7,24157,3,1672319033),(110265,7,24158,3,1672319033),(110266,7,24159,3,1672319033),(110267,7,24160,3,1672319033),(110268,7,24161,3,1672319033),(110269,7,24162,3,1672319033),(110270,7,24164,3,1672319033),(110271,7,24165,3,1672319033),(110272,7,24166,3,1672319033),(110273,7,24167,3,1672319033),(110274,7,24168,3,1672319033),(110275,7,24169,3,1672319033),(110276,7,24170,3,1672319033),(110277,7,24171,3,1672319033),(110278,7,24172,3,1672319033),(110279,7,24173,3,1672319033),(110280,7,24174,3,1672319033),(110281,7,24175,3,1672319033),(110282,7,24176,3,1672319033),(110283,7,24177,3,1672319033),(110284,7,24178,3,1672319033),(110285,7,24179,3,1672319033),(110286,7,24180,3,1672319033),(110287,7,24181,3,1672319033),(110288,7,24182,3,1672319033),(110289,7,24183,3,1672319033),(110290,7,24185,3,1672319033),(110291,7,24186,3,1672319033),(110292,7,24187,3,1672319033),(110293,7,24188,3,1672319033),(110294,7,24189,3,1672319033),(110295,7,24190,3,1672319033),(110296,7,24191,3,1672319033),(110297,7,24192,3,1672319033),(110298,7,24193,3,1672319033),(110299,7,24194,3,1672319033),(110300,7,24195,3,1672319033),(110301,7,24196,3,1672319033),(110302,7,24197,3,1672319033),(110303,7,24198,3,1672319033),(110304,7,24199,3,1672319033),(110305,7,24200,3,1672319033),(110306,7,24201,3,1672319033),(110307,7,24202,3,1672319033),(110308,7,24203,3,1672319033),(110309,7,24204,3,1672319033),(110310,7,24206,3,1672319033),(110311,7,24207,3,1672319033),(110312,7,24208,3,1672319033),(110313,7,24209,3,1672319033),(110314,7,24210,3,1672319033),(110315,7,24211,3,1672319033),(110316,7,24212,3,1672319033),(110317,7,24213,3,1672319033),(110318,7,24214,3,1672319033),(110319,7,24215,3,1672319033),(110320,7,24216,3,1672319033),(110321,7,24217,3,1672319033),(110322,7,24218,3,1672319033),(110323,7,24219,3,1672319033),(110324,7,24220,3,1672319033),(110325,7,24221,3,1672319033),(110326,7,24222,3,1672319033),(110327,7,24223,3,1672319033),(110328,7,24224,3,1672319033),(110329,7,24225,3,1672319033),(110330,7,24226,3,1672319033),(110331,7,24228,3,1672319033),(110332,7,24229,3,1672319033),(110333,7,24230,3,1672319033),(110334,7,24231,3,1672319033),(110335,7,24232,3,1672319033),(110336,7,24233,3,1672319033),(110337,7,24234,3,1672319033),(110338,7,24235,3,1672319033),(110339,7,24236,3,1672319033),(110340,7,24237,3,1672319033),(110341,7,24238,3,1672319033),(110342,7,24239,3,1672319033),(110343,7,24240,3,1672319033),(110344,7,24241,3,1672319033),(110345,7,24242,3,1672319033),(110346,7,24243,3,1672319033),(110347,7,24244,3,1672319033),(110348,7,24245,3,1672319033),(110349,7,24246,3,1672319033),(110350,7,24247,3,1672319033),(110351,7,24248,3,1672319033),(110352,7,24250,3,1672319033),(110353,7,24251,3,1672319033),(110354,7,24252,3,1672319033),(110355,7,24253,3,1672319033),(110356,7,24254,3,1672319033),(110357,7,24255,3,1672319033),(110358,7,24256,3,1672319033),(110359,7,24257,3,1672319033),(110360,7,24258,3,1672319033),(110361,7,24259,3,1672319033),(110362,7,24260,3,1672319033),(110363,7,24261,3,1672319033),(110364,7,24262,3,1672319033),(110365,7,24263,3,1672319033),(110366,7,24264,3,1672319033),(110367,7,24265,3,1672319033),(110368,7,24266,3,1672319033),(110369,7,24267,3,1672319033),(110370,7,24268,3,1672319033),(110371,7,24269,3,1672319033),(110372,7,24271,3,1672319033),(110373,7,24272,3,1672319033),(110374,7,24273,3,1672319033),(110375,7,24274,3,1672319033),(110376,7,24275,3,1672319033),(110377,7,24276,3,1672319033),(110378,7,24277,3,1672319033),(110379,7,24278,3,1672319033),(110380,7,24279,3,1672319033),(110381,7,24280,3,1672319033),(110382,7,24281,3,1672319033),(110383,7,24282,3,1672319033),(110384,7,24283,3,1672319033),(110385,7,24284,3,1672319033),(110386,7,24285,3,1672319033),(110387,7,24286,3,1672319033),(110388,7,24287,3,1672319033),(110389,7,24288,3,1672319033),(110390,7,24289,3,1672319033),(110391,7,24290,3,1672319033),(110392,7,24307,3,1672319033),(110393,7,24308,3,1672319033),(110394,7,24309,3,1672319033),(110395,7,24316,3,1672319033),(110396,7,24317,3,1672319033),(110397,7,24318,3,1672319033),(110398,7,24319,3,1672319033),(110399,7,24320,3,1672319033),(110400,7,24321,3,1672319033),(110401,7,24322,3,1672319033),(110402,7,24323,3,1672319033),(110403,7,24332,3,1672319033),(110404,7,24333,3,1672319033),(110405,7,24334,3,1672319033),(110406,7,24338,3,1672319033),(110407,7,24339,3,1672319033),(110408,7,24340,3,1672319033),(110409,7,24341,3,1672319033),(110410,7,24342,3,1672319033),(110411,7,24343,3,1672319033),(110412,7,24344,3,1672319033),(110413,7,24345,3,1672319033),(110414,7,24346,3,1672319033),(110415,7,24347,3,1672319033),(110416,7,24348,3,1672319033),(110417,7,24349,3,1672319033),(110418,7,24353,3,1672319033),(110419,7,24354,3,1672319033),(110420,7,24355,3,1672319033),(110421,7,24359,3,1672319033),(110422,7,24360,3,1672319033),(110423,7,24361,3,1672319033),(110424,7,24365,3,1672319033),(110425,7,24366,3,1672319033),(110426,7,24367,3,1672319033),(110427,7,24371,3,1672319033),(110428,7,24372,3,1672319033),(110429,7,24373,3,1672319033),(110430,7,24374,3,1672319033),(110431,7,24375,3,1672319033),(110432,7,24376,3,1672319033),(110433,7,24377,3,1672319033),(110434,7,24378,3,1672319033),(110435,7,24379,3,1672319033),(110436,7,24380,3,1672319033),(110437,7,24381,3,1672319033),(110438,7,24382,3,1672319033),(110439,7,24383,3,1672319033),(110440,7,24384,3,1672319033),(110441,7,24385,3,1672319033),(110442,7,24386,3,1672319033),(110443,7,24387,3,1672319033),(110444,7,24388,3,1672319033),(110445,7,24389,3,1672319033),(110446,7,24390,3,1672319033),(110447,7,24391,3,1672319033),(110448,7,24392,3,1672319033),(110449,7,24393,3,1672319033),(110450,7,24394,3,1672319033),(110451,7,24395,3,1672319033),(110452,7,24396,3,1672319033),(110453,7,24397,3,1672319033),(110454,7,24398,3,1672319033),(110455,7,24399,3,1672319033),(110456,7,24400,3,1672319033),(110457,7,24401,3,1672319033),(110458,7,24402,3,1672319033),(110459,7,24403,3,1672319033),(110460,7,24404,3,1672319033),(110461,7,24405,3,1672319033),(110462,7,24406,3,1672319033),(110463,7,24407,3,1672319033),(110464,7,24408,3,1672319033),(110465,7,24409,3,1672319033),(110466,7,24410,3,1672319033),(110467,7,24411,3,1672319033),(110468,7,24412,3,1672319033),(110469,7,24413,3,1672319033),(110470,7,24414,3,1672319033),(110471,7,24415,3,1672319033),(110472,7,24416,3,1672319033),(110473,7,24417,3,1672319033),(110474,7,24418,3,1672319033),(110475,7,24419,3,1672319033),(110476,7,24420,3,1672319033),(110477,7,24421,3,1672319033),(110478,7,24422,3,1672319033),(110479,7,24423,3,1672319033),(110480,7,24424,3,1672319033),(110481,7,24425,3,1672319033),(110482,7,24426,3,1672319033),(110483,7,24427,3,1672319033),(110484,7,24428,3,1672319033),(110485,7,24429,3,1672319033),(110486,7,24430,3,1672319033),(110487,7,24431,3,1672319033),(110488,7,24432,3,1672319033),(110489,7,24433,3,1672319033),(110490,7,24434,3,1672319033),(110491,7,24435,3,1672319033),(110492,7,24436,3,1672319033),(110493,7,24437,3,1672319033),(110494,7,24438,3,1672319033),(110495,7,24439,3,1672319033),(110496,7,24440,3,1672319033),(110497,7,24441,3,1672319033),(110498,7,24442,3,1672319033),(110499,7,24443,3,1672319033),(110500,7,24444,3,1672319033),(110501,7,24445,3,1672319033),(110502,7,24446,3,1672319033),(110503,7,24447,3,1672319033),(110504,7,24448,3,1672319033),(110505,7,24449,3,1672319033),(110506,7,24451,3,1672319033),(110507,7,24452,3,1672319033),(110508,7,24453,3,1672319033),(110509,7,24454,3,1672319033),(110510,7,24455,3,1672319033),(110511,7,24456,3,1672319033),(110512,7,24457,3,1672319033),(110513,7,24458,3,1672319033),(110514,7,24459,3,1672319033),(110515,7,24460,3,1672319033),(110516,7,24461,3,1672319033),(110517,7,24462,3,1672319033),(110518,7,24463,3,1672319033),(110519,7,24464,3,1672319033),(110520,7,24465,3,1672319033),(110521,7,24466,3,1672319033),(110522,7,24467,3,1672319033),(110523,7,24468,3,1672319033),(110524,7,24469,3,1672319033),(110525,7,24470,3,1672319033),(110526,7,24471,3,1672319033),(110527,7,24472,3,1672319033),(110528,7,24473,3,1672319033),(110529,7,24474,3,1672319033),(110530,7,24475,3,1672319033),(110531,7,24476,3,1672319033),(110532,7,24477,3,1672319033),(110533,7,24478,3,1672319033),(110534,7,24479,3,1672319033),(110535,7,24480,3,1672319033),(110536,7,24481,3,1672319033),(110537,7,24482,3,1672319033),(110538,7,24483,3,1672319033),(110539,7,24484,3,1672319033),(110540,7,24485,3,1672319033),(110541,7,24486,3,1672319033),(110542,7,24487,3,1672319033),(110543,7,24488,3,1672319033),(110544,7,24489,3,1672319033),(110545,7,24490,3,1672319033),(110546,7,24491,3,1672319033),(110547,7,24492,3,1672319033),(110548,7,24493,3,1672319033),(110549,7,24494,3,1672319033),(110550,7,24495,3,1672319033),(110551,7,24496,3,1672319033),(110552,7,24497,3,1672319033),(110553,7,24498,3,1672319033),(110554,7,24499,3,1672319033),(110555,7,24500,3,1672319033),(110556,7,24501,3,1672319033),(110557,7,24502,3,1672319033),(110558,7,24503,3,1672319033),(110559,7,24504,3,1672319033),(110560,7,24505,3,1672319033),(110561,7,24506,3,1672319033),(110562,7,24507,3,1672319033),(110563,7,24508,3,1672319033),(110564,7,24509,3,1672319033),(110565,7,24510,3,1672319033),(110566,7,24511,3,1672319033),(110567,7,24512,3,1672319033),(110568,7,24513,3,1672319033),(110569,7,24514,3,1672319033),(110570,7,24515,3,1672319033),(110571,7,24516,3,1672319033),(110572,7,24517,3,1672319033),(110573,7,24518,3,1672319033),(110574,7,24519,3,1672319033),(110575,7,24520,3,1672319033),(110576,7,24521,3,1672319033),(110577,7,24522,3,1672319033),(110578,7,24523,3,1672319033),(110579,7,24524,3,1672319033),(110580,7,24525,3,1672319033),(110581,7,24526,3,1672319033),(110582,7,24527,3,1672319033),(110583,7,24528,3,1672319033),(110584,7,24529,3,1672319033),(110585,7,24530,3,1672319033),(110586,7,24531,3,1672319033),(110587,7,24532,3,1672319033),(110588,7,24533,3,1672319033),(110589,7,24534,3,1672319033),(110590,7,24535,3,1672319033),(110591,7,24536,3,1672319033),(110592,7,24537,3,1672319033),(110593,7,24538,3,1672319033),(110594,7,24539,3,1672319033),(110595,7,24540,3,1672319033),(110596,7,24541,3,1672319033),(110597,7,24542,3,1672319033),(110598,7,24543,3,1672319033),(110599,7,24544,3,1672319033),(110600,7,24545,3,1672319033),(110601,7,24547,3,1672319033),(110602,7,24548,3,1672319033),(110603,7,24549,3,1672319033),(110604,7,24550,3,1672319033),(110605,7,24551,3,1672319033),(110606,7,24552,3,1672319033),(110607,7,24553,3,1672319033),(110608,7,24554,3,1672319033),(110609,7,24555,3,1672319033),(110610,7,24556,3,1672319033),(110611,7,24557,3,1672319033),(110612,7,24558,3,1672319033),(110613,7,24559,3,1672319033),(110614,7,24560,3,1672319033),(110615,7,24561,3,1672319033),(110616,7,24562,3,1672319033),(110617,7,24563,3,1672319033),(110618,7,24564,3,1672319033),(110619,7,24565,3,1672319033),(110620,7,24566,3,1672319033),(110621,7,24567,3,1672319033),(110622,7,24568,3,1672319033),(110623,7,24569,3,1672319033),(110624,7,24570,3,1672319033),(110625,7,24571,3,1672319033),(110626,7,24572,3,1672319033),(110627,7,24573,3,1672319033),(110628,7,24574,3,1672319033),(110629,7,24575,3,1672319033),(110630,7,24576,3,1672319033),(110631,7,24577,3,1672319033),(110632,7,24578,3,1672319033),(110633,7,24579,3,1672319033),(110634,7,24580,3,1672319033),(110635,7,24581,3,1672319033),(110636,7,24582,3,1672319033),(110637,7,24583,3,1672319033),(110638,7,24584,3,1672319033),(110639,7,24585,3,1672319033),(110640,7,24586,3,1672319033),(110641,7,24587,3,1672319033),(110642,7,24588,3,1672319033),(110643,7,24589,3,1672319033),(110644,7,24590,3,1672319033),(110645,7,24591,3,1672319033),(110646,7,24592,3,1672319033),(110647,7,24593,3,1672319033),(110648,7,24594,3,1672319033),(110649,7,24595,3,1672319033),(110650,7,24596,3,1672319033),(110651,7,24597,3,1672319033),(110652,7,24598,3,1672319033),(110653,7,24599,3,1672319033),(110654,7,24600,3,1672319033),(110655,7,24601,3,1672319033),(110656,7,24602,3,1672319033),(110657,7,24603,3,1672319033),(110658,7,24604,3,1672319033),(110659,7,24605,3,1672319033),(110660,7,24606,3,1672319033),(110661,7,24607,3,1672319033),(110662,7,24608,3,1672319033),(110663,7,24609,3,1672319033),(110664,7,24610,3,1672319033),(110665,7,24611,3,1672319033),(110666,7,24612,3,1672319033),(110667,7,24613,3,1672319033),(110668,7,24614,3,1672319033),(110669,7,24616,3,1672319033),(110670,7,24617,3,1672319033),(110671,7,24618,3,1672319033),(110672,7,24619,3,1672319033),(110673,7,24620,3,1672319033),(110674,7,24621,3,1672319033),(110675,7,24622,3,1672319033),(110676,7,24623,3,1672319033),(110677,7,24624,3,1672319033),(110678,7,24625,3,1672319033),(110679,7,24626,3,1672319033),(110680,7,24627,3,1672319033),(110681,7,24628,3,1672319033),(110682,7,24629,3,1672319033),(110683,7,24630,3,1672319033),(110684,7,24631,3,1672319033),(110685,7,24632,3,1672319033),(110686,7,24633,3,1672319033),(110687,7,24634,3,1672319033),(110688,7,24635,3,1672319033),(110689,7,24636,3,1672319033),(110690,7,24637,3,1672319033),(110691,7,24638,3,1672319033),(110692,7,24639,3,1672319033),(110693,7,24640,3,1672319033),(110694,7,24641,3,1672319033),(110695,7,24642,3,1672319033),(110696,7,24643,3,1672319033),(110697,7,24644,3,1672319033),(110698,7,24645,3,1672319033),(110699,7,24646,3,1672319033),(110700,7,24647,3,1672319033),(110701,7,24648,3,1672319033),(110702,7,24649,3,1672319033),(110703,7,24650,3,1672319033),(110704,7,24651,3,1672319033),(110705,7,24652,3,1672319033),(110706,7,24653,3,1672319033),(110707,7,24654,3,1672319033),(110708,7,24655,3,1672319033),(110709,7,24656,3,1672319033),(110710,7,24657,3,1672319033),(110711,7,24658,3,1672319033),(110712,7,24659,3,1672319033),(110713,7,24660,3,1672319033),(110714,7,24661,3,1672319033),(110715,7,24662,3,1672319033),(110716,7,24663,3,1672319033),(110717,7,24664,3,1672319033),(110718,7,24665,3,1672319033),(110719,7,24666,3,1672319033),(110720,7,24667,3,1672319033),(110721,7,24668,3,1672319033),(110722,7,24669,3,1672319033),(110723,7,24670,3,1672319033),(110724,7,24671,3,1672319033),(110725,7,24672,3,1672319033),(110726,7,24673,3,1672319033),(110727,7,24674,3,1672319033),(110728,7,24675,3,1672319033),(110729,7,24676,3,1672319033),(110730,7,24677,3,1672319033),(110731,7,24678,3,1672319033),(110732,7,24679,3,1672319033),(110733,7,24680,3,1672319033),(110734,7,24681,3,1672319033),(110735,7,24682,3,1672319033),(110736,7,24683,3,1672319033),(110737,7,24685,3,1672319033),(110738,7,24686,3,1672319033),(110739,7,24687,3,1672319033),(110740,7,24688,3,1672319033),(110741,7,24689,3,1672319033),(110742,7,24690,3,1672319033),(110743,7,24691,3,1672319033),(110744,7,24692,3,1672319033),(110745,7,24693,3,1672319033),(110746,7,24694,3,1672319033),(110747,7,24695,3,1672319033),(110748,7,24696,3,1672319033),(110749,7,24697,3,1672319033),(110750,7,24698,3,1672319033),(110751,7,24699,3,1672319033),(110752,7,24700,3,1672319033),(110753,7,24701,3,1672319033),(110754,7,24702,3,1672319033),(110755,7,24703,3,1672319033),(110756,7,24704,3,1672319033),(110757,7,24705,3,1672319033),(110758,7,24706,3,1672319033),(110759,7,24707,3,1672319033),(110760,7,24708,3,1672319033),(110761,7,24709,3,1672319033),(110762,7,24710,3,1672319033),(110763,7,24711,3,1672319033),(110764,7,24712,3,1672319033),(110765,7,24713,3,1672319033),(110766,7,24714,3,1672319033),(110767,7,24715,3,1672319033),(110768,7,24716,3,1672319033),(110769,7,24717,3,1672319033),(110770,7,24718,3,1672319033),(110771,7,24719,3,1672319033),(110772,7,24720,3,1672319033),(110773,7,24721,3,1672319033),(110774,7,24722,3,1672319033),(110775,7,24723,3,1672319033),(110776,7,24724,3,1672319033),(110777,7,24725,3,1672319033),(110778,7,24726,3,1672319033),(110779,7,24727,3,1672319033),(110780,7,24728,3,1672319033),(110781,7,24729,3,1672319033),(110782,7,24730,3,1672319033),(110783,7,24731,3,1672319033),(110784,7,24732,3,1672319033),(110785,7,24733,3,1672319033),(110786,7,24734,3,1672319033),(110787,7,24735,3,1672319033),(110788,7,24736,3,1672319033),(110789,7,24737,3,1672319033),(110790,7,24738,3,1672319033),(110791,7,24739,3,1672319033),(110792,7,24740,3,1672319033),(110793,7,24741,3,1672319033),(110794,7,24742,3,1672319033),(110795,7,24743,3,1672319033),(110796,7,24744,3,1672319033),(110797,7,24745,3,1672319033),(110798,7,24746,3,1672319033),(110799,7,24747,3,1672319033),(110800,7,24748,3,1672319033),(110801,7,24749,3,1672319033),(110802,7,24750,3,1672319033),(110803,7,24751,3,1672319033),(110804,7,24752,3,1672319033),(110805,7,24754,3,1672319033),(110806,7,24755,3,1672319033),(110807,7,24756,3,1672319033),(110808,7,24757,3,1672319033),(110809,7,24758,3,1672319033),(110810,7,24759,3,1672319033),(110811,7,24760,3,1672319033),(110812,7,24761,3,1672319033),(110813,7,24762,3,1672319033),(110814,7,24763,3,1672319033),(110815,7,24764,3,1672319033),(110816,7,24765,3,1672319033),(110817,7,24766,3,1672319033),(110818,7,24767,3,1672319033),(110819,7,24768,3,1672319033),(110820,7,24769,3,1672319033),(110821,7,24770,3,1672319033),(110822,7,24771,3,1672319033),(110823,7,24772,3,1672319033),(110824,7,24773,3,1672319033),(110825,7,24774,3,1672319033),(110826,7,24775,3,1672319033),(110827,7,24776,3,1672319033),(110828,7,24777,3,1672319033),(110829,7,24778,3,1672319033),(110830,7,24779,3,1672319033),(110831,7,24780,3,1672319033),(110832,7,24781,3,1672319033),(110833,7,24782,3,1672319033),(110834,7,24783,3,1672319033),(110835,7,24784,3,1672319033),(110836,7,24785,3,1672319033),(110837,7,24786,3,1672319033),(110838,7,24787,3,1672319033),(110839,7,24788,3,1672319033),(110840,7,24789,3,1672319033),(110841,7,24790,3,1672319033),(110842,7,24791,3,1672319033),(110843,7,24792,3,1672319033),(110844,7,24793,3,1672319033),(110845,7,24794,3,1672319033),(110846,7,24795,3,1672319033),(110847,7,24797,3,1672319033),(110848,7,24798,3,1672319033),(110849,7,24799,3,1672319033),(110850,7,24800,3,1672319033),(110851,7,24801,3,1672319033),(110852,7,24802,3,1672319033),(110853,7,24803,3,1672319033),(110854,7,24804,3,1672319033),(110855,7,24805,3,1672319033),(110856,7,24806,3,1672319033),(110857,7,24807,3,1672319033),(110858,7,24808,3,1672319033),(110859,7,24809,3,1672319033),(110860,7,24810,3,1672319033),(110861,7,24811,3,1672319033),(110862,7,24812,3,1672319033),(110863,7,24813,3,1672319033),(110864,7,24814,3,1672319033),(110865,7,24815,3,1672319033),(110866,7,24816,3,1672319033),(110867,7,24817,3,1672319033),(110868,7,24818,3,1672319033),(110869,7,24819,3,1672319033),(110870,7,24820,3,1672319033),(110871,7,24821,3,1672319033),(110872,7,24822,3,1672319033),(110873,7,24823,3,1672319033),(110874,7,24824,3,1672319033),(110875,7,24825,3,1672319033),(110876,7,24826,3,1672319033),(110877,7,24827,3,1672319033),(110878,7,24828,3,1672319033),(110879,7,24829,3,1672319033),(110880,7,24830,3,1672319033),(110881,7,24831,3,1672319033),(110882,7,24832,3,1672319033),(110883,7,24833,3,1672319033),(110884,7,24834,3,1672319033),(110885,7,24835,3,1672319033),(110886,7,24836,3,1672319033),(110887,7,24837,3,1672319033),(110888,7,24838,3,1672319033),(110889,7,24839,3,1672319033),(110890,7,24840,3,1672319033),(110891,7,24841,3,1672319033),(110892,7,24842,3,1672319033),(110893,7,24843,3,1672319033),(110894,7,24844,3,1672319033),(110895,7,24845,3,1672319033),(110896,7,24846,3,1672319033),(110897,7,24847,3,1672319033),(110898,7,24849,3,1672319033),(110899,7,24850,3,1672319033),(110900,7,24851,3,1672319033),(110901,7,24852,3,1672319033),(110902,7,24853,3,1672319033),(110903,7,24854,3,1672319033),(110904,7,24855,3,1672319033),(110905,7,24856,3,1672319033),(110906,7,24857,3,1672319033),(110907,7,24858,3,1672319033),(110908,7,24859,3,1672319033),(110909,7,24860,3,1672319033),(110910,7,24861,3,1672319033),(110911,7,24862,3,1672319033),(110912,7,24863,3,1672319033),(110913,7,24864,3,1672319033),(110914,7,24865,3,1672319033),(110915,7,24866,3,1672319033),(110916,7,24867,3,1672319033),(110917,7,24868,3,1672319033),(110918,7,24869,3,1672319033),(110919,7,24870,3,1672319033),(110920,7,24871,3,1672319033),(110921,7,24872,3,1672319033),(110922,7,24873,3,1672319033),(110923,7,24874,3,1672319033),(110924,7,24875,3,1672319033),(110925,7,24876,3,1672319033),(110926,7,24877,3,1672319033),(110927,7,24878,3,1672319033),(110928,7,24879,3,1672319033),(110929,7,24880,3,1672319033),(110930,7,24881,3,1672319033),(110931,7,24882,3,1672319033),(110932,7,24883,3,1672319033),(110933,7,24884,3,1672319033),(110934,7,24885,3,1672319033),(110935,7,24886,3,1672319033),(110936,7,24887,3,1672319033),(110937,7,24888,3,1672319033),(110938,7,24889,3,1672319033),(110939,7,24890,3,1672319033),(110940,7,24891,3,1672319033),(110941,7,24892,3,1672319033),(110942,7,24893,3,1672319033),(110943,7,24894,3,1672319033),(110944,7,24895,3,1672319033),(110945,7,24896,3,1672319033),(110946,7,24897,3,1672319033),(110947,7,24898,3,1672319033),(110948,7,24899,3,1672319033),(110949,7,24901,3,1672319033),(110950,7,24902,3,1672319033),(110951,7,24903,3,1672319033),(110952,7,24904,3,1672319033),(110953,7,24905,3,1672319033),(110954,7,24906,3,1672319033),(110955,7,24907,3,1672319033),(110956,7,24908,3,1672319033),(110957,7,24909,3,1672319033),(110958,7,24910,3,1672319033),(110959,7,24911,3,1672319033),(110960,7,24912,3,1672319033),(110961,7,24913,3,1672319033),(110962,7,24914,3,1672319033),(110963,7,24915,3,1672319033),(110964,7,24916,3,1672319033),(110965,7,24917,3,1672319033),(110966,7,24918,3,1672319033),(110967,7,24919,3,1672319033),(110968,7,24920,3,1672319033),(110969,7,24921,3,1672319033),(110970,7,24922,3,1672319033),(110971,7,24923,3,1672319033),(110972,7,24924,3,1672319033),(110973,7,24925,3,1672319033),(110974,7,24926,3,1672319033),(110975,7,24927,3,1672319033),(110976,7,24928,3,1672319033),(110977,7,24929,3,1672319033),(110978,7,24930,3,1672319033),(110979,7,24931,3,1672319033),(110980,7,24932,3,1672319033),(110981,7,24933,3,1672319033),(110982,7,24934,3,1672319033),(110983,7,24935,3,1672319033),(110984,7,24936,3,1672319033),(110985,7,24937,3,1672319033),(110986,7,24938,3,1672319033),(110987,7,24939,3,1672319033),(110988,7,24940,3,1672319033),(110989,7,24941,3,1672319033),(110990,7,24942,3,1672319033),(110991,7,24943,3,1672319033),(110992,7,24944,3,1672319033),(110993,7,24945,3,1672319033),(110994,7,24946,3,1672319033),(110995,7,24947,3,1672319033),(110996,7,24948,3,1672319033),(110997,7,24949,3,1672319033),(110998,7,24950,3,1672319033),(110999,7,24951,3,1672319033),(111000,7,24953,3,1672319033),(111001,7,24954,3,1672319033),(111002,7,24955,3,1672319033),(111003,7,24956,3,1672319033),(111004,7,24957,3,1672319033),(111005,7,24958,3,1672319033),(111006,7,24959,3,1672319033),(111007,7,24960,3,1672319033),(111008,7,24961,3,1672319033),(111009,7,24962,3,1672319033),(111010,7,24963,3,1672319033),(111011,7,24964,3,1672319033),(111012,7,24965,3,1672319033),(111013,7,24966,3,1672319033),(111014,7,24967,3,1672319033),(111015,7,24968,3,1672319033),(111016,7,24969,3,1672319033),(111017,7,24970,3,1672319033),(111018,7,24971,3,1672319033),(111019,7,24972,3,1672319033),(111020,7,24973,3,1672319033),(111021,7,24974,3,1672319033),(111022,7,24975,3,1672319033),(111023,7,24976,3,1672319033),(111024,7,24977,3,1672319033),(111025,7,24978,3,1672319033),(111026,7,24979,3,1672319033),(111027,7,24980,3,1672319033),(111028,7,24981,3,1672319033),(111029,7,24982,3,1672319033),(111030,7,24983,3,1672319033),(111031,7,24984,3,1672319033),(111032,7,24985,3,1672319033),(111033,7,24986,3,1672319033),(111034,7,24987,3,1672319033),(111035,7,24988,3,1672319033),(111036,7,24989,3,1672319033),(111037,7,24990,3,1672319033),(111038,7,24991,3,1672319033),(111039,7,24992,3,1672319033),(111040,7,24993,3,1672319033),(111041,7,24994,3,1672319033),(111042,7,24995,3,1672319033),(111043,7,24996,3,1672319033),(111044,7,24997,3,1672319033),(111045,7,24998,3,1672319033),(111046,7,24999,3,1672319033),(111047,7,25000,3,1672319033),(111048,7,25001,3,1672319033),(111049,7,25002,3,1672319033),(111050,7,25003,3,1672319033),(111051,7,25004,3,1672319033),(111052,7,25005,3,1672319033),(111053,7,25006,3,1672319033),(111054,7,25007,3,1672319033),(111055,7,25008,3,1672319033),(111056,7,25009,3,1672319033),(111057,7,25010,3,1672319033),(111058,7,25011,3,1672319033),(111059,7,25012,3,1672319033),(111060,7,25013,3,1672319033),(111061,7,25014,3,1672319033),(111062,7,25015,3,1672319033),(111063,7,25016,3,1672319033),(111064,7,25017,3,1672319033),(111065,7,25018,3,1672319033),(111066,7,25019,3,1672319033),(111067,7,25020,3,1672319033),(111068,7,25021,3,1672319033),(111069,7,25022,3,1672319033),(111070,7,25023,3,1672319033),(111071,7,25024,3,1672319033),(111072,7,25025,3,1672319033),(111073,7,25026,3,1672319033),(111074,7,25027,3,1672319033),(111075,7,25028,3,1672319033),(111076,7,25029,3,1672319033),(111077,7,25030,3,1672319033),(111078,7,25031,3,1672319033),(111079,7,25032,3,1672319033),(111080,7,25033,3,1672319033),(111081,7,25034,3,1672319033),(111082,7,25035,3,1672319033),(111083,7,25036,3,1672319033),(111084,7,25060,3,1672319033),(111085,7,25061,3,1672319033),(111086,7,25062,3,1672319033),(111087,7,25063,3,1672319033),(111088,7,25064,3,1672319033),(111089,7,25065,3,1672319033),(111090,7,25066,3,1672319033),(111091,7,25067,3,1672319033),(111092,7,25068,3,1672319033),(111093,7,25069,3,1672319033),(111094,7,25070,3,1672319033),(111095,7,25071,3,1672319033),(111096,7,25072,3,1672319033),(111097,7,25073,3,1672319033),(111098,7,25074,3,1672319033),(111099,7,25075,3,1672319033),(111100,7,25076,3,1672319033),(111101,7,25077,3,1672319033),(111102,7,25078,3,1672319033),(111103,7,25079,3,1672319033),(111104,7,25080,3,1672319033),(111105,7,25081,3,1672319033),(111106,7,25082,3,1672319033),(111107,7,25083,3,1672319033),(111108,7,25084,3,1672319033),(111109,7,25085,3,1672319033),(111110,7,25086,3,1672319033),(111111,7,25087,3,1672319033),(111112,7,25119,3,1672319033),(111113,7,25120,3,1672319033),(111114,7,25121,3,1672319033),(111115,7,25122,3,1672319033),(111116,7,25123,3,1672319033),(111117,7,25124,3,1672319033),(111118,7,25125,3,1672319033),(111119,7,25126,3,1672319033),(111120,7,25127,3,1672319033),(111121,7,25128,3,1672319033),(111122,7,25129,3,1672319033),(111123,7,25130,3,1672319033),(111124,7,25131,3,1672319033),(111125,7,25132,3,1672319033),(111126,7,25133,3,1672319033),(111127,7,25134,3,1672319033),(111128,7,25135,3,1672319033),(111129,7,25136,3,1672319033),(111130,7,25137,3,1672319033),(111131,7,25138,3,1672319033),(111132,7,25139,3,1672319033),(111133,7,25140,3,1672319033),(111134,7,25141,3,1672319033),(111135,7,25142,3,1672319033),(111136,7,25143,3,1672319033),(111137,7,25144,3,1672319033),(111138,7,25145,3,1672319033),(111139,7,25146,3,1672319033),(111140,7,25178,3,1672319033),(111141,7,25179,3,1672319033),(111142,7,25180,3,1672319033),(111143,7,25181,3,1672319033),(111144,7,25182,3,1672319033),(111145,7,25183,3,1672319033),(111146,7,25184,3,1672319033),(111147,7,25185,3,1672319033),(111148,7,25186,3,1672319033),(111149,7,25187,3,1672319033),(111150,7,25188,3,1672319033),(111151,7,25189,3,1672319033),(111152,7,25190,3,1672319033),(111153,7,25191,3,1672319033),(111154,7,25192,3,1672319033),(111155,7,25193,3,1672319033),(111156,7,25194,3,1672319033),(111157,7,25195,3,1672319033),(111158,7,25196,3,1672319033),(111159,7,25197,3,1672319033),(111160,7,25198,3,1672319033),(111161,7,25199,3,1672319033),(111162,7,25200,3,1672319033),(111163,7,25201,3,1672319033),(111164,7,25202,3,1672319033),(111165,7,25203,3,1672319033),(111166,7,25204,3,1672319033),(111167,7,25205,3,1672319033),(111168,7,25237,3,1672319033),(111169,7,25238,3,1672319033),(111170,7,25239,3,1672319033),(111171,7,25240,3,1672319033),(111172,7,25241,3,1672319033),(111173,7,25242,3,1672319033),(111174,7,25243,3,1672319033),(111175,7,25244,3,1672319033),(111176,7,25245,3,1672319033),(111177,7,25246,3,1672319033),(111178,7,25247,3,1672319033),(111179,7,25248,3,1672319033),(111180,7,25249,3,1672319033),(111181,7,25250,3,1672319033),(111182,7,25251,3,1672319033),(111183,7,25252,3,1672319033),(111184,7,25253,3,1672319033),(111185,7,25254,3,1672319033),(111186,7,25255,3,1672319033),(111187,7,25256,3,1672319033),(111188,7,25257,3,1672319033),(111189,7,25258,3,1672319033),(111190,7,25259,3,1672319033),(111191,7,25260,3,1672319033),(111192,7,25261,3,1672319033),(111193,7,25262,3,1672319033),(111194,7,25263,3,1672319033),(111195,7,25264,3,1672319033),(111196,7,25296,3,1672319033),(111197,7,25297,3,1672319033),(111198,7,25298,3,1672319033),(111199,7,25299,3,1672319033),(111200,7,25300,3,1672319033),(111201,7,25301,3,1672319033),(111202,7,25302,3,1672319033),(111203,7,25303,3,1672319033),(111204,7,25304,3,1672319033),(111205,7,25305,3,1672319033),(111206,7,25306,3,1672319033),(111207,7,25307,3,1672319033),(111208,7,25308,3,1672319033),(111209,7,25309,3,1672319033),(111210,7,25310,3,1672319033),(111211,7,25311,3,1672319033),(111212,7,25312,3,1672319033),(111213,7,25313,3,1672319033),(111214,7,25314,3,1672319033),(111215,7,25315,3,1672319033),(111216,7,25316,3,1672319033),(111217,7,25317,3,1672319033),(111218,7,25318,3,1672319033),(111219,7,25319,3,1672319033),(111220,7,25320,3,1672319033),(111221,7,25321,3,1672319033),(111222,7,25322,3,1672319033),(111223,7,25323,3,1672319033),(111224,7,25355,3,1672319033),(111225,7,25356,3,1672319033),(111226,7,25357,3,1672319033),(111227,7,25358,3,1672319033),(111228,7,25359,3,1672319033),(111229,7,25360,3,1672319033),(111230,7,25361,3,1672319033),(111231,7,25362,3,1672319033),(111232,7,25363,3,1672319033),(111233,7,25364,3,1672319033),(111234,7,25365,3,1672319033),(111235,7,25366,3,1672319033),(111236,7,25367,3,1672319033),(111237,7,25368,3,1672319033),(111238,7,25369,3,1672319033),(111239,7,25370,3,1672319033),(111240,7,25371,3,1672319033),(111241,7,25372,3,1672319033),(111242,7,25373,3,1672319033),(111243,7,25374,3,1672319033),(111244,7,25375,3,1672319033),(111245,7,25376,3,1672319033),(111246,7,25377,3,1672319033),(111247,7,25378,3,1672319033),(111248,7,25379,3,1672319033),(111249,7,25380,3,1672319033),(111250,7,25381,3,1672319033),(111251,7,25382,3,1672319033),(111252,7,25414,3,1672319033),(111253,7,25415,3,1672319033),(111254,7,25416,3,1672319033),(111255,7,25417,3,1672319033),(111256,7,25418,3,1672319033),(111257,7,25419,3,1672319033),(111258,7,25420,3,1672319033),(111259,7,25421,3,1672319033),(111260,7,25422,3,1672319033),(111261,7,25423,3,1672319033),(111262,7,25424,3,1672319033),(111263,7,25425,3,1672319033),(111264,7,25426,3,1672319033),(111265,7,25427,3,1672319033),(111266,7,25428,3,1672319033),(111267,7,25429,3,1672319033),(111268,7,25430,3,1672319033),(111269,7,25431,3,1672319033),(111270,7,25432,3,1672319033),(111271,7,25433,3,1672319033),(111272,7,25434,3,1672319033),(111273,7,25435,3,1672319033),(111274,7,25436,3,1672319033),(111275,7,25437,3,1672319033),(111276,7,25438,3,1672319033),(111277,7,25439,3,1672319033),(111278,7,25440,3,1672319033),(111279,7,25441,3,1672319033),(111280,7,25473,3,1672319033),(111281,7,25474,3,1672319033),(111282,7,25475,3,1672319033),(111283,7,25476,3,1672319033),(111284,7,25477,3,1672319033),(111285,7,25478,3,1672319033),(111286,7,25479,3,1672319033),(111287,7,25480,3,1672319033),(111288,7,25481,3,1672319033),(111289,7,25482,3,1672319033),(111290,7,25483,3,1672319033),(111291,7,25484,3,1672319033),(111292,7,25485,3,1672319033),(111293,7,25486,3,1672319033),(111294,7,25487,3,1672319033),(111295,7,25488,3,1672319033),(111296,7,25489,3,1672319033),(111297,7,25490,3,1672319033),(111298,7,25491,3,1672319033),(111299,7,25492,3,1672319033),(111300,7,25493,3,1672319033),(111301,7,25494,3,1672319033),(111302,7,25495,3,1672319033),(111303,7,25496,3,1672319033),(111304,7,25497,3,1672319033),(111305,7,25498,3,1672319033),(111306,7,25499,3,1672319033),(111307,7,25500,3,1672319033),(111308,7,25532,3,1672319033),(111309,7,25533,3,1672319033),(111310,7,25534,3,1672319033),(111311,7,25535,3,1672319033),(111312,7,25536,3,1672319033),(111313,7,25537,3,1672319033),(111314,7,25538,3,1672319033),(111315,7,25539,3,1672319033),(111316,7,25540,3,1672319033),(111317,7,25541,3,1672319033),(111318,7,25542,3,1672319033),(111319,7,25543,3,1672319033),(111320,7,25544,3,1672319033),(111321,7,25545,3,1672319033),(111322,7,25546,3,1672319033),(111323,7,25547,3,1672319033),(111324,7,25548,3,1672319033),(111325,7,25549,3,1672319033),(111326,7,25550,3,1672319033),(111327,7,25551,3,1672319033),(111328,7,25552,3,1672319033),(111329,7,25553,3,1672319033),(111330,7,25554,3,1672319033),(111331,7,25555,3,1672319033),(111332,7,25556,3,1672319033),(111333,7,25557,3,1672319033),(111334,7,25558,3,1672319033),(111335,7,25559,3,1672319033),(111336,7,25591,3,1672319033),(111337,7,25592,3,1672319033),(111338,7,25593,3,1672319033),(111339,7,25594,3,1672319033),(111340,7,25595,3,1672319033),(111341,7,25596,3,1672319033),(111342,7,25597,3,1672319033),(111343,7,25598,3,1672319033),(111344,7,25599,3,1672319033),(111345,7,25600,3,1672319033),(111346,7,25601,3,1672319033),(111347,7,25602,3,1672319033),(111348,7,25603,3,1672319033),(111349,7,25604,3,1672319033),(111350,7,25605,3,1672319033),(111351,7,25606,3,1672319033),(111352,7,25607,3,1672319033),(111353,7,25608,3,1672319033),(111354,7,25609,3,1672319033),(111355,7,25610,3,1672319033),(111356,7,25611,3,1672319033),(111357,7,25612,3,1672319033),(111358,7,25613,3,1672319033),(111359,7,25614,3,1672319033),(111360,7,25615,3,1672319033),(111361,7,25616,3,1672319033),(111362,7,25617,3,1672319033),(111363,7,25618,3,1672319033),(111364,7,25650,3,1672319033),(111365,7,25651,3,1672319033),(111366,7,25652,3,1672319033),(111367,7,25653,3,1672319033),(111368,7,25654,3,1672319033),(111369,7,25655,3,1672319033),(111370,7,25656,3,1672319033),(111371,7,25657,3,1672319033),(111372,7,25658,3,1672319033),(111373,7,25659,3,1672319033),(111374,7,25660,3,1672319033),(111375,7,25661,3,1672319033),(111376,7,25662,3,1672319033),(111377,7,25663,3,1672319033),(111378,7,25664,3,1672319033),(111379,7,25665,3,1672319033),(111380,7,25666,3,1672319033),(111381,7,25667,3,1672319033),(111382,7,25668,3,1672319033),(111383,7,25669,3,1672319033),(111384,7,25670,3,1672319033),(111385,7,25671,3,1672319033),(111386,7,25672,3,1672319033),(111387,7,25673,3,1672319033),(111388,7,25674,3,1672319033),(111389,7,25675,3,1672319033),(111390,7,25676,3,1672319033),(111391,7,25677,3,1672319033),(111392,7,25709,3,1672319033),(111393,7,25710,3,1672319033),(111394,7,25711,3,1672319033),(111395,7,25712,3,1672319033),(111396,7,25713,3,1672319033),(111397,7,25714,3,1672319033),(111398,7,25715,3,1672319033),(111399,7,25716,3,1672319033),(111400,7,25717,3,1672319033),(111401,7,25718,3,1672319033),(111402,7,25719,3,1672319033),(111403,7,25720,3,1672319033),(111404,7,25721,3,1672319033),(111405,7,25722,3,1672319033),(111406,7,25723,3,1672319033),(111407,7,25724,3,1672319033),(111408,7,25725,3,1672319033),(111409,7,25726,3,1672319033),(111410,7,25727,3,1672319033),(111411,7,25728,3,1672319033),(111412,7,25729,3,1672319033),(111413,7,25730,3,1672319033),(111414,7,25731,3,1672319033),(111415,7,25732,3,1672319033),(111416,7,25733,3,1672319033),(111417,7,25734,3,1672319033),(111418,7,25735,3,1672319033),(111419,7,25736,3,1672319033),(111420,7,25768,3,1672319033),(111421,7,25769,3,1672319033),(111422,7,25770,3,1672319033),(111423,7,25771,3,1672319033),(111424,7,25772,3,1672319033),(111425,7,25773,3,1672319033),(111426,7,25774,3,1672319033),(111427,7,25775,3,1672319033),(111428,7,25776,3,1672319033),(111429,7,25777,3,1672319033),(111430,7,25778,3,1672319033),(111431,7,25779,3,1672319033),(111432,7,25780,3,1672319033),(111433,7,25781,3,1672319033),(111434,7,25782,3,1672319033),(111435,7,25783,3,1672319033),(111436,7,25784,3,1672319033),(111437,7,25785,3,1672319033),(111438,7,25786,3,1672319033),(111439,7,25787,3,1672319033),(111440,7,25788,3,1672319033),(111441,7,25789,3,1672319033),(111442,7,25790,3,1672319033),(111443,7,25791,3,1672319033),(111444,7,25792,3,1672319033),(111445,7,25793,3,1672319033),(111446,7,25794,3,1672319033),(111447,7,25795,3,1672319033),(111448,7,25827,3,1672319033),(111449,7,25828,3,1672319033),(111450,7,25829,3,1672319033),(111451,7,25830,3,1672319033),(111452,7,25831,3,1672319033),(111453,7,25832,3,1672319033),(111454,7,25833,3,1672319033),(111455,7,25834,3,1672319033),(111456,7,25835,3,1672319033),(111457,7,25836,3,1672319033),(111458,7,25837,3,1672319033),(111459,7,25838,3,1672319033),(111460,7,25839,3,1672319033),(111461,7,25840,3,1672319033),(111462,7,25841,3,1672319033),(111463,7,25842,3,1672319033),(111464,7,25843,3,1672319033),(111465,7,25844,3,1672319033),(111466,7,25845,3,1672319033),(111467,7,25846,3,1672319033),(111468,7,25847,3,1672319033),(111469,7,25848,3,1672319033),(111470,7,25849,3,1672319033),(111471,7,25850,3,1672319033),(111472,7,25851,3,1672319033),(111473,7,25852,3,1672319033),(111474,7,25853,3,1672319033),(111475,7,25854,3,1672319033),(111476,7,25886,3,1672319033),(111477,7,25887,3,1672319033),(111478,7,25888,3,1672319033),(111479,7,25889,3,1672319033),(111480,7,25890,3,1672319033),(111481,7,25891,3,1672319033),(111482,7,25892,3,1672319033),(111483,7,25893,3,1672319033),(111484,7,25894,3,1672319033),(111485,7,25895,3,1672319033),(111486,7,25896,3,1672319033),(111487,7,25897,3,1672319033),(111488,7,25898,3,1672319033),(111489,7,25899,3,1672319033),(111490,7,25900,3,1672319033),(111491,7,25901,3,1672319033),(111492,7,25902,3,1672319033),(111493,7,25903,3,1672319033),(111494,7,25904,3,1672319033),(111495,7,25905,3,1672319033),(111496,7,25906,3,1672319033),(111497,7,25907,3,1672319033),(111498,7,25908,3,1672319033),(111499,7,25909,3,1672319033),(111500,7,25910,3,1672319033),(111501,7,25911,3,1672319033),(111502,7,25912,3,1672319033),(111503,7,25913,3,1672319033),(111504,7,25945,3,1672319033),(111505,7,25946,3,1672319033),(111506,7,25947,3,1672319033),(111507,7,25948,3,1672319033),(111508,7,25949,3,1672319033),(111509,7,25950,3,1672319033),(111510,7,25951,3,1672319033),(111511,7,25952,3,1672319033),(111512,7,25953,3,1672319033),(111513,7,25954,3,1672319033),(111514,7,25955,3,1672319033),(111515,7,25956,3,1672319033),(111516,7,25957,3,1672319033),(111517,7,25958,3,1672319033),(111518,7,25959,3,1672319033),(111519,7,25960,3,1672319033),(111520,7,25961,3,1672319033),(111521,7,25962,3,1672319033),(111522,7,25963,3,1672319033),(111523,7,25964,3,1672319033),(111524,7,25965,3,1672319033),(111525,7,25966,3,1672319033),(111526,7,25967,3,1672319033),(111527,7,25968,3,1672319033),(111528,7,25969,3,1672319033),(111529,7,25970,3,1672319033),(111530,7,25971,3,1672319033),(111531,7,25972,3,1672319033),(111532,7,26004,3,1672319033),(111533,7,26005,3,1672319033),(111534,7,26006,3,1672319033),(111535,7,26007,3,1672319033),(111536,7,26008,3,1672319033),(111537,7,26009,3,1672319033),(111538,7,26010,3,1672319033),(111539,7,26011,3,1672319033),(111540,7,26012,3,1672319033),(111541,7,26013,3,1672319033),(111542,7,26014,3,1672319033),(111543,7,26015,3,1672319033),(111544,7,26016,3,1672319033),(111545,7,26017,3,1672319033),(111546,7,26018,3,1672319033),(111547,7,26019,3,1672319033),(111548,7,26020,3,1672319033),(111549,7,26021,3,1672319033),(111550,7,26022,3,1672319033),(111551,7,26023,3,1672319033),(111552,7,26024,3,1672319033),(111553,7,26025,3,1672319033),(111554,7,26026,3,1672319033),(111555,7,26027,3,1672319033),(111556,7,26028,3,1672319033),(111557,7,26029,3,1672319033),(111558,7,26030,3,1672319033),(111559,7,26031,3,1672319033),(111560,7,26063,3,1672319033),(111561,7,26064,3,1672319033),(111562,7,26065,3,1672319033),(111563,7,26066,3,1672319033),(111564,7,26067,3,1672319033),(111565,7,26068,3,1672319033),(111566,7,26069,3,1672319033),(111567,7,26070,3,1672319033),(111568,7,26071,3,1672319033),(111569,7,26072,3,1672319033),(111570,7,26073,3,1672319033),(111571,7,26074,3,1672319033),(111572,7,26075,3,1672319033),(111573,7,26076,3,1672319033),(111574,7,26077,3,1672319033),(111575,7,26078,3,1672319033),(111576,7,26079,3,1672319033),(111577,7,26080,3,1672319033),(111578,7,26081,3,1672319033),(111579,7,26082,3,1672319033),(111580,7,26083,3,1672319033),(111581,7,26084,3,1672319033),(111582,7,26085,3,1672319033),(111583,7,26086,3,1672319033),(111584,7,26087,3,1672319033),(111585,7,26088,3,1672319033),(111586,7,26089,3,1672319033),(111587,7,26090,3,1672319033),(111588,7,26122,3,1672319033),(111589,7,26123,3,1672319033),(111590,7,26124,3,1672319033),(111591,7,26125,3,1672319033),(111592,7,26126,3,1672319033),(111593,7,26127,3,1672319033),(111594,7,26128,3,1672319033),(111595,7,26129,3,1672319033),(111596,7,26130,3,1672319033),(111597,7,26131,3,1672319033),(111598,7,26132,3,1672319033),(111599,7,26133,3,1672319033),(111600,7,26134,3,1672319033),(111601,7,26135,3,1672319033),(111602,7,26136,3,1672319033),(111603,7,26137,3,1672319033),(111604,7,26138,3,1672319033),(111605,7,26139,3,1672319033),(111606,7,26140,3,1672319033),(111607,7,26141,3,1672319033),(111608,7,26142,3,1672319033),(111609,7,26143,3,1672319033),(111610,7,26144,3,1672319033),(111611,7,26145,3,1672319033),(111612,7,26146,3,1672319033),(111613,7,26147,3,1672319033),(111614,7,26148,3,1672319033),(111615,7,26149,3,1672319033),(111616,7,26181,3,1672319033),(111617,7,26182,3,1672319033),(111618,7,26183,3,1672319033),(111619,7,26184,3,1672319033),(111620,7,26185,3,1672319033),(111621,7,26186,3,1672319033),(111622,7,26187,3,1672319033),(111623,7,26188,3,1672319033),(111624,7,26189,3,1672319033),(111625,7,26190,3,1672319033),(111626,7,26191,3,1672319033),(111627,7,26192,3,1672319033),(111628,7,26193,3,1672319033),(111629,7,26194,3,1672319033),(111630,7,26195,3,1672319033),(111631,7,26196,3,1672319033),(111632,7,26197,3,1672319033),(111633,7,26198,3,1672319033),(111634,7,26199,3,1672319033),(111635,7,26200,3,1672319033),(111636,7,26201,3,1672319033),(111637,7,26202,3,1672319033),(111638,7,26203,3,1672319033),(111639,7,26204,3,1672319033),(111640,7,26205,3,1672319033),(111641,7,26206,3,1672319033),(111642,7,26207,3,1672319033),(111643,7,26208,3,1672319033),(111644,7,26240,3,1672319033),(111645,7,26241,3,1672319033),(111646,7,26242,3,1672319033),(111647,7,26243,3,1672319033),(111648,7,26244,3,1672319033),(111649,7,26245,3,1672319033),(111650,7,26246,3,1672319033),(111651,7,26247,3,1672319033),(111652,7,26248,3,1672319033),(111653,7,26249,3,1672319033),(111654,7,26250,3,1672319033),(111655,7,26251,3,1672319033),(111656,7,26252,3,1672319033),(111657,7,26253,3,1672319033),(111658,7,26254,3,1672319033),(111659,7,26255,3,1672319033),(111660,7,26256,3,1672319033),(111661,7,26257,3,1672319033),(111662,7,26258,3,1672319033),(111663,7,26259,3,1672319033),(111664,7,26260,3,1672319033),(111665,7,26261,3,1672319033),(111666,7,26262,3,1672319033),(111667,7,26263,3,1672319033),(111668,7,26264,3,1672319033),(111669,7,26265,3,1672319033),(111670,7,26266,3,1672319033),(111671,7,26267,3,1672319033),(111672,7,26299,3,1672319033),(111673,7,26300,3,1672319033),(111674,7,26301,3,1672319033),(111675,7,26302,3,1672319033),(111676,7,26303,3,1672319033),(111677,7,26304,3,1672319033),(111678,7,26305,3,1672319033),(111679,7,26306,3,1672319033),(111680,7,26307,3,1672319033),(111681,7,26308,3,1672319033),(111682,7,26309,3,1672319033),(111683,7,26310,3,1672319033),(111684,7,26311,3,1672319033),(111685,7,26312,3,1672319033),(111686,7,26313,3,1672319033),(111687,7,26314,3,1672319033),(111688,7,26315,3,1672319033),(111689,7,26316,3,1672319033),(111690,7,26317,3,1672319033),(111691,7,26318,3,1672319033),(111692,7,26319,3,1672319033),(111693,7,26320,3,1672319033),(111694,7,26321,3,1672319033),(111695,7,26322,3,1672319033),(111696,7,26323,3,1672319033),(111697,7,26324,3,1672319033),(111698,7,26325,3,1672319033),(111699,7,26326,3,1672319033),(111700,7,26358,3,1672319033),(111701,7,26359,3,1672319033),(111702,7,26360,3,1672319033),(111703,7,26361,3,1672319033),(111704,7,26362,3,1672319033),(111705,7,26363,3,1672319033),(111706,7,26364,3,1672319033),(111707,7,26365,3,1672319033),(111708,7,26366,3,1672319033),(111709,7,26367,3,1672319033),(111710,7,26368,3,1672319033),(111711,7,26369,3,1672319033),(111712,7,26370,3,1672319033),(111713,7,26371,3,1672319033),(111714,7,26372,3,1672319033),(111715,7,26373,3,1672319033),(111716,7,26374,3,1672319033),(111717,7,26375,3,1672319033),(111718,7,26376,3,1672319033),(111719,7,26377,3,1672319033),(111720,7,26378,3,1672319033),(111721,7,26379,3,1672319033),(111722,7,26380,3,1672319033),(111723,7,26381,3,1672319033),(111724,7,26382,3,1672319033),(111725,7,26383,3,1672319033),(111726,7,26384,3,1672319033),(111727,7,26385,3,1672319033),(111728,7,26417,3,1672319033),(111729,7,26418,3,1672319033),(111730,7,26419,3,1672319033),(111731,7,26420,3,1672319033),(111732,7,26421,3,1672319033),(111733,7,26422,3,1672319033),(111734,7,26423,3,1672319033),(111735,7,26424,3,1672319033),(111736,7,26425,3,1672319033),(111737,7,26426,3,1672319033),(111738,7,26427,3,1672319033),(111739,7,26428,3,1672319033),(111740,7,26429,3,1672319033),(111741,7,26430,3,1672319033),(111742,7,26431,3,1672319033),(111743,7,26432,3,1672319033),(111744,7,26433,3,1672319033),(111745,7,26434,3,1672319033),(111746,7,26435,3,1672319033),(111747,7,26436,3,1672319033),(111748,7,26437,3,1672319033),(111749,7,26438,3,1672319033),(111750,7,26439,3,1672319033),(111751,7,26440,3,1672319033),(111752,7,26441,3,1672319033),(111753,7,26442,3,1672319033),(111754,7,26443,3,1672319033),(111755,7,26444,3,1672319033),(111756,7,26476,3,1672319033),(111757,7,26477,3,1672319033),(111758,7,26478,3,1672319033),(111759,7,26479,3,1672319033),(111760,7,26480,3,1672319033),(111761,7,26481,3,1672319033),(111762,7,26482,3,1672319033),(111763,7,26483,3,1672319033),(111764,7,26484,3,1672319033),(111765,7,26485,3,1672319033),(111766,7,26486,3,1672319033),(111767,7,26487,3,1672319033),(111768,7,26488,3,1672319033),(111769,7,26489,3,1672319033),(111770,7,26490,3,1672319033),(111771,7,26491,3,1672319033),(111772,7,26492,3,1672319033),(111773,7,26493,3,1672319033),(111774,7,26494,3,1672319033),(111775,7,26495,3,1672319033),(111776,7,26496,3,1672319033),(111777,7,26497,3,1672319033),(111778,7,26498,3,1672319033),(111779,7,26499,3,1672319033),(111780,7,26500,3,1672319033),(111781,7,26501,3,1672319033),(111782,7,26502,3,1672319033),(111783,7,26503,3,1672319033),(111784,7,26535,3,1672319033),(111785,7,26536,3,1672319033),(111786,7,26537,3,1672319033),(111787,7,26538,3,1672319033),(111788,7,26539,3,1672319033),(111789,7,26540,3,1672319033),(111790,7,26541,3,1672319033),(111791,7,26542,3,1672319033),(111792,7,26543,3,1672319033),(111793,7,26544,3,1672319033),(111794,7,26545,3,1672319033),(111795,7,26546,3,1672319033),(111796,7,26547,3,1672319033),(111797,7,26548,3,1672319033),(111798,7,26549,3,1672319033),(111799,7,26550,3,1672319033),(111800,7,26551,3,1672319033),(111801,7,26552,3,1672319033),(111802,7,26553,3,1672319033),(111803,7,26554,3,1672319033),(111804,7,26555,3,1672319033),(111805,7,26556,3,1672319033),(111806,7,26557,3,1672319033),(111807,7,26558,3,1672319033),(111808,7,26559,3,1672319033),(111809,7,26560,3,1672319033),(111810,7,26561,3,1672319033),(111811,7,26562,3,1672319033),(111812,7,26594,3,1672319033),(111813,7,26595,3,1672319033),(111814,7,26596,3,1672319033),(111815,7,26597,3,1672319033),(111816,7,26598,3,1672319033),(111817,7,26599,3,1672319033),(111818,7,26600,3,1672319033),(111819,7,26601,3,1672319033),(111820,7,26602,3,1672319033),(111821,7,26603,3,1672319033),(111822,7,26604,3,1672319033),(111823,7,26605,3,1672319033),(111824,7,26606,3,1672319033),(111825,7,26607,3,1672319033),(111826,7,26608,3,1672319033),(111827,7,26609,3,1672319033),(111828,7,26610,3,1672319033),(111829,7,26611,3,1672319033),(111830,7,26612,3,1672319033),(111831,7,26613,3,1672319033),(111832,7,26614,3,1672319033),(111833,7,26615,3,1672319033),(111834,7,26616,3,1672319033),(111835,7,26617,3,1672319033),(111836,7,26618,3,1672319033),(111837,7,26619,3,1672319033),(111838,7,26620,3,1672319033),(111839,7,26621,3,1672319033),(111840,7,26653,3,1672319033),(111841,7,26654,3,1672319033),(111842,7,26655,3,1672319033),(111843,7,26656,3,1672319033),(111844,7,26657,3,1672319033),(111845,7,26658,3,1672319033),(111846,7,26659,3,1672319033),(111847,7,26660,3,1672319033),(111848,7,26661,3,1672319033),(111849,7,26662,3,1672319033),(111850,7,26663,3,1672319033),(111851,7,26664,3,1672319033),(111852,7,26665,3,1672319033),(111853,7,26666,3,1672319033),(111854,7,26667,3,1672319033),(111855,7,26668,3,1672319033),(111856,7,26669,3,1672319033),(111857,7,26670,3,1672319033),(111858,7,26671,3,1672319033),(111859,7,26672,3,1672319033),(111860,7,26673,3,1672319033),(111861,7,26674,3,1672319033),(111862,7,26675,3,1672319033),(111863,7,26676,3,1672319033),(111864,7,26677,3,1672319033),(111865,7,26678,3,1672319033),(111866,7,26679,3,1672319033),(111867,7,26680,3,1672319033),(111868,7,26712,3,1672319033),(111869,7,26713,3,1672319033),(111870,7,26714,3,1672319033),(111871,7,26715,3,1672319033),(111872,7,26716,3,1672319033),(111873,7,26717,3,1672319033),(111874,7,26718,3,1672319033),(111875,7,26719,3,1672319033),(111876,7,26720,3,1672319033),(111877,7,26721,3,1672319033),(111878,7,26722,3,1672319033),(111879,7,26723,3,1672319033),(111880,7,26724,3,1672319033),(111881,7,26725,3,1672319033),(111882,7,26726,3,1672319033),(111883,7,26727,3,1672319033),(111884,7,26728,3,1672319033),(111885,7,26729,3,1672319033),(111886,7,26730,3,1672319033),(111887,7,26731,3,1672319033),(111888,7,26732,3,1672319033),(111889,7,26733,3,1672319033),(111890,7,26734,3,1672319033),(111891,7,26735,3,1672319033),(111892,7,26736,3,1672319033),(111893,7,26737,3,1672319033),(111894,7,26738,3,1672319033),(111895,7,26739,3,1672319033),(111896,7,26771,3,1672319033),(111897,7,26772,3,1672319033),(111898,7,26773,3,1672319033),(111899,7,26774,3,1672319033),(111900,7,26775,3,1672319033),(111901,7,26776,3,1672319033),(111902,7,26777,3,1672319033),(111903,7,26778,3,1672319033),(111904,7,26779,3,1672319033),(111905,7,26780,3,1672319033),(111906,7,26781,3,1672319033),(111907,7,26782,3,1672319033),(111908,7,26783,3,1672319033),(111909,7,26784,3,1672319033),(111910,7,26785,3,1672319033),(111911,7,26786,3,1672319033),(111912,7,26787,3,1672319033),(111913,7,26788,3,1672319033),(111914,7,26789,3,1672319033),(111915,7,26790,3,1672319033),(111916,7,26791,3,1672319033),(111917,7,26792,3,1672319033),(111918,7,26793,3,1672319033),(111919,7,26794,3,1672319033),(111920,7,26795,3,1672319033),(111921,7,26796,3,1672319033),(111922,7,26797,3,1672319033),(111923,7,26798,3,1672319033),(111924,7,26830,3,1672319033),(111925,7,26831,3,1672319033),(111926,7,26832,3,1672319033),(111927,7,26833,3,1672319033),(111928,7,26834,3,1672319033),(111929,7,26835,3,1672319033),(111930,7,26836,3,1672319033),(111931,7,26837,3,1672319033),(111932,7,26838,3,1672319033),(111933,7,26839,3,1672319033),(111934,7,26840,3,1672319033),(111935,7,26841,3,1672319033),(111936,7,26842,3,1672319033),(111937,7,26843,3,1672319033),(111938,7,26844,3,1672319033),(111939,7,26845,3,1672319033),(111940,7,26846,3,1672319033),(111941,7,26847,3,1672319033),(111942,7,26848,3,1672319033),(111943,7,26849,3,1672319033),(111944,7,26850,3,1672319033),(111945,7,26851,3,1672319033),(111946,7,26852,3,1672319033),(111947,7,26853,3,1672319033),(111948,7,26854,3,1672319033),(111949,7,26855,3,1672319033),(111950,7,26856,3,1672319033),(111951,7,26857,3,1672319033),(111952,7,26889,3,1672319033),(111953,7,26890,3,1672319033),(111954,7,26891,3,1672319033),(111955,7,26892,3,1672319033),(111956,7,26893,3,1672319033),(111957,7,26894,3,1672319033),(111958,7,26895,3,1672319033),(111959,7,26896,3,1672319033),(111960,7,26897,3,1672319033),(111961,7,26898,3,1672319033),(111962,7,26899,3,1672319033),(111963,7,26900,3,1672319033),(111964,7,26901,3,1672319033),(111965,7,26902,3,1672319033),(111966,7,26903,3,1672319033),(111967,7,26904,3,1672319033),(111968,7,26905,3,1672319033),(111969,7,26906,3,1672319033),(111970,7,26907,3,1672319033),(111971,7,26908,3,1672319033),(111972,7,26909,3,1672319033),(111973,7,26910,3,1672319033),(111974,7,26911,3,1672319033),(111975,7,26912,3,1672319033),(111976,7,26913,3,1672319033),(111977,7,26914,3,1672319033),(111978,7,26915,3,1672319033),(111979,7,26916,3,1672319033),(111980,7,26948,3,1672319033),(111981,7,26949,3,1672319033),(111982,7,26950,3,1672319033),(111983,7,26951,3,1672319033),(111984,7,26952,3,1672319033),(111985,7,26953,3,1672319033),(111986,7,26954,3,1672319033),(111987,7,26955,3,1672319033),(111988,7,26956,3,1672319033),(111989,7,26957,3,1672319033),(111990,7,26958,3,1672319033),(111991,7,26959,3,1672319033),(111992,7,26960,3,1672319033),(111993,7,26961,3,1672319033),(111994,7,26962,3,1672319033),(111995,7,26963,3,1672319033),(111996,7,26964,3,1672319033),(111997,7,26965,3,1672319033),(111998,7,26966,3,1672319033),(111999,7,26967,3,1672319033),(112000,7,26968,3,1672319033),(112001,7,26969,3,1672319033),(112002,7,26970,3,1672319033),(112003,7,26971,3,1672319033),(112004,7,26972,3,1672319033),(112005,7,26973,3,1672319033),(112006,7,26974,3,1672319033),(112007,7,26975,3,1672319033),(112008,7,27007,3,1672319033),(112009,7,27008,3,1672319033),(112010,7,27009,3,1672319033),(112011,7,27010,3,1672319033),(112012,7,27011,3,1672319033),(112013,7,27012,3,1672319033),(112014,7,27013,3,1672319033),(112015,7,27014,3,1672319033),(112016,7,27015,3,1672319033),(112017,7,27016,3,1672319033),(112018,7,27017,3,1672319033),(112019,7,27018,3,1672319033),(112020,7,27019,3,1672319033),(112021,7,27020,3,1672319033),(112022,7,27021,3,1672319033),(112023,7,27022,3,1672319033),(112024,7,27023,3,1672319033),(112025,7,27024,3,1672319033),(112026,7,27025,3,1672319033),(112027,7,27026,3,1672319033),(112028,7,27027,3,1672319033),(112029,7,27028,3,1672319033),(112030,7,27029,3,1672319033),(112031,7,27030,3,1672319033),(112032,7,27031,3,1672319033),(112033,7,27032,3,1672319033),(112034,7,27033,3,1672319033),(112035,7,27034,3,1672319033),(112036,7,27066,3,1672319033),(112037,7,27067,3,1672319033),(112038,7,27068,3,1672319033),(112039,7,27069,3,1672319033),(112040,7,27070,3,1672319033),(112041,7,27071,3,1672319033),(112042,7,27072,3,1672319033),(112043,7,27073,3,1672319033),(112044,7,27074,3,1672319033),(112045,7,27075,3,1672319033),(112046,7,27076,3,1672319033),(112047,7,27077,3,1672319033),(112048,7,27078,3,1672319033),(112049,7,27079,3,1672319033),(112050,7,27080,3,1672319033),(112051,7,27081,3,1672319033),(112052,7,27082,3,1672319033),(112053,7,27083,3,1672319033),(112054,7,27084,3,1672319033),(112055,7,27085,3,1672319033),(112056,7,27086,3,1672319033),(112057,7,27087,3,1672319033),(112058,7,27088,3,1672319033),(112059,7,27089,3,1672319033),(112060,7,27090,3,1672319033),(112061,7,27091,3,1672319033),(112062,7,27092,3,1672319033),(112063,7,27093,3,1672319033),(112064,7,27125,3,1672319033),(112065,7,27126,3,1672319033),(112066,7,27127,3,1672319033),(112067,7,27128,3,1672319033),(112068,7,27129,3,1672319033),(112069,7,27130,3,1672319033),(112070,7,27131,3,1672319033),(112071,7,27132,3,1672319033),(112072,7,27133,3,1672319033),(112073,7,27134,3,1672319033),(112074,7,27135,3,1672319033),(112075,7,27136,3,1672319033),(112076,7,27137,3,1672319033),(112077,7,27138,3,1672319033),(112078,7,27139,3,1672319033),(112079,7,27140,3,1672319033),(112080,7,27141,3,1672319033),(112081,7,27142,3,1672319033),(112082,7,27143,3,1672319033),(112083,7,27144,3,1672319033),(112084,7,27145,3,1672319033),(112085,7,27146,3,1672319033),(112086,7,27147,3,1672319033),(112087,7,27148,3,1672319033),(112088,7,27149,3,1672319033),(112089,7,27150,3,1672319033),(112090,7,27151,3,1672319033),(112091,7,27152,3,1672319033),(112092,7,27184,3,1672319033),(112093,7,27185,3,1672319033),(112094,7,27186,3,1672319033),(112095,7,27187,3,1672319033),(112096,7,27188,3,1672319033),(112097,7,27189,3,1672319033),(112098,7,27190,3,1672319033),(112099,7,27191,3,1672319033),(112100,7,27192,3,1672319033),(112101,7,27193,3,1672319033),(112102,7,27194,3,1672319033),(112103,7,27195,3,1672319033),(112104,7,27196,3,1672319033),(112105,7,27197,3,1672319033),(112106,7,27198,3,1672319033),(112107,7,27199,3,1672319033),(112108,7,27200,3,1672319033),(112109,7,27201,3,1672319033),(112110,7,27202,3,1672319033),(112111,7,27203,3,1672319033),(112112,7,27204,3,1672319033),(112113,7,27205,3,1672319033),(112114,7,27206,3,1672319033),(112115,7,27207,3,1672319033),(112116,7,27208,3,1672319033),(112117,7,27209,3,1672319033),(112118,7,27210,3,1672319033),(112119,7,27211,3,1672319033),(112120,7,27243,3,1672319033),(112121,7,27244,3,1672319033),(112122,7,27245,3,1672319033),(112123,7,27246,3,1672319033),(112124,7,27247,3,1672319033),(112125,7,27248,3,1672319033),(112126,7,27249,3,1672319033),(112127,7,27250,3,1672319033),(112128,7,27251,3,1672319033),(112129,7,27252,3,1672319033),(112130,7,27253,3,1672319033),(112131,7,27254,3,1672319033),(112132,7,27255,3,1672319033),(112133,7,27256,3,1672319033),(112134,7,27257,3,1672319033),(112135,7,27258,3,1672319033),(112136,7,27259,3,1672319033),(112137,7,27260,3,1672319033),(112138,7,27261,3,1672319033),(112139,7,27262,3,1672319033),(112140,7,27263,3,1672319033),(112141,7,27264,3,1672319033),(112142,7,27265,3,1672319033),(112143,7,27266,3,1672319033),(112144,7,27267,3,1672319033),(112145,7,27268,3,1672319033),(112146,7,27269,3,1672319033),(112147,7,27270,3,1672319033),(112148,7,27302,3,1672319033),(112149,7,27303,3,1672319033),(112150,7,27304,3,1672319033),(112151,7,27305,3,1672319033),(112152,7,27306,3,1672319033),(112153,7,27307,3,1672319033),(112154,7,27308,3,1672319033),(112155,7,27309,3,1672319033),(112156,7,27310,3,1672319033),(112157,7,27311,3,1672319033),(112158,7,27312,3,1672319033),(112159,7,27313,3,1672319033),(112160,7,27314,3,1672319033),(112161,7,27315,3,1672319033),(112162,7,27316,3,1672319033),(112163,7,27317,3,1672319033),(112164,7,27318,3,1672319033),(112165,7,27319,3,1672319033),(112166,7,27320,3,1672319033),(112167,7,27321,3,1672319033),(112168,7,27322,3,1672319033),(112169,7,27323,3,1672319033),(112170,7,27324,3,1672319033),(112171,7,27325,3,1672319033),(112172,7,27326,3,1672319033),(112173,7,27327,3,1672319033),(112174,7,27328,3,1672319033),(112175,7,27329,3,1672319033),(112176,7,27361,3,1672319033),(112177,7,27362,3,1672319033),(112178,7,27363,3,1672319033),(112179,7,27364,3,1672319033),(112180,7,27365,3,1672319033),(112181,7,27366,3,1672319033),(112182,7,27367,3,1672319033),(112183,7,27368,3,1672319033),(112184,7,27369,3,1672319033),(112185,7,27370,3,1672319033),(112186,7,27371,3,1672319033),(112187,7,27372,3,1672319033),(112188,7,27373,3,1672319033),(112189,7,27374,3,1672319033),(112190,7,27375,3,1672319033),(112191,7,27376,3,1672319033),(112192,7,27377,3,1672319033),(112193,7,27378,3,1672319033),(112194,7,27379,3,1672319033),(112195,7,27380,3,1672319033),(112196,7,27381,3,1672319033),(112197,7,27382,3,1672319033),(112198,7,27383,3,1672319033),(112199,7,27384,3,1672319033),(112200,7,27385,3,1672319033),(112201,7,27386,3,1672319033),(112202,7,27387,3,1672319033),(112203,7,27388,3,1672319033),(112204,7,27420,3,1672319033),(112205,7,27421,3,1672319033),(112206,7,27422,3,1672319033),(112207,7,27423,3,1672319033),(112208,7,27424,3,1672319033),(112209,7,27425,3,1672319033),(112210,7,27426,3,1672319033),(112211,7,27427,3,1672319033),(112212,7,27428,3,1672319033),(112213,7,27429,3,1672319033),(112214,7,27430,3,1672319033),(112215,7,27431,3,1672319033),(112216,7,27432,3,1672319033),(112217,7,27433,3,1672319033),(112218,7,27434,3,1672319033),(112219,7,27435,3,1672319033),(112220,7,27436,3,1672319033),(112221,7,27437,3,1672319033),(112222,7,27438,3,1672319033),(112223,7,27439,3,1672319033),(112224,7,27440,3,1672319033),(112225,7,27441,3,1672319033),(112226,7,27442,3,1672319033),(112227,7,27443,3,1672319033),(112228,7,27444,3,1672319033),(112229,7,27445,3,1672319033),(112230,7,27446,3,1672319033),(112231,7,27447,3,1672319033),(112232,7,27479,3,1672319033),(112233,7,27480,3,1672319033),(112234,7,27481,3,1672319033),(112235,7,27482,3,1672319033),(112236,7,27483,3,1672319033),(112237,7,27484,3,1672319033),(112238,7,27485,3,1672319033),(112239,7,27486,3,1672319033),(112240,7,27487,3,1672319033),(112241,7,27488,3,1672319033),(112242,7,27489,3,1672319033),(112243,7,27490,3,1672319033),(112244,7,27491,3,1672319033),(112245,7,27492,3,1672319033),(112246,7,27493,3,1672319033),(112247,7,27494,3,1672319033),(112248,7,27495,3,1672319033),(112249,7,27496,3,1672319033),(112250,7,27497,3,1672319033),(112251,7,27498,3,1672319033),(112252,7,27499,3,1672319033),(112253,7,27500,3,1672319033),(112254,7,27501,3,1672319033),(112255,7,27502,3,1672319033),(112256,7,27503,3,1672319033),(112257,7,27504,3,1672319033),(112258,7,27505,3,1672319033),(112259,7,27506,3,1672319033),(112260,7,27538,3,1672319033),(112261,7,27539,3,1672319033),(112262,7,27540,3,1672319033),(112263,7,27541,3,1672319033),(112264,7,27542,3,1672319033),(112265,7,27543,3,1672319033),(112266,7,27544,3,1672319033),(112267,7,27545,3,1672319033),(112268,7,27546,3,1672319033),(112269,7,27547,3,1672319033),(112270,7,27548,3,1672319033),(112271,7,27549,3,1672319033),(112272,7,27550,3,1672319033),(112273,7,27551,3,1672319033),(112274,7,27552,3,1672319033),(112275,7,27553,3,1672319033),(112276,7,27554,3,1672319033),(112277,7,27555,3,1672319033),(112278,7,27556,3,1672319033),(112279,7,27557,3,1672319033),(112280,7,27558,3,1672319033),(112281,7,27559,3,1672319033),(112282,7,27560,3,1672319033),(112283,7,27561,3,1672319033),(112284,7,27562,3,1672319033),(112285,7,27563,3,1672319033),(112286,7,27564,3,1672319033),(112287,7,27565,3,1672319033),(112288,7,27597,3,1672319033),(112289,7,27598,3,1672319033),(112290,7,27599,3,1672319033),(112291,7,27600,3,1672319033),(112292,7,27601,3,1672319033),(112293,7,27602,3,1672319033),(112294,7,27603,3,1672319033),(112295,7,27604,3,1672319033),(112296,7,27605,3,1672319033),(112297,7,27606,3,1672319033),(112298,7,27607,3,1672319033),(112299,7,27608,3,1672319033),(112300,7,27609,3,1672319033),(112301,7,27610,3,1672319033),(112302,7,27611,3,1672319033),(112303,7,27612,3,1672319033),(112304,7,27613,3,1672319033),(112305,7,27614,3,1672319033),(112306,7,27615,3,1672319033),(112307,7,27616,3,1672319033),(112308,7,27617,3,1672319033),(112309,7,27618,3,1672319033),(112310,7,27619,3,1672319033),(112311,7,27620,3,1672319033),(112312,7,27621,3,1672319033),(112313,7,27622,3,1672319033),(112314,7,27623,3,1672319033),(112315,7,27624,3,1672319033),(112316,7,27656,3,1672319033),(112317,7,27657,3,1672319033),(112318,7,27658,3,1672319033),(112319,7,27659,3,1672319033),(112320,7,27660,3,1672319033),(112321,7,27661,3,1672319033),(112322,7,27662,3,1672319033),(112323,7,27663,3,1672319033),(112324,7,27664,3,1672319033),(112325,7,27665,3,1672319033),(112326,7,27666,3,1672319033),(112327,7,27667,3,1672319033),(112328,7,27668,3,1672319033),(112329,7,27669,3,1672319033),(112330,7,27670,3,1672319033),(112331,7,27671,3,1672319033),(112332,7,27672,3,1672319033),(112333,7,27673,3,1672319033),(112334,7,27674,3,1672319033),(112335,7,27675,3,1672319033),(112336,7,27676,3,1672319033),(112337,7,27677,3,1672319033),(112338,7,27678,3,1672319033),(112339,7,27679,3,1672319033),(112340,7,27680,3,1672319033),(112341,7,27681,3,1672319033),(112342,7,27682,3,1672319033),(112343,7,27683,3,1672319033),(112344,7,27715,3,1672319033),(112345,7,27716,3,1672319033),(112346,7,27717,3,1672319033),(112347,7,27718,3,1672319033),(112348,7,27719,3,1672319033),(112349,7,27720,3,1672319033),(112350,7,27721,3,1672319033),(112351,7,27722,3,1672319033),(112352,7,27723,3,1672319033),(112353,7,27724,3,1672319033),(112354,7,27725,3,1672319033),(112355,7,27726,3,1672319033),(112356,7,27727,3,1672319033),(112357,7,27728,3,1672319033),(112358,7,27729,3,1672319033),(112359,7,27730,3,1672319033),(112360,7,27731,3,1672319033),(112361,7,27732,3,1672319033),(112362,7,27733,3,1672319033),(112363,7,27734,3,1672319033),(112364,7,27735,3,1672319033),(112365,7,27736,3,1672319033),(112366,7,27737,3,1672319033),(112367,7,27738,3,1672319033),(112368,7,27739,3,1672319033),(112369,7,27740,3,1672319033),(112370,7,27741,3,1672319033),(112371,7,27742,3,1672319033),(112372,7,27774,3,1672319033),(112373,7,27775,3,1672319033),(112374,7,27776,3,1672319033),(112375,7,27777,3,1672319033),(112376,7,27778,3,1672319033),(112377,7,27779,3,1672319033),(112378,7,27780,3,1672319033),(112379,7,27781,3,1672319033),(112380,7,27782,3,1672319033),(112381,7,27783,3,1672319033),(112382,7,27784,3,1672319033),(112383,7,27785,3,1672319033),(112384,7,27786,3,1672319033),(112385,7,27787,3,1672319033),(112386,7,27788,3,1672319033),(112387,7,27789,3,1672319033),(112388,7,27790,3,1672319033),(112389,7,27791,3,1672319033),(112390,7,27792,3,1672319033),(112391,7,27793,3,1672319033),(112392,7,27794,3,1672319033),(112393,7,27795,3,1672319033),(112394,7,27796,3,1672319033),(112395,7,27797,3,1672319033),(112396,7,27798,3,1672319033),(112397,7,27799,3,1672319033),(112398,7,27800,3,1672319033),(112399,7,27801,3,1672319033),(112400,7,27833,3,1672319033),(112401,7,27834,3,1672319033),(112402,7,27835,3,1672319033),(112403,7,27836,3,1672319033),(112404,7,27837,3,1672319033),(112405,7,27838,3,1672319033),(112406,7,27839,3,1672319033),(112407,7,27840,3,1672319033),(112408,7,27841,3,1672319033),(112409,7,27842,3,1672319033),(112410,7,27843,3,1672319033),(112411,7,27844,3,1672319033),(112412,7,27845,3,1672319033),(112413,7,27846,3,1672319033),(112414,7,27847,3,1672319033),(112415,7,27848,3,1672319033),(112416,7,27849,3,1672319033),(112417,7,27850,3,1672319033),(112418,7,27851,3,1672319033),(112419,7,27852,3,1672319033),(112420,7,27853,3,1672319033),(112421,7,27854,3,1672319033),(112422,7,27855,3,1672319033),(112423,7,27856,3,1672319033),(112424,7,27857,3,1672319033),(112425,7,27858,3,1672319033),(112426,7,27859,3,1672319033),(112427,7,27860,3,1672319033),(112428,7,27892,3,1672319033),(112429,7,27893,3,1672319033),(112430,7,27894,3,1672319033),(112431,7,27895,3,1672319033),(112432,7,27896,3,1672319033),(112433,7,27897,3,1672319033),(112434,7,27898,3,1672319033),(112435,7,27899,3,1672319033),(112436,7,27900,3,1672319033),(112437,7,27901,3,1672319033),(112438,7,27902,3,1672319033),(112439,7,27903,3,1672319033),(112440,7,27904,3,1672319033),(112441,7,27905,3,1672319033),(112442,7,27906,3,1672319033),(112443,7,27907,3,1672319033),(112444,7,27908,3,1672319033),(112445,7,27909,3,1672319033),(112446,7,27910,3,1672319033),(112447,7,27911,3,1672319033),(112448,7,27912,3,1672319033),(112449,7,27913,3,1672319033),(112450,7,27914,3,1672319033),(112451,7,27915,3,1672319033),(112452,7,27916,3,1672319033),(112453,7,27917,3,1672319033),(112454,7,27918,3,1672319033),(112455,7,27919,3,1672319033),(112456,7,27951,3,1672319033),(112457,7,27952,3,1672319033),(112458,7,27953,3,1672319033),(112459,7,27954,3,1672319033),(112460,7,27955,3,1672319033),(112461,7,27956,3,1672319033),(112462,7,27957,3,1672319033),(112463,7,27958,3,1672319033),(112464,7,27959,3,1672319033),(112465,7,27960,3,1672319033),(112466,7,27961,3,1672319033),(112467,7,27962,3,1672319033),(112468,7,27963,3,1672319033),(112469,7,27964,3,1672319033),(112470,7,27965,3,1672319033),(112471,7,27966,3,1672319033),(112472,7,27967,3,1672319033),(112473,7,27968,3,1672319033),(112474,7,27969,3,1672319033),(112475,7,27970,3,1672319033),(112476,7,27971,3,1672319033),(112477,7,27972,3,1672319033),(112478,7,27973,3,1672319033),(112479,7,27974,3,1672319033),(112480,7,27975,3,1672319033),(112481,7,27976,3,1672319033),(112482,7,27977,3,1672319033),(112483,7,27978,3,1672319033),(112484,7,28010,3,1672319033),(112485,7,28011,3,1672319033),(112486,7,28012,3,1672319033),(112487,7,28013,3,1672319033),(112488,7,28014,3,1672319033),(112489,7,28015,3,1672319033),(112490,7,28016,3,1672319033),(112491,7,28017,3,1672319033),(112492,7,28018,3,1672319033),(112493,7,28019,3,1672319033),(112494,7,28020,3,1672319033),(112495,7,28021,3,1672319033),(112496,7,28022,3,1672319033),(112497,7,28023,3,1672319033),(112498,7,28024,3,1672319033),(112499,7,28025,3,1672319033),(112500,7,28026,3,1672319033),(112501,7,28027,3,1672319033),(112502,7,28028,3,1672319033),(112503,7,28029,3,1672319033),(112504,7,28030,3,1672319033),(112505,7,28031,3,1672319033),(112506,7,28032,3,1672319033),(112507,7,28033,3,1672319033),(112508,7,28034,3,1672319033),(112509,7,28035,3,1672319033),(112510,7,28036,3,1672319033),(112511,7,28037,3,1672319033),(112512,7,28069,3,1672319033),(112513,7,28070,3,1672319033),(112514,7,28071,3,1672319033),(112515,7,28072,3,1672319033),(112516,7,28073,3,1672319033),(112517,7,28074,3,1672319033),(112518,7,28075,3,1672319033),(112519,7,28076,3,1672319033),(112520,7,28077,3,1672319033),(112521,7,28078,3,1672319033),(112522,7,28079,3,1672319033),(112523,7,28080,3,1672319033),(112524,7,28081,3,1672319033),(112525,7,28082,3,1672319033),(112526,7,28083,3,1672319033),(112527,7,28084,3,1672319033),(112528,7,28085,3,1672319033),(112529,7,28086,3,1672319033),(112530,7,28087,3,1672319033),(112531,7,28088,3,1672319033),(112532,7,28089,3,1672319033),(112533,7,28090,3,1672319033),(112534,7,28091,3,1672319033),(112535,7,28092,3,1672319033),(112536,7,28093,3,1672319033),(112537,7,28094,3,1672319033),(112538,7,28095,3,1672319033),(112539,7,28096,3,1672319033),(112540,7,28128,3,1672319033),(112541,7,28129,3,1672319033),(112542,7,28130,3,1672319033),(112543,7,28131,3,1672319033),(112544,7,28132,3,1672319033),(112545,7,28133,3,1672319033),(112546,7,28134,3,1672319033),(112547,7,28135,3,1672319033),(112548,7,28136,3,1672319033),(112549,7,28137,3,1672319033),(112550,7,28138,3,1672319033),(112551,7,28139,3,1672319033),(112552,7,28140,3,1672319033),(112553,7,28141,3,1672319033),(112554,7,28142,3,1672319033),(112555,7,28143,3,1672319033),(112556,7,28144,3,1672319033),(112557,7,28145,3,1672319033),(112558,7,28146,3,1672319033),(112559,7,28147,3,1672319033),(112560,7,28148,3,1672319033),(112561,7,28149,3,1672319033),(112562,7,28150,3,1672319033),(112563,7,28151,3,1672319033),(112564,7,28152,3,1672319033),(112565,7,28153,3,1672319033),(112566,7,28154,3,1672319033),(112567,7,28155,3,1672319033),(112568,7,28187,3,1672319033),(112569,7,28188,3,1672319033),(112570,7,28189,3,1672319033),(112571,7,28190,3,1672319033),(112572,7,28191,3,1672319033),(112573,7,28192,3,1672319033),(112574,7,28193,3,1672319033),(112575,7,28194,3,1672319033),(112576,7,28195,3,1672319033),(112577,7,28196,3,1672319033),(112578,7,28197,3,1672319033),(112579,7,28198,3,1672319033),(112580,7,28199,3,1672319033),(112581,7,28200,3,1672319033),(112582,7,28201,3,1672319033),(112583,7,28202,3,1672319033),(112584,7,28203,3,1672319033),(112585,7,28204,3,1672319033),(112586,7,28205,3,1672319033),(112587,7,28206,3,1672319033),(112588,7,28207,3,1672319033),(112589,7,28208,3,1672319033),(112590,7,28209,3,1672319033),(112591,7,28210,3,1672319033),(112592,7,28211,3,1672319033),(112593,7,28212,3,1672319033),(112594,7,28213,3,1672319033),(112595,7,28214,3,1672319033),(112596,7,28223,3,1672319033),(112597,7,28224,3,1672319033),(112598,7,28225,3,1672319033),(112599,7,28226,3,1672319033),(112600,7,28227,3,1672319033),(112601,7,28228,3,1672319033),(112602,7,28229,3,1672319033),(112603,7,28230,3,1672319033),(112604,7,28231,3,1672319033),(112605,7,28232,3,1672319033),(112606,7,28233,3,1672319033),(112607,7,28234,3,1672319033),(112608,7,28235,3,1672319033),(112609,7,28236,3,1672319033),(112610,7,28237,3,1672319033),(112611,7,28238,3,1672319033),(112612,7,28239,3,1672319033),(112613,7,28242,3,1672319033),(112614,7,28243,3,1672319033),(112615,7,28246,3,1672319033),(112616,7,28247,3,1672319033),(112617,7,28248,3,1672319033),(112618,7,28249,3,1672319033),(112619,7,28250,3,1672319033),(112620,7,28251,3,1672319033),(112621,7,28252,3,1672319033),(112622,7,28253,3,1672319033),(112623,7,28255,3,1672319033),(112624,7,28258,3,1672319033),(112625,7,28259,3,1672319033),(112626,7,28262,3,1672319033),(112627,7,28263,3,1672319033),(112628,7,28264,3,1672319033),(112629,7,28265,3,1672319033),(112630,7,28266,3,1672319033),(112631,7,28267,3,1672319033),(112632,7,28268,3,1672319033),(112633,7,28269,3,1672319033),(112634,7,28270,3,1672319033),(112635,7,28271,3,1672319033),(112636,7,28272,3,1672319033),(112637,7,28273,3,1672319033),(112638,7,28274,3,1672319033),(112639,7,28275,3,1672319033),(112640,7,28276,3,1672319033),(112641,7,28277,3,1672319033),(112642,7,28278,3,1672319033),(112643,7,28279,3,1672319033),(112644,7,28280,3,1672319033),(112645,7,28281,3,1672319033),(112646,7,28282,3,1672319033),(112647,7,28283,3,1672319033),(112648,7,28284,3,1672319033),(112649,7,28285,3,1672319033),(112650,7,28286,3,1672319033),(112651,7,28287,3,1672319033),(112652,7,28288,3,1672319033),(112653,7,28289,3,1672319033),(112654,7,28290,3,1672319033),(112655,7,28291,3,1672319033),(112656,7,28292,3,1672319033),(112657,7,28293,3,1672319033),(112658,7,28294,3,1672319033),(112659,7,28296,3,1672319033),(112660,7,28297,3,1672319033),(112661,7,28299,3,1672319033),(112662,7,28300,3,1672319033),(112663,7,28301,3,1672319033),(112664,7,28304,3,1672319033),(112665,7,28306,3,1672319033),(112666,7,28307,3,1672319033),(112667,7,28308,3,1672319033),(112668,7,28309,3,1672319033),(112669,7,28310,3,1672319033),(112670,7,28311,3,1672319033),(112671,7,28315,3,1672319033),(112672,7,28316,3,1672319033),(112673,7,28317,3,1672319033),(112674,7,28318,3,1672319033),(112675,7,28319,3,1672319033),(112676,7,28320,3,1672319033),(112677,7,28326,3,1672319033),(112678,7,28336,3,1672319033),(112679,7,28337,3,1672319033),(112680,7,28338,3,1672319033),(112681,7,28339,3,1672319033),(112682,7,28340,3,1672319033),(112683,7,28341,3,1672319033),(112684,7,28342,3,1672319033),(112685,7,28343,3,1672319033),(112686,7,28344,3,1672319033),(112687,7,28345,3,1672319033),(112688,7,28346,3,1672319033),(112689,7,28347,3,1672319033),(112690,7,28348,3,1672319033),(112691,7,28349,3,1672319033),(112692,7,28360,3,1672319033),(112693,7,28361,3,1672319033),(112694,7,28362,3,1672319033),(112695,7,28363,3,1672319033),(112696,7,28364,3,1672319033),(112697,7,28365,3,1672319033),(112698,7,28367,3,1672319033),(112699,7,28368,3,1672319033),(112700,7,28369,3,1672319033),(112701,7,28370,3,1672319033),(112702,7,28371,3,1672319033),(112703,7,28372,3,1672319033),(112704,7,28373,3,1672319033),(112705,7,28374,3,1672319033),(112706,7,28375,3,1672319033),(112707,7,28376,3,1672319033),(112708,7,28377,3,1672319033),(112709,7,28378,3,1672319033),(112710,7,28379,3,1672319033),(112711,7,28380,3,1672319033),(112712,7,28381,3,1672319033),(112713,7,28382,3,1672319033),(112714,7,28383,3,1672319033),(112715,7,28384,3,1672319033),(112716,7,28385,3,1672319033),(112717,7,28386,3,1672319033),(112718,7,28387,3,1672319033),(112719,7,28388,3,1672319033),(112720,7,28389,3,1672319033),(112721,7,28390,3,1672319033),(112722,7,28391,3,1672319033),(112723,7,28392,3,1672319033),(112724,7,28393,3,1672319033),(112725,7,28394,3,1672319033),(112726,7,28395,3,1672319033),(112727,7,28396,3,1672319033),(112728,7,28398,3,1672319033),(112729,7,28399,3,1672319033),(112730,7,28400,3,1672319033),(112731,7,28401,3,1672319033),(112732,7,28402,3,1672319033),(112733,7,28403,3,1672319033),(112734,7,28404,3,1672319033),(112735,7,28405,3,1672319033),(112736,7,28406,3,1672319033),(112737,7,28407,3,1672319033),(112738,7,28408,3,1672319033),(112739,7,28409,3,1672319033),(112740,7,28410,3,1672319033),(112741,7,28411,3,1672319033),(112742,7,28412,3,1672319033),(112743,7,28413,3,1672319033),(112744,7,28414,3,1672319033),(112745,7,28415,3,1672319033),(112746,7,28416,3,1672319033),(112747,7,28417,3,1672319033),(112748,7,28418,3,1672319033),(112749,7,28419,3,1672319033),(112750,7,28420,3,1672319033),(112751,7,28421,3,1672319033),(112752,7,28422,3,1672319033),(112753,7,28423,3,1672319033),(112754,7,28424,3,1672319033),(112755,7,28425,3,1672319033),(112756,7,28684,3,1672319033),(112757,7,28695,3,1672319033),(112758,7,28714,3,1672319033),(112759,7,28715,3,1672319033),(112760,7,28716,3,1672319033),(112761,7,28717,3,1672319033),(112762,7,28718,3,1672319033),(112763,7,28719,3,1672319033),(112764,7,28721,3,1672319033),(112765,7,28722,3,1672319033),(112766,7,28723,3,1672319033),(112767,7,28724,3,1672319033),(112768,7,28725,3,1672319033),(112769,7,28726,3,1672319033),(112770,7,28727,3,1672319033),(112771,7,28728,3,1672319033),(112772,7,28729,3,1672319033),(112773,7,28730,3,1672319033),(112774,7,28731,3,1672319033),(112775,7,28732,3,1672319033),(112776,7,28733,3,1672319033),(112777,7,28734,3,1672319033),(112778,7,28735,3,1672319033),(112779,7,28736,3,1672319033),(112780,7,28737,3,1672319033),(112781,7,28738,3,1672319033),(112782,7,28739,3,1672319033),(112783,7,28740,3,1672319033),(112784,7,28741,3,1672319033),(112785,7,28742,3,1672319033),(112786,7,28743,3,1672319033),(112787,7,28744,3,1672319033),(112788,7,28746,3,1672319033),(112789,7,28747,3,1672319033),(112790,7,28748,3,1672319033),(112791,7,28749,3,1672319033),(112792,7,28750,3,1672319033),(112793,7,28751,3,1672319033),(112794,7,28752,3,1672319033),(112795,7,28753,3,1672319033),(112796,7,28754,3,1672319033),(112797,7,28755,3,1672319033),(112798,7,28756,3,1672319033),(112799,7,28757,3,1672319033),(112800,7,28758,3,1672319033),(112801,7,28759,3,1672319033),(112802,7,28760,3,1672319033),(112803,7,28761,3,1672319033),(112804,7,28762,3,1672319033),(112805,7,28771,3,1672319033),(112806,7,28772,3,1672319033),(112807,7,28773,3,1672319033),(112808,7,28774,3,1672319033),(112809,7,28775,3,1672319033),(112810,7,28776,3,1672319033),(112811,7,28777,3,1672319033),(112812,7,28779,3,1672319033),(112813,7,28780,3,1672319033),(112814,7,28781,3,1672319033),(112815,7,28782,3,1672319033),(112816,7,28783,3,1672319033),(112817,7,28784,3,1672319033),(112818,7,28785,3,1672319033),(112819,7,28786,3,1672319033),(112820,7,28787,3,1672319033),(112821,7,28788,3,1672319033),(112822,7,28789,3,1672319033),(112823,7,28790,3,1672319033),(112824,7,28791,3,1672319033),(112825,7,28792,3,1672319033),(112826,7,28793,3,1672319033),(112827,7,28794,3,1672319033),(112828,7,28795,3,1672319033),(112829,7,28796,3,1672319033),(112830,7,28797,3,1672319033),(112831,7,28798,3,1672319033),(112832,7,28799,3,1672319033),(112833,7,28800,3,1672319033),(112834,7,28801,3,1672319033),(112835,7,28803,3,1672319033),(112836,7,28804,3,1672319033),(112837,7,28805,3,1672319033),(112838,7,28806,3,1672319033),(112839,7,28807,3,1672319033),(112840,7,28808,3,1672319033),(112841,7,28809,3,1672319033),(112842,7,28810,3,1672319033),(112843,7,28811,3,1672319033),(112844,7,28813,3,1672319033),(112845,7,28814,3,1672319033),(112846,7,28815,3,1672319033),(112847,7,28816,3,1672319033),(112848,7,28817,3,1672319033),(112849,7,28818,3,1672319033),(112850,7,28819,3,1672319033),(112851,7,28820,3,1672319033),(112852,7,28821,3,1672319033),(112853,7,28822,3,1672319033),(112854,7,28823,3,1672319033),(112855,7,28824,3,1672319033),(112856,7,28825,3,1672319033),(112857,7,28826,3,1672319033),(112858,7,28827,3,1672319033),(112859,7,28828,3,1672319033),(112860,7,28829,3,1672319033),(112861,7,28830,3,1672319033),(112862,7,28831,3,1672319033),(112863,7,28832,3,1672319033),(112864,7,28833,3,1672319033),(112865,7,28834,3,1672319033),(112866,7,28835,3,1672319033),(112867,7,28836,3,1672319033),(112868,7,28837,3,1672319033),(112869,7,28838,3,1672319033),(112870,7,28839,3,1672319033),(112871,7,28840,3,1672319033),(112872,7,28841,3,1672319033),(112873,7,28842,3,1672319033),(112874,7,28843,3,1672319033),(112875,7,28844,3,1672319033),(112876,7,28845,3,1672319033),(112877,7,28846,3,1672319033),(112878,7,28847,3,1672319033),(112879,7,28848,3,1672319033),(112880,7,28849,3,1672319033),(112881,7,28850,3,1672319033),(112882,7,28851,3,1672319033),(112883,7,28852,3,1672319033),(112884,7,28853,3,1672319033),(112885,7,28854,3,1672319033),(112886,7,28855,3,1672319033),(112887,7,28856,3,1672319033),(112888,7,28857,3,1672319033),(112889,7,28859,3,1672319033),(112890,7,28860,3,1672319033),(112891,7,28861,3,1672319033),(112892,7,28862,3,1672319033),(112893,7,28863,3,1672319033),(112894,7,28864,3,1672319033),(112895,7,28865,3,1672319033),(112896,7,28866,3,1672319033),(112897,7,28867,3,1672319033),(112898,7,28868,3,1672319033),(112899,7,28869,3,1672319033),(112900,7,28870,3,1672319033),(112901,7,28871,3,1672319033),(112902,7,28873,3,1672319033),(112903,7,28874,3,1672319033),(112904,7,28875,3,1672319033),(112905,7,28876,3,1672319033),(112906,7,28877,3,1672319033),(112907,7,28878,3,1672319033),(112908,7,28879,3,1672319033),(112909,7,28880,3,1672319033),(112910,7,28881,3,1672319033),(112911,7,28882,3,1672319033),(112912,7,28883,3,1672319033),(112913,7,28884,3,1672319033),(112914,7,28885,3,1672319033),(112915,7,28887,3,1672319033),(112916,7,28888,3,1672319033),(112917,7,28889,3,1672319033),(112918,7,28890,3,1672319033),(112919,7,28891,3,1672319033),(112920,7,28892,3,1672319033),(112921,7,28893,3,1672319033),(112922,7,28894,3,1672319033),(112923,7,28895,3,1672319033),(112924,7,28896,3,1672319033),(112925,7,28897,3,1672319033),(112926,7,28898,3,1672319033),(112927,7,28899,3,1672319033),(112928,7,28900,3,1672319033),(112929,7,28901,3,1672319033),(112930,7,28902,3,1672319033),(112931,7,28903,3,1672319033),(112932,7,28904,3,1672319033),(112933,7,28905,3,1672319033),(112934,7,28906,3,1672319033),(112935,7,28907,3,1672319033),(112936,7,28908,3,1672319033),(112937,7,28909,3,1672319033),(112938,7,28910,3,1672319033),(112939,7,28911,3,1672319033),(112940,7,28912,3,1672319033),(112941,7,28913,3,1672319033),(112942,7,28914,3,1672319033),(112943,7,28915,3,1672319033),(112944,7,28916,3,1672319033),(112945,7,28917,3,1672319033),(112946,7,28918,3,1672319033),(112947,7,28919,3,1672319033),(112948,7,28920,3,1672319033),(112949,7,28921,3,1672319033),(112950,7,28922,3,1672319033),(112951,7,28923,3,1672319033),(112952,7,28924,3,1672319033),(112953,7,28925,3,1672319033),(112954,7,28926,3,1672319033),(112955,7,28927,3,1672319033),(112956,7,28928,3,1672319033),(112957,7,28929,3,1672319033),(112958,7,28930,3,1672319033),(112959,7,28931,3,1672319033),(112960,7,28932,3,1672319033),(112961,7,28933,3,1672319033),(112962,7,28934,3,1672319033),(112963,7,28935,3,1672319033),(112964,7,28936,3,1672319033),(112965,7,28937,3,1672319033),(112966,7,28938,3,1672319033),(112967,7,28939,3,1672319033),(112968,7,28940,3,1672319033),(112969,7,28941,3,1672319033),(112970,7,28942,3,1672319033),(112971,7,28943,3,1672319033),(112972,7,28944,3,1672319033),(112973,7,28945,3,1672319033),(112974,7,28946,3,1672319033),(112975,7,28947,3,1672319033),(112976,7,28948,3,1672319033),(112977,7,28949,3,1672319033),(112978,7,28950,3,1672319033),(112979,7,28951,3,1672319033),(112980,7,28952,3,1672319033),(112981,7,28953,3,1672319033),(112982,7,28954,3,1672319033),(112983,7,28955,3,1672319033),(112984,7,28956,3,1672319033),(112985,7,28957,3,1672319033),(112986,7,28958,3,1672319033),(112987,7,28959,3,1672319033),(112988,7,28960,3,1672319033),(112989,7,28961,3,1672319033),(112990,7,28962,3,1672319033),(112991,7,28963,3,1672319033),(112992,7,28964,3,1672319033),(112993,7,28965,3,1672319033),(112994,7,28966,3,1672319033),(112995,7,28967,3,1672319033),(112996,7,28968,3,1672319033),(112997,7,28969,3,1672319033),(112998,7,28970,3,1672319033),(112999,7,28971,3,1672319033),(113000,7,28972,3,1672319033),(113001,7,28973,3,1672319033),(113002,7,28974,3,1672319033),(113003,7,28975,3,1672319033),(113004,7,28976,3,1672319033),(113005,7,28977,3,1672319033),(113006,7,28978,3,1672319033),(113007,7,28979,3,1672319033),(113008,7,28980,3,1672319033),(113009,7,28981,3,1672319033),(113010,7,28982,3,1672319033),(113011,7,28983,3,1672319033),(113012,7,28984,3,1672319033),(113013,7,28985,3,1672319033),(113014,7,28986,3,1672319033),(113015,7,28988,3,1672319033),(113016,7,28989,3,1672319033),(113017,7,28990,3,1672319033),(113018,7,28991,3,1672319033),(113019,7,28992,3,1672319033),(113020,7,28993,3,1672319033),(113021,7,28994,3,1672319033),(113022,7,28995,3,1672319033),(113023,7,28996,3,1672319033),(113024,7,28997,3,1672319033),(113025,7,28998,3,1672319033),(113026,7,28999,3,1672319033),(113027,7,29000,3,1672319033),(113028,7,29001,3,1672319033),(113029,7,29002,3,1672319033),(113030,7,29003,3,1672319033),(113031,7,29004,3,1672319033),(113032,7,29005,3,1672319033),(113033,7,29006,3,1672319033),(113034,7,29007,3,1672319033),(113035,7,29008,3,1672319033),(113036,7,29009,3,1672319033),(113037,7,29010,3,1672319033),(113038,7,29012,3,1672319033),(113039,7,29013,3,1672319033),(113040,7,29014,3,1672319033),(113041,7,29015,3,1672319033),(113042,7,29016,3,1672319033),(113043,7,29017,3,1672319033),(113044,7,29018,3,1672319033),(113045,7,29019,3,1672319033),(113046,7,29020,3,1672319033),(113047,7,29021,3,1672319033),(113048,7,29022,3,1672319033),(113049,7,29023,3,1672319033),(113050,7,29024,3,1672319033),(113051,7,29025,3,1672319033),(113052,7,29026,3,1672319033),(113053,7,29027,3,1672319033),(113054,7,29028,3,1672319033),(113055,7,29029,3,1672319033),(113056,7,29030,3,1672319033),(113057,7,29031,3,1672319033),(113058,7,29032,3,1672319033),(113059,7,29033,3,1672319033),(113060,7,29035,3,1672319033),(113061,7,29036,3,1672319033),(113062,7,29037,3,1672319033),(113063,7,29038,3,1672319033),(113064,7,29039,3,1672319033),(113065,7,29040,3,1672319033),(113066,7,29041,3,1672319033),(113067,7,29042,3,1672319033),(113068,7,29043,3,1672319033),(113069,7,29044,3,1672319033),(113070,7,29045,3,1672319033),(113071,7,29046,3,1672319033),(113072,7,29047,3,1672319033),(113073,7,29048,3,1672319033),(113074,7,29049,3,1672319033),(113075,7,29050,3,1672319033),(113076,7,29051,3,1672319033),(113077,7,29052,3,1672319033),(113078,7,29053,3,1672319033),(113079,7,29054,3,1672319033),(113080,7,29055,3,1672319033),(113081,7,29056,3,1672319033),(113082,7,29057,3,1672319033),(113083,7,29059,3,1672319033),(113084,7,29060,3,1672319033),(113085,7,29061,3,1672319033),(113086,7,29062,3,1672319033),(113087,7,29063,3,1672319033),(113088,7,29064,3,1672319033),(113089,7,29065,3,1672319033),(113090,7,29066,3,1672319033),(113091,7,29067,3,1672319033),(113092,7,29068,3,1672319033),(113093,7,29069,3,1672319033),(113094,7,29070,3,1672319033),(113095,7,29071,3,1672319033),(113096,7,29072,3,1672319033),(113097,7,29073,3,1672319033),(113098,7,29074,3,1672319033),(113099,7,29075,3,1672319033),(113100,7,29076,3,1672319033),(113101,7,29077,3,1672319033),(113102,7,29078,3,1672319033),(113103,7,29079,3,1672319033),(113104,7,29080,3,1672319033),(113105,7,29081,3,1672319033),(113106,7,29083,3,1672319033),(113107,7,29084,3,1672319033),(113108,7,29085,3,1672319033),(113109,7,29086,3,1672319033),(113110,7,29087,3,1672319033),(113111,7,29088,3,1672319033),(113112,7,29089,3,1672319033),(113113,7,29090,3,1672319033),(113114,7,29091,3,1672319033),(113115,7,29092,3,1672319033),(113116,7,29093,3,1672319033),(113117,7,29094,3,1672319033),(113118,7,29095,3,1672319033),(113119,7,29096,3,1672319033),(113120,7,29097,3,1672319033),(113121,7,29098,3,1672319033),(113122,7,29099,3,1672319033),(113123,7,29100,3,1672319033),(113124,7,29101,3,1672319033),(113125,7,29102,3,1672319033),(113126,7,29103,3,1672319033),(113127,7,29104,3,1672319033),(113128,7,29105,3,1672319033),(113129,7,29107,3,1672319033),(113130,7,29108,3,1672319033),(113131,7,29109,3,1672319033),(113132,7,29110,3,1672319033),(113133,7,29111,3,1672319033),(113134,7,29112,3,1672319033),(113135,7,29113,3,1672319033),(113136,7,29114,3,1672319033),(113137,7,29115,3,1672319033),(113138,7,29116,3,1672319033),(113139,7,29117,3,1672319033),(113140,7,29118,3,1672319033),(113141,7,29119,3,1672319033),(113142,7,29120,3,1672319033),(113143,7,29121,3,1672319033),(113144,7,29122,3,1672319033),(113145,7,29123,3,1672319033),(113146,7,29124,3,1672319033),(113147,7,29125,3,1672319033),(113148,7,29126,3,1672319033),(113149,7,29127,3,1672319033),(113150,7,29128,3,1672319033),(113151,7,29129,3,1672319033),(113152,7,29131,3,1672319033),(113153,7,29132,3,1672319033),(113154,7,29133,3,1672319033),(113155,7,29134,3,1672319033),(113156,7,29135,3,1672319033),(113157,7,29136,3,1672319033),(113158,7,29137,3,1672319033),(113159,7,29138,3,1672319033),(113160,7,29139,3,1672319033),(113161,7,29140,3,1672319033),(113162,7,29141,3,1672319033),(113163,7,29142,3,1672319033),(113164,7,29143,3,1672319033),(113165,7,29144,3,1672319033),(113166,7,29145,3,1672319033),(113167,7,29146,3,1672319033),(113168,7,29147,3,1672319033),(113169,7,29148,3,1672319033),(113170,7,29149,3,1672319033),(113171,7,29150,3,1672319033),(113172,7,29151,3,1672319033),(113173,7,29152,3,1672319033),(113174,7,29153,3,1672319033),(113175,7,29155,3,1672319033),(113176,7,29156,3,1672319033),(113177,7,29157,3,1672319033),(113178,7,29158,3,1672319033),(113179,7,29159,3,1672319033),(113180,7,29160,3,1672319033),(113181,7,29161,3,1672319033),(113182,7,29162,3,1672319033),(113183,7,29163,3,1672319033),(113184,7,29164,3,1672319033),(113185,7,29165,3,1672319033),(113186,7,29166,3,1672319033),(113187,7,29167,3,1672319033),(113188,7,29168,3,1672319033),(113189,7,29169,3,1672319033),(113190,7,29170,3,1672319033),(113191,7,29171,3,1672319033),(113192,7,29172,3,1672319033),(113193,7,29173,3,1672319033),(113194,7,29174,3,1672319033),(113195,7,29175,3,1672319033),(113196,7,29176,3,1672319033),(113197,7,29177,3,1672319033),(113198,7,29179,3,1672319033),(113199,7,29180,3,1672319033),(113200,7,29181,3,1672319033),(113201,7,29182,3,1672319033),(113202,7,29183,3,1672319033),(113203,7,29184,3,1672319033),(113204,7,29185,3,1672319033),(113205,7,29186,3,1672319033),(113206,7,29187,3,1672319033),(113207,7,29188,3,1672319033),(113208,7,29189,3,1672319033),(113209,7,29190,3,1672319033),(113210,7,29191,3,1672319033),(113211,7,29192,3,1672319033),(113212,7,29193,3,1672319033),(113213,7,29194,3,1672319033),(113214,7,29195,3,1672319033),(113215,7,29196,3,1672319033),(113216,7,29197,3,1672319033),(113217,7,29198,3,1672319033),(113218,7,29199,3,1672319033),(113219,7,29200,3,1672319033),(113220,7,29202,3,1672319033),(113221,7,29203,3,1672319033),(113222,7,29204,3,1672319033),(113223,7,29205,3,1672319033),(113224,7,29206,3,1672319033),(113225,7,29207,3,1672319033),(113226,7,29208,3,1672319033),(113227,7,29209,3,1672319033),(113228,7,29210,3,1672319033),(113229,7,29211,3,1672319033),(113230,7,29212,3,1672319033),(113231,7,29213,3,1672319033),(113232,7,29214,3,1672319033),(113233,7,29215,3,1672319033),(113234,7,29216,3,1672319033),(113235,7,29217,3,1672319033),(113236,7,29218,3,1672319033),(113237,7,29219,3,1672319033),(113238,7,29220,3,1672319033),(113239,7,29221,3,1672319033),(113240,7,29222,3,1672319033),(113241,7,29223,3,1672319033),(113242,7,29224,3,1672319033),(113243,7,29226,3,1672319033),(113244,7,29227,3,1672319033),(113245,7,29228,3,1672319033),(113246,7,29229,3,1672319033),(113247,7,29230,3,1672319033),(113248,7,29231,3,1672319033),(113249,7,29232,3,1672319033),(113250,7,29233,3,1672319033),(113251,7,29234,3,1672319033),(113252,7,29235,3,1672319033),(113253,7,29236,3,1672319033),(113254,7,29237,3,1672319033),(113255,7,29238,3,1672319033),(113256,7,29239,3,1672319033),(113257,7,29240,3,1672319033),(113258,7,29241,3,1672319033),(113259,7,29242,3,1672319033),(113260,7,29243,3,1672319033),(113261,7,29244,3,1672319033),(113262,7,29245,3,1672319033),(113263,7,29246,3,1672319033),(113264,7,29247,3,1672319033),(113265,7,29249,3,1672319033),(113266,7,29250,3,1672319033),(113267,7,29251,3,1672319033),(113268,7,29252,3,1672319033),(113269,7,29253,3,1672319033),(113270,7,29254,3,1672319033),(113271,7,29255,3,1672319033),(113272,7,29256,3,1672319033),(113273,7,29257,3,1672319033),(113274,7,29258,3,1672319033),(113275,7,29259,3,1672319033),(113276,7,29260,3,1672319033),(113277,7,29261,3,1672319033),(113278,7,29262,3,1672319033),(113279,7,29263,3,1672319033),(113280,7,29264,3,1672319033),(113281,7,29265,3,1672319033),(113282,7,29266,3,1672319033),(113283,7,29267,3,1672319033),(113284,7,29268,3,1672319033),(113285,7,29269,3,1672319033),(113286,7,29270,3,1672319033),(113287,7,29272,3,1672319033),(113288,7,29273,3,1672319033),(113289,7,29274,3,1672319033),(113290,7,29275,3,1672319033),(113291,7,29276,3,1672319033),(113292,7,29277,3,1672319033),(113293,7,29278,3,1672319033),(113294,7,29279,3,1672319033),(113295,7,29280,3,1672319033),(113296,7,29281,3,1672319033),(113297,7,29282,3,1672319033),(113298,7,29283,3,1672319033),(113299,7,29284,3,1672319033),(113300,7,29285,3,1672319033),(113301,7,29286,3,1672319033),(113302,7,29287,3,1672319033),(113303,7,29288,3,1672319033),(113304,7,29289,3,1672319033),(113305,7,29290,3,1672319033),(113306,7,29291,3,1672319033),(113307,7,29292,3,1672319033),(113308,7,29293,3,1672319033),(113309,7,29295,3,1672319033),(113310,7,29296,3,1672319033),(113311,7,29297,3,1672319033),(113312,7,29298,3,1672319033),(113313,7,29299,3,1672319033),(113314,7,29300,3,1672319033),(113315,7,29301,3,1672319033),(113316,7,29302,3,1672319033),(113317,7,29303,3,1672319033),(113318,7,29304,3,1672319033),(113319,7,29305,3,1672319033),(113320,7,29306,3,1672319033),(113321,7,29307,3,1672319033),(113322,7,29308,3,1672319033),(113323,7,29309,3,1672319033),(113324,7,29310,3,1672319033),(113325,7,29311,3,1672319033),(113326,7,29312,3,1672319033),(113327,7,29313,3,1672319033),(113328,7,29314,3,1672319033),(113329,7,29315,3,1672319033),(113330,7,29316,3,1672319033),(113331,7,29318,3,1672319033),(113332,7,29319,3,1672319033),(113333,7,29320,3,1672319033),(113334,7,29321,3,1672319033),(113335,7,29322,3,1672319033),(113336,7,29323,3,1672319033),(113337,7,29324,3,1672319033),(113338,7,29325,3,1672319033),(113339,7,29326,3,1672319033),(113340,7,29327,3,1672319033),(113341,7,29328,3,1672319033),(113342,7,29329,3,1672319033),(113343,7,29330,3,1672319033),(113344,7,29331,3,1672319033),(113345,7,29332,3,1672319033),(113346,7,29333,3,1672319033),(113347,7,29334,3,1672319033),(113348,7,29335,3,1672319033),(113349,7,29336,3,1672319033),(113350,7,29337,3,1672319033),(113351,7,29338,3,1672319033),(113352,7,29339,3,1672319033),(113353,7,29341,3,1672319033),(113354,7,29342,3,1672319033),(113355,7,29343,3,1672319033),(113356,7,29344,3,1672319033),(113357,7,29345,3,1672319033),(113358,7,29346,3,1672319033),(113359,7,29347,3,1672319033),(113360,7,29348,3,1672319033),(113361,7,29349,3,1672319033),(113362,7,29350,3,1672319033),(113363,7,29351,3,1672319033),(113364,7,29352,3,1672319033),(113365,7,29353,3,1672319033),(113366,7,29354,3,1672319033),(113367,7,29355,3,1672319033),(113368,7,29356,3,1672319033),(113369,7,29357,3,1672319033),(113370,7,29358,3,1672319033),(113371,7,29359,3,1672319033),(113372,7,29360,3,1672319033),(113373,7,29361,3,1672319033),(113374,7,29362,3,1672319033),(113375,7,29364,3,1672319033),(113376,7,29365,3,1672319033),(113377,7,29366,3,1672319033),(113378,7,29367,3,1672319033),(113379,7,29368,3,1672319033),(113380,7,29369,3,1672319033),(113381,7,29370,3,1672319033),(113382,7,29371,3,1672319033),(113383,7,29372,3,1672319033),(113384,7,29373,3,1672319033),(113385,7,29374,3,1672319033),(113386,7,29375,3,1672319033),(113387,7,29376,3,1672319033),(113388,7,29377,3,1672319033),(113389,7,29378,3,1672319033),(113390,7,29379,3,1672319033),(113391,7,29380,3,1672319033),(113392,7,29381,3,1672319033),(113393,7,29382,3,1672319033),(113394,7,29383,3,1672319033),(113395,7,29384,3,1672319033),(113396,7,29385,3,1672319033),(113397,7,29387,3,1672319033),(113398,7,29388,3,1672319033),(113399,7,29389,3,1672319033),(113400,7,29390,3,1672319033),(113401,7,29391,3,1672319033),(113402,7,29392,3,1672319033),(113403,7,29393,3,1672319033),(113404,7,29394,3,1672319033),(113405,7,29395,3,1672319033),(113406,7,29396,3,1672319033),(113407,7,29397,3,1672319033),(113408,7,29398,3,1672319033),(113409,7,29399,3,1672319033),(113410,7,29400,3,1672319033),(113411,7,29401,3,1672319033),(113412,7,29402,3,1672319033),(113413,7,29403,3,1672319033),(113414,7,29404,3,1672319033),(113415,7,29405,3,1672319033),(113416,7,29406,3,1672319033),(113417,7,29407,3,1672319033),(113418,7,29408,3,1672319033),(113419,7,29410,3,1672319033),(113420,7,29411,3,1672319033),(113421,7,29412,3,1672319033),(113422,7,29413,3,1672319033),(113423,7,29414,3,1672319033),(113424,7,29415,3,1672319033),(113425,7,29416,3,1672319033),(113426,7,29417,3,1672319033),(113427,7,29418,3,1672319033),(113428,7,29419,3,1672319033),(113429,7,29420,3,1672319033),(113430,7,29421,3,1672319033),(113431,7,29422,3,1672319033),(113432,7,29423,3,1672319033),(113433,7,29424,3,1672319033),(113434,7,29425,3,1672319033),(113435,7,29426,3,1672319033),(113436,7,29427,3,1672319033),(113437,7,29428,3,1672319033),(113438,7,29429,3,1672319033),(113439,7,29430,3,1672319033),(113440,7,29431,3,1672319033),(113441,7,29433,3,1672319033),(113442,7,29434,3,1672319033),(113443,7,29435,3,1672319033),(113444,7,29436,3,1672319033),(113445,7,29437,3,1672319033),(113446,7,29438,3,1672319033),(113447,7,29439,3,1672319033),(113448,7,29440,3,1672319033),(113449,7,29441,3,1672319033),(113450,7,29442,3,1672319033),(113451,7,29443,3,1672319033),(113452,7,29444,3,1672319033),(113453,7,29445,3,1672319033),(113454,7,29446,3,1672319033),(113455,7,29447,3,1672319033),(113456,7,29448,3,1672319033),(113457,7,29449,3,1672319033),(113458,7,29450,3,1672319033),(113459,7,29451,3,1672319033),(113460,7,29452,3,1672319033),(113461,7,29453,3,1672319033),(113462,7,29454,3,1672319033),(113463,7,29456,3,1672319033),(113464,7,29457,3,1672319033),(113465,7,29458,3,1672319033),(113466,7,29459,3,1672319033),(113467,7,29460,3,1672319033),(113468,7,29461,3,1672319033),(113469,7,29462,3,1672319033),(113470,7,29463,3,1672319033),(113471,7,29464,3,1672319033),(113472,7,29465,3,1672319033),(113473,7,29466,3,1672319033),(113474,7,29467,3,1672319033),(113475,7,29468,3,1672319033),(113476,7,29469,3,1672319033),(113477,7,29470,3,1672319033),(113478,7,29471,3,1672319033),(113479,7,29472,3,1672319033),(113480,7,29473,3,1672319033),(113481,7,29474,3,1672319033),(113482,7,29475,3,1672319033),(113483,7,29476,3,1672319033),(113484,7,29477,3,1672319033),(113485,7,29479,3,1672319033),(113486,7,29480,3,1672319033),(113487,7,29481,3,1672319033),(113488,7,29482,3,1672319033),(113489,7,29483,3,1672319033),(113490,7,29484,3,1672319033),(113491,7,29485,3,1672319033),(113492,7,29486,3,1672319033),(113493,7,29487,3,1672319033),(113494,7,29488,3,1672319033),(113495,7,29489,3,1672319033),(113496,7,29490,3,1672319033),(113497,7,29491,3,1672319033),(113498,7,29492,3,1672319033),(113499,7,29493,3,1672319033),(113500,7,29494,3,1672319033),(113501,7,29495,3,1672319033),(113502,7,29496,3,1672319033),(113503,7,29497,3,1672319033),(113504,7,29498,3,1672319033),(113505,7,29499,3,1672319033),(113506,7,29500,3,1672319033),(113507,7,29502,3,1672319033),(113508,7,29503,3,1672319033),(113509,7,29504,3,1672319033),(113510,7,29505,3,1672319033),(113511,7,29506,3,1672319033),(113512,7,29507,3,1672319033),(113513,7,29508,3,1672319033),(113514,7,29509,3,1672319033),(113515,7,29510,3,1672319033),(113516,7,29511,3,1672319033),(113517,7,29512,3,1672319033),(113518,7,29513,3,1672319033),(113519,7,29514,3,1672319033),(113520,7,29515,3,1672319033),(113521,7,29516,3,1672319033),(113522,7,29517,3,1672319033),(113523,7,29518,3,1672319033),(113524,7,29519,3,1672319033),(113525,7,29520,3,1672319033),(113526,7,29521,3,1672319033),(113527,7,29522,3,1672319033),(113528,7,29523,3,1672319033),(113529,7,29525,3,1672319033),(113530,7,29526,3,1672319033),(113531,7,29527,3,1672319033),(113532,7,29528,3,1672319033),(113533,7,29529,3,1672319033),(113534,7,29530,3,1672319033),(113535,7,29531,3,1672319033),(113536,7,29532,3,1672319033),(113537,7,29533,3,1672319033),(113538,7,29534,3,1672319033),(113539,7,29535,3,1672319033),(113540,7,29536,3,1672319033),(113541,7,29537,3,1672319033),(113542,7,29538,3,1672319033),(113543,7,29539,3,1672319033),(113544,7,29540,3,1672319033),(113545,7,29541,3,1672319033),(113546,7,29542,3,1672319033),(113547,7,29543,3,1672319033),(113548,7,29544,3,1672319033),(113549,7,29545,3,1672319033),(113550,7,29546,3,1672319033),(113551,7,29548,3,1672319033),(113552,7,29549,3,1672319033),(113553,7,29550,3,1672319033),(113554,7,29551,3,1672319033),(113555,7,29552,3,1672319033),(113556,7,29553,3,1672319033),(113557,7,29554,3,1672319033),(113558,7,29555,3,1672319033),(113559,7,29556,3,1672319033),(113560,7,29557,3,1672319033),(113561,7,29558,3,1672319033),(113562,7,29559,3,1672319033),(113563,7,29560,3,1672319033),(113564,7,29561,3,1672319033),(113565,7,29562,3,1672319033),(113566,7,29563,3,1672319033),(113567,7,29564,3,1672319033),(113568,7,29565,3,1672319033),(113569,7,29566,3,1672319033),(113570,7,29567,3,1672319033),(113571,7,29568,3,1672319033),(113572,7,29569,3,1672319033),(113573,7,29571,3,1672319033),(113574,7,29572,3,1672319033),(113575,7,29573,3,1672319033),(113576,7,29574,3,1672319033),(113577,7,29575,3,1672319033),(113578,7,29576,3,1672319033),(113579,7,29577,3,1672319033),(113580,7,29578,3,1672319033),(113581,7,29579,3,1672319033),(113582,7,29580,3,1672319033),(113583,7,29581,3,1672319033),(113584,7,29582,3,1672319033),(113585,7,29583,3,1672319033),(113586,7,29584,3,1672319033),(113587,7,29585,3,1672319033),(113588,7,29586,3,1672319033),(113589,7,29587,3,1672319033),(113590,7,29588,3,1672319033),(113591,7,29589,3,1672319033),(113592,7,29590,3,1672319033),(113593,7,29591,3,1672319033),(113594,7,29592,3,1672319033),(113595,7,29594,3,1672319033),(113596,7,29595,3,1672319033),(113597,7,29596,3,1672319033),(113598,7,29597,3,1672319033),(113599,7,29598,3,1672319033),(113600,7,29599,3,1672319033),(113601,7,29600,3,1672319033),(113602,7,29601,3,1672319033),(113603,7,29602,3,1672319033),(113604,7,29603,3,1672319033),(113605,7,29604,3,1672319033),(113606,7,29605,3,1672319033),(113607,7,29606,3,1672319033),(113608,7,29607,3,1672319033),(113609,7,29608,3,1672319033),(113610,7,29609,3,1672319033),(113611,7,29610,3,1672319033),(113612,7,29611,3,1672319033),(113613,7,29612,3,1672319033),(113614,7,29613,3,1672319033),(113615,7,29614,3,1672319033),(113616,7,29615,3,1672319033),(113617,7,29617,3,1672319033),(113618,7,29618,3,1672319033),(113619,7,29619,3,1672319033),(113620,7,29620,3,1672319033),(113621,7,29621,3,1672319033),(113622,7,29622,3,1672319033),(113623,7,29623,3,1672319033),(113624,7,29624,3,1672319033),(113625,7,29625,3,1672319033),(113626,7,29626,3,1672319033),(113627,7,29627,3,1672319033),(113628,7,29628,3,1672319033),(113629,7,29629,3,1672319033),(113630,7,29630,3,1672319033),(113631,7,29631,3,1672319033),(113632,7,29632,3,1672319033),(113633,7,29633,3,1672319033),(113634,7,29634,3,1672319033),(113635,7,29635,3,1672319033),(113636,7,29636,3,1672319033),(113637,7,29637,3,1672319033),(113638,7,29638,3,1672319033),(113639,7,29640,3,1672319033),(113640,7,29641,3,1672319033),(113641,7,29642,3,1672319033),(113642,7,29643,3,1672319033),(113643,7,29644,3,1672319033),(113644,7,29645,3,1672319033),(113645,7,29646,3,1672319033),(113646,7,29647,3,1672319033),(113647,7,29648,3,1672319033),(113648,7,29649,3,1672319033),(113649,7,29650,3,1672319033),(113650,7,29651,3,1672319033),(113651,7,29652,3,1672319033),(113652,7,29653,3,1672319033),(113653,7,29654,3,1672319033),(113654,7,29655,3,1672319033),(113655,7,29656,3,1672319033),(113656,7,29657,3,1672319033),(113657,7,29658,3,1672319033),(113658,7,29659,3,1672319033),(113659,7,29660,3,1672319033),(113660,7,29661,3,1672319033),(113661,7,29663,3,1672319033),(113662,7,29664,3,1672319033),(113663,7,29665,3,1672319033),(113664,7,29666,3,1672319033),(113665,7,29667,3,1672319033),(113666,7,29668,3,1672319033),(113667,7,29669,3,1672319033),(113668,7,29670,3,1672319033),(113669,7,29671,3,1672319033),(113670,7,29672,3,1672319033),(113671,7,29673,3,1672319033),(113672,7,29674,3,1672319033),(113673,7,29675,3,1672319033),(113674,7,29676,3,1672319033),(113675,7,29677,3,1672319033),(113676,7,29678,3,1672319033),(113677,7,29679,3,1672319033),(113678,7,29680,3,1672319033),(113679,7,29681,3,1672319033),(113680,7,29682,3,1672319033),(113681,7,29683,3,1672319033),(113682,7,29684,3,1672319033),(113683,7,29686,3,1672319033),(113684,7,29687,3,1672319033),(113685,7,29688,3,1672319033),(113686,7,29689,3,1672319033),(113687,7,29690,3,1672319033),(113688,7,29691,3,1672319033),(113689,7,29692,3,1672319033),(113690,7,29693,3,1672319033),(113691,7,29694,3,1672319033),(113692,7,29695,3,1672319033),(113693,7,29696,3,1672319033),(113694,7,29697,3,1672319033),(113695,7,29698,3,1672319033),(113696,7,29699,3,1672319033),(113697,7,29700,3,1672319033),(113698,7,29701,3,1672319033),(113699,7,29702,3,1672319033),(113700,7,29703,3,1672319033),(113701,7,29704,3,1672319033),(113702,7,29705,3,1672319033),(113703,7,29706,3,1672319033),(113704,7,29707,3,1672319033),(113705,7,29709,3,1672319033),(113706,7,29710,3,1672319033),(113707,7,29711,3,1672319033),(113708,7,29712,3,1672319033),(113709,7,29713,3,1672319033),(113710,7,29714,3,1672319033),(113711,7,29715,3,1672319033),(113712,7,29716,3,1672319033),(113713,7,29717,3,1672319033),(113714,7,29718,3,1672319033),(113715,7,29719,3,1672319033),(113716,7,29720,3,1672319033),(113717,7,29721,3,1672319033),(113718,7,29722,3,1672319033),(113719,7,29723,3,1672319033),(113720,7,29724,3,1672319033),(113721,7,29725,3,1672319033),(113722,7,29726,3,1672319033),(113723,7,29727,3,1672319033),(113724,7,29728,3,1672319033),(113725,7,29729,3,1672319033),(113726,7,29730,3,1672319033),(113727,7,29732,3,1672319033),(113728,7,29733,3,1672319033),(113729,7,29734,3,1672319033),(113730,7,29735,3,1672319033),(113731,7,29736,3,1672319033),(113732,7,29737,3,1672319033),(113733,7,29738,3,1672319033),(113734,7,29739,3,1672319033),(113735,7,29740,3,1672319033),(113736,7,29741,3,1672319033),(113737,7,29742,3,1672319033),(113738,7,29743,3,1672319033),(113739,7,29744,3,1672319033),(113740,7,29745,3,1672319033),(113741,7,29746,3,1672319033),(113742,7,29747,3,1672319033),(113743,7,29748,3,1672319033),(113744,7,29749,3,1672319033),(113745,7,29750,3,1672319033),(113746,7,29751,3,1672319033),(113747,7,29752,3,1672319033),(113748,7,29753,3,1672319033),(113749,7,29755,3,1672319033),(113750,7,29756,3,1672319033),(113751,7,29757,3,1672319033),(113752,7,29758,3,1672319033),(113753,7,29759,3,1672319033),(113754,7,29760,3,1672319033),(113755,7,29761,3,1672319033),(113756,7,29762,3,1672319033),(113757,7,29763,3,1672319033),(113758,7,29764,3,1672319033),(113759,7,29765,3,1672319033),(113760,7,29766,3,1672319033),(113761,7,29767,3,1672319033),(113762,7,29768,3,1672319033),(113763,7,29769,3,1672319033),(113764,7,29770,3,1672319033),(113765,7,29771,3,1672319033),(113766,7,29772,3,1672319033),(113767,7,29773,3,1672319033),(113768,7,29774,3,1672319033),(113769,7,29775,3,1672319033),(113770,7,29776,3,1672319033),(113771,7,29778,3,1672319033),(113772,7,29779,3,1672319033),(113773,7,29780,3,1672319033),(113774,7,29781,3,1672319033),(113775,7,29782,3,1672319033),(113776,7,29783,3,1672319033),(113777,7,29784,3,1672319033),(113778,7,29785,3,1672319033),(113779,7,29786,3,1672319033),(113780,7,29787,3,1672319033),(113781,7,29788,3,1672319033),(113782,7,29789,3,1672319033),(113783,7,29790,3,1672319033),(113784,7,29791,3,1672319033),(113785,7,29792,3,1672319033),(113786,7,29793,3,1672319033),(113787,7,29794,3,1672319033),(113788,7,29795,3,1672319033),(113789,7,29796,3,1672319033),(113790,7,29797,3,1672319033),(113791,7,29798,3,1672319033),(113792,7,29799,3,1672319033),(113793,7,29801,3,1672319033),(113794,7,29802,3,1672319033),(113795,7,29803,3,1672319033),(113796,7,29804,3,1672319033),(113797,7,29805,3,1672319033),(113798,7,29806,3,1672319033),(113799,7,29807,3,1672319033),(113800,7,29808,3,1672319033),(113801,7,29809,3,1672319033),(113802,7,29810,3,1672319033),(113803,7,29811,3,1672319033),(113804,7,29812,3,1672319033),(113805,7,29813,3,1672319033),(113806,7,29814,3,1672319033),(113807,7,29815,3,1672319033),(113808,7,29816,3,1672319033),(113809,7,29817,3,1672319033),(113810,7,29818,3,1672319033),(113811,7,29819,3,1672319033),(113812,7,29820,3,1672319033),(113813,7,29821,3,1672319033),(113814,7,29822,3,1672319033),(113815,7,29824,3,1672319033),(113816,7,29825,3,1672319033),(113817,7,29826,3,1672319033),(113818,7,29827,3,1672319033),(113819,7,29828,3,1672319033),(113820,7,29829,3,1672319033),(113821,7,29830,3,1672319033),(113822,7,29831,3,1672319033),(113823,7,29832,3,1672319033),(113824,7,29833,3,1672319033),(113825,7,29834,3,1672319033),(113826,7,29835,3,1672319033),(113827,7,29836,3,1672319033),(113828,7,29837,3,1672319033),(113829,7,29838,3,1672319033),(113830,7,29839,3,1672319033),(113831,7,29840,3,1672319033),(113832,7,29841,3,1672319033),(113833,7,29842,3,1672319033),(113834,7,29843,3,1672319033),(113835,7,29844,3,1672319033),(113836,7,29845,3,1672319033),(113837,7,29847,3,1672319033),(113838,7,29848,3,1672319033),(113839,7,29849,3,1672319033),(113840,7,29850,3,1672319033),(113841,7,29851,3,1672319033),(113842,7,29852,3,1672319033),(113843,7,29853,3,1672319033),(113844,7,29854,3,1672319033),(113845,7,29855,3,1672319033),(113846,7,29856,3,1672319033),(113847,7,29857,3,1672319033),(113848,7,29858,3,1672319033),(113849,7,29859,3,1672319033),(113850,7,29860,3,1672319033),(113851,7,29861,3,1672319033),(113852,7,29862,3,1672319033),(113853,7,29863,3,1672319033),(113854,7,29864,3,1672319033),(113855,7,29865,3,1672319033),(113856,7,29866,3,1672319033),(113857,7,29867,3,1672319033),(113858,7,29868,3,1672319033),(113859,7,29870,3,1672319033),(113860,7,29871,3,1672319033),(113861,7,29872,3,1672319033),(113862,7,29873,3,1672319033),(113863,7,29874,3,1672319033),(113864,7,29875,3,1672319033),(113865,7,29876,3,1672319033),(113866,7,29877,3,1672319033),(113867,7,29878,3,1672319033),(113868,7,29879,3,1672319033),(113869,7,29880,3,1672319033),(113870,7,29881,3,1672319033),(113871,7,29882,3,1672319033),(113872,7,29883,3,1672319033),(113873,7,29884,3,1672319033),(113874,7,29885,3,1672319033),(113875,7,29886,3,1672319033),(113876,7,29887,3,1672319033),(113877,7,29888,3,1672319033),(113878,7,29889,3,1672319033),(113879,7,29890,3,1672319033),(113880,7,29891,3,1672319033),(113881,7,29893,3,1672319033),(113882,7,29894,3,1672319033),(113883,7,29895,3,1672319033),(113884,7,29896,3,1672319033),(113885,7,29897,3,1672319033),(113886,7,29898,3,1672319033),(113887,7,29899,3,1672319033),(113888,7,29900,3,1672319033),(113889,7,29901,3,1672319033),(113890,7,29902,3,1672319033),(113891,7,29903,3,1672319033),(113892,7,29904,3,1672319033),(113893,7,29905,3,1672319033),(113894,7,29906,3,1672319033),(113895,7,29907,3,1672319033),(113896,7,29908,3,1672319033),(113897,7,29909,3,1672319033),(113898,7,29910,3,1672319033),(113899,7,29911,3,1672319033),(113900,7,29912,3,1672319033),(113901,7,29913,3,1672319033),(113902,7,29914,3,1672319033),(113903,7,29916,3,1672319033),(113904,7,29917,3,1672319033),(113905,7,29918,3,1672319033),(113906,7,29919,3,1672319033),(113907,7,29920,3,1672319033),(113908,7,29921,3,1672319033),(113909,7,29922,3,1672319033),(113910,7,29923,3,1672319033),(113911,7,29924,3,1672319033),(113912,7,29925,3,1672319033),(113913,7,29926,3,1672319033),(113914,7,29927,3,1672319033),(113915,7,29928,3,1672319033),(113916,7,29929,3,1672319033),(113917,7,29930,3,1672319033),(113918,7,29931,3,1672319033),(113919,7,29932,3,1672319033),(113920,7,29933,3,1672319033),(113921,7,29934,3,1672319033),(113922,7,29935,3,1672319033),(113923,7,29936,3,1672319033),(113924,7,29937,3,1672319033),(113925,7,29939,3,1672319033),(113926,7,29940,3,1672319033),(113927,7,29941,3,1672319033),(113928,7,29942,3,1672319033),(113929,7,29943,3,1672319033),(113930,7,29944,3,1672319033),(113931,7,29945,3,1672319033),(113932,7,29946,3,1672319033),(113933,7,29947,3,1672319033),(113934,7,29948,3,1672319033),(113935,7,29949,3,1672319033),(113936,7,29950,3,1672319033),(113937,7,29951,3,1672319033),(113938,7,29952,3,1672319033),(113939,7,29953,3,1672319033),(113940,7,29954,3,1672319033),(113941,7,29955,3,1672319033),(113942,7,29956,3,1672319033),(113943,7,29957,3,1672319033),(113944,7,29958,3,1672319033),(113945,7,29959,3,1672319033),(113946,7,29960,3,1672319033),(113947,7,29962,3,1672319033),(113948,7,29963,3,1672319033),(113949,7,29964,3,1672319033),(113950,7,29965,3,1672319033),(113951,7,29966,3,1672319033),(113952,7,29967,3,1672319033),(113953,7,29968,3,1672319033),(113954,7,29969,3,1672319033),(113955,7,29970,3,1672319033),(113956,7,29971,3,1672319033),(113957,7,29972,3,1672319033),(113958,7,29973,3,1672319033),(113959,7,29974,3,1672319033),(113960,7,29975,3,1672319033),(113961,7,29976,3,1672319033),(113962,7,29977,3,1672319033),(113963,7,29978,3,1672319033),(113964,7,29979,3,1672319033),(113965,7,29980,3,1672319033),(113966,7,29981,3,1672319033),(113967,7,29982,3,1672319033),(113968,7,29983,3,1672319033),(113969,7,29985,3,1672319033),(113970,7,29986,3,1672319033),(113971,7,29987,3,1672319033),(113972,7,29988,3,1672319033),(113973,7,29989,3,1672319033),(113974,7,29990,3,1672319033),(113975,7,29991,3,1672319033),(113976,7,29992,3,1672319033),(113977,7,29993,3,1672319033),(113978,7,29994,3,1672319033),(113979,7,29995,3,1672319033),(113980,7,29996,3,1672319033),(113981,7,29997,3,1672319033),(113982,7,29998,3,1672319033),(113983,7,29999,3,1672319033),(113984,7,30000,3,1672319033),(113985,7,30001,3,1672319033),(113986,7,30002,3,1672319033),(113987,7,30003,3,1672319033),(113988,7,30004,3,1672319033),(113989,7,30005,3,1672319033),(113990,7,30006,3,1672319033),(113991,7,30008,3,1672319033),(113992,7,30009,3,1672319033),(113993,7,30010,3,1672319033),(113994,7,30011,3,1672319033),(113995,7,30012,3,1672319033),(113996,7,30013,3,1672319033),(113997,7,30014,3,1672319033),(113998,7,30015,3,1672319033),(113999,7,30016,3,1672319033),(114000,7,30017,3,1672319033),(114001,7,30018,3,1672319033),(114002,7,30019,3,1672319033),(114003,7,30020,3,1672319033),(114004,7,30021,3,1672319033),(114005,7,30022,3,1672319033),(114006,7,30023,3,1672319033),(114007,7,30024,3,1672319033),(114008,7,30025,3,1672319033),(114009,7,30026,3,1672319033),(114010,7,30027,3,1672319033),(114011,7,30028,3,1672319033),(114012,7,30029,3,1672319033),(114013,7,30031,3,1672319033),(114014,7,30032,3,1672319033),(114015,7,30033,3,1672319033),(114016,7,30034,3,1672319033),(114017,7,30035,3,1672319033),(114018,7,30036,3,1672319033),(114019,7,30037,3,1672319033),(114020,7,30038,3,1672319033),(114021,7,30039,3,1672319033),(114022,7,30040,3,1672319033),(114023,7,30041,3,1672319033),(114024,7,30042,3,1672319033),(114025,7,30043,3,1672319033),(114026,7,30044,3,1672319033),(114027,7,30045,3,1672319033),(114028,7,30046,3,1672319033),(114029,7,30047,3,1672319033),(114030,7,30048,3,1672319033),(114031,7,30049,3,1672319033),(114032,7,30050,3,1672319033),(114033,7,30051,3,1672319033),(114034,7,30052,3,1672319033),(114035,7,30054,3,1672319033),(114036,7,30055,3,1672319033),(114037,7,30056,3,1672319033),(114038,7,30057,3,1672319033),(114039,7,30058,3,1672319033),(114040,7,30059,3,1672319033),(114041,7,30060,3,1672319033),(114042,7,30061,3,1672319033),(114043,7,30062,3,1672319033),(114044,7,30063,3,1672319033),(114045,7,30064,3,1672319033),(114046,7,30065,3,1672319033),(114047,7,30066,3,1672319033),(114048,7,30067,3,1672319033),(114049,7,30068,3,1672319033),(114050,7,30069,3,1672319033),(114051,7,30070,3,1672319033),(114052,7,30071,3,1672319033),(114053,7,30072,3,1672319033),(114054,7,30073,3,1672319033),(114055,7,30074,3,1672319033),(114056,7,30075,3,1672319033),(114057,7,30077,3,1672319033),(114058,7,30078,3,1672319033),(114059,7,30079,3,1672319033),(114060,7,30080,3,1672319033),(114061,7,30081,3,1672319033),(114062,7,30082,3,1672319033),(114063,7,30083,3,1672319033),(114064,7,30084,3,1672319033),(114065,7,30085,3,1672319033),(114066,7,30086,3,1672319033),(114067,7,30087,3,1672319033),(114068,7,30088,3,1672319033),(114069,7,30089,3,1672319033),(114070,7,30090,3,1672319033),(114071,7,30091,3,1672319033),(114072,7,30092,3,1672319033),(114073,7,30093,3,1672319033),(114074,7,30094,3,1672319033),(114075,7,30095,3,1672319033),(114076,7,30096,3,1672319033),(114077,7,30097,3,1672319033),(114078,7,30098,3,1672319033),(114079,7,30100,3,1672319033),(114080,7,30101,3,1672319033),(114081,7,30102,3,1672319033),(114082,7,30103,3,1672319033),(114083,7,30104,3,1672319033),(114084,7,30105,3,1672319033),(114085,7,30106,3,1672319033),(114086,7,30107,3,1672319033),(114087,7,30108,3,1672319033),(114088,7,30109,3,1672319033),(114089,7,30110,3,1672319033),(114090,7,30111,3,1672319033),(114091,7,30112,3,1672319033),(114092,7,30113,3,1672319033),(114093,7,30114,3,1672319033),(114094,7,30115,3,1672319033),(114095,7,30116,3,1672319033),(114096,7,30117,3,1672319033),(114097,7,30118,3,1672319033),(114098,7,30119,3,1672319033),(114099,7,30120,3,1672319033),(114100,7,30121,3,1672319033),(114101,7,30123,3,1672319033),(114102,7,30124,3,1672319033),(114103,7,30125,3,1672319033),(114104,7,30126,3,1672319033),(114105,7,30127,3,1672319033),(114106,7,30128,3,1672319033),(114107,7,30129,3,1672319033),(114108,7,30130,3,1672319033),(114109,7,30131,3,1672319033),(114110,7,30132,3,1672319033),(114111,7,30133,3,1672319033),(114112,7,30134,3,1672319033),(114113,7,30135,3,1672319033),(114114,7,30136,3,1672319033),(114115,7,30137,3,1672319033),(114116,7,30138,3,1672319033),(114117,7,30139,3,1672319033),(114118,7,30140,3,1672319033),(114119,7,30141,3,1672319033),(114120,7,30142,3,1672319033),(114121,7,30143,3,1672319033),(114122,7,30144,3,1672319033),(114123,7,30146,3,1672319033),(114124,7,30147,3,1672319033),(114125,7,30148,3,1672319033),(114126,7,30149,3,1672319033),(114127,7,30150,3,1672319033),(114128,7,30151,3,1672319033),(114129,7,30152,3,1672319033),(114130,7,30153,3,1672319033),(114131,7,30154,3,1672319033),(114132,7,30155,3,1672319033),(114133,7,30156,3,1672319033),(114134,7,30157,3,1672319033),(114135,7,30158,3,1672319033),(114136,7,30159,3,1672319033),(114137,7,30160,3,1672319033),(114138,7,30161,3,1672319033),(114139,7,30162,3,1672319033),(114140,7,30163,3,1672319033),(114141,7,30164,3,1672319033),(114142,7,30165,3,1672319033),(114143,7,30166,3,1672319033),(114144,7,30167,3,1672319033),(114145,7,30169,3,1672319033),(114146,7,30170,3,1672319033),(114147,7,30171,3,1672319033),(114148,7,30172,3,1672319033),(114149,7,30173,3,1672319033),(114150,7,30174,3,1672319033),(114151,7,30175,3,1672319033),(114152,7,30176,3,1672319033),(114153,7,30177,3,1672319033),(114154,7,30178,3,1672319033),(114155,7,30179,3,1672319033),(114156,7,30180,3,1672319033),(114157,7,30181,3,1672319033),(114158,7,30182,3,1672319033),(114159,7,30183,3,1672319033),(114160,7,30184,3,1672319033),(114161,7,30185,3,1672319033),(114162,7,30186,3,1672319033),(114163,7,30187,3,1672319033),(114164,7,30188,3,1672319033),(114165,7,30189,3,1672319033),(114166,7,30190,3,1672319033),(114167,7,30192,3,1672319033),(114168,7,30193,3,1672319033),(114169,7,30194,3,1672319033),(114170,7,30195,3,1672319033),(114171,7,30196,3,1672319033),(114172,7,30197,3,1672319033),(114173,7,30198,3,1672319033),(114174,7,30199,3,1672319033),(114175,7,30200,3,1672319033),(114176,7,30201,3,1672319033),(114177,7,30202,3,1672319033),(114178,7,30203,3,1672319033),(114179,7,30204,3,1672319033),(114180,7,30205,3,1672319033),(114181,7,30206,3,1672319033),(114182,7,30207,3,1672319033),(114183,7,30208,3,1672319033),(114184,7,30209,3,1672319033),(114185,7,30210,3,1672319033),(114186,7,30211,3,1672319033),(114187,7,30212,3,1672319033),(114188,7,30213,3,1672319033),(114189,7,30215,3,1672319033),(114190,7,30216,3,1672319033),(114191,7,30217,3,1672319033),(114192,7,30218,3,1672319033),(114193,7,30219,3,1672319033),(114194,7,30220,3,1672319033),(114195,7,30221,3,1672319033),(114196,7,30222,3,1672319033),(114197,7,30223,3,1672319033),(114198,7,30224,3,1672319033),(114199,7,30225,3,1672319033),(114200,7,30226,3,1672319033),(114201,7,30227,3,1672319033),(114202,7,30228,3,1672319033),(114203,7,30229,3,1672319033),(114204,7,30230,3,1672319033),(114205,7,30231,3,1672319033),(114206,7,30232,3,1672319033),(114207,7,30233,3,1672319033),(114208,7,30234,3,1672319033),(114209,7,30235,3,1672319033),(114210,7,30236,3,1672319033),(114211,7,30238,3,1672319033),(114212,7,30239,3,1672319033),(114213,7,30240,3,1672319033),(114214,7,30241,3,1672319033),(114215,7,30242,3,1672319033),(114216,7,30243,3,1672319033),(114217,7,30244,3,1672319033),(114218,7,30245,3,1672319033),(114219,7,30246,3,1672319033),(114220,7,30247,3,1672319033),(114221,7,30248,3,1672319033),(114222,7,30249,3,1672319033),(114223,7,30250,3,1672319033),(114224,7,30251,3,1672319033),(114225,7,30252,3,1672319033),(114226,7,30253,3,1672319033),(114227,7,30254,3,1672319033),(114228,7,30255,3,1672319033),(114229,7,30256,3,1672319033),(114230,7,30257,3,1672319033),(114231,7,30258,3,1672319033),(114232,7,30259,3,1672319033),(114233,7,30261,3,1672319033),(114234,7,30262,3,1672319033),(114235,7,30263,3,1672319033),(114236,7,30264,3,1672319033),(114237,7,30265,3,1672319033),(114238,7,30266,3,1672319033),(114239,7,30267,3,1672319033),(114240,7,30268,3,1672319033),(114241,7,30269,3,1672319033),(114242,7,30270,3,1672319033),(114243,7,30271,3,1672319033),(114244,7,30272,3,1672319033),(114245,7,30273,3,1672319033),(114246,7,30274,3,1672319033),(114247,7,30275,3,1672319033),(114248,7,30276,3,1672319033),(114249,7,30277,3,1672319033),(114250,7,30278,3,1672319033),(114251,7,30279,3,1672319033),(114252,7,30280,3,1672319033),(114253,7,30281,3,1672319033),(114254,7,30282,3,1672319033),(114255,7,30284,3,1672319033),(114256,7,30285,3,1672319033),(114257,7,30286,3,1672319033),(114258,7,30287,3,1672319033),(114259,7,30288,3,1672319033),(114260,7,30289,3,1672319033),(114261,7,30290,3,1672319033),(114262,7,30291,3,1672319033),(114263,7,30292,3,1672319033),(114264,7,30293,3,1672319033),(114265,7,30294,3,1672319033),(114266,7,30295,3,1672319033),(114267,7,30296,3,1672319033),(114268,7,30297,3,1672319033),(114269,7,30298,3,1672319033),(114270,7,30299,3,1672319033),(114271,7,30300,3,1672319033),(114272,7,30301,3,1672319033),(114273,7,30302,3,1672319033),(114274,7,30303,3,1672319033),(114275,7,30304,3,1672319033),(114276,7,30305,3,1672319033),(114277,7,30307,3,1672319033),(114278,7,30308,3,1672319033),(114279,7,30309,3,1672319033),(114280,7,30310,3,1672319033),(114281,7,30311,3,1672319033),(114282,7,30312,3,1672319033),(114283,7,30313,3,1672319033),(114284,7,30314,3,1672319033),(114285,7,30315,3,1672319033),(114286,7,30316,3,1672319033),(114287,7,30317,3,1672319033),(114288,7,30318,3,1672319033),(114289,7,30319,3,1672319033),(114290,7,30320,3,1672319033),(114291,7,30321,3,1672319033),(114292,7,30322,3,1672319033),(114293,7,30323,3,1672319033),(114294,7,30324,3,1672319033),(114295,7,30325,3,1672319033),(114296,7,30326,3,1672319033),(114297,7,30327,3,1672319033),(114298,7,30328,3,1672319033),(114299,7,30330,3,1672319033),(114300,7,30331,3,1672319033),(114301,7,30332,3,1672319033),(114302,7,30333,3,1672319033),(114303,7,30334,3,1672319033),(114304,7,30335,3,1672319033),(114305,7,30336,3,1672319033),(114306,7,30337,3,1672319033),(114307,7,30338,3,1672319033),(114308,7,30339,3,1672319033),(114309,7,30340,3,1672319033),(114310,7,30341,3,1672319033),(114311,7,30342,3,1672319033),(114312,7,30343,3,1672319033),(114313,7,30344,3,1672319033),(114314,7,30345,3,1672319033),(114315,7,30346,3,1672319033),(114316,7,30347,3,1672319033),(114317,7,30348,3,1672319033),(114318,7,30349,3,1672319033),(114319,7,30350,3,1672319033),(114320,7,30351,3,1672319033),(114321,7,30353,3,1672319033),(114322,7,30354,3,1672319033),(114323,7,30355,3,1672319033),(114324,7,30356,3,1672319033),(114325,7,30357,3,1672319033),(114326,7,30358,3,1672319033),(114327,7,30359,3,1672319033),(114328,7,30360,3,1672319033),(114329,7,30361,3,1672319033),(114330,7,30362,3,1672319033),(114331,7,30363,3,1672319033),(114332,7,30364,3,1672319033),(114333,7,30365,3,1672319033),(114334,7,30366,3,1672319033),(114335,7,30367,3,1672319033),(114336,7,30368,3,1672319033),(114337,7,30369,3,1672319033),(114338,7,30370,3,1672319033),(114339,7,30371,3,1672319033),(114340,7,30372,3,1672319033),(114341,7,30373,3,1672319033),(114342,7,30374,3,1672319033),(114343,7,30376,3,1672319033),(114344,7,30377,3,1672319033),(114345,7,30378,3,1672319033),(114346,7,30379,3,1672319033),(114347,7,30380,3,1672319033),(114348,7,30381,3,1672319033),(114349,7,30382,3,1672319033),(114350,7,30383,3,1672319033),(114351,7,30384,3,1672319033),(114352,7,30385,3,1672319033),(114353,7,30386,3,1672319033),(114354,7,30387,3,1672319033),(114355,7,30388,3,1672319033),(114356,7,30389,3,1672319033),(114357,7,30390,3,1672319033),(114358,7,30391,3,1672319033),(114359,7,30392,3,1672319033),(114360,7,30393,3,1672319033),(114361,7,30394,3,1672319033),(114362,7,30395,3,1672319033),(114363,7,30396,3,1672319033),(114364,7,30397,3,1672319033),(114365,7,30399,3,1672319033),(114366,7,30400,3,1672319033),(114367,7,30401,3,1672319033),(114368,7,30402,3,1672319033),(114369,7,30403,3,1672319033),(114370,7,30404,3,1672319033),(114371,7,30405,3,1672319033),(114372,7,30406,3,1672319033),(114373,7,30407,3,1672319033),(114374,7,30408,3,1672319033),(114375,7,30409,3,1672319033),(114376,7,30410,3,1672319033),(114377,7,30411,3,1672319033),(114378,7,30412,3,1672319033),(114379,7,30413,3,1672319033),(114380,7,30414,3,1672319033),(114381,7,30415,3,1672319033),(114382,7,30416,3,1672319033),(114383,7,30417,3,1672319033),(114384,7,30418,3,1672319033),(114385,7,30419,3,1672319033),(114386,7,30420,3,1672319033),(114387,7,30422,3,1672319033),(114388,7,30423,3,1672319033),(114389,7,30424,3,1672319033),(114390,7,30425,3,1672319033),(114391,7,30426,3,1672319033),(114392,7,30427,3,1672319033),(114393,7,30428,3,1672319033),(114394,7,30429,3,1672319033),(114395,7,30430,3,1672319033),(114396,7,30431,3,1672319033),(114397,7,30432,3,1672319033),(114398,7,30433,3,1672319033),(114399,7,30434,3,1672319033),(114400,7,30435,3,1672319033),(114401,7,30436,3,1672319033),(114402,7,30437,3,1672319033),(114403,7,30438,3,1672319033),(114404,7,30439,3,1672319033),(114405,7,30440,3,1672319033),(114406,7,30441,3,1672319033),(114407,7,30442,3,1672319033),(114408,7,30443,3,1672319033),(114409,7,30445,3,1672319033),(114410,7,30446,3,1672319033),(114411,7,30447,3,1672319033),(114412,7,30448,3,1672319033),(114413,7,30449,3,1672319033),(114414,7,30450,3,1672319033),(114415,7,30451,3,1672319033),(114416,7,30452,3,1672319033),(114417,7,30453,3,1672319033),(114418,7,30454,3,1672319033),(114419,7,30455,3,1672319033),(114420,7,30456,3,1672319033),(114421,7,30457,3,1672319033),(114422,7,30458,3,1672319033),(114423,7,30459,3,1672319033),(114424,7,30460,3,1672319033),(114425,7,30461,3,1672319033),(114426,7,30462,3,1672319033),(114427,7,30463,3,1672319033),(114428,7,30464,3,1672319033),(114429,7,30465,3,1672319033),(114430,7,30466,3,1672319033),(114431,7,30468,3,1672319033),(114432,7,30469,3,1672319033),(114433,7,30470,3,1672319033),(114434,7,30471,3,1672319033),(114435,7,30472,3,1672319033),(114436,7,30473,3,1672319033),(114437,7,30474,3,1672319033),(114438,7,30475,3,1672319033),(114439,7,30476,3,1672319033),(114440,7,30477,3,1672319033),(114441,7,30478,3,1672319033),(114442,7,30479,3,1672319033),(114443,7,30480,3,1672319033),(114444,7,30481,3,1672319033),(114445,7,30482,3,1672319033),(114446,7,30483,3,1672319033),(114447,7,30484,3,1672319033),(114448,7,30485,3,1672319033),(114449,7,30486,3,1672319033),(114450,7,30487,3,1672319033),(114451,7,30488,3,1672319033),(114452,7,30489,3,1672319033),(114453,7,30491,3,1672319033),(114454,7,30492,3,1672319033),(114455,7,30493,3,1672319033),(114456,7,30494,3,1672319033),(114457,7,30495,3,1672319033),(114458,7,30496,3,1672319033),(114459,7,30497,3,1672319033),(114460,7,30498,3,1672319033),(114461,7,30499,3,1672319033),(114462,7,30500,3,1672319033),(114463,7,30501,3,1672319033),(114464,7,30502,3,1672319033),(114465,7,30503,3,1672319033),(114466,7,30504,3,1672319033),(114467,7,30505,3,1672319033),(114468,7,30506,3,1672319033),(114469,7,30507,3,1672319033),(114470,7,30508,3,1672319033),(114471,7,30509,3,1672319033),(114472,7,30510,3,1672319033),(114473,7,30511,3,1672319033),(114474,7,30512,3,1672319033),(114475,7,30514,3,1672319033),(114476,7,30515,3,1672319033),(114477,7,30516,3,1672319033),(114478,7,30517,3,1672319033),(114479,7,30518,3,1672319033),(114480,7,30519,3,1672319033),(114481,7,30520,3,1672319033),(114482,7,30521,3,1672319033),(114483,7,30522,3,1672319033),(114484,7,30523,3,1672319033),(114485,7,30524,3,1672319033),(114486,7,30525,3,1672319033),(114487,7,30526,3,1672319033),(114488,7,30527,3,1672319033),(114489,7,30528,3,1672319033),(114490,7,30529,3,1672319033),(114491,7,30530,3,1672319033),(114492,7,30531,3,1672319033),(114493,7,30532,3,1672319033),(114494,7,30533,3,1672319033),(114495,7,30534,3,1672319033),(114496,7,30535,3,1672319033),(114497,7,30536,3,1672319033),(114498,7,30538,3,1672319033),(114499,7,30539,3,1672319033),(114500,7,30540,3,1672319033),(114501,7,30541,3,1672319033),(114502,7,30542,3,1672319033),(114503,7,30543,3,1672319033),(114504,7,30544,3,1672319033),(114505,7,30545,3,1672319033),(114506,7,30546,3,1672319033),(114507,7,30547,3,1672319033),(114508,7,30548,3,1672319033),(114509,7,30549,3,1672319033),(114510,7,30550,3,1672319033),(114511,7,30551,3,1672319033),(114512,7,30552,3,1672319033),(114513,7,30553,3,1672319033),(114514,7,30554,3,1672319033),(114515,7,30555,3,1672319033),(114516,7,30556,3,1672319033),(114517,7,30557,3,1672319033),(114518,7,30558,3,1672319033),(114519,7,30559,3,1672319033),(114520,7,30561,3,1672319033),(114521,7,30562,3,1672319033),(114522,7,30563,3,1672319033),(114523,7,30564,3,1672319033),(114524,7,30565,3,1672319033),(114525,7,30566,3,1672319033),(114526,7,30567,3,1672319033),(114527,7,30568,3,1672319033),(114528,7,30569,3,1672319033),(114529,7,30570,3,1672319033),(114530,7,30571,3,1672319033),(114531,7,30572,3,1672319033),(114532,7,30573,3,1672319033),(114533,7,30574,3,1672319033),(114534,7,30575,3,1672319033),(114535,7,30576,3,1672319033),(114536,7,30577,3,1672319033),(114537,7,30578,3,1672319033),(114538,7,30579,3,1672319033),(114539,7,30580,3,1672319033),(114540,7,30581,3,1672319033),(114541,7,30582,3,1672319033),(114542,7,30583,3,1672319033),(114543,7,30584,3,1672319033),(114544,7,30585,3,1672319033),(114545,7,30586,3,1672319033),(114546,7,30587,3,1672319033),(114547,7,30588,3,1672319033),(114548,7,30589,3,1672319033),(114549,7,30590,3,1672319033),(114550,7,30591,3,1672319033),(114551,7,30592,3,1672319033),(114552,7,30593,3,1672319033),(114553,7,30594,3,1672319033),(114554,7,30595,3,1672319033),(114555,7,30596,3,1672319033),(114556,7,30601,3,1672319033),(114557,7,30602,3,1672319033),(114558,7,30603,3,1672319033),(114559,7,30604,3,1672319033),(114560,7,30634,3,1672319033),(114561,7,30635,3,1672319033),(114562,7,30636,3,1672319033),(114563,7,30637,3,1672319033),(114564,7,30638,3,1672319033),(114565,7,30639,3,1672319033),(114566,7,30640,3,1672319033),(114567,7,30641,3,1672319033),(114568,7,30642,3,1672319033),(114569,7,30651,3,1672319033),(114570,7,30652,3,1672319033),(114571,7,30676,3,1672319033),(114572,7,30677,3,1672319033),(114573,7,30678,3,1672319033),(114574,7,30679,3,1672319033),(114575,7,30680,3,1672319033),(114576,7,30681,3,1672319033),(114577,7,30682,3,1672319033),(114578,7,30683,3,1672319033),(114579,7,30684,3,1672319033),(114580,7,30685,3,1672319033),(114581,7,30686,3,1672319033),(114582,7,30687,3,1672319033),(114583,7,30688,3,1672319033),(114584,7,30689,3,1672319033),(114585,7,30690,3,1672319033),(114586,7,30691,3,1672319033),(114587,7,30692,3,1672319033),(114588,7,30697,3,1672319033),(114589,7,30698,3,1672319033),(114590,7,30699,3,1672319033),(114591,7,30700,3,1672319033),(114592,7,30705,3,1672319033),(114593,7,30706,3,1672319033),(114594,7,30707,3,1672319033),(114595,7,30708,3,1672319033),(114596,7,30709,3,1672319033),(114597,7,30710,3,1672319033),(114598,7,30711,3,1672319033),(114599,7,30712,3,1672319033),(114600,7,30713,3,1672319033),(114601,7,30722,3,1672319033),(114602,7,30723,3,1672319033),(114603,7,30724,3,1672319033),(114604,7,30725,3,1672319033),(114605,7,30726,3,1672319033),(114606,7,30727,3,1672319033),(114607,7,30728,3,1672319033),(114608,7,30729,3,1672319033),(114609,7,30731,3,1672319033),(114610,7,30732,3,1672319033),(114611,7,30737,3,1672319033),(114612,7,30738,3,1672319033),(114613,7,30739,3,1672319033),(114614,7,30740,3,1672319033),(114615,7,30741,3,1672319033),(114616,7,30742,3,1672319033),(114617,7,30743,3,1672319033),(114618,7,30744,3,1672319033),(114619,7,30745,3,1672319033),(114620,7,30746,3,1672319033),(114621,7,30747,3,1672319033),(114622,7,30748,3,1672319033),(114623,7,30749,3,1672319033),(114624,7,30750,3,1672319033),(114625,7,30751,3,1672319033),(114626,7,30752,3,1672319033),(114627,7,30753,3,1672319033),(114628,7,30754,3,1672319033),(114629,7,30755,3,1672319033),(114630,7,30756,3,1672319033),(114631,7,30757,3,1672319033),(114632,7,30766,3,1672319033),(114633,7,30767,3,1672319033),(114634,7,30768,3,1672319033),(114635,7,30769,3,1672319033),(114636,7,30770,3,1672319033),(114637,7,30771,3,1672319033),(114638,7,30772,3,1672319033),(114639,7,30773,3,1672319033),(114640,7,30774,3,1672319033),(114641,7,30775,3,1672319033),(114642,7,30776,3,1672319033),(114643,7,30777,3,1672319033),(114644,7,30778,3,1672319033),(114645,7,30779,3,1672319033),(114646,7,30780,3,1672319033),(114647,7,30781,3,1672319033),(114648,7,30782,3,1672319033),(114649,7,30783,3,1672319033),(114650,7,30784,3,1672319033),(114651,7,30787,3,1672319033),(114652,7,30788,3,1672319033),(114653,7,30789,3,1672319033),(114654,7,30790,3,1672319033),(114655,7,30791,3,1672319033),(114656,7,30792,3,1672319033),(114657,7,30793,3,1672319033),(114658,7,30794,3,1672319033),(114659,7,30795,3,1672319033),(114660,7,30796,3,1672319033),(114661,7,30797,3,1672319033),(114662,7,30798,3,1672319033),(114663,7,30799,3,1672319033),(114664,7,30800,3,1672319033),(114665,7,30801,3,1672319033),(114666,7,30802,3,1672319033),(114667,7,30803,3,1672319033),(114668,7,30812,3,1672319033),(114669,7,30813,3,1672319033),(114670,7,30814,3,1672319033),(114671,7,30815,3,1672319033),(114672,7,30816,3,1672319033),(114673,7,30817,3,1672319033),(114674,7,30818,3,1672319033),(114675,7,30819,3,1672319033),(114676,7,30820,3,1672319033),(114677,7,30821,3,1672319033),(114678,7,30822,3,1672319033),(114679,7,30823,3,1672319033),(114680,7,30824,3,1672319033),(114681,7,30825,3,1672319033),(114682,7,30828,3,1672319033),(114683,7,30829,3,1672319033),(114684,7,30830,3,1672319033),(114685,7,30831,3,1672319033),(114686,7,30832,3,1672319033),(114687,7,30833,3,1672319033),(114688,7,30834,3,1672319033),(114689,7,30835,3,1672319033),(114690,7,30836,3,1672319033),(114691,7,30837,3,1672319033),(114692,7,30838,3,1672319033),(114693,7,30839,3,1672319033),(114694,7,30840,3,1672319033),(114695,7,30841,3,1672319033),(114696,7,30842,3,1672319033),(114697,7,30843,3,1672319033),(114698,7,30844,3,1672319033),(114699,7,30853,3,1672319033),(114700,7,30854,3,1672319033),(114701,7,30855,3,1672319033),(114702,7,30856,3,1672319033),(114703,7,30857,3,1672319033),(114704,7,30858,3,1672319033),(114705,7,30859,3,1672319033),(114706,7,30861,3,1672319033),(114707,7,30862,3,1672319033),(114708,7,30863,3,1672319033),(114709,7,30864,3,1672319033),(114710,7,30865,3,1672319033),(114711,7,30866,3,1672319033),(114712,7,30867,3,1672319033),(114713,7,30868,3,1672319033),(114714,7,30869,3,1672319033),(114715,7,30870,3,1672319033),(114716,7,30871,3,1672319033),(114717,7,30872,3,1672319033),(114718,7,30873,3,1672319033),(114719,7,30874,3,1672319033),(114720,7,30875,3,1672319033),(114721,7,30876,3,1672319033),(114722,7,30885,3,1672319033),(114723,7,30886,3,1672319033),(114724,7,30887,3,1672319033),(114725,7,30888,3,1672319033),(114726,7,30889,3,1672319033),(114727,7,30890,3,1672319033),(114728,7,30891,3,1672319033),(114729,7,30893,3,1672319033),(114730,7,30894,3,1672319033),(114731,7,30895,3,1672319033),(114732,7,30896,3,1672319033),(114733,7,30897,3,1672319033),(114734,7,30898,3,1672319033),(114735,7,30899,3,1672319033),(114736,7,30901,3,1672319033),(114737,7,30902,3,1672319033),(114738,7,30903,3,1672319033),(114739,7,30904,3,1672319033),(114740,7,30905,3,1672319033),(114741,7,30906,3,1672319033),(114742,7,30907,3,1672319033),(114743,7,30909,3,1672319033),(114744,7,30910,3,1672319033),(114745,7,30911,3,1672319033),(114746,7,30912,3,1672319033),(114747,7,30913,3,1672319033),(114748,7,30914,3,1672319033),(114749,7,30915,3,1672319033),(114750,7,30917,3,1672319033),(114751,7,30918,3,1672319033),(114752,7,30919,3,1672319033),(114753,7,30920,3,1672319033),(114754,7,30921,3,1672319033),(114755,7,30922,3,1672319033),(114756,7,30923,3,1672319033),(114757,7,30925,3,1672319033),(114758,7,30926,3,1672319033),(114759,7,30927,3,1672319033),(114760,7,30928,3,1672319033),(114761,7,30929,3,1672319033),(114762,7,30930,3,1672319033),(114763,7,30931,3,1672319033),(114764,7,30933,3,1672319033),(114765,7,30934,3,1672319033),(114766,7,30935,3,1672319033),(114767,7,30936,3,1672319033),(114768,7,30937,3,1672319033),(114769,7,30938,3,1672319033),(114770,7,30939,3,1672319033),(114771,7,30941,3,1672319033),(114772,7,30943,3,1672319033),(114773,7,30944,3,1672319033),(114774,7,30945,3,1672319033),(114775,7,30946,3,1672319033),(114776,7,30947,3,1672319033),(114777,7,30948,3,1672319033),(114778,7,30949,3,1672319033),(114779,7,30950,3,1672319033),(114780,7,30951,3,1672319033),(114781,7,30952,3,1672319033),(114782,7,30953,3,1672319033),(114783,7,30954,3,1672319033),(114784,7,30959,3,1672319033),(114785,7,30960,3,1672319033),(114786,7,30961,3,1672319033),(114787,7,30962,3,1672319033),(114788,7,30963,3,1672319033),(114789,7,30964,3,1672319033),(114790,7,30965,3,1672319033),(114791,7,30966,3,1672319033),(114792,7,30967,3,1672319033),(114793,7,30968,3,1672319033),(114794,7,30969,3,1672319033),(114795,7,30970,3,1672319033),(114796,7,30971,3,1672319033),(114797,7,30972,3,1672319033),(114798,7,30973,3,1672319033),(114799,7,30974,3,1672319033),(114800,7,30975,3,1672319033),(114801,7,30976,3,1672319033),(114802,7,30977,3,1672319033),(114803,7,30978,3,1672319033),(114804,7,30979,3,1672319033),(114805,7,30980,3,1672319033),(114806,7,30981,3,1672319033),(114807,7,30982,3,1672319033),(114808,7,30985,3,1672319033),(114809,7,30986,3,1672319033),(114810,7,30987,3,1672319033),(114811,7,30988,3,1672319033),(114812,7,30989,3,1672319033),(114813,7,30990,3,1672319033),(114814,7,30991,3,1672319033),(114815,7,30992,3,1672319033),(114816,7,30993,3,1672319033),(114817,7,30994,3,1672319033),(114818,7,31000,3,1672319033),(114819,7,31001,3,1672319033),(114820,7,31002,3,1672319033),(114821,7,31003,3,1672319033),(114822,7,31004,3,1672319033),(114823,7,31005,3,1672319033),(114824,7,31009,3,1672319033),(114825,7,31010,3,1672319033),(114826,7,31011,3,1672319033),(114827,7,31012,3,1672319033),(114828,7,31013,3,1672319033),(114829,7,31014,3,1672319033),(114830,7,31015,3,1672319033),(114831,7,31016,3,1672319033),(114832,7,31017,3,1672319033),(114833,7,31018,3,1672319033),(114834,7,31019,3,1672319033),(114835,7,31020,3,1672319033),(114836,7,31021,3,1672319033),(114837,7,31022,3,1672319033),(114838,7,31023,3,1672319033),(114839,7,31024,3,1672319033),(114840,7,31026,3,1672319033),(114841,7,31027,3,1672319033),(114842,7,31028,3,1672319033),(114843,7,31029,3,1672319033),(114844,7,31030,3,1672319033),(114845,7,31031,3,1672319033),(114846,7,31033,3,1672319033),(114847,7,31034,3,1672319033),(114848,7,31035,3,1672319033),(114849,7,31036,3,1672319033),(114850,7,31037,3,1672319033),(114851,7,31038,3,1672319033),(114852,7,31039,3,1672319033),(114853,7,31040,3,1672319033),(114854,7,31041,3,1672319033),(114855,7,31042,3,1672319033),(114856,7,31043,3,1672319033),(114857,7,31044,3,1672319033),(114858,7,31045,3,1672319033),(114859,7,31054,3,1672319033),(114860,7,31055,3,1672319033),(114861,7,31056,3,1672319033),(114862,7,31057,3,1672319033),(114863,7,31058,3,1672319033),(114864,7,31059,3,1672319033),(114865,7,31060,3,1672319033),(114866,7,31061,3,1672319033),(114867,7,31062,3,1672319033),(114868,7,31063,3,1672319033),(114869,7,31064,3,1672319033),(114870,7,31065,3,1672319033),(114871,7,31066,3,1672319033),(114872,7,31067,3,1672319033),(114873,7,31068,3,1672319033),(114874,7,31069,3,1672319033),(114875,7,31070,3,1672319033),(114876,7,31071,3,1672319033),(114877,7,31072,3,1672319033),(114878,7,31073,3,1672319033),(114879,7,31074,3,1672319033),(114880,7,31075,3,1672319033),(114881,7,31076,3,1672319033),(114882,7,31077,3,1672319033),(114883,7,31078,3,1672319033),(114884,7,31079,3,1672319033),(114885,7,31080,3,1672319033),(114886,7,31081,3,1672319033),(114887,7,31082,3,1672319033),(114888,7,31083,3,1672319033),(114889,7,31084,3,1672319033),(114890,7,31085,3,1672319033),(114891,7,31086,3,1672319033),(114892,7,31087,3,1672319033),(114893,7,31088,3,1672319033),(114894,7,31089,3,1672319033),(114895,7,31090,3,1672319033),(114896,7,31091,3,1672319033),(114897,7,31092,3,1672319033),(114898,7,31093,3,1672319033),(114899,7,31094,3,1672319033),(114900,7,31095,3,1672319033),(114901,7,31096,3,1672319033),(114902,7,31097,3,1672319033),(114903,7,31098,3,1672319033),(114904,7,31099,3,1672319033),(114905,7,31100,3,1672319033),(114906,7,31101,3,1672319033),(114907,7,31102,3,1672319033),(114908,7,31103,3,1672319033),(114909,7,31104,3,1672319033),(114910,7,31105,3,1672319033),(114911,7,31106,3,1672319033),(114912,7,31107,3,1672319033),(114913,7,31108,3,1672319033),(114914,7,31109,3,1672319033),(114915,7,31110,3,1672319033),(114916,7,31111,3,1672319033),(114917,7,31112,3,1672319033),(114918,7,31113,3,1672319033),(114919,7,31114,3,1672319033),(114920,7,31115,3,1672319033),(114921,7,31116,3,1672319033),(114922,7,31117,3,1672319033),(114923,7,31118,3,1672319033),(114924,7,31119,3,1672319033),(114925,7,31120,3,1672319033),(114926,7,31121,3,1672319033),(114927,7,31122,3,1672319033),(114928,7,31123,3,1672319033),(114929,7,31124,3,1672319033),(114930,7,31125,3,1672319033),(114931,7,31126,3,1672319033),(114932,7,31127,3,1672319033),(114933,7,31128,3,1672319033),(114934,7,31129,3,1672319033),(114935,7,31130,3,1672319033),(114936,7,31131,3,1672319033),(114937,7,31132,3,1672319033),(114938,7,31133,3,1672319033),(114939,7,31134,3,1672319033),(114940,7,31135,3,1672319033),(114941,7,31136,3,1672319033),(114942,7,31137,3,1672319033),(114943,7,31138,3,1672319033),(114944,7,31139,3,1672319033),(114945,7,31140,3,1672319033),(114946,7,31141,3,1672319033),(114947,7,31142,3,1672319033),(114948,7,31143,3,1672319033),(114949,7,31144,3,1672319033),(114950,7,31145,3,1672319033),(114951,7,31146,3,1672319033),(114952,7,31147,3,1672319033),(114953,7,31148,3,1672319033),(114954,7,31149,3,1672319033),(114955,7,31150,3,1672319033),(114956,7,31151,3,1672319033),(114957,7,31152,3,1672319033),(114958,7,31153,3,1672319033),(114959,7,31154,3,1672319033),(114960,7,31155,3,1672319033),(114961,7,31156,3,1672319033),(114962,7,31157,3,1672319033),(114963,7,31158,3,1672319033),(114964,7,31159,3,1672319033),(114965,7,31160,3,1672319033),(114966,7,31161,3,1672319033),(114967,7,31162,3,1672319033),(114968,7,31163,3,1672319033),(114969,7,31164,3,1672319033),(114970,7,31165,3,1672319033),(114971,7,31166,3,1672319033),(114972,7,31167,3,1672319033),(114973,7,31168,3,1672319033),(114974,7,31169,3,1672319033),(114975,7,31170,3,1672319033),(114976,7,31171,3,1672319033),(114977,7,31172,3,1672319033),(114978,7,31173,3,1672319033),(114979,7,31174,3,1672319033),(114980,7,31175,3,1672319033),(114981,7,31176,3,1672319033),(114982,7,31177,3,1672319033),(114983,7,31178,3,1672319033),(114984,7,31179,3,1672319033),(114985,7,31180,3,1672319033),(114986,7,31181,3,1672319033),(114987,7,31182,3,1672319033),(114988,7,31183,3,1672319033),(114989,7,31184,3,1672319033),(114990,7,31185,3,1672319033),(114991,7,31186,3,1672319033),(114992,7,31187,3,1672319033),(114993,7,31188,3,1672319033),(114994,7,31189,3,1672319033),(114995,7,31190,3,1672319033),(114996,7,31191,3,1672319033),(114997,7,31192,3,1672319033),(114998,7,31193,3,1672319033),(114999,7,31194,3,1672319033),(115000,7,31195,3,1672319033),(115001,7,31196,3,1672319033),(115002,7,31197,3,1672319033),(115003,7,31198,3,1672319033),(115004,7,31199,3,1672319033),(115005,7,31200,3,1672319033),(115006,7,31201,3,1672319033),(115007,7,31202,3,1672319033),(115008,7,31203,3,1672319033),(115009,7,31204,3,1672319033),(115010,7,31205,3,1672319033),(115011,7,31206,3,1672319033),(115012,7,31207,3,1672319033),(115013,7,31208,3,1672319033),(115014,7,31209,3,1672319033),(115015,7,31210,3,1672319033),(115016,7,31211,3,1672319033),(115017,7,31212,3,1672319033),(115018,7,31213,3,1672319033),(115019,7,31214,3,1672319033),(115020,7,31215,3,1672319033),(115021,7,31216,3,1672319033),(115022,7,31217,3,1672319033),(115023,7,31218,3,1672319033),(115024,7,31219,3,1672319033),(115025,7,31220,3,1672319033),(115026,7,31221,3,1672319033),(115027,7,31222,3,1672319033),(115028,7,31223,3,1672319033),(115029,7,31224,3,1672319033),(115030,7,31225,3,1672319033),(115031,7,31226,3,1672319033),(115032,7,31227,3,1672319033),(115033,7,31228,3,1672319033),(115034,7,31229,3,1672319033),(115035,7,31230,3,1672319033),(115036,7,31231,3,1672319033),(115037,7,31232,3,1672319033),(115038,7,31233,3,1672319033),(115039,7,31234,3,1672319033),(115040,7,31235,3,1672319033),(115041,7,31236,3,1672319033),(115042,7,31237,3,1672319033),(115043,7,31238,3,1672319033),(115044,7,31239,3,1672319033),(115045,7,31240,3,1672319033),(115046,7,31241,3,1672319033),(115047,7,31242,3,1672319033),(115048,7,31243,3,1672319033),(115049,7,31244,3,1672319033),(115050,7,31245,3,1672319033),(115051,7,31246,3,1672319033),(115052,7,31247,3,1672319033),(115053,7,31248,3,1672319033),(115054,7,31249,3,1672319033),(115055,7,31250,3,1672319033),(115056,7,31251,3,1672319033),(115057,7,31252,3,1672319033),(115058,7,31253,3,1672319033),(115059,7,31254,3,1672319033),(115060,7,31255,3,1672319033),(115061,7,31256,3,1672319033),(115062,7,31257,3,1672319033),(115063,7,31258,3,1672319033),(115064,7,31259,3,1672319033),(115065,7,31260,3,1672319033),(115066,7,31261,3,1672319033),(115067,7,31262,3,1672319033),(115068,7,31263,3,1672319033),(115069,7,31264,3,1672319033),(115070,7,31265,3,1672319033),(115071,7,31266,3,1672319033),(115072,7,31267,3,1672319033),(115073,7,31268,3,1672319033),(115074,7,31269,3,1672319033),(115075,7,31270,3,1672319033),(115076,7,31271,3,1672319033),(115077,7,31272,3,1672319033),(115078,7,31273,3,1672319033),(115079,7,31274,3,1672319033),(115080,7,31275,3,1672319033),(115081,7,31276,3,1672319033),(115082,7,31277,3,1672319033),(115083,7,31278,3,1672319033),(115084,7,31279,3,1672319033),(115085,7,31280,3,1672319033),(115086,7,31281,3,1672319033),(115087,7,31282,3,1672319033),(115088,7,31283,3,1672319033),(115089,7,31284,3,1672319033),(115090,7,31285,3,1672319033),(115091,7,31286,3,1672319033),(115092,7,31287,3,1672319033),(115093,7,31288,3,1672319033),(115094,7,31289,3,1672319033),(115095,7,31290,3,1672319033),(115096,7,31291,3,1672319033),(115097,7,31292,3,1672319033),(115098,7,31293,3,1672319033),(115099,7,31294,3,1672319033),(115100,7,31295,3,1672319033),(115101,7,31296,3,1672319033),(115102,7,31297,3,1672319033),(115103,7,31298,3,1672319033),(115104,7,31299,3,1672319033),(115105,7,31300,3,1672319033),(115106,7,31301,3,1672319033),(115107,7,31302,3,1672319033),(115108,7,31303,3,1672319033),(115109,7,31304,3,1672319033),(115110,7,31305,3,1672319033),(115111,7,31306,3,1672319033),(115112,7,31307,3,1672319033),(115113,7,31308,3,1672319033),(115114,7,31309,3,1672319033),(115115,7,31310,3,1672319033),(115116,7,31311,3,1672319033),(115117,7,31312,3,1672319033),(115118,7,31313,3,1672319033),(115119,7,31314,3,1672319033),(115120,7,31315,3,1672319033),(115121,7,31316,3,1672319033),(115122,7,31317,3,1672319033),(115123,7,31318,3,1672319033),(115124,7,31319,3,1672319033),(115125,7,31320,3,1672319033),(115126,7,31321,3,1672319033),(115127,7,31322,3,1672319033),(115128,7,31323,3,1672319033),(115129,7,31324,3,1672319033),(115130,7,31325,3,1672319033),(115131,7,31326,3,1672319033),(115132,7,31327,3,1672319033),(115133,7,31328,3,1672319033),(115134,7,31329,3,1672319033),(115135,7,31330,3,1672319033),(115136,7,31331,3,1672319033),(115137,7,31332,3,1672319033),(115138,7,31333,3,1672319033),(115139,7,31334,3,1672319033),(115140,7,31335,3,1672319033),(115141,7,31336,3,1672319033),(115142,7,31337,3,1672319033),(115143,7,31338,3,1672319033),(115144,7,31339,3,1672319033),(115145,7,31340,3,1672319033),(115146,7,31341,3,1672319033),(115147,7,31342,3,1672319033),(115148,7,31343,3,1672319033),(115149,7,31344,3,1672319033),(115150,7,31345,3,1672319033),(115151,7,31346,3,1672319033),(115152,7,31347,3,1672319033),(115153,7,31348,3,1672319033),(115154,7,31349,3,1672319033),(115155,7,31350,3,1672319033),(115156,7,31351,3,1672319033),(115157,7,31352,3,1672319033),(115158,7,31353,3,1672319033),(115159,7,31354,3,1672319033),(115160,7,31355,3,1672319033),(115161,7,31356,3,1672319033),(115162,7,31357,3,1672319033),(115163,7,31358,3,1672319033),(115164,7,31359,3,1672319033),(115165,7,31360,3,1672319033),(115166,7,31361,3,1672319033),(115167,7,31362,3,1672319033),(115168,7,31363,3,1672319033),(115169,7,31364,3,1672319033),(115170,7,31365,3,1672319033),(115171,7,31366,3,1672319033),(115172,7,31375,3,1672319033),(115173,7,31376,3,1672319033),(115174,7,31377,3,1672319033),(115175,7,31378,3,1672319033),(115176,7,31379,3,1672319033),(115177,7,31380,3,1672319033),(115178,7,31381,3,1672319033),(115179,7,31382,3,1672319033),(115180,7,31383,3,1672319033),(115181,7,31384,3,1672319033),(115182,7,31385,3,1672319033),(115183,7,31386,3,1672319033),(115184,7,31387,3,1672319033),(115185,7,31388,3,1672319033),(115186,7,31389,3,1672319033),(115187,7,31390,3,1672319033),(115188,7,31391,3,1672319033),(115189,7,31392,3,1672319033),(115190,7,31393,3,1672319033),(115191,7,31394,3,1672319033),(115192,7,31395,3,1672319033),(115193,7,31396,3,1672319033),(115194,7,31397,3,1672319033),(115195,7,31398,3,1672319033),(115196,7,31399,3,1672319033),(115197,7,31400,3,1672319033),(115198,7,31401,3,1672319033),(115199,7,31402,3,1672319033),(115200,7,31403,3,1672319033),(115201,7,31404,3,1672319033),(115202,7,31405,3,1672319033),(115203,7,31406,3,1672319033),(115204,7,31407,3,1672319033),(115205,7,31408,3,1672319033),(115206,7,31409,3,1672319033),(115207,7,31410,3,1672319033),(115208,7,31411,3,1672319033),(115209,7,31412,3,1672319033),(115210,7,31413,3,1672319033),(115211,7,31414,3,1672319033),(115212,7,31415,3,1672319033),(115213,7,31416,3,1672319033),(115214,7,31417,3,1672319033),(115215,7,31418,3,1672319033),(115216,7,31419,3,1672319033),(115217,7,31420,3,1672319033),(115218,7,31421,3,1672319033),(115219,7,31422,3,1672319033),(115220,7,31423,3,1672319033),(115221,7,31424,3,1672319033),(115222,7,31425,3,1672319033),(115223,7,31426,3,1672319033),(115224,7,31427,3,1672319033),(115225,7,31428,3,1672319033),(115226,7,31429,3,1672319033),(115227,7,31430,3,1672319033),(115228,7,31431,3,1672319033),(115229,7,31432,3,1672319033),(115230,7,31433,3,1672319033),(115231,7,31434,3,1672319033),(115232,7,31439,3,1672319033),(115233,7,31440,3,1672319033),(115234,7,31441,3,1672319033),(115235,7,31442,3,1672319033),(115236,7,31443,3,1672319033),(115237,7,31444,3,1672319033),(115238,7,31445,3,1672319033),(115239,7,31446,3,1672319033),(115240,7,31447,3,1672319033),(115241,7,31448,3,1672319033),(115242,7,31449,3,1672319033),(115243,7,31450,3,1672319033),(115244,7,31451,3,1672319033),(115245,7,31452,3,1672319033),(115246,7,31453,3,1672319033),(115247,7,31454,3,1672319033),(115248,7,31455,3,1672319033),(115249,7,31456,3,1672319033),(115250,7,31457,3,1672319033),(115251,7,31458,3,1672319033),(115252,7,31459,3,1672319033),(115253,7,31460,3,1672319033),(115254,7,31461,3,1672319033),(115255,7,31462,3,1672319033),(115256,7,31463,3,1672319033),(115257,7,31466,3,1672319033),(115258,7,31470,3,1672319033),(115259,7,31471,3,1672319033),(115260,7,31472,3,1672319033),(115261,7,31473,3,1672319033),(115262,7,31474,3,1672319033),(115263,7,31475,3,1672319033),(115264,7,31476,3,1672319033),(115265,7,31477,3,1672319033),(115266,7,31478,3,1672319033),(115267,7,31479,3,1672319033),(115268,7,31480,3,1672319033),(115269,7,31481,3,1672319033),(115270,7,31482,3,1672319033),(115271,7,31483,3,1672319033),(115272,7,31484,3,1672319033),(115273,7,31485,3,1672319033),(115274,7,31486,3,1672319033),(115275,7,31487,3,1672319033),(115276,7,31488,3,1672319033),(115277,7,31489,3,1672319033),(115278,7,31490,3,1672319033),(115279,7,31491,3,1672319033),(115280,7,31492,3,1672319033),(115281,7,31493,3,1672319033),(115282,7,31494,3,1672319033),(115283,7,31495,3,1672319033),(115284,7,31496,3,1672319033),(115285,7,31497,3,1672319033),(115286,7,31498,3,1672319033),(115287,7,31499,3,1672319033),(115288,7,31500,3,1672319033),(115289,7,31501,3,1672319033),(115290,7,31502,3,1672319033),(115291,7,31503,3,1672319033),(115292,7,31504,3,1672319033),(115293,7,31505,3,1672319033),(115294,7,31506,3,1672319033),(115295,7,31507,3,1672319033),(115296,7,31508,3,1672319033),(115297,7,31509,3,1672319033),(115298,7,31510,3,1672319033),(115299,7,31511,3,1672319033),(115300,7,31512,3,1672319033),(115301,7,31513,3,1672319033),(115302,7,31514,3,1672319033),(115303,7,31515,3,1672319033),(115304,7,31516,3,1672319033),(115305,7,31517,3,1672319033),(115306,7,31518,3,1672319033),(115307,7,31519,3,1672319033),(115308,7,31520,3,1672319033),(115309,7,31521,3,1672319033),(115310,7,31522,3,1672319033),(115311,7,31523,3,1672319033),(115312,7,31524,3,1672319033),(115313,7,31525,3,1672319033),(115314,7,31526,3,1672319033),(115315,7,31527,3,1672319033),(115316,7,31528,3,1672319033),(115317,7,31529,3,1672319033),(115318,7,31530,3,1672319033),(115319,7,31531,3,1672319033),(115320,7,31532,3,1672319033),(115321,7,31533,3,1672319033),(115322,7,31534,3,1672319033),(115323,7,31535,3,1672319033),(115324,7,31536,3,1672319033),(115325,7,31537,3,1672319033),(115326,7,31538,3,1672319033),(115327,7,31539,3,1672319033),(115328,7,31540,3,1672319033),(115329,7,31541,3,1672319033),(115330,7,31542,3,1672319033),(115331,7,31543,3,1672319033),(115332,7,31544,3,1672319033),(115333,7,31545,3,1672319033),(115334,7,31546,3,1672319033),(115335,7,31547,3,1672319033),(115336,7,31548,3,1672319033),(115337,7,31549,3,1672319033),(115338,7,31550,3,1672319033),(115339,7,31551,3,1672319033),(115340,7,31552,3,1672319033),(115341,7,31553,3,1672319033),(115342,7,31554,3,1672319033),(115343,7,31555,3,1672319033),(115344,7,31556,3,1672319033),(115345,7,31557,3,1672319033),(115346,7,31558,3,1672319033),(115347,7,31559,3,1672319033),(115348,7,31560,3,1672319033),(115349,7,31561,3,1672319033),(115350,7,31562,3,1672319033),(115351,7,31563,3,1672319033),(115352,7,31564,3,1672319033),(115353,7,31565,3,1672319033),(115354,7,31566,3,1672319033),(115355,7,31567,3,1672319033),(115356,7,31568,3,1672319033),(115357,7,31569,3,1672319033),(115358,7,31570,3,1672319033),(115359,7,31571,3,1672319033),(115360,7,31572,3,1672319033),(115361,7,31573,3,1672319033),(115362,7,31574,3,1672319033),(115363,7,31575,3,1672319033),(115364,7,31576,3,1672319033),(115365,7,31577,3,1672319033),(115366,7,31578,3,1672319033),(115367,7,31579,3,1672319033),(115368,7,31580,3,1672319033),(115369,7,31581,3,1672319033),(115370,7,31582,3,1672319033),(115371,7,31583,3,1672319033),(115372,7,31584,3,1672319033),(115373,7,31585,3,1672319033),(115374,7,31586,3,1672319033),(115375,7,31587,3,1672319033),(115376,7,31588,3,1672319033),(115377,7,31589,3,1672319033),(115378,7,31590,3,1672319033),(115379,7,31591,3,1672319033),(115380,7,31592,3,1672319033),(115381,7,31593,3,1672319033),(115382,7,31594,3,1672319033),(115383,7,31595,3,1672319033),(115384,7,31596,3,1672319033),(115385,7,31597,3,1672319033),(115386,7,31598,3,1672319033),(115387,7,31599,3,1672319033),(115388,7,31600,3,1672319033),(115389,7,31601,3,1672319033),(115390,7,31602,3,1672319033),(115391,7,31603,3,1672319033),(115392,7,31604,3,1672319033),(115393,7,31605,3,1672319033),(115394,7,31606,3,1672319033),(115395,7,31607,3,1672319033),(115396,7,31608,3,1672319033),(115397,7,31609,3,1672319033),(115398,7,31610,3,1672319033),(115399,7,31611,3,1672319033),(115400,7,31612,3,1672319033),(115401,7,31613,3,1672319033),(115402,7,31614,3,1672319033),(115403,7,31615,3,1672319033),(115404,7,31616,3,1672319033),(115405,7,31617,3,1672319033),(115406,7,31618,3,1672319033),(115407,7,31619,3,1672319033),(115408,7,31620,3,1672319033),(115409,7,31621,3,1672319033),(115410,7,31622,3,1672319033),(115411,7,31623,3,1672319033),(115412,7,31624,3,1672319033),(115413,7,31625,3,1672319033),(115414,7,31626,3,1672319033),(115415,7,31627,3,1672319033),(115416,7,31628,3,1672319033),(115417,7,31629,3,1672319033),(115418,7,31630,3,1672319033),(115419,7,31631,3,1672319033),(115420,7,31632,3,1672319033),(115421,7,31633,3,1672319033),(115422,7,31634,3,1672319033),(115423,7,31635,3,1672319033),(115424,7,31636,3,1672319033),(115425,7,31637,3,1672319033),(115426,7,31638,3,1672319033),(115427,7,31639,3,1672319033),(115428,7,31640,3,1672319033),(115429,7,31641,3,1672319033),(115430,7,31642,3,1672319033),(115431,7,31643,3,1672319033),(115432,7,31644,3,1672319033),(115433,7,31645,3,1672319033),(115434,7,31646,3,1672319033),(115435,7,31647,3,1672319033),(115436,7,31648,3,1672319033),(115437,7,31649,3,1672319033),(115438,7,31650,3,1672319033),(115439,7,31651,3,1672319033),(115440,7,31652,3,1672319033),(115441,7,31653,3,1672319033),(115442,7,31654,3,1672319033),(115443,7,31655,3,1672319033),(115444,7,31656,3,1672319033),(115445,7,31657,3,1672319033),(115446,7,31658,3,1672319033),(115447,7,31659,3,1672319033),(115448,7,31660,3,1672319033),(115449,7,31661,3,1672319033),(115450,7,31662,3,1672319033),(115451,7,31663,3,1672319033),(115452,7,31664,3,1672319033),(115453,7,31665,3,1672319033),(115454,7,31666,3,1672319033),(115455,7,31667,3,1672319033),(115456,7,31668,3,1672319033),(115457,7,31669,3,1672319033),(115458,7,31670,3,1672319033),(115459,7,31671,3,1672319033),(115460,7,31672,3,1672319033),(115461,7,31673,3,1672319033),(115462,7,31674,3,1672319033),(115463,7,31675,3,1672319033),(115464,7,31676,3,1672319033),(115465,7,31677,3,1672319033),(115466,7,31678,3,1672319033),(115467,7,31679,3,1672319033),(115468,7,31680,3,1672319033),(115469,7,31681,3,1672319033),(115470,7,31682,3,1672319033),(115471,7,31683,3,1672319033),(115472,7,31684,3,1672319033),(115473,7,31685,3,1672319033),(115474,7,31686,3,1672319033),(115475,7,31687,3,1672319033),(115476,7,31688,3,1672319033),(115477,7,31689,3,1672319033),(115478,7,31690,3,1672319033),(115479,7,31691,3,1672319033),(115480,7,31692,3,1672319033),(115481,7,31693,3,1672319033),(115482,7,31694,3,1672319033),(115483,7,31695,3,1672319033),(115484,7,31696,3,1672319033),(115485,7,31697,3,1672319033),(115486,7,31698,3,1672319033),(115487,7,31699,3,1672319033),(115488,7,31700,3,1672319033),(115489,7,31701,3,1672319033),(115490,7,31702,3,1672319033),(115491,7,31703,3,1672319033),(115492,7,31704,3,1672319033),(115493,7,31705,3,1672319033),(115494,7,31706,3,1672319033),(115495,7,31707,3,1672319033),(115496,7,31708,3,1672319033),(115497,7,31709,3,1672319033),(115498,7,31710,3,1672319033),(115499,7,31711,3,1672319033),(115500,7,31712,3,1672319033),(115501,7,31713,3,1672319033),(115502,7,31714,3,1672319033),(115503,7,31715,3,1672319033),(115504,7,31716,3,1672319033),(115505,7,31717,3,1672319033),(115506,7,31718,3,1672319033),(115507,7,31719,3,1672319033),(115508,7,31720,3,1672319033),(115509,7,31721,3,1672319033),(115510,7,31722,3,1672319033),(115511,7,31723,3,1672319033),(115512,7,31724,3,1672319033),(115513,7,31725,3,1672319033),(115514,7,31726,3,1672319033),(115515,7,31727,3,1672319033),(115516,7,31728,3,1672319033),(115517,7,31729,3,1672319033),(115518,7,31730,3,1672319033),(115519,7,31731,3,1672319033),(115520,7,31732,3,1672319033),(115521,7,31733,3,1672319033),(115522,7,31734,3,1672319033),(115523,7,31735,3,1672319033),(115524,7,31736,3,1672319033),(115525,7,31737,3,1672319033),(115526,7,31738,3,1672319033),(115527,7,31739,3,1672319033),(115528,7,31740,3,1672319033),(115529,7,31741,3,1672319033),(115530,7,31742,3,1672319033),(115531,7,31743,3,1672319033),(115532,7,31744,3,1672319033),(115533,7,31745,3,1672319033),(115534,7,31746,3,1672319033),(115535,7,31747,3,1672319033),(115536,7,31748,3,1672319033),(115537,7,31749,3,1672319033),(115538,7,31750,3,1672319033),(115539,7,31751,3,1672319033),(115540,7,31752,3,1672319033),(115541,7,31753,3,1672319033),(115542,7,31754,3,1672319033),(115543,7,31755,3,1672319033),(115544,7,31756,3,1672319033),(115545,7,31757,3,1672319033),(115546,7,31758,3,1672319033),(115547,7,31759,3,1672319033),(115548,7,31760,3,1672319033),(115549,7,31761,3,1672319033),(115550,7,31762,3,1672319033),(115551,7,31763,3,1672319033),(115552,7,31764,3,1672319033),(115553,7,31765,3,1672319033),(115554,7,31766,3,1672319033),(115555,7,31767,3,1672319033),(115556,7,31768,3,1672319033),(115557,7,31769,3,1672319033),(115558,7,31770,3,1672319033),(115559,7,31771,3,1672319033),(115560,7,31772,3,1672319033),(115561,7,31773,3,1672319033),(115562,7,31774,3,1672319033),(115563,7,31775,3,1672319033),(115564,7,31776,3,1672319033),(115565,7,31777,3,1672319033),(115566,7,31778,3,1672319033),(115567,7,31779,3,1672319033),(115568,7,31780,3,1672319033),(115569,7,31781,3,1672319033),(115570,7,31782,3,1672319033),(115571,7,31783,3,1672319033),(115572,7,31784,3,1672319033),(115573,7,31785,3,1672319033),(115574,7,31786,3,1672319033),(115575,7,31787,3,1672319033),(115576,7,31788,3,1672319033),(115577,7,31789,3,1672319033),(115578,7,31790,3,1672319033),(115579,7,31791,3,1672319033),(115580,7,31792,3,1672319033),(115581,7,31793,3,1672319033),(115582,7,31794,3,1672319033),(115583,7,31795,3,1672319033),(115584,7,31796,3,1672319033),(115585,7,31797,3,1672319033),(115586,7,31798,3,1672319033),(115587,7,31799,3,1672319033),(115588,7,31800,3,1672319033),(115589,7,31801,3,1672319033),(115590,7,31802,3,1672319033),(115591,7,31803,3,1672319033),(115592,7,31804,3,1672319033),(115593,7,31805,3,1672319033),(115594,7,31806,3,1672319033),(115595,7,31807,3,1672319033),(115596,7,31808,3,1672319033),(115597,7,31809,3,1672319033),(115598,7,31810,3,1672319033),(115599,7,31811,3,1672319033),(115600,7,31812,3,1672319033),(115601,7,31813,3,1672319033),(115602,7,31814,3,1672319033),(115603,7,31815,3,1672319033),(115604,7,31816,3,1672319033),(115605,7,31817,3,1672319033),(115606,7,31818,3,1672319033),(115607,7,31819,3,1672319033),(115608,7,31820,3,1672319033),(115609,7,31821,3,1672319033),(115610,7,31822,3,1672319033),(115611,7,31823,3,1672319033),(115612,7,31824,3,1672319033),(115613,7,31825,3,1672319033),(115614,7,31826,3,1672319033),(115615,7,31827,3,1672319033),(115616,7,31828,3,1672319033),(115617,7,31829,3,1672319033),(115618,7,31830,3,1672319033),(115619,7,31831,3,1672319033),(115620,7,31832,3,1672319033),(115621,7,31833,3,1672319033),(115622,7,31834,3,1672319033),(115623,7,31835,3,1672319033),(115624,7,31836,3,1672319033),(115625,7,31837,3,1672319033),(115626,7,31838,3,1672319033),(115627,7,31839,3,1672319033),(115628,7,31840,3,1672319033),(115629,7,31841,3,1672319033),(115630,7,31842,3,1672319033),(115631,7,31843,3,1672319033),(115632,7,31844,3,1672319033),(115633,7,31845,3,1672319033),(115634,7,31846,3,1672319033),(115635,7,31847,3,1672319033),(115636,7,31848,3,1672319033),(115637,7,31849,3,1672319033),(115638,7,31850,3,1672319033),(115639,7,31851,3,1672319033),(115640,7,31852,3,1672319033),(115641,7,31853,3,1672319033),(115642,7,31854,3,1672319033),(115643,7,31855,3,1672319033),(115644,7,31856,3,1672319033),(115645,7,31857,3,1672319033),(115646,7,31858,3,1672319033),(115647,7,31859,3,1672319033),(115648,7,31860,3,1672319033),(115649,7,31861,3,1672319033),(115650,7,31862,3,1672319033),(115651,7,31863,3,1672319033),(115652,7,31864,3,1672319033),(115653,7,31865,3,1672319033),(115654,7,31866,3,1672319033),(115655,7,31867,3,1672319033),(115656,7,31868,3,1672319033),(115657,7,31869,3,1672319033),(115658,7,31870,3,1672319033),(115659,7,31871,3,1672319033),(115660,7,31872,3,1672319033),(115661,7,31873,3,1672319033),(115662,7,31874,3,1672319033),(115663,7,31875,3,1672319033),(115664,7,31876,3,1672319033),(115665,7,31877,3,1672319033),(115666,7,31878,3,1672319033),(115667,7,31879,3,1672319033),(115668,7,31880,3,1672319033),(115669,7,31881,3,1672319033),(115670,7,31882,3,1672319033),(115671,7,31883,3,1672319033),(115672,7,31884,3,1672319033),(115673,7,31885,3,1672319033),(115674,7,31886,3,1672319033),(115675,7,31887,3,1672319033),(115676,7,31888,3,1672319033),(115677,7,31889,3,1672319033),(115678,7,31890,3,1672319033),(115679,7,31891,3,1672319033),(115680,7,31892,3,1672319033),(115681,7,31893,3,1672319033),(115682,7,31894,3,1672319033),(115683,7,31895,3,1672319033),(115684,7,31896,3,1672319033),(115685,7,31897,3,1672319033),(115686,7,31898,3,1672319033),(115687,7,31899,3,1672319033),(115688,7,31900,3,1672319033),(115689,7,31901,3,1672319033),(115690,7,31902,3,1672319033),(115691,7,31903,3,1672319033),(115692,7,31904,3,1672319033),(115693,7,31905,3,1672319033),(115694,7,31906,3,1672319033),(115695,7,31907,3,1672319033),(115696,7,31908,3,1672319033),(115697,7,31909,3,1672319033),(115698,7,31910,3,1672319033),(115699,7,31911,3,1672319033),(115700,7,31912,3,1672319033),(115701,7,31913,3,1672319033),(115702,7,31914,3,1672319033),(115703,7,31915,3,1672319033),(115704,7,31916,3,1672319033),(115705,7,31917,3,1672319033),(115706,7,31918,3,1672319033),(115707,7,31919,3,1672319033),(115708,7,31920,3,1672319033),(115709,7,31921,3,1672319033),(115710,7,31922,3,1672319033),(115711,7,31923,3,1672319033),(115712,7,31924,3,1672319033),(115713,7,31925,3,1672319033),(115714,7,31926,3,1672319033),(115715,7,31927,3,1672319033),(115716,7,31928,3,1672319033),(115717,7,31929,3,1672319033),(115718,7,31930,3,1672319033),(115719,7,31931,3,1672319033),(115720,7,31932,3,1672319033),(115721,7,31933,3,1672319033),(115722,7,31934,3,1672319033),(115723,7,31935,3,1672319033),(115724,7,31936,3,1672319033),(115725,7,31937,3,1672319033),(115726,7,31938,3,1672319033),(115727,7,31939,3,1672319033),(115728,7,31940,3,1672319033),(115729,7,31941,3,1672319033),(115730,7,31942,3,1672319033),(115731,7,31943,3,1672319033),(115732,7,31944,3,1672319033),(115733,7,31945,3,1672319033),(115734,7,31946,3,1672319033),(115735,7,31947,3,1672319033),(115736,7,31948,3,1672319033),(115737,7,31949,3,1672319033),(115738,7,31950,3,1672319033),(115739,7,31951,3,1672319033),(115740,7,31952,3,1672319033),(115741,7,31953,3,1672319033),(115742,7,31954,3,1672319033),(115743,7,31955,3,1672319033),(115744,7,31956,3,1672319033),(115745,7,31957,3,1672319033),(115746,7,31958,3,1672319033),(115747,7,31959,3,1672319033),(115748,7,31960,3,1672319033),(115749,7,31961,3,1672319033),(115750,7,31962,3,1672319033),(115751,7,31963,3,1672319033),(115752,7,31964,3,1672319033),(115753,7,31965,3,1672319033),(115754,7,31966,3,1672319033),(115755,7,31967,3,1672319033),(115756,7,31968,3,1672319033),(115757,7,31969,3,1672319033),(115758,7,31970,3,1672319033),(115759,7,31971,3,1672319033),(115760,7,31972,3,1672319033),(115761,7,31973,3,1672319033),(115762,7,31974,3,1672319033),(115763,7,31975,3,1672319033),(115764,7,31976,3,1672319033),(115765,7,31977,3,1672319033),(115766,7,31978,3,1672319033),(115767,7,31979,3,1672319033),(115768,7,31980,3,1672319033),(115769,7,31981,3,1672319033),(115770,7,31982,3,1672319033),(115771,7,31983,3,1672319033),(115772,7,31984,3,1672319033),(115773,7,31985,3,1672319033),(115774,7,31986,3,1672319033),(115775,7,31987,3,1672319033),(115776,7,31988,3,1672319033),(115777,7,31989,3,1672319033),(115778,7,31990,3,1672319033),(115779,7,31991,3,1672319033),(115780,7,31992,3,1672319033),(115781,7,31993,3,1672319033),(115782,7,31994,3,1672319033),(115783,7,31995,3,1672319033),(115784,7,31996,3,1672319033),(115785,7,31997,3,1672319033),(115786,7,31998,3,1672319033),(115787,7,31999,3,1672319033),(115788,7,32000,3,1672319033),(115789,7,32001,3,1672319033),(115790,7,32002,3,1672319033),(115791,7,32003,3,1672319033),(115792,7,32004,3,1672319033),(115793,7,32005,3,1672319033),(115794,7,32006,3,1672319033),(115795,7,32007,3,1672319033),(115796,7,32008,3,1672319033),(115797,7,32009,3,1672319033),(115798,7,32010,3,1672319033),(115799,7,32011,3,1672319033),(115800,7,32012,3,1672319033),(115801,7,32013,3,1672319033),(115802,7,32014,3,1672319033),(115803,7,32015,3,1672319033),(115804,7,32016,3,1672319033),(115805,7,32017,3,1672319033),(115806,7,32018,3,1672319033),(115807,7,32019,3,1672319033),(115808,7,32020,3,1672319033),(115809,7,32021,3,1672319033),(115810,7,32022,3,1672319033),(115811,7,32023,3,1672319033),(115812,7,32024,3,1672319033),(115813,7,32025,3,1672319033),(115814,7,32026,3,1672319033),(115815,7,32027,3,1672319033),(115816,7,32028,3,1672319033),(115817,7,32029,3,1672319033),(115818,7,32030,3,1672319033),(115819,7,32031,3,1672319033),(115820,7,32032,3,1672319033),(115821,7,32033,3,1672319033),(115822,7,32034,3,1672319033),(115823,7,32035,3,1672319033),(115824,7,32036,3,1672319033),(115825,7,32037,3,1672319033),(115826,7,32038,3,1672319033),(115827,7,32039,3,1672319033),(115828,7,32040,3,1672319033),(115829,7,32041,3,1672319033),(115830,7,32042,3,1672319033),(115831,7,32043,3,1672319033),(115832,7,32044,3,1672319033),(115833,7,32045,3,1672319033),(115834,7,32046,3,1672319033),(115835,7,32047,3,1672319033),(115836,7,32048,3,1672319033),(115837,7,32049,3,1672319033),(115838,7,32050,3,1672319033),(115839,7,32051,3,1672319033),(115840,7,32052,3,1672319033),(115841,7,32053,3,1672319033),(115842,7,32054,3,1672319033),(115843,7,32055,3,1672319033),(115844,7,32056,3,1672319033),(115845,7,32057,3,1672319033),(115846,7,32058,3,1672319033),(115847,7,32059,3,1672319033),(115848,7,32060,3,1672319033),(115849,7,32061,3,1672319033),(115850,7,32062,3,1672319033),(115851,7,32063,3,1672319033),(115852,7,32064,3,1672319033),(115853,7,32065,3,1672319033),(115854,7,32066,3,1672319033),(115855,7,32067,3,1672319033),(115856,7,32068,3,1672319033),(115857,7,32069,3,1672319033),(115858,7,32070,3,1672319033),(115859,7,32071,3,1672319033),(115860,7,32072,3,1672319033),(115861,7,32073,3,1672319033),(115862,7,32074,3,1672319033),(115863,7,32075,3,1672319033),(115864,7,32076,3,1672319033),(115865,7,32077,3,1672319033),(115866,7,32078,3,1672319033),(115867,7,32079,3,1672319033),(115868,7,32080,3,1672319033),(115869,7,32081,3,1672319033),(115870,7,32082,3,1672319033),(115871,7,32083,3,1672319033),(115872,7,32084,3,1672319033),(115873,7,32085,3,1672319033),(115874,7,32086,3,1672319033),(115875,7,32087,3,1672319033),(115876,7,32088,3,1672319033),(115877,7,32089,3,1672319033),(115878,7,32090,3,1672319033),(115879,7,32091,3,1672319033),(115880,7,32092,3,1672319033),(115881,7,32093,3,1672319033),(115882,7,32094,3,1672319033),(115883,7,32095,3,1672319033),(115884,7,32096,3,1672319033),(115885,7,32097,3,1672319033),(115886,7,32098,3,1672319033),(115887,7,32099,3,1672319033),(115888,7,32100,3,1672319033),(115889,7,32101,3,1672319033),(115890,7,32102,3,1672319033),(115891,7,32103,3,1672319033),(115892,7,32104,3,1672319033),(115893,7,32105,3,1672319033),(115894,7,32106,3,1672319033),(115895,7,32107,3,1672319033),(115896,7,32108,3,1672319033),(115897,7,32109,3,1672319033),(115898,7,32110,3,1672319033),(115899,7,32111,3,1672319033),(115900,7,32112,3,1672319033),(115901,7,32113,3,1672319033),(115902,7,32114,3,1672319033),(115903,7,32115,3,1672319033),(115904,7,32116,3,1672319033),(115905,7,32117,3,1672319033),(115906,7,32118,3,1672319033),(115907,7,32119,3,1672319033),(115908,7,32120,3,1672319033),(115909,7,32121,3,1672319033),(115910,7,32122,3,1672319033),(115911,7,32123,3,1672319033),(115912,7,32124,3,1672319033),(115913,7,32125,3,1672319033),(115914,7,32126,3,1672319033),(115915,7,32127,3,1672319033),(115916,7,32128,3,1672319033),(115917,7,32129,3,1672319033),(115918,7,32130,3,1672319033),(115919,7,32131,3,1672319033),(115920,7,32132,3,1672319033),(115921,7,32133,3,1672319033),(115922,7,32134,3,1672319033),(115923,7,32135,3,1672319033),(115924,7,32136,3,1672319033),(115925,7,32137,3,1672319033),(115926,7,32138,3,1672319033),(115927,7,32139,3,1672319033),(115928,7,32140,3,1672319033),(115929,7,32141,3,1672319033),(115930,7,32142,3,1672319033),(115931,7,32143,3,1672319033),(115932,7,32144,3,1672319033),(115933,7,32145,3,1672319033),(115934,7,32146,3,1672319033),(115935,7,32147,3,1672319033),(115936,7,32148,3,1672319033),(115937,7,32149,3,1672319033),(115938,7,32150,3,1672319033),(115939,7,32151,3,1672319033),(115940,7,32152,3,1672319033),(115941,7,32153,3,1672319033),(115942,7,32154,3,1672319033),(115943,7,32155,3,1672319033),(115944,7,32156,3,1672319033),(115945,7,32157,3,1672319033),(115946,7,32158,3,1672319033),(115947,7,32159,3,1672319033),(115948,7,32160,3,1672319033),(115949,7,32161,3,1672319033),(115950,7,32162,3,1672319033),(115951,7,32163,3,1672319033),(115952,7,32164,3,1672319033),(115953,7,32165,3,1672319033),(115954,7,32166,3,1672319033),(115955,7,32167,3,1672319033),(115956,7,32168,3,1672319033),(115957,7,32169,3,1672319033),(115958,7,32170,3,1672319033),(115959,7,32171,3,1672319033),(115960,7,32172,3,1672319033),(115961,7,32173,3,1672319033),(115962,7,32174,3,1672319033),(115963,7,32175,3,1672319033),(115964,7,32176,3,1672319033),(115965,7,32177,3,1672319033),(115966,7,32178,3,1672319033),(115967,7,32179,3,1672319033),(115968,7,32180,3,1672319033),(115969,7,32181,3,1672319033),(115970,7,32182,3,1672319033),(115971,7,32183,3,1672319033),(115972,7,32184,3,1672319033),(115973,7,32185,3,1672319033),(115974,7,32186,3,1672319033),(115975,7,32187,3,1672319033),(115976,7,32188,3,1672319033),(115977,7,32189,3,1672319033),(115978,7,32190,3,1672319033),(115979,7,32191,3,1672319033),(115980,7,32192,3,1672319033),(115981,7,32193,3,1672319033),(115982,7,32194,3,1672319033),(115983,7,32195,3,1672319033),(115984,7,32196,3,1672319033),(115985,7,32197,3,1672319033),(115986,7,32198,3,1672319033),(115987,7,32199,3,1672319033),(115988,7,32200,3,1672319033),(115989,7,32201,3,1672319033),(115990,7,32202,3,1672319033),(115991,7,32203,3,1672319033),(115992,7,32204,3,1672319033),(115993,7,32205,3,1672319033),(115994,7,32206,3,1672319033),(115995,7,32207,3,1672319033),(115996,7,32208,3,1672319033),(115997,7,32209,3,1672319033),(115998,7,32210,3,1672319033),(115999,7,32211,3,1672319033),(116000,7,32212,3,1672319033),(116001,7,32213,3,1672319033),(116002,7,32214,3,1672319033),(116003,7,32215,3,1672319033),(116004,7,32216,3,1672319033),(116005,7,32217,3,1672319033),(116006,7,32218,3,1672319033),(116007,7,32219,3,1672319033),(116008,7,32220,3,1672319033),(116009,7,32221,3,1672319033),(116010,7,32222,3,1672319033),(116011,7,32223,3,1672319033),(116012,7,32224,3,1672319033),(116013,7,32225,3,1672319033),(116014,7,32226,3,1672319033),(116015,7,32227,3,1672319033),(116016,7,32228,3,1672319033),(116017,7,32229,3,1672319033),(116018,7,32230,3,1672319033),(116019,7,32231,3,1672319033),(116020,7,32232,3,1672319033),(116021,7,32233,3,1672319033),(116022,7,32234,3,1672319033),(116023,7,32235,3,1672319033),(116024,7,32236,3,1672319033),(116025,7,32237,3,1672319033),(116026,7,32238,3,1672319033),(116027,7,32239,3,1672319033),(116028,7,32240,3,1672319033),(116029,7,32241,3,1672319033),(116030,7,32242,3,1672319033),(116031,7,32243,3,1672319033),(116032,7,32244,3,1672319033),(116033,7,32245,3,1672319033),(116034,7,32246,3,1672319033),(116035,7,32247,3,1672319033),(116036,7,32248,3,1672319033),(116037,7,32249,3,1672319033),(116038,7,32250,3,1672319033),(116039,7,32251,3,1672319033),(116040,7,32252,3,1672319033),(116041,7,32253,3,1672319033),(116042,7,32254,3,1672319033),(116043,7,32255,3,1672319033),(116044,7,32256,3,1672319033),(116045,7,32257,3,1672319033),(116046,7,32258,3,1672319033),(116047,7,32259,3,1672319033),(116048,7,32260,3,1672319033),(116049,7,32261,3,1672319033),(116050,7,32262,3,1672319033),(116051,7,32263,3,1672319033),(116052,7,32264,3,1672319033),(116053,7,32265,3,1672319033),(116054,7,32266,3,1672319033),(116055,7,32267,3,1672319033),(116056,7,32268,3,1672319033),(116057,7,32269,3,1672319033),(116058,7,32270,3,1672319033),(116059,7,32271,3,1672319033),(116060,7,32272,3,1672319033),(116061,7,32273,3,1672319033),(116062,7,32274,3,1672319033),(116063,7,32275,3,1672319033),(116064,7,32276,3,1672319033),(116065,7,32277,3,1672319033),(116066,7,32278,3,1672319033),(116067,7,32279,3,1672319033),(116068,7,32280,3,1672319033),(116069,7,32281,3,1672319033),(116070,7,32282,3,1672319033),(116071,7,32283,3,1672319033),(116072,7,32284,3,1672319033),(116073,7,32285,3,1672319033),(116074,7,32286,3,1672319033),(116075,7,32287,3,1672319033),(116076,7,32288,3,1672319033),(116077,7,32289,3,1672319033),(116078,7,32290,3,1672319033),(116079,7,32291,3,1672319033),(116080,7,32292,3,1672319033),(116081,7,32293,3,1672319033),(116082,7,32294,3,1672319033),(116083,7,32295,3,1672319033),(116084,7,32296,3,1672319033),(116085,7,32297,3,1672319033),(116086,7,32298,3,1672319033),(116087,7,32299,3,1672319033),(116088,7,32300,3,1672319033),(116089,7,32301,3,1672319033),(116090,7,32302,3,1672319033),(116091,7,32303,3,1672319033),(116092,7,32304,3,1672319033),(116093,7,32305,3,1672319033),(116094,7,32306,3,1672319033),(116095,7,32307,3,1672319033),(116096,7,32308,3,1672319033),(116097,7,32309,3,1672319033),(116098,7,32310,3,1672319033),(116099,7,32311,3,1672319033),(116100,7,32312,3,1672319033),(116101,7,32313,3,1672319033),(116102,7,32314,3,1672319033),(116103,7,32315,3,1672319033),(116104,7,32316,3,1672319033),(116105,7,32317,3,1672319033),(116106,7,32318,3,1672319033),(116107,7,32319,3,1672319033),(116108,7,32320,3,1672319033),(116109,7,32321,3,1672319033),(116110,7,32322,3,1672319033),(116111,7,32323,3,1672319033),(116112,7,32324,3,1672319033),(116113,7,32325,3,1672319033),(116114,7,32326,3,1672319033),(116115,7,32327,3,1672319033),(116116,7,32328,3,1672319033),(116117,7,32329,3,1672319033),(116118,7,32330,3,1672319033),(116119,7,32331,3,1672319033),(116120,7,32332,3,1672319033),(116121,7,32333,3,1672319033),(116122,7,32334,3,1672319033),(116123,7,32335,3,1672319033),(116124,7,32336,3,1672319033),(116125,7,32337,3,1672319033),(116126,7,32338,3,1672319033),(116127,7,32339,3,1672319033),(116128,7,32340,3,1672319033),(116129,7,32341,3,1672319033),(116130,7,32342,3,1672319033),(116131,7,32343,3,1672319033),(116132,7,32344,3,1672319033),(116133,7,32345,3,1672319033),(116134,7,32346,3,1672319033),(116135,7,32347,3,1672319033),(116136,7,32348,3,1672319033),(116137,7,32349,3,1672319033),(116138,7,32350,3,1672319033),(116139,7,32351,3,1672319033),(116140,7,32352,3,1672319033),(116141,7,32353,3,1672319033),(116142,7,32354,3,1672319033),(116143,7,32355,3,1672319033),(116144,7,32356,3,1672319033),(116145,7,32357,3,1672319033),(116146,7,32358,3,1672319033),(116147,7,32359,3,1672319033),(116148,7,32360,3,1672319033),(116149,7,32361,3,1672319033),(116150,7,32362,3,1672319033),(116151,7,32363,3,1672319033),(116152,7,32364,3,1672319033),(116153,7,32365,3,1672319033),(116154,7,32366,3,1672319033),(116155,7,32367,3,1672319033),(116156,7,32368,3,1672319033),(116157,7,32369,3,1672319033),(116158,7,32370,3,1672319033),(116159,7,32371,3,1672319033),(116160,7,32372,3,1672319033),(116161,7,32373,3,1672319033),(116162,7,32374,3,1672319033),(116163,7,32375,3,1672319033),(116164,7,32376,3,1672319033),(116165,7,32377,3,1672319033),(116166,7,32378,3,1672319033),(116167,7,32379,3,1672319033),(116168,7,32380,3,1672319033),(116169,7,32381,3,1672319033),(116170,7,32382,3,1672319033),(116171,7,32383,3,1672319033),(116172,7,32384,3,1672319033),(116173,7,32385,3,1672319033),(116174,7,32386,3,1672319033),(116175,7,32387,3,1672319033),(116176,7,32388,3,1672319033),(116177,7,32389,3,1672319033),(116178,7,32390,3,1672319033),(116179,7,32391,3,1672319033),(116180,7,32392,3,1672319033),(116181,7,32393,3,1672319033),(116182,7,32394,3,1672319033),(116183,7,32395,3,1672319033),(116184,7,32396,3,1672319033),(116185,7,32397,3,1672319033),(116186,7,32398,3,1672319033),(116187,7,32399,3,1672319033),(116188,7,32400,3,1672319033),(116189,7,32401,3,1672319033),(116190,7,32402,3,1672319033),(116191,7,32403,3,1672319033),(116192,7,32404,3,1672319033),(116193,7,32405,3,1672319033),(116194,7,32406,3,1672319033),(116195,7,32407,3,1672319033),(116196,7,32408,3,1672319033),(116197,7,32409,3,1672319033),(116198,7,32410,3,1672319033),(116199,7,32411,3,1672319033),(116200,7,32412,3,1672319033),(116201,7,32413,3,1672319033),(116202,7,32414,3,1672319033),(116203,7,32415,3,1672319033),(116204,7,32416,3,1672319033),(116205,7,32417,3,1672319033),(116206,7,32418,3,1672319033),(116207,7,32419,3,1672319033),(116208,7,32420,3,1672319033),(116209,7,32421,3,1672319033),(116210,7,32422,3,1672319033),(116211,7,32423,3,1672319033),(116212,7,32424,3,1672319033),(116213,7,32425,3,1672319033),(116214,7,32426,3,1672319033),(116215,7,32427,3,1672319033),(116216,7,32428,3,1672319033),(116217,7,32429,3,1672319033),(116218,7,32430,3,1672319033),(116219,7,32431,3,1672319033),(116220,7,32432,3,1672319033),(116221,7,32433,3,1672319033),(116222,7,32434,3,1672319033),(116223,7,32435,3,1672319033),(116224,7,32436,3,1672319033),(116225,7,32437,3,1672319033),(116226,7,32438,3,1672319033),(116227,7,32439,3,1672319033),(116228,7,32440,3,1672319033),(116229,7,32441,3,1672319033),(116230,7,32442,3,1672319033),(116231,7,32443,3,1672319033),(116232,7,32444,3,1672319033),(116233,7,32445,3,1672319033),(116234,7,32446,3,1672319033),(116235,7,32447,3,1672319033),(116236,7,32448,3,1672319033),(116237,7,32449,3,1672319033),(116238,7,32450,3,1672319033),(116239,7,32451,3,1672319033),(116240,7,32452,3,1672319033),(116241,7,32453,3,1672319033),(116242,7,32454,3,1672319033),(116243,7,32455,3,1672319033),(116244,7,32456,3,1672319033),(116245,7,32457,3,1672319033),(116246,7,32458,3,1672319033),(116247,7,32459,3,1672319033),(116248,7,32460,3,1672319033),(116249,7,32461,3,1672319033),(116250,7,32462,3,1672319033),(116251,7,32463,3,1672319033),(116252,7,32464,3,1672319033),(116253,7,32465,3,1672319033),(116254,7,32466,3,1672319033),(116255,7,32467,3,1672319033),(116256,7,32468,3,1672319033),(116257,7,32469,3,1672319033),(116258,7,32470,3,1672319033),(116259,7,32471,3,1672319033),(116260,7,32472,3,1672319033),(116261,7,32473,3,1672319033),(116262,7,32474,3,1672319033),(116263,7,32475,3,1672319033),(116264,7,32476,3,1672319033),(116265,7,32477,3,1672319033),(116266,7,32478,3,1672319033),(116267,7,32479,3,1672319033),(116268,7,32480,3,1672319033),(116269,7,32481,3,1672319033),(116270,7,32482,3,1672319033),(116271,7,32483,3,1672319033),(116272,7,32484,3,1672319033),(116273,7,32485,3,1672319033),(116274,7,32486,3,1672319033),(116275,7,32487,3,1672319033),(116276,7,32488,3,1672319033),(116277,7,32489,3,1672319033),(116278,7,32490,3,1672319033),(116279,7,32491,3,1672319033),(116280,7,32492,3,1672319033),(116281,7,32493,3,1672319033),(116282,7,32494,3,1672319033),(116283,7,32495,3,1672319033),(116284,7,32496,3,1672319033),(116285,7,32497,3,1672319033),(116286,7,32498,3,1672319033),(116287,7,32499,3,1672319033),(116288,7,32500,3,1672319033),(116289,7,32501,3,1672319033),(116290,7,32502,3,1672319033),(116291,7,32503,3,1672319033),(116292,7,32504,3,1672319033),(116293,7,32505,3,1672319033),(116294,7,32506,3,1672319033),(116295,7,32507,3,1672319033),(116296,7,32508,3,1672319033),(116297,7,32509,3,1672319033),(116298,7,32510,3,1672319033),(116299,7,32511,3,1672319033),(116300,7,32512,3,1672319033),(116301,7,32513,3,1672319033),(116302,7,32514,3,1672319033),(116303,7,32515,3,1672319033),(116304,7,32516,3,1672319033),(116305,7,32517,3,1672319033),(116306,7,32518,3,1672319033),(116307,7,32519,3,1672319033),(116308,7,32520,3,1672319033),(116309,7,32521,3,1672319033),(116310,7,32522,3,1672319033),(116311,7,32523,3,1672319033),(116312,7,32524,3,1672319033),(116313,7,32525,3,1672319033),(116314,7,32526,3,1672319033),(116315,7,32527,3,1672319033),(116316,7,32531,3,1672319033),(116317,7,32532,3,1672319033),(116318,7,32533,3,1672319033),(116319,7,32534,3,1672319033),(116320,7,32535,3,1672319033),(116321,7,32536,3,1672319033),(116322,7,32537,3,1672319033),(116323,7,32538,3,1672319033),(116324,7,32539,3,1672319033),(116325,7,32540,3,1672319033),(116326,7,32541,3,1672319033),(116327,7,32542,3,1672319033),(116328,7,32543,3,1672319033),(116329,7,32544,3,1672319033),(116330,7,32545,3,1672319033),(116331,7,32546,3,1672319033),(116332,7,32547,3,1672319033),(116333,7,32548,3,1672319033),(116334,7,32549,3,1672319033),(116335,7,32550,3,1672319033),(116336,7,32551,3,1672319033),(116337,7,32552,3,1672319033),(116338,7,32553,3,1672319033),(116339,7,32554,3,1672319033),(116340,7,32555,3,1672319033),(116341,7,32556,3,1672319033),(116342,7,32557,3,1672319033),(116343,7,32558,3,1672319033),(116344,7,32559,3,1672319033),(116345,7,32560,3,1672319033),(116346,7,32561,3,1672319033),(116347,7,32562,3,1672319033),(116348,7,32563,3,1672319033),(116349,7,32564,3,1672319033),(116350,7,32565,3,1672319033),(116351,7,32566,3,1672319033),(116352,7,32567,3,1672319033),(116353,7,32568,3,1672319033),(116354,7,32569,3,1672319033),(116355,7,32570,3,1672319033),(116356,7,32571,3,1672319033),(116357,7,32572,3,1672319033),(116358,7,32573,3,1672319033),(116359,7,32574,3,1672319033),(116360,7,32575,3,1672319033),(116361,7,32576,3,1672319033),(116362,7,32577,3,1672319033),(116363,7,32578,3,1672319033),(116364,7,32579,3,1672319033),(116365,7,32580,3,1672319033),(116366,7,32581,3,1672319033),(116367,7,32582,3,1672319033),(116368,7,32583,3,1672319033),(116369,7,32584,3,1672319033),(116370,7,32585,3,1672319033),(116371,7,32586,3,1672319033),(116372,7,32587,3,1672319033),(116373,7,32588,3,1672319033),(116374,7,32589,3,1672319033),(116375,7,32590,3,1672319033),(116376,7,32591,3,1672319033),(116377,7,32592,3,1672319033),(116378,7,32593,3,1672319033),(116379,7,32594,3,1672319033),(116380,7,32595,3,1672319033),(116381,7,32596,3,1672319033),(116382,7,32597,3,1672319033),(116383,7,32598,3,1672319033),(116384,7,32599,3,1672319033),(116385,7,32600,3,1672319033),(116386,7,32601,3,1672319033),(116387,7,32602,3,1672319033),(116388,7,32603,3,1672319033),(116389,7,32604,3,1672319033),(116390,7,32605,3,1672319033),(116391,7,32606,3,1672319033),(116392,7,32607,3,1672319033),(116393,7,32608,3,1672319033),(116394,7,32609,3,1672319033),(116395,7,32610,3,1672319033),(116396,7,32611,3,1672319033),(116397,7,32612,3,1672319033),(116398,7,32613,3,1672319033),(116399,7,32614,3,1672319033),(116400,7,32615,3,1672319033),(116401,7,32616,3,1672319033),(116402,7,32617,3,1672319033),(116403,7,32618,3,1672319033),(116404,7,32619,3,1672319033),(116405,7,32620,3,1672319033),(116406,7,32621,3,1672319033),(116407,7,32622,3,1672319033),(116408,7,32623,3,1672319033),(116409,7,32624,3,1672319033),(116410,7,32625,3,1672319033),(116411,7,32626,3,1672319033),(116412,7,32627,3,1672319033),(116413,7,32628,3,1672319033),(116414,7,32629,3,1672319033),(116415,7,32630,3,1672319033),(116416,7,32631,3,1672319033),(116417,7,32632,3,1672319033),(116418,7,32633,3,1672319033),(116419,7,32634,3,1672319033),(116420,7,32635,3,1672319033),(116421,7,32636,3,1672319033),(116422,7,32637,3,1672319033),(116423,7,32638,3,1672319033),(116424,7,32639,3,1672319033),(116425,7,32640,3,1672319033),(116426,7,32641,3,1672319033),(116427,7,32642,3,1672319033),(116428,7,32643,3,1672319033),(116429,7,32644,3,1672319033),(116430,7,32645,3,1672319033),(116431,7,32646,3,1672319033),(116432,7,32647,3,1672319033),(116433,7,32648,3,1672319033),(116434,7,32649,3,1672319033),(116435,7,32650,3,1672319033),(116436,7,32651,3,1672319033),(116437,7,32652,3,1672319033),(116438,7,32653,3,1672319033),(116439,7,32654,3,1672319033),(116440,7,32655,3,1672319033),(116441,7,32656,3,1672319033),(116442,7,32657,3,1672319033),(116443,7,32658,3,1672319033),(116444,7,32659,3,1672319033),(116445,7,32660,3,1672319033),(116446,7,32661,3,1672319033),(116447,7,32662,3,1672319033),(116448,7,32663,3,1672319033),(116449,7,32664,3,1672319033),(116450,7,32665,3,1672319033),(116451,7,32666,3,1672319033),(116452,7,32667,3,1672319033),(116453,7,32668,3,1672319033),(116454,7,32669,3,1672319033),(116455,7,32670,3,1672319033),(116456,7,32671,3,1672319033),(116457,7,32672,3,1672319033),(116458,7,32673,3,1672319033),(116459,7,32674,3,1672319033),(116460,7,32675,3,1672319033),(116461,7,32678,3,1672319033),(116462,7,32679,3,1672319033),(116463,7,32680,3,1672319033),(116464,7,32681,3,1672319033),(116465,7,32682,3,1672319033),(116466,7,32683,3,1672319033),(120548,3,22945,2,1672319394),(120549,3,22946,2,1672319394),(120550,3,22948,2,1672319394),(120551,3,22949,2,1672319394),(120552,3,22950,2,1672319394),(120553,3,22951,2,1672319394),(120554,3,22952,2,1672319394),(120555,3,27212,2,1672319394),(120556,3,27213,2,1672319394),(120557,3,27214,2,1672319394),(120558,3,27246,2,1672319394),(120559,3,27247,2,1672319394),(120560,3,27248,2,1672319394),(120561,3,27249,2,1672319394),(120562,3,27250,2,1672319394),(120563,3,27312,2,1672319394),(120564,3,27313,2,1672319394),(120565,3,27314,2,1672319394),(120566,3,27315,2,1672319394),(120567,3,27316,2,1672319394),(120568,3,27317,2,1672319394),(120569,3,27318,2,1672319394),(120570,3,27319,2,1672319394),(120571,3,27320,2,1672319394),(120572,3,27415,2,1672319394),(120573,3,27416,2,1672319394),(120574,3,27417,2,1672319394),(120575,3,27419,2,1672319394),(120576,3,27420,2,1672319394),(120577,3,27421,2,1672319394),(120578,3,27422,2,1672319394),(120579,3,27423,2,1672319394),(120580,3,28246,2,1672319394),(120581,3,28323,2,1672319394),(120582,3,28324,2,1672319394),(120583,3,28325,2,1672319394),(120584,3,28326,2,1672319394),(120585,3,28327,2,1672319394),(120586,3,28328,2,1672319394),(120587,3,28329,2,1672319394),(120588,3,28798,2,1672319394),(120589,3,28799,2,1672319394),(120590,3,28800,2,1672319394),(120591,3,28801,2,1672319394),(120592,3,28802,2,1672319394),(120593,3,28803,2,1672319394),(120594,3,30091,2,1672319394),(120595,3,30092,2,1672319394),(120596,3,30101,2,1672319394),(120597,3,30688,2,1672319394),(120598,3,30689,2,1672319394),(120599,3,30917,2,1672319394),(120600,3,30918,2,1672319394),(120601,3,30919,2,1672319394),(120602,3,30920,2,1672319394),(120603,3,30921,2,1672319394),(120604,3,30922,2,1672319394),(120605,3,31807,2,1672319394),(120606,3,31808,2,1672319394),(120607,3,31809,2,1672319394),(120608,3,31810,2,1672319394),(120609,3,31811,2,1672319394),(120610,3,31812,2,1672319394),(120611,3,31813,2,1672319394),(120612,3,31814,2,1672319394),(120613,3,31815,2,1672319394),(120614,3,32170,2,1672319394),(120615,3,32171,2,1672319394),(120616,3,32172,2,1672319394),(120617,3,32173,2,1672319394),(120618,3,32174,2,1672319394),(120619,3,32175,2,1672319394),(120620,3,32442,2,1672319394),(120621,3,32443,2,1672319394),(120622,3,32444,2,1672319394),(120623,3,32445,2,1672319394),(120624,3,32446,2,1672319394),(120625,3,32447,2,1672319394),(120626,3,32448,2,1672319394),(120627,3,32449,2,1672319394),(120628,3,32450,2,1672319394),(120629,3,32451,2,1672319394),(120630,3,32452,2,1672319394),(120631,3,32453,2,1672319394),(120632,3,32454,2,1672319394),(120633,3,32455,2,1672319394),(120634,3,32456,2,1672319394),(120635,3,32457,2,1672319394),(120636,3,32458,2,1672319394),(120637,3,32459,2,1672319394),(120638,3,32460,2,1672319394),(120639,3,32461,2,1672319394),(120640,3,32462,2,1672319394),(120641,3,32486,2,1672319394),(120642,3,32487,2,1672319394),(120643,3,32488,2,1672319394),(120644,3,32489,2,1672319394),(120645,3,32490,2,1672319394),(120646,3,32491,2,1672319394),(120647,3,32492,2,1672319394),(120648,3,32493,2,1672319394),(120649,3,32494,2,1672319394),(120650,3,32495,2,1672319394),(120651,3,32496,2,1672319394),(120652,3,32497,2,1672319394),(120653,3,32498,2,1672319394),(120654,3,32499,2,1672319394),(120655,3,32500,2,1672319394),(120656,3,32501,2,1672319394),(120657,3,32502,2,1672319394),(120658,3,32503,2,1672319394),(120659,3,32504,2,1672319394),(120660,3,32505,2,1672319394),(120661,3,32506,2,1672319394),(120662,3,32507,2,1672319394),(120663,3,32508,2,1672319394),(120664,3,32509,2,1672319394),(120665,3,32510,2,1672319394),(120666,3,32511,2,1672319394),(120667,3,32512,2,1672319394),(120668,3,32513,2,1672319394),(120669,3,32514,2,1672319394),(120670,3,32515,2,1672319394),(120671,3,32758,2,1672319394),(120672,3,32759,2,1672319394),(120673,3,32760,2,1672319394),(120674,3,32761,2,1672319394),(120675,3,32766,2,1672319394),(120676,3,32767,2,1672319394),(120677,3,32768,2,1672319394),(120678,3,32769,2,1672319394),(120679,3,32770,2,1672319394),(120680,3,32771,2,1672319394),(120681,3,32772,2,1672319394),(120682,3,32773,2,1672319394),(120683,3,32774,2,1672319394),(120684,3,32775,2,1672319394),(120685,3,32776,2,1672319394),(120686,3,32777,2,1672319394),(120687,3,32778,2,1672319394),(120688,3,32779,2,1672319394),(120689,3,33096,2,1672319394),(120690,3,33097,2,1672319394),(120691,3,33098,2,1672319394),(120692,3,33099,2,1672319394),(120693,3,33100,2,1672319394),(120694,3,33101,2,1672319394),(120695,3,33102,2,1672319394),(120696,3,33103,2,1672319394),(120697,3,33104,2,1672319394),(120698,3,33105,2,1672319394),(120699,3,33106,2,1672319394),(120700,3,33107,2,1672319394),(120701,3,33108,2,1672319394),(120702,3,33109,2,1672319394),(120703,3,33110,2,1672319394),(120704,3,33111,2,1672319394),(120705,3,33112,2,1672319394),(120706,3,33113,2,1672319394),(120707,3,33114,2,1672319394),(120708,3,33115,2,1672319394),(120709,3,33116,2,1672319394),(120710,3,33117,2,1672319394),(120711,3,33118,2,1672319394),(120712,3,33119,2,1672319394),(120713,3,33120,2,1672319394),(120714,3,33121,2,1672319394),(120715,3,33122,2,1672319394),(120716,3,33123,2,1672319394),(120717,3,33124,2,1672319394),(120718,3,33125,2,1672319394),(120719,3,33183,2,1672319394),(120720,3,33966,2,1672319394),(120721,3,33967,2,1672319394),(120722,3,33968,2,1672319394),(120723,3,33969,2,1672319394),(120724,3,33970,2,1672319394),(120725,3,33971,2,1672319394),(120726,3,33972,2,1672319394),(120727,3,33973,2,1672319394),(120728,3,33974,2,1672319394),(120729,3,33975,2,1672319394),(120730,3,33976,2,1672319394),(120731,3,33977,2,1672319394),(120732,3,33978,2,1672319394),(120733,3,33979,2,1672319394),(120734,3,33980,2,1672319394),(120735,3,33981,2,1672319394),(120736,3,33982,2,1672319394),(120737,3,33983,2,1672319394),(120738,3,33984,2,1672319394),(120739,3,34007,2,1672319394),(120740,3,34008,2,1672319394),(120741,3,34009,2,1672319394),(120742,3,34010,2,1672319394),(120743,3,34011,2,1672319394),(120744,3,34012,2,1672319394),(120745,3,34013,2,1672319394),(120746,3,34014,2,1672319394),(120747,3,34015,2,1672319394),(120748,3,34016,2,1672319394),(120749,3,34017,2,1672319394),(120750,3,34018,2,1672319394),(120751,3,34019,2,1672319394),(120752,3,34020,2,1672319394),(120753,3,34021,2,1672319394),(120754,3,34022,2,1672319394),(120755,3,34023,2,1672319394),(120756,3,34024,2,1672319394),(120757,3,34025,2,1672319394),(120758,3,34048,2,1672319394),(120759,3,34049,2,1672319394),(120760,3,34050,2,1672319394),(120761,3,34051,2,1672319394),(120762,3,34052,2,1672319394),(120763,3,34053,2,1672319394),(120764,3,34054,2,1672319394),(120765,3,34055,2,1672319394),(120766,3,34056,2,1672319394),(120767,3,34057,2,1672319394),(120768,3,34058,2,1672319394),(120769,3,34059,2,1672319394),(120770,3,34060,2,1672319394),(120771,3,34061,2,1672319394),(120772,3,34062,2,1672319394),(120773,3,34063,2,1672319394),(120774,3,34064,2,1672319394),(120775,3,34065,2,1672319394),(120776,3,34066,2,1672319394),(120777,3,34089,2,1672319394),(120778,3,34090,2,1672319394),(120779,3,34091,2,1672319394),(120780,3,34092,2,1672319394),(120781,3,34093,2,1672319394),(120782,3,34094,2,1672319394),(120783,3,34095,2,1672319394),(120784,3,34096,2,1672319394),(120785,3,34097,2,1672319394),(120786,3,34098,2,1672319394),(120787,3,34099,2,1672319394),(120788,3,34100,2,1672319394),(120789,3,34101,2,1672319394),(120790,3,34102,2,1672319394),(120791,3,34103,2,1672319394),(120792,3,34104,2,1672319394),(120793,3,34105,2,1672319394),(120794,3,34106,2,1672319394),(120795,3,34107,2,1672319394),(120796,3,34130,2,1672319394),(120797,3,34131,2,1672319394),(120798,3,34132,2,1672319394),(120799,3,34133,2,1672319394),(120800,3,34134,2,1672319394),(120801,3,34135,2,1672319394),(120802,3,34136,2,1672319394),(120803,3,34137,2,1672319394),(120804,3,34138,2,1672319394),(120805,3,34139,2,1672319394),(120806,3,34140,2,1672319394),(120807,3,34141,2,1672319394),(120808,3,34142,2,1672319394),(120809,3,34143,2,1672319394),(120810,3,34144,2,1672319394),(120811,3,34145,2,1672319394),(120812,3,34146,2,1672319394),(120813,3,34147,2,1672319394),(120814,3,34148,2,1672319394),(120815,3,34212,2,1672319394),(120816,3,34213,2,1672319394),(120817,3,34214,2,1672319394),(120818,3,34215,2,1672319394),(120819,3,34216,2,1672319394),(120820,3,34217,2,1672319394),(120821,3,34218,2,1672319394),(120822,3,34219,2,1672319394),(120823,3,34220,2,1672319394),(120824,3,34221,2,1672319394),(120825,3,34222,2,1672319394),(120826,3,34223,2,1672319394),(120827,3,34224,2,1672319394),(120828,3,34225,2,1672319394),(120829,3,34482,2,1672319394),(120830,3,34483,2,1672319394),(120831,3,34484,2,1672319394),(120832,3,34485,2,1672319394),(120833,3,34486,2,1672319394),(120834,3,34487,2,1672319394),(120835,3,34488,2,1672319394),(120836,3,34489,2,1672319394),(120837,3,34490,2,1672319394),(120838,3,34491,2,1672319394),(120839,3,34492,2,1672319394),(120840,3,34493,2,1672319394),(120841,3,34494,2,1672319394),(120842,3,34495,2,1672319394),(120843,3,34496,2,1672319394),(120844,3,34497,2,1672319394),(120845,3,34498,2,1672319394),(120846,3,34530,2,1672319394),(120847,3,34531,2,1672319394),(120848,3,34532,2,1672319394),(120849,3,34533,2,1672319394),(120850,3,34534,2,1672319394),(120851,3,34535,2,1672319394),(120852,3,34536,2,1672319394),(120853,3,34537,2,1672319394),(120854,3,34538,2,1672319394),(120855,3,34539,2,1672319394),(120856,3,34540,2,1672319394),(120857,3,34541,2,1672319394),(120858,3,34542,2,1672319394),(120859,3,34543,2,1672319394),(120860,3,34544,2,1672319394),(120861,3,34545,2,1672319394),(120862,3,34546,2,1672319394),(120863,3,34578,2,1672319394),(120864,3,34579,2,1672319394),(120865,3,34580,2,1672319394),(120866,3,34581,2,1672319394),(120867,3,34582,2,1672319394),(120868,3,34583,2,1672319394),(120869,3,34584,2,1672319394),(120870,3,34585,2,1672319394),(120871,3,34586,2,1672319394),(120872,3,34587,2,1672319394),(120873,3,34588,2,1672319394),(120874,3,34589,2,1672319394),(120875,3,34590,2,1672319394),(120876,3,34591,2,1672319394),(120877,3,34592,2,1672319394),(120878,3,34593,2,1672319394),(120879,3,34594,2,1672319394),(120880,3,34626,2,1672319394),(120881,3,34627,2,1672319394),(120882,3,34628,2,1672319394),(120883,3,34629,2,1672319394),(120884,3,34630,2,1672319394),(120885,3,34631,2,1672319394),(120886,3,34632,2,1672319394),(120887,3,34633,2,1672319394),(120888,3,34634,2,1672319394),(120889,3,34635,2,1672319394),(120890,3,34636,2,1672319394),(120891,3,34637,2,1672319394),(120892,3,34638,2,1672319394),(120893,3,34639,2,1672319394),(120894,3,34640,2,1672319394),(120895,3,34641,2,1672319394),(120896,3,34642,2,1672319394),(120897,3,34674,2,1672319394),(120898,3,34675,2,1672319394),(120899,3,34676,2,1672319394),(120900,3,34677,2,1672319394),(120901,3,34678,2,1672319394),(120902,3,34679,2,1672319394),(120903,3,34680,2,1672319394),(120904,3,34681,2,1672319394),(120905,3,34682,2,1672319394),(120906,3,34683,2,1672319394),(120907,3,34684,2,1672319394),(120908,3,34685,2,1672319394),(120909,3,34686,2,1672319394),(120910,3,34687,2,1672319394),(120911,3,34688,2,1672319394),(120912,3,34689,2,1672319394),(120913,3,34690,2,1672319394),(120914,3,34770,2,1672319394),(120915,3,34771,2,1672319394),(120916,3,34772,2,1672319394),(120917,3,34773,2,1672319394),(120918,3,34774,2,1672319394),(120919,3,34775,2,1672319394),(120920,3,34776,2,1672319394),(120921,3,34777,2,1672319394),(120922,3,34778,2,1672319394),(120923,3,34779,2,1672319394),(120924,3,34780,2,1672319394),(120925,3,34781,2,1672319394),(120926,3,34782,2,1672319394),(120927,3,34783,2,1672319394),(120928,3,34784,2,1672319394),(120929,3,34785,2,1672319394),(120930,3,34786,2,1672319394),(120931,3,34790,2,1672319394),(120932,3,34791,2,1672319394),(120933,3,34792,2,1672319394),(120934,3,34824,2,1672319394),(120935,3,34825,2,1672319394),(120936,3,34826,2,1672319394),(120937,3,34827,2,1672319394),(120938,3,34828,2,1672319394),(120939,3,34829,2,1672319394),(120940,3,34830,2,1672319394),(120941,3,34831,2,1672319394),(120942,3,34832,2,1672319394),(120943,3,34833,2,1672319394),(120944,3,34834,2,1672319394),(120945,3,34835,2,1672319394),(120946,3,34836,2,1672319394),(120947,3,34837,2,1672319394),(120948,3,34838,2,1672319394),(120949,3,34839,2,1672319394),(120950,3,34840,2,1672319394),(120951,3,34872,2,1672319394),(120952,3,34873,2,1672319394),(120953,3,34874,2,1672319394),(120954,3,34875,2,1672319394),(120955,3,34876,2,1672319394),(120956,3,34877,2,1672319394),(120957,3,34878,2,1672319394),(120958,3,34879,2,1672319394),(120959,3,34880,2,1672319394),(120960,3,34881,2,1672319394),(120961,3,34882,2,1672319394),(120962,3,34883,2,1672319394),(120963,3,34884,2,1672319394),(120964,3,34885,2,1672319394),(120965,3,34886,2,1672319394),(120966,3,34887,2,1672319394),(120967,3,34888,2,1672319394),(120968,3,34920,2,1672319394),(120969,3,34921,2,1672319394),(120970,3,34922,2,1672319394),(120971,3,34923,2,1672319394),(120972,3,34924,2,1672319394),(120973,3,34925,2,1672319394),(120974,3,34926,2,1672319394),(120975,3,34927,2,1672319394),(120976,3,34928,2,1672319394),(120977,3,34929,2,1672319394),(120978,3,34930,2,1672319394),(120979,3,34931,2,1672319394),(120980,3,34932,2,1672319394),(120981,3,34933,2,1672319394),(120982,3,34934,2,1672319394),(120983,3,34935,2,1672319394),(120984,3,34936,2,1672319394),(120985,3,35047,2,1672319394),(120986,3,35048,2,1672319394),(120987,3,35049,2,1672319394),(120988,3,35050,2,1672319394),(120989,3,35051,2,1672319394),(120990,3,35052,2,1672319394),(120991,3,35053,2,1672319394),(120992,3,35054,2,1672319394),(120993,3,35055,2,1672319394),(120994,3,35056,2,1672319394),(120995,3,35057,2,1672319394),(120996,3,35058,2,1672319394),(120997,3,35059,2,1672319394),(120998,3,35060,2,1672319394),(120999,3,35061,2,1672319394),(121000,3,35062,2,1672319394),(121001,3,35063,2,1672319394),(121002,3,35369,2,1672319394),(121003,3,35370,2,1672319394),(121004,3,35371,2,1672319394),(121005,3,35372,2,1672319394),(121006,3,35373,2,1672319394),(121007,3,35374,2,1672319394),(121008,3,35375,2,1672319394),(121009,3,35376,2,1672319394),(121010,3,35377,2,1672319394),(121011,3,35378,2,1672319394),(121012,3,35379,2,1672319394),(121013,3,35380,2,1672319394),(121014,3,35381,2,1672319394),(121015,3,35382,2,1672319394),(121016,3,35383,2,1672319394),(121017,3,35384,2,1672319394),(121018,3,35385,2,1672319394),(121019,3,35386,2,1672319394),(121020,3,35387,2,1672319394),(121021,3,35388,2,1672319394),(121022,3,35389,2,1672319394),(121023,3,35390,2,1672319394),(121024,3,35391,2,1672319394),(121025,3,35392,2,1672319394),(121026,3,35393,2,1672319394),(121027,3,35394,2,1672319394),(121028,3,35395,2,1672319394),(121029,3,35396,2,1672319394),(121030,3,35397,2,1672319394),(121031,3,35398,2,1672319394),(121032,3,35399,2,1672319394),(121033,3,35400,2,1672319394),(121034,3,35401,2,1672319394),(121035,3,35402,2,1672319394),(121036,3,35403,2,1672319394),(121037,3,35404,2,1672319394),(121038,3,35405,2,1672319394),(121039,3,40491,2,1672319394),(121040,3,40492,2,1672319394),(121041,3,40493,2,1672319394),(121042,3,40494,2,1672319394),(121043,3,40495,2,1672319394),(121044,3,40496,2,1672319394),(121045,3,40497,2,1672319394),(121046,3,40498,2,1672319394),(121047,3,40499,2,1672319394),(121048,3,40500,2,1672319394),(121049,3,40517,2,1672319394),(121050,3,40518,2,1672319394),(121051,3,40519,2,1672319394),(121052,3,40520,2,1672319394),(121053,3,40521,2,1672319394),(121054,3,40522,2,1672319394),(121055,3,40523,2,1672319394),(121056,3,40524,2,1672319394),(121057,3,40525,2,1672319394),(121058,3,40526,2,1672319394),(121059,3,40527,2,1672319394),(121060,3,40528,2,1672319394),(121061,3,40529,2,1672319394),(121062,3,40530,2,1672319394),(121063,3,40531,2,1672319394),(121064,3,40532,2,1672319394),(121065,3,40545,2,1672319394),(121066,3,40546,2,1672319394),(121067,3,40547,2,1672319394),(121068,3,40548,2,1672319394),(121069,3,40549,2,1672319394),(121070,3,40550,2,1672319394),(121071,3,40551,2,1672319394),(121072,3,40552,2,1672319394),(121073,3,40553,2,1672319394),(121074,3,40582,2,1672319394),(121075,3,40583,2,1672319394),(121076,3,40584,2,1672319394),(121077,3,40585,2,1672319394),(121078,3,40586,2,1672319394),(121079,3,40587,2,1672319394),(121080,3,40588,2,1672319394),(121081,3,40589,2,1672319394),(121082,3,40590,2,1672319394),(121083,3,40591,2,1672319394),(121084,3,40592,2,1672319394),(121085,3,40593,2,1672319394),(121086,3,40594,2,1672319394),(121087,3,40595,2,1672319394),(121088,3,40596,2,1672319394),(121089,3,40597,2,1672319394),(121090,3,40598,2,1672319394),(121091,3,40599,2,1672319394),(121092,3,40671,2,1672319394),(121093,3,40672,2,1672319394),(121094,3,40673,2,1672319394),(121095,3,40674,2,1672319394),(121096,3,40675,2,1672319394),(121097,3,40676,2,1672319394),(121098,3,40677,2,1672319394),(121099,3,40678,2,1672319394),(121100,3,40679,2,1672319394),(121101,3,40680,2,1672319394),(121102,3,40681,2,1672319394),(121103,3,40682,2,1672319394),(121104,3,40683,2,1672319394),(121105,3,40684,2,1672319394),(121106,3,40685,2,1672319394),(121107,3,40686,2,1672319394),(121108,3,40687,2,1672319394),(121109,3,40688,2,1672319394),(121110,3,40689,2,1672319394),(121111,3,43528,2,1672319394),(121112,3,43529,2,1672319394),(121113,3,43530,2,1672319394),(121114,3,43531,2,1672319394),(121115,3,43532,2,1672319394),(121116,3,43533,2,1672319394),(121117,3,43534,2,1672319394),(121118,3,43535,2,1672319394),(121119,3,43536,2,1672319394),(121120,3,43537,2,1672319394),(121121,3,43538,2,1672319394),(121122,3,43539,2,1672319394),(121123,3,43540,2,1672319394),(121124,3,43541,2,1672319394),(121125,3,43542,2,1672319394),(121126,3,43543,2,1672319394),(121127,3,43544,2,1672319394),(121128,3,43545,2,1672319394),(121129,3,43546,2,1672319394),(121130,3,43646,2,1672319394),(121131,3,43647,2,1672319394),(121132,3,43648,2,1672319394),(121133,3,43649,2,1672319394),(121134,3,43650,2,1672319394),(121135,3,43651,2,1672319394),(121136,3,43652,2,1672319394),(121137,3,43653,2,1672319394),(121138,3,43654,2,1672319394),(121139,3,43655,2,1672319394),(121140,3,43656,2,1672319394),(121141,3,43657,2,1672319394),(121142,3,43658,2,1672319394),(121143,3,43659,2,1672319394),(121144,3,43660,2,1672319394),(121145,3,43661,2,1672319394),(121146,3,43662,2,1672319394),(121147,3,43663,2,1672319394),(121148,3,43664,2,1672319394),(121149,3,43665,2,1672319394),(121150,3,43666,2,1672319394),(121151,3,43667,2,1672319394),(121152,3,43668,2,1672319394),(121153,3,43669,2,1672319394),(121154,3,43670,2,1672319394),(121155,3,43671,2,1672319394),(121156,3,43672,2,1672319394),(121157,3,43673,2,1672319394),(121158,3,43674,2,1672319394),(121159,3,43675,2,1672319394),(121160,3,43676,2,1672319394),(121161,3,43677,2,1672319394),(121162,3,43678,2,1672319394),(121163,3,43679,2,1672319394),(121164,3,43680,2,1672319394),(121165,3,43681,2,1672319394),(121166,3,43682,2,1672319394),(121167,3,43683,2,1672319394),(121168,3,43712,2,1672319394),(121169,3,43713,2,1672319394),(121170,3,44337,2,1672319394),(121171,3,44338,2,1672319394),(121172,3,44339,2,1672319394),(121173,3,44340,2,1672319394),(121174,3,44341,2,1672319394),(121175,3,44342,2,1672319394),(121176,3,44428,2,1672319394),(121177,3,44429,2,1672319394),(121178,3,22945,3,1672319394),(121179,3,22946,3,1672319394),(121180,3,22948,3,1672319394),(121181,3,22949,3,1672319394),(121182,3,22950,3,1672319394),(121183,3,22951,3,1672319394),(121184,3,22952,3,1672319394),(121185,3,27212,3,1672319394),(121186,3,27213,3,1672319394),(121187,3,27214,3,1672319394),(121188,3,27246,3,1672319394),(121189,3,27247,3,1672319394),(121190,3,27248,3,1672319394),(121191,3,27249,3,1672319394),(121192,3,27250,3,1672319394),(121193,3,27312,3,1672319394),(121194,3,27313,3,1672319394),(121195,3,27314,3,1672319394),(121196,3,27315,3,1672319394),(121197,3,27316,3,1672319394),(121198,3,27317,3,1672319394),(121199,3,27318,3,1672319394),(121200,3,27319,3,1672319394),(121201,3,27320,3,1672319394),(121202,3,27415,3,1672319394),(121203,3,27416,3,1672319394),(121204,3,27417,3,1672319394),(121205,3,27419,3,1672319394),(121206,3,27420,3,1672319394),(121207,3,27421,3,1672319394),(121208,3,27422,3,1672319394),(121209,3,27423,3,1672319394),(121210,3,28246,3,1672319394),(121211,3,28323,3,1672319394),(121212,3,28324,3,1672319394),(121213,3,28325,3,1672319394),(121214,3,28326,3,1672319394),(121215,3,28327,3,1672319394),(121216,3,28328,3,1672319394),(121217,3,28329,3,1672319394),(121218,3,28798,3,1672319394),(121219,3,28799,3,1672319394),(121220,3,28800,3,1672319394),(121221,3,28801,3,1672319394),(121222,3,28802,3,1672319394),(121223,3,28803,3,1672319394),(121224,3,30091,3,1672319394),(121225,3,30092,3,1672319394),(121226,3,30101,3,1672319394),(121227,3,30688,3,1672319394),(121228,3,30689,3,1672319394),(121229,3,30917,3,1672319394),(121230,3,30918,3,1672319394),(121231,3,30919,3,1672319394),(121232,3,30920,3,1672319394),(121233,3,30921,3,1672319394),(121234,3,30922,3,1672319394),(121235,3,31807,3,1672319394),(121236,3,31808,3,1672319394),(121237,3,31809,3,1672319394),(121238,3,31810,3,1672319394),(121239,3,31811,3,1672319394),(121240,3,31812,3,1672319394),(121241,3,31813,3,1672319394),(121242,3,31814,3,1672319394),(121243,3,31815,3,1672319394),(121244,3,32170,3,1672319394),(121245,3,32171,3,1672319394),(121246,3,32172,3,1672319394),(121247,3,32173,3,1672319394),(121248,3,32174,3,1672319394),(121249,3,32175,3,1672319394),(121250,3,32442,3,1672319394),(121251,3,32443,3,1672319394),(121252,3,32444,3,1672319394),(121253,3,32445,3,1672319394),(121254,3,32446,3,1672319394),(121255,3,32447,3,1672319394),(121256,3,32448,3,1672319394),(121257,3,32449,3,1672319394),(121258,3,32450,3,1672319394),(121259,3,32451,3,1672319394),(121260,3,32452,3,1672319394),(121261,3,32453,3,1672319394),(121262,3,32454,3,1672319394),(121263,3,32455,3,1672319394),(121264,3,32456,3,1672319394),(121265,3,32457,3,1672319394),(121266,3,32458,3,1672319394),(121267,3,32459,3,1672319394),(121268,3,32460,3,1672319394),(121269,3,32461,3,1672319394),(121270,3,32462,3,1672319394),(121271,3,32486,3,1672319394),(121272,3,32487,3,1672319394),(121273,3,32488,3,1672319394),(121274,3,32489,3,1672319394),(121275,3,32490,3,1672319394),(121276,3,32491,3,1672319394),(121277,3,32492,3,1672319394),(121278,3,32493,3,1672319394),(121279,3,32494,3,1672319394),(121280,3,32495,3,1672319394),(121281,3,32496,3,1672319394),(121282,3,32497,3,1672319394),(121283,3,32498,3,1672319394),(121284,3,32499,3,1672319394),(121285,3,32500,3,1672319394),(121286,3,32501,3,1672319394),(121287,3,32502,3,1672319394),(121288,3,32503,3,1672319394),(121289,3,32504,3,1672319394),(121290,3,32505,3,1672319394),(121291,3,32506,3,1672319394),(121292,3,32507,3,1672319394),(121293,3,32508,3,1672319394),(121294,3,32509,3,1672319394),(121295,3,32510,3,1672319394),(121296,3,32511,3,1672319394),(121297,3,32512,3,1672319394),(121298,3,32513,3,1672319394),(121299,3,32514,3,1672319394),(121300,3,32515,3,1672319394),(121301,3,32758,3,1672319394),(121302,3,32759,3,1672319394),(121303,3,32760,3,1672319394),(121304,3,32761,3,1672319394),(121305,3,32766,3,1672319394),(121306,3,32767,3,1672319394),(121307,3,32768,3,1672319394),(121308,3,32769,3,1672319394),(121309,3,32770,3,1672319394),(121310,3,32771,3,1672319394),(121311,3,32772,3,1672319394),(121312,3,32773,3,1672319394),(121313,3,32774,3,1672319394),(121314,3,32775,3,1672319394),(121315,3,32776,3,1672319394),(121316,3,32777,3,1672319394),(121317,3,32778,3,1672319394),(121318,3,32779,3,1672319394),(121319,3,33096,3,1672319394),(121320,3,33097,3,1672319394),(121321,3,33098,3,1672319394),(121322,3,33099,3,1672319394),(121323,3,33100,3,1672319394),(121324,3,33101,3,1672319394),(121325,3,33102,3,1672319394),(121326,3,33103,3,1672319394),(121327,3,33104,3,1672319394),(121328,3,33105,3,1672319394),(121329,3,33106,3,1672319394),(121330,3,33107,3,1672319394),(121331,3,33108,3,1672319394),(121332,3,33109,3,1672319394),(121333,3,33110,3,1672319394),(121334,3,33111,3,1672319394),(121335,3,33112,3,1672319394),(121336,3,33113,3,1672319394),(121337,3,33114,3,1672319394),(121338,3,33115,3,1672319394),(121339,3,33116,3,1672319394),(121340,3,33117,3,1672319394),(121341,3,33118,3,1672319394),(121342,3,33119,3,1672319394),(121343,3,33120,3,1672319394),(121344,3,33121,3,1672319394),(121345,3,33122,3,1672319394),(121346,3,33123,3,1672319394),(121347,3,33124,3,1672319394),(121348,3,33125,3,1672319394),(121349,3,33183,3,1672319394),(121350,3,33966,3,1672319394),(121351,3,33967,3,1672319394),(121352,3,33968,3,1672319394),(121353,3,33969,3,1672319394),(121354,3,33970,3,1672319394),(121355,3,33971,3,1672319394),(121356,3,33972,3,1672319394),(121357,3,33973,3,1672319394),(121358,3,33974,3,1672319394),(121359,3,33975,3,1672319394),(121360,3,33976,3,1672319394),(121361,3,33977,3,1672319394),(121362,3,33978,3,1672319394),(121363,3,33979,3,1672319394),(121364,3,33980,3,1672319394),(121365,3,33981,3,1672319394),(121366,3,33982,3,1672319394),(121367,3,33983,3,1672319394),(121368,3,33984,3,1672319394),(121369,3,34007,3,1672319394),(121370,3,34008,3,1672319394),(121371,3,34009,3,1672319394),(121372,3,34010,3,1672319394),(121373,3,34011,3,1672319394),(121374,3,34012,3,1672319394),(121375,3,34013,3,1672319394),(121376,3,34014,3,1672319394),(121377,3,34015,3,1672319394),(121378,3,34016,3,1672319394),(121379,3,34017,3,1672319394),(121380,3,34018,3,1672319394),(121381,3,34019,3,1672319394),(121382,3,34020,3,1672319394),(121383,3,34021,3,1672319394),(121384,3,34022,3,1672319394),(121385,3,34023,3,1672319394),(121386,3,34024,3,1672319394),(121387,3,34025,3,1672319394),(121388,3,34048,3,1672319394),(121389,3,34049,3,1672319394),(121390,3,34050,3,1672319394),(121391,3,34051,3,1672319394),(121392,3,34052,3,1672319394),(121393,3,34053,3,1672319394),(121394,3,34054,3,1672319394),(121395,3,34055,3,1672319394),(121396,3,34056,3,1672319394),(121397,3,34057,3,1672319394),(121398,3,34058,3,1672319394),(121399,3,34059,3,1672319394),(121400,3,34060,3,1672319394),(121401,3,34061,3,1672319394),(121402,3,34062,3,1672319394),(121403,3,34063,3,1672319394),(121404,3,34064,3,1672319394),(121405,3,34065,3,1672319394),(121406,3,34066,3,1672319394),(121407,3,34089,3,1672319394),(121408,3,34090,3,1672319394),(121409,3,34091,3,1672319394),(121410,3,34092,3,1672319394),(121411,3,34093,3,1672319394),(121412,3,34094,3,1672319394),(121413,3,34095,3,1672319394),(121414,3,34096,3,1672319394),(121415,3,34097,3,1672319394),(121416,3,34098,3,1672319394),(121417,3,34099,3,1672319394),(121418,3,34100,3,1672319394),(121419,3,34101,3,1672319394),(121420,3,34102,3,1672319394),(121421,3,34103,3,1672319394),(121422,3,34104,3,1672319394),(121423,3,34105,3,1672319394),(121424,3,34106,3,1672319394),(121425,3,34107,3,1672319394),(121426,3,34130,3,1672319394),(121427,3,34131,3,1672319394),(121428,3,34132,3,1672319394),(121429,3,34133,3,1672319394),(121430,3,34134,3,1672319394),(121431,3,34135,3,1672319394),(121432,3,34136,3,1672319394),(121433,3,34137,3,1672319394),(121434,3,34138,3,1672319394),(121435,3,34139,3,1672319394),(121436,3,34140,3,1672319394),(121437,3,34141,3,1672319394),(121438,3,34142,3,1672319394),(121439,3,34143,3,1672319394),(121440,3,34144,3,1672319394),(121441,3,34145,3,1672319394),(121442,3,34146,3,1672319394),(121443,3,34147,3,1672319394),(121444,3,34148,3,1672319394),(121445,3,34212,3,1672319394),(121446,3,34213,3,1672319394),(121447,3,34214,3,1672319394),(121448,3,34215,3,1672319394),(121449,3,34216,3,1672319394),(121450,3,34217,3,1672319394),(121451,3,34218,3,1672319394),(121452,3,34219,3,1672319394),(121453,3,34220,3,1672319394),(121454,3,34221,3,1672319394),(121455,3,34222,3,1672319394),(121456,3,34223,3,1672319394),(121457,3,34224,3,1672319394),(121458,3,34225,3,1672319394),(121459,3,34482,3,1672319394),(121460,3,34483,3,1672319394),(121461,3,34484,3,1672319394),(121462,3,34485,3,1672319394),(121463,3,34486,3,1672319394),(121464,3,34487,3,1672319394),(121465,3,34488,3,1672319394),(121466,3,34489,3,1672319394),(121467,3,34490,3,1672319394),(121468,3,34491,3,1672319394),(121469,3,34492,3,1672319394),(121470,3,34493,3,1672319394),(121471,3,34494,3,1672319394),(121472,3,34495,3,1672319394),(121473,3,34496,3,1672319394),(121474,3,34497,3,1672319394),(121475,3,34498,3,1672319394),(121476,3,34530,3,1672319394),(121477,3,34531,3,1672319394),(121478,3,34532,3,1672319394),(121479,3,34533,3,1672319394),(121480,3,34534,3,1672319394),(121481,3,34535,3,1672319394),(121482,3,34536,3,1672319394),(121483,3,34537,3,1672319394),(121484,3,34538,3,1672319394),(121485,3,34539,3,1672319394),(121486,3,34540,3,1672319394),(121487,3,34541,3,1672319394),(121488,3,34542,3,1672319394),(121489,3,34543,3,1672319394),(121490,3,34544,3,1672319394),(121491,3,34545,3,1672319394),(121492,3,34546,3,1672319394),(121493,3,34578,3,1672319394),(121494,3,34579,3,1672319394),(121495,3,34580,3,1672319394),(121496,3,34581,3,1672319394),(121497,3,34582,3,1672319394),(121498,3,34583,3,1672319394),(121499,3,34584,3,1672319394),(121500,3,34585,3,1672319394),(121501,3,34586,3,1672319394),(121502,3,34587,3,1672319394),(121503,3,34588,3,1672319394),(121504,3,34589,3,1672319394),(121505,3,34590,3,1672319394),(121506,3,34591,3,1672319394),(121507,3,34592,3,1672319394),(121508,3,34593,3,1672319394),(121509,3,34594,3,1672319394),(121510,3,34626,3,1672319394),(121511,3,34627,3,1672319394),(121512,3,34628,3,1672319394),(121513,3,34629,3,1672319394),(121514,3,34630,3,1672319394),(121515,3,34631,3,1672319394),(121516,3,34632,3,1672319394),(121517,3,34633,3,1672319394),(121518,3,34634,3,1672319394),(121519,3,34635,3,1672319394),(121520,3,34636,3,1672319394),(121521,3,34637,3,1672319394),(121522,3,34638,3,1672319394),(121523,3,34639,3,1672319394),(121524,3,34640,3,1672319394),(121525,3,34641,3,1672319394),(121526,3,34642,3,1672319394),(121527,3,34674,3,1672319394),(121528,3,34675,3,1672319394),(121529,3,34676,3,1672319394),(121530,3,34677,3,1672319394),(121531,3,34678,3,1672319394),(121532,3,34679,3,1672319394),(121533,3,34680,3,1672319394),(121534,3,34681,3,1672319394),(121535,3,34682,3,1672319394),(121536,3,34683,3,1672319394),(121537,3,34684,3,1672319394),(121538,3,34685,3,1672319394),(121539,3,34686,3,1672319394),(121540,3,34687,3,1672319394),(121541,3,34688,3,1672319394),(121542,3,34689,3,1672319394),(121543,3,34690,3,1672319394),(121544,3,34770,3,1672319394),(121545,3,34771,3,1672319394),(121546,3,34772,3,1672319394),(121547,3,34773,3,1672319394),(121548,3,34774,3,1672319394),(121549,3,34775,3,1672319394),(121550,3,34776,3,1672319394),(121551,3,34777,3,1672319394),(121552,3,34778,3,1672319394),(121553,3,34779,3,1672319394),(121554,3,34780,3,1672319394),(121555,3,34781,3,1672319394),(121556,3,34782,3,1672319394),(121557,3,34783,3,1672319394),(121558,3,34784,3,1672319394),(121559,3,34785,3,1672319394),(121560,3,34786,3,1672319394),(121561,3,34790,3,1672319394),(121562,3,34791,3,1672319394),(121563,3,34792,3,1672319394),(121564,3,34824,3,1672319394),(121565,3,34825,3,1672319394),(121566,3,34826,3,1672319394),(121567,3,34827,3,1672319394),(121568,3,34828,3,1672319394),(121569,3,34829,3,1672319394),(121570,3,34830,3,1672319394),(121571,3,34831,3,1672319394),(121572,3,34832,3,1672319394),(121573,3,34833,3,1672319394),(121574,3,34834,3,1672319394),(121575,3,34835,3,1672319394),(121576,3,34836,3,1672319394),(121577,3,34837,3,1672319394),(121578,3,34838,3,1672319394),(121579,3,34839,3,1672319394),(121580,3,34840,3,1672319394),(121581,3,34872,3,1672319394),(121582,3,34873,3,1672319394),(121583,3,34874,3,1672319394),(121584,3,34875,3,1672319394),(121585,3,34876,3,1672319394),(121586,3,34877,3,1672319394),(121587,3,34878,3,1672319394),(121588,3,34879,3,1672319394),(121589,3,34880,3,1672319394),(121590,3,34881,3,1672319394),(121591,3,34882,3,1672319394),(121592,3,34883,3,1672319394),(121593,3,34884,3,1672319394),(121594,3,34885,3,1672319394),(121595,3,34886,3,1672319394),(121596,3,34887,3,1672319394),(121597,3,34888,3,1672319394),(121598,3,34920,3,1672319394),(121599,3,34921,3,1672319394),(121600,3,34922,3,1672319394),(121601,3,34923,3,1672319394),(121602,3,34924,3,1672319394),(121603,3,34925,3,1672319394),(121604,3,34926,3,1672319394),(121605,3,34927,3,1672319394),(121606,3,34928,3,1672319394),(121607,3,34929,3,1672319394),(121608,3,34930,3,1672319394),(121609,3,34931,3,1672319394),(121610,3,34932,3,1672319394),(121611,3,34933,3,1672319394),(121612,3,34934,3,1672319394),(121613,3,34935,3,1672319394),(121614,3,34936,3,1672319394),(121615,3,35047,3,1672319394),(121616,3,35048,3,1672319394),(121617,3,35049,3,1672319394),(121618,3,35050,3,1672319394),(121619,3,35051,3,1672319394),(121620,3,35052,3,1672319394),(121621,3,35053,3,1672319394),(121622,3,35054,3,1672319394),(121623,3,35055,3,1672319394),(121624,3,35056,3,1672319394),(121625,3,35057,3,1672319394),(121626,3,35058,3,1672319394),(121627,3,35059,3,1672319394),(121628,3,35060,3,1672319394),(121629,3,35061,3,1672319394),(121630,3,35062,3,1672319394),(121631,3,35063,3,1672319394),(121632,3,35369,3,1672319394),(121633,3,35370,3,1672319394),(121634,3,35371,3,1672319394),(121635,3,35372,3,1672319394),(121636,3,35373,3,1672319394),(121637,3,35374,3,1672319394),(121638,3,35375,3,1672319394),(121639,3,35376,3,1672319394),(121640,3,35377,3,1672319394),(121641,3,35378,3,1672319394),(121642,3,35379,3,1672319394),(121643,3,35380,3,1672319394),(121644,3,35381,3,1672319394),(121645,3,35382,3,1672319394),(121646,3,35383,3,1672319394),(121647,3,35384,3,1672319394),(121648,3,35385,3,1672319394),(121649,3,35386,3,1672319394),(121650,3,35387,3,1672319394),(121651,3,35388,3,1672319394),(121652,3,35389,3,1672319394),(121653,3,35390,3,1672319394),(121654,3,35391,3,1672319394),(121655,3,35392,3,1672319394),(121656,3,35393,3,1672319394),(121657,3,35394,3,1672319394),(121658,3,35395,3,1672319394),(121659,3,35396,3,1672319394),(121660,3,35397,3,1672319394),(121661,3,35398,3,1672319394),(121662,3,35399,3,1672319394),(121663,3,35400,3,1672319394),(121664,3,35401,3,1672319394),(121665,3,35402,3,1672319394),(121666,3,35403,3,1672319394),(121667,3,35404,3,1672319394),(121668,3,35405,3,1672319394),(121669,3,40491,3,1672319394),(121670,3,40492,3,1672319394),(121671,3,40493,3,1672319394),(121672,3,40494,3,1672319394),(121673,3,40495,3,1672319394),(121674,3,40496,3,1672319394),(121675,3,40497,3,1672319394),(121676,3,40498,3,1672319394),(121677,3,40499,3,1672319394),(121678,3,40500,3,1672319394),(121679,3,40517,3,1672319394),(121680,3,40518,3,1672319394),(121681,3,40519,3,1672319394),(121682,3,40520,3,1672319394),(121683,3,40521,3,1672319394),(121684,3,40522,3,1672319394),(121685,3,40523,3,1672319394),(121686,3,40524,3,1672319394),(121687,3,40525,3,1672319394),(121688,3,40526,3,1672319394),(121689,3,40527,3,1672319394),(121690,3,40528,3,1672319394),(121691,3,40529,3,1672319394),(121692,3,40530,3,1672319394),(121693,3,40531,3,1672319394),(121694,3,40532,3,1672319394),(121695,3,40545,3,1672319394),(121696,3,40546,3,1672319394),(121697,3,40547,3,1672319394),(121698,3,40548,3,1672319394),(121699,3,40549,3,1672319394),(121700,3,40550,3,1672319394),(121701,3,40551,3,1672319394),(121702,3,40552,3,1672319394),(121703,3,40553,3,1672319394),(121704,3,40582,3,1672319394),(121705,3,40583,3,1672319394),(121706,3,40584,3,1672319394),(121707,3,40585,3,1672319394),(121708,3,40586,3,1672319394),(121709,3,40587,3,1672319394),(121710,3,40588,3,1672319394),(121711,3,40589,3,1672319394),(121712,3,40590,3,1672319394),(121713,3,40591,3,1672319394),(121714,3,40592,3,1672319394),(121715,3,40593,3,1672319394),(121716,3,40594,3,1672319394),(121717,3,40595,3,1672319394),(121718,3,40596,3,1672319394),(121719,3,40597,3,1672319394),(121720,3,40598,3,1672319394),(121721,3,40599,3,1672319394),(121722,3,40671,3,1672319394),(121723,3,40672,3,1672319394),(121724,3,40673,3,1672319394),(121725,3,40674,3,1672319394),(121726,3,40675,3,1672319394),(121727,3,40676,3,1672319394),(121728,3,40677,3,1672319394),(121729,3,40678,3,1672319394),(121730,3,40679,3,1672319394),(121731,3,40680,3,1672319394),(121732,3,40681,3,1672319394),(121733,3,40682,3,1672319394),(121734,3,40683,3,1672319394),(121735,3,40684,3,1672319394),(121736,3,40685,3,1672319394),(121737,3,40686,3,1672319394),(121738,3,40687,3,1672319394),(121739,3,40688,3,1672319394),(121740,3,40689,3,1672319394),(121741,3,43528,3,1672319394),(121742,3,43529,3,1672319394),(121743,3,43530,3,1672319394),(121744,3,43531,3,1672319394),(121745,3,43532,3,1672319394),(121746,3,43533,3,1672319394),(121747,3,43534,3,1672319394),(121748,3,43535,3,1672319394),(121749,3,43536,3,1672319394),(121750,3,43537,3,1672319394),(121751,3,43538,3,1672319394),(121752,3,43539,3,1672319394),(121753,3,43540,3,1672319394),(121754,3,43541,3,1672319394),(121755,3,43542,3,1672319394),(121756,3,43543,3,1672319394),(121757,3,43544,3,1672319394),(121758,3,43545,3,1672319394),(121759,3,43546,3,1672319394),(121760,3,43646,3,1672319394),(121761,3,43647,3,1672319394),(121762,3,43648,3,1672319394),(121763,3,43649,3,1672319394),(121764,3,43650,3,1672319394),(121765,3,43651,3,1672319394),(121766,3,43652,3,1672319394),(121767,3,43653,3,1672319394),(121768,3,43654,3,1672319394),(121769,3,43655,3,1672319394),(121770,3,43656,3,1672319394),(121771,3,43657,3,1672319394),(121772,3,43658,3,1672319394),(121773,3,43659,3,1672319394),(121774,3,43660,3,1672319394),(121775,3,43661,3,1672319394),(121776,3,43662,3,1672319394),(121777,3,43663,3,1672319394),(121778,3,43664,3,1672319394),(121779,3,43665,3,1672319394),(121780,3,43666,3,1672319394),(121781,3,43667,3,1672319394),(121782,3,43668,3,1672319394),(121783,3,43669,3,1672319394),(121784,3,43670,3,1672319394),(121785,3,43671,3,1672319394),(121786,3,43672,3,1672319394),(121787,3,43673,3,1672319394),(121788,3,43674,3,1672319394),(121789,3,43675,3,1672319394),(121790,3,43676,3,1672319394),(121791,3,43677,3,1672319394),(121792,3,43678,3,1672319394),(121793,3,43679,3,1672319394),(121794,3,43680,3,1672319394),(121795,3,43681,3,1672319394),(121796,3,43682,3,1672319394),(121797,3,43683,3,1672319394),(121798,3,43712,3,1672319394),(121799,3,43713,3,1672319394),(121800,3,44337,3,1672319394),(121801,3,44338,3,1672319394),(121802,3,44339,3,1672319394),(121803,3,44340,3,1672319394),(121804,3,44341,3,1672319394),(121805,3,44342,3,1672319394),(121806,3,44428,3,1672319394),(121807,3,44429,3,1672319394),(121808,1,10533,2,1672319394),(121809,1,10536,2,1672319394),(121810,1,10537,2,1672319394),(121811,1,10538,2,1672319394),(121812,1,10541,2,1672319394),(121813,1,10545,2,1672319394),(121814,1,10533,3,1672319394),(121815,1,10536,3,1672319394),(121816,1,10537,3,1672319394),(121817,1,10538,3,1672319394),(121818,1,10541,3,1672319394),(121819,1,10545,3,1672319394),(121820,3,22944,2,1672319394),(121821,3,22947,2,1672319394),(121822,3,27209,2,1672319394),(121823,3,27210,2,1672319394),(121824,3,27211,2,1672319394),(121825,3,27242,2,1672319394),(121826,3,27243,2,1672319394),(121827,3,27244,2,1672319394),(121828,3,27302,2,1672319394),(121829,3,27303,2,1672319394),(121830,3,27304,2,1672319394),(121831,3,27306,2,1672319394),(121832,3,27307,2,1672319394),(121833,3,27308,2,1672319394),(121834,3,27309,2,1672319394),(121835,3,27310,2,1672319394),(121836,3,27311,2,1672319394),(121837,3,27390,2,1672319394),(121838,3,27391,2,1672319394),(121839,3,27393,2,1672319394),(121840,3,27394,2,1672319394),(121841,3,27395,2,1672319394),(121842,3,27396,2,1672319394),(121843,3,28244,2,1672319394),(121844,3,28306,2,1672319394),(121845,3,28307,2,1672319394),(121846,3,28308,2,1672319394),(121847,3,28309,2,1672319394),(121848,3,28797,2,1672319394),(121849,3,30090,2,1672319394),(121850,3,30686,2,1672319394),(121851,3,30687,2,1672319394),(121852,3,30916,2,1672319394),(121853,3,31803,2,1672319394),(121854,3,31804,2,1672319394),(121855,3,31805,2,1672319394),(121856,3,31806,2,1672319394),(121857,3,32168,2,1672319394),(121858,3,32169,2,1672319394),(121859,3,32440,2,1672319394),(121860,3,32441,2,1672319394),(121861,3,32465,2,1672319394),(121862,3,32466,2,1672319394),(121863,3,32467,2,1672319394),(121864,3,32468,2,1672319394),(121865,3,32469,2,1672319394),(121866,3,32470,2,1672319394),(121867,3,32471,2,1672319394),(121868,3,32472,2,1672319394),(121869,3,32473,2,1672319394),(121870,3,32474,2,1672319394),(121871,3,32475,2,1672319394),(121872,3,32476,2,1672319394),(121873,3,32477,2,1672319394),(121874,3,32478,2,1672319394),(121875,3,32479,2,1672319394),(121876,3,32480,2,1672319394),(121877,3,32481,2,1672319394),(121878,3,32482,2,1672319394),(121879,3,32483,2,1672319394),(121880,3,32484,2,1672319394),(121881,3,32485,2,1672319394),(121882,3,32755,2,1672319394),(121883,3,32756,2,1672319394),(121884,3,32757,2,1672319394),(121885,3,32762,2,1672319394),(121886,3,32763,2,1672319394),(121887,3,32764,2,1672319394),(121888,3,32765,2,1672319394),(121889,3,33095,2,1672319394),(121890,3,33182,2,1672319394),(121891,3,33958,2,1672319394),(121892,3,33959,2,1672319394),(121893,3,33960,2,1672319394),(121894,3,33961,2,1672319394),(121895,3,33962,2,1672319394),(121896,3,33963,2,1672319394),(121897,3,33964,2,1672319394),(121898,3,33965,2,1672319394),(121899,3,33999,2,1672319394),(121900,3,34000,2,1672319394),(121901,3,34001,2,1672319394),(121902,3,34002,2,1672319394),(121903,3,34003,2,1672319394),(121904,3,34004,2,1672319394),(121905,3,34005,2,1672319394),(121906,3,34006,2,1672319394),(121907,3,34040,2,1672319394),(121908,3,34041,2,1672319394),(121909,3,34042,2,1672319394),(121910,3,34043,2,1672319394),(121911,3,34044,2,1672319394),(121912,3,34045,2,1672319394),(121913,3,34046,2,1672319394),(121914,3,34047,2,1672319394),(121915,3,34081,2,1672319394),(121916,3,34082,2,1672319394),(121917,3,34083,2,1672319394),(121918,3,34084,2,1672319394),(121919,3,34085,2,1672319394),(121920,3,34086,2,1672319394),(121921,3,34087,2,1672319394),(121922,3,34088,2,1672319394),(121923,3,34122,2,1672319394),(121924,3,34123,2,1672319394),(121925,3,34124,2,1672319394),(121926,3,34125,2,1672319394),(121927,3,34126,2,1672319394),(121928,3,34127,2,1672319394),(121929,3,34128,2,1672319394),(121930,3,34129,2,1672319394),(121931,3,34207,2,1672319394),(121932,3,34208,2,1672319394),(121933,3,34209,2,1672319394),(121934,3,34210,2,1672319394),(121935,3,34211,2,1672319394),(121936,3,34476,2,1672319394),(121937,3,34477,2,1672319394),(121938,3,34478,2,1672319394),(121939,3,34479,2,1672319394),(121940,3,34480,2,1672319394),(121941,3,34481,2,1672319394),(121942,3,34524,2,1672319394),(121943,3,34525,2,1672319394),(121944,3,34526,2,1672319394),(121945,3,34527,2,1672319394),(121946,3,34528,2,1672319394),(121947,3,34529,2,1672319394),(121948,3,34572,2,1672319394),(121949,3,34573,2,1672319394),(121950,3,34574,2,1672319394),(121951,3,34575,2,1672319394),(121952,3,34576,2,1672319394),(121953,3,34577,2,1672319394),(121954,3,34620,2,1672319394),(121955,3,34621,2,1672319394),(121956,3,34622,2,1672319394),(121957,3,34623,2,1672319394),(121958,3,34624,2,1672319394),(121959,3,34625,2,1672319394),(121960,3,34668,2,1672319394),(121961,3,34669,2,1672319394),(121962,3,34670,2,1672319394),(121963,3,34671,2,1672319394),(121964,3,34672,2,1672319394),(121965,3,34673,2,1672319394),(121966,3,34764,2,1672319394),(121967,3,34765,2,1672319394),(121968,3,34766,2,1672319394),(121969,3,34767,2,1672319394),(121970,3,34768,2,1672319394),(121971,3,34769,2,1672319394),(121972,3,34789,2,1672319394),(121973,3,34818,2,1672319394),(121974,3,34819,2,1672319394),(121975,3,34820,2,1672319394),(121976,3,34821,2,1672319394),(121977,3,34822,2,1672319394),(121978,3,34823,2,1672319394),(121979,3,34866,2,1672319394),(121980,3,34867,2,1672319394),(121981,3,34868,2,1672319394),(121982,3,34869,2,1672319394),(121983,3,34870,2,1672319394),(121984,3,34871,2,1672319394),(121985,3,34914,2,1672319394),(121986,3,34915,2,1672319394),(121987,3,34916,2,1672319394),(121988,3,34917,2,1672319394),(121989,3,34918,2,1672319394),(121990,3,34919,2,1672319394),(121991,3,35041,2,1672319394),(121992,3,35042,2,1672319394),(121993,3,35043,2,1672319394),(121994,3,35044,2,1672319394),(121995,3,35045,2,1672319394),(121996,3,35046,2,1672319394),(121997,3,35364,2,1672319394),(121998,3,35365,2,1672319394),(121999,3,35366,2,1672319394),(122000,3,35367,2,1672319394),(122001,3,35368,2,1672319394),(122002,3,40489,2,1672319394),(122003,3,40490,2,1672319394),(122004,3,40513,2,1672319394),(122005,3,40514,2,1672319394),(122006,3,40515,2,1672319394),(122007,3,40516,2,1672319394),(122008,3,40544,2,1672319394),(122009,3,40580,2,1672319394),(122010,3,40581,2,1672319394),(122011,3,40648,2,1672319394),(122012,3,40649,2,1672319394),(122013,3,40650,2,1672319394),(122014,3,40651,2,1672319394),(122015,3,40652,2,1672319394),(122016,3,40653,2,1672319394),(122017,3,40654,2,1672319394),(122018,3,40655,2,1672319394),(122019,3,43526,2,1672319394),(122020,3,43527,2,1672319394),(122021,3,43642,2,1672319394),(122022,3,43643,2,1672319394),(122023,3,43644,2,1672319394),(122024,3,43645,2,1672319394),(122025,3,43711,2,1672319394),(122026,3,43768,2,1672319394),(122027,3,44052,2,1672319394),(122028,3,44053,2,1672319394),(122029,3,44054,2,1672319394),(122030,3,44200,2,1672319394),(122031,3,44293,2,1672319394),(122032,3,44336,2,1672319394),(122033,3,22944,3,1672319394),(122034,3,22947,3,1672319394),(122035,3,27209,3,1672319394),(122036,3,27210,3,1672319394),(122037,3,27211,3,1672319394),(122038,3,27242,3,1672319394),(122039,3,27243,3,1672319394),(122040,3,27244,3,1672319394),(122041,3,27302,3,1672319394),(122042,3,27303,3,1672319394),(122043,3,27304,3,1672319394),(122044,3,27306,3,1672319394),(122045,3,27307,3,1672319394),(122046,3,27308,3,1672319394),(122047,3,27309,3,1672319394),(122048,3,27310,3,1672319394),(122049,3,27311,3,1672319394),(122050,3,27390,3,1672319394),(122051,3,27391,3,1672319394),(122052,3,27393,3,1672319394),(122053,3,27394,3,1672319394),(122054,3,27395,3,1672319394),(122055,3,27396,3,1672319394),(122056,3,28244,3,1672319394),(122057,3,28306,3,1672319394),(122058,3,28307,3,1672319394),(122059,3,28308,3,1672319394),(122060,3,28309,3,1672319394),(122061,3,28797,3,1672319394),(122062,3,30090,3,1672319394),(122063,3,30686,3,1672319394),(122064,3,30687,3,1672319394),(122065,3,30916,3,1672319394),(122066,3,31803,3,1672319394),(122067,3,31804,3,1672319394),(122068,3,31805,3,1672319394),(122069,3,31806,3,1672319394),(122070,3,32168,3,1672319394),(122071,3,32169,3,1672319394),(122072,3,32440,3,1672319394),(122073,3,32441,3,1672319394),(122074,3,32465,3,1672319394),(122075,3,32466,3,1672319394),(122076,3,32467,3,1672319394),(122077,3,32468,3,1672319394),(122078,3,32469,3,1672319394),(122079,3,32470,3,1672319394),(122080,3,32471,3,1672319394),(122081,3,32472,3,1672319394),(122082,3,32473,3,1672319394),(122083,3,32474,3,1672319394),(122084,3,32475,3,1672319394),(122085,3,32476,3,1672319394),(122086,3,32477,3,1672319394),(122087,3,32478,3,1672319394),(122088,3,32479,3,1672319394),(122089,3,32480,3,1672319394),(122090,3,32481,3,1672319394),(122091,3,32482,3,1672319394),(122092,3,32483,3,1672319394),(122093,3,32484,3,1672319394),(122094,3,32485,3,1672319394),(122095,3,32755,3,1672319394),(122096,3,32756,3,1672319394),(122097,3,32757,3,1672319394),(122098,3,32762,3,1672319394),(122099,3,32763,3,1672319394),(122100,3,32764,3,1672319394),(122101,3,32765,3,1672319394),(122102,3,33095,3,1672319394),(122103,3,33182,3,1672319394),(122104,3,33958,3,1672319394),(122105,3,33959,3,1672319394),(122106,3,33960,3,1672319394),(122107,3,33961,3,1672319394),(122108,3,33962,3,1672319394),(122109,3,33963,3,1672319394),(122110,3,33964,3,1672319394),(122111,3,33965,3,1672319394),(122112,3,33999,3,1672319394),(122113,3,34000,3,1672319394),(122114,3,34001,3,1672319394),(122115,3,34002,3,1672319394),(122116,3,34003,3,1672319394),(122117,3,34004,3,1672319394),(122118,3,34005,3,1672319394),(122119,3,34006,3,1672319394),(122120,3,34040,3,1672319394),(122121,3,34041,3,1672319394),(122122,3,34042,3,1672319394),(122123,3,34043,3,1672319394),(122124,3,34044,3,1672319394),(122125,3,34045,3,1672319394),(122126,3,34046,3,1672319394),(122127,3,34047,3,1672319394),(122128,3,34081,3,1672319394),(122129,3,34082,3,1672319394),(122130,3,34083,3,1672319394),(122131,3,34084,3,1672319394),(122132,3,34085,3,1672319394),(122133,3,34086,3,1672319394),(122134,3,34087,3,1672319394),(122135,3,34088,3,1672319394),(122136,3,34122,3,1672319394),(122137,3,34123,3,1672319394),(122138,3,34124,3,1672319394),(122139,3,34125,3,1672319394),(122140,3,34126,3,1672319394),(122141,3,34127,3,1672319394),(122142,3,34128,3,1672319394),(122143,3,34129,3,1672319394),(122144,3,34207,3,1672319394),(122145,3,34208,3,1672319394),(122146,3,34209,3,1672319394),(122147,3,34210,3,1672319394),(122148,3,34211,3,1672319394),(122149,3,34476,3,1672319394),(122150,3,34477,3,1672319394),(122151,3,34478,3,1672319394),(122152,3,34479,3,1672319394),(122153,3,34480,3,1672319394),(122154,3,34481,3,1672319394),(122155,3,34524,3,1672319394),(122156,3,34525,3,1672319394),(122157,3,34526,3,1672319394),(122158,3,34527,3,1672319394),(122159,3,34528,3,1672319394),(122160,3,34529,3,1672319394),(122161,3,34572,3,1672319394),(122162,3,34573,3,1672319394),(122163,3,34574,3,1672319394),(122164,3,34575,3,1672319394),(122165,3,34576,3,1672319394),(122166,3,34577,3,1672319394),(122167,3,34620,3,1672319394),(122168,3,34621,3,1672319394),(122169,3,34622,3,1672319394),(122170,3,34623,3,1672319394),(122171,3,34624,3,1672319394),(122172,3,34625,3,1672319394),(122173,3,34668,3,1672319394),(122174,3,34669,3,1672319394),(122175,3,34670,3,1672319394),(122176,3,34671,3,1672319394),(122177,3,34672,3,1672319394),(122178,3,34673,3,1672319394),(122179,3,34764,3,1672319394),(122180,3,34765,3,1672319394),(122181,3,34766,3,1672319394),(122182,3,34767,3,1672319394),(122183,3,34768,3,1672319394),(122184,3,34769,3,1672319394),(122185,3,34789,3,1672319394),(122186,3,34818,3,1672319394),(122187,3,34819,3,1672319394),(122188,3,34820,3,1672319394),(122189,3,34821,3,1672319394),(122190,3,34822,3,1672319394),(122191,3,34823,3,1672319394),(122192,3,34866,3,1672319394),(122193,3,34867,3,1672319394),(122194,3,34868,3,1672319394),(122195,3,34869,3,1672319394),(122196,3,34870,3,1672319394),(122197,3,34871,3,1672319394),(122198,3,34914,3,1672319394),(122199,3,34915,3,1672319394),(122200,3,34916,3,1672319394),(122201,3,34917,3,1672319394),(122202,3,34918,3,1672319394),(122203,3,34919,3,1672319394),(122204,3,35041,3,1672319394),(122205,3,35042,3,1672319394),(122206,3,35043,3,1672319394),(122207,3,35044,3,1672319394),(122208,3,35045,3,1672319394),(122209,3,35046,3,1672319394),(122210,3,35364,3,1672319394),(122211,3,35365,3,1672319394),(122212,3,35366,3,1672319394),(122213,3,35367,3,1672319394),(122214,3,35368,3,1672319394),(122215,3,40489,3,1672319394),(122216,3,40490,3,1672319394),(122217,3,40513,3,1672319394),(122218,3,40514,3,1672319394),(122219,3,40515,3,1672319394),(122220,3,40516,3,1672319394),(122221,3,40544,3,1672319394),(122222,3,40580,3,1672319394),(122223,3,40581,3,1672319394),(122224,3,40648,3,1672319394),(122225,3,40649,3,1672319394),(122226,3,40650,3,1672319394),(122227,3,40651,3,1672319394),(122228,3,40652,3,1672319394),(122229,3,40653,3,1672319394),(122230,3,40654,3,1672319394),(122231,3,40655,3,1672319394),(122232,3,43526,3,1672319394),(122233,3,43527,3,1672319394),(122234,3,43642,3,1672319394),(122235,3,43643,3,1672319394),(122236,3,43644,3,1672319394),(122237,3,43645,3,1672319394),(122238,3,43711,3,1672319394),(122239,3,43768,3,1672319394),(122240,3,44052,3,1672319394),(122241,3,44053,3,1672319394),(122242,3,44054,3,1672319394),(122243,3,44200,3,1672319394),(122244,3,44293,3,1672319394),(122245,3,44336,3,1672319394),(122246,3,22917,2,1672319394),(122247,3,22918,2,1672319394),(122248,3,22920,2,1672319394),(122249,3,22921,2,1672319394),(122250,3,22922,2,1672319394),(122251,3,22923,2,1672319394),(122252,3,22924,2,1672319394),(122253,3,22933,2,1672319394),(122254,3,22934,2,1672319394),(122255,3,22938,2,1672319394),(122256,3,22939,2,1672319394),(122257,3,22940,2,1672319394),(122258,3,22941,2,1672319394),(122259,3,22942,2,1672319394),(122260,3,22943,2,1672319394),(122261,3,23108,2,1672319394),(122262,3,23109,2,1672319394),(122263,3,23110,2,1672319394),(122264,3,23111,2,1672319394),(122265,3,23112,2,1672319394),(122266,3,23113,2,1672319394),(122267,3,23114,2,1672319394),(122268,3,23115,2,1672319394),(122269,3,23116,2,1672319394),(122270,3,23117,2,1672319394),(122271,3,23118,2,1672319394),(122272,3,23119,2,1672319394),(122273,3,23120,2,1672319394),(122274,3,23121,2,1672319394),(122275,3,23122,2,1672319394),(122276,3,23123,2,1672319394),(122277,3,23124,2,1672319394),(122278,3,23125,2,1672319394),(122279,3,23126,2,1672319394),(122280,3,23127,2,1672319394),(122281,3,23128,2,1672319394),(122282,3,23129,2,1672319394),(122283,3,23130,2,1672319394),(122284,3,23131,2,1672319394),(122285,3,27203,2,1672319394),(122286,3,27207,2,1672319394),(122287,3,27208,2,1672319394),(122288,3,27236,2,1672319394),(122289,3,27237,2,1672319394),(122290,3,27238,2,1672319394),(122291,3,27240,2,1672319394),(122292,3,27294,2,1672319394),(122293,3,27295,2,1672319394),(122294,3,27296,2,1672319394),(122295,3,27297,2,1672319394),(122296,3,27378,2,1672319394),(122297,3,27379,2,1672319394),(122298,3,28511,2,1672319394),(122299,3,28743,2,1672319394),(122300,3,28748,2,1672319394),(122301,3,28775,2,1672319394),(122302,3,28776,2,1672319394),(122303,3,28777,2,1672319394),(122304,3,28778,2,1672319394),(122305,3,28779,2,1672319394),(122306,3,28780,2,1672319394),(122307,3,28781,2,1672319394),(122308,3,28782,2,1672319394),(122309,3,28783,2,1672319394),(122310,3,28784,2,1672319394),(122311,3,28785,2,1672319394),(122312,3,28786,2,1672319394),(122313,3,28787,2,1672319394),(122314,3,28788,2,1672319394),(122315,3,28789,2,1672319394),(122316,3,28790,2,1672319394),(122317,3,28791,2,1672319394),(122318,3,28792,2,1672319394),(122319,3,28793,2,1672319394),(122320,3,28794,2,1672319394),(122321,3,28795,2,1672319394),(122322,3,28796,2,1672319394),(122323,3,30086,2,1672319394),(122324,3,30087,2,1672319394),(122325,3,30088,2,1672319394),(122326,3,30089,2,1672319394),(122327,3,30093,2,1672319394),(122328,3,30094,2,1672319394),(122329,3,30097,2,1672319394),(122330,3,30685,2,1672319394),(122331,3,30896,2,1672319394),(122332,3,30897,2,1672319394),(122333,3,30898,2,1672319394),(122334,3,30899,2,1672319394),(122335,3,30900,2,1672319394),(122336,3,30901,2,1672319394),(122337,3,30902,2,1672319394),(122338,3,30903,2,1672319394),(122339,3,30904,2,1672319394),(122340,3,30905,2,1672319394),(122341,3,30906,2,1672319394),(122342,3,30907,2,1672319394),(122343,3,30908,2,1672319394),(122344,3,30909,2,1672319394),(122345,3,30910,2,1672319394),(122346,3,30911,2,1672319394),(122347,3,30912,2,1672319394),(122348,3,30913,2,1672319394),(122349,3,30914,2,1672319394),(122350,3,30915,2,1672319394),(122351,3,31782,2,1672319394),(122352,3,31783,2,1672319394),(122353,3,31784,2,1672319394),(122354,3,31785,2,1672319394),(122355,3,31786,2,1672319394),(122356,3,31787,2,1672319394),(122357,3,31788,2,1672319394),(122358,3,31789,2,1672319394),(122359,3,31790,2,1672319394),(122360,3,31791,2,1672319394),(122361,3,31792,2,1672319394),(122362,3,31793,2,1672319394),(122363,3,31794,2,1672319394),(122364,3,31795,2,1672319394),(122365,3,31796,2,1672319394),(122366,3,31797,2,1672319394),(122367,3,31798,2,1672319394),(122368,3,31799,2,1672319394),(122369,3,31800,2,1672319394),(122370,3,31801,2,1672319394),(122371,3,31802,2,1672319394),(122372,3,32117,2,1672319394),(122373,3,32118,2,1672319394),(122374,3,32119,2,1672319394),(122375,3,32120,2,1672319394),(122376,3,32121,2,1672319394),(122377,3,32122,2,1672319394),(122378,3,32123,2,1672319394),(122379,3,32124,2,1672319394),(122380,3,32125,2,1672319394),(122381,3,32126,2,1672319394),(122382,3,32127,2,1672319394),(122383,3,32128,2,1672319394),(122384,3,32129,2,1672319394),(122385,3,32130,2,1672319394),(122386,3,32131,2,1672319394),(122387,3,32132,2,1672319394),(122388,3,32133,2,1672319394),(122389,3,32134,2,1672319394),(122390,3,32135,2,1672319394),(122391,3,32136,2,1672319394),(122392,3,32137,2,1672319394),(122393,3,32138,2,1672319394),(122394,3,32139,2,1672319394),(122395,3,32140,2,1672319394),(122396,3,32141,2,1672319394),(122397,3,32142,2,1672319394),(122398,3,32143,2,1672319394),(122399,3,32144,2,1672319394),(122400,3,32145,2,1672319394),(122401,3,32146,2,1672319394),(122402,3,32147,2,1672319394),(122403,3,32148,2,1672319394),(122404,3,32149,2,1672319394),(122405,3,32150,2,1672319394),(122406,3,32151,2,1672319394),(122407,3,32152,2,1672319394),(122408,3,32153,2,1672319394),(122409,3,32154,2,1672319394),(122410,3,32155,2,1672319394),(122411,3,32156,2,1672319394),(122412,3,32157,2,1672319394),(122413,3,32158,2,1672319394),(122414,3,32159,2,1672319394),(122415,3,32160,2,1672319394),(122416,3,32161,2,1672319394),(122417,3,32162,2,1672319394),(122418,3,32163,2,1672319394),(122419,3,32164,2,1672319394),(122420,3,32165,2,1672319394),(122421,3,32166,2,1672319394),(122422,3,32167,2,1672319394),(122423,3,32463,2,1672319394),(122424,3,32464,2,1672319394),(122425,3,32693,2,1672319394),(122426,3,32694,2,1672319394),(122427,3,32695,2,1672319394),(122428,3,32696,2,1672319394),(122429,3,32697,2,1672319394),(122430,3,32698,2,1672319394),(122431,3,32699,2,1672319394),(122432,3,32700,2,1672319394),(122433,3,32701,2,1672319394),(122434,3,32702,2,1672319394),(122435,3,32703,2,1672319394),(122436,3,32704,2,1672319394),(122437,3,32705,2,1672319394),(122438,3,32706,2,1672319394),(122439,3,32707,2,1672319394),(122440,3,32708,2,1672319394),(122441,3,32709,2,1672319394),(122442,3,32710,2,1672319394),(122443,3,32711,2,1672319394),(122444,3,32712,2,1672319394),(122445,3,32713,2,1672319394),(122446,3,32714,2,1672319394),(122447,3,32715,2,1672319394),(122448,3,32716,2,1672319394),(122449,3,32717,2,1672319394),(122450,3,32718,2,1672319394),(122451,3,32719,2,1672319394),(122452,3,32720,2,1672319394),(122453,3,32721,2,1672319394),(122454,3,32722,2,1672319394),(122455,3,32723,2,1672319394),(122456,3,32724,2,1672319394),(122457,3,32725,2,1672319394),(122458,3,32726,2,1672319394),(122459,3,32727,2,1672319394),(122460,3,32728,2,1672319394),(122461,3,32729,2,1672319394),(122462,3,32730,2,1672319394),(122463,3,32731,2,1672319394),(122464,3,32732,2,1672319394),(122465,3,32733,2,1672319394),(122466,3,32734,2,1672319394),(122467,3,32735,2,1672319394),(122468,3,32736,2,1672319394),(122469,3,32737,2,1672319394),(122470,3,32738,2,1672319394),(122471,3,32739,2,1672319394),(122472,3,32740,2,1672319394),(122473,3,32741,2,1672319394),(122474,3,32742,2,1672319394),(122475,3,32743,2,1672319394),(122476,3,32744,2,1672319394),(122477,3,32745,2,1672319394),(122478,3,32746,2,1672319394),(122479,3,32747,2,1672319394),(122480,3,32748,2,1672319394),(122481,3,32749,2,1672319394),(122482,3,32750,2,1672319394),(122483,3,32751,2,1672319394),(122484,3,32752,2,1672319394),(122485,3,32753,2,1672319394),(122486,3,32754,2,1672319394),(122487,3,33028,2,1672319394),(122488,3,33029,2,1672319394),(122489,3,33030,2,1672319394),(122490,3,33031,2,1672319394),(122491,3,33032,2,1672319394),(122492,3,33033,2,1672319394),(122493,3,33034,2,1672319394),(122494,3,33035,2,1672319394),(122495,3,33036,2,1672319394),(122496,3,33037,2,1672319394),(122497,3,33038,2,1672319394),(122498,3,33039,2,1672319394),(122499,3,33040,2,1672319394),(122500,3,33041,2,1672319394),(122501,3,33042,2,1672319394),(122502,3,33043,2,1672319394),(122503,3,33044,2,1672319394),(122504,3,33045,2,1672319394),(122505,3,33046,2,1672319394),(122506,3,33047,2,1672319394),(122507,3,33048,2,1672319394),(122508,3,33049,2,1672319394),(122509,3,33050,2,1672319394),(122510,3,33051,2,1672319394),(122511,3,33052,2,1672319394),(122512,3,33053,2,1672319394),(122513,3,33054,2,1672319394),(122514,3,33055,2,1672319394),(122515,3,33056,2,1672319394),(122516,3,33057,2,1672319394),(122517,3,33058,2,1672319394),(122518,3,33059,2,1672319394),(122519,3,33060,2,1672319394),(122520,3,33061,2,1672319394),(122521,3,33062,2,1672319394),(122522,3,33063,2,1672319394),(122523,3,33064,2,1672319394),(122524,3,33065,2,1672319394),(122525,3,33066,2,1672319394),(122526,3,33067,2,1672319394),(122527,3,33068,2,1672319394),(122528,3,33069,2,1672319394),(122529,3,33070,2,1672319394),(122530,3,33071,2,1672319394),(122531,3,33072,2,1672319394),(122532,3,33073,2,1672319394),(122533,3,33074,2,1672319394),(122534,3,33075,2,1672319394),(122535,3,33076,2,1672319394),(122536,3,33077,2,1672319394),(122537,3,33078,2,1672319394),(122538,3,33079,2,1672319394),(122539,3,33080,2,1672319394),(122540,3,33081,2,1672319394),(122541,3,33082,2,1672319394),(122542,3,33083,2,1672319394),(122543,3,33084,2,1672319394),(122544,3,33085,2,1672319394),(122545,3,33086,2,1672319394),(122546,3,33087,2,1672319394),(122547,3,33088,2,1672319394),(122548,3,33089,2,1672319394),(122549,3,33090,2,1672319394),(122550,3,33091,2,1672319394),(122551,3,33092,2,1672319394),(122552,3,33093,2,1672319394),(122553,3,33094,2,1672319394),(122554,3,33181,2,1672319394),(122555,3,33389,2,1672319394),(122556,3,33390,2,1672319394),(122557,3,33944,2,1672319394),(122558,3,33945,2,1672319394),(122559,3,33946,2,1672319394),(122560,3,33947,2,1672319394),(122561,3,33948,2,1672319394),(122562,3,33949,2,1672319394),(122563,3,33950,2,1672319394),(122564,3,33951,2,1672319394),(122565,3,33952,2,1672319394),(122566,3,33953,2,1672319394),(122567,3,33954,2,1672319394),(122568,3,33955,2,1672319394),(122569,3,33956,2,1672319394),(122570,3,33957,2,1672319394),(122571,3,33985,2,1672319394),(122572,3,33986,2,1672319394),(122573,3,33987,2,1672319394),(122574,3,33988,2,1672319394),(122575,3,33989,2,1672319394),(122576,3,33990,2,1672319394),(122577,3,33991,2,1672319394),(122578,3,33992,2,1672319394),(122579,3,33993,2,1672319394),(122580,3,33994,2,1672319394),(122581,3,33995,2,1672319394),(122582,3,33996,2,1672319394),(122583,3,33997,2,1672319394),(122584,3,33998,2,1672319394),(122585,3,34026,2,1672319394),(122586,3,34027,2,1672319394),(122587,3,34028,2,1672319394),(122588,3,34029,2,1672319394),(122589,3,34030,2,1672319394),(122590,3,34031,2,1672319394),(122591,3,34032,2,1672319394),(122592,3,34033,2,1672319394),(122593,3,34034,2,1672319394),(122594,3,34035,2,1672319394),(122595,3,34036,2,1672319394),(122596,3,34037,2,1672319394),(122597,3,34038,2,1672319394),(122598,3,34039,2,1672319394),(122599,3,34067,2,1672319394),(122600,3,34068,2,1672319394),(122601,3,34069,2,1672319394),(122602,3,34070,2,1672319394),(122603,3,34071,2,1672319394),(122604,3,34072,2,1672319394),(122605,3,34073,2,1672319394),(122606,3,34074,2,1672319394),(122607,3,34075,2,1672319394),(122608,3,34076,2,1672319394),(122609,3,34077,2,1672319394),(122610,3,34078,2,1672319394),(122611,3,34079,2,1672319394),(122612,3,34080,2,1672319394),(122613,3,34108,2,1672319394),(122614,3,34109,2,1672319394),(122615,3,34110,2,1672319394),(122616,3,34111,2,1672319394),(122617,3,34112,2,1672319394),(122618,3,34113,2,1672319394),(122619,3,34114,2,1672319394),(122620,3,34115,2,1672319394),(122621,3,34116,2,1672319394),(122622,3,34117,2,1672319394),(122623,3,34118,2,1672319394),(122624,3,34119,2,1672319394),(122625,3,34120,2,1672319394),(122626,3,34121,2,1672319394),(122627,3,34180,2,1672319394),(122628,3,34181,2,1672319394),(122629,3,34182,2,1672319394),(122630,3,34183,2,1672319394),(122631,3,34185,2,1672319394),(122632,3,34186,2,1672319394),(122633,3,34187,2,1672319394),(122634,3,34188,2,1672319394),(122635,3,34189,2,1672319394),(122636,3,34190,2,1672319394),(122637,3,34191,2,1672319394),(122638,3,34192,2,1672319394),(122639,3,34193,2,1672319394),(122640,3,34194,2,1672319394),(122641,3,34195,2,1672319394),(122642,3,34196,2,1672319394),(122643,3,34200,2,1672319394),(122644,3,34201,2,1672319394),(122645,3,34202,2,1672319394),(122646,3,34203,2,1672319394),(122647,3,34204,2,1672319394),(122648,3,34205,2,1672319394),(122649,3,34206,2,1672319394),(122650,3,34451,2,1672319394),(122651,3,34452,2,1672319394),(122652,3,34453,2,1672319394),(122653,3,34454,2,1672319394),(122654,3,34455,2,1672319394),(122655,3,34456,2,1672319394),(122656,3,34457,2,1672319394),(122657,3,34458,2,1672319394),(122658,3,34459,2,1672319394),(122659,3,34460,2,1672319394),(122660,3,34461,2,1672319394),(122661,3,34462,2,1672319394),(122662,3,34463,2,1672319394),(122663,3,34464,2,1672319394),(122664,3,34465,2,1672319394),(122665,3,34466,2,1672319394),(122666,3,34467,2,1672319394),(122667,3,34468,2,1672319394),(122668,3,34469,2,1672319394),(122669,3,34470,2,1672319394),(122670,3,34471,2,1672319394),(122671,3,34472,2,1672319394),(122672,3,34473,2,1672319394),(122673,3,34474,2,1672319394),(122674,3,34475,2,1672319394),(122675,3,34499,2,1672319394),(122676,3,34500,2,1672319394),(122677,3,34501,2,1672319394),(122678,3,34502,2,1672319394),(122679,3,34503,2,1672319394),(122680,3,34504,2,1672319394),(122681,3,34505,2,1672319394),(122682,3,34506,2,1672319394),(122683,3,34507,2,1672319394),(122684,3,34508,2,1672319394),(122685,3,34509,2,1672319394),(122686,3,34510,2,1672319394),(122687,3,34511,2,1672319394),(122688,3,34512,2,1672319394),(122689,3,34513,2,1672319394),(122690,3,34514,2,1672319394),(122691,3,34515,2,1672319394),(122692,3,34516,2,1672319394),(122693,3,34517,2,1672319394),(122694,3,34518,2,1672319394),(122695,3,34519,2,1672319394),(122696,3,34520,2,1672319394),(122697,3,34521,2,1672319394),(122698,3,34522,2,1672319394),(122699,3,34523,2,1672319394),(122700,3,34547,2,1672319394),(122701,3,34548,2,1672319394),(122702,3,34549,2,1672319394),(122703,3,34550,2,1672319394),(122704,3,34551,2,1672319394),(122705,3,34552,2,1672319394),(122706,3,34553,2,1672319394),(122707,3,34554,2,1672319394),(122708,3,34555,2,1672319394),(122709,3,34556,2,1672319394),(122710,3,34557,2,1672319394),(122711,3,34558,2,1672319394),(122712,3,34559,2,1672319394),(122713,3,34560,2,1672319394),(122714,3,34561,2,1672319394),(122715,3,34562,2,1672319394),(122716,3,34563,2,1672319394),(122717,3,34564,2,1672319394),(122718,3,34565,2,1672319394),(122719,3,34566,2,1672319394),(122720,3,34567,2,1672319394),(122721,3,34568,2,1672319394),(122722,3,34569,2,1672319394),(122723,3,34570,2,1672319394),(122724,3,34571,2,1672319394),(122725,3,34595,2,1672319394),(122726,3,34596,2,1672319394),(122727,3,34597,2,1672319394),(122728,3,34598,2,1672319394),(122729,3,34599,2,1672319394),(122730,3,34600,2,1672319394),(122731,3,34601,2,1672319394),(122732,3,34602,2,1672319394),(122733,3,34603,2,1672319394),(122734,3,34604,2,1672319394),(122735,3,34605,2,1672319394),(122736,3,34606,2,1672319394),(122737,3,34607,2,1672319394),(122738,3,34608,2,1672319394),(122739,3,34609,2,1672319394),(122740,3,34610,2,1672319394),(122741,3,34611,2,1672319394),(122742,3,34612,2,1672319394),(122743,3,34613,2,1672319394),(122744,3,34614,2,1672319394),(122745,3,34615,2,1672319394),(122746,3,34616,2,1672319394),(122747,3,34617,2,1672319394),(122748,3,34618,2,1672319394),(122749,3,34619,2,1672319394),(122750,3,34643,2,1672319394),(122751,3,34644,2,1672319394),(122752,3,34645,2,1672319394),(122753,3,34646,2,1672319394),(122754,3,34647,2,1672319394),(122755,3,34648,2,1672319394),(122756,3,34649,2,1672319394),(122757,3,34650,2,1672319394),(122758,3,34651,2,1672319394),(122759,3,34652,2,1672319394),(122760,3,34653,2,1672319394),(122761,3,34654,2,1672319394),(122762,3,34655,2,1672319394),(122763,3,34656,2,1672319394),(122764,3,34657,2,1672319394),(122765,3,34658,2,1672319394),(122766,3,34659,2,1672319394),(122767,3,34660,2,1672319394),(122768,3,34661,2,1672319394),(122769,3,34662,2,1672319394),(122770,3,34663,2,1672319394),(122771,3,34664,2,1672319394),(122772,3,34665,2,1672319394),(122773,3,34666,2,1672319394),(122774,3,34667,2,1672319394),(122775,3,34739,2,1672319394),(122776,3,34740,2,1672319394),(122777,3,34741,2,1672319394),(122778,3,34742,2,1672319394),(122779,3,34743,2,1672319394),(122780,3,34744,2,1672319394),(122781,3,34745,2,1672319394),(122782,3,34746,2,1672319394),(122783,3,34747,2,1672319394),(122784,3,34748,2,1672319394),(122785,3,34749,2,1672319394),(122786,3,34750,2,1672319394),(122787,3,34751,2,1672319394),(122788,3,34752,2,1672319394),(122789,3,34753,2,1672319394),(122790,3,34754,2,1672319394),(122791,3,34755,2,1672319394),(122792,3,34756,2,1672319394),(122793,3,34757,2,1672319394),(122794,3,34758,2,1672319394),(122795,3,34759,2,1672319394),(122796,3,34760,2,1672319394),(122797,3,34761,2,1672319394),(122798,3,34762,2,1672319394),(122799,3,34763,2,1672319394),(122800,3,34787,2,1672319394),(122801,3,34788,2,1672319394),(122802,3,34793,2,1672319394),(122803,3,34794,2,1672319394),(122804,3,34795,2,1672319394),(122805,3,34796,2,1672319394),(122806,3,34797,2,1672319394),(122807,3,34798,2,1672319394),(122808,3,34799,2,1672319394),(122809,3,34800,2,1672319394),(122810,3,34801,2,1672319394),(122811,3,34802,2,1672319394),(122812,3,34803,2,1672319394),(122813,3,34804,2,1672319394),(122814,3,34805,2,1672319394),(122815,3,34806,2,1672319394),(122816,3,34807,2,1672319394),(122817,3,34808,2,1672319394),(122818,3,34809,2,1672319394),(122819,3,34810,2,1672319394),(122820,3,34811,2,1672319394),(122821,3,34812,2,1672319394),(122822,3,34813,2,1672319394),(122823,3,34814,2,1672319394),(122824,3,34815,2,1672319394),(122825,3,34816,2,1672319394),(122826,3,34817,2,1672319394),(122827,3,34841,2,1672319394),(122828,3,34842,2,1672319394),(122829,3,34843,2,1672319394),(122830,3,34844,2,1672319394),(122831,3,34845,2,1672319394),(122832,3,34846,2,1672319394),(122833,3,34847,2,1672319394),(122834,3,34848,2,1672319394),(122835,3,34849,2,1672319394),(122836,3,34850,2,1672319394),(122837,3,34851,2,1672319394),(122838,3,34852,2,1672319394),(122839,3,34853,2,1672319394),(122840,3,34854,2,1672319394),(122841,3,34855,2,1672319394),(122842,3,34856,2,1672319394),(122843,3,34857,2,1672319394),(122844,3,34858,2,1672319394),(122845,3,34859,2,1672319394),(122846,3,34860,2,1672319394),(122847,3,34861,2,1672319394),(122848,3,34862,2,1672319394),(122849,3,34863,2,1672319394),(122850,3,34864,2,1672319394),(122851,3,34865,2,1672319394),(122852,3,34889,2,1672319394),(122853,3,34890,2,1672319394),(122854,3,34891,2,1672319394),(122855,3,34892,2,1672319394),(122856,3,34893,2,1672319394),(122857,3,34894,2,1672319394),(122858,3,34895,2,1672319394),(122859,3,34896,2,1672319394),(122860,3,34897,2,1672319394),(122861,3,34898,2,1672319394),(122862,3,34899,2,1672319394),(122863,3,34900,2,1672319394),(122864,3,34901,2,1672319394),(122865,3,34902,2,1672319394),(122866,3,34903,2,1672319394),(122867,3,34904,2,1672319394),(122868,3,34905,2,1672319394),(122869,3,34906,2,1672319394),(122870,3,34907,2,1672319394),(122871,3,34908,2,1672319394),(122872,3,34909,2,1672319394),(122873,3,34910,2,1672319394),(122874,3,34911,2,1672319394),(122875,3,34912,2,1672319394),(122876,3,34913,2,1672319394),(122877,3,35016,2,1672319394),(122878,3,35017,2,1672319394),(122879,3,35018,2,1672319394),(122880,3,35019,2,1672319394),(122881,3,35020,2,1672319394),(122882,3,35021,2,1672319394),(122883,3,35022,2,1672319394),(122884,3,35023,2,1672319394),(122885,3,35024,2,1672319394),(122886,3,35025,2,1672319394),(122887,3,35026,2,1672319394),(122888,3,35027,2,1672319394),(122889,3,35028,2,1672319394),(122890,3,35029,2,1672319394),(122891,3,35030,2,1672319394),(122892,3,35031,2,1672319394),(122893,3,35032,2,1672319394),(122894,3,35033,2,1672319394),(122895,3,35034,2,1672319394),(122896,3,35035,2,1672319394),(122897,3,35036,2,1672319394),(122898,3,35037,2,1672319394),(122899,3,35038,2,1672319394),(122900,3,35039,2,1672319394),(122901,3,35040,2,1672319394),(122902,3,35358,2,1672319394),(122903,3,35359,2,1672319394),(122904,3,35360,2,1672319394),(122905,3,35361,2,1672319394),(122906,3,35362,2,1672319394),(122907,3,35363,2,1672319394),(122908,3,36769,2,1672319394),(122909,3,36770,2,1672319394),(122910,3,36771,2,1672319394),(122911,3,40478,2,1672319394),(122912,3,40479,2,1672319394),(122913,3,40480,2,1672319394),(122914,3,40481,2,1672319394),(122915,3,40482,2,1672319394),(122916,3,40483,2,1672319394),(122917,3,40484,2,1672319394),(122918,3,40485,2,1672319394),(122919,3,40486,2,1672319394),(122920,3,40487,2,1672319394),(122921,3,40488,2,1672319394),(122922,3,40501,2,1672319394),(122923,3,40502,2,1672319394),(122924,3,40503,2,1672319394),(122925,3,40504,2,1672319394),(122926,3,40505,2,1672319394),(122927,3,40506,2,1672319394),(122928,3,40507,2,1672319394),(122929,3,40508,2,1672319394),(122930,3,40509,2,1672319394),(122931,3,40510,2,1672319394),(122932,3,40511,2,1672319394),(122933,3,40512,2,1672319394),(122934,3,40533,2,1672319394),(122935,3,40534,2,1672319394),(122936,3,40535,2,1672319394),(122937,3,40536,2,1672319394),(122938,3,40537,2,1672319394),(122939,3,40538,2,1672319394),(122940,3,40539,2,1672319394),(122941,3,40540,2,1672319394),(122942,3,40541,2,1672319394),(122943,3,40542,2,1672319394),(122944,3,40543,2,1672319394),(122945,3,40554,2,1672319394),(122946,3,40555,2,1672319394),(122947,3,40556,2,1672319394),(122948,3,40557,2,1672319394),(122949,3,40558,2,1672319394),(122950,3,40559,2,1672319394),(122951,3,40560,2,1672319394),(122952,3,40561,2,1672319394),(122953,3,40562,2,1672319394),(122954,3,40563,2,1672319394),(122955,3,40564,2,1672319394),(122956,3,40565,2,1672319394),(122957,3,40566,2,1672319394),(122958,3,40567,2,1672319394),(122959,3,40568,2,1672319394),(122960,3,40569,2,1672319394),(122961,3,40570,2,1672319394),(122962,3,40571,2,1672319394),(122963,3,40572,2,1672319394),(122964,3,40573,2,1672319394),(122965,3,40574,2,1672319394),(122966,3,40575,2,1672319394),(122967,3,40576,2,1672319394),(122968,3,40577,2,1672319394),(122969,3,40578,2,1672319394),(122970,3,40579,2,1672319394),(122971,3,40615,2,1672319394),(122972,3,40616,2,1672319394),(122973,3,40617,2,1672319394),(122974,3,40618,2,1672319394),(122975,3,40619,2,1672319394),(122976,3,40620,2,1672319394),(122977,3,40621,2,1672319394),(122978,3,40622,2,1672319394),(122979,3,40623,2,1672319394),(122980,3,40624,2,1672319394),(122981,3,40625,2,1672319394),(122982,3,40626,2,1672319394),(122983,3,40627,2,1672319394),(122984,3,40628,2,1672319394),(122985,3,42175,2,1672319394),(122986,3,42176,2,1672319394),(122987,3,42177,2,1672319394),(122988,3,42178,2,1672319394),(122989,3,43497,2,1672319394),(122990,3,43498,2,1672319394),(122991,3,43499,2,1672319394),(122992,3,43500,2,1672319394),(122993,3,43501,2,1672319394),(122994,3,43502,2,1672319394),(122995,3,43503,2,1672319394),(122996,3,43504,2,1672319394),(122997,3,43505,2,1672319394),(122998,3,43506,2,1672319394),(122999,3,43507,2,1672319394),(123000,3,43508,2,1672319394),(123001,3,43509,2,1672319394),(123002,3,43510,2,1672319394),(123003,3,43511,2,1672319394),(123004,3,43512,2,1672319394),(123005,3,43513,2,1672319394),(123006,3,43514,2,1672319394),(123007,3,43515,2,1672319394),(123008,3,43516,2,1672319394),(123009,3,43517,2,1672319394),(123010,3,43518,2,1672319394),(123011,3,43519,2,1672319394),(123012,3,43520,2,1672319394),(123013,3,43521,2,1672319394),(123014,3,43522,2,1672319394),(123015,3,43523,2,1672319394),(123016,3,43524,2,1672319394),(123017,3,43525,2,1672319394),(123018,3,43592,2,1672319394),(123019,3,43593,2,1672319394),(123020,3,43594,2,1672319394),(123021,3,43595,2,1672319394),(123022,3,43596,2,1672319394),(123023,3,43597,2,1672319394),(123024,3,43598,2,1672319394),(123025,3,43599,2,1672319394),(123026,3,43600,2,1672319394),(123027,3,43601,2,1672319394),(123028,3,43602,2,1672319394),(123029,3,43603,2,1672319394),(123030,3,43604,2,1672319394),(123031,3,43605,2,1672319394),(123032,3,43606,2,1672319394),(123033,3,43607,2,1672319394),(123034,3,43608,2,1672319394),(123035,3,43609,2,1672319394),(123036,3,43610,2,1672319394),(123037,3,43611,2,1672319394),(123038,3,43612,2,1672319394),(123039,3,43613,2,1672319394),(123040,3,43614,2,1672319394),(123041,3,43615,2,1672319394),(123042,3,43616,2,1672319394),(123043,3,43617,2,1672319394),(123044,3,43618,2,1672319394),(123045,3,43619,2,1672319394),(123046,3,43620,2,1672319394),(123047,3,43621,2,1672319394),(123048,3,43622,2,1672319394),(123049,3,43623,2,1672319394),(123050,3,43624,2,1672319394),(123051,3,43625,2,1672319394),(123052,3,43626,2,1672319394),(123053,3,43627,2,1672319394),(123054,3,43628,2,1672319394),(123055,3,43629,2,1672319394),(123056,3,43630,2,1672319394),(123057,3,43631,2,1672319394),(123058,3,43632,2,1672319394),(123059,3,43633,2,1672319394),(123060,3,43634,2,1672319394),(123061,3,43635,2,1672319394),(123062,3,43636,2,1672319394),(123063,3,43637,2,1672319394),(123064,3,43638,2,1672319394),(123065,3,43639,2,1672319394),(123066,3,43640,2,1672319394),(123067,3,43641,2,1672319394),(123068,3,43684,2,1672319394),(123069,3,43685,2,1672319394),(123070,3,43686,2,1672319394),(123071,3,43687,2,1672319394),(123072,3,43688,2,1672319394),(123073,3,43689,2,1672319394),(123074,3,43690,2,1672319394),(123075,3,43691,2,1672319394),(123076,3,43692,2,1672319394),(123077,3,43693,2,1672319394),(123078,3,43694,2,1672319394),(123079,3,43695,2,1672319394),(123080,3,43696,2,1672319394),(123081,3,43697,2,1672319394),(123082,3,43698,2,1672319394),(123083,3,43699,2,1672319394),(123084,3,43700,2,1672319394),(123085,3,43701,2,1672319394),(123086,3,43702,2,1672319394),(123087,3,43703,2,1672319394),(123088,3,43704,2,1672319394),(123089,3,43705,2,1672319394),(123090,3,43706,2,1672319394),(123091,3,43707,2,1672319394),(123092,3,43708,2,1672319394),(123093,3,43709,2,1672319394),(123094,3,43710,2,1672319394),(123095,3,43714,2,1672319394),(123096,3,43715,2,1672319394),(123097,3,43716,2,1672319394),(123098,3,43717,2,1672319394),(123099,3,43718,2,1672319394),(123100,3,43719,2,1672319394),(123101,3,43720,2,1672319394),(123102,3,43721,2,1672319394),(123103,3,43722,2,1672319394),(123104,3,43723,2,1672319394),(123105,3,43724,2,1672319394),(123106,3,43725,2,1672319394),(123107,3,43726,2,1672319394),(123108,3,43727,2,1672319394),(123109,3,43728,2,1672319394),(123110,3,43729,2,1672319394),(123111,3,43730,2,1672319394),(123112,3,43731,2,1672319394),(123113,3,43732,2,1672319394),(123114,3,43733,2,1672319394),(123115,3,43734,2,1672319394),(123116,3,43735,2,1672319394),(123117,3,43736,2,1672319394),(123118,3,43737,2,1672319394),(123119,3,43738,2,1672319394),(123120,3,43739,2,1672319394),(123121,3,43740,2,1672319394),(123122,3,43741,2,1672319394),(123123,3,43742,2,1672319394),(123124,3,43743,2,1672319394),(123125,3,43744,2,1672319394),(123126,3,43745,2,1672319394),(123127,3,43746,2,1672319394),(123128,3,43747,2,1672319394),(123129,3,43748,2,1672319394),(123130,3,43749,2,1672319394),(123131,3,43750,2,1672319394),(123132,3,43751,2,1672319394),(123133,3,43752,2,1672319394),(123134,3,43753,2,1672319394),(123135,3,43754,2,1672319394),(123136,3,43755,2,1672319394),(123137,3,43756,2,1672319394),(123138,3,43757,2,1672319394),(123139,3,43758,2,1672319394),(123140,3,43759,2,1672319394),(123141,3,43760,2,1672319394),(123142,3,43761,2,1672319394),(123143,3,43762,2,1672319394),(123144,3,43763,2,1672319394),(123145,3,43764,2,1672319394),(123146,3,43765,2,1672319394),(123147,3,43766,2,1672319394),(123148,3,43767,2,1672319394),(123149,3,43770,2,1672319394),(123150,3,43771,2,1672319394),(123151,3,43772,2,1672319394),(123152,3,43773,2,1672319394),(123153,3,43774,2,1672319394),(123154,3,43775,2,1672319394),(123155,3,43776,2,1672319394),(123156,3,43777,2,1672319394),(123157,3,43778,2,1672319394),(123158,3,43779,2,1672319394),(123159,3,43781,2,1672319394),(123160,3,43876,2,1672319394),(123161,3,43877,2,1672319394),(123162,3,43878,2,1672319394),(123163,3,43879,2,1672319394),(123164,3,43880,2,1672319394),(123165,3,43881,2,1672319394),(123166,3,43882,2,1672319394),(123167,3,43883,2,1672319394),(123168,3,43884,2,1672319394),(123169,3,43885,2,1672319394),(123170,3,43886,2,1672319394),(123171,3,44161,2,1672319394),(123172,3,44162,2,1672319394),(123173,3,44163,2,1672319394),(123174,3,44164,2,1672319394),(123175,3,44165,2,1672319394),(123176,3,44166,2,1672319394),(123177,3,44167,2,1672319394),(123178,3,44168,2,1672319394),(123179,3,44169,2,1672319394),(123180,3,44170,2,1672319394),(123181,3,44171,2,1672319394),(123182,3,44172,2,1672319394),(123183,3,44173,2,1672319394),(123184,3,44174,2,1672319394),(123185,3,44175,2,1672319394),(123186,3,44176,2,1672319394),(123187,3,44177,2,1672319394),(123188,3,44178,2,1672319394),(123189,3,44179,2,1672319394),(123190,3,44180,2,1672319394),(123191,3,44181,2,1672319394),(123192,3,44182,2,1672319394),(123193,3,44183,2,1672319394),(123194,3,44184,2,1672319394),(123195,3,44185,2,1672319394),(123196,3,44186,2,1672319394),(123197,3,44187,2,1672319394),(123198,3,44188,2,1672319394),(123199,3,44189,2,1672319394),(123200,3,44190,2,1672319394),(123201,3,44191,2,1672319394),(123202,3,44192,2,1672319394),(123203,3,44193,2,1672319394),(123204,3,44194,2,1672319394),(123205,3,44195,2,1672319394),(123206,3,44196,2,1672319394),(123207,3,44197,2,1672319394),(123208,3,44198,2,1672319394),(123209,3,44199,2,1672319394),(123210,3,44248,2,1672319394),(123211,3,44249,2,1672319394),(123212,3,44250,2,1672319394),(123213,3,44251,2,1672319394),(123214,3,44252,2,1672319394),(123215,3,44253,2,1672319394),(123216,3,44254,2,1672319394),(123217,3,44255,2,1672319394),(123218,3,44256,2,1672319394),(123219,3,44257,2,1672319394),(123220,3,44258,2,1672319394),(123221,3,44259,2,1672319394),(123222,3,44260,2,1672319394),(123223,3,44261,2,1672319394),(123224,3,44262,2,1672319394),(123225,3,44263,2,1672319394),(123226,3,44264,2,1672319394),(123227,3,44265,2,1672319394),(123228,3,44266,2,1672319394),(123229,3,44267,2,1672319394),(123230,3,44268,2,1672319394),(123231,3,44269,2,1672319394),(123232,3,44270,2,1672319394),(123233,3,44271,2,1672319394),(123234,3,44272,2,1672319394),(123235,3,44273,2,1672319394),(123236,3,44274,2,1672319394),(123237,3,44275,2,1672319394),(123238,3,44276,2,1672319394),(123239,3,44277,2,1672319394),(123240,3,44278,2,1672319394),(123241,3,44279,2,1672319394),(123242,3,44280,2,1672319394),(123243,3,44281,2,1672319394),(123244,3,44282,2,1672319394),(123245,3,44283,2,1672319394),(123246,3,44284,2,1672319394),(123247,3,44285,2,1672319394),(123248,3,44286,2,1672319394),(123249,3,44287,2,1672319394),(123250,3,44288,2,1672319394),(123251,3,44289,2,1672319394),(123252,3,44290,2,1672319394),(123253,3,44291,2,1672319394),(123254,3,44292,2,1672319394),(123255,3,44335,2,1672319394),(123256,3,44427,2,1672319394),(123257,3,22917,3,1672319394),(123258,3,22918,3,1672319394),(123259,3,22920,3,1672319394),(123260,3,22921,3,1672319394),(123261,3,22922,3,1672319394),(123262,3,22923,3,1672319394),(123263,3,22924,3,1672319394),(123264,3,22933,3,1672319394),(123265,3,22934,3,1672319394),(123266,3,22938,3,1672319394),(123267,3,22939,3,1672319394),(123268,3,22940,3,1672319394),(123269,3,22941,3,1672319394),(123270,3,22942,3,1672319394),(123271,3,22943,3,1672319394),(123272,3,23108,3,1672319394),(123273,3,23109,3,1672319394),(123274,3,23110,3,1672319394),(123275,3,23111,3,1672319394),(123276,3,23112,3,1672319394),(123277,3,23113,3,1672319394),(123278,3,23114,3,1672319394),(123279,3,23115,3,1672319394),(123280,3,23116,3,1672319394),(123281,3,23117,3,1672319394),(123282,3,23118,3,1672319394),(123283,3,23119,3,1672319394),(123284,3,23120,3,1672319394),(123285,3,23121,3,1672319394),(123286,3,23122,3,1672319394),(123287,3,23123,3,1672319394),(123288,3,23124,3,1672319394),(123289,3,23125,3,1672319394),(123290,3,23126,3,1672319394),(123291,3,23127,3,1672319394),(123292,3,23128,3,1672319394),(123293,3,23129,3,1672319394),(123294,3,23130,3,1672319394),(123295,3,23131,3,1672319394),(123296,3,27203,3,1672319394),(123297,3,27207,3,1672319394),(123298,3,27208,3,1672319394),(123299,3,27236,3,1672319394),(123300,3,27237,3,1672319394),(123301,3,27238,3,1672319394),(123302,3,27240,3,1672319394),(123303,3,27294,3,1672319394),(123304,3,27295,3,1672319394),(123305,3,27296,3,1672319394),(123306,3,27297,3,1672319394),(123307,3,27378,3,1672319394),(123308,3,27379,3,1672319394),(123309,3,28511,3,1672319394),(123310,3,28743,3,1672319394),(123311,3,28748,3,1672319394),(123312,3,28775,3,1672319394),(123313,3,28776,3,1672319394),(123314,3,28777,3,1672319394),(123315,3,28778,3,1672319394),(123316,3,28779,3,1672319394),(123317,3,28780,3,1672319394),(123318,3,28781,3,1672319394),(123319,3,28782,3,1672319394),(123320,3,28783,3,1672319394),(123321,3,28784,3,1672319394),(123322,3,28785,3,1672319394),(123323,3,28786,3,1672319394),(123324,3,28787,3,1672319394),(123325,3,28788,3,1672319394),(123326,3,28789,3,1672319394),(123327,3,28790,3,1672319394),(123328,3,28791,3,1672319394),(123329,3,28792,3,1672319394),(123330,3,28793,3,1672319394),(123331,3,28794,3,1672319394),(123332,3,28795,3,1672319394),(123333,3,28796,3,1672319394),(123334,3,30086,3,1672319394),(123335,3,30087,3,1672319394),(123336,3,30088,3,1672319394),(123337,3,30089,3,1672319394),(123338,3,30093,3,1672319394),(123339,3,30094,3,1672319394),(123340,3,30097,3,1672319394),(123341,3,30685,3,1672319394),(123342,3,30896,3,1672319394),(123343,3,30897,3,1672319394),(123344,3,30898,3,1672319394),(123345,3,30899,3,1672319394),(123346,3,30900,3,1672319394),(123347,3,30901,3,1672319394),(123348,3,30902,3,1672319394),(123349,3,30903,3,1672319394),(123350,3,30904,3,1672319394),(123351,3,30905,3,1672319394),(123352,3,30906,3,1672319394),(123353,3,30907,3,1672319394),(123354,3,30908,3,1672319394),(123355,3,30909,3,1672319394),(123356,3,30910,3,1672319394),(123357,3,30911,3,1672319394),(123358,3,30912,3,1672319394),(123359,3,30913,3,1672319394),(123360,3,30914,3,1672319394),(123361,3,30915,3,1672319394),(123362,3,31782,3,1672319394),(123363,3,31783,3,1672319394),(123364,3,31784,3,1672319394),(123365,3,31785,3,1672319394),(123366,3,31786,3,1672319394),(123367,3,31787,3,1672319394),(123368,3,31788,3,1672319394),(123369,3,31789,3,1672319394),(123370,3,31790,3,1672319394),(123371,3,31791,3,1672319394),(123372,3,31792,3,1672319394),(123373,3,31793,3,1672319394),(123374,3,31794,3,1672319394),(123375,3,31795,3,1672319394),(123376,3,31796,3,1672319394),(123377,3,31797,3,1672319394),(123378,3,31798,3,1672319394),(123379,3,31799,3,1672319394),(123380,3,31800,3,1672319394),(123381,3,31801,3,1672319394),(123382,3,31802,3,1672319394),(123383,3,32117,3,1672319394),(123384,3,32118,3,1672319394),(123385,3,32119,3,1672319394),(123386,3,32120,3,1672319394),(123387,3,32121,3,1672319394),(123388,3,32122,3,1672319394),(123389,3,32123,3,1672319394),(123390,3,32124,3,1672319394),(123391,3,32125,3,1672319394),(123392,3,32126,3,1672319394),(123393,3,32127,3,1672319394),(123394,3,32128,3,1672319394),(123395,3,32129,3,1672319394),(123396,3,32130,3,1672319394),(123397,3,32131,3,1672319394),(123398,3,32132,3,1672319394),(123399,3,32133,3,1672319394),(123400,3,32134,3,1672319394),(123401,3,32135,3,1672319394),(123402,3,32136,3,1672319394),(123403,3,32137,3,1672319394),(123404,3,32138,3,1672319394),(123405,3,32139,3,1672319394),(123406,3,32140,3,1672319394),(123407,3,32141,3,1672319394),(123408,3,32142,3,1672319394),(123409,3,32143,3,1672319394),(123410,3,32144,3,1672319394),(123411,3,32145,3,1672319394),(123412,3,32146,3,1672319394),(123413,3,32147,3,1672319394),(123414,3,32148,3,1672319394),(123415,3,32149,3,1672319394),(123416,3,32150,3,1672319394),(123417,3,32151,3,1672319394),(123418,3,32152,3,1672319394),(123419,3,32153,3,1672319394),(123420,3,32154,3,1672319394),(123421,3,32155,3,1672319394),(123422,3,32156,3,1672319394),(123423,3,32157,3,1672319394),(123424,3,32158,3,1672319394),(123425,3,32159,3,1672319394),(123426,3,32160,3,1672319394),(123427,3,32161,3,1672319394),(123428,3,32162,3,1672319394),(123429,3,32163,3,1672319394),(123430,3,32164,3,1672319394),(123431,3,32165,3,1672319394),(123432,3,32166,3,1672319394),(123433,3,32167,3,1672319394),(123434,3,32463,3,1672319394),(123435,3,32464,3,1672319394),(123436,3,32693,3,1672319394),(123437,3,32694,3,1672319394),(123438,3,32695,3,1672319394),(123439,3,32696,3,1672319394),(123440,3,32697,3,1672319394),(123441,3,32698,3,1672319394),(123442,3,32699,3,1672319394),(123443,3,32700,3,1672319394),(123444,3,32701,3,1672319394),(123445,3,32702,3,1672319394),(123446,3,32703,3,1672319394),(123447,3,32704,3,1672319394),(123448,3,32705,3,1672319394),(123449,3,32706,3,1672319394),(123450,3,32707,3,1672319394),(123451,3,32708,3,1672319394),(123452,3,32709,3,1672319394),(123453,3,32710,3,1672319394),(123454,3,32711,3,1672319394),(123455,3,32712,3,1672319394),(123456,3,32713,3,1672319394),(123457,3,32714,3,1672319394),(123458,3,32715,3,1672319394),(123459,3,32716,3,1672319394),(123460,3,32717,3,1672319394),(123461,3,32718,3,1672319394),(123462,3,32719,3,1672319394),(123463,3,32720,3,1672319394),(123464,3,32721,3,1672319394),(123465,3,32722,3,1672319394),(123466,3,32723,3,1672319394),(123467,3,32724,3,1672319394),(123468,3,32725,3,1672319394),(123469,3,32726,3,1672319394),(123470,3,32727,3,1672319394),(123471,3,32728,3,1672319394),(123472,3,32729,3,1672319394),(123473,3,32730,3,1672319394),(123474,3,32731,3,1672319394),(123475,3,32732,3,1672319394),(123476,3,32733,3,1672319394),(123477,3,32734,3,1672319394),(123478,3,32735,3,1672319394),(123479,3,32736,3,1672319394),(123480,3,32737,3,1672319394),(123481,3,32738,3,1672319394),(123482,3,32739,3,1672319394),(123483,3,32740,3,1672319394),(123484,3,32741,3,1672319394),(123485,3,32742,3,1672319394),(123486,3,32743,3,1672319394),(123487,3,32744,3,1672319394),(123488,3,32745,3,1672319394),(123489,3,32746,3,1672319394),(123490,3,32747,3,1672319394),(123491,3,32748,3,1672319394),(123492,3,32749,3,1672319394),(123493,3,32750,3,1672319394),(123494,3,32751,3,1672319394),(123495,3,32752,3,1672319394),(123496,3,32753,3,1672319394),(123497,3,32754,3,1672319394),(123498,3,33028,3,1672319394),(123499,3,33029,3,1672319394),(123500,3,33030,3,1672319394),(123501,3,33031,3,1672319394),(123502,3,33032,3,1672319394),(123503,3,33033,3,1672319394),(123504,3,33034,3,1672319394),(123505,3,33035,3,1672319394),(123506,3,33036,3,1672319394),(123507,3,33037,3,1672319394),(123508,3,33038,3,1672319394),(123509,3,33039,3,1672319394),(123510,3,33040,3,1672319394),(123511,3,33041,3,1672319394),(123512,3,33042,3,1672319394),(123513,3,33043,3,1672319394),(123514,3,33044,3,1672319394),(123515,3,33045,3,1672319394),(123516,3,33046,3,1672319394),(123517,3,33047,3,1672319394),(123518,3,33048,3,1672319394),(123519,3,33049,3,1672319394),(123520,3,33050,3,1672319394),(123521,3,33051,3,1672319394),(123522,3,33052,3,1672319394),(123523,3,33053,3,1672319394),(123524,3,33054,3,1672319394),(123525,3,33055,3,1672319394),(123526,3,33056,3,1672319394),(123527,3,33057,3,1672319394),(123528,3,33058,3,1672319394),(123529,3,33059,3,1672319394),(123530,3,33060,3,1672319394),(123531,3,33061,3,1672319394),(123532,3,33062,3,1672319394),(123533,3,33063,3,1672319394),(123534,3,33064,3,1672319394),(123535,3,33065,3,1672319394),(123536,3,33066,3,1672319394),(123537,3,33067,3,1672319394),(123538,3,33068,3,1672319394),(123539,3,33069,3,1672319394),(123540,3,33070,3,1672319394),(123541,3,33071,3,1672319394),(123542,3,33072,3,1672319394),(123543,3,33073,3,1672319394),(123544,3,33074,3,1672319394),(123545,3,33075,3,1672319394),(123546,3,33076,3,1672319394),(123547,3,33077,3,1672319394),(123548,3,33078,3,1672319394),(123549,3,33079,3,1672319394),(123550,3,33080,3,1672319394),(123551,3,33081,3,1672319394),(123552,3,33082,3,1672319394),(123553,3,33083,3,1672319394),(123554,3,33084,3,1672319394),(123555,3,33085,3,1672319394),(123556,3,33086,3,1672319394),(123557,3,33087,3,1672319394),(123558,3,33088,3,1672319394),(123559,3,33089,3,1672319394),(123560,3,33090,3,1672319394),(123561,3,33091,3,1672319394),(123562,3,33092,3,1672319394),(123563,3,33093,3,1672319394),(123564,3,33094,3,1672319394),(123565,3,33181,3,1672319394),(123566,3,33389,3,1672319394),(123567,3,33390,3,1672319394),(123568,3,33944,3,1672319394),(123569,3,33945,3,1672319394),(123570,3,33946,3,1672319394),(123571,3,33947,3,1672319394),(123572,3,33948,3,1672319394),(123573,3,33949,3,1672319394),(123574,3,33950,3,1672319394),(123575,3,33951,3,1672319394),(123576,3,33952,3,1672319394),(123577,3,33953,3,1672319394),(123578,3,33954,3,1672319394),(123579,3,33955,3,1672319394),(123580,3,33956,3,1672319394),(123581,3,33957,3,1672319394),(123582,3,33985,3,1672319394),(123583,3,33986,3,1672319394),(123584,3,33987,3,1672319394),(123585,3,33988,3,1672319394),(123586,3,33989,3,1672319394),(123587,3,33990,3,1672319394),(123588,3,33991,3,1672319394),(123589,3,33992,3,1672319394),(123590,3,33993,3,1672319394),(123591,3,33994,3,1672319394),(123592,3,33995,3,1672319394),(123593,3,33996,3,1672319394),(123594,3,33997,3,1672319394),(123595,3,33998,3,1672319394),(123596,3,34026,3,1672319394),(123597,3,34027,3,1672319394),(123598,3,34028,3,1672319394),(123599,3,34029,3,1672319394),(123600,3,34030,3,1672319394),(123601,3,34031,3,1672319394),(123602,3,34032,3,1672319394),(123603,3,34033,3,1672319394),(123604,3,34034,3,1672319394),(123605,3,34035,3,1672319394),(123606,3,34036,3,1672319394),(123607,3,34037,3,1672319394),(123608,3,34038,3,1672319394),(123609,3,34039,3,1672319394),(123610,3,34067,3,1672319394),(123611,3,34068,3,1672319394),(123612,3,34069,3,1672319394),(123613,3,34070,3,1672319394),(123614,3,34071,3,1672319394),(123615,3,34072,3,1672319394),(123616,3,34073,3,1672319394),(123617,3,34074,3,1672319394),(123618,3,34075,3,1672319394),(123619,3,34076,3,1672319394),(123620,3,34077,3,1672319394),(123621,3,34078,3,1672319394),(123622,3,34079,3,1672319394),(123623,3,34080,3,1672319394),(123624,3,34108,3,1672319394),(123625,3,34109,3,1672319394),(123626,3,34110,3,1672319394),(123627,3,34111,3,1672319394),(123628,3,34112,3,1672319394),(123629,3,34113,3,1672319394),(123630,3,34114,3,1672319394),(123631,3,34115,3,1672319394),(123632,3,34116,3,1672319394),(123633,3,34117,3,1672319394),(123634,3,34118,3,1672319394),(123635,3,34119,3,1672319394),(123636,3,34120,3,1672319394),(123637,3,34121,3,1672319394),(123638,3,34180,3,1672319394),(123639,3,34181,3,1672319394),(123640,3,34182,3,1672319394),(123641,3,34183,3,1672319394),(123642,3,34185,3,1672319394),(123643,3,34186,3,1672319394),(123644,3,34187,3,1672319394),(123645,3,34188,3,1672319394),(123646,3,34189,3,1672319394),(123647,3,34190,3,1672319394),(123648,3,34191,3,1672319394),(123649,3,34192,3,1672319394),(123650,3,34193,3,1672319394),(123651,3,34194,3,1672319394),(123652,3,34195,3,1672319394),(123653,3,34196,3,1672319394),(123654,3,34200,3,1672319394),(123655,3,34201,3,1672319394),(123656,3,34202,3,1672319394),(123657,3,34203,3,1672319394),(123658,3,34204,3,1672319394),(123659,3,34205,3,1672319394),(123660,3,34206,3,1672319394),(123661,3,34451,3,1672319394),(123662,3,34452,3,1672319394),(123663,3,34453,3,1672319394),(123664,3,34454,3,1672319394),(123665,3,34455,3,1672319394),(123666,3,34456,3,1672319394),(123667,3,34457,3,1672319394),(123668,3,34458,3,1672319394),(123669,3,34459,3,1672319394),(123670,3,34460,3,1672319394),(123671,3,34461,3,1672319394),(123672,3,34462,3,1672319394),(123673,3,34463,3,1672319394),(123674,3,34464,3,1672319394),(123675,3,34465,3,1672319394),(123676,3,34466,3,1672319394),(123677,3,34467,3,1672319394),(123678,3,34468,3,1672319394),(123679,3,34469,3,1672319394),(123680,3,34470,3,1672319394),(123681,3,34471,3,1672319394),(123682,3,34472,3,1672319394),(123683,3,34473,3,1672319394),(123684,3,34474,3,1672319394),(123685,3,34475,3,1672319394),(123686,3,34499,3,1672319394),(123687,3,34500,3,1672319394),(123688,3,34501,3,1672319394),(123689,3,34502,3,1672319394),(123690,3,34503,3,1672319394),(123691,3,34504,3,1672319394),(123692,3,34505,3,1672319394),(123693,3,34506,3,1672319394),(123694,3,34507,3,1672319394),(123695,3,34508,3,1672319394),(123696,3,34509,3,1672319394),(123697,3,34510,3,1672319394),(123698,3,34511,3,1672319394),(123699,3,34512,3,1672319394),(123700,3,34513,3,1672319394),(123701,3,34514,3,1672319394),(123702,3,34515,3,1672319394),(123703,3,34516,3,1672319394),(123704,3,34517,3,1672319394),(123705,3,34518,3,1672319394),(123706,3,34519,3,1672319394),(123707,3,34520,3,1672319394),(123708,3,34521,3,1672319394),(123709,3,34522,3,1672319394),(123710,3,34523,3,1672319394),(123711,3,34547,3,1672319394),(123712,3,34548,3,1672319394),(123713,3,34549,3,1672319394),(123714,3,34550,3,1672319394),(123715,3,34551,3,1672319394),(123716,3,34552,3,1672319394),(123717,3,34553,3,1672319394),(123718,3,34554,3,1672319394),(123719,3,34555,3,1672319394),(123720,3,34556,3,1672319394),(123721,3,34557,3,1672319394),(123722,3,34558,3,1672319394),(123723,3,34559,3,1672319394),(123724,3,34560,3,1672319394),(123725,3,34561,3,1672319394),(123726,3,34562,3,1672319394),(123727,3,34563,3,1672319394),(123728,3,34564,3,1672319394),(123729,3,34565,3,1672319394),(123730,3,34566,3,1672319394),(123731,3,34567,3,1672319394),(123732,3,34568,3,1672319394),(123733,3,34569,3,1672319394),(123734,3,34570,3,1672319394),(123735,3,34571,3,1672319394),(123736,3,34595,3,1672319394),(123737,3,34596,3,1672319394),(123738,3,34597,3,1672319394),(123739,3,34598,3,1672319394),(123740,3,34599,3,1672319394),(123741,3,34600,3,1672319394),(123742,3,34601,3,1672319394),(123743,3,34602,3,1672319394),(123744,3,34603,3,1672319394),(123745,3,34604,3,1672319394),(123746,3,34605,3,1672319394),(123747,3,34606,3,1672319394),(123748,3,34607,3,1672319394),(123749,3,34608,3,1672319394),(123750,3,34609,3,1672319394),(123751,3,34610,3,1672319394),(123752,3,34611,3,1672319394),(123753,3,34612,3,1672319394),(123754,3,34613,3,1672319394),(123755,3,34614,3,1672319394),(123756,3,34615,3,1672319394),(123757,3,34616,3,1672319394),(123758,3,34617,3,1672319394),(123759,3,34618,3,1672319394),(123760,3,34619,3,1672319394),(123761,3,34643,3,1672319394),(123762,3,34644,3,1672319394),(123763,3,34645,3,1672319394),(123764,3,34646,3,1672319394),(123765,3,34647,3,1672319394),(123766,3,34648,3,1672319394),(123767,3,34649,3,1672319394),(123768,3,34650,3,1672319394),(123769,3,34651,3,1672319394),(123770,3,34652,3,1672319394),(123771,3,34653,3,1672319394),(123772,3,34654,3,1672319394),(123773,3,34655,3,1672319394),(123774,3,34656,3,1672319394),(123775,3,34657,3,1672319394),(123776,3,34658,3,1672319394),(123777,3,34659,3,1672319394),(123778,3,34660,3,1672319394),(123779,3,34661,3,1672319394),(123780,3,34662,3,1672319394),(123781,3,34663,3,1672319394),(123782,3,34664,3,1672319394),(123783,3,34665,3,1672319394),(123784,3,34666,3,1672319394),(123785,3,34667,3,1672319394),(123786,3,34739,3,1672319394),(123787,3,34740,3,1672319394),(123788,3,34741,3,1672319394),(123789,3,34742,3,1672319394),(123790,3,34743,3,1672319394),(123791,3,34744,3,1672319394),(123792,3,34745,3,1672319394),(123793,3,34746,3,1672319394),(123794,3,34747,3,1672319394),(123795,3,34748,3,1672319394),(123796,3,34749,3,1672319394),(123797,3,34750,3,1672319394),(123798,3,34751,3,1672319394),(123799,3,34752,3,1672319394),(123800,3,34753,3,1672319394),(123801,3,34754,3,1672319394),(123802,3,34755,3,1672319394),(123803,3,34756,3,1672319394),(123804,3,34757,3,1672319394),(123805,3,34758,3,1672319394),(123806,3,34759,3,1672319394),(123807,3,34760,3,1672319394),(123808,3,34761,3,1672319394),(123809,3,34762,3,1672319394),(123810,3,34763,3,1672319394),(123811,3,34787,3,1672319394),(123812,3,34788,3,1672319394),(123813,3,34793,3,1672319394),(123814,3,34794,3,1672319394),(123815,3,34795,3,1672319394),(123816,3,34796,3,1672319394),(123817,3,34797,3,1672319394),(123818,3,34798,3,1672319394),(123819,3,34799,3,1672319394),(123820,3,34800,3,1672319394),(123821,3,34801,3,1672319394),(123822,3,34802,3,1672319394),(123823,3,34803,3,1672319394),(123824,3,34804,3,1672319394),(123825,3,34805,3,1672319394),(123826,3,34806,3,1672319394),(123827,3,34807,3,1672319394),(123828,3,34808,3,1672319394),(123829,3,34809,3,1672319394),(123830,3,34810,3,1672319394),(123831,3,34811,3,1672319394),(123832,3,34812,3,1672319394),(123833,3,34813,3,1672319394),(123834,3,34814,3,1672319394),(123835,3,34815,3,1672319394),(123836,3,34816,3,1672319394),(123837,3,34817,3,1672319394),(123838,3,34841,3,1672319394),(123839,3,34842,3,1672319394),(123840,3,34843,3,1672319394),(123841,3,34844,3,1672319394),(123842,3,34845,3,1672319394),(123843,3,34846,3,1672319394),(123844,3,34847,3,1672319394),(123845,3,34848,3,1672319394),(123846,3,34849,3,1672319394),(123847,3,34850,3,1672319394),(123848,3,34851,3,1672319394),(123849,3,34852,3,1672319394),(123850,3,34853,3,1672319394),(123851,3,34854,3,1672319394),(123852,3,34855,3,1672319394),(123853,3,34856,3,1672319394),(123854,3,34857,3,1672319394),(123855,3,34858,3,1672319394),(123856,3,34859,3,1672319394),(123857,3,34860,3,1672319394),(123858,3,34861,3,1672319394),(123859,3,34862,3,1672319394),(123860,3,34863,3,1672319394),(123861,3,34864,3,1672319394),(123862,3,34865,3,1672319394),(123863,3,34889,3,1672319394),(123864,3,34890,3,1672319394),(123865,3,34891,3,1672319394),(123866,3,34892,3,1672319394),(123867,3,34893,3,1672319394),(123868,3,34894,3,1672319394),(123869,3,34895,3,1672319394),(123870,3,34896,3,1672319394),(123871,3,34897,3,1672319394),(123872,3,34898,3,1672319394),(123873,3,34899,3,1672319394),(123874,3,34900,3,1672319394),(123875,3,34901,3,1672319394),(123876,3,34902,3,1672319394),(123877,3,34903,3,1672319394),(123878,3,34904,3,1672319394),(123879,3,34905,3,1672319394),(123880,3,34906,3,1672319394),(123881,3,34907,3,1672319394),(123882,3,34908,3,1672319394),(123883,3,34909,3,1672319394),(123884,3,34910,3,1672319394),(123885,3,34911,3,1672319394),(123886,3,34912,3,1672319394),(123887,3,34913,3,1672319394),(123888,3,35016,3,1672319394),(123889,3,35017,3,1672319394),(123890,3,35018,3,1672319394),(123891,3,35019,3,1672319394),(123892,3,35020,3,1672319394),(123893,3,35021,3,1672319394),(123894,3,35022,3,1672319394),(123895,3,35023,3,1672319394),(123896,3,35024,3,1672319394),(123897,3,35025,3,1672319394),(123898,3,35026,3,1672319394),(123899,3,35027,3,1672319394),(123900,3,35028,3,1672319394),(123901,3,35029,3,1672319394),(123902,3,35030,3,1672319394),(123903,3,35031,3,1672319394),(123904,3,35032,3,1672319394),(123905,3,35033,3,1672319394),(123906,3,35034,3,1672319394),(123907,3,35035,3,1672319394),(123908,3,35036,3,1672319394),(123909,3,35037,3,1672319394),(123910,3,35038,3,1672319394),(123911,3,35039,3,1672319394),(123912,3,35040,3,1672319394),(123913,3,35358,3,1672319394),(123914,3,35359,3,1672319394),(123915,3,35360,3,1672319394),(123916,3,35361,3,1672319394),(123917,3,35362,3,1672319394),(123918,3,35363,3,1672319394),(123919,3,36769,3,1672319394),(123920,3,36770,3,1672319394),(123921,3,36771,3,1672319394),(123922,3,40478,3,1672319394),(123923,3,40479,3,1672319394),(123924,3,40480,3,1672319394),(123925,3,40481,3,1672319394),(123926,3,40482,3,1672319394),(123927,3,40483,3,1672319394),(123928,3,40484,3,1672319394),(123929,3,40485,3,1672319394),(123930,3,40486,3,1672319394),(123931,3,40487,3,1672319394),(123932,3,40488,3,1672319394),(123933,3,40501,3,1672319394),(123934,3,40502,3,1672319394),(123935,3,40503,3,1672319394),(123936,3,40504,3,1672319394),(123937,3,40505,3,1672319394),(123938,3,40506,3,1672319394),(123939,3,40507,3,1672319394),(123940,3,40508,3,1672319394),(123941,3,40509,3,1672319394),(123942,3,40510,3,1672319394),(123943,3,40511,3,1672319394),(123944,3,40512,3,1672319394),(123945,3,40533,3,1672319394),(123946,3,40534,3,1672319394),(123947,3,40535,3,1672319394),(123948,3,40536,3,1672319394),(123949,3,40537,3,1672319394),(123950,3,40538,3,1672319394),(123951,3,40539,3,1672319394),(123952,3,40540,3,1672319394),(123953,3,40541,3,1672319394),(123954,3,40542,3,1672319394),(123955,3,40543,3,1672319394),(123956,3,40554,3,1672319394),(123957,3,40555,3,1672319394),(123958,3,40556,3,1672319394),(123959,3,40557,3,1672319394),(123960,3,40558,3,1672319394),(123961,3,40559,3,1672319394),(123962,3,40560,3,1672319394),(123963,3,40561,3,1672319394),(123964,3,40562,3,1672319394),(123965,3,40563,3,1672319394),(123966,3,40564,3,1672319394),(123967,3,40565,3,1672319394),(123968,3,40566,3,1672319394),(123969,3,40567,3,1672319394),(123970,3,40568,3,1672319394),(123971,3,40569,3,1672319394),(123972,3,40570,3,1672319394),(123973,3,40571,3,1672319394),(123974,3,40572,3,1672319394),(123975,3,40573,3,1672319394),(123976,3,40574,3,1672319394),(123977,3,40575,3,1672319394),(123978,3,40576,3,1672319394),(123979,3,40577,3,1672319394),(123980,3,40578,3,1672319394),(123981,3,40579,3,1672319394),(123982,3,40615,3,1672319394),(123983,3,40616,3,1672319394),(123984,3,40617,3,1672319394),(123985,3,40618,3,1672319394),(123986,3,40619,3,1672319394),(123987,3,40620,3,1672319394),(123988,3,40621,3,1672319394),(123989,3,40622,3,1672319394),(123990,3,40623,3,1672319394),(123991,3,40624,3,1672319394),(123992,3,40625,3,1672319394),(123993,3,40626,3,1672319394),(123994,3,40627,3,1672319394),(123995,3,40628,3,1672319394),(123996,3,42175,3,1672319394),(123997,3,42176,3,1672319394),(123998,3,42177,3,1672319394),(123999,3,42178,3,1672319394),(124000,3,43497,3,1672319394),(124001,3,43498,3,1672319394),(124002,3,43499,3,1672319394),(124003,3,43500,3,1672319394),(124004,3,43501,3,1672319394),(124005,3,43502,3,1672319394),(124006,3,43503,3,1672319394),(124007,3,43504,3,1672319394),(124008,3,43505,3,1672319394),(124009,3,43506,3,1672319394),(124010,3,43507,3,1672319394),(124011,3,43508,3,1672319394),(124012,3,43509,3,1672319394),(124013,3,43510,3,1672319394),(124014,3,43511,3,1672319394),(124015,3,43512,3,1672319394),(124016,3,43513,3,1672319394),(124017,3,43514,3,1672319394),(124018,3,43515,3,1672319394),(124019,3,43516,3,1672319394),(124020,3,43517,3,1672319394),(124021,3,43518,3,1672319394),(124022,3,43519,3,1672319394),(124023,3,43520,3,1672319394),(124024,3,43521,3,1672319394),(124025,3,43522,3,1672319394),(124026,3,43523,3,1672319394),(124027,3,43524,3,1672319394),(124028,3,43525,3,1672319394),(124029,3,43592,3,1672319394),(124030,3,43593,3,1672319394),(124031,3,43594,3,1672319394),(124032,3,43595,3,1672319394),(124033,3,43596,3,1672319394),(124034,3,43597,3,1672319394),(124035,3,43598,3,1672319394),(124036,3,43599,3,1672319394),(124037,3,43600,3,1672319394),(124038,3,43601,3,1672319394),(124039,3,43602,3,1672319394),(124040,3,43603,3,1672319394),(124041,3,43604,3,1672319394),(124042,3,43605,3,1672319394),(124043,3,43606,3,1672319394),(124044,3,43607,3,1672319394),(124045,3,43608,3,1672319394),(124046,3,43609,3,1672319394),(124047,3,43610,3,1672319394),(124048,3,43611,3,1672319394),(124049,3,43612,3,1672319394),(124050,3,43613,3,1672319394),(124051,3,43614,3,1672319394),(124052,3,43615,3,1672319394),(124053,3,43616,3,1672319394),(124054,3,43617,3,1672319394),(124055,3,43618,3,1672319394),(124056,3,43619,3,1672319394),(124057,3,43620,3,1672319394),(124058,3,43621,3,1672319394),(124059,3,43622,3,1672319394),(124060,3,43623,3,1672319394),(124061,3,43624,3,1672319394),(124062,3,43625,3,1672319394),(124063,3,43626,3,1672319394),(124064,3,43627,3,1672319394),(124065,3,43628,3,1672319394),(124066,3,43629,3,1672319394),(124067,3,43630,3,1672319394),(124068,3,43631,3,1672319394),(124069,3,43632,3,1672319394),(124070,3,43633,3,1672319394),(124071,3,43634,3,1672319394),(124072,3,43635,3,1672319394),(124073,3,43636,3,1672319394),(124074,3,43637,3,1672319394),(124075,3,43638,3,1672319394),(124076,3,43639,3,1672319394),(124077,3,43640,3,1672319394),(124078,3,43641,3,1672319394),(124079,3,43684,3,1672319394),(124080,3,43685,3,1672319394),(124081,3,43686,3,1672319394),(124082,3,43687,3,1672319394),(124083,3,43688,3,1672319394),(124084,3,43689,3,1672319394),(124085,3,43690,3,1672319394),(124086,3,43691,3,1672319394),(124087,3,43692,3,1672319394),(124088,3,43693,3,1672319394),(124089,3,43694,3,1672319394),(124090,3,43695,3,1672319394),(124091,3,43696,3,1672319394),(124092,3,43697,3,1672319394),(124093,3,43698,3,1672319394),(124094,3,43699,3,1672319394),(124095,3,43700,3,1672319394),(124096,3,43701,3,1672319394),(124097,3,43702,3,1672319394),(124098,3,43703,3,1672319394),(124099,3,43704,3,1672319394),(124100,3,43705,3,1672319394),(124101,3,43706,3,1672319394),(124102,3,43707,3,1672319394),(124103,3,43708,3,1672319394),(124104,3,43709,3,1672319394),(124105,3,43710,3,1672319394),(124106,3,43714,3,1672319394),(124107,3,43715,3,1672319394),(124108,3,43716,3,1672319394),(124109,3,43717,3,1672319394),(124110,3,43718,3,1672319394),(124111,3,43719,3,1672319394),(124112,3,43720,3,1672319394),(124113,3,43721,3,1672319394),(124114,3,43722,3,1672319394),(124115,3,43723,3,1672319394),(124116,3,43724,3,1672319394),(124117,3,43725,3,1672319394),(124118,3,43726,3,1672319394),(124119,3,43727,3,1672319394),(124120,3,43728,3,1672319394),(124121,3,43729,3,1672319394),(124122,3,43730,3,1672319394),(124123,3,43731,3,1672319394),(124124,3,43732,3,1672319394),(124125,3,43733,3,1672319394),(124126,3,43734,3,1672319394),(124127,3,43735,3,1672319394),(124128,3,43736,3,1672319394),(124129,3,43737,3,1672319394),(124130,3,43738,3,1672319394),(124131,3,43739,3,1672319394),(124132,3,43740,3,1672319394),(124133,3,43741,3,1672319394),(124134,3,43742,3,1672319394),(124135,3,43743,3,1672319394),(124136,3,43744,3,1672319394),(124137,3,43745,3,1672319394),(124138,3,43746,3,1672319394),(124139,3,43747,3,1672319394),(124140,3,43748,3,1672319394),(124141,3,43749,3,1672319394),(124142,3,43750,3,1672319394),(124143,3,43751,3,1672319394),(124144,3,43752,3,1672319394),(124145,3,43753,3,1672319394),(124146,3,43754,3,1672319394),(124147,3,43755,3,1672319394),(124148,3,43756,3,1672319394),(124149,3,43757,3,1672319394),(124150,3,43758,3,1672319394),(124151,3,43759,3,1672319394),(124152,3,43760,3,1672319394),(124153,3,43761,3,1672319394),(124154,3,43762,3,1672319394),(124155,3,43763,3,1672319394),(124156,3,43764,3,1672319394),(124157,3,43765,3,1672319394),(124158,3,43766,3,1672319394),(124159,3,43767,3,1672319394),(124160,3,43770,3,1672319394),(124161,3,43771,3,1672319394),(124162,3,43772,3,1672319394),(124163,3,43773,3,1672319394),(124164,3,43774,3,1672319394),(124165,3,43775,3,1672319394),(124166,3,43776,3,1672319394),(124167,3,43777,3,1672319394),(124168,3,43778,3,1672319394),(124169,3,43779,3,1672319394),(124170,3,43781,3,1672319394),(124171,3,43876,3,1672319394),(124172,3,43877,3,1672319394),(124173,3,43878,3,1672319394),(124174,3,43879,3,1672319394),(124175,3,43880,3,1672319394),(124176,3,43881,3,1672319394),(124177,3,43882,3,1672319394),(124178,3,43883,3,1672319394),(124179,3,43884,3,1672319394),(124180,3,43885,3,1672319394),(124181,3,43886,3,1672319394),(124182,3,44161,3,1672319394),(124183,3,44162,3,1672319394),(124184,3,44163,3,1672319394),(124185,3,44164,3,1672319394),(124186,3,44165,3,1672319394),(124187,3,44166,3,1672319394),(124188,3,44167,3,1672319394),(124189,3,44168,3,1672319394),(124190,3,44169,3,1672319394),(124191,3,44170,3,1672319394),(124192,3,44171,3,1672319394),(124193,3,44172,3,1672319394),(124194,3,44173,3,1672319394),(124195,3,44174,3,1672319394),(124196,3,44175,3,1672319394),(124197,3,44176,3,1672319394),(124198,3,44177,3,1672319394),(124199,3,44178,3,1672319394),(124200,3,44179,3,1672319394),(124201,3,44180,3,1672319394),(124202,3,44181,3,1672319394),(124203,3,44182,3,1672319394),(124204,3,44183,3,1672319394),(124205,3,44184,3,1672319394),(124206,3,44185,3,1672319394),(124207,3,44186,3,1672319394),(124208,3,44187,3,1672319394),(124209,3,44188,3,1672319394),(124210,3,44189,3,1672319394),(124211,3,44190,3,1672319394),(124212,3,44191,3,1672319394),(124213,3,44192,3,1672319394),(124214,3,44193,3,1672319394),(124215,3,44194,3,1672319394),(124216,3,44195,3,1672319394),(124217,3,44196,3,1672319394),(124218,3,44197,3,1672319394),(124219,3,44198,3,1672319394),(124220,3,44199,3,1672319394),(124221,3,44248,3,1672319394),(124222,3,44249,3,1672319394),(124223,3,44250,3,1672319394),(124224,3,44251,3,1672319394),(124225,3,44252,3,1672319394),(124226,3,44253,3,1672319394),(124227,3,44254,3,1672319394),(124228,3,44255,3,1672319394),(124229,3,44256,3,1672319394),(124230,3,44257,3,1672319394),(124231,3,44258,3,1672319394),(124232,3,44259,3,1672319394),(124233,3,44260,3,1672319394),(124234,3,44261,3,1672319394),(124235,3,44262,3,1672319394),(124236,3,44263,3,1672319394),(124237,3,44264,3,1672319394),(124238,3,44265,3,1672319394),(124239,3,44266,3,1672319394),(124240,3,44267,3,1672319394),(124241,3,44268,3,1672319394),(124242,3,44269,3,1672319394),(124243,3,44270,3,1672319394),(124244,3,44271,3,1672319394),(124245,3,44272,3,1672319394),(124246,3,44273,3,1672319394),(124247,3,44274,3,1672319394),(124248,3,44275,3,1672319394),(124249,3,44276,3,1672319394),(124250,3,44277,3,1672319394),(124251,3,44278,3,1672319394),(124252,3,44279,3,1672319394),(124253,3,44280,3,1672319394),(124254,3,44281,3,1672319394),(124255,3,44282,3,1672319394),(124256,3,44283,3,1672319394),(124257,3,44284,3,1672319394),(124258,3,44285,3,1672319394),(124259,3,44286,3,1672319394),(124260,3,44287,3,1672319394),(124261,3,44288,3,1672319394),(124262,3,44289,3,1672319394),(124263,3,44290,3,1672319394),(124264,3,44291,3,1672319394),(124265,3,44292,3,1672319394),(124266,3,44335,3,1672319394),(124267,3,44427,3,1672319394),(124268,1,10076,3,1672319394),(124269,1,10207,3,1672319394),(124270,1,10208,3,1672319394),(124271,1,10209,3,1672319394),(124272,1,10210,3,1672319394),(124273,1,10211,3,1672319394),(124274,1,10212,3,1672319394),(124275,1,10213,3,1672319394),(124276,1,10216,3,1672319394),(124277,1,10217,3,1672319394),(124278,1,10218,3,1672319394),(124279,1,10252,3,1672319394),(124280,1,10254,3,1672319394),(124281,1,10260,3,1672319394),(124282,1,10264,3,1672319394),(124283,1,10265,3,1672319394),(124284,1,10321,3,1672319394),(124285,1,10336,3,1672319394),(124286,1,10353,3,1672319394),(124287,1,10358,3,1672319394),(124288,1,10359,3,1672319394),(124289,1,10364,3,1672319394),(124290,1,10370,3,1672319394),(124291,1,10390,3,1672319394),(124292,1,10391,3,1672319394),(124293,1,10392,3,1672319394),(124294,1,10393,3,1672319394),(124295,1,10394,3,1672319394),(124296,1,10395,3,1672319394),(124297,1,10400,3,1672319394),(124298,1,10401,3,1672319394),(124299,1,10402,3,1672319394),(124300,1,10403,3,1672319394),(124301,1,10404,3,1672319394),(124302,1,10406,3,1672319394),(124303,1,10407,3,1672319394),(124304,1,10408,3,1672319394),(124305,1,10409,3,1672319394),(124306,1,10412,3,1672319394),(124307,1,10418,3,1672319394),(124308,1,10527,3,1672319394),(124309,1,10529,3,1672319394),(124310,1,10530,3,1672319394),(124311,1,10531,3,1672319394),(124312,1,10532,3,1672319394),(124313,1,10535,3,1672319394),(124314,1,10539,3,1672319394),(124315,1,10540,3,1672319394),(124316,1,10543,3,1672319394),(124317,1,10544,3,1672319394),(124318,3,22908,2,1672319399),(124319,3,22909,2,1672319399),(124320,3,22910,2,1672319399),(124321,3,22911,2,1672319399),(124322,3,22912,2,1672319399),(124323,3,22985,2,1672319399),(124324,3,22986,2,1672319399),(124325,3,22988,2,1672319399),(124326,3,22989,2,1672319399),(124327,3,22990,2,1672319399),(124328,3,22991,2,1672319399),(124329,3,22992,2,1672319399),(124330,3,23073,2,1672319399),(124331,3,23074,2,1672319399),(124332,3,27032,2,1672319399),(124333,3,27478,2,1672319399),(124334,3,27479,2,1672319399),(124335,3,27480,2,1672319399),(124336,3,27481,2,1672319399),(124337,3,27482,2,1672319399),(124338,3,27483,2,1672319399),(124339,3,27484,2,1672319399),(124340,3,27485,2,1672319399),(124341,3,27517,2,1672319399),(124342,3,27518,2,1672319399),(124343,3,27519,2,1672319399),(124344,3,27553,2,1672319399),(124345,3,27554,2,1672319399),(124346,3,27555,2,1672319399),(124347,3,27591,2,1672319399),(124348,3,27593,2,1672319399),(124349,3,27594,2,1672319399),(124350,3,27595,2,1672319399),(124351,3,27671,2,1672319399),(124352,3,27672,2,1672319399),(124353,3,27673,2,1672319399),(124354,3,27674,2,1672319399),(124355,3,27675,2,1672319399),(124356,3,27676,2,1672319399),(124357,3,27677,2,1672319399),(124358,3,27678,2,1672319399),(124359,3,27679,2,1672319399),(124360,3,28354,2,1672319399),(124361,3,28355,2,1672319399),(124362,3,28356,2,1672319399),(124363,3,28357,2,1672319399),(124364,3,28358,2,1672319399),(124365,3,28359,2,1672319399),(124366,3,28360,2,1672319399),(124367,3,28361,2,1672319399),(124368,3,28362,2,1672319399),(124369,3,28363,2,1672319399),(124370,3,28364,2,1672319399),(124371,3,28365,2,1672319399),(124372,3,28366,2,1672319399),(124373,3,28367,2,1672319399),(124374,3,28368,2,1672319399),(124375,3,28369,2,1672319399),(124376,3,28370,2,1672319399),(124377,3,28371,2,1672319399),(124378,3,28372,2,1672319399),(124379,3,28373,2,1672319399),(124380,3,28374,2,1672319399),(124381,3,28375,2,1672319399),(124382,3,28376,2,1672319399),(124383,3,30066,2,1672319399),(124384,3,30067,2,1672319399),(124385,3,30068,2,1672319399),(124386,3,30069,2,1672319399),(124387,3,30070,2,1672319399),(124388,3,30071,2,1672319399),(124389,3,30072,2,1672319399),(124390,3,30073,2,1672319399),(124391,3,30074,2,1672319399),(124392,3,30075,2,1672319399),(124393,3,30076,2,1672319399),(124394,3,30077,2,1672319399),(124395,3,30078,2,1672319399),(124396,3,30079,2,1672319399),(124397,3,30080,2,1672319399),(124398,3,30081,2,1672319399),(124399,3,30082,2,1672319399),(124400,3,30083,2,1672319399),(124401,3,30084,2,1672319399),(124402,3,30085,2,1672319399),(124403,3,30105,2,1672319399),(124404,3,30107,2,1672319399),(124405,3,30108,2,1672319399),(124406,3,30110,2,1672319399),(124407,3,30111,2,1672319399),(124408,3,30112,2,1672319399),(124409,3,30157,2,1672319399),(124410,3,30158,2,1672319399),(124411,3,30159,2,1672319399),(124412,3,30160,2,1672319399),(124413,3,30161,2,1672319399),(124414,3,30162,2,1672319399),(124415,3,30196,2,1672319399),(124416,3,30197,2,1672319399),(124417,3,30198,2,1672319399),(124418,3,30199,2,1672319399),(124419,3,30200,2,1672319399),(124420,3,30201,2,1672319399),(124421,3,30202,2,1672319399),(124422,3,30203,2,1672319399),(124423,3,30204,2,1672319399),(124424,3,30205,2,1672319399),(124425,3,30206,2,1672319399),(124426,3,30207,2,1672319399),(124427,3,30208,2,1672319399),(124428,3,30209,2,1672319399),(124429,3,30210,2,1672319399),(124430,3,30211,2,1672319399),(124431,3,30212,2,1672319399),(124432,3,30213,2,1672319399),(124433,3,30214,2,1672319399),(124434,3,30215,2,1672319399),(124435,3,30216,2,1672319399),(124436,3,30217,2,1672319399),(124437,3,30218,2,1672319399),(124438,3,30219,2,1672319399),(124439,3,30220,2,1672319399),(124440,3,30221,2,1672319399),(124441,3,30222,2,1672319399),(124442,3,30223,2,1672319399),(124443,3,30224,2,1672319399),(124444,3,30225,2,1672319399),(124445,3,30226,2,1672319399),(124446,3,30227,2,1672319399),(124447,3,30228,2,1672319399),(124448,3,30229,2,1672319399),(124449,3,30239,2,1672319399),(124450,3,30240,2,1672319399),(124451,3,30241,2,1672319399),(124452,3,30242,2,1672319399),(124453,3,30243,2,1672319399),(124454,3,30244,2,1672319399),(124455,3,30245,2,1672319399),(124456,3,30246,2,1672319399),(124457,3,30247,2,1672319399),(124458,3,30248,2,1672319399),(124459,3,30249,2,1672319399),(124460,3,30250,2,1672319399),(124461,3,30251,2,1672319399),(124462,3,30252,2,1672319399),(124463,3,30253,2,1672319399),(124464,3,30254,2,1672319399),(124465,3,30255,2,1672319399),(124466,3,30256,2,1672319399),(124467,3,30257,2,1672319399),(124468,3,30258,2,1672319399),(124469,3,30259,2,1672319399),(124470,3,30260,2,1672319399),(124471,3,30261,2,1672319399),(124472,3,30262,2,1672319399),(124473,3,30263,2,1672319399),(124474,3,30264,2,1672319399),(124475,3,30265,2,1672319399),(124476,3,30266,2,1672319399),(124477,3,30267,2,1672319399),(124478,3,30268,2,1672319399),(124479,3,30269,2,1672319399),(124480,3,30270,2,1672319399),(124481,3,30271,2,1672319399),(124482,3,30272,2,1672319399),(124483,3,30573,2,1672319399),(124484,3,30574,2,1672319399),(124485,3,30575,2,1672319399),(124486,3,30576,2,1672319399),(124487,3,30577,2,1672319399),(124488,3,30578,2,1672319399),(124489,3,30579,2,1672319399),(124490,3,30580,2,1672319399),(124491,3,30581,2,1672319399),(124492,3,30582,2,1672319399),(124493,3,30583,2,1672319399),(124494,3,30584,2,1672319399),(124495,3,30585,2,1672319399),(124496,3,30586,2,1672319399),(124497,3,30587,2,1672319399),(124498,3,30588,2,1672319399),(124499,3,30589,2,1672319399),(124500,3,30590,2,1672319399),(124501,3,30591,2,1672319399),(124502,3,30592,2,1672319399),(124503,3,30593,2,1672319399),(124504,3,30594,2,1672319399),(124505,3,30595,2,1672319399),(124506,3,30596,2,1672319399),(124507,3,30597,2,1672319399),(124508,3,30598,2,1672319399),(124509,3,30599,2,1672319399),(124510,3,30600,2,1672319399),(124511,3,30601,2,1672319399),(124512,3,30602,2,1672319399),(124513,3,30603,2,1672319399),(124514,3,30604,2,1672319399),(124515,3,30605,2,1672319399),(124516,3,30606,2,1672319399),(124517,3,30607,2,1672319399),(124518,3,30608,2,1672319399),(124519,3,30609,2,1672319399),(124520,3,30610,2,1672319399),(124521,3,30714,2,1672319399),(124522,3,30715,2,1672319399),(124523,3,30716,2,1672319399),(124524,3,30717,2,1672319399),(124525,3,30718,2,1672319399),(124526,3,30719,2,1672319399),(124527,3,30720,2,1672319399),(124528,3,30721,2,1672319399),(124529,3,30722,2,1672319399),(124530,3,30723,2,1672319399),(124531,3,30724,2,1672319399),(124532,3,30725,2,1672319399),(124533,3,30726,2,1672319399),(124534,3,30727,2,1672319399),(124535,3,30728,2,1672319399),(124536,3,30729,2,1672319399),(124537,3,30730,2,1672319399),(124538,3,30731,2,1672319399),(124539,3,30732,2,1672319399),(124540,3,30733,2,1672319399),(124541,3,30734,2,1672319399),(124542,3,30735,2,1672319399),(124543,3,30736,2,1672319399),(124544,3,30737,2,1672319399),(124545,3,30738,2,1672319399),(124546,3,30739,2,1672319399),(124547,3,30740,2,1672319399),(124548,3,30741,2,1672319399),(124549,3,30742,2,1672319399),(124550,3,30743,2,1672319399),(124551,3,30744,2,1672319399),(124552,3,30745,2,1672319399),(124553,3,30746,2,1672319399),(124554,3,30747,2,1672319399),(124555,3,30748,2,1672319399),(124556,3,30749,2,1672319399),(124557,3,30750,2,1672319399),(124558,3,30751,2,1672319399),(124559,3,30752,2,1672319399),(124560,3,30753,2,1672319399),(124561,3,30754,2,1672319399),(124562,3,30755,2,1672319399),(124563,3,30756,2,1672319399),(124564,3,30757,2,1672319399),(124565,3,30758,2,1672319399),(124566,3,30877,2,1672319399),(124567,3,30878,2,1672319399),(124568,3,30879,2,1672319399),(124569,3,30880,2,1672319399),(124570,3,30881,2,1672319399),(124571,3,30882,2,1672319399),(124572,3,30883,2,1672319399),(124573,3,30884,2,1672319399),(124574,3,30885,2,1672319399),(124575,3,30886,2,1672319399),(124576,3,30887,2,1672319399),(124577,3,30888,2,1672319399),(124578,3,30889,2,1672319399),(124579,3,30890,2,1672319399),(124580,3,30891,2,1672319399),(124581,3,30892,2,1672319399),(124582,3,30893,2,1672319399),(124583,3,30894,2,1672319399),(124584,3,30895,2,1672319399),(124585,3,30963,2,1672319399),(124586,3,30964,2,1672319399),(124587,3,30965,2,1672319399),(124588,3,30966,2,1672319399),(124589,3,30967,2,1672319399),(124590,3,32621,2,1672319399),(124591,3,32622,2,1672319399),(124592,3,32623,2,1672319399),(124593,3,32624,2,1672319399),(124594,3,32625,2,1672319399),(124595,3,32626,2,1672319399),(124596,3,32627,2,1672319399),(124597,3,32628,2,1672319399),(124598,3,32629,2,1672319399),(124599,3,32630,2,1672319399),(124600,3,32631,2,1672319399),(124601,3,32632,2,1672319399),(124602,3,32633,2,1672319399),(124603,3,32670,2,1672319399),(124604,3,32671,2,1672319399),(124605,3,32672,2,1672319399),(124606,3,32673,2,1672319399),(124607,3,32674,2,1672319399),(124608,3,32675,2,1672319399),(124609,3,32676,2,1672319399),(124610,3,32677,2,1672319399),(124611,3,32678,2,1672319399),(124612,3,32679,2,1672319399),(124613,3,32680,2,1672319399),(124614,3,32681,2,1672319399),(124615,3,32682,2,1672319399),(124616,3,32683,2,1672319399),(124617,3,32684,2,1672319399),(124618,3,32685,2,1672319399),(124619,3,32686,2,1672319399),(124620,3,32687,2,1672319399),(124621,3,32688,2,1672319399),(124622,3,32689,2,1672319399),(124623,3,32690,2,1672319399),(124624,3,32691,2,1672319399),(124625,3,32692,2,1672319399),(124626,3,32871,2,1672319399),(124627,3,32872,2,1672319399),(124628,3,32873,2,1672319399),(124629,3,32874,2,1672319399),(124630,3,32875,2,1672319399),(124631,3,32876,2,1672319399),(124632,3,32877,2,1672319399),(124633,3,32878,2,1672319399),(124634,3,32879,2,1672319399),(124635,3,32880,2,1672319399),(124636,3,32881,2,1672319399),(124637,3,32882,2,1672319399),(124638,3,32883,2,1672319399),(124639,3,32884,2,1672319399),(124640,3,32885,2,1672319399),(124641,3,32886,2,1672319399),(124642,3,32887,2,1672319399),(124643,3,32888,2,1672319399),(124644,3,32889,2,1672319399),(124645,3,33522,2,1672319399),(124646,3,33523,2,1672319399),(124647,3,33524,2,1672319399),(124648,3,33525,2,1672319399),(124649,3,33526,2,1672319399),(124650,3,33527,2,1672319399),(124651,3,33528,2,1672319399),(124652,3,33529,2,1672319399),(124653,3,33530,2,1672319399),(124654,3,33531,2,1672319399),(124655,3,33532,2,1672319399),(124656,3,33533,2,1672319399),(124657,3,33534,2,1672319399),(124658,3,33535,2,1672319399),(124659,3,33536,2,1672319399),(124660,3,33537,2,1672319399),(124661,3,33538,2,1672319399),(124662,3,33539,2,1672319399),(124663,3,33540,2,1672319399),(124664,3,33541,2,1672319399),(124665,3,35104,2,1672319399),(124666,3,35105,2,1672319399),(124667,3,35106,2,1672319399),(124668,3,35107,2,1672319399),(124669,3,35108,2,1672319399),(124670,3,35109,2,1672319399),(124671,3,35110,2,1672319399),(124672,3,35111,2,1672319399),(124673,3,35112,2,1672319399),(124674,3,35113,2,1672319399),(124675,3,35114,2,1672319399),(124676,3,35115,2,1672319399),(124677,3,35116,2,1672319399),(124678,3,35117,2,1672319399),(124679,3,35118,2,1672319399),(124680,3,35119,2,1672319399),(124681,3,35120,2,1672319399),(124682,3,35121,2,1672319399),(124683,3,35122,2,1672319399),(124684,3,35123,2,1672319399),(124685,3,35124,2,1672319399),(124686,3,35125,2,1672319399),(124687,3,35126,2,1672319399),(124688,3,35127,2,1672319399),(124689,3,35129,2,1672319399),(124690,3,35130,2,1672319399),(124691,3,35131,2,1672319399),(124692,3,35132,2,1672319399),(124693,3,35133,2,1672319399),(124694,3,35134,2,1672319399),(124695,3,35135,2,1672319399),(124696,3,35136,2,1672319399),(124697,3,35137,2,1672319399),(124698,3,35138,2,1672319399),(124699,3,35139,2,1672319399),(124700,3,35140,2,1672319399),(124701,3,35141,2,1672319399),(124702,3,35142,2,1672319399),(124703,3,35143,2,1672319399),(124704,3,35144,2,1672319399),(124705,3,35145,2,1672319399),(124706,3,35146,2,1672319399),(124707,3,35147,2,1672319399),(124708,3,35148,2,1672319399),(124709,3,35149,2,1672319399),(124710,3,35150,2,1672319399),(124711,3,35151,2,1672319399),(124712,3,35152,2,1672319399),(124713,3,35290,2,1672319399),(124714,3,35291,2,1672319399),(124715,3,35292,2,1672319399),(124716,3,35293,2,1672319399),(124717,3,35294,2,1672319399),(124718,3,35295,2,1672319399),(124719,3,35296,2,1672319399),(124720,3,35297,2,1672319399),(124721,3,35298,2,1672319399),(124722,3,35299,2,1672319399),(124723,3,35300,2,1672319399),(124724,3,35301,2,1672319399),(124725,3,35302,2,1672319399),(124726,3,35303,2,1672319399),(124727,3,35304,2,1672319399),(124728,3,35305,2,1672319399),(124729,3,35306,2,1672319399),(124730,3,35307,2,1672319399),(124731,3,35308,2,1672319399),(124732,3,35309,2,1672319399),(124733,3,35310,2,1672319399),(124734,3,35311,2,1672319399),(124735,3,35312,2,1672319399),(124736,3,35313,2,1672319399),(124737,3,35314,2,1672319399),(124738,3,35315,2,1672319399),(124739,3,35316,2,1672319399),(124740,3,35317,2,1672319399),(124741,3,35318,2,1672319399),(124742,3,35319,2,1672319399),(124743,3,35320,2,1672319399),(124744,3,35321,2,1672319399),(124745,3,35322,2,1672319399),(124746,3,35323,2,1672319399),(124747,3,35324,2,1672319399),(124748,3,35325,2,1672319399),(124749,3,35326,2,1672319399),(124750,3,35327,2,1672319399),(124751,3,35328,2,1672319399),(124752,3,35329,2,1672319399),(124753,3,35330,2,1672319399),(124754,3,35331,2,1672319399),(124755,3,35332,2,1672319399),(124756,3,35333,2,1672319399),(124757,3,35334,2,1672319399),(124758,3,35335,2,1672319399),(124759,3,35336,2,1672319399),(124760,3,35337,2,1672319399),(124761,3,35338,2,1672319399),(124762,3,35339,2,1672319399),(124763,3,35340,2,1672319399),(124764,3,35341,2,1672319399),(124765,3,35342,2,1672319399),(124766,3,35343,2,1672319399),(124767,3,35344,2,1672319399),(124768,3,35345,2,1672319399),(124769,3,35346,2,1672319399),(124770,3,35347,2,1672319399),(124771,3,35348,2,1672319399),(124772,3,35349,2,1672319399),(124773,3,35350,2,1672319399),(124774,3,35351,2,1672319399),(124775,3,35352,2,1672319399),(124776,3,35353,2,1672319399),(124777,3,35354,2,1672319399),(124778,3,35355,2,1672319399),(124779,3,35356,2,1672319399),(124780,3,35357,2,1672319399),(124781,3,35439,2,1672319399),(124782,3,35440,2,1672319399),(124783,3,35441,2,1672319399),(124784,3,35442,2,1672319399),(124785,3,35443,2,1672319399),(124786,3,35444,2,1672319399),(124787,3,35445,2,1672319399),(124788,3,35446,2,1672319399),(124789,3,35447,2,1672319399),(124790,3,35448,2,1672319399),(124791,3,35449,2,1672319399),(124792,3,35450,2,1672319399),(124793,3,35451,2,1672319399),(124794,3,35452,2,1672319399),(124795,3,35453,2,1672319399),(124796,3,35454,2,1672319399),(124797,3,35455,2,1672319399),(124798,3,35456,2,1672319399),(124799,3,35457,2,1672319399),(124800,3,35458,2,1672319399),(124801,3,35459,2,1672319399),(124802,3,35460,2,1672319399),(124803,3,35461,2,1672319399),(124804,3,35462,2,1672319399),(124805,3,35463,2,1672319399),(124806,3,35464,2,1672319399),(124807,3,35465,2,1672319399),(124808,3,35466,2,1672319399),(124809,3,35467,2,1672319399),(124810,3,35468,2,1672319399),(124811,3,35469,2,1672319399),(124812,3,35470,2,1672319399),(124813,3,35471,2,1672319399),(124814,3,35472,2,1672319399),(124815,3,35473,2,1672319399),(124816,3,35474,2,1672319399),(124817,3,35475,2,1672319399),(124818,3,35476,2,1672319399),(124819,3,35477,2,1672319399),(124820,3,35478,2,1672319399),(124821,3,35479,2,1672319399),(124822,3,35480,2,1672319399),(124823,3,35481,2,1672319399),(124824,3,35482,2,1672319399),(124825,3,35483,2,1672319399),(124826,3,35484,2,1672319399),(124827,3,35485,2,1672319399),(124828,3,35486,2,1672319399),(124829,3,35487,2,1672319399),(124830,3,35488,2,1672319399),(124831,3,35489,2,1672319399),(124832,3,35490,2,1672319399),(124833,3,35491,2,1672319399),(124834,3,35492,2,1672319399),(124835,3,35493,2,1672319399),(124836,3,35494,2,1672319399),(124837,3,35495,2,1672319399),(124838,3,35496,2,1672319399),(124839,3,35497,2,1672319399),(124840,3,35498,2,1672319399),(124841,3,35499,2,1672319399),(124842,3,35500,2,1672319399),(124843,3,35501,2,1672319399),(124844,3,35502,2,1672319399),(124845,3,35503,2,1672319399),(124846,3,35504,2,1672319399),(124847,3,35505,2,1672319399),(124848,3,35506,2,1672319399),(124849,3,35507,2,1672319399),(124850,3,35508,2,1672319399),(124851,3,35509,2,1672319399),(124852,3,35510,2,1672319399),(124853,3,35511,2,1672319399),(124854,3,35512,2,1672319399),(124855,3,35513,2,1672319399),(124856,3,35514,2,1672319399),(124857,3,35515,2,1672319399),(124858,3,35516,2,1672319399),(124859,3,35517,2,1672319399),(124860,3,35518,2,1672319399),(124861,3,35519,2,1672319399),(124862,3,35520,2,1672319399),(124863,3,35521,2,1672319399),(124864,3,35522,2,1672319399),(124865,3,35523,2,1672319399),(124866,3,35524,2,1672319399),(124867,3,35525,2,1672319399),(124868,3,35526,2,1672319399),(124869,3,35527,2,1672319399),(124870,3,35528,2,1672319399),(124871,3,35529,2,1672319399),(124872,3,35530,2,1672319399),(124873,3,35531,2,1672319399),(124874,3,36178,2,1672319399),(124875,3,36179,2,1672319399),(124876,3,36180,2,1672319399),(124877,3,36181,2,1672319399),(124878,3,36182,2,1672319399),(124879,3,36183,2,1672319399),(124880,3,36184,2,1672319399),(124881,3,36185,2,1672319399),(124882,3,36186,2,1672319399),(124883,3,36187,2,1672319399),(124884,3,36188,2,1672319399),(124885,3,36189,2,1672319399),(124886,3,36190,2,1672319399),(124887,3,36191,2,1672319399),(124888,3,36192,2,1672319399),(124889,3,36193,2,1672319399),(124890,3,36194,2,1672319399),(124891,3,36195,2,1672319399),(124892,3,36196,2,1672319399),(124893,3,36197,2,1672319399),(124894,3,36198,2,1672319399),(124895,3,36199,2,1672319399),(124896,3,36200,2,1672319399),(124897,3,36201,2,1672319399),(124898,3,36202,2,1672319399),(124899,3,36203,2,1672319399),(124900,3,36204,2,1672319399),(124901,3,36205,2,1672319399),(124902,3,36206,2,1672319399),(124903,3,36207,2,1672319399),(124904,3,36208,2,1672319399),(124905,3,36209,2,1672319399),(124906,3,36210,2,1672319399),(124907,3,36211,2,1672319399),(124908,3,36212,2,1672319399),(124909,3,36227,2,1672319399),(124910,3,36228,2,1672319399),(124911,3,36229,2,1672319399),(124912,3,36230,2,1672319399),(124913,3,36231,2,1672319399),(124914,3,36232,2,1672319399),(124915,3,36233,2,1672319399),(124916,3,36234,2,1672319399),(124917,3,36235,2,1672319399),(124918,3,36236,2,1672319399),(124919,3,36237,2,1672319399),(124920,3,36238,2,1672319399),(124921,3,36239,2,1672319399),(124922,3,36240,2,1672319399),(124923,3,36241,2,1672319399),(124924,3,36242,2,1672319399),(124925,3,36243,2,1672319399),(124926,3,36244,2,1672319399),(124927,3,36245,2,1672319399),(124928,3,36246,2,1672319399),(124929,3,36247,2,1672319399),(124930,3,36248,2,1672319399),(124931,3,36249,2,1672319399),(124932,3,36250,2,1672319399),(124933,3,36251,2,1672319399),(124934,3,36252,2,1672319399),(124935,3,36253,2,1672319399),(124936,3,36254,2,1672319399),(124937,3,36275,2,1672319399),(124938,3,36276,2,1672319399),(124939,3,36277,2,1672319399),(124940,3,36278,2,1672319399),(124941,3,36279,2,1672319399),(124942,3,36280,2,1672319399),(124943,3,36281,2,1672319399),(124944,3,36282,2,1672319399),(124945,3,36283,2,1672319399),(124946,3,36284,2,1672319399),(124947,3,36285,2,1672319399),(124948,3,36286,2,1672319399),(124949,3,36287,2,1672319399),(124950,3,36288,2,1672319399),(124951,3,36289,2,1672319399),(124952,3,36290,2,1672319399),(124953,3,36291,2,1672319399),(124954,3,36292,2,1672319399),(124955,3,36293,2,1672319399),(124956,3,36294,2,1672319399),(124957,3,36309,2,1672319399),(124958,3,36310,2,1672319399),(124959,3,36311,2,1672319399),(124960,3,36312,2,1672319399),(124961,3,36313,2,1672319399),(124962,3,36314,2,1672319399),(124963,3,36315,2,1672319399),(124964,3,36316,2,1672319399),(124965,3,36317,2,1672319399),(124966,3,36318,2,1672319399),(124967,3,36319,2,1672319399),(124968,3,36320,2,1672319399),(124969,3,36321,2,1672319399),(124970,3,36322,2,1672319399),(124971,3,36323,2,1672319399),(124972,3,36324,2,1672319399),(124973,3,36325,2,1672319399),(124974,3,36326,2,1672319399),(124975,3,36327,2,1672319399),(124976,3,36328,2,1672319399),(124977,3,36329,2,1672319399),(124978,3,36330,2,1672319399),(124979,3,36331,2,1672319399),(124980,3,36332,2,1672319399),(124981,3,36333,2,1672319399),(124982,3,36334,2,1672319399),(124983,3,36335,2,1672319399),(124984,3,36336,2,1672319399),(124985,3,36357,2,1672319399),(124986,3,36358,2,1672319399),(124987,3,36359,2,1672319399),(124988,3,36360,2,1672319399),(124989,3,36361,2,1672319399),(124990,3,36362,2,1672319399),(124991,3,36363,2,1672319399),(124992,3,36364,2,1672319399),(124993,3,36365,2,1672319399),(124994,3,36366,2,1672319399),(124995,3,36367,2,1672319399),(124996,3,36368,2,1672319399),(124997,3,36369,2,1672319399),(124998,3,36370,2,1672319399),(124999,3,36371,2,1672319399),(125000,3,36372,2,1672319399),(125001,3,36373,2,1672319399),(125002,3,36374,2,1672319399),(125003,3,36375,2,1672319399),(125004,3,36376,2,1672319399),(125005,3,36391,2,1672319399),(125006,3,36392,2,1672319399),(125007,3,36393,2,1672319399),(125008,3,36394,2,1672319399),(125009,3,36395,2,1672319399),(125010,3,36396,2,1672319399),(125011,3,36397,2,1672319399),(125012,3,36398,2,1672319399),(125013,3,36399,2,1672319399),(125014,3,36400,2,1672319399),(125015,3,36401,2,1672319399),(125016,3,36402,2,1672319399),(125017,3,36403,2,1672319399),(125018,3,36404,2,1672319399),(125019,3,36405,2,1672319399),(125020,3,36406,2,1672319399),(125021,3,36407,2,1672319399),(125022,3,36408,2,1672319399),(125023,3,36409,2,1672319399),(125024,3,36410,2,1672319399),(125025,3,36411,2,1672319399),(125026,3,36412,2,1672319399),(125027,3,36413,2,1672319399),(125028,3,36414,2,1672319399),(125029,3,36415,2,1672319399),(125030,3,36416,2,1672319399),(125031,3,36417,2,1672319399),(125032,3,36418,2,1672319399),(125033,3,36439,2,1672319399),(125034,3,36440,2,1672319399),(125035,3,36441,2,1672319399),(125036,3,36442,2,1672319399),(125037,3,36443,2,1672319399),(125038,3,36444,2,1672319399),(125039,3,36445,2,1672319399),(125040,3,36446,2,1672319399),(125041,3,36447,2,1672319399),(125042,3,36448,2,1672319399),(125043,3,36449,2,1672319399),(125044,3,36450,2,1672319399),(125045,3,36451,2,1672319399),(125046,3,36452,2,1672319399),(125047,3,36453,2,1672319399),(125048,3,36454,2,1672319399),(125049,3,36455,2,1672319399),(125050,3,36456,2,1672319399),(125051,3,36457,2,1672319399),(125052,3,36458,2,1672319399),(125053,3,36473,2,1672319399),(125054,3,36474,2,1672319399),(125055,3,36475,2,1672319399),(125056,3,36476,2,1672319399),(125057,3,36477,2,1672319399),(125058,3,36478,2,1672319399),(125059,3,36479,2,1672319399),(125060,3,36480,2,1672319399),(125061,3,36481,2,1672319399),(125062,3,36482,2,1672319399),(125063,3,36483,2,1672319399),(125064,3,36484,2,1672319399),(125065,3,36485,2,1672319399),(125066,3,36486,2,1672319399),(125067,3,36487,2,1672319399),(125068,3,36488,2,1672319399),(125069,3,36489,2,1672319399),(125070,3,36490,2,1672319399),(125071,3,36491,2,1672319399),(125072,3,36492,2,1672319399),(125073,3,36493,2,1672319399),(125074,3,36494,2,1672319399),(125075,3,36495,2,1672319399),(125076,3,36496,2,1672319399),(125077,3,36497,2,1672319399),(125078,3,36498,2,1672319399),(125079,3,36499,2,1672319399),(125080,3,36500,2,1672319399),(125081,3,36521,2,1672319399),(125082,3,36522,2,1672319399),(125083,3,36523,2,1672319399),(125084,3,36524,2,1672319399),(125085,3,36525,2,1672319399),(125086,3,36526,2,1672319399),(125087,3,36527,2,1672319399),(125088,3,36528,2,1672319399),(125089,3,36529,2,1672319399),(125090,3,36530,2,1672319399),(125091,3,36531,2,1672319399),(125092,3,36532,2,1672319399),(125093,3,36533,2,1672319399),(125094,3,36534,2,1672319399),(125095,3,36535,2,1672319399),(125096,3,36536,2,1672319399),(125097,3,36537,2,1672319399),(125098,3,36538,2,1672319399),(125099,3,36539,2,1672319399),(125100,3,36540,2,1672319399),(125101,3,36824,2,1672319399),(125102,3,36825,2,1672319399),(125103,3,39803,2,1672319399),(125104,3,40460,2,1672319399),(125105,3,40461,2,1672319399),(125106,3,40462,2,1672319399),(125107,3,40463,2,1672319399),(125108,3,40464,2,1672319399),(125109,3,40465,2,1672319399),(125110,3,40663,2,1672319399),(125111,3,40664,2,1672319399),(125112,3,40665,2,1672319399),(125113,3,40666,2,1672319399),(125114,3,40667,2,1672319399),(125115,3,40668,2,1672319399),(125116,3,40669,2,1672319399),(125117,3,40670,2,1672319399),(125118,3,40690,2,1672319399),(125119,3,40691,2,1672319399),(125120,3,40692,2,1672319399),(125121,3,40693,2,1672319399),(125122,3,40694,2,1672319399),(125123,3,40695,2,1672319399),(125124,3,40696,2,1672319399),(125125,3,40697,2,1672319399),(125126,3,40698,2,1672319399),(125127,3,40699,2,1672319399),(125128,3,40700,2,1672319399),(125129,3,40701,2,1672319399),(125130,3,40702,2,1672319399),(125131,3,40703,2,1672319399),(125132,3,40704,2,1672319399),(125133,3,40705,2,1672319399),(125134,3,40706,2,1672319399),(125135,3,40707,2,1672319399),(125136,3,40721,2,1672319399),(125137,3,40722,2,1672319399),(125138,3,40723,2,1672319399),(125139,3,40724,2,1672319399),(125140,3,40725,2,1672319399),(125141,3,40726,2,1672319399),(125142,3,40727,2,1672319399),(125143,3,40728,2,1672319399),(125144,3,40729,2,1672319399),(125145,3,40730,2,1672319399),(125146,3,40743,2,1672319399),(125147,3,40744,2,1672319399),(125148,3,40745,2,1672319399),(125149,3,40746,2,1672319399),(125150,3,40747,2,1672319399),(125151,3,40748,2,1672319399),(125152,3,40749,2,1672319399),(125153,3,40750,2,1672319399),(125154,3,40751,2,1672319399),(125155,3,40765,2,1672319399),(125156,3,40766,2,1672319399),(125157,3,40767,2,1672319399),(125158,3,40768,2,1672319399),(125159,3,40769,2,1672319399),(125160,3,40770,2,1672319399),(125161,3,40771,2,1672319399),(125162,3,40772,2,1672319399),(125163,3,40773,2,1672319399),(125164,3,40774,2,1672319399),(125165,3,40788,2,1672319399),(125166,3,40789,2,1672319399),(125167,3,40790,2,1672319399),(125168,3,40791,2,1672319399),(125169,3,40792,2,1672319399),(125170,3,40793,2,1672319399),(125171,3,40794,2,1672319399),(125172,3,40795,2,1672319399),(125173,3,40796,2,1672319399),(125174,3,40797,2,1672319399),(125175,3,40834,2,1672319399),(125176,3,40835,2,1672319399),(125177,3,40836,2,1672319399),(125178,3,40837,2,1672319399),(125179,3,40838,2,1672319399),(125180,3,40839,2,1672319399),(125181,3,40840,2,1672319399),(125182,3,40841,2,1672319399),(125183,3,40842,2,1672319399),(125184,3,40843,2,1672319399),(125185,3,42686,2,1672319399),(125186,3,42687,2,1672319399),(125187,3,42688,2,1672319399),(125188,3,42689,2,1672319399),(125189,3,42690,2,1672319399),(125190,3,42987,2,1672319399),(125191,3,42988,2,1672319399),(125192,3,42989,2,1672319399),(125193,3,42990,2,1672319399),(125194,3,42991,2,1672319399),(125195,3,42992,2,1672319399),(125196,3,42993,2,1672319399),(125197,3,42994,2,1672319399),(125198,3,42995,2,1672319399),(125199,3,42996,2,1672319399),(125200,3,42997,2,1672319399),(125201,3,42998,2,1672319399),(125202,3,42999,2,1672319399),(125203,3,43000,2,1672319399),(125204,3,43001,2,1672319399),(125205,3,43002,2,1672319399),(125206,3,43003,2,1672319399),(125207,3,43004,2,1672319399),(125208,3,43005,2,1672319399),(125209,3,43006,2,1672319399),(125210,3,43007,2,1672319399),(125211,3,43008,2,1672319399),(125212,3,43009,2,1672319399),(125213,3,43010,2,1672319399),(125214,3,43011,2,1672319399),(125215,3,43012,2,1672319399),(125216,3,43013,2,1672319399),(125217,3,43014,2,1672319399),(125218,3,43015,2,1672319399),(125219,3,43016,2,1672319399),(125220,3,43017,2,1672319399),(125221,3,43050,2,1672319399),(125222,3,43051,2,1672319399),(125223,3,43052,2,1672319399),(125224,3,43053,2,1672319399),(125225,3,43054,2,1672319399),(125226,3,43055,2,1672319399),(125227,3,43056,2,1672319399),(125228,3,43057,2,1672319399),(125229,3,43058,2,1672319399),(125230,3,43059,2,1672319399),(125231,3,43060,2,1672319399),(125232,3,43061,2,1672319399),(125233,3,43062,2,1672319399),(125234,3,43063,2,1672319399),(125235,3,43064,2,1672319399),(125236,3,43065,2,1672319399),(125237,3,43066,2,1672319399),(125238,3,43067,2,1672319399),(125239,3,43068,2,1672319399),(125240,3,43069,2,1672319399),(125241,3,43070,2,1672319399),(125242,3,43071,2,1672319399),(125243,3,43072,2,1672319399),(125244,3,43073,2,1672319399),(125245,3,43074,2,1672319399),(125246,3,43075,2,1672319399),(125247,3,43076,2,1672319399),(125248,3,43137,2,1672319399),(125249,3,43138,2,1672319399),(125250,3,43139,2,1672319399),(125251,3,43140,2,1672319399),(125252,3,43141,2,1672319399),(125253,3,43142,2,1672319399),(125254,3,43143,2,1672319399),(125255,3,43144,2,1672319399),(125256,3,43145,2,1672319399),(125257,3,43146,2,1672319399),(125258,3,43147,2,1672319399),(125259,3,43148,2,1672319399),(125260,3,43149,2,1672319399),(125261,3,43150,2,1672319399),(125262,3,43151,2,1672319399),(125263,3,43152,2,1672319399),(125264,3,43153,2,1672319399),(125265,3,43154,2,1672319399),(125266,3,43155,2,1672319399),(125267,3,43168,2,1672319399),(125268,3,43169,2,1672319399),(125269,3,43170,2,1672319399),(125270,3,43171,2,1672319399),(125271,3,43172,2,1672319399),(125272,3,44319,2,1672319399),(125273,3,44320,2,1672319399),(125274,3,44321,2,1672319399),(125275,3,44322,2,1672319399),(125276,3,44323,2,1672319399),(125277,3,44324,2,1672319399),(125278,3,44325,2,1672319399),(125279,3,44326,2,1672319399),(125280,3,44327,2,1672319399),(125281,3,44328,2,1672319399),(125282,3,44329,2,1672319399),(125283,3,44330,2,1672319399),(125284,3,44331,2,1672319399),(125285,3,44332,2,1672319399),(125286,3,44333,2,1672319399),(125287,3,44334,2,1672319399),(125288,3,44403,2,1672319399),(125289,3,44404,2,1672319399),(125290,3,44405,2,1672319399),(125291,3,44406,2,1672319399),(125292,3,44407,2,1672319399),(125293,3,44408,2,1672319399),(125294,3,44409,2,1672319399),(125295,3,44410,2,1672319399),(125296,3,44411,2,1672319399),(125297,3,44412,2,1672319399),(125298,3,44413,2,1672319399),(125299,3,44414,2,1672319399),(125300,3,44415,2,1672319399),(125301,3,44416,2,1672319399),(125302,3,44417,2,1672319399),(125303,3,44418,2,1672319399),(125304,3,44419,2,1672319399),(125305,3,44420,2,1672319399),(125306,3,44421,2,1672319399),(125307,3,44431,2,1672319399),(125308,3,44432,2,1672319399),(125309,3,44434,2,1672319399),(125310,3,44435,2,1672319399),(125311,3,22908,3,1672319399),(125312,3,22909,3,1672319399),(125313,3,22910,3,1672319399),(125314,3,22911,3,1672319399),(125315,3,22912,3,1672319399),(125316,3,22985,3,1672319399),(125317,3,22986,3,1672319399),(125318,3,22988,3,1672319399),(125319,3,22989,3,1672319399),(125320,3,22990,3,1672319399),(125321,3,22991,3,1672319399),(125322,3,22992,3,1672319399),(125323,3,23073,3,1672319399),(125324,3,23074,3,1672319399),(125325,3,27032,3,1672319399),(125326,3,27478,3,1672319399),(125327,3,27479,3,1672319399),(125328,3,27480,3,1672319399),(125329,3,27481,3,1672319399),(125330,3,27482,3,1672319399),(125331,3,27483,3,1672319399),(125332,3,27484,3,1672319399),(125333,3,27485,3,1672319399),(125334,3,27517,3,1672319399),(125335,3,27518,3,1672319399),(125336,3,27519,3,1672319399),(125337,3,27553,3,1672319399),(125338,3,27554,3,1672319399),(125339,3,27555,3,1672319399),(125340,3,27591,3,1672319399),(125341,3,27593,3,1672319399),(125342,3,27594,3,1672319399),(125343,3,27595,3,1672319399),(125344,3,27671,3,1672319399),(125345,3,27672,3,1672319399),(125346,3,27673,3,1672319399),(125347,3,27674,3,1672319399),(125348,3,27675,3,1672319399),(125349,3,27676,3,1672319399),(125350,3,27677,3,1672319399),(125351,3,27678,3,1672319399),(125352,3,27679,3,1672319399),(125353,3,28354,3,1672319399),(125354,3,28355,3,1672319399),(125355,3,28356,3,1672319399),(125356,3,28357,3,1672319399),(125357,3,28358,3,1672319399),(125358,3,28359,3,1672319399),(125359,3,28360,3,1672319399),(125360,3,28361,3,1672319399),(125361,3,28362,3,1672319399),(125362,3,28363,3,1672319399),(125363,3,28364,3,1672319399),(125364,3,28365,3,1672319399),(125365,3,28366,3,1672319399),(125366,3,28367,3,1672319399),(125367,3,28368,3,1672319399),(125368,3,28369,3,1672319399),(125369,3,28370,3,1672319399),(125370,3,28371,3,1672319399),(125371,3,28372,3,1672319399),(125372,3,28373,3,1672319399),(125373,3,28374,3,1672319399),(125374,3,28375,3,1672319399),(125375,3,28376,3,1672319399),(125376,3,30066,3,1672319399),(125377,3,30067,3,1672319399),(125378,3,30068,3,1672319399),(125379,3,30069,3,1672319399),(125380,3,30070,3,1672319399),(125381,3,30071,3,1672319399),(125382,3,30072,3,1672319399),(125383,3,30073,3,1672319399),(125384,3,30074,3,1672319399),(125385,3,30075,3,1672319399),(125386,3,30076,3,1672319399),(125387,3,30077,3,1672319399),(125388,3,30078,3,1672319399),(125389,3,30079,3,1672319399),(125390,3,30080,3,1672319399),(125391,3,30081,3,1672319399),(125392,3,30082,3,1672319399),(125393,3,30083,3,1672319399),(125394,3,30084,3,1672319399),(125395,3,30085,3,1672319399),(125396,3,30105,3,1672319399),(125397,3,30107,3,1672319399),(125398,3,30108,3,1672319399),(125399,3,30110,3,1672319399),(125400,3,30111,3,1672319399),(125401,3,30112,3,1672319399),(125402,3,30157,3,1672319399),(125403,3,30158,3,1672319399),(125404,3,30159,3,1672319399),(125405,3,30160,3,1672319399),(125406,3,30161,3,1672319399),(125407,3,30162,3,1672319399),(125408,3,30196,3,1672319399),(125409,3,30197,3,1672319399),(125410,3,30198,3,1672319399),(125411,3,30199,3,1672319399),(125412,3,30200,3,1672319399),(125413,3,30201,3,1672319399),(125414,3,30202,3,1672319399),(125415,3,30203,3,1672319399),(125416,3,30204,3,1672319399),(125417,3,30205,3,1672319399),(125418,3,30206,3,1672319399),(125419,3,30207,3,1672319399),(125420,3,30208,3,1672319399),(125421,3,30209,3,1672319399),(125422,3,30210,3,1672319399),(125423,3,30211,3,1672319399),(125424,3,30212,3,1672319399),(125425,3,30213,3,1672319399),(125426,3,30214,3,1672319399),(125427,3,30215,3,1672319399),(125428,3,30216,3,1672319399),(125429,3,30217,3,1672319399),(125430,3,30218,3,1672319399),(125431,3,30219,3,1672319399),(125432,3,30220,3,1672319399),(125433,3,30221,3,1672319399),(125434,3,30222,3,1672319399),(125435,3,30223,3,1672319399),(125436,3,30224,3,1672319399),(125437,3,30225,3,1672319399),(125438,3,30226,3,1672319399),(125439,3,30227,3,1672319399),(125440,3,30228,3,1672319399),(125441,3,30229,3,1672319399),(125442,3,30239,3,1672319399),(125443,3,30240,3,1672319399),(125444,3,30241,3,1672319399),(125445,3,30242,3,1672319399),(125446,3,30243,3,1672319399),(125447,3,30244,3,1672319399),(125448,3,30245,3,1672319399),(125449,3,30246,3,1672319399),(125450,3,30247,3,1672319399),(125451,3,30248,3,1672319399),(125452,3,30249,3,1672319399),(125453,3,30250,3,1672319399),(125454,3,30251,3,1672319399),(125455,3,30252,3,1672319399),(125456,3,30253,3,1672319399),(125457,3,30254,3,1672319399),(125458,3,30255,3,1672319399),(125459,3,30256,3,1672319399),(125460,3,30257,3,1672319399),(125461,3,30258,3,1672319399),(125462,3,30259,3,1672319399),(125463,3,30260,3,1672319399),(125464,3,30261,3,1672319399),(125465,3,30262,3,1672319399),(125466,3,30263,3,1672319399),(125467,3,30264,3,1672319399),(125468,3,30265,3,1672319399),(125469,3,30266,3,1672319399),(125470,3,30267,3,1672319399),(125471,3,30268,3,1672319399),(125472,3,30269,3,1672319399),(125473,3,30270,3,1672319399),(125474,3,30271,3,1672319399),(125475,3,30272,3,1672319399),(125476,3,30573,3,1672319399),(125477,3,30574,3,1672319399),(125478,3,30575,3,1672319399),(125479,3,30576,3,1672319399),(125480,3,30577,3,1672319399),(125481,3,30578,3,1672319399),(125482,3,30579,3,1672319399),(125483,3,30580,3,1672319399),(125484,3,30581,3,1672319399),(125485,3,30582,3,1672319399),(125486,3,30583,3,1672319399),(125487,3,30584,3,1672319399),(125488,3,30585,3,1672319399),(125489,3,30586,3,1672319399),(125490,3,30587,3,1672319399),(125491,3,30588,3,1672319399),(125492,3,30589,3,1672319399),(125493,3,30590,3,1672319399),(125494,3,30591,3,1672319399),(125495,3,30592,3,1672319399),(125496,3,30593,3,1672319399),(125497,3,30594,3,1672319399),(125498,3,30595,3,1672319399),(125499,3,30596,3,1672319399),(125500,3,30597,3,1672319399),(125501,3,30598,3,1672319399),(125502,3,30599,3,1672319399),(125503,3,30600,3,1672319399),(125504,3,30601,3,1672319399),(125505,3,30602,3,1672319399),(125506,3,30603,3,1672319399),(125507,3,30604,3,1672319399),(125508,3,30605,3,1672319399),(125509,3,30606,3,1672319399),(125510,3,30607,3,1672319399),(125511,3,30608,3,1672319399),(125512,3,30609,3,1672319399),(125513,3,30610,3,1672319399),(125514,3,30714,3,1672319399),(125515,3,30715,3,1672319399),(125516,3,30716,3,1672319399),(125517,3,30717,3,1672319399),(125518,3,30718,3,1672319399),(125519,3,30719,3,1672319399),(125520,3,30720,3,1672319399),(125521,3,30721,3,1672319399),(125522,3,30722,3,1672319399),(125523,3,30723,3,1672319399),(125524,3,30724,3,1672319399),(125525,3,30725,3,1672319399),(125526,3,30726,3,1672319399),(125527,3,30727,3,1672319399),(125528,3,30728,3,1672319399),(125529,3,30729,3,1672319399),(125530,3,30730,3,1672319399),(125531,3,30731,3,1672319399),(125532,3,30732,3,1672319399),(125533,3,30733,3,1672319399),(125534,3,30734,3,1672319399),(125535,3,30735,3,1672319399),(125536,3,30736,3,1672319399),(125537,3,30737,3,1672319399),(125538,3,30738,3,1672319399),(125539,3,30739,3,1672319399),(125540,3,30740,3,1672319399),(125541,3,30741,3,1672319399),(125542,3,30742,3,1672319399),(125543,3,30743,3,1672319399),(125544,3,30744,3,1672319399),(125545,3,30745,3,1672319399),(125546,3,30746,3,1672319399),(125547,3,30747,3,1672319399),(125548,3,30748,3,1672319399),(125549,3,30749,3,1672319399),(125550,3,30750,3,1672319399),(125551,3,30751,3,1672319399),(125552,3,30752,3,1672319399),(125553,3,30753,3,1672319399),(125554,3,30754,3,1672319399),(125555,3,30755,3,1672319399),(125556,3,30756,3,1672319399),(125557,3,30757,3,1672319399),(125558,3,30758,3,1672319399),(125559,3,30877,3,1672319399),(125560,3,30878,3,1672319399),(125561,3,30879,3,1672319399),(125562,3,30880,3,1672319399),(125563,3,30881,3,1672319399),(125564,3,30882,3,1672319399),(125565,3,30883,3,1672319399),(125566,3,30884,3,1672319399),(125567,3,30885,3,1672319399),(125568,3,30886,3,1672319399),(125569,3,30887,3,1672319399),(125570,3,30888,3,1672319399),(125571,3,30889,3,1672319399),(125572,3,30890,3,1672319399),(125573,3,30891,3,1672319399),(125574,3,30892,3,1672319399),(125575,3,30893,3,1672319399),(125576,3,30894,3,1672319399),(125577,3,30895,3,1672319399),(125578,3,30963,3,1672319399),(125579,3,30964,3,1672319399),(125580,3,30965,3,1672319399),(125581,3,30966,3,1672319399),(125582,3,30967,3,1672319399),(125583,3,32621,3,1672319399),(125584,3,32622,3,1672319399),(125585,3,32623,3,1672319399),(125586,3,32624,3,1672319399),(125587,3,32625,3,1672319399),(125588,3,32626,3,1672319399),(125589,3,32627,3,1672319399),(125590,3,32628,3,1672319399),(125591,3,32629,3,1672319399),(125592,3,32630,3,1672319399),(125593,3,32631,3,1672319399),(125594,3,32632,3,1672319399),(125595,3,32633,3,1672319399),(125596,3,32670,3,1672319399),(125597,3,32671,3,1672319399),(125598,3,32672,3,1672319399),(125599,3,32673,3,1672319399),(125600,3,32674,3,1672319399),(125601,3,32675,3,1672319399),(125602,3,32676,3,1672319399),(125603,3,32677,3,1672319399),(125604,3,32678,3,1672319399),(125605,3,32679,3,1672319399),(125606,3,32680,3,1672319399),(125607,3,32681,3,1672319399),(125608,3,32682,3,1672319399),(125609,3,32683,3,1672319399),(125610,3,32684,3,1672319399),(125611,3,32685,3,1672319399),(125612,3,32686,3,1672319399),(125613,3,32687,3,1672319399),(125614,3,32688,3,1672319399),(125615,3,32689,3,1672319399),(125616,3,32690,3,1672319399),(125617,3,32691,3,1672319399),(125618,3,32692,3,1672319399),(125619,3,32871,3,1672319399),(125620,3,32872,3,1672319399),(125621,3,32873,3,1672319399),(125622,3,32874,3,1672319399),(125623,3,32875,3,1672319399),(125624,3,32876,3,1672319399),(125625,3,32877,3,1672319399),(125626,3,32878,3,1672319399),(125627,3,32879,3,1672319399),(125628,3,32880,3,1672319399),(125629,3,32881,3,1672319399),(125630,3,32882,3,1672319399),(125631,3,32883,3,1672319399),(125632,3,32884,3,1672319399),(125633,3,32885,3,1672319399),(125634,3,32886,3,1672319399),(125635,3,32887,3,1672319399),(125636,3,32888,3,1672319399),(125637,3,32889,3,1672319399),(125638,3,33522,3,1672319399),(125639,3,33523,3,1672319399),(125640,3,33524,3,1672319399),(125641,3,33525,3,1672319399),(125642,3,33526,3,1672319399),(125643,3,33527,3,1672319399),(125644,3,33528,3,1672319399),(125645,3,33529,3,1672319399),(125646,3,33530,3,1672319399),(125647,3,33531,3,1672319399),(125648,3,33532,3,1672319399),(125649,3,33533,3,1672319399),(125650,3,33534,3,1672319399),(125651,3,33535,3,1672319399),(125652,3,33536,3,1672319399),(125653,3,33537,3,1672319399),(125654,3,33538,3,1672319399),(125655,3,33539,3,1672319399),(125656,3,33540,3,1672319399),(125657,3,33541,3,1672319399),(125658,3,35104,3,1672319399),(125659,3,35105,3,1672319399),(125660,3,35106,3,1672319399),(125661,3,35107,3,1672319399),(125662,3,35108,3,1672319399),(125663,3,35109,3,1672319399),(125664,3,35110,3,1672319399),(125665,3,35111,3,1672319399),(125666,3,35112,3,1672319399),(125667,3,35113,3,1672319399),(125668,3,35114,3,1672319399),(125669,3,35115,3,1672319399),(125670,3,35116,3,1672319399),(125671,3,35117,3,1672319399),(125672,3,35118,3,1672319399),(125673,3,35119,3,1672319399),(125674,3,35120,3,1672319399),(125675,3,35121,3,1672319399),(125676,3,35122,3,1672319399),(125677,3,35123,3,1672319399),(125678,3,35124,3,1672319399),(125679,3,35125,3,1672319399),(125680,3,35126,3,1672319399),(125681,3,35127,3,1672319399),(125682,3,35129,3,1672319399),(125683,3,35130,3,1672319399),(125684,3,35131,3,1672319399),(125685,3,35132,3,1672319399),(125686,3,35133,3,1672319399),(125687,3,35134,3,1672319399),(125688,3,35135,3,1672319399),(125689,3,35136,3,1672319399),(125690,3,35137,3,1672319399),(125691,3,35138,3,1672319399),(125692,3,35139,3,1672319399),(125693,3,35140,3,1672319399),(125694,3,35141,3,1672319399),(125695,3,35142,3,1672319399),(125696,3,35143,3,1672319399),(125697,3,35144,3,1672319399),(125698,3,35145,3,1672319399),(125699,3,35146,3,1672319399),(125700,3,35147,3,1672319399),(125701,3,35148,3,1672319399),(125702,3,35149,3,1672319399),(125703,3,35150,3,1672319399),(125704,3,35151,3,1672319399),(125705,3,35152,3,1672319399),(125706,3,35290,3,1672319399),(125707,3,35291,3,1672319399),(125708,3,35292,3,1672319399),(125709,3,35293,3,1672319399),(125710,3,35294,3,1672319399),(125711,3,35295,3,1672319399),(125712,3,35296,3,1672319399),(125713,3,35297,3,1672319399),(125714,3,35298,3,1672319399),(125715,3,35299,3,1672319399),(125716,3,35300,3,1672319399),(125717,3,35301,3,1672319399),(125718,3,35302,3,1672319399),(125719,3,35303,3,1672319399),(125720,3,35304,3,1672319399),(125721,3,35305,3,1672319399),(125722,3,35306,3,1672319399),(125723,3,35307,3,1672319399),(125724,3,35308,3,1672319399),(125725,3,35309,3,1672319399),(125726,3,35310,3,1672319399),(125727,3,35311,3,1672319399),(125728,3,35312,3,1672319399),(125729,3,35313,3,1672319399),(125730,3,35314,3,1672319399),(125731,3,35315,3,1672319399),(125732,3,35316,3,1672319399),(125733,3,35317,3,1672319399),(125734,3,35318,3,1672319399),(125735,3,35319,3,1672319399),(125736,3,35320,3,1672319399),(125737,3,35321,3,1672319399),(125738,3,35322,3,1672319399),(125739,3,35323,3,1672319399),(125740,3,35324,3,1672319399),(125741,3,35325,3,1672319399),(125742,3,35326,3,1672319399),(125743,3,35327,3,1672319399),(125744,3,35328,3,1672319399),(125745,3,35329,3,1672319399),(125746,3,35330,3,1672319399),(125747,3,35331,3,1672319399),(125748,3,35332,3,1672319399),(125749,3,35333,3,1672319399),(125750,3,35334,3,1672319399),(125751,3,35335,3,1672319399),(125752,3,35336,3,1672319399),(125753,3,35337,3,1672319399),(125754,3,35338,3,1672319399),(125755,3,35339,3,1672319399),(125756,3,35340,3,1672319399),(125757,3,35341,3,1672319399),(125758,3,35342,3,1672319399),(125759,3,35343,3,1672319399),(125760,3,35344,3,1672319399),(125761,3,35345,3,1672319399),(125762,3,35346,3,1672319399),(125763,3,35347,3,1672319399),(125764,3,35348,3,1672319399),(125765,3,35349,3,1672319399),(125766,3,35350,3,1672319399),(125767,3,35351,3,1672319399),(125768,3,35352,3,1672319399),(125769,3,35353,3,1672319399),(125770,3,35354,3,1672319399),(125771,3,35355,3,1672319399),(125772,3,35356,3,1672319399),(125773,3,35357,3,1672319399),(125774,3,35439,3,1672319399),(125775,3,35440,3,1672319399),(125776,3,35441,3,1672319399),(125777,3,35442,3,1672319399),(125778,3,35443,3,1672319399),(125779,3,35444,3,1672319399),(125780,3,35445,3,1672319399),(125781,3,35446,3,1672319399),(125782,3,35447,3,1672319399),(125783,3,35448,3,1672319399),(125784,3,35449,3,1672319399),(125785,3,35450,3,1672319399),(125786,3,35451,3,1672319399),(125787,3,35452,3,1672319399),(125788,3,35453,3,1672319399),(125789,3,35454,3,1672319399),(125790,3,35455,3,1672319399),(125791,3,35456,3,1672319399),(125792,3,35457,3,1672319399),(125793,3,35458,3,1672319399),(125794,3,35459,3,1672319399),(125795,3,35460,3,1672319399),(125796,3,35461,3,1672319399),(125797,3,35462,3,1672319399),(125798,3,35463,3,1672319399),(125799,3,35464,3,1672319399),(125800,3,35465,3,1672319399),(125801,3,35466,3,1672319399),(125802,3,35467,3,1672319399),(125803,3,35468,3,1672319399),(125804,3,35469,3,1672319399),(125805,3,35470,3,1672319399),(125806,3,35471,3,1672319399),(125807,3,35472,3,1672319399),(125808,3,35473,3,1672319399),(125809,3,35474,3,1672319399),(125810,3,35475,3,1672319399),(125811,3,35476,3,1672319399),(125812,3,35477,3,1672319399),(125813,3,35478,3,1672319399),(125814,3,35479,3,1672319399),(125815,3,35480,3,1672319399),(125816,3,35481,3,1672319399),(125817,3,35482,3,1672319399),(125818,3,35483,3,1672319399),(125819,3,35484,3,1672319399),(125820,3,35485,3,1672319399),(125821,3,35486,3,1672319399),(125822,3,35487,3,1672319399),(125823,3,35488,3,1672319399),(125824,3,35489,3,1672319399),(125825,3,35490,3,1672319399),(125826,3,35491,3,1672319399),(125827,3,35492,3,1672319399),(125828,3,35493,3,1672319399),(125829,3,35494,3,1672319399),(125830,3,35495,3,1672319399),(125831,3,35496,3,1672319399),(125832,3,35497,3,1672319399),(125833,3,35498,3,1672319399),(125834,3,35499,3,1672319399),(125835,3,35500,3,1672319399),(125836,3,35501,3,1672319399),(125837,3,35502,3,1672319399),(125838,3,35503,3,1672319399),(125839,3,35504,3,1672319399),(125840,3,35505,3,1672319399),(125841,3,35506,3,1672319399),(125842,3,35507,3,1672319399),(125843,3,35508,3,1672319399),(125844,3,35509,3,1672319399),(125845,3,35510,3,1672319399),(125846,3,35511,3,1672319399),(125847,3,35512,3,1672319399),(125848,3,35513,3,1672319399),(125849,3,35514,3,1672319399),(125850,3,35515,3,1672319399),(125851,3,35516,3,1672319399),(125852,3,35517,3,1672319399),(125853,3,35518,3,1672319399),(125854,3,35519,3,1672319399),(125855,3,35520,3,1672319399),(125856,3,35521,3,1672319399),(125857,3,35522,3,1672319399),(125858,3,35523,3,1672319399),(125859,3,35524,3,1672319399),(125860,3,35525,3,1672319399),(125861,3,35526,3,1672319399),(125862,3,35527,3,1672319399),(125863,3,35528,3,1672319399),(125864,3,35529,3,1672319399),(125865,3,35530,3,1672319399),(125866,3,35531,3,1672319399),(125867,3,36178,3,1672319399),(125868,3,36179,3,1672319399),(125869,3,36180,3,1672319399),(125870,3,36181,3,1672319399),(125871,3,36182,3,1672319399),(125872,3,36183,3,1672319399),(125873,3,36184,3,1672319399),(125874,3,36185,3,1672319399),(125875,3,36186,3,1672319399),(125876,3,36187,3,1672319399),(125877,3,36188,3,1672319399),(125878,3,36189,3,1672319399),(125879,3,36190,3,1672319399),(125880,3,36191,3,1672319399),(125881,3,36192,3,1672319399),(125882,3,36193,3,1672319399),(125883,3,36194,3,1672319399),(125884,3,36195,3,1672319399),(125885,3,36196,3,1672319399),(125886,3,36197,3,1672319399),(125887,3,36198,3,1672319399),(125888,3,36199,3,1672319399),(125889,3,36200,3,1672319399),(125890,3,36201,3,1672319399),(125891,3,36202,3,1672319399),(125892,3,36203,3,1672319399),(125893,3,36204,3,1672319399),(125894,3,36205,3,1672319399),(125895,3,36206,3,1672319399),(125896,3,36207,3,1672319399),(125897,3,36208,3,1672319399),(125898,3,36209,3,1672319399),(125899,3,36210,3,1672319399),(125900,3,36211,3,1672319399),(125901,3,36212,3,1672319399),(125902,3,36227,3,1672319399),(125903,3,36228,3,1672319399),(125904,3,36229,3,1672319399),(125905,3,36230,3,1672319399),(125906,3,36231,3,1672319399),(125907,3,36232,3,1672319399),(125908,3,36233,3,1672319399),(125909,3,36234,3,1672319399),(125910,3,36235,3,1672319399),(125911,3,36236,3,1672319399),(125912,3,36237,3,1672319399),(125913,3,36238,3,1672319399),(125914,3,36239,3,1672319399),(125915,3,36240,3,1672319399),(125916,3,36241,3,1672319399),(125917,3,36242,3,1672319399),(125918,3,36243,3,1672319399),(125919,3,36244,3,1672319399),(125920,3,36245,3,1672319399),(125921,3,36246,3,1672319399),(125922,3,36247,3,1672319399),(125923,3,36248,3,1672319399),(125924,3,36249,3,1672319399),(125925,3,36250,3,1672319399),(125926,3,36251,3,1672319399),(125927,3,36252,3,1672319399),(125928,3,36253,3,1672319399),(125929,3,36254,3,1672319399),(125930,3,36275,3,1672319399),(125931,3,36276,3,1672319399),(125932,3,36277,3,1672319399),(125933,3,36278,3,1672319399),(125934,3,36279,3,1672319399),(125935,3,36280,3,1672319399),(125936,3,36281,3,1672319399),(125937,3,36282,3,1672319399),(125938,3,36283,3,1672319399),(125939,3,36284,3,1672319399),(125940,3,36285,3,1672319399),(125941,3,36286,3,1672319399),(125942,3,36287,3,1672319399),(125943,3,36288,3,1672319399),(125944,3,36289,3,1672319399),(125945,3,36290,3,1672319399),(125946,3,36291,3,1672319399),(125947,3,36292,3,1672319399),(125948,3,36293,3,1672319399),(125949,3,36294,3,1672319399),(125950,3,36309,3,1672319399),(125951,3,36310,3,1672319399),(125952,3,36311,3,1672319399),(125953,3,36312,3,1672319399),(125954,3,36313,3,1672319399),(125955,3,36314,3,1672319399),(125956,3,36315,3,1672319399),(125957,3,36316,3,1672319399),(125958,3,36317,3,1672319399),(125959,3,36318,3,1672319399),(125960,3,36319,3,1672319399),(125961,3,36320,3,1672319399),(125962,3,36321,3,1672319399),(125963,3,36322,3,1672319399),(125964,3,36323,3,1672319399),(125965,3,36324,3,1672319399),(125966,3,36325,3,1672319399),(125967,3,36326,3,1672319399),(125968,3,36327,3,1672319399),(125969,3,36328,3,1672319399),(125970,3,36329,3,1672319399),(125971,3,36330,3,1672319399),(125972,3,36331,3,1672319399),(125973,3,36332,3,1672319399),(125974,3,36333,3,1672319399),(125975,3,36334,3,1672319399),(125976,3,36335,3,1672319399),(125977,3,36336,3,1672319399),(125978,3,36357,3,1672319399),(125979,3,36358,3,1672319399),(125980,3,36359,3,1672319399),(125981,3,36360,3,1672319399),(125982,3,36361,3,1672319399),(125983,3,36362,3,1672319399),(125984,3,36363,3,1672319399),(125985,3,36364,3,1672319399),(125986,3,36365,3,1672319399),(125987,3,36366,3,1672319399),(125988,3,36367,3,1672319399),(125989,3,36368,3,1672319399),(125990,3,36369,3,1672319399),(125991,3,36370,3,1672319399),(125992,3,36371,3,1672319399),(125993,3,36372,3,1672319399),(125994,3,36373,3,1672319399),(125995,3,36374,3,1672319399),(125996,3,36375,3,1672319399),(125997,3,36376,3,1672319399),(125998,3,36391,3,1672319399),(125999,3,36392,3,1672319399),(126000,3,36393,3,1672319399),(126001,3,36394,3,1672319399),(126002,3,36395,3,1672319399),(126003,3,36396,3,1672319399),(126004,3,36397,3,1672319399),(126005,3,36398,3,1672319399),(126006,3,36399,3,1672319399),(126007,3,36400,3,1672319399),(126008,3,36401,3,1672319399),(126009,3,36402,3,1672319399),(126010,3,36403,3,1672319399),(126011,3,36404,3,1672319399),(126012,3,36405,3,1672319399),(126013,3,36406,3,1672319399),(126014,3,36407,3,1672319399),(126015,3,36408,3,1672319399),(126016,3,36409,3,1672319399),(126017,3,36410,3,1672319399),(126018,3,36411,3,1672319399),(126019,3,36412,3,1672319399),(126020,3,36413,3,1672319399),(126021,3,36414,3,1672319399),(126022,3,36415,3,1672319399),(126023,3,36416,3,1672319399),(126024,3,36417,3,1672319399),(126025,3,36418,3,1672319399),(126026,3,36439,3,1672319399),(126027,3,36440,3,1672319399),(126028,3,36441,3,1672319399),(126029,3,36442,3,1672319399),(126030,3,36443,3,1672319399),(126031,3,36444,3,1672319399),(126032,3,36445,3,1672319399),(126033,3,36446,3,1672319399),(126034,3,36447,3,1672319399),(126035,3,36448,3,1672319399),(126036,3,36449,3,1672319399),(126037,3,36450,3,1672319399),(126038,3,36451,3,1672319399),(126039,3,36452,3,1672319399),(126040,3,36453,3,1672319399),(126041,3,36454,3,1672319399),(126042,3,36455,3,1672319399),(126043,3,36456,3,1672319399),(126044,3,36457,3,1672319399),(126045,3,36458,3,1672319399),(126046,3,36473,3,1672319399),(126047,3,36474,3,1672319399),(126048,3,36475,3,1672319399),(126049,3,36476,3,1672319399),(126050,3,36477,3,1672319399),(126051,3,36478,3,1672319399),(126052,3,36479,3,1672319399),(126053,3,36480,3,1672319399),(126054,3,36481,3,1672319399),(126055,3,36482,3,1672319399),(126056,3,36483,3,1672319399),(126057,3,36484,3,1672319399),(126058,3,36485,3,1672319399),(126059,3,36486,3,1672319399),(126060,3,36487,3,1672319399),(126061,3,36488,3,1672319399),(126062,3,36489,3,1672319399),(126063,3,36490,3,1672319399),(126064,3,36491,3,1672319399),(126065,3,36492,3,1672319399),(126066,3,36493,3,1672319399),(126067,3,36494,3,1672319399),(126068,3,36495,3,1672319399),(126069,3,36496,3,1672319399),(126070,3,36497,3,1672319399),(126071,3,36498,3,1672319399),(126072,3,36499,3,1672319399),(126073,3,36500,3,1672319399),(126074,3,36521,3,1672319399),(126075,3,36522,3,1672319399),(126076,3,36523,3,1672319399),(126077,3,36524,3,1672319399),(126078,3,36525,3,1672319399),(126079,3,36526,3,1672319399),(126080,3,36527,3,1672319399),(126081,3,36528,3,1672319399),(126082,3,36529,3,1672319399),(126083,3,36530,3,1672319399),(126084,3,36531,3,1672319399),(126085,3,36532,3,1672319399),(126086,3,36533,3,1672319399),(126087,3,36534,3,1672319399),(126088,3,36535,3,1672319399),(126089,3,36536,3,1672319399),(126090,3,36537,3,1672319399),(126091,3,36538,3,1672319399),(126092,3,36539,3,1672319399),(126093,3,36540,3,1672319399),(126094,3,36824,3,1672319399),(126095,3,36825,3,1672319399),(126096,3,39803,3,1672319399),(126097,3,40460,3,1672319399),(126098,3,40461,3,1672319399),(126099,3,40462,3,1672319399),(126100,3,40463,3,1672319399),(126101,3,40464,3,1672319399),(126102,3,40465,3,1672319399),(126103,3,40663,3,1672319399),(126104,3,40664,3,1672319399),(126105,3,40665,3,1672319399),(126106,3,40666,3,1672319399),(126107,3,40667,3,1672319399),(126108,3,40668,3,1672319399),(126109,3,40669,3,1672319399),(126110,3,40670,3,1672319399),(126111,3,40690,3,1672319399),(126112,3,40691,3,1672319399),(126113,3,40692,3,1672319399),(126114,3,40693,3,1672319399),(126115,3,40694,3,1672319399),(126116,3,40695,3,1672319399),(126117,3,40696,3,1672319399),(126118,3,40697,3,1672319399),(126119,3,40698,3,1672319399),(126120,3,40699,3,1672319399),(126121,3,40700,3,1672319399),(126122,3,40701,3,1672319399),(126123,3,40702,3,1672319399),(126124,3,40703,3,1672319399),(126125,3,40704,3,1672319399),(126126,3,40705,3,1672319399),(126127,3,40706,3,1672319399),(126128,3,40707,3,1672319399),(126129,3,40721,3,1672319399),(126130,3,40722,3,1672319399),(126131,3,40723,3,1672319399),(126132,3,40724,3,1672319399),(126133,3,40725,3,1672319399),(126134,3,40726,3,1672319399),(126135,3,40727,3,1672319399),(126136,3,40728,3,1672319399),(126137,3,40729,3,1672319399),(126138,3,40730,3,1672319399),(126139,3,40743,3,1672319399),(126140,3,40744,3,1672319399),(126141,3,40745,3,1672319399),(126142,3,40746,3,1672319399),(126143,3,40747,3,1672319399),(126144,3,40748,3,1672319399),(126145,3,40749,3,1672319399),(126146,3,40750,3,1672319399),(126147,3,40751,3,1672319399),(126148,3,40765,3,1672319399),(126149,3,40766,3,1672319399),(126150,3,40767,3,1672319399),(126151,3,40768,3,1672319399),(126152,3,40769,3,1672319399),(126153,3,40770,3,1672319399),(126154,3,40771,3,1672319399),(126155,3,40772,3,1672319399),(126156,3,40773,3,1672319399),(126157,3,40774,3,1672319399),(126158,3,40788,3,1672319399),(126159,3,40789,3,1672319399),(126160,3,40790,3,1672319399),(126161,3,40791,3,1672319399),(126162,3,40792,3,1672319399),(126163,3,40793,3,1672319399),(126164,3,40794,3,1672319399),(126165,3,40795,3,1672319399),(126166,3,40796,3,1672319399),(126167,3,40797,3,1672319399),(126168,3,40834,3,1672319399),(126169,3,40835,3,1672319399),(126170,3,40836,3,1672319399),(126171,3,40837,3,1672319399),(126172,3,40838,3,1672319399),(126173,3,40839,3,1672319399),(126174,3,40840,3,1672319399),(126175,3,40841,3,1672319399),(126176,3,40842,3,1672319399),(126177,3,40843,3,1672319399),(126178,3,42686,3,1672319399),(126179,3,42687,3,1672319399),(126180,3,42688,3,1672319399),(126181,3,42689,3,1672319399),(126182,3,42690,3,1672319399),(126183,3,42987,3,1672319399),(126184,3,42988,3,1672319399),(126185,3,42989,3,1672319399),(126186,3,42990,3,1672319399),(126187,3,42991,3,1672319399),(126188,3,42992,3,1672319399),(126189,3,42993,3,1672319399),(126190,3,42994,3,1672319399),(126191,3,42995,3,1672319399),(126192,3,42996,3,1672319399),(126193,3,42997,3,1672319399),(126194,3,42998,3,1672319399),(126195,3,42999,3,1672319399),(126196,3,43000,3,1672319399),(126197,3,43001,3,1672319399),(126198,3,43002,3,1672319399),(126199,3,43003,3,1672319399),(126200,3,43004,3,1672319399),(126201,3,43005,3,1672319399),(126202,3,43006,3,1672319399),(126203,3,43007,3,1672319399),(126204,3,43008,3,1672319399),(126205,3,43009,3,1672319399),(126206,3,43010,3,1672319399),(126207,3,43011,3,1672319399),(126208,3,43012,3,1672319399),(126209,3,43013,3,1672319399),(126210,3,43014,3,1672319399),(126211,3,43015,3,1672319399),(126212,3,43016,3,1672319399),(126213,3,43017,3,1672319399),(126214,3,43050,3,1672319399),(126215,3,43051,3,1672319399),(126216,3,43052,3,1672319399),(126217,3,43053,3,1672319399),(126218,3,43054,3,1672319399),(126219,3,43055,3,1672319399),(126220,3,43056,3,1672319399),(126221,3,43057,3,1672319399),(126222,3,43058,3,1672319399),(126223,3,43059,3,1672319399),(126224,3,43060,3,1672319399),(126225,3,43061,3,1672319399),(126226,3,43062,3,1672319399),(126227,3,43063,3,1672319399),(126228,3,43064,3,1672319399),(126229,3,43065,3,1672319399),(126230,3,43066,3,1672319399),(126231,3,43067,3,1672319399),(126232,3,43068,3,1672319399),(126233,3,43069,3,1672319399),(126234,3,43070,3,1672319399),(126235,3,43071,3,1672319399),(126236,3,43072,3,1672319399),(126237,3,43073,3,1672319399),(126238,3,43074,3,1672319399),(126239,3,43075,3,1672319399),(126240,3,43076,3,1672319399),(126241,3,43137,3,1672319399),(126242,3,43138,3,1672319399),(126243,3,43139,3,1672319399),(126244,3,43140,3,1672319399),(126245,3,43141,3,1672319399),(126246,3,43142,3,1672319399),(126247,3,43143,3,1672319399),(126248,3,43144,3,1672319399),(126249,3,43145,3,1672319399),(126250,3,43146,3,1672319399),(126251,3,43147,3,1672319399),(126252,3,43148,3,1672319399),(126253,3,43149,3,1672319399),(126254,3,43150,3,1672319399),(126255,3,43151,3,1672319399),(126256,3,43152,3,1672319399),(126257,3,43153,3,1672319399),(126258,3,43154,3,1672319399),(126259,3,43155,3,1672319399),(126260,3,43168,3,1672319399),(126261,3,43169,3,1672319399),(126262,3,43170,3,1672319399),(126263,3,43171,3,1672319399),(126264,3,43172,3,1672319399),(126265,3,44319,3,1672319399),(126266,3,44320,3,1672319399),(126267,3,44321,3,1672319399),(126268,3,44322,3,1672319399),(126269,3,44323,3,1672319399),(126270,3,44324,3,1672319399),(126271,3,44325,3,1672319399),(126272,3,44326,3,1672319399),(126273,3,44327,3,1672319399),(126274,3,44328,3,1672319399),(126275,3,44329,3,1672319399),(126276,3,44330,3,1672319399),(126277,3,44331,3,1672319399),(126278,3,44332,3,1672319399),(126279,3,44333,3,1672319399),(126280,3,44334,3,1672319399),(126281,3,44403,3,1672319399),(126282,3,44404,3,1672319399),(126283,3,44405,3,1672319399),(126284,3,44406,3,1672319399),(126285,3,44407,3,1672319399),(126286,3,44408,3,1672319399),(126287,3,44409,3,1672319399),(126288,3,44410,3,1672319399),(126289,3,44411,3,1672319399),(126290,3,44412,3,1672319399),(126291,3,44413,3,1672319399),(126292,3,44414,3,1672319399),(126293,3,44415,3,1672319399),(126294,3,44416,3,1672319399),(126295,3,44417,3,1672319399),(126296,3,44418,3,1672319399),(126297,3,44419,3,1672319399),(126298,3,44420,3,1672319399),(126299,3,44421,3,1672319399),(126300,3,44431,3,1672319399),(126301,3,44432,3,1672319399),(126302,3,44434,3,1672319399),(126303,3,44435,3,1672319399),(126304,1,10523,2,1672319399),(126305,1,10549,2,1672319399),(126306,1,10550,2,1672319399),(126307,1,10523,3,1672319399),(126308,1,10549,3,1672319399),(126309,1,10550,3,1672319399),(126310,3,22907,2,1672319399),(126311,3,22984,2,1672319399),(126312,3,22987,2,1672319399),(126313,3,23540,2,1672319399),(126314,3,27031,2,1672319399),(126315,3,27473,2,1672319399),(126316,3,27474,2,1672319399),(126317,3,27475,2,1672319399),(126318,3,27476,2,1672319399),(126319,3,27512,2,1672319399),(126320,3,27513,2,1672319399),(126321,3,27514,2,1672319399),(126322,3,27515,2,1672319399),(126323,3,27548,2,1672319399),(126324,3,27549,2,1672319399),(126325,3,27550,2,1672319399),(126326,3,27551,2,1672319399),(126327,3,27587,2,1672319399),(126328,3,27588,2,1672319399),(126329,3,27589,2,1672319399),(126330,3,27665,2,1672319399),(126331,3,27666,2,1672319399),(126332,3,27667,2,1672319399),(126333,3,27668,2,1672319399),(126334,3,27669,2,1672319399),(126335,3,28346,2,1672319399),(126336,3,28347,2,1672319399),(126337,3,28348,2,1672319399),(126338,3,28349,2,1672319399),(126339,3,28350,2,1672319399),(126340,3,28351,2,1672319399),(126341,3,28352,2,1672319399),(126342,3,28353,2,1672319399),(126343,3,30057,2,1672319399),(126344,3,30058,2,1672319399),(126345,3,30059,2,1672319399),(126346,3,30060,2,1672319399),(126347,3,30061,2,1672319399),(126348,3,30062,2,1672319399),(126349,3,30063,2,1672319399),(126350,3,30064,2,1672319399),(126351,3,30065,2,1672319399),(126352,3,30147,2,1672319399),(126353,3,30148,2,1672319399),(126354,3,30193,2,1672319399),(126355,3,30194,2,1672319399),(126356,3,30195,2,1672319399),(126357,3,30236,2,1672319399),(126358,3,30237,2,1672319399),(126359,3,30238,2,1672319399),(126360,3,30571,2,1672319399),(126361,3,30572,2,1672319399),(126362,3,30713,2,1672319399),(126363,3,30874,2,1672319399),(126364,3,30875,2,1672319399),(126365,3,30876,2,1672319399),(126366,3,30961,2,1672319399),(126367,3,30962,2,1672319399),(126368,3,32619,2,1672319399),(126369,3,32620,2,1672319399),(126370,3,32668,2,1672319399),(126371,3,32669,2,1672319399),(126372,3,32866,2,1672319399),(126373,3,32867,2,1672319399),(126374,3,32868,2,1672319399),(126375,3,32869,2,1672319399),(126376,3,32870,2,1672319399),(126377,3,33520,2,1672319399),(126378,3,33521,2,1672319399),(126379,3,35280,2,1672319399),(126380,3,35281,2,1672319399),(126381,3,35282,2,1672319399),(126382,3,35283,2,1672319399),(126383,3,35284,2,1672319399),(126384,3,35285,2,1672319399),(126385,3,35286,2,1672319399),(126386,3,35287,2,1672319399),(126387,3,35288,2,1672319399),(126388,3,35289,2,1672319399),(126389,3,35424,2,1672319399),(126390,3,35425,2,1672319399),(126391,3,35426,2,1672319399),(126392,3,35427,2,1672319399),(126393,3,35428,2,1672319399),(126394,3,35429,2,1672319399),(126395,3,35430,2,1672319399),(126396,3,35431,2,1672319399),(126397,3,35432,2,1672319399),(126398,3,35433,2,1672319399),(126399,3,35434,2,1672319399),(126400,3,35435,2,1672319399),(126401,3,35436,2,1672319399),(126402,3,35437,2,1672319399),(126403,3,35438,2,1672319399),(126404,3,36168,2,1672319399),(126405,3,36169,2,1672319399),(126406,3,36170,2,1672319399),(126407,3,36171,2,1672319399),(126408,3,36172,2,1672319399),(126409,3,36173,2,1672319399),(126410,3,36174,2,1672319399),(126411,3,36175,2,1672319399),(126412,3,36176,2,1672319399),(126413,3,36177,2,1672319399),(126414,3,36219,2,1672319399),(126415,3,36220,2,1672319399),(126416,3,36221,2,1672319399),(126417,3,36222,2,1672319399),(126418,3,36223,2,1672319399),(126419,3,36224,2,1672319399),(126420,3,36225,2,1672319399),(126421,3,36226,2,1672319399),(126422,3,36268,2,1672319399),(126423,3,36269,2,1672319399),(126424,3,36270,2,1672319399),(126425,3,36271,2,1672319399),(126426,3,36272,2,1672319399),(126427,3,36273,2,1672319399),(126428,3,36274,2,1672319399),(126429,3,36301,2,1672319399),(126430,3,36302,2,1672319399),(126431,3,36303,2,1672319399),(126432,3,36304,2,1672319399),(126433,3,36305,2,1672319399),(126434,3,36306,2,1672319399),(126435,3,36307,2,1672319399),(126436,3,36308,2,1672319399),(126437,3,36350,2,1672319399),(126438,3,36351,2,1672319399),(126439,3,36352,2,1672319399),(126440,3,36353,2,1672319399),(126441,3,36354,2,1672319399),(126442,3,36355,2,1672319399),(126443,3,36356,2,1672319399),(126444,3,36383,2,1672319399),(126445,3,36384,2,1672319399),(126446,3,36385,2,1672319399),(126447,3,36386,2,1672319399),(126448,3,36387,2,1672319399),(126449,3,36388,2,1672319399),(126450,3,36389,2,1672319399),(126451,3,36390,2,1672319399),(126452,3,36432,2,1672319399),(126453,3,36433,2,1672319399),(126454,3,36434,2,1672319399),(126455,3,36435,2,1672319399),(126456,3,36436,2,1672319399),(126457,3,36437,2,1672319399),(126458,3,36438,2,1672319399),(126459,3,36465,2,1672319399),(126460,3,36466,2,1672319399),(126461,3,36467,2,1672319399),(126462,3,36468,2,1672319399),(126463,3,36469,2,1672319399),(126464,3,36470,2,1672319399),(126465,3,36471,2,1672319399),(126466,3,36472,2,1672319399),(126467,3,36514,2,1672319399),(126468,3,36515,2,1672319399),(126469,3,36516,2,1672319399),(126470,3,36517,2,1672319399),(126471,3,36518,2,1672319399),(126472,3,36519,2,1672319399),(126473,3,36520,2,1672319399),(126474,3,40454,2,1672319399),(126475,3,40455,2,1672319399),(126476,3,40643,2,1672319399),(126477,3,40644,2,1672319399),(126478,3,40645,2,1672319399),(126479,3,40646,2,1672319399),(126480,3,40647,2,1672319399),(126481,3,40656,2,1672319399),(126482,3,40657,2,1672319399),(126483,3,40658,2,1672319399),(126484,3,40659,2,1672319399),(126485,3,40660,2,1672319399),(126486,3,40661,2,1672319399),(126487,3,40662,2,1672319399),(126488,3,40719,2,1672319399),(126489,3,40720,2,1672319399),(126490,3,40742,2,1672319399),(126491,3,40763,2,1672319399),(126492,3,40764,2,1672319399),(126493,3,40786,2,1672319399),(126494,3,40787,2,1672319399),(126495,3,40832,2,1672319399),(126496,3,40833,2,1672319399),(126497,3,42684,2,1672319399),(126498,3,42685,2,1672319399),(126499,3,42986,2,1672319399),(126500,3,43047,2,1672319399),(126501,3,43048,2,1672319399),(126502,3,43049,2,1672319399),(126503,3,43133,2,1672319399),(126504,3,43134,2,1672319399),(126505,3,43135,2,1672319399),(126506,3,43136,2,1672319399),(126507,3,43166,2,1672319399),(126508,3,43167,2,1672319399),(126509,3,44314,2,1672319399),(126510,3,44315,2,1672319399),(126511,3,44316,2,1672319399),(126512,3,44317,2,1672319399),(126513,3,44318,2,1672319399),(126514,3,44395,2,1672319399),(126515,3,44396,2,1672319399),(126516,3,44397,2,1672319399),(126517,3,44398,2,1672319399),(126518,3,44399,2,1672319399),(126519,3,44400,2,1672319399),(126520,3,44401,2,1672319399),(126521,3,44402,2,1672319399),(126522,3,22907,3,1672319399),(126523,3,22984,3,1672319399),(126524,3,22987,3,1672319399),(126525,3,23540,3,1672319399),(126526,3,27031,3,1672319399),(126527,3,27473,3,1672319399),(126528,3,27474,3,1672319399),(126529,3,27475,3,1672319399),(126530,3,27476,3,1672319399),(126531,3,27512,3,1672319399),(126532,3,27513,3,1672319399),(126533,3,27514,3,1672319399),(126534,3,27515,3,1672319399),(126535,3,27548,3,1672319399),(126536,3,27549,3,1672319399),(126537,3,27550,3,1672319399),(126538,3,27551,3,1672319399),(126539,3,27587,3,1672319399),(126540,3,27588,3,1672319399),(126541,3,27589,3,1672319399),(126542,3,27665,3,1672319399),(126543,3,27666,3,1672319399),(126544,3,27667,3,1672319399),(126545,3,27668,3,1672319399),(126546,3,27669,3,1672319399),(126547,3,28346,3,1672319399),(126548,3,28347,3,1672319399),(126549,3,28348,3,1672319399),(126550,3,28349,3,1672319399),(126551,3,28350,3,1672319399),(126552,3,28351,3,1672319399),(126553,3,28352,3,1672319399),(126554,3,28353,3,1672319399),(126555,3,30057,3,1672319399),(126556,3,30058,3,1672319399),(126557,3,30059,3,1672319399),(126558,3,30060,3,1672319399),(126559,3,30061,3,1672319399),(126560,3,30062,3,1672319399),(126561,3,30063,3,1672319399),(126562,3,30064,3,1672319399),(126563,3,30065,3,1672319399),(126564,3,30147,3,1672319399),(126565,3,30148,3,1672319399),(126566,3,30193,3,1672319399),(126567,3,30194,3,1672319399),(126568,3,30195,3,1672319399),(126569,3,30236,3,1672319399),(126570,3,30237,3,1672319399),(126571,3,30238,3,1672319399),(126572,3,30571,3,1672319399),(126573,3,30572,3,1672319399),(126574,3,30713,3,1672319399),(126575,3,30874,3,1672319399),(126576,3,30875,3,1672319399),(126577,3,30876,3,1672319399),(126578,3,30961,3,1672319399),(126579,3,30962,3,1672319399),(126580,3,32619,3,1672319399),(126581,3,32620,3,1672319399),(126582,3,32668,3,1672319399),(126583,3,32669,3,1672319399),(126584,3,32866,3,1672319399),(126585,3,32867,3,1672319399),(126586,3,32868,3,1672319399),(126587,3,32869,3,1672319399),(126588,3,32870,3,1672319399),(126589,3,33520,3,1672319399),(126590,3,33521,3,1672319399),(126591,3,35280,3,1672319399),(126592,3,35281,3,1672319399),(126593,3,35282,3,1672319399),(126594,3,35283,3,1672319399),(126595,3,35284,3,1672319399),(126596,3,35285,3,1672319399),(126597,3,35286,3,1672319399),(126598,3,35287,3,1672319399),(126599,3,35288,3,1672319399),(126600,3,35289,3,1672319399),(126601,3,35424,3,1672319399),(126602,3,35425,3,1672319399),(126603,3,35426,3,1672319399),(126604,3,35427,3,1672319399),(126605,3,35428,3,1672319399),(126606,3,35429,3,1672319399),(126607,3,35430,3,1672319399),(126608,3,35431,3,1672319399),(126609,3,35432,3,1672319399),(126610,3,35433,3,1672319399),(126611,3,35434,3,1672319399),(126612,3,35435,3,1672319399),(126613,3,35436,3,1672319399),(126614,3,35437,3,1672319399),(126615,3,35438,3,1672319399),(126616,3,36168,3,1672319399),(126617,3,36169,3,1672319399),(126618,3,36170,3,1672319399),(126619,3,36171,3,1672319399),(126620,3,36172,3,1672319399),(126621,3,36173,3,1672319399),(126622,3,36174,3,1672319399),(126623,3,36175,3,1672319399),(126624,3,36176,3,1672319399),(126625,3,36177,3,1672319399),(126626,3,36219,3,1672319399),(126627,3,36220,3,1672319399),(126628,3,36221,3,1672319399),(126629,3,36222,3,1672319399),(126630,3,36223,3,1672319399),(126631,3,36224,3,1672319399),(126632,3,36225,3,1672319399),(126633,3,36226,3,1672319399),(126634,3,36268,3,1672319399),(126635,3,36269,3,1672319399),(126636,3,36270,3,1672319399),(126637,3,36271,3,1672319399),(126638,3,36272,3,1672319399),(126639,3,36273,3,1672319399),(126640,3,36274,3,1672319399),(126641,3,36301,3,1672319399),(126642,3,36302,3,1672319399),(126643,3,36303,3,1672319399),(126644,3,36304,3,1672319399),(126645,3,36305,3,1672319399),(126646,3,36306,3,1672319399),(126647,3,36307,3,1672319399),(126648,3,36308,3,1672319399),(126649,3,36350,3,1672319399),(126650,3,36351,3,1672319399),(126651,3,36352,3,1672319399),(126652,3,36353,3,1672319399),(126653,3,36354,3,1672319399),(126654,3,36355,3,1672319399),(126655,3,36356,3,1672319399),(126656,3,36383,3,1672319399),(126657,3,36384,3,1672319399),(126658,3,36385,3,1672319399),(126659,3,36386,3,1672319399),(126660,3,36387,3,1672319399),(126661,3,36388,3,1672319399),(126662,3,36389,3,1672319399),(126663,3,36390,3,1672319399),(126664,3,36432,3,1672319399),(126665,3,36433,3,1672319399),(126666,3,36434,3,1672319399),(126667,3,36435,3,1672319399),(126668,3,36436,3,1672319399),(126669,3,36437,3,1672319399),(126670,3,36438,3,1672319399),(126671,3,36465,3,1672319399),(126672,3,36466,3,1672319399),(126673,3,36467,3,1672319399),(126674,3,36468,3,1672319399),(126675,3,36469,3,1672319399),(126676,3,36470,3,1672319399),(126677,3,36471,3,1672319399),(126678,3,36472,3,1672319399),(126679,3,36514,3,1672319399),(126680,3,36515,3,1672319399),(126681,3,36516,3,1672319399),(126682,3,36517,3,1672319399),(126683,3,36518,3,1672319399),(126684,3,36519,3,1672319399),(126685,3,36520,3,1672319399),(126686,3,40454,3,1672319399),(126687,3,40455,3,1672319399),(126688,3,40643,3,1672319399),(126689,3,40644,3,1672319399),(126690,3,40645,3,1672319399),(126691,3,40646,3,1672319399),(126692,3,40647,3,1672319399),(126693,3,40656,3,1672319399),(126694,3,40657,3,1672319399),(126695,3,40658,3,1672319399),(126696,3,40659,3,1672319399),(126697,3,40660,3,1672319399),(126698,3,40661,3,1672319399),(126699,3,40662,3,1672319399),(126700,3,40719,3,1672319399),(126701,3,40720,3,1672319399),(126702,3,40742,3,1672319399),(126703,3,40763,3,1672319399),(126704,3,40764,3,1672319399),(126705,3,40786,3,1672319399),(126706,3,40787,3,1672319399),(126707,3,40832,3,1672319399),(126708,3,40833,3,1672319399),(126709,3,42684,3,1672319399),(126710,3,42685,3,1672319399),(126711,3,42986,3,1672319399),(126712,3,43047,3,1672319399),(126713,3,43048,3,1672319399),(126714,3,43049,3,1672319399),(126715,3,43133,3,1672319399),(126716,3,43134,3,1672319399),(126717,3,43135,3,1672319399),(126718,3,43136,3,1672319399),(126719,3,43166,3,1672319399),(126720,3,43167,3,1672319399),(126721,3,44314,3,1672319399),(126722,3,44315,3,1672319399),(126723,3,44316,3,1672319399),(126724,3,44317,3,1672319399),(126725,3,44318,3,1672319399),(126726,3,44395,3,1672319399),(126727,3,44396,3,1672319399),(126728,3,44397,3,1672319399),(126729,3,44398,3,1672319399),(126730,3,44399,3,1672319399),(126731,3,44400,3,1672319399),(126732,3,44401,3,1672319399),(126733,3,44402,3,1672319399),(126734,3,22875,2,1672319399),(126735,3,22876,2,1672319399),(126736,3,22877,2,1672319399),(126737,3,22878,2,1672319399),(126738,3,22879,2,1672319399),(126739,3,22880,2,1672319399),(126740,3,22881,2,1672319399),(126741,3,22882,2,1672319399),(126742,3,22883,2,1672319399),(126743,3,22884,2,1672319399),(126744,3,22885,2,1672319399),(126745,3,22886,2,1672319399),(126746,3,22888,2,1672319399),(126747,3,22891,2,1672319399),(126748,3,22892,2,1672319399),(126749,3,22893,2,1672319399),(126750,3,22894,2,1672319399),(126751,3,22895,2,1672319399),(126752,3,22896,2,1672319399),(126753,3,22897,2,1672319399),(126754,3,22898,2,1672319399),(126755,3,22899,2,1672319399),(126756,3,22900,2,1672319399),(126757,3,22901,2,1672319399),(126758,3,22902,2,1672319399),(126759,3,22903,2,1672319399),(126760,3,22961,2,1672319399),(126761,3,22962,2,1672319399),(126762,3,22963,2,1672319399),(126763,3,22965,2,1672319399),(126764,3,22968,2,1672319399),(126765,3,22971,2,1672319399),(126766,3,22972,2,1672319399),(126767,3,22973,2,1672319399),(126768,3,22974,2,1672319399),(126769,3,22978,2,1672319399),(126770,3,22980,2,1672319399),(126771,3,22981,2,1672319399),(126772,3,22982,2,1672319399),(126773,3,22983,2,1672319399),(126774,3,23644,2,1672319399),(126775,3,27152,2,1672319399),(126776,3,27154,2,1672319399),(126777,3,27157,2,1672319399),(126778,3,27376,2,1672319399),(126779,3,27508,2,1672319399),(126780,3,27509,2,1672319399),(126781,3,27510,2,1672319399),(126782,3,27511,2,1672319399),(126783,3,27543,2,1672319399),(126784,3,27544,2,1672319399),(126785,3,27545,2,1672319399),(126786,3,27546,2,1672319399),(126787,3,27547,2,1672319399),(126788,3,27579,2,1672319399),(126789,3,27580,2,1672319399),(126790,3,27582,2,1672319399),(126791,3,27583,2,1672319399),(126792,3,27584,2,1672319399),(126793,3,27585,2,1672319399),(126794,3,27586,2,1672319399),(126795,3,28341,2,1672319399),(126796,3,28342,2,1672319399),(126797,3,28344,2,1672319399),(126798,3,28345,2,1672319399),(126799,3,29844,2,1672319399),(126800,3,29845,2,1672319399),(126801,3,29846,2,1672319399),(126802,3,29847,2,1672319399),(126803,3,29848,2,1672319399),(126804,3,30106,2,1672319399),(126805,3,30109,2,1672319399),(126806,3,30141,2,1672319399),(126807,3,30142,2,1672319399),(126808,3,30187,2,1672319399),(126809,3,30188,2,1672319399),(126810,3,30189,2,1672319399),(126811,3,30190,2,1672319399),(126812,3,30191,2,1672319399),(126813,3,30192,2,1672319399),(126814,3,30230,2,1672319399),(126815,3,30231,2,1672319399),(126816,3,30234,2,1672319399),(126817,3,30235,2,1672319399),(126818,3,30527,2,1672319399),(126819,3,30528,2,1672319399),(126820,3,30529,2,1672319399),(126821,3,30530,2,1672319399),(126822,3,30531,2,1672319399),(126823,3,30532,2,1672319399),(126824,3,30533,2,1672319399),(126825,3,30534,2,1672319399),(126826,3,30535,2,1672319399),(126827,3,30536,2,1672319399),(126828,3,30537,2,1672319399),(126829,3,30538,2,1672319399),(126830,3,30539,2,1672319399),(126831,3,30540,2,1672319399),(126832,3,30541,2,1672319399),(126833,3,30542,2,1672319399),(126834,3,30543,2,1672319399),(126835,3,30544,2,1672319399),(126836,3,30545,2,1672319399),(126837,3,30546,2,1672319399),(126838,3,30547,2,1672319399),(126839,3,30548,2,1672319399),(126840,3,30549,2,1672319399),(126841,3,30550,2,1672319399),(126842,3,30551,2,1672319399),(126843,3,30552,2,1672319399),(126844,3,30553,2,1672319399),(126845,3,30554,2,1672319399),(126846,3,30555,2,1672319399),(126847,3,30556,2,1672319399),(126848,3,30557,2,1672319399),(126849,3,30558,2,1672319399),(126850,3,30559,2,1672319399),(126851,3,30560,2,1672319399),(126852,3,30561,2,1672319399),(126853,3,30562,2,1672319399),(126854,3,30563,2,1672319399),(126855,3,30564,2,1672319399),(126856,3,30565,2,1672319399),(126857,3,30566,2,1672319399),(126858,3,30567,2,1672319399),(126859,3,30568,2,1672319399),(126860,3,30569,2,1672319399),(126861,3,30570,2,1672319399),(126862,3,30690,2,1672319399),(126863,3,30691,2,1672319399),(126864,3,30692,2,1672319399),(126865,3,30693,2,1672319399),(126866,3,30694,2,1672319399),(126867,3,30695,2,1672319399),(126868,3,30696,2,1672319399),(126869,3,30697,2,1672319399),(126870,3,30698,2,1672319399),(126871,3,30699,2,1672319399),(126872,3,30700,2,1672319399),(126873,3,30701,2,1672319399),(126874,3,30702,2,1672319399),(126875,3,30703,2,1672319399),(126876,3,30704,2,1672319399),(126877,3,30705,2,1672319399),(126878,3,30706,2,1672319399),(126879,3,30707,2,1672319399),(126880,3,30708,2,1672319399),(126881,3,30709,2,1672319399),(126882,3,30710,2,1672319399),(126883,3,30711,2,1672319399),(126884,3,30712,2,1672319399),(126885,3,30789,2,1672319399),(126886,3,30790,2,1672319399),(126887,3,30821,2,1672319399),(126888,3,30822,2,1672319399),(126889,3,30823,2,1672319399),(126890,3,30824,2,1672319399),(126891,3,30825,2,1672319399),(126892,3,30826,2,1672319399),(126893,3,30827,2,1672319399),(126894,3,30828,2,1672319399),(126895,3,30829,2,1672319399),(126896,3,30830,2,1672319399),(126897,3,30831,2,1672319399),(126898,3,30832,2,1672319399),(126899,3,30833,2,1672319399),(126900,3,30834,2,1672319399),(126901,3,30835,2,1672319399),(126902,3,30836,2,1672319399),(126903,3,30837,2,1672319399),(126904,3,30838,2,1672319399),(126905,3,30839,2,1672319399),(126906,3,30841,2,1672319399),(126907,3,30842,2,1672319399),(126908,3,30843,2,1672319399),(126909,3,30844,2,1672319399),(126910,3,30845,2,1672319399),(126911,3,30846,2,1672319399),(126912,3,30847,2,1672319399),(126913,3,30848,2,1672319399),(126914,3,30849,2,1672319399),(126915,3,30850,2,1672319399),(126916,3,30851,2,1672319399),(126917,3,30852,2,1672319399),(126918,3,30853,2,1672319399),(126919,3,30854,2,1672319399),(126920,3,30855,2,1672319399),(126921,3,30856,2,1672319399),(126922,3,30857,2,1672319399),(126923,3,30858,2,1672319399),(126924,3,30859,2,1672319399),(126925,3,30860,2,1672319399),(126926,3,30861,2,1672319399),(126927,3,30862,2,1672319399),(126928,3,30863,2,1672319399),(126929,3,30864,2,1672319399),(126930,3,30865,2,1672319399),(126931,3,30866,2,1672319399),(126932,3,30867,2,1672319399),(126933,3,30868,2,1672319399),(126934,3,30869,2,1672319399),(126935,3,30870,2,1672319399),(126936,3,30871,2,1672319399),(126937,3,30872,2,1672319399),(126938,3,30873,2,1672319399),(126939,3,30923,2,1672319399),(126940,3,30924,2,1672319399),(126941,3,30925,2,1672319399),(126942,3,30926,2,1672319399),(126943,3,30927,2,1672319399),(126944,3,30928,2,1672319399),(126945,3,30929,2,1672319399),(126946,3,30930,2,1672319399),(126947,3,30931,2,1672319399),(126948,3,30932,2,1672319399),(126949,3,30933,2,1672319399),(126950,3,30934,2,1672319399),(126951,3,30935,2,1672319399),(126952,3,30936,2,1672319399),(126953,3,30937,2,1672319399),(126954,3,30938,2,1672319399),(126955,3,30939,2,1672319399),(126956,3,30940,2,1672319399),(126957,3,30941,2,1672319399),(126958,3,30942,2,1672319399),(126959,3,30943,2,1672319399),(126960,3,30944,2,1672319399),(126961,3,30945,2,1672319399),(126962,3,30946,2,1672319399),(126963,3,30947,2,1672319399),(126964,3,30948,2,1672319399),(126965,3,30949,2,1672319399),(126966,3,30950,2,1672319399),(126967,3,30951,2,1672319399),(126968,3,30952,2,1672319399),(126969,3,30953,2,1672319399),(126970,3,30954,2,1672319399),(126971,3,30955,2,1672319399),(126972,3,30956,2,1672319399),(126973,3,30957,2,1672319399),(126974,3,30958,2,1672319399),(126975,3,30959,2,1672319399),(126976,3,30960,2,1672319399),(126977,3,31054,2,1672319399),(126978,3,31499,2,1672319399),(126979,3,31516,2,1672319399),(126980,3,31517,2,1672319399),(126981,3,31518,2,1672319399),(126982,3,31519,2,1672319399),(126983,3,31520,2,1672319399),(126984,3,31521,2,1672319399),(126985,3,31522,2,1672319399),(126986,3,31523,2,1672319399),(126987,3,31524,2,1672319399),(126988,3,31527,2,1672319399),(126989,3,31529,2,1672319399),(126990,3,31530,2,1672319399),(126991,3,31531,2,1672319399),(126992,3,31544,2,1672319399),(126993,3,31545,2,1672319399),(126994,3,31546,2,1672319399),(126995,3,31547,2,1672319399),(126996,3,31548,2,1672319399),(126997,3,31549,2,1672319399),(126998,3,31550,2,1672319399),(126999,3,31553,2,1672319399),(127000,3,32576,2,1672319399),(127001,3,32577,2,1672319399),(127002,3,32578,2,1672319399),(127003,3,32579,2,1672319399),(127004,3,32580,2,1672319399),(127005,3,32581,2,1672319399),(127006,3,32582,2,1672319399),(127007,3,32583,2,1672319399),(127008,3,32584,2,1672319399),(127009,3,32585,2,1672319399),(127010,3,32586,2,1672319399),(127011,3,32587,2,1672319399),(127012,3,32588,2,1672319399),(127013,3,32589,2,1672319399),(127014,3,32590,2,1672319399),(127015,3,32591,2,1672319399),(127016,3,32592,2,1672319399),(127017,3,32593,2,1672319399),(127018,3,32594,2,1672319399),(127019,3,32595,2,1672319399),(127020,3,32596,2,1672319399),(127021,3,32597,2,1672319399),(127022,3,32598,2,1672319399),(127023,3,32599,2,1672319399),(127024,3,32600,2,1672319399),(127025,3,32601,2,1672319399),(127026,3,32602,2,1672319399),(127027,3,32603,2,1672319399),(127028,3,32604,2,1672319399),(127029,3,32605,2,1672319399),(127030,3,32606,2,1672319399),(127031,3,32607,2,1672319399),(127032,3,32608,2,1672319399),(127033,3,32609,2,1672319399),(127034,3,32610,2,1672319399),(127035,3,32611,2,1672319399),(127036,3,32612,2,1672319399),(127037,3,32613,2,1672319399),(127038,3,32614,2,1672319399),(127039,3,32615,2,1672319399),(127040,3,32616,2,1672319399),(127041,3,32617,2,1672319399),(127042,3,32618,2,1672319399),(127043,3,32634,2,1672319399),(127044,3,32635,2,1672319399),(127045,3,32636,2,1672319399),(127046,3,32637,2,1672319399),(127047,3,32638,2,1672319399),(127048,3,32639,2,1672319399),(127049,3,32640,2,1672319399),(127050,3,32641,2,1672319399),(127051,3,32642,2,1672319399),(127052,3,32643,2,1672319399),(127053,3,32644,2,1672319399),(127054,3,32645,2,1672319399),(127055,3,32646,2,1672319399),(127056,3,32647,2,1672319399),(127057,3,32648,2,1672319399),(127058,3,32649,2,1672319399),(127059,3,32650,2,1672319399),(127060,3,32651,2,1672319399),(127061,3,32652,2,1672319399),(127062,3,32653,2,1672319399),(127063,3,32654,2,1672319399),(127064,3,32655,2,1672319399),(127065,3,32656,2,1672319399),(127066,3,32657,2,1672319399),(127067,3,32658,2,1672319399),(127068,3,32659,2,1672319399),(127069,3,32660,2,1672319399),(127070,3,32661,2,1672319399),(127071,3,32662,2,1672319399),(127072,3,32663,2,1672319399),(127073,3,32664,2,1672319399),(127074,3,32665,2,1672319399),(127075,3,32666,2,1672319399),(127076,3,32667,2,1672319399),(127077,3,32780,2,1672319399),(127078,3,32781,2,1672319399),(127079,3,32782,2,1672319399),(127080,3,32783,2,1672319399),(127081,3,32784,2,1672319399),(127082,3,32785,2,1672319399),(127083,3,32786,2,1672319399),(127084,3,32787,2,1672319399),(127085,3,32788,2,1672319399),(127086,3,32789,2,1672319399),(127087,3,32790,2,1672319399),(127088,3,32791,2,1672319399),(127089,3,32792,2,1672319399),(127090,3,32793,2,1672319399),(127091,3,32794,2,1672319399),(127092,3,32795,2,1672319399),(127093,3,32796,2,1672319399),(127094,3,32797,2,1672319399),(127095,3,32798,2,1672319399),(127096,3,32799,2,1672319399),(127097,3,32800,2,1672319399),(127098,3,32801,2,1672319399),(127099,3,32802,2,1672319399),(127100,3,32803,2,1672319399),(127101,3,32804,2,1672319399),(127102,3,32805,2,1672319399),(127103,3,32806,2,1672319399),(127104,3,32807,2,1672319399),(127105,3,32808,2,1672319399),(127106,3,32809,2,1672319399),(127107,3,32810,2,1672319399),(127108,3,32811,2,1672319399),(127109,3,32812,2,1672319399),(127110,3,32813,2,1672319399),(127111,3,32814,2,1672319399),(127112,3,32815,2,1672319399),(127113,3,32816,2,1672319399),(127114,3,32817,2,1672319399),(127115,3,32818,2,1672319399),(127116,3,32819,2,1672319399),(127117,3,32820,2,1672319399),(127118,3,32821,2,1672319399),(127119,3,32822,2,1672319399),(127120,3,32823,2,1672319399),(127121,3,32824,2,1672319399),(127122,3,32825,2,1672319399),(127123,3,32826,2,1672319399),(127124,3,32827,2,1672319399),(127125,3,32828,2,1672319399),(127126,3,32829,2,1672319399),(127127,3,32830,2,1672319399),(127128,3,32831,2,1672319399),(127129,3,32832,2,1672319399),(127130,3,32833,2,1672319399),(127131,3,32834,2,1672319399),(127132,3,32835,2,1672319399),(127133,3,32836,2,1672319399),(127134,3,32837,2,1672319399),(127135,3,32838,2,1672319399),(127136,3,32839,2,1672319399),(127137,3,32840,2,1672319399),(127138,3,32841,2,1672319399),(127139,3,32842,2,1672319399),(127140,3,32843,2,1672319399),(127141,3,32844,2,1672319399),(127142,3,32845,2,1672319399),(127143,3,32846,2,1672319399),(127144,3,32847,2,1672319399),(127145,3,32848,2,1672319399),(127146,3,32849,2,1672319399),(127147,3,32850,2,1672319399),(127148,3,32851,2,1672319399),(127149,3,32852,2,1672319399),(127150,3,32853,2,1672319399),(127151,3,32854,2,1672319399),(127152,3,32855,2,1672319399),(127153,3,32856,2,1672319399),(127154,3,32857,2,1672319399),(127155,3,32858,2,1672319399),(127156,3,32859,2,1672319399),(127157,3,32860,2,1672319399),(127158,3,32861,2,1672319399),(127159,3,32862,2,1672319399),(127160,3,32863,2,1672319399),(127161,3,32864,2,1672319399),(127162,3,32865,2,1672319399),(127163,3,33491,2,1672319399),(127164,3,33492,2,1672319399),(127165,3,33493,2,1672319399),(127166,3,33494,2,1672319399),(127167,3,33495,2,1672319399),(127168,3,33496,2,1672319399),(127169,3,33497,2,1672319399),(127170,3,33498,2,1672319399),(127171,3,33499,2,1672319399),(127172,3,33500,2,1672319399),(127173,3,33501,2,1672319399),(127174,3,33502,2,1672319399),(127175,3,33503,2,1672319399),(127176,3,33504,2,1672319399),(127177,3,33505,2,1672319399),(127178,3,33506,2,1672319399),(127179,3,33507,2,1672319399),(127180,3,33508,2,1672319399),(127181,3,33509,2,1672319399),(127182,3,33510,2,1672319399),(127183,3,33511,2,1672319399),(127184,3,33512,2,1672319399),(127185,3,33513,2,1672319399),(127186,3,33514,2,1672319399),(127187,3,33515,2,1672319399),(127188,3,33516,2,1672319399),(127189,3,33517,2,1672319399),(127190,3,33518,2,1672319399),(127191,3,33519,2,1672319399),(127192,3,34320,2,1672319399),(127193,3,35077,2,1672319399),(127194,3,35078,2,1672319399),(127195,3,35079,2,1672319399),(127196,3,35080,2,1672319399),(127197,3,35081,2,1672319399),(127198,3,35082,2,1672319399),(127199,3,35083,2,1672319399),(127200,3,35084,2,1672319399),(127201,3,35085,2,1672319399),(127202,3,35086,2,1672319399),(127203,3,35087,2,1672319399),(127204,3,35088,2,1672319399),(127205,3,35089,2,1672319399),(127206,3,35090,2,1672319399),(127207,3,35091,2,1672319399),(127208,3,35092,2,1672319399),(127209,3,35093,2,1672319399),(127210,3,35094,2,1672319399),(127211,3,35095,2,1672319399),(127212,3,35096,2,1672319399),(127213,3,35097,2,1672319399),(127214,3,35098,2,1672319399),(127215,3,35099,2,1672319399),(127216,3,35100,2,1672319399),(127217,3,35101,2,1672319399),(127218,3,35102,2,1672319399),(127219,3,35103,2,1672319399),(127220,3,35128,2,1672319399),(127221,3,35406,2,1672319399),(127222,3,35407,2,1672319399),(127223,3,35408,2,1672319399),(127224,3,35409,2,1672319399),(127225,3,35410,2,1672319399),(127226,3,35411,2,1672319399),(127227,3,35412,2,1672319399),(127228,3,35413,2,1672319399),(127229,3,35414,2,1672319399),(127230,3,35415,2,1672319399),(127231,3,35416,2,1672319399),(127232,3,35417,2,1672319399),(127233,3,35418,2,1672319399),(127234,3,35419,2,1672319399),(127235,3,35420,2,1672319399),(127236,3,35421,2,1672319399),(127237,3,35422,2,1672319399),(127238,3,35423,2,1672319399),(127239,3,36160,2,1672319399),(127240,3,36161,2,1672319399),(127241,3,36162,2,1672319399),(127242,3,36163,2,1672319399),(127243,3,36164,2,1672319399),(127244,3,36165,2,1672319399),(127245,3,36166,2,1672319399),(127246,3,36167,2,1672319399),(127247,3,36213,2,1672319399),(127248,3,36214,2,1672319399),(127249,3,36215,2,1672319399),(127250,3,36216,2,1672319399),(127251,3,36217,2,1672319399),(127252,3,36218,2,1672319399),(127253,3,36255,2,1672319399),(127254,3,36256,2,1672319399),(127255,3,36257,2,1672319399),(127256,3,36258,2,1672319399),(127257,3,36259,2,1672319399),(127258,3,36260,2,1672319399),(127259,3,36261,2,1672319399),(127260,3,36262,2,1672319399),(127261,3,36263,2,1672319399),(127262,3,36264,2,1672319399),(127263,3,36265,2,1672319399),(127264,3,36266,2,1672319399),(127265,3,36267,2,1672319399),(127266,3,36295,2,1672319399),(127267,3,36296,2,1672319399),(127268,3,36297,2,1672319399),(127269,3,36298,2,1672319399),(127270,3,36299,2,1672319399),(127271,3,36300,2,1672319399),(127272,3,36337,2,1672319399),(127273,3,36338,2,1672319399),(127274,3,36339,2,1672319399),(127275,3,36340,2,1672319399),(127276,3,36341,2,1672319399),(127277,3,36342,2,1672319399),(127278,3,36343,2,1672319399),(127279,3,36344,2,1672319399),(127280,3,36345,2,1672319399),(127281,3,36346,2,1672319399),(127282,3,36347,2,1672319399),(127283,3,36348,2,1672319399),(127284,3,36349,2,1672319399),(127285,3,36377,2,1672319399),(127286,3,36378,2,1672319399),(127287,3,36379,2,1672319399),(127288,3,36380,2,1672319399),(127289,3,36381,2,1672319399),(127290,3,36382,2,1672319399),(127291,3,36419,2,1672319399),(127292,3,36420,2,1672319399),(127293,3,36421,2,1672319399),(127294,3,36422,2,1672319399),(127295,3,36423,2,1672319399),(127296,3,36424,2,1672319399),(127297,3,36425,2,1672319399),(127298,3,36426,2,1672319399),(127299,3,36427,2,1672319399),(127300,3,36428,2,1672319399),(127301,3,36429,2,1672319399),(127302,3,36430,2,1672319399),(127303,3,36431,2,1672319399),(127304,3,36459,2,1672319399),(127305,3,36460,2,1672319399),(127306,3,36461,2,1672319399),(127307,3,36462,2,1672319399),(127308,3,36463,2,1672319399),(127309,3,36464,2,1672319399),(127310,3,36501,2,1672319399),(127311,3,36502,2,1672319399),(127312,3,36503,2,1672319399),(127313,3,36504,2,1672319399),(127314,3,36505,2,1672319399),(127315,3,36506,2,1672319399),(127316,3,36507,2,1672319399),(127317,3,36508,2,1672319399),(127318,3,36509,2,1672319399),(127319,3,36510,2,1672319399),(127320,3,36511,2,1672319399),(127321,3,36512,2,1672319399),(127322,3,36513,2,1672319399),(127323,3,36822,2,1672319399),(127324,3,36823,2,1672319399),(127325,3,40190,2,1672319399),(127326,3,40191,2,1672319399),(127327,3,40192,2,1672319399),(127328,3,40451,2,1672319399),(127329,3,40600,2,1672319399),(127330,3,40601,2,1672319399),(127331,3,40602,2,1672319399),(127332,3,40603,2,1672319399),(127333,3,40604,2,1672319399),(127334,3,40605,2,1672319399),(127335,3,40606,2,1672319399),(127336,3,40607,2,1672319399),(127337,3,40608,2,1672319399),(127338,3,40609,2,1672319399),(127339,3,40610,2,1672319399),(127340,3,40611,2,1672319399),(127341,3,40612,2,1672319399),(127342,3,40613,2,1672319399),(127343,3,40614,2,1672319399),(127344,3,40629,2,1672319399),(127345,3,40630,2,1672319399),(127346,3,40631,2,1672319399),(127347,3,40632,2,1672319399),(127348,3,40633,2,1672319399),(127349,3,40634,2,1672319399),(127350,3,40635,2,1672319399),(127351,3,40636,2,1672319399),(127352,3,40637,2,1672319399),(127353,3,40638,2,1672319399),(127354,3,40639,2,1672319399),(127355,3,40640,2,1672319399),(127356,3,40641,2,1672319399),(127357,3,40642,2,1672319399),(127358,3,40708,2,1672319399),(127359,3,40709,2,1672319399),(127360,3,40710,2,1672319399),(127361,3,40711,2,1672319399),(127362,3,40712,2,1672319399),(127363,3,40713,2,1672319399),(127364,3,40714,2,1672319399),(127365,3,40715,2,1672319399),(127366,3,40716,2,1672319399),(127367,3,40717,2,1672319399),(127368,3,40718,2,1672319399),(127369,3,40731,2,1672319399),(127370,3,40732,2,1672319399),(127371,3,40733,2,1672319399),(127372,3,40734,2,1672319399),(127373,3,40735,2,1672319399),(127374,3,40736,2,1672319399),(127375,3,40737,2,1672319399),(127376,3,40738,2,1672319399),(127377,3,40739,2,1672319399),(127378,3,40740,2,1672319399),(127379,3,40741,2,1672319399),(127380,3,40752,2,1672319399),(127381,3,40753,2,1672319399),(127382,3,40754,2,1672319399),(127383,3,40755,2,1672319399),(127384,3,40756,2,1672319399),(127385,3,40757,2,1672319399),(127386,3,40758,2,1672319399),(127387,3,40759,2,1672319399),(127388,3,40760,2,1672319399),(127389,3,40761,2,1672319399),(127390,3,40762,2,1672319399),(127391,3,40775,2,1672319399),(127392,3,40776,2,1672319399),(127393,3,40777,2,1672319399),(127394,3,40778,2,1672319399),(127395,3,40779,2,1672319399),(127396,3,40780,2,1672319399),(127397,3,40781,2,1672319399),(127398,3,40782,2,1672319399),(127399,3,40783,2,1672319399),(127400,3,40784,2,1672319399),(127401,3,40785,2,1672319399),(127402,3,40821,2,1672319399),(127403,3,40822,2,1672319399),(127404,3,40823,2,1672319399),(127405,3,40824,2,1672319399),(127406,3,40825,2,1672319399),(127407,3,40826,2,1672319399),(127408,3,40827,2,1672319399),(127409,3,40828,2,1672319399),(127410,3,40829,2,1672319399),(127411,3,40830,2,1672319399),(127412,3,40831,2,1672319399),(127413,3,42179,2,1672319399),(127414,3,42180,2,1672319399),(127415,3,42181,2,1672319399),(127416,3,42182,2,1672319399),(127417,3,42183,2,1672319399),(127418,3,42184,2,1672319399),(127419,3,42185,2,1672319399),(127420,3,42186,2,1672319399),(127421,3,42620,2,1672319399),(127422,3,42621,2,1672319399),(127423,3,42622,2,1672319399),(127424,3,42623,2,1672319399),(127425,3,42624,2,1672319399),(127426,3,42625,2,1672319399),(127427,3,42626,2,1672319399),(127428,3,42627,2,1672319399),(127429,3,42628,2,1672319399),(127430,3,42629,2,1672319399),(127431,3,42630,2,1672319399),(127432,3,42631,2,1672319399),(127433,3,42632,2,1672319399),(127434,3,42633,2,1672319399),(127435,3,42634,2,1672319399),(127436,3,42635,2,1672319399),(127437,3,42636,2,1672319399),(127438,3,42637,2,1672319399),(127439,3,42638,2,1672319399),(127440,3,42639,2,1672319399),(127441,3,42640,2,1672319399),(127442,3,42641,2,1672319399),(127443,3,42930,2,1672319399),(127444,3,42931,2,1672319399),(127445,3,42932,2,1672319399),(127446,3,42933,2,1672319399),(127447,3,42934,2,1672319399),(127448,3,42935,2,1672319399),(127449,3,42936,2,1672319399),(127450,3,42937,2,1672319399),(127451,3,42938,2,1672319399),(127452,3,42939,2,1672319399),(127453,3,42940,2,1672319399),(127454,3,42941,2,1672319399),(127455,3,42942,2,1672319399),(127456,3,42943,2,1672319399),(127457,3,42944,2,1672319399),(127458,3,42945,2,1672319399),(127459,3,42946,2,1672319399),(127460,3,42947,2,1672319399),(127461,3,42948,2,1672319399),(127462,3,42949,2,1672319399),(127463,3,42950,2,1672319399),(127464,3,42951,2,1672319399),(127465,3,42952,2,1672319399),(127466,3,42953,2,1672319399),(127467,3,42954,2,1672319399),(127468,3,42955,2,1672319399),(127469,3,42956,2,1672319399),(127470,3,42957,2,1672319399),(127471,3,42958,2,1672319399),(127472,3,42959,2,1672319399),(127473,3,42960,2,1672319399),(127474,3,42961,2,1672319399),(127475,3,42962,2,1672319399),(127476,3,42963,2,1672319399),(127477,3,42964,2,1672319399),(127478,3,42965,2,1672319399),(127479,3,42966,2,1672319399),(127480,3,42967,2,1672319399),(127481,3,42968,2,1672319399),(127482,3,42969,2,1672319399),(127483,3,42970,2,1672319399),(127484,3,42971,2,1672319399),(127485,3,42972,2,1672319399),(127486,3,42973,2,1672319399),(127487,3,42974,2,1672319399),(127488,3,42975,2,1672319399),(127489,3,42976,2,1672319399),(127490,3,42977,2,1672319399),(127491,3,42978,2,1672319399),(127492,3,42979,2,1672319399),(127493,3,42980,2,1672319399),(127494,3,42981,2,1672319399),(127495,3,42982,2,1672319399),(127496,3,42983,2,1672319399),(127497,3,42984,2,1672319399),(127498,3,42985,2,1672319399),(127499,3,43018,2,1672319399),(127500,3,43019,2,1672319399),(127501,3,43020,2,1672319399),(127502,3,43021,2,1672319399),(127503,3,43022,2,1672319399),(127504,3,43023,2,1672319399),(127505,3,43024,2,1672319399),(127506,3,43025,2,1672319399),(127507,3,43026,2,1672319399),(127508,3,43027,2,1672319399),(127509,3,43028,2,1672319399),(127510,3,43029,2,1672319399),(127511,3,43030,2,1672319399),(127512,3,43031,2,1672319399),(127513,3,43032,2,1672319399),(127514,3,43033,2,1672319399),(127515,3,43034,2,1672319399),(127516,3,43035,2,1672319399),(127517,3,43036,2,1672319399),(127518,3,43037,2,1672319399),(127519,3,43038,2,1672319399),(127520,3,43039,2,1672319399),(127521,3,43040,2,1672319399),(127522,3,43041,2,1672319399),(127523,3,43042,2,1672319399),(127524,3,43043,2,1672319399),(127525,3,43044,2,1672319399),(127526,3,43045,2,1672319399),(127527,3,43046,2,1672319399),(127528,3,43081,2,1672319399),(127529,3,43082,2,1672319399),(127530,3,43083,2,1672319399),(127531,3,43084,2,1672319399),(127532,3,43085,2,1672319399),(127533,3,43086,2,1672319399),(127534,3,43087,2,1672319399),(127535,3,43088,2,1672319399),(127536,3,43089,2,1672319399),(127537,3,43090,2,1672319399),(127538,3,43091,2,1672319399),(127539,3,43092,2,1672319399),(127540,3,43093,2,1672319399),(127541,3,43094,2,1672319399),(127542,3,43095,2,1672319399),(127543,3,43096,2,1672319399),(127544,3,43097,2,1672319399),(127545,3,43098,2,1672319399),(127546,3,43099,2,1672319399),(127547,3,43100,2,1672319399),(127548,3,43101,2,1672319399),(127549,3,43102,2,1672319399),(127550,3,43103,2,1672319399),(127551,3,43104,2,1672319399),(127552,3,43105,2,1672319399),(127553,3,43106,2,1672319399),(127554,3,43107,2,1672319399),(127555,3,43108,2,1672319399),(127556,3,43109,2,1672319399),(127557,3,43110,2,1672319399),(127558,3,43111,2,1672319399),(127559,3,43112,2,1672319399),(127560,3,43113,2,1672319399),(127561,3,43114,2,1672319399),(127562,3,43115,2,1672319399),(127563,3,43116,2,1672319399),(127564,3,43117,2,1672319399),(127565,3,43118,2,1672319399),(127566,3,43119,2,1672319399),(127567,3,43120,2,1672319399),(127568,3,43121,2,1672319399),(127569,3,43122,2,1672319399),(127570,3,43123,2,1672319399),(127571,3,43124,2,1672319399),(127572,3,43125,2,1672319399),(127573,3,43126,2,1672319399),(127574,3,43127,2,1672319399),(127575,3,43128,2,1672319399),(127576,3,43129,2,1672319399),(127577,3,43130,2,1672319399),(127578,3,43131,2,1672319399),(127579,3,43132,2,1672319399),(127580,3,43156,2,1672319399),(127581,3,43157,2,1672319399),(127582,3,43158,2,1672319399),(127583,3,43159,2,1672319399),(127584,3,43160,2,1672319399),(127585,3,43161,2,1672319399),(127586,3,43162,2,1672319399),(127587,3,43163,2,1672319399),(127588,3,43164,2,1672319399),(127589,3,43165,2,1672319399),(127590,3,43769,2,1672319399),(127591,3,43780,2,1672319399),(127592,3,43782,2,1672319399),(127593,3,43783,2,1672319399),(127594,3,43784,2,1672319399),(127595,3,43785,2,1672319399),(127596,3,43786,2,1672319399),(127597,3,43788,2,1672319399),(127598,3,43889,2,1672319399),(127599,3,43890,2,1672319399),(127600,3,43891,2,1672319399),(127601,3,43892,2,1672319399),(127602,3,43893,2,1672319399),(127603,3,43894,2,1672319399),(127604,3,43895,2,1672319399),(127605,3,44294,2,1672319399),(127606,3,44295,2,1672319399),(127607,3,44296,2,1672319399),(127608,3,44297,2,1672319399),(127609,3,44298,2,1672319399),(127610,3,44299,2,1672319399),(127611,3,44300,2,1672319399),(127612,3,44301,2,1672319399),(127613,3,44302,2,1672319399),(127614,3,44303,2,1672319399),(127615,3,44304,2,1672319399),(127616,3,44305,2,1672319399),(127617,3,44306,2,1672319399),(127618,3,44307,2,1672319399),(127619,3,44308,2,1672319399),(127620,3,44309,2,1672319399),(127621,3,44310,2,1672319399),(127622,3,44311,2,1672319399),(127623,3,44312,2,1672319399),(127624,3,44313,2,1672319399),(127625,3,44381,2,1672319399),(127626,3,44382,2,1672319399),(127627,3,44383,2,1672319399),(127628,3,44384,2,1672319399),(127629,3,44385,2,1672319399),(127630,3,44386,2,1672319399),(127631,3,44387,2,1672319399),(127632,3,44388,2,1672319399),(127633,3,44389,2,1672319399),(127634,3,44390,2,1672319399),(127635,3,44391,2,1672319399),(127636,3,44392,2,1672319399),(127637,3,44393,2,1672319399),(127638,3,44394,2,1672319399),(127639,3,44430,2,1672319399),(127640,3,44433,2,1672319399),(127641,3,22875,3,1672319399),(127642,3,22876,3,1672319399),(127643,3,22877,3,1672319399),(127644,3,22878,3,1672319399),(127645,3,22879,3,1672319399),(127646,3,22880,3,1672319399),(127647,3,22881,3,1672319399),(127648,3,22882,3,1672319399),(127649,3,22883,3,1672319399),(127650,3,22884,3,1672319399),(127651,3,22885,3,1672319399),(127652,3,22886,3,1672319399),(127653,3,22888,3,1672319399),(127654,3,22891,3,1672319399),(127655,3,22892,3,1672319399),(127656,3,22893,3,1672319399),(127657,3,22894,3,1672319399),(127658,3,22895,3,1672319399),(127659,3,22896,3,1672319399),(127660,3,22897,3,1672319399),(127661,3,22898,3,1672319399),(127662,3,22899,3,1672319399),(127663,3,22900,3,1672319399),(127664,3,22901,3,1672319399),(127665,3,22902,3,1672319399),(127666,3,22903,3,1672319399),(127667,3,22961,3,1672319399),(127668,3,22962,3,1672319399),(127669,3,22963,3,1672319399),(127670,3,22965,3,1672319399),(127671,3,22968,3,1672319399),(127672,3,22971,3,1672319399),(127673,3,22972,3,1672319399),(127674,3,22973,3,1672319399),(127675,3,22974,3,1672319399),(127676,3,22978,3,1672319399),(127677,3,22980,3,1672319399),(127678,3,22981,3,1672319399),(127679,3,22982,3,1672319399),(127680,3,22983,3,1672319399),(127681,3,23644,3,1672319399),(127682,3,27152,3,1672319399),(127683,3,27154,3,1672319399),(127684,3,27157,3,1672319399),(127685,3,27376,3,1672319399),(127686,3,27508,3,1672319399),(127687,3,27509,3,1672319399),(127688,3,27510,3,1672319399),(127689,3,27511,3,1672319399),(127690,3,27543,3,1672319399),(127691,3,27544,3,1672319399),(127692,3,27545,3,1672319399),(127693,3,27546,3,1672319399),(127694,3,27547,3,1672319399),(127695,3,27579,3,1672319399),(127696,3,27580,3,1672319399),(127697,3,27582,3,1672319399),(127698,3,27583,3,1672319399),(127699,3,27584,3,1672319399),(127700,3,27585,3,1672319399),(127701,3,27586,3,1672319399),(127702,3,28341,3,1672319399),(127703,3,28342,3,1672319399),(127704,3,28344,3,1672319399),(127705,3,28345,3,1672319399),(127706,3,29844,3,1672319399),(127707,3,29845,3,1672319399),(127708,3,29846,3,1672319399),(127709,3,29847,3,1672319399),(127710,3,29848,3,1672319399),(127711,3,30106,3,1672319399),(127712,3,30109,3,1672319399),(127713,3,30141,3,1672319399),(127714,3,30142,3,1672319399),(127715,3,30187,3,1672319399),(127716,3,30188,3,1672319399),(127717,3,30189,3,1672319399),(127718,3,30190,3,1672319399),(127719,3,30191,3,1672319399),(127720,3,30192,3,1672319399),(127721,3,30230,3,1672319399),(127722,3,30231,3,1672319399),(127723,3,30234,3,1672319399),(127724,3,30235,3,1672319399),(127725,3,30527,3,1672319399),(127726,3,30528,3,1672319399),(127727,3,30529,3,1672319399),(127728,3,30530,3,1672319399),(127729,3,30531,3,1672319399),(127730,3,30532,3,1672319399),(127731,3,30533,3,1672319399),(127732,3,30534,3,1672319399),(127733,3,30535,3,1672319399),(127734,3,30536,3,1672319399),(127735,3,30537,3,1672319399),(127736,3,30538,3,1672319399),(127737,3,30539,3,1672319399),(127738,3,30540,3,1672319399),(127739,3,30541,3,1672319399),(127740,3,30542,3,1672319399),(127741,3,30543,3,1672319399),(127742,3,30544,3,1672319399),(127743,3,30545,3,1672319399),(127744,3,30546,3,1672319399),(127745,3,30547,3,1672319399),(127746,3,30548,3,1672319399),(127747,3,30549,3,1672319399),(127748,3,30550,3,1672319399),(127749,3,30551,3,1672319399),(127750,3,30552,3,1672319399),(127751,3,30553,3,1672319399),(127752,3,30554,3,1672319399),(127753,3,30555,3,1672319399),(127754,3,30556,3,1672319399),(127755,3,30557,3,1672319399),(127756,3,30558,3,1672319399),(127757,3,30559,3,1672319399),(127758,3,30560,3,1672319399),(127759,3,30561,3,1672319399),(127760,3,30562,3,1672319399),(127761,3,30563,3,1672319399),(127762,3,30564,3,1672319399),(127763,3,30565,3,1672319399),(127764,3,30566,3,1672319399),(127765,3,30567,3,1672319399),(127766,3,30568,3,1672319399),(127767,3,30569,3,1672319399),(127768,3,30570,3,1672319399),(127769,3,30690,3,1672319399),(127770,3,30691,3,1672319399),(127771,3,30692,3,1672319399),(127772,3,30693,3,1672319399),(127773,3,30694,3,1672319399),(127774,3,30695,3,1672319399),(127775,3,30696,3,1672319399),(127776,3,30697,3,1672319399),(127777,3,30698,3,1672319399),(127778,3,30699,3,1672319399),(127779,3,30700,3,1672319399),(127780,3,30701,3,1672319399),(127781,3,30702,3,1672319399),(127782,3,30703,3,1672319399),(127783,3,30704,3,1672319399),(127784,3,30705,3,1672319399),(127785,3,30706,3,1672319399),(127786,3,30707,3,1672319399),(127787,3,30708,3,1672319399),(127788,3,30709,3,1672319399),(127789,3,30710,3,1672319399),(127790,3,30711,3,1672319399),(127791,3,30712,3,1672319399),(127792,3,30789,3,1672319399),(127793,3,30790,3,1672319399),(127794,3,30821,3,1672319399),(127795,3,30822,3,1672319399),(127796,3,30823,3,1672319399),(127797,3,30824,3,1672319399),(127798,3,30825,3,1672319399),(127799,3,30826,3,1672319399),(127800,3,30827,3,1672319399),(127801,3,30828,3,1672319399),(127802,3,30829,3,1672319399),(127803,3,30830,3,1672319399),(127804,3,30831,3,1672319399),(127805,3,30832,3,1672319399),(127806,3,30833,3,1672319399),(127807,3,30834,3,1672319399),(127808,3,30835,3,1672319399),(127809,3,30836,3,1672319399),(127810,3,30837,3,1672319399),(127811,3,30838,3,1672319399),(127812,3,30839,3,1672319399),(127813,3,30841,3,1672319399),(127814,3,30842,3,1672319399),(127815,3,30843,3,1672319399),(127816,3,30844,3,1672319399),(127817,3,30845,3,1672319399),(127818,3,30846,3,1672319399),(127819,3,30847,3,1672319399),(127820,3,30848,3,1672319399),(127821,3,30849,3,1672319399),(127822,3,30850,3,1672319399),(127823,3,30851,3,1672319399),(127824,3,30852,3,1672319399),(127825,3,30853,3,1672319399),(127826,3,30854,3,1672319399),(127827,3,30855,3,1672319399),(127828,3,30856,3,1672319399),(127829,3,30857,3,1672319399),(127830,3,30858,3,1672319399),(127831,3,30859,3,1672319399),(127832,3,30860,3,1672319399),(127833,3,30861,3,1672319399),(127834,3,30862,3,1672319399),(127835,3,30863,3,1672319399),(127836,3,30864,3,1672319399),(127837,3,30865,3,1672319399),(127838,3,30866,3,1672319399),(127839,3,30867,3,1672319399),(127840,3,30868,3,1672319399),(127841,3,30869,3,1672319399),(127842,3,30870,3,1672319399),(127843,3,30871,3,1672319399),(127844,3,30872,3,1672319399),(127845,3,30873,3,1672319399),(127846,3,30923,3,1672319399),(127847,3,30924,3,1672319399),(127848,3,30925,3,1672319399),(127849,3,30926,3,1672319399),(127850,3,30927,3,1672319399),(127851,3,30928,3,1672319399),(127852,3,30929,3,1672319399),(127853,3,30930,3,1672319399),(127854,3,30931,3,1672319399),(127855,3,30932,3,1672319399),(127856,3,30933,3,1672319399),(127857,3,30934,3,1672319399),(127858,3,30935,3,1672319399),(127859,3,30936,3,1672319399),(127860,3,30937,3,1672319399),(127861,3,30938,3,1672319399),(127862,3,30939,3,1672319399),(127863,3,30940,3,1672319399),(127864,3,30941,3,1672319399),(127865,3,30942,3,1672319399),(127866,3,30943,3,1672319399),(127867,3,30944,3,1672319399),(127868,3,30945,3,1672319399),(127869,3,30946,3,1672319399),(127870,3,30947,3,1672319399),(127871,3,30948,3,1672319399),(127872,3,30949,3,1672319399),(127873,3,30950,3,1672319399),(127874,3,30951,3,1672319399),(127875,3,30952,3,1672319399),(127876,3,30953,3,1672319399),(127877,3,30954,3,1672319399),(127878,3,30955,3,1672319399),(127879,3,30956,3,1672319399),(127880,3,30957,3,1672319399),(127881,3,30958,3,1672319399),(127882,3,30959,3,1672319399),(127883,3,30960,3,1672319399),(127884,3,31054,3,1672319399),(127885,3,31499,3,1672319399),(127886,3,31516,3,1672319399),(127887,3,31517,3,1672319399),(127888,3,31518,3,1672319399),(127889,3,31519,3,1672319399),(127890,3,31520,3,1672319399),(127891,3,31521,3,1672319399),(127892,3,31522,3,1672319399),(127893,3,31523,3,1672319399),(127894,3,31524,3,1672319399),(127895,3,31527,3,1672319399),(127896,3,31529,3,1672319399),(127897,3,31530,3,1672319399),(127898,3,31531,3,1672319399),(127899,3,31544,3,1672319399),(127900,3,31545,3,1672319399),(127901,3,31546,3,1672319399),(127902,3,31547,3,1672319399),(127903,3,31548,3,1672319399),(127904,3,31549,3,1672319399),(127905,3,31550,3,1672319399),(127906,3,31553,3,1672319399),(127907,3,32576,3,1672319399),(127908,3,32577,3,1672319399),(127909,3,32578,3,1672319399),(127910,3,32579,3,1672319399),(127911,3,32580,3,1672319399),(127912,3,32581,3,1672319399),(127913,3,32582,3,1672319399),(127914,3,32583,3,1672319399),(127915,3,32584,3,1672319399),(127916,3,32585,3,1672319399),(127917,3,32586,3,1672319399),(127918,3,32587,3,1672319399),(127919,3,32588,3,1672319399),(127920,3,32589,3,1672319399),(127921,3,32590,3,1672319399),(127922,3,32591,3,1672319399),(127923,3,32592,3,1672319399),(127924,3,32593,3,1672319399),(127925,3,32594,3,1672319399),(127926,3,32595,3,1672319399),(127927,3,32596,3,1672319399),(127928,3,32597,3,1672319399),(127929,3,32598,3,1672319399),(127930,3,32599,3,1672319399),(127931,3,32600,3,1672319399),(127932,3,32601,3,1672319399),(127933,3,32602,3,1672319399),(127934,3,32603,3,1672319399),(127935,3,32604,3,1672319399),(127936,3,32605,3,1672319399),(127937,3,32606,3,1672319399),(127938,3,32607,3,1672319399),(127939,3,32608,3,1672319399),(127940,3,32609,3,1672319399),(127941,3,32610,3,1672319399),(127942,3,32611,3,1672319399),(127943,3,32612,3,1672319399),(127944,3,32613,3,1672319399),(127945,3,32614,3,1672319399),(127946,3,32615,3,1672319399),(127947,3,32616,3,1672319399),(127948,3,32617,3,1672319399),(127949,3,32618,3,1672319399),(127950,3,32634,3,1672319399),(127951,3,32635,3,1672319399),(127952,3,32636,3,1672319399),(127953,3,32637,3,1672319399),(127954,3,32638,3,1672319399),(127955,3,32639,3,1672319399),(127956,3,32640,3,1672319399),(127957,3,32641,3,1672319399),(127958,3,32642,3,1672319399),(127959,3,32643,3,1672319399),(127960,3,32644,3,1672319399),(127961,3,32645,3,1672319399),(127962,3,32646,3,1672319399),(127963,3,32647,3,1672319399),(127964,3,32648,3,1672319399),(127965,3,32649,3,1672319399),(127966,3,32650,3,1672319399),(127967,3,32651,3,1672319399),(127968,3,32652,3,1672319399),(127969,3,32653,3,1672319399),(127970,3,32654,3,1672319399),(127971,3,32655,3,1672319399),(127972,3,32656,3,1672319399),(127973,3,32657,3,1672319399),(127974,3,32658,3,1672319399),(127975,3,32659,3,1672319399),(127976,3,32660,3,1672319399),(127977,3,32661,3,1672319399),(127978,3,32662,3,1672319399),(127979,3,32663,3,1672319399),(127980,3,32664,3,1672319399),(127981,3,32665,3,1672319399),(127982,3,32666,3,1672319399),(127983,3,32667,3,1672319399),(127984,3,32780,3,1672319399),(127985,3,32781,3,1672319399),(127986,3,32782,3,1672319399),(127987,3,32783,3,1672319399),(127988,3,32784,3,1672319399),(127989,3,32785,3,1672319399),(127990,3,32786,3,1672319399),(127991,3,32787,3,1672319399),(127992,3,32788,3,1672319399),(127993,3,32789,3,1672319399),(127994,3,32790,3,1672319399),(127995,3,32791,3,1672319399),(127996,3,32792,3,1672319399),(127997,3,32793,3,1672319399),(127998,3,32794,3,1672319399),(127999,3,32795,3,1672319399),(128000,3,32796,3,1672319399),(128001,3,32797,3,1672319399),(128002,3,32798,3,1672319399),(128003,3,32799,3,1672319399),(128004,3,32800,3,1672319399),(128005,3,32801,3,1672319399),(128006,3,32802,3,1672319399),(128007,3,32803,3,1672319399),(128008,3,32804,3,1672319399),(128009,3,32805,3,1672319399),(128010,3,32806,3,1672319399),(128011,3,32807,3,1672319399),(128012,3,32808,3,1672319399),(128013,3,32809,3,1672319399),(128014,3,32810,3,1672319399),(128015,3,32811,3,1672319399),(128016,3,32812,3,1672319399),(128017,3,32813,3,1672319399),(128018,3,32814,3,1672319399),(128019,3,32815,3,1672319399),(128020,3,32816,3,1672319399),(128021,3,32817,3,1672319399),(128022,3,32818,3,1672319399),(128023,3,32819,3,1672319399),(128024,3,32820,3,1672319399),(128025,3,32821,3,1672319399),(128026,3,32822,3,1672319399),(128027,3,32823,3,1672319399),(128028,3,32824,3,1672319399),(128029,3,32825,3,1672319399),(128030,3,32826,3,1672319399),(128031,3,32827,3,1672319399),(128032,3,32828,3,1672319399),(128033,3,32829,3,1672319399),(128034,3,32830,3,1672319399),(128035,3,32831,3,1672319399),(128036,3,32832,3,1672319399),(128037,3,32833,3,1672319399),(128038,3,32834,3,1672319399),(128039,3,32835,3,1672319399),(128040,3,32836,3,1672319399),(128041,3,32837,3,1672319399),(128042,3,32838,3,1672319399),(128043,3,32839,3,1672319399),(128044,3,32840,3,1672319399),(128045,3,32841,3,1672319399),(128046,3,32842,3,1672319399),(128047,3,32843,3,1672319399),(128048,3,32844,3,1672319399),(128049,3,32845,3,1672319399),(128050,3,32846,3,1672319399),(128051,3,32847,3,1672319399),(128052,3,32848,3,1672319399),(128053,3,32849,3,1672319399),(128054,3,32850,3,1672319399),(128055,3,32851,3,1672319399),(128056,3,32852,3,1672319399),(128057,3,32853,3,1672319399),(128058,3,32854,3,1672319399),(128059,3,32855,3,1672319399),(128060,3,32856,3,1672319399),(128061,3,32857,3,1672319399),(128062,3,32858,3,1672319399),(128063,3,32859,3,1672319399),(128064,3,32860,3,1672319399),(128065,3,32861,3,1672319399),(128066,3,32862,3,1672319399),(128067,3,32863,3,1672319399),(128068,3,32864,3,1672319399),(128069,3,32865,3,1672319399),(128070,3,33491,3,1672319399),(128071,3,33492,3,1672319399),(128072,3,33493,3,1672319399),(128073,3,33494,3,1672319399),(128074,3,33495,3,1672319399),(128075,3,33496,3,1672319399),(128076,3,33497,3,1672319399),(128077,3,33498,3,1672319399),(128078,3,33499,3,1672319399),(128079,3,33500,3,1672319399),(128080,3,33501,3,1672319399),(128081,3,33502,3,1672319399),(128082,3,33503,3,1672319399),(128083,3,33504,3,1672319399),(128084,3,33505,3,1672319399),(128085,3,33506,3,1672319399),(128086,3,33507,3,1672319399),(128087,3,33508,3,1672319399),(128088,3,33509,3,1672319399),(128089,3,33510,3,1672319399),(128090,3,33511,3,1672319399),(128091,3,33512,3,1672319399),(128092,3,33513,3,1672319399),(128093,3,33514,3,1672319399),(128094,3,33515,3,1672319399),(128095,3,33516,3,1672319399),(128096,3,33517,3,1672319399),(128097,3,33518,3,1672319399),(128098,3,33519,3,1672319399),(128099,3,34320,3,1672319399),(128100,3,35077,3,1672319399),(128101,3,35078,3,1672319399),(128102,3,35079,3,1672319399),(128103,3,35080,3,1672319399),(128104,3,35081,3,1672319399),(128105,3,35082,3,1672319399),(128106,3,35083,3,1672319399),(128107,3,35084,3,1672319399),(128108,3,35085,3,1672319399),(128109,3,35086,3,1672319399),(128110,3,35087,3,1672319399),(128111,3,35088,3,1672319399),(128112,3,35089,3,1672319399),(128113,3,35090,3,1672319399),(128114,3,35091,3,1672319399),(128115,3,35092,3,1672319399),(128116,3,35093,3,1672319399),(128117,3,35094,3,1672319399),(128118,3,35095,3,1672319399),(128119,3,35096,3,1672319399),(128120,3,35097,3,1672319399),(128121,3,35098,3,1672319399),(128122,3,35099,3,1672319399),(128123,3,35100,3,1672319399),(128124,3,35101,3,1672319399),(128125,3,35102,3,1672319399),(128126,3,35103,3,1672319399),(128127,3,35128,3,1672319399),(128128,3,35406,3,1672319399),(128129,3,35407,3,1672319399),(128130,3,35408,3,1672319399),(128131,3,35409,3,1672319399),(128132,3,35410,3,1672319399),(128133,3,35411,3,1672319399),(128134,3,35412,3,1672319399),(128135,3,35413,3,1672319399),(128136,3,35414,3,1672319399),(128137,3,35415,3,1672319399),(128138,3,35416,3,1672319399),(128139,3,35417,3,1672319399),(128140,3,35418,3,1672319399),(128141,3,35419,3,1672319399),(128142,3,35420,3,1672319399),(128143,3,35421,3,1672319399),(128144,3,35422,3,1672319399),(128145,3,35423,3,1672319399),(128146,3,36160,3,1672319399),(128147,3,36161,3,1672319399),(128148,3,36162,3,1672319399),(128149,3,36163,3,1672319399),(128150,3,36164,3,1672319399),(128151,3,36165,3,1672319399),(128152,3,36166,3,1672319399),(128153,3,36167,3,1672319399),(128154,3,36213,3,1672319399),(128155,3,36214,3,1672319399),(128156,3,36215,3,1672319399),(128157,3,36216,3,1672319399),(128158,3,36217,3,1672319399),(128159,3,36218,3,1672319399),(128160,3,36255,3,1672319399),(128161,3,36256,3,1672319399),(128162,3,36257,3,1672319399),(128163,3,36258,3,1672319399),(128164,3,36259,3,1672319399),(128165,3,36260,3,1672319399),(128166,3,36261,3,1672319399),(128167,3,36262,3,1672319399),(128168,3,36263,3,1672319399),(128169,3,36264,3,1672319399),(128170,3,36265,3,1672319399),(128171,3,36266,3,1672319399),(128172,3,36267,3,1672319399),(128173,3,36295,3,1672319399),(128174,3,36296,3,1672319399),(128175,3,36297,3,1672319399),(128176,3,36298,3,1672319399),(128177,3,36299,3,1672319399),(128178,3,36300,3,1672319399),(128179,3,36337,3,1672319399),(128180,3,36338,3,1672319399),(128181,3,36339,3,1672319399),(128182,3,36340,3,1672319399),(128183,3,36341,3,1672319399),(128184,3,36342,3,1672319399),(128185,3,36343,3,1672319399),(128186,3,36344,3,1672319399),(128187,3,36345,3,1672319399),(128188,3,36346,3,1672319399),(128189,3,36347,3,1672319399),(128190,3,36348,3,1672319399),(128191,3,36349,3,1672319399),(128192,3,36377,3,1672319399),(128193,3,36378,3,1672319399),(128194,3,36379,3,1672319399),(128195,3,36380,3,1672319399),(128196,3,36381,3,1672319399),(128197,3,36382,3,1672319399),(128198,3,36419,3,1672319399),(128199,3,36420,3,1672319399),(128200,3,36421,3,1672319399),(128201,3,36422,3,1672319399),(128202,3,36423,3,1672319399),(128203,3,36424,3,1672319399),(128204,3,36425,3,1672319399),(128205,3,36426,3,1672319399),(128206,3,36427,3,1672319399),(128207,3,36428,3,1672319399),(128208,3,36429,3,1672319399),(128209,3,36430,3,1672319399),(128210,3,36431,3,1672319399),(128211,3,36459,3,1672319399),(128212,3,36460,3,1672319399),(128213,3,36461,3,1672319399),(128214,3,36462,3,1672319399),(128215,3,36463,3,1672319399),(128216,3,36464,3,1672319399),(128217,3,36501,3,1672319399),(128218,3,36502,3,1672319399),(128219,3,36503,3,1672319399),(128220,3,36504,3,1672319399),(128221,3,36505,3,1672319399),(128222,3,36506,3,1672319399),(128223,3,36507,3,1672319399),(128224,3,36508,3,1672319399),(128225,3,36509,3,1672319399),(128226,3,36510,3,1672319399),(128227,3,36511,3,1672319399),(128228,3,36512,3,1672319399),(128229,3,36513,3,1672319399),(128230,3,36822,3,1672319399),(128231,3,36823,3,1672319399),(128232,3,40190,3,1672319399),(128233,3,40191,3,1672319399),(128234,3,40192,3,1672319399),(128235,3,40451,3,1672319399),(128236,3,40600,3,1672319399),(128237,3,40601,3,1672319399),(128238,3,40602,3,1672319399),(128239,3,40603,3,1672319399),(128240,3,40604,3,1672319399),(128241,3,40605,3,1672319399),(128242,3,40606,3,1672319399),(128243,3,40607,3,1672319399),(128244,3,40608,3,1672319399),(128245,3,40609,3,1672319399),(128246,3,40610,3,1672319399),(128247,3,40611,3,1672319399),(128248,3,40612,3,1672319399),(128249,3,40613,3,1672319399),(128250,3,40614,3,1672319399),(128251,3,40629,3,1672319399),(128252,3,40630,3,1672319399),(128253,3,40631,3,1672319399),(128254,3,40632,3,1672319399),(128255,3,40633,3,1672319399),(128256,3,40634,3,1672319399),(128257,3,40635,3,1672319399),(128258,3,40636,3,1672319399),(128259,3,40637,3,1672319399),(128260,3,40638,3,1672319399),(128261,3,40639,3,1672319399),(128262,3,40640,3,1672319399),(128263,3,40641,3,1672319399),(128264,3,40642,3,1672319399),(128265,3,40708,3,1672319399),(128266,3,40709,3,1672319399),(128267,3,40710,3,1672319399),(128268,3,40711,3,1672319399),(128269,3,40712,3,1672319399),(128270,3,40713,3,1672319399),(128271,3,40714,3,1672319399),(128272,3,40715,3,1672319399),(128273,3,40716,3,1672319399),(128274,3,40717,3,1672319399),(128275,3,40718,3,1672319399),(128276,3,40731,3,1672319399),(128277,3,40732,3,1672319399),(128278,3,40733,3,1672319399),(128279,3,40734,3,1672319399),(128280,3,40735,3,1672319399),(128281,3,40736,3,1672319399),(128282,3,40737,3,1672319399),(128283,3,40738,3,1672319399),(128284,3,40739,3,1672319399),(128285,3,40740,3,1672319399),(128286,3,40741,3,1672319399),(128287,3,40752,3,1672319399),(128288,3,40753,3,1672319399),(128289,3,40754,3,1672319399),(128290,3,40755,3,1672319399),(128291,3,40756,3,1672319399),(128292,3,40757,3,1672319399),(128293,3,40758,3,1672319399),(128294,3,40759,3,1672319399),(128295,3,40760,3,1672319399),(128296,3,40761,3,1672319399),(128297,3,40762,3,1672319399),(128298,3,40775,3,1672319399),(128299,3,40776,3,1672319399),(128300,3,40777,3,1672319399),(128301,3,40778,3,1672319399),(128302,3,40779,3,1672319399),(128303,3,40780,3,1672319399),(128304,3,40781,3,1672319399),(128305,3,40782,3,1672319399),(128306,3,40783,3,1672319399),(128307,3,40784,3,1672319399),(128308,3,40785,3,1672319399),(128309,3,40821,3,1672319399),(128310,3,40822,3,1672319399),(128311,3,40823,3,1672319399),(128312,3,40824,3,1672319399),(128313,3,40825,3,1672319399),(128314,3,40826,3,1672319399),(128315,3,40827,3,1672319399),(128316,3,40828,3,1672319399),(128317,3,40829,3,1672319399),(128318,3,40830,3,1672319399),(128319,3,40831,3,1672319399),(128320,3,42179,3,1672319399),(128321,3,42180,3,1672319399),(128322,3,42181,3,1672319399),(128323,3,42182,3,1672319399),(128324,3,42183,3,1672319399),(128325,3,42184,3,1672319399),(128326,3,42185,3,1672319399),(128327,3,42186,3,1672319399),(128328,3,42620,3,1672319399),(128329,3,42621,3,1672319399),(128330,3,42622,3,1672319399),(128331,3,42623,3,1672319399),(128332,3,42624,3,1672319399),(128333,3,42625,3,1672319399),(128334,3,42626,3,1672319399),(128335,3,42627,3,1672319399),(128336,3,42628,3,1672319399),(128337,3,42629,3,1672319399),(128338,3,42630,3,1672319399),(128339,3,42631,3,1672319399),(128340,3,42632,3,1672319399),(128341,3,42633,3,1672319399),(128342,3,42634,3,1672319399),(128343,3,42635,3,1672319399),(128344,3,42636,3,1672319399),(128345,3,42637,3,1672319399),(128346,3,42638,3,1672319399),(128347,3,42639,3,1672319399),(128348,3,42640,3,1672319399),(128349,3,42641,3,1672319399),(128350,3,42930,3,1672319399),(128351,3,42931,3,1672319399),(128352,3,42932,3,1672319399),(128353,3,42933,3,1672319399),(128354,3,42934,3,1672319399),(128355,3,42935,3,1672319399),(128356,3,42936,3,1672319399),(128357,3,42937,3,1672319399),(128358,3,42938,3,1672319399),(128359,3,42939,3,1672319399),(128360,3,42940,3,1672319399),(128361,3,42941,3,1672319399),(128362,3,42942,3,1672319399),(128363,3,42943,3,1672319399),(128364,3,42944,3,1672319399),(128365,3,42945,3,1672319399),(128366,3,42946,3,1672319399),(128367,3,42947,3,1672319399),(128368,3,42948,3,1672319399),(128369,3,42949,3,1672319399),(128370,3,42950,3,1672319399),(128371,3,42951,3,1672319399),(128372,3,42952,3,1672319399),(128373,3,42953,3,1672319399),(128374,3,42954,3,1672319399),(128375,3,42955,3,1672319399),(128376,3,42956,3,1672319399),(128377,3,42957,3,1672319399),(128378,3,42958,3,1672319399),(128379,3,42959,3,1672319399),(128380,3,42960,3,1672319399),(128381,3,42961,3,1672319399),(128382,3,42962,3,1672319399),(128383,3,42963,3,1672319399),(128384,3,42964,3,1672319399),(128385,3,42965,3,1672319399),(128386,3,42966,3,1672319399),(128387,3,42967,3,1672319399),(128388,3,42968,3,1672319399),(128389,3,42969,3,1672319399),(128390,3,42970,3,1672319399),(128391,3,42971,3,1672319399),(128392,3,42972,3,1672319399),(128393,3,42973,3,1672319399),(128394,3,42974,3,1672319399),(128395,3,42975,3,1672319399),(128396,3,42976,3,1672319399),(128397,3,42977,3,1672319399),(128398,3,42978,3,1672319399),(128399,3,42979,3,1672319399),(128400,3,42980,3,1672319399),(128401,3,42981,3,1672319399),(128402,3,42982,3,1672319399),(128403,3,42983,3,1672319399),(128404,3,42984,3,1672319399),(128405,3,42985,3,1672319399),(128406,3,43018,3,1672319399),(128407,3,43019,3,1672319399),(128408,3,43020,3,1672319399),(128409,3,43021,3,1672319399),(128410,3,43022,3,1672319399),(128411,3,43023,3,1672319399),(128412,3,43024,3,1672319399),(128413,3,43025,3,1672319399),(128414,3,43026,3,1672319399),(128415,3,43027,3,1672319399),(128416,3,43028,3,1672319399),(128417,3,43029,3,1672319399),(128418,3,43030,3,1672319399),(128419,3,43031,3,1672319399),(128420,3,43032,3,1672319399),(128421,3,43033,3,1672319399),(128422,3,43034,3,1672319399),(128423,3,43035,3,1672319399),(128424,3,43036,3,1672319399),(128425,3,43037,3,1672319399),(128426,3,43038,3,1672319399),(128427,3,43039,3,1672319399),(128428,3,43040,3,1672319399),(128429,3,43041,3,1672319399),(128430,3,43042,3,1672319399),(128431,3,43043,3,1672319399),(128432,3,43044,3,1672319399),(128433,3,43045,3,1672319399),(128434,3,43046,3,1672319399),(128435,3,43081,3,1672319399),(128436,3,43082,3,1672319399),(128437,3,43083,3,1672319399),(128438,3,43084,3,1672319399),(128439,3,43085,3,1672319399),(128440,3,43086,3,1672319399),(128441,3,43087,3,1672319399),(128442,3,43088,3,1672319399),(128443,3,43089,3,1672319399),(128444,3,43090,3,1672319399),(128445,3,43091,3,1672319399),(128446,3,43092,3,1672319399),(128447,3,43093,3,1672319399),(128448,3,43094,3,1672319399),(128449,3,43095,3,1672319399),(128450,3,43096,3,1672319399),(128451,3,43097,3,1672319399),(128452,3,43098,3,1672319399),(128453,3,43099,3,1672319399),(128454,3,43100,3,1672319399),(128455,3,43101,3,1672319399),(128456,3,43102,3,1672319399),(128457,3,43103,3,1672319399),(128458,3,43104,3,1672319399),(128459,3,43105,3,1672319399),(128460,3,43106,3,1672319399),(128461,3,43107,3,1672319399),(128462,3,43108,3,1672319399),(128463,3,43109,3,1672319399),(128464,3,43110,3,1672319399),(128465,3,43111,3,1672319399),(128466,3,43112,3,1672319399),(128467,3,43113,3,1672319399),(128468,3,43114,3,1672319399),(128469,3,43115,3,1672319399),(128470,3,43116,3,1672319399),(128471,3,43117,3,1672319399),(128472,3,43118,3,1672319399),(128473,3,43119,3,1672319399),(128474,3,43120,3,1672319399),(128475,3,43121,3,1672319399),(128476,3,43122,3,1672319399),(128477,3,43123,3,1672319399),(128478,3,43124,3,1672319399),(128479,3,43125,3,1672319399),(128480,3,43126,3,1672319399),(128481,3,43127,3,1672319399),(128482,3,43128,3,1672319399),(128483,3,43129,3,1672319399),(128484,3,43130,3,1672319399),(128485,3,43131,3,1672319399),(128486,3,43132,3,1672319399),(128487,3,43156,3,1672319399),(128488,3,43157,3,1672319399),(128489,3,43158,3,1672319399),(128490,3,43159,3,1672319399),(128491,3,43160,3,1672319399),(128492,3,43161,3,1672319399),(128493,3,43162,3,1672319399),(128494,3,43163,3,1672319399),(128495,3,43164,3,1672319399),(128496,3,43165,3,1672319399),(128497,3,43769,3,1672319399),(128498,3,43780,3,1672319399),(128499,3,43782,3,1672319399),(128500,3,43783,3,1672319399),(128501,3,43784,3,1672319399),(128502,3,43785,3,1672319399),(128503,3,43786,3,1672319399),(128504,3,43788,3,1672319399),(128505,3,43889,3,1672319399),(128506,3,43890,3,1672319399),(128507,3,43891,3,1672319399),(128508,3,43892,3,1672319399),(128509,3,43893,3,1672319399),(128510,3,43894,3,1672319399),(128511,3,43895,3,1672319399),(128512,3,44294,3,1672319399),(128513,3,44295,3,1672319399),(128514,3,44296,3,1672319399),(128515,3,44297,3,1672319399),(128516,3,44298,3,1672319399),(128517,3,44299,3,1672319399),(128518,3,44300,3,1672319399),(128519,3,44301,3,1672319399),(128520,3,44302,3,1672319399),(128521,3,44303,3,1672319399),(128522,3,44304,3,1672319399),(128523,3,44305,3,1672319399),(128524,3,44306,3,1672319399),(128525,3,44307,3,1672319399),(128526,3,44308,3,1672319399),(128527,3,44309,3,1672319399),(128528,3,44310,3,1672319399),(128529,3,44311,3,1672319399),(128530,3,44312,3,1672319399),(128531,3,44313,3,1672319399),(128532,3,44381,3,1672319399),(128533,3,44382,3,1672319399),(128534,3,44383,3,1672319399),(128535,3,44384,3,1672319399),(128536,3,44385,3,1672319399),(128537,3,44386,3,1672319399),(128538,3,44387,3,1672319399),(128539,3,44388,3,1672319399),(128540,3,44389,3,1672319399),(128541,3,44390,3,1672319399),(128542,3,44391,3,1672319399),(128543,3,44392,3,1672319399),(128544,3,44393,3,1672319399),(128545,3,44394,3,1672319399),(128546,3,44430,3,1672319399),(128547,3,44433,3,1672319399),(128548,1,10075,3,1672319399),(128549,1,10077,3,1672319399),(128550,1,10093,3,1672319399),(128551,1,10169,3,1672319399),(128552,1,10183,3,1672319399),(128553,1,10185,3,1672319399),(128554,1,10204,3,1672319399),(128555,1,10215,3,1672319399),(128556,1,10220,3,1672319399),(128557,1,10221,3,1672319399),(128558,1,10222,3,1672319399),(128559,1,10223,3,1672319399),(128560,1,10224,3,1672319399),(128561,1,10227,3,1672319399),(128562,1,10253,3,1672319399),(128563,1,10255,3,1672319399),(128564,1,10304,3,1672319399),(128565,1,10305,3,1672319399),(128566,1,10306,3,1672319399),(128567,1,10307,3,1672319399),(128568,1,10308,3,1672319399),(128569,1,10309,3,1672319399),(128570,1,10318,3,1672319399),(128571,1,10322,3,1672319399),(128572,1,10323,3,1672319399),(128573,1,10324,3,1672319399),(128574,1,10362,3,1672319399),(128575,1,10363,3,1672319399),(128576,1,10365,3,1672319399),(128577,1,10380,3,1672319399),(128578,1,10414,3,1672319399),(128579,1,10417,3,1672319399),(128580,1,10419,3,1672319399),(128581,1,10434,3,1672319399),(128582,1,10435,3,1672319399),(128583,1,10436,3,1672319399),(128584,1,10437,3,1672319399),(128585,1,10438,3,1672319399),(128586,1,10439,3,1672319399),(128587,1,10440,3,1672319399),(128588,1,10441,3,1672319399),(128589,1,10442,3,1672319399),(128590,1,10519,3,1672319399),(128591,1,10520,3,1672319399),(128592,1,10521,3,1672319399),(128593,1,10522,3,1672319399),(128594,1,10546,3,1672319399),(128595,1,10547,3,1672319399),(128596,1,10548,3,1672319399),(128597,1,10551,3,1672319399),(128598,3,27079,2,1672319404),(128599,3,27080,2,1672319404),(128600,3,27081,2,1672319404),(128601,3,27082,2,1672319404),(128602,3,27083,2,1672319404),(128603,3,27084,2,1672319404),(128604,3,27085,2,1672319404),(128605,3,27086,2,1672319404),(128606,3,27087,2,1672319404),(128607,3,27099,2,1672319404),(128608,3,27100,2,1672319404),(128609,3,27101,2,1672319404),(128610,3,27102,2,1672319404),(128611,3,27103,2,1672319404),(128612,3,27104,2,1672319404),(128613,3,27105,2,1672319404),(128614,3,27106,2,1672319404),(128615,3,27107,2,1672319404),(128616,3,27119,2,1672319404),(128617,3,27120,2,1672319404),(128618,3,27121,2,1672319404),(128619,3,27122,2,1672319404),(128620,3,27123,2,1672319404),(128621,3,27124,2,1672319404),(128622,3,27125,2,1672319404),(128623,3,27126,2,1672319404),(128624,3,27127,2,1672319404),(128625,3,27748,2,1672319404),(128626,3,27749,2,1672319404),(128627,3,27750,2,1672319404),(128628,3,27751,2,1672319404),(128629,3,27753,2,1672319404),(128630,3,27754,2,1672319404),(128631,3,27755,2,1672319404),(128632,3,27783,2,1672319404),(128633,3,27784,2,1672319404),(128634,3,27785,2,1672319404),(128635,3,27786,2,1672319404),(128636,3,27787,2,1672319404),(128637,3,27821,2,1672319404),(128638,3,27822,2,1672319404),(128639,3,27823,2,1672319404),(128640,3,28150,2,1672319404),(128641,3,28153,2,1672319404),(128642,3,28154,2,1672319404),(128643,3,28155,2,1672319404),(128644,3,28156,2,1672319404),(128645,3,28157,2,1672319404),(128646,3,28158,2,1672319404),(128647,3,28404,2,1672319404),(128648,3,28405,2,1672319404),(128649,3,28406,2,1672319404),(128650,3,28407,2,1672319404),(128651,3,28408,2,1672319404),(128652,3,28409,2,1672319404),(128653,3,28411,2,1672319404),(128654,3,28412,2,1672319404),(128655,3,28413,2,1672319404),(128656,3,28414,2,1672319404),(128657,3,28415,2,1672319404),(128658,3,28416,2,1672319404),(128659,3,28417,2,1672319404),(128660,3,28418,2,1672319404),(128661,3,28419,2,1672319404),(128662,3,28420,2,1672319404),(128663,3,28421,2,1672319404),(128664,3,28422,2,1672319404),(128665,3,28423,2,1672319404),(128666,3,28424,2,1672319404),(128667,3,28425,2,1672319404),(128668,3,28474,2,1672319404),(128669,3,28475,2,1672319404),(128670,3,28476,2,1672319404),(128671,3,28477,2,1672319404),(128672,3,28478,2,1672319404),(128673,3,28479,2,1672319404),(128674,3,28480,2,1672319404),(128675,3,28481,2,1672319404),(128676,3,28894,2,1672319404),(128677,3,29014,2,1672319404),(128678,3,29015,2,1672319404),(128679,3,29016,2,1672319404),(128680,3,29017,2,1672319404),(128681,3,29018,2,1672319404),(128682,3,29019,2,1672319404),(128683,3,29020,2,1672319404),(128684,3,29021,2,1672319404),(128685,3,29022,2,1672319404),(128686,3,29023,2,1672319404),(128687,3,29024,2,1672319404),(128688,3,29025,2,1672319404),(128689,3,29026,2,1672319404),(128690,3,29027,2,1672319404),(128691,3,29028,2,1672319404),(128692,3,29029,2,1672319404),(128693,3,29030,2,1672319404),(128694,3,29048,2,1672319404),(128695,3,29210,2,1672319404),(128696,3,29211,2,1672319404),(128697,3,29212,2,1672319404),(128698,3,29213,2,1672319404),(128699,3,29432,2,1672319404),(128700,3,29433,2,1672319404),(128701,3,29434,2,1672319404),(128702,3,29435,2,1672319404),(128703,3,29436,2,1672319404),(128704,3,29437,2,1672319404),(128705,3,29438,2,1672319404),(128706,3,29439,2,1672319404),(128707,3,29440,2,1672319404),(128708,3,29441,2,1672319404),(128709,3,29442,2,1672319404),(128710,3,29443,2,1672319404),(128711,3,29444,2,1672319404),(128712,3,29445,2,1672319404),(128713,3,29446,2,1672319404),(128714,3,29447,2,1672319404),(128715,3,29448,2,1672319404),(128716,3,29449,2,1672319404),(128717,3,29450,2,1672319404),(128718,3,29451,2,1672319404),(128719,3,29452,2,1672319404),(128720,3,29453,2,1672319404),(128721,3,30113,2,1672319404),(128722,3,30114,2,1672319404),(128723,3,30115,2,1672319404),(128724,3,30116,2,1672319404),(128725,3,30118,2,1672319404),(128726,3,31006,2,1672319404),(128727,3,31007,2,1672319404),(128728,3,31008,2,1672319404),(128729,3,31009,2,1672319404),(128730,3,31048,2,1672319404),(128731,3,31049,2,1672319404),(128732,3,31050,2,1672319404),(128733,3,31051,2,1672319404),(128734,3,31370,2,1672319404),(128735,3,31371,2,1672319404),(128736,3,31372,2,1672319404),(128737,3,31379,2,1672319404),(128738,3,31380,2,1672319404),(128739,3,31381,2,1672319404),(128740,3,31382,2,1672319404),(128741,3,31383,2,1672319404),(128742,3,31384,2,1672319404),(128743,3,31902,2,1672319404),(128744,3,31903,2,1672319404),(128745,3,31904,2,1672319404),(128746,3,31905,2,1672319404),(128747,3,31906,2,1672319404),(128748,3,31907,2,1672319404),(128749,3,31908,2,1672319404),(128750,3,31932,2,1672319404),(128751,3,31933,2,1672319404),(128752,3,31934,2,1672319404),(128753,3,31935,2,1672319404),(128754,3,31936,2,1672319404),(128755,3,31937,2,1672319404),(128756,3,33467,2,1672319404),(128757,3,33468,2,1672319404),(128758,3,33469,2,1672319404),(128759,3,33470,2,1672319404),(128760,3,33471,2,1672319404),(128761,3,33472,2,1672319404),(128762,3,33473,2,1672319404),(128763,3,33474,2,1672319404),(128764,3,33475,2,1672319404),(128765,3,33476,2,1672319404),(128766,3,33477,2,1672319404),(128767,3,33478,2,1672319404),(128768,3,33479,2,1672319404),(128769,3,33480,2,1672319404),(128770,3,33481,2,1672319404),(128771,3,33482,2,1672319404),(128772,3,33483,2,1672319404),(128773,3,33484,2,1672319404),(128774,3,33485,2,1672319404),(128775,3,33486,2,1672319404),(128776,3,33487,2,1672319404),(128777,3,33488,2,1672319404),(128778,3,33489,2,1672319404),(128779,3,33490,2,1672319404),(128780,3,33552,2,1672319404),(128781,3,33553,2,1672319404),(128782,3,33554,2,1672319404),(128783,3,33555,2,1672319404),(128784,3,33556,2,1672319404),(128785,3,33557,2,1672319404),(128786,3,33558,2,1672319404),(128787,3,33559,2,1672319404),(128788,3,33560,2,1672319404),(128789,3,33561,2,1672319404),(128790,3,33562,2,1672319404),(128791,3,33563,2,1672319404),(128792,3,33564,2,1672319404),(128793,3,33565,2,1672319404),(128794,3,33566,2,1672319404),(128795,3,33567,2,1672319404),(128796,3,33568,2,1672319404),(128797,3,33569,2,1672319404),(128798,3,33570,2,1672319404),(128799,3,33571,2,1672319404),(128800,3,33572,2,1672319404),(128801,3,33573,2,1672319404),(128802,3,33574,2,1672319404),(128803,3,33575,2,1672319404),(128804,3,33576,2,1672319404),(128805,3,33577,2,1672319404),(128806,3,33578,2,1672319404),(128807,3,33579,2,1672319404),(128808,3,33580,2,1672319404),(128809,3,33581,2,1672319404),(128810,3,33582,2,1672319404),(128811,3,33584,2,1672319404),(128812,3,33585,2,1672319404),(128813,3,33586,2,1672319404),(128814,3,33587,2,1672319404),(128815,3,33588,2,1672319404),(128816,3,33589,2,1672319404),(128817,3,33590,2,1672319404),(128818,3,33591,2,1672319404),(128819,3,33592,2,1672319404),(128820,3,33593,2,1672319404),(128821,3,33594,2,1672319404),(128822,3,33595,2,1672319404),(128823,3,33596,2,1672319404),(128824,3,33597,2,1672319404),(128825,3,33598,2,1672319404),(128826,3,33599,2,1672319404),(128827,3,33600,2,1672319404),(128828,3,33601,2,1672319404),(128829,3,33602,2,1672319404),(128830,3,33603,2,1672319404),(128831,3,33604,2,1672319404),(128832,3,33605,2,1672319404),(128833,3,33606,2,1672319404),(128834,3,33607,2,1672319404),(128835,3,33608,2,1672319404),(128836,3,33609,2,1672319404),(128837,3,33610,2,1672319404),(128838,3,33611,2,1672319404),(128839,3,33612,2,1672319404),(128840,3,33613,2,1672319404),(128841,3,33614,2,1672319404),(128842,3,33615,2,1672319404),(128843,3,33616,2,1672319404),(128844,3,33617,2,1672319404),(128845,3,33618,2,1672319404),(128846,3,33619,2,1672319404),(128847,3,33621,2,1672319404),(128848,3,33622,2,1672319404),(128849,3,33623,2,1672319404),(128850,3,33624,2,1672319404),(128851,3,33625,2,1672319404),(128852,3,33626,2,1672319404),(128853,3,33627,2,1672319404),(128854,3,33628,2,1672319404),(128855,3,33629,2,1672319404),(128856,3,33703,2,1672319404),(128857,3,33704,2,1672319404),(128858,3,33705,2,1672319404),(128859,3,33706,2,1672319404),(128860,3,33707,2,1672319404),(128861,3,33708,2,1672319404),(128862,3,33709,2,1672319404),(128863,3,33710,2,1672319404),(128864,3,33711,2,1672319404),(128865,3,33712,2,1672319404),(128866,3,33713,2,1672319404),(128867,3,33714,2,1672319404),(128868,3,33715,2,1672319404),(128869,3,33716,2,1672319404),(128870,3,33717,2,1672319404),(128871,3,33718,2,1672319404),(128872,3,33719,2,1672319404),(128873,3,33720,2,1672319404),(128874,3,33721,2,1672319404),(128875,3,33722,2,1672319404),(128876,3,33723,2,1672319404),(128877,3,33724,2,1672319404),(128878,3,33725,2,1672319404),(128879,3,33726,2,1672319404),(128880,3,33727,2,1672319404),(128881,3,33728,2,1672319404),(128882,3,33729,2,1672319404),(128883,3,33730,2,1672319404),(128884,3,33731,2,1672319404),(128885,3,33732,2,1672319404),(128886,3,33733,2,1672319404),(128887,3,33734,2,1672319404),(128888,3,33735,2,1672319404),(128889,3,33736,2,1672319404),(128890,3,33737,2,1672319404),(128891,3,33738,2,1672319404),(128892,3,33739,2,1672319404),(128893,3,33740,2,1672319404),(128894,3,33741,2,1672319404),(128895,3,33742,2,1672319404),(128896,3,33743,2,1672319404),(128897,3,36567,2,1672319404),(128898,3,36568,2,1672319404),(128899,3,36569,2,1672319404),(128900,3,36570,2,1672319404),(128901,3,36571,2,1672319404),(128902,3,36572,2,1672319404),(128903,3,36573,2,1672319404),(128904,3,36574,2,1672319404),(128905,3,36575,2,1672319404),(128906,3,36576,2,1672319404),(128907,3,36577,2,1672319404),(128908,3,36578,2,1672319404),(128909,3,36579,2,1672319404),(128910,3,36580,2,1672319404),(128911,3,36581,2,1672319404),(128912,3,36582,2,1672319404),(128913,3,36583,2,1672319404),(128914,3,36584,2,1672319404),(128915,3,36585,2,1672319404),(128916,3,36586,2,1672319404),(128917,3,36587,2,1672319404),(128918,3,36588,2,1672319404),(128919,3,36589,2,1672319404),(128920,3,36590,2,1672319404),(128921,3,36591,2,1672319404),(128922,3,36592,2,1672319404),(128923,3,36593,2,1672319404),(128924,3,36594,2,1672319404),(128925,3,36595,2,1672319404),(128926,3,36596,2,1672319404),(128927,3,36597,2,1672319404),(128928,3,36624,2,1672319404),(128929,3,36625,2,1672319404),(128930,3,36626,2,1672319404),(128931,3,36627,2,1672319404),(128932,3,36628,2,1672319404),(128933,3,36629,2,1672319404),(128934,3,36630,2,1672319404),(128935,3,36631,2,1672319404),(128936,3,36632,2,1672319404),(128937,3,36633,2,1672319404),(128938,3,36634,2,1672319404),(128939,3,36635,2,1672319404),(128940,3,36636,2,1672319404),(128941,3,36637,2,1672319404),(128942,3,36638,2,1672319404),(128943,3,36639,2,1672319404),(128944,3,36640,2,1672319404),(128945,3,36641,2,1672319404),(128946,3,36642,2,1672319404),(128947,3,36643,2,1672319404),(128948,3,36644,2,1672319404),(128949,3,36645,2,1672319404),(128950,3,36646,2,1672319404),(128951,3,36647,2,1672319404),(128952,3,36648,2,1672319404),(128953,3,36649,2,1672319404),(128954,3,36650,2,1672319404),(128955,3,36651,2,1672319404),(128956,3,36652,2,1672319404),(128957,3,36653,2,1672319404),(128958,3,36654,2,1672319404),(128959,3,36681,2,1672319404),(128960,3,36682,2,1672319404),(128961,3,36683,2,1672319404),(128962,3,36684,2,1672319404),(128963,3,36685,2,1672319404),(128964,3,36686,2,1672319404),(128965,3,36687,2,1672319404),(128966,3,36688,2,1672319404),(128967,3,36689,2,1672319404),(128968,3,36690,2,1672319404),(128969,3,36691,2,1672319404),(128970,3,36692,2,1672319404),(128971,3,36693,2,1672319404),(128972,3,36694,2,1672319404),(128973,3,36695,2,1672319404),(128974,3,36696,2,1672319404),(128975,3,36697,2,1672319404),(128976,3,36698,2,1672319404),(128977,3,36699,2,1672319404),(128978,3,36700,2,1672319404),(128979,3,36701,2,1672319404),(128980,3,36702,2,1672319404),(128981,3,36703,2,1672319404),(128982,3,36704,2,1672319404),(128983,3,36705,2,1672319404),(128984,3,36706,2,1672319404),(128985,3,36707,2,1672319404),(128986,3,36708,2,1672319404),(128987,3,36709,2,1672319404),(128988,3,36710,2,1672319404),(128989,3,36711,2,1672319404),(128990,3,36738,2,1672319404),(128991,3,36739,2,1672319404),(128992,3,36740,2,1672319404),(128993,3,36741,2,1672319404),(128994,3,36742,2,1672319404),(128995,3,36743,2,1672319404),(128996,3,36744,2,1672319404),(128997,3,36745,2,1672319404),(128998,3,36746,2,1672319404),(128999,3,36747,2,1672319404),(129000,3,36748,2,1672319404),(129001,3,36749,2,1672319404),(129002,3,36750,2,1672319404),(129003,3,36751,2,1672319404),(129004,3,36752,2,1672319404),(129005,3,36753,2,1672319404),(129006,3,36754,2,1672319404),(129007,3,36755,2,1672319404),(129008,3,36756,2,1672319404),(129009,3,36757,2,1672319404),(129010,3,36758,2,1672319404),(129011,3,36759,2,1672319404),(129012,3,36760,2,1672319404),(129013,3,36761,2,1672319404),(129014,3,36762,2,1672319404),(129015,3,36763,2,1672319404),(129016,3,36764,2,1672319404),(129017,3,36765,2,1672319404),(129018,3,36766,2,1672319404),(129019,3,36767,2,1672319404),(129020,3,36768,2,1672319404),(129021,3,36814,2,1672319404),(129022,3,36815,2,1672319404),(129023,3,36816,2,1672319404),(129024,3,36817,2,1672319404),(129025,3,36818,2,1672319404),(129026,3,36819,2,1672319404),(129027,3,39861,2,1672319404),(129028,3,39862,2,1672319404),(129029,3,39863,2,1672319404),(129030,3,39864,2,1672319404),(129031,3,39865,2,1672319404),(129032,3,39866,2,1672319404),(129033,3,39867,2,1672319404),(129034,3,39868,2,1672319404),(129035,3,39869,2,1672319404),(129036,3,39870,2,1672319404),(129037,3,39871,2,1672319404),(129038,3,39872,2,1672319404),(129039,3,39873,2,1672319404),(129040,3,39874,2,1672319404),(129041,3,39875,2,1672319404),(129042,3,39890,2,1672319404),(129043,3,39891,2,1672319404),(129044,3,39892,2,1672319404),(129045,3,39893,2,1672319404),(129046,3,39894,2,1672319404),(129047,3,39895,2,1672319404),(129048,3,39896,2,1672319404),(129049,3,39897,2,1672319404),(129050,3,39898,2,1672319404),(129051,3,39899,2,1672319404),(129052,3,39900,2,1672319404),(129053,3,39901,2,1672319404),(129054,3,39902,2,1672319404),(129055,3,39903,2,1672319404),(129056,3,39904,2,1672319404),(129057,3,39921,2,1672319404),(129058,3,39922,2,1672319404),(129059,3,39923,2,1672319404),(129060,3,39924,2,1672319404),(129061,3,39925,2,1672319404),(129062,3,39926,2,1672319404),(129063,3,39927,2,1672319404),(129064,3,39928,2,1672319404),(129065,3,39929,2,1672319404),(129066,3,39930,2,1672319404),(129067,3,39931,2,1672319404),(129068,3,39932,2,1672319404),(129069,3,39933,2,1672319404),(129070,3,39934,2,1672319404),(129071,3,39935,2,1672319404),(129072,3,39936,2,1672319404),(129073,3,39943,2,1672319404),(129074,3,39944,2,1672319404),(129075,3,39945,2,1672319404),(129076,3,39946,2,1672319404),(129077,3,39947,2,1672319404),(129078,3,39948,2,1672319404),(129079,3,39949,2,1672319404),(129080,3,39950,2,1672319404),(129081,3,39951,2,1672319404),(129082,3,39952,2,1672319404),(129083,3,39953,2,1672319404),(129084,3,39954,2,1672319404),(129085,3,39955,2,1672319404),(129086,3,39956,2,1672319404),(129087,3,39957,2,1672319404),(129088,3,39958,2,1672319404),(129089,3,39959,2,1672319404),(129090,3,39960,2,1672319404),(129091,3,39961,2,1672319404),(129092,3,39962,2,1672319404),(129093,3,39963,2,1672319404),(129094,3,39964,2,1672319404),(129095,3,39965,2,1672319404),(129096,3,39966,2,1672319404),(129097,3,39967,2,1672319404),(129098,3,39968,2,1672319404),(129099,3,39969,2,1672319404),(129100,3,39970,2,1672319404),(129101,3,39971,2,1672319404),(129102,3,39972,2,1672319404),(129103,3,39973,2,1672319404),(129104,3,39974,2,1672319404),(129105,3,39975,2,1672319404),(129106,3,39976,2,1672319404),(129107,3,40003,2,1672319404),(129108,3,40004,2,1672319404),(129109,3,40005,2,1672319404),(129110,3,40006,2,1672319404),(129111,3,40007,2,1672319404),(129112,3,40008,2,1672319404),(129113,3,40009,2,1672319404),(129114,3,40036,2,1672319404),(129115,3,40037,2,1672319404),(129116,3,40038,2,1672319404),(129117,3,40039,2,1672319404),(129118,3,40040,2,1672319404),(129119,3,40041,2,1672319404),(129120,3,40042,2,1672319404),(129121,3,40043,2,1672319404),(129122,3,40044,2,1672319404),(129123,3,40045,2,1672319404),(129124,3,40046,2,1672319404),(129125,3,40047,2,1672319404),(129126,3,40048,2,1672319404),(129127,3,40049,2,1672319404),(129128,3,40050,2,1672319404),(129129,3,40051,2,1672319404),(129130,3,40052,2,1672319404),(129131,3,40053,2,1672319404),(129132,3,40054,2,1672319404),(129133,3,40055,2,1672319404),(129134,3,40056,2,1672319404),(129135,3,40057,2,1672319404),(129136,3,40058,2,1672319404),(129137,3,40059,2,1672319404),(129138,3,40060,2,1672319404),(129139,3,40061,2,1672319404),(129140,3,40062,2,1672319404),(129141,3,40063,2,1672319404),(129142,3,40064,2,1672319404),(129143,3,40065,2,1672319404),(129144,3,40066,2,1672319404),(129145,3,40067,2,1672319404),(129146,3,40068,2,1672319404),(129147,3,40069,2,1672319404),(129148,3,40070,2,1672319404),(129149,3,40071,2,1672319404),(129150,3,40072,2,1672319404),(129151,3,40073,2,1672319404),(129152,3,40074,2,1672319404),(129153,3,40075,2,1672319404),(129154,3,40076,2,1672319404),(129155,3,40077,2,1672319404),(129156,3,40078,2,1672319404),(129157,3,40079,2,1672319404),(129158,3,40080,2,1672319404),(129159,3,40081,2,1672319404),(129160,3,40082,2,1672319404),(129161,3,40083,2,1672319404),(129162,3,40084,2,1672319404),(129163,3,40085,2,1672319404),(129164,3,40086,2,1672319404),(129165,3,40087,2,1672319404),(129166,3,40088,2,1672319404),(129167,3,40089,2,1672319404),(129168,3,40090,2,1672319404),(129169,3,40091,2,1672319404),(129170,3,40092,2,1672319404),(129171,3,40093,2,1672319404),(129172,3,40094,2,1672319404),(129173,3,40857,2,1672319404),(129174,3,40858,2,1672319404),(129175,3,40859,2,1672319404),(129176,3,40860,2,1672319404),(129177,3,40861,2,1672319404),(129178,3,40862,2,1672319404),(129179,3,40863,2,1672319404),(129180,3,40864,2,1672319404),(129181,3,40865,2,1672319404),(129182,3,40866,2,1672319404),(129183,3,40880,2,1672319404),(129184,3,40881,2,1672319404),(129185,3,40882,2,1672319404),(129186,3,40883,2,1672319404),(129187,3,40884,2,1672319404),(129188,3,40885,2,1672319404),(129189,3,40886,2,1672319404),(129190,3,40887,2,1672319404),(129191,3,40888,2,1672319404),(129192,3,40889,2,1672319404),(129193,3,40902,2,1672319404),(129194,3,40903,2,1672319404),(129195,3,40904,2,1672319404),(129196,3,40905,2,1672319404),(129197,3,40906,2,1672319404),(129198,3,40907,2,1672319404),(129199,3,40908,2,1672319404),(129200,3,40909,2,1672319404),(129201,3,40910,2,1672319404),(129202,3,40924,2,1672319404),(129203,3,40925,2,1672319404),(129204,3,40926,2,1672319404),(129205,3,40927,2,1672319404),(129206,3,40928,2,1672319404),(129207,3,40929,2,1672319404),(129208,3,40930,2,1672319404),(129209,3,40931,2,1672319404),(129210,3,40932,2,1672319404),(129211,3,40933,2,1672319404),(129212,3,42277,2,1672319404),(129213,3,42278,2,1672319404),(129214,3,42279,2,1672319404),(129215,3,42280,2,1672319404),(129216,3,42281,2,1672319404),(129217,3,42282,2,1672319404),(129218,3,42283,2,1672319404),(129219,3,42284,2,1672319404),(129220,3,42285,2,1672319404),(129221,3,42286,2,1672319404),(129222,3,42287,2,1672319404),(129223,3,42288,2,1672319404),(129224,3,42289,2,1672319404),(129225,3,42290,2,1672319404),(129226,3,42291,2,1672319404),(129227,3,42307,2,1672319404),(129228,3,42308,2,1672319404),(129229,3,42309,2,1672319404),(129230,3,42310,2,1672319404),(129231,3,42311,2,1672319404),(129232,3,42312,2,1672319404),(129233,3,42363,2,1672319404),(129234,3,42364,2,1672319404),(129235,3,42365,2,1672319404),(129236,3,42366,2,1672319404),(129237,3,42367,2,1672319404),(129238,3,42368,2,1672319404),(129239,3,42369,2,1672319404),(129240,3,42370,2,1672319404),(129241,3,42371,2,1672319404),(129242,3,42372,2,1672319404),(129243,3,42373,2,1672319404),(129244,3,42374,2,1672319404),(129245,3,42375,2,1672319404),(129246,3,42376,2,1672319404),(129247,3,42377,2,1672319404),(129248,3,42378,2,1672319404),(129249,3,42379,2,1672319404),(129250,3,42380,2,1672319404),(129251,3,42381,2,1672319404),(129252,3,42382,2,1672319404),(129253,3,42383,2,1672319404),(129254,3,42415,2,1672319404),(129255,3,42416,2,1672319404),(129256,3,42417,2,1672319404),(129257,3,42418,2,1672319404),(129258,3,42419,2,1672319404),(129259,3,42420,2,1672319404),(129260,3,42421,2,1672319404),(129261,3,42422,2,1672319404),(129262,3,42423,2,1672319404),(129263,3,42424,2,1672319404),(129264,3,42425,2,1672319404),(129265,3,42426,2,1672319404),(129266,3,42427,2,1672319404),(129267,3,42428,2,1672319404),(129268,3,42429,2,1672319404),(129269,3,42430,2,1672319404),(129270,3,42431,2,1672319404),(129271,3,42432,2,1672319404),(129272,3,42433,2,1672319404),(129273,3,42434,2,1672319404),(129274,3,42435,2,1672319404),(129275,3,42436,2,1672319404),(129276,3,42437,2,1672319404),(129277,3,42438,2,1672319404),(129278,3,42439,2,1672319404),(129279,3,42440,2,1672319404),(129280,3,42441,2,1672319404),(129281,3,42442,2,1672319404),(129282,3,42679,2,1672319404),(129283,3,42682,2,1672319404),(129284,3,42691,2,1672319404),(129285,3,42692,2,1672319404),(129286,3,42693,2,1672319404),(129287,3,42694,2,1672319404),(129288,3,42695,2,1672319404),(129289,3,42696,2,1672319404),(129290,3,42697,2,1672319404),(129291,3,42698,2,1672319404),(129292,3,42699,2,1672319404),(129293,3,42706,2,1672319404),(129294,3,42707,2,1672319404),(129295,3,42708,2,1672319404),(129296,3,42709,2,1672319404),(129297,3,42710,2,1672319404),(129298,3,42711,2,1672319404),(129299,3,42712,2,1672319404),(129300,3,42713,2,1672319404),(129301,3,42714,2,1672319404),(129302,3,42715,2,1672319404),(129303,3,42716,2,1672319404),(129304,3,42717,2,1672319404),(129305,3,42718,2,1672319404),(129306,3,42719,2,1672319404),(129307,3,42720,2,1672319404),(129308,3,42721,2,1672319404),(129309,3,42722,2,1672319404),(129310,3,42723,2,1672319404),(129311,3,43194,2,1672319404),(129312,3,43195,2,1672319404),(129313,3,43196,2,1672319404),(129314,3,43197,2,1672319404),(129315,3,43198,2,1672319404),(129316,3,43199,2,1672319404),(129317,3,43200,2,1672319404),(129318,3,43201,2,1672319404),(129319,3,43202,2,1672319404),(129320,3,43203,2,1672319404),(129321,3,43204,2,1672319404),(129322,3,43205,2,1672319404),(129323,3,43206,2,1672319404),(129324,3,43207,2,1672319404),(129325,3,43208,2,1672319404),(129326,3,43209,2,1672319404),(129327,3,43210,2,1672319404),(129328,3,43211,2,1672319404),(129329,3,43212,2,1672319404),(129330,3,43213,2,1672319404),(129331,3,43214,2,1672319404),(129332,3,43215,2,1672319404),(129333,3,43216,2,1672319404),(129334,3,43217,2,1672319404),(129335,3,43218,2,1672319404),(129336,3,43219,2,1672319404),(129337,3,43220,2,1672319404),(129338,3,43221,2,1672319404),(129339,3,43222,2,1672319404),(129340,3,43223,2,1672319404),(129341,3,43224,2,1672319404),(129342,3,43225,2,1672319404),(129343,3,43226,2,1672319404),(129344,3,43227,2,1672319404),(129345,3,43228,2,1672319404),(129346,3,43229,2,1672319404),(129347,3,43230,2,1672319404),(129348,3,43231,2,1672319404),(129349,3,43232,2,1672319404),(129350,3,43233,2,1672319404),(129351,3,43234,2,1672319404),(129352,3,43235,2,1672319404),(129353,3,43236,2,1672319404),(129354,3,43237,2,1672319404),(129355,3,43238,2,1672319404),(129356,3,43239,2,1672319404),(129357,3,43240,2,1672319404),(129358,3,43241,2,1672319404),(129359,3,43242,2,1672319404),(129360,3,43243,2,1672319404),(129361,3,43244,2,1672319404),(129362,3,43245,2,1672319404),(129363,3,43246,2,1672319404),(129364,3,43247,2,1672319404),(129365,3,43248,2,1672319404),(129366,3,43249,2,1672319404),(129367,3,43250,2,1672319404),(129368,3,43251,2,1672319404),(129369,3,43252,2,1672319404),(129370,3,43253,2,1672319404),(129371,3,43254,2,1672319404),(129372,3,43255,2,1672319404),(129373,3,43256,2,1672319404),(129374,3,43257,2,1672319404),(129375,3,43258,2,1672319404),(129376,3,43259,2,1672319404),(129377,3,43260,2,1672319404),(129378,3,43261,2,1672319404),(129379,3,43262,2,1672319404),(129380,3,43263,2,1672319404),(129381,3,43264,2,1672319404),(129382,3,43265,2,1672319404),(129383,3,43266,2,1672319404),(129384,3,43267,2,1672319404),(129385,3,43268,2,1672319404),(129386,3,43269,2,1672319404),(129387,3,43270,2,1672319404),(129388,3,43271,2,1672319404),(129389,3,43272,2,1672319404),(129390,3,43273,2,1672319404),(129391,3,43274,2,1672319404),(129392,3,43275,2,1672319404),(129393,3,43276,2,1672319404),(129394,3,43277,2,1672319404),(129395,3,43278,2,1672319404),(129396,3,43279,2,1672319404),(129397,3,43280,2,1672319404),(129398,3,43301,2,1672319404),(129399,3,43302,2,1672319404),(129400,3,43303,2,1672319404),(129401,3,43304,2,1672319404),(129402,3,43305,2,1672319404),(129403,3,43306,2,1672319404),(129404,3,43307,2,1672319404),(129405,3,43308,2,1672319404),(129406,3,43309,2,1672319404),(129407,3,43310,2,1672319404),(129408,3,43311,2,1672319404),(129409,3,43312,2,1672319404),(129410,3,43313,2,1672319404),(129411,3,43314,2,1672319404),(129412,3,43315,2,1672319404),(129413,3,43316,2,1672319404),(129414,3,43317,2,1672319404),(129415,3,43318,2,1672319404),(129416,3,43319,2,1672319404),(129417,3,43320,2,1672319404),(129418,3,43321,2,1672319404),(129419,3,43322,2,1672319404),(129420,3,43323,2,1672319404),(129421,3,43324,2,1672319404),(129422,3,43325,2,1672319404),(129423,3,43326,2,1672319404),(129424,3,43327,2,1672319404),(129425,3,43328,2,1672319404),(129426,3,43329,2,1672319404),(129427,3,43330,2,1672319404),(129428,3,43331,2,1672319404),(129429,3,43332,2,1672319404),(129430,3,43333,2,1672319404),(129431,3,43334,2,1672319404),(129432,3,43335,2,1672319404),(129433,3,43336,2,1672319404),(129434,3,43337,2,1672319404),(129435,3,43338,2,1672319404),(129436,3,43339,2,1672319404),(129437,3,43340,2,1672319404),(129438,3,43341,2,1672319404),(129439,3,43342,2,1672319404),(129440,3,43343,2,1672319404),(129441,3,43344,2,1672319404),(129442,3,43345,2,1672319404),(129443,3,43346,2,1672319404),(129444,3,43347,2,1672319404),(129445,3,43348,2,1672319404),(129446,3,43349,2,1672319404),(129447,3,43350,2,1672319404),(129448,3,43351,2,1672319404),(129449,3,43352,2,1672319404),(129450,3,43353,2,1672319404),(129451,3,43354,2,1672319404),(129452,3,43355,2,1672319404),(129453,3,43356,2,1672319404),(129454,3,43357,2,1672319404),(129455,3,43358,2,1672319404),(129456,3,43359,2,1672319404),(129457,3,43360,2,1672319404),(129458,3,43361,2,1672319404),(129459,3,43362,2,1672319404),(129460,3,43363,2,1672319404),(129461,3,43364,2,1672319404),(129462,3,43365,2,1672319404),(129463,3,43366,2,1672319404),(129464,3,43367,2,1672319404),(129465,3,43368,2,1672319404),(129466,3,43369,2,1672319404),(129467,3,43370,2,1672319404),(129468,3,43371,2,1672319404),(129469,3,43372,2,1672319404),(129470,3,43373,2,1672319404),(129471,3,43374,2,1672319404),(129472,3,43375,2,1672319404),(129473,3,43376,2,1672319404),(129474,3,43377,2,1672319404),(129475,3,43378,2,1672319404),(129476,3,43379,2,1672319404),(129477,3,43380,2,1672319404),(129478,3,43381,2,1672319404),(129479,3,43382,2,1672319404),(129480,3,43383,2,1672319404),(129481,3,43384,2,1672319404),(129482,3,43385,2,1672319404),(129483,3,43386,2,1672319404),(129484,3,43387,2,1672319404),(129485,3,43388,2,1672319404),(129486,3,43389,2,1672319404),(129487,3,43390,2,1672319404),(129488,3,43391,2,1672319404),(129489,3,43392,2,1672319404),(129490,3,43393,2,1672319404),(129491,3,43394,2,1672319404),(129492,3,43395,2,1672319404),(129493,3,43396,2,1672319404),(129494,3,43397,2,1672319404),(129495,3,43421,2,1672319404),(129496,3,43422,2,1672319404),(129497,3,43423,2,1672319404),(129498,3,43424,2,1672319404),(129499,3,43425,2,1672319404),(129500,3,43426,2,1672319404),(129501,3,43427,2,1672319404),(129502,3,43428,2,1672319404),(129503,3,43429,2,1672319404),(129504,3,43430,2,1672319404),(129505,3,43431,2,1672319404),(129506,3,43432,2,1672319404),(129507,3,43433,2,1672319404),(129508,3,43434,2,1672319404),(129509,3,43435,2,1672319404),(129510,3,43436,2,1672319404),(129511,3,43437,2,1672319404),(129512,3,43438,2,1672319404),(129513,3,43439,2,1672319404),(129514,3,43440,2,1672319404),(129515,3,43441,2,1672319404),(129516,3,43442,2,1672319404),(129517,3,43443,2,1672319404),(129518,3,43444,2,1672319404),(129519,3,43445,2,1672319404),(129520,3,43446,2,1672319404),(129521,3,43447,2,1672319404),(129522,3,43448,2,1672319404),(129523,3,43449,2,1672319404),(129524,3,43450,2,1672319404),(129525,3,43451,2,1672319404),(129526,3,43452,2,1672319404),(129527,3,43453,2,1672319404),(129528,3,43454,2,1672319404),(129529,3,43455,2,1672319404),(129530,3,43456,2,1672319404),(129531,3,43457,2,1672319404),(129532,3,43458,2,1672319404),(129533,3,43459,2,1672319404),(129534,3,43460,2,1672319404),(129535,3,43461,2,1672319404),(129536,3,43462,2,1672319404),(129537,3,43463,2,1672319404),(129538,3,43464,2,1672319404),(129539,3,43465,2,1672319404),(129540,3,43466,2,1672319404),(129541,3,43467,2,1672319404),(129542,3,43468,2,1672319404),(129543,3,43469,2,1672319404),(129544,3,43470,2,1672319404),(129545,3,43471,2,1672319404),(129546,3,43472,2,1672319404),(129547,3,43473,2,1672319404),(129548,3,43474,2,1672319404),(129549,3,43475,2,1672319404),(129550,3,43476,2,1672319404),(129551,3,43477,2,1672319404),(129552,3,43478,2,1672319404),(129553,3,43479,2,1672319404),(129554,3,43480,2,1672319404),(129555,3,43481,2,1672319404),(129556,3,43482,2,1672319404),(129557,3,43483,2,1672319404),(129558,3,43484,2,1672319404),(129559,3,43485,2,1672319404),(129560,3,43486,2,1672319404),(129561,3,43487,2,1672319404),(129562,3,43488,2,1672319404),(129563,3,43489,2,1672319404),(129564,3,43490,2,1672319404),(129565,3,43491,2,1672319404),(129566,3,43492,2,1672319404),(129567,3,43493,2,1672319404),(129568,3,43494,2,1672319404),(129569,3,43495,2,1672319404),(129570,3,43496,2,1672319404),(129571,3,43926,2,1672319404),(129572,3,43927,2,1672319404),(129573,3,43928,2,1672319404),(129574,3,43929,2,1672319404),(129575,3,43930,2,1672319404),(129576,3,43931,2,1672319404),(129577,3,43932,2,1672319404),(129578,3,43933,2,1672319404),(129579,3,43934,2,1672319404),(129580,3,43935,2,1672319404),(129581,3,43936,2,1672319404),(129582,3,43937,2,1672319404),(129583,3,43938,2,1672319404),(129584,3,43939,2,1672319404),(129585,3,43940,2,1672319404),(129586,3,43941,2,1672319404),(129587,3,43942,2,1672319404),(129588,3,43943,2,1672319404),(129589,3,43944,2,1672319404),(129590,3,43945,2,1672319404),(129591,3,43946,2,1672319404),(129592,3,43947,2,1672319404),(129593,3,43948,2,1672319404),(129594,3,43949,2,1672319404),(129595,3,43950,2,1672319404),(129596,3,43951,2,1672319404),(129597,3,43952,2,1672319404),(129598,3,43953,2,1672319404),(129599,3,43954,2,1672319404),(129600,3,43955,2,1672319404),(129601,3,43956,2,1672319404),(129602,3,43957,2,1672319404),(129603,3,43958,2,1672319404),(129604,3,43959,2,1672319404),(129605,3,43960,2,1672319404),(129606,3,43961,2,1672319404),(129607,3,43962,2,1672319404),(129608,3,43963,2,1672319404),(129609,3,43964,2,1672319404),(129610,3,43965,2,1672319404),(129611,3,43966,2,1672319404),(129612,3,43967,2,1672319404),(129613,3,43968,2,1672319404),(129614,3,43969,2,1672319404),(129615,3,43970,2,1672319404),(129616,3,43971,2,1672319404),(129617,3,43972,2,1672319404),(129618,3,43973,2,1672319404),(129619,3,43974,2,1672319404),(129620,3,43975,2,1672319404),(129621,3,43976,2,1672319404),(129622,3,43977,2,1672319404),(129623,3,43978,2,1672319404),(129624,3,43979,2,1672319404),(129625,3,43980,2,1672319404),(129626,3,43981,2,1672319404),(129627,3,43982,2,1672319404),(129628,3,43983,2,1672319404),(129629,3,43984,2,1672319404),(129630,3,43985,2,1672319404),(129631,3,43986,2,1672319404),(129632,3,43987,2,1672319404),(129633,3,43988,2,1672319404),(129634,3,43989,2,1672319404),(129635,3,43990,2,1672319404),(129636,3,43991,2,1672319404),(129637,3,43992,2,1672319404),(129638,3,43993,2,1672319404),(129639,3,43994,2,1672319404),(129640,3,43995,2,1672319404),(129641,3,43996,2,1672319404),(129642,3,43997,2,1672319404),(129643,3,43998,2,1672319404),(129644,3,43999,2,1672319404),(129645,3,44000,2,1672319404),(129646,3,44001,2,1672319404),(129647,3,44002,2,1672319404),(129648,3,44003,2,1672319404),(129649,3,44004,2,1672319404),(129650,3,44005,2,1672319404),(129651,3,44006,2,1672319404),(129652,3,44007,2,1672319404),(129653,3,44008,2,1672319404),(129654,3,44009,2,1672319404),(129655,3,44010,2,1672319404),(129656,3,44011,2,1672319404),(129657,3,44012,2,1672319404),(129658,3,44013,2,1672319404),(129659,3,44014,2,1672319404),(129660,3,44015,2,1672319404),(129661,3,44016,2,1672319404),(129662,3,44017,2,1672319404),(129663,3,44018,2,1672319404),(129664,3,44019,2,1672319404),(129665,3,44020,2,1672319404),(129666,3,44021,2,1672319404),(129667,3,44022,2,1672319404),(129668,3,44023,2,1672319404),(129669,3,44024,2,1672319404),(129670,3,44025,2,1672319404),(129671,3,44026,2,1672319404),(129672,3,44027,2,1672319404),(129673,3,44028,2,1672319404),(129674,3,44029,2,1672319404),(129675,3,44030,2,1672319404),(129676,3,44031,2,1672319404),(129677,3,44032,2,1672319404),(129678,3,44033,2,1672319404),(129679,3,44034,2,1672319404),(129680,3,44035,2,1672319404),(129681,3,44036,2,1672319404),(129682,3,44037,2,1672319404),(129683,3,44038,2,1672319404),(129684,3,44039,2,1672319404),(129685,3,44040,2,1672319404),(129686,3,44041,2,1672319404),(129687,3,44042,2,1672319404),(129688,3,44043,2,1672319404),(129689,3,44044,2,1672319404),(129690,3,44045,2,1672319404),(129691,3,44046,2,1672319404),(129692,3,44047,2,1672319404),(129693,3,44048,2,1672319404),(129694,3,44049,2,1672319404),(129695,3,44108,2,1672319404),(129696,3,44109,2,1672319404),(129697,3,44110,2,1672319404),(129698,3,44111,2,1672319404),(129699,3,44112,2,1672319404),(129700,3,44113,2,1672319404),(129701,3,44114,2,1672319404),(129702,3,44115,2,1672319404),(129703,3,44116,2,1672319404),(129704,3,44117,2,1672319404),(129705,3,44118,2,1672319404),(129706,3,44119,2,1672319404),(129707,3,44120,2,1672319404),(129708,3,44135,2,1672319404),(129709,3,44136,2,1672319404),(129710,3,44137,2,1672319404),(129711,3,44138,2,1672319404),(129712,3,44139,2,1672319404),(129713,3,44140,2,1672319404),(129714,3,44141,2,1672319404),(129715,3,44142,2,1672319404),(129716,3,44143,2,1672319404),(129717,3,44144,2,1672319404),(129718,3,44145,2,1672319404),(129719,3,44146,2,1672319404),(129720,3,44147,2,1672319404),(129721,3,44155,2,1672319404),(129722,3,44156,2,1672319404),(129723,3,44157,2,1672319404),(129724,3,44158,2,1672319404),(129725,3,44159,2,1672319404),(129726,3,44160,2,1672319404),(129727,3,44214,2,1672319404),(129728,3,44215,2,1672319404),(129729,3,44216,2,1672319404),(129730,3,44217,2,1672319404),(129731,3,44218,2,1672319404),(129732,3,44219,2,1672319404),(129733,3,44220,2,1672319404),(129734,3,44221,2,1672319404),(129735,3,44222,2,1672319404),(129736,3,44223,2,1672319404),(129737,3,44224,2,1672319404),(129738,3,44225,2,1672319404),(129739,3,44226,2,1672319404),(129740,3,44227,2,1672319404),(129741,3,44228,2,1672319404),(129742,3,44229,2,1672319404),(129743,3,44230,2,1672319404),(129744,3,44231,2,1672319404),(129745,3,44232,2,1672319404),(129746,3,44233,2,1672319404),(129747,3,44234,2,1672319404),(129748,3,44246,2,1672319404),(129749,3,44247,2,1672319404),(129750,3,44372,2,1672319404),(129751,3,44373,2,1672319404),(129752,3,44375,2,1672319404),(129753,3,44376,2,1672319404),(129754,3,44438,2,1672319404),(129755,3,44440,2,1672319404),(129756,3,44443,2,1672319404),(129757,3,44444,2,1672319404),(129758,3,27079,3,1672319404),(129759,3,27080,3,1672319404),(129760,3,27081,3,1672319404),(129761,3,27082,3,1672319404),(129762,3,27083,3,1672319404),(129763,3,27084,3,1672319404),(129764,3,27085,3,1672319404),(129765,3,27086,3,1672319404),(129766,3,27087,3,1672319404),(129767,3,27099,3,1672319404),(129768,3,27100,3,1672319404),(129769,3,27101,3,1672319404),(129770,3,27102,3,1672319404),(129771,3,27103,3,1672319404),(129772,3,27104,3,1672319404),(129773,3,27105,3,1672319404),(129774,3,27106,3,1672319404),(129775,3,27107,3,1672319404),(129776,3,27119,3,1672319404),(129777,3,27120,3,1672319404),(129778,3,27121,3,1672319404),(129779,3,27122,3,1672319404),(129780,3,27123,3,1672319404),(129781,3,27124,3,1672319404),(129782,3,27125,3,1672319404),(129783,3,27126,3,1672319404),(129784,3,27127,3,1672319404),(129785,3,27748,3,1672319404),(129786,3,27749,3,1672319404),(129787,3,27750,3,1672319404),(129788,3,27751,3,1672319404),(129789,3,27753,3,1672319404),(129790,3,27754,3,1672319404),(129791,3,27755,3,1672319404),(129792,3,27783,3,1672319404),(129793,3,27784,3,1672319404),(129794,3,27785,3,1672319404),(129795,3,27786,3,1672319404),(129796,3,27787,3,1672319404),(129797,3,27821,3,1672319404),(129798,3,27822,3,1672319404),(129799,3,27823,3,1672319404),(129800,3,28150,3,1672319404),(129801,3,28153,3,1672319404),(129802,3,28154,3,1672319404),(129803,3,28155,3,1672319404),(129804,3,28156,3,1672319404),(129805,3,28157,3,1672319404),(129806,3,28158,3,1672319404),(129807,3,28404,3,1672319404),(129808,3,28405,3,1672319404),(129809,3,28406,3,1672319404),(129810,3,28407,3,1672319404),(129811,3,28408,3,1672319404),(129812,3,28409,3,1672319404),(129813,3,28411,3,1672319404),(129814,3,28412,3,1672319404),(129815,3,28413,3,1672319404),(129816,3,28414,3,1672319404),(129817,3,28415,3,1672319404),(129818,3,28416,3,1672319404),(129819,3,28417,3,1672319404),(129820,3,28418,3,1672319404),(129821,3,28419,3,1672319404),(129822,3,28420,3,1672319404),(129823,3,28421,3,1672319404),(129824,3,28422,3,1672319404),(129825,3,28423,3,1672319404),(129826,3,28424,3,1672319404),(129827,3,28425,3,1672319404),(129828,3,28474,3,1672319404),(129829,3,28475,3,1672319404),(129830,3,28476,3,1672319404),(129831,3,28477,3,1672319404),(129832,3,28478,3,1672319404),(129833,3,28479,3,1672319404),(129834,3,28480,3,1672319404),(129835,3,28481,3,1672319404),(129836,3,28894,3,1672319404),(129837,3,29014,3,1672319404),(129838,3,29015,3,1672319404),(129839,3,29016,3,1672319404),(129840,3,29017,3,1672319404),(129841,3,29018,3,1672319404),(129842,3,29019,3,1672319404),(129843,3,29020,3,1672319404),(129844,3,29021,3,1672319404),(129845,3,29022,3,1672319404),(129846,3,29023,3,1672319404),(129847,3,29024,3,1672319404),(129848,3,29025,3,1672319404),(129849,3,29026,3,1672319404),(129850,3,29027,3,1672319404),(129851,3,29028,3,1672319404),(129852,3,29029,3,1672319404),(129853,3,29030,3,1672319404),(129854,3,29048,3,1672319404),(129855,3,29210,3,1672319404),(129856,3,29211,3,1672319404),(129857,3,29212,3,1672319404),(129858,3,29213,3,1672319404),(129859,3,29432,3,1672319404),(129860,3,29433,3,1672319404),(129861,3,29434,3,1672319404),(129862,3,29435,3,1672319404),(129863,3,29436,3,1672319404),(129864,3,29437,3,1672319404),(129865,3,29438,3,1672319404),(129866,3,29439,3,1672319404),(129867,3,29440,3,1672319404),(129868,3,29441,3,1672319404),(129869,3,29442,3,1672319404),(129870,3,29443,3,1672319404),(129871,3,29444,3,1672319404),(129872,3,29445,3,1672319404),(129873,3,29446,3,1672319404),(129874,3,29447,3,1672319404),(129875,3,29448,3,1672319404),(129876,3,29449,3,1672319404),(129877,3,29450,3,1672319404),(129878,3,29451,3,1672319404),(129879,3,29452,3,1672319404),(129880,3,29453,3,1672319404),(129881,3,30113,3,1672319404),(129882,3,30114,3,1672319404),(129883,3,30115,3,1672319404),(129884,3,30116,3,1672319404),(129885,3,30118,3,1672319404),(129886,3,31006,3,1672319404),(129887,3,31007,3,1672319404),(129888,3,31008,3,1672319404),(129889,3,31009,3,1672319404),(129890,3,31048,3,1672319404),(129891,3,31049,3,1672319404),(129892,3,31050,3,1672319404),(129893,3,31051,3,1672319404),(129894,3,31370,3,1672319404),(129895,3,31371,3,1672319404),(129896,3,31372,3,1672319404),(129897,3,31379,3,1672319404),(129898,3,31380,3,1672319404),(129899,3,31381,3,1672319404),(129900,3,31382,3,1672319404),(129901,3,31383,3,1672319404),(129902,3,31384,3,1672319404),(129903,3,31902,3,1672319404),(129904,3,31903,3,1672319404),(129905,3,31904,3,1672319404),(129906,3,31905,3,1672319404),(129907,3,31906,3,1672319404),(129908,3,31907,3,1672319404),(129909,3,31908,3,1672319404),(129910,3,31932,3,1672319404),(129911,3,31933,3,1672319404),(129912,3,31934,3,1672319404),(129913,3,31935,3,1672319404),(129914,3,31936,3,1672319404),(129915,3,31937,3,1672319404),(129916,3,33467,3,1672319404),(129917,3,33468,3,1672319404),(129918,3,33469,3,1672319404),(129919,3,33470,3,1672319404),(129920,3,33471,3,1672319404),(129921,3,33472,3,1672319404),(129922,3,33473,3,1672319404),(129923,3,33474,3,1672319404),(129924,3,33475,3,1672319404),(129925,3,33476,3,1672319404),(129926,3,33477,3,1672319404),(129927,3,33478,3,1672319404),(129928,3,33479,3,1672319404),(129929,3,33480,3,1672319404),(129930,3,33481,3,1672319404),(129931,3,33482,3,1672319404),(129932,3,33483,3,1672319404),(129933,3,33484,3,1672319404),(129934,3,33485,3,1672319404),(129935,3,33486,3,1672319404),(129936,3,33487,3,1672319404),(129937,3,33488,3,1672319404),(129938,3,33489,3,1672319404),(129939,3,33490,3,1672319404),(129940,3,33552,3,1672319404),(129941,3,33553,3,1672319404),(129942,3,33554,3,1672319404),(129943,3,33555,3,1672319404),(129944,3,33556,3,1672319404),(129945,3,33557,3,1672319404),(129946,3,33558,3,1672319404),(129947,3,33559,3,1672319404),(129948,3,33560,3,1672319404),(129949,3,33561,3,1672319404),(129950,3,33562,3,1672319404),(129951,3,33563,3,1672319404),(129952,3,33564,3,1672319404),(129953,3,33565,3,1672319404),(129954,3,33566,3,1672319404),(129955,3,33567,3,1672319404),(129956,3,33568,3,1672319404),(129957,3,33569,3,1672319404),(129958,3,33570,3,1672319404),(129959,3,33571,3,1672319404),(129960,3,33572,3,1672319404),(129961,3,33573,3,1672319404),(129962,3,33574,3,1672319404),(129963,3,33575,3,1672319404),(129964,3,33576,3,1672319404),(129965,3,33577,3,1672319404),(129966,3,33578,3,1672319404),(129967,3,33579,3,1672319404),(129968,3,33580,3,1672319404),(129969,3,33581,3,1672319404),(129970,3,33582,3,1672319404),(129971,3,33584,3,1672319404),(129972,3,33585,3,1672319404),(129973,3,33586,3,1672319404),(129974,3,33587,3,1672319404),(129975,3,33588,3,1672319404),(129976,3,33589,3,1672319404),(129977,3,33590,3,1672319404),(129978,3,33591,3,1672319404),(129979,3,33592,3,1672319404),(129980,3,33593,3,1672319404),(129981,3,33594,3,1672319404),(129982,3,33595,3,1672319404),(129983,3,33596,3,1672319404),(129984,3,33597,3,1672319404),(129985,3,33598,3,1672319404),(129986,3,33599,3,1672319404),(129987,3,33600,3,1672319404),(129988,3,33601,3,1672319404),(129989,3,33602,3,1672319404),(129990,3,33603,3,1672319404),(129991,3,33604,3,1672319404),(129992,3,33605,3,1672319404),(129993,3,33606,3,1672319404),(129994,3,33607,3,1672319404),(129995,3,33608,3,1672319404),(129996,3,33609,3,1672319404),(129997,3,33610,3,1672319404),(129998,3,33611,3,1672319404),(129999,3,33612,3,1672319404),(130000,3,33613,3,1672319404),(130001,3,33614,3,1672319404),(130002,3,33615,3,1672319404),(130003,3,33616,3,1672319404),(130004,3,33617,3,1672319404),(130005,3,33618,3,1672319404),(130006,3,33619,3,1672319404),(130007,3,33621,3,1672319404),(130008,3,33622,3,1672319404),(130009,3,33623,3,1672319404),(130010,3,33624,3,1672319404),(130011,3,33625,3,1672319404),(130012,3,33626,3,1672319404),(130013,3,33627,3,1672319404),(130014,3,33628,3,1672319404),(130015,3,33629,3,1672319404),(130016,3,33703,3,1672319404),(130017,3,33704,3,1672319404),(130018,3,33705,3,1672319404),(130019,3,33706,3,1672319404),(130020,3,33707,3,1672319404),(130021,3,33708,3,1672319404),(130022,3,33709,3,1672319404),(130023,3,33710,3,1672319404),(130024,3,33711,3,1672319404),(130025,3,33712,3,1672319404),(130026,3,33713,3,1672319404),(130027,3,33714,3,1672319404),(130028,3,33715,3,1672319404),(130029,3,33716,3,1672319404),(130030,3,33717,3,1672319404),(130031,3,33718,3,1672319404),(130032,3,33719,3,1672319404),(130033,3,33720,3,1672319404),(130034,3,33721,3,1672319404),(130035,3,33722,3,1672319404),(130036,3,33723,3,1672319404),(130037,3,33724,3,1672319404),(130038,3,33725,3,1672319404),(130039,3,33726,3,1672319404),(130040,3,33727,3,1672319404),(130041,3,33728,3,1672319404),(130042,3,33729,3,1672319404),(130043,3,33730,3,1672319404),(130044,3,33731,3,1672319404),(130045,3,33732,3,1672319404),(130046,3,33733,3,1672319404),(130047,3,33734,3,1672319404),(130048,3,33735,3,1672319404),(130049,3,33736,3,1672319404),(130050,3,33737,3,1672319404),(130051,3,33738,3,1672319404),(130052,3,33739,3,1672319404),(130053,3,33740,3,1672319404),(130054,3,33741,3,1672319404),(130055,3,33742,3,1672319404),(130056,3,33743,3,1672319404),(130057,3,36567,3,1672319404),(130058,3,36568,3,1672319404),(130059,3,36569,3,1672319404),(130060,3,36570,3,1672319404),(130061,3,36571,3,1672319404),(130062,3,36572,3,1672319404),(130063,3,36573,3,1672319404),(130064,3,36574,3,1672319404),(130065,3,36575,3,1672319404),(130066,3,36576,3,1672319404),(130067,3,36577,3,1672319404),(130068,3,36578,3,1672319404),(130069,3,36579,3,1672319404),(130070,3,36580,3,1672319404),(130071,3,36581,3,1672319404),(130072,3,36582,3,1672319404),(130073,3,36583,3,1672319404),(130074,3,36584,3,1672319404),(130075,3,36585,3,1672319404),(130076,3,36586,3,1672319404),(130077,3,36587,3,1672319404),(130078,3,36588,3,1672319404),(130079,3,36589,3,1672319404),(130080,3,36590,3,1672319404),(130081,3,36591,3,1672319404),(130082,3,36592,3,1672319404),(130083,3,36593,3,1672319404),(130084,3,36594,3,1672319404),(130085,3,36595,3,1672319404),(130086,3,36596,3,1672319404),(130087,3,36597,3,1672319404),(130088,3,36624,3,1672319404),(130089,3,36625,3,1672319404),(130090,3,36626,3,1672319404),(130091,3,36627,3,1672319404),(130092,3,36628,3,1672319404),(130093,3,36629,3,1672319404),(130094,3,36630,3,1672319404),(130095,3,36631,3,1672319404),(130096,3,36632,3,1672319404),(130097,3,36633,3,1672319404),(130098,3,36634,3,1672319404),(130099,3,36635,3,1672319404),(130100,3,36636,3,1672319404),(130101,3,36637,3,1672319404),(130102,3,36638,3,1672319404),(130103,3,36639,3,1672319404),(130104,3,36640,3,1672319404),(130105,3,36641,3,1672319404),(130106,3,36642,3,1672319404),(130107,3,36643,3,1672319404),(130108,3,36644,3,1672319404),(130109,3,36645,3,1672319404),(130110,3,36646,3,1672319404),(130111,3,36647,3,1672319404),(130112,3,36648,3,1672319404),(130113,3,36649,3,1672319404),(130114,3,36650,3,1672319404),(130115,3,36651,3,1672319404),(130116,3,36652,3,1672319404),(130117,3,36653,3,1672319404),(130118,3,36654,3,1672319404),(130119,3,36681,3,1672319404),(130120,3,36682,3,1672319404),(130121,3,36683,3,1672319404),(130122,3,36684,3,1672319404),(130123,3,36685,3,1672319404),(130124,3,36686,3,1672319404),(130125,3,36687,3,1672319404),(130126,3,36688,3,1672319404),(130127,3,36689,3,1672319404),(130128,3,36690,3,1672319404),(130129,3,36691,3,1672319404),(130130,3,36692,3,1672319404),(130131,3,36693,3,1672319404),(130132,3,36694,3,1672319404),(130133,3,36695,3,1672319404),(130134,3,36696,3,1672319404),(130135,3,36697,3,1672319404),(130136,3,36698,3,1672319404),(130137,3,36699,3,1672319404),(130138,3,36700,3,1672319404),(130139,3,36701,3,1672319404),(130140,3,36702,3,1672319404),(130141,3,36703,3,1672319404),(130142,3,36704,3,1672319404),(130143,3,36705,3,1672319404),(130144,3,36706,3,1672319404),(130145,3,36707,3,1672319404),(130146,3,36708,3,1672319404),(130147,3,36709,3,1672319404),(130148,3,36710,3,1672319404),(130149,3,36711,3,1672319404),(130150,3,36738,3,1672319404),(130151,3,36739,3,1672319404),(130152,3,36740,3,1672319404),(130153,3,36741,3,1672319404),(130154,3,36742,3,1672319404),(130155,3,36743,3,1672319404),(130156,3,36744,3,1672319404),(130157,3,36745,3,1672319404),(130158,3,36746,3,1672319404),(130159,3,36747,3,1672319404),(130160,3,36748,3,1672319404),(130161,3,36749,3,1672319404),(130162,3,36750,3,1672319404),(130163,3,36751,3,1672319404),(130164,3,36752,3,1672319404),(130165,3,36753,3,1672319404),(130166,3,36754,3,1672319404),(130167,3,36755,3,1672319404),(130168,3,36756,3,1672319404),(130169,3,36757,3,1672319404),(130170,3,36758,3,1672319404),(130171,3,36759,3,1672319404),(130172,3,36760,3,1672319404),(130173,3,36761,3,1672319404),(130174,3,36762,3,1672319404),(130175,3,36763,3,1672319404),(130176,3,36764,3,1672319404),(130177,3,36765,3,1672319404),(130178,3,36766,3,1672319404),(130179,3,36767,3,1672319404),(130180,3,36768,3,1672319404),(130181,3,36814,3,1672319404),(130182,3,36815,3,1672319404),(130183,3,36816,3,1672319404),(130184,3,36817,3,1672319404),(130185,3,36818,3,1672319404),(130186,3,36819,3,1672319404),(130187,3,39861,3,1672319404),(130188,3,39862,3,1672319404),(130189,3,39863,3,1672319404),(130190,3,39864,3,1672319404),(130191,3,39865,3,1672319404),(130192,3,39866,3,1672319404),(130193,3,39867,3,1672319404),(130194,3,39868,3,1672319404),(130195,3,39869,3,1672319404),(130196,3,39870,3,1672319404),(130197,3,39871,3,1672319404),(130198,3,39872,3,1672319404),(130199,3,39873,3,1672319404),(130200,3,39874,3,1672319404),(130201,3,39875,3,1672319404),(130202,3,39890,3,1672319404),(130203,3,39891,3,1672319404),(130204,3,39892,3,1672319404),(130205,3,39893,3,1672319404),(130206,3,39894,3,1672319404),(130207,3,39895,3,1672319404),(130208,3,39896,3,1672319404),(130209,3,39897,3,1672319404),(130210,3,39898,3,1672319404),(130211,3,39899,3,1672319404),(130212,3,39900,3,1672319404),(130213,3,39901,3,1672319404),(130214,3,39902,3,1672319404),(130215,3,39903,3,1672319404),(130216,3,39904,3,1672319404),(130217,3,39921,3,1672319404),(130218,3,39922,3,1672319404),(130219,3,39923,3,1672319404),(130220,3,39924,3,1672319404),(130221,3,39925,3,1672319404),(130222,3,39926,3,1672319404),(130223,3,39927,3,1672319404),(130224,3,39928,3,1672319404),(130225,3,39929,3,1672319404),(130226,3,39930,3,1672319404),(130227,3,39931,3,1672319404),(130228,3,39932,3,1672319404),(130229,3,39933,3,1672319404),(130230,3,39934,3,1672319404),(130231,3,39935,3,1672319404),(130232,3,39936,3,1672319404),(130233,3,39943,3,1672319404),(130234,3,39944,3,1672319404),(130235,3,39945,3,1672319404),(130236,3,39946,3,1672319404),(130237,3,39947,3,1672319404),(130238,3,39948,3,1672319404),(130239,3,39949,3,1672319404),(130240,3,39950,3,1672319404),(130241,3,39951,3,1672319404),(130242,3,39952,3,1672319404),(130243,3,39953,3,1672319404),(130244,3,39954,3,1672319404),(130245,3,39955,3,1672319404),(130246,3,39956,3,1672319404),(130247,3,39957,3,1672319404),(130248,3,39958,3,1672319404),(130249,3,39959,3,1672319404),(130250,3,39960,3,1672319404),(130251,3,39961,3,1672319404),(130252,3,39962,3,1672319404),(130253,3,39963,3,1672319404),(130254,3,39964,3,1672319404),(130255,3,39965,3,1672319404),(130256,3,39966,3,1672319404),(130257,3,39967,3,1672319404),(130258,3,39968,3,1672319404),(130259,3,39969,3,1672319404),(130260,3,39970,3,1672319404),(130261,3,39971,3,1672319404),(130262,3,39972,3,1672319404),(130263,3,39973,3,1672319404),(130264,3,39974,3,1672319404),(130265,3,39975,3,1672319404),(130266,3,39976,3,1672319404),(130267,3,40003,3,1672319404),(130268,3,40004,3,1672319404),(130269,3,40005,3,1672319404),(130270,3,40006,3,1672319404),(130271,3,40007,3,1672319404),(130272,3,40008,3,1672319404),(130273,3,40009,3,1672319404),(130274,3,40036,3,1672319404),(130275,3,40037,3,1672319404),(130276,3,40038,3,1672319404),(130277,3,40039,3,1672319404),(130278,3,40040,3,1672319404),(130279,3,40041,3,1672319404),(130280,3,40042,3,1672319404),(130281,3,40043,3,1672319404),(130282,3,40044,3,1672319404),(130283,3,40045,3,1672319404),(130284,3,40046,3,1672319404),(130285,3,40047,3,1672319404),(130286,3,40048,3,1672319404),(130287,3,40049,3,1672319404),(130288,3,40050,3,1672319404),(130289,3,40051,3,1672319404),(130290,3,40052,3,1672319404),(130291,3,40053,3,1672319404),(130292,3,40054,3,1672319404),(130293,3,40055,3,1672319404),(130294,3,40056,3,1672319404),(130295,3,40057,3,1672319404),(130296,3,40058,3,1672319404),(130297,3,40059,3,1672319404),(130298,3,40060,3,1672319404),(130299,3,40061,3,1672319404),(130300,3,40062,3,1672319404),(130301,3,40063,3,1672319404),(130302,3,40064,3,1672319404),(130303,3,40065,3,1672319404),(130304,3,40066,3,1672319404),(130305,3,40067,3,1672319404),(130306,3,40068,3,1672319404),(130307,3,40069,3,1672319404),(130308,3,40070,3,1672319404),(130309,3,40071,3,1672319404),(130310,3,40072,3,1672319404),(130311,3,40073,3,1672319404),(130312,3,40074,3,1672319404),(130313,3,40075,3,1672319404),(130314,3,40076,3,1672319404),(130315,3,40077,3,1672319404),(130316,3,40078,3,1672319404),(130317,3,40079,3,1672319404),(130318,3,40080,3,1672319404),(130319,3,40081,3,1672319404),(130320,3,40082,3,1672319404),(130321,3,40083,3,1672319404),(130322,3,40084,3,1672319404),(130323,3,40085,3,1672319404),(130324,3,40086,3,1672319404),(130325,3,40087,3,1672319404),(130326,3,40088,3,1672319404),(130327,3,40089,3,1672319404),(130328,3,40090,3,1672319404),(130329,3,40091,3,1672319404),(130330,3,40092,3,1672319404),(130331,3,40093,3,1672319404),(130332,3,40094,3,1672319404),(130333,3,40857,3,1672319404),(130334,3,40858,3,1672319404),(130335,3,40859,3,1672319404),(130336,3,40860,3,1672319404),(130337,3,40861,3,1672319404),(130338,3,40862,3,1672319404),(130339,3,40863,3,1672319404),(130340,3,40864,3,1672319404),(130341,3,40865,3,1672319404),(130342,3,40866,3,1672319404),(130343,3,40880,3,1672319404),(130344,3,40881,3,1672319404),(130345,3,40882,3,1672319404),(130346,3,40883,3,1672319404),(130347,3,40884,3,1672319404),(130348,3,40885,3,1672319404),(130349,3,40886,3,1672319404),(130350,3,40887,3,1672319404),(130351,3,40888,3,1672319404),(130352,3,40889,3,1672319404),(130353,3,40902,3,1672319404),(130354,3,40903,3,1672319404),(130355,3,40904,3,1672319404),(130356,3,40905,3,1672319404),(130357,3,40906,3,1672319404),(130358,3,40907,3,1672319404),(130359,3,40908,3,1672319404),(130360,3,40909,3,1672319404),(130361,3,40910,3,1672319404),(130362,3,40924,3,1672319404),(130363,3,40925,3,1672319404),(130364,3,40926,3,1672319404),(130365,3,40927,3,1672319404),(130366,3,40928,3,1672319404),(130367,3,40929,3,1672319404),(130368,3,40930,3,1672319404),(130369,3,40931,3,1672319404),(130370,3,40932,3,1672319404),(130371,3,40933,3,1672319404),(130372,3,42277,3,1672319404),(130373,3,42278,3,1672319404),(130374,3,42279,3,1672319404),(130375,3,42280,3,1672319404),(130376,3,42281,3,1672319404),(130377,3,42282,3,1672319404),(130378,3,42283,3,1672319404),(130379,3,42284,3,1672319404),(130380,3,42285,3,1672319404),(130381,3,42286,3,1672319404),(130382,3,42287,3,1672319404),(130383,3,42288,3,1672319404),(130384,3,42289,3,1672319404),(130385,3,42290,3,1672319404),(130386,3,42291,3,1672319404),(130387,3,42307,3,1672319404),(130388,3,42308,3,1672319404),(130389,3,42309,3,1672319404),(130390,3,42310,3,1672319404),(130391,3,42311,3,1672319404),(130392,3,42312,3,1672319404),(130393,3,42363,3,1672319404),(130394,3,42364,3,1672319404),(130395,3,42365,3,1672319404),(130396,3,42366,3,1672319404),(130397,3,42367,3,1672319404),(130398,3,42368,3,1672319404),(130399,3,42369,3,1672319404),(130400,3,42370,3,1672319404),(130401,3,42371,3,1672319404),(130402,3,42372,3,1672319404),(130403,3,42373,3,1672319404),(130404,3,42374,3,1672319404),(130405,3,42375,3,1672319404),(130406,3,42376,3,1672319404),(130407,3,42377,3,1672319404),(130408,3,42378,3,1672319404),(130409,3,42379,3,1672319404),(130410,3,42380,3,1672319404),(130411,3,42381,3,1672319404),(130412,3,42382,3,1672319404),(130413,3,42383,3,1672319404),(130414,3,42415,3,1672319404),(130415,3,42416,3,1672319404),(130416,3,42417,3,1672319404),(130417,3,42418,3,1672319404),(130418,3,42419,3,1672319404),(130419,3,42420,3,1672319404),(130420,3,42421,3,1672319404),(130421,3,42422,3,1672319404),(130422,3,42423,3,1672319404),(130423,3,42424,3,1672319404),(130424,3,42425,3,1672319404),(130425,3,42426,3,1672319404),(130426,3,42427,3,1672319404),(130427,3,42428,3,1672319404),(130428,3,42429,3,1672319404),(130429,3,42430,3,1672319404),(130430,3,42431,3,1672319404),(130431,3,42432,3,1672319404),(130432,3,42433,3,1672319404),(130433,3,42434,3,1672319404),(130434,3,42435,3,1672319404),(130435,3,42436,3,1672319404),(130436,3,42437,3,1672319404),(130437,3,42438,3,1672319404),(130438,3,42439,3,1672319404),(130439,3,42440,3,1672319404),(130440,3,42441,3,1672319404),(130441,3,42442,3,1672319404),(130442,3,42679,3,1672319404),(130443,3,42682,3,1672319404),(130444,3,42691,3,1672319404),(130445,3,42692,3,1672319404),(130446,3,42693,3,1672319404),(130447,3,42694,3,1672319404),(130448,3,42695,3,1672319404),(130449,3,42696,3,1672319404),(130450,3,42697,3,1672319404),(130451,3,42698,3,1672319404),(130452,3,42699,3,1672319404),(130453,3,42706,3,1672319404),(130454,3,42707,3,1672319404),(130455,3,42708,3,1672319404),(130456,3,42709,3,1672319404),(130457,3,42710,3,1672319404),(130458,3,42711,3,1672319404),(130459,3,42712,3,1672319404),(130460,3,42713,3,1672319404),(130461,3,42714,3,1672319404),(130462,3,42715,3,1672319404),(130463,3,42716,3,1672319404),(130464,3,42717,3,1672319404),(130465,3,42718,3,1672319404),(130466,3,42719,3,1672319404),(130467,3,42720,3,1672319404),(130468,3,42721,3,1672319404),(130469,3,42722,3,1672319404),(130470,3,42723,3,1672319404),(130471,3,43194,3,1672319404),(130472,3,43195,3,1672319404),(130473,3,43196,3,1672319404),(130474,3,43197,3,1672319404),(130475,3,43198,3,1672319404),(130476,3,43199,3,1672319404),(130477,3,43200,3,1672319404),(130478,3,43201,3,1672319404),(130479,3,43202,3,1672319404),(130480,3,43203,3,1672319404),(130481,3,43204,3,1672319404),(130482,3,43205,3,1672319404),(130483,3,43206,3,1672319404),(130484,3,43207,3,1672319404),(130485,3,43208,3,1672319404),(130486,3,43209,3,1672319404),(130487,3,43210,3,1672319404),(130488,3,43211,3,1672319404),(130489,3,43212,3,1672319404),(130490,3,43213,3,1672319404),(130491,3,43214,3,1672319404),(130492,3,43215,3,1672319404),(130493,3,43216,3,1672319404),(130494,3,43217,3,1672319404),(130495,3,43218,3,1672319404),(130496,3,43219,3,1672319404),(130497,3,43220,3,1672319404),(130498,3,43221,3,1672319404),(130499,3,43222,3,1672319404),(130500,3,43223,3,1672319404),(130501,3,43224,3,1672319404),(130502,3,43225,3,1672319404),(130503,3,43226,3,1672319404),(130504,3,43227,3,1672319404),(130505,3,43228,3,1672319404),(130506,3,43229,3,1672319404),(130507,3,43230,3,1672319404),(130508,3,43231,3,1672319404),(130509,3,43232,3,1672319404),(130510,3,43233,3,1672319404),(130511,3,43234,3,1672319404),(130512,3,43235,3,1672319404),(130513,3,43236,3,1672319404),(130514,3,43237,3,1672319404),(130515,3,43238,3,1672319404),(130516,3,43239,3,1672319404),(130517,3,43240,3,1672319404),(130518,3,43241,3,1672319404),(130519,3,43242,3,1672319404),(130520,3,43243,3,1672319404),(130521,3,43244,3,1672319404),(130522,3,43245,3,1672319404),(130523,3,43246,3,1672319404),(130524,3,43247,3,1672319404),(130525,3,43248,3,1672319404),(130526,3,43249,3,1672319404),(130527,3,43250,3,1672319404),(130528,3,43251,3,1672319404),(130529,3,43252,3,1672319404),(130530,3,43253,3,1672319404),(130531,3,43254,3,1672319404),(130532,3,43255,3,1672319404),(130533,3,43256,3,1672319404),(130534,3,43257,3,1672319404),(130535,3,43258,3,1672319404),(130536,3,43259,3,1672319404),(130537,3,43260,3,1672319404),(130538,3,43261,3,1672319404),(130539,3,43262,3,1672319404),(130540,3,43263,3,1672319404),(130541,3,43264,3,1672319404),(130542,3,43265,3,1672319404),(130543,3,43266,3,1672319404),(130544,3,43267,3,1672319404),(130545,3,43268,3,1672319404),(130546,3,43269,3,1672319404),(130547,3,43270,3,1672319404),(130548,3,43271,3,1672319404),(130549,3,43272,3,1672319404),(130550,3,43273,3,1672319404),(130551,3,43274,3,1672319404),(130552,3,43275,3,1672319404),(130553,3,43276,3,1672319404),(130554,3,43277,3,1672319404),(130555,3,43278,3,1672319404),(130556,3,43279,3,1672319404),(130557,3,43280,3,1672319404),(130558,3,43301,3,1672319404),(130559,3,43302,3,1672319404),(130560,3,43303,3,1672319404),(130561,3,43304,3,1672319404),(130562,3,43305,3,1672319404),(130563,3,43306,3,1672319404),(130564,3,43307,3,1672319404),(130565,3,43308,3,1672319404),(130566,3,43309,3,1672319404),(130567,3,43310,3,1672319404),(130568,3,43311,3,1672319404),(130569,3,43312,3,1672319404),(130570,3,43313,3,1672319404),(130571,3,43314,3,1672319404),(130572,3,43315,3,1672319404),(130573,3,43316,3,1672319404),(130574,3,43317,3,1672319404),(130575,3,43318,3,1672319404),(130576,3,43319,3,1672319404),(130577,3,43320,3,1672319404),(130578,3,43321,3,1672319404),(130579,3,43322,3,1672319404),(130580,3,43323,3,1672319404),(130581,3,43324,3,1672319404),(130582,3,43325,3,1672319404),(130583,3,43326,3,1672319404),(130584,3,43327,3,1672319404),(130585,3,43328,3,1672319404),(130586,3,43329,3,1672319404),(130587,3,43330,3,1672319404),(130588,3,43331,3,1672319404),(130589,3,43332,3,1672319404),(130590,3,43333,3,1672319404),(130591,3,43334,3,1672319404),(130592,3,43335,3,1672319404),(130593,3,43336,3,1672319404),(130594,3,43337,3,1672319404),(130595,3,43338,3,1672319404),(130596,3,43339,3,1672319404),(130597,3,43340,3,1672319404),(130598,3,43341,3,1672319404),(130599,3,43342,3,1672319404),(130600,3,43343,3,1672319404),(130601,3,43344,3,1672319404),(130602,3,43345,3,1672319404),(130603,3,43346,3,1672319404),(130604,3,43347,3,1672319404),(130605,3,43348,3,1672319404),(130606,3,43349,3,1672319404),(130607,3,43350,3,1672319404),(130608,3,43351,3,1672319404),(130609,3,43352,3,1672319404),(130610,3,43353,3,1672319404),(130611,3,43354,3,1672319404),(130612,3,43355,3,1672319404),(130613,3,43356,3,1672319404),(130614,3,43357,3,1672319404),(130615,3,43358,3,1672319404),(130616,3,43359,3,1672319404),(130617,3,43360,3,1672319404),(130618,3,43361,3,1672319404),(130619,3,43362,3,1672319404),(130620,3,43363,3,1672319404),(130621,3,43364,3,1672319404),(130622,3,43365,3,1672319404),(130623,3,43366,3,1672319404),(130624,3,43367,3,1672319404),(130625,3,43368,3,1672319404),(130626,3,43369,3,1672319404),(130627,3,43370,3,1672319404),(130628,3,43371,3,1672319404),(130629,3,43372,3,1672319404),(130630,3,43373,3,1672319404),(130631,3,43374,3,1672319404),(130632,3,43375,3,1672319404),(130633,3,43376,3,1672319404),(130634,3,43377,3,1672319404),(130635,3,43378,3,1672319404),(130636,3,43379,3,1672319404),(130637,3,43380,3,1672319404),(130638,3,43381,3,1672319404),(130639,3,43382,3,1672319404),(130640,3,43383,3,1672319404),(130641,3,43384,3,1672319404),(130642,3,43385,3,1672319404),(130643,3,43386,3,1672319404),(130644,3,43387,3,1672319404),(130645,3,43388,3,1672319404),(130646,3,43389,3,1672319404),(130647,3,43390,3,1672319404),(130648,3,43391,3,1672319404),(130649,3,43392,3,1672319404),(130650,3,43393,3,1672319404),(130651,3,43394,3,1672319404),(130652,3,43395,3,1672319404),(130653,3,43396,3,1672319404),(130654,3,43397,3,1672319404),(130655,3,43421,3,1672319404),(130656,3,43422,3,1672319404),(130657,3,43423,3,1672319404),(130658,3,43424,3,1672319404),(130659,3,43425,3,1672319404),(130660,3,43426,3,1672319404),(130661,3,43427,3,1672319404),(130662,3,43428,3,1672319404),(130663,3,43429,3,1672319404),(130664,3,43430,3,1672319404),(130665,3,43431,3,1672319404),(130666,3,43432,3,1672319404),(130667,3,43433,3,1672319404),(130668,3,43434,3,1672319404),(130669,3,43435,3,1672319404),(130670,3,43436,3,1672319404),(130671,3,43437,3,1672319404),(130672,3,43438,3,1672319404),(130673,3,43439,3,1672319404),(130674,3,43440,3,1672319404),(130675,3,43441,3,1672319404),(130676,3,43442,3,1672319404),(130677,3,43443,3,1672319404),(130678,3,43444,3,1672319404),(130679,3,43445,3,1672319404),(130680,3,43446,3,1672319404),(130681,3,43447,3,1672319404),(130682,3,43448,3,1672319404),(130683,3,43449,3,1672319404),(130684,3,43450,3,1672319404),(130685,3,43451,3,1672319404),(130686,3,43452,3,1672319404),(130687,3,43453,3,1672319404),(130688,3,43454,3,1672319404),(130689,3,43455,3,1672319404),(130690,3,43456,3,1672319404),(130691,3,43457,3,1672319404),(130692,3,43458,3,1672319404),(130693,3,43459,3,1672319404),(130694,3,43460,3,1672319404),(130695,3,43461,3,1672319404),(130696,3,43462,3,1672319404),(130697,3,43463,3,1672319404),(130698,3,43464,3,1672319404),(130699,3,43465,3,1672319404),(130700,3,43466,3,1672319404),(130701,3,43467,3,1672319404),(130702,3,43468,3,1672319404),(130703,3,43469,3,1672319404),(130704,3,43470,3,1672319404),(130705,3,43471,3,1672319404),(130706,3,43472,3,1672319404),(130707,3,43473,3,1672319404),(130708,3,43474,3,1672319404),(130709,3,43475,3,1672319404),(130710,3,43476,3,1672319404),(130711,3,43477,3,1672319404),(130712,3,43478,3,1672319404),(130713,3,43479,3,1672319404),(130714,3,43480,3,1672319404),(130715,3,43481,3,1672319404),(130716,3,43482,3,1672319404),(130717,3,43483,3,1672319404),(130718,3,43484,3,1672319404),(130719,3,43485,3,1672319404),(130720,3,43486,3,1672319404),(130721,3,43487,3,1672319404),(130722,3,43488,3,1672319404),(130723,3,43489,3,1672319404),(130724,3,43490,3,1672319404),(130725,3,43491,3,1672319404),(130726,3,43492,3,1672319404),(130727,3,43493,3,1672319404),(130728,3,43494,3,1672319404),(130729,3,43495,3,1672319404),(130730,3,43496,3,1672319404),(130731,3,43926,3,1672319404),(130732,3,43927,3,1672319404),(130733,3,43928,3,1672319404),(130734,3,43929,3,1672319404),(130735,3,43930,3,1672319404),(130736,3,43931,3,1672319404),(130737,3,43932,3,1672319404),(130738,3,43933,3,1672319404),(130739,3,43934,3,1672319404),(130740,3,43935,3,1672319404),(130741,3,43936,3,1672319404),(130742,3,43937,3,1672319404),(130743,3,43938,3,1672319404),(130744,3,43939,3,1672319404),(130745,3,43940,3,1672319404),(130746,3,43941,3,1672319404),(130747,3,43942,3,1672319404),(130748,3,43943,3,1672319404),(130749,3,43944,3,1672319404),(130750,3,43945,3,1672319404),(130751,3,43946,3,1672319404),(130752,3,43947,3,1672319404),(130753,3,43948,3,1672319404),(130754,3,43949,3,1672319404),(130755,3,43950,3,1672319404),(130756,3,43951,3,1672319404),(130757,3,43952,3,1672319404),(130758,3,43953,3,1672319404),(130759,3,43954,3,1672319404),(130760,3,43955,3,1672319404),(130761,3,43956,3,1672319404),(130762,3,43957,3,1672319404),(130763,3,43958,3,1672319404),(130764,3,43959,3,1672319404),(130765,3,43960,3,1672319404),(130766,3,43961,3,1672319404),(130767,3,43962,3,1672319404),(130768,3,43963,3,1672319404),(130769,3,43964,3,1672319404),(130770,3,43965,3,1672319404),(130771,3,43966,3,1672319404),(130772,3,43967,3,1672319404),(130773,3,43968,3,1672319404),(130774,3,43969,3,1672319404),(130775,3,43970,3,1672319404),(130776,3,43971,3,1672319404),(130777,3,43972,3,1672319404),(130778,3,43973,3,1672319404),(130779,3,43974,3,1672319404),(130780,3,43975,3,1672319404),(130781,3,43976,3,1672319404),(130782,3,43977,3,1672319404),(130783,3,43978,3,1672319404),(130784,3,43979,3,1672319404),(130785,3,43980,3,1672319404),(130786,3,43981,3,1672319404),(130787,3,43982,3,1672319404),(130788,3,43983,3,1672319404),(130789,3,43984,3,1672319404),(130790,3,43985,3,1672319404),(130791,3,43986,3,1672319404),(130792,3,43987,3,1672319404),(130793,3,43988,3,1672319404),(130794,3,43989,3,1672319404),(130795,3,43990,3,1672319404),(130796,3,43991,3,1672319404),(130797,3,43992,3,1672319404),(130798,3,43993,3,1672319404),(130799,3,43994,3,1672319404),(130800,3,43995,3,1672319404),(130801,3,43996,3,1672319404),(130802,3,43997,3,1672319404),(130803,3,43998,3,1672319404),(130804,3,43999,3,1672319404),(130805,3,44000,3,1672319404),(130806,3,44001,3,1672319404),(130807,3,44002,3,1672319404),(130808,3,44003,3,1672319404),(130809,3,44004,3,1672319404),(130810,3,44005,3,1672319404),(130811,3,44006,3,1672319404),(130812,3,44007,3,1672319404),(130813,3,44008,3,1672319404),(130814,3,44009,3,1672319404),(130815,3,44010,3,1672319404),(130816,3,44011,3,1672319404),(130817,3,44012,3,1672319404),(130818,3,44013,3,1672319404),(130819,3,44014,3,1672319404),(130820,3,44015,3,1672319404),(130821,3,44016,3,1672319404),(130822,3,44017,3,1672319404),(130823,3,44018,3,1672319404),(130824,3,44019,3,1672319404),(130825,3,44020,3,1672319404),(130826,3,44021,3,1672319404),(130827,3,44022,3,1672319404),(130828,3,44023,3,1672319404),(130829,3,44024,3,1672319404),(130830,3,44025,3,1672319404),(130831,3,44026,3,1672319404),(130832,3,44027,3,1672319404),(130833,3,44028,3,1672319404),(130834,3,44029,3,1672319404),(130835,3,44030,3,1672319404),(130836,3,44031,3,1672319404),(130837,3,44032,3,1672319404),(130838,3,44033,3,1672319404),(130839,3,44034,3,1672319404),(130840,3,44035,3,1672319404),(130841,3,44036,3,1672319404),(130842,3,44037,3,1672319404),(130843,3,44038,3,1672319404),(130844,3,44039,3,1672319404),(130845,3,44040,3,1672319404),(130846,3,44041,3,1672319404),(130847,3,44042,3,1672319404),(130848,3,44043,3,1672319404),(130849,3,44044,3,1672319404),(130850,3,44045,3,1672319404),(130851,3,44046,3,1672319404),(130852,3,44047,3,1672319404),(130853,3,44048,3,1672319404),(130854,3,44049,3,1672319404),(130855,3,44108,3,1672319404),(130856,3,44109,3,1672319404),(130857,3,44110,3,1672319404),(130858,3,44111,3,1672319404),(130859,3,44112,3,1672319404),(130860,3,44113,3,1672319404),(130861,3,44114,3,1672319404),(130862,3,44115,3,1672319404),(130863,3,44116,3,1672319404),(130864,3,44117,3,1672319404),(130865,3,44118,3,1672319404),(130866,3,44119,3,1672319404),(130867,3,44120,3,1672319404),(130868,3,44135,3,1672319404),(130869,3,44136,3,1672319404),(130870,3,44137,3,1672319404),(130871,3,44138,3,1672319404),(130872,3,44139,3,1672319404),(130873,3,44140,3,1672319404),(130874,3,44141,3,1672319404),(130875,3,44142,3,1672319404),(130876,3,44143,3,1672319404),(130877,3,44144,3,1672319404),(130878,3,44145,3,1672319404),(130879,3,44146,3,1672319404),(130880,3,44147,3,1672319404),(130881,3,44155,3,1672319404),(130882,3,44156,3,1672319404),(130883,3,44157,3,1672319404),(130884,3,44158,3,1672319404),(130885,3,44159,3,1672319404),(130886,3,44160,3,1672319404),(130887,3,44214,3,1672319404),(130888,3,44215,3,1672319404),(130889,3,44216,3,1672319404),(130890,3,44217,3,1672319404),(130891,3,44218,3,1672319404),(130892,3,44219,3,1672319404),(130893,3,44220,3,1672319404),(130894,3,44221,3,1672319404),(130895,3,44222,3,1672319404),(130896,3,44223,3,1672319404),(130897,3,44224,3,1672319404),(130898,3,44225,3,1672319404),(130899,3,44226,3,1672319404),(130900,3,44227,3,1672319404),(130901,3,44228,3,1672319404),(130902,3,44229,3,1672319404),(130903,3,44230,3,1672319404),(130904,3,44231,3,1672319404),(130905,3,44232,3,1672319404),(130906,3,44233,3,1672319404),(130907,3,44234,3,1672319404),(130908,3,44246,3,1672319404),(130909,3,44247,3,1672319404),(130910,3,44372,3,1672319404),(130911,3,44373,3,1672319404),(130912,3,44375,3,1672319404),(130913,3,44376,3,1672319404),(130914,3,44438,3,1672319404),(130915,3,44440,3,1672319404),(130916,3,44443,3,1672319404),(130917,3,44444,3,1672319404),(130918,1,10508,2,1672319405),(130919,1,10511,2,1672319405),(130920,1,10512,2,1672319405),(130921,1,10513,2,1672319405),(130922,1,10514,2,1672319405),(130923,1,10508,3,1672319405),(130924,1,10511,3,1672319405),(130925,1,10512,3,1672319405),(130926,1,10513,3,1672319405),(130927,1,10514,3,1672319405),(130928,3,27078,2,1672319405),(130929,3,27098,2,1672319405),(130930,3,27118,2,1672319405),(130931,3,27745,2,1672319405),(130932,3,27746,2,1672319405),(130933,3,27747,2,1672319405),(130934,3,27779,2,1672319405),(130935,3,27780,2,1672319405),(130936,3,27781,2,1672319405),(130937,3,27782,2,1672319405),(130938,3,27815,2,1672319405),(130939,3,27816,2,1672319405),(130940,3,27817,2,1672319405),(130941,3,27818,2,1672319405),(130942,3,28144,2,1672319405),(130943,3,28145,2,1672319405),(130944,3,28146,2,1672319405),(130945,3,28147,2,1672319405),(130946,3,28148,2,1672319405),(130947,3,28149,2,1672319405),(130948,3,28392,2,1672319405),(130949,3,28393,2,1672319405),(130950,3,28394,2,1672319405),(130951,3,28395,2,1672319405),(130952,3,28396,2,1672319405),(130953,3,28397,2,1672319405),(130954,3,28398,2,1672319405),(130955,3,28399,2,1672319405),(130956,3,28400,2,1672319405),(130957,3,28401,2,1672319405),(130958,3,28402,2,1672319405),(130959,3,28403,2,1672319405),(130960,3,28468,2,1672319405),(130961,3,28469,2,1672319405),(130962,3,28470,2,1672319405),(130963,3,28471,2,1672319405),(130964,3,28472,2,1672319405),(130965,3,28473,2,1672319405),(130966,3,29008,2,1672319405),(130967,3,29009,2,1672319405),(130968,3,29010,2,1672319405),(130969,3,29201,2,1672319405),(130970,3,29429,2,1672319405),(130971,3,29430,2,1672319405),(130972,3,29431,2,1672319405),(130973,3,31005,2,1672319405),(130974,3,31047,2,1672319405),(130975,3,31367,2,1672319405),(130976,3,31896,2,1672319405),(130977,3,31897,2,1672319405),(130978,3,33465,2,1672319405),(130979,3,33466,2,1672319405),(130980,3,33542,2,1672319405),(130981,3,33543,2,1672319405),(130982,3,33544,2,1672319405),(130983,3,33545,2,1672319405),(130984,3,33546,2,1672319405),(130985,3,33547,2,1672319405),(130986,3,33548,2,1672319405),(130987,3,33549,2,1672319405),(130988,3,33550,2,1672319405),(130989,3,33551,2,1672319405),(130990,3,33620,2,1672319405),(130991,3,33695,2,1672319405),(130992,3,33696,2,1672319405),(130993,3,33697,2,1672319405),(130994,3,33698,2,1672319405),(130995,3,33699,2,1672319405),(130996,3,33700,2,1672319405),(130997,3,33701,2,1672319405),(130998,3,33702,2,1672319405),(130999,3,36553,2,1672319405),(131000,3,36554,2,1672319405),(131001,3,36555,2,1672319405),(131002,3,36556,2,1672319405),(131003,3,36557,2,1672319405),(131004,3,36558,2,1672319405),(131005,3,36559,2,1672319405),(131006,3,36560,2,1672319405),(131007,3,36561,2,1672319405),(131008,3,36562,2,1672319405),(131009,3,36563,2,1672319405),(131010,3,36564,2,1672319405),(131011,3,36565,2,1672319405),(131012,3,36566,2,1672319405),(131013,3,36610,2,1672319405),(131014,3,36611,2,1672319405),(131015,3,36612,2,1672319405),(131016,3,36613,2,1672319405),(131017,3,36614,2,1672319405),(131018,3,36615,2,1672319405),(131019,3,36616,2,1672319405),(131020,3,36617,2,1672319405),(131021,3,36618,2,1672319405),(131022,3,36619,2,1672319405),(131023,3,36620,2,1672319405),(131024,3,36621,2,1672319405),(131025,3,36622,2,1672319405),(131026,3,36623,2,1672319405),(131027,3,36667,2,1672319405),(131028,3,36668,2,1672319405),(131029,3,36669,2,1672319405),(131030,3,36670,2,1672319405),(131031,3,36671,2,1672319405),(131032,3,36672,2,1672319405),(131033,3,36673,2,1672319405),(131034,3,36674,2,1672319405),(131035,3,36675,2,1672319405),(131036,3,36676,2,1672319405),(131037,3,36677,2,1672319405),(131038,3,36678,2,1672319405),(131039,3,36679,2,1672319405),(131040,3,36680,2,1672319405),(131041,3,36724,2,1672319405),(131042,3,36725,2,1672319405),(131043,3,36726,2,1672319405),(131044,3,36727,2,1672319405),(131045,3,36728,2,1672319405),(131046,3,36729,2,1672319405),(131047,3,36730,2,1672319405),(131048,3,36731,2,1672319405),(131049,3,36732,2,1672319405),(131050,3,36733,2,1672319405),(131051,3,36734,2,1672319405),(131052,3,36735,2,1672319405),(131053,3,36736,2,1672319405),(131054,3,36737,2,1672319405),(131055,3,36813,2,1672319405),(131056,3,39851,2,1672319405),(131057,3,39852,2,1672319405),(131058,3,39853,2,1672319405),(131059,3,39854,2,1672319405),(131060,3,39855,2,1672319405),(131061,3,39856,2,1672319405),(131062,3,39857,2,1672319405),(131063,3,39858,2,1672319405),(131064,3,39859,2,1672319405),(131065,3,39860,2,1672319405),(131066,3,39889,2,1672319405),(131067,3,39917,2,1672319405),(131068,3,39918,2,1672319405),(131069,3,39919,2,1672319405),(131070,3,39920,2,1672319405),(131071,3,39940,2,1672319405),(131072,3,39941,2,1672319405),(131073,3,39942,2,1672319405),(131074,3,40000,2,1672319405),(131075,3,40001,2,1672319405),(131076,3,40002,2,1672319405),(131077,3,40021,2,1672319405),(131078,3,40022,2,1672319405),(131079,3,40023,2,1672319405),(131080,3,40024,2,1672319405),(131081,3,40025,2,1672319405),(131082,3,40026,2,1672319405),(131083,3,40027,2,1672319405),(131084,3,40028,2,1672319405),(131085,3,40029,2,1672319405),(131086,3,40030,2,1672319405),(131087,3,40031,2,1672319405),(131088,3,40032,2,1672319405),(131089,3,40033,2,1672319405),(131090,3,40034,2,1672319405),(131091,3,40035,2,1672319405),(131092,3,40855,2,1672319405),(131093,3,40856,2,1672319405),(131094,3,40878,2,1672319405),(131095,3,40879,2,1672319405),(131096,3,40901,2,1672319405),(131097,3,40922,2,1672319405),(131098,3,40923,2,1672319405),(131099,3,42271,2,1672319405),(131100,3,42272,2,1672319405),(131101,3,42273,2,1672319405),(131102,3,42360,2,1672319405),(131103,3,42361,2,1672319405),(131104,3,42362,2,1672319405),(131105,3,42410,2,1672319405),(131106,3,42411,2,1672319405),(131107,3,42412,2,1672319405),(131108,3,42413,2,1672319405),(131109,3,42414,2,1672319405),(131110,3,42703,2,1672319405),(131111,3,42704,2,1672319405),(131112,3,42705,2,1672319405),(131113,3,43184,2,1672319405),(131114,3,43185,2,1672319405),(131115,3,43186,2,1672319405),(131116,3,43187,2,1672319405),(131117,3,43188,2,1672319405),(131118,3,43189,2,1672319405),(131119,3,43190,2,1672319405),(131120,3,43191,2,1672319405),(131121,3,43192,2,1672319405),(131122,3,43193,2,1672319405),(131123,3,43291,2,1672319405),(131124,3,43292,2,1672319405),(131125,3,43293,2,1672319405),(131126,3,43294,2,1672319405),(131127,3,43295,2,1672319405),(131128,3,43296,2,1672319405),(131129,3,43297,2,1672319405),(131130,3,43298,2,1672319405),(131131,3,43299,2,1672319405),(131132,3,43300,2,1672319405),(131133,3,43415,2,1672319405),(131134,3,43416,2,1672319405),(131135,3,43417,2,1672319405),(131136,3,43418,2,1672319405),(131137,3,43419,2,1672319405),(131138,3,43420,2,1672319405),(131139,3,43905,2,1672319405),(131140,3,43906,2,1672319405),(131141,3,43907,2,1672319405),(131142,3,43908,2,1672319405),(131143,3,43909,2,1672319405),(131144,3,43910,2,1672319405),(131145,3,43911,2,1672319405),(131146,3,43912,2,1672319405),(131147,3,43913,2,1672319405),(131148,3,43914,2,1672319405),(131149,3,43915,2,1672319405),(131150,3,43916,2,1672319405),(131151,3,43917,2,1672319405),(131152,3,43918,2,1672319405),(131153,3,43919,2,1672319405),(131154,3,43920,2,1672319405),(131155,3,43921,2,1672319405),(131156,3,43922,2,1672319405),(131157,3,43923,2,1672319405),(131158,3,43924,2,1672319405),(131159,3,43925,2,1672319405),(131160,3,27078,3,1672319405),(131161,3,27098,3,1672319405),(131162,3,27118,3,1672319405),(131163,3,27745,3,1672319405),(131164,3,27746,3,1672319405),(131165,3,27747,3,1672319405),(131166,3,27779,3,1672319405),(131167,3,27780,3,1672319405),(131168,3,27781,3,1672319405),(131169,3,27782,3,1672319405),(131170,3,27815,3,1672319405),(131171,3,27816,3,1672319405),(131172,3,27817,3,1672319405),(131173,3,27818,3,1672319405),(131174,3,28144,3,1672319405),(131175,3,28145,3,1672319405),(131176,3,28146,3,1672319405),(131177,3,28147,3,1672319405),(131178,3,28148,3,1672319405),(131179,3,28149,3,1672319405),(131180,3,28392,3,1672319405),(131181,3,28393,3,1672319405),(131182,3,28394,3,1672319405),(131183,3,28395,3,1672319405),(131184,3,28396,3,1672319405),(131185,3,28397,3,1672319405),(131186,3,28398,3,1672319405),(131187,3,28399,3,1672319405),(131188,3,28400,3,1672319405),(131189,3,28401,3,1672319405),(131190,3,28402,3,1672319405),(131191,3,28403,3,1672319405),(131192,3,28468,3,1672319405),(131193,3,28469,3,1672319405),(131194,3,28470,3,1672319405),(131195,3,28471,3,1672319405),(131196,3,28472,3,1672319405),(131197,3,28473,3,1672319405),(131198,3,29008,3,1672319405),(131199,3,29009,3,1672319405),(131200,3,29010,3,1672319405),(131201,3,29201,3,1672319405),(131202,3,29429,3,1672319405),(131203,3,29430,3,1672319405),(131204,3,29431,3,1672319405),(131205,3,31005,3,1672319405),(131206,3,31047,3,1672319405),(131207,3,31367,3,1672319405),(131208,3,31896,3,1672319405),(131209,3,31897,3,1672319405),(131210,3,33465,3,1672319405),(131211,3,33466,3,1672319405),(131212,3,33542,3,1672319405),(131213,3,33543,3,1672319405),(131214,3,33544,3,1672319405),(131215,3,33545,3,1672319405),(131216,3,33546,3,1672319405),(131217,3,33547,3,1672319405),(131218,3,33548,3,1672319405),(131219,3,33549,3,1672319405),(131220,3,33550,3,1672319405),(131221,3,33551,3,1672319405),(131222,3,33620,3,1672319405),(131223,3,33695,3,1672319405),(131224,3,33696,3,1672319405),(131225,3,33697,3,1672319405),(131226,3,33698,3,1672319405),(131227,3,33699,3,1672319405),(131228,3,33700,3,1672319405),(131229,3,33701,3,1672319405),(131230,3,33702,3,1672319405),(131231,3,36553,3,1672319405),(131232,3,36554,3,1672319405),(131233,3,36555,3,1672319405),(131234,3,36556,3,1672319405),(131235,3,36557,3,1672319405),(131236,3,36558,3,1672319405),(131237,3,36559,3,1672319405),(131238,3,36560,3,1672319405),(131239,3,36561,3,1672319405),(131240,3,36562,3,1672319405),(131241,3,36563,3,1672319405),(131242,3,36564,3,1672319405),(131243,3,36565,3,1672319405),(131244,3,36566,3,1672319405),(131245,3,36610,3,1672319405),(131246,3,36611,3,1672319405),(131247,3,36612,3,1672319405),(131248,3,36613,3,1672319405),(131249,3,36614,3,1672319405),(131250,3,36615,3,1672319405),(131251,3,36616,3,1672319405),(131252,3,36617,3,1672319405),(131253,3,36618,3,1672319405),(131254,3,36619,3,1672319405),(131255,3,36620,3,1672319405),(131256,3,36621,3,1672319405),(131257,3,36622,3,1672319405),(131258,3,36623,3,1672319405),(131259,3,36667,3,1672319405),(131260,3,36668,3,1672319405),(131261,3,36669,3,1672319405),(131262,3,36670,3,1672319405),(131263,3,36671,3,1672319405),(131264,3,36672,3,1672319405),(131265,3,36673,3,1672319405),(131266,3,36674,3,1672319405),(131267,3,36675,3,1672319405),(131268,3,36676,3,1672319405),(131269,3,36677,3,1672319405),(131270,3,36678,3,1672319405),(131271,3,36679,3,1672319405),(131272,3,36680,3,1672319405),(131273,3,36724,3,1672319405),(131274,3,36725,3,1672319405),(131275,3,36726,3,1672319405),(131276,3,36727,3,1672319405),(131277,3,36728,3,1672319405),(131278,3,36729,3,1672319405),(131279,3,36730,3,1672319405),(131280,3,36731,3,1672319405),(131281,3,36732,3,1672319405),(131282,3,36733,3,1672319405),(131283,3,36734,3,1672319405),(131284,3,36735,3,1672319405),(131285,3,36736,3,1672319405),(131286,3,36737,3,1672319405),(131287,3,36813,3,1672319405),(131288,3,39851,3,1672319405),(131289,3,39852,3,1672319405),(131290,3,39853,3,1672319405),(131291,3,39854,3,1672319405),(131292,3,39855,3,1672319405),(131293,3,39856,3,1672319405),(131294,3,39857,3,1672319405),(131295,3,39858,3,1672319405),(131296,3,39859,3,1672319405),(131297,3,39860,3,1672319405),(131298,3,39889,3,1672319405),(131299,3,39917,3,1672319405),(131300,3,39918,3,1672319405),(131301,3,39919,3,1672319405),(131302,3,39920,3,1672319405),(131303,3,39940,3,1672319405),(131304,3,39941,3,1672319405),(131305,3,39942,3,1672319405),(131306,3,40000,3,1672319405),(131307,3,40001,3,1672319405),(131308,3,40002,3,1672319405),(131309,3,40021,3,1672319405),(131310,3,40022,3,1672319405),(131311,3,40023,3,1672319405),(131312,3,40024,3,1672319405),(131313,3,40025,3,1672319405),(131314,3,40026,3,1672319405),(131315,3,40027,3,1672319405),(131316,3,40028,3,1672319405),(131317,3,40029,3,1672319405),(131318,3,40030,3,1672319405),(131319,3,40031,3,1672319405),(131320,3,40032,3,1672319405),(131321,3,40033,3,1672319405),(131322,3,40034,3,1672319405),(131323,3,40035,3,1672319405),(131324,3,40855,3,1672319405),(131325,3,40856,3,1672319405),(131326,3,40878,3,1672319405),(131327,3,40879,3,1672319405),(131328,3,40901,3,1672319405),(131329,3,40922,3,1672319405),(131330,3,40923,3,1672319405),(131331,3,42271,3,1672319405),(131332,3,42272,3,1672319405),(131333,3,42273,3,1672319405),(131334,3,42360,3,1672319405),(131335,3,42361,3,1672319405),(131336,3,42362,3,1672319405),(131337,3,42410,3,1672319405),(131338,3,42411,3,1672319405),(131339,3,42412,3,1672319405),(131340,3,42413,3,1672319405),(131341,3,42414,3,1672319405),(131342,3,42703,3,1672319405),(131343,3,42704,3,1672319405),(131344,3,42705,3,1672319405),(131345,3,43184,3,1672319405),(131346,3,43185,3,1672319405),(131347,3,43186,3,1672319405),(131348,3,43187,3,1672319405),(131349,3,43188,3,1672319405),(131350,3,43189,3,1672319405),(131351,3,43190,3,1672319405),(131352,3,43191,3,1672319405),(131353,3,43192,3,1672319405),(131354,3,43193,3,1672319405),(131355,3,43291,3,1672319405),(131356,3,43292,3,1672319405),(131357,3,43293,3,1672319405),(131358,3,43294,3,1672319405),(131359,3,43295,3,1672319405),(131360,3,43296,3,1672319405),(131361,3,43297,3,1672319405),(131362,3,43298,3,1672319405),(131363,3,43299,3,1672319405),(131364,3,43300,3,1672319405),(131365,3,43415,3,1672319405),(131366,3,43416,3,1672319405),(131367,3,43417,3,1672319405),(131368,3,43418,3,1672319405),(131369,3,43419,3,1672319405),(131370,3,43420,3,1672319405),(131371,3,43905,3,1672319405),(131372,3,43906,3,1672319405),(131373,3,43907,3,1672319405),(131374,3,43908,3,1672319405),(131375,3,43909,3,1672319405),(131376,3,43910,3,1672319405),(131377,3,43911,3,1672319405),(131378,3,43912,3,1672319405),(131379,3,43913,3,1672319405),(131380,3,43914,3,1672319405),(131381,3,43915,3,1672319405),(131382,3,43916,3,1672319405),(131383,3,43917,3,1672319405),(131384,3,43918,3,1672319405),(131385,3,43919,3,1672319405),(131386,3,43920,3,1672319405),(131387,3,43921,3,1672319405),(131388,3,43922,3,1672319405),(131389,3,43923,3,1672319405),(131390,3,43924,3,1672319405),(131391,3,43925,3,1672319405),(131392,3,23646,2,1672319405),(131393,3,23647,2,1672319405),(131394,3,23648,2,1672319405),(131395,3,26925,2,1672319405),(131396,3,26926,2,1672319405),(131397,3,26927,2,1672319405),(131398,3,26928,2,1672319405),(131399,3,26929,2,1672319405),(131400,3,26930,2,1672319405),(131401,3,26931,2,1672319405),(131402,3,26932,2,1672319405),(131403,3,26933,2,1672319405),(131404,3,26934,2,1672319405),(131405,3,26935,2,1672319405),(131406,3,26936,2,1672319405),(131407,3,26937,2,1672319405),(131408,3,26938,2,1672319405),(131409,3,26939,2,1672319405),(131410,3,26940,2,1672319405),(131411,3,26941,2,1672319405),(131412,3,26942,2,1672319405),(131413,3,26943,2,1672319405),(131414,3,27065,2,1672319405),(131415,3,27066,2,1672319405),(131416,3,27067,2,1672319405),(131417,3,27777,2,1672319405),(131418,3,27778,2,1672319405),(131419,3,27812,2,1672319405),(131420,3,27813,2,1672319405),(131421,3,27814,2,1672319405),(131422,3,28141,2,1672319405),(131423,3,28142,2,1672319405),(131424,3,28143,2,1672319405),(131425,3,28388,2,1672319405),(131426,3,28390,2,1672319405),(131427,3,28391,2,1672319405),(131428,3,28465,2,1672319405),(131429,3,28466,2,1672319405),(131430,3,28467,2,1672319405),(131431,3,28987,2,1672319405),(131432,3,28988,2,1672319405),(131433,3,28989,2,1672319405),(131434,3,28990,2,1672319405),(131435,3,28991,2,1672319405),(131436,3,28992,2,1672319405),(131437,3,29087,2,1672319405),(131438,3,29088,2,1672319405),(131439,3,29089,2,1672319405),(131440,3,29090,2,1672319405),(131441,3,29091,2,1672319405),(131442,3,29092,2,1672319405),(131443,3,29093,2,1672319405),(131444,3,29094,2,1672319405),(131445,3,29095,2,1672319405),(131446,3,29096,2,1672319405),(131447,3,29097,2,1672319405),(131448,3,29098,2,1672319405),(131449,3,29099,2,1672319405),(131450,3,29100,2,1672319405),(131451,3,29101,2,1672319405),(131452,3,29102,2,1672319405),(131453,3,29110,2,1672319405),(131454,3,29111,2,1672319405),(131455,3,29112,2,1672319405),(131456,3,29113,2,1672319405),(131457,3,29114,2,1672319405),(131458,3,29115,2,1672319405),(131459,3,29116,2,1672319405),(131460,3,29117,2,1672319405),(131461,3,29118,2,1672319405),(131462,3,29119,2,1672319405),(131463,3,29120,2,1672319405),(131464,3,29121,2,1672319405),(131465,3,29122,2,1672319405),(131466,3,29123,2,1672319405),(131467,3,29198,2,1672319405),(131468,3,29395,2,1672319405),(131469,3,29396,2,1672319405),(131470,3,29397,2,1672319405),(131471,3,29398,2,1672319405),(131472,3,29399,2,1672319405),(131473,3,29400,2,1672319405),(131474,3,29401,2,1672319405),(131475,3,29402,2,1672319405),(131476,3,29403,2,1672319405),(131477,3,29404,2,1672319405),(131478,3,29405,2,1672319405),(131479,3,29406,2,1672319405),(131480,3,29407,2,1672319405),(131481,3,29408,2,1672319405),(131482,3,29409,2,1672319405),(131483,3,29410,2,1672319405),(131484,3,29411,2,1672319405),(131485,3,29412,2,1672319405),(131486,3,29413,2,1672319405),(131487,3,29414,2,1672319405),(131488,3,29415,2,1672319405),(131489,3,29416,2,1672319405),(131490,3,29417,2,1672319405),(131491,3,29418,2,1672319405),(131492,3,29419,2,1672319405),(131493,3,29420,2,1672319405),(131494,3,29421,2,1672319405),(131495,3,29422,2,1672319405),(131496,3,29423,2,1672319405),(131497,3,29424,2,1672319405),(131498,3,29425,2,1672319405),(131499,3,29426,2,1672319405),(131500,3,29427,2,1672319405),(131501,3,29428,2,1672319405),(131502,3,29994,2,1672319405),(131503,3,30117,2,1672319405),(131504,3,30968,2,1672319405),(131505,3,30969,2,1672319405),(131506,3,30970,2,1672319405),(131507,3,30971,2,1672319405),(131508,3,30972,2,1672319405),(131509,3,30973,2,1672319405),(131510,3,30974,2,1672319405),(131511,3,30975,2,1672319405),(131512,3,30976,2,1672319405),(131513,3,30977,2,1672319405),(131514,3,30978,2,1672319405),(131515,3,30979,2,1672319405),(131516,3,30980,2,1672319405),(131517,3,30981,2,1672319405),(131518,3,30982,2,1672319405),(131519,3,30983,2,1672319405),(131520,3,30984,2,1672319405),(131521,3,30985,2,1672319405),(131522,3,30986,2,1672319405),(131523,3,30987,2,1672319405),(131524,3,30988,2,1672319405),(131525,3,30989,2,1672319405),(131526,3,30990,2,1672319405),(131527,3,30991,2,1672319405),(131528,3,30992,2,1672319405),(131529,3,30993,2,1672319405),(131530,3,30994,2,1672319405),(131531,3,30995,2,1672319405),(131532,3,30996,2,1672319405),(131533,3,30997,2,1672319405),(131534,3,30998,2,1672319405),(131535,3,30999,2,1672319405),(131536,3,31000,2,1672319405),(131537,3,31001,2,1672319405),(131538,3,31002,2,1672319405),(131539,3,31003,2,1672319405),(131540,3,31004,2,1672319405),(131541,3,31010,2,1672319405),(131542,3,31011,2,1672319405),(131543,3,31012,2,1672319405),(131544,3,31013,2,1672319405),(131545,3,31014,2,1672319405),(131546,3,31015,2,1672319405),(131547,3,31016,2,1672319405),(131548,3,31017,2,1672319405),(131549,3,31018,2,1672319405),(131550,3,31019,2,1672319405),(131551,3,31020,2,1672319405),(131552,3,31021,2,1672319405),(131553,3,31022,2,1672319405),(131554,3,31023,2,1672319405),(131555,3,31024,2,1672319405),(131556,3,31025,2,1672319405),(131557,3,31026,2,1672319405),(131558,3,31027,2,1672319405),(131559,3,31028,2,1672319405),(131560,3,31029,2,1672319405),(131561,3,31030,2,1672319405),(131562,3,31031,2,1672319405),(131563,3,31032,2,1672319405),(131564,3,31033,2,1672319405),(131565,3,31034,2,1672319405),(131566,3,31035,2,1672319405),(131567,3,31036,2,1672319405),(131568,3,31037,2,1672319405),(131569,3,31038,2,1672319405),(131570,3,31039,2,1672319405),(131571,3,31040,2,1672319405),(131572,3,31041,2,1672319405),(131573,3,31042,2,1672319405),(131574,3,31043,2,1672319405),(131575,3,31044,2,1672319405),(131576,3,31045,2,1672319405),(131577,3,31046,2,1672319405),(131578,3,31820,2,1672319405),(131579,3,31821,2,1672319405),(131580,3,31822,2,1672319405),(131581,3,31823,2,1672319405),(131582,3,31824,2,1672319405),(131583,3,31825,2,1672319405),(131584,3,31826,2,1672319405),(131585,3,31827,2,1672319405),(131586,3,31828,2,1672319405),(131587,3,31829,2,1672319405),(131588,3,31830,2,1672319405),(131589,3,31831,2,1672319405),(131590,3,31832,2,1672319405),(131591,3,31833,2,1672319405),(131592,3,31834,2,1672319405),(131593,3,31835,2,1672319405),(131594,3,31892,2,1672319405),(131595,3,33391,2,1672319405),(131596,3,33392,2,1672319405),(131597,3,33393,2,1672319405),(131598,3,33394,2,1672319405),(131599,3,33395,2,1672319405),(131600,3,33396,2,1672319405),(131601,3,33397,2,1672319405),(131602,3,33398,2,1672319405),(131603,3,33399,2,1672319405),(131604,3,33400,2,1672319405),(131605,3,33401,2,1672319405),(131606,3,33402,2,1672319405),(131607,3,33403,2,1672319405),(131608,3,33404,2,1672319405),(131609,3,33405,2,1672319405),(131610,3,33406,2,1672319405),(131611,3,33407,2,1672319405),(131612,3,33408,2,1672319405),(131613,3,33409,2,1672319405),(131614,3,33410,2,1672319405),(131615,3,33411,2,1672319405),(131616,3,33412,2,1672319405),(131617,3,33413,2,1672319405),(131618,3,33414,2,1672319405),(131619,3,33415,2,1672319405),(131620,3,33416,2,1672319405),(131621,3,33417,2,1672319405),(131622,3,33418,2,1672319405),(131623,3,33419,2,1672319405),(131624,3,33420,2,1672319405),(131625,3,33421,2,1672319405),(131626,3,33422,2,1672319405),(131627,3,33423,2,1672319405),(131628,3,33424,2,1672319405),(131629,3,33425,2,1672319405),(131630,3,33426,2,1672319405),(131631,3,33427,2,1672319405),(131632,3,33428,2,1672319405),(131633,3,33429,2,1672319405),(131634,3,33430,2,1672319405),(131635,3,33431,2,1672319405),(131636,3,33432,2,1672319405),(131637,3,33433,2,1672319405),(131638,3,33434,2,1672319405),(131639,3,33435,2,1672319405),(131640,3,33436,2,1672319405),(131641,3,33437,2,1672319405),(131642,3,33438,2,1672319405),(131643,3,33439,2,1672319405),(131644,3,33440,2,1672319405),(131645,3,33441,2,1672319405),(131646,3,33442,2,1672319405),(131647,3,33443,2,1672319405),(131648,3,33444,2,1672319405),(131649,3,33445,2,1672319405),(131650,3,33446,2,1672319405),(131651,3,33447,2,1672319405),(131652,3,33448,2,1672319405),(131653,3,33449,2,1672319405),(131654,3,33450,2,1672319405),(131655,3,33451,2,1672319405),(131656,3,33452,2,1672319405),(131657,3,33453,2,1672319405),(131658,3,33454,2,1672319405),(131659,3,33455,2,1672319405),(131660,3,33456,2,1672319405),(131661,3,33457,2,1672319405),(131662,3,33458,2,1672319405),(131663,3,33459,2,1672319405),(131664,3,33460,2,1672319405),(131665,3,33461,2,1672319405),(131666,3,33462,2,1672319405),(131667,3,33463,2,1672319405),(131668,3,33464,2,1672319405),(131669,3,33691,2,1672319405),(131670,3,33692,2,1672319405),(131671,3,33693,2,1672319405),(131672,3,33694,2,1672319405),(131673,3,36541,2,1672319405),(131674,3,36542,2,1672319405),(131675,3,36543,2,1672319405),(131676,3,36544,2,1672319405),(131677,3,36545,2,1672319405),(131678,3,36546,2,1672319405),(131679,3,36547,2,1672319405),(131680,3,36548,2,1672319405),(131681,3,36549,2,1672319405),(131682,3,36550,2,1672319405),(131683,3,36551,2,1672319405),(131684,3,36552,2,1672319405),(131685,3,36598,2,1672319405),(131686,3,36599,2,1672319405),(131687,3,36600,2,1672319405),(131688,3,36601,2,1672319405),(131689,3,36602,2,1672319405),(131690,3,36603,2,1672319405),(131691,3,36604,2,1672319405),(131692,3,36605,2,1672319405),(131693,3,36606,2,1672319405),(131694,3,36607,2,1672319405),(131695,3,36608,2,1672319405),(131696,3,36609,2,1672319405),(131697,3,36655,2,1672319405),(131698,3,36656,2,1672319405),(131699,3,36657,2,1672319405),(131700,3,36658,2,1672319405),(131701,3,36659,2,1672319405),(131702,3,36660,2,1672319405),(131703,3,36661,2,1672319405),(131704,3,36662,2,1672319405),(131705,3,36663,2,1672319405),(131706,3,36664,2,1672319405),(131707,3,36665,2,1672319405),(131708,3,36666,2,1672319405),(131709,3,36712,2,1672319405),(131710,3,36713,2,1672319405),(131711,3,36714,2,1672319405),(131712,3,36715,2,1672319405),(131713,3,36716,2,1672319405),(131714,3,36717,2,1672319405),(131715,3,36718,2,1672319405),(131716,3,36719,2,1672319405),(131717,3,36720,2,1672319405),(131718,3,36721,2,1672319405),(131719,3,36722,2,1672319405),(131720,3,36723,2,1672319405),(131721,3,36795,2,1672319405),(131722,3,36796,2,1672319405),(131723,3,36797,2,1672319405),(131724,3,36798,2,1672319405),(131725,3,36799,2,1672319405),(131726,3,36800,2,1672319405),(131727,3,36801,2,1672319405),(131728,3,36802,2,1672319405),(131729,3,36803,2,1672319405),(131730,3,36804,2,1672319405),(131731,3,36805,2,1672319405),(131732,3,36806,2,1672319405),(131733,3,36807,2,1672319405),(131734,3,36808,2,1672319405),(131735,3,36809,2,1672319405),(131736,3,36810,2,1672319405),(131737,3,36811,2,1672319405),(131738,3,36812,2,1672319405),(131739,3,39827,2,1672319405),(131740,3,39829,2,1672319405),(131741,3,39830,2,1672319405),(131742,3,39831,2,1672319405),(131743,3,39832,2,1672319405),(131744,3,39833,2,1672319405),(131745,3,39834,2,1672319405),(131746,3,39835,2,1672319405),(131747,3,39836,2,1672319405),(131748,3,39837,2,1672319405),(131749,3,39838,2,1672319405),(131750,3,39839,2,1672319405),(131751,3,39840,2,1672319405),(131752,3,39841,2,1672319405),(131753,3,39842,2,1672319405),(131754,3,39843,2,1672319405),(131755,3,39844,2,1672319405),(131756,3,39845,2,1672319405),(131757,3,39846,2,1672319405),(131758,3,39847,2,1672319405),(131759,3,39848,2,1672319405),(131760,3,39849,2,1672319405),(131761,3,39850,2,1672319405),(131762,3,39876,2,1672319405),(131763,3,39877,2,1672319405),(131764,3,39878,2,1672319405),(131765,3,39879,2,1672319405),(131766,3,39880,2,1672319405),(131767,3,39881,2,1672319405),(131768,3,39882,2,1672319405),(131769,3,39883,2,1672319405),(131770,3,39884,2,1672319405),(131771,3,39885,2,1672319405),(131772,3,39886,2,1672319405),(131773,3,39887,2,1672319405),(131774,3,39888,2,1672319405),(131775,3,39905,2,1672319405),(131776,3,39906,2,1672319405),(131777,3,39907,2,1672319405),(131778,3,39908,2,1672319405),(131779,3,39909,2,1672319405),(131780,3,39910,2,1672319405),(131781,3,39911,2,1672319405),(131782,3,39912,2,1672319405),(131783,3,39913,2,1672319405),(131784,3,39914,2,1672319405),(131785,3,39915,2,1672319405),(131786,3,39916,2,1672319405),(131787,3,39937,2,1672319405),(131788,3,39938,2,1672319405),(131789,3,39939,2,1672319405),(131790,3,39978,2,1672319405),(131791,3,39986,2,1672319405),(131792,3,39987,2,1672319405),(131793,3,39988,2,1672319405),(131794,3,39989,2,1672319405),(131795,3,39990,2,1672319405),(131796,3,39991,2,1672319405),(131797,3,39992,2,1672319405),(131798,3,39993,2,1672319405),(131799,3,39994,2,1672319405),(131800,3,39995,2,1672319405),(131801,3,39996,2,1672319405),(131802,3,39997,2,1672319405),(131803,3,39998,2,1672319405),(131804,3,39999,2,1672319405),(131805,3,40010,2,1672319405),(131806,3,40011,2,1672319405),(131807,3,40012,2,1672319405),(131808,3,40013,2,1672319405),(131809,3,40014,2,1672319405),(131810,3,40015,2,1672319405),(131811,3,40016,2,1672319405),(131812,3,40017,2,1672319405),(131813,3,40018,2,1672319405),(131814,3,40019,2,1672319405),(131815,3,40020,2,1672319405),(131816,3,40844,2,1672319405),(131817,3,40845,2,1672319405),(131818,3,40846,2,1672319405),(131819,3,40847,2,1672319405),(131820,3,40848,2,1672319405),(131821,3,40849,2,1672319405),(131822,3,40850,2,1672319405),(131823,3,40851,2,1672319405),(131824,3,40852,2,1672319405),(131825,3,40853,2,1672319405),(131826,3,40854,2,1672319405),(131827,3,40867,2,1672319405),(131828,3,40868,2,1672319405),(131829,3,40869,2,1672319405),(131830,3,40870,2,1672319405),(131831,3,40871,2,1672319405),(131832,3,40872,2,1672319405),(131833,3,40873,2,1672319405),(131834,3,40874,2,1672319405),(131835,3,40875,2,1672319405),(131836,3,40876,2,1672319405),(131837,3,40877,2,1672319405),(131838,3,40890,2,1672319405),(131839,3,40891,2,1672319405),(131840,3,40892,2,1672319405),(131841,3,40893,2,1672319405),(131842,3,40894,2,1672319405),(131843,3,40895,2,1672319405),(131844,3,40896,2,1672319405),(131845,3,40897,2,1672319405),(131846,3,40898,2,1672319405),(131847,3,40899,2,1672319405),(131848,3,40900,2,1672319405),(131849,3,40911,2,1672319405),(131850,3,40912,2,1672319405),(131851,3,40913,2,1672319405),(131852,3,40914,2,1672319405),(131853,3,40915,2,1672319405),(131854,3,40916,2,1672319405),(131855,3,40917,2,1672319405),(131856,3,40918,2,1672319405),(131857,3,40919,2,1672319405),(131858,3,40920,2,1672319405),(131859,3,40921,2,1672319405),(131860,3,42187,2,1672319405),(131861,3,42188,2,1672319405),(131862,3,42189,2,1672319405),(131863,3,42190,2,1672319405),(131864,3,42191,2,1672319405),(131865,3,42192,2,1672319405),(131866,3,42193,2,1672319405),(131867,3,42194,2,1672319405),(131868,3,42195,2,1672319405),(131869,3,42196,2,1672319405),(131870,3,42197,2,1672319405),(131871,3,42198,2,1672319405),(131872,3,42199,2,1672319405),(131873,3,42200,2,1672319405),(131874,3,42201,2,1672319405),(131875,3,42202,2,1672319405),(131876,3,42203,2,1672319405),(131877,3,42204,2,1672319405),(131878,3,42205,2,1672319405),(131879,3,42206,2,1672319405),(131880,3,42207,2,1672319405),(131881,3,42208,2,1672319405),(131882,3,42209,2,1672319405),(131883,3,42210,2,1672319405),(131884,3,42211,2,1672319405),(131885,3,42212,2,1672319405),(131886,3,42213,2,1672319405),(131887,3,42214,2,1672319405),(131888,3,42215,2,1672319405),(131889,3,42216,2,1672319405),(131890,3,42217,2,1672319405),(131891,3,42218,2,1672319405),(131892,3,42219,2,1672319405),(131893,3,42220,2,1672319405),(131894,3,42221,2,1672319405),(131895,3,42222,2,1672319405),(131896,3,42223,2,1672319405),(131897,3,42224,2,1672319405),(131898,3,42225,2,1672319405),(131899,3,42226,2,1672319405),(131900,3,42267,2,1672319405),(131901,3,42268,2,1672319405),(131902,3,42319,2,1672319405),(131903,3,42320,2,1672319405),(131904,3,42321,2,1672319405),(131905,3,42322,2,1672319405),(131906,3,42323,2,1672319405),(131907,3,42324,2,1672319405),(131908,3,42325,2,1672319405),(131909,3,42326,2,1672319405),(131910,3,42327,2,1672319405),(131911,3,42328,2,1672319405),(131912,3,42329,2,1672319405),(131913,3,42330,2,1672319405),(131914,3,42331,2,1672319405),(131915,3,42332,2,1672319405),(131916,3,42333,2,1672319405),(131917,3,42334,2,1672319405),(131918,3,42335,2,1672319405),(131919,3,42336,2,1672319405),(131920,3,42337,2,1672319405),(131921,3,42338,2,1672319405),(131922,3,42339,2,1672319405),(131923,3,42340,2,1672319405),(131924,3,42341,2,1672319405),(131925,3,42342,2,1672319405),(131926,3,42343,2,1672319405),(131927,3,42344,2,1672319405),(131928,3,42345,2,1672319405),(131929,3,42346,2,1672319405),(131930,3,42347,2,1672319405),(131931,3,42348,2,1672319405),(131932,3,42349,2,1672319405),(131933,3,42350,2,1672319405),(131934,3,42351,2,1672319405),(131935,3,42352,2,1672319405),(131936,3,42353,2,1672319405),(131937,3,42354,2,1672319405),(131938,3,42355,2,1672319405),(131939,3,42356,2,1672319405),(131940,3,42357,2,1672319405),(131941,3,42358,2,1672319405),(131942,3,42359,2,1672319405),(131943,3,42384,2,1672319405),(131944,3,42385,2,1672319405),(131945,3,42386,2,1672319405),(131946,3,42387,2,1672319405),(131947,3,42388,2,1672319405),(131948,3,42389,2,1672319405),(131949,3,42390,2,1672319405),(131950,3,42391,2,1672319405),(131951,3,42392,2,1672319405),(131952,3,42393,2,1672319405),(131953,3,42394,2,1672319405),(131954,3,42395,2,1672319405),(131955,3,42396,2,1672319405),(131956,3,42397,2,1672319405),(131957,3,42398,2,1672319405),(131958,3,42399,2,1672319405),(131959,3,42400,2,1672319405),(131960,3,42401,2,1672319405),(131961,3,42402,2,1672319405),(131962,3,42403,2,1672319405),(131963,3,42404,2,1672319405),(131964,3,42405,2,1672319405),(131965,3,42406,2,1672319405),(131966,3,42407,2,1672319405),(131967,3,42408,2,1672319405),(131968,3,42409,2,1672319405),(131969,3,42598,2,1672319405),(131970,3,42599,2,1672319405),(131971,3,42600,2,1672319405),(131972,3,42601,2,1672319405),(131973,3,42602,2,1672319405),(131974,3,42603,2,1672319405),(131975,3,42604,2,1672319405),(131976,3,42605,2,1672319405),(131977,3,42606,2,1672319405),(131978,3,42607,2,1672319405),(131979,3,42608,2,1672319405),(131980,3,42642,2,1672319405),(131981,3,42643,2,1672319405),(131982,3,42644,2,1672319405),(131983,3,42645,2,1672319405),(131984,3,42646,2,1672319405),(131985,3,42647,2,1672319405),(131986,3,42648,2,1672319405),(131987,3,42649,2,1672319405),(131988,3,42650,2,1672319405),(131989,3,42651,2,1672319405),(131990,3,42652,2,1672319405),(131991,3,42653,2,1672319405),(131992,3,42654,2,1672319405),(131993,3,42655,2,1672319405),(131994,3,42656,2,1672319405),(131995,3,42657,2,1672319405),(131996,3,42658,2,1672319405),(131997,3,42659,2,1672319405),(131998,3,42660,2,1672319405),(131999,3,42661,2,1672319405),(132000,3,42662,2,1672319405),(132001,3,42663,2,1672319405),(132002,3,42675,2,1672319405),(132003,3,42700,2,1672319405),(132004,3,42701,2,1672319405),(132005,3,42702,2,1672319405),(132006,3,43078,2,1672319405),(132007,3,43079,2,1672319405),(132008,3,43174,2,1672319405),(132009,3,43175,2,1672319405),(132010,3,43176,2,1672319405),(132011,3,43177,2,1672319405),(132012,3,43178,2,1672319405),(132013,3,43179,2,1672319405),(132014,3,43180,2,1672319405),(132015,3,43181,2,1672319405),(132016,3,43182,2,1672319405),(132017,3,43183,2,1672319405),(132018,3,43281,2,1672319405),(132019,3,43282,2,1672319405),(132020,3,43283,2,1672319405),(132021,3,43284,2,1672319405),(132022,3,43285,2,1672319405),(132023,3,43286,2,1672319405),(132024,3,43287,2,1672319405),(132025,3,43288,2,1672319405),(132026,3,43289,2,1672319405),(132027,3,43290,2,1672319405),(132028,3,43398,2,1672319405),(132029,3,43399,2,1672319405),(132030,3,43400,2,1672319405),(132031,3,43401,2,1672319405),(132032,3,43402,2,1672319405),(132033,3,43403,2,1672319405),(132034,3,43404,2,1672319405),(132035,3,43405,2,1672319405),(132036,3,43406,2,1672319405),(132037,3,43407,2,1672319405),(132038,3,43408,2,1672319405),(132039,3,43409,2,1672319405),(132040,3,43410,2,1672319405),(132041,3,43411,2,1672319405),(132042,3,43412,2,1672319405),(132043,3,43413,2,1672319405),(132044,3,43414,2,1672319405),(132045,3,43789,2,1672319405),(132046,3,43790,2,1672319405),(132047,3,43791,2,1672319405),(132048,3,43792,2,1672319405),(132049,3,43874,2,1672319405),(132050,3,43887,2,1672319405),(132051,3,43896,2,1672319405),(132052,3,43897,2,1672319405),(132053,3,43898,2,1672319405),(132054,3,43899,2,1672319405),(132055,3,43900,2,1672319405),(132056,3,43901,2,1672319405),(132057,3,43902,2,1672319405),(132058,3,43903,2,1672319405),(132059,3,43904,2,1672319405),(132060,3,44050,2,1672319405),(132061,3,44094,2,1672319405),(132062,3,44095,2,1672319405),(132063,3,44096,2,1672319405),(132064,3,44097,2,1672319405),(132065,3,44098,2,1672319405),(132066,3,44099,2,1672319405),(132067,3,44100,2,1672319405),(132068,3,44101,2,1672319405),(132069,3,44102,2,1672319405),(132070,3,44103,2,1672319405),(132071,3,44104,2,1672319405),(132072,3,44105,2,1672319405),(132073,3,44106,2,1672319405),(132074,3,44107,2,1672319405),(132075,3,44121,2,1672319405),(132076,3,44122,2,1672319405),(132077,3,44123,2,1672319405),(132078,3,44124,2,1672319405),(132079,3,44125,2,1672319405),(132080,3,44126,2,1672319405),(132081,3,44127,2,1672319405),(132082,3,44128,2,1672319405),(132083,3,44129,2,1672319405),(132084,3,44130,2,1672319405),(132085,3,44131,2,1672319405),(132086,3,44132,2,1672319405),(132087,3,44133,2,1672319405),(132088,3,44134,2,1672319405),(132089,3,44148,2,1672319405),(132090,3,44149,2,1672319405),(132091,3,44150,2,1672319405),(132092,3,44151,2,1672319405),(132093,3,44152,2,1672319405),(132094,3,44153,2,1672319405),(132095,3,44154,2,1672319405),(132096,3,44201,2,1672319405),(132097,3,44202,2,1672319405),(132098,3,44203,2,1672319405),(132099,3,44204,2,1672319405),(132100,3,44205,2,1672319405),(132101,3,44206,2,1672319405),(132102,3,44207,2,1672319405),(132103,3,44208,2,1672319405),(132104,3,44209,2,1672319405),(132105,3,44210,2,1672319405),(132106,3,44211,2,1672319405),(132107,3,44212,2,1672319405),(132108,3,44213,2,1672319405),(132109,3,44371,2,1672319405),(132110,3,44374,2,1672319405),(132111,3,44436,2,1672319405),(132112,3,44442,2,1672319405),(132113,3,23646,3,1672319405),(132114,3,23647,3,1672319405),(132115,3,23648,3,1672319405),(132116,3,26925,3,1672319405),(132117,3,26926,3,1672319405),(132118,3,26927,3,1672319405),(132119,3,26928,3,1672319405),(132120,3,26929,3,1672319405),(132121,3,26930,3,1672319405),(132122,3,26931,3,1672319405),(132123,3,26932,3,1672319405),(132124,3,26933,3,1672319405),(132125,3,26934,3,1672319405),(132126,3,26935,3,1672319405),(132127,3,26936,3,1672319405),(132128,3,26937,3,1672319405),(132129,3,26938,3,1672319405),(132130,3,26939,3,1672319405),(132131,3,26940,3,1672319405),(132132,3,26941,3,1672319405),(132133,3,26942,3,1672319405),(132134,3,26943,3,1672319405),(132135,3,27065,3,1672319405),(132136,3,27066,3,1672319405),(132137,3,27067,3,1672319405),(132138,3,27777,3,1672319405),(132139,3,27778,3,1672319405),(132140,3,27812,3,1672319405),(132141,3,27813,3,1672319405),(132142,3,27814,3,1672319405),(132143,3,28141,3,1672319405),(132144,3,28142,3,1672319405),(132145,3,28143,3,1672319405),(132146,3,28388,3,1672319405),(132147,3,28390,3,1672319405),(132148,3,28391,3,1672319405),(132149,3,28465,3,1672319405),(132150,3,28466,3,1672319405),(132151,3,28467,3,1672319405),(132152,3,28987,3,1672319405),(132153,3,28988,3,1672319405),(132154,3,28989,3,1672319405),(132155,3,28990,3,1672319405),(132156,3,28991,3,1672319405),(132157,3,28992,3,1672319405),(132158,3,29087,3,1672319405),(132159,3,29088,3,1672319405),(132160,3,29089,3,1672319405),(132161,3,29090,3,1672319405),(132162,3,29091,3,1672319405),(132163,3,29092,3,1672319405),(132164,3,29093,3,1672319405),(132165,3,29094,3,1672319405),(132166,3,29095,3,1672319405),(132167,3,29096,3,1672319405),(132168,3,29097,3,1672319405),(132169,3,29098,3,1672319405),(132170,3,29099,3,1672319405),(132171,3,29100,3,1672319405),(132172,3,29101,3,1672319405),(132173,3,29102,3,1672319405),(132174,3,29110,3,1672319405),(132175,3,29111,3,1672319405),(132176,3,29112,3,1672319405),(132177,3,29113,3,1672319405),(132178,3,29114,3,1672319405),(132179,3,29115,3,1672319405),(132180,3,29116,3,1672319405),(132181,3,29117,3,1672319405),(132182,3,29118,3,1672319405),(132183,3,29119,3,1672319405),(132184,3,29120,3,1672319405),(132185,3,29121,3,1672319405),(132186,3,29122,3,1672319405),(132187,3,29123,3,1672319405),(132188,3,29198,3,1672319405),(132189,3,29395,3,1672319405),(132190,3,29396,3,1672319405),(132191,3,29397,3,1672319405),(132192,3,29398,3,1672319405),(132193,3,29399,3,1672319405),(132194,3,29400,3,1672319405),(132195,3,29401,3,1672319405),(132196,3,29402,3,1672319405),(132197,3,29403,3,1672319405),(132198,3,29404,3,1672319405),(132199,3,29405,3,1672319405),(132200,3,29406,3,1672319405),(132201,3,29407,3,1672319405),(132202,3,29408,3,1672319405),(132203,3,29409,3,1672319405),(132204,3,29410,3,1672319405),(132205,3,29411,3,1672319405),(132206,3,29412,3,1672319405),(132207,3,29413,3,1672319405),(132208,3,29414,3,1672319405),(132209,3,29415,3,1672319405),(132210,3,29416,3,1672319405),(132211,3,29417,3,1672319405),(132212,3,29418,3,1672319405),(132213,3,29419,3,1672319405),(132214,3,29420,3,1672319405),(132215,3,29421,3,1672319405),(132216,3,29422,3,1672319405),(132217,3,29423,3,1672319405),(132218,3,29424,3,1672319405),(132219,3,29425,3,1672319405),(132220,3,29426,3,1672319405),(132221,3,29427,3,1672319405),(132222,3,29428,3,1672319405),(132223,3,29994,3,1672319405),(132224,3,30117,3,1672319405),(132225,3,30968,3,1672319405),(132226,3,30969,3,1672319405),(132227,3,30970,3,1672319405),(132228,3,30971,3,1672319405),(132229,3,30972,3,1672319405),(132230,3,30973,3,1672319405),(132231,3,30974,3,1672319405),(132232,3,30975,3,1672319405),(132233,3,30976,3,1672319405),(132234,3,30977,3,1672319405),(132235,3,30978,3,1672319405),(132236,3,30979,3,1672319405),(132237,3,30980,3,1672319405),(132238,3,30981,3,1672319405),(132239,3,30982,3,1672319405),(132240,3,30983,3,1672319405),(132241,3,30984,3,1672319405),(132242,3,30985,3,1672319405),(132243,3,30986,3,1672319405),(132244,3,30987,3,1672319405),(132245,3,30988,3,1672319405),(132246,3,30989,3,1672319405),(132247,3,30990,3,1672319405),(132248,3,30991,3,1672319405),(132249,3,30992,3,1672319405),(132250,3,30993,3,1672319405),(132251,3,30994,3,1672319405),(132252,3,30995,3,1672319405),(132253,3,30996,3,1672319405),(132254,3,30997,3,1672319405),(132255,3,30998,3,1672319405),(132256,3,30999,3,1672319405),(132257,3,31000,3,1672319405),(132258,3,31001,3,1672319405),(132259,3,31002,3,1672319405),(132260,3,31003,3,1672319405),(132261,3,31004,3,1672319405),(132262,3,31010,3,1672319405),(132263,3,31011,3,1672319405),(132264,3,31012,3,1672319405),(132265,3,31013,3,1672319405),(132266,3,31014,3,1672319405),(132267,3,31015,3,1672319405),(132268,3,31016,3,1672319405),(132269,3,31017,3,1672319405),(132270,3,31018,3,1672319405),(132271,3,31019,3,1672319405),(132272,3,31020,3,1672319405),(132273,3,31021,3,1672319405),(132274,3,31022,3,1672319405),(132275,3,31023,3,1672319405),(132276,3,31024,3,1672319405),(132277,3,31025,3,1672319405),(132278,3,31026,3,1672319405),(132279,3,31027,3,1672319405),(132280,3,31028,3,1672319405),(132281,3,31029,3,1672319405),(132282,3,31030,3,1672319405),(132283,3,31031,3,1672319405),(132284,3,31032,3,1672319405),(132285,3,31033,3,1672319405),(132286,3,31034,3,1672319405),(132287,3,31035,3,1672319405),(132288,3,31036,3,1672319405),(132289,3,31037,3,1672319405),(132290,3,31038,3,1672319405),(132291,3,31039,3,1672319405),(132292,3,31040,3,1672319405),(132293,3,31041,3,1672319405),(132294,3,31042,3,1672319405),(132295,3,31043,3,1672319405),(132296,3,31044,3,1672319405),(132297,3,31045,3,1672319405),(132298,3,31046,3,1672319405),(132299,3,31820,3,1672319405),(132300,3,31821,3,1672319405),(132301,3,31822,3,1672319405),(132302,3,31823,3,1672319405),(132303,3,31824,3,1672319405),(132304,3,31825,3,1672319405),(132305,3,31826,3,1672319405),(132306,3,31827,3,1672319405),(132307,3,31828,3,1672319405),(132308,3,31829,3,1672319405),(132309,3,31830,3,1672319405),(132310,3,31831,3,1672319405),(132311,3,31832,3,1672319405),(132312,3,31833,3,1672319405),(132313,3,31834,3,1672319405),(132314,3,31835,3,1672319405),(132315,3,31892,3,1672319405),(132316,3,33391,3,1672319405),(132317,3,33392,3,1672319405),(132318,3,33393,3,1672319405),(132319,3,33394,3,1672319405),(132320,3,33395,3,1672319405),(132321,3,33396,3,1672319405),(132322,3,33397,3,1672319405),(132323,3,33398,3,1672319405),(132324,3,33399,3,1672319405),(132325,3,33400,3,1672319405),(132326,3,33401,3,1672319405),(132327,3,33402,3,1672319405),(132328,3,33403,3,1672319405),(132329,3,33404,3,1672319405),(132330,3,33405,3,1672319405),(132331,3,33406,3,1672319405),(132332,3,33407,3,1672319405),(132333,3,33408,3,1672319405),(132334,3,33409,3,1672319405),(132335,3,33410,3,1672319405),(132336,3,33411,3,1672319405),(132337,3,33412,3,1672319405),(132338,3,33413,3,1672319405),(132339,3,33414,3,1672319405),(132340,3,33415,3,1672319405),(132341,3,33416,3,1672319405),(132342,3,33417,3,1672319405),(132343,3,33418,3,1672319405),(132344,3,33419,3,1672319405),(132345,3,33420,3,1672319405),(132346,3,33421,3,1672319405),(132347,3,33422,3,1672319405),(132348,3,33423,3,1672319405),(132349,3,33424,3,1672319405),(132350,3,33425,3,1672319405),(132351,3,33426,3,1672319405),(132352,3,33427,3,1672319405),(132353,3,33428,3,1672319405),(132354,3,33429,3,1672319405),(132355,3,33430,3,1672319405),(132356,3,33431,3,1672319405),(132357,3,33432,3,1672319405),(132358,3,33433,3,1672319405),(132359,3,33434,3,1672319405),(132360,3,33435,3,1672319405),(132361,3,33436,3,1672319405),(132362,3,33437,3,1672319405),(132363,3,33438,3,1672319405),(132364,3,33439,3,1672319405),(132365,3,33440,3,1672319405),(132366,3,33441,3,1672319405),(132367,3,33442,3,1672319405),(132368,3,33443,3,1672319405),(132369,3,33444,3,1672319405),(132370,3,33445,3,1672319405),(132371,3,33446,3,1672319405),(132372,3,33447,3,1672319405),(132373,3,33448,3,1672319405),(132374,3,33449,3,1672319405),(132375,3,33450,3,1672319405),(132376,3,33451,3,1672319405),(132377,3,33452,3,1672319405),(132378,3,33453,3,1672319405),(132379,3,33454,3,1672319405),(132380,3,33455,3,1672319405),(132381,3,33456,3,1672319405),(132382,3,33457,3,1672319405),(132383,3,33458,3,1672319405),(132384,3,33459,3,1672319405),(132385,3,33460,3,1672319405),(132386,3,33461,3,1672319405),(132387,3,33462,3,1672319405),(132388,3,33463,3,1672319405),(132389,3,33464,3,1672319405),(132390,3,33691,3,1672319405),(132391,3,33692,3,1672319405),(132392,3,33693,3,1672319405),(132393,3,33694,3,1672319405),(132394,3,36541,3,1672319405),(132395,3,36542,3,1672319405),(132396,3,36543,3,1672319405),(132397,3,36544,3,1672319405),(132398,3,36545,3,1672319405),(132399,3,36546,3,1672319405),(132400,3,36547,3,1672319405),(132401,3,36548,3,1672319405),(132402,3,36549,3,1672319405),(132403,3,36550,3,1672319405),(132404,3,36551,3,1672319405),(132405,3,36552,3,1672319405),(132406,3,36598,3,1672319405),(132407,3,36599,3,1672319405),(132408,3,36600,3,1672319405),(132409,3,36601,3,1672319405),(132410,3,36602,3,1672319405),(132411,3,36603,3,1672319405),(132412,3,36604,3,1672319405),(132413,3,36605,3,1672319405),(132414,3,36606,3,1672319405),(132415,3,36607,3,1672319405),(132416,3,36608,3,1672319405),(132417,3,36609,3,1672319405),(132418,3,36655,3,1672319405),(132419,3,36656,3,1672319405),(132420,3,36657,3,1672319405),(132421,3,36658,3,1672319405),(132422,3,36659,3,1672319405),(132423,3,36660,3,1672319405),(132424,3,36661,3,1672319405),(132425,3,36662,3,1672319405),(132426,3,36663,3,1672319405),(132427,3,36664,3,1672319405),(132428,3,36665,3,1672319405),(132429,3,36666,3,1672319405),(132430,3,36712,3,1672319405),(132431,3,36713,3,1672319405),(132432,3,36714,3,1672319405),(132433,3,36715,3,1672319405),(132434,3,36716,3,1672319405),(132435,3,36717,3,1672319405),(132436,3,36718,3,1672319405),(132437,3,36719,3,1672319405),(132438,3,36720,3,1672319405),(132439,3,36721,3,1672319405),(132440,3,36722,3,1672319405),(132441,3,36723,3,1672319405),(132442,3,36795,3,1672319405),(132443,3,36796,3,1672319405),(132444,3,36797,3,1672319405),(132445,3,36798,3,1672319405),(132446,3,36799,3,1672319405),(132447,3,36800,3,1672319405),(132448,3,36801,3,1672319405),(132449,3,36802,3,1672319405),(132450,3,36803,3,1672319405),(132451,3,36804,3,1672319405),(132452,3,36805,3,1672319405),(132453,3,36806,3,1672319405),(132454,3,36807,3,1672319405),(132455,3,36808,3,1672319405),(132456,3,36809,3,1672319405),(132457,3,36810,3,1672319405),(132458,3,36811,3,1672319405),(132459,3,36812,3,1672319405),(132460,3,39827,3,1672319405),(132461,3,39829,3,1672319405),(132462,3,39830,3,1672319405),(132463,3,39831,3,1672319405),(132464,3,39832,3,1672319405),(132465,3,39833,3,1672319405),(132466,3,39834,3,1672319405),(132467,3,39835,3,1672319405),(132468,3,39836,3,1672319405),(132469,3,39837,3,1672319405),(132470,3,39838,3,1672319405),(132471,3,39839,3,1672319405),(132472,3,39840,3,1672319405),(132473,3,39841,3,1672319405),(132474,3,39842,3,1672319405),(132475,3,39843,3,1672319405),(132476,3,39844,3,1672319405),(132477,3,39845,3,1672319405),(132478,3,39846,3,1672319405),(132479,3,39847,3,1672319405),(132480,3,39848,3,1672319405),(132481,3,39849,3,1672319405),(132482,3,39850,3,1672319405),(132483,3,39876,3,1672319405),(132484,3,39877,3,1672319405),(132485,3,39878,3,1672319405),(132486,3,39879,3,1672319405),(132487,3,39880,3,1672319405),(132488,3,39881,3,1672319405),(132489,3,39882,3,1672319405),(132490,3,39883,3,1672319405),(132491,3,39884,3,1672319405),(132492,3,39885,3,1672319405),(132493,3,39886,3,1672319405),(132494,3,39887,3,1672319405),(132495,3,39888,3,1672319405),(132496,3,39905,3,1672319405),(132497,3,39906,3,1672319405),(132498,3,39907,3,1672319405),(132499,3,39908,3,1672319405),(132500,3,39909,3,1672319405),(132501,3,39910,3,1672319405),(132502,3,39911,3,1672319405),(132503,3,39912,3,1672319405),(132504,3,39913,3,1672319405),(132505,3,39914,3,1672319405),(132506,3,39915,3,1672319405),(132507,3,39916,3,1672319405),(132508,3,39937,3,1672319405),(132509,3,39938,3,1672319405),(132510,3,39939,3,1672319405),(132511,3,39978,3,1672319405),(132512,3,39986,3,1672319405),(132513,3,39987,3,1672319405),(132514,3,39988,3,1672319405),(132515,3,39989,3,1672319405),(132516,3,39990,3,1672319405),(132517,3,39991,3,1672319405),(132518,3,39992,3,1672319405),(132519,3,39993,3,1672319405),(132520,3,39994,3,1672319405),(132521,3,39995,3,1672319405),(132522,3,39996,3,1672319405),(132523,3,39997,3,1672319405),(132524,3,39998,3,1672319405),(132525,3,39999,3,1672319405),(132526,3,40010,3,1672319405),(132527,3,40011,3,1672319405),(132528,3,40012,3,1672319405),(132529,3,40013,3,1672319405),(132530,3,40014,3,1672319405),(132531,3,40015,3,1672319405),(132532,3,40016,3,1672319405),(132533,3,40017,3,1672319405),(132534,3,40018,3,1672319405),(132535,3,40019,3,1672319405),(132536,3,40020,3,1672319405),(132537,3,40844,3,1672319405),(132538,3,40845,3,1672319405),(132539,3,40846,3,1672319405),(132540,3,40847,3,1672319405),(132541,3,40848,3,1672319405),(132542,3,40849,3,1672319405),(132543,3,40850,3,1672319405),(132544,3,40851,3,1672319405),(132545,3,40852,3,1672319405),(132546,3,40853,3,1672319405),(132547,3,40854,3,1672319405),(132548,3,40867,3,1672319405),(132549,3,40868,3,1672319405),(132550,3,40869,3,1672319405),(132551,3,40870,3,1672319405),(132552,3,40871,3,1672319405),(132553,3,40872,3,1672319405),(132554,3,40873,3,1672319405),(132555,3,40874,3,1672319405),(132556,3,40875,3,1672319405),(132557,3,40876,3,1672319405),(132558,3,40877,3,1672319405),(132559,3,40890,3,1672319405),(132560,3,40891,3,1672319405),(132561,3,40892,3,1672319405),(132562,3,40893,3,1672319405),(132563,3,40894,3,1672319405),(132564,3,40895,3,1672319405),(132565,3,40896,3,1672319405),(132566,3,40897,3,1672319405),(132567,3,40898,3,1672319405),(132568,3,40899,3,1672319405),(132569,3,40900,3,1672319405),(132570,3,40911,3,1672319405),(132571,3,40912,3,1672319405),(132572,3,40913,3,1672319405),(132573,3,40914,3,1672319405),(132574,3,40915,3,1672319405),(132575,3,40916,3,1672319405),(132576,3,40917,3,1672319405),(132577,3,40918,3,1672319405),(132578,3,40919,3,1672319405),(132579,3,40920,3,1672319405),(132580,3,40921,3,1672319405),(132581,3,42187,3,1672319405),(132582,3,42188,3,1672319405),(132583,3,42189,3,1672319405),(132584,3,42190,3,1672319405),(132585,3,42191,3,1672319405),(132586,3,42192,3,1672319405),(132587,3,42193,3,1672319405),(132588,3,42194,3,1672319405),(132589,3,42195,3,1672319405),(132590,3,42196,3,1672319405),(132591,3,42197,3,1672319405),(132592,3,42198,3,1672319405),(132593,3,42199,3,1672319405),(132594,3,42200,3,1672319405),(132595,3,42201,3,1672319405),(132596,3,42202,3,1672319405),(132597,3,42203,3,1672319405),(132598,3,42204,3,1672319405),(132599,3,42205,3,1672319405),(132600,3,42206,3,1672319405),(132601,3,42207,3,1672319405),(132602,3,42208,3,1672319405),(132603,3,42209,3,1672319405),(132604,3,42210,3,1672319405),(132605,3,42211,3,1672319405),(132606,3,42212,3,1672319405),(132607,3,42213,3,1672319405),(132608,3,42214,3,1672319405),(132609,3,42215,3,1672319405),(132610,3,42216,3,1672319405),(132611,3,42217,3,1672319405),(132612,3,42218,3,1672319405),(132613,3,42219,3,1672319405),(132614,3,42220,3,1672319405),(132615,3,42221,3,1672319405),(132616,3,42222,3,1672319405),(132617,3,42223,3,1672319405),(132618,3,42224,3,1672319405),(132619,3,42225,3,1672319405),(132620,3,42226,3,1672319405),(132621,3,42267,3,1672319405),(132622,3,42268,3,1672319405),(132623,3,42319,3,1672319405),(132624,3,42320,3,1672319405),(132625,3,42321,3,1672319405),(132626,3,42322,3,1672319405),(132627,3,42323,3,1672319405),(132628,3,42324,3,1672319405),(132629,3,42325,3,1672319405),(132630,3,42326,3,1672319405),(132631,3,42327,3,1672319405),(132632,3,42328,3,1672319405),(132633,3,42329,3,1672319405),(132634,3,42330,3,1672319405),(132635,3,42331,3,1672319405),(132636,3,42332,3,1672319405),(132637,3,42333,3,1672319405),(132638,3,42334,3,1672319405),(132639,3,42335,3,1672319405),(132640,3,42336,3,1672319405),(132641,3,42337,3,1672319405),(132642,3,42338,3,1672319405),(132643,3,42339,3,1672319405),(132644,3,42340,3,1672319405),(132645,3,42341,3,1672319405),(132646,3,42342,3,1672319405),(132647,3,42343,3,1672319405),(132648,3,42344,3,1672319405),(132649,3,42345,3,1672319405),(132650,3,42346,3,1672319405),(132651,3,42347,3,1672319405),(132652,3,42348,3,1672319405),(132653,3,42349,3,1672319405),(132654,3,42350,3,1672319405),(132655,3,42351,3,1672319405),(132656,3,42352,3,1672319405),(132657,3,42353,3,1672319405),(132658,3,42354,3,1672319405),(132659,3,42355,3,1672319405),(132660,3,42356,3,1672319405),(132661,3,42357,3,1672319405),(132662,3,42358,3,1672319405),(132663,3,42359,3,1672319405),(132664,3,42384,3,1672319405),(132665,3,42385,3,1672319405),(132666,3,42386,3,1672319405),(132667,3,42387,3,1672319405),(132668,3,42388,3,1672319405),(132669,3,42389,3,1672319405),(132670,3,42390,3,1672319405),(132671,3,42391,3,1672319405),(132672,3,42392,3,1672319405),(132673,3,42393,3,1672319405),(132674,3,42394,3,1672319405),(132675,3,42395,3,1672319405),(132676,3,42396,3,1672319405),(132677,3,42397,3,1672319405),(132678,3,42398,3,1672319405),(132679,3,42399,3,1672319405),(132680,3,42400,3,1672319405),(132681,3,42401,3,1672319405),(132682,3,42402,3,1672319405),(132683,3,42403,3,1672319405),(132684,3,42404,3,1672319405),(132685,3,42405,3,1672319405),(132686,3,42406,3,1672319405),(132687,3,42407,3,1672319405),(132688,3,42408,3,1672319405),(132689,3,42409,3,1672319405),(132690,3,42598,3,1672319405),(132691,3,42599,3,1672319405),(132692,3,42600,3,1672319405),(132693,3,42601,3,1672319405),(132694,3,42602,3,1672319405),(132695,3,42603,3,1672319405),(132696,3,42604,3,1672319405),(132697,3,42605,3,1672319405),(132698,3,42606,3,1672319405),(132699,3,42607,3,1672319405),(132700,3,42608,3,1672319405),(132701,3,42642,3,1672319405),(132702,3,42643,3,1672319405),(132703,3,42644,3,1672319405),(132704,3,42645,3,1672319405),(132705,3,42646,3,1672319405),(132706,3,42647,3,1672319405),(132707,3,42648,3,1672319405),(132708,3,42649,3,1672319405),(132709,3,42650,3,1672319405),(132710,3,42651,3,1672319405),(132711,3,42652,3,1672319405),(132712,3,42653,3,1672319405),(132713,3,42654,3,1672319405),(132714,3,42655,3,1672319405),(132715,3,42656,3,1672319405),(132716,3,42657,3,1672319405),(132717,3,42658,3,1672319405),(132718,3,42659,3,1672319405),(132719,3,42660,3,1672319405),(132720,3,42661,3,1672319405),(132721,3,42662,3,1672319405),(132722,3,42663,3,1672319405),(132723,3,42675,3,1672319405),(132724,3,42700,3,1672319405),(132725,3,42701,3,1672319405),(132726,3,42702,3,1672319405),(132727,3,43078,3,1672319405),(132728,3,43079,3,1672319405),(132729,3,43174,3,1672319405),(132730,3,43175,3,1672319405),(132731,3,43176,3,1672319405),(132732,3,43177,3,1672319405),(132733,3,43178,3,1672319405),(132734,3,43179,3,1672319405),(132735,3,43180,3,1672319405),(132736,3,43181,3,1672319405),(132737,3,43182,3,1672319405),(132738,3,43183,3,1672319405),(132739,3,43281,3,1672319405),(132740,3,43282,3,1672319405),(132741,3,43283,3,1672319405),(132742,3,43284,3,1672319405),(132743,3,43285,3,1672319405),(132744,3,43286,3,1672319405),(132745,3,43287,3,1672319405),(132746,3,43288,3,1672319405),(132747,3,43289,3,1672319405),(132748,3,43290,3,1672319405),(132749,3,43398,3,1672319405),(132750,3,43399,3,1672319405),(132751,3,43400,3,1672319405),(132752,3,43401,3,1672319405),(132753,3,43402,3,1672319405),(132754,3,43403,3,1672319405),(132755,3,43404,3,1672319405),(132756,3,43405,3,1672319405),(132757,3,43406,3,1672319405),(132758,3,43407,3,1672319405),(132759,3,43408,3,1672319405),(132760,3,43409,3,1672319405),(132761,3,43410,3,1672319405),(132762,3,43411,3,1672319405),(132763,3,43412,3,1672319405),(132764,3,43413,3,1672319405),(132765,3,43414,3,1672319405),(132766,3,43789,3,1672319405),(132767,3,43790,3,1672319405),(132768,3,43791,3,1672319405),(132769,3,43792,3,1672319405),(132770,3,43874,3,1672319405),(132771,3,43887,3,1672319405),(132772,3,43896,3,1672319405),(132773,3,43897,3,1672319405),(132774,3,43898,3,1672319405),(132775,3,43899,3,1672319405),(132776,3,43900,3,1672319405),(132777,3,43901,3,1672319405),(132778,3,43902,3,1672319405),(132779,3,43903,3,1672319405),(132780,3,43904,3,1672319405),(132781,3,44050,3,1672319405),(132782,3,44094,3,1672319405),(132783,3,44095,3,1672319405),(132784,3,44096,3,1672319405),(132785,3,44097,3,1672319405),(132786,3,44098,3,1672319405),(132787,3,44099,3,1672319405),(132788,3,44100,3,1672319405),(132789,3,44101,3,1672319405),(132790,3,44102,3,1672319405),(132791,3,44103,3,1672319405),(132792,3,44104,3,1672319405),(132793,3,44105,3,1672319405),(132794,3,44106,3,1672319405),(132795,3,44107,3,1672319405),(132796,3,44121,3,1672319405),(132797,3,44122,3,1672319405),(132798,3,44123,3,1672319405),(132799,3,44124,3,1672319405),(132800,3,44125,3,1672319405),(132801,3,44126,3,1672319405),(132802,3,44127,3,1672319405),(132803,3,44128,3,1672319405),(132804,3,44129,3,1672319405),(132805,3,44130,3,1672319405),(132806,3,44131,3,1672319405),(132807,3,44132,3,1672319405),(132808,3,44133,3,1672319405),(132809,3,44134,3,1672319405),(132810,3,44148,3,1672319405),(132811,3,44149,3,1672319405),(132812,3,44150,3,1672319405),(132813,3,44151,3,1672319405),(132814,3,44152,3,1672319405),(132815,3,44153,3,1672319405),(132816,3,44154,3,1672319405),(132817,3,44201,3,1672319405),(132818,3,44202,3,1672319405),(132819,3,44203,3,1672319405),(132820,3,44204,3,1672319405),(132821,3,44205,3,1672319405),(132822,3,44206,3,1672319405),(132823,3,44207,3,1672319405),(132824,3,44208,3,1672319405),(132825,3,44209,3,1672319405),(132826,3,44210,3,1672319405),(132827,3,44211,3,1672319405),(132828,3,44212,3,1672319405),(132829,3,44213,3,1672319405),(132830,3,44371,3,1672319405),(132831,3,44374,3,1672319405),(132832,3,44436,3,1672319405),(132833,3,44442,3,1672319405),(132834,1,10001,3,1672319405),(132835,1,10094,3,1672319405),(132836,1,10095,3,1672319405),(132837,1,10096,3,1672319405),(132838,1,10097,3,1672319405),(132839,1,10171,3,1672319405),(132840,1,10172,3,1672319405),(132841,1,10186,3,1672319405),(132842,1,10188,3,1672319405),(132843,1,10190,3,1672319405),(132844,1,10192,3,1672319405),(132845,1,10229,3,1672319405),(132846,1,10230,3,1672319405),(132847,1,10231,3,1672319405),(132848,1,10248,3,1672319405),(132849,1,10250,3,1672319405),(132850,1,10256,3,1672319405),(132851,1,10258,3,1672319405),(132852,1,10269,3,1672319405),(132853,1,10270,3,1672319405),(132854,1,10271,3,1672319405),(132855,1,10272,3,1672319405),(132856,1,10273,3,1672319405),(132857,1,10275,3,1672319405),(132858,1,10277,3,1672319405),(132859,1,10285,3,1672319405),(132860,1,10325,3,1672319405),(132861,1,10326,3,1672319405),(132862,1,10337,3,1672319405),(132863,1,10338,3,1672319405),(132864,1,10339,3,1672319405),(132865,1,10343,3,1672319405),(132866,1,10379,3,1672319405),(132867,1,10381,3,1672319405),(132868,1,10385,3,1672319405),(132869,1,10443,3,1672319405),(132870,1,10444,3,1672319405),(132871,1,10445,3,1672319405),(132872,1,10446,3,1672319405),(132873,1,10448,3,1672319405),(132874,1,10504,3,1672319405),(132875,1,10505,3,1672319405),(132876,1,10506,3,1672319405),(132877,1,10507,3,1672319405),(132878,1,10509,3,1672319405),(132879,1,10510,3,1672319405),(132880,1,10524,3,1672319405),(132881,1,10525,3,1672319405),(132882,1,10526,3,1672319405),(132883,1,10534,3,1672319405),(132884,3,23068,2,1672319408),(132885,3,23069,2,1672319408),(132886,3,23070,2,1672319408),(132887,3,23071,2,1672319408),(132888,3,23072,2,1672319408),(132889,3,27904,2,1672319408),(132890,3,27905,2,1672319408),(132891,3,27906,2,1672319408),(132892,3,27907,2,1672319408),(132893,3,27908,2,1672319408),(132894,3,28200,2,1672319408),(132895,3,28201,2,1672319408),(132896,3,28202,2,1672319408),(132897,3,28203,2,1672319408),(132898,3,28204,2,1672319408),(132899,3,28205,2,1672319408),(132900,3,28206,2,1672319408),(132901,3,29216,2,1672319408),(132902,3,29217,2,1672319408),(132903,3,29218,2,1672319408),(132904,3,29219,2,1672319408),(132905,3,29220,2,1672319408),(132906,3,29221,2,1672319408),(132907,3,29222,2,1672319408),(132908,3,29223,2,1672319408),(132909,3,31560,2,1672319408),(132910,3,31561,2,1672319408),(132911,3,31562,2,1672319408),(132912,3,31563,2,1672319408),(132913,3,31564,2,1672319408),(132914,3,31565,2,1672319408),(132915,3,31566,2,1672319408),(132916,3,31567,2,1672319408),(132917,3,31568,2,1672319408),(132918,3,31569,2,1672319408),(132919,3,31909,2,1672319408),(132920,3,31910,2,1672319408),(132921,3,31911,2,1672319408),(132922,3,31912,2,1672319408),(132923,3,31913,2,1672319408),(132924,3,31914,2,1672319408),(132925,3,31915,2,1672319408),(132926,3,31916,2,1672319408),(132927,3,32436,2,1672319408),(132928,3,32437,2,1672319408),(132929,3,32438,2,1672319408),(132930,3,32439,2,1672319408),(132931,3,32528,2,1672319408),(132932,3,32529,2,1672319408),(132933,3,32530,2,1672319408),(132934,3,32531,2,1672319408),(132935,3,32532,2,1672319408),(132936,3,32533,2,1672319408),(132937,3,32534,2,1672319408),(132938,3,32535,2,1672319408),(132939,3,32536,2,1672319408),(132940,3,32537,2,1672319408),(132941,3,32538,2,1672319408),(132942,3,32539,2,1672319408),(132943,3,32540,2,1672319408),(132944,3,32541,2,1672319408),(132945,3,32542,2,1672319408),(132946,3,32543,2,1672319408),(132947,3,32544,2,1672319408),(132948,3,32545,2,1672319408),(132949,3,32558,2,1672319408),(132950,3,32559,2,1672319408),(132951,3,32560,2,1672319408),(132952,3,32561,2,1672319408),(132953,3,32562,2,1672319408),(132954,3,32563,2,1672319408),(132955,3,32564,2,1672319408),(132956,3,32565,2,1672319408),(132957,3,32566,2,1672319408),(132958,3,32567,2,1672319408),(132959,3,32568,2,1672319408),(132960,3,32569,2,1672319408),(132961,3,32570,2,1672319408),(132962,3,32571,2,1672319408),(132963,3,32572,2,1672319408),(132964,3,32573,2,1672319408),(132965,3,32574,2,1672319408),(132966,3,32575,2,1672319408),(132967,3,33635,2,1672319408),(132968,3,33636,2,1672319408),(132969,3,33637,2,1672319408),(132970,3,34164,2,1672319408),(132971,3,34165,2,1672319408),(132972,3,34166,2,1672319408),(132973,3,34167,2,1672319408),(132974,3,34168,2,1672319408),(132975,3,34169,2,1672319408),(132976,3,34170,2,1672319408),(132977,3,34171,2,1672319408),(132978,3,34172,2,1672319408),(132979,3,34173,2,1672319408),(132980,3,34174,2,1672319408),(132981,3,34175,2,1672319408),(132982,3,34176,2,1672319408),(132983,3,34177,2,1672319408),(132984,3,34178,2,1672319408),(132985,3,36861,2,1672319408),(132986,3,36862,2,1672319408),(132987,3,36863,2,1672319408),(132988,3,36864,2,1672319408),(132989,3,36865,2,1672319408),(132990,3,36866,2,1672319408),(132991,3,36867,2,1672319408),(132992,3,36868,2,1672319408),(132993,3,36869,2,1672319408),(132994,3,36870,2,1672319408),(132995,3,36871,2,1672319408),(132996,3,36872,2,1672319408),(132997,3,36873,2,1672319408),(132998,3,36874,2,1672319408),(132999,3,36875,2,1672319408),(133000,3,36876,2,1672319408),(133001,3,36877,2,1672319408),(133002,3,36878,2,1672319408),(133003,3,36879,2,1672319408),(133004,3,36915,2,1672319408),(133005,3,36916,2,1672319408),(133006,3,36917,2,1672319408),(133007,3,36918,2,1672319408),(133008,3,36919,2,1672319408),(133009,3,36920,2,1672319408),(133010,3,36921,2,1672319408),(133011,3,36922,2,1672319408),(133012,3,36923,2,1672319408),(133013,3,36924,2,1672319408),(133014,3,36925,2,1672319408),(133015,3,36926,2,1672319408),(133016,3,36927,2,1672319408),(133017,3,36928,2,1672319408),(133018,3,36929,2,1672319408),(133019,3,36930,2,1672319408),(133020,3,36931,2,1672319408),(133021,3,36932,2,1672319408),(133022,3,36933,2,1672319408),(133023,3,36969,2,1672319408),(133024,3,36970,2,1672319408),(133025,3,36971,2,1672319408),(133026,3,36972,2,1672319408),(133027,3,36973,2,1672319408),(133028,3,36974,2,1672319408),(133029,3,36975,2,1672319408),(133030,3,36976,2,1672319408),(133031,3,36977,2,1672319408),(133032,3,36978,2,1672319408),(133033,3,36979,2,1672319408),(133034,3,36980,2,1672319408),(133035,3,36981,2,1672319408),(133036,3,36982,2,1672319408),(133037,3,36983,2,1672319408),(133038,3,36984,2,1672319408),(133039,3,36985,2,1672319408),(133040,3,36986,2,1672319408),(133041,3,36987,2,1672319408),(133042,3,37023,2,1672319408),(133043,3,37024,2,1672319408),(133044,3,37025,2,1672319408),(133045,3,37026,2,1672319408),(133046,3,37027,2,1672319408),(133047,3,37028,2,1672319408),(133048,3,37029,2,1672319408),(133049,3,37030,2,1672319408),(133050,3,37031,2,1672319408),(133051,3,37032,2,1672319408),(133052,3,37033,2,1672319408),(133053,3,37034,2,1672319408),(133054,3,37035,2,1672319408),(133055,3,37036,2,1672319408),(133056,3,37037,2,1672319408),(133057,3,37038,2,1672319408),(133058,3,37039,2,1672319408),(133059,3,37040,2,1672319408),(133060,3,37041,2,1672319408),(133061,3,37077,2,1672319408),(133062,3,37078,2,1672319408),(133063,3,37079,2,1672319408),(133064,3,37080,2,1672319408),(133065,3,37081,2,1672319408),(133066,3,37082,2,1672319408),(133067,3,37083,2,1672319408),(133068,3,37084,2,1672319408),(133069,3,37085,2,1672319408),(133070,3,37086,2,1672319408),(133071,3,37087,2,1672319408),(133072,3,37088,2,1672319408),(133073,3,37089,2,1672319408),(133074,3,37090,2,1672319408),(133075,3,37091,2,1672319408),(133076,3,37092,2,1672319408),(133077,3,37093,2,1672319408),(133078,3,37094,2,1672319408),(133079,3,37095,2,1672319408),(133080,3,37131,2,1672319408),(133081,3,37132,2,1672319408),(133082,3,37133,2,1672319408),(133083,3,37134,2,1672319408),(133084,3,37135,2,1672319408),(133085,3,37136,2,1672319408),(133086,3,37137,2,1672319408),(133087,3,37138,2,1672319408),(133088,3,37139,2,1672319408),(133089,3,37140,2,1672319408),(133090,3,37141,2,1672319408),(133091,3,37142,2,1672319408),(133092,3,37143,2,1672319408),(133093,3,37144,2,1672319408),(133094,3,37145,2,1672319408),(133095,3,37146,2,1672319408),(133096,3,37147,2,1672319408),(133097,3,37148,2,1672319408),(133098,3,37149,2,1672319408),(133099,3,37185,2,1672319408),(133100,3,37186,2,1672319408),(133101,3,37187,2,1672319408),(133102,3,37188,2,1672319408),(133103,3,37189,2,1672319408),(133104,3,37190,2,1672319408),(133105,3,37191,2,1672319408),(133106,3,37192,2,1672319408),(133107,3,37193,2,1672319408),(133108,3,37194,2,1672319408),(133109,3,37195,2,1672319408),(133110,3,37196,2,1672319408),(133111,3,37197,2,1672319408),(133112,3,37198,2,1672319408),(133113,3,37199,2,1672319408),(133114,3,37200,2,1672319408),(133115,3,37201,2,1672319408),(133116,3,37202,2,1672319408),(133117,3,37203,2,1672319408),(133118,3,37239,2,1672319408),(133119,3,37240,2,1672319408),(133120,3,37241,2,1672319408),(133121,3,37242,2,1672319408),(133122,3,37243,2,1672319408),(133123,3,37244,2,1672319408),(133124,3,37245,2,1672319408),(133125,3,37246,2,1672319408),(133126,3,37247,2,1672319408),(133127,3,37248,2,1672319408),(133128,3,37249,2,1672319408),(133129,3,37250,2,1672319408),(133130,3,37251,2,1672319408),(133131,3,37252,2,1672319408),(133132,3,37253,2,1672319408),(133133,3,37254,2,1672319408),(133134,3,37255,2,1672319408),(133135,3,37256,2,1672319408),(133136,3,37257,2,1672319408),(133137,3,37293,2,1672319408),(133138,3,37294,2,1672319408),(133139,3,37295,2,1672319408),(133140,3,37296,2,1672319408),(133141,3,37297,2,1672319408),(133142,3,37298,2,1672319408),(133143,3,37299,2,1672319408),(133144,3,37300,2,1672319408),(133145,3,37301,2,1672319408),(133146,3,37302,2,1672319408),(133147,3,37303,2,1672319408),(133148,3,37304,2,1672319408),(133149,3,37305,2,1672319408),(133150,3,37306,2,1672319408),(133151,3,37307,2,1672319408),(133152,3,37308,2,1672319408),(133153,3,37309,2,1672319408),(133154,3,37310,2,1672319408),(133155,3,37311,2,1672319408),(133156,3,37347,2,1672319408),(133157,3,37348,2,1672319408),(133158,3,37349,2,1672319408),(133159,3,37350,2,1672319408),(133160,3,37351,2,1672319408),(133161,3,37352,2,1672319408),(133162,3,37353,2,1672319408),(133163,3,37354,2,1672319408),(133164,3,37355,2,1672319408),(133165,3,37356,2,1672319408),(133166,3,37357,2,1672319408),(133167,3,37358,2,1672319408),(133168,3,37359,2,1672319408),(133169,3,37360,2,1672319408),(133170,3,37361,2,1672319408),(133171,3,37362,2,1672319408),(133172,3,37363,2,1672319408),(133173,3,37364,2,1672319408),(133174,3,37365,2,1672319408),(133175,3,37401,2,1672319408),(133176,3,37402,2,1672319408),(133177,3,37403,2,1672319408),(133178,3,37404,2,1672319408),(133179,3,37405,2,1672319408),(133180,3,37406,2,1672319408),(133181,3,37407,2,1672319408),(133182,3,37408,2,1672319408),(133183,3,37409,2,1672319408),(133184,3,37410,2,1672319408),(133185,3,37411,2,1672319408),(133186,3,37412,2,1672319408),(133187,3,37413,2,1672319408),(133188,3,37414,2,1672319408),(133189,3,37415,2,1672319408),(133190,3,37416,2,1672319408),(133191,3,37417,2,1672319408),(133192,3,37418,2,1672319408),(133193,3,37419,2,1672319408),(133194,3,37455,2,1672319408),(133195,3,37456,2,1672319408),(133196,3,37457,2,1672319408),(133197,3,37458,2,1672319408),(133198,3,37459,2,1672319408),(133199,3,37460,2,1672319408),(133200,3,37461,2,1672319408),(133201,3,37462,2,1672319408),(133202,3,37463,2,1672319408),(133203,3,37464,2,1672319408),(133204,3,37465,2,1672319408),(133205,3,37466,2,1672319408),(133206,3,37467,2,1672319408),(133207,3,37468,2,1672319408),(133208,3,37469,2,1672319408),(133209,3,37470,2,1672319408),(133210,3,37471,2,1672319408),(133211,3,37472,2,1672319408),(133212,3,37473,2,1672319408),(133213,3,37509,2,1672319408),(133214,3,37510,2,1672319408),(133215,3,37511,2,1672319408),(133216,3,37512,2,1672319408),(133217,3,37513,2,1672319408),(133218,3,37514,2,1672319408),(133219,3,37515,2,1672319408),(133220,3,37516,2,1672319408),(133221,3,37517,2,1672319408),(133222,3,37518,2,1672319408),(133223,3,37519,2,1672319408),(133224,3,37520,2,1672319408),(133225,3,37521,2,1672319408),(133226,3,37522,2,1672319408),(133227,3,37523,2,1672319408),(133228,3,37524,2,1672319408),(133229,3,37525,2,1672319408),(133230,3,37526,2,1672319408),(133231,3,37527,2,1672319408),(133232,3,37563,2,1672319408),(133233,3,37564,2,1672319408),(133234,3,37565,2,1672319408),(133235,3,37566,2,1672319408),(133236,3,37567,2,1672319408),(133237,3,37568,2,1672319408),(133238,3,37569,2,1672319408),(133239,3,37570,2,1672319408),(133240,3,37571,2,1672319408),(133241,3,37572,2,1672319408),(133242,3,37573,2,1672319408),(133243,3,37574,2,1672319408),(133244,3,37575,2,1672319408),(133245,3,37576,2,1672319408),(133246,3,37577,2,1672319408),(133247,3,37578,2,1672319408),(133248,3,37579,2,1672319408),(133249,3,37580,2,1672319408),(133250,3,37581,2,1672319408),(133251,3,37617,2,1672319408),(133252,3,37618,2,1672319408),(133253,3,37619,2,1672319408),(133254,3,37620,2,1672319408),(133255,3,37621,2,1672319408),(133256,3,37622,2,1672319408),(133257,3,37623,2,1672319408),(133258,3,37624,2,1672319408),(133259,3,37625,2,1672319408),(133260,3,37626,2,1672319408),(133261,3,37627,2,1672319408),(133262,3,37628,2,1672319408),(133263,3,37629,2,1672319408),(133264,3,37630,2,1672319408),(133265,3,37631,2,1672319408),(133266,3,37632,2,1672319408),(133267,3,37633,2,1672319408),(133268,3,37634,2,1672319408),(133269,3,37635,2,1672319408),(133270,3,37671,2,1672319408),(133271,3,37672,2,1672319408),(133272,3,37673,2,1672319408),(133273,3,37674,2,1672319408),(133274,3,37675,2,1672319408),(133275,3,37676,2,1672319408),(133276,3,37677,2,1672319408),(133277,3,37678,2,1672319408),(133278,3,37679,2,1672319408),(133279,3,37680,2,1672319408),(133280,3,37681,2,1672319408),(133281,3,37682,2,1672319408),(133282,3,37683,2,1672319408),(133283,3,37684,2,1672319408),(133284,3,37685,2,1672319408),(133285,3,37686,2,1672319408),(133286,3,37687,2,1672319408),(133287,3,37688,2,1672319408),(133288,3,37689,2,1672319408),(133289,3,37725,2,1672319408),(133290,3,37726,2,1672319408),(133291,3,37727,2,1672319408),(133292,3,37728,2,1672319408),(133293,3,37729,2,1672319408),(133294,3,37730,2,1672319408),(133295,3,37731,2,1672319408),(133296,3,37732,2,1672319408),(133297,3,37733,2,1672319408),(133298,3,37734,2,1672319408),(133299,3,37735,2,1672319408),(133300,3,37736,2,1672319408),(133301,3,37737,2,1672319408),(133302,3,37738,2,1672319408),(133303,3,37739,2,1672319408),(133304,3,37740,2,1672319408),(133305,3,37741,2,1672319408),(133306,3,37742,2,1672319408),(133307,3,37743,2,1672319408),(133308,3,37779,2,1672319408),(133309,3,37780,2,1672319408),(133310,3,37781,2,1672319408),(133311,3,37782,2,1672319408),(133312,3,37783,2,1672319408),(133313,3,37784,2,1672319408),(133314,3,37785,2,1672319408),(133315,3,37786,2,1672319408),(133316,3,37787,2,1672319408),(133317,3,37788,2,1672319408),(133318,3,37789,2,1672319408),(133319,3,37790,2,1672319408),(133320,3,37791,2,1672319408),(133321,3,37792,2,1672319408),(133322,3,37793,2,1672319408),(133323,3,37794,2,1672319408),(133324,3,37795,2,1672319408),(133325,3,37796,2,1672319408),(133326,3,37797,2,1672319408),(133327,3,37833,2,1672319408),(133328,3,37834,2,1672319408),(133329,3,37835,2,1672319408),(133330,3,37836,2,1672319408),(133331,3,37837,2,1672319408),(133332,3,37838,2,1672319408),(133333,3,37839,2,1672319408),(133334,3,37840,2,1672319408),(133335,3,37841,2,1672319408),(133336,3,37842,2,1672319408),(133337,3,37843,2,1672319408),(133338,3,37844,2,1672319408),(133339,3,37845,2,1672319408),(133340,3,37846,2,1672319408),(133341,3,37847,2,1672319408),(133342,3,37848,2,1672319408),(133343,3,37849,2,1672319408),(133344,3,37850,2,1672319408),(133345,3,37851,2,1672319408),(133346,3,37887,2,1672319408),(133347,3,37888,2,1672319408),(133348,3,37889,2,1672319408),(133349,3,37890,2,1672319408),(133350,3,37891,2,1672319408),(133351,3,37892,2,1672319408),(133352,3,37893,2,1672319408),(133353,3,37894,2,1672319408),(133354,3,37895,2,1672319408),(133355,3,37896,2,1672319408),(133356,3,37897,2,1672319408),(133357,3,37898,2,1672319408),(133358,3,37899,2,1672319408),(133359,3,37900,2,1672319408),(133360,3,37901,2,1672319408),(133361,3,37902,2,1672319408),(133362,3,37903,2,1672319408),(133363,3,37904,2,1672319408),(133364,3,37905,2,1672319408),(133365,3,37941,2,1672319408),(133366,3,37942,2,1672319408),(133367,3,37943,2,1672319408),(133368,3,37944,2,1672319408),(133369,3,37945,2,1672319408),(133370,3,37946,2,1672319408),(133371,3,37947,2,1672319408),(133372,3,37948,2,1672319408),(133373,3,37949,2,1672319408),(133374,3,37950,2,1672319408),(133375,3,37951,2,1672319408),(133376,3,37952,2,1672319408),(133377,3,37953,2,1672319408),(133378,3,37954,2,1672319408),(133379,3,37955,2,1672319408),(133380,3,37956,2,1672319408),(133381,3,37957,2,1672319408),(133382,3,37958,2,1672319408),(133383,3,37959,2,1672319408),(133384,3,37995,2,1672319408),(133385,3,37996,2,1672319408),(133386,3,37997,2,1672319408),(133387,3,37998,2,1672319408),(133388,3,37999,2,1672319408),(133389,3,38000,2,1672319408),(133390,3,38001,2,1672319408),(133391,3,38002,2,1672319408),(133392,3,38003,2,1672319408),(133393,3,38004,2,1672319408),(133394,3,38005,2,1672319408),(133395,3,38006,2,1672319408),(133396,3,38007,2,1672319408),(133397,3,38008,2,1672319408),(133398,3,38009,2,1672319408),(133399,3,38010,2,1672319408),(133400,3,38011,2,1672319408),(133401,3,38012,2,1672319408),(133402,3,38013,2,1672319408),(133403,3,38049,2,1672319408),(133404,3,38050,2,1672319408),(133405,3,38051,2,1672319408),(133406,3,38052,2,1672319408),(133407,3,38053,2,1672319408),(133408,3,38054,2,1672319408),(133409,3,38055,2,1672319408),(133410,3,38056,2,1672319408),(133411,3,38057,2,1672319408),(133412,3,38058,2,1672319408),(133413,3,38059,2,1672319408),(133414,3,38060,2,1672319408),(133415,3,38061,2,1672319408),(133416,3,38062,2,1672319408),(133417,3,38063,2,1672319408),(133418,3,38064,2,1672319408),(133419,3,38065,2,1672319408),(133420,3,38066,2,1672319408),(133421,3,38067,2,1672319408),(133422,3,38103,2,1672319408),(133423,3,38104,2,1672319408),(133424,3,38105,2,1672319408),(133425,3,38106,2,1672319408),(133426,3,38107,2,1672319408),(133427,3,38108,2,1672319408),(133428,3,38109,2,1672319408),(133429,3,38110,2,1672319408),(133430,3,38111,2,1672319408),(133431,3,38112,2,1672319408),(133432,3,38113,2,1672319408),(133433,3,38114,2,1672319408),(133434,3,38115,2,1672319408),(133435,3,38116,2,1672319408),(133436,3,38117,2,1672319408),(133437,3,38118,2,1672319408),(133438,3,38119,2,1672319408),(133439,3,38120,2,1672319408),(133440,3,38121,2,1672319408),(133441,3,38157,2,1672319408),(133442,3,38158,2,1672319408),(133443,3,38159,2,1672319408),(133444,3,38160,2,1672319408),(133445,3,38161,2,1672319408),(133446,3,38162,2,1672319408),(133447,3,38163,2,1672319408),(133448,3,38164,2,1672319408),(133449,3,38165,2,1672319408),(133450,3,38166,2,1672319408),(133451,3,38167,2,1672319408),(133452,3,38168,2,1672319408),(133453,3,38169,2,1672319408),(133454,3,38170,2,1672319408),(133455,3,38171,2,1672319408),(133456,3,38172,2,1672319408),(133457,3,38173,2,1672319408),(133458,3,38174,2,1672319408),(133459,3,38175,2,1672319408),(133460,3,38211,2,1672319408),(133461,3,38212,2,1672319408),(133462,3,38213,2,1672319408),(133463,3,38214,2,1672319408),(133464,3,38215,2,1672319408),(133465,3,38216,2,1672319408),(133466,3,38217,2,1672319408),(133467,3,38218,2,1672319408),(133468,3,38219,2,1672319408),(133469,3,38220,2,1672319408),(133470,3,38221,2,1672319408),(133471,3,38222,2,1672319408),(133472,3,38223,2,1672319408),(133473,3,38224,2,1672319408),(133474,3,38225,2,1672319408),(133475,3,38226,2,1672319408),(133476,3,38227,2,1672319408),(133477,3,38228,2,1672319408),(133478,3,38229,2,1672319408),(133479,3,38265,2,1672319408),(133480,3,38266,2,1672319408),(133481,3,38267,2,1672319408),(133482,3,38268,2,1672319408),(133483,3,38269,2,1672319408),(133484,3,38270,2,1672319408),(133485,3,38271,2,1672319408),(133486,3,38272,2,1672319408),(133487,3,38273,2,1672319408),(133488,3,38274,2,1672319408),(133489,3,38275,2,1672319408),(133490,3,38276,2,1672319408),(133491,3,38277,2,1672319408),(133492,3,38278,2,1672319408),(133493,3,38279,2,1672319408),(133494,3,38280,2,1672319408),(133495,3,38281,2,1672319408),(133496,3,38282,2,1672319408),(133497,3,38283,2,1672319408),(133498,3,38319,2,1672319408),(133499,3,38320,2,1672319408),(133500,3,38321,2,1672319408),(133501,3,38322,2,1672319408),(133502,3,38323,2,1672319408),(133503,3,38324,2,1672319408),(133504,3,38325,2,1672319408),(133505,3,38326,2,1672319408),(133506,3,38327,2,1672319408),(133507,3,38328,2,1672319408),(133508,3,38329,2,1672319408),(133509,3,38330,2,1672319408),(133510,3,38331,2,1672319408),(133511,3,38332,2,1672319408),(133512,3,38333,2,1672319408),(133513,3,38334,2,1672319408),(133514,3,38335,2,1672319408),(133515,3,38336,2,1672319408),(133516,3,38337,2,1672319408),(133517,3,38373,2,1672319408),(133518,3,38374,2,1672319408),(133519,3,38375,2,1672319408),(133520,3,38376,2,1672319408),(133521,3,38377,2,1672319408),(133522,3,38378,2,1672319408),(133523,3,38379,2,1672319408),(133524,3,38380,2,1672319408),(133525,3,38381,2,1672319408),(133526,3,38382,2,1672319408),(133527,3,38383,2,1672319408),(133528,3,38384,2,1672319408),(133529,3,38385,2,1672319408),(133530,3,38386,2,1672319408),(133531,3,38387,2,1672319408),(133532,3,38388,2,1672319408),(133533,3,38389,2,1672319408),(133534,3,38390,2,1672319408),(133535,3,38391,2,1672319408),(133536,3,38427,2,1672319408),(133537,3,38428,2,1672319408),(133538,3,38429,2,1672319408),(133539,3,38430,2,1672319408),(133540,3,38431,2,1672319408),(133541,3,38432,2,1672319408),(133542,3,38433,2,1672319408),(133543,3,38434,2,1672319408),(133544,3,38435,2,1672319408),(133545,3,38436,2,1672319408),(133546,3,38437,2,1672319408),(133547,3,38438,2,1672319408),(133548,3,38439,2,1672319408),(133549,3,38440,2,1672319408),(133550,3,38441,2,1672319408),(133551,3,38442,2,1672319408),(133552,3,38443,2,1672319408),(133553,3,38444,2,1672319408),(133554,3,38445,2,1672319408),(133555,3,38481,2,1672319408),(133556,3,38482,2,1672319408),(133557,3,38483,2,1672319408),(133558,3,38484,2,1672319408),(133559,3,38485,2,1672319408),(133560,3,38486,2,1672319408),(133561,3,38487,2,1672319408),(133562,3,38488,2,1672319408),(133563,3,38489,2,1672319408),(133564,3,38490,2,1672319408),(133565,3,38491,2,1672319408),(133566,3,38492,2,1672319408),(133567,3,38493,2,1672319408),(133568,3,38494,2,1672319408),(133569,3,38495,2,1672319408),(133570,3,38496,2,1672319408),(133571,3,38497,2,1672319408),(133572,3,38498,2,1672319408),(133573,3,38499,2,1672319408),(133574,3,38535,2,1672319408),(133575,3,38536,2,1672319408),(133576,3,38537,2,1672319408),(133577,3,38538,2,1672319408),(133578,3,38539,2,1672319408),(133579,3,38540,2,1672319408),(133580,3,38541,2,1672319408),(133581,3,38542,2,1672319408),(133582,3,38543,2,1672319408),(133583,3,38544,2,1672319408),(133584,3,38545,2,1672319408),(133585,3,38546,2,1672319408),(133586,3,38547,2,1672319408),(133587,3,38548,2,1672319408),(133588,3,38549,2,1672319408),(133589,3,38550,2,1672319408),(133590,3,38551,2,1672319408),(133591,3,38552,2,1672319408),(133592,3,38553,2,1672319408),(133593,3,39345,2,1672319408),(133594,3,39346,2,1672319408),(133595,3,39347,2,1672319408),(133596,3,39348,2,1672319408),(133597,3,39349,2,1672319408),(133598,3,39350,2,1672319408),(133599,3,39351,2,1672319408),(133600,3,39352,2,1672319408),(133601,3,39353,2,1672319408),(133602,3,39354,2,1672319408),(133603,3,39355,2,1672319408),(133604,3,39356,2,1672319408),(133605,3,39357,2,1672319408),(133606,3,39358,2,1672319408),(133607,3,39359,2,1672319408),(133608,3,39360,2,1672319408),(133609,3,39361,2,1672319408),(133610,3,39362,2,1672319408),(133611,3,39363,2,1672319408),(133612,3,39399,2,1672319408),(133613,3,39400,2,1672319408),(133614,3,39401,2,1672319408),(133615,3,39402,2,1672319408),(133616,3,39403,2,1672319408),(133617,3,39404,2,1672319408),(133618,3,39405,2,1672319408),(133619,3,39406,2,1672319408),(133620,3,39407,2,1672319408),(133621,3,39408,2,1672319408),(133622,3,39409,2,1672319408),(133623,3,39410,2,1672319408),(133624,3,39411,2,1672319408),(133625,3,39412,2,1672319408),(133626,3,39413,2,1672319408),(133627,3,39414,2,1672319408),(133628,3,39415,2,1672319408),(133629,3,39416,2,1672319408),(133630,3,39417,2,1672319408),(133631,3,39453,2,1672319408),(133632,3,39454,2,1672319408),(133633,3,39455,2,1672319408),(133634,3,39456,2,1672319408),(133635,3,39457,2,1672319408),(133636,3,39458,2,1672319408),(133637,3,39459,2,1672319408),(133638,3,39460,2,1672319408),(133639,3,39461,2,1672319408),(133640,3,39462,2,1672319408),(133641,3,39463,2,1672319408),(133642,3,39464,2,1672319408),(133643,3,39465,2,1672319408),(133644,3,39466,2,1672319408),(133645,3,39467,2,1672319408),(133646,3,39468,2,1672319408),(133647,3,39469,2,1672319408),(133648,3,39470,2,1672319408),(133649,3,39471,2,1672319408),(133650,3,39507,2,1672319408),(133651,3,39508,2,1672319408),(133652,3,39509,2,1672319408),(133653,3,39510,2,1672319408),(133654,3,39511,2,1672319408),(133655,3,39512,2,1672319408),(133656,3,39513,2,1672319408),(133657,3,39514,2,1672319408),(133658,3,39515,2,1672319408),(133659,3,39516,2,1672319408),(133660,3,39517,2,1672319408),(133661,3,39518,2,1672319408),(133662,3,39519,2,1672319408),(133663,3,39520,2,1672319408),(133664,3,39521,2,1672319408),(133665,3,39522,2,1672319408),(133666,3,39523,2,1672319408),(133667,3,39524,2,1672319408),(133668,3,39525,2,1672319408),(133669,3,39561,2,1672319408),(133670,3,39562,2,1672319408),(133671,3,39563,2,1672319408),(133672,3,39564,2,1672319408),(133673,3,39565,2,1672319408),(133674,3,39566,2,1672319408),(133675,3,39567,2,1672319408),(133676,3,39568,2,1672319408),(133677,3,39569,2,1672319408),(133678,3,39570,2,1672319408),(133679,3,39571,2,1672319408),(133680,3,39572,2,1672319408),(133681,3,39573,2,1672319408),(133682,3,39574,2,1672319408),(133683,3,39575,2,1672319408),(133684,3,39576,2,1672319408),(133685,3,39577,2,1672319408),(133686,3,39578,2,1672319408),(133687,3,39579,2,1672319408),(133688,3,40946,2,1672319408),(133689,3,40947,2,1672319408),(133690,3,40948,2,1672319408),(133691,3,40949,2,1672319408),(133692,3,40950,2,1672319408),(133693,3,40951,2,1672319408),(133694,3,40952,2,1672319408),(133695,3,40953,2,1672319408),(133696,3,40954,2,1672319408),(133697,3,40967,2,1672319408),(133698,3,40968,2,1672319408),(133699,3,40969,2,1672319408),(133700,3,40970,2,1672319408),(133701,3,40971,2,1672319408),(133702,3,40972,2,1672319408),(133703,3,40973,2,1672319408),(133704,3,40974,2,1672319408),(133705,3,40975,2,1672319408),(133706,3,40988,2,1672319408),(133707,3,40989,2,1672319408),(133708,3,40990,2,1672319408),(133709,3,40991,2,1672319408),(133710,3,40992,2,1672319408),(133711,3,40993,2,1672319408),(133712,3,40994,2,1672319408),(133713,3,40995,2,1672319408),(133714,3,40996,2,1672319408),(133715,3,41009,2,1672319408),(133716,3,41010,2,1672319408),(133717,3,41011,2,1672319408),(133718,3,41012,2,1672319408),(133719,3,41013,2,1672319408),(133720,3,41014,2,1672319408),(133721,3,41015,2,1672319408),(133722,3,41016,2,1672319408),(133723,3,41017,2,1672319408),(133724,3,41030,2,1672319408),(133725,3,41031,2,1672319408),(133726,3,41032,2,1672319408),(133727,3,41033,2,1672319408),(133728,3,41034,2,1672319408),(133729,3,41035,2,1672319408),(133730,3,41036,2,1672319408),(133731,3,41037,2,1672319408),(133732,3,41038,2,1672319408),(133733,3,41051,2,1672319408),(133734,3,41052,2,1672319408),(133735,3,41053,2,1672319408),(133736,3,41054,2,1672319408),(133737,3,41055,2,1672319408),(133738,3,41056,2,1672319408),(133739,3,41057,2,1672319408),(133740,3,41058,2,1672319408),(133741,3,41059,2,1672319408),(133742,3,41072,2,1672319408),(133743,3,41073,2,1672319408),(133744,3,41074,2,1672319408),(133745,3,41075,2,1672319408),(133746,3,41076,2,1672319408),(133747,3,41077,2,1672319408),(133748,3,41078,2,1672319408),(133749,3,41079,2,1672319408),(133750,3,41080,2,1672319408),(133751,3,41093,2,1672319408),(133752,3,41094,2,1672319408),(133753,3,41095,2,1672319408),(133754,3,41096,2,1672319408),(133755,3,41097,2,1672319408),(133756,3,41098,2,1672319408),(133757,3,41099,2,1672319408),(133758,3,41100,2,1672319408),(133759,3,41101,2,1672319408),(133760,3,41114,2,1672319408),(133761,3,41115,2,1672319408),(133762,3,41116,2,1672319408),(133763,3,41117,2,1672319408),(133764,3,41118,2,1672319408),(133765,3,41119,2,1672319408),(133766,3,41120,2,1672319408),(133767,3,41121,2,1672319408),(133768,3,41122,2,1672319408),(133769,3,41135,2,1672319408),(133770,3,41136,2,1672319408),(133771,3,41137,2,1672319408),(133772,3,41138,2,1672319408),(133773,3,41139,2,1672319408),(133774,3,41140,2,1672319408),(133775,3,41141,2,1672319408),(133776,3,41142,2,1672319408),(133777,3,41143,2,1672319408),(133778,3,41156,2,1672319408),(133779,3,41157,2,1672319408),(133780,3,41158,2,1672319408),(133781,3,41159,2,1672319408),(133782,3,41160,2,1672319408),(133783,3,41161,2,1672319408),(133784,3,41162,2,1672319408),(133785,3,41163,2,1672319408),(133786,3,41164,2,1672319408),(133787,3,41177,2,1672319408),(133788,3,41178,2,1672319408),(133789,3,41179,2,1672319408),(133790,3,41180,2,1672319408),(133791,3,41181,2,1672319408),(133792,3,41182,2,1672319408),(133793,3,41183,2,1672319408),(133794,3,41184,2,1672319408),(133795,3,41185,2,1672319408),(133796,3,41198,2,1672319408),(133797,3,41199,2,1672319408),(133798,3,41200,2,1672319408),(133799,3,41201,2,1672319408),(133800,3,41202,2,1672319408),(133801,3,41203,2,1672319408),(133802,3,41204,2,1672319408),(133803,3,41205,2,1672319408),(133804,3,41206,2,1672319408),(133805,3,41219,2,1672319408),(133806,3,41220,2,1672319408),(133807,3,41221,2,1672319408),(133808,3,41222,2,1672319408),(133809,3,41223,2,1672319408),(133810,3,41224,2,1672319408),(133811,3,41225,2,1672319408),(133812,3,41226,2,1672319408),(133813,3,41227,2,1672319408),(133814,3,41240,2,1672319408),(133815,3,41241,2,1672319408),(133816,3,41242,2,1672319408),(133817,3,41243,2,1672319408),(133818,3,41244,2,1672319408),(133819,3,41245,2,1672319408),(133820,3,41246,2,1672319408),(133821,3,41247,2,1672319408),(133822,3,41248,2,1672319408),(133823,3,41261,2,1672319408),(133824,3,41262,2,1672319408),(133825,3,41263,2,1672319408),(133826,3,41264,2,1672319408),(133827,3,41265,2,1672319408),(133828,3,41266,2,1672319408),(133829,3,41267,2,1672319408),(133830,3,41268,2,1672319408),(133831,3,41269,2,1672319408),(133832,3,41282,2,1672319408),(133833,3,41283,2,1672319408),(133834,3,41284,2,1672319408),(133835,3,41285,2,1672319408),(133836,3,41286,2,1672319408),(133837,3,41287,2,1672319408),(133838,3,41288,2,1672319408),(133839,3,41289,2,1672319408),(133840,3,41290,2,1672319408),(133841,3,41303,2,1672319408),(133842,3,41304,2,1672319408),(133843,3,41305,2,1672319408),(133844,3,41306,2,1672319408),(133845,3,41307,2,1672319408),(133846,3,41308,2,1672319408),(133847,3,41309,2,1672319408),(133848,3,41310,2,1672319408),(133849,3,41311,2,1672319408),(133850,3,41324,2,1672319408),(133851,3,41325,2,1672319408),(133852,3,41326,2,1672319408),(133853,3,41327,2,1672319408),(133854,3,41328,2,1672319408),(133855,3,41329,2,1672319408),(133856,3,41330,2,1672319408),(133857,3,41331,2,1672319408),(133858,3,41332,2,1672319408),(133859,3,41345,2,1672319408),(133860,3,41346,2,1672319408),(133861,3,41347,2,1672319408),(133862,3,41348,2,1672319408),(133863,3,41349,2,1672319408),(133864,3,41350,2,1672319408),(133865,3,41351,2,1672319408),(133866,3,41352,2,1672319408),(133867,3,41353,2,1672319408),(133868,3,41366,2,1672319408),(133869,3,41367,2,1672319408),(133870,3,41368,2,1672319408),(133871,3,41369,2,1672319408),(133872,3,41370,2,1672319408),(133873,3,41371,2,1672319408),(133874,3,41372,2,1672319408),(133875,3,41373,2,1672319408),(133876,3,41374,2,1672319408),(133877,3,41387,2,1672319408),(133878,3,41388,2,1672319408),(133879,3,41389,2,1672319408),(133880,3,41390,2,1672319408),(133881,3,41391,2,1672319408),(133882,3,41392,2,1672319408),(133883,3,41393,2,1672319408),(133884,3,41394,2,1672319408),(133885,3,41395,2,1672319408),(133886,3,41408,2,1672319408),(133887,3,41409,2,1672319408),(133888,3,41410,2,1672319408),(133889,3,41411,2,1672319408),(133890,3,41412,2,1672319408),(133891,3,41413,2,1672319408),(133892,3,41414,2,1672319408),(133893,3,41415,2,1672319408),(133894,3,41416,2,1672319408),(133895,3,41429,2,1672319408),(133896,3,41430,2,1672319408),(133897,3,41431,2,1672319408),(133898,3,41432,2,1672319408),(133899,3,41433,2,1672319408),(133900,3,41434,2,1672319408),(133901,3,41435,2,1672319408),(133902,3,41436,2,1672319408),(133903,3,41437,2,1672319408),(133904,3,41450,2,1672319408),(133905,3,41451,2,1672319408),(133906,3,41452,2,1672319408),(133907,3,41453,2,1672319408),(133908,3,41454,2,1672319408),(133909,3,41455,2,1672319408),(133910,3,41456,2,1672319408),(133911,3,41457,2,1672319408),(133912,3,41458,2,1672319408),(133913,3,41471,2,1672319408),(133914,3,41472,2,1672319408),(133915,3,41473,2,1672319408),(133916,3,41474,2,1672319408),(133917,3,41475,2,1672319408),(133918,3,41476,2,1672319408),(133919,3,41477,2,1672319408),(133920,3,41478,2,1672319408),(133921,3,41479,2,1672319408),(133922,3,41492,2,1672319408),(133923,3,41493,2,1672319408),(133924,3,41494,2,1672319408),(133925,3,41495,2,1672319408),(133926,3,41496,2,1672319408),(133927,3,41497,2,1672319408),(133928,3,41498,2,1672319408),(133929,3,41499,2,1672319408),(133930,3,41500,2,1672319408),(133931,3,41513,2,1672319408),(133932,3,41514,2,1672319408),(133933,3,41515,2,1672319408),(133934,3,41516,2,1672319408),(133935,3,41517,2,1672319408),(133936,3,41518,2,1672319408),(133937,3,41519,2,1672319408),(133938,3,41520,2,1672319408),(133939,3,41521,2,1672319408),(133940,3,41534,2,1672319408),(133941,3,41535,2,1672319408),(133942,3,41536,2,1672319408),(133943,3,41537,2,1672319408),(133944,3,41538,2,1672319408),(133945,3,41539,2,1672319408),(133946,3,41540,2,1672319408),(133947,3,41541,2,1672319408),(133948,3,41542,2,1672319408),(133949,3,41555,2,1672319408),(133950,3,41556,2,1672319408),(133951,3,41557,2,1672319408),(133952,3,41558,2,1672319408),(133953,3,41559,2,1672319408),(133954,3,41560,2,1672319408),(133955,3,41561,2,1672319408),(133956,3,41562,2,1672319408),(133957,3,41563,2,1672319408),(133958,3,41576,2,1672319408),(133959,3,41577,2,1672319408),(133960,3,41578,2,1672319408),(133961,3,41579,2,1672319408),(133962,3,41580,2,1672319408),(133963,3,41581,2,1672319408),(133964,3,41582,2,1672319408),(133965,3,41583,2,1672319408),(133966,3,41584,2,1672319408),(133967,3,41597,2,1672319408),(133968,3,41598,2,1672319408),(133969,3,41599,2,1672319408),(133970,3,41600,2,1672319408),(133971,3,41601,2,1672319408),(133972,3,41602,2,1672319408),(133973,3,41603,2,1672319408),(133974,3,41604,2,1672319408),(133975,3,41605,2,1672319408),(133976,3,41912,2,1672319408),(133977,3,41913,2,1672319408),(133978,3,41914,2,1672319408),(133979,3,41915,2,1672319408),(133980,3,41916,2,1672319408),(133981,3,41917,2,1672319408),(133982,3,41918,2,1672319408),(133983,3,41919,2,1672319408),(133984,3,41920,2,1672319408),(133985,3,41933,2,1672319408),(133986,3,41934,2,1672319408),(133987,3,41935,2,1672319408),(133988,3,41936,2,1672319408),(133989,3,41937,2,1672319408),(133990,3,41938,2,1672319408),(133991,3,41939,2,1672319408),(133992,3,41940,2,1672319408),(133993,3,41941,2,1672319408),(133994,3,41954,2,1672319408),(133995,3,41955,2,1672319408),(133996,3,41956,2,1672319408),(133997,3,41957,2,1672319408),(133998,3,41958,2,1672319408),(133999,3,41959,2,1672319408),(134000,3,41960,2,1672319408),(134001,3,41961,2,1672319408),(134002,3,41962,2,1672319408),(134003,3,41975,2,1672319408),(134004,3,41976,2,1672319408),(134005,3,41977,2,1672319408),(134006,3,41978,2,1672319408),(134007,3,41979,2,1672319408),(134008,3,41980,2,1672319408),(134009,3,41981,2,1672319408),(134010,3,41982,2,1672319408),(134011,3,41983,2,1672319408),(134012,3,41996,2,1672319408),(134013,3,41997,2,1672319408),(134014,3,41998,2,1672319408),(134015,3,41999,2,1672319408),(134016,3,42000,2,1672319408),(134017,3,42001,2,1672319408),(134018,3,42002,2,1672319408),(134019,3,42003,2,1672319408),(134020,3,42004,2,1672319408),(134021,3,42080,2,1672319408),(134022,3,42081,2,1672319408),(134023,3,42082,2,1672319408),(134024,3,42083,2,1672319408),(134025,3,42084,2,1672319408),(134026,3,42085,2,1672319408),(134027,3,42086,2,1672319408),(134028,3,42087,2,1672319408),(134029,3,42088,2,1672319408),(134030,3,42680,2,1672319408),(134031,3,42683,2,1672319408),(134032,3,44446,2,1672319408),(134033,3,23068,3,1672319408),(134034,3,23069,3,1672319408),(134035,3,23070,3,1672319408),(134036,3,23071,3,1672319408),(134037,3,23072,3,1672319408),(134038,3,27904,3,1672319408),(134039,3,27905,3,1672319408),(134040,3,27906,3,1672319408),(134041,3,27907,3,1672319408),(134042,3,27908,3,1672319408),(134043,3,28200,3,1672319408),(134044,3,28201,3,1672319408),(134045,3,28202,3,1672319408),(134046,3,28203,3,1672319408),(134047,3,28204,3,1672319408),(134048,3,28205,3,1672319408),(134049,3,28206,3,1672319408),(134050,3,29216,3,1672319408),(134051,3,29217,3,1672319408),(134052,3,29218,3,1672319408),(134053,3,29219,3,1672319408),(134054,3,29220,3,1672319408),(134055,3,29221,3,1672319408),(134056,3,29222,3,1672319408),(134057,3,29223,3,1672319408),(134058,3,31560,3,1672319408),(134059,3,31561,3,1672319408),(134060,3,31562,3,1672319408),(134061,3,31563,3,1672319408),(134062,3,31564,3,1672319408),(134063,3,31565,3,1672319408),(134064,3,31566,3,1672319408),(134065,3,31567,3,1672319408),(134066,3,31568,3,1672319408),(134067,3,31569,3,1672319408),(134068,3,31909,3,1672319408),(134069,3,31910,3,1672319408),(134070,3,31911,3,1672319408),(134071,3,31912,3,1672319408),(134072,3,31913,3,1672319408),(134073,3,31914,3,1672319408),(134074,3,31915,3,1672319408),(134075,3,31916,3,1672319408),(134076,3,32436,3,1672319408),(134077,3,32437,3,1672319408),(134078,3,32438,3,1672319408),(134079,3,32439,3,1672319408),(134080,3,32528,3,1672319408),(134081,3,32529,3,1672319408),(134082,3,32530,3,1672319408),(134083,3,32531,3,1672319408),(134084,3,32532,3,1672319408),(134085,3,32533,3,1672319408),(134086,3,32534,3,1672319408),(134087,3,32535,3,1672319408),(134088,3,32536,3,1672319408),(134089,3,32537,3,1672319408),(134090,3,32538,3,1672319408),(134091,3,32539,3,1672319408),(134092,3,32540,3,1672319408),(134093,3,32541,3,1672319408),(134094,3,32542,3,1672319408),(134095,3,32543,3,1672319408),(134096,3,32544,3,1672319408),(134097,3,32545,3,1672319408),(134098,3,32558,3,1672319408),(134099,3,32559,3,1672319408),(134100,3,32560,3,1672319408),(134101,3,32561,3,1672319408),(134102,3,32562,3,1672319408),(134103,3,32563,3,1672319408),(134104,3,32564,3,1672319408),(134105,3,32565,3,1672319408),(134106,3,32566,3,1672319408),(134107,3,32567,3,1672319408),(134108,3,32568,3,1672319408),(134109,3,32569,3,1672319408),(134110,3,32570,3,1672319408),(134111,3,32571,3,1672319408),(134112,3,32572,3,1672319408),(134113,3,32573,3,1672319408),(134114,3,32574,3,1672319408),(134115,3,32575,3,1672319408),(134116,3,33635,3,1672319408),(134117,3,33636,3,1672319408),(134118,3,33637,3,1672319408),(134119,3,34164,3,1672319408),(134120,3,34165,3,1672319408),(134121,3,34166,3,1672319408),(134122,3,34167,3,1672319408),(134123,3,34168,3,1672319408),(134124,3,34169,3,1672319408),(134125,3,34170,3,1672319408),(134126,3,34171,3,1672319408),(134127,3,34172,3,1672319408),(134128,3,34173,3,1672319408),(134129,3,34174,3,1672319408),(134130,3,34175,3,1672319408),(134131,3,34176,3,1672319408),(134132,3,34177,3,1672319408),(134133,3,34178,3,1672319408),(134134,3,36861,3,1672319408),(134135,3,36862,3,1672319408),(134136,3,36863,3,1672319408),(134137,3,36864,3,1672319408),(134138,3,36865,3,1672319408),(134139,3,36866,3,1672319408),(134140,3,36867,3,1672319408),(134141,3,36868,3,1672319408),(134142,3,36869,3,1672319408),(134143,3,36870,3,1672319408),(134144,3,36871,3,1672319408),(134145,3,36872,3,1672319408),(134146,3,36873,3,1672319408),(134147,3,36874,3,1672319408),(134148,3,36875,3,1672319408),(134149,3,36876,3,1672319408),(134150,3,36877,3,1672319408),(134151,3,36878,3,1672319408),(134152,3,36879,3,1672319408),(134153,3,36915,3,1672319408),(134154,3,36916,3,1672319408),(134155,3,36917,3,1672319408),(134156,3,36918,3,1672319408),(134157,3,36919,3,1672319408),(134158,3,36920,3,1672319408),(134159,3,36921,3,1672319408),(134160,3,36922,3,1672319408),(134161,3,36923,3,1672319408),(134162,3,36924,3,1672319408),(134163,3,36925,3,1672319408),(134164,3,36926,3,1672319408),(134165,3,36927,3,1672319408),(134166,3,36928,3,1672319408),(134167,3,36929,3,1672319408),(134168,3,36930,3,1672319408),(134169,3,36931,3,1672319408),(134170,3,36932,3,1672319408),(134171,3,36933,3,1672319408),(134172,3,36969,3,1672319408),(134173,3,36970,3,1672319408),(134174,3,36971,3,1672319408),(134175,3,36972,3,1672319408),(134176,3,36973,3,1672319408),(134177,3,36974,3,1672319408),(134178,3,36975,3,1672319408),(134179,3,36976,3,1672319408),(134180,3,36977,3,1672319408),(134181,3,36978,3,1672319408),(134182,3,36979,3,1672319408),(134183,3,36980,3,1672319408),(134184,3,36981,3,1672319408),(134185,3,36982,3,1672319408),(134186,3,36983,3,1672319408),(134187,3,36984,3,1672319408),(134188,3,36985,3,1672319408),(134189,3,36986,3,1672319408),(134190,3,36987,3,1672319408),(134191,3,37023,3,1672319408),(134192,3,37024,3,1672319408),(134193,3,37025,3,1672319408),(134194,3,37026,3,1672319408),(134195,3,37027,3,1672319408),(134196,3,37028,3,1672319408),(134197,3,37029,3,1672319408),(134198,3,37030,3,1672319408),(134199,3,37031,3,1672319408),(134200,3,37032,3,1672319408),(134201,3,37033,3,1672319408),(134202,3,37034,3,1672319408),(134203,3,37035,3,1672319408),(134204,3,37036,3,1672319408),(134205,3,37037,3,1672319408),(134206,3,37038,3,1672319408),(134207,3,37039,3,1672319408),(134208,3,37040,3,1672319408),(134209,3,37041,3,1672319408),(134210,3,37077,3,1672319408),(134211,3,37078,3,1672319408),(134212,3,37079,3,1672319408),(134213,3,37080,3,1672319408),(134214,3,37081,3,1672319408),(134215,3,37082,3,1672319408),(134216,3,37083,3,1672319408),(134217,3,37084,3,1672319408),(134218,3,37085,3,1672319408),(134219,3,37086,3,1672319408),(134220,3,37087,3,1672319408),(134221,3,37088,3,1672319408),(134222,3,37089,3,1672319408),(134223,3,37090,3,1672319408),(134224,3,37091,3,1672319408),(134225,3,37092,3,1672319408),(134226,3,37093,3,1672319408),(134227,3,37094,3,1672319408),(134228,3,37095,3,1672319408),(134229,3,37131,3,1672319408),(134230,3,37132,3,1672319408),(134231,3,37133,3,1672319408),(134232,3,37134,3,1672319408),(134233,3,37135,3,1672319408),(134234,3,37136,3,1672319408),(134235,3,37137,3,1672319408),(134236,3,37138,3,1672319408),(134237,3,37139,3,1672319408),(134238,3,37140,3,1672319408),(134239,3,37141,3,1672319408),(134240,3,37142,3,1672319408),(134241,3,37143,3,1672319408),(134242,3,37144,3,1672319408),(134243,3,37145,3,1672319408),(134244,3,37146,3,1672319408),(134245,3,37147,3,1672319408),(134246,3,37148,3,1672319408),(134247,3,37149,3,1672319408),(134248,3,37185,3,1672319408),(134249,3,37186,3,1672319408),(134250,3,37187,3,1672319408),(134251,3,37188,3,1672319408),(134252,3,37189,3,1672319408),(134253,3,37190,3,1672319408),(134254,3,37191,3,1672319408),(134255,3,37192,3,1672319408),(134256,3,37193,3,1672319408),(134257,3,37194,3,1672319408),(134258,3,37195,3,1672319408),(134259,3,37196,3,1672319408),(134260,3,37197,3,1672319408),(134261,3,37198,3,1672319408),(134262,3,37199,3,1672319408),(134263,3,37200,3,1672319408),(134264,3,37201,3,1672319408),(134265,3,37202,3,1672319408),(134266,3,37203,3,1672319408),(134267,3,37239,3,1672319408),(134268,3,37240,3,1672319408),(134269,3,37241,3,1672319408),(134270,3,37242,3,1672319408),(134271,3,37243,3,1672319408),(134272,3,37244,3,1672319408),(134273,3,37245,3,1672319408),(134274,3,37246,3,1672319408),(134275,3,37247,3,1672319408),(134276,3,37248,3,1672319408),(134277,3,37249,3,1672319408),(134278,3,37250,3,1672319408),(134279,3,37251,3,1672319408),(134280,3,37252,3,1672319408),(134281,3,37253,3,1672319408),(134282,3,37254,3,1672319408),(134283,3,37255,3,1672319408),(134284,3,37256,3,1672319408),(134285,3,37257,3,1672319408),(134286,3,37293,3,1672319408),(134287,3,37294,3,1672319408),(134288,3,37295,3,1672319408),(134289,3,37296,3,1672319408),(134290,3,37297,3,1672319408),(134291,3,37298,3,1672319408),(134292,3,37299,3,1672319408),(134293,3,37300,3,1672319408),(134294,3,37301,3,1672319408),(134295,3,37302,3,1672319408),(134296,3,37303,3,1672319408),(134297,3,37304,3,1672319408),(134298,3,37305,3,1672319408),(134299,3,37306,3,1672319408),(134300,3,37307,3,1672319408),(134301,3,37308,3,1672319408),(134302,3,37309,3,1672319408),(134303,3,37310,3,1672319408),(134304,3,37311,3,1672319408),(134305,3,37347,3,1672319408),(134306,3,37348,3,1672319408),(134307,3,37349,3,1672319408),(134308,3,37350,3,1672319408),(134309,3,37351,3,1672319408),(134310,3,37352,3,1672319408),(134311,3,37353,3,1672319408),(134312,3,37354,3,1672319408),(134313,3,37355,3,1672319408),(134314,3,37356,3,1672319408),(134315,3,37357,3,1672319408),(134316,3,37358,3,1672319408),(134317,3,37359,3,1672319408),(134318,3,37360,3,1672319408),(134319,3,37361,3,1672319408),(134320,3,37362,3,1672319408),(134321,3,37363,3,1672319408),(134322,3,37364,3,1672319408),(134323,3,37365,3,1672319408),(134324,3,37401,3,1672319408),(134325,3,37402,3,1672319408),(134326,3,37403,3,1672319408),(134327,3,37404,3,1672319408),(134328,3,37405,3,1672319408),(134329,3,37406,3,1672319408),(134330,3,37407,3,1672319408),(134331,3,37408,3,1672319408),(134332,3,37409,3,1672319408),(134333,3,37410,3,1672319408),(134334,3,37411,3,1672319408),(134335,3,37412,3,1672319408),(134336,3,37413,3,1672319408),(134337,3,37414,3,1672319408),(134338,3,37415,3,1672319408),(134339,3,37416,3,1672319408),(134340,3,37417,3,1672319408),(134341,3,37418,3,1672319408),(134342,3,37419,3,1672319408),(134343,3,37455,3,1672319408),(134344,3,37456,3,1672319408),(134345,3,37457,3,1672319408),(134346,3,37458,3,1672319408),(134347,3,37459,3,1672319408),(134348,3,37460,3,1672319408),(134349,3,37461,3,1672319408),(134350,3,37462,3,1672319408),(134351,3,37463,3,1672319408),(134352,3,37464,3,1672319408),(134353,3,37465,3,1672319408),(134354,3,37466,3,1672319408),(134355,3,37467,3,1672319408),(134356,3,37468,3,1672319408),(134357,3,37469,3,1672319408),(134358,3,37470,3,1672319408),(134359,3,37471,3,1672319408),(134360,3,37472,3,1672319408),(134361,3,37473,3,1672319408),(134362,3,37509,3,1672319408),(134363,3,37510,3,1672319408),(134364,3,37511,3,1672319408),(134365,3,37512,3,1672319408),(134366,3,37513,3,1672319408),(134367,3,37514,3,1672319408),(134368,3,37515,3,1672319408),(134369,3,37516,3,1672319408),(134370,3,37517,3,1672319408),(134371,3,37518,3,1672319408),(134372,3,37519,3,1672319408),(134373,3,37520,3,1672319408),(134374,3,37521,3,1672319408),(134375,3,37522,3,1672319408),(134376,3,37523,3,1672319408),(134377,3,37524,3,1672319408),(134378,3,37525,3,1672319408),(134379,3,37526,3,1672319408),(134380,3,37527,3,1672319408),(134381,3,37563,3,1672319408),(134382,3,37564,3,1672319408),(134383,3,37565,3,1672319408),(134384,3,37566,3,1672319408),(134385,3,37567,3,1672319408),(134386,3,37568,3,1672319408),(134387,3,37569,3,1672319408),(134388,3,37570,3,1672319408),(134389,3,37571,3,1672319408),(134390,3,37572,3,1672319408),(134391,3,37573,3,1672319408),(134392,3,37574,3,1672319408),(134393,3,37575,3,1672319408),(134394,3,37576,3,1672319408),(134395,3,37577,3,1672319408),(134396,3,37578,3,1672319408),(134397,3,37579,3,1672319408),(134398,3,37580,3,1672319408),(134399,3,37581,3,1672319408),(134400,3,37617,3,1672319408),(134401,3,37618,3,1672319408),(134402,3,37619,3,1672319408),(134403,3,37620,3,1672319408),(134404,3,37621,3,1672319408),(134405,3,37622,3,1672319408),(134406,3,37623,3,1672319408),(134407,3,37624,3,1672319408),(134408,3,37625,3,1672319408),(134409,3,37626,3,1672319408),(134410,3,37627,3,1672319408),(134411,3,37628,3,1672319408),(134412,3,37629,3,1672319408),(134413,3,37630,3,1672319408),(134414,3,37631,3,1672319408),(134415,3,37632,3,1672319408),(134416,3,37633,3,1672319408),(134417,3,37634,3,1672319408),(134418,3,37635,3,1672319408),(134419,3,37671,3,1672319408),(134420,3,37672,3,1672319408),(134421,3,37673,3,1672319408),(134422,3,37674,3,1672319408),(134423,3,37675,3,1672319408),(134424,3,37676,3,1672319408),(134425,3,37677,3,1672319408),(134426,3,37678,3,1672319408),(134427,3,37679,3,1672319408),(134428,3,37680,3,1672319408),(134429,3,37681,3,1672319408),(134430,3,37682,3,1672319408),(134431,3,37683,3,1672319408),(134432,3,37684,3,1672319408),(134433,3,37685,3,1672319408),(134434,3,37686,3,1672319408),(134435,3,37687,3,1672319408),(134436,3,37688,3,1672319408),(134437,3,37689,3,1672319408),(134438,3,37725,3,1672319408),(134439,3,37726,3,1672319408),(134440,3,37727,3,1672319408),(134441,3,37728,3,1672319408),(134442,3,37729,3,1672319408),(134443,3,37730,3,1672319408),(134444,3,37731,3,1672319408),(134445,3,37732,3,1672319408),(134446,3,37733,3,1672319408),(134447,3,37734,3,1672319408),(134448,3,37735,3,1672319408),(134449,3,37736,3,1672319408),(134450,3,37737,3,1672319408),(134451,3,37738,3,1672319408),(134452,3,37739,3,1672319408),(134453,3,37740,3,1672319408),(134454,3,37741,3,1672319408),(134455,3,37742,3,1672319408),(134456,3,37743,3,1672319408),(134457,3,37779,3,1672319408),(134458,3,37780,3,1672319408),(134459,3,37781,3,1672319408),(134460,3,37782,3,1672319408),(134461,3,37783,3,1672319408),(134462,3,37784,3,1672319408),(134463,3,37785,3,1672319408),(134464,3,37786,3,1672319408),(134465,3,37787,3,1672319408),(134466,3,37788,3,1672319408),(134467,3,37789,3,1672319408),(134468,3,37790,3,1672319408),(134469,3,37791,3,1672319408),(134470,3,37792,3,1672319408),(134471,3,37793,3,1672319408),(134472,3,37794,3,1672319408),(134473,3,37795,3,1672319408),(134474,3,37796,3,1672319408),(134475,3,37797,3,1672319408),(134476,3,37833,3,1672319408),(134477,3,37834,3,1672319408),(134478,3,37835,3,1672319408),(134479,3,37836,3,1672319408),(134480,3,37837,3,1672319408),(134481,3,37838,3,1672319408),(134482,3,37839,3,1672319408),(134483,3,37840,3,1672319408),(134484,3,37841,3,1672319408),(134485,3,37842,3,1672319408),(134486,3,37843,3,1672319408),(134487,3,37844,3,1672319408),(134488,3,37845,3,1672319408),(134489,3,37846,3,1672319408),(134490,3,37847,3,1672319408),(134491,3,37848,3,1672319408),(134492,3,37849,3,1672319408),(134493,3,37850,3,1672319408),(134494,3,37851,3,1672319408),(134495,3,37887,3,1672319408),(134496,3,37888,3,1672319408),(134497,3,37889,3,1672319408),(134498,3,37890,3,1672319408),(134499,3,37891,3,1672319408),(134500,3,37892,3,1672319408),(134501,3,37893,3,1672319408),(134502,3,37894,3,1672319408),(134503,3,37895,3,1672319408),(134504,3,37896,3,1672319408),(134505,3,37897,3,1672319408),(134506,3,37898,3,1672319408),(134507,3,37899,3,1672319408),(134508,3,37900,3,1672319408),(134509,3,37901,3,1672319408),(134510,3,37902,3,1672319408),(134511,3,37903,3,1672319408),(134512,3,37904,3,1672319408),(134513,3,37905,3,1672319408),(134514,3,37941,3,1672319408),(134515,3,37942,3,1672319408),(134516,3,37943,3,1672319408),(134517,3,37944,3,1672319408),(134518,3,37945,3,1672319408),(134519,3,37946,3,1672319408),(134520,3,37947,3,1672319408),(134521,3,37948,3,1672319408),(134522,3,37949,3,1672319408),(134523,3,37950,3,1672319408),(134524,3,37951,3,1672319408),(134525,3,37952,3,1672319408),(134526,3,37953,3,1672319408),(134527,3,37954,3,1672319408),(134528,3,37955,3,1672319408),(134529,3,37956,3,1672319408),(134530,3,37957,3,1672319408),(134531,3,37958,3,1672319408),(134532,3,37959,3,1672319408),(134533,3,37995,3,1672319408),(134534,3,37996,3,1672319408),(134535,3,37997,3,1672319408),(134536,3,37998,3,1672319408),(134537,3,37999,3,1672319408),(134538,3,38000,3,1672319408),(134539,3,38001,3,1672319408),(134540,3,38002,3,1672319408),(134541,3,38003,3,1672319408),(134542,3,38004,3,1672319408),(134543,3,38005,3,1672319408),(134544,3,38006,3,1672319408),(134545,3,38007,3,1672319408),(134546,3,38008,3,1672319408),(134547,3,38009,3,1672319408),(134548,3,38010,3,1672319408),(134549,3,38011,3,1672319408),(134550,3,38012,3,1672319408),(134551,3,38013,3,1672319408),(134552,3,38049,3,1672319408),(134553,3,38050,3,1672319408),(134554,3,38051,3,1672319408),(134555,3,38052,3,1672319408),(134556,3,38053,3,1672319408),(134557,3,38054,3,1672319408),(134558,3,38055,3,1672319408),(134559,3,38056,3,1672319408),(134560,3,38057,3,1672319408),(134561,3,38058,3,1672319408),(134562,3,38059,3,1672319408),(134563,3,38060,3,1672319408),(134564,3,38061,3,1672319408),(134565,3,38062,3,1672319408),(134566,3,38063,3,1672319408),(134567,3,38064,3,1672319408),(134568,3,38065,3,1672319408),(134569,3,38066,3,1672319408),(134570,3,38067,3,1672319408),(134571,3,38103,3,1672319408),(134572,3,38104,3,1672319408),(134573,3,38105,3,1672319408),(134574,3,38106,3,1672319408),(134575,3,38107,3,1672319408),(134576,3,38108,3,1672319408),(134577,3,38109,3,1672319408),(134578,3,38110,3,1672319408),(134579,3,38111,3,1672319408),(134580,3,38112,3,1672319408),(134581,3,38113,3,1672319408),(134582,3,38114,3,1672319408),(134583,3,38115,3,1672319408),(134584,3,38116,3,1672319408),(134585,3,38117,3,1672319408),(134586,3,38118,3,1672319408),(134587,3,38119,3,1672319408),(134588,3,38120,3,1672319408),(134589,3,38121,3,1672319408),(134590,3,38157,3,1672319408),(134591,3,38158,3,1672319408),(134592,3,38159,3,1672319408),(134593,3,38160,3,1672319408),(134594,3,38161,3,1672319408),(134595,3,38162,3,1672319408),(134596,3,38163,3,1672319408),(134597,3,38164,3,1672319408),(134598,3,38165,3,1672319408),(134599,3,38166,3,1672319408),(134600,3,38167,3,1672319408),(134601,3,38168,3,1672319408),(134602,3,38169,3,1672319408),(134603,3,38170,3,1672319408),(134604,3,38171,3,1672319408),(134605,3,38172,3,1672319408),(134606,3,38173,3,1672319408),(134607,3,38174,3,1672319408),(134608,3,38175,3,1672319408),(134609,3,38211,3,1672319408),(134610,3,38212,3,1672319408),(134611,3,38213,3,1672319408),(134612,3,38214,3,1672319408),(134613,3,38215,3,1672319408),(134614,3,38216,3,1672319408),(134615,3,38217,3,1672319408),(134616,3,38218,3,1672319408),(134617,3,38219,3,1672319408),(134618,3,38220,3,1672319408),(134619,3,38221,3,1672319408),(134620,3,38222,3,1672319408),(134621,3,38223,3,1672319408),(134622,3,38224,3,1672319408),(134623,3,38225,3,1672319408),(134624,3,38226,3,1672319408),(134625,3,38227,3,1672319408),(134626,3,38228,3,1672319408),(134627,3,38229,3,1672319408),(134628,3,38265,3,1672319408),(134629,3,38266,3,1672319408),(134630,3,38267,3,1672319408),(134631,3,38268,3,1672319408),(134632,3,38269,3,1672319408),(134633,3,38270,3,1672319408),(134634,3,38271,3,1672319408),(134635,3,38272,3,1672319408),(134636,3,38273,3,1672319408),(134637,3,38274,3,1672319408),(134638,3,38275,3,1672319408),(134639,3,38276,3,1672319408),(134640,3,38277,3,1672319408),(134641,3,38278,3,1672319408),(134642,3,38279,3,1672319408),(134643,3,38280,3,1672319408),(134644,3,38281,3,1672319408),(134645,3,38282,3,1672319408),(134646,3,38283,3,1672319408),(134647,3,38319,3,1672319408),(134648,3,38320,3,1672319408),(134649,3,38321,3,1672319408),(134650,3,38322,3,1672319408),(134651,3,38323,3,1672319408),(134652,3,38324,3,1672319408),(134653,3,38325,3,1672319408),(134654,3,38326,3,1672319408),(134655,3,38327,3,1672319408),(134656,3,38328,3,1672319408),(134657,3,38329,3,1672319408),(134658,3,38330,3,1672319408),(134659,3,38331,3,1672319408),(134660,3,38332,3,1672319408),(134661,3,38333,3,1672319408),(134662,3,38334,3,1672319408),(134663,3,38335,3,1672319408),(134664,3,38336,3,1672319408),(134665,3,38337,3,1672319408),(134666,3,38373,3,1672319408),(134667,3,38374,3,1672319408),(134668,3,38375,3,1672319408),(134669,3,38376,3,1672319408),(134670,3,38377,3,1672319408),(134671,3,38378,3,1672319408),(134672,3,38379,3,1672319408),(134673,3,38380,3,1672319408),(134674,3,38381,3,1672319408),(134675,3,38382,3,1672319408),(134676,3,38383,3,1672319408),(134677,3,38384,3,1672319408),(134678,3,38385,3,1672319408),(134679,3,38386,3,1672319408),(134680,3,38387,3,1672319408),(134681,3,38388,3,1672319408),(134682,3,38389,3,1672319408),(134683,3,38390,3,1672319408),(134684,3,38391,3,1672319408),(134685,3,38427,3,1672319408),(134686,3,38428,3,1672319408),(134687,3,38429,3,1672319408),(134688,3,38430,3,1672319408),(134689,3,38431,3,1672319408),(134690,3,38432,3,1672319408),(134691,3,38433,3,1672319408),(134692,3,38434,3,1672319408),(134693,3,38435,3,1672319408),(134694,3,38436,3,1672319408),(134695,3,38437,3,1672319408),(134696,3,38438,3,1672319408),(134697,3,38439,3,1672319408),(134698,3,38440,3,1672319408),(134699,3,38441,3,1672319408),(134700,3,38442,3,1672319408),(134701,3,38443,3,1672319408),(134702,3,38444,3,1672319408),(134703,3,38445,3,1672319408),(134704,3,38481,3,1672319408),(134705,3,38482,3,1672319408),(134706,3,38483,3,1672319408),(134707,3,38484,3,1672319408),(134708,3,38485,3,1672319408),(134709,3,38486,3,1672319408),(134710,3,38487,3,1672319408),(134711,3,38488,3,1672319408),(134712,3,38489,3,1672319408),(134713,3,38490,3,1672319408),(134714,3,38491,3,1672319408),(134715,3,38492,3,1672319408),(134716,3,38493,3,1672319408),(134717,3,38494,3,1672319408),(134718,3,38495,3,1672319408),(134719,3,38496,3,1672319408),(134720,3,38497,3,1672319408),(134721,3,38498,3,1672319408),(134722,3,38499,3,1672319408),(134723,3,38535,3,1672319408),(134724,3,38536,3,1672319408),(134725,3,38537,3,1672319408),(134726,3,38538,3,1672319408),(134727,3,38539,3,1672319408),(134728,3,38540,3,1672319408),(134729,3,38541,3,1672319408),(134730,3,38542,3,1672319408),(134731,3,38543,3,1672319408),(134732,3,38544,3,1672319408),(134733,3,38545,3,1672319408),(134734,3,38546,3,1672319408),(134735,3,38547,3,1672319408),(134736,3,38548,3,1672319408),(134737,3,38549,3,1672319408),(134738,3,38550,3,1672319408),(134739,3,38551,3,1672319408),(134740,3,38552,3,1672319408),(134741,3,38553,3,1672319408),(134742,3,39345,3,1672319408),(134743,3,39346,3,1672319408),(134744,3,39347,3,1672319408),(134745,3,39348,3,1672319408),(134746,3,39349,3,1672319408),(134747,3,39350,3,1672319408),(134748,3,39351,3,1672319408),(134749,3,39352,3,1672319408),(134750,3,39353,3,1672319408),(134751,3,39354,3,1672319408),(134752,3,39355,3,1672319408),(134753,3,39356,3,1672319408),(134754,3,39357,3,1672319408),(134755,3,39358,3,1672319408),(134756,3,39359,3,1672319408),(134757,3,39360,3,1672319408),(134758,3,39361,3,1672319408),(134759,3,39362,3,1672319408),(134760,3,39363,3,1672319408),(134761,3,39399,3,1672319408),(134762,3,39400,3,1672319408),(134763,3,39401,3,1672319408),(134764,3,39402,3,1672319408),(134765,3,39403,3,1672319408),(134766,3,39404,3,1672319408),(134767,3,39405,3,1672319408),(134768,3,39406,3,1672319408),(134769,3,39407,3,1672319408),(134770,3,39408,3,1672319408),(134771,3,39409,3,1672319408),(134772,3,39410,3,1672319408),(134773,3,39411,3,1672319408),(134774,3,39412,3,1672319408),(134775,3,39413,3,1672319408),(134776,3,39414,3,1672319408),(134777,3,39415,3,1672319408),(134778,3,39416,3,1672319408),(134779,3,39417,3,1672319408),(134780,3,39453,3,1672319408),(134781,3,39454,3,1672319408),(134782,3,39455,3,1672319408),(134783,3,39456,3,1672319408),(134784,3,39457,3,1672319408),(134785,3,39458,3,1672319408),(134786,3,39459,3,1672319408),(134787,3,39460,3,1672319408),(134788,3,39461,3,1672319408),(134789,3,39462,3,1672319408),(134790,3,39463,3,1672319408),(134791,3,39464,3,1672319408),(134792,3,39465,3,1672319408),(134793,3,39466,3,1672319408),(134794,3,39467,3,1672319408),(134795,3,39468,3,1672319408),(134796,3,39469,3,1672319408),(134797,3,39470,3,1672319408),(134798,3,39471,3,1672319408),(134799,3,39507,3,1672319408),(134800,3,39508,3,1672319408),(134801,3,39509,3,1672319408),(134802,3,39510,3,1672319408),(134803,3,39511,3,1672319408),(134804,3,39512,3,1672319408),(134805,3,39513,3,1672319408),(134806,3,39514,3,1672319408),(134807,3,39515,3,1672319408),(134808,3,39516,3,1672319408),(134809,3,39517,3,1672319408),(134810,3,39518,3,1672319408),(134811,3,39519,3,1672319408),(134812,3,39520,3,1672319408),(134813,3,39521,3,1672319408),(134814,3,39522,3,1672319408),(134815,3,39523,3,1672319408),(134816,3,39524,3,1672319408),(134817,3,39525,3,1672319408),(134818,3,39561,3,1672319408),(134819,3,39562,3,1672319408),(134820,3,39563,3,1672319408),(134821,3,39564,3,1672319408),(134822,3,39565,3,1672319408),(134823,3,39566,3,1672319408),(134824,3,39567,3,1672319408),(134825,3,39568,3,1672319408),(134826,3,39569,3,1672319408),(134827,3,39570,3,1672319408),(134828,3,39571,3,1672319408),(134829,3,39572,3,1672319408),(134830,3,39573,3,1672319408),(134831,3,39574,3,1672319408),(134832,3,39575,3,1672319408),(134833,3,39576,3,1672319408),(134834,3,39577,3,1672319408),(134835,3,39578,3,1672319408),(134836,3,39579,3,1672319408),(134837,3,40946,3,1672319408),(134838,3,40947,3,1672319408),(134839,3,40948,3,1672319408),(134840,3,40949,3,1672319408),(134841,3,40950,3,1672319408),(134842,3,40951,3,1672319408),(134843,3,40952,3,1672319408),(134844,3,40953,3,1672319408),(134845,3,40954,3,1672319408),(134846,3,40967,3,1672319408),(134847,3,40968,3,1672319408),(134848,3,40969,3,1672319408),(134849,3,40970,3,1672319408),(134850,3,40971,3,1672319408),(134851,3,40972,3,1672319408),(134852,3,40973,3,1672319408),(134853,3,40974,3,1672319408),(134854,3,40975,3,1672319408),(134855,3,40988,3,1672319408),(134856,3,40989,3,1672319408),(134857,3,40990,3,1672319408),(134858,3,40991,3,1672319408),(134859,3,40992,3,1672319408),(134860,3,40993,3,1672319408),(134861,3,40994,3,1672319408),(134862,3,40995,3,1672319408),(134863,3,40996,3,1672319408),(134864,3,41009,3,1672319408),(134865,3,41010,3,1672319408),(134866,3,41011,3,1672319408),(134867,3,41012,3,1672319408),(134868,3,41013,3,1672319408),(134869,3,41014,3,1672319408),(134870,3,41015,3,1672319408),(134871,3,41016,3,1672319408),(134872,3,41017,3,1672319408),(134873,3,41030,3,1672319408),(134874,3,41031,3,1672319408),(134875,3,41032,3,1672319408),(134876,3,41033,3,1672319408),(134877,3,41034,3,1672319408),(134878,3,41035,3,1672319408),(134879,3,41036,3,1672319408),(134880,3,41037,3,1672319408),(134881,3,41038,3,1672319408),(134882,3,41051,3,1672319408),(134883,3,41052,3,1672319408),(134884,3,41053,3,1672319408),(134885,3,41054,3,1672319408),(134886,3,41055,3,1672319408),(134887,3,41056,3,1672319408),(134888,3,41057,3,1672319408),(134889,3,41058,3,1672319408),(134890,3,41059,3,1672319408),(134891,3,41072,3,1672319408),(134892,3,41073,3,1672319408),(134893,3,41074,3,1672319408),(134894,3,41075,3,1672319408),(134895,3,41076,3,1672319408),(134896,3,41077,3,1672319408),(134897,3,41078,3,1672319408),(134898,3,41079,3,1672319408),(134899,3,41080,3,1672319408),(134900,3,41093,3,1672319408),(134901,3,41094,3,1672319408),(134902,3,41095,3,1672319408),(134903,3,41096,3,1672319408),(134904,3,41097,3,1672319408),(134905,3,41098,3,1672319408),(134906,3,41099,3,1672319408),(134907,3,41100,3,1672319408),(134908,3,41101,3,1672319408),(134909,3,41114,3,1672319408),(134910,3,41115,3,1672319408),(134911,3,41116,3,1672319408),(134912,3,41117,3,1672319408),(134913,3,41118,3,1672319408),(134914,3,41119,3,1672319408),(134915,3,41120,3,1672319408),(134916,3,41121,3,1672319408),(134917,3,41122,3,1672319408),(134918,3,41135,3,1672319408),(134919,3,41136,3,1672319408),(134920,3,41137,3,1672319408),(134921,3,41138,3,1672319408),(134922,3,41139,3,1672319408),(134923,3,41140,3,1672319408),(134924,3,41141,3,1672319408),(134925,3,41142,3,1672319408),(134926,3,41143,3,1672319408),(134927,3,41156,3,1672319408),(134928,3,41157,3,1672319408),(134929,3,41158,3,1672319408),(134930,3,41159,3,1672319408),(134931,3,41160,3,1672319408),(134932,3,41161,3,1672319408),(134933,3,41162,3,1672319408),(134934,3,41163,3,1672319408),(134935,3,41164,3,1672319408),(134936,3,41177,3,1672319408),(134937,3,41178,3,1672319408),(134938,3,41179,3,1672319408),(134939,3,41180,3,1672319408),(134940,3,41181,3,1672319408),(134941,3,41182,3,1672319408),(134942,3,41183,3,1672319408),(134943,3,41184,3,1672319408),(134944,3,41185,3,1672319408),(134945,3,41198,3,1672319408),(134946,3,41199,3,1672319408),(134947,3,41200,3,1672319408),(134948,3,41201,3,1672319408),(134949,3,41202,3,1672319408),(134950,3,41203,3,1672319408),(134951,3,41204,3,1672319408),(134952,3,41205,3,1672319408),(134953,3,41206,3,1672319408),(134954,3,41219,3,1672319408),(134955,3,41220,3,1672319408),(134956,3,41221,3,1672319408),(134957,3,41222,3,1672319408),(134958,3,41223,3,1672319408),(134959,3,41224,3,1672319408),(134960,3,41225,3,1672319408),(134961,3,41226,3,1672319408),(134962,3,41227,3,1672319408),(134963,3,41240,3,1672319408),(134964,3,41241,3,1672319408),(134965,3,41242,3,1672319408),(134966,3,41243,3,1672319408),(134967,3,41244,3,1672319408),(134968,3,41245,3,1672319408),(134969,3,41246,3,1672319408),(134970,3,41247,3,1672319408),(134971,3,41248,3,1672319408),(134972,3,41261,3,1672319408),(134973,3,41262,3,1672319408),(134974,3,41263,3,1672319408),(134975,3,41264,3,1672319408),(134976,3,41265,3,1672319408),(134977,3,41266,3,1672319408),(134978,3,41267,3,1672319408),(134979,3,41268,3,1672319408),(134980,3,41269,3,1672319408),(134981,3,41282,3,1672319408),(134982,3,41283,3,1672319408),(134983,3,41284,3,1672319408),(134984,3,41285,3,1672319408),(134985,3,41286,3,1672319408),(134986,3,41287,3,1672319408),(134987,3,41288,3,1672319408),(134988,3,41289,3,1672319408),(134989,3,41290,3,1672319408),(134990,3,41303,3,1672319408),(134991,3,41304,3,1672319408),(134992,3,41305,3,1672319408),(134993,3,41306,3,1672319408),(134994,3,41307,3,1672319408),(134995,3,41308,3,1672319408),(134996,3,41309,3,1672319408),(134997,3,41310,3,1672319408),(134998,3,41311,3,1672319408),(134999,3,41324,3,1672319408),(135000,3,41325,3,1672319408),(135001,3,41326,3,1672319408),(135002,3,41327,3,1672319408),(135003,3,41328,3,1672319408),(135004,3,41329,3,1672319408),(135005,3,41330,3,1672319408),(135006,3,41331,3,1672319408),(135007,3,41332,3,1672319408),(135008,3,41345,3,1672319408),(135009,3,41346,3,1672319408),(135010,3,41347,3,1672319408),(135011,3,41348,3,1672319408),(135012,3,41349,3,1672319408),(135013,3,41350,3,1672319408),(135014,3,41351,3,1672319408),(135015,3,41352,3,1672319408),(135016,3,41353,3,1672319408),(135017,3,41366,3,1672319408),(135018,3,41367,3,1672319408),(135019,3,41368,3,1672319408),(135020,3,41369,3,1672319408),(135021,3,41370,3,1672319408),(135022,3,41371,3,1672319408),(135023,3,41372,3,1672319408),(135024,3,41373,3,1672319408),(135025,3,41374,3,1672319408),(135026,3,41387,3,1672319408),(135027,3,41388,3,1672319408),(135028,3,41389,3,1672319408),(135029,3,41390,3,1672319408),(135030,3,41391,3,1672319408),(135031,3,41392,3,1672319408),(135032,3,41393,3,1672319408),(135033,3,41394,3,1672319408),(135034,3,41395,3,1672319408),(135035,3,41408,3,1672319408),(135036,3,41409,3,1672319408),(135037,3,41410,3,1672319408),(135038,3,41411,3,1672319408),(135039,3,41412,3,1672319408),(135040,3,41413,3,1672319408),(135041,3,41414,3,1672319408),(135042,3,41415,3,1672319408),(135043,3,41416,3,1672319408),(135044,3,41429,3,1672319408),(135045,3,41430,3,1672319408),(135046,3,41431,3,1672319408),(135047,3,41432,3,1672319408),(135048,3,41433,3,1672319408),(135049,3,41434,3,1672319408),(135050,3,41435,3,1672319408),(135051,3,41436,3,1672319408),(135052,3,41437,3,1672319408),(135053,3,41450,3,1672319408),(135054,3,41451,3,1672319408),(135055,3,41452,3,1672319408),(135056,3,41453,3,1672319408),(135057,3,41454,3,1672319408),(135058,3,41455,3,1672319408),(135059,3,41456,3,1672319408),(135060,3,41457,3,1672319408),(135061,3,41458,3,1672319408),(135062,3,41471,3,1672319408),(135063,3,41472,3,1672319408),(135064,3,41473,3,1672319408),(135065,3,41474,3,1672319408),(135066,3,41475,3,1672319408),(135067,3,41476,3,1672319408),(135068,3,41477,3,1672319408),(135069,3,41478,3,1672319408),(135070,3,41479,3,1672319408),(135071,3,41492,3,1672319408),(135072,3,41493,3,1672319408),(135073,3,41494,3,1672319408),(135074,3,41495,3,1672319408),(135075,3,41496,3,1672319408),(135076,3,41497,3,1672319408),(135077,3,41498,3,1672319408),(135078,3,41499,3,1672319408),(135079,3,41500,3,1672319408),(135080,3,41513,3,1672319408),(135081,3,41514,3,1672319408),(135082,3,41515,3,1672319408),(135083,3,41516,3,1672319408),(135084,3,41517,3,1672319408),(135085,3,41518,3,1672319408),(135086,3,41519,3,1672319408),(135087,3,41520,3,1672319408),(135088,3,41521,3,1672319408),(135089,3,41534,3,1672319408),(135090,3,41535,3,1672319408),(135091,3,41536,3,1672319408),(135092,3,41537,3,1672319408),(135093,3,41538,3,1672319408),(135094,3,41539,3,1672319408),(135095,3,41540,3,1672319408),(135096,3,41541,3,1672319408),(135097,3,41542,3,1672319408),(135098,3,41555,3,1672319408),(135099,3,41556,3,1672319408),(135100,3,41557,3,1672319408),(135101,3,41558,3,1672319408),(135102,3,41559,3,1672319408),(135103,3,41560,3,1672319408),(135104,3,41561,3,1672319408),(135105,3,41562,3,1672319408),(135106,3,41563,3,1672319408),(135107,3,41576,3,1672319408),(135108,3,41577,3,1672319408),(135109,3,41578,3,1672319408),(135110,3,41579,3,1672319408),(135111,3,41580,3,1672319408),(135112,3,41581,3,1672319408),(135113,3,41582,3,1672319408),(135114,3,41583,3,1672319408),(135115,3,41584,3,1672319408),(135116,3,41597,3,1672319408),(135117,3,41598,3,1672319408),(135118,3,41599,3,1672319408),(135119,3,41600,3,1672319408),(135120,3,41601,3,1672319408),(135121,3,41602,3,1672319408),(135122,3,41603,3,1672319408),(135123,3,41604,3,1672319408),(135124,3,41605,3,1672319408),(135125,3,41912,3,1672319408),(135126,3,41913,3,1672319408),(135127,3,41914,3,1672319408),(135128,3,41915,3,1672319408),(135129,3,41916,3,1672319408),(135130,3,41917,3,1672319408),(135131,3,41918,3,1672319408),(135132,3,41919,3,1672319408),(135133,3,41920,3,1672319408),(135134,3,41933,3,1672319408),(135135,3,41934,3,1672319408),(135136,3,41935,3,1672319408),(135137,3,41936,3,1672319408),(135138,3,41937,3,1672319408),(135139,3,41938,3,1672319408),(135140,3,41939,3,1672319408),(135141,3,41940,3,1672319408),(135142,3,41941,3,1672319408),(135143,3,41954,3,1672319408),(135144,3,41955,3,1672319408),(135145,3,41956,3,1672319408),(135146,3,41957,3,1672319408),(135147,3,41958,3,1672319408),(135148,3,41959,3,1672319408),(135149,3,41960,3,1672319408),(135150,3,41961,3,1672319408),(135151,3,41962,3,1672319408),(135152,3,41975,3,1672319408),(135153,3,41976,3,1672319408),(135154,3,41977,3,1672319408),(135155,3,41978,3,1672319408),(135156,3,41979,3,1672319408),(135157,3,41980,3,1672319408),(135158,3,41981,3,1672319408),(135159,3,41982,3,1672319408),(135160,3,41983,3,1672319408),(135161,3,41996,3,1672319408),(135162,3,41997,3,1672319408),(135163,3,41998,3,1672319408),(135164,3,41999,3,1672319408),(135165,3,42000,3,1672319408),(135166,3,42001,3,1672319408),(135167,3,42002,3,1672319408),(135168,3,42003,3,1672319408),(135169,3,42004,3,1672319408),(135170,3,42080,3,1672319408),(135171,3,42081,3,1672319408),(135172,3,42082,3,1672319408),(135173,3,42083,3,1672319408),(135174,3,42084,3,1672319408),(135175,3,42085,3,1672319408),(135176,3,42086,3,1672319408),(135177,3,42087,3,1672319408),(135178,3,42088,3,1672319408),(135179,3,42680,3,1672319408),(135180,3,42683,3,1672319408),(135181,3,44446,3,1672319408),(135182,3,23067,2,1672319409),(135183,3,27901,2,1672319409),(135184,3,27902,2,1672319409),(135185,3,27903,2,1672319409),(135186,3,28196,2,1672319409),(135187,3,28197,2,1672319409),(135188,3,28198,2,1672319409),(135189,3,28199,2,1672319409),(135190,3,29203,2,1672319409),(135191,3,31557,2,1672319409),(135192,3,31558,2,1672319409),(135193,3,31559,2,1672319409),(135194,3,31898,2,1672319409),(135195,3,32435,2,1672319409),(135196,3,32525,2,1672319409),(135197,3,32526,2,1672319409),(135198,3,32527,2,1672319409),(135199,3,32555,2,1672319409),(135200,3,32556,2,1672319409),(135201,3,32557,2,1672319409),(135202,3,33634,2,1672319409),(135203,3,34161,2,1672319409),(135204,3,34162,2,1672319409),(135205,3,34163,2,1672319409),(135206,3,36854,2,1672319409),(135207,3,36855,2,1672319409),(135208,3,36856,2,1672319409),(135209,3,36857,2,1672319409),(135210,3,36858,2,1672319409),(135211,3,36859,2,1672319409),(135212,3,36860,2,1672319409),(135213,3,36908,2,1672319409),(135214,3,36909,2,1672319409),(135215,3,36910,2,1672319409),(135216,3,36911,2,1672319409),(135217,3,36912,2,1672319409),(135218,3,36913,2,1672319409),(135219,3,36914,2,1672319409),(135220,3,36962,2,1672319409),(135221,3,36963,2,1672319409),(135222,3,36964,2,1672319409),(135223,3,36965,2,1672319409),(135224,3,36966,2,1672319409),(135225,3,36967,2,1672319409),(135226,3,36968,2,1672319409),(135227,3,37016,2,1672319409),(135228,3,37017,2,1672319409),(135229,3,37018,2,1672319409),(135230,3,37019,2,1672319409),(135231,3,37020,2,1672319409),(135232,3,37021,2,1672319409),(135233,3,37022,2,1672319409),(135234,3,37070,2,1672319409),(135235,3,37071,2,1672319409),(135236,3,37072,2,1672319409),(135237,3,37073,2,1672319409),(135238,3,37074,2,1672319409),(135239,3,37075,2,1672319409),(135240,3,37076,2,1672319409),(135241,3,37124,2,1672319409),(135242,3,37125,2,1672319409),(135243,3,37126,2,1672319409),(135244,3,37127,2,1672319409),(135245,3,37128,2,1672319409),(135246,3,37129,2,1672319409),(135247,3,37130,2,1672319409),(135248,3,37178,2,1672319409),(135249,3,37179,2,1672319409),(135250,3,37180,2,1672319409),(135251,3,37181,2,1672319409),(135252,3,37182,2,1672319409),(135253,3,37183,2,1672319409),(135254,3,37184,2,1672319409),(135255,3,37232,2,1672319409),(135256,3,37233,2,1672319409),(135257,3,37234,2,1672319409),(135258,3,37235,2,1672319409),(135259,3,37236,2,1672319409),(135260,3,37237,2,1672319409),(135261,3,37238,2,1672319409),(135262,3,37286,2,1672319409),(135263,3,37287,2,1672319409),(135264,3,37288,2,1672319409),(135265,3,37289,2,1672319409),(135266,3,37290,2,1672319409),(135267,3,37291,2,1672319409),(135268,3,37292,2,1672319409),(135269,3,37340,2,1672319409),(135270,3,37341,2,1672319409),(135271,3,37342,2,1672319409),(135272,3,37343,2,1672319409),(135273,3,37344,2,1672319409),(135274,3,37345,2,1672319409),(135275,3,37346,2,1672319409),(135276,3,37394,2,1672319409),(135277,3,37395,2,1672319409),(135278,3,37396,2,1672319409),(135279,3,37397,2,1672319409),(135280,3,37398,2,1672319409),(135281,3,37399,2,1672319409),(135282,3,37400,2,1672319409),(135283,3,37448,2,1672319409),(135284,3,37449,2,1672319409),(135285,3,37450,2,1672319409),(135286,3,37451,2,1672319409),(135287,3,37452,2,1672319409),(135288,3,37453,2,1672319409),(135289,3,37454,2,1672319409),(135290,3,37502,2,1672319409),(135291,3,37503,2,1672319409),(135292,3,37504,2,1672319409),(135293,3,37505,2,1672319409),(135294,3,37506,2,1672319409),(135295,3,37507,2,1672319409),(135296,3,37508,2,1672319409),(135297,3,37556,2,1672319409),(135298,3,37557,2,1672319409),(135299,3,37558,2,1672319409),(135300,3,37559,2,1672319409),(135301,3,37560,2,1672319409),(135302,3,37561,2,1672319409),(135303,3,37562,2,1672319409),(135304,3,37610,2,1672319409),(135305,3,37611,2,1672319409),(135306,3,37612,2,1672319409),(135307,3,37613,2,1672319409),(135308,3,37614,2,1672319409),(135309,3,37615,2,1672319409),(135310,3,37616,2,1672319409),(135311,3,37664,2,1672319409),(135312,3,37665,2,1672319409),(135313,3,37666,2,1672319409),(135314,3,37667,2,1672319409),(135315,3,37668,2,1672319409),(135316,3,37669,2,1672319409),(135317,3,37670,2,1672319409),(135318,3,37718,2,1672319409),(135319,3,37719,2,1672319409),(135320,3,37720,2,1672319409),(135321,3,37721,2,1672319409),(135322,3,37722,2,1672319409),(135323,3,37723,2,1672319409),(135324,3,37724,2,1672319409),(135325,3,37772,2,1672319409),(135326,3,37773,2,1672319409),(135327,3,37774,2,1672319409),(135328,3,37775,2,1672319409),(135329,3,37776,2,1672319409),(135330,3,37777,2,1672319409),(135331,3,37778,2,1672319409),(135332,3,37826,2,1672319409),(135333,3,37827,2,1672319409),(135334,3,37828,2,1672319409),(135335,3,37829,2,1672319409),(135336,3,37830,2,1672319409),(135337,3,37831,2,1672319409),(135338,3,37832,2,1672319409),(135339,3,37880,2,1672319409),(135340,3,37881,2,1672319409),(135341,3,37882,2,1672319409),(135342,3,37883,2,1672319409),(135343,3,37884,2,1672319409),(135344,3,37885,2,1672319409),(135345,3,37886,2,1672319409),(135346,3,37934,2,1672319409),(135347,3,37935,2,1672319409),(135348,3,37936,2,1672319409),(135349,3,37937,2,1672319409),(135350,3,37938,2,1672319409),(135351,3,37939,2,1672319409),(135352,3,37940,2,1672319409),(135353,3,37988,2,1672319409),(135354,3,37989,2,1672319409),(135355,3,37990,2,1672319409),(135356,3,37991,2,1672319409),(135357,3,37992,2,1672319409),(135358,3,37993,2,1672319409),(135359,3,37994,2,1672319409),(135360,3,38042,2,1672319409),(135361,3,38043,2,1672319409),(135362,3,38044,2,1672319409),(135363,3,38045,2,1672319409),(135364,3,38046,2,1672319409),(135365,3,38047,2,1672319409),(135366,3,38048,2,1672319409),(135367,3,38096,2,1672319409),(135368,3,38097,2,1672319409),(135369,3,38098,2,1672319409),(135370,3,38099,2,1672319409),(135371,3,38100,2,1672319409),(135372,3,38101,2,1672319409),(135373,3,38102,2,1672319409),(135374,3,38150,2,1672319409),(135375,3,38151,2,1672319409),(135376,3,38152,2,1672319409),(135377,3,38153,2,1672319409),(135378,3,38154,2,1672319409),(135379,3,38155,2,1672319409),(135380,3,38156,2,1672319409),(135381,3,38204,2,1672319409),(135382,3,38205,2,1672319409),(135383,3,38206,2,1672319409),(135384,3,38207,2,1672319409),(135385,3,38208,2,1672319409),(135386,3,38209,2,1672319409),(135387,3,38210,2,1672319409),(135388,3,38258,2,1672319409),(135389,3,38259,2,1672319409),(135390,3,38260,2,1672319409),(135391,3,38261,2,1672319409),(135392,3,38262,2,1672319409),(135393,3,38263,2,1672319409),(135394,3,38264,2,1672319409),(135395,3,38312,2,1672319409),(135396,3,38313,2,1672319409),(135397,3,38314,2,1672319409),(135398,3,38315,2,1672319409),(135399,3,38316,2,1672319409),(135400,3,38317,2,1672319409),(135401,3,38318,2,1672319409),(135402,3,38366,2,1672319409),(135403,3,38367,2,1672319409),(135404,3,38368,2,1672319409),(135405,3,38369,2,1672319409),(135406,3,38370,2,1672319409),(135407,3,38371,2,1672319409),(135408,3,38372,2,1672319409),(135409,3,38420,2,1672319409),(135410,3,38421,2,1672319409),(135411,3,38422,2,1672319409),(135412,3,38423,2,1672319409),(135413,3,38424,2,1672319409),(135414,3,38425,2,1672319409),(135415,3,38426,2,1672319409),(135416,3,38474,2,1672319409),(135417,3,38475,2,1672319409),(135418,3,38476,2,1672319409),(135419,3,38477,2,1672319409),(135420,3,38478,2,1672319409),(135421,3,38479,2,1672319409),(135422,3,38480,2,1672319409),(135423,3,38528,2,1672319409),(135424,3,38529,2,1672319409),(135425,3,38530,2,1672319409),(135426,3,38531,2,1672319409),(135427,3,38532,2,1672319409),(135428,3,38533,2,1672319409),(135429,3,38534,2,1672319409),(135430,3,39338,2,1672319409),(135431,3,39339,2,1672319409),(135432,3,39340,2,1672319409),(135433,3,39341,2,1672319409),(135434,3,39342,2,1672319409),(135435,3,39343,2,1672319409),(135436,3,39344,2,1672319409),(135437,3,39392,2,1672319409),(135438,3,39393,2,1672319409),(135439,3,39394,2,1672319409),(135440,3,39395,2,1672319409),(135441,3,39396,2,1672319409),(135442,3,39397,2,1672319409),(135443,3,39398,2,1672319409),(135444,3,39446,2,1672319409),(135445,3,39447,2,1672319409),(135446,3,39448,2,1672319409),(135447,3,39449,2,1672319409),(135448,3,39450,2,1672319409),(135449,3,39451,2,1672319409),(135450,3,39452,2,1672319409),(135451,3,39500,2,1672319409),(135452,3,39501,2,1672319409),(135453,3,39502,2,1672319409),(135454,3,39503,2,1672319409),(135455,3,39504,2,1672319409),(135456,3,39505,2,1672319409),(135457,3,39506,2,1672319409),(135458,3,39554,2,1672319409),(135459,3,39555,2,1672319409),(135460,3,39556,2,1672319409),(135461,3,39557,2,1672319409),(135462,3,39558,2,1672319409),(135463,3,39559,2,1672319409),(135464,3,39560,2,1672319409),(135465,3,40945,2,1672319409),(135466,3,40966,2,1672319409),(135467,3,40987,2,1672319409),(135468,3,41008,2,1672319409),(135469,3,41029,2,1672319409),(135470,3,41050,2,1672319409),(135471,3,41071,2,1672319409),(135472,3,41092,2,1672319409),(135473,3,41113,2,1672319409),(135474,3,41134,2,1672319409),(135475,3,41155,2,1672319409),(135476,3,41176,2,1672319409),(135477,3,41197,2,1672319409),(135478,3,41218,2,1672319409),(135479,3,41239,2,1672319409),(135480,3,41260,2,1672319409),(135481,3,41281,2,1672319409),(135482,3,41302,2,1672319409),(135483,3,41323,2,1672319409),(135484,3,41344,2,1672319409),(135485,3,41365,2,1672319409),(135486,3,41386,2,1672319409),(135487,3,41407,2,1672319409),(135488,3,41428,2,1672319409),(135489,3,41449,2,1672319409),(135490,3,41470,2,1672319409),(135491,3,41491,2,1672319409),(135492,3,41512,2,1672319409),(135493,3,41533,2,1672319409),(135494,3,41554,2,1672319409),(135495,3,41575,2,1672319409),(135496,3,41596,2,1672319409),(135497,3,41911,2,1672319409),(135498,3,41932,2,1672319409),(135499,3,41953,2,1672319409),(135500,3,41974,2,1672319409),(135501,3,41995,2,1672319409),(135502,3,42079,2,1672319409),(135503,3,23067,3,1672319409),(135504,3,27901,3,1672319409),(135505,3,27902,3,1672319409),(135506,3,27903,3,1672319409),(135507,3,28196,3,1672319409),(135508,3,28197,3,1672319409),(135509,3,28198,3,1672319409),(135510,3,28199,3,1672319409),(135511,3,29203,3,1672319409),(135512,3,31557,3,1672319409),(135513,3,31558,3,1672319409),(135514,3,31559,3,1672319409),(135515,3,31898,3,1672319409),(135516,3,32435,3,1672319409),(135517,3,32525,3,1672319409),(135518,3,32526,3,1672319409),(135519,3,32527,3,1672319409),(135520,3,32555,3,1672319409),(135521,3,32556,3,1672319409),(135522,3,32557,3,1672319409),(135523,3,33634,3,1672319409),(135524,3,34161,3,1672319409),(135525,3,34162,3,1672319409),(135526,3,34163,3,1672319409),(135527,3,36854,3,1672319409),(135528,3,36855,3,1672319409),(135529,3,36856,3,1672319409),(135530,3,36857,3,1672319409),(135531,3,36858,3,1672319409),(135532,3,36859,3,1672319409),(135533,3,36860,3,1672319409),(135534,3,36908,3,1672319409),(135535,3,36909,3,1672319409),(135536,3,36910,3,1672319409),(135537,3,36911,3,1672319409),(135538,3,36912,3,1672319409),(135539,3,36913,3,1672319409),(135540,3,36914,3,1672319409),(135541,3,36962,3,1672319409),(135542,3,36963,3,1672319409),(135543,3,36964,3,1672319409),(135544,3,36965,3,1672319409),(135545,3,36966,3,1672319409),(135546,3,36967,3,1672319409),(135547,3,36968,3,1672319409),(135548,3,37016,3,1672319409),(135549,3,37017,3,1672319409),(135550,3,37018,3,1672319409),(135551,3,37019,3,1672319409),(135552,3,37020,3,1672319409),(135553,3,37021,3,1672319409),(135554,3,37022,3,1672319409),(135555,3,37070,3,1672319409),(135556,3,37071,3,1672319409),(135557,3,37072,3,1672319409),(135558,3,37073,3,1672319409),(135559,3,37074,3,1672319409),(135560,3,37075,3,1672319409),(135561,3,37076,3,1672319409),(135562,3,37124,3,1672319409),(135563,3,37125,3,1672319409),(135564,3,37126,3,1672319409),(135565,3,37127,3,1672319409),(135566,3,37128,3,1672319409),(135567,3,37129,3,1672319409),(135568,3,37130,3,1672319409),(135569,3,37178,3,1672319409),(135570,3,37179,3,1672319409),(135571,3,37180,3,1672319409),(135572,3,37181,3,1672319409),(135573,3,37182,3,1672319409),(135574,3,37183,3,1672319409),(135575,3,37184,3,1672319409),(135576,3,37232,3,1672319409),(135577,3,37233,3,1672319409),(135578,3,37234,3,1672319409),(135579,3,37235,3,1672319409),(135580,3,37236,3,1672319409),(135581,3,37237,3,1672319409),(135582,3,37238,3,1672319409),(135583,3,37286,3,1672319409),(135584,3,37287,3,1672319409),(135585,3,37288,3,1672319409),(135586,3,37289,3,1672319409),(135587,3,37290,3,1672319409),(135588,3,37291,3,1672319409),(135589,3,37292,3,1672319409),(135590,3,37340,3,1672319409),(135591,3,37341,3,1672319409),(135592,3,37342,3,1672319409),(135593,3,37343,3,1672319409),(135594,3,37344,3,1672319409),(135595,3,37345,3,1672319409),(135596,3,37346,3,1672319409),(135597,3,37394,3,1672319409),(135598,3,37395,3,1672319409),(135599,3,37396,3,1672319409),(135600,3,37397,3,1672319409),(135601,3,37398,3,1672319409),(135602,3,37399,3,1672319409),(135603,3,37400,3,1672319409),(135604,3,37448,3,1672319409),(135605,3,37449,3,1672319409),(135606,3,37450,3,1672319409),(135607,3,37451,3,1672319409),(135608,3,37452,3,1672319409),(135609,3,37453,3,1672319409),(135610,3,37454,3,1672319409),(135611,3,37502,3,1672319409),(135612,3,37503,3,1672319409),(135613,3,37504,3,1672319409),(135614,3,37505,3,1672319409),(135615,3,37506,3,1672319409),(135616,3,37507,3,1672319409),(135617,3,37508,3,1672319409),(135618,3,37556,3,1672319409),(135619,3,37557,3,1672319409),(135620,3,37558,3,1672319409),(135621,3,37559,3,1672319409),(135622,3,37560,3,1672319409),(135623,3,37561,3,1672319409),(135624,3,37562,3,1672319409),(135625,3,37610,3,1672319409),(135626,3,37611,3,1672319409),(135627,3,37612,3,1672319409),(135628,3,37613,3,1672319409),(135629,3,37614,3,1672319409),(135630,3,37615,3,1672319409),(135631,3,37616,3,1672319409),(135632,3,37664,3,1672319409),(135633,3,37665,3,1672319409),(135634,3,37666,3,1672319409),(135635,3,37667,3,1672319409),(135636,3,37668,3,1672319409),(135637,3,37669,3,1672319409),(135638,3,37670,3,1672319409),(135639,3,37718,3,1672319409),(135640,3,37719,3,1672319409),(135641,3,37720,3,1672319409),(135642,3,37721,3,1672319409),(135643,3,37722,3,1672319409),(135644,3,37723,3,1672319409),(135645,3,37724,3,1672319409),(135646,3,37772,3,1672319409),(135647,3,37773,3,1672319409),(135648,3,37774,3,1672319409),(135649,3,37775,3,1672319409),(135650,3,37776,3,1672319409),(135651,3,37777,3,1672319409),(135652,3,37778,3,1672319409),(135653,3,37826,3,1672319409),(135654,3,37827,3,1672319409),(135655,3,37828,3,1672319409),(135656,3,37829,3,1672319409),(135657,3,37830,3,1672319409),(135658,3,37831,3,1672319409),(135659,3,37832,3,1672319409),(135660,3,37880,3,1672319409),(135661,3,37881,3,1672319409),(135662,3,37882,3,1672319409),(135663,3,37883,3,1672319409),(135664,3,37884,3,1672319409),(135665,3,37885,3,1672319409),(135666,3,37886,3,1672319409),(135667,3,37934,3,1672319409),(135668,3,37935,3,1672319409),(135669,3,37936,3,1672319409),(135670,3,37937,3,1672319409),(135671,3,37938,3,1672319409),(135672,3,37939,3,1672319409),(135673,3,37940,3,1672319409),(135674,3,37988,3,1672319409),(135675,3,37989,3,1672319409),(135676,3,37990,3,1672319409),(135677,3,37991,3,1672319409),(135678,3,37992,3,1672319409),(135679,3,37993,3,1672319409),(135680,3,37994,3,1672319409),(135681,3,38042,3,1672319409),(135682,3,38043,3,1672319409),(135683,3,38044,3,1672319409),(135684,3,38045,3,1672319409),(135685,3,38046,3,1672319409),(135686,3,38047,3,1672319409),(135687,3,38048,3,1672319409),(135688,3,38096,3,1672319409),(135689,3,38097,3,1672319409),(135690,3,38098,3,1672319409),(135691,3,38099,3,1672319409),(135692,3,38100,3,1672319409),(135693,3,38101,3,1672319409),(135694,3,38102,3,1672319409),(135695,3,38150,3,1672319409),(135696,3,38151,3,1672319409),(135697,3,38152,3,1672319409),(135698,3,38153,3,1672319409),(135699,3,38154,3,1672319409),(135700,3,38155,3,1672319409),(135701,3,38156,3,1672319409),(135702,3,38204,3,1672319409),(135703,3,38205,3,1672319409),(135704,3,38206,3,1672319409),(135705,3,38207,3,1672319409),(135706,3,38208,3,1672319409),(135707,3,38209,3,1672319409),(135708,3,38210,3,1672319409),(135709,3,38258,3,1672319409),(135710,3,38259,3,1672319409),(135711,3,38260,3,1672319409),(135712,3,38261,3,1672319409),(135713,3,38262,3,1672319409),(135714,3,38263,3,1672319409),(135715,3,38264,3,1672319409),(135716,3,38312,3,1672319409),(135717,3,38313,3,1672319409),(135718,3,38314,3,1672319409),(135719,3,38315,3,1672319409),(135720,3,38316,3,1672319409),(135721,3,38317,3,1672319409),(135722,3,38318,3,1672319409),(135723,3,38366,3,1672319409),(135724,3,38367,3,1672319409),(135725,3,38368,3,1672319409),(135726,3,38369,3,1672319409),(135727,3,38370,3,1672319409),(135728,3,38371,3,1672319409),(135729,3,38372,3,1672319409),(135730,3,38420,3,1672319409),(135731,3,38421,3,1672319409),(135732,3,38422,3,1672319409),(135733,3,38423,3,1672319409),(135734,3,38424,3,1672319409),(135735,3,38425,3,1672319409),(135736,3,38426,3,1672319409),(135737,3,38474,3,1672319409),(135738,3,38475,3,1672319409),(135739,3,38476,3,1672319409),(135740,3,38477,3,1672319409),(135741,3,38478,3,1672319409),(135742,3,38479,3,1672319409),(135743,3,38480,3,1672319409),(135744,3,38528,3,1672319409),(135745,3,38529,3,1672319409),(135746,3,38530,3,1672319409),(135747,3,38531,3,1672319409),(135748,3,38532,3,1672319409),(135749,3,38533,3,1672319409),(135750,3,38534,3,1672319409),(135751,3,39338,3,1672319409),(135752,3,39339,3,1672319409),(135753,3,39340,3,1672319409),(135754,3,39341,3,1672319409),(135755,3,39342,3,1672319409),(135756,3,39343,3,1672319409),(135757,3,39344,3,1672319409),(135758,3,39392,3,1672319409),(135759,3,39393,3,1672319409),(135760,3,39394,3,1672319409),(135761,3,39395,3,1672319409),(135762,3,39396,3,1672319409),(135763,3,39397,3,1672319409),(135764,3,39398,3,1672319409),(135765,3,39446,3,1672319409),(135766,3,39447,3,1672319409),(135767,3,39448,3,1672319409),(135768,3,39449,3,1672319409),(135769,3,39450,3,1672319409),(135770,3,39451,3,1672319409),(135771,3,39452,3,1672319409),(135772,3,39500,3,1672319409),(135773,3,39501,3,1672319409),(135774,3,39502,3,1672319409),(135775,3,39503,3,1672319409),(135776,3,39504,3,1672319409),(135777,3,39505,3,1672319409),(135778,3,39506,3,1672319409),(135779,3,39554,3,1672319409),(135780,3,39555,3,1672319409),(135781,3,39556,3,1672319409),(135782,3,39557,3,1672319409),(135783,3,39558,3,1672319409),(135784,3,39559,3,1672319409),(135785,3,39560,3,1672319409),(135786,3,40945,3,1672319409),(135787,3,40966,3,1672319409),(135788,3,40987,3,1672319409),(135789,3,41008,3,1672319409),(135790,3,41029,3,1672319409),(135791,3,41050,3,1672319409),(135792,3,41071,3,1672319409),(135793,3,41092,3,1672319409),(135794,3,41113,3,1672319409),(135795,3,41134,3,1672319409),(135796,3,41155,3,1672319409),(135797,3,41176,3,1672319409),(135798,3,41197,3,1672319409),(135799,3,41218,3,1672319409),(135800,3,41239,3,1672319409),(135801,3,41260,3,1672319409),(135802,3,41281,3,1672319409),(135803,3,41302,3,1672319409),(135804,3,41323,3,1672319409),(135805,3,41344,3,1672319409),(135806,3,41365,3,1672319409),(135807,3,41386,3,1672319409),(135808,3,41407,3,1672319409),(135809,3,41428,3,1672319409),(135810,3,41449,3,1672319409),(135811,3,41470,3,1672319409),(135812,3,41491,3,1672319409),(135813,3,41512,3,1672319409),(135814,3,41533,3,1672319409),(135815,3,41554,3,1672319409),(135816,3,41575,3,1672319409),(135817,3,41596,3,1672319409),(135818,3,41911,3,1672319409),(135819,3,41932,3,1672319409),(135820,3,41953,3,1672319409),(135821,3,41974,3,1672319409),(135822,3,41995,3,1672319409),(135823,3,42079,3,1672319409),(135824,3,23035,2,1672319409),(135825,3,23036,2,1672319409),(135826,3,23039,2,1672319409),(135827,3,23041,2,1672319409),(135828,3,23042,2,1672319409),(135829,3,23043,2,1672319409),(135830,3,23053,2,1672319409),(135831,3,23054,2,1672319409),(135832,3,23058,2,1672319409),(135833,3,23059,2,1672319409),(135834,3,23060,2,1672319409),(135835,3,23061,2,1672319409),(135836,3,23062,2,1672319409),(135837,3,23063,2,1672319409),(135838,3,23077,2,1672319409),(135839,3,23078,2,1672319409),(135840,3,27893,2,1672319409),(135841,3,27894,2,1672319409),(135842,3,27895,2,1672319409),(135843,3,27898,2,1672319409),(135844,3,27900,2,1672319409),(135845,3,28978,2,1672319409),(135846,3,28979,2,1672319409),(135847,3,28980,2,1672319409),(135848,3,28981,2,1672319409),(135849,3,28982,2,1672319409),(135850,3,28983,2,1672319409),(135851,3,28984,2,1672319409),(135852,3,28985,2,1672319409),(135853,3,28986,2,1672319409),(135854,3,29103,2,1672319409),(135855,3,29104,2,1672319409),(135856,3,29105,2,1672319409),(135857,3,29106,2,1672319409),(135858,3,29107,2,1672319409),(135859,3,29108,2,1672319409),(135860,3,30119,2,1672319409),(135861,3,30120,2,1672319409),(135862,3,30611,2,1672319409),(135863,3,30612,2,1672319409),(135864,3,30613,2,1672319409),(135865,3,30614,2,1672319409),(135866,3,30615,2,1672319409),(135867,3,30616,2,1672319409),(135868,3,30617,2,1672319409),(135869,3,30618,2,1672319409),(135870,3,30619,2,1672319409),(135871,3,30620,2,1672319409),(135872,3,30621,2,1672319409),(135873,3,30622,2,1672319409),(135874,3,30623,2,1672319409),(135875,3,30624,2,1672319409),(135876,3,30625,2,1672319409),(135877,3,30626,2,1672319409),(135878,3,30627,2,1672319409),(135879,3,30628,2,1672319409),(135880,3,30629,2,1672319409),(135881,3,30630,2,1672319409),(135882,3,30631,2,1672319409),(135883,3,30632,2,1672319409),(135884,3,30633,2,1672319409),(135885,3,30634,2,1672319409),(135886,3,30635,2,1672319409),(135887,3,30636,2,1672319409),(135888,3,31364,2,1672319409),(135889,3,31836,2,1672319409),(135890,3,31837,2,1672319409),(135891,3,31838,2,1672319409),(135892,3,31839,2,1672319409),(135893,3,31840,2,1672319409),(135894,3,31841,2,1672319409),(135895,3,31842,2,1672319409),(135896,3,31843,2,1672319409),(135897,3,31844,2,1672319409),(135898,3,31845,2,1672319409),(135899,3,31846,2,1672319409),(135900,3,31847,2,1672319409),(135901,3,31848,2,1672319409),(135902,3,31849,2,1672319409),(135903,3,31850,2,1672319409),(135904,3,31851,2,1672319409),(135905,3,31852,2,1672319409),(135906,3,31853,2,1672319409),(135907,3,31854,2,1672319409),(135908,3,31855,2,1672319409),(135909,3,31893,2,1672319409),(135910,3,32516,2,1672319409),(135911,3,32517,2,1672319409),(135912,3,32518,2,1672319409),(135913,3,32519,2,1672319409),(135914,3,32520,2,1672319409),(135915,3,32521,2,1672319409),(135916,3,32522,2,1672319409),(135917,3,32523,2,1672319409),(135918,3,32524,2,1672319409),(135919,3,32546,2,1672319409),(135920,3,32547,2,1672319409),(135921,3,32548,2,1672319409),(135922,3,32549,2,1672319409),(135923,3,32550,2,1672319409),(135924,3,32551,2,1672319409),(135925,3,32552,2,1672319409),(135926,3,32553,2,1672319409),(135927,3,32554,2,1672319409),(135928,3,33630,2,1672319409),(135929,3,33631,2,1672319409),(135930,3,33632,2,1672319409),(135931,3,33633,2,1672319409),(135932,3,34149,2,1672319409),(135933,3,34150,2,1672319409),(135934,3,34151,2,1672319409),(135935,3,34152,2,1672319409),(135936,3,34153,2,1672319409),(135937,3,34154,2,1672319409),(135938,3,34155,2,1672319409),(135939,3,34156,2,1672319409),(135940,3,34157,2,1672319409),(135941,3,34158,2,1672319409),(135942,3,34159,2,1672319409),(135943,3,34160,2,1672319409),(135944,3,36847,2,1672319409),(135945,3,36848,2,1672319409),(135946,3,36849,2,1672319409),(135947,3,36850,2,1672319409),(135948,3,36851,2,1672319409),(135949,3,36852,2,1672319409),(135950,3,36853,2,1672319409),(135951,3,36901,2,1672319409),(135952,3,36902,2,1672319409),(135953,3,36903,2,1672319409),(135954,3,36904,2,1672319409),(135955,3,36905,2,1672319409),(135956,3,36906,2,1672319409),(135957,3,36907,2,1672319409),(135958,3,36955,2,1672319409),(135959,3,36956,2,1672319409),(135960,3,36957,2,1672319409),(135961,3,36958,2,1672319409),(135962,3,36959,2,1672319409),(135963,3,36960,2,1672319409),(135964,3,36961,2,1672319409),(135965,3,37009,2,1672319409),(135966,3,37010,2,1672319409),(135967,3,37011,2,1672319409),(135968,3,37012,2,1672319409),(135969,3,37013,2,1672319409),(135970,3,37014,2,1672319409),(135971,3,37015,2,1672319409),(135972,3,37063,2,1672319409),(135973,3,37064,2,1672319409),(135974,3,37065,2,1672319409),(135975,3,37066,2,1672319409),(135976,3,37067,2,1672319409),(135977,3,37068,2,1672319409),(135978,3,37069,2,1672319409),(135979,3,37117,2,1672319409),(135980,3,37118,2,1672319409),(135981,3,37119,2,1672319409),(135982,3,37120,2,1672319409),(135983,3,37121,2,1672319409),(135984,3,37122,2,1672319409),(135985,3,37123,2,1672319409),(135986,3,37171,2,1672319409),(135987,3,37172,2,1672319409),(135988,3,37173,2,1672319409),(135989,3,37174,2,1672319409),(135990,3,37175,2,1672319409),(135991,3,37176,2,1672319409),(135992,3,37177,2,1672319409),(135993,3,37225,2,1672319409),(135994,3,37226,2,1672319409),(135995,3,37227,2,1672319409),(135996,3,37228,2,1672319409),(135997,3,37229,2,1672319409),(135998,3,37230,2,1672319409),(135999,3,37231,2,1672319409),(136000,3,37279,2,1672319409),(136001,3,37280,2,1672319409),(136002,3,37281,2,1672319409),(136003,3,37282,2,1672319409),(136004,3,37283,2,1672319409),(136005,3,37284,2,1672319409),(136006,3,37285,2,1672319409),(136007,3,37333,2,1672319409),(136008,3,37334,2,1672319409),(136009,3,37335,2,1672319409),(136010,3,37336,2,1672319409),(136011,3,37337,2,1672319409),(136012,3,37338,2,1672319409),(136013,3,37339,2,1672319409),(136014,3,37387,2,1672319409),(136015,3,37388,2,1672319409),(136016,3,37389,2,1672319409),(136017,3,37390,2,1672319409),(136018,3,37391,2,1672319409),(136019,3,37392,2,1672319409),(136020,3,37393,2,1672319409),(136021,3,37441,2,1672319409),(136022,3,37442,2,1672319409),(136023,3,37443,2,1672319409),(136024,3,37444,2,1672319409),(136025,3,37445,2,1672319409),(136026,3,37446,2,1672319409),(136027,3,37447,2,1672319409),(136028,3,37495,2,1672319409),(136029,3,37496,2,1672319409),(136030,3,37497,2,1672319409),(136031,3,37498,2,1672319409),(136032,3,37499,2,1672319409),(136033,3,37500,2,1672319409),(136034,3,37501,2,1672319409),(136035,3,37549,2,1672319409),(136036,3,37550,2,1672319409),(136037,3,37551,2,1672319409),(136038,3,37552,2,1672319409),(136039,3,37553,2,1672319409),(136040,3,37554,2,1672319409),(136041,3,37555,2,1672319409),(136042,3,37603,2,1672319409),(136043,3,37604,2,1672319409),(136044,3,37605,2,1672319409),(136045,3,37606,2,1672319409),(136046,3,37607,2,1672319409),(136047,3,37608,2,1672319409),(136048,3,37609,2,1672319409),(136049,3,37657,2,1672319409),(136050,3,37658,2,1672319409),(136051,3,37659,2,1672319409),(136052,3,37660,2,1672319409),(136053,3,37661,2,1672319409),(136054,3,37662,2,1672319409),(136055,3,37663,2,1672319409),(136056,3,37711,2,1672319409),(136057,3,37712,2,1672319409),(136058,3,37713,2,1672319409),(136059,3,37714,2,1672319409),(136060,3,37715,2,1672319409),(136061,3,37716,2,1672319409),(136062,3,37717,2,1672319409),(136063,3,37765,2,1672319409),(136064,3,37766,2,1672319409),(136065,3,37767,2,1672319409),(136066,3,37768,2,1672319409),(136067,3,37769,2,1672319409),(136068,3,37770,2,1672319409),(136069,3,37771,2,1672319409),(136070,3,37819,2,1672319409),(136071,3,37820,2,1672319409),(136072,3,37821,2,1672319409),(136073,3,37822,2,1672319409),(136074,3,37823,2,1672319409),(136075,3,37824,2,1672319409),(136076,3,37825,2,1672319409),(136077,3,37873,2,1672319409),(136078,3,37874,2,1672319409),(136079,3,37875,2,1672319409),(136080,3,37876,2,1672319409),(136081,3,37877,2,1672319409),(136082,3,37878,2,1672319409),(136083,3,37879,2,1672319409),(136084,3,37927,2,1672319409),(136085,3,37928,2,1672319409),(136086,3,37929,2,1672319409),(136087,3,37930,2,1672319409),(136088,3,37931,2,1672319409),(136089,3,37932,2,1672319409),(136090,3,37933,2,1672319409),(136091,3,37981,2,1672319409),(136092,3,37982,2,1672319409),(136093,3,37983,2,1672319409),(136094,3,37984,2,1672319409),(136095,3,37985,2,1672319409),(136096,3,37986,2,1672319409),(136097,3,37987,2,1672319409),(136098,3,38035,2,1672319409),(136099,3,38036,2,1672319409),(136100,3,38037,2,1672319409),(136101,3,38038,2,1672319409),(136102,3,38039,2,1672319409),(136103,3,38040,2,1672319409),(136104,3,38041,2,1672319409),(136105,3,38089,2,1672319409),(136106,3,38090,2,1672319409),(136107,3,38091,2,1672319409),(136108,3,38092,2,1672319409),(136109,3,38093,2,1672319409),(136110,3,38094,2,1672319409),(136111,3,38095,2,1672319409),(136112,3,38143,2,1672319409),(136113,3,38144,2,1672319409),(136114,3,38145,2,1672319409),(136115,3,38146,2,1672319409),(136116,3,38147,2,1672319409),(136117,3,38148,2,1672319409),(136118,3,38149,2,1672319409),(136119,3,38197,2,1672319409),(136120,3,38198,2,1672319409),(136121,3,38199,2,1672319409),(136122,3,38200,2,1672319409),(136123,3,38201,2,1672319409),(136124,3,38202,2,1672319409),(136125,3,38203,2,1672319409),(136126,3,38251,2,1672319409),(136127,3,38252,2,1672319409),(136128,3,38253,2,1672319409),(136129,3,38254,2,1672319409),(136130,3,38255,2,1672319409),(136131,3,38256,2,1672319409),(136132,3,38257,2,1672319409),(136133,3,38305,2,1672319409),(136134,3,38306,2,1672319409),(136135,3,38307,2,1672319409),(136136,3,38308,2,1672319409),(136137,3,38309,2,1672319409),(136138,3,38310,2,1672319409),(136139,3,38311,2,1672319409),(136140,3,38359,2,1672319409),(136141,3,38360,2,1672319409),(136142,3,38361,2,1672319409),(136143,3,38362,2,1672319409),(136144,3,38363,2,1672319409),(136145,3,38364,2,1672319409),(136146,3,38365,2,1672319409),(136147,3,38413,2,1672319409),(136148,3,38414,2,1672319409),(136149,3,38415,2,1672319409),(136150,3,38416,2,1672319409),(136151,3,38417,2,1672319409),(136152,3,38418,2,1672319409),(136153,3,38419,2,1672319409),(136154,3,38467,2,1672319409),(136155,3,38468,2,1672319409),(136156,3,38469,2,1672319409),(136157,3,38470,2,1672319409),(136158,3,38471,2,1672319409),(136159,3,38472,2,1672319409),(136160,3,38473,2,1672319409),(136161,3,38521,2,1672319409),(136162,3,38522,2,1672319409),(136163,3,38523,2,1672319409),(136164,3,38524,2,1672319409),(136165,3,38525,2,1672319409),(136166,3,38526,2,1672319409),(136167,3,38527,2,1672319409),(136168,3,39331,2,1672319409),(136169,3,39332,2,1672319409),(136170,3,39333,2,1672319409),(136171,3,39334,2,1672319409),(136172,3,39335,2,1672319409),(136173,3,39336,2,1672319409),(136174,3,39337,2,1672319409),(136175,3,39385,2,1672319409),(136176,3,39386,2,1672319409),(136177,3,39387,2,1672319409),(136178,3,39388,2,1672319409),(136179,3,39389,2,1672319409),(136180,3,39390,2,1672319409),(136181,3,39391,2,1672319409),(136182,3,39439,2,1672319409),(136183,3,39440,2,1672319409),(136184,3,39441,2,1672319409),(136185,3,39442,2,1672319409),(136186,3,39443,2,1672319409),(136187,3,39444,2,1672319409),(136188,3,39445,2,1672319409),(136189,3,39493,2,1672319409),(136190,3,39494,2,1672319409),(136191,3,39495,2,1672319409),(136192,3,39496,2,1672319409),(136193,3,39497,2,1672319409),(136194,3,39498,2,1672319409),(136195,3,39499,2,1672319409),(136196,3,39547,2,1672319409),(136197,3,39548,2,1672319409),(136198,3,39549,2,1672319409),(136199,3,39550,2,1672319409),(136200,3,39551,2,1672319409),(136201,3,39552,2,1672319409),(136202,3,39553,2,1672319409),(136203,3,40934,2,1672319409),(136204,3,40935,2,1672319409),(136205,3,40936,2,1672319409),(136206,3,40937,2,1672319409),(136207,3,40938,2,1672319409),(136208,3,40939,2,1672319409),(136209,3,40940,2,1672319409),(136210,3,40941,2,1672319409),(136211,3,40942,2,1672319409),(136212,3,40943,2,1672319409),(136213,3,40944,2,1672319409),(136214,3,40955,2,1672319409),(136215,3,40956,2,1672319409),(136216,3,40957,2,1672319409),(136217,3,40958,2,1672319409),(136218,3,40959,2,1672319409),(136219,3,40960,2,1672319409),(136220,3,40961,2,1672319409),(136221,3,40962,2,1672319409),(136222,3,40963,2,1672319409),(136223,3,40964,2,1672319409),(136224,3,40965,2,1672319409),(136225,3,40976,2,1672319409),(136226,3,40977,2,1672319409),(136227,3,40978,2,1672319409),(136228,3,40979,2,1672319409),(136229,3,40980,2,1672319409),(136230,3,40981,2,1672319409),(136231,3,40982,2,1672319409),(136232,3,40983,2,1672319409),(136233,3,40984,2,1672319409),(136234,3,40985,2,1672319409),(136235,3,40986,2,1672319409),(136236,3,40997,2,1672319409),(136237,3,40998,2,1672319409),(136238,3,40999,2,1672319409),(136239,3,41000,2,1672319409),(136240,3,41001,2,1672319409),(136241,3,41002,2,1672319409),(136242,3,41003,2,1672319409),(136243,3,41004,2,1672319409),(136244,3,41005,2,1672319409),(136245,3,41006,2,1672319409),(136246,3,41007,2,1672319409),(136247,3,41018,2,1672319409),(136248,3,41019,2,1672319409),(136249,3,41020,2,1672319409),(136250,3,41021,2,1672319409),(136251,3,41022,2,1672319409),(136252,3,41023,2,1672319409),(136253,3,41024,2,1672319409),(136254,3,41025,2,1672319409),(136255,3,41026,2,1672319409),(136256,3,41027,2,1672319409),(136257,3,41028,2,1672319409),(136258,3,41039,2,1672319409),(136259,3,41040,2,1672319409),(136260,3,41041,2,1672319409),(136261,3,41042,2,1672319409),(136262,3,41043,2,1672319409),(136263,3,41044,2,1672319409),(136264,3,41045,2,1672319409),(136265,3,41046,2,1672319409),(136266,3,41047,2,1672319409),(136267,3,41048,2,1672319409),(136268,3,41049,2,1672319409),(136269,3,41060,2,1672319409),(136270,3,41061,2,1672319409),(136271,3,41062,2,1672319409),(136272,3,41063,2,1672319409),(136273,3,41064,2,1672319409),(136274,3,41065,2,1672319409),(136275,3,41066,2,1672319409),(136276,3,41067,2,1672319409),(136277,3,41068,2,1672319409),(136278,3,41069,2,1672319409),(136279,3,41070,2,1672319409),(136280,3,41081,2,1672319409),(136281,3,41082,2,1672319409),(136282,3,41083,2,1672319409),(136283,3,41084,2,1672319409),(136284,3,41085,2,1672319409),(136285,3,41086,2,1672319409),(136286,3,41087,2,1672319409),(136287,3,41088,2,1672319409),(136288,3,41089,2,1672319409),(136289,3,41090,2,1672319409),(136290,3,41091,2,1672319409),(136291,3,41102,2,1672319409),(136292,3,41103,2,1672319409),(136293,3,41104,2,1672319409),(136294,3,41105,2,1672319409),(136295,3,41106,2,1672319409),(136296,3,41107,2,1672319409),(136297,3,41108,2,1672319409),(136298,3,41109,2,1672319409),(136299,3,41110,2,1672319409),(136300,3,41111,2,1672319409),(136301,3,41112,2,1672319409),(136302,3,41123,2,1672319409),(136303,3,41124,2,1672319409),(136304,3,41125,2,1672319409),(136305,3,41126,2,1672319409),(136306,3,41127,2,1672319409),(136307,3,41128,2,1672319409),(136308,3,41129,2,1672319409),(136309,3,41130,2,1672319409),(136310,3,41131,2,1672319409),(136311,3,41132,2,1672319409),(136312,3,41133,2,1672319409),(136313,3,41144,2,1672319409),(136314,3,41145,2,1672319409),(136315,3,41146,2,1672319409),(136316,3,41147,2,1672319409),(136317,3,41148,2,1672319409),(136318,3,41149,2,1672319409),(136319,3,41150,2,1672319409),(136320,3,41151,2,1672319409),(136321,3,41152,2,1672319409),(136322,3,41153,2,1672319409),(136323,3,41154,2,1672319409),(136324,3,41165,2,1672319409),(136325,3,41166,2,1672319409),(136326,3,41167,2,1672319409),(136327,3,41168,2,1672319409),(136328,3,41169,2,1672319409),(136329,3,41170,2,1672319409),(136330,3,41171,2,1672319409),(136331,3,41172,2,1672319409),(136332,3,41173,2,1672319409),(136333,3,41174,2,1672319409),(136334,3,41175,2,1672319409),(136335,3,41186,2,1672319409),(136336,3,41187,2,1672319409),(136337,3,41188,2,1672319409),(136338,3,41189,2,1672319409),(136339,3,41190,2,1672319409),(136340,3,41191,2,1672319409),(136341,3,41192,2,1672319409),(136342,3,41193,2,1672319409),(136343,3,41194,2,1672319409),(136344,3,41195,2,1672319409),(136345,3,41196,2,1672319409),(136346,3,41207,2,1672319409),(136347,3,41208,2,1672319409),(136348,3,41209,2,1672319409),(136349,3,41210,2,1672319409),(136350,3,41211,2,1672319409),(136351,3,41212,2,1672319409),(136352,3,41213,2,1672319409),(136353,3,41214,2,1672319409),(136354,3,41215,2,1672319409),(136355,3,41216,2,1672319409),(136356,3,41217,2,1672319409),(136357,3,41228,2,1672319409),(136358,3,41229,2,1672319409),(136359,3,41230,2,1672319409),(136360,3,41231,2,1672319409),(136361,3,41232,2,1672319409),(136362,3,41233,2,1672319409),(136363,3,41234,2,1672319409),(136364,3,41235,2,1672319409),(136365,3,41236,2,1672319409),(136366,3,41237,2,1672319409),(136367,3,41238,2,1672319409),(136368,3,41249,2,1672319409),(136369,3,41250,2,1672319409),(136370,3,41251,2,1672319409),(136371,3,41252,2,1672319409),(136372,3,41253,2,1672319409),(136373,3,41254,2,1672319409),(136374,3,41255,2,1672319409),(136375,3,41256,2,1672319409),(136376,3,41257,2,1672319409),(136377,3,41258,2,1672319409),(136378,3,41259,2,1672319409),(136379,3,41270,2,1672319409),(136380,3,41271,2,1672319409),(136381,3,41272,2,1672319409),(136382,3,41273,2,1672319409),(136383,3,41274,2,1672319409),(136384,3,41275,2,1672319409),(136385,3,41276,2,1672319409),(136386,3,41277,2,1672319409),(136387,3,41278,2,1672319409),(136388,3,41279,2,1672319409),(136389,3,41280,2,1672319409),(136390,3,41291,2,1672319409),(136391,3,41292,2,1672319409),(136392,3,41293,2,1672319409),(136393,3,41294,2,1672319409),(136394,3,41295,2,1672319409),(136395,3,41296,2,1672319409),(136396,3,41297,2,1672319409),(136397,3,41298,2,1672319409),(136398,3,41299,2,1672319409),(136399,3,41300,2,1672319409),(136400,3,41301,2,1672319409),(136401,3,41312,2,1672319409),(136402,3,41313,2,1672319409),(136403,3,41314,2,1672319409),(136404,3,41315,2,1672319409),(136405,3,41316,2,1672319409),(136406,3,41317,2,1672319409),(136407,3,41318,2,1672319409),(136408,3,41319,2,1672319409),(136409,3,41320,2,1672319409),(136410,3,41321,2,1672319409),(136411,3,41322,2,1672319409),(136412,3,41333,2,1672319409),(136413,3,41334,2,1672319409),(136414,3,41335,2,1672319409),(136415,3,41336,2,1672319409),(136416,3,41337,2,1672319409),(136417,3,41338,2,1672319409),(136418,3,41339,2,1672319409),(136419,3,41340,2,1672319409),(136420,3,41341,2,1672319409),(136421,3,41342,2,1672319409),(136422,3,41343,2,1672319409),(136423,3,41354,2,1672319409),(136424,3,41355,2,1672319409),(136425,3,41356,2,1672319409),(136426,3,41357,2,1672319409),(136427,3,41358,2,1672319409),(136428,3,41359,2,1672319409),(136429,3,41360,2,1672319409),(136430,3,41361,2,1672319409),(136431,3,41362,2,1672319409),(136432,3,41363,2,1672319409),(136433,3,41364,2,1672319409),(136434,3,41375,2,1672319409),(136435,3,41376,2,1672319409),(136436,3,41377,2,1672319409),(136437,3,41378,2,1672319409),(136438,3,41379,2,1672319409),(136439,3,41380,2,1672319409),(136440,3,41381,2,1672319409),(136441,3,41382,2,1672319409),(136442,3,41383,2,1672319409),(136443,3,41384,2,1672319409),(136444,3,41385,2,1672319409),(136445,3,41396,2,1672319409),(136446,3,41397,2,1672319409),(136447,3,41398,2,1672319409),(136448,3,41399,2,1672319409),(136449,3,41400,2,1672319409),(136450,3,41401,2,1672319409),(136451,3,41402,2,1672319409),(136452,3,41403,2,1672319409),(136453,3,41404,2,1672319409),(136454,3,41405,2,1672319409),(136455,3,41406,2,1672319409),(136456,3,41417,2,1672319409),(136457,3,41418,2,1672319409),(136458,3,41419,2,1672319409),(136459,3,41420,2,1672319409),(136460,3,41421,2,1672319409),(136461,3,41422,2,1672319409),(136462,3,41423,2,1672319409),(136463,3,41424,2,1672319409),(136464,3,41425,2,1672319409),(136465,3,41426,2,1672319409),(136466,3,41427,2,1672319409),(136467,3,41438,2,1672319409),(136468,3,41439,2,1672319409),(136469,3,41440,2,1672319409),(136470,3,41441,2,1672319409),(136471,3,41442,2,1672319409),(136472,3,41443,2,1672319409),(136473,3,41444,2,1672319409),(136474,3,41445,2,1672319409),(136475,3,41446,2,1672319409),(136476,3,41447,2,1672319409),(136477,3,41448,2,1672319409),(136478,3,41459,2,1672319409),(136479,3,41460,2,1672319409),(136480,3,41461,2,1672319409),(136481,3,41462,2,1672319409),(136482,3,41463,2,1672319409),(136483,3,41464,2,1672319409),(136484,3,41465,2,1672319409),(136485,3,41466,2,1672319409),(136486,3,41467,2,1672319409),(136487,3,41468,2,1672319409),(136488,3,41469,2,1672319409),(136489,3,41480,2,1672319409),(136490,3,41481,2,1672319409),(136491,3,41482,2,1672319409),(136492,3,41483,2,1672319409),(136493,3,41484,2,1672319409),(136494,3,41485,2,1672319409),(136495,3,41486,2,1672319409),(136496,3,41487,2,1672319409),(136497,3,41488,2,1672319409),(136498,3,41489,2,1672319409),(136499,3,41490,2,1672319409),(136500,3,41501,2,1672319409),(136501,3,41502,2,1672319409),(136502,3,41503,2,1672319409),(136503,3,41504,2,1672319409),(136504,3,41505,2,1672319409),(136505,3,41506,2,1672319409),(136506,3,41507,2,1672319409),(136507,3,41508,2,1672319409),(136508,3,41509,2,1672319409),(136509,3,41510,2,1672319409),(136510,3,41511,2,1672319409),(136511,3,41522,2,1672319409),(136512,3,41523,2,1672319409),(136513,3,41524,2,1672319409),(136514,3,41525,2,1672319409),(136515,3,41526,2,1672319409),(136516,3,41527,2,1672319409),(136517,3,41528,2,1672319409),(136518,3,41529,2,1672319409),(136519,3,41530,2,1672319409),(136520,3,41531,2,1672319409),(136521,3,41532,2,1672319409),(136522,3,41543,2,1672319409),(136523,3,41544,2,1672319409),(136524,3,41545,2,1672319409),(136525,3,41546,2,1672319409),(136526,3,41547,2,1672319409),(136527,3,41548,2,1672319409),(136528,3,41549,2,1672319409),(136529,3,41550,2,1672319409),(136530,3,41551,2,1672319409),(136531,3,41552,2,1672319409),(136532,3,41553,2,1672319409),(136533,3,41564,2,1672319409),(136534,3,41565,2,1672319409),(136535,3,41566,2,1672319409),(136536,3,41567,2,1672319409),(136537,3,41568,2,1672319409),(136538,3,41569,2,1672319409),(136539,3,41570,2,1672319409),(136540,3,41571,2,1672319409),(136541,3,41572,2,1672319409),(136542,3,41573,2,1672319409),(136543,3,41574,2,1672319409),(136544,3,41585,2,1672319409),(136545,3,41586,2,1672319409),(136546,3,41587,2,1672319409),(136547,3,41588,2,1672319409),(136548,3,41589,2,1672319409),(136549,3,41590,2,1672319409),(136550,3,41591,2,1672319409),(136551,3,41592,2,1672319409),(136552,3,41593,2,1672319409),(136553,3,41594,2,1672319409),(136554,3,41595,2,1672319409),(136555,3,41900,2,1672319409),(136556,3,41901,2,1672319409),(136557,3,41902,2,1672319409),(136558,3,41903,2,1672319409),(136559,3,41904,2,1672319409),(136560,3,41905,2,1672319409),(136561,3,41906,2,1672319409),(136562,3,41907,2,1672319409),(136563,3,41908,2,1672319409),(136564,3,41909,2,1672319409),(136565,3,41910,2,1672319409),(136566,3,41921,2,1672319409),(136567,3,41922,2,1672319409),(136568,3,41923,2,1672319409),(136569,3,41924,2,1672319409),(136570,3,41925,2,1672319409),(136571,3,41926,2,1672319409),(136572,3,41927,2,1672319409),(136573,3,41928,2,1672319409),(136574,3,41929,2,1672319409),(136575,3,41930,2,1672319409),(136576,3,41931,2,1672319409),(136577,3,41942,2,1672319409),(136578,3,41943,2,1672319409),(136579,3,41944,2,1672319409),(136580,3,41945,2,1672319409),(136581,3,41946,2,1672319409),(136582,3,41947,2,1672319409),(136583,3,41948,2,1672319409),(136584,3,41949,2,1672319409),(136585,3,41950,2,1672319409),(136586,3,41951,2,1672319409),(136587,3,41952,2,1672319409),(136588,3,41963,2,1672319409),(136589,3,41964,2,1672319409),(136590,3,41965,2,1672319409),(136591,3,41966,2,1672319409),(136592,3,41967,2,1672319409),(136593,3,41968,2,1672319409),(136594,3,41969,2,1672319409),(136595,3,41970,2,1672319409),(136596,3,41971,2,1672319409),(136597,3,41972,2,1672319409),(136598,3,41973,2,1672319409),(136599,3,41984,2,1672319409),(136600,3,41985,2,1672319409),(136601,3,41986,2,1672319409),(136602,3,41987,2,1672319409),(136603,3,41988,2,1672319409),(136604,3,41989,2,1672319409),(136605,3,41990,2,1672319409),(136606,3,41991,2,1672319409),(136607,3,41992,2,1672319409),(136608,3,41993,2,1672319409),(136609,3,41994,2,1672319409),(136610,3,42068,2,1672319409),(136611,3,42069,2,1672319409),(136612,3,42070,2,1672319409),(136613,3,42071,2,1672319409),(136614,3,42072,2,1672319409),(136615,3,42073,2,1672319409),(136616,3,42074,2,1672319409),(136617,3,42075,2,1672319409),(136618,3,42076,2,1672319409),(136619,3,42077,2,1672319409),(136620,3,42078,2,1672319409),(136621,3,42443,2,1672319409),(136622,3,42444,2,1672319409),(136623,3,42445,2,1672319409),(136624,3,42446,2,1672319409),(136625,3,43077,2,1672319409),(136626,3,43793,2,1672319409),(136627,3,43794,2,1672319409),(136628,3,43795,2,1672319409),(136629,3,43796,2,1672319409),(136630,3,43797,2,1672319409),(136631,3,43798,2,1672319409),(136632,3,43799,2,1672319409),(136633,3,43800,2,1672319409),(136634,3,43801,2,1672319409),(136635,3,43802,2,1672319409),(136636,3,43803,2,1672319409),(136637,3,43804,2,1672319409),(136638,3,43805,2,1672319409),(136639,3,43806,2,1672319409),(136640,3,43807,2,1672319409),(136641,3,43808,2,1672319409),(136642,3,43809,2,1672319409),(136643,3,43810,2,1672319409),(136644,3,43811,2,1672319409),(136645,3,43812,2,1672319409),(136646,3,43813,2,1672319409),(136647,3,43814,2,1672319409),(136648,3,43815,2,1672319409),(136649,3,43816,2,1672319409),(136650,3,43817,2,1672319409),(136651,3,43818,2,1672319409),(136652,3,43819,2,1672319409),(136653,3,43820,2,1672319409),(136654,3,43821,2,1672319409),(136655,3,43822,2,1672319409),(136656,3,43823,2,1672319409),(136657,3,43824,2,1672319409),(136658,3,43825,2,1672319409),(136659,3,43840,2,1672319409),(136660,3,43841,2,1672319409),(136661,3,43842,2,1672319409),(136662,3,43843,2,1672319409),(136663,3,43844,2,1672319409),(136664,3,43848,2,1672319409),(136665,3,44445,2,1672319409),(136666,3,23035,3,1672319409),(136667,3,23036,3,1672319409),(136668,3,23039,3,1672319409),(136669,3,23041,3,1672319409),(136670,3,23042,3,1672319409),(136671,3,23043,3,1672319409),(136672,3,23053,3,1672319409),(136673,3,23054,3,1672319409),(136674,3,23058,3,1672319409),(136675,3,23059,3,1672319409),(136676,3,23060,3,1672319409),(136677,3,23061,3,1672319409),(136678,3,23062,3,1672319409),(136679,3,23063,3,1672319409),(136680,3,23077,3,1672319409),(136681,3,23078,3,1672319409),(136682,3,27893,3,1672319409),(136683,3,27894,3,1672319409),(136684,3,27895,3,1672319409),(136685,3,27898,3,1672319409),(136686,3,27900,3,1672319409),(136687,3,28978,3,1672319409),(136688,3,28979,3,1672319409),(136689,3,28980,3,1672319409),(136690,3,28981,3,1672319409),(136691,3,28982,3,1672319409),(136692,3,28983,3,1672319409),(136693,3,28984,3,1672319409),(136694,3,28985,3,1672319409),(136695,3,28986,3,1672319409),(136696,3,29103,3,1672319409),(136697,3,29104,3,1672319409),(136698,3,29105,3,1672319409),(136699,3,29106,3,1672319409),(136700,3,29107,3,1672319409),(136701,3,29108,3,1672319409),(136702,3,30119,3,1672319409),(136703,3,30120,3,1672319409),(136704,3,30611,3,1672319409),(136705,3,30612,3,1672319409),(136706,3,30613,3,1672319409),(136707,3,30614,3,1672319409),(136708,3,30615,3,1672319409),(136709,3,30616,3,1672319409),(136710,3,30617,3,1672319409),(136711,3,30618,3,1672319409),(136712,3,30619,3,1672319409),(136713,3,30620,3,1672319409),(136714,3,30621,3,1672319409),(136715,3,30622,3,1672319409),(136716,3,30623,3,1672319409),(136717,3,30624,3,1672319409),(136718,3,30625,3,1672319409),(136719,3,30626,3,1672319409),(136720,3,30627,3,1672319409),(136721,3,30628,3,1672319409),(136722,3,30629,3,1672319409),(136723,3,30630,3,1672319409),(136724,3,30631,3,1672319409),(136725,3,30632,3,1672319409),(136726,3,30633,3,1672319409),(136727,3,30634,3,1672319409),(136728,3,30635,3,1672319409),(136729,3,30636,3,1672319409),(136730,3,31364,3,1672319409),(136731,3,31836,3,1672319409),(136732,3,31837,3,1672319409),(136733,3,31838,3,1672319409),(136734,3,31839,3,1672319409),(136735,3,31840,3,1672319409),(136736,3,31841,3,1672319409),(136737,3,31842,3,1672319409),(136738,3,31843,3,1672319409),(136739,3,31844,3,1672319409),(136740,3,31845,3,1672319409),(136741,3,31846,3,1672319409),(136742,3,31847,3,1672319409),(136743,3,31848,3,1672319409),(136744,3,31849,3,1672319409),(136745,3,31850,3,1672319409),(136746,3,31851,3,1672319409),(136747,3,31852,3,1672319409),(136748,3,31853,3,1672319409),(136749,3,31854,3,1672319409),(136750,3,31855,3,1672319409),(136751,3,31893,3,1672319409),(136752,3,32516,3,1672319409),(136753,3,32517,3,1672319409),(136754,3,32518,3,1672319409),(136755,3,32519,3,1672319409),(136756,3,32520,3,1672319409),(136757,3,32521,3,1672319409),(136758,3,32522,3,1672319409),(136759,3,32523,3,1672319409),(136760,3,32524,3,1672319409),(136761,3,32546,3,1672319409),(136762,3,32547,3,1672319409),(136763,3,32548,3,1672319409),(136764,3,32549,3,1672319409),(136765,3,32550,3,1672319409),(136766,3,32551,3,1672319409),(136767,3,32552,3,1672319409),(136768,3,32553,3,1672319409),(136769,3,32554,3,1672319409),(136770,3,33630,3,1672319409),(136771,3,33631,3,1672319409),(136772,3,33632,3,1672319409),(136773,3,33633,3,1672319409),(136774,3,34149,3,1672319409),(136775,3,34150,3,1672319409),(136776,3,34151,3,1672319409),(136777,3,34152,3,1672319409),(136778,3,34153,3,1672319409),(136779,3,34154,3,1672319409),(136780,3,34155,3,1672319409),(136781,3,34156,3,1672319409),(136782,3,34157,3,1672319409),(136783,3,34158,3,1672319409),(136784,3,34159,3,1672319409),(136785,3,34160,3,1672319409),(136786,3,36847,3,1672319409),(136787,3,36848,3,1672319409),(136788,3,36849,3,1672319409),(136789,3,36850,3,1672319409),(136790,3,36851,3,1672319409),(136791,3,36852,3,1672319409),(136792,3,36853,3,1672319409),(136793,3,36901,3,1672319409),(136794,3,36902,3,1672319409),(136795,3,36903,3,1672319409),(136796,3,36904,3,1672319409),(136797,3,36905,3,1672319409),(136798,3,36906,3,1672319409),(136799,3,36907,3,1672319409),(136800,3,36955,3,1672319409),(136801,3,36956,3,1672319409),(136802,3,36957,3,1672319409),(136803,3,36958,3,1672319409),(136804,3,36959,3,1672319409),(136805,3,36960,3,1672319409),(136806,3,36961,3,1672319409),(136807,3,37009,3,1672319409),(136808,3,37010,3,1672319409),(136809,3,37011,3,1672319409),(136810,3,37012,3,1672319409),(136811,3,37013,3,1672319409),(136812,3,37014,3,1672319409),(136813,3,37015,3,1672319409),(136814,3,37063,3,1672319409),(136815,3,37064,3,1672319409),(136816,3,37065,3,1672319409),(136817,3,37066,3,1672319409),(136818,3,37067,3,1672319409),(136819,3,37068,3,1672319409),(136820,3,37069,3,1672319409),(136821,3,37117,3,1672319409),(136822,3,37118,3,1672319409),(136823,3,37119,3,1672319409),(136824,3,37120,3,1672319409),(136825,3,37121,3,1672319409),(136826,3,37122,3,1672319409),(136827,3,37123,3,1672319409),(136828,3,37171,3,1672319409),(136829,3,37172,3,1672319409),(136830,3,37173,3,1672319409),(136831,3,37174,3,1672319409),(136832,3,37175,3,1672319409),(136833,3,37176,3,1672319409),(136834,3,37177,3,1672319409),(136835,3,37225,3,1672319409),(136836,3,37226,3,1672319409),(136837,3,37227,3,1672319409),(136838,3,37228,3,1672319409),(136839,3,37229,3,1672319409),(136840,3,37230,3,1672319409),(136841,3,37231,3,1672319409),(136842,3,37279,3,1672319409),(136843,3,37280,3,1672319409),(136844,3,37281,3,1672319409),(136845,3,37282,3,1672319409),(136846,3,37283,3,1672319409),(136847,3,37284,3,1672319409),(136848,3,37285,3,1672319409),(136849,3,37333,3,1672319409),(136850,3,37334,3,1672319409),(136851,3,37335,3,1672319409),(136852,3,37336,3,1672319409),(136853,3,37337,3,1672319409),(136854,3,37338,3,1672319409),(136855,3,37339,3,1672319409),(136856,3,37387,3,1672319409),(136857,3,37388,3,1672319409),(136858,3,37389,3,1672319409),(136859,3,37390,3,1672319409),(136860,3,37391,3,1672319409),(136861,3,37392,3,1672319409),(136862,3,37393,3,1672319409),(136863,3,37441,3,1672319409),(136864,3,37442,3,1672319409),(136865,3,37443,3,1672319409),(136866,3,37444,3,1672319409),(136867,3,37445,3,1672319409),(136868,3,37446,3,1672319409),(136869,3,37447,3,1672319409),(136870,3,37495,3,1672319409),(136871,3,37496,3,1672319409),(136872,3,37497,3,1672319409),(136873,3,37498,3,1672319409),(136874,3,37499,3,1672319409),(136875,3,37500,3,1672319409),(136876,3,37501,3,1672319409),(136877,3,37549,3,1672319409),(136878,3,37550,3,1672319409),(136879,3,37551,3,1672319409),(136880,3,37552,3,1672319409),(136881,3,37553,3,1672319409),(136882,3,37554,3,1672319409),(136883,3,37555,3,1672319409),(136884,3,37603,3,1672319409),(136885,3,37604,3,1672319409),(136886,3,37605,3,1672319409),(136887,3,37606,3,1672319409),(136888,3,37607,3,1672319409),(136889,3,37608,3,1672319409),(136890,3,37609,3,1672319409),(136891,3,37657,3,1672319409),(136892,3,37658,3,1672319409),(136893,3,37659,3,1672319409),(136894,3,37660,3,1672319409),(136895,3,37661,3,1672319409),(136896,3,37662,3,1672319409),(136897,3,37663,3,1672319409),(136898,3,37711,3,1672319409),(136899,3,37712,3,1672319409),(136900,3,37713,3,1672319409),(136901,3,37714,3,1672319409),(136902,3,37715,3,1672319409),(136903,3,37716,3,1672319409),(136904,3,37717,3,1672319409),(136905,3,37765,3,1672319409),(136906,3,37766,3,1672319409),(136907,3,37767,3,1672319409),(136908,3,37768,3,1672319409),(136909,3,37769,3,1672319409),(136910,3,37770,3,1672319409),(136911,3,37771,3,1672319409),(136912,3,37819,3,1672319409),(136913,3,37820,3,1672319409),(136914,3,37821,3,1672319409),(136915,3,37822,3,1672319409),(136916,3,37823,3,1672319409),(136917,3,37824,3,1672319409),(136918,3,37825,3,1672319409),(136919,3,37873,3,1672319409),(136920,3,37874,3,1672319409),(136921,3,37875,3,1672319409),(136922,3,37876,3,1672319409),(136923,3,37877,3,1672319409),(136924,3,37878,3,1672319409),(136925,3,37879,3,1672319409),(136926,3,37927,3,1672319409),(136927,3,37928,3,1672319409),(136928,3,37929,3,1672319409),(136929,3,37930,3,1672319409),(136930,3,37931,3,1672319409),(136931,3,37932,3,1672319409),(136932,3,37933,3,1672319409),(136933,3,37981,3,1672319409),(136934,3,37982,3,1672319409),(136935,3,37983,3,1672319409),(136936,3,37984,3,1672319409),(136937,3,37985,3,1672319409),(136938,3,37986,3,1672319409),(136939,3,37987,3,1672319409),(136940,3,38035,3,1672319409),(136941,3,38036,3,1672319409),(136942,3,38037,3,1672319409),(136943,3,38038,3,1672319409),(136944,3,38039,3,1672319409),(136945,3,38040,3,1672319409),(136946,3,38041,3,1672319409),(136947,3,38089,3,1672319409),(136948,3,38090,3,1672319409),(136949,3,38091,3,1672319409),(136950,3,38092,3,1672319409),(136951,3,38093,3,1672319409),(136952,3,38094,3,1672319409),(136953,3,38095,3,1672319409),(136954,3,38143,3,1672319409),(136955,3,38144,3,1672319409),(136956,3,38145,3,1672319409),(136957,3,38146,3,1672319409),(136958,3,38147,3,1672319409),(136959,3,38148,3,1672319409),(136960,3,38149,3,1672319409),(136961,3,38197,3,1672319409),(136962,3,38198,3,1672319409),(136963,3,38199,3,1672319409),(136964,3,38200,3,1672319409),(136965,3,38201,3,1672319409),(136966,3,38202,3,1672319409),(136967,3,38203,3,1672319409),(136968,3,38251,3,1672319409),(136969,3,38252,3,1672319409),(136970,3,38253,3,1672319409),(136971,3,38254,3,1672319409),(136972,3,38255,3,1672319409),(136973,3,38256,3,1672319409),(136974,3,38257,3,1672319409),(136975,3,38305,3,1672319409),(136976,3,38306,3,1672319409),(136977,3,38307,3,1672319409),(136978,3,38308,3,1672319409),(136979,3,38309,3,1672319409),(136980,3,38310,3,1672319409),(136981,3,38311,3,1672319409),(136982,3,38359,3,1672319409),(136983,3,38360,3,1672319409),(136984,3,38361,3,1672319409),(136985,3,38362,3,1672319409),(136986,3,38363,3,1672319409),(136987,3,38364,3,1672319409),(136988,3,38365,3,1672319409),(136989,3,38413,3,1672319409),(136990,3,38414,3,1672319409),(136991,3,38415,3,1672319409),(136992,3,38416,3,1672319409),(136993,3,38417,3,1672319409),(136994,3,38418,3,1672319409),(136995,3,38419,3,1672319409),(136996,3,38467,3,1672319409),(136997,3,38468,3,1672319409),(136998,3,38469,3,1672319409),(136999,3,38470,3,1672319409),(137000,3,38471,3,1672319409),(137001,3,38472,3,1672319409),(137002,3,38473,3,1672319409),(137003,3,38521,3,1672319409),(137004,3,38522,3,1672319409),(137005,3,38523,3,1672319409),(137006,3,38524,3,1672319409),(137007,3,38525,3,1672319409),(137008,3,38526,3,1672319409),(137009,3,38527,3,1672319409),(137010,3,39331,3,1672319409),(137011,3,39332,3,1672319409),(137012,3,39333,3,1672319409),(137013,3,39334,3,1672319409),(137014,3,39335,3,1672319409),(137015,3,39336,3,1672319409),(137016,3,39337,3,1672319409),(137017,3,39385,3,1672319409),(137018,3,39386,3,1672319409),(137019,3,39387,3,1672319409),(137020,3,39388,3,1672319409),(137021,3,39389,3,1672319409),(137022,3,39390,3,1672319409),(137023,3,39391,3,1672319409),(137024,3,39439,3,1672319409),(137025,3,39440,3,1672319409),(137026,3,39441,3,1672319409),(137027,3,39442,3,1672319409),(137028,3,39443,3,1672319409),(137029,3,39444,3,1672319409),(137030,3,39445,3,1672319409),(137031,3,39493,3,1672319409),(137032,3,39494,3,1672319409),(137033,3,39495,3,1672319409),(137034,3,39496,3,1672319409),(137035,3,39497,3,1672319409),(137036,3,39498,3,1672319409),(137037,3,39499,3,1672319409),(137038,3,39547,3,1672319409),(137039,3,39548,3,1672319409),(137040,3,39549,3,1672319409),(137041,3,39550,3,1672319409),(137042,3,39551,3,1672319409),(137043,3,39552,3,1672319409),(137044,3,39553,3,1672319409),(137045,3,40934,3,1672319409),(137046,3,40935,3,1672319409),(137047,3,40936,3,1672319409),(137048,3,40937,3,1672319409),(137049,3,40938,3,1672319409),(137050,3,40939,3,1672319409),(137051,3,40940,3,1672319409),(137052,3,40941,3,1672319409),(137053,3,40942,3,1672319409),(137054,3,40943,3,1672319409),(137055,3,40944,3,1672319409),(137056,3,40955,3,1672319409),(137057,3,40956,3,1672319409),(137058,3,40957,3,1672319409),(137059,3,40958,3,1672319409),(137060,3,40959,3,1672319409),(137061,3,40960,3,1672319409),(137062,3,40961,3,1672319409),(137063,3,40962,3,1672319409),(137064,3,40963,3,1672319409),(137065,3,40964,3,1672319409),(137066,3,40965,3,1672319409),(137067,3,40976,3,1672319409),(137068,3,40977,3,1672319409),(137069,3,40978,3,1672319409),(137070,3,40979,3,1672319409),(137071,3,40980,3,1672319409),(137072,3,40981,3,1672319409),(137073,3,40982,3,1672319409),(137074,3,40983,3,1672319409),(137075,3,40984,3,1672319409),(137076,3,40985,3,1672319409),(137077,3,40986,3,1672319409),(137078,3,40997,3,1672319409),(137079,3,40998,3,1672319409),(137080,3,40999,3,1672319409),(137081,3,41000,3,1672319409),(137082,3,41001,3,1672319409),(137083,3,41002,3,1672319409),(137084,3,41003,3,1672319409),(137085,3,41004,3,1672319409),(137086,3,41005,3,1672319409),(137087,3,41006,3,1672319409),(137088,3,41007,3,1672319409),(137089,3,41018,3,1672319409),(137090,3,41019,3,1672319409),(137091,3,41020,3,1672319409),(137092,3,41021,3,1672319409),(137093,3,41022,3,1672319409),(137094,3,41023,3,1672319409),(137095,3,41024,3,1672319409),(137096,3,41025,3,1672319409),(137097,3,41026,3,1672319409),(137098,3,41027,3,1672319409),(137099,3,41028,3,1672319409),(137100,3,41039,3,1672319409),(137101,3,41040,3,1672319409),(137102,3,41041,3,1672319409),(137103,3,41042,3,1672319409),(137104,3,41043,3,1672319409),(137105,3,41044,3,1672319409),(137106,3,41045,3,1672319409),(137107,3,41046,3,1672319409),(137108,3,41047,3,1672319409),(137109,3,41048,3,1672319409),(137110,3,41049,3,1672319409),(137111,3,41060,3,1672319409),(137112,3,41061,3,1672319409),(137113,3,41062,3,1672319409),(137114,3,41063,3,1672319409),(137115,3,41064,3,1672319409),(137116,3,41065,3,1672319409),(137117,3,41066,3,1672319409),(137118,3,41067,3,1672319409),(137119,3,41068,3,1672319409),(137120,3,41069,3,1672319409),(137121,3,41070,3,1672319409),(137122,3,41081,3,1672319409),(137123,3,41082,3,1672319409),(137124,3,41083,3,1672319409),(137125,3,41084,3,1672319409),(137126,3,41085,3,1672319409),(137127,3,41086,3,1672319409),(137128,3,41087,3,1672319409),(137129,3,41088,3,1672319409),(137130,3,41089,3,1672319409),(137131,3,41090,3,1672319409),(137132,3,41091,3,1672319409),(137133,3,41102,3,1672319409),(137134,3,41103,3,1672319409),(137135,3,41104,3,1672319409),(137136,3,41105,3,1672319409),(137137,3,41106,3,1672319409),(137138,3,41107,3,1672319409),(137139,3,41108,3,1672319409),(137140,3,41109,3,1672319409),(137141,3,41110,3,1672319409),(137142,3,41111,3,1672319409),(137143,3,41112,3,1672319409),(137144,3,41123,3,1672319409),(137145,3,41124,3,1672319409),(137146,3,41125,3,1672319409),(137147,3,41126,3,1672319409),(137148,3,41127,3,1672319409),(137149,3,41128,3,1672319409),(137150,3,41129,3,1672319409),(137151,3,41130,3,1672319409),(137152,3,41131,3,1672319409),(137153,3,41132,3,1672319409),(137154,3,41133,3,1672319409),(137155,3,41144,3,1672319409),(137156,3,41145,3,1672319409),(137157,3,41146,3,1672319409),(137158,3,41147,3,1672319409),(137159,3,41148,3,1672319409),(137160,3,41149,3,1672319409),(137161,3,41150,3,1672319409),(137162,3,41151,3,1672319409),(137163,3,41152,3,1672319409),(137164,3,41153,3,1672319409),(137165,3,41154,3,1672319409),(137166,3,41165,3,1672319409),(137167,3,41166,3,1672319409),(137168,3,41167,3,1672319409),(137169,3,41168,3,1672319409),(137170,3,41169,3,1672319409),(137171,3,41170,3,1672319409),(137172,3,41171,3,1672319409),(137173,3,41172,3,1672319409),(137174,3,41173,3,1672319409),(137175,3,41174,3,1672319409),(137176,3,41175,3,1672319409),(137177,3,41186,3,1672319409),(137178,3,41187,3,1672319409),(137179,3,41188,3,1672319409),(137180,3,41189,3,1672319409),(137181,3,41190,3,1672319409),(137182,3,41191,3,1672319409),(137183,3,41192,3,1672319409),(137184,3,41193,3,1672319409),(137185,3,41194,3,1672319409),(137186,3,41195,3,1672319409),(137187,3,41196,3,1672319409),(137188,3,41207,3,1672319409),(137189,3,41208,3,1672319409),(137190,3,41209,3,1672319409),(137191,3,41210,3,1672319409),(137192,3,41211,3,1672319409),(137193,3,41212,3,1672319409),(137194,3,41213,3,1672319409),(137195,3,41214,3,1672319409),(137196,3,41215,3,1672319409),(137197,3,41216,3,1672319409),(137198,3,41217,3,1672319409),(137199,3,41228,3,1672319409),(137200,3,41229,3,1672319409),(137201,3,41230,3,1672319409),(137202,3,41231,3,1672319409),(137203,3,41232,3,1672319409),(137204,3,41233,3,1672319409),(137205,3,41234,3,1672319409),(137206,3,41235,3,1672319409),(137207,3,41236,3,1672319409),(137208,3,41237,3,1672319409),(137209,3,41238,3,1672319409),(137210,3,41249,3,1672319409),(137211,3,41250,3,1672319409),(137212,3,41251,3,1672319409),(137213,3,41252,3,1672319409),(137214,3,41253,3,1672319409),(137215,3,41254,3,1672319409),(137216,3,41255,3,1672319409),(137217,3,41256,3,1672319409),(137218,3,41257,3,1672319409),(137219,3,41258,3,1672319409),(137220,3,41259,3,1672319409),(137221,3,41270,3,1672319409),(137222,3,41271,3,1672319409),(137223,3,41272,3,1672319409),(137224,3,41273,3,1672319409),(137225,3,41274,3,1672319409),(137226,3,41275,3,1672319409),(137227,3,41276,3,1672319409),(137228,3,41277,3,1672319409),(137229,3,41278,3,1672319409),(137230,3,41279,3,1672319409),(137231,3,41280,3,1672319409),(137232,3,41291,3,1672319409),(137233,3,41292,3,1672319409),(137234,3,41293,3,1672319409),(137235,3,41294,3,1672319409),(137236,3,41295,3,1672319409),(137237,3,41296,3,1672319409),(137238,3,41297,3,1672319409),(137239,3,41298,3,1672319409),(137240,3,41299,3,1672319409),(137241,3,41300,3,1672319409),(137242,3,41301,3,1672319409),(137243,3,41312,3,1672319409),(137244,3,41313,3,1672319409),(137245,3,41314,3,1672319409),(137246,3,41315,3,1672319409),(137247,3,41316,3,1672319409),(137248,3,41317,3,1672319409),(137249,3,41318,3,1672319409),(137250,3,41319,3,1672319409),(137251,3,41320,3,1672319409),(137252,3,41321,3,1672319409),(137253,3,41322,3,1672319409),(137254,3,41333,3,1672319409),(137255,3,41334,3,1672319409),(137256,3,41335,3,1672319409),(137257,3,41336,3,1672319409),(137258,3,41337,3,1672319409),(137259,3,41338,3,1672319409),(137260,3,41339,3,1672319409),(137261,3,41340,3,1672319409),(137262,3,41341,3,1672319409),(137263,3,41342,3,1672319409),(137264,3,41343,3,1672319409),(137265,3,41354,3,1672319409),(137266,3,41355,3,1672319409),(137267,3,41356,3,1672319409),(137268,3,41357,3,1672319409),(137269,3,41358,3,1672319409),(137270,3,41359,3,1672319409),(137271,3,41360,3,1672319409),(137272,3,41361,3,1672319409),(137273,3,41362,3,1672319409),(137274,3,41363,3,1672319409),(137275,3,41364,3,1672319409),(137276,3,41375,3,1672319409),(137277,3,41376,3,1672319409),(137278,3,41377,3,1672319409),(137279,3,41378,3,1672319409),(137280,3,41379,3,1672319409),(137281,3,41380,3,1672319409),(137282,3,41381,3,1672319409),(137283,3,41382,3,1672319409),(137284,3,41383,3,1672319409),(137285,3,41384,3,1672319409),(137286,3,41385,3,1672319409),(137287,3,41396,3,1672319409),(137288,3,41397,3,1672319409),(137289,3,41398,3,1672319409),(137290,3,41399,3,1672319409),(137291,3,41400,3,1672319409),(137292,3,41401,3,1672319409),(137293,3,41402,3,1672319409),(137294,3,41403,3,1672319409),(137295,3,41404,3,1672319409),(137296,3,41405,3,1672319409),(137297,3,41406,3,1672319409),(137298,3,41417,3,1672319409),(137299,3,41418,3,1672319409),(137300,3,41419,3,1672319409),(137301,3,41420,3,1672319409),(137302,3,41421,3,1672319409),(137303,3,41422,3,1672319409),(137304,3,41423,3,1672319409),(137305,3,41424,3,1672319409),(137306,3,41425,3,1672319409),(137307,3,41426,3,1672319409),(137308,3,41427,3,1672319409),(137309,3,41438,3,1672319409),(137310,3,41439,3,1672319409),(137311,3,41440,3,1672319409),(137312,3,41441,3,1672319409),(137313,3,41442,3,1672319409),(137314,3,41443,3,1672319409),(137315,3,41444,3,1672319409),(137316,3,41445,3,1672319409),(137317,3,41446,3,1672319409),(137318,3,41447,3,1672319409),(137319,3,41448,3,1672319409),(137320,3,41459,3,1672319409),(137321,3,41460,3,1672319409),(137322,3,41461,3,1672319409),(137323,3,41462,3,1672319409),(137324,3,41463,3,1672319409),(137325,3,41464,3,1672319409),(137326,3,41465,3,1672319409),(137327,3,41466,3,1672319409),(137328,3,41467,3,1672319409),(137329,3,41468,3,1672319409),(137330,3,41469,3,1672319409),(137331,3,41480,3,1672319409),(137332,3,41481,3,1672319409),(137333,3,41482,3,1672319409),(137334,3,41483,3,1672319409),(137335,3,41484,3,1672319409),(137336,3,41485,3,1672319409),(137337,3,41486,3,1672319409),(137338,3,41487,3,1672319409),(137339,3,41488,3,1672319409),(137340,3,41489,3,1672319409),(137341,3,41490,3,1672319409),(137342,3,41501,3,1672319409),(137343,3,41502,3,1672319409),(137344,3,41503,3,1672319409),(137345,3,41504,3,1672319409),(137346,3,41505,3,1672319409),(137347,3,41506,3,1672319409),(137348,3,41507,3,1672319409),(137349,3,41508,3,1672319409),(137350,3,41509,3,1672319409),(137351,3,41510,3,1672319409),(137352,3,41511,3,1672319409),(137353,3,41522,3,1672319409),(137354,3,41523,3,1672319409),(137355,3,41524,3,1672319409),(137356,3,41525,3,1672319409),(137357,3,41526,3,1672319409),(137358,3,41527,3,1672319409),(137359,3,41528,3,1672319409),(137360,3,41529,3,1672319409),(137361,3,41530,3,1672319409),(137362,3,41531,3,1672319409),(137363,3,41532,3,1672319409),(137364,3,41543,3,1672319409),(137365,3,41544,3,1672319409),(137366,3,41545,3,1672319409),(137367,3,41546,3,1672319409),(137368,3,41547,3,1672319409),(137369,3,41548,3,1672319409),(137370,3,41549,3,1672319409),(137371,3,41550,3,1672319409),(137372,3,41551,3,1672319409),(137373,3,41552,3,1672319409),(137374,3,41553,3,1672319409),(137375,3,41564,3,1672319409),(137376,3,41565,3,1672319409),(137377,3,41566,3,1672319409),(137378,3,41567,3,1672319409),(137379,3,41568,3,1672319409),(137380,3,41569,3,1672319409),(137381,3,41570,3,1672319409),(137382,3,41571,3,1672319409),(137383,3,41572,3,1672319409),(137384,3,41573,3,1672319409),(137385,3,41574,3,1672319409),(137386,3,41585,3,1672319409),(137387,3,41586,3,1672319409),(137388,3,41587,3,1672319409),(137389,3,41588,3,1672319409),(137390,3,41589,3,1672319409),(137391,3,41590,3,1672319409),(137392,3,41591,3,1672319409),(137393,3,41592,3,1672319409),(137394,3,41593,3,1672319409),(137395,3,41594,3,1672319409),(137396,3,41595,3,1672319409),(137397,3,41900,3,1672319409),(137398,3,41901,3,1672319409),(137399,3,41902,3,1672319409),(137400,3,41903,3,1672319409),(137401,3,41904,3,1672319409),(137402,3,41905,3,1672319409),(137403,3,41906,3,1672319409),(137404,3,41907,3,1672319409),(137405,3,41908,3,1672319409),(137406,3,41909,3,1672319409),(137407,3,41910,3,1672319409),(137408,3,41921,3,1672319409),(137409,3,41922,3,1672319409),(137410,3,41923,3,1672319409),(137411,3,41924,3,1672319409),(137412,3,41925,3,1672319409),(137413,3,41926,3,1672319409),(137414,3,41927,3,1672319409),(137415,3,41928,3,1672319409),(137416,3,41929,3,1672319409),(137417,3,41930,3,1672319409),(137418,3,41931,3,1672319409),(137419,3,41942,3,1672319409),(137420,3,41943,3,1672319409),(137421,3,41944,3,1672319409),(137422,3,41945,3,1672319409),(137423,3,41946,3,1672319409),(137424,3,41947,3,1672319409),(137425,3,41948,3,1672319409),(137426,3,41949,3,1672319409),(137427,3,41950,3,1672319409),(137428,3,41951,3,1672319409),(137429,3,41952,3,1672319409),(137430,3,41963,3,1672319409),(137431,3,41964,3,1672319409),(137432,3,41965,3,1672319409),(137433,3,41966,3,1672319409),(137434,3,41967,3,1672319409),(137435,3,41968,3,1672319409),(137436,3,41969,3,1672319409),(137437,3,41970,3,1672319409),(137438,3,41971,3,1672319409),(137439,3,41972,3,1672319409),(137440,3,41973,3,1672319409),(137441,3,41984,3,1672319409),(137442,3,41985,3,1672319409),(137443,3,41986,3,1672319409),(137444,3,41987,3,1672319409),(137445,3,41988,3,1672319409),(137446,3,41989,3,1672319409),(137447,3,41990,3,1672319409),(137448,3,41991,3,1672319409),(137449,3,41992,3,1672319409),(137450,3,41993,3,1672319409),(137451,3,41994,3,1672319409),(137452,3,42068,3,1672319409),(137453,3,42069,3,1672319409),(137454,3,42070,3,1672319409),(137455,3,42071,3,1672319409),(137456,3,42072,3,1672319409),(137457,3,42073,3,1672319409),(137458,3,42074,3,1672319409),(137459,3,42075,3,1672319409),(137460,3,42076,3,1672319409),(137461,3,42077,3,1672319409),(137462,3,42078,3,1672319409),(137463,3,42443,3,1672319409),(137464,3,42444,3,1672319409),(137465,3,42445,3,1672319409),(137466,3,42446,3,1672319409),(137467,3,43077,3,1672319409),(137468,3,43793,3,1672319409),(137469,3,43794,3,1672319409),(137470,3,43795,3,1672319409),(137471,3,43796,3,1672319409),(137472,3,43797,3,1672319409),(137473,3,43798,3,1672319409),(137474,3,43799,3,1672319409),(137475,3,43800,3,1672319409),(137476,3,43801,3,1672319409),(137477,3,43802,3,1672319409),(137478,3,43803,3,1672319409),(137479,3,43804,3,1672319409),(137480,3,43805,3,1672319409),(137481,3,43806,3,1672319409),(137482,3,43807,3,1672319409),(137483,3,43808,3,1672319409),(137484,3,43809,3,1672319409),(137485,3,43810,3,1672319409),(137486,3,43811,3,1672319409),(137487,3,43812,3,1672319409),(137488,3,43813,3,1672319409),(137489,3,43814,3,1672319409),(137490,3,43815,3,1672319409),(137491,3,43816,3,1672319409),(137492,3,43817,3,1672319409),(137493,3,43818,3,1672319409),(137494,3,43819,3,1672319409),(137495,3,43820,3,1672319409),(137496,3,43821,3,1672319409),(137497,3,43822,3,1672319409),(137498,3,43823,3,1672319409),(137499,3,43824,3,1672319409),(137500,3,43825,3,1672319409),(137501,3,43840,3,1672319409),(137502,3,43841,3,1672319409),(137503,3,43842,3,1672319409),(137504,3,43843,3,1672319409),(137505,3,43844,3,1672319409),(137506,3,43848,3,1672319409),(137507,3,44445,3,1672319409),(137508,1,10079,3,1672319409),(137509,1,10233,3,1672319409),(137510,1,10251,3,1672319409),(137511,1,10268,3,1672319409),(137512,1,10274,3,1672319409),(137513,1,10276,3,1672319409),(137514,1,10319,3,1672319409),(137515,1,10340,3,1672319409),(137516,1,10341,3,1672319409),(137517,1,10342,3,1672319409),(137518,1,10360,3,1672319409),(137519,1,10361,3,1672319409),(137520,1,10382,3,1672319409),(137521,1,10449,3,1672319409),(137522,1,10450,3,1672319409),(137523,1,10451,3,1672319409),(137524,1,10452,3,1672319409),(137525,1,10453,3,1672319409),(137526,1,10454,3,1672319409),(137527,1,10455,3,1672319409),(137528,1,10456,3,1672319409),(137529,1,10457,3,1672319409),(137530,1,10458,3,1672319409),(137531,1,10459,3,1672319409),(137532,1,10460,3,1672319409),(137533,1,10461,3,1672319409),(137534,1,10462,3,1672319409),(137535,1,10463,3,1672319409),(137536,1,10464,3,1672319409),(137537,1,10465,3,1672319409),(137538,1,10466,3,1672319409),(137539,1,10467,3,1672319409),(137540,1,10468,3,1672319409),(137541,1,10469,3,1672319409),(137542,1,10470,3,1672319409),(137543,1,10471,3,1672319409),(137544,1,10472,3,1672319409),(137545,1,10473,3,1672319409),(137546,1,10474,3,1672319409),(137547,1,10475,3,1672319409),(137548,1,10476,3,1672319409),(137549,1,10477,3,1672319409),(137550,1,10478,3,1672319409),(137551,1,10479,3,1672319409),(137552,1,10480,3,1672319409),(137553,1,10495,3,1672319409),(137554,1,10496,3,1672319409),(137555,1,10497,3,1672319409),(137556,1,10498,3,1672319409),(137557,1,10499,3,1672319409),(137558,3,22868,2,1672319414),(137559,3,22869,2,1672319414),(137560,3,22870,2,1672319414),(137561,3,22871,2,1672319414),(137562,3,22872,2,1672319414),(137563,3,23075,2,1672319414),(137564,3,23076,2,1672319414),(137565,3,27940,2,1672319414),(137566,3,27941,2,1672319414),(137567,3,27942,2,1672319414),(137568,3,27943,2,1672319414),(137569,3,30474,2,1672319414),(137570,3,30475,2,1672319414),(137571,3,30476,2,1672319414),(137572,3,30477,2,1672319414),(137573,3,30478,2,1672319414),(137574,3,30522,2,1672319414),(137575,3,30523,2,1672319414),(137576,3,30524,2,1672319414),(137577,3,30525,2,1672319414),(137578,3,30526,2,1672319414),(137579,3,30680,2,1672319414),(137580,3,30681,2,1672319414),(137581,3,30682,2,1672319414),(137582,3,30683,2,1672319414),(137583,3,30684,2,1672319414),(137584,3,31128,2,1672319414),(137585,3,31129,2,1672319414),(137586,3,31130,2,1672319414),(137587,3,31132,2,1672319414),(137588,3,31133,2,1672319414),(137589,3,31134,2,1672319414),(137590,3,31135,2,1672319414),(137591,3,31136,2,1672319414),(137592,3,31137,2,1672319414),(137593,3,31138,2,1672319414),(137594,3,31139,2,1672319414),(137595,3,31140,2,1672319414),(137596,3,31141,2,1672319414),(137597,3,31142,2,1672319414),(137598,3,31143,2,1672319414),(137599,3,31144,2,1672319414),(137600,3,31145,2,1672319414),(137601,3,31146,2,1672319414),(137602,3,31147,2,1672319414),(137603,3,31148,2,1672319414),(137604,3,31149,2,1672319414),(137605,3,31150,2,1672319414),(137606,3,31151,2,1672319414),(137607,3,31152,2,1672319414),(137608,3,31153,2,1672319414),(137609,3,31154,2,1672319414),(137610,3,31155,2,1672319414),(137611,3,31156,2,1672319414),(137612,3,31157,2,1672319414),(137613,3,31158,2,1672319414),(137614,3,31161,2,1672319414),(137615,3,31162,2,1672319414),(137616,3,31163,2,1672319414),(137617,3,31164,2,1672319414),(137618,3,31165,2,1672319414),(137619,3,31166,2,1672319414),(137620,3,31167,2,1672319414),(137621,3,31258,2,1672319414),(137622,3,31259,2,1672319414),(137623,3,31260,2,1672319414),(137624,3,31261,2,1672319414),(137625,3,31262,2,1672319414),(137626,3,31263,2,1672319414),(137627,3,31264,2,1672319414),(137628,3,31265,2,1672319414),(137629,3,31266,2,1672319414),(137630,3,31267,2,1672319414),(137631,3,31268,2,1672319414),(137632,3,31269,2,1672319414),(137633,3,31270,2,1672319414),(137634,3,31271,2,1672319414),(137635,3,31272,2,1672319414),(137636,3,31273,2,1672319414),(137637,3,31766,2,1672319414),(137638,3,31767,2,1672319414),(137639,3,31768,2,1672319414),(137640,3,31769,2,1672319414),(137641,3,31770,2,1672319414),(137642,3,31771,2,1672319414),(137643,3,31772,2,1672319414),(137644,3,31773,2,1672319414),(137645,3,31774,2,1672319414),(137646,3,31775,2,1672319414),(137647,3,31776,2,1672319414),(137648,3,31777,2,1672319414),(137649,3,31778,2,1672319414),(137650,3,31779,2,1672319414),(137651,3,31780,2,1672319414),(137652,3,31781,2,1672319414),(137653,3,32405,2,1672319414),(137654,3,32406,2,1672319414),(137655,3,32407,2,1672319414),(137656,3,32408,2,1672319414),(137657,3,32409,2,1672319414),(137658,3,32410,2,1672319414),(137659,3,32411,2,1672319414),(137660,3,32412,2,1672319414),(137661,3,32413,2,1672319414),(137662,3,32414,2,1672319414),(137663,3,32415,2,1672319414),(137664,3,32416,2,1672319414),(137665,3,32417,2,1672319414),(137666,3,32418,2,1672319414),(137667,3,32419,2,1672319414),(137668,3,32420,2,1672319414),(137669,3,32421,2,1672319414),(137670,3,32422,2,1672319414),(137671,3,32423,2,1672319414),(137672,3,32424,2,1672319414),(137673,3,32425,2,1672319414),(137674,3,32426,2,1672319414),(137675,3,32427,2,1672319414),(137676,3,32428,2,1672319414),(137677,3,32429,2,1672319414),(137678,3,32430,2,1672319414),(137679,3,32431,2,1672319414),(137680,3,32432,2,1672319414),(137681,3,32433,2,1672319414),(137682,3,32434,2,1672319414),(137683,3,33134,2,1672319414),(137684,3,33135,2,1672319414),(137685,3,33136,2,1672319414),(137686,3,33137,2,1672319414),(137687,3,33138,2,1672319414),(137688,3,33139,2,1672319414),(137689,3,33148,2,1672319414),(137690,3,33149,2,1672319414),(137691,3,33150,2,1672319414),(137692,3,33151,2,1672319414),(137693,3,33152,2,1672319414),(137694,3,33153,2,1672319414),(137695,3,33162,2,1672319414),(137696,3,33163,2,1672319414),(137697,3,33164,2,1672319414),(137698,3,33165,2,1672319414),(137699,3,33166,2,1672319414),(137700,3,33167,2,1672319414),(137701,3,33168,2,1672319414),(137702,3,33169,2,1672319414),(137703,3,33170,2,1672319414),(137704,3,33171,2,1672319414),(137705,3,33206,2,1672319414),(137706,3,33226,2,1672319414),(137707,3,33249,2,1672319414),(137708,3,33258,2,1672319414),(137709,3,33277,2,1672319414),(137710,3,33296,2,1672319414),(137711,3,33312,2,1672319414),(137712,3,33313,2,1672319414),(137713,3,33314,2,1672319414),(137714,3,33315,2,1672319414),(137715,3,33316,2,1672319414),(137716,3,33317,2,1672319414),(137717,3,33318,2,1672319414),(137718,3,33319,2,1672319414),(137719,3,33320,2,1672319414),(137720,3,33357,2,1672319414),(137721,3,33358,2,1672319414),(137722,3,33359,2,1672319414),(137723,3,33360,2,1672319414),(137724,3,33361,2,1672319414),(137725,3,33362,2,1672319414),(137726,3,33363,2,1672319414),(137727,3,33364,2,1672319414),(137728,3,33365,2,1672319414),(137729,3,33366,2,1672319414),(137730,3,33367,2,1672319414),(137731,3,33368,2,1672319414),(137732,3,33369,2,1672319414),(137733,3,33370,2,1672319414),(137734,3,33371,2,1672319414),(137735,3,33372,2,1672319414),(137736,3,33373,2,1672319414),(137737,3,33374,2,1672319414),(137738,3,33375,2,1672319414),(137739,3,33376,2,1672319414),(137740,3,33377,2,1672319414),(137741,3,33378,2,1672319414),(137742,3,33379,2,1672319414),(137743,3,33380,2,1672319414),(137744,3,33381,2,1672319414),(137745,3,33382,2,1672319414),(137746,3,33383,2,1672319414),(137747,3,33384,2,1672319414),(137748,3,33385,2,1672319414),(137749,3,33386,2,1672319414),(137750,3,33387,2,1672319414),(137751,3,33388,2,1672319414),(137752,3,33812,2,1672319414),(137753,3,33813,2,1672319414),(137754,3,33814,2,1672319414),(137755,3,33815,2,1672319414),(137756,3,33816,2,1672319414),(137757,3,33817,2,1672319414),(137758,3,33818,2,1672319414),(137759,3,33819,2,1672319414),(137760,3,33820,2,1672319414),(137761,3,33821,2,1672319414),(137762,3,33822,2,1672319414),(137763,3,33823,2,1672319414),(137764,3,33824,2,1672319414),(137765,3,33825,2,1672319414),(137766,3,33826,2,1672319414),(137767,3,33827,2,1672319414),(137768,3,33828,2,1672319414),(137769,3,33829,2,1672319414),(137770,3,33830,2,1672319414),(137771,3,33831,2,1672319414),(137772,3,33832,2,1672319414),(137773,3,33833,2,1672319414),(137774,3,33834,2,1672319414),(137775,3,33835,2,1672319414),(137776,3,33836,2,1672319414),(137777,3,33837,2,1672319414),(137778,3,33838,2,1672319414),(137779,3,33839,2,1672319414),(137780,3,33840,2,1672319414),(137781,3,33841,2,1672319414),(137782,3,33842,2,1672319414),(137783,3,33843,2,1672319414),(137784,3,33844,2,1672319414),(137785,3,33845,2,1672319414),(137786,3,33846,2,1672319414),(137787,3,33847,2,1672319414),(137788,3,33848,2,1672319414),(137789,3,33849,2,1672319414),(137790,3,33850,2,1672319414),(137791,3,33851,2,1672319414),(137792,3,33852,2,1672319414),(137793,3,33853,2,1672319414),(137794,3,33854,2,1672319414),(137795,3,33855,2,1672319414),(137796,3,33856,2,1672319414),(137797,3,33857,2,1672319414),(137798,3,33858,2,1672319414),(137799,3,33859,2,1672319414),(137800,3,33860,2,1672319414),(137801,3,33861,2,1672319414),(137802,3,33862,2,1672319414),(137803,3,33863,2,1672319414),(137804,3,33864,2,1672319414),(137805,3,33865,2,1672319414),(137806,3,33866,2,1672319414),(137807,3,33867,2,1672319414),(137808,3,33868,2,1672319414),(137809,3,33869,2,1672319414),(137810,3,33870,2,1672319414),(137811,3,33871,2,1672319414),(137812,3,33872,2,1672319414),(137813,3,33873,2,1672319414),(137814,3,33874,2,1672319414),(137815,3,33875,2,1672319414),(137816,3,33876,2,1672319414),(137817,3,33877,2,1672319414),(137818,3,33878,2,1672319414),(137819,3,33879,2,1672319414),(137820,3,33880,2,1672319414),(137821,3,33881,2,1672319414),(137822,3,33882,2,1672319414),(137823,3,33883,2,1672319414),(137824,3,33884,2,1672319414),(137825,3,33885,2,1672319414),(137826,3,33924,2,1672319414),(137827,3,33925,2,1672319414),(137828,3,33926,2,1672319414),(137829,3,33927,2,1672319414),(137830,3,33928,2,1672319414),(137831,3,33929,2,1672319414),(137832,3,33930,2,1672319414),(137833,3,33931,2,1672319414),(137834,3,33932,2,1672319414),(137835,3,33933,2,1672319414),(137836,3,33934,2,1672319414),(137837,3,33935,2,1672319414),(137838,3,33936,2,1672319414),(137839,3,33937,2,1672319414),(137840,3,33938,2,1672319414),(137841,3,33939,2,1672319414),(137842,3,33940,2,1672319414),(137843,3,33941,2,1672319414),(137844,3,33942,2,1672319414),(137845,3,33943,2,1672319414),(137846,3,34269,2,1672319414),(137847,3,34270,2,1672319414),(137848,3,34271,2,1672319414),(137849,3,34272,2,1672319414),(137850,3,34273,2,1672319414),(137851,3,34274,2,1672319414),(137852,3,34275,2,1672319414),(137853,3,34276,2,1672319414),(137854,3,34277,2,1672319414),(137855,3,34278,2,1672319414),(137856,3,34279,2,1672319414),(137857,3,34280,2,1672319414),(137858,3,34281,2,1672319414),(137859,3,34282,2,1672319414),(137860,3,34283,2,1672319414),(137861,3,34284,2,1672319414),(137862,3,34285,2,1672319414),(137863,3,34286,2,1672319414),(137864,3,34287,2,1672319414),(137865,3,34288,2,1672319414),(137866,3,34289,2,1672319414),(137867,3,34290,2,1672319414),(137868,3,34291,2,1672319414),(137869,3,34292,2,1672319414),(137870,3,34293,2,1672319414),(137871,3,34294,2,1672319414),(137872,3,34295,2,1672319414),(137873,3,34296,2,1672319414),(137874,3,34297,2,1672319414),(137875,3,34298,2,1672319414),(137876,3,34299,2,1672319414),(137877,3,34300,2,1672319414),(137878,3,34301,2,1672319414),(137879,3,34302,2,1672319414),(137880,3,34303,2,1672319414),(137881,3,34304,2,1672319414),(137882,3,34305,2,1672319414),(137883,3,34306,2,1672319414),(137884,3,34307,2,1672319414),(137885,3,34308,2,1672319414),(137886,3,34309,2,1672319414),(137887,3,34310,2,1672319414),(137888,3,34311,2,1672319414),(137889,3,34312,2,1672319414),(137890,3,34313,2,1672319414),(137891,3,34325,2,1672319414),(137892,3,34326,2,1672319414),(137893,3,34327,2,1672319414),(137894,3,34328,2,1672319414),(137895,3,34329,2,1672319414),(137896,3,34330,2,1672319414),(137897,3,34331,2,1672319414),(137898,3,34332,2,1672319414),(137899,3,34333,2,1672319414),(137900,3,34334,2,1672319414),(137901,3,34335,2,1672319414),(137902,3,35185,2,1672319414),(137903,3,35186,2,1672319414),(137904,3,35187,2,1672319414),(137905,3,35188,2,1672319414),(137906,3,35189,2,1672319414),(137907,3,35190,2,1672319414),(137908,3,35191,2,1672319414),(137909,3,35192,2,1672319414),(137910,3,35193,2,1672319414),(137911,3,35194,2,1672319414),(137912,3,35195,2,1672319414),(137913,3,35196,2,1672319414),(137914,3,35197,2,1672319414),(137915,3,35198,2,1672319414),(137916,3,35199,2,1672319414),(137917,3,35200,2,1672319414),(137918,3,35201,2,1672319414),(137919,3,35202,2,1672319414),(137920,3,35203,2,1672319414),(137921,3,35204,2,1672319414),(137922,3,35205,2,1672319414),(137923,3,35206,2,1672319414),(137924,3,35207,2,1672319414),(137925,3,35208,2,1672319414),(137926,3,35209,2,1672319414),(137927,3,35210,2,1672319414),(137928,3,35211,2,1672319414),(137929,3,35212,2,1672319414),(137930,3,35213,2,1672319414),(137931,3,35214,2,1672319414),(137932,3,35215,2,1672319414),(137933,3,35216,2,1672319414),(137934,3,35217,2,1672319414),(137935,3,35218,2,1672319414),(137936,3,35219,2,1672319414),(137937,3,35220,2,1672319414),(137938,3,35221,2,1672319414),(137939,3,35222,2,1672319414),(137940,3,35223,2,1672319414),(137941,3,35224,2,1672319414),(137942,3,35225,2,1672319414),(137943,3,35226,2,1672319414),(137944,3,35227,2,1672319414),(137945,3,35228,2,1672319414),(137946,3,35229,2,1672319414),(137947,3,35230,2,1672319414),(137948,3,35231,2,1672319414),(137949,3,35232,2,1672319414),(137950,3,35233,2,1672319414),(137951,3,35234,2,1672319414),(137952,3,35235,2,1672319414),(137953,3,35236,2,1672319414),(137954,3,35237,2,1672319414),(137955,3,35238,2,1672319414),(137956,3,35239,2,1672319414),(137957,3,35240,2,1672319414),(137958,3,35241,2,1672319414),(137959,3,35242,2,1672319414),(137960,3,35243,2,1672319414),(137961,3,35244,2,1672319414),(137962,3,35245,2,1672319414),(137963,3,35246,2,1672319414),(137964,3,35247,2,1672319414),(137965,3,35248,2,1672319414),(137966,3,35249,2,1672319414),(137967,3,35250,2,1672319414),(137968,3,35251,2,1672319414),(137969,3,35252,2,1672319414),(137970,3,35253,2,1672319414),(137971,3,35254,2,1672319414),(137972,3,35255,2,1672319414),(137973,3,35256,2,1672319414),(137974,3,35257,2,1672319414),(137975,3,35258,2,1672319414),(137976,3,35259,2,1672319414),(137977,3,35260,2,1672319414),(137978,3,35261,2,1672319414),(137979,3,38589,2,1672319414),(137980,3,38590,2,1672319414),(137981,3,38591,2,1672319414),(137982,3,38592,2,1672319414),(137983,3,38593,2,1672319414),(137984,3,38594,2,1672319414),(137985,3,38595,2,1672319414),(137986,3,38596,2,1672319414),(137987,3,38597,2,1672319414),(137988,3,38598,2,1672319414),(137989,3,38599,2,1672319414),(137990,3,38600,2,1672319414),(137991,3,38601,2,1672319414),(137992,3,38602,2,1672319414),(137993,3,38603,2,1672319414),(137994,3,38604,2,1672319414),(137995,3,38605,2,1672319414),(137996,3,38606,2,1672319414),(137997,3,38607,2,1672319414),(137998,3,38643,2,1672319414),(137999,3,38644,2,1672319414),(138000,3,38645,2,1672319414),(138001,3,38646,2,1672319414),(138002,3,38647,2,1672319414),(138003,3,38648,2,1672319414),(138004,3,38649,2,1672319414),(138005,3,38650,2,1672319414),(138006,3,38651,2,1672319414),(138007,3,38652,2,1672319414),(138008,3,38653,2,1672319414),(138009,3,38654,2,1672319414),(138010,3,38655,2,1672319414),(138011,3,38656,2,1672319414),(138012,3,38657,2,1672319414),(138013,3,38658,2,1672319414),(138014,3,38659,2,1672319414),(138015,3,38660,2,1672319414),(138016,3,38661,2,1672319414),(138017,3,38697,2,1672319414),(138018,3,38698,2,1672319414),(138019,3,38699,2,1672319414),(138020,3,38700,2,1672319414),(138021,3,38701,2,1672319414),(138022,3,38702,2,1672319414),(138023,3,38703,2,1672319414),(138024,3,38704,2,1672319414),(138025,3,38705,2,1672319414),(138026,3,38706,2,1672319414),(138027,3,38707,2,1672319414),(138028,3,38708,2,1672319414),(138029,3,38709,2,1672319414),(138030,3,38710,2,1672319414),(138031,3,38711,2,1672319414),(138032,3,38712,2,1672319414),(138033,3,38713,2,1672319414),(138034,3,38714,2,1672319414),(138035,3,38715,2,1672319414),(138036,3,38751,2,1672319414),(138037,3,38752,2,1672319414),(138038,3,38753,2,1672319414),(138039,3,38754,2,1672319414),(138040,3,38755,2,1672319414),(138041,3,38756,2,1672319414),(138042,3,38757,2,1672319414),(138043,3,38758,2,1672319414),(138044,3,38759,2,1672319414),(138045,3,38760,2,1672319414),(138046,3,38761,2,1672319414),(138047,3,38762,2,1672319414),(138048,3,38763,2,1672319414),(138049,3,38764,2,1672319414),(138050,3,38765,2,1672319414),(138051,3,38766,2,1672319414),(138052,3,38767,2,1672319414),(138053,3,38768,2,1672319414),(138054,3,38769,2,1672319414),(138055,3,38805,2,1672319414),(138056,3,38806,2,1672319414),(138057,3,38807,2,1672319414),(138058,3,38808,2,1672319414),(138059,3,38809,2,1672319414),(138060,3,38810,2,1672319414),(138061,3,38811,2,1672319414),(138062,3,38812,2,1672319414),(138063,3,38813,2,1672319414),(138064,3,38814,2,1672319414),(138065,3,38815,2,1672319414),(138066,3,38816,2,1672319414),(138067,3,38817,2,1672319414),(138068,3,38818,2,1672319414),(138069,3,38819,2,1672319414),(138070,3,38820,2,1672319414),(138071,3,38821,2,1672319414),(138072,3,38822,2,1672319414),(138073,3,38823,2,1672319414),(138074,3,38859,2,1672319414),(138075,3,38860,2,1672319414),(138076,3,38861,2,1672319414),(138077,3,38862,2,1672319414),(138078,3,38863,2,1672319414),(138079,3,38864,2,1672319414),(138080,3,38865,2,1672319414),(138081,3,38866,2,1672319414),(138082,3,38867,2,1672319414),(138083,3,38868,2,1672319414),(138084,3,38869,2,1672319414),(138085,3,38870,2,1672319414),(138086,3,38871,2,1672319414),(138087,3,38872,2,1672319414),(138088,3,38873,2,1672319414),(138089,3,38874,2,1672319414),(138090,3,38875,2,1672319414),(138091,3,38876,2,1672319414),(138092,3,38877,2,1672319414),(138093,3,38913,2,1672319414),(138094,3,38914,2,1672319414),(138095,3,38915,2,1672319414),(138096,3,38916,2,1672319414),(138097,3,38917,2,1672319414),(138098,3,38918,2,1672319414),(138099,3,38919,2,1672319414),(138100,3,38920,2,1672319414),(138101,3,38921,2,1672319414),(138102,3,38922,2,1672319414),(138103,3,38923,2,1672319414),(138104,3,38924,2,1672319414),(138105,3,38925,2,1672319414),(138106,3,38926,2,1672319414),(138107,3,38927,2,1672319414),(138108,3,38928,2,1672319414),(138109,3,38929,2,1672319414),(138110,3,38930,2,1672319414),(138111,3,38931,2,1672319414),(138112,3,38967,2,1672319414),(138113,3,38968,2,1672319414),(138114,3,38969,2,1672319414),(138115,3,38970,2,1672319414),(138116,3,38971,2,1672319414),(138117,3,38972,2,1672319414),(138118,3,38973,2,1672319414),(138119,3,38974,2,1672319414),(138120,3,38975,2,1672319414),(138121,3,38976,2,1672319414),(138122,3,38977,2,1672319414),(138123,3,38978,2,1672319414),(138124,3,38979,2,1672319414),(138125,3,38980,2,1672319414),(138126,3,38981,2,1672319414),(138127,3,38982,2,1672319414),(138128,3,38983,2,1672319414),(138129,3,38984,2,1672319414),(138130,3,38985,2,1672319414),(138131,3,39021,2,1672319414),(138132,3,39022,2,1672319414),(138133,3,39023,2,1672319414),(138134,3,39024,2,1672319414),(138135,3,39025,2,1672319414),(138136,3,39026,2,1672319414),(138137,3,39027,2,1672319414),(138138,3,39028,2,1672319414),(138139,3,39029,2,1672319414),(138140,3,39030,2,1672319414),(138141,3,39031,2,1672319414),(138142,3,39032,2,1672319414),(138143,3,39033,2,1672319414),(138144,3,39034,2,1672319414),(138145,3,39035,2,1672319414),(138146,3,39036,2,1672319414),(138147,3,39037,2,1672319414),(138148,3,39038,2,1672319414),(138149,3,39039,2,1672319414),(138150,3,39075,2,1672319414),(138151,3,39076,2,1672319414),(138152,3,39077,2,1672319414),(138153,3,39078,2,1672319414),(138154,3,39079,2,1672319414),(138155,3,39080,2,1672319414),(138156,3,39081,2,1672319414),(138157,3,39082,2,1672319414),(138158,3,39083,2,1672319414),(138159,3,39084,2,1672319414),(138160,3,39085,2,1672319414),(138161,3,39086,2,1672319414),(138162,3,39087,2,1672319414),(138163,3,39088,2,1672319414),(138164,3,39089,2,1672319414),(138165,3,39090,2,1672319414),(138166,3,39091,2,1672319414),(138167,3,39092,2,1672319414),(138168,3,39093,2,1672319414),(138169,3,39129,2,1672319414),(138170,3,39130,2,1672319414),(138171,3,39131,2,1672319414),(138172,3,39132,2,1672319414),(138173,3,39133,2,1672319414),(138174,3,39134,2,1672319414),(138175,3,39135,2,1672319414),(138176,3,39136,2,1672319414),(138177,3,39137,2,1672319414),(138178,3,39138,2,1672319414),(138179,3,39139,2,1672319414),(138180,3,39140,2,1672319414),(138181,3,39141,2,1672319414),(138182,3,39142,2,1672319414),(138183,3,39143,2,1672319414),(138184,3,39144,2,1672319414),(138185,3,39145,2,1672319414),(138186,3,39146,2,1672319414),(138187,3,39147,2,1672319414),(138188,3,39183,2,1672319414),(138189,3,39184,2,1672319414),(138190,3,39185,2,1672319414),(138191,3,39186,2,1672319414),(138192,3,39187,2,1672319414),(138193,3,39188,2,1672319414),(138194,3,39189,2,1672319414),(138195,3,39190,2,1672319414),(138196,3,39191,2,1672319414),(138197,3,39192,2,1672319414),(138198,3,39193,2,1672319414),(138199,3,39194,2,1672319414),(138200,3,39195,2,1672319414),(138201,3,39196,2,1672319414),(138202,3,39197,2,1672319414),(138203,3,39198,2,1672319414),(138204,3,39199,2,1672319414),(138205,3,39200,2,1672319414),(138206,3,39201,2,1672319414),(138207,3,39237,2,1672319414),(138208,3,39238,2,1672319414),(138209,3,39239,2,1672319414),(138210,3,39240,2,1672319414),(138211,3,39241,2,1672319414),(138212,3,39242,2,1672319414),(138213,3,39243,2,1672319414),(138214,3,39244,2,1672319414),(138215,3,39245,2,1672319414),(138216,3,39246,2,1672319414),(138217,3,39247,2,1672319414),(138218,3,39248,2,1672319414),(138219,3,39249,2,1672319414),(138220,3,39250,2,1672319414),(138221,3,39251,2,1672319414),(138222,3,39252,2,1672319414),(138223,3,39253,2,1672319414),(138224,3,39254,2,1672319414),(138225,3,39255,2,1672319414),(138226,3,39291,2,1672319414),(138227,3,39292,2,1672319414),(138228,3,39293,2,1672319414),(138229,3,39294,2,1672319414),(138230,3,39295,2,1672319414),(138231,3,39296,2,1672319414),(138232,3,39297,2,1672319414),(138233,3,39298,2,1672319414),(138234,3,39299,2,1672319414),(138235,3,39300,2,1672319414),(138236,3,39301,2,1672319414),(138237,3,39302,2,1672319414),(138238,3,39303,2,1672319414),(138239,3,39304,2,1672319414),(138240,3,39305,2,1672319414),(138241,3,39306,2,1672319414),(138242,3,39307,2,1672319414),(138243,3,39308,2,1672319414),(138244,3,39309,2,1672319414),(138245,3,39615,2,1672319414),(138246,3,39616,2,1672319414),(138247,3,39617,2,1672319414),(138248,3,39618,2,1672319414),(138249,3,39619,2,1672319414),(138250,3,39620,2,1672319414),(138251,3,39621,2,1672319414),(138252,3,39622,2,1672319414),(138253,3,39623,2,1672319414),(138254,3,39624,2,1672319414),(138255,3,39625,2,1672319414),(138256,3,39626,2,1672319414),(138257,3,39627,2,1672319414),(138258,3,39628,2,1672319414),(138259,3,39629,2,1672319414),(138260,3,39630,2,1672319414),(138261,3,39631,2,1672319414),(138262,3,39632,2,1672319414),(138263,3,39633,2,1672319414),(138264,3,39669,2,1672319414),(138265,3,39670,2,1672319414),(138266,3,39671,2,1672319414),(138267,3,39672,2,1672319414),(138268,3,39673,2,1672319414),(138269,3,39674,2,1672319414),(138270,3,39675,2,1672319414),(138271,3,39676,2,1672319414),(138272,3,39677,2,1672319414),(138273,3,39678,2,1672319414),(138274,3,39679,2,1672319414),(138275,3,39680,2,1672319414),(138276,3,39681,2,1672319414),(138277,3,39682,2,1672319414),(138278,3,39683,2,1672319414),(138279,3,39684,2,1672319414),(138280,3,39685,2,1672319414),(138281,3,39686,2,1672319414),(138282,3,39687,2,1672319414),(138283,3,39723,2,1672319414),(138284,3,39724,2,1672319414),(138285,3,39725,2,1672319414),(138286,3,39726,2,1672319414),(138287,3,39727,2,1672319414),(138288,3,39728,2,1672319414),(138289,3,39729,2,1672319414),(138290,3,39730,2,1672319414),(138291,3,39731,2,1672319414),(138292,3,39732,2,1672319414),(138293,3,39733,2,1672319414),(138294,3,39734,2,1672319414),(138295,3,39735,2,1672319414),(138296,3,39736,2,1672319414),(138297,3,39737,2,1672319414),(138298,3,39738,2,1672319414),(138299,3,39739,2,1672319414),(138300,3,39740,2,1672319414),(138301,3,39741,2,1672319414),(138302,3,40147,2,1672319414),(138303,3,40148,2,1672319414),(138304,3,40149,2,1672319414),(138305,3,40150,2,1672319414),(138306,3,40151,2,1672319414),(138307,3,40152,2,1672319414),(138308,3,40153,2,1672319414),(138309,3,40154,2,1672319414),(138310,3,40155,2,1672319414),(138311,3,40156,2,1672319414),(138312,3,40157,2,1672319414),(138313,3,40158,2,1672319414),(138314,3,40159,2,1672319414),(138315,3,40160,2,1672319414),(138316,3,40161,2,1672319414),(138317,3,40162,2,1672319414),(138318,3,40163,2,1672319414),(138319,3,40164,2,1672319414),(138320,3,40165,2,1672319414),(138321,3,40166,2,1672319414),(138322,3,40167,2,1672319414),(138323,3,40168,2,1672319414),(138324,3,40169,2,1672319414),(138325,3,40170,2,1672319414),(138326,3,40171,2,1672319414),(138327,3,40172,2,1672319414),(138328,3,40811,2,1672319414),(138329,3,40812,2,1672319414),(138330,3,40813,2,1672319414),(138331,3,40814,2,1672319414),(138332,3,40815,2,1672319414),(138333,3,40816,2,1672319414),(138334,3,40817,2,1672319414),(138335,3,40818,2,1672319414),(138336,3,40819,2,1672319414),(138337,3,40820,2,1672319414),(138338,3,41618,2,1672319414),(138339,3,41619,2,1672319414),(138340,3,41620,2,1672319414),(138341,3,41621,2,1672319414),(138342,3,41622,2,1672319414),(138343,3,41623,2,1672319414),(138344,3,41624,2,1672319414),(138345,3,41625,2,1672319414),(138346,3,41626,2,1672319414),(138347,3,41639,2,1672319414),(138348,3,41640,2,1672319414),(138349,3,41641,2,1672319414),(138350,3,41642,2,1672319414),(138351,3,41643,2,1672319414),(138352,3,41644,2,1672319414),(138353,3,41645,2,1672319414),(138354,3,41646,2,1672319414),(138355,3,41647,2,1672319414),(138356,3,41660,2,1672319414),(138357,3,41661,2,1672319414),(138358,3,41662,2,1672319414),(138359,3,41663,2,1672319414),(138360,3,41664,2,1672319414),(138361,3,41665,2,1672319414),(138362,3,41666,2,1672319414),(138363,3,41667,2,1672319414),(138364,3,41668,2,1672319414),(138365,3,41681,2,1672319414),(138366,3,41682,2,1672319414),(138367,3,41683,2,1672319414),(138368,3,41684,2,1672319414),(138369,3,41685,2,1672319414),(138370,3,41686,2,1672319414),(138371,3,41687,2,1672319414),(138372,3,41688,2,1672319414),(138373,3,41689,2,1672319414),(138374,3,41702,2,1672319414),(138375,3,41703,2,1672319414),(138376,3,41704,2,1672319414),(138377,3,41705,2,1672319414),(138378,3,41706,2,1672319414),(138379,3,41707,2,1672319414),(138380,3,41708,2,1672319414),(138381,3,41709,2,1672319414),(138382,3,41710,2,1672319414),(138383,3,41723,2,1672319414),(138384,3,41724,2,1672319414),(138385,3,41725,2,1672319414),(138386,3,41726,2,1672319414),(138387,3,41727,2,1672319414),(138388,3,41728,2,1672319414),(138389,3,41729,2,1672319414),(138390,3,41730,2,1672319414),(138391,3,41731,2,1672319414),(138392,3,41744,2,1672319414),(138393,3,41745,2,1672319414),(138394,3,41746,2,1672319414),(138395,3,41747,2,1672319414),(138396,3,41748,2,1672319414),(138397,3,41749,2,1672319414),(138398,3,41750,2,1672319414),(138399,3,41751,2,1672319414),(138400,3,41752,2,1672319414),(138401,3,41765,2,1672319414),(138402,3,41766,2,1672319414),(138403,3,41767,2,1672319414),(138404,3,41768,2,1672319414),(138405,3,41769,2,1672319414),(138406,3,41770,2,1672319414),(138407,3,41771,2,1672319414),(138408,3,41772,2,1672319414),(138409,3,41773,2,1672319414),(138410,3,41786,2,1672319414),(138411,3,41787,2,1672319414),(138412,3,41788,2,1672319414),(138413,3,41789,2,1672319414),(138414,3,41790,2,1672319414),(138415,3,41791,2,1672319414),(138416,3,41792,2,1672319414),(138417,3,41793,2,1672319414),(138418,3,41794,2,1672319414),(138419,3,41807,2,1672319414),(138420,3,41808,2,1672319414),(138421,3,41809,2,1672319414),(138422,3,41810,2,1672319414),(138423,3,41811,2,1672319414),(138424,3,41812,2,1672319414),(138425,3,41813,2,1672319414),(138426,3,41814,2,1672319414),(138427,3,41815,2,1672319414),(138428,3,41828,2,1672319414),(138429,3,41829,2,1672319414),(138430,3,41830,2,1672319414),(138431,3,41831,2,1672319414),(138432,3,41832,2,1672319414),(138433,3,41833,2,1672319414),(138434,3,41834,2,1672319414),(138435,3,41835,2,1672319414),(138436,3,41836,2,1672319414),(138437,3,41849,2,1672319414),(138438,3,41850,2,1672319414),(138439,3,41851,2,1672319414),(138440,3,41852,2,1672319414),(138441,3,41853,2,1672319414),(138442,3,41854,2,1672319414),(138443,3,41855,2,1672319414),(138444,3,41856,2,1672319414),(138445,3,41857,2,1672319414),(138446,3,41870,2,1672319414),(138447,3,41871,2,1672319414),(138448,3,41872,2,1672319414),(138449,3,41873,2,1672319414),(138450,3,41874,2,1672319414),(138451,3,41875,2,1672319414),(138452,3,41876,2,1672319414),(138453,3,41877,2,1672319414),(138454,3,41878,2,1672319414),(138455,3,41891,2,1672319414),(138456,3,41892,2,1672319414),(138457,3,41893,2,1672319414),(138458,3,41894,2,1672319414),(138459,3,41895,2,1672319414),(138460,3,41896,2,1672319414),(138461,3,41897,2,1672319414),(138462,3,41898,2,1672319414),(138463,3,41899,2,1672319414),(138464,3,42017,2,1672319414),(138465,3,42018,2,1672319414),(138466,3,42019,2,1672319414),(138467,3,42020,2,1672319414),(138468,3,42021,2,1672319414),(138469,3,42022,2,1672319414),(138470,3,42023,2,1672319414),(138471,3,42024,2,1672319414),(138472,3,42025,2,1672319414),(138473,3,42038,2,1672319414),(138474,3,42039,2,1672319414),(138475,3,42040,2,1672319414),(138476,3,42041,2,1672319414),(138477,3,42042,2,1672319414),(138478,3,42043,2,1672319414),(138479,3,42044,2,1672319414),(138480,3,42045,2,1672319414),(138481,3,42046,2,1672319414),(138482,3,42059,2,1672319414),(138483,3,42060,2,1672319414),(138484,3,42061,2,1672319414),(138485,3,42062,2,1672319414),(138486,3,42063,2,1672319414),(138487,3,42064,2,1672319414),(138488,3,42065,2,1672319414),(138489,3,42066,2,1672319414),(138490,3,42067,2,1672319414),(138491,3,42101,2,1672319414),(138492,3,42102,2,1672319414),(138493,3,42103,2,1672319414),(138494,3,42104,2,1672319414),(138495,3,42105,2,1672319414),(138496,3,42106,2,1672319414),(138497,3,42107,2,1672319414),(138498,3,42108,2,1672319414),(138499,3,42109,2,1672319414),(138500,3,42727,2,1672319414),(138501,3,42728,2,1672319414),(138502,3,42729,2,1672319414),(138503,3,42730,2,1672319414),(138504,3,42731,2,1672319414),(138505,3,42732,2,1672319414),(138506,3,42733,2,1672319414),(138507,3,42734,2,1672319414),(138508,3,42735,2,1672319414),(138509,3,42736,2,1672319414),(138510,3,42737,2,1672319414),(138511,3,43566,2,1672319414),(138512,3,43567,2,1672319414),(138513,3,43568,2,1672319414),(138514,3,43569,2,1672319414),(138515,3,43570,2,1672319414),(138516,3,43571,2,1672319414),(138517,3,43572,2,1672319414),(138518,3,43573,2,1672319414),(138519,3,43574,2,1672319414),(138520,3,43575,2,1672319414),(138521,3,43576,2,1672319414),(138522,3,43577,2,1672319414),(138523,3,43578,2,1672319414),(138524,3,43579,2,1672319414),(138525,3,43580,2,1672319414),(138526,3,43581,2,1672319414),(138527,3,43582,2,1672319414),(138528,3,43583,2,1672319414),(138529,3,43584,2,1672319414),(138530,3,43585,2,1672319414),(138531,3,43586,2,1672319414),(138532,3,43587,2,1672319414),(138533,3,43588,2,1672319414),(138534,3,43589,2,1672319414),(138535,3,43590,2,1672319414),(138536,3,43591,2,1672319414),(138537,3,44237,2,1672319414),(138538,3,44238,2,1672319414),(138539,3,44239,2,1672319414),(138540,3,44240,2,1672319414),(138541,3,44241,2,1672319414),(138542,3,44242,2,1672319414),(138543,3,44243,2,1672319414),(138544,3,44244,2,1672319414),(138545,3,44245,2,1672319414),(138546,3,44345,2,1672319414),(138547,3,44346,2,1672319414),(138548,3,44347,2,1672319414),(138549,3,44348,2,1672319414),(138550,3,44349,2,1672319414),(138551,3,44350,2,1672319414),(138552,3,44353,2,1672319414),(138553,3,44354,2,1672319414),(138554,3,44355,2,1672319414),(138555,3,44356,2,1672319414),(138556,3,44357,2,1672319414),(138557,3,44358,2,1672319414),(138558,3,44448,2,1672319414),(138559,3,44449,2,1672319414),(138560,3,22868,3,1672319414),(138561,3,22869,3,1672319414),(138562,3,22870,3,1672319414),(138563,3,22871,3,1672319414),(138564,3,22872,3,1672319414),(138565,3,23075,3,1672319414),(138566,3,23076,3,1672319414),(138567,3,27940,3,1672319414),(138568,3,27941,3,1672319414),(138569,3,27942,3,1672319414),(138570,3,27943,3,1672319414),(138571,3,30474,3,1672319414),(138572,3,30475,3,1672319414),(138573,3,30476,3,1672319414),(138574,3,30477,3,1672319414),(138575,3,30478,3,1672319414),(138576,3,30522,3,1672319414),(138577,3,30523,3,1672319414),(138578,3,30524,3,1672319414),(138579,3,30525,3,1672319414),(138580,3,30526,3,1672319414),(138581,3,30680,3,1672319414),(138582,3,30681,3,1672319414),(138583,3,30682,3,1672319414),(138584,3,30683,3,1672319414),(138585,3,30684,3,1672319414),(138586,3,31128,3,1672319414),(138587,3,31129,3,1672319414),(138588,3,31130,3,1672319414),(138589,3,31132,3,1672319414),(138590,3,31133,3,1672319414),(138591,3,31134,3,1672319414),(138592,3,31135,3,1672319414),(138593,3,31136,3,1672319414),(138594,3,31137,3,1672319414),(138595,3,31138,3,1672319414),(138596,3,31139,3,1672319414),(138597,3,31140,3,1672319414),(138598,3,31141,3,1672319414),(138599,3,31142,3,1672319414),(138600,3,31143,3,1672319414),(138601,3,31144,3,1672319414),(138602,3,31145,3,1672319414),(138603,3,31146,3,1672319414),(138604,3,31147,3,1672319414),(138605,3,31148,3,1672319414),(138606,3,31149,3,1672319414),(138607,3,31150,3,1672319414),(138608,3,31151,3,1672319414),(138609,3,31152,3,1672319414),(138610,3,31153,3,1672319414),(138611,3,31154,3,1672319414),(138612,3,31155,3,1672319414),(138613,3,31156,3,1672319414),(138614,3,31157,3,1672319414),(138615,3,31158,3,1672319414),(138616,3,31161,3,1672319414),(138617,3,31162,3,1672319414),(138618,3,31163,3,1672319414),(138619,3,31164,3,1672319414),(138620,3,31165,3,1672319414),(138621,3,31166,3,1672319414),(138622,3,31167,3,1672319414),(138623,3,31258,3,1672319414),(138624,3,31259,3,1672319414),(138625,3,31260,3,1672319414),(138626,3,31261,3,1672319414),(138627,3,31262,3,1672319414),(138628,3,31263,3,1672319414),(138629,3,31264,3,1672319414),(138630,3,31265,3,1672319414),(138631,3,31266,3,1672319414),(138632,3,31267,3,1672319414),(138633,3,31268,3,1672319414),(138634,3,31269,3,1672319414),(138635,3,31270,3,1672319414),(138636,3,31271,3,1672319414),(138637,3,31272,3,1672319414),(138638,3,31273,3,1672319414),(138639,3,31766,3,1672319414),(138640,3,31767,3,1672319414),(138641,3,31768,3,1672319414),(138642,3,31769,3,1672319414),(138643,3,31770,3,1672319414),(138644,3,31771,3,1672319414),(138645,3,31772,3,1672319414),(138646,3,31773,3,1672319414),(138647,3,31774,3,1672319414),(138648,3,31775,3,1672319414),(138649,3,31776,3,1672319414),(138650,3,31777,3,1672319414),(138651,3,31778,3,1672319414),(138652,3,31779,3,1672319414),(138653,3,31780,3,1672319414),(138654,3,31781,3,1672319414),(138655,3,32405,3,1672319414),(138656,3,32406,3,1672319414),(138657,3,32407,3,1672319414),(138658,3,32408,3,1672319414),(138659,3,32409,3,1672319414),(138660,3,32410,3,1672319414),(138661,3,32411,3,1672319414),(138662,3,32412,3,1672319414),(138663,3,32413,3,1672319414),(138664,3,32414,3,1672319414),(138665,3,32415,3,1672319414),(138666,3,32416,3,1672319414),(138667,3,32417,3,1672319414),(138668,3,32418,3,1672319414),(138669,3,32419,3,1672319414),(138670,3,32420,3,1672319414),(138671,3,32421,3,1672319414),(138672,3,32422,3,1672319414),(138673,3,32423,3,1672319414),(138674,3,32424,3,1672319414),(138675,3,32425,3,1672319414),(138676,3,32426,3,1672319414),(138677,3,32427,3,1672319414),(138678,3,32428,3,1672319414),(138679,3,32429,3,1672319414),(138680,3,32430,3,1672319414),(138681,3,32431,3,1672319414),(138682,3,32432,3,1672319414),(138683,3,32433,3,1672319414),(138684,3,32434,3,1672319414),(138685,3,33134,3,1672319414),(138686,3,33135,3,1672319414),(138687,3,33136,3,1672319414),(138688,3,33137,3,1672319414),(138689,3,33138,3,1672319414),(138690,3,33139,3,1672319414),(138691,3,33148,3,1672319414),(138692,3,33149,3,1672319414),(138693,3,33150,3,1672319414),(138694,3,33151,3,1672319414),(138695,3,33152,3,1672319414),(138696,3,33153,3,1672319414),(138697,3,33162,3,1672319414),(138698,3,33163,3,1672319414),(138699,3,33164,3,1672319414),(138700,3,33165,3,1672319414),(138701,3,33166,3,1672319414),(138702,3,33167,3,1672319414),(138703,3,33168,3,1672319414),(138704,3,33169,3,1672319414),(138705,3,33170,3,1672319414),(138706,3,33171,3,1672319414),(138707,3,33206,3,1672319414),(138708,3,33226,3,1672319414),(138709,3,33249,3,1672319414),(138710,3,33258,3,1672319414),(138711,3,33277,3,1672319414),(138712,3,33296,3,1672319414),(138713,3,33312,3,1672319414),(138714,3,33313,3,1672319414),(138715,3,33314,3,1672319414),(138716,3,33315,3,1672319414),(138717,3,33316,3,1672319414),(138718,3,33317,3,1672319414),(138719,3,33318,3,1672319414),(138720,3,33319,3,1672319414),(138721,3,33320,3,1672319414),(138722,3,33357,3,1672319414),(138723,3,33358,3,1672319414),(138724,3,33359,3,1672319414),(138725,3,33360,3,1672319414),(138726,3,33361,3,1672319414),(138727,3,33362,3,1672319414),(138728,3,33363,3,1672319414),(138729,3,33364,3,1672319414),(138730,3,33365,3,1672319414),(138731,3,33366,3,1672319414),(138732,3,33367,3,1672319414),(138733,3,33368,3,1672319414),(138734,3,33369,3,1672319414),(138735,3,33370,3,1672319414),(138736,3,33371,3,1672319414),(138737,3,33372,3,1672319414),(138738,3,33373,3,1672319414),(138739,3,33374,3,1672319414),(138740,3,33375,3,1672319414),(138741,3,33376,3,1672319414),(138742,3,33377,3,1672319414),(138743,3,33378,3,1672319414),(138744,3,33379,3,1672319414),(138745,3,33380,3,1672319414),(138746,3,33381,3,1672319414),(138747,3,33382,3,1672319414),(138748,3,33383,3,1672319414),(138749,3,33384,3,1672319414),(138750,3,33385,3,1672319414),(138751,3,33386,3,1672319414),(138752,3,33387,3,1672319414),(138753,3,33388,3,1672319414),(138754,3,33812,3,1672319414),(138755,3,33813,3,1672319414),(138756,3,33814,3,1672319414),(138757,3,33815,3,1672319414),(138758,3,33816,3,1672319414),(138759,3,33817,3,1672319414),(138760,3,33818,3,1672319414),(138761,3,33819,3,1672319414),(138762,3,33820,3,1672319414),(138763,3,33821,3,1672319414),(138764,3,33822,3,1672319414),(138765,3,33823,3,1672319414),(138766,3,33824,3,1672319414),(138767,3,33825,3,1672319414),(138768,3,33826,3,1672319414),(138769,3,33827,3,1672319414),(138770,3,33828,3,1672319414),(138771,3,33829,3,1672319414),(138772,3,33830,3,1672319414),(138773,3,33831,3,1672319414),(138774,3,33832,3,1672319414),(138775,3,33833,3,1672319414),(138776,3,33834,3,1672319414),(138777,3,33835,3,1672319414),(138778,3,33836,3,1672319414),(138779,3,33837,3,1672319414),(138780,3,33838,3,1672319414),(138781,3,33839,3,1672319414),(138782,3,33840,3,1672319414),(138783,3,33841,3,1672319414),(138784,3,33842,3,1672319414),(138785,3,33843,3,1672319414),(138786,3,33844,3,1672319414),(138787,3,33845,3,1672319414),(138788,3,33846,3,1672319414),(138789,3,33847,3,1672319414),(138790,3,33848,3,1672319414),(138791,3,33849,3,1672319414),(138792,3,33850,3,1672319414),(138793,3,33851,3,1672319414),(138794,3,33852,3,1672319414),(138795,3,33853,3,1672319414),(138796,3,33854,3,1672319414),(138797,3,33855,3,1672319414),(138798,3,33856,3,1672319414),(138799,3,33857,3,1672319414),(138800,3,33858,3,1672319414),(138801,3,33859,3,1672319414),(138802,3,33860,3,1672319414),(138803,3,33861,3,1672319414),(138804,3,33862,3,1672319414),(138805,3,33863,3,1672319414),(138806,3,33864,3,1672319414),(138807,3,33865,3,1672319414),(138808,3,33866,3,1672319414),(138809,3,33867,3,1672319414),(138810,3,33868,3,1672319414),(138811,3,33869,3,1672319414),(138812,3,33870,3,1672319414),(138813,3,33871,3,1672319414),(138814,3,33872,3,1672319414),(138815,3,33873,3,1672319414),(138816,3,33874,3,1672319414),(138817,3,33875,3,1672319414),(138818,3,33876,3,1672319414),(138819,3,33877,3,1672319414),(138820,3,33878,3,1672319414),(138821,3,33879,3,1672319414),(138822,3,33880,3,1672319414),(138823,3,33881,3,1672319414),(138824,3,33882,3,1672319414),(138825,3,33883,3,1672319414),(138826,3,33884,3,1672319414),(138827,3,33885,3,1672319414),(138828,3,33924,3,1672319414),(138829,3,33925,3,1672319414),(138830,3,33926,3,1672319414),(138831,3,33927,3,1672319414),(138832,3,33928,3,1672319414),(138833,3,33929,3,1672319414),(138834,3,33930,3,1672319414),(138835,3,33931,3,1672319414),(138836,3,33932,3,1672319414),(138837,3,33933,3,1672319414),(138838,3,33934,3,1672319414),(138839,3,33935,3,1672319414),(138840,3,33936,3,1672319414),(138841,3,33937,3,1672319414),(138842,3,33938,3,1672319414),(138843,3,33939,3,1672319414),(138844,3,33940,3,1672319414),(138845,3,33941,3,1672319414),(138846,3,33942,3,1672319414),(138847,3,33943,3,1672319414),(138848,3,34269,3,1672319414),(138849,3,34270,3,1672319414),(138850,3,34271,3,1672319414),(138851,3,34272,3,1672319414),(138852,3,34273,3,1672319414),(138853,3,34274,3,1672319414),(138854,3,34275,3,1672319414),(138855,3,34276,3,1672319414),(138856,3,34277,3,1672319414),(138857,3,34278,3,1672319414),(138858,3,34279,3,1672319414),(138859,3,34280,3,1672319414),(138860,3,34281,3,1672319414),(138861,3,34282,3,1672319414),(138862,3,34283,3,1672319414),(138863,3,34284,3,1672319414),(138864,3,34285,3,1672319414),(138865,3,34286,3,1672319414),(138866,3,34287,3,1672319414),(138867,3,34288,3,1672319414),(138868,3,34289,3,1672319414),(138869,3,34290,3,1672319414),(138870,3,34291,3,1672319414),(138871,3,34292,3,1672319414),(138872,3,34293,3,1672319414),(138873,3,34294,3,1672319414),(138874,3,34295,3,1672319414),(138875,3,34296,3,1672319414),(138876,3,34297,3,1672319414),(138877,3,34298,3,1672319414),(138878,3,34299,3,1672319414),(138879,3,34300,3,1672319414),(138880,3,34301,3,1672319414),(138881,3,34302,3,1672319414),(138882,3,34303,3,1672319414),(138883,3,34304,3,1672319414),(138884,3,34305,3,1672319414),(138885,3,34306,3,1672319414),(138886,3,34307,3,1672319414),(138887,3,34308,3,1672319414),(138888,3,34309,3,1672319414),(138889,3,34310,3,1672319414),(138890,3,34311,3,1672319414),(138891,3,34312,3,1672319414),(138892,3,34313,3,1672319414),(138893,3,34325,3,1672319414),(138894,3,34326,3,1672319414),(138895,3,34327,3,1672319414),(138896,3,34328,3,1672319414),(138897,3,34329,3,1672319414),(138898,3,34330,3,1672319414),(138899,3,34331,3,1672319414),(138900,3,34332,3,1672319414),(138901,3,34333,3,1672319414),(138902,3,34334,3,1672319414),(138903,3,34335,3,1672319414),(138904,3,35185,3,1672319414),(138905,3,35186,3,1672319414),(138906,3,35187,3,1672319414),(138907,3,35188,3,1672319414),(138908,3,35189,3,1672319414),(138909,3,35190,3,1672319414),(138910,3,35191,3,1672319414),(138911,3,35192,3,1672319414),(138912,3,35193,3,1672319414),(138913,3,35194,3,1672319414),(138914,3,35195,3,1672319414),(138915,3,35196,3,1672319414),(138916,3,35197,3,1672319414),(138917,3,35198,3,1672319414),(138918,3,35199,3,1672319414),(138919,3,35200,3,1672319414),(138920,3,35201,3,1672319414),(138921,3,35202,3,1672319414),(138922,3,35203,3,1672319414),(138923,3,35204,3,1672319414),(138924,3,35205,3,1672319414),(138925,3,35206,3,1672319414),(138926,3,35207,3,1672319414),(138927,3,35208,3,1672319414),(138928,3,35209,3,1672319414),(138929,3,35210,3,1672319414),(138930,3,35211,3,1672319414),(138931,3,35212,3,1672319414),(138932,3,35213,3,1672319414),(138933,3,35214,3,1672319414),(138934,3,35215,3,1672319414),(138935,3,35216,3,1672319414),(138936,3,35217,3,1672319414),(138937,3,35218,3,1672319414),(138938,3,35219,3,1672319414),(138939,3,35220,3,1672319414),(138940,3,35221,3,1672319414),(138941,3,35222,3,1672319414),(138942,3,35223,3,1672319414),(138943,3,35224,3,1672319414),(138944,3,35225,3,1672319414),(138945,3,35226,3,1672319414),(138946,3,35227,3,1672319414),(138947,3,35228,3,1672319414),(138948,3,35229,3,1672319414),(138949,3,35230,3,1672319414),(138950,3,35231,3,1672319414),(138951,3,35232,3,1672319414),(138952,3,35233,3,1672319414),(138953,3,35234,3,1672319414),(138954,3,35235,3,1672319414),(138955,3,35236,3,1672319414),(138956,3,35237,3,1672319414),(138957,3,35238,3,1672319414),(138958,3,35239,3,1672319414),(138959,3,35240,3,1672319414),(138960,3,35241,3,1672319414),(138961,3,35242,3,1672319414),(138962,3,35243,3,1672319414),(138963,3,35244,3,1672319414),(138964,3,35245,3,1672319414),(138965,3,35246,3,1672319414),(138966,3,35247,3,1672319414),(138967,3,35248,3,1672319414),(138968,3,35249,3,1672319414),(138969,3,35250,3,1672319414),(138970,3,35251,3,1672319414),(138971,3,35252,3,1672319414),(138972,3,35253,3,1672319414),(138973,3,35254,3,1672319414),(138974,3,35255,3,1672319414),(138975,3,35256,3,1672319414),(138976,3,35257,3,1672319414),(138977,3,35258,3,1672319414),(138978,3,35259,3,1672319414),(138979,3,35260,3,1672319414),(138980,3,35261,3,1672319414),(138981,3,38589,3,1672319414),(138982,3,38590,3,1672319414),(138983,3,38591,3,1672319414),(138984,3,38592,3,1672319414),(138985,3,38593,3,1672319414),(138986,3,38594,3,1672319414),(138987,3,38595,3,1672319414),(138988,3,38596,3,1672319414),(138989,3,38597,3,1672319414),(138990,3,38598,3,1672319414),(138991,3,38599,3,1672319414),(138992,3,38600,3,1672319414),(138993,3,38601,3,1672319414),(138994,3,38602,3,1672319414),(138995,3,38603,3,1672319414),(138996,3,38604,3,1672319414),(138997,3,38605,3,1672319414),(138998,3,38606,3,1672319414),(138999,3,38607,3,1672319414),(139000,3,38643,3,1672319414),(139001,3,38644,3,1672319414),(139002,3,38645,3,1672319414),(139003,3,38646,3,1672319414),(139004,3,38647,3,1672319414),(139005,3,38648,3,1672319414),(139006,3,38649,3,1672319414),(139007,3,38650,3,1672319414),(139008,3,38651,3,1672319414),(139009,3,38652,3,1672319414),(139010,3,38653,3,1672319414),(139011,3,38654,3,1672319414),(139012,3,38655,3,1672319414),(139013,3,38656,3,1672319414),(139014,3,38657,3,1672319414),(139015,3,38658,3,1672319414),(139016,3,38659,3,1672319414),(139017,3,38660,3,1672319414),(139018,3,38661,3,1672319414),(139019,3,38697,3,1672319414),(139020,3,38698,3,1672319414),(139021,3,38699,3,1672319414),(139022,3,38700,3,1672319414),(139023,3,38701,3,1672319414),(139024,3,38702,3,1672319414),(139025,3,38703,3,1672319414),(139026,3,38704,3,1672319414),(139027,3,38705,3,1672319414),(139028,3,38706,3,1672319414),(139029,3,38707,3,1672319414),(139030,3,38708,3,1672319414),(139031,3,38709,3,1672319414),(139032,3,38710,3,1672319414),(139033,3,38711,3,1672319414),(139034,3,38712,3,1672319414),(139035,3,38713,3,1672319414),(139036,3,38714,3,1672319414),(139037,3,38715,3,1672319414),(139038,3,38751,3,1672319414),(139039,3,38752,3,1672319414),(139040,3,38753,3,1672319414),(139041,3,38754,3,1672319414),(139042,3,38755,3,1672319414),(139043,3,38756,3,1672319414),(139044,3,38757,3,1672319414),(139045,3,38758,3,1672319414),(139046,3,38759,3,1672319414),(139047,3,38760,3,1672319414),(139048,3,38761,3,1672319414),(139049,3,38762,3,1672319414),(139050,3,38763,3,1672319414),(139051,3,38764,3,1672319414),(139052,3,38765,3,1672319414),(139053,3,38766,3,1672319414),(139054,3,38767,3,1672319414),(139055,3,38768,3,1672319414),(139056,3,38769,3,1672319414),(139057,3,38805,3,1672319414),(139058,3,38806,3,1672319414),(139059,3,38807,3,1672319414),(139060,3,38808,3,1672319414),(139061,3,38809,3,1672319414),(139062,3,38810,3,1672319414),(139063,3,38811,3,1672319414),(139064,3,38812,3,1672319414),(139065,3,38813,3,1672319414),(139066,3,38814,3,1672319414),(139067,3,38815,3,1672319414),(139068,3,38816,3,1672319414),(139069,3,38817,3,1672319414),(139070,3,38818,3,1672319414),(139071,3,38819,3,1672319414),(139072,3,38820,3,1672319414),(139073,3,38821,3,1672319414),(139074,3,38822,3,1672319414),(139075,3,38823,3,1672319414),(139076,3,38859,3,1672319414),(139077,3,38860,3,1672319414),(139078,3,38861,3,1672319414),(139079,3,38862,3,1672319414),(139080,3,38863,3,1672319414),(139081,3,38864,3,1672319414),(139082,3,38865,3,1672319414),(139083,3,38866,3,1672319414),(139084,3,38867,3,1672319414),(139085,3,38868,3,1672319414),(139086,3,38869,3,1672319414),(139087,3,38870,3,1672319414),(139088,3,38871,3,1672319414),(139089,3,38872,3,1672319414),(139090,3,38873,3,1672319414),(139091,3,38874,3,1672319414),(139092,3,38875,3,1672319414),(139093,3,38876,3,1672319414),(139094,3,38877,3,1672319414),(139095,3,38913,3,1672319414),(139096,3,38914,3,1672319414),(139097,3,38915,3,1672319414),(139098,3,38916,3,1672319414),(139099,3,38917,3,1672319414),(139100,3,38918,3,1672319414),(139101,3,38919,3,1672319414),(139102,3,38920,3,1672319414),(139103,3,38921,3,1672319414),(139104,3,38922,3,1672319414),(139105,3,38923,3,1672319414),(139106,3,38924,3,1672319414),(139107,3,38925,3,1672319414),(139108,3,38926,3,1672319414),(139109,3,38927,3,1672319414),(139110,3,38928,3,1672319414),(139111,3,38929,3,1672319414),(139112,3,38930,3,1672319414),(139113,3,38931,3,1672319414),(139114,3,38967,3,1672319414),(139115,3,38968,3,1672319414),(139116,3,38969,3,1672319414),(139117,3,38970,3,1672319414),(139118,3,38971,3,1672319414),(139119,3,38972,3,1672319414),(139120,3,38973,3,1672319414),(139121,3,38974,3,1672319414),(139122,3,38975,3,1672319414),(139123,3,38976,3,1672319414),(139124,3,38977,3,1672319414),(139125,3,38978,3,1672319414),(139126,3,38979,3,1672319414),(139127,3,38980,3,1672319414),(139128,3,38981,3,1672319414),(139129,3,38982,3,1672319414),(139130,3,38983,3,1672319414),(139131,3,38984,3,1672319414),(139132,3,38985,3,1672319414),(139133,3,39021,3,1672319414),(139134,3,39022,3,1672319414),(139135,3,39023,3,1672319414),(139136,3,39024,3,1672319414),(139137,3,39025,3,1672319414),(139138,3,39026,3,1672319414),(139139,3,39027,3,1672319414),(139140,3,39028,3,1672319414),(139141,3,39029,3,1672319414),(139142,3,39030,3,1672319414),(139143,3,39031,3,1672319414),(139144,3,39032,3,1672319414),(139145,3,39033,3,1672319414),(139146,3,39034,3,1672319414),(139147,3,39035,3,1672319414),(139148,3,39036,3,1672319414),(139149,3,39037,3,1672319414),(139150,3,39038,3,1672319414),(139151,3,39039,3,1672319414),(139152,3,39075,3,1672319414),(139153,3,39076,3,1672319414),(139154,3,39077,3,1672319414),(139155,3,39078,3,1672319414),(139156,3,39079,3,1672319414),(139157,3,39080,3,1672319414),(139158,3,39081,3,1672319414),(139159,3,39082,3,1672319414),(139160,3,39083,3,1672319414),(139161,3,39084,3,1672319414),(139162,3,39085,3,1672319414),(139163,3,39086,3,1672319414),(139164,3,39087,3,1672319414),(139165,3,39088,3,1672319414),(139166,3,39089,3,1672319414),(139167,3,39090,3,1672319414),(139168,3,39091,3,1672319414),(139169,3,39092,3,1672319414),(139170,3,39093,3,1672319414),(139171,3,39129,3,1672319414),(139172,3,39130,3,1672319414),(139173,3,39131,3,1672319414),(139174,3,39132,3,1672319414),(139175,3,39133,3,1672319414),(139176,3,39134,3,1672319414),(139177,3,39135,3,1672319414),(139178,3,39136,3,1672319414),(139179,3,39137,3,1672319414),(139180,3,39138,3,1672319414),(139181,3,39139,3,1672319414),(139182,3,39140,3,1672319414),(139183,3,39141,3,1672319414),(139184,3,39142,3,1672319414),(139185,3,39143,3,1672319414),(139186,3,39144,3,1672319414),(139187,3,39145,3,1672319414),(139188,3,39146,3,1672319414),(139189,3,39147,3,1672319414),(139190,3,39183,3,1672319414),(139191,3,39184,3,1672319414),(139192,3,39185,3,1672319414),(139193,3,39186,3,1672319414),(139194,3,39187,3,1672319414),(139195,3,39188,3,1672319414),(139196,3,39189,3,1672319414),(139197,3,39190,3,1672319414),(139198,3,39191,3,1672319414),(139199,3,39192,3,1672319414),(139200,3,39193,3,1672319414),(139201,3,39194,3,1672319414),(139202,3,39195,3,1672319414),(139203,3,39196,3,1672319414),(139204,3,39197,3,1672319414),(139205,3,39198,3,1672319414),(139206,3,39199,3,1672319414),(139207,3,39200,3,1672319414),(139208,3,39201,3,1672319414),(139209,3,39237,3,1672319414),(139210,3,39238,3,1672319414),(139211,3,39239,3,1672319414),(139212,3,39240,3,1672319414),(139213,3,39241,3,1672319414),(139214,3,39242,3,1672319414),(139215,3,39243,3,1672319414),(139216,3,39244,3,1672319414),(139217,3,39245,3,1672319414),(139218,3,39246,3,1672319414),(139219,3,39247,3,1672319414),(139220,3,39248,3,1672319414),(139221,3,39249,3,1672319414),(139222,3,39250,3,1672319414),(139223,3,39251,3,1672319414),(139224,3,39252,3,1672319414),(139225,3,39253,3,1672319414),(139226,3,39254,3,1672319414),(139227,3,39255,3,1672319414),(139228,3,39291,3,1672319414),(139229,3,39292,3,1672319414),(139230,3,39293,3,1672319414),(139231,3,39294,3,1672319414),(139232,3,39295,3,1672319414),(139233,3,39296,3,1672319414),(139234,3,39297,3,1672319414),(139235,3,39298,3,1672319414),(139236,3,39299,3,1672319414),(139237,3,39300,3,1672319414),(139238,3,39301,3,1672319414),(139239,3,39302,3,1672319414),(139240,3,39303,3,1672319414),(139241,3,39304,3,1672319414),(139242,3,39305,3,1672319414),(139243,3,39306,3,1672319414),(139244,3,39307,3,1672319414),(139245,3,39308,3,1672319414),(139246,3,39309,3,1672319414),(139247,3,39615,3,1672319414),(139248,3,39616,3,1672319414),(139249,3,39617,3,1672319414),(139250,3,39618,3,1672319414),(139251,3,39619,3,1672319414),(139252,3,39620,3,1672319414),(139253,3,39621,3,1672319414),(139254,3,39622,3,1672319414),(139255,3,39623,3,1672319414),(139256,3,39624,3,1672319414),(139257,3,39625,3,1672319414),(139258,3,39626,3,1672319414),(139259,3,39627,3,1672319414),(139260,3,39628,3,1672319414),(139261,3,39629,3,1672319414),(139262,3,39630,3,1672319414),(139263,3,39631,3,1672319414),(139264,3,39632,3,1672319414),(139265,3,39633,3,1672319414),(139266,3,39669,3,1672319414),(139267,3,39670,3,1672319414),(139268,3,39671,3,1672319414),(139269,3,39672,3,1672319414),(139270,3,39673,3,1672319414),(139271,3,39674,3,1672319414),(139272,3,39675,3,1672319414),(139273,3,39676,3,1672319414),(139274,3,39677,3,1672319414),(139275,3,39678,3,1672319414),(139276,3,39679,3,1672319414),(139277,3,39680,3,1672319414),(139278,3,39681,3,1672319414),(139279,3,39682,3,1672319414),(139280,3,39683,3,1672319414),(139281,3,39684,3,1672319414),(139282,3,39685,3,1672319414),(139283,3,39686,3,1672319414),(139284,3,39687,3,1672319414),(139285,3,39723,3,1672319414),(139286,3,39724,3,1672319414),(139287,3,39725,3,1672319414),(139288,3,39726,3,1672319414),(139289,3,39727,3,1672319414),(139290,3,39728,3,1672319414),(139291,3,39729,3,1672319414),(139292,3,39730,3,1672319414),(139293,3,39731,3,1672319414),(139294,3,39732,3,1672319414),(139295,3,39733,3,1672319414),(139296,3,39734,3,1672319414),(139297,3,39735,3,1672319414),(139298,3,39736,3,1672319414),(139299,3,39737,3,1672319414),(139300,3,39738,3,1672319414),(139301,3,39739,3,1672319414),(139302,3,39740,3,1672319414),(139303,3,39741,3,1672319414),(139304,3,40147,3,1672319414),(139305,3,40148,3,1672319414),(139306,3,40149,3,1672319414),(139307,3,40150,3,1672319414),(139308,3,40151,3,1672319414),(139309,3,40152,3,1672319414),(139310,3,40153,3,1672319414),(139311,3,40154,3,1672319414),(139312,3,40155,3,1672319414),(139313,3,40156,3,1672319414),(139314,3,40157,3,1672319414),(139315,3,40158,3,1672319414),(139316,3,40159,3,1672319414),(139317,3,40160,3,1672319414),(139318,3,40161,3,1672319414),(139319,3,40162,3,1672319414),(139320,3,40163,3,1672319414),(139321,3,40164,3,1672319414),(139322,3,40165,3,1672319414),(139323,3,40166,3,1672319414),(139324,3,40167,3,1672319414),(139325,3,40168,3,1672319414),(139326,3,40169,3,1672319414),(139327,3,40170,3,1672319414),(139328,3,40171,3,1672319414),(139329,3,40172,3,1672319414),(139330,3,40811,3,1672319414),(139331,3,40812,3,1672319414),(139332,3,40813,3,1672319414),(139333,3,40814,3,1672319414),(139334,3,40815,3,1672319414),(139335,3,40816,3,1672319414),(139336,3,40817,3,1672319414),(139337,3,40818,3,1672319414),(139338,3,40819,3,1672319414),(139339,3,40820,3,1672319414),(139340,3,41618,3,1672319414),(139341,3,41619,3,1672319414),(139342,3,41620,3,1672319414),(139343,3,41621,3,1672319414),(139344,3,41622,3,1672319414),(139345,3,41623,3,1672319414),(139346,3,41624,3,1672319414),(139347,3,41625,3,1672319414),(139348,3,41626,3,1672319414),(139349,3,41639,3,1672319414),(139350,3,41640,3,1672319414),(139351,3,41641,3,1672319414),(139352,3,41642,3,1672319414),(139353,3,41643,3,1672319414),(139354,3,41644,3,1672319414),(139355,3,41645,3,1672319414),(139356,3,41646,3,1672319414),(139357,3,41647,3,1672319414),(139358,3,41660,3,1672319414),(139359,3,41661,3,1672319414),(139360,3,41662,3,1672319414),(139361,3,41663,3,1672319414),(139362,3,41664,3,1672319414),(139363,3,41665,3,1672319414),(139364,3,41666,3,1672319414),(139365,3,41667,3,1672319414),(139366,3,41668,3,1672319414),(139367,3,41681,3,1672319414),(139368,3,41682,3,1672319414),(139369,3,41683,3,1672319414),(139370,3,41684,3,1672319414),(139371,3,41685,3,1672319414),(139372,3,41686,3,1672319414),(139373,3,41687,3,1672319414),(139374,3,41688,3,1672319414),(139375,3,41689,3,1672319414),(139376,3,41702,3,1672319414),(139377,3,41703,3,1672319414),(139378,3,41704,3,1672319414),(139379,3,41705,3,1672319414),(139380,3,41706,3,1672319414),(139381,3,41707,3,1672319414),(139382,3,41708,3,1672319414),(139383,3,41709,3,1672319414),(139384,3,41710,3,1672319414),(139385,3,41723,3,1672319414),(139386,3,41724,3,1672319414),(139387,3,41725,3,1672319414),(139388,3,41726,3,1672319414),(139389,3,41727,3,1672319414),(139390,3,41728,3,1672319414),(139391,3,41729,3,1672319414),(139392,3,41730,3,1672319414),(139393,3,41731,3,1672319414),(139394,3,41744,3,1672319414),(139395,3,41745,3,1672319414),(139396,3,41746,3,1672319414),(139397,3,41747,3,1672319414),(139398,3,41748,3,1672319414),(139399,3,41749,3,1672319414),(139400,3,41750,3,1672319414),(139401,3,41751,3,1672319414),(139402,3,41752,3,1672319414),(139403,3,41765,3,1672319414),(139404,3,41766,3,1672319414),(139405,3,41767,3,1672319414),(139406,3,41768,3,1672319414),(139407,3,41769,3,1672319414),(139408,3,41770,3,1672319414),(139409,3,41771,3,1672319414),(139410,3,41772,3,1672319414),(139411,3,41773,3,1672319414),(139412,3,41786,3,1672319414),(139413,3,41787,3,1672319414),(139414,3,41788,3,1672319414),(139415,3,41789,3,1672319414),(139416,3,41790,3,1672319414),(139417,3,41791,3,1672319414),(139418,3,41792,3,1672319414),(139419,3,41793,3,1672319414),(139420,3,41794,3,1672319414),(139421,3,41807,3,1672319414),(139422,3,41808,3,1672319414),(139423,3,41809,3,1672319414),(139424,3,41810,3,1672319414),(139425,3,41811,3,1672319414),(139426,3,41812,3,1672319414),(139427,3,41813,3,1672319414),(139428,3,41814,3,1672319414),(139429,3,41815,3,1672319414),(139430,3,41828,3,1672319414),(139431,3,41829,3,1672319414),(139432,3,41830,3,1672319414),(139433,3,41831,3,1672319414),(139434,3,41832,3,1672319414),(139435,3,41833,3,1672319414),(139436,3,41834,3,1672319414),(139437,3,41835,3,1672319414),(139438,3,41836,3,1672319414),(139439,3,41849,3,1672319414),(139440,3,41850,3,1672319414),(139441,3,41851,3,1672319414),(139442,3,41852,3,1672319414),(139443,3,41853,3,1672319414),(139444,3,41854,3,1672319414),(139445,3,41855,3,1672319414),(139446,3,41856,3,1672319414),(139447,3,41857,3,1672319414),(139448,3,41870,3,1672319414),(139449,3,41871,3,1672319414),(139450,3,41872,3,1672319414),(139451,3,41873,3,1672319414),(139452,3,41874,3,1672319414),(139453,3,41875,3,1672319414),(139454,3,41876,3,1672319414),(139455,3,41877,3,1672319414),(139456,3,41878,3,1672319414),(139457,3,41891,3,1672319414),(139458,3,41892,3,1672319414),(139459,3,41893,3,1672319414),(139460,3,41894,3,1672319414),(139461,3,41895,3,1672319414),(139462,3,41896,3,1672319414),(139463,3,41897,3,1672319414),(139464,3,41898,3,1672319414),(139465,3,41899,3,1672319414),(139466,3,42017,3,1672319414),(139467,3,42018,3,1672319414),(139468,3,42019,3,1672319414),(139469,3,42020,3,1672319414),(139470,3,42021,3,1672319414),(139471,3,42022,3,1672319414),(139472,3,42023,3,1672319414),(139473,3,42024,3,1672319414),(139474,3,42025,3,1672319414),(139475,3,42038,3,1672319414),(139476,3,42039,3,1672319414),(139477,3,42040,3,1672319414),(139478,3,42041,3,1672319414),(139479,3,42042,3,1672319414),(139480,3,42043,3,1672319414),(139481,3,42044,3,1672319414),(139482,3,42045,3,1672319414),(139483,3,42046,3,1672319414),(139484,3,42059,3,1672319414),(139485,3,42060,3,1672319414),(139486,3,42061,3,1672319414),(139487,3,42062,3,1672319414),(139488,3,42063,3,1672319414),(139489,3,42064,3,1672319414),(139490,3,42065,3,1672319414),(139491,3,42066,3,1672319414),(139492,3,42067,3,1672319414),(139493,3,42101,3,1672319414),(139494,3,42102,3,1672319414),(139495,3,42103,3,1672319414),(139496,3,42104,3,1672319414),(139497,3,42105,3,1672319414),(139498,3,42106,3,1672319414),(139499,3,42107,3,1672319414),(139500,3,42108,3,1672319414),(139501,3,42109,3,1672319414),(139502,3,42727,3,1672319414),(139503,3,42728,3,1672319414),(139504,3,42729,3,1672319414),(139505,3,42730,3,1672319414),(139506,3,42731,3,1672319414),(139507,3,42732,3,1672319414),(139508,3,42733,3,1672319414),(139509,3,42734,3,1672319414),(139510,3,42735,3,1672319414),(139511,3,42736,3,1672319414),(139512,3,42737,3,1672319414),(139513,3,43566,3,1672319414),(139514,3,43567,3,1672319414),(139515,3,43568,3,1672319414),(139516,3,43569,3,1672319414),(139517,3,43570,3,1672319414),(139518,3,43571,3,1672319414),(139519,3,43572,3,1672319414),(139520,3,43573,3,1672319414),(139521,3,43574,3,1672319414),(139522,3,43575,3,1672319414),(139523,3,43576,3,1672319414),(139524,3,43577,3,1672319414),(139525,3,43578,3,1672319414),(139526,3,43579,3,1672319414),(139527,3,43580,3,1672319414),(139528,3,43581,3,1672319414),(139529,3,43582,3,1672319414),(139530,3,43583,3,1672319414),(139531,3,43584,3,1672319414),(139532,3,43585,3,1672319414),(139533,3,43586,3,1672319414),(139534,3,43587,3,1672319414),(139535,3,43588,3,1672319414),(139536,3,43589,3,1672319414),(139537,3,43590,3,1672319414),(139538,3,43591,3,1672319414),(139539,3,44237,3,1672319414),(139540,3,44238,3,1672319414),(139541,3,44239,3,1672319414),(139542,3,44240,3,1672319414),(139543,3,44241,3,1672319414),(139544,3,44242,3,1672319414),(139545,3,44243,3,1672319414),(139546,3,44244,3,1672319414),(139547,3,44245,3,1672319414),(139548,3,44345,3,1672319414),(139549,3,44346,3,1672319414),(139550,3,44347,3,1672319414),(139551,3,44348,3,1672319414),(139552,3,44349,3,1672319414),(139553,3,44350,3,1672319414),(139554,3,44353,3,1672319414),(139555,3,44354,3,1672319414),(139556,3,44355,3,1672319414),(139557,3,44356,3,1672319414),(139558,3,44357,3,1672319414),(139559,3,44358,3,1672319414),(139560,3,44448,3,1672319414),(139561,3,44449,3,1672319414),(139562,1,10388,2,1672319414),(139563,1,10389,2,1672319414),(139564,1,10388,3,1672319414),(139565,1,10389,3,1672319414),(139566,3,22867,2,1672319414),(139567,3,23329,2,1672319414),(139568,3,27937,2,1672319414),(139569,3,27938,2,1672319414),(139570,3,27939,2,1672319414),(139571,3,30472,2,1672319414),(139572,3,30473,2,1672319414),(139573,3,30520,2,1672319414),(139574,3,30521,2,1672319414),(139575,3,30678,2,1672319414),(139576,3,30679,2,1672319414),(139577,3,31122,2,1672319414),(139578,3,31123,2,1672319414),(139579,3,31124,2,1672319414),(139580,3,31125,2,1672319414),(139581,3,31126,2,1672319414),(139582,3,31127,2,1672319414),(139583,3,31253,2,1672319414),(139584,3,31254,2,1672319414),(139585,3,31255,2,1672319414),(139586,3,31256,2,1672319414),(139587,3,31257,2,1672319414),(139588,3,31761,2,1672319414),(139589,3,31762,2,1672319414),(139590,3,31763,2,1672319414),(139591,3,31764,2,1672319414),(139592,3,31765,2,1672319414),(139593,3,32404,2,1672319414),(139594,3,33133,2,1672319414),(139595,3,33147,2,1672319414),(139596,3,33161,2,1672319414),(139597,3,33205,2,1672319414),(139598,3,33225,2,1672319414),(139599,3,33248,2,1672319414),(139600,3,33257,2,1672319414),(139601,3,33276,2,1672319414),(139602,3,33295,2,1672319414),(139603,3,33306,2,1672319414),(139604,3,33307,2,1672319414),(139605,3,33308,2,1672319414),(139606,3,33309,2,1672319414),(139607,3,33310,2,1672319414),(139608,3,33311,2,1672319414),(139609,3,33352,2,1672319414),(139610,3,33353,2,1672319414),(139611,3,33354,2,1672319414),(139612,3,33355,2,1672319414),(139613,3,33356,2,1672319414),(139614,3,33808,2,1672319414),(139615,3,33809,2,1672319414),(139616,3,33810,2,1672319414),(139617,3,33811,2,1672319414),(139618,3,33920,2,1672319414),(139619,3,33921,2,1672319414),(139620,3,33922,2,1672319414),(139621,3,33923,2,1672319414),(139622,3,34260,2,1672319414),(139623,3,34261,2,1672319414),(139624,3,34262,2,1672319414),(139625,3,34263,2,1672319414),(139626,3,34264,2,1672319414),(139627,3,34265,2,1672319414),(139628,3,34266,2,1672319414),(139629,3,34267,2,1672319414),(139630,3,34268,2,1672319414),(139631,3,34324,2,1672319414),(139632,3,35177,2,1672319414),(139633,3,35178,2,1672319414),(139634,3,35179,2,1672319414),(139635,3,35180,2,1672319414),(139636,3,35181,2,1672319414),(139637,3,35182,2,1672319414),(139638,3,35183,2,1672319414),(139639,3,35184,2,1672319414),(139640,3,38582,2,1672319414),(139641,3,38583,2,1672319414),(139642,3,38584,2,1672319414),(139643,3,38585,2,1672319414),(139644,3,38586,2,1672319414),(139645,3,38587,2,1672319414),(139646,3,38588,2,1672319414),(139647,3,38636,2,1672319414),(139648,3,38637,2,1672319414),(139649,3,38638,2,1672319414),(139650,3,38639,2,1672319414),(139651,3,38640,2,1672319414),(139652,3,38641,2,1672319414),(139653,3,38642,2,1672319414),(139654,3,38690,2,1672319414),(139655,3,38691,2,1672319414),(139656,3,38692,2,1672319414),(139657,3,38693,2,1672319414),(139658,3,38694,2,1672319414),(139659,3,38695,2,1672319414),(139660,3,38696,2,1672319414),(139661,3,38744,2,1672319414),(139662,3,38745,2,1672319414),(139663,3,38746,2,1672319414),(139664,3,38747,2,1672319414),(139665,3,38748,2,1672319414),(139666,3,38749,2,1672319414),(139667,3,38750,2,1672319414),(139668,3,38798,2,1672319414),(139669,3,38799,2,1672319414),(139670,3,38800,2,1672319414),(139671,3,38801,2,1672319414),(139672,3,38802,2,1672319414),(139673,3,38803,2,1672319414),(139674,3,38804,2,1672319414),(139675,3,38852,2,1672319414),(139676,3,38853,2,1672319414),(139677,3,38854,2,1672319414),(139678,3,38855,2,1672319414),(139679,3,38856,2,1672319414),(139680,3,38857,2,1672319414),(139681,3,38858,2,1672319414),(139682,3,38906,2,1672319414),(139683,3,38907,2,1672319414),(139684,3,38908,2,1672319414),(139685,3,38909,2,1672319414),(139686,3,38910,2,1672319414),(139687,3,38911,2,1672319414),(139688,3,38912,2,1672319414),(139689,3,38960,2,1672319414),(139690,3,38961,2,1672319414),(139691,3,38962,2,1672319414),(139692,3,38963,2,1672319414),(139693,3,38964,2,1672319414),(139694,3,38965,2,1672319414),(139695,3,38966,2,1672319414),(139696,3,39014,2,1672319414),(139697,3,39015,2,1672319414),(139698,3,39016,2,1672319414),(139699,3,39017,2,1672319414),(139700,3,39018,2,1672319414),(139701,3,39019,2,1672319414),(139702,3,39020,2,1672319414),(139703,3,39068,2,1672319414),(139704,3,39069,2,1672319414),(139705,3,39070,2,1672319414),(139706,3,39071,2,1672319414),(139707,3,39072,2,1672319414),(139708,3,39073,2,1672319414),(139709,3,39074,2,1672319414),(139710,3,39122,2,1672319414),(139711,3,39123,2,1672319414),(139712,3,39124,2,1672319414),(139713,3,39125,2,1672319414),(139714,3,39126,2,1672319414),(139715,3,39127,2,1672319414),(139716,3,39128,2,1672319414),(139717,3,39176,2,1672319414),(139718,3,39177,2,1672319414),(139719,3,39178,2,1672319414),(139720,3,39179,2,1672319414),(139721,3,39180,2,1672319414),(139722,3,39181,2,1672319414),(139723,3,39182,2,1672319414),(139724,3,39230,2,1672319414),(139725,3,39231,2,1672319414),(139726,3,39232,2,1672319414),(139727,3,39233,2,1672319414),(139728,3,39234,2,1672319414),(139729,3,39235,2,1672319414),(139730,3,39236,2,1672319414),(139731,3,39284,2,1672319414),(139732,3,39285,2,1672319414),(139733,3,39286,2,1672319414),(139734,3,39287,2,1672319414),(139735,3,39288,2,1672319414),(139736,3,39289,2,1672319414),(139737,3,39290,2,1672319414),(139738,3,39608,2,1672319414),(139739,3,39609,2,1672319414),(139740,3,39610,2,1672319414),(139741,3,39611,2,1672319414),(139742,3,39612,2,1672319414),(139743,3,39613,2,1672319414),(139744,3,39614,2,1672319414),(139745,3,39662,2,1672319414),(139746,3,39663,2,1672319414),(139747,3,39664,2,1672319414),(139748,3,39665,2,1672319414),(139749,3,39666,2,1672319414),(139750,3,39667,2,1672319414),(139751,3,39668,2,1672319414),(139752,3,39716,2,1672319414),(139753,3,39717,2,1672319414),(139754,3,39718,2,1672319414),(139755,3,39719,2,1672319414),(139756,3,39720,2,1672319414),(139757,3,39721,2,1672319414),(139758,3,39722,2,1672319414),(139759,3,40138,2,1672319414),(139760,3,40809,2,1672319414),(139761,3,40810,2,1672319414),(139762,3,41617,2,1672319414),(139763,3,41638,2,1672319414),(139764,3,41659,2,1672319414),(139765,3,41680,2,1672319414),(139766,3,41701,2,1672319414),(139767,3,41722,2,1672319414),(139768,3,41743,2,1672319414),(139769,3,41764,2,1672319414),(139770,3,41785,2,1672319414),(139771,3,41806,2,1672319414),(139772,3,41827,2,1672319414),(139773,3,41848,2,1672319414),(139774,3,41869,2,1672319414),(139775,3,41890,2,1672319414),(139776,3,42016,2,1672319414),(139777,3,42037,2,1672319414),(139778,3,42058,2,1672319414),(139779,3,42100,2,1672319414),(139780,3,42726,2,1672319414),(139781,3,43565,2,1672319414),(139782,3,44236,2,1672319414),(139783,3,44344,2,1672319414),(139784,3,44352,2,1672319414),(139785,3,22867,3,1672319414),(139786,3,23329,3,1672319414),(139787,3,27937,3,1672319414),(139788,3,27938,3,1672319414),(139789,3,27939,3,1672319414),(139790,3,30472,3,1672319414),(139791,3,30473,3,1672319414),(139792,3,30520,3,1672319414),(139793,3,30521,3,1672319414),(139794,3,30678,3,1672319414),(139795,3,30679,3,1672319414),(139796,3,31122,3,1672319414),(139797,3,31123,3,1672319414),(139798,3,31124,3,1672319414),(139799,3,31125,3,1672319414),(139800,3,31126,3,1672319414),(139801,3,31127,3,1672319414),(139802,3,31253,3,1672319414),(139803,3,31254,3,1672319414),(139804,3,31255,3,1672319414),(139805,3,31256,3,1672319414),(139806,3,31257,3,1672319414),(139807,3,31761,3,1672319414),(139808,3,31762,3,1672319414),(139809,3,31763,3,1672319414),(139810,3,31764,3,1672319414),(139811,3,31765,3,1672319414),(139812,3,32404,3,1672319414),(139813,3,33133,3,1672319414),(139814,3,33147,3,1672319414),(139815,3,33161,3,1672319414),(139816,3,33205,3,1672319414),(139817,3,33225,3,1672319414),(139818,3,33248,3,1672319414),(139819,3,33257,3,1672319414),(139820,3,33276,3,1672319414),(139821,3,33295,3,1672319414),(139822,3,33306,3,1672319414),(139823,3,33307,3,1672319414),(139824,3,33308,3,1672319414),(139825,3,33309,3,1672319414),(139826,3,33310,3,1672319414),(139827,3,33311,3,1672319414),(139828,3,33352,3,1672319414),(139829,3,33353,3,1672319414),(139830,3,33354,3,1672319414),(139831,3,33355,3,1672319414),(139832,3,33356,3,1672319414),(139833,3,33808,3,1672319414),(139834,3,33809,3,1672319414),(139835,3,33810,3,1672319414),(139836,3,33811,3,1672319414),(139837,3,33920,3,1672319414),(139838,3,33921,3,1672319414),(139839,3,33922,3,1672319414),(139840,3,33923,3,1672319414),(139841,3,34260,3,1672319414),(139842,3,34261,3,1672319414),(139843,3,34262,3,1672319414),(139844,3,34263,3,1672319414),(139845,3,34264,3,1672319414),(139846,3,34265,3,1672319414),(139847,3,34266,3,1672319414),(139848,3,34267,3,1672319414),(139849,3,34268,3,1672319414),(139850,3,34324,3,1672319414),(139851,3,35177,3,1672319414),(139852,3,35178,3,1672319414),(139853,3,35179,3,1672319414),(139854,3,35180,3,1672319414),(139855,3,35181,3,1672319414),(139856,3,35182,3,1672319414),(139857,3,35183,3,1672319414),(139858,3,35184,3,1672319414),(139859,3,38582,3,1672319414),(139860,3,38583,3,1672319414),(139861,3,38584,3,1672319414),(139862,3,38585,3,1672319414),(139863,3,38586,3,1672319414),(139864,3,38587,3,1672319414),(139865,3,38588,3,1672319414),(139866,3,38636,3,1672319414),(139867,3,38637,3,1672319414),(139868,3,38638,3,1672319414),(139869,3,38639,3,1672319414),(139870,3,38640,3,1672319414),(139871,3,38641,3,1672319414),(139872,3,38642,3,1672319414),(139873,3,38690,3,1672319414),(139874,3,38691,3,1672319414),(139875,3,38692,3,1672319414),(139876,3,38693,3,1672319414),(139877,3,38694,3,1672319414),(139878,3,38695,3,1672319414),(139879,3,38696,3,1672319414),(139880,3,38744,3,1672319414),(139881,3,38745,3,1672319414),(139882,3,38746,3,1672319414),(139883,3,38747,3,1672319414),(139884,3,38748,3,1672319414),(139885,3,38749,3,1672319414),(139886,3,38750,3,1672319414),(139887,3,38798,3,1672319414),(139888,3,38799,3,1672319414),(139889,3,38800,3,1672319414),(139890,3,38801,3,1672319414),(139891,3,38802,3,1672319414),(139892,3,38803,3,1672319414),(139893,3,38804,3,1672319414),(139894,3,38852,3,1672319414),(139895,3,38853,3,1672319414),(139896,3,38854,3,1672319414),(139897,3,38855,3,1672319414),(139898,3,38856,3,1672319414),(139899,3,38857,3,1672319414),(139900,3,38858,3,1672319414),(139901,3,38906,3,1672319414),(139902,3,38907,3,1672319414),(139903,3,38908,3,1672319414),(139904,3,38909,3,1672319414),(139905,3,38910,3,1672319414),(139906,3,38911,3,1672319414),(139907,3,38912,3,1672319414),(139908,3,38960,3,1672319414),(139909,3,38961,3,1672319414),(139910,3,38962,3,1672319414),(139911,3,38963,3,1672319414),(139912,3,38964,3,1672319414),(139913,3,38965,3,1672319414),(139914,3,38966,3,1672319414),(139915,3,39014,3,1672319414),(139916,3,39015,3,1672319414),(139917,3,39016,3,1672319414),(139918,3,39017,3,1672319414),(139919,3,39018,3,1672319414),(139920,3,39019,3,1672319414),(139921,3,39020,3,1672319414),(139922,3,39068,3,1672319414),(139923,3,39069,3,1672319414),(139924,3,39070,3,1672319414),(139925,3,39071,3,1672319414),(139926,3,39072,3,1672319414),(139927,3,39073,3,1672319414),(139928,3,39074,3,1672319414),(139929,3,39122,3,1672319414),(139930,3,39123,3,1672319414),(139931,3,39124,3,1672319414),(139932,3,39125,3,1672319414),(139933,3,39126,3,1672319414),(139934,3,39127,3,1672319414),(139935,3,39128,3,1672319414),(139936,3,39176,3,1672319414),(139937,3,39177,3,1672319414),(139938,3,39178,3,1672319414),(139939,3,39179,3,1672319414),(139940,3,39180,3,1672319414),(139941,3,39181,3,1672319414),(139942,3,39182,3,1672319414),(139943,3,39230,3,1672319414),(139944,3,39231,3,1672319414),(139945,3,39232,3,1672319414),(139946,3,39233,3,1672319414),(139947,3,39234,3,1672319414),(139948,3,39235,3,1672319414),(139949,3,39236,3,1672319414),(139950,3,39284,3,1672319414),(139951,3,39285,3,1672319414),(139952,3,39286,3,1672319414),(139953,3,39287,3,1672319414),(139954,3,39288,3,1672319414),(139955,3,39289,3,1672319414),(139956,3,39290,3,1672319414),(139957,3,39608,3,1672319414),(139958,3,39609,3,1672319414),(139959,3,39610,3,1672319414),(139960,3,39611,3,1672319414),(139961,3,39612,3,1672319414),(139962,3,39613,3,1672319414),(139963,3,39614,3,1672319414),(139964,3,39662,3,1672319414),(139965,3,39663,3,1672319414),(139966,3,39664,3,1672319414),(139967,3,39665,3,1672319414),(139968,3,39666,3,1672319414),(139969,3,39667,3,1672319414),(139970,3,39668,3,1672319414),(139971,3,39716,3,1672319414),(139972,3,39717,3,1672319414),(139973,3,39718,3,1672319414),(139974,3,39719,3,1672319414),(139975,3,39720,3,1672319414),(139976,3,39721,3,1672319414),(139977,3,39722,3,1672319414),(139978,3,40138,3,1672319414),(139979,3,40809,3,1672319414),(139980,3,40810,3,1672319414),(139981,3,41617,3,1672319414),(139982,3,41638,3,1672319414),(139983,3,41659,3,1672319414),(139984,3,41680,3,1672319414),(139985,3,41701,3,1672319414),(139986,3,41722,3,1672319414),(139987,3,41743,3,1672319414),(139988,3,41764,3,1672319414),(139989,3,41785,3,1672319414),(139990,3,41806,3,1672319414),(139991,3,41827,3,1672319414),(139992,3,41848,3,1672319414),(139993,3,41869,3,1672319414),(139994,3,41890,3,1672319414),(139995,3,42016,3,1672319414),(139996,3,42037,3,1672319414),(139997,3,42058,3,1672319414),(139998,3,42100,3,1672319414),(139999,3,42726,3,1672319414),(140000,3,43565,3,1672319414),(140001,3,44236,3,1672319414),(140002,3,44344,3,1672319414),(140003,3,44352,3,1672319414),(140004,3,22835,2,1672319414),(140005,3,22836,2,1672319414),(140006,3,22837,2,1672319414),(140007,3,22838,2,1672319414),(140008,3,22839,2,1672319414),(140009,3,22840,2,1672319414),(140010,3,22841,2,1672319414),(140011,3,22842,2,1672319414),(140012,3,22843,2,1672319414),(140013,3,22844,2,1672319414),(140014,3,22845,2,1672319414),(140015,3,22846,2,1672319414),(140016,3,22848,2,1672319414),(140017,3,22851,2,1672319414),(140018,3,22852,2,1672319414),(140019,3,22853,2,1672319414),(140020,3,22854,2,1672319414),(140021,3,22855,2,1672319414),(140022,3,22856,2,1672319414),(140023,3,22857,2,1672319414),(140024,3,22858,2,1672319414),(140025,3,22859,2,1672319414),(140026,3,22860,2,1672319414),(140027,3,22861,2,1672319414),(140028,3,22862,2,1672319414),(140029,3,22863,2,1672319414),(140030,3,23649,2,1672319414),(140031,3,23650,2,1672319414),(140032,3,23651,2,1672319414),(140033,3,27930,2,1672319414),(140034,3,27931,2,1672319414),(140035,3,27935,2,1672319414),(140036,3,27936,2,1672319414),(140037,3,28804,2,1672319414),(140038,3,28805,2,1672319414),(140039,3,28810,2,1672319414),(140040,3,28811,2,1672319414),(140041,3,28812,2,1672319414),(140042,3,28813,2,1672319414),(140043,3,28814,2,1672319414),(140044,3,28815,2,1672319414),(140045,3,28816,2,1672319414),(140046,3,28817,2,1672319414),(140047,3,28818,2,1672319414),(140048,3,28819,2,1672319414),(140049,3,28820,2,1672319414),(140050,3,28821,2,1672319414),(140051,3,28822,2,1672319414),(140052,3,28823,2,1672319414),(140053,3,28824,2,1672319414),(140054,3,28825,2,1672319414),(140055,3,28826,2,1672319414),(140056,3,28827,2,1672319414),(140057,3,28828,2,1672319414),(140058,3,28829,2,1672319414),(140059,3,28830,2,1672319414),(140060,3,28831,2,1672319414),(140061,3,28832,2,1672319414),(140062,3,28833,2,1672319414),(140063,3,30121,2,1672319414),(140064,3,30122,2,1672319414),(140065,3,30123,2,1672319414),(140066,3,30431,2,1672319414),(140067,3,30432,2,1672319414),(140068,3,30433,2,1672319414),(140069,3,30434,2,1672319414),(140070,3,30435,2,1672319414),(140071,3,30436,2,1672319414),(140072,3,30437,2,1672319414),(140073,3,30438,2,1672319414),(140074,3,30439,2,1672319414),(140075,3,30440,2,1672319414),(140076,3,30441,2,1672319414),(140077,3,30442,2,1672319414),(140078,3,30443,2,1672319414),(140079,3,30444,2,1672319414),(140080,3,30445,2,1672319414),(140081,3,30446,2,1672319414),(140082,3,30447,2,1672319414),(140083,3,30449,2,1672319414),(140084,3,30450,2,1672319414),(140085,3,30451,2,1672319414),(140086,3,30452,2,1672319414),(140087,3,30453,2,1672319414),(140088,3,30454,2,1672319414),(140089,3,30455,2,1672319414),(140090,3,30456,2,1672319414),(140091,3,30457,2,1672319414),(140092,3,30458,2,1672319414),(140093,3,30459,2,1672319414),(140094,3,30460,2,1672319414),(140095,3,30461,2,1672319414),(140096,3,30462,2,1672319414),(140097,3,30463,2,1672319414),(140098,3,30464,2,1672319414),(140099,3,30465,2,1672319414),(140100,3,30466,2,1672319414),(140101,3,30470,2,1672319414),(140102,3,30471,2,1672319414),(140103,3,30479,2,1672319414),(140104,3,30480,2,1672319414),(140105,3,30481,2,1672319414),(140106,3,30482,2,1672319414),(140107,3,30483,2,1672319414),(140108,3,30484,2,1672319414),(140109,3,30485,2,1672319414),(140110,3,30486,2,1672319414),(140111,3,30487,2,1672319414),(140112,3,30488,2,1672319414),(140113,3,30489,2,1672319414),(140114,3,30490,2,1672319414),(140115,3,30491,2,1672319414),(140116,3,30492,2,1672319414),(140117,3,30493,2,1672319414),(140118,3,30494,2,1672319414),(140119,3,30495,2,1672319414),(140120,3,30496,2,1672319414),(140121,3,30497,2,1672319414),(140122,3,30499,2,1672319414),(140123,3,30500,2,1672319414),(140124,3,30503,2,1672319414),(140125,3,30504,2,1672319414),(140126,3,30505,2,1672319414),(140127,3,30506,2,1672319414),(140128,3,30507,2,1672319414),(140129,3,30508,2,1672319414),(140130,3,30509,2,1672319414),(140131,3,30510,2,1672319414),(140132,3,30512,2,1672319414),(140133,3,30513,2,1672319414),(140134,3,30514,2,1672319414),(140135,3,30515,2,1672319414),(140136,3,30516,2,1672319414),(140137,3,30517,2,1672319414),(140138,3,30518,2,1672319414),(140139,3,30519,2,1672319414),(140140,3,30637,2,1672319414),(140141,3,30638,2,1672319414),(140142,3,30639,2,1672319414),(140143,3,30640,2,1672319414),(140144,3,30641,2,1672319414),(140145,3,30642,2,1672319414),(140146,3,30643,2,1672319414),(140147,3,30644,2,1672319414),(140148,3,30645,2,1672319414),(140149,3,30646,2,1672319414),(140150,3,30647,2,1672319414),(140151,3,30648,2,1672319414),(140152,3,30649,2,1672319414),(140153,3,30650,2,1672319414),(140154,3,30651,2,1672319414),(140155,3,30652,2,1672319414),(140156,3,30653,2,1672319414),(140157,3,30655,2,1672319414),(140158,3,30656,2,1672319414),(140159,3,30657,2,1672319414),(140160,3,30658,2,1672319414),(140161,3,30659,2,1672319414),(140162,3,30660,2,1672319414),(140163,3,30661,2,1672319414),(140164,3,30662,2,1672319414),(140165,3,30663,2,1672319414),(140166,3,30664,2,1672319414),(140167,3,30665,2,1672319414),(140168,3,30666,2,1672319414),(140169,3,30667,2,1672319414),(140170,3,30668,2,1672319414),(140171,3,30669,2,1672319414),(140172,3,30670,2,1672319414),(140173,3,30671,2,1672319414),(140174,3,30672,2,1672319414),(140175,3,30676,2,1672319414),(140176,3,30677,2,1672319414),(140177,3,31055,2,1672319414),(140178,3,31056,2,1672319414),(140179,3,31057,2,1672319414),(140180,3,31058,2,1672319414),(140181,3,31059,2,1672319414),(140182,3,31060,2,1672319414),(140183,3,31061,2,1672319414),(140184,3,31062,2,1672319414),(140185,3,31063,2,1672319414),(140186,3,31064,2,1672319414),(140187,3,31065,2,1672319414),(140188,3,31066,2,1672319414),(140189,3,31067,2,1672319414),(140190,3,31068,2,1672319414),(140191,3,31069,2,1672319414),(140192,3,31070,2,1672319414),(140193,3,31071,2,1672319414),(140194,3,31072,2,1672319414),(140195,3,31073,2,1672319414),(140196,3,31074,2,1672319414),(140197,3,31075,2,1672319414),(140198,3,31076,2,1672319414),(140199,3,31077,2,1672319414),(140200,3,31078,2,1672319414),(140201,3,31079,2,1672319414),(140202,3,31080,2,1672319414),(140203,3,31081,2,1672319414),(140204,3,31082,2,1672319414),(140205,3,31083,2,1672319414),(140206,3,31084,2,1672319414),(140207,3,31085,2,1672319414),(140208,3,31086,2,1672319414),(140209,3,31087,2,1672319414),(140210,3,31088,2,1672319414),(140211,3,31089,2,1672319414),(140212,3,31090,2,1672319414),(140213,3,31091,2,1672319414),(140214,3,31092,2,1672319414),(140215,3,31093,2,1672319414),(140216,3,31094,2,1672319414),(140217,3,31095,2,1672319414),(140218,3,31096,2,1672319414),(140219,3,31097,2,1672319414),(140220,3,31098,2,1672319414),(140221,3,31099,2,1672319414),(140222,3,31100,2,1672319414),(140223,3,31101,2,1672319414),(140224,3,31102,2,1672319414),(140225,3,31103,2,1672319414),(140226,3,31104,2,1672319414),(140227,3,31105,2,1672319414),(140228,3,31106,2,1672319414),(140229,3,31107,2,1672319414),(140230,3,31108,2,1672319414),(140231,3,31109,2,1672319414),(140232,3,31110,2,1672319414),(140233,3,31111,2,1672319414),(140234,3,31112,2,1672319414),(140235,3,31113,2,1672319414),(140236,3,31114,2,1672319414),(140237,3,31115,2,1672319414),(140238,3,31116,2,1672319414),(140239,3,31117,2,1672319414),(140240,3,31118,2,1672319414),(140241,3,31119,2,1672319414),(140242,3,31120,2,1672319414),(140243,3,31121,2,1672319414),(140244,3,31168,2,1672319414),(140245,3,31169,2,1672319414),(140246,3,31170,2,1672319414),(140247,3,31171,2,1672319414),(140248,3,31172,2,1672319414),(140249,3,31173,2,1672319414),(140250,3,31174,2,1672319414),(140251,3,31175,2,1672319414),(140252,3,31176,2,1672319414),(140253,3,31177,2,1672319414),(140254,3,31178,2,1672319414),(140255,3,31179,2,1672319414),(140256,3,31180,2,1672319414),(140257,3,31181,2,1672319414),(140258,3,31182,2,1672319414),(140259,3,31183,2,1672319414),(140260,3,31184,2,1672319414),(140261,3,31185,2,1672319414),(140262,3,31186,2,1672319414),(140263,3,31187,2,1672319414),(140264,3,31188,2,1672319414),(140265,3,31189,2,1672319414),(140266,3,31190,2,1672319414),(140267,3,31191,2,1672319414),(140268,3,31192,2,1672319414),(140269,3,31193,2,1672319414),(140270,3,31194,2,1672319414),(140271,3,31195,2,1672319414),(140272,3,31196,2,1672319414),(140273,3,31197,2,1672319414),(140274,3,31198,2,1672319414),(140275,3,31199,2,1672319414),(140276,3,31200,2,1672319414),(140277,3,31201,2,1672319414),(140278,3,31202,2,1672319414),(140279,3,31203,2,1672319414),(140280,3,31204,2,1672319414),(140281,3,31205,2,1672319414),(140282,3,31206,2,1672319414),(140283,3,31207,2,1672319414),(140284,3,31208,2,1672319414),(140285,3,31209,2,1672319414),(140286,3,31210,2,1672319414),(140287,3,31211,2,1672319414),(140288,3,31212,2,1672319414),(140289,3,31213,2,1672319414),(140290,3,31214,2,1672319414),(140291,3,31215,2,1672319414),(140292,3,31216,2,1672319414),(140293,3,31217,2,1672319414),(140294,3,31218,2,1672319414),(140295,3,31219,2,1672319414),(140296,3,31220,2,1672319414),(140297,3,31221,2,1672319414),(140298,3,31222,2,1672319414),(140299,3,31223,2,1672319414),(140300,3,31224,2,1672319414),(140301,3,31225,2,1672319414),(140302,3,31226,2,1672319414),(140303,3,31227,2,1672319414),(140304,3,31228,2,1672319414),(140305,3,31229,2,1672319414),(140306,3,31230,2,1672319414),(140307,3,31231,2,1672319414),(140308,3,31232,2,1672319414),(140309,3,31233,2,1672319414),(140310,3,31234,2,1672319414),(140311,3,31235,2,1672319414),(140312,3,31236,2,1672319414),(140313,3,31237,2,1672319414),(140314,3,31238,2,1672319414),(140315,3,31239,2,1672319414),(140316,3,31240,2,1672319414),(140317,3,31241,2,1672319414),(140318,3,31242,2,1672319414),(140319,3,31243,2,1672319414),(140320,3,31244,2,1672319414),(140321,3,31245,2,1672319414),(140322,3,31246,2,1672319414),(140323,3,31247,2,1672319414),(140324,3,31248,2,1672319414),(140325,3,31249,2,1672319414),(140326,3,31250,2,1672319414),(140327,3,31251,2,1672319414),(140328,3,31252,2,1672319414),(140329,3,31554,2,1672319414),(140330,3,31555,2,1672319414),(140331,3,31556,2,1672319414),(140332,3,31570,2,1672319414),(140333,3,31571,2,1672319414),(140334,3,31573,2,1672319414),(140335,3,31577,2,1672319414),(140336,3,31578,2,1672319414),(140337,3,31579,2,1672319414),(140338,3,31580,2,1672319414),(140339,3,31581,2,1672319414),(140340,3,31582,2,1672319414),(140341,3,31583,2,1672319414),(140342,3,31584,2,1672319414),(140343,3,31585,2,1672319414),(140344,3,31586,2,1672319414),(140345,3,31587,2,1672319414),(140346,3,31588,2,1672319414),(140347,3,31589,2,1672319414),(140348,3,31590,2,1672319414),(140349,3,31591,2,1672319414),(140350,3,31592,2,1672319414),(140351,3,31593,2,1672319414),(140352,3,31594,2,1672319414),(140353,3,31595,2,1672319414),(140354,3,31596,2,1672319414),(140355,3,31597,2,1672319414),(140356,3,31598,2,1672319414),(140357,3,31599,2,1672319414),(140358,3,31600,2,1672319414),(140359,3,31601,2,1672319414),(140360,3,31602,2,1672319414),(140361,3,31603,2,1672319414),(140362,3,31604,2,1672319414),(140363,3,31605,2,1672319414),(140364,3,31606,2,1672319414),(140365,3,31607,2,1672319414),(140366,3,31608,2,1672319414),(140367,3,31609,2,1672319414),(140368,3,31610,2,1672319414),(140369,3,31611,2,1672319414),(140370,3,31684,2,1672319414),(140371,3,31685,2,1672319414),(140372,3,31686,2,1672319414),(140373,3,31687,2,1672319414),(140374,3,31688,2,1672319414),(140375,3,31689,2,1672319414),(140376,3,31690,2,1672319414),(140377,3,31691,2,1672319414),(140378,3,31692,2,1672319414),(140379,3,31693,2,1672319414),(140380,3,31694,2,1672319414),(140381,3,31695,2,1672319414),(140382,3,31696,2,1672319414),(140383,3,31697,2,1672319414),(140384,3,31698,2,1672319414),(140385,3,31699,2,1672319414),(140386,3,31700,2,1672319414),(140387,3,31701,2,1672319414),(140388,3,31702,2,1672319414),(140389,3,31703,2,1672319414),(140390,3,31704,2,1672319414),(140391,3,31705,2,1672319414),(140392,3,31706,2,1672319414),(140393,3,31707,2,1672319414),(140394,3,31708,2,1672319414),(140395,3,31709,2,1672319414),(140396,3,31710,2,1672319414),(140397,3,31711,2,1672319414),(140398,3,31712,2,1672319414),(140399,3,31713,2,1672319414),(140400,3,31714,2,1672319414),(140401,3,31715,2,1672319414),(140402,3,31716,2,1672319414),(140403,3,31717,2,1672319414),(140404,3,31718,2,1672319414),(140405,3,31719,2,1672319414),(140406,3,31720,2,1672319414),(140407,3,31721,2,1672319414),(140408,3,31722,2,1672319414),(140409,3,31723,2,1672319414),(140410,3,31724,2,1672319414),(140411,3,31725,2,1672319414),(140412,3,31726,2,1672319414),(140413,3,31727,2,1672319414),(140414,3,31728,2,1672319414),(140415,3,31729,2,1672319414),(140416,3,31730,2,1672319414),(140417,3,31731,2,1672319414),(140418,3,31732,2,1672319414),(140419,3,31733,2,1672319414),(140420,3,31734,2,1672319414),(140421,3,31735,2,1672319414),(140422,3,31736,2,1672319414),(140423,3,31737,2,1672319414),(140424,3,31738,2,1672319414),(140425,3,31739,2,1672319414),(140426,3,31740,2,1672319414),(140427,3,31741,2,1672319414),(140428,3,31742,2,1672319414),(140429,3,31743,2,1672319414),(140430,3,31744,2,1672319414),(140431,3,31745,2,1672319414),(140432,3,31746,2,1672319414),(140433,3,31747,2,1672319414),(140434,3,31748,2,1672319414),(140435,3,31749,2,1672319414),(140436,3,31750,2,1672319414),(140437,3,31751,2,1672319414),(140438,3,31752,2,1672319414),(140439,3,31753,2,1672319414),(140440,3,31754,2,1672319414),(140441,3,31755,2,1672319414),(140442,3,31756,2,1672319414),(140443,3,31757,2,1672319414),(140444,3,31758,2,1672319414),(140445,3,31759,2,1672319414),(140446,3,31760,2,1672319414),(140447,3,32364,2,1672319414),(140448,3,32365,2,1672319414),(140449,3,32366,2,1672319414),(140450,3,32367,2,1672319414),(140451,3,32368,2,1672319414),(140452,3,32369,2,1672319414),(140453,3,32370,2,1672319414),(140454,3,32371,2,1672319414),(140455,3,32372,2,1672319414),(140456,3,32373,2,1672319414),(140457,3,32374,2,1672319414),(140458,3,32375,2,1672319414),(140459,3,32376,2,1672319414),(140460,3,32377,2,1672319414),(140461,3,32378,2,1672319414),(140462,3,32379,2,1672319414),(140463,3,32380,2,1672319414),(140464,3,32381,2,1672319414),(140465,3,32382,2,1672319414),(140466,3,32383,2,1672319414),(140467,3,32384,2,1672319414),(140468,3,32385,2,1672319414),(140469,3,32386,2,1672319414),(140470,3,32387,2,1672319414),(140471,3,32388,2,1672319414),(140472,3,32389,2,1672319414),(140473,3,32390,2,1672319414),(140474,3,32391,2,1672319414),(140475,3,32392,2,1672319414),(140476,3,32393,2,1672319414),(140477,3,32394,2,1672319414),(140478,3,32395,2,1672319414),(140479,3,32396,2,1672319414),(140480,3,32397,2,1672319414),(140481,3,32398,2,1672319414),(140482,3,32399,2,1672319414),(140483,3,32400,2,1672319414),(140484,3,32401,2,1672319414),(140485,3,32402,2,1672319414),(140486,3,32403,2,1672319414),(140487,3,33126,2,1672319414),(140488,3,33127,2,1672319414),(140489,3,33128,2,1672319414),(140490,3,33129,2,1672319414),(140491,3,33130,2,1672319414),(140492,3,33131,2,1672319414),(140493,3,33132,2,1672319414),(140494,3,33140,2,1672319414),(140495,3,33141,2,1672319414),(140496,3,33142,2,1672319414),(140497,3,33143,2,1672319414),(140498,3,33144,2,1672319414),(140499,3,33145,2,1672319414),(140500,3,33146,2,1672319414),(140501,3,33154,2,1672319414),(140502,3,33155,2,1672319414),(140503,3,33156,2,1672319414),(140504,3,33157,2,1672319414),(140505,3,33158,2,1672319414),(140506,3,33159,2,1672319414),(140507,3,33160,2,1672319414),(140508,3,33184,2,1672319414),(140509,3,33185,2,1672319414),(140510,3,33186,2,1672319414),(140511,3,33187,2,1672319414),(140512,3,33188,2,1672319414),(140513,3,33189,2,1672319414),(140514,3,33190,2,1672319414),(140515,3,33191,2,1672319414),(140516,3,33192,2,1672319414),(140517,3,33193,2,1672319414),(140518,3,33194,2,1672319414),(140519,3,33195,2,1672319414),(140520,3,33196,2,1672319414),(140521,3,33197,2,1672319414),(140522,3,33198,2,1672319414),(140523,3,33199,2,1672319414),(140524,3,33200,2,1672319414),(140525,3,33201,2,1672319414),(140526,3,33202,2,1672319414),(140527,3,33203,2,1672319414),(140528,3,33204,2,1672319414),(140529,3,33207,2,1672319414),(140530,3,33208,2,1672319414),(140531,3,33209,2,1672319414),(140532,3,33210,2,1672319414),(140533,3,33211,2,1672319414),(140534,3,33212,2,1672319414),(140535,3,33213,2,1672319414),(140536,3,33214,2,1672319414),(140537,3,33215,2,1672319414),(140538,3,33216,2,1672319414),(140539,3,33217,2,1672319414),(140540,3,33218,2,1672319414),(140541,3,33219,2,1672319414),(140542,3,33220,2,1672319414),(140543,3,33221,2,1672319414),(140544,3,33222,2,1672319414),(140545,3,33223,2,1672319414),(140546,3,33224,2,1672319414),(140547,3,33227,2,1672319414),(140548,3,33228,2,1672319414),(140549,3,33229,2,1672319414),(140550,3,33230,2,1672319414),(140551,3,33231,2,1672319414),(140552,3,33232,2,1672319414),(140553,3,33233,2,1672319414),(140554,3,33234,2,1672319414),(140555,3,33235,2,1672319414),(140556,3,33236,2,1672319414),(140557,3,33237,2,1672319414),(140558,3,33238,2,1672319414),(140559,3,33239,2,1672319414),(140560,3,33240,2,1672319414),(140561,3,33241,2,1672319414),(140562,3,33242,2,1672319414),(140563,3,33243,2,1672319414),(140564,3,33244,2,1672319414),(140565,3,33245,2,1672319414),(140566,3,33246,2,1672319414),(140567,3,33247,2,1672319414),(140568,3,33250,2,1672319414),(140569,3,33251,2,1672319414),(140570,3,33252,2,1672319414),(140571,3,33253,2,1672319414),(140572,3,33254,2,1672319414),(140573,3,33255,2,1672319414),(140574,3,33256,2,1672319414),(140575,3,33259,2,1672319414),(140576,3,33260,2,1672319414),(140577,3,33261,2,1672319414),(140578,3,33262,2,1672319414),(140579,3,33263,2,1672319414),(140580,3,33264,2,1672319414),(140581,3,33265,2,1672319414),(140582,3,33266,2,1672319414),(140583,3,33267,2,1672319414),(140584,3,33268,2,1672319414),(140585,3,33269,2,1672319414),(140586,3,33270,2,1672319414),(140587,3,33271,2,1672319414),(140588,3,33272,2,1672319414),(140589,3,33273,2,1672319414),(140590,3,33274,2,1672319414),(140591,3,33275,2,1672319414),(140592,3,33278,2,1672319414),(140593,3,33279,2,1672319414),(140594,3,33280,2,1672319414),(140595,3,33281,2,1672319414),(140596,3,33282,2,1672319414),(140597,3,33283,2,1672319414),(140598,3,33284,2,1672319414),(140599,3,33285,2,1672319414),(140600,3,33286,2,1672319414),(140601,3,33287,2,1672319414),(140602,3,33288,2,1672319414),(140603,3,33289,2,1672319414),(140604,3,33290,2,1672319414),(140605,3,33291,2,1672319414),(140606,3,33292,2,1672319414),(140607,3,33293,2,1672319414),(140608,3,33294,2,1672319414),(140609,3,33297,2,1672319414),(140610,3,33298,2,1672319414),(140611,3,33299,2,1672319414),(140612,3,33300,2,1672319414),(140613,3,33301,2,1672319414),(140614,3,33302,2,1672319414),(140615,3,33303,2,1672319414),(140616,3,33304,2,1672319414),(140617,3,33305,2,1672319414),(140618,3,33348,2,1672319414),(140619,3,33349,2,1672319414),(140620,3,33350,2,1672319414),(140621,3,33351,2,1672319414),(140622,3,33764,2,1672319414),(140623,3,33765,2,1672319414),(140624,3,33766,2,1672319414),(140625,3,33767,2,1672319414),(140626,3,33768,2,1672319414),(140627,3,33769,2,1672319414),(140628,3,33770,2,1672319414),(140629,3,33771,2,1672319414),(140630,3,33772,2,1672319414),(140631,3,33773,2,1672319414),(140632,3,33774,2,1672319414),(140633,3,33775,2,1672319414),(140634,3,33776,2,1672319414),(140635,3,33777,2,1672319414),(140636,3,33778,2,1672319414),(140637,3,33779,2,1672319414),(140638,3,33780,2,1672319414),(140639,3,33781,2,1672319414),(140640,3,33782,2,1672319414),(140641,3,33783,2,1672319414),(140642,3,33784,2,1672319414),(140643,3,33785,2,1672319414),(140644,3,33786,2,1672319414),(140645,3,33787,2,1672319414),(140646,3,33788,2,1672319414),(140647,3,33789,2,1672319414),(140648,3,33790,2,1672319414),(140649,3,33791,2,1672319414),(140650,3,33792,2,1672319414),(140651,3,33793,2,1672319414),(140652,3,33794,2,1672319414),(140653,3,33795,2,1672319414),(140654,3,33796,2,1672319414),(140655,3,33797,2,1672319414),(140656,3,33798,2,1672319414),(140657,3,33799,2,1672319414),(140658,3,33800,2,1672319414),(140659,3,33801,2,1672319414),(140660,3,33802,2,1672319414),(140661,3,33803,2,1672319414),(140662,3,33804,2,1672319414),(140663,3,33805,2,1672319414),(140664,3,33806,2,1672319414),(140665,3,33807,2,1672319414),(140666,3,33886,2,1672319414),(140667,3,33887,2,1672319414),(140668,3,33888,2,1672319414),(140669,3,33889,2,1672319414),(140670,3,33891,2,1672319414),(140671,3,33892,2,1672319414),(140672,3,33893,2,1672319414),(140673,3,33894,2,1672319414),(140674,3,33895,2,1672319414),(140675,3,33896,2,1672319414),(140676,3,33897,2,1672319414),(140677,3,33898,2,1672319414),(140678,3,33899,2,1672319414),(140679,3,33900,2,1672319414),(140680,3,33901,2,1672319414),(140681,3,33902,2,1672319414),(140682,3,33903,2,1672319414),(140683,3,33904,2,1672319414),(140684,3,33905,2,1672319414),(140685,3,33906,2,1672319414),(140686,3,33907,2,1672319414),(140687,3,33908,2,1672319414),(140688,3,33909,2,1672319414),(140689,3,33910,2,1672319414),(140690,3,33911,2,1672319414),(140691,3,33912,2,1672319414),(140692,3,33913,2,1672319414),(140693,3,33914,2,1672319414),(140694,3,33915,2,1672319414),(140695,3,33916,2,1672319414),(140696,3,33917,2,1672319414),(140697,3,33918,2,1672319414),(140698,3,33919,2,1672319414),(140699,3,34226,2,1672319414),(140700,3,34227,2,1672319414),(140701,3,34228,2,1672319414),(140702,3,34229,2,1672319414),(140703,3,34230,2,1672319414),(140704,3,34231,2,1672319414),(140705,3,34232,2,1672319414),(140706,3,34233,2,1672319414),(140707,3,34234,2,1672319414),(140708,3,34235,2,1672319414),(140709,3,34236,2,1672319414),(140710,3,34237,2,1672319414),(140711,3,34238,2,1672319414),(140712,3,34239,2,1672319414),(140713,3,34240,2,1672319414),(140714,3,34241,2,1672319414),(140715,3,34242,2,1672319414),(140716,3,34243,2,1672319414),(140717,3,34244,2,1672319414),(140718,3,34245,2,1672319414),(140719,3,34246,2,1672319414),(140720,3,34247,2,1672319414),(140721,3,34248,2,1672319414),(140722,3,34249,2,1672319414),(140723,3,34250,2,1672319414),(140724,3,34251,2,1672319414),(140725,3,34252,2,1672319414),(140726,3,34253,2,1672319414),(140727,3,34254,2,1672319414),(140728,3,34255,2,1672319414),(140729,3,34256,2,1672319414),(140730,3,34257,2,1672319414),(140731,3,34258,2,1672319414),(140732,3,34259,2,1672319414),(140733,3,34321,2,1672319414),(140734,3,34322,2,1672319414),(140735,3,34323,2,1672319414),(140736,3,35153,2,1672319414),(140737,3,35154,2,1672319414),(140738,3,35155,2,1672319414),(140739,3,35156,2,1672319414),(140740,3,35157,2,1672319414),(140741,3,35158,2,1672319414),(140742,3,35159,2,1672319414),(140743,3,35160,2,1672319414),(140744,3,35161,2,1672319414),(140745,3,35162,2,1672319414),(140746,3,35163,2,1672319414),(140747,3,35164,2,1672319414),(140748,3,35165,2,1672319414),(140749,3,35166,2,1672319414),(140750,3,35167,2,1672319414),(140751,3,35168,2,1672319414),(140752,3,35169,2,1672319414),(140753,3,35170,2,1672319414),(140754,3,35171,2,1672319414),(140755,3,35172,2,1672319414),(140756,3,35173,2,1672319414),(140757,3,35174,2,1672319414),(140758,3,35175,2,1672319414),(140759,3,35176,2,1672319414),(140760,3,38575,2,1672319414),(140761,3,38576,2,1672319414),(140762,3,38577,2,1672319414),(140763,3,38578,2,1672319414),(140764,3,38579,2,1672319414),(140765,3,38580,2,1672319414),(140766,3,38581,2,1672319414),(140767,3,38629,2,1672319414),(140768,3,38630,2,1672319414),(140769,3,38631,2,1672319414),(140770,3,38632,2,1672319414),(140771,3,38633,2,1672319414),(140772,3,38634,2,1672319414),(140773,3,38635,2,1672319414),(140774,3,38683,2,1672319414),(140775,3,38684,2,1672319414),(140776,3,38685,2,1672319414),(140777,3,38686,2,1672319414),(140778,3,38687,2,1672319414),(140779,3,38688,2,1672319414),(140780,3,38689,2,1672319414),(140781,3,38737,2,1672319414),(140782,3,38738,2,1672319414),(140783,3,38739,2,1672319414),(140784,3,38740,2,1672319414),(140785,3,38741,2,1672319414),(140786,3,38742,2,1672319414),(140787,3,38743,2,1672319414),(140788,3,38791,2,1672319414),(140789,3,38792,2,1672319414),(140790,3,38793,2,1672319414),(140791,3,38794,2,1672319414),(140792,3,38795,2,1672319414),(140793,3,38796,2,1672319414),(140794,3,38797,2,1672319414),(140795,3,38845,2,1672319414),(140796,3,38846,2,1672319414),(140797,3,38847,2,1672319414),(140798,3,38848,2,1672319414),(140799,3,38849,2,1672319414),(140800,3,38850,2,1672319414),(140801,3,38851,2,1672319414),(140802,3,38899,2,1672319414),(140803,3,38900,2,1672319414),(140804,3,38901,2,1672319414),(140805,3,38902,2,1672319414),(140806,3,38903,2,1672319414),(140807,3,38904,2,1672319414),(140808,3,38905,2,1672319414),(140809,3,38953,2,1672319414),(140810,3,38954,2,1672319414),(140811,3,38955,2,1672319414),(140812,3,38956,2,1672319414),(140813,3,38957,2,1672319414),(140814,3,38958,2,1672319414),(140815,3,38959,2,1672319414),(140816,3,39007,2,1672319414),(140817,3,39008,2,1672319414),(140818,3,39009,2,1672319414),(140819,3,39010,2,1672319414),(140820,3,39011,2,1672319414),(140821,3,39012,2,1672319414),(140822,3,39013,2,1672319414),(140823,3,39061,2,1672319414),(140824,3,39062,2,1672319414),(140825,3,39063,2,1672319414),(140826,3,39064,2,1672319414),(140827,3,39065,2,1672319414),(140828,3,39066,2,1672319414),(140829,3,39067,2,1672319414),(140830,3,39115,2,1672319414),(140831,3,39116,2,1672319414),(140832,3,39117,2,1672319414),(140833,3,39118,2,1672319414),(140834,3,39119,2,1672319414),(140835,3,39120,2,1672319414),(140836,3,39121,2,1672319414),(140837,3,39169,2,1672319414),(140838,3,39170,2,1672319414),(140839,3,39171,2,1672319414),(140840,3,39172,2,1672319414),(140841,3,39173,2,1672319414),(140842,3,39174,2,1672319414),(140843,3,39175,2,1672319414),(140844,3,39223,2,1672319414),(140845,3,39224,2,1672319414),(140846,3,39225,2,1672319414),(140847,3,39226,2,1672319414),(140848,3,39227,2,1672319414),(140849,3,39228,2,1672319414),(140850,3,39229,2,1672319414),(140851,3,39277,2,1672319414),(140852,3,39278,2,1672319414),(140853,3,39279,2,1672319414),(140854,3,39280,2,1672319414),(140855,3,39281,2,1672319414),(140856,3,39282,2,1672319414),(140857,3,39283,2,1672319414),(140858,3,39601,2,1672319414),(140859,3,39602,2,1672319414),(140860,3,39603,2,1672319414),(140861,3,39604,2,1672319414),(140862,3,39605,2,1672319414),(140863,3,39606,2,1672319414),(140864,3,39607,2,1672319414),(140865,3,39655,2,1672319414),(140866,3,39656,2,1672319414),(140867,3,39657,2,1672319414),(140868,3,39658,2,1672319414),(140869,3,39659,2,1672319414),(140870,3,39660,2,1672319414),(140871,3,39661,2,1672319414),(140872,3,39709,2,1672319414),(140873,3,39710,2,1672319414),(140874,3,39711,2,1672319414),(140875,3,39712,2,1672319414),(140876,3,39713,2,1672319414),(140877,3,39714,2,1672319414),(140878,3,39715,2,1672319414),(140879,3,40117,2,1672319414),(140880,3,40119,2,1672319414),(140881,3,40120,2,1672319414),(140882,3,40121,2,1672319414),(140883,3,40122,2,1672319414),(140884,3,40123,2,1672319414),(140885,3,40124,2,1672319414),(140886,3,40125,2,1672319414),(140887,3,40126,2,1672319414),(140888,3,40128,2,1672319414),(140889,3,40129,2,1672319414),(140890,3,40130,2,1672319414),(140891,3,40131,2,1672319414),(140892,3,40132,2,1672319414),(140893,3,40133,2,1672319414),(140894,3,40134,2,1672319414),(140895,3,40135,2,1672319414),(140896,3,40136,2,1672319414),(140897,3,40798,2,1672319414),(140898,3,40799,2,1672319414),(140899,3,40800,2,1672319414),(140900,3,40801,2,1672319414),(140901,3,40802,2,1672319414),(140902,3,40803,2,1672319414),(140903,3,40804,2,1672319414),(140904,3,40805,2,1672319414),(140905,3,40806,2,1672319414),(140906,3,40807,2,1672319414),(140907,3,40808,2,1672319414),(140908,3,41606,2,1672319414),(140909,3,41607,2,1672319414),(140910,3,41608,2,1672319414),(140911,3,41609,2,1672319414),(140912,3,41610,2,1672319414),(140913,3,41611,2,1672319414),(140914,3,41612,2,1672319414),(140915,3,41613,2,1672319414),(140916,3,41614,2,1672319414),(140917,3,41615,2,1672319414),(140918,3,41616,2,1672319414),(140919,3,41627,2,1672319414),(140920,3,41628,2,1672319414),(140921,3,41629,2,1672319414),(140922,3,41630,2,1672319414),(140923,3,41631,2,1672319414),(140924,3,41632,2,1672319414),(140925,3,41633,2,1672319414),(140926,3,41634,2,1672319414),(140927,3,41635,2,1672319414),(140928,3,41636,2,1672319414),(140929,3,41637,2,1672319414),(140930,3,41648,2,1672319414),(140931,3,41649,2,1672319414),(140932,3,41650,2,1672319414),(140933,3,41651,2,1672319414),(140934,3,41652,2,1672319414),(140935,3,41653,2,1672319414),(140936,3,41654,2,1672319414),(140937,3,41655,2,1672319414),(140938,3,41656,2,1672319414),(140939,3,41657,2,1672319414),(140940,3,41658,2,1672319414),(140941,3,41669,2,1672319414),(140942,3,41670,2,1672319414),(140943,3,41671,2,1672319414),(140944,3,41672,2,1672319414),(140945,3,41673,2,1672319414),(140946,3,41674,2,1672319414),(140947,3,41675,2,1672319414),(140948,3,41676,2,1672319414),(140949,3,41677,2,1672319414),(140950,3,41678,2,1672319414),(140951,3,41679,2,1672319414),(140952,3,41690,2,1672319414),(140953,3,41691,2,1672319414),(140954,3,41692,2,1672319414),(140955,3,41693,2,1672319414),(140956,3,41694,2,1672319414),(140957,3,41695,2,1672319414),(140958,3,41696,2,1672319414),(140959,3,41697,2,1672319414),(140960,3,41698,2,1672319414),(140961,3,41699,2,1672319414),(140962,3,41700,2,1672319414),(140963,3,41711,2,1672319414),(140964,3,41712,2,1672319414),(140965,3,41713,2,1672319414),(140966,3,41714,2,1672319414),(140967,3,41715,2,1672319414),(140968,3,41716,2,1672319414),(140969,3,41717,2,1672319414),(140970,3,41718,2,1672319414),(140971,3,41719,2,1672319414),(140972,3,41720,2,1672319414),(140973,3,41721,2,1672319414),(140974,3,41732,2,1672319414),(140975,3,41733,2,1672319414),(140976,3,41734,2,1672319414),(140977,3,41735,2,1672319414),(140978,3,41736,2,1672319414),(140979,3,41737,2,1672319414),(140980,3,41738,2,1672319414),(140981,3,41739,2,1672319414),(140982,3,41740,2,1672319414),(140983,3,41741,2,1672319414),(140984,3,41742,2,1672319414),(140985,3,41753,2,1672319414),(140986,3,41754,2,1672319414),(140987,3,41755,2,1672319414),(140988,3,41756,2,1672319414),(140989,3,41757,2,1672319414),(140990,3,41758,2,1672319414),(140991,3,41759,2,1672319414),(140992,3,41760,2,1672319414),(140993,3,41761,2,1672319414),(140994,3,41762,2,1672319414),(140995,3,41763,2,1672319414),(140996,3,41774,2,1672319414),(140997,3,41775,2,1672319414),(140998,3,41776,2,1672319414),(140999,3,41777,2,1672319414),(141000,3,41778,2,1672319414),(141001,3,41779,2,1672319414),(141002,3,41780,2,1672319414),(141003,3,41781,2,1672319414),(141004,3,41782,2,1672319414),(141005,3,41783,2,1672319414),(141006,3,41784,2,1672319414),(141007,3,41795,2,1672319414),(141008,3,41796,2,1672319414),(141009,3,41797,2,1672319414),(141010,3,41798,2,1672319414),(141011,3,41799,2,1672319414),(141012,3,41800,2,1672319414),(141013,3,41801,2,1672319414),(141014,3,41802,2,1672319414),(141015,3,41803,2,1672319414),(141016,3,41804,2,1672319414),(141017,3,41805,2,1672319414),(141018,3,41816,2,1672319414),(141019,3,41817,2,1672319414),(141020,3,41818,2,1672319414),(141021,3,41819,2,1672319414),(141022,3,41820,2,1672319414),(141023,3,41821,2,1672319414),(141024,3,41822,2,1672319414),(141025,3,41823,2,1672319414),(141026,3,41824,2,1672319414),(141027,3,41825,2,1672319414),(141028,3,41826,2,1672319414),(141029,3,41837,2,1672319414),(141030,3,41838,2,1672319414),(141031,3,41839,2,1672319414),(141032,3,41840,2,1672319414),(141033,3,41841,2,1672319414),(141034,3,41842,2,1672319414),(141035,3,41843,2,1672319414),(141036,3,41844,2,1672319414),(141037,3,41845,2,1672319414),(141038,3,41846,2,1672319414),(141039,3,41847,2,1672319414),(141040,3,41858,2,1672319414),(141041,3,41859,2,1672319414),(141042,3,41860,2,1672319414),(141043,3,41861,2,1672319414),(141044,3,41862,2,1672319414),(141045,3,41863,2,1672319414),(141046,3,41864,2,1672319414),(141047,3,41865,2,1672319414),(141048,3,41866,2,1672319414),(141049,3,41867,2,1672319414),(141050,3,41868,2,1672319414),(141051,3,41879,2,1672319414),(141052,3,41880,2,1672319414),(141053,3,41881,2,1672319414),(141054,3,41882,2,1672319414),(141055,3,41883,2,1672319414),(141056,3,41884,2,1672319414),(141057,3,41885,2,1672319414),(141058,3,41886,2,1672319414),(141059,3,41887,2,1672319414),(141060,3,41888,2,1672319414),(141061,3,41889,2,1672319414),(141062,3,42005,2,1672319414),(141063,3,42006,2,1672319414),(141064,3,42007,2,1672319414),(141065,3,42008,2,1672319414),(141066,3,42009,2,1672319414),(141067,3,42010,2,1672319414),(141068,3,42011,2,1672319414),(141069,3,42012,2,1672319414),(141070,3,42013,2,1672319414),(141071,3,42014,2,1672319414),(141072,3,42015,2,1672319414),(141073,3,42026,2,1672319414),(141074,3,42027,2,1672319414),(141075,3,42028,2,1672319414),(141076,3,42029,2,1672319414),(141077,3,42030,2,1672319414),(141078,3,42031,2,1672319414),(141079,3,42032,2,1672319414),(141080,3,42033,2,1672319414),(141081,3,42034,2,1672319414),(141082,3,42035,2,1672319414),(141083,3,42036,2,1672319414),(141084,3,42047,2,1672319414),(141085,3,42048,2,1672319414),(141086,3,42049,2,1672319414),(141087,3,42050,2,1672319414),(141088,3,42051,2,1672319414),(141089,3,42052,2,1672319414),(141090,3,42053,2,1672319414),(141091,3,42054,2,1672319414),(141092,3,42055,2,1672319414),(141093,3,42056,2,1672319414),(141094,3,42057,2,1672319414),(141095,3,42089,2,1672319414),(141096,3,42090,2,1672319414),(141097,3,42091,2,1672319414),(141098,3,42092,2,1672319414),(141099,3,42093,2,1672319414),(141100,3,42094,2,1672319414),(141101,3,42095,2,1672319414),(141102,3,42096,2,1672319414),(141103,3,42097,2,1672319414),(141104,3,42098,2,1672319414),(141105,3,42099,2,1672319414),(141106,3,42447,2,1672319414),(141107,3,42448,2,1672319414),(141108,3,42449,2,1672319414),(141109,3,42450,2,1672319414),(141110,3,42609,2,1672319414),(141111,3,42610,2,1672319414),(141112,3,42611,2,1672319414),(141113,3,42612,2,1672319414),(141114,3,42613,2,1672319414),(141115,3,42614,2,1672319414),(141116,3,42615,2,1672319414),(141117,3,42616,2,1672319414),(141118,3,42617,2,1672319414),(141119,3,42618,2,1672319414),(141120,3,42619,2,1672319414),(141121,3,42724,2,1672319414),(141122,3,42725,2,1672319414),(141123,3,43547,2,1672319414),(141124,3,43548,2,1672319414),(141125,3,43549,2,1672319414),(141126,3,43550,2,1672319414),(141127,3,43551,2,1672319414),(141128,3,43552,2,1672319414),(141129,3,43553,2,1672319414),(141130,3,43554,2,1672319414),(141131,3,43555,2,1672319414),(141132,3,43556,2,1672319414),(141133,3,43557,2,1672319414),(141134,3,43558,2,1672319414),(141135,3,43559,2,1672319414),(141136,3,43560,2,1672319414),(141137,3,43561,2,1672319414),(141138,3,43562,2,1672319414),(141139,3,43563,2,1672319414),(141140,3,43564,2,1672319414),(141141,3,43787,2,1672319414),(141142,3,43826,2,1672319414),(141143,3,43827,2,1672319414),(141144,3,43828,2,1672319414),(141145,3,43829,2,1672319414),(141146,3,43830,2,1672319414),(141147,3,43831,2,1672319414),(141148,3,43832,2,1672319414),(141149,3,43833,2,1672319414),(141150,3,43834,2,1672319414),(141151,3,43835,2,1672319414),(141152,3,43836,2,1672319414),(141153,3,43837,2,1672319414),(141154,3,43838,2,1672319414),(141155,3,43839,2,1672319414),(141156,3,43845,2,1672319414),(141157,3,43846,2,1672319414),(141158,3,43847,2,1672319414),(141159,3,43849,2,1672319414),(141160,3,43850,2,1672319414),(141161,3,43851,2,1672319414),(141162,3,43852,2,1672319414),(141163,3,43853,2,1672319414),(141164,3,43854,2,1672319414),(141165,3,43855,2,1672319414),(141166,3,43856,2,1672319414),(141167,3,43888,2,1672319414),(141168,3,44235,2,1672319414),(141169,3,44343,2,1672319414),(141170,3,44351,2,1672319414),(141171,3,44447,2,1672319414),(141172,3,22835,3,1672319414),(141173,3,22836,3,1672319414),(141174,3,22837,3,1672319414),(141175,3,22838,3,1672319414),(141176,3,22839,3,1672319414),(141177,3,22840,3,1672319414),(141178,3,22841,3,1672319414),(141179,3,22842,3,1672319414),(141180,3,22843,3,1672319414),(141181,3,22844,3,1672319414),(141182,3,22845,3,1672319414),(141183,3,22846,3,1672319414),(141184,3,22848,3,1672319414),(141185,3,22851,3,1672319414),(141186,3,22852,3,1672319414),(141187,3,22853,3,1672319414),(141188,3,22854,3,1672319414),(141189,3,22855,3,1672319414),(141190,3,22856,3,1672319414),(141191,3,22857,3,1672319414),(141192,3,22858,3,1672319414),(141193,3,22859,3,1672319414),(141194,3,22860,3,1672319414),(141195,3,22861,3,1672319414),(141196,3,22862,3,1672319414),(141197,3,22863,3,1672319414),(141198,3,23649,3,1672319414),(141199,3,23650,3,1672319414),(141200,3,23651,3,1672319414),(141201,3,27930,3,1672319414),(141202,3,27931,3,1672319414),(141203,3,27935,3,1672319414),(141204,3,27936,3,1672319414),(141205,3,28804,3,1672319414),(141206,3,28805,3,1672319414),(141207,3,28810,3,1672319414),(141208,3,28811,3,1672319414),(141209,3,28812,3,1672319414),(141210,3,28813,3,1672319414),(141211,3,28814,3,1672319414),(141212,3,28815,3,1672319414),(141213,3,28816,3,1672319414),(141214,3,28817,3,1672319414),(141215,3,28818,3,1672319414),(141216,3,28819,3,1672319414),(141217,3,28820,3,1672319414),(141218,3,28821,3,1672319414),(141219,3,28822,3,1672319414),(141220,3,28823,3,1672319414),(141221,3,28824,3,1672319414),(141222,3,28825,3,1672319414),(141223,3,28826,3,1672319414),(141224,3,28827,3,1672319414),(141225,3,28828,3,1672319414),(141226,3,28829,3,1672319414),(141227,3,28830,3,1672319414),(141228,3,28831,3,1672319414),(141229,3,28832,3,1672319414),(141230,3,28833,3,1672319414),(141231,3,30121,3,1672319414),(141232,3,30122,3,1672319414),(141233,3,30123,3,1672319414),(141234,3,30431,3,1672319414),(141235,3,30432,3,1672319414),(141236,3,30433,3,1672319414),(141237,3,30434,3,1672319414),(141238,3,30435,3,1672319414),(141239,3,30436,3,1672319414),(141240,3,30437,3,1672319414),(141241,3,30438,3,1672319414),(141242,3,30439,3,1672319414),(141243,3,30440,3,1672319414),(141244,3,30441,3,1672319414),(141245,3,30442,3,1672319414),(141246,3,30443,3,1672319414),(141247,3,30444,3,1672319414),(141248,3,30445,3,1672319414),(141249,3,30446,3,1672319414),(141250,3,30447,3,1672319414),(141251,3,30449,3,1672319414),(141252,3,30450,3,1672319414),(141253,3,30451,3,1672319414),(141254,3,30452,3,1672319414),(141255,3,30453,3,1672319414),(141256,3,30454,3,1672319414),(141257,3,30455,3,1672319414),(141258,3,30456,3,1672319414),(141259,3,30457,3,1672319414),(141260,3,30458,3,1672319414),(141261,3,30459,3,1672319414),(141262,3,30460,3,1672319414),(141263,3,30461,3,1672319414),(141264,3,30462,3,1672319414),(141265,3,30463,3,1672319414),(141266,3,30464,3,1672319414),(141267,3,30465,3,1672319414),(141268,3,30466,3,1672319414),(141269,3,30470,3,1672319414),(141270,3,30471,3,1672319414),(141271,3,30479,3,1672319414),(141272,3,30480,3,1672319414),(141273,3,30481,3,1672319414),(141274,3,30482,3,1672319414),(141275,3,30483,3,1672319414),(141276,3,30484,3,1672319414),(141277,3,30485,3,1672319414),(141278,3,30486,3,1672319414),(141279,3,30487,3,1672319414),(141280,3,30488,3,1672319414),(141281,3,30489,3,1672319414),(141282,3,30490,3,1672319414),(141283,3,30491,3,1672319414),(141284,3,30492,3,1672319414),(141285,3,30493,3,1672319414),(141286,3,30494,3,1672319414),(141287,3,30495,3,1672319414),(141288,3,30496,3,1672319414),(141289,3,30497,3,1672319414),(141290,3,30499,3,1672319414),(141291,3,30500,3,1672319414),(141292,3,30503,3,1672319414),(141293,3,30504,3,1672319414),(141294,3,30505,3,1672319414),(141295,3,30506,3,1672319414),(141296,3,30507,3,1672319414),(141297,3,30508,3,1672319414),(141298,3,30509,3,1672319414),(141299,3,30510,3,1672319414),(141300,3,30512,3,1672319414),(141301,3,30513,3,1672319414),(141302,3,30514,3,1672319414),(141303,3,30515,3,1672319414),(141304,3,30516,3,1672319414),(141305,3,30517,3,1672319414),(141306,3,30518,3,1672319414),(141307,3,30519,3,1672319414),(141308,3,30637,3,1672319414),(141309,3,30638,3,1672319414),(141310,3,30639,3,1672319414),(141311,3,30640,3,1672319414),(141312,3,30641,3,1672319414),(141313,3,30642,3,1672319414),(141314,3,30643,3,1672319414),(141315,3,30644,3,1672319414),(141316,3,30645,3,1672319414),(141317,3,30646,3,1672319414),(141318,3,30647,3,1672319414),(141319,3,30648,3,1672319414),(141320,3,30649,3,1672319414),(141321,3,30650,3,1672319414),(141322,3,30651,3,1672319414),(141323,3,30652,3,1672319414),(141324,3,30653,3,1672319414),(141325,3,30655,3,1672319414),(141326,3,30656,3,1672319414),(141327,3,30657,3,1672319414),(141328,3,30658,3,1672319414),(141329,3,30659,3,1672319414),(141330,3,30660,3,1672319414),(141331,3,30661,3,1672319414),(141332,3,30662,3,1672319414),(141333,3,30663,3,1672319414),(141334,3,30664,3,1672319414),(141335,3,30665,3,1672319414),(141336,3,30666,3,1672319414),(141337,3,30667,3,1672319414),(141338,3,30668,3,1672319414),(141339,3,30669,3,1672319414),(141340,3,30670,3,1672319414),(141341,3,30671,3,1672319414),(141342,3,30672,3,1672319414),(141343,3,30676,3,1672319414),(141344,3,30677,3,1672319414),(141345,3,31055,3,1672319414),(141346,3,31056,3,1672319414),(141347,3,31057,3,1672319414),(141348,3,31058,3,1672319414),(141349,3,31059,3,1672319414),(141350,3,31060,3,1672319414),(141351,3,31061,3,1672319414),(141352,3,31062,3,1672319414),(141353,3,31063,3,1672319414),(141354,3,31064,3,1672319414),(141355,3,31065,3,1672319414),(141356,3,31066,3,1672319414),(141357,3,31067,3,1672319414),(141358,3,31068,3,1672319414),(141359,3,31069,3,1672319414),(141360,3,31070,3,1672319414),(141361,3,31071,3,1672319414),(141362,3,31072,3,1672319414),(141363,3,31073,3,1672319414),(141364,3,31074,3,1672319414),(141365,3,31075,3,1672319414),(141366,3,31076,3,1672319414),(141367,3,31077,3,1672319414),(141368,3,31078,3,1672319414),(141369,3,31079,3,1672319414),(141370,3,31080,3,1672319414),(141371,3,31081,3,1672319414),(141372,3,31082,3,1672319414),(141373,3,31083,3,1672319414),(141374,3,31084,3,1672319414),(141375,3,31085,3,1672319414),(141376,3,31086,3,1672319414),(141377,3,31087,3,1672319414),(141378,3,31088,3,1672319414),(141379,3,31089,3,1672319414),(141380,3,31090,3,1672319414),(141381,3,31091,3,1672319414),(141382,3,31092,3,1672319414),(141383,3,31093,3,1672319414),(141384,3,31094,3,1672319414),(141385,3,31095,3,1672319414),(141386,3,31096,3,1672319414),(141387,3,31097,3,1672319414),(141388,3,31098,3,1672319414),(141389,3,31099,3,1672319414),(141390,3,31100,3,1672319414),(141391,3,31101,3,1672319414),(141392,3,31102,3,1672319414),(141393,3,31103,3,1672319414),(141394,3,31104,3,1672319414),(141395,3,31105,3,1672319414),(141396,3,31106,3,1672319414),(141397,3,31107,3,1672319414),(141398,3,31108,3,1672319414),(141399,3,31109,3,1672319414),(141400,3,31110,3,1672319414),(141401,3,31111,3,1672319414),(141402,3,31112,3,1672319414),(141403,3,31113,3,1672319414),(141404,3,31114,3,1672319414),(141405,3,31115,3,1672319414),(141406,3,31116,3,1672319414),(141407,3,31117,3,1672319414),(141408,3,31118,3,1672319414),(141409,3,31119,3,1672319414),(141410,3,31120,3,1672319414),(141411,3,31121,3,1672319414),(141412,3,31168,3,1672319414),(141413,3,31169,3,1672319414),(141414,3,31170,3,1672319414),(141415,3,31171,3,1672319414),(141416,3,31172,3,1672319414),(141417,3,31173,3,1672319414),(141418,3,31174,3,1672319414),(141419,3,31175,3,1672319414),(141420,3,31176,3,1672319414),(141421,3,31177,3,1672319414),(141422,3,31178,3,1672319414),(141423,3,31179,3,1672319414),(141424,3,31180,3,1672319414),(141425,3,31181,3,1672319414),(141426,3,31182,3,1672319414),(141427,3,31183,3,1672319414),(141428,3,31184,3,1672319414),(141429,3,31185,3,1672319414),(141430,3,31186,3,1672319414),(141431,3,31187,3,1672319414),(141432,3,31188,3,1672319414),(141433,3,31189,3,1672319414),(141434,3,31190,3,1672319414),(141435,3,31191,3,1672319414),(141436,3,31192,3,1672319414),(141437,3,31193,3,1672319414),(141438,3,31194,3,1672319414),(141439,3,31195,3,1672319414),(141440,3,31196,3,1672319414),(141441,3,31197,3,1672319414),(141442,3,31198,3,1672319414),(141443,3,31199,3,1672319414),(141444,3,31200,3,1672319414),(141445,3,31201,3,1672319414),(141446,3,31202,3,1672319414),(141447,3,31203,3,1672319414),(141448,3,31204,3,1672319414),(141449,3,31205,3,1672319414),(141450,3,31206,3,1672319414),(141451,3,31207,3,1672319414),(141452,3,31208,3,1672319414),(141453,3,31209,3,1672319414),(141454,3,31210,3,1672319414),(141455,3,31211,3,1672319414),(141456,3,31212,3,1672319414),(141457,3,31213,3,1672319414),(141458,3,31214,3,1672319414),(141459,3,31215,3,1672319414),(141460,3,31216,3,1672319414),(141461,3,31217,3,1672319414),(141462,3,31218,3,1672319414),(141463,3,31219,3,1672319414),(141464,3,31220,3,1672319414),(141465,3,31221,3,1672319414),(141466,3,31222,3,1672319414),(141467,3,31223,3,1672319414),(141468,3,31224,3,1672319414),(141469,3,31225,3,1672319414),(141470,3,31226,3,1672319414),(141471,3,31227,3,1672319414),(141472,3,31228,3,1672319414),(141473,3,31229,3,1672319414),(141474,3,31230,3,1672319414),(141475,3,31231,3,1672319414),(141476,3,31232,3,1672319414),(141477,3,31233,3,1672319414),(141478,3,31234,3,1672319414),(141479,3,31235,3,1672319414),(141480,3,31236,3,1672319414),(141481,3,31237,3,1672319414),(141482,3,31238,3,1672319414),(141483,3,31239,3,1672319414),(141484,3,31240,3,1672319414),(141485,3,31241,3,1672319414),(141486,3,31242,3,1672319414),(141487,3,31243,3,1672319414),(141488,3,31244,3,1672319414),(141489,3,31245,3,1672319414),(141490,3,31246,3,1672319414),(141491,3,31247,3,1672319414),(141492,3,31248,3,1672319414),(141493,3,31249,3,1672319414),(141494,3,31250,3,1672319414),(141495,3,31251,3,1672319414),(141496,3,31252,3,1672319414),(141497,3,31554,3,1672319414),(141498,3,31555,3,1672319414),(141499,3,31556,3,1672319414),(141500,3,31570,3,1672319414),(141501,3,31571,3,1672319414),(141502,3,31573,3,1672319414),(141503,3,31577,3,1672319414),(141504,3,31578,3,1672319414),(141505,3,31579,3,1672319414),(141506,3,31580,3,1672319414),(141507,3,31581,3,1672319414),(141508,3,31582,3,1672319414),(141509,3,31583,3,1672319414),(141510,3,31584,3,1672319414),(141511,3,31585,3,1672319414),(141512,3,31586,3,1672319414),(141513,3,31587,3,1672319414),(141514,3,31588,3,1672319414),(141515,3,31589,3,1672319414),(141516,3,31590,3,1672319414),(141517,3,31591,3,1672319414),(141518,3,31592,3,1672319414),(141519,3,31593,3,1672319414),(141520,3,31594,3,1672319414),(141521,3,31595,3,1672319414),(141522,3,31596,3,1672319414),(141523,3,31597,3,1672319414),(141524,3,31598,3,1672319414),(141525,3,31599,3,1672319414),(141526,3,31600,3,1672319414),(141527,3,31601,3,1672319414),(141528,3,31602,3,1672319414),(141529,3,31603,3,1672319414),(141530,3,31604,3,1672319414),(141531,3,31605,3,1672319414),(141532,3,31606,3,1672319414),(141533,3,31607,3,1672319414),(141534,3,31608,3,1672319414),(141535,3,31609,3,1672319414),(141536,3,31610,3,1672319414),(141537,3,31611,3,1672319414),(141538,3,31684,3,1672319414),(141539,3,31685,3,1672319414),(141540,3,31686,3,1672319414),(141541,3,31687,3,1672319414),(141542,3,31688,3,1672319414),(141543,3,31689,3,1672319414),(141544,3,31690,3,1672319414),(141545,3,31691,3,1672319414),(141546,3,31692,3,1672319414),(141547,3,31693,3,1672319414),(141548,3,31694,3,1672319414),(141549,3,31695,3,1672319414),(141550,3,31696,3,1672319414),(141551,3,31697,3,1672319414),(141552,3,31698,3,1672319414),(141553,3,31699,3,1672319414),(141554,3,31700,3,1672319414),(141555,3,31701,3,1672319414),(141556,3,31702,3,1672319414),(141557,3,31703,3,1672319414),(141558,3,31704,3,1672319414),(141559,3,31705,3,1672319414),(141560,3,31706,3,1672319414),(141561,3,31707,3,1672319414),(141562,3,31708,3,1672319414),(141563,3,31709,3,1672319414),(141564,3,31710,3,1672319414),(141565,3,31711,3,1672319414),(141566,3,31712,3,1672319414),(141567,3,31713,3,1672319414),(141568,3,31714,3,1672319414),(141569,3,31715,3,1672319414),(141570,3,31716,3,1672319414),(141571,3,31717,3,1672319414),(141572,3,31718,3,1672319414),(141573,3,31719,3,1672319414),(141574,3,31720,3,1672319414),(141575,3,31721,3,1672319414),(141576,3,31722,3,1672319414),(141577,3,31723,3,1672319414),(141578,3,31724,3,1672319414),(141579,3,31725,3,1672319414),(141580,3,31726,3,1672319414),(141581,3,31727,3,1672319414),(141582,3,31728,3,1672319414),(141583,3,31729,3,1672319414),(141584,3,31730,3,1672319414),(141585,3,31731,3,1672319414),(141586,3,31732,3,1672319414),(141587,3,31733,3,1672319414),(141588,3,31734,3,1672319414),(141589,3,31735,3,1672319414),(141590,3,31736,3,1672319414),(141591,3,31737,3,1672319414),(141592,3,31738,3,1672319414),(141593,3,31739,3,1672319414),(141594,3,31740,3,1672319414),(141595,3,31741,3,1672319414),(141596,3,31742,3,1672319414),(141597,3,31743,3,1672319414),(141598,3,31744,3,1672319414),(141599,3,31745,3,1672319414),(141600,3,31746,3,1672319414),(141601,3,31747,3,1672319414),(141602,3,31748,3,1672319414),(141603,3,31749,3,1672319414),(141604,3,31750,3,1672319414),(141605,3,31751,3,1672319414),(141606,3,31752,3,1672319414),(141607,3,31753,3,1672319414),(141608,3,31754,3,1672319414),(141609,3,31755,3,1672319414),(141610,3,31756,3,1672319414),(141611,3,31757,3,1672319414),(141612,3,31758,3,1672319414),(141613,3,31759,3,1672319414),(141614,3,31760,3,1672319414),(141615,3,32364,3,1672319414),(141616,3,32365,3,1672319414),(141617,3,32366,3,1672319414),(141618,3,32367,3,1672319414),(141619,3,32368,3,1672319414),(141620,3,32369,3,1672319414),(141621,3,32370,3,1672319414),(141622,3,32371,3,1672319414),(141623,3,32372,3,1672319414),(141624,3,32373,3,1672319414),(141625,3,32374,3,1672319414),(141626,3,32375,3,1672319414),(141627,3,32376,3,1672319414),(141628,3,32377,3,1672319414),(141629,3,32378,3,1672319414),(141630,3,32379,3,1672319414),(141631,3,32380,3,1672319414),(141632,3,32381,3,1672319414),(141633,3,32382,3,1672319414),(141634,3,32383,3,1672319414),(141635,3,32384,3,1672319414),(141636,3,32385,3,1672319414),(141637,3,32386,3,1672319414),(141638,3,32387,3,1672319414),(141639,3,32388,3,1672319414),(141640,3,32389,3,1672319414),(141641,3,32390,3,1672319414),(141642,3,32391,3,1672319414),(141643,3,32392,3,1672319414),(141644,3,32393,3,1672319414),(141645,3,32394,3,1672319414),(141646,3,32395,3,1672319414),(141647,3,32396,3,1672319414),(141648,3,32397,3,1672319414),(141649,3,32398,3,1672319414),(141650,3,32399,3,1672319414),(141651,3,32400,3,1672319414),(141652,3,32401,3,1672319414),(141653,3,32402,3,1672319414),(141654,3,32403,3,1672319414),(141655,3,33126,3,1672319414),(141656,3,33127,3,1672319414),(141657,3,33128,3,1672319414),(141658,3,33129,3,1672319414),(141659,3,33130,3,1672319414),(141660,3,33131,3,1672319414),(141661,3,33132,3,1672319414),(141662,3,33140,3,1672319414),(141663,3,33141,3,1672319414),(141664,3,33142,3,1672319414),(141665,3,33143,3,1672319414),(141666,3,33144,3,1672319414),(141667,3,33145,3,1672319414),(141668,3,33146,3,1672319414),(141669,3,33154,3,1672319414),(141670,3,33155,3,1672319414),(141671,3,33156,3,1672319414),(141672,3,33157,3,1672319414),(141673,3,33158,3,1672319414),(141674,3,33159,3,1672319414),(141675,3,33160,3,1672319414),(141676,3,33184,3,1672319414),(141677,3,33185,3,1672319414),(141678,3,33186,3,1672319414),(141679,3,33187,3,1672319414),(141680,3,33188,3,1672319414),(141681,3,33189,3,1672319414),(141682,3,33190,3,1672319414),(141683,3,33191,3,1672319414),(141684,3,33192,3,1672319414),(141685,3,33193,3,1672319414),(141686,3,33194,3,1672319414),(141687,3,33195,3,1672319414),(141688,3,33196,3,1672319414),(141689,3,33197,3,1672319414),(141690,3,33198,3,1672319414),(141691,3,33199,3,1672319414),(141692,3,33200,3,1672319414),(141693,3,33201,3,1672319414),(141694,3,33202,3,1672319414),(141695,3,33203,3,1672319414),(141696,3,33204,3,1672319414),(141697,3,33207,3,1672319414),(141698,3,33208,3,1672319414),(141699,3,33209,3,1672319414),(141700,3,33210,3,1672319414),(141701,3,33211,3,1672319414),(141702,3,33212,3,1672319414),(141703,3,33213,3,1672319414),(141704,3,33214,3,1672319414),(141705,3,33215,3,1672319414),(141706,3,33216,3,1672319414),(141707,3,33217,3,1672319414),(141708,3,33218,3,1672319414),(141709,3,33219,3,1672319414),(141710,3,33220,3,1672319414),(141711,3,33221,3,1672319414),(141712,3,33222,3,1672319414),(141713,3,33223,3,1672319414),(141714,3,33224,3,1672319414),(141715,3,33227,3,1672319414),(141716,3,33228,3,1672319414),(141717,3,33229,3,1672319414),(141718,3,33230,3,1672319414),(141719,3,33231,3,1672319414),(141720,3,33232,3,1672319414),(141721,3,33233,3,1672319414),(141722,3,33234,3,1672319414),(141723,3,33235,3,1672319414),(141724,3,33236,3,1672319414),(141725,3,33237,3,1672319414),(141726,3,33238,3,1672319414),(141727,3,33239,3,1672319414),(141728,3,33240,3,1672319414),(141729,3,33241,3,1672319414),(141730,3,33242,3,1672319414),(141731,3,33243,3,1672319414),(141732,3,33244,3,1672319414),(141733,3,33245,3,1672319414),(141734,3,33246,3,1672319414),(141735,3,33247,3,1672319414),(141736,3,33250,3,1672319414),(141737,3,33251,3,1672319414),(141738,3,33252,3,1672319414),(141739,3,33253,3,1672319414),(141740,3,33254,3,1672319414),(141741,3,33255,3,1672319414),(141742,3,33256,3,1672319414),(141743,3,33259,3,1672319414),(141744,3,33260,3,1672319414),(141745,3,33261,3,1672319414),(141746,3,33262,3,1672319414),(141747,3,33263,3,1672319414),(141748,3,33264,3,1672319414),(141749,3,33265,3,1672319414),(141750,3,33266,3,1672319414),(141751,3,33267,3,1672319414),(141752,3,33268,3,1672319414),(141753,3,33269,3,1672319414),(141754,3,33270,3,1672319414),(141755,3,33271,3,1672319414),(141756,3,33272,3,1672319414),(141757,3,33273,3,1672319414),(141758,3,33274,3,1672319414),(141759,3,33275,3,1672319414),(141760,3,33278,3,1672319414),(141761,3,33279,3,1672319414),(141762,3,33280,3,1672319414),(141763,3,33281,3,1672319414),(141764,3,33282,3,1672319414),(141765,3,33283,3,1672319414),(141766,3,33284,3,1672319414),(141767,3,33285,3,1672319414),(141768,3,33286,3,1672319414),(141769,3,33287,3,1672319414),(141770,3,33288,3,1672319414),(141771,3,33289,3,1672319414),(141772,3,33290,3,1672319414),(141773,3,33291,3,1672319414),(141774,3,33292,3,1672319414),(141775,3,33293,3,1672319414),(141776,3,33294,3,1672319414),(141777,3,33297,3,1672319414),(141778,3,33298,3,1672319414),(141779,3,33299,3,1672319414),(141780,3,33300,3,1672319414),(141781,3,33301,3,1672319414),(141782,3,33302,3,1672319414),(141783,3,33303,3,1672319414),(141784,3,33304,3,1672319414),(141785,3,33305,3,1672319414),(141786,3,33348,3,1672319414),(141787,3,33349,3,1672319414),(141788,3,33350,3,1672319414),(141789,3,33351,3,1672319414),(141790,3,33764,3,1672319414),(141791,3,33765,3,1672319414),(141792,3,33766,3,1672319414),(141793,3,33767,3,1672319414),(141794,3,33768,3,1672319414),(141795,3,33769,3,1672319414),(141796,3,33770,3,1672319414),(141797,3,33771,3,1672319414),(141798,3,33772,3,1672319414),(141799,3,33773,3,1672319414),(141800,3,33774,3,1672319414),(141801,3,33775,3,1672319414),(141802,3,33776,3,1672319414),(141803,3,33777,3,1672319414),(141804,3,33778,3,1672319414),(141805,3,33779,3,1672319414),(141806,3,33780,3,1672319414),(141807,3,33781,3,1672319414),(141808,3,33782,3,1672319414),(141809,3,33783,3,1672319414),(141810,3,33784,3,1672319414),(141811,3,33785,3,1672319414),(141812,3,33786,3,1672319414),(141813,3,33787,3,1672319414),(141814,3,33788,3,1672319414),(141815,3,33789,3,1672319414),(141816,3,33790,3,1672319414),(141817,3,33791,3,1672319414),(141818,3,33792,3,1672319414),(141819,3,33793,3,1672319414),(141820,3,33794,3,1672319414),(141821,3,33795,3,1672319414),(141822,3,33796,3,1672319414),(141823,3,33797,3,1672319414),(141824,3,33798,3,1672319414),(141825,3,33799,3,1672319414),(141826,3,33800,3,1672319414),(141827,3,33801,3,1672319414),(141828,3,33802,3,1672319414),(141829,3,33803,3,1672319414),(141830,3,33804,3,1672319414),(141831,3,33805,3,1672319414),(141832,3,33806,3,1672319414),(141833,3,33807,3,1672319414),(141834,3,33886,3,1672319414),(141835,3,33887,3,1672319414),(141836,3,33888,3,1672319414),(141837,3,33889,3,1672319414),(141838,3,33891,3,1672319414),(141839,3,33892,3,1672319414),(141840,3,33893,3,1672319414),(141841,3,33894,3,1672319414),(141842,3,33895,3,1672319414),(141843,3,33896,3,1672319414),(141844,3,33897,3,1672319414),(141845,3,33898,3,1672319414),(141846,3,33899,3,1672319414),(141847,3,33900,3,1672319414),(141848,3,33901,3,1672319414),(141849,3,33902,3,1672319414),(141850,3,33903,3,1672319414),(141851,3,33904,3,1672319414),(141852,3,33905,3,1672319414),(141853,3,33906,3,1672319414),(141854,3,33907,3,1672319414),(141855,3,33908,3,1672319414),(141856,3,33909,3,1672319414),(141857,3,33910,3,1672319414),(141858,3,33911,3,1672319414),(141859,3,33912,3,1672319414),(141860,3,33913,3,1672319414),(141861,3,33914,3,1672319414),(141862,3,33915,3,1672319414),(141863,3,33916,3,1672319414),(141864,3,33917,3,1672319414),(141865,3,33918,3,1672319414),(141866,3,33919,3,1672319414),(141867,3,34226,3,1672319414),(141868,3,34227,3,1672319414),(141869,3,34228,3,1672319414),(141870,3,34229,3,1672319414),(141871,3,34230,3,1672319414),(141872,3,34231,3,1672319414),(141873,3,34232,3,1672319414),(141874,3,34233,3,1672319414),(141875,3,34234,3,1672319414),(141876,3,34235,3,1672319414),(141877,3,34236,3,1672319414),(141878,3,34237,3,1672319414),(141879,3,34238,3,1672319414),(141880,3,34239,3,1672319414),(141881,3,34240,3,1672319414),(141882,3,34241,3,1672319414),(141883,3,34242,3,1672319414),(141884,3,34243,3,1672319414),(141885,3,34244,3,1672319414),(141886,3,34245,3,1672319414),(141887,3,34246,3,1672319414),(141888,3,34247,3,1672319414),(141889,3,34248,3,1672319414),(141890,3,34249,3,1672319414),(141891,3,34250,3,1672319414),(141892,3,34251,3,1672319414),(141893,3,34252,3,1672319414),(141894,3,34253,3,1672319414),(141895,3,34254,3,1672319414),(141896,3,34255,3,1672319414),(141897,3,34256,3,1672319414),(141898,3,34257,3,1672319414),(141899,3,34258,3,1672319414),(141900,3,34259,3,1672319414),(141901,3,34321,3,1672319414),(141902,3,34322,3,1672319414),(141903,3,34323,3,1672319414),(141904,3,35153,3,1672319414),(141905,3,35154,3,1672319414),(141906,3,35155,3,1672319414),(141907,3,35156,3,1672319414),(141908,3,35157,3,1672319414),(141909,3,35158,3,1672319414),(141910,3,35159,3,1672319414),(141911,3,35160,3,1672319414),(141912,3,35161,3,1672319414),(141913,3,35162,3,1672319414),(141914,3,35163,3,1672319414),(141915,3,35164,3,1672319414),(141916,3,35165,3,1672319414),(141917,3,35166,3,1672319414),(141918,3,35167,3,1672319414),(141919,3,35168,3,1672319414),(141920,3,35169,3,1672319414),(141921,3,35170,3,1672319414),(141922,3,35171,3,1672319414),(141923,3,35172,3,1672319414),(141924,3,35173,3,1672319414),(141925,3,35174,3,1672319414),(141926,3,35175,3,1672319414),(141927,3,35176,3,1672319414),(141928,3,38575,3,1672319414),(141929,3,38576,3,1672319414),(141930,3,38577,3,1672319414),(141931,3,38578,3,1672319414),(141932,3,38579,3,1672319414),(141933,3,38580,3,1672319414),(141934,3,38581,3,1672319414),(141935,3,38629,3,1672319414),(141936,3,38630,3,1672319414),(141937,3,38631,3,1672319414),(141938,3,38632,3,1672319414),(141939,3,38633,3,1672319414),(141940,3,38634,3,1672319414),(141941,3,38635,3,1672319414),(141942,3,38683,3,1672319414),(141943,3,38684,3,1672319414),(141944,3,38685,3,1672319414),(141945,3,38686,3,1672319414),(141946,3,38687,3,1672319414),(141947,3,38688,3,1672319414),(141948,3,38689,3,1672319414),(141949,3,38737,3,1672319414),(141950,3,38738,3,1672319414),(141951,3,38739,3,1672319414),(141952,3,38740,3,1672319414),(141953,3,38741,3,1672319414),(141954,3,38742,3,1672319414),(141955,3,38743,3,1672319414),(141956,3,38791,3,1672319414),(141957,3,38792,3,1672319414),(141958,3,38793,3,1672319414),(141959,3,38794,3,1672319414),(141960,3,38795,3,1672319414),(141961,3,38796,3,1672319414),(141962,3,38797,3,1672319414),(141963,3,38845,3,1672319414),(141964,3,38846,3,1672319414),(141965,3,38847,3,1672319414),(141966,3,38848,3,1672319414),(141967,3,38849,3,1672319414),(141968,3,38850,3,1672319414),(141969,3,38851,3,1672319414),(141970,3,38899,3,1672319414),(141971,3,38900,3,1672319414),(141972,3,38901,3,1672319414),(141973,3,38902,3,1672319414),(141974,3,38903,3,1672319414),(141975,3,38904,3,1672319414),(141976,3,38905,3,1672319414),(141977,3,38953,3,1672319414),(141978,3,38954,3,1672319414),(141979,3,38955,3,1672319414),(141980,3,38956,3,1672319414),(141981,3,38957,3,1672319414),(141982,3,38958,3,1672319414),(141983,3,38959,3,1672319414),(141984,3,39007,3,1672319414),(141985,3,39008,3,1672319414),(141986,3,39009,3,1672319414),(141987,3,39010,3,1672319414),(141988,3,39011,3,1672319414),(141989,3,39012,3,1672319414),(141990,3,39013,3,1672319414),(141991,3,39061,3,1672319414),(141992,3,39062,3,1672319414),(141993,3,39063,3,1672319414),(141994,3,39064,3,1672319414),(141995,3,39065,3,1672319414),(141996,3,39066,3,1672319414),(141997,3,39067,3,1672319414),(141998,3,39115,3,1672319414),(141999,3,39116,3,1672319414),(142000,3,39117,3,1672319414),(142001,3,39118,3,1672319414),(142002,3,39119,3,1672319414),(142003,3,39120,3,1672319414),(142004,3,39121,3,1672319414),(142005,3,39169,3,1672319414),(142006,3,39170,3,1672319414),(142007,3,39171,3,1672319414),(142008,3,39172,3,1672319414),(142009,3,39173,3,1672319414),(142010,3,39174,3,1672319414),(142011,3,39175,3,1672319414),(142012,3,39223,3,1672319414),(142013,3,39224,3,1672319414),(142014,3,39225,3,1672319414),(142015,3,39226,3,1672319414),(142016,3,39227,3,1672319414),(142017,3,39228,3,1672319414),(142018,3,39229,3,1672319414),(142019,3,39277,3,1672319414),(142020,3,39278,3,1672319414),(142021,3,39279,3,1672319414),(142022,3,39280,3,1672319414),(142023,3,39281,3,1672319414),(142024,3,39282,3,1672319414),(142025,3,39283,3,1672319414),(142026,3,39601,3,1672319414),(142027,3,39602,3,1672319414),(142028,3,39603,3,1672319414),(142029,3,39604,3,1672319414),(142030,3,39605,3,1672319414),(142031,3,39606,3,1672319414),(142032,3,39607,3,1672319414),(142033,3,39655,3,1672319414),(142034,3,39656,3,1672319414),(142035,3,39657,3,1672319414),(142036,3,39658,3,1672319414),(142037,3,39659,3,1672319414),(142038,3,39660,3,1672319414),(142039,3,39661,3,1672319414),(142040,3,39709,3,1672319414),(142041,3,39710,3,1672319414),(142042,3,39711,3,1672319414),(142043,3,39712,3,1672319414),(142044,3,39713,3,1672319414),(142045,3,39714,3,1672319414),(142046,3,39715,3,1672319414),(142047,3,40117,3,1672319414),(142048,3,40119,3,1672319414),(142049,3,40120,3,1672319414),(142050,3,40121,3,1672319414),(142051,3,40122,3,1672319414),(142052,3,40123,3,1672319414),(142053,3,40124,3,1672319414),(142054,3,40125,3,1672319414),(142055,3,40126,3,1672319414),(142056,3,40128,3,1672319414),(142057,3,40129,3,1672319414),(142058,3,40130,3,1672319414),(142059,3,40131,3,1672319414),(142060,3,40132,3,1672319414),(142061,3,40133,3,1672319414),(142062,3,40134,3,1672319414),(142063,3,40135,3,1672319414),(142064,3,40136,3,1672319414),(142065,3,40798,3,1672319414),(142066,3,40799,3,1672319414),(142067,3,40800,3,1672319414),(142068,3,40801,3,1672319414),(142069,3,40802,3,1672319414),(142070,3,40803,3,1672319414),(142071,3,40804,3,1672319414),(142072,3,40805,3,1672319414),(142073,3,40806,3,1672319414),(142074,3,40807,3,1672319414),(142075,3,40808,3,1672319414),(142076,3,41606,3,1672319414),(142077,3,41607,3,1672319414),(142078,3,41608,3,1672319414),(142079,3,41609,3,1672319414),(142080,3,41610,3,1672319414),(142081,3,41611,3,1672319414),(142082,3,41612,3,1672319414),(142083,3,41613,3,1672319414),(142084,3,41614,3,1672319414),(142085,3,41615,3,1672319414),(142086,3,41616,3,1672319414),(142087,3,41627,3,1672319414),(142088,3,41628,3,1672319414),(142089,3,41629,3,1672319414),(142090,3,41630,3,1672319414),(142091,3,41631,3,1672319414),(142092,3,41632,3,1672319414),(142093,3,41633,3,1672319414),(142094,3,41634,3,1672319414),(142095,3,41635,3,1672319414),(142096,3,41636,3,1672319414),(142097,3,41637,3,1672319414),(142098,3,41648,3,1672319414),(142099,3,41649,3,1672319414),(142100,3,41650,3,1672319414),(142101,3,41651,3,1672319414),(142102,3,41652,3,1672319414),(142103,3,41653,3,1672319414),(142104,3,41654,3,1672319414),(142105,3,41655,3,1672319414),(142106,3,41656,3,1672319414),(142107,3,41657,3,1672319414),(142108,3,41658,3,1672319414),(142109,3,41669,3,1672319414),(142110,3,41670,3,1672319414),(142111,3,41671,3,1672319414),(142112,3,41672,3,1672319414),(142113,3,41673,3,1672319414),(142114,3,41674,3,1672319414),(142115,3,41675,3,1672319414),(142116,3,41676,3,1672319414),(142117,3,41677,3,1672319414),(142118,3,41678,3,1672319414),(142119,3,41679,3,1672319414),(142120,3,41690,3,1672319414),(142121,3,41691,3,1672319414),(142122,3,41692,3,1672319414),(142123,3,41693,3,1672319414),(142124,3,41694,3,1672319414),(142125,3,41695,3,1672319414),(142126,3,41696,3,1672319414),(142127,3,41697,3,1672319414),(142128,3,41698,3,1672319414),(142129,3,41699,3,1672319414),(142130,3,41700,3,1672319414),(142131,3,41711,3,1672319414),(142132,3,41712,3,1672319414),(142133,3,41713,3,1672319414),(142134,3,41714,3,1672319414),(142135,3,41715,3,1672319414),(142136,3,41716,3,1672319414),(142137,3,41717,3,1672319414),(142138,3,41718,3,1672319414),(142139,3,41719,3,1672319414),(142140,3,41720,3,1672319414),(142141,3,41721,3,1672319414),(142142,3,41732,3,1672319414),(142143,3,41733,3,1672319414),(142144,3,41734,3,1672319414),(142145,3,41735,3,1672319414),(142146,3,41736,3,1672319414),(142147,3,41737,3,1672319414),(142148,3,41738,3,1672319414),(142149,3,41739,3,1672319414),(142150,3,41740,3,1672319414),(142151,3,41741,3,1672319414),(142152,3,41742,3,1672319414),(142153,3,41753,3,1672319414),(142154,3,41754,3,1672319414),(142155,3,41755,3,1672319414),(142156,3,41756,3,1672319414),(142157,3,41757,3,1672319414),(142158,3,41758,3,1672319414),(142159,3,41759,3,1672319414),(142160,3,41760,3,1672319414),(142161,3,41761,3,1672319414),(142162,3,41762,3,1672319414),(142163,3,41763,3,1672319414),(142164,3,41774,3,1672319414),(142165,3,41775,3,1672319414),(142166,3,41776,3,1672319414),(142167,3,41777,3,1672319414),(142168,3,41778,3,1672319414),(142169,3,41779,3,1672319414),(142170,3,41780,3,1672319414),(142171,3,41781,3,1672319414),(142172,3,41782,3,1672319414),(142173,3,41783,3,1672319414),(142174,3,41784,3,1672319414),(142175,3,41795,3,1672319414),(142176,3,41796,3,1672319414),(142177,3,41797,3,1672319414),(142178,3,41798,3,1672319414),(142179,3,41799,3,1672319414),(142180,3,41800,3,1672319414),(142181,3,41801,3,1672319414),(142182,3,41802,3,1672319414),(142183,3,41803,3,1672319414),(142184,3,41804,3,1672319414),(142185,3,41805,3,1672319414),(142186,3,41816,3,1672319414),(142187,3,41817,3,1672319414),(142188,3,41818,3,1672319414),(142189,3,41819,3,1672319414),(142190,3,41820,3,1672319414),(142191,3,41821,3,1672319414),(142192,3,41822,3,1672319414),(142193,3,41823,3,1672319414),(142194,3,41824,3,1672319414),(142195,3,41825,3,1672319414),(142196,3,41826,3,1672319414),(142197,3,41837,3,1672319414),(142198,3,41838,3,1672319414),(142199,3,41839,3,1672319414),(142200,3,41840,3,1672319414),(142201,3,41841,3,1672319414),(142202,3,41842,3,1672319414),(142203,3,41843,3,1672319414),(142204,3,41844,3,1672319414),(142205,3,41845,3,1672319414),(142206,3,41846,3,1672319414),(142207,3,41847,3,1672319414),(142208,3,41858,3,1672319414),(142209,3,41859,3,1672319414),(142210,3,41860,3,1672319414),(142211,3,41861,3,1672319414),(142212,3,41862,3,1672319414),(142213,3,41863,3,1672319414),(142214,3,41864,3,1672319414),(142215,3,41865,3,1672319414),(142216,3,41866,3,1672319414),(142217,3,41867,3,1672319414),(142218,3,41868,3,1672319414),(142219,3,41879,3,1672319414),(142220,3,41880,3,1672319414),(142221,3,41881,3,1672319414),(142222,3,41882,3,1672319414),(142223,3,41883,3,1672319414),(142224,3,41884,3,1672319414),(142225,3,41885,3,1672319414),(142226,3,41886,3,1672319414),(142227,3,41887,3,1672319414),(142228,3,41888,3,1672319414),(142229,3,41889,3,1672319414),(142230,3,42005,3,1672319414),(142231,3,42006,3,1672319414),(142232,3,42007,3,1672319414),(142233,3,42008,3,1672319414),(142234,3,42009,3,1672319414),(142235,3,42010,3,1672319414),(142236,3,42011,3,1672319414),(142237,3,42012,3,1672319414),(142238,3,42013,3,1672319414),(142239,3,42014,3,1672319414),(142240,3,42015,3,1672319414),(142241,3,42026,3,1672319414),(142242,3,42027,3,1672319414),(142243,3,42028,3,1672319414),(142244,3,42029,3,1672319414),(142245,3,42030,3,1672319414),(142246,3,42031,3,1672319414),(142247,3,42032,3,1672319414),(142248,3,42033,3,1672319414),(142249,3,42034,3,1672319414),(142250,3,42035,3,1672319414),(142251,3,42036,3,1672319414),(142252,3,42047,3,1672319414),(142253,3,42048,3,1672319414),(142254,3,42049,3,1672319414),(142255,3,42050,3,1672319414),(142256,3,42051,3,1672319414),(142257,3,42052,3,1672319414),(142258,3,42053,3,1672319414),(142259,3,42054,3,1672319414),(142260,3,42055,3,1672319414),(142261,3,42056,3,1672319414),(142262,3,42057,3,1672319414),(142263,3,42089,3,1672319414),(142264,3,42090,3,1672319414),(142265,3,42091,3,1672319414),(142266,3,42092,3,1672319414),(142267,3,42093,3,1672319414),(142268,3,42094,3,1672319414),(142269,3,42095,3,1672319414),(142270,3,42096,3,1672319414),(142271,3,42097,3,1672319414),(142272,3,42098,3,1672319414),(142273,3,42099,3,1672319414),(142274,3,42447,3,1672319414),(142275,3,42448,3,1672319414),(142276,3,42449,3,1672319414),(142277,3,42450,3,1672319414),(142278,3,42609,3,1672319414),(142279,3,42610,3,1672319414),(142280,3,42611,3,1672319414),(142281,3,42612,3,1672319414),(142282,3,42613,3,1672319414),(142283,3,42614,3,1672319414),(142284,3,42615,3,1672319414),(142285,3,42616,3,1672319414),(142286,3,42617,3,1672319414),(142287,3,42618,3,1672319414),(142288,3,42619,3,1672319414),(142289,3,42724,3,1672319414),(142290,3,42725,3,1672319414),(142291,3,43547,3,1672319414),(142292,3,43548,3,1672319414),(142293,3,43549,3,1672319414),(142294,3,43550,3,1672319414),(142295,3,43551,3,1672319414),(142296,3,43552,3,1672319414),(142297,3,43553,3,1672319414),(142298,3,43554,3,1672319414),(142299,3,43555,3,1672319414),(142300,3,43556,3,1672319414),(142301,3,43557,3,1672319414),(142302,3,43558,3,1672319414),(142303,3,43559,3,1672319414),(142304,3,43560,3,1672319414),(142305,3,43561,3,1672319414),(142306,3,43562,3,1672319414),(142307,3,43563,3,1672319414),(142308,3,43564,3,1672319414),(142309,3,43787,3,1672319414),(142310,3,43826,3,1672319414),(142311,3,43827,3,1672319414),(142312,3,43828,3,1672319414),(142313,3,43829,3,1672319414),(142314,3,43830,3,1672319414),(142315,3,43831,3,1672319414),(142316,3,43832,3,1672319414),(142317,3,43833,3,1672319414),(142318,3,43834,3,1672319414),(142319,3,43835,3,1672319414),(142320,3,43836,3,1672319414),(142321,3,43837,3,1672319414),(142322,3,43838,3,1672319414),(142323,3,43839,3,1672319414),(142324,3,43845,3,1672319414),(142325,3,43846,3,1672319414),(142326,3,43847,3,1672319414),(142327,3,43849,3,1672319414),(142328,3,43850,3,1672319414),(142329,3,43851,3,1672319414),(142330,3,43852,3,1672319414),(142331,3,43853,3,1672319414),(142332,3,43854,3,1672319414),(142333,3,43855,3,1672319414),(142334,3,43856,3,1672319414),(142335,3,43888,3,1672319414),(142336,3,44235,3,1672319414),(142337,3,44343,3,1672319414),(142338,3,44351,3,1672319414),(142339,3,44447,3,1672319414),(142340,1,10074,3,1672319415),(142341,1,10098,3,1672319415),(142342,1,10099,3,1672319415),(142343,1,10100,3,1672319415),(142344,1,10226,3,1672319415),(142345,1,10234,3,1672319415),(142346,1,10266,3,1672319415),(142347,1,10267,3,1672319415),(142348,1,10316,3,1672319415),(142349,1,10317,3,1672319415),(142350,1,10320,3,1672319415),(142351,1,10327,3,1672319415),(142352,1,10328,3,1672319415),(142353,1,10330,3,1672319415),(142354,1,10331,3,1672319415),(142355,1,10335,3,1672319415),(142356,1,10357,3,1672319415),(142357,1,10371,3,1672319415),(142358,1,10372,3,1672319415),(142359,1,10373,3,1672319415),(142360,1,10374,3,1672319415),(142361,1,10375,3,1672319415),(142362,1,10376,3,1672319415),(142363,1,10377,3,1672319415),(142364,1,10378,3,1672319415),(142365,1,10386,3,1672319415),(142366,1,10387,3,1672319415),(142367,1,10396,3,1672319415),(142368,1,10415,3,1672319415),(142369,1,10481,3,1672319415),(142370,1,10482,3,1672319415),(142371,1,10483,3,1672319415),(142372,1,10484,3,1672319415),(142373,1,10485,3,1672319415),(142374,1,10486,3,1672319415),(142375,1,10487,3,1672319415),(142376,1,10488,3,1672319415),(142377,1,10489,3,1672319415),(142378,1,10490,3,1672319415),(142379,1,10491,3,1672319415),(142380,1,10492,3,1672319415),(142381,1,10493,3,1672319415),(142382,1,10494,3,1672319415),(142383,1,10500,3,1672319415),(142384,1,10501,3,1672319415),(142385,1,10502,3,1672319415),(142386,1,10515,3,1672319415),(142387,1,10516,3,1672319415),(142388,1,10528,3,1672319415),(142389,1,10542,3,1672319415),(142390,3,23025,2,1672319418),(142391,3,23026,2,1672319418),(142392,3,23028,2,1672319418),(142393,3,23029,2,1672319418),(142394,3,23030,2,1672319418),(142395,3,23031,2,1672319418),(142396,3,23032,2,1672319418),(142397,3,28003,2,1672319418),(142398,3,28495,2,1672319418),(142399,3,28496,2,1672319418),(142400,3,29512,2,1672319418),(142401,3,29513,2,1672319418),(142402,3,29514,2,1672319418),(142403,3,29720,2,1672319418),(142404,3,29721,2,1672319418),(142405,3,29722,2,1672319418),(142406,3,29723,2,1672319418),(142407,3,29724,2,1672319418),(142408,3,29725,2,1672319418),(142409,3,29726,2,1672319418),(142410,3,29727,2,1672319418),(142411,3,29728,2,1672319418),(142412,3,29729,2,1672319418),(142413,3,29730,2,1672319418),(142414,3,29731,2,1672319418),(142415,3,29732,2,1672319418),(142416,3,29733,2,1672319418),(142417,3,29734,2,1672319418),(142418,3,29735,2,1672319418),(142419,3,29736,2,1672319418),(142420,3,29737,2,1672319418),(142421,3,29787,2,1672319418),(142422,3,29788,2,1672319418),(142423,3,29789,2,1672319418),(142424,3,29790,2,1672319418),(142425,3,29791,2,1672319418),(142426,3,29792,2,1672319418),(142427,3,29793,2,1672319418),(142428,3,29794,2,1672319418),(142429,3,29795,2,1672319418),(142430,3,29796,2,1672319418),(142431,3,29797,2,1672319418),(142432,3,29798,2,1672319418),(142433,3,29799,2,1672319418),(142434,3,29800,2,1672319418),(142435,3,29801,2,1672319418),(142436,3,29802,2,1672319418),(142437,3,29803,2,1672319418),(142438,3,29804,2,1672319418),(142439,3,29805,2,1672319418),(142440,3,29806,2,1672319418),(142441,3,29807,2,1672319418),(142442,3,29808,2,1672319418),(142443,3,29809,2,1672319418),(142444,3,29810,2,1672319418),(142445,3,29811,2,1672319418),(142446,3,29812,2,1672319418),(142447,3,29813,2,1672319418),(142448,3,29814,2,1672319418),(142449,3,29815,2,1672319418),(142450,3,29816,2,1672319418),(142451,3,29817,2,1672319418),(142452,3,29818,2,1672319418),(142453,3,29819,2,1672319418),(142454,3,29820,2,1672319418),(142455,3,30027,2,1672319418),(142456,3,30028,2,1672319418),(142457,3,30029,2,1672319418),(142458,3,30030,2,1672319418),(142459,3,30031,2,1672319418),(142460,3,30032,2,1672319418),(142461,3,30033,2,1672319418),(142462,3,30034,2,1672319418),(142463,3,30035,2,1672319418),(142464,3,30036,2,1672319418),(142465,3,30037,2,1672319418),(142466,3,30038,2,1672319418),(142467,3,30039,2,1672319418),(142468,3,30040,2,1672319418),(142469,3,30041,2,1672319418),(142470,3,30042,2,1672319418),(142471,3,30129,2,1672319418),(142472,3,30130,2,1672319418),(142473,3,30131,2,1672319418),(142474,3,30344,2,1672319418),(142475,3,30345,2,1672319418),(142476,3,30346,2,1672319418),(142477,3,30347,2,1672319418),(142478,3,30348,2,1672319418),(142479,3,30349,2,1672319418),(142480,3,30350,2,1672319418),(142481,3,30351,2,1672319418),(142482,3,30352,2,1672319418),(142483,3,30353,2,1672319418),(142484,3,30354,2,1672319418),(142485,3,30355,2,1672319418),(142486,3,30356,2,1672319418),(142487,3,30357,2,1672319418),(142488,3,30358,2,1672319418),(142489,3,30359,2,1672319418),(142490,3,30360,2,1672319418),(142491,3,30361,2,1672319418),(142492,3,30362,2,1672319418),(142493,3,30363,2,1672319418),(142494,3,30364,2,1672319418),(142495,3,30365,2,1672319418),(142496,3,30366,2,1672319418),(142497,3,30367,2,1672319418),(142498,3,30368,2,1672319418),(142499,3,30369,2,1672319418),(142500,3,30370,2,1672319418),(142501,3,30371,2,1672319418),(142502,3,30372,2,1672319418),(142503,3,30373,2,1672319418),(142504,3,30374,2,1672319418),(142505,3,30375,2,1672319418),(142506,3,30376,2,1672319418),(142507,3,30377,2,1672319418),(142508,3,30378,2,1672319418),(142509,3,30379,2,1672319418),(142510,3,30380,2,1672319418),(142511,3,30381,2,1672319418),(142512,3,30382,2,1672319418),(142513,3,30383,2,1672319418),(142514,3,30384,2,1672319418),(142515,3,30385,2,1672319418),(142516,3,30386,2,1672319418),(142517,3,30387,2,1672319418),(142518,3,30388,2,1672319418),(142519,3,30389,2,1672319418),(142520,3,30390,2,1672319418),(142521,3,30391,2,1672319418),(142522,3,30392,2,1672319418),(142523,3,30393,2,1672319418),(142524,3,30394,2,1672319418),(142525,3,30395,2,1672319418),(142526,3,30396,2,1672319418),(142527,3,30397,2,1672319418),(142528,3,30398,2,1672319418),(142529,3,30399,2,1672319418),(142530,3,30400,2,1672319418),(142531,3,30401,2,1672319418),(142532,3,30402,2,1672319418),(142533,3,30403,2,1672319418),(142534,3,30404,2,1672319418),(142535,3,30425,2,1672319418),(142536,3,31335,2,1672319418),(142537,3,31336,2,1672319418),(142538,3,31337,2,1672319418),(142539,3,31338,2,1672319418),(142540,3,31339,2,1672319418),(142541,3,31340,2,1672319418),(142542,3,31341,2,1672319418),(142543,3,31342,2,1672319418),(142544,3,31343,2,1672319418),(142545,3,31344,2,1672319418),(142546,3,31345,2,1672319418),(142547,3,31346,2,1672319418),(142548,3,31347,2,1672319418),(142549,3,31348,2,1672319418),(142550,3,31349,2,1672319418),(142551,3,31350,2,1672319418),(142552,3,31351,2,1672319418),(142553,3,31352,2,1672319418),(142554,3,31353,2,1672319418),(142555,3,31354,2,1672319418),(142556,3,31355,2,1672319418),(142557,3,31356,2,1672319418),(142558,3,31357,2,1672319418),(142559,3,31358,2,1672319418),(142560,3,31359,2,1672319418),(142561,3,31360,2,1672319418),(142562,3,31361,2,1672319418),(142563,3,31362,2,1672319418),(142564,3,31363,2,1672319418),(142565,3,31433,2,1672319418),(142566,3,31434,2,1672319418),(142567,3,31435,2,1672319418),(142568,3,31436,2,1672319418),(142569,3,31437,2,1672319418),(142570,3,31438,2,1672319418),(142571,3,31439,2,1672319418),(142572,3,31440,2,1672319418),(142573,3,31441,2,1672319418),(142574,3,31442,2,1672319418),(142575,3,31453,2,1672319418),(142576,3,31454,2,1672319418),(142577,3,31455,2,1672319418),(142578,3,31663,2,1672319418),(142579,3,31664,2,1672319418),(142580,3,31665,2,1672319418),(142581,3,31666,2,1672319418),(142582,3,31667,2,1672319418),(142583,3,32012,2,1672319418),(142584,3,32013,2,1672319418),(142585,3,32014,2,1672319418),(142586,3,32015,2,1672319418),(142587,3,32016,2,1672319418),(142588,3,32017,2,1672319418),(142589,3,32018,2,1672319418),(142590,3,32019,2,1672319418),(142591,3,32020,2,1672319418),(142592,3,32021,2,1672319418),(142593,3,32022,2,1672319418),(142594,3,32023,2,1672319418),(142595,3,32024,2,1672319418),(142596,3,32040,2,1672319418),(142597,3,32041,2,1672319418),(142598,3,32042,2,1672319418),(142599,3,32935,2,1672319418),(142600,3,32936,2,1672319418),(142601,3,32937,2,1672319418),(142602,3,32938,2,1672319418),(142603,3,32939,2,1672319418),(142604,3,32940,2,1672319418),(142605,3,32941,2,1672319418),(142606,3,32942,2,1672319418),(142607,3,32943,2,1672319418),(142608,3,32944,2,1672319418),(142609,3,32945,2,1672319418),(142610,3,32946,2,1672319418),(142611,3,32947,2,1672319418),(142612,3,32948,2,1672319418),(142613,3,32949,2,1672319418),(142614,3,32950,2,1672319418),(142615,3,32958,2,1672319418),(142616,3,32959,2,1672319418),(142617,3,32960,2,1672319418),(142618,3,32961,2,1672319418),(142619,3,32962,2,1672319418),(142620,3,33178,2,1672319418),(142621,3,33179,2,1672319418),(142622,3,33180,2,1672319418),(142623,3,33321,2,1672319418),(142624,3,33322,2,1672319418),(142625,3,33323,2,1672319418),(142626,3,33324,2,1672319418),(142627,3,33329,2,1672319418),(142628,3,33330,2,1672319418),(142629,3,33331,2,1672319418),(142630,3,33332,2,1672319418),(142631,3,33650,2,1672319418),(142632,3,33651,2,1672319418),(142633,3,33652,2,1672319418),(142634,3,33653,2,1672319418),(142635,3,33654,2,1672319418),(142636,3,33655,2,1672319418),(142637,3,33747,2,1672319418),(142638,3,33748,2,1672319418),(142639,3,33749,2,1672319418),(142640,3,33750,2,1672319418),(142641,3,33751,2,1672319418),(142642,3,33752,2,1672319418),(142643,3,33753,2,1672319418),(142644,3,33757,2,1672319418),(142645,3,33758,2,1672319418),(142646,3,33759,2,1672319418),(142647,3,33760,2,1672319418),(142648,3,33761,2,1672319418),(142649,3,33762,2,1672319418),(142650,3,33763,2,1672319418),(142651,3,34348,2,1672319418),(142652,3,34349,2,1672319418),(142653,3,34350,2,1672319418),(142654,3,34351,2,1672319418),(142655,3,34352,2,1672319418),(142656,3,34353,2,1672319418),(142657,3,34354,2,1672319418),(142658,3,34355,2,1672319418),(142659,3,34356,2,1672319418),(142660,3,34357,2,1672319418),(142661,3,34358,2,1672319418),(142662,3,34359,2,1672319418),(142663,3,34360,2,1672319418),(142664,3,34361,2,1672319418),(142665,3,34362,2,1672319418),(142666,3,34363,2,1672319418),(142667,3,34364,2,1672319418),(142668,3,34365,2,1672319418),(142669,3,34366,2,1672319418),(142670,3,34405,2,1672319418),(142671,3,34406,2,1672319418),(142672,3,34407,2,1672319418),(142673,3,34408,2,1672319418),(142674,3,34409,2,1672319418),(142675,3,34410,2,1672319418),(142676,3,34411,2,1672319418),(142677,3,34444,2,1672319418),(142678,3,34445,2,1672319418),(142679,3,34446,2,1672319418),(142680,3,34447,2,1672319418),(142681,3,34448,2,1672319418),(142682,3,34449,2,1672319418),(142683,3,34450,2,1672319418),(142684,3,34944,2,1672319418),(142685,3,34945,2,1672319418),(142686,3,34946,2,1672319418),(142687,3,34947,2,1672319418),(142688,3,34948,2,1672319418),(142689,3,34970,2,1672319418),(142690,3,34971,2,1672319418),(142691,3,34972,2,1672319418),(142692,3,34973,2,1672319418),(142693,3,34974,2,1672319418),(142694,3,34975,2,1672319418),(142695,3,34976,2,1672319418),(142696,3,34977,2,1672319418),(142697,3,34978,2,1672319418),(142698,3,34979,2,1672319418),(142699,3,34980,2,1672319418),(142700,3,34981,2,1672319418),(142701,3,34982,2,1672319418),(142702,3,34983,2,1672319418),(142703,3,34984,2,1672319418),(142704,3,34985,2,1672319418),(142705,3,34986,2,1672319418),(142706,3,34987,2,1672319418),(142707,3,34988,2,1672319418),(142708,3,34989,2,1672319418),(142709,3,34990,2,1672319418),(142710,3,34991,2,1672319418),(142711,3,34992,2,1672319418),(142712,3,34993,2,1672319418),(142713,3,34994,2,1672319418),(142714,3,34995,2,1672319418),(142715,3,34996,2,1672319418),(142716,3,34997,2,1672319418),(142717,3,34998,2,1672319418),(142718,3,34999,2,1672319418),(142719,3,35000,2,1672319418),(142720,3,35001,2,1672319418),(142721,3,35002,2,1672319418),(142722,3,35003,2,1672319418),(142723,3,35004,2,1672319418),(142724,3,35005,2,1672319418),(142725,3,35006,2,1672319418),(142726,3,35007,2,1672319418),(142727,3,35008,2,1672319418),(142728,3,35009,2,1672319418),(142729,3,35010,2,1672319418),(142730,3,35011,2,1672319418),(142731,3,35012,2,1672319418),(142732,3,35013,2,1672319418),(142733,3,35014,2,1672319418),(142734,3,35015,2,1672319418),(142735,3,35264,2,1672319418),(142736,3,35265,2,1672319418),(142737,3,35266,2,1672319418),(142738,3,35267,2,1672319418),(142739,3,35268,2,1672319418),(142740,3,35269,2,1672319418),(142741,3,35270,2,1672319418),(142742,3,35271,2,1672319418),(142743,3,36782,2,1672319418),(142744,3,36783,2,1672319418),(142745,3,36784,2,1672319418),(142746,3,36785,2,1672319418),(142747,3,36786,2,1672319418),(142748,3,36787,2,1672319418),(142749,3,36788,2,1672319418),(142750,3,36789,2,1672319418),(142751,3,36790,2,1672319418),(142752,3,36791,2,1672319418),(142753,3,36792,2,1672319418),(142754,3,36793,2,1672319418),(142755,3,36794,2,1672319418),(142756,3,39754,2,1672319418),(142757,3,39755,2,1672319418),(142758,3,39756,2,1672319418),(142759,3,39757,2,1672319418),(142760,3,39758,2,1672319418),(142761,3,39759,2,1672319418),(142762,3,39760,2,1672319418),(142763,3,39761,2,1672319418),(142764,3,39762,2,1672319418),(142765,3,39763,2,1672319418),(142766,3,39764,2,1672319418),(142767,3,39765,2,1672319418),(142768,3,39766,2,1672319418),(142769,3,39767,2,1672319418),(142770,3,39768,2,1672319418),(142771,3,39769,2,1672319418),(142772,3,39770,2,1672319418),(142773,3,39771,2,1672319418),(142774,3,39772,2,1672319418),(142775,3,39773,2,1672319418),(142776,3,39774,2,1672319418),(142777,3,39775,2,1672319418),(142778,3,39776,2,1672319418),(142779,3,39777,2,1672319418),(142780,3,39778,2,1672319418),(142781,3,39779,2,1672319418),(142782,3,39780,2,1672319418),(142783,3,39781,2,1672319418),(142784,3,39782,2,1672319418),(142785,3,39783,2,1672319418),(142786,3,39784,2,1672319418),(142787,3,39785,2,1672319418),(142788,3,39786,2,1672319418),(142789,3,39787,2,1672319418),(142790,3,39788,2,1672319418),(142791,3,39789,2,1672319418),(142792,3,39790,2,1672319418),(142793,3,39791,2,1672319418),(142794,3,39792,2,1672319418),(142795,3,39793,2,1672319418),(142796,3,39794,2,1672319418),(142797,3,39795,2,1672319418),(142798,3,39796,2,1672319418),(142799,3,39817,2,1672319418),(142800,3,39818,2,1672319418),(142801,3,39819,2,1672319418),(142802,3,39820,2,1672319418),(142803,3,42123,2,1672319418),(142804,3,42124,2,1672319418),(142805,3,42125,2,1672319418),(142806,3,42126,2,1672319418),(142807,3,42127,2,1672319418),(142808,3,42128,2,1672319418),(142809,3,42129,2,1672319418),(142810,3,42130,2,1672319418),(142811,3,42131,2,1672319418),(142812,3,42132,2,1672319418),(142813,3,42145,2,1672319418),(142814,3,42146,2,1672319418),(142815,3,42147,2,1672319418),(142816,3,42148,2,1672319418),(142817,3,42149,2,1672319418),(142818,3,42150,2,1672319418),(142819,3,42151,2,1672319418),(142820,3,42152,2,1672319418),(142821,3,42153,2,1672319418),(142822,3,42166,2,1672319418),(142823,3,42167,2,1672319418),(142824,3,42168,2,1672319418),(142825,3,42169,2,1672319418),(142826,3,42170,2,1672319418),(142827,3,42171,2,1672319418),(142828,3,42172,2,1672319418),(142829,3,42173,2,1672319418),(142830,3,42174,2,1672319418),(142831,3,42491,2,1672319418),(142832,3,42492,2,1672319418),(142833,3,42493,2,1672319418),(142834,3,42494,2,1672319418),(142835,3,42495,2,1672319418),(142836,3,42496,2,1672319418),(142837,3,42497,2,1672319418),(142838,3,42498,2,1672319418),(142839,3,42499,2,1672319418),(142840,3,42500,2,1672319418),(142841,3,42501,2,1672319418),(142842,3,42502,2,1672319418),(142843,3,42503,2,1672319418),(142844,3,42504,2,1672319418),(142845,3,42505,2,1672319418),(142846,3,42506,2,1672319418),(142847,3,42507,2,1672319418),(142848,3,42508,2,1672319418),(142849,3,42509,2,1672319418),(142850,3,42510,2,1672319418),(142851,3,42511,2,1672319418),(142852,3,42547,2,1672319418),(142853,3,42548,2,1672319418),(142854,3,42549,2,1672319418),(142855,3,42550,2,1672319418),(142856,3,42551,2,1672319418),(142857,3,42552,2,1672319418),(142858,3,42553,2,1672319418),(142859,3,42554,2,1672319418),(142860,3,42555,2,1672319418),(142861,3,42556,2,1672319418),(142862,3,42557,2,1672319418),(142863,3,42558,2,1672319418),(142864,3,42559,2,1672319418),(142865,3,42560,2,1672319418),(142866,3,42561,2,1672319418),(142867,3,42562,2,1672319418),(142868,3,42563,2,1672319418),(142869,3,42564,2,1672319418),(142870,3,42565,2,1672319418),(142871,3,42566,2,1672319418),(142872,3,42567,2,1672319418),(142873,3,42583,2,1672319418),(142874,3,42584,2,1672319418),(142875,3,42585,2,1672319418),(142876,3,42586,2,1672319418),(142877,3,42587,2,1672319418),(142878,3,42588,2,1672319418),(142879,3,42589,2,1672319418),(142880,3,42590,2,1672319418),(142881,3,42591,2,1672319418),(142882,3,42592,2,1672319418),(142883,3,42593,2,1672319418),(142884,3,42594,2,1672319418),(142885,3,42595,2,1672319418),(142886,3,42596,2,1672319418),(142887,3,42597,2,1672319418),(142888,3,42746,2,1672319418),(142889,3,42747,2,1672319418),(142890,3,42748,2,1672319418),(142891,3,42749,2,1672319418),(142892,3,42750,2,1672319418),(142893,3,42751,2,1672319418),(142894,3,42752,2,1672319418),(142895,3,42753,2,1672319418),(142896,3,42754,2,1672319418),(142897,3,42755,2,1672319418),(142898,3,42756,2,1672319418),(142899,3,42757,2,1672319418),(142900,3,42758,2,1672319418),(142901,3,42759,2,1672319418),(142902,3,42760,2,1672319418),(142903,3,42761,2,1672319418),(142904,3,42762,2,1672319418),(142905,3,42763,2,1672319418),(142906,3,42764,2,1672319418),(142907,3,42765,2,1672319418),(142908,3,42766,2,1672319418),(142909,3,42767,2,1672319418),(142910,3,42768,2,1672319418),(142911,3,42769,2,1672319418),(142912,3,42770,2,1672319418),(142913,3,42771,2,1672319418),(142914,3,42772,2,1672319418),(142915,3,42773,2,1672319418),(142916,3,42774,2,1672319418),(142917,3,42775,2,1672319418),(142918,3,42776,2,1672319418),(142919,3,42777,2,1672319418),(142920,3,42778,2,1672319418),(142921,3,42779,2,1672319418),(142922,3,42780,2,1672319418),(142923,3,42781,2,1672319418),(142924,3,42782,2,1672319418),(142925,3,42783,2,1672319418),(142926,3,42784,2,1672319418),(142927,3,42785,2,1672319418),(142928,3,42786,2,1672319418),(142929,3,42787,2,1672319418),(142930,3,42788,2,1672319418),(142931,3,42789,2,1672319418),(142932,3,42790,2,1672319418),(142933,3,42791,2,1672319418),(142934,3,42841,2,1672319418),(142935,3,42842,2,1672319418),(142936,3,42843,2,1672319418),(142937,3,42844,2,1672319418),(142938,3,42845,2,1672319418),(142939,3,42846,2,1672319418),(142940,3,42847,2,1672319418),(142941,3,42848,2,1672319418),(142942,3,42849,2,1672319418),(142943,3,42850,2,1672319418),(142944,3,42851,2,1672319418),(142945,3,42852,2,1672319418),(142946,3,42853,2,1672319418),(142947,3,42854,2,1672319418),(142948,3,42855,2,1672319418),(142949,3,42856,2,1672319418),(142950,3,42857,2,1672319418),(142951,3,42858,2,1672319418),(142952,3,42859,2,1672319418),(142953,3,42860,2,1672319418),(142954,3,42861,2,1672319418),(142955,3,42862,2,1672319418),(142956,3,42863,2,1672319418),(142957,3,42864,2,1672319418),(142958,3,42865,2,1672319418),(142959,3,42866,2,1672319418),(142960,3,42867,2,1672319418),(142961,3,42868,2,1672319418),(142962,3,42869,2,1672319418),(142963,3,42870,2,1672319418),(142964,3,42871,2,1672319418),(142965,3,42872,2,1672319418),(142966,3,42873,2,1672319418),(142967,3,42874,2,1672319418),(142968,3,42875,2,1672319418),(142969,3,42876,2,1672319418),(142970,3,42879,2,1672319418),(142971,3,42881,2,1672319418),(142972,3,42882,2,1672319418),(142973,3,42883,2,1672319418),(142974,3,42884,2,1672319418),(142975,3,42885,2,1672319418),(142976,3,42886,2,1672319418),(142977,3,42887,2,1672319418),(142978,3,42888,2,1672319418),(142979,3,42889,2,1672319418),(142980,3,42890,2,1672319418),(142981,3,42891,2,1672319418),(142982,3,42892,2,1672319418),(142983,3,42893,2,1672319418),(142984,3,42894,2,1672319418),(142985,3,42895,2,1672319418),(142986,3,42896,2,1672319418),(142987,3,42897,2,1672319418),(142988,3,42898,2,1672319418),(142989,3,42899,2,1672319418),(142990,3,42900,2,1672319418),(142991,3,42901,2,1672319418),(142992,3,42902,2,1672319418),(142993,3,42903,2,1672319418),(142994,3,42904,2,1672319418),(142995,3,42905,2,1672319418),(142996,3,42906,2,1672319418),(142997,3,42907,2,1672319418),(142998,3,42908,2,1672319418),(142999,3,42909,2,1672319418),(143000,3,42910,2,1672319418),(143001,3,42911,2,1672319418),(143002,3,42912,2,1672319418),(143003,3,42913,2,1672319418),(143004,3,42914,2,1672319418),(143005,3,42915,2,1672319418),(143006,3,42916,2,1672319418),(143007,3,42917,2,1672319418),(143008,3,42918,2,1672319418),(143009,3,42919,2,1672319418),(143010,3,42920,2,1672319418),(143011,3,42921,2,1672319418),(143012,3,42922,2,1672319418),(143013,3,42923,2,1672319418),(143014,3,42924,2,1672319418),(143015,3,42925,2,1672319418),(143016,3,42926,2,1672319418),(143017,3,42927,2,1672319418),(143018,3,42928,2,1672319418),(143019,3,42929,2,1672319418),(143020,3,44083,2,1672319418),(143021,3,44084,2,1672319418),(143022,3,44085,2,1672319418),(143023,3,44086,2,1672319418),(143024,3,44087,2,1672319418),(143025,3,44088,2,1672319418),(143026,3,44089,2,1672319418),(143027,3,44090,2,1672319418),(143028,3,44091,2,1672319418),(143029,3,44092,2,1672319418),(143030,3,44093,2,1672319418),(143031,3,44361,2,1672319418),(143032,3,44362,2,1672319418),(143033,3,44363,2,1672319418),(143034,3,44364,2,1672319418),(143035,3,44365,2,1672319418),(143036,3,44366,2,1672319418),(143037,3,44367,2,1672319418),(143038,3,44368,2,1672319418),(143039,3,44369,2,1672319418),(143040,3,44370,2,1672319418),(143041,3,44378,2,1672319418),(143042,3,44380,2,1672319418),(143043,3,44422,2,1672319418),(143044,3,44423,2,1672319418),(143045,3,44424,2,1672319418),(143046,3,44425,2,1672319418),(143047,3,44426,2,1672319418),(143048,3,44451,2,1672319418),(143049,3,44452,2,1672319418),(143050,3,44454,2,1672319418),(143051,3,44456,2,1672319418),(143052,3,23025,3,1672319418),(143053,3,23026,3,1672319418),(143054,3,23028,3,1672319418),(143055,3,23029,3,1672319418),(143056,3,23030,3,1672319418),(143057,3,23031,3,1672319418),(143058,3,23032,3,1672319418),(143059,3,28003,3,1672319418),(143060,3,28495,3,1672319418),(143061,3,28496,3,1672319418),(143062,3,29512,3,1672319418),(143063,3,29513,3,1672319418),(143064,3,29514,3,1672319418),(143065,3,29720,3,1672319418),(143066,3,29721,3,1672319418),(143067,3,29722,3,1672319418),(143068,3,29723,3,1672319418),(143069,3,29724,3,1672319418),(143070,3,29725,3,1672319418),(143071,3,29726,3,1672319418),(143072,3,29727,3,1672319418),(143073,3,29728,3,1672319418),(143074,3,29729,3,1672319418),(143075,3,29730,3,1672319418),(143076,3,29731,3,1672319418),(143077,3,29732,3,1672319418),(143078,3,29733,3,1672319418),(143079,3,29734,3,1672319418),(143080,3,29735,3,1672319418),(143081,3,29736,3,1672319418),(143082,3,29737,3,1672319418),(143083,3,29787,3,1672319418),(143084,3,29788,3,1672319418),(143085,3,29789,3,1672319418),(143086,3,29790,3,1672319418),(143087,3,29791,3,1672319418),(143088,3,29792,3,1672319418),(143089,3,29793,3,1672319418),(143090,3,29794,3,1672319418),(143091,3,29795,3,1672319418),(143092,3,29796,3,1672319418),(143093,3,29797,3,1672319418),(143094,3,29798,3,1672319418),(143095,3,29799,3,1672319418),(143096,3,29800,3,1672319418),(143097,3,29801,3,1672319418),(143098,3,29802,3,1672319418),(143099,3,29803,3,1672319418),(143100,3,29804,3,1672319418),(143101,3,29805,3,1672319418),(143102,3,29806,3,1672319418),(143103,3,29807,3,1672319418),(143104,3,29808,3,1672319418),(143105,3,29809,3,1672319418),(143106,3,29810,3,1672319418),(143107,3,29811,3,1672319418),(143108,3,29812,3,1672319418),(143109,3,29813,3,1672319418),(143110,3,29814,3,1672319418),(143111,3,29815,3,1672319418),(143112,3,29816,3,1672319418),(143113,3,29817,3,1672319418),(143114,3,29818,3,1672319418),(143115,3,29819,3,1672319418),(143116,3,29820,3,1672319418),(143117,3,30027,3,1672319418),(143118,3,30028,3,1672319418),(143119,3,30029,3,1672319418),(143120,3,30030,3,1672319418),(143121,3,30031,3,1672319418),(143122,3,30032,3,1672319418),(143123,3,30033,3,1672319418),(143124,3,30034,3,1672319418),(143125,3,30035,3,1672319418),(143126,3,30036,3,1672319418),(143127,3,30037,3,1672319418),(143128,3,30038,3,1672319418),(143129,3,30039,3,1672319418),(143130,3,30040,3,1672319418),(143131,3,30041,3,1672319418),(143132,3,30042,3,1672319418),(143133,3,30129,3,1672319418),(143134,3,30130,3,1672319418),(143135,3,30131,3,1672319418),(143136,3,30344,3,1672319418),(143137,3,30345,3,1672319418),(143138,3,30346,3,1672319418),(143139,3,30347,3,1672319418),(143140,3,30348,3,1672319418),(143141,3,30349,3,1672319418),(143142,3,30350,3,1672319418),(143143,3,30351,3,1672319418),(143144,3,30352,3,1672319418),(143145,3,30353,3,1672319418),(143146,3,30354,3,1672319418),(143147,3,30355,3,1672319418),(143148,3,30356,3,1672319418),(143149,3,30357,3,1672319418),(143150,3,30358,3,1672319418),(143151,3,30359,3,1672319418),(143152,3,30360,3,1672319418),(143153,3,30361,3,1672319418),(143154,3,30362,3,1672319418),(143155,3,30363,3,1672319418),(143156,3,30364,3,1672319418),(143157,3,30365,3,1672319418),(143158,3,30366,3,1672319418),(143159,3,30367,3,1672319418),(143160,3,30368,3,1672319418),(143161,3,30369,3,1672319418),(143162,3,30370,3,1672319418),(143163,3,30371,3,1672319418),(143164,3,30372,3,1672319418),(143165,3,30373,3,1672319418),(143166,3,30374,3,1672319418),(143167,3,30375,3,1672319418),(143168,3,30376,3,1672319418),(143169,3,30377,3,1672319418),(143170,3,30378,3,1672319418),(143171,3,30379,3,1672319418),(143172,3,30380,3,1672319418),(143173,3,30381,3,1672319418),(143174,3,30382,3,1672319418),(143175,3,30383,3,1672319418),(143176,3,30384,3,1672319418),(143177,3,30385,3,1672319418),(143178,3,30386,3,1672319418),(143179,3,30387,3,1672319418),(143180,3,30388,3,1672319418),(143181,3,30389,3,1672319418),(143182,3,30390,3,1672319418),(143183,3,30391,3,1672319418),(143184,3,30392,3,1672319418),(143185,3,30393,3,1672319418),(143186,3,30394,3,1672319418),(143187,3,30395,3,1672319418),(143188,3,30396,3,1672319418),(143189,3,30397,3,1672319418),(143190,3,30398,3,1672319418),(143191,3,30399,3,1672319418),(143192,3,30400,3,1672319418),(143193,3,30401,3,1672319418),(143194,3,30402,3,1672319418),(143195,3,30403,3,1672319418),(143196,3,30404,3,1672319418),(143197,3,30425,3,1672319418),(143198,3,31335,3,1672319418),(143199,3,31336,3,1672319418),(143200,3,31337,3,1672319418),(143201,3,31338,3,1672319418),(143202,3,31339,3,1672319418),(143203,3,31340,3,1672319418),(143204,3,31341,3,1672319418),(143205,3,31342,3,1672319418),(143206,3,31343,3,1672319418),(143207,3,31344,3,1672319418),(143208,3,31345,3,1672319418),(143209,3,31346,3,1672319418),(143210,3,31347,3,1672319418),(143211,3,31348,3,1672319418),(143212,3,31349,3,1672319418),(143213,3,31350,3,1672319418),(143214,3,31351,3,1672319418),(143215,3,31352,3,1672319418),(143216,3,31353,3,1672319418),(143217,3,31354,3,1672319418),(143218,3,31355,3,1672319418),(143219,3,31356,3,1672319418),(143220,3,31357,3,1672319418),(143221,3,31358,3,1672319418),(143222,3,31359,3,1672319418),(143223,3,31360,3,1672319418),(143224,3,31361,3,1672319418),(143225,3,31362,3,1672319418),(143226,3,31363,3,1672319418),(143227,3,31433,3,1672319418),(143228,3,31434,3,1672319418),(143229,3,31435,3,1672319418),(143230,3,31436,3,1672319418),(143231,3,31437,3,1672319418),(143232,3,31438,3,1672319418),(143233,3,31439,3,1672319418),(143234,3,31440,3,1672319418),(143235,3,31441,3,1672319418),(143236,3,31442,3,1672319418),(143237,3,31453,3,1672319418),(143238,3,31454,3,1672319418),(143239,3,31455,3,1672319418),(143240,3,31663,3,1672319418),(143241,3,31664,3,1672319418),(143242,3,31665,3,1672319418),(143243,3,31666,3,1672319418),(143244,3,31667,3,1672319418),(143245,3,32012,3,1672319418),(143246,3,32013,3,1672319418),(143247,3,32014,3,1672319418),(143248,3,32015,3,1672319418),(143249,3,32016,3,1672319418),(143250,3,32017,3,1672319418),(143251,3,32018,3,1672319418),(143252,3,32019,3,1672319418),(143253,3,32020,3,1672319418),(143254,3,32021,3,1672319418),(143255,3,32022,3,1672319418),(143256,3,32023,3,1672319418),(143257,3,32024,3,1672319418),(143258,3,32040,3,1672319418),(143259,3,32041,3,1672319418),(143260,3,32042,3,1672319418),(143261,3,32935,3,1672319418),(143262,3,32936,3,1672319418),(143263,3,32937,3,1672319418),(143264,3,32938,3,1672319418),(143265,3,32939,3,1672319418),(143266,3,32940,3,1672319418),(143267,3,32941,3,1672319418),(143268,3,32942,3,1672319418),(143269,3,32943,3,1672319418),(143270,3,32944,3,1672319418),(143271,3,32945,3,1672319418),(143272,3,32946,3,1672319418),(143273,3,32947,3,1672319418),(143274,3,32948,3,1672319418),(143275,3,32949,3,1672319418),(143276,3,32950,3,1672319418),(143277,3,32958,3,1672319418),(143278,3,32959,3,1672319418),(143279,3,32960,3,1672319418),(143280,3,32961,3,1672319418),(143281,3,32962,3,1672319418),(143282,3,33178,3,1672319418),(143283,3,33179,3,1672319418),(143284,3,33180,3,1672319418),(143285,3,33321,3,1672319418),(143286,3,33322,3,1672319418),(143287,3,33323,3,1672319418),(143288,3,33324,3,1672319418),(143289,3,33329,3,1672319418),(143290,3,33330,3,1672319418),(143291,3,33331,3,1672319418),(143292,3,33332,3,1672319418),(143293,3,33650,3,1672319418),(143294,3,33651,3,1672319418),(143295,3,33652,3,1672319418),(143296,3,33653,3,1672319418),(143297,3,33654,3,1672319418),(143298,3,33655,3,1672319418),(143299,3,33747,3,1672319418),(143300,3,33748,3,1672319418),(143301,3,33749,3,1672319418),(143302,3,33750,3,1672319418),(143303,3,33751,3,1672319418),(143304,3,33752,3,1672319418),(143305,3,33753,3,1672319418),(143306,3,33757,3,1672319418),(143307,3,33758,3,1672319418),(143308,3,33759,3,1672319418),(143309,3,33760,3,1672319418),(143310,3,33761,3,1672319418),(143311,3,33762,3,1672319418),(143312,3,33763,3,1672319418),(143313,3,34348,3,1672319418),(143314,3,34349,3,1672319418),(143315,3,34350,3,1672319418),(143316,3,34351,3,1672319418),(143317,3,34352,3,1672319418),(143318,3,34353,3,1672319418),(143319,3,34354,3,1672319418),(143320,3,34355,3,1672319418),(143321,3,34356,3,1672319418),(143322,3,34357,3,1672319418),(143323,3,34358,3,1672319418),(143324,3,34359,3,1672319418),(143325,3,34360,3,1672319418),(143326,3,34361,3,1672319418),(143327,3,34362,3,1672319418),(143328,3,34363,3,1672319418),(143329,3,34364,3,1672319418),(143330,3,34365,3,1672319418),(143331,3,34366,3,1672319418),(143332,3,34405,3,1672319418),(143333,3,34406,3,1672319418),(143334,3,34407,3,1672319418),(143335,3,34408,3,1672319418),(143336,3,34409,3,1672319418),(143337,3,34410,3,1672319418),(143338,3,34411,3,1672319418),(143339,3,34444,3,1672319418),(143340,3,34445,3,1672319418),(143341,3,34446,3,1672319418),(143342,3,34447,3,1672319418),(143343,3,34448,3,1672319418),(143344,3,34449,3,1672319418),(143345,3,34450,3,1672319418),(143346,3,34944,3,1672319418),(143347,3,34945,3,1672319418),(143348,3,34946,3,1672319418),(143349,3,34947,3,1672319418),(143350,3,34948,3,1672319418),(143351,3,34970,3,1672319418),(143352,3,34971,3,1672319418),(143353,3,34972,3,1672319418),(143354,3,34973,3,1672319418),(143355,3,34974,3,1672319418),(143356,3,34975,3,1672319418),(143357,3,34976,3,1672319418),(143358,3,34977,3,1672319418),(143359,3,34978,3,1672319418),(143360,3,34979,3,1672319418),(143361,3,34980,3,1672319418),(143362,3,34981,3,1672319418),(143363,3,34982,3,1672319418),(143364,3,34983,3,1672319418),(143365,3,34984,3,1672319418),(143366,3,34985,3,1672319418),(143367,3,34986,3,1672319418),(143368,3,34987,3,1672319418),(143369,3,34988,3,1672319418),(143370,3,34989,3,1672319418),(143371,3,34990,3,1672319418),(143372,3,34991,3,1672319418),(143373,3,34992,3,1672319418),(143374,3,34993,3,1672319418),(143375,3,34994,3,1672319418),(143376,3,34995,3,1672319418),(143377,3,34996,3,1672319418),(143378,3,34997,3,1672319418),(143379,3,34998,3,1672319418),(143380,3,34999,3,1672319418),(143381,3,35000,3,1672319418),(143382,3,35001,3,1672319418),(143383,3,35002,3,1672319418),(143384,3,35003,3,1672319418),(143385,3,35004,3,1672319418),(143386,3,35005,3,1672319418),(143387,3,35006,3,1672319418),(143388,3,35007,3,1672319418),(143389,3,35008,3,1672319418),(143390,3,35009,3,1672319418),(143391,3,35010,3,1672319418),(143392,3,35011,3,1672319418),(143393,3,35012,3,1672319418),(143394,3,35013,3,1672319418),(143395,3,35014,3,1672319418),(143396,3,35015,3,1672319418),(143397,3,35264,3,1672319418),(143398,3,35265,3,1672319418),(143399,3,35266,3,1672319418),(143400,3,35267,3,1672319418),(143401,3,35268,3,1672319418),(143402,3,35269,3,1672319418),(143403,3,35270,3,1672319418),(143404,3,35271,3,1672319418),(143405,3,36782,3,1672319418),(143406,3,36783,3,1672319418),(143407,3,36784,3,1672319418),(143408,3,36785,3,1672319418),(143409,3,36786,3,1672319418),(143410,3,36787,3,1672319418),(143411,3,36788,3,1672319418),(143412,3,36789,3,1672319418),(143413,3,36790,3,1672319418),(143414,3,36791,3,1672319418),(143415,3,36792,3,1672319418),(143416,3,36793,3,1672319418),(143417,3,36794,3,1672319418),(143418,3,39754,3,1672319418),(143419,3,39755,3,1672319418),(143420,3,39756,3,1672319418),(143421,3,39757,3,1672319418),(143422,3,39758,3,1672319418),(143423,3,39759,3,1672319418),(143424,3,39760,3,1672319418),(143425,3,39761,3,1672319418),(143426,3,39762,3,1672319418),(143427,3,39763,3,1672319418),(143428,3,39764,3,1672319418),(143429,3,39765,3,1672319418),(143430,3,39766,3,1672319418),(143431,3,39767,3,1672319418),(143432,3,39768,3,1672319418),(143433,3,39769,3,1672319418),(143434,3,39770,3,1672319418),(143435,3,39771,3,1672319418),(143436,3,39772,3,1672319418),(143437,3,39773,3,1672319418),(143438,3,39774,3,1672319418),(143439,3,39775,3,1672319418),(143440,3,39776,3,1672319418),(143441,3,39777,3,1672319418),(143442,3,39778,3,1672319418),(143443,3,39779,3,1672319418),(143444,3,39780,3,1672319418),(143445,3,39781,3,1672319418),(143446,3,39782,3,1672319418),(143447,3,39783,3,1672319418),(143448,3,39784,3,1672319418),(143449,3,39785,3,1672319418),(143450,3,39786,3,1672319418),(143451,3,39787,3,1672319418),(143452,3,39788,3,1672319418),(143453,3,39789,3,1672319418),(143454,3,39790,3,1672319418),(143455,3,39791,3,1672319418),(143456,3,39792,3,1672319418),(143457,3,39793,3,1672319418),(143458,3,39794,3,1672319418),(143459,3,39795,3,1672319418),(143460,3,39796,3,1672319418),(143461,3,39817,3,1672319418),(143462,3,39818,3,1672319418),(143463,3,39819,3,1672319418),(143464,3,39820,3,1672319418),(143465,3,42123,3,1672319418),(143466,3,42124,3,1672319418),(143467,3,42125,3,1672319418),(143468,3,42126,3,1672319418),(143469,3,42127,3,1672319418),(143470,3,42128,3,1672319418),(143471,3,42129,3,1672319418),(143472,3,42130,3,1672319418),(143473,3,42131,3,1672319418),(143474,3,42132,3,1672319418),(143475,3,42145,3,1672319418),(143476,3,42146,3,1672319418),(143477,3,42147,3,1672319418),(143478,3,42148,3,1672319418),(143479,3,42149,3,1672319418),(143480,3,42150,3,1672319418),(143481,3,42151,3,1672319418),(143482,3,42152,3,1672319418),(143483,3,42153,3,1672319418),(143484,3,42166,3,1672319418),(143485,3,42167,3,1672319418),(143486,3,42168,3,1672319418),(143487,3,42169,3,1672319418),(143488,3,42170,3,1672319418),(143489,3,42171,3,1672319418),(143490,3,42172,3,1672319418),(143491,3,42173,3,1672319418),(143492,3,42174,3,1672319418),(143493,3,42491,3,1672319418),(143494,3,42492,3,1672319418),(143495,3,42493,3,1672319418),(143496,3,42494,3,1672319418),(143497,3,42495,3,1672319418),(143498,3,42496,3,1672319418),(143499,3,42497,3,1672319418),(143500,3,42498,3,1672319418),(143501,3,42499,3,1672319418),(143502,3,42500,3,1672319418),(143503,3,42501,3,1672319418),(143504,3,42502,3,1672319418),(143505,3,42503,3,1672319418),(143506,3,42504,3,1672319418),(143507,3,42505,3,1672319418),(143508,3,42506,3,1672319418),(143509,3,42507,3,1672319418),(143510,3,42508,3,1672319418),(143511,3,42509,3,1672319418),(143512,3,42510,3,1672319418),(143513,3,42511,3,1672319418),(143514,3,42547,3,1672319418),(143515,3,42548,3,1672319418),(143516,3,42549,3,1672319418),(143517,3,42550,3,1672319418),(143518,3,42551,3,1672319418),(143519,3,42552,3,1672319418),(143520,3,42553,3,1672319418),(143521,3,42554,3,1672319418),(143522,3,42555,3,1672319418),(143523,3,42556,3,1672319418),(143524,3,42557,3,1672319418),(143525,3,42558,3,1672319418),(143526,3,42559,3,1672319418),(143527,3,42560,3,1672319418),(143528,3,42561,3,1672319418),(143529,3,42562,3,1672319418),(143530,3,42563,3,1672319418),(143531,3,42564,3,1672319418),(143532,3,42565,3,1672319418),(143533,3,42566,3,1672319418),(143534,3,42567,3,1672319418),(143535,3,42583,3,1672319418),(143536,3,42584,3,1672319418),(143537,3,42585,3,1672319418),(143538,3,42586,3,1672319418),(143539,3,42587,3,1672319418),(143540,3,42588,3,1672319418),(143541,3,42589,3,1672319418),(143542,3,42590,3,1672319418),(143543,3,42591,3,1672319418),(143544,3,42592,3,1672319418),(143545,3,42593,3,1672319418),(143546,3,42594,3,1672319418),(143547,3,42595,3,1672319418),(143548,3,42596,3,1672319418),(143549,3,42597,3,1672319418),(143550,3,42746,3,1672319418),(143551,3,42747,3,1672319418),(143552,3,42748,3,1672319418),(143553,3,42749,3,1672319418),(143554,3,42750,3,1672319418),(143555,3,42751,3,1672319418),(143556,3,42752,3,1672319418),(143557,3,42753,3,1672319418),(143558,3,42754,3,1672319418),(143559,3,42755,3,1672319418),(143560,3,42756,3,1672319418),(143561,3,42757,3,1672319418),(143562,3,42758,3,1672319418),(143563,3,42759,3,1672319418),(143564,3,42760,3,1672319418),(143565,3,42761,3,1672319418),(143566,3,42762,3,1672319418),(143567,3,42763,3,1672319418),(143568,3,42764,3,1672319418),(143569,3,42765,3,1672319418),(143570,3,42766,3,1672319418),(143571,3,42767,3,1672319418),(143572,3,42768,3,1672319418),(143573,3,42769,3,1672319418),(143574,3,42770,3,1672319418),(143575,3,42771,3,1672319418),(143576,3,42772,3,1672319418),(143577,3,42773,3,1672319418),(143578,3,42774,3,1672319418),(143579,3,42775,3,1672319418),(143580,3,42776,3,1672319418),(143581,3,42777,3,1672319418),(143582,3,42778,3,1672319418),(143583,3,42779,3,1672319418),(143584,3,42780,3,1672319418),(143585,3,42781,3,1672319418),(143586,3,42782,3,1672319418),(143587,3,42783,3,1672319418),(143588,3,42784,3,1672319418),(143589,3,42785,3,1672319418),(143590,3,42786,3,1672319418),(143591,3,42787,3,1672319418),(143592,3,42788,3,1672319418),(143593,3,42789,3,1672319418),(143594,3,42790,3,1672319418),(143595,3,42791,3,1672319418),(143596,3,42841,3,1672319418),(143597,3,42842,3,1672319418),(143598,3,42843,3,1672319418),(143599,3,42844,3,1672319418),(143600,3,42845,3,1672319418),(143601,3,42846,3,1672319418),(143602,3,42847,3,1672319418),(143603,3,42848,3,1672319418),(143604,3,42849,3,1672319418),(143605,3,42850,3,1672319418),(143606,3,42851,3,1672319418),(143607,3,42852,3,1672319418),(143608,3,42853,3,1672319418),(143609,3,42854,3,1672319418),(143610,3,42855,3,1672319418),(143611,3,42856,3,1672319418),(143612,3,42857,3,1672319418),(143613,3,42858,3,1672319418),(143614,3,42859,3,1672319418),(143615,3,42860,3,1672319418),(143616,3,42861,3,1672319418),(143617,3,42862,3,1672319418),(143618,3,42863,3,1672319418),(143619,3,42864,3,1672319418),(143620,3,42865,3,1672319418),(143621,3,42866,3,1672319418),(143622,3,42867,3,1672319418),(143623,3,42868,3,1672319418),(143624,3,42869,3,1672319418),(143625,3,42870,3,1672319418),(143626,3,42871,3,1672319418),(143627,3,42872,3,1672319418),(143628,3,42873,3,1672319418),(143629,3,42874,3,1672319418),(143630,3,42875,3,1672319418),(143631,3,42876,3,1672319418),(143632,3,42879,3,1672319418),(143633,3,42881,3,1672319418),(143634,3,42882,3,1672319418),(143635,3,42883,3,1672319418),(143636,3,42884,3,1672319418),(143637,3,42885,3,1672319418),(143638,3,42886,3,1672319418),(143639,3,42887,3,1672319418),(143640,3,42888,3,1672319418),(143641,3,42889,3,1672319418),(143642,3,42890,3,1672319418),(143643,3,42891,3,1672319418),(143644,3,42892,3,1672319418),(143645,3,42893,3,1672319418),(143646,3,42894,3,1672319418),(143647,3,42895,3,1672319418),(143648,3,42896,3,1672319418),(143649,3,42897,3,1672319418),(143650,3,42898,3,1672319418),(143651,3,42899,3,1672319418),(143652,3,42900,3,1672319418),(143653,3,42901,3,1672319418),(143654,3,42902,3,1672319418),(143655,3,42903,3,1672319418),(143656,3,42904,3,1672319418),(143657,3,42905,3,1672319418),(143658,3,42906,3,1672319418),(143659,3,42907,3,1672319418),(143660,3,42908,3,1672319418),(143661,3,42909,3,1672319418),(143662,3,42910,3,1672319418),(143663,3,42911,3,1672319418),(143664,3,42912,3,1672319418),(143665,3,42913,3,1672319418),(143666,3,42914,3,1672319418),(143667,3,42915,3,1672319418),(143668,3,42916,3,1672319418),(143669,3,42917,3,1672319418),(143670,3,42918,3,1672319418),(143671,3,42919,3,1672319418),(143672,3,42920,3,1672319418),(143673,3,42921,3,1672319418),(143674,3,42922,3,1672319418),(143675,3,42923,3,1672319418),(143676,3,42924,3,1672319418),(143677,3,42925,3,1672319418),(143678,3,42926,3,1672319418),(143679,3,42927,3,1672319418),(143680,3,42928,3,1672319418),(143681,3,42929,3,1672319418),(143682,3,44083,3,1672319418),(143683,3,44084,3,1672319418),(143684,3,44085,3,1672319418),(143685,3,44086,3,1672319418),(143686,3,44087,3,1672319418),(143687,3,44088,3,1672319418),(143688,3,44089,3,1672319418),(143689,3,44090,3,1672319418),(143690,3,44091,3,1672319418),(143691,3,44092,3,1672319418),(143692,3,44093,3,1672319418),(143693,3,44361,3,1672319418),(143694,3,44362,3,1672319418),(143695,3,44363,3,1672319418),(143696,3,44364,3,1672319418),(143697,3,44365,3,1672319418),(143698,3,44366,3,1672319418),(143699,3,44367,3,1672319418),(143700,3,44368,3,1672319418),(143701,3,44369,3,1672319418),(143702,3,44370,3,1672319418),(143703,3,44378,3,1672319418),(143704,3,44380,3,1672319418),(143705,3,44422,3,1672319418),(143706,3,44423,3,1672319418),(143707,3,44424,3,1672319418),(143708,3,44425,3,1672319418),(143709,3,44426,3,1672319418),(143710,3,44451,3,1672319418),(143711,3,44452,3,1672319418),(143712,3,44454,3,1672319418),(143713,3,44456,3,1672319418),(143714,1,10333,2,1672319418),(143715,1,10334,2,1672319418),(143716,1,10367,2,1672319418),(143717,1,10368,2,1672319418),(143718,1,10333,3,1672319418),(143719,1,10334,3,1672319418),(143720,1,10367,3,1672319418),(143721,1,10368,3,1672319418),(143722,3,23024,2,1672319418),(143723,3,23027,2,1672319418),(143724,3,28001,2,1672319418),(143725,3,28002,2,1672319418),(143726,3,28493,2,1672319418),(143727,3,28494,2,1672319418),(143728,3,29506,2,1672319418),(143729,3,29703,2,1672319418),(143730,3,29785,2,1672319418),(143731,3,29786,2,1672319418),(143732,3,30026,2,1672319418),(143733,3,30127,2,1672319418),(143734,3,30128,2,1672319418),(143735,3,30337,2,1672319418),(143736,3,30338,2,1672319418),(143737,3,30339,2,1672319418),(143738,3,30340,2,1672319418),(143739,3,30341,2,1672319418),(143740,3,30342,2,1672319418),(143741,3,30343,2,1672319418),(143742,3,30423,2,1672319418),(143743,3,31334,2,1672319418),(143744,3,31429,2,1672319418),(143745,3,31430,2,1672319418),(143746,3,31655,2,1672319418),(143747,3,31656,2,1672319418),(143748,3,31657,2,1672319418),(143749,3,31658,2,1672319418),(143750,3,32004,2,1672319418),(143751,3,32005,2,1672319418),(143752,3,32006,2,1672319418),(143753,3,32931,2,1672319418),(143754,3,32932,2,1672319418),(143755,3,32933,2,1672319418),(143756,3,32934,2,1672319418),(143757,3,32954,2,1672319418),(143758,3,32955,2,1672319418),(143759,3,32956,2,1672319418),(143760,3,32957,2,1672319418),(143761,3,33177,2,1672319418),(143762,3,33658,2,1672319418),(143763,3,33670,2,1672319418),(143764,3,33744,2,1672319418),(143765,3,33745,2,1672319418),(143766,3,33746,2,1672319418),(143767,3,33754,2,1672319418),(143768,3,33755,2,1672319418),(143769,3,33756,2,1672319418),(143770,3,34342,2,1672319418),(143771,3,34343,2,1672319418),(143772,3,34344,2,1672319418),(143773,3,34345,2,1672319418),(143774,3,34346,2,1672319418),(143775,3,34347,2,1672319418),(143776,3,34399,2,1672319418),(143777,3,34400,2,1672319418),(143778,3,34401,2,1672319418),(143779,3,34402,2,1672319418),(143780,3,34403,2,1672319418),(143781,3,34404,2,1672319418),(143782,3,34440,2,1672319418),(143783,3,34441,2,1672319418),(143784,3,34442,2,1672319418),(143785,3,34443,2,1672319418),(143786,3,34942,2,1672319418),(143787,3,34943,2,1672319418),(143788,3,34966,2,1672319418),(143789,3,34967,2,1672319418),(143790,3,34968,2,1672319418),(143791,3,34969,2,1672319418),(143792,3,35262,2,1672319418),(143793,3,35263,2,1672319418),(143794,3,36781,2,1672319418),(143795,3,39749,2,1672319418),(143796,3,39750,2,1672319418),(143797,3,39751,2,1672319418),(143798,3,39752,2,1672319418),(143799,3,39753,2,1672319418),(143800,3,39816,2,1672319418),(143801,3,42121,2,1672319418),(143802,3,42122,2,1672319418),(143803,3,42144,2,1672319418),(143804,3,42165,2,1672319418),(143805,3,42487,2,1672319418),(143806,3,42488,2,1672319418),(143807,3,42489,2,1672319418),(143808,3,42490,2,1672319418),(143809,3,42543,2,1672319418),(143810,3,42544,2,1672319418),(143811,3,42545,2,1672319418),(143812,3,42546,2,1672319418),(143813,3,42580,2,1672319418),(143814,3,42581,2,1672319418),(143815,3,42582,2,1672319418),(143816,3,42741,2,1672319418),(143817,3,42742,2,1672319418),(143818,3,42743,2,1672319418),(143819,3,42744,2,1672319418),(143820,3,42745,2,1672319418),(143821,3,42834,2,1672319418),(143822,3,42835,2,1672319418),(143823,3,42836,2,1672319418),(143824,3,42837,2,1672319418),(143825,3,42838,2,1672319418),(143826,3,42839,2,1672319418),(143827,3,42840,2,1672319418),(143828,3,42878,2,1672319418),(143829,3,44082,2,1672319418),(143830,3,44360,2,1672319418),(143831,3,23024,3,1672319418),(143832,3,23027,3,1672319418),(143833,3,28001,3,1672319418),(143834,3,28002,3,1672319418),(143835,3,28493,3,1672319418),(143836,3,28494,3,1672319418),(143837,3,29506,3,1672319418),(143838,3,29703,3,1672319418),(143839,3,29785,3,1672319418),(143840,3,29786,3,1672319418),(143841,3,30026,3,1672319418),(143842,3,30127,3,1672319418),(143843,3,30128,3,1672319418),(143844,3,30337,3,1672319418),(143845,3,30338,3,1672319418),(143846,3,30339,3,1672319418),(143847,3,30340,3,1672319418),(143848,3,30341,3,1672319418),(143849,3,30342,3,1672319418),(143850,3,30343,3,1672319418),(143851,3,30423,3,1672319418),(143852,3,31334,3,1672319418),(143853,3,31429,3,1672319418),(143854,3,31430,3,1672319418),(143855,3,31655,3,1672319418),(143856,3,31656,3,1672319418),(143857,3,31657,3,1672319418),(143858,3,31658,3,1672319418),(143859,3,32004,3,1672319418),(143860,3,32005,3,1672319418),(143861,3,32006,3,1672319418),(143862,3,32931,3,1672319418),(143863,3,32932,3,1672319418),(143864,3,32933,3,1672319418),(143865,3,32934,3,1672319418),(143866,3,32954,3,1672319418),(143867,3,32955,3,1672319418),(143868,3,32956,3,1672319418),(143869,3,32957,3,1672319418),(143870,3,33177,3,1672319418),(143871,3,33658,3,1672319418),(143872,3,33670,3,1672319418),(143873,3,33744,3,1672319418),(143874,3,33745,3,1672319418),(143875,3,33746,3,1672319418),(143876,3,33754,3,1672319418),(143877,3,33755,3,1672319418),(143878,3,33756,3,1672319418),(143879,3,34342,3,1672319418),(143880,3,34343,3,1672319418),(143881,3,34344,3,1672319418); INSERT INTO `changelog` VALUES (143882,3,34345,3,1672319418),(143883,3,34346,3,1672319418),(143884,3,34347,3,1672319418),(143885,3,34399,3,1672319418),(143886,3,34400,3,1672319418),(143887,3,34401,3,1672319418),(143888,3,34402,3,1672319418),(143889,3,34403,3,1672319418),(143890,3,34404,3,1672319418),(143891,3,34440,3,1672319418),(143892,3,34441,3,1672319418),(143893,3,34442,3,1672319418),(143894,3,34443,3,1672319418),(143895,3,34942,3,1672319418),(143896,3,34943,3,1672319418),(143897,3,34966,3,1672319418),(143898,3,34967,3,1672319418),(143899,3,34968,3,1672319418),(143900,3,34969,3,1672319418),(143901,3,35262,3,1672319418),(143902,3,35263,3,1672319418),(143903,3,36781,3,1672319418),(143904,3,39749,3,1672319418),(143905,3,39750,3,1672319418),(143906,3,39751,3,1672319418),(143907,3,39752,3,1672319418),(143908,3,39753,3,1672319418),(143909,3,39816,3,1672319418),(143910,3,42121,3,1672319418),(143911,3,42122,3,1672319418),(143912,3,42144,3,1672319418),(143913,3,42165,3,1672319418),(143914,3,42487,3,1672319418),(143915,3,42488,3,1672319418),(143916,3,42489,3,1672319418),(143917,3,42490,3,1672319418),(143918,3,42543,3,1672319418),(143919,3,42544,3,1672319418),(143920,3,42545,3,1672319418),(143921,3,42546,3,1672319418),(143922,3,42580,3,1672319418),(143923,3,42581,3,1672319418),(143924,3,42582,3,1672319418),(143925,3,42741,3,1672319418),(143926,3,42742,3,1672319418),(143927,3,42743,3,1672319418),(143928,3,42744,3,1672319418),(143929,3,42745,3,1672319418),(143930,3,42834,3,1672319418),(143931,3,42835,3,1672319418),(143932,3,42836,3,1672319418),(143933,3,42837,3,1672319418),(143934,3,42838,3,1672319418),(143935,3,42839,3,1672319418),(143936,3,42840,3,1672319418),(143937,3,42878,3,1672319418),(143938,3,44082,3,1672319418),(143939,3,44360,3,1672319418),(143940,3,22996,2,1672319419),(143941,3,22997,2,1672319419),(143942,3,22998,2,1672319419),(143943,3,22999,2,1672319419),(143944,3,23000,2,1672319419),(143945,3,23001,2,1672319419),(143946,3,23002,2,1672319419),(143947,3,23003,2,1672319419),(143948,3,23004,2,1672319419),(143949,3,23005,2,1672319419),(143950,3,23007,2,1672319419),(143951,3,23011,2,1672319419),(143952,3,23012,2,1672319419),(143953,3,23013,2,1672319419),(143954,3,23014,2,1672319419),(143955,3,23015,2,1672319419),(143956,3,23016,2,1672319419),(143957,3,23017,2,1672319419),(143958,3,23018,2,1672319419),(143959,3,23019,2,1672319419),(143960,3,23020,2,1672319419),(143961,3,23021,2,1672319419),(143962,3,23022,2,1672319419),(143963,3,23023,2,1672319419),(143964,3,23652,2,1672319419),(143965,3,23653,2,1672319419),(143966,3,23654,2,1672319419),(143967,3,27967,2,1672319419),(143968,3,27968,2,1672319419),(143969,3,27970,2,1672319419),(143970,3,27971,2,1672319419),(143971,3,27972,2,1672319419),(143972,3,27973,2,1672319419),(143973,3,27975,2,1672319419),(143974,3,27997,2,1672319419),(143975,3,27998,2,1672319419),(143976,3,27999,2,1672319419),(143977,3,28000,2,1672319419),(143978,3,28026,2,1672319419),(143979,3,28027,2,1672319419),(143980,3,28031,2,1672319419),(143981,3,28539,2,1672319419),(143982,3,28540,2,1672319419),(143983,3,28541,2,1672319419),(143984,3,28542,2,1672319419),(143985,3,28543,2,1672319419),(143986,3,28544,2,1672319419),(143987,3,28545,2,1672319419),(143988,3,28546,2,1672319419),(143989,3,28547,2,1672319419),(143990,3,28548,2,1672319419),(143991,3,28549,2,1672319419),(143992,3,28550,2,1672319419),(143993,3,28551,2,1672319419),(143994,3,28552,2,1672319419),(143995,3,28553,2,1672319419),(143996,3,28554,2,1672319419),(143997,3,28555,2,1672319419),(143998,3,28556,2,1672319419),(143999,3,28557,2,1672319419),(144000,3,28558,2,1672319419),(144001,3,28559,2,1672319419),(144002,3,28560,2,1672319419),(144003,3,28561,2,1672319419),(144004,3,28562,2,1672319419),(144005,3,28563,2,1672319419),(144006,3,28564,2,1672319419),(144007,3,28565,2,1672319419),(144008,3,28566,2,1672319419),(144009,3,28567,2,1672319419),(144010,3,28568,2,1672319419),(144011,3,28569,2,1672319419),(144012,3,28570,2,1672319419),(144013,3,28571,2,1672319419),(144014,3,28572,2,1672319419),(144015,3,28573,2,1672319419),(144016,3,28574,2,1672319419),(144017,3,28575,2,1672319419),(144018,3,28576,2,1672319419),(144019,3,28577,2,1672319419),(144020,3,28578,2,1672319419),(144021,3,28579,2,1672319419),(144022,3,28580,2,1672319419),(144023,3,28581,2,1672319419),(144024,3,28582,2,1672319419),(144025,3,28583,2,1672319419),(144026,3,28584,2,1672319419),(144027,3,28585,2,1672319419),(144028,3,28586,2,1672319419),(144029,3,28587,2,1672319419),(144030,3,28588,2,1672319419),(144031,3,28589,2,1672319419),(144032,3,28590,2,1672319419),(144033,3,28591,2,1672319419),(144034,3,28592,2,1672319419),(144035,3,28593,2,1672319419),(144036,3,28594,2,1672319419),(144037,3,28595,2,1672319419),(144038,3,28596,2,1672319419),(144039,3,28597,2,1672319419),(144040,3,28598,2,1672319419),(144041,3,28599,2,1672319419),(144042,3,28600,2,1672319419),(144043,3,28601,2,1672319419),(144044,3,28602,2,1672319419),(144045,3,28603,2,1672319419),(144046,3,28604,2,1672319419),(144047,3,28605,2,1672319419),(144048,3,28606,2,1672319419),(144049,3,28607,2,1672319419),(144050,3,28608,2,1672319419),(144051,3,28609,2,1672319419),(144052,3,28610,2,1672319419),(144053,3,28611,2,1672319419),(144054,3,28612,2,1672319419),(144055,3,28613,2,1672319419),(144056,3,28615,2,1672319419),(144057,3,28616,2,1672319419),(144058,3,29454,2,1672319419),(144059,3,29455,2,1672319419),(144060,3,29456,2,1672319419),(144061,3,29457,2,1672319419),(144062,3,29458,2,1672319419),(144063,3,29459,2,1672319419),(144064,3,29460,2,1672319419),(144065,3,29461,2,1672319419),(144066,3,29462,2,1672319419),(144067,3,29463,2,1672319419),(144068,3,29466,2,1672319419),(144069,3,29467,2,1672319419),(144070,3,29468,2,1672319419),(144071,3,29469,2,1672319419),(144072,3,29470,2,1672319419),(144073,3,29472,2,1672319419),(144074,3,29473,2,1672319419),(144075,3,29474,2,1672319419),(144076,3,29475,2,1672319419),(144077,3,29476,2,1672319419),(144078,3,29477,2,1672319419),(144079,3,29478,2,1672319419),(144080,3,29653,2,1672319419),(144081,3,29654,2,1672319419),(144082,3,29655,2,1672319419),(144083,3,29660,2,1672319419),(144084,3,29661,2,1672319419),(144085,3,29687,2,1672319419),(144086,3,29688,2,1672319419),(144087,3,29691,2,1672319419),(144088,3,29692,2,1672319419),(144089,3,29693,2,1672319419),(144090,3,29694,2,1672319419),(144091,3,29695,2,1672319419),(144092,3,29696,2,1672319419),(144093,3,29697,2,1672319419),(144094,3,29698,2,1672319419),(144095,3,29699,2,1672319419),(144096,3,29700,2,1672319419),(144097,3,29701,2,1672319419),(144098,3,29738,2,1672319419),(144099,3,29739,2,1672319419),(144100,3,29741,2,1672319419),(144101,3,29742,2,1672319419),(144102,3,29743,2,1672319419),(144103,3,29745,2,1672319419),(144104,3,29746,2,1672319419),(144105,3,29747,2,1672319419),(144106,3,29748,2,1672319419),(144107,3,29749,2,1672319419),(144108,3,29750,2,1672319419),(144109,3,29751,2,1672319419),(144110,3,29752,2,1672319419),(144111,3,29753,2,1672319419),(144112,3,29754,2,1672319419),(144113,3,29755,2,1672319419),(144114,3,29756,2,1672319419),(144115,3,29757,2,1672319419),(144116,3,29758,2,1672319419),(144117,3,29759,2,1672319419),(144118,3,29760,2,1672319419),(144119,3,29761,2,1672319419),(144120,3,29762,2,1672319419),(144121,3,29763,2,1672319419),(144122,3,29764,2,1672319419),(144123,3,29765,2,1672319419),(144124,3,29766,2,1672319419),(144125,3,29767,2,1672319419),(144126,3,29768,2,1672319419),(144127,3,29769,2,1672319419),(144128,3,29771,2,1672319419),(144129,3,29772,2,1672319419),(144130,3,29773,2,1672319419),(144131,3,29774,2,1672319419),(144132,3,29775,2,1672319419),(144133,3,29776,2,1672319419),(144134,3,29777,2,1672319419),(144135,3,29779,2,1672319419),(144136,3,29780,2,1672319419),(144137,3,29781,2,1672319419),(144138,3,29782,2,1672319419),(144139,3,29783,2,1672319419),(144140,3,29784,2,1672319419),(144141,3,29821,2,1672319419),(144142,3,29998,2,1672319419),(144143,3,29999,2,1672319419),(144144,3,30000,2,1672319419),(144145,3,30001,2,1672319419),(144146,3,30002,2,1672319419),(144147,3,30003,2,1672319419),(144148,3,30004,2,1672319419),(144149,3,30005,2,1672319419),(144150,3,30006,2,1672319419),(144151,3,30007,2,1672319419),(144152,3,30008,2,1672319419),(144153,3,30009,2,1672319419),(144154,3,30010,2,1672319419),(144155,3,30011,2,1672319419),(144156,3,30012,2,1672319419),(144157,3,30013,2,1672319419),(144158,3,30014,2,1672319419),(144159,3,30015,2,1672319419),(144160,3,30016,2,1672319419),(144161,3,30017,2,1672319419),(144162,3,30018,2,1672319419),(144163,3,30019,2,1672319419),(144164,3,30020,2,1672319419),(144165,3,30021,2,1672319419),(144166,3,30022,2,1672319419),(144167,3,30023,2,1672319419),(144168,3,30024,2,1672319419),(144169,3,30025,2,1672319419),(144170,3,30043,2,1672319419),(144171,3,30044,2,1672319419),(144172,3,30045,2,1672319419),(144173,3,30124,2,1672319419),(144174,3,30125,2,1672319419),(144175,3,30126,2,1672319419),(144176,3,30132,2,1672319419),(144177,3,30133,2,1672319419),(144178,3,30134,2,1672319419),(144179,3,30135,2,1672319419),(144180,3,30136,2,1672319419),(144181,3,30137,2,1672319419),(144182,3,30273,2,1672319419),(144183,3,30274,2,1672319419),(144184,3,30275,2,1672319419),(144185,3,30276,2,1672319419),(144186,3,30277,2,1672319419),(144187,3,30278,2,1672319419),(144188,3,30279,2,1672319419),(144189,3,30280,2,1672319419),(144190,3,30281,2,1672319419),(144191,3,30282,2,1672319419),(144192,3,30283,2,1672319419),(144193,3,30284,2,1672319419),(144194,3,30285,2,1672319419),(144195,3,30286,2,1672319419),(144196,3,30287,2,1672319419),(144197,3,30288,2,1672319419),(144198,3,30289,2,1672319419),(144199,3,30290,2,1672319419),(144200,3,30291,2,1672319419),(144201,3,30292,2,1672319419),(144202,3,30293,2,1672319419),(144203,3,30294,2,1672319419),(144204,3,30295,2,1672319419),(144205,3,30296,2,1672319419),(144206,3,30297,2,1672319419),(144207,3,30298,2,1672319419),(144208,3,30299,2,1672319419),(144209,3,30300,2,1672319419),(144210,3,30301,2,1672319419),(144211,3,30302,2,1672319419),(144212,3,30303,2,1672319419),(144213,3,30304,2,1672319419),(144214,3,30305,2,1672319419),(144215,3,30306,2,1672319419),(144216,3,30307,2,1672319419),(144217,3,30308,2,1672319419),(144218,3,30309,2,1672319419),(144219,3,30310,2,1672319419),(144220,3,30311,2,1672319419),(144221,3,30312,2,1672319419),(144222,3,30313,2,1672319419),(144223,3,30314,2,1672319419),(144224,3,30315,2,1672319419),(144225,3,30316,2,1672319419),(144226,3,30317,2,1672319419),(144227,3,30318,2,1672319419),(144228,3,30319,2,1672319419),(144229,3,30320,2,1672319419),(144230,3,30321,2,1672319419),(144231,3,30322,2,1672319419),(144232,3,30323,2,1672319419),(144233,3,30324,2,1672319419),(144234,3,30325,2,1672319419),(144235,3,30326,2,1672319419),(144236,3,30327,2,1672319419),(144237,3,30328,2,1672319419),(144238,3,30329,2,1672319419),(144239,3,30330,2,1672319419),(144240,3,30331,2,1672319419),(144241,3,30332,2,1672319419),(144242,3,30333,2,1672319419),(144243,3,30334,2,1672319419),(144244,3,30335,2,1672319419),(144245,3,30336,2,1672319419),(144246,3,31052,2,1672319419),(144247,3,31053,2,1672319419),(144248,3,31274,2,1672319419),(144249,3,31275,2,1672319419),(144250,3,31276,2,1672319419),(144251,3,31277,2,1672319419),(144252,3,31279,2,1672319419),(144253,3,31280,2,1672319419),(144254,3,31282,2,1672319419),(144255,3,31283,2,1672319419),(144256,3,31284,2,1672319419),(144257,3,31285,2,1672319419),(144258,3,31286,2,1672319419),(144259,3,31287,2,1672319419),(144260,3,31288,2,1672319419),(144261,3,31289,2,1672319419),(144262,3,31290,2,1672319419),(144263,3,31291,2,1672319419),(144264,3,31292,2,1672319419),(144265,3,31293,2,1672319419),(144266,3,31294,2,1672319419),(144267,3,31295,2,1672319419),(144268,3,31296,2,1672319419),(144269,3,31297,2,1672319419),(144270,3,31298,2,1672319419),(144271,3,31299,2,1672319419),(144272,3,31300,2,1672319419),(144273,3,31301,2,1672319419),(144274,3,31302,2,1672319419),(144275,3,31303,2,1672319419),(144276,3,31304,2,1672319419),(144277,3,31305,2,1672319419),(144278,3,31306,2,1672319419),(144279,3,31307,2,1672319419),(144280,3,31309,2,1672319419),(144281,3,31310,2,1672319419),(144282,3,31311,2,1672319419),(144283,3,31312,2,1672319419),(144284,3,31313,2,1672319419),(144285,3,31314,2,1672319419),(144286,3,31315,2,1672319419),(144287,3,31316,2,1672319419),(144288,3,31317,2,1672319419),(144289,3,31318,2,1672319419),(144290,3,31319,2,1672319419),(144291,3,31320,2,1672319419),(144292,3,31321,2,1672319419),(144293,3,31322,2,1672319419),(144294,3,31323,2,1672319419),(144295,3,31324,2,1672319419),(144296,3,31325,2,1672319419),(144297,3,31326,2,1672319419),(144298,3,31327,2,1672319419),(144299,3,31328,2,1672319419),(144300,3,31329,2,1672319419),(144301,3,31330,2,1672319419),(144302,3,31331,2,1672319419),(144303,3,31332,2,1672319419),(144304,3,31333,2,1672319419),(144305,3,31419,2,1672319419),(144306,3,31420,2,1672319419),(144307,3,31421,2,1672319419),(144308,3,31422,2,1672319419),(144309,3,31427,2,1672319419),(144310,3,31612,2,1672319419),(144311,3,31613,2,1672319419),(144312,3,31614,2,1672319419),(144313,3,31948,2,1672319419),(144314,3,31949,2,1672319419),(144315,3,31950,2,1672319419),(144316,3,31951,2,1672319419),(144317,3,31952,2,1672319419),(144318,3,31953,2,1672319419),(144319,3,31954,2,1672319419),(144320,3,31955,2,1672319419),(144321,3,31956,2,1672319419),(144322,3,31957,2,1672319419),(144323,3,31958,2,1672319419),(144324,3,31959,2,1672319419),(144325,3,31960,2,1672319419),(144326,3,31961,2,1672319419),(144327,3,31962,2,1672319419),(144328,3,31963,2,1672319419),(144329,3,31964,2,1672319419),(144330,3,31965,2,1672319419),(144331,3,31966,2,1672319419),(144332,3,31967,2,1672319419),(144333,3,31968,2,1672319419),(144334,3,31969,2,1672319419),(144335,3,31970,2,1672319419),(144336,3,31971,2,1672319419),(144337,3,31972,2,1672319419),(144338,3,31973,2,1672319419),(144339,3,31974,2,1672319419),(144340,3,32002,2,1672319419),(144341,3,32239,2,1672319419),(144342,3,32240,2,1672319419),(144343,3,32241,2,1672319419),(144344,3,32242,2,1672319419),(144345,3,32243,2,1672319419),(144346,3,32244,2,1672319419),(144347,3,32245,2,1672319419),(144348,3,32246,2,1672319419),(144349,3,32247,2,1672319419),(144350,3,32248,2,1672319419),(144351,3,32249,2,1672319419),(144352,3,32250,2,1672319419),(144353,3,32251,2,1672319419),(144354,3,32252,2,1672319419),(144355,3,32253,2,1672319419),(144356,3,32254,2,1672319419),(144357,3,32255,2,1672319419),(144358,3,32256,2,1672319419),(144359,3,32257,2,1672319419),(144360,3,32258,2,1672319419),(144361,3,32259,2,1672319419),(144362,3,32260,2,1672319419),(144363,3,32261,2,1672319419),(144364,3,32262,2,1672319419),(144365,3,32263,2,1672319419),(144366,3,32264,2,1672319419),(144367,3,32265,2,1672319419),(144368,3,32266,2,1672319419),(144369,3,32267,2,1672319419),(144370,3,32268,2,1672319419),(144371,3,32269,2,1672319419),(144372,3,32270,2,1672319419),(144373,3,32271,2,1672319419),(144374,3,32272,2,1672319419),(144375,3,32273,2,1672319419),(144376,3,32274,2,1672319419),(144377,3,32275,2,1672319419),(144378,3,32276,2,1672319419),(144379,3,32277,2,1672319419),(144380,3,32278,2,1672319419),(144381,3,32279,2,1672319419),(144382,3,32280,2,1672319419),(144383,3,32281,2,1672319419),(144384,3,32282,2,1672319419),(144385,3,32283,2,1672319419),(144386,3,32284,2,1672319419),(144387,3,32285,2,1672319419),(144388,3,32286,2,1672319419),(144389,3,32287,2,1672319419),(144390,3,32288,2,1672319419),(144391,3,32289,2,1672319419),(144392,3,32290,2,1672319419),(144393,3,32291,2,1672319419),(144394,3,32292,2,1672319419),(144395,3,32890,2,1672319419),(144396,3,32891,2,1672319419),(144397,3,32892,2,1672319419),(144398,3,32893,2,1672319419),(144399,3,32894,2,1672319419),(144400,3,32895,2,1672319419),(144401,3,32896,2,1672319419),(144402,3,32897,2,1672319419),(144403,3,32898,2,1672319419),(144404,3,32899,2,1672319419),(144405,3,32900,2,1672319419),(144406,3,32901,2,1672319419),(144407,3,32902,2,1672319419),(144408,3,32903,2,1672319419),(144409,3,32904,2,1672319419),(144410,3,32905,2,1672319419),(144411,3,32906,2,1672319419),(144412,3,32907,2,1672319419),(144413,3,32908,2,1672319419),(144414,3,32909,2,1672319419),(144415,3,32910,2,1672319419),(144416,3,32911,2,1672319419),(144417,3,32912,2,1672319419),(144418,3,32913,2,1672319419),(144419,3,32915,2,1672319419),(144420,3,32916,2,1672319419),(144421,3,32917,2,1672319419),(144422,3,32918,2,1672319419),(144423,3,32919,2,1672319419),(144424,3,32920,2,1672319419),(144425,3,32921,2,1672319419),(144426,3,32922,2,1672319419),(144427,3,32923,2,1672319419),(144428,3,32924,2,1672319419),(144429,3,32925,2,1672319419),(144430,3,32926,2,1672319419),(144431,3,32927,2,1672319419),(144432,3,32928,2,1672319419),(144433,3,32929,2,1672319419),(144434,3,32930,2,1672319419),(144435,3,32951,2,1672319419),(144436,3,32952,2,1672319419),(144437,3,32953,2,1672319419),(144438,3,33012,2,1672319419),(144439,3,33013,2,1672319419),(144440,3,33014,2,1672319419),(144441,3,33015,2,1672319419),(144442,3,33016,2,1672319419),(144443,3,33017,2,1672319419),(144444,3,33172,2,1672319419),(144445,3,33173,2,1672319419),(144446,3,33174,2,1672319419),(144447,3,33175,2,1672319419),(144448,3,33176,2,1672319419),(144449,3,33638,2,1672319419),(144450,3,33639,2,1672319419),(144451,3,33640,2,1672319419),(144452,3,33641,2,1672319419),(144453,3,33642,2,1672319419),(144454,3,33643,2,1672319419),(144455,3,33644,2,1672319419),(144456,3,33645,2,1672319419),(144457,3,33646,2,1672319419),(144458,3,33647,2,1672319419),(144459,3,33648,2,1672319419),(144460,3,33649,2,1672319419),(144461,3,34314,2,1672319419),(144462,3,34315,2,1672319419),(144463,3,34336,2,1672319419),(144464,3,34337,2,1672319419),(144465,3,34338,2,1672319419),(144466,3,34339,2,1672319419),(144467,3,34340,2,1672319419),(144468,3,34341,2,1672319419),(144469,3,34367,2,1672319419),(144470,3,34368,2,1672319419),(144471,3,34369,2,1672319419),(144472,3,34370,2,1672319419),(144473,3,34371,2,1672319419),(144474,3,34372,2,1672319419),(144475,3,34373,2,1672319419),(144476,3,34374,2,1672319419),(144477,3,34375,2,1672319419),(144478,3,34376,2,1672319419),(144479,3,34377,2,1672319419),(144480,3,34378,2,1672319419),(144481,3,34379,2,1672319419),(144482,3,34380,2,1672319419),(144483,3,34381,2,1672319419),(144484,3,34382,2,1672319419),(144485,3,34383,2,1672319419),(144486,3,34384,2,1672319419),(144487,3,34385,2,1672319419),(144488,3,34386,2,1672319419),(144489,3,34387,2,1672319419),(144490,3,34388,2,1672319419),(144491,3,34389,2,1672319419),(144492,3,34390,2,1672319419),(144493,3,34391,2,1672319419),(144494,3,34392,2,1672319419),(144495,3,34393,2,1672319419),(144496,3,34394,2,1672319419),(144497,3,34395,2,1672319419),(144498,3,34396,2,1672319419),(144499,3,34397,2,1672319419),(144500,3,34398,2,1672319419),(144501,3,34412,2,1672319419),(144502,3,34413,2,1672319419),(144503,3,34414,2,1672319419),(144504,3,34415,2,1672319419),(144505,3,34416,2,1672319419),(144506,3,34417,2,1672319419),(144507,3,34418,2,1672319419),(144508,3,34419,2,1672319419),(144509,3,34420,2,1672319419),(144510,3,34421,2,1672319419),(144511,3,34422,2,1672319419),(144512,3,34423,2,1672319419),(144513,3,34424,2,1672319419),(144514,3,34425,2,1672319419),(144515,3,34426,2,1672319419),(144516,3,34427,2,1672319419),(144517,3,34428,2,1672319419),(144518,3,34429,2,1672319419),(144519,3,34430,2,1672319419),(144520,3,34431,2,1672319419),(144521,3,34432,2,1672319419),(144522,3,34433,2,1672319419),(144523,3,34434,2,1672319419),(144524,3,34435,2,1672319419),(144525,3,34436,2,1672319419),(144526,3,34437,2,1672319419),(144527,3,34438,2,1672319419),(144528,3,34439,2,1672319419),(144529,3,34937,2,1672319419),(144530,3,34938,2,1672319419),(144531,3,34939,2,1672319419),(144532,3,34940,2,1672319419),(144533,3,34941,2,1672319419),(144534,3,34949,2,1672319419),(144535,3,34950,2,1672319419),(144536,3,34951,2,1672319419),(144537,3,34952,2,1672319419),(144538,3,34953,2,1672319419),(144539,3,34954,2,1672319419),(144540,3,34955,2,1672319419),(144541,3,34956,2,1672319419),(144542,3,34957,2,1672319419),(144543,3,34958,2,1672319419),(144544,3,34959,2,1672319419),(144545,3,34960,2,1672319419),(144546,3,34961,2,1672319419),(144547,3,34962,2,1672319419),(144548,3,34963,2,1672319419),(144549,3,34964,2,1672319419),(144550,3,34965,2,1672319419),(144551,3,35064,2,1672319419),(144552,3,35065,2,1672319419),(144553,3,35066,2,1672319419),(144554,3,35067,2,1672319419),(144555,3,35068,2,1672319419),(144556,3,35069,2,1672319419),(144557,3,35070,2,1672319419),(144558,3,35071,2,1672319419),(144559,3,35072,2,1672319419),(144560,3,35073,2,1672319419),(144561,3,35074,2,1672319419),(144562,3,35075,2,1672319419),(144563,3,35076,2,1672319419),(144564,3,35278,2,1672319419),(144565,3,35279,2,1672319419),(144566,3,36772,2,1672319419),(144567,3,36773,2,1672319419),(144568,3,36774,2,1672319419),(144569,3,36775,2,1672319419),(144570,3,36776,2,1672319419),(144571,3,36777,2,1672319419),(144572,3,36778,2,1672319419),(144573,3,36779,2,1672319419),(144574,3,36780,2,1672319419),(144575,3,39742,2,1672319419),(144576,3,39743,2,1672319419),(144577,3,39744,2,1672319419),(144578,3,39745,2,1672319419),(144579,3,39746,2,1672319419),(144580,3,39747,2,1672319419),(144581,3,39748,2,1672319419),(144582,3,39821,2,1672319419),(144583,3,39824,2,1672319419),(144584,3,39825,2,1672319419),(144585,3,40185,2,1672319419),(144586,3,40186,2,1672319419),(144587,3,40187,2,1672319419),(144588,3,40188,2,1672319419),(144589,3,40189,2,1672319419),(144590,3,42110,2,1672319419),(144591,3,42111,2,1672319419),(144592,3,42112,2,1672319419),(144593,3,42113,2,1672319419),(144594,3,42114,2,1672319419),(144595,3,42115,2,1672319419),(144596,3,42116,2,1672319419),(144597,3,42117,2,1672319419),(144598,3,42118,2,1672319419),(144599,3,42119,2,1672319419),(144600,3,42120,2,1672319419),(144601,3,42133,2,1672319419),(144602,3,42134,2,1672319419),(144603,3,42135,2,1672319419),(144604,3,42136,2,1672319419),(144605,3,42137,2,1672319419),(144606,3,42138,2,1672319419),(144607,3,42139,2,1672319419),(144608,3,42140,2,1672319419),(144609,3,42141,2,1672319419),(144610,3,42142,2,1672319419),(144611,3,42143,2,1672319419),(144612,3,42154,2,1672319419),(144613,3,42155,2,1672319419),(144614,3,42156,2,1672319419),(144615,3,42157,2,1672319419),(144616,3,42158,2,1672319419),(144617,3,42159,2,1672319419),(144618,3,42160,2,1672319419),(144619,3,42161,2,1672319419),(144620,3,42162,2,1672319419),(144621,3,42163,2,1672319419),(144622,3,42164,2,1672319419),(144623,3,42451,2,1672319419),(144624,3,42452,2,1672319419),(144625,3,42453,2,1672319419),(144626,3,42454,2,1672319419),(144627,3,42455,2,1672319419),(144628,3,42456,2,1672319419),(144629,3,42457,2,1672319419),(144630,3,42458,2,1672319419),(144631,3,42459,2,1672319419),(144632,3,42460,2,1672319419),(144633,3,42461,2,1672319419),(144634,3,42462,2,1672319419),(144635,3,42463,2,1672319419),(144636,3,42464,2,1672319419),(144637,3,42465,2,1672319419),(144638,3,42466,2,1672319419),(144639,3,42467,2,1672319419),(144640,3,42468,2,1672319419),(144641,3,42469,2,1672319419),(144642,3,42470,2,1672319419),(144643,3,42471,2,1672319419),(144644,3,42472,2,1672319419),(144645,3,42473,2,1672319419),(144646,3,42474,2,1672319419),(144647,3,42475,2,1672319419),(144648,3,42476,2,1672319419),(144649,3,42477,2,1672319419),(144650,3,42478,2,1672319419),(144651,3,42479,2,1672319419),(144652,3,42480,2,1672319419),(144653,3,42481,2,1672319419),(144654,3,42482,2,1672319419),(144655,3,42483,2,1672319419),(144656,3,42484,2,1672319419),(144657,3,42485,2,1672319419),(144658,3,42486,2,1672319419),(144659,3,42512,2,1672319419),(144660,3,42513,2,1672319419),(144661,3,42514,2,1672319419),(144662,3,42515,2,1672319419),(144663,3,42516,2,1672319419),(144664,3,42517,2,1672319419),(144665,3,42518,2,1672319419),(144666,3,42519,2,1672319419),(144667,3,42520,2,1672319419),(144668,3,42521,2,1672319419),(144669,3,42522,2,1672319419),(144670,3,42523,2,1672319419),(144671,3,42524,2,1672319419),(144672,3,42525,2,1672319419),(144673,3,42526,2,1672319419),(144674,3,42527,2,1672319419),(144675,3,42528,2,1672319419),(144676,3,42529,2,1672319419),(144677,3,42530,2,1672319419),(144678,3,42531,2,1672319419),(144679,3,42532,2,1672319419),(144680,3,42533,2,1672319419),(144681,3,42534,2,1672319419),(144682,3,42535,2,1672319419),(144683,3,42536,2,1672319419),(144684,3,42537,2,1672319419),(144685,3,42538,2,1672319419),(144686,3,42539,2,1672319419),(144687,3,42540,2,1672319419),(144688,3,42541,2,1672319419),(144689,3,42542,2,1672319419),(144690,3,42568,2,1672319419),(144691,3,42569,2,1672319419),(144692,3,42570,2,1672319419),(144693,3,42571,2,1672319419),(144694,3,42572,2,1672319419),(144695,3,42573,2,1672319419),(144696,3,42574,2,1672319419),(144697,3,42575,2,1672319419),(144698,3,42576,2,1672319419),(144699,3,42577,2,1672319419),(144700,3,42578,2,1672319419),(144701,3,42579,2,1672319419),(144702,3,42664,2,1672319419),(144703,3,42665,2,1672319419),(144704,3,42666,2,1672319419),(144705,3,42667,2,1672319419),(144706,3,42668,2,1672319419),(144707,3,42669,2,1672319419),(144708,3,42670,2,1672319419),(144709,3,42671,2,1672319419),(144710,3,42672,2,1672319419),(144711,3,42673,2,1672319419),(144712,3,42674,2,1672319419),(144713,3,42676,2,1672319419),(144714,3,42677,2,1672319419),(144715,3,42738,2,1672319419),(144716,3,42739,2,1672319419),(144717,3,42740,2,1672319419),(144718,3,42792,2,1672319419),(144719,3,42793,2,1672319419),(144720,3,42794,2,1672319419),(144721,3,42795,2,1672319419),(144722,3,42796,2,1672319419),(144723,3,42797,2,1672319419),(144724,3,42798,2,1672319419),(144725,3,42799,2,1672319419),(144726,3,42800,2,1672319419),(144727,3,42801,2,1672319419),(144728,3,42802,2,1672319419),(144729,3,42803,2,1672319419),(144730,3,42804,2,1672319419),(144731,3,42805,2,1672319419),(144732,3,42806,2,1672319419),(144733,3,42807,2,1672319419),(144734,3,42808,2,1672319419),(144735,3,42809,2,1672319419),(144736,3,42810,2,1672319419),(144737,3,42811,2,1672319419),(144738,3,42812,2,1672319419),(144739,3,42813,2,1672319419),(144740,3,42814,2,1672319419),(144741,3,42815,2,1672319419),(144742,3,42816,2,1672319419),(144743,3,42817,2,1672319419),(144744,3,42818,2,1672319419),(144745,3,42819,2,1672319419),(144746,3,42820,2,1672319419),(144747,3,42821,2,1672319419),(144748,3,42822,2,1672319419),(144749,3,42823,2,1672319419),(144750,3,42824,2,1672319419),(144751,3,42825,2,1672319419),(144752,3,42826,2,1672319419),(144753,3,42827,2,1672319419),(144754,3,42828,2,1672319419),(144755,3,42829,2,1672319419),(144756,3,42830,2,1672319419),(144757,3,42831,2,1672319419),(144758,3,42832,2,1672319419),(144759,3,42833,2,1672319419),(144760,3,42877,2,1672319419),(144761,3,42880,2,1672319419),(144762,3,43080,2,1672319419),(144763,3,43857,2,1672319419),(144764,3,43858,2,1672319419),(144765,3,43859,2,1672319419),(144766,3,43875,2,1672319419),(144767,3,44051,2,1672319419),(144768,3,44081,2,1672319419),(144769,3,44359,2,1672319419),(144770,3,44377,2,1672319419),(144771,3,44379,2,1672319419),(144772,3,44450,2,1672319419),(144773,3,44453,2,1672319419),(144774,3,44455,2,1672319419),(144775,3,22996,3,1672319419),(144776,3,22997,3,1672319419),(144777,3,22998,3,1672319419),(144778,3,22999,3,1672319419),(144779,3,23000,3,1672319419),(144780,3,23001,3,1672319419),(144781,3,23002,3,1672319419),(144782,3,23003,3,1672319419),(144783,3,23004,3,1672319419),(144784,3,23005,3,1672319419),(144785,3,23007,3,1672319419),(144786,3,23011,3,1672319419),(144787,3,23012,3,1672319419),(144788,3,23013,3,1672319419),(144789,3,23014,3,1672319419),(144790,3,23015,3,1672319419),(144791,3,23016,3,1672319419),(144792,3,23017,3,1672319419),(144793,3,23018,3,1672319419),(144794,3,23019,3,1672319419),(144795,3,23020,3,1672319419),(144796,3,23021,3,1672319419),(144797,3,23022,3,1672319419),(144798,3,23023,3,1672319419),(144799,3,23652,3,1672319419),(144800,3,23653,3,1672319419),(144801,3,23654,3,1672319419),(144802,3,27967,3,1672319419),(144803,3,27968,3,1672319419),(144804,3,27970,3,1672319419),(144805,3,27971,3,1672319419),(144806,3,27972,3,1672319419),(144807,3,27973,3,1672319419),(144808,3,27975,3,1672319419),(144809,3,27997,3,1672319419),(144810,3,27998,3,1672319419),(144811,3,27999,3,1672319419),(144812,3,28000,3,1672319419),(144813,3,28026,3,1672319419),(144814,3,28027,3,1672319419),(144815,3,28031,3,1672319419),(144816,3,28539,3,1672319419),(144817,3,28540,3,1672319419),(144818,3,28541,3,1672319419),(144819,3,28542,3,1672319419),(144820,3,28543,3,1672319419),(144821,3,28544,3,1672319419),(144822,3,28545,3,1672319419),(144823,3,28546,3,1672319419),(144824,3,28547,3,1672319419),(144825,3,28548,3,1672319419),(144826,3,28549,3,1672319419),(144827,3,28550,3,1672319419),(144828,3,28551,3,1672319419),(144829,3,28552,3,1672319419),(144830,3,28553,3,1672319419),(144831,3,28554,3,1672319419),(144832,3,28555,3,1672319419),(144833,3,28556,3,1672319419),(144834,3,28557,3,1672319419),(144835,3,28558,3,1672319419),(144836,3,28559,3,1672319419),(144837,3,28560,3,1672319419),(144838,3,28561,3,1672319419),(144839,3,28562,3,1672319419),(144840,3,28563,3,1672319419),(144841,3,28564,3,1672319419),(144842,3,28565,3,1672319419),(144843,3,28566,3,1672319419),(144844,3,28567,3,1672319419),(144845,3,28568,3,1672319419),(144846,3,28569,3,1672319419),(144847,3,28570,3,1672319419),(144848,3,28571,3,1672319419),(144849,3,28572,3,1672319419),(144850,3,28573,3,1672319419),(144851,3,28574,3,1672319419),(144852,3,28575,3,1672319419),(144853,3,28576,3,1672319419),(144854,3,28577,3,1672319419),(144855,3,28578,3,1672319419),(144856,3,28579,3,1672319419),(144857,3,28580,3,1672319419),(144858,3,28581,3,1672319419),(144859,3,28582,3,1672319419),(144860,3,28583,3,1672319419),(144861,3,28584,3,1672319419),(144862,3,28585,3,1672319419),(144863,3,28586,3,1672319419),(144864,3,28587,3,1672319419),(144865,3,28588,3,1672319419),(144866,3,28589,3,1672319419),(144867,3,28590,3,1672319419),(144868,3,28591,3,1672319419),(144869,3,28592,3,1672319419),(144870,3,28593,3,1672319419),(144871,3,28594,3,1672319419),(144872,3,28595,3,1672319419),(144873,3,28596,3,1672319419),(144874,3,28597,3,1672319419),(144875,3,28598,3,1672319419),(144876,3,28599,3,1672319419),(144877,3,28600,3,1672319419),(144878,3,28601,3,1672319419),(144879,3,28602,3,1672319419),(144880,3,28603,3,1672319419),(144881,3,28604,3,1672319419),(144882,3,28605,3,1672319419),(144883,3,28606,3,1672319419),(144884,3,28607,3,1672319419),(144885,3,28608,3,1672319419),(144886,3,28609,3,1672319419),(144887,3,28610,3,1672319419),(144888,3,28611,3,1672319419),(144889,3,28612,3,1672319419),(144890,3,28613,3,1672319419),(144891,3,28615,3,1672319419),(144892,3,28616,3,1672319419),(144893,3,29454,3,1672319419),(144894,3,29455,3,1672319419),(144895,3,29456,3,1672319419),(144896,3,29457,3,1672319419),(144897,3,29458,3,1672319419),(144898,3,29459,3,1672319419),(144899,3,29460,3,1672319419),(144900,3,29461,3,1672319419),(144901,3,29462,3,1672319419),(144902,3,29463,3,1672319419),(144903,3,29466,3,1672319419),(144904,3,29467,3,1672319419),(144905,3,29468,3,1672319419),(144906,3,29469,3,1672319419),(144907,3,29470,3,1672319419),(144908,3,29472,3,1672319419),(144909,3,29473,3,1672319419),(144910,3,29474,3,1672319419),(144911,3,29475,3,1672319419),(144912,3,29476,3,1672319419),(144913,3,29477,3,1672319419),(144914,3,29478,3,1672319419),(144915,3,29653,3,1672319419),(144916,3,29654,3,1672319419),(144917,3,29655,3,1672319419),(144918,3,29660,3,1672319419),(144919,3,29661,3,1672319419),(144920,3,29687,3,1672319419),(144921,3,29688,3,1672319419),(144922,3,29691,3,1672319419),(144923,3,29692,3,1672319419),(144924,3,29693,3,1672319419),(144925,3,29694,3,1672319419),(144926,3,29695,3,1672319419),(144927,3,29696,3,1672319419),(144928,3,29697,3,1672319419),(144929,3,29698,3,1672319419),(144930,3,29699,3,1672319419),(144931,3,29700,3,1672319419),(144932,3,29701,3,1672319419),(144933,3,29738,3,1672319419),(144934,3,29739,3,1672319419),(144935,3,29741,3,1672319419),(144936,3,29742,3,1672319419),(144937,3,29743,3,1672319419),(144938,3,29745,3,1672319419),(144939,3,29746,3,1672319419),(144940,3,29747,3,1672319419),(144941,3,29748,3,1672319419),(144942,3,29749,3,1672319419),(144943,3,29750,3,1672319419),(144944,3,29751,3,1672319419),(144945,3,29752,3,1672319419),(144946,3,29753,3,1672319419),(144947,3,29754,3,1672319419),(144948,3,29755,3,1672319419),(144949,3,29756,3,1672319419),(144950,3,29757,3,1672319419),(144951,3,29758,3,1672319419),(144952,3,29759,3,1672319419),(144953,3,29760,3,1672319419),(144954,3,29761,3,1672319419),(144955,3,29762,3,1672319419),(144956,3,29763,3,1672319419),(144957,3,29764,3,1672319419),(144958,3,29765,3,1672319419),(144959,3,29766,3,1672319419),(144960,3,29767,3,1672319419),(144961,3,29768,3,1672319419),(144962,3,29769,3,1672319419),(144963,3,29771,3,1672319419),(144964,3,29772,3,1672319419),(144965,3,29773,3,1672319419),(144966,3,29774,3,1672319419),(144967,3,29775,3,1672319419),(144968,3,29776,3,1672319419),(144969,3,29777,3,1672319419),(144970,3,29779,3,1672319419),(144971,3,29780,3,1672319419),(144972,3,29781,3,1672319419),(144973,3,29782,3,1672319419),(144974,3,29783,3,1672319419),(144975,3,29784,3,1672319419),(144976,3,29821,3,1672319419),(144977,3,29998,3,1672319419),(144978,3,29999,3,1672319419),(144979,3,30000,3,1672319419),(144980,3,30001,3,1672319419),(144981,3,30002,3,1672319419),(144982,3,30003,3,1672319419),(144983,3,30004,3,1672319419),(144984,3,30005,3,1672319419),(144985,3,30006,3,1672319419),(144986,3,30007,3,1672319419),(144987,3,30008,3,1672319419),(144988,3,30009,3,1672319419),(144989,3,30010,3,1672319419),(144990,3,30011,3,1672319419),(144991,3,30012,3,1672319419),(144992,3,30013,3,1672319419),(144993,3,30014,3,1672319419),(144994,3,30015,3,1672319419),(144995,3,30016,3,1672319419),(144996,3,30017,3,1672319419),(144997,3,30018,3,1672319419),(144998,3,30019,3,1672319419),(144999,3,30020,3,1672319419),(145000,3,30021,3,1672319419),(145001,3,30022,3,1672319419),(145002,3,30023,3,1672319419),(145003,3,30024,3,1672319419),(145004,3,30025,3,1672319419),(145005,3,30043,3,1672319419),(145006,3,30044,3,1672319419),(145007,3,30045,3,1672319419),(145008,3,30124,3,1672319419),(145009,3,30125,3,1672319419),(145010,3,30126,3,1672319419),(145011,3,30132,3,1672319419),(145012,3,30133,3,1672319419),(145013,3,30134,3,1672319419),(145014,3,30135,3,1672319419),(145015,3,30136,3,1672319419),(145016,3,30137,3,1672319419),(145017,3,30273,3,1672319419),(145018,3,30274,3,1672319419),(145019,3,30275,3,1672319419),(145020,3,30276,3,1672319419),(145021,3,30277,3,1672319419),(145022,3,30278,3,1672319419),(145023,3,30279,3,1672319419),(145024,3,30280,3,1672319419),(145025,3,30281,3,1672319419),(145026,3,30282,3,1672319419),(145027,3,30283,3,1672319419),(145028,3,30284,3,1672319419),(145029,3,30285,3,1672319419),(145030,3,30286,3,1672319419),(145031,3,30287,3,1672319419),(145032,3,30288,3,1672319419),(145033,3,30289,3,1672319419),(145034,3,30290,3,1672319419),(145035,3,30291,3,1672319419),(145036,3,30292,3,1672319419),(145037,3,30293,3,1672319419),(145038,3,30294,3,1672319419),(145039,3,30295,3,1672319419),(145040,3,30296,3,1672319419),(145041,3,30297,3,1672319419),(145042,3,30298,3,1672319419),(145043,3,30299,3,1672319419),(145044,3,30300,3,1672319419),(145045,3,30301,3,1672319419),(145046,3,30302,3,1672319419),(145047,3,30303,3,1672319419),(145048,3,30304,3,1672319419),(145049,3,30305,3,1672319419),(145050,3,30306,3,1672319419),(145051,3,30307,3,1672319419),(145052,3,30308,3,1672319419),(145053,3,30309,3,1672319419),(145054,3,30310,3,1672319419),(145055,3,30311,3,1672319419),(145056,3,30312,3,1672319419),(145057,3,30313,3,1672319419),(145058,3,30314,3,1672319419),(145059,3,30315,3,1672319419),(145060,3,30316,3,1672319419),(145061,3,30317,3,1672319419),(145062,3,30318,3,1672319419),(145063,3,30319,3,1672319419),(145064,3,30320,3,1672319419),(145065,3,30321,3,1672319419),(145066,3,30322,3,1672319419),(145067,3,30323,3,1672319419),(145068,3,30324,3,1672319419),(145069,3,30325,3,1672319419),(145070,3,30326,3,1672319419),(145071,3,30327,3,1672319419),(145072,3,30328,3,1672319419),(145073,3,30329,3,1672319419),(145074,3,30330,3,1672319419),(145075,3,30331,3,1672319419),(145076,3,30332,3,1672319419),(145077,3,30333,3,1672319419),(145078,3,30334,3,1672319419),(145079,3,30335,3,1672319419),(145080,3,30336,3,1672319419),(145081,3,31052,3,1672319419),(145082,3,31053,3,1672319419),(145083,3,31274,3,1672319419),(145084,3,31275,3,1672319419),(145085,3,31276,3,1672319419),(145086,3,31277,3,1672319419),(145087,3,31279,3,1672319419),(145088,3,31280,3,1672319419),(145089,3,31282,3,1672319419),(145090,3,31283,3,1672319419),(145091,3,31284,3,1672319419),(145092,3,31285,3,1672319419),(145093,3,31286,3,1672319419),(145094,3,31287,3,1672319419),(145095,3,31288,3,1672319419),(145096,3,31289,3,1672319419),(145097,3,31290,3,1672319419),(145098,3,31291,3,1672319419),(145099,3,31292,3,1672319419),(145100,3,31293,3,1672319419),(145101,3,31294,3,1672319419),(145102,3,31295,3,1672319419),(145103,3,31296,3,1672319419),(145104,3,31297,3,1672319419),(145105,3,31298,3,1672319419),(145106,3,31299,3,1672319419),(145107,3,31300,3,1672319419),(145108,3,31301,3,1672319419),(145109,3,31302,3,1672319419),(145110,3,31303,3,1672319419),(145111,3,31304,3,1672319419),(145112,3,31305,3,1672319419),(145113,3,31306,3,1672319419),(145114,3,31307,3,1672319419),(145115,3,31309,3,1672319419),(145116,3,31310,3,1672319419),(145117,3,31311,3,1672319419),(145118,3,31312,3,1672319419),(145119,3,31313,3,1672319419),(145120,3,31314,3,1672319419),(145121,3,31315,3,1672319419),(145122,3,31316,3,1672319419),(145123,3,31317,3,1672319419),(145124,3,31318,3,1672319419),(145125,3,31319,3,1672319419),(145126,3,31320,3,1672319419),(145127,3,31321,3,1672319419),(145128,3,31322,3,1672319419),(145129,3,31323,3,1672319419),(145130,3,31324,3,1672319419),(145131,3,31325,3,1672319419),(145132,3,31326,3,1672319419),(145133,3,31327,3,1672319419),(145134,3,31328,3,1672319419),(145135,3,31329,3,1672319419),(145136,3,31330,3,1672319419),(145137,3,31331,3,1672319419),(145138,3,31332,3,1672319419),(145139,3,31333,3,1672319419),(145140,3,31419,3,1672319419),(145141,3,31420,3,1672319419),(145142,3,31421,3,1672319419),(145143,3,31422,3,1672319419),(145144,3,31427,3,1672319419),(145145,3,31612,3,1672319419),(145146,3,31613,3,1672319419),(145147,3,31614,3,1672319419),(145148,3,31948,3,1672319419),(145149,3,31949,3,1672319419),(145150,3,31950,3,1672319419),(145151,3,31951,3,1672319419),(145152,3,31952,3,1672319419),(145153,3,31953,3,1672319419),(145154,3,31954,3,1672319419),(145155,3,31955,3,1672319419),(145156,3,31956,3,1672319419),(145157,3,31957,3,1672319419),(145158,3,31958,3,1672319419),(145159,3,31959,3,1672319419),(145160,3,31960,3,1672319419),(145161,3,31961,3,1672319419),(145162,3,31962,3,1672319419),(145163,3,31963,3,1672319419),(145164,3,31964,3,1672319419),(145165,3,31965,3,1672319419),(145166,3,31966,3,1672319419),(145167,3,31967,3,1672319419),(145168,3,31968,3,1672319419),(145169,3,31969,3,1672319419),(145170,3,31970,3,1672319419),(145171,3,31971,3,1672319419),(145172,3,31972,3,1672319419),(145173,3,31973,3,1672319419),(145174,3,31974,3,1672319419),(145175,3,32002,3,1672319419),(145176,3,32239,3,1672319419),(145177,3,32240,3,1672319419),(145178,3,32241,3,1672319419),(145179,3,32242,3,1672319419),(145180,3,32243,3,1672319419),(145181,3,32244,3,1672319419),(145182,3,32245,3,1672319419),(145183,3,32246,3,1672319419),(145184,3,32247,3,1672319419),(145185,3,32248,3,1672319419),(145186,3,32249,3,1672319419),(145187,3,32250,3,1672319419),(145188,3,32251,3,1672319419),(145189,3,32252,3,1672319419),(145190,3,32253,3,1672319419),(145191,3,32254,3,1672319419),(145192,3,32255,3,1672319419),(145193,3,32256,3,1672319419),(145194,3,32257,3,1672319419),(145195,3,32258,3,1672319419),(145196,3,32259,3,1672319419),(145197,3,32260,3,1672319419),(145198,3,32261,3,1672319419),(145199,3,32262,3,1672319419),(145200,3,32263,3,1672319419),(145201,3,32264,3,1672319419),(145202,3,32265,3,1672319419),(145203,3,32266,3,1672319419),(145204,3,32267,3,1672319419),(145205,3,32268,3,1672319419),(145206,3,32269,3,1672319419),(145207,3,32270,3,1672319419),(145208,3,32271,3,1672319419),(145209,3,32272,3,1672319419),(145210,3,32273,3,1672319419),(145211,3,32274,3,1672319419),(145212,3,32275,3,1672319419),(145213,3,32276,3,1672319419),(145214,3,32277,3,1672319419),(145215,3,32278,3,1672319419),(145216,3,32279,3,1672319419),(145217,3,32280,3,1672319419),(145218,3,32281,3,1672319419),(145219,3,32282,3,1672319419),(145220,3,32283,3,1672319419),(145221,3,32284,3,1672319419),(145222,3,32285,3,1672319419),(145223,3,32286,3,1672319419),(145224,3,32287,3,1672319419),(145225,3,32288,3,1672319419),(145226,3,32289,3,1672319419),(145227,3,32290,3,1672319419),(145228,3,32291,3,1672319419),(145229,3,32292,3,1672319419),(145230,3,32890,3,1672319419),(145231,3,32891,3,1672319419),(145232,3,32892,3,1672319419),(145233,3,32893,3,1672319419),(145234,3,32894,3,1672319419),(145235,3,32895,3,1672319419),(145236,3,32896,3,1672319419),(145237,3,32897,3,1672319419),(145238,3,32898,3,1672319419),(145239,3,32899,3,1672319419),(145240,3,32900,3,1672319419),(145241,3,32901,3,1672319419),(145242,3,32902,3,1672319419),(145243,3,32903,3,1672319419),(145244,3,32904,3,1672319419),(145245,3,32905,3,1672319419),(145246,3,32906,3,1672319419),(145247,3,32907,3,1672319419),(145248,3,32908,3,1672319419),(145249,3,32909,3,1672319419),(145250,3,32910,3,1672319419),(145251,3,32911,3,1672319419),(145252,3,32912,3,1672319419),(145253,3,32913,3,1672319419),(145254,3,32915,3,1672319419),(145255,3,32916,3,1672319419),(145256,3,32917,3,1672319419),(145257,3,32918,3,1672319419),(145258,3,32919,3,1672319419),(145259,3,32920,3,1672319419),(145260,3,32921,3,1672319419),(145261,3,32922,3,1672319419),(145262,3,32923,3,1672319419),(145263,3,32924,3,1672319419),(145264,3,32925,3,1672319419),(145265,3,32926,3,1672319419),(145266,3,32927,3,1672319419),(145267,3,32928,3,1672319419),(145268,3,32929,3,1672319419),(145269,3,32930,3,1672319419),(145270,3,32951,3,1672319419),(145271,3,32952,3,1672319419),(145272,3,32953,3,1672319419),(145273,3,33012,3,1672319419),(145274,3,33013,3,1672319419),(145275,3,33014,3,1672319419),(145276,3,33015,3,1672319419),(145277,3,33016,3,1672319419),(145278,3,33017,3,1672319419),(145279,3,33172,3,1672319419),(145280,3,33173,3,1672319419),(145281,3,33174,3,1672319419),(145282,3,33175,3,1672319419),(145283,3,33176,3,1672319419),(145284,3,33638,3,1672319419),(145285,3,33639,3,1672319419),(145286,3,33640,3,1672319419),(145287,3,33641,3,1672319419),(145288,3,33642,3,1672319419),(145289,3,33643,3,1672319419),(145290,3,33644,3,1672319419),(145291,3,33645,3,1672319419),(145292,3,33646,3,1672319419),(145293,3,33647,3,1672319419),(145294,3,33648,3,1672319419),(145295,3,33649,3,1672319419),(145296,3,34314,3,1672319419),(145297,3,34315,3,1672319419),(145298,3,34336,3,1672319419),(145299,3,34337,3,1672319419),(145300,3,34338,3,1672319419),(145301,3,34339,3,1672319419),(145302,3,34340,3,1672319419),(145303,3,34341,3,1672319419),(145304,3,34367,3,1672319419),(145305,3,34368,3,1672319419),(145306,3,34369,3,1672319419),(145307,3,34370,3,1672319419),(145308,3,34371,3,1672319419),(145309,3,34372,3,1672319419),(145310,3,34373,3,1672319419),(145311,3,34374,3,1672319419),(145312,3,34375,3,1672319419),(145313,3,34376,3,1672319419),(145314,3,34377,3,1672319419),(145315,3,34378,3,1672319419),(145316,3,34379,3,1672319419),(145317,3,34380,3,1672319419),(145318,3,34381,3,1672319419),(145319,3,34382,3,1672319419),(145320,3,34383,3,1672319419),(145321,3,34384,3,1672319419),(145322,3,34385,3,1672319419),(145323,3,34386,3,1672319419),(145324,3,34387,3,1672319419),(145325,3,34388,3,1672319419),(145326,3,34389,3,1672319419),(145327,3,34390,3,1672319419),(145328,3,34391,3,1672319419),(145329,3,34392,3,1672319419),(145330,3,34393,3,1672319419),(145331,3,34394,3,1672319419),(145332,3,34395,3,1672319419),(145333,3,34396,3,1672319419),(145334,3,34397,3,1672319419),(145335,3,34398,3,1672319419),(145336,3,34412,3,1672319419),(145337,3,34413,3,1672319419),(145338,3,34414,3,1672319419),(145339,3,34415,3,1672319419),(145340,3,34416,3,1672319419),(145341,3,34417,3,1672319419),(145342,3,34418,3,1672319419),(145343,3,34419,3,1672319419),(145344,3,34420,3,1672319419),(145345,3,34421,3,1672319419),(145346,3,34422,3,1672319419),(145347,3,34423,3,1672319419),(145348,3,34424,3,1672319419),(145349,3,34425,3,1672319419),(145350,3,34426,3,1672319419),(145351,3,34427,3,1672319419),(145352,3,34428,3,1672319419),(145353,3,34429,3,1672319419),(145354,3,34430,3,1672319419),(145355,3,34431,3,1672319419),(145356,3,34432,3,1672319419),(145357,3,34433,3,1672319419),(145358,3,34434,3,1672319419),(145359,3,34435,3,1672319419),(145360,3,34436,3,1672319419),(145361,3,34437,3,1672319419),(145362,3,34438,3,1672319419),(145363,3,34439,3,1672319419),(145364,3,34937,3,1672319419),(145365,3,34938,3,1672319419),(145366,3,34939,3,1672319419),(145367,3,34940,3,1672319419),(145368,3,34941,3,1672319419),(145369,3,34949,3,1672319419),(145370,3,34950,3,1672319419),(145371,3,34951,3,1672319419),(145372,3,34952,3,1672319419),(145373,3,34953,3,1672319419),(145374,3,34954,3,1672319419),(145375,3,34955,3,1672319419),(145376,3,34956,3,1672319419),(145377,3,34957,3,1672319419),(145378,3,34958,3,1672319419),(145379,3,34959,3,1672319419),(145380,3,34960,3,1672319419),(145381,3,34961,3,1672319419),(145382,3,34962,3,1672319419),(145383,3,34963,3,1672319419),(145384,3,34964,3,1672319419),(145385,3,34965,3,1672319419),(145386,3,35064,3,1672319419),(145387,3,35065,3,1672319419),(145388,3,35066,3,1672319419),(145389,3,35067,3,1672319419),(145390,3,35068,3,1672319419),(145391,3,35069,3,1672319419),(145392,3,35070,3,1672319419),(145393,3,35071,3,1672319419),(145394,3,35072,3,1672319419),(145395,3,35073,3,1672319419),(145396,3,35074,3,1672319419),(145397,3,35075,3,1672319419),(145398,3,35076,3,1672319419),(145399,3,35278,3,1672319419),(145400,3,35279,3,1672319419),(145401,3,36772,3,1672319419),(145402,3,36773,3,1672319419),(145403,3,36774,3,1672319419),(145404,3,36775,3,1672319419),(145405,3,36776,3,1672319419),(145406,3,36777,3,1672319419),(145407,3,36778,3,1672319419),(145408,3,36779,3,1672319419),(145409,3,36780,3,1672319419),(145410,3,39742,3,1672319419),(145411,3,39743,3,1672319419),(145412,3,39744,3,1672319419),(145413,3,39745,3,1672319419),(145414,3,39746,3,1672319419),(145415,3,39747,3,1672319419),(145416,3,39748,3,1672319419),(145417,3,39821,3,1672319419),(145418,3,39824,3,1672319419),(145419,3,39825,3,1672319419),(145420,3,40185,3,1672319419),(145421,3,40186,3,1672319419),(145422,3,40187,3,1672319419),(145423,3,40188,3,1672319419),(145424,3,40189,3,1672319419),(145425,3,42110,3,1672319419),(145426,3,42111,3,1672319419),(145427,3,42112,3,1672319419),(145428,3,42113,3,1672319419),(145429,3,42114,3,1672319419),(145430,3,42115,3,1672319419),(145431,3,42116,3,1672319419),(145432,3,42117,3,1672319419),(145433,3,42118,3,1672319419),(145434,3,42119,3,1672319419),(145435,3,42120,3,1672319419),(145436,3,42133,3,1672319419),(145437,3,42134,3,1672319419),(145438,3,42135,3,1672319419),(145439,3,42136,3,1672319419),(145440,3,42137,3,1672319419),(145441,3,42138,3,1672319419),(145442,3,42139,3,1672319419),(145443,3,42140,3,1672319419),(145444,3,42141,3,1672319419),(145445,3,42142,3,1672319419),(145446,3,42143,3,1672319419),(145447,3,42154,3,1672319419),(145448,3,42155,3,1672319419),(145449,3,42156,3,1672319419),(145450,3,42157,3,1672319419),(145451,3,42158,3,1672319419),(145452,3,42159,3,1672319419),(145453,3,42160,3,1672319419),(145454,3,42161,3,1672319419),(145455,3,42162,3,1672319419),(145456,3,42163,3,1672319419),(145457,3,42164,3,1672319419),(145458,3,42451,3,1672319419),(145459,3,42452,3,1672319419),(145460,3,42453,3,1672319419),(145461,3,42454,3,1672319419),(145462,3,42455,3,1672319419),(145463,3,42456,3,1672319419),(145464,3,42457,3,1672319419),(145465,3,42458,3,1672319419),(145466,3,42459,3,1672319419),(145467,3,42460,3,1672319419),(145468,3,42461,3,1672319419),(145469,3,42462,3,1672319419),(145470,3,42463,3,1672319419),(145471,3,42464,3,1672319419),(145472,3,42465,3,1672319419),(145473,3,42466,3,1672319419),(145474,3,42467,3,1672319419),(145475,3,42468,3,1672319419),(145476,3,42469,3,1672319419),(145477,3,42470,3,1672319419),(145478,3,42471,3,1672319419),(145479,3,42472,3,1672319419),(145480,3,42473,3,1672319419),(145481,3,42474,3,1672319419),(145482,3,42475,3,1672319419),(145483,3,42476,3,1672319419),(145484,3,42477,3,1672319419),(145485,3,42478,3,1672319419),(145486,3,42479,3,1672319419),(145487,3,42480,3,1672319419),(145488,3,42481,3,1672319419),(145489,3,42482,3,1672319419),(145490,3,42483,3,1672319419),(145491,3,42484,3,1672319419),(145492,3,42485,3,1672319419),(145493,3,42486,3,1672319419),(145494,3,42512,3,1672319419),(145495,3,42513,3,1672319419),(145496,3,42514,3,1672319419),(145497,3,42515,3,1672319419),(145498,3,42516,3,1672319419),(145499,3,42517,3,1672319419),(145500,3,42518,3,1672319419),(145501,3,42519,3,1672319419),(145502,3,42520,3,1672319419),(145503,3,42521,3,1672319419),(145504,3,42522,3,1672319419),(145505,3,42523,3,1672319419),(145506,3,42524,3,1672319419),(145507,3,42525,3,1672319419),(145508,3,42526,3,1672319419),(145509,3,42527,3,1672319419),(145510,3,42528,3,1672319419),(145511,3,42529,3,1672319419),(145512,3,42530,3,1672319419),(145513,3,42531,3,1672319419),(145514,3,42532,3,1672319419),(145515,3,42533,3,1672319419),(145516,3,42534,3,1672319419),(145517,3,42535,3,1672319419),(145518,3,42536,3,1672319419),(145519,3,42537,3,1672319419),(145520,3,42538,3,1672319419),(145521,3,42539,3,1672319419),(145522,3,42540,3,1672319419),(145523,3,42541,3,1672319419),(145524,3,42542,3,1672319419),(145525,3,42568,3,1672319419),(145526,3,42569,3,1672319419),(145527,3,42570,3,1672319419),(145528,3,42571,3,1672319419),(145529,3,42572,3,1672319419),(145530,3,42573,3,1672319419),(145531,3,42574,3,1672319419),(145532,3,42575,3,1672319419),(145533,3,42576,3,1672319419),(145534,3,42577,3,1672319419),(145535,3,42578,3,1672319419),(145536,3,42579,3,1672319419),(145537,3,42664,3,1672319419),(145538,3,42665,3,1672319419),(145539,3,42666,3,1672319419),(145540,3,42667,3,1672319419),(145541,3,42668,3,1672319419),(145542,3,42669,3,1672319419),(145543,3,42670,3,1672319419),(145544,3,42671,3,1672319419),(145545,3,42672,3,1672319419),(145546,3,42673,3,1672319419),(145547,3,42674,3,1672319419),(145548,3,42676,3,1672319419),(145549,3,42677,3,1672319419),(145550,3,42738,3,1672319419),(145551,3,42739,3,1672319419),(145552,3,42740,3,1672319419),(145553,3,42792,3,1672319419),(145554,3,42793,3,1672319419),(145555,3,42794,3,1672319419),(145556,3,42795,3,1672319419),(145557,3,42796,3,1672319419),(145558,3,42797,3,1672319419),(145559,3,42798,3,1672319419),(145560,3,42799,3,1672319419),(145561,3,42800,3,1672319419),(145562,3,42801,3,1672319419),(145563,3,42802,3,1672319419),(145564,3,42803,3,1672319419),(145565,3,42804,3,1672319419),(145566,3,42805,3,1672319419),(145567,3,42806,3,1672319419),(145568,3,42807,3,1672319419),(145569,3,42808,3,1672319419),(145570,3,42809,3,1672319419),(145571,3,42810,3,1672319419),(145572,3,42811,3,1672319419),(145573,3,42812,3,1672319419),(145574,3,42813,3,1672319419),(145575,3,42814,3,1672319419),(145576,3,42815,3,1672319419),(145577,3,42816,3,1672319419),(145578,3,42817,3,1672319419),(145579,3,42818,3,1672319419),(145580,3,42819,3,1672319419),(145581,3,42820,3,1672319419),(145582,3,42821,3,1672319419),(145583,3,42822,3,1672319419),(145584,3,42823,3,1672319419),(145585,3,42824,3,1672319419),(145586,3,42825,3,1672319419),(145587,3,42826,3,1672319419),(145588,3,42827,3,1672319419),(145589,3,42828,3,1672319419),(145590,3,42829,3,1672319419),(145591,3,42830,3,1672319419),(145592,3,42831,3,1672319419),(145593,3,42832,3,1672319419),(145594,3,42833,3,1672319419),(145595,3,42877,3,1672319419),(145596,3,42880,3,1672319419),(145597,3,43080,3,1672319419),(145598,3,43857,3,1672319419),(145599,3,43858,3,1672319419),(145600,3,43859,3,1672319419),(145601,3,43875,3,1672319419),(145602,3,44051,3,1672319419),(145603,3,44081,3,1672319419),(145604,3,44359,3,1672319419),(145605,3,44377,3,1672319419),(145606,3,44379,3,1672319419),(145607,3,44450,3,1672319419),(145608,3,44453,3,1672319419),(145609,3,44455,3,1672319419),(145610,1,10078,3,1672319419),(145611,1,10081,3,1672319419),(145612,1,10101,3,1672319419),(145613,1,10102,3,1672319419),(145614,1,10103,3,1672319419),(145615,1,10173,3,1672319419),(145616,1,10174,3,1672319419),(145617,1,10175,3,1672319419),(145618,1,10235,3,1672319419),(145619,1,10236,3,1672319419),(145620,1,10237,3,1672319419),(145621,1,10249,3,1672319419),(145622,1,10259,3,1672319419),(145623,1,10261,3,1672319419),(145624,1,10262,3,1672319419),(145625,1,10286,3,1672319419),(145626,1,10287,3,1672319419),(145627,1,10288,3,1672319419),(145628,1,10289,3,1672319419),(145629,1,10290,3,1672319419),(145630,1,10291,3,1672319419),(145631,1,10300,3,1672319419),(145632,1,10301,3,1672319419),(145633,1,10302,3,1672319419),(145634,1,10303,3,1672319419),(145635,1,10310,3,1672319419),(145636,1,10314,3,1672319419),(145637,1,10329,3,1672319419),(145638,1,10344,3,1672319419),(145639,1,10345,3,1672319419),(145640,1,10346,3,1672319419),(145641,1,10347,3,1672319419),(145642,1,10348,3,1672319419),(145643,1,10349,3,1672319419),(145644,1,10351,3,1672319419),(145645,1,10355,3,1672319419),(145646,1,10366,3,1672319419),(145647,1,10383,3,1672319419),(145648,1,10384,3,1672319419),(145649,1,10397,3,1672319419),(145650,1,10398,3,1672319419),(145651,1,10399,3,1672319419),(145652,1,10410,3,1672319419),(145653,1,10411,3,1672319419),(145654,1,10413,3,1672319419),(145655,1,10416,3,1672319419),(145656,1,10447,3,1672319419),(145657,1,10503,3,1672319419),(145658,1,10517,3,1672319419),(145659,1,10518,3,1672319419),(145660,3,32025,2,1672319423),(145661,3,33000,2,1672319423),(145662,3,33001,2,1672319423),(145663,3,33002,2,1672319423),(145664,3,33003,2,1672319423),(145665,3,33004,2,1672319423),(145666,3,33005,2,1672319423),(145667,3,33006,2,1672319423),(145668,3,33007,2,1672319423),(145669,3,33008,2,1672319423),(145670,3,33009,2,1672319423),(145671,3,33010,2,1672319423),(145672,3,33011,2,1672319423),(145673,3,35546,2,1672319423),(145674,3,35547,2,1672319423),(145675,3,35548,2,1672319423),(145676,3,35549,2,1672319423),(145677,3,35550,2,1672319423),(145678,3,35551,2,1672319423),(145679,3,35552,2,1672319423),(145680,3,35553,2,1672319423),(145681,3,35554,2,1672319423),(145682,3,35555,2,1672319423),(145683,3,35556,2,1672319423),(145684,3,35557,2,1672319423),(145685,3,35558,2,1672319423),(145686,3,35559,2,1672319423),(145687,3,35560,2,1672319423),(145688,3,35561,2,1672319423),(145689,3,35562,2,1672319423),(145690,3,35563,2,1672319423),(145691,3,35580,2,1672319423),(145692,3,35581,2,1672319423),(145693,3,35582,2,1672319423),(145694,3,35583,2,1672319423),(145695,3,35584,2,1672319423),(145696,3,35585,2,1672319423),(145697,3,35586,2,1672319423),(145698,3,35587,2,1672319423),(145699,3,35588,2,1672319423),(145700,3,35589,2,1672319423),(145701,3,35590,2,1672319423),(145702,3,35591,2,1672319423),(145703,3,35592,2,1672319423),(145704,3,35593,2,1672319423),(145705,3,35594,2,1672319423),(145706,3,35595,2,1672319423),(145707,3,35596,2,1672319423),(145708,3,35597,2,1672319423),(145709,3,35598,2,1672319423),(145710,3,35599,2,1672319423),(145711,3,35600,2,1672319423),(145712,3,35601,2,1672319423),(145713,3,35602,2,1672319423),(145714,3,35603,2,1672319423),(145715,3,35604,2,1672319423),(145716,3,35605,2,1672319423),(145717,3,35606,2,1672319423),(145718,3,35607,2,1672319423),(145719,3,35622,2,1672319423),(145720,3,35623,2,1672319423),(145721,3,35624,2,1672319423),(145722,3,35625,2,1672319423),(145723,3,35626,2,1672319423),(145724,3,35627,2,1672319423),(145725,3,35628,2,1672319423),(145726,3,35629,2,1672319423),(145727,3,35630,2,1672319423),(145728,3,35631,2,1672319423),(145729,3,35632,2,1672319423),(145730,3,35633,2,1672319423),(145731,3,35634,2,1672319423),(145732,3,35635,2,1672319423),(145733,3,35636,2,1672319423),(145734,3,35637,2,1672319423),(145735,3,35638,2,1672319423),(145736,3,35639,2,1672319423),(145737,3,35640,2,1672319423),(145738,3,35641,2,1672319423),(145739,3,35658,2,1672319423),(145740,3,35659,2,1672319423),(145741,3,35660,2,1672319423),(145742,3,35661,2,1672319423),(145743,3,35662,2,1672319423),(145744,3,35663,2,1672319423),(145745,3,35664,2,1672319423),(145746,3,35665,2,1672319423),(145747,3,35666,2,1672319423),(145748,3,35667,2,1672319423),(145749,3,35668,2,1672319423),(145750,3,35669,2,1672319423),(145751,3,35670,2,1672319423),(145752,3,35671,2,1672319423),(145753,3,35672,2,1672319423),(145754,3,35673,2,1672319423),(145755,3,35674,2,1672319423),(145756,3,35675,2,1672319423),(145757,3,35676,2,1672319423),(145758,3,35677,2,1672319423),(145759,3,35678,2,1672319423),(145760,3,35679,2,1672319423),(145761,3,35680,2,1672319423),(145762,3,35681,2,1672319423),(145763,3,35682,2,1672319423),(145764,3,35683,2,1672319423),(145765,3,35684,2,1672319423),(145766,3,35685,2,1672319423),(145767,3,35686,2,1672319423),(145768,3,35687,2,1672319423),(145769,3,35688,2,1672319423),(145770,3,35689,2,1672319423),(145771,3,35690,2,1672319423),(145772,3,35691,2,1672319423),(145773,3,35692,2,1672319423),(145774,3,35693,2,1672319423),(145775,3,35694,2,1672319423),(145776,3,35695,2,1672319423),(145777,3,35696,2,1672319423),(145778,3,35697,2,1672319423),(145779,3,35698,2,1672319423),(145780,3,35699,2,1672319423),(145781,3,35700,2,1672319423),(145782,3,35701,2,1672319423),(145783,3,35702,2,1672319423),(145784,3,35703,2,1672319423),(145785,3,35704,2,1672319423),(145786,3,35705,2,1672319423),(145787,3,35706,2,1672319423),(145788,3,35707,2,1672319423),(145789,3,35708,2,1672319423),(145790,3,35725,2,1672319423),(145791,3,35726,2,1672319423),(145792,3,35727,2,1672319423),(145793,3,35728,2,1672319423),(145794,3,35729,2,1672319423),(145795,3,35730,2,1672319423),(145796,3,35731,2,1672319423),(145797,3,35732,2,1672319423),(145798,3,35733,2,1672319423),(145799,3,35734,2,1672319423),(145800,3,35735,2,1672319423),(145801,3,35736,2,1672319423),(145802,3,35737,2,1672319423),(145803,3,35738,2,1672319423),(145804,3,35739,2,1672319423),(145805,3,35740,2,1672319423),(145806,3,35741,2,1672319423),(145807,3,35742,2,1672319423),(145808,3,35743,2,1672319423),(145809,3,35744,2,1672319423),(145810,3,35745,2,1672319423),(145811,3,35746,2,1672319423),(145812,3,35747,2,1672319423),(145813,3,35748,2,1672319423),(145814,3,35749,2,1672319423),(145815,3,35750,2,1672319423),(145816,3,35751,2,1672319423),(145817,3,35752,2,1672319423),(145818,3,35753,2,1672319423),(145819,3,35754,2,1672319423),(145820,3,35755,2,1672319423),(145821,3,35756,2,1672319423),(145822,3,35757,2,1672319423),(145823,3,35758,2,1672319423),(145824,3,35759,2,1672319423),(145825,3,35760,2,1672319423),(145826,3,35761,2,1672319423),(145827,3,35762,2,1672319423),(145828,3,35763,2,1672319423),(145829,3,35764,2,1672319423),(145830,3,35765,2,1672319423),(145831,3,35766,2,1672319423),(145832,3,35767,2,1672319423),(145833,3,35768,2,1672319423),(145834,3,35769,2,1672319423),(145835,3,35770,2,1672319423),(145836,3,35771,2,1672319423),(145837,3,35772,2,1672319423),(145838,3,35773,2,1672319423),(145839,3,35774,2,1672319423),(145840,3,35775,2,1672319423),(145841,3,35791,2,1672319423),(145842,3,35792,2,1672319423),(145843,3,35793,2,1672319423),(145844,3,35794,2,1672319423),(145845,3,35795,2,1672319423),(145846,3,35796,2,1672319423),(145847,3,35797,2,1672319423),(145848,3,35798,2,1672319423),(145849,3,35799,2,1672319423),(145850,3,35800,2,1672319423),(145851,3,35801,2,1672319423),(145852,3,35802,2,1672319423),(145853,3,35803,2,1672319423),(145854,3,35804,2,1672319423),(145855,3,35805,2,1672319423),(145856,3,35806,2,1672319423),(145857,3,35807,2,1672319423),(145858,3,35808,2,1672319423),(145859,3,35809,2,1672319423),(145860,3,35823,2,1672319423),(145861,3,35824,2,1672319423),(145862,3,35825,2,1672319423),(145863,3,35826,2,1672319423),(145864,3,35827,2,1672319423),(145865,3,35828,2,1672319423),(145866,3,35829,2,1672319423),(145867,3,35830,2,1672319423),(145868,3,35831,2,1672319423),(145869,3,35832,2,1672319423),(145870,3,35833,2,1672319423),(145871,3,35834,2,1672319423),(145872,3,35835,2,1672319423),(145873,3,35836,2,1672319423),(145874,3,35837,2,1672319423),(145875,3,35838,2,1672319423),(145876,3,35839,2,1672319423),(145877,3,35840,2,1672319423),(145878,3,35841,2,1672319423),(145879,3,35842,2,1672319423),(145880,3,35843,2,1672319423),(145881,3,35844,2,1672319423),(145882,3,35845,2,1672319423),(145883,3,35846,2,1672319423),(145884,3,35847,2,1672319423),(145885,3,35864,2,1672319423),(145886,3,35865,2,1672319423),(145887,3,35866,2,1672319423),(145888,3,35867,2,1672319423),(145889,3,35868,2,1672319423),(145890,3,35869,2,1672319423),(145891,3,35870,2,1672319423),(145892,3,35871,2,1672319423),(145893,3,35872,2,1672319423),(145894,3,35873,2,1672319423),(145895,3,35874,2,1672319423),(145896,3,35875,2,1672319423),(145897,3,35876,2,1672319423),(145898,3,35877,2,1672319423),(145899,3,35878,2,1672319423),(145900,3,35879,2,1672319423),(145901,3,35880,2,1672319423),(145902,3,35881,2,1672319423),(145903,3,35882,2,1672319423),(145904,3,35883,2,1672319423),(145905,3,35884,2,1672319423),(145906,3,35885,2,1672319423),(145907,3,35886,2,1672319423),(145908,3,35887,2,1672319423),(145909,3,35888,2,1672319423),(145910,3,35889,2,1672319423),(145911,3,35890,2,1672319423),(145912,3,35891,2,1672319423),(145913,3,35908,2,1672319423),(145914,3,35909,2,1672319423),(145915,3,35910,2,1672319423),(145916,3,35911,2,1672319423),(145917,3,35912,2,1672319423),(145918,3,35913,2,1672319423),(145919,3,35914,2,1672319423),(145920,3,35915,2,1672319423),(145921,3,35916,2,1672319423),(145922,3,35917,2,1672319423),(145923,3,35918,2,1672319423),(145924,3,35919,2,1672319423),(145925,3,35920,2,1672319423),(145926,3,35921,2,1672319423),(145927,3,35922,2,1672319423),(145928,3,35923,2,1672319423),(145929,3,35924,2,1672319423),(145930,3,35925,2,1672319423),(145931,3,35926,2,1672319423),(145932,3,35927,2,1672319423),(145933,3,35928,2,1672319423),(145934,3,35929,2,1672319423),(145935,3,35930,2,1672319423),(145936,3,35931,2,1672319423),(145937,3,35932,2,1672319423),(145938,3,35933,2,1672319423),(145939,3,35934,2,1672319423),(145940,3,35935,2,1672319423),(145941,3,35952,2,1672319423),(145942,3,35953,2,1672319423),(145943,3,35954,2,1672319423),(145944,3,35955,2,1672319423),(145945,3,35956,2,1672319423),(145946,3,35957,2,1672319423),(145947,3,35958,2,1672319423),(145948,3,35959,2,1672319423),(145949,3,35960,2,1672319423),(145950,3,35961,2,1672319423),(145951,3,35962,2,1672319423),(145952,3,35963,2,1672319423),(145953,3,35964,2,1672319423),(145954,3,35965,2,1672319423),(145955,3,35966,2,1672319423),(145956,3,35967,2,1672319423),(145957,3,35968,2,1672319423),(145958,3,35969,2,1672319423),(145959,3,35970,2,1672319423),(145960,3,35971,2,1672319423),(145961,3,35972,2,1672319423),(145962,3,35973,2,1672319423),(145963,3,35974,2,1672319423),(145964,3,35975,2,1672319423),(145965,3,35976,2,1672319423),(145966,3,35977,2,1672319423),(145967,3,35978,2,1672319423),(145968,3,35979,2,1672319423),(145969,3,35996,2,1672319423),(145970,3,35997,2,1672319423),(145971,3,35998,2,1672319423),(145972,3,35999,2,1672319423),(145973,3,36000,2,1672319423),(145974,3,36001,2,1672319423),(145975,3,36002,2,1672319423),(145976,3,36003,2,1672319423),(145977,3,36004,2,1672319423),(145978,3,36005,2,1672319423),(145979,3,36006,2,1672319423),(145980,3,36007,2,1672319423),(145981,3,36008,2,1672319423),(145982,3,36009,2,1672319423),(145983,3,36010,2,1672319423),(145984,3,36011,2,1672319423),(145985,3,36012,2,1672319423),(145986,3,36013,2,1672319423),(145987,3,36014,2,1672319423),(145988,3,36015,2,1672319423),(145989,3,36016,2,1672319423),(145990,3,36017,2,1672319423),(145991,3,36018,2,1672319423),(145992,3,36019,2,1672319423),(145993,3,36020,2,1672319423),(145994,3,36021,2,1672319423),(145995,3,36022,2,1672319423),(145996,3,36023,2,1672319423),(145997,3,36041,2,1672319423),(145998,3,36042,2,1672319423),(145999,3,36043,2,1672319423),(146000,3,36044,2,1672319423),(146001,3,36045,2,1672319423),(146002,3,36046,2,1672319423),(146003,3,36047,2,1672319423),(146004,3,36048,2,1672319423),(146005,3,36049,2,1672319423),(146006,3,36050,2,1672319423),(146007,3,36051,2,1672319423),(146008,3,36052,2,1672319423),(146009,3,36053,2,1672319423),(146010,3,36054,2,1672319423),(146011,3,36055,2,1672319423),(146012,3,36056,2,1672319423),(146013,3,36057,2,1672319423),(146014,3,36058,2,1672319423),(146015,3,36059,2,1672319423),(146016,3,36060,2,1672319423),(146017,3,36061,2,1672319423),(146018,3,36062,2,1672319423),(146019,3,36063,2,1672319423),(146020,3,36064,2,1672319423),(146021,3,36065,2,1672319423),(146022,3,36066,2,1672319423),(146023,3,36067,2,1672319423),(146024,3,36068,2,1672319423),(146025,3,36086,2,1672319423),(146026,3,36087,2,1672319423),(146027,3,36088,2,1672319423),(146028,3,36089,2,1672319423),(146029,3,36090,2,1672319423),(146030,3,36091,2,1672319423),(146031,3,36092,2,1672319423),(146032,3,36093,2,1672319423),(146033,3,36094,2,1672319423),(146034,3,36095,2,1672319423),(146035,3,36096,2,1672319423),(146036,3,36097,2,1672319423),(146037,3,36098,2,1672319423),(146038,3,36099,2,1672319423),(146039,3,36100,2,1672319423),(146040,3,36101,2,1672319423),(146041,3,36102,2,1672319423),(146042,3,36103,2,1672319423),(146043,3,36104,2,1672319423),(146044,3,36105,2,1672319423),(146045,3,36106,2,1672319423),(146046,3,36107,2,1672319423),(146047,3,36108,2,1672319423),(146048,3,36109,2,1672319423),(146049,3,36110,2,1672319423),(146050,3,36111,2,1672319423),(146051,3,36112,2,1672319423),(146052,3,36113,2,1672319423),(146053,3,36131,2,1672319423),(146054,3,36132,2,1672319423),(146055,3,36133,2,1672319423),(146056,3,36134,2,1672319423),(146057,3,36135,2,1672319423),(146058,3,36136,2,1672319423),(146059,3,36137,2,1672319423),(146060,3,36138,2,1672319423),(146061,3,36139,2,1672319423),(146062,3,36140,2,1672319423),(146063,3,36141,2,1672319423),(146064,3,36142,2,1672319423),(146065,3,36143,2,1672319423),(146066,3,36144,2,1672319423),(146067,3,36145,2,1672319423),(146068,3,36146,2,1672319423),(146069,3,36147,2,1672319423),(146070,3,36148,2,1672319423),(146071,3,36149,2,1672319423),(146072,3,36150,2,1672319423),(146073,3,36151,2,1672319423),(146074,3,36152,2,1672319423),(146075,3,36153,2,1672319423),(146076,3,36154,2,1672319423),(146077,3,36155,2,1672319423),(146078,3,36156,2,1672319423),(146079,3,36157,2,1672319423),(146080,3,36158,2,1672319423),(146081,3,36159,2,1672319423),(146082,3,39808,2,1672319423),(146083,3,39809,2,1672319423),(146084,3,39810,2,1672319423),(146085,3,39811,2,1672319423),(146086,3,44059,2,1672319423),(146087,3,44060,2,1672319423),(146088,3,44061,2,1672319423),(146089,3,44062,2,1672319423),(146090,3,44063,2,1672319423),(146091,3,44064,2,1672319423),(146092,3,44065,2,1672319423),(146093,3,44066,2,1672319423),(146094,3,44067,2,1672319423),(146095,3,44068,2,1672319423),(146096,3,44069,2,1672319423),(146097,3,32025,3,1672319423),(146098,3,33000,3,1672319423),(146099,3,33001,3,1672319423),(146100,3,33002,3,1672319423),(146101,3,33003,3,1672319423),(146102,3,33004,3,1672319423),(146103,3,33005,3,1672319423),(146104,3,33006,3,1672319423),(146105,3,33007,3,1672319423),(146106,3,33008,3,1672319423),(146107,3,33009,3,1672319423),(146108,3,33010,3,1672319423),(146109,3,33011,3,1672319423),(146110,3,35546,3,1672319423),(146111,3,35547,3,1672319423),(146112,3,35548,3,1672319423),(146113,3,35549,3,1672319423),(146114,3,35550,3,1672319423),(146115,3,35551,3,1672319423),(146116,3,35552,3,1672319423),(146117,3,35553,3,1672319423),(146118,3,35554,3,1672319423),(146119,3,35555,3,1672319423),(146120,3,35556,3,1672319423),(146121,3,35557,3,1672319423),(146122,3,35558,3,1672319423),(146123,3,35559,3,1672319423),(146124,3,35560,3,1672319423),(146125,3,35561,3,1672319423),(146126,3,35562,3,1672319423),(146127,3,35563,3,1672319423),(146128,3,35580,3,1672319423),(146129,3,35581,3,1672319423),(146130,3,35582,3,1672319423),(146131,3,35583,3,1672319423),(146132,3,35584,3,1672319423),(146133,3,35585,3,1672319423),(146134,3,35586,3,1672319423),(146135,3,35587,3,1672319423),(146136,3,35588,3,1672319423),(146137,3,35589,3,1672319423),(146138,3,35590,3,1672319423),(146139,3,35591,3,1672319423),(146140,3,35592,3,1672319423),(146141,3,35593,3,1672319423),(146142,3,35594,3,1672319423),(146143,3,35595,3,1672319423),(146144,3,35596,3,1672319423),(146145,3,35597,3,1672319423),(146146,3,35598,3,1672319423),(146147,3,35599,3,1672319423),(146148,3,35600,3,1672319423),(146149,3,35601,3,1672319423),(146150,3,35602,3,1672319423),(146151,3,35603,3,1672319423),(146152,3,35604,3,1672319423),(146153,3,35605,3,1672319423),(146154,3,35606,3,1672319423),(146155,3,35607,3,1672319423),(146156,3,35622,3,1672319423),(146157,3,35623,3,1672319423),(146158,3,35624,3,1672319423),(146159,3,35625,3,1672319423),(146160,3,35626,3,1672319423),(146161,3,35627,3,1672319423),(146162,3,35628,3,1672319423),(146163,3,35629,3,1672319423),(146164,3,35630,3,1672319423),(146165,3,35631,3,1672319423),(146166,3,35632,3,1672319423),(146167,3,35633,3,1672319423),(146168,3,35634,3,1672319423),(146169,3,35635,3,1672319423),(146170,3,35636,3,1672319423),(146171,3,35637,3,1672319423),(146172,3,35638,3,1672319423),(146173,3,35639,3,1672319423),(146174,3,35640,3,1672319423),(146175,3,35641,3,1672319423),(146176,3,35658,3,1672319423),(146177,3,35659,3,1672319423),(146178,3,35660,3,1672319423),(146179,3,35661,3,1672319423),(146180,3,35662,3,1672319423),(146181,3,35663,3,1672319423),(146182,3,35664,3,1672319423),(146183,3,35665,3,1672319423),(146184,3,35666,3,1672319423),(146185,3,35667,3,1672319423),(146186,3,35668,3,1672319423),(146187,3,35669,3,1672319423),(146188,3,35670,3,1672319423),(146189,3,35671,3,1672319423),(146190,3,35672,3,1672319423),(146191,3,35673,3,1672319423),(146192,3,35674,3,1672319423),(146193,3,35675,3,1672319423),(146194,3,35676,3,1672319423),(146195,3,35677,3,1672319423),(146196,3,35678,3,1672319423),(146197,3,35679,3,1672319423),(146198,3,35680,3,1672319423),(146199,3,35681,3,1672319423),(146200,3,35682,3,1672319423),(146201,3,35683,3,1672319423),(146202,3,35684,3,1672319423),(146203,3,35685,3,1672319423),(146204,3,35686,3,1672319423),(146205,3,35687,3,1672319423),(146206,3,35688,3,1672319423),(146207,3,35689,3,1672319423),(146208,3,35690,3,1672319423),(146209,3,35691,3,1672319423),(146210,3,35692,3,1672319423),(146211,3,35693,3,1672319423),(146212,3,35694,3,1672319423),(146213,3,35695,3,1672319423),(146214,3,35696,3,1672319423),(146215,3,35697,3,1672319423),(146216,3,35698,3,1672319423),(146217,3,35699,3,1672319423),(146218,3,35700,3,1672319423),(146219,3,35701,3,1672319423),(146220,3,35702,3,1672319423),(146221,3,35703,3,1672319423),(146222,3,35704,3,1672319423),(146223,3,35705,3,1672319423),(146224,3,35706,3,1672319423),(146225,3,35707,3,1672319423),(146226,3,35708,3,1672319423),(146227,3,35725,3,1672319423),(146228,3,35726,3,1672319423),(146229,3,35727,3,1672319423),(146230,3,35728,3,1672319423),(146231,3,35729,3,1672319423),(146232,3,35730,3,1672319423),(146233,3,35731,3,1672319423),(146234,3,35732,3,1672319423),(146235,3,35733,3,1672319423),(146236,3,35734,3,1672319423),(146237,3,35735,3,1672319423),(146238,3,35736,3,1672319423),(146239,3,35737,3,1672319423),(146240,3,35738,3,1672319423),(146241,3,35739,3,1672319423),(146242,3,35740,3,1672319423),(146243,3,35741,3,1672319423),(146244,3,35742,3,1672319423),(146245,3,35743,3,1672319423),(146246,3,35744,3,1672319423),(146247,3,35745,3,1672319423),(146248,3,35746,3,1672319423),(146249,3,35747,3,1672319423),(146250,3,35748,3,1672319423),(146251,3,35749,3,1672319423),(146252,3,35750,3,1672319423),(146253,3,35751,3,1672319423),(146254,3,35752,3,1672319423),(146255,3,35753,3,1672319423),(146256,3,35754,3,1672319423),(146257,3,35755,3,1672319423),(146258,3,35756,3,1672319423),(146259,3,35757,3,1672319423),(146260,3,35758,3,1672319423),(146261,3,35759,3,1672319423),(146262,3,35760,3,1672319423),(146263,3,35761,3,1672319423),(146264,3,35762,3,1672319423),(146265,3,35763,3,1672319423),(146266,3,35764,3,1672319423),(146267,3,35765,3,1672319423),(146268,3,35766,3,1672319423),(146269,3,35767,3,1672319423),(146270,3,35768,3,1672319423),(146271,3,35769,3,1672319423),(146272,3,35770,3,1672319423),(146273,3,35771,3,1672319423),(146274,3,35772,3,1672319423),(146275,3,35773,3,1672319423),(146276,3,35774,3,1672319423),(146277,3,35775,3,1672319423),(146278,3,35791,3,1672319423),(146279,3,35792,3,1672319423),(146280,3,35793,3,1672319423),(146281,3,35794,3,1672319423),(146282,3,35795,3,1672319423),(146283,3,35796,3,1672319423),(146284,3,35797,3,1672319423),(146285,3,35798,3,1672319423),(146286,3,35799,3,1672319423),(146287,3,35800,3,1672319423),(146288,3,35801,3,1672319423),(146289,3,35802,3,1672319423),(146290,3,35803,3,1672319423),(146291,3,35804,3,1672319423),(146292,3,35805,3,1672319423),(146293,3,35806,3,1672319423),(146294,3,35807,3,1672319423),(146295,3,35808,3,1672319423),(146296,3,35809,3,1672319423),(146297,3,35823,3,1672319423),(146298,3,35824,3,1672319423),(146299,3,35825,3,1672319423),(146300,3,35826,3,1672319423),(146301,3,35827,3,1672319423),(146302,3,35828,3,1672319423),(146303,3,35829,3,1672319423),(146304,3,35830,3,1672319423),(146305,3,35831,3,1672319423),(146306,3,35832,3,1672319423),(146307,3,35833,3,1672319423),(146308,3,35834,3,1672319423),(146309,3,35835,3,1672319423),(146310,3,35836,3,1672319423),(146311,3,35837,3,1672319423),(146312,3,35838,3,1672319423),(146313,3,35839,3,1672319423),(146314,3,35840,3,1672319423),(146315,3,35841,3,1672319423),(146316,3,35842,3,1672319423),(146317,3,35843,3,1672319423),(146318,3,35844,3,1672319423),(146319,3,35845,3,1672319423),(146320,3,35846,3,1672319423),(146321,3,35847,3,1672319423),(146322,3,35864,3,1672319423),(146323,3,35865,3,1672319423),(146324,3,35866,3,1672319423),(146325,3,35867,3,1672319423),(146326,3,35868,3,1672319423),(146327,3,35869,3,1672319423),(146328,3,35870,3,1672319423),(146329,3,35871,3,1672319423),(146330,3,35872,3,1672319423),(146331,3,35873,3,1672319423),(146332,3,35874,3,1672319423),(146333,3,35875,3,1672319423),(146334,3,35876,3,1672319423),(146335,3,35877,3,1672319423),(146336,3,35878,3,1672319423),(146337,3,35879,3,1672319423),(146338,3,35880,3,1672319423),(146339,3,35881,3,1672319423),(146340,3,35882,3,1672319423),(146341,3,35883,3,1672319423),(146342,3,35884,3,1672319423),(146343,3,35885,3,1672319423),(146344,3,35886,3,1672319423),(146345,3,35887,3,1672319423),(146346,3,35888,3,1672319423),(146347,3,35889,3,1672319423),(146348,3,35890,3,1672319423),(146349,3,35891,3,1672319423),(146350,3,35908,3,1672319423),(146351,3,35909,3,1672319423),(146352,3,35910,3,1672319423),(146353,3,35911,3,1672319423),(146354,3,35912,3,1672319423),(146355,3,35913,3,1672319423),(146356,3,35914,3,1672319423),(146357,3,35915,3,1672319423),(146358,3,35916,3,1672319423),(146359,3,35917,3,1672319423),(146360,3,35918,3,1672319423),(146361,3,35919,3,1672319423),(146362,3,35920,3,1672319423),(146363,3,35921,3,1672319423),(146364,3,35922,3,1672319423),(146365,3,35923,3,1672319423),(146366,3,35924,3,1672319423),(146367,3,35925,3,1672319423),(146368,3,35926,3,1672319423),(146369,3,35927,3,1672319423),(146370,3,35928,3,1672319423),(146371,3,35929,3,1672319423),(146372,3,35930,3,1672319423),(146373,3,35931,3,1672319423),(146374,3,35932,3,1672319423),(146375,3,35933,3,1672319423),(146376,3,35934,3,1672319423),(146377,3,35935,3,1672319423),(146378,3,35952,3,1672319423),(146379,3,35953,3,1672319423),(146380,3,35954,3,1672319423),(146381,3,35955,3,1672319423),(146382,3,35956,3,1672319423),(146383,3,35957,3,1672319423),(146384,3,35958,3,1672319423),(146385,3,35959,3,1672319423),(146386,3,35960,3,1672319423),(146387,3,35961,3,1672319423),(146388,3,35962,3,1672319423),(146389,3,35963,3,1672319423),(146390,3,35964,3,1672319423),(146391,3,35965,3,1672319423),(146392,3,35966,3,1672319423),(146393,3,35967,3,1672319423),(146394,3,35968,3,1672319423),(146395,3,35969,3,1672319423),(146396,3,35970,3,1672319423),(146397,3,35971,3,1672319423),(146398,3,35972,3,1672319423),(146399,3,35973,3,1672319423),(146400,3,35974,3,1672319423),(146401,3,35975,3,1672319423),(146402,3,35976,3,1672319423),(146403,3,35977,3,1672319423),(146404,3,35978,3,1672319423),(146405,3,35979,3,1672319423),(146406,3,35996,3,1672319423),(146407,3,35997,3,1672319423),(146408,3,35998,3,1672319423),(146409,3,35999,3,1672319423),(146410,3,36000,3,1672319423),(146411,3,36001,3,1672319423),(146412,3,36002,3,1672319423),(146413,3,36003,3,1672319423),(146414,3,36004,3,1672319423),(146415,3,36005,3,1672319423),(146416,3,36006,3,1672319423),(146417,3,36007,3,1672319423),(146418,3,36008,3,1672319423),(146419,3,36009,3,1672319423),(146420,3,36010,3,1672319423),(146421,3,36011,3,1672319423),(146422,3,36012,3,1672319423),(146423,3,36013,3,1672319423),(146424,3,36014,3,1672319423),(146425,3,36015,3,1672319423),(146426,3,36016,3,1672319423),(146427,3,36017,3,1672319423),(146428,3,36018,3,1672319423),(146429,3,36019,3,1672319423),(146430,3,36020,3,1672319423),(146431,3,36021,3,1672319423),(146432,3,36022,3,1672319423),(146433,3,36023,3,1672319423),(146434,3,36041,3,1672319423),(146435,3,36042,3,1672319423),(146436,3,36043,3,1672319423),(146437,3,36044,3,1672319423),(146438,3,36045,3,1672319423),(146439,3,36046,3,1672319423),(146440,3,36047,3,1672319423),(146441,3,36048,3,1672319423),(146442,3,36049,3,1672319423),(146443,3,36050,3,1672319423),(146444,3,36051,3,1672319423),(146445,3,36052,3,1672319423),(146446,3,36053,3,1672319423),(146447,3,36054,3,1672319423),(146448,3,36055,3,1672319423),(146449,3,36056,3,1672319423),(146450,3,36057,3,1672319423),(146451,3,36058,3,1672319423),(146452,3,36059,3,1672319423),(146453,3,36060,3,1672319423),(146454,3,36061,3,1672319423),(146455,3,36062,3,1672319423),(146456,3,36063,3,1672319423),(146457,3,36064,3,1672319423),(146458,3,36065,3,1672319423),(146459,3,36066,3,1672319423),(146460,3,36067,3,1672319423),(146461,3,36068,3,1672319423),(146462,3,36086,3,1672319423),(146463,3,36087,3,1672319423),(146464,3,36088,3,1672319423),(146465,3,36089,3,1672319423),(146466,3,36090,3,1672319423),(146467,3,36091,3,1672319423),(146468,3,36092,3,1672319423),(146469,3,36093,3,1672319423),(146470,3,36094,3,1672319423),(146471,3,36095,3,1672319423),(146472,3,36096,3,1672319423),(146473,3,36097,3,1672319423),(146474,3,36098,3,1672319423),(146475,3,36099,3,1672319423),(146476,3,36100,3,1672319423),(146477,3,36101,3,1672319423),(146478,3,36102,3,1672319423),(146479,3,36103,3,1672319423),(146480,3,36104,3,1672319423),(146481,3,36105,3,1672319423),(146482,3,36106,3,1672319423),(146483,3,36107,3,1672319423),(146484,3,36108,3,1672319423),(146485,3,36109,3,1672319423),(146486,3,36110,3,1672319423),(146487,3,36111,3,1672319423),(146488,3,36112,3,1672319423),(146489,3,36113,3,1672319423),(146490,3,36131,3,1672319423),(146491,3,36132,3,1672319423),(146492,3,36133,3,1672319423),(146493,3,36134,3,1672319423),(146494,3,36135,3,1672319423),(146495,3,36136,3,1672319423),(146496,3,36137,3,1672319423),(146497,3,36138,3,1672319423),(146498,3,36139,3,1672319423),(146499,3,36140,3,1672319423),(146500,3,36141,3,1672319423),(146501,3,36142,3,1672319423),(146502,3,36143,3,1672319423),(146503,3,36144,3,1672319423),(146504,3,36145,3,1672319423),(146505,3,36146,3,1672319423),(146506,3,36147,3,1672319423),(146507,3,36148,3,1672319423),(146508,3,36149,3,1672319423),(146509,3,36150,3,1672319423),(146510,3,36151,3,1672319423),(146511,3,36152,3,1672319423),(146512,3,36153,3,1672319423),(146513,3,36154,3,1672319423),(146514,3,36155,3,1672319423),(146515,3,36156,3,1672319423),(146516,3,36157,3,1672319423),(146517,3,36158,3,1672319423),(146518,3,36159,3,1672319423),(146519,3,39808,3,1672319423),(146520,3,39809,3,1672319423),(146521,3,39810,3,1672319423),(146522,3,39811,3,1672319423),(146523,3,44059,3,1672319423),(146524,3,44060,3,1672319423),(146525,3,44061,3,1672319423),(146526,3,44062,3,1672319423),(146527,3,44063,3,1672319423),(146528,3,44064,3,1672319423),(146529,3,44065,3,1672319423),(146530,3,44066,3,1672319423),(146531,3,44067,3,1672319423),(146532,3,44068,3,1672319423),(146533,3,44069,3,1672319423),(146534,3,32007,2,1672319423),(146535,3,32998,2,1672319423),(146536,3,32999,2,1672319423),(146537,3,35542,2,1672319423),(146538,3,35543,2,1672319423),(146539,3,35544,2,1672319423),(146540,3,35545,2,1672319423),(146541,3,35574,2,1672319423),(146542,3,35575,2,1672319423),(146543,3,35576,2,1672319423),(146544,3,35577,2,1672319423),(146545,3,35578,2,1672319423),(146546,3,35579,2,1672319423),(146547,3,35618,2,1672319423),(146548,3,35619,2,1672319423),(146549,3,35620,2,1672319423),(146550,3,35621,2,1672319423),(146551,3,35649,2,1672319423),(146552,3,35650,2,1672319423),(146553,3,35651,2,1672319423),(146554,3,35652,2,1672319423),(146555,3,35653,2,1672319423),(146556,3,35654,2,1672319423),(146557,3,35655,2,1672319423),(146558,3,35656,2,1672319423),(146559,3,35657,2,1672319423),(146560,3,35716,2,1672319423),(146561,3,35717,2,1672319423),(146562,3,35718,2,1672319423),(146563,3,35719,2,1672319423),(146564,3,35720,2,1672319423),(146565,3,35721,2,1672319423),(146566,3,35722,2,1672319423),(146567,3,35723,2,1672319423),(146568,3,35724,2,1672319423),(146569,3,35786,2,1672319423),(146570,3,35787,2,1672319423),(146571,3,35788,2,1672319423),(146572,3,35789,2,1672319423),(146573,3,35790,2,1672319423),(146574,3,35820,2,1672319423),(146575,3,35821,2,1672319423),(146576,3,35822,2,1672319423),(146577,3,35858,2,1672319423),(146578,3,35859,2,1672319423),(146579,3,35860,2,1672319423),(146580,3,35861,2,1672319423),(146581,3,35862,2,1672319423),(146582,3,35863,2,1672319423),(146583,3,35902,2,1672319423),(146584,3,35903,2,1672319423),(146585,3,35904,2,1672319423),(146586,3,35905,2,1672319423),(146587,3,35906,2,1672319423),(146588,3,35907,2,1672319423),(146589,3,35946,2,1672319423),(146590,3,35947,2,1672319423),(146591,3,35948,2,1672319423),(146592,3,35949,2,1672319423),(146593,3,35950,2,1672319423),(146594,3,35951,2,1672319423),(146595,3,35990,2,1672319423),(146596,3,35991,2,1672319423),(146597,3,35992,2,1672319423),(146598,3,35993,2,1672319423),(146599,3,35994,2,1672319423),(146600,3,35995,2,1672319423),(146601,3,36035,2,1672319423),(146602,3,36036,2,1672319423),(146603,3,36037,2,1672319423),(146604,3,36038,2,1672319423),(146605,3,36039,2,1672319423),(146606,3,36040,2,1672319423),(146607,3,36080,2,1672319423),(146608,3,36081,2,1672319423),(146609,3,36082,2,1672319423),(146610,3,36083,2,1672319423),(146611,3,36084,2,1672319423),(146612,3,36085,2,1672319423),(146613,3,36124,2,1672319423),(146614,3,36125,2,1672319423),(146615,3,36126,2,1672319423),(146616,3,36127,2,1672319423),(146617,3,36128,2,1672319423),(146618,3,36129,2,1672319423),(146619,3,36130,2,1672319423),(146620,3,39806,2,1672319423),(146621,3,44057,2,1672319423),(146622,3,32007,3,1672319423),(146623,3,32998,3,1672319423),(146624,3,32999,3,1672319423),(146625,3,35542,3,1672319423),(146626,3,35543,3,1672319423),(146627,3,35544,3,1672319423),(146628,3,35545,3,1672319423),(146629,3,35574,3,1672319423),(146630,3,35575,3,1672319423),(146631,3,35576,3,1672319423),(146632,3,35577,3,1672319423),(146633,3,35578,3,1672319423),(146634,3,35579,3,1672319423),(146635,3,35618,3,1672319423),(146636,3,35619,3,1672319423),(146637,3,35620,3,1672319423),(146638,3,35621,3,1672319423),(146639,3,35649,3,1672319423),(146640,3,35650,3,1672319423),(146641,3,35651,3,1672319423),(146642,3,35652,3,1672319423),(146643,3,35653,3,1672319423),(146644,3,35654,3,1672319423),(146645,3,35655,3,1672319423),(146646,3,35656,3,1672319423),(146647,3,35657,3,1672319423),(146648,3,35716,3,1672319423),(146649,3,35717,3,1672319423),(146650,3,35718,3,1672319423),(146651,3,35719,3,1672319423),(146652,3,35720,3,1672319423),(146653,3,35721,3,1672319423),(146654,3,35722,3,1672319423),(146655,3,35723,3,1672319423),(146656,3,35724,3,1672319423),(146657,3,35786,3,1672319423),(146658,3,35787,3,1672319423),(146659,3,35788,3,1672319423),(146660,3,35789,3,1672319423),(146661,3,35790,3,1672319423),(146662,3,35820,3,1672319423),(146663,3,35821,3,1672319423),(146664,3,35822,3,1672319423),(146665,3,35858,3,1672319423),(146666,3,35859,3,1672319423),(146667,3,35860,3,1672319423),(146668,3,35861,3,1672319423),(146669,3,35862,3,1672319423),(146670,3,35863,3,1672319423),(146671,3,35902,3,1672319423),(146672,3,35903,3,1672319423),(146673,3,35904,3,1672319423),(146674,3,35905,3,1672319423),(146675,3,35906,3,1672319423),(146676,3,35907,3,1672319423),(146677,3,35946,3,1672319423),(146678,3,35947,3,1672319423),(146679,3,35948,3,1672319423),(146680,3,35949,3,1672319423),(146681,3,35950,3,1672319423),(146682,3,35951,3,1672319423),(146683,3,35990,3,1672319423),(146684,3,35991,3,1672319423),(146685,3,35992,3,1672319423),(146686,3,35993,3,1672319423),(146687,3,35994,3,1672319423),(146688,3,35995,3,1672319423),(146689,3,36035,3,1672319423),(146690,3,36036,3,1672319423),(146691,3,36037,3,1672319423),(146692,3,36038,3,1672319423),(146693,3,36039,3,1672319423),(146694,3,36040,3,1672319423),(146695,3,36080,3,1672319423),(146696,3,36081,3,1672319423),(146697,3,36082,3,1672319423),(146698,3,36083,3,1672319423),(146699,3,36084,3,1672319423),(146700,3,36085,3,1672319423),(146701,3,36124,3,1672319423),(146702,3,36125,3,1672319423),(146703,3,36126,3,1672319423),(146704,3,36127,3,1672319423),(146705,3,36128,3,1672319423),(146706,3,36129,3,1672319423),(146707,3,36130,3,1672319423),(146708,3,39806,3,1672319423),(146709,3,44057,3,1672319423),(146710,3,10061,2,1672319423),(146711,3,10062,2,1672319423),(146712,3,10063,2,1672319423),(146713,3,10064,2,1672319423),(146714,3,10065,2,1672319423),(146715,3,10066,2,1672319423),(146716,3,10067,2,1672319423),(146717,3,10068,2,1672319423),(146718,3,10069,2,1672319423),(146719,3,10070,2,1672319423),(146720,3,10071,2,1672319423),(146721,3,10072,2,1672319423),(146722,3,22183,2,1672319423),(146723,3,22185,2,1672319423),(146724,3,22187,2,1672319423),(146725,3,22189,2,1672319423),(146726,3,22191,2,1672319423),(146727,3,22196,2,1672319423),(146728,3,22199,2,1672319423),(146729,3,22219,2,1672319423),(146730,3,22231,2,1672319423),(146731,3,22232,2,1672319423),(146732,3,22396,2,1672319423),(146733,3,22399,2,1672319423),(146734,3,22400,2,1672319423),(146735,3,22401,2,1672319423),(146736,3,22402,2,1672319423),(146737,3,22404,2,1672319423),(146738,3,22406,2,1672319423),(146739,3,22408,2,1672319423),(146740,3,22412,2,1672319423),(146741,3,22414,2,1672319423),(146742,3,22416,2,1672319423),(146743,3,22418,2,1672319423),(146744,3,22420,2,1672319423),(146745,3,22422,2,1672319423),(146746,3,22424,2,1672319423),(146747,3,22426,2,1672319423),(146748,3,22430,2,1672319423),(146749,3,22689,2,1672319423),(146750,3,23171,2,1672319423),(146751,3,23251,2,1672319423),(146752,3,23318,2,1672319423),(146753,3,23340,2,1672319423),(146754,3,23341,2,1672319423),(146755,3,23342,2,1672319423),(146756,3,23343,2,1672319423),(146757,3,23344,2,1672319423),(146758,3,23345,2,1672319423),(146759,3,23346,2,1672319423),(146760,3,23347,2,1672319423),(146761,3,23348,2,1672319423),(146762,3,23349,2,1672319423),(146763,3,23350,2,1672319423),(146764,3,23352,2,1672319423),(146765,3,23353,2,1672319423),(146766,3,23354,2,1672319423),(146767,3,23355,2,1672319423),(146768,3,23356,2,1672319423),(146769,3,23357,2,1672319423),(146770,3,23358,2,1672319423),(146771,3,23359,2,1672319423),(146772,3,23360,2,1672319423),(146773,3,23634,2,1672319423),(146774,3,23661,2,1672319423),(146775,3,23663,2,1672319423),(146776,3,25366,2,1672319423),(146777,3,25368,2,1672319423),(146778,3,25369,2,1672319423),(146779,3,25370,2,1672319423),(146780,3,25665,2,1672319423),(146781,3,25666,2,1672319423),(146782,3,28248,2,1672319423),(146783,3,28250,2,1672319423),(146784,3,28251,2,1672319423),(146785,3,28533,2,1672319423),(146786,3,28535,2,1672319423),(146787,3,28537,2,1672319423),(146788,3,28617,2,1672319423),(146789,3,28618,2,1672319423),(146790,3,28619,2,1672319423),(146791,3,29544,2,1672319423),(146792,3,29545,2,1672319423),(146793,3,29546,2,1672319423),(146794,3,29547,2,1672319423),(146795,3,29822,2,1672319423),(146796,3,32963,2,1672319423),(146797,3,32964,2,1672319423),(146798,3,32965,2,1672319423),(146799,3,32966,2,1672319423),(146800,3,32967,2,1672319423),(146801,3,32968,2,1672319423),(146802,3,32969,2,1672319423),(146803,3,32970,2,1672319423),(146804,3,32971,2,1672319423),(146805,3,32972,2,1672319423),(146806,3,32973,2,1672319423),(146807,3,32974,2,1672319423),(146808,3,32975,2,1672319423),(146809,3,32976,2,1672319423),(146810,3,32977,2,1672319423),(146811,3,32978,2,1672319423),(146812,3,32979,2,1672319423),(146813,3,32980,2,1672319423),(146814,3,32981,2,1672319423),(146815,3,32982,2,1672319423),(146816,3,32983,2,1672319423),(146817,3,32984,2,1672319423),(146818,3,32985,2,1672319423),(146819,3,32986,2,1672319423),(146820,3,32987,2,1672319423),(146821,3,32988,2,1672319423),(146822,3,32989,2,1672319423),(146823,3,32990,2,1672319423),(146824,3,32991,2,1672319423),(146825,3,32992,2,1672319423),(146826,3,32993,2,1672319423),(146827,3,32994,2,1672319423),(146828,3,32995,2,1672319423),(146829,3,32996,2,1672319423),(146830,3,32997,2,1672319423),(146831,3,33018,2,1672319423),(146832,3,33019,2,1672319423),(146833,3,33020,2,1672319423),(146834,3,33021,2,1672319423),(146835,3,33022,2,1672319423),(146836,3,33023,2,1672319423),(146837,3,34316,2,1672319423),(146838,3,34317,2,1672319423),(146839,3,35272,2,1672319423),(146840,3,35273,2,1672319423),(146841,3,35274,2,1672319423),(146842,3,35532,2,1672319423),(146843,3,35533,2,1672319423),(146844,3,35534,2,1672319423),(146845,3,35535,2,1672319423),(146846,3,35536,2,1672319423),(146847,3,35537,2,1672319423),(146848,3,35538,2,1672319423),(146849,3,35539,2,1672319423),(146850,3,35540,2,1672319423),(146851,3,35541,2,1672319423),(146852,3,35564,2,1672319423),(146853,3,35565,2,1672319423),(146854,3,35566,2,1672319423),(146855,3,35567,2,1672319423),(146856,3,35568,2,1672319423),(146857,3,35569,2,1672319423),(146858,3,35570,2,1672319423),(146859,3,35571,2,1672319423),(146860,3,35572,2,1672319423),(146861,3,35573,2,1672319423),(146862,3,35608,2,1672319423),(146863,3,35609,2,1672319423),(146864,3,35610,2,1672319423),(146865,3,35611,2,1672319423),(146866,3,35612,2,1672319423),(146867,3,35613,2,1672319423),(146868,3,35614,2,1672319423),(146869,3,35615,2,1672319423),(146870,3,35616,2,1672319423),(146871,3,35617,2,1672319423),(146872,3,35642,2,1672319423),(146873,3,35643,2,1672319423),(146874,3,35644,2,1672319423),(146875,3,35645,2,1672319423),(146876,3,35646,2,1672319423),(146877,3,35647,2,1672319423),(146878,3,35648,2,1672319423),(146879,3,35709,2,1672319423),(146880,3,35710,2,1672319423),(146881,3,35711,2,1672319423),(146882,3,35712,2,1672319423),(146883,3,35713,2,1672319423),(146884,3,35714,2,1672319423),(146885,3,35715,2,1672319423),(146886,3,35776,2,1672319423),(146887,3,35777,2,1672319423),(146888,3,35778,2,1672319423),(146889,3,35779,2,1672319423),(146890,3,35780,2,1672319423),(146891,3,35781,2,1672319423),(146892,3,35782,2,1672319423),(146893,3,35783,2,1672319423),(146894,3,35784,2,1672319423),(146895,3,35785,2,1672319423),(146896,3,35810,2,1672319423),(146897,3,35811,2,1672319423),(146898,3,35812,2,1672319423),(146899,3,35813,2,1672319423),(146900,3,35814,2,1672319423),(146901,3,35815,2,1672319423),(146902,3,35816,2,1672319423),(146903,3,35817,2,1672319423),(146904,3,35818,2,1672319423),(146905,3,35819,2,1672319423),(146906,3,35848,2,1672319423),(146907,3,35849,2,1672319423),(146908,3,35850,2,1672319423),(146909,3,35851,2,1672319423),(146910,3,35852,2,1672319423),(146911,3,35853,2,1672319423),(146912,3,35854,2,1672319423),(146913,3,35855,2,1672319423),(146914,3,35856,2,1672319423),(146915,3,35857,2,1672319423),(146916,3,35892,2,1672319423),(146917,3,35893,2,1672319423),(146918,3,35894,2,1672319423),(146919,3,35895,2,1672319423),(146920,3,35896,2,1672319423),(146921,3,35897,2,1672319423),(146922,3,35898,2,1672319423),(146923,3,35899,2,1672319423),(146924,3,35900,2,1672319423),(146925,3,35901,2,1672319423),(146926,3,35936,2,1672319423),(146927,3,35937,2,1672319423),(146928,3,35938,2,1672319423),(146929,3,35939,2,1672319423),(146930,3,35940,2,1672319423),(146931,3,35941,2,1672319423),(146932,3,35942,2,1672319423),(146933,3,35943,2,1672319423),(146934,3,35944,2,1672319423),(146935,3,35945,2,1672319423),(146936,3,35980,2,1672319423),(146937,3,35981,2,1672319423),(146938,3,35982,2,1672319423),(146939,3,35983,2,1672319423),(146940,3,35984,2,1672319423),(146941,3,35985,2,1672319423),(146942,3,35986,2,1672319423),(146943,3,35987,2,1672319423),(146944,3,35988,2,1672319423),(146945,3,35989,2,1672319423),(146946,3,36024,2,1672319423),(146947,3,36025,2,1672319423),(146948,3,36026,2,1672319423),(146949,3,36027,2,1672319423),(146950,3,36028,2,1672319423),(146951,3,36029,2,1672319423),(146952,3,36030,2,1672319423),(146953,3,36031,2,1672319423),(146954,3,36032,2,1672319423),(146955,3,36033,2,1672319423),(146956,3,36034,2,1672319423),(146957,3,36069,2,1672319423),(146958,3,36070,2,1672319423),(146959,3,36071,2,1672319423),(146960,3,36072,2,1672319423),(146961,3,36073,2,1672319423),(146962,3,36074,2,1672319423),(146963,3,36075,2,1672319423),(146964,3,36076,2,1672319423),(146965,3,36077,2,1672319423),(146966,3,36078,2,1672319423),(146967,3,36079,2,1672319423),(146968,3,36114,2,1672319423),(146969,3,36115,2,1672319423),(146970,3,36116,2,1672319423),(146971,3,36117,2,1672319423),(146972,3,36118,2,1672319423),(146973,3,36119,2,1672319423),(146974,3,36120,2,1672319423),(146975,3,36121,2,1672319423),(146976,3,36122,2,1672319423),(146977,3,36123,2,1672319423),(146978,3,39804,2,1672319423),(146979,3,39822,2,1672319423),(146980,3,39826,2,1672319423),(146981,3,40181,2,1672319423),(146982,3,40182,2,1672319423),(146983,3,40183,2,1672319423),(146984,3,40184,2,1672319423),(146985,3,43173,2,1672319423),(146986,3,43860,2,1672319423),(146987,3,43861,2,1672319423),(146988,3,43862,2,1672319423),(146989,3,43863,2,1672319423),(146990,3,43864,2,1672319423),(146991,3,43865,2,1672319423),(146992,3,43866,2,1672319423),(146993,3,43867,2,1672319423),(146994,3,43868,2,1672319423),(146995,3,43869,2,1672319423),(146996,3,43870,2,1672319423),(146997,3,43871,2,1672319423),(146998,3,43872,2,1672319423),(146999,3,43873,2,1672319423),(147000,3,44055,2,1672319423),(147001,3,10061,3,1672319423),(147002,3,10062,3,1672319423),(147003,3,10063,3,1672319423),(147004,3,10064,3,1672319423),(147005,3,10065,3,1672319423),(147006,3,10066,3,1672319423),(147007,3,10067,3,1672319423),(147008,3,10068,3,1672319423),(147009,3,10069,3,1672319423),(147010,3,10070,3,1672319423),(147011,3,10071,3,1672319423),(147012,3,10072,3,1672319423),(147013,3,22183,3,1672319423),(147014,3,22185,3,1672319423),(147015,3,22187,3,1672319423),(147016,3,22189,3,1672319423),(147017,3,22191,3,1672319423),(147018,3,22196,3,1672319423),(147019,3,22199,3,1672319423),(147020,3,22219,3,1672319423),(147021,3,22231,3,1672319423),(147022,3,22232,3,1672319423),(147023,3,22396,3,1672319423),(147024,3,22399,3,1672319423),(147025,3,22400,3,1672319423),(147026,3,22401,3,1672319423),(147027,3,22402,3,1672319423),(147028,3,22404,3,1672319423),(147029,3,22406,3,1672319423),(147030,3,22408,3,1672319423),(147031,3,22412,3,1672319423),(147032,3,22414,3,1672319423),(147033,3,22416,3,1672319423),(147034,3,22418,3,1672319423),(147035,3,22420,3,1672319423),(147036,3,22422,3,1672319423),(147037,3,22424,3,1672319423),(147038,3,22426,3,1672319423),(147039,3,22430,3,1672319423),(147040,3,22689,3,1672319423),(147041,3,23171,3,1672319423),(147042,3,23251,3,1672319423),(147043,3,23318,3,1672319423),(147044,3,23340,3,1672319423),(147045,3,23341,3,1672319423),(147046,3,23342,3,1672319423),(147047,3,23343,3,1672319423),(147048,3,23344,3,1672319423),(147049,3,23345,3,1672319423),(147050,3,23346,3,1672319423),(147051,3,23347,3,1672319423),(147052,3,23348,3,1672319423),(147053,3,23349,3,1672319423),(147054,3,23350,3,1672319423),(147055,3,23352,3,1672319423),(147056,3,23353,3,1672319423),(147057,3,23354,3,1672319423),(147058,3,23355,3,1672319423),(147059,3,23356,3,1672319423),(147060,3,23357,3,1672319423),(147061,3,23358,3,1672319423),(147062,3,23359,3,1672319423),(147063,3,23360,3,1672319423),(147064,3,23634,3,1672319423),(147065,3,23661,3,1672319423),(147066,3,23663,3,1672319423),(147067,3,25366,3,1672319423),(147068,3,25368,3,1672319423),(147069,3,25369,3,1672319423),(147070,3,25370,3,1672319423),(147071,3,25665,3,1672319423),(147072,3,25666,3,1672319423),(147073,3,28248,3,1672319423),(147074,3,28250,3,1672319423),(147075,3,28251,3,1672319423),(147076,3,28533,3,1672319423),(147077,3,28535,3,1672319423),(147078,3,28537,3,1672319423),(147079,3,28617,3,1672319423),(147080,3,28618,3,1672319423),(147081,3,28619,3,1672319423),(147082,3,29544,3,1672319423),(147083,3,29545,3,1672319423),(147084,3,29546,3,1672319423),(147085,3,29547,3,1672319423),(147086,3,29822,3,1672319423),(147087,3,32963,3,1672319423),(147088,3,32964,3,1672319423),(147089,3,32965,3,1672319423),(147090,3,32966,3,1672319423),(147091,3,32967,3,1672319423),(147092,3,32968,3,1672319423),(147093,3,32969,3,1672319423),(147094,3,32970,3,1672319423),(147095,3,32971,3,1672319423),(147096,3,32972,3,1672319423),(147097,3,32973,3,1672319423),(147098,3,32974,3,1672319423),(147099,3,32975,3,1672319423),(147100,3,32976,3,1672319423),(147101,3,32977,3,1672319423),(147102,3,32978,3,1672319423),(147103,3,32979,3,1672319423),(147104,3,32980,3,1672319423),(147105,3,32981,3,1672319423),(147106,3,32982,3,1672319423),(147107,3,32983,3,1672319423),(147108,3,32984,3,1672319423),(147109,3,32985,3,1672319423),(147110,3,32986,3,1672319423),(147111,3,32987,3,1672319423),(147112,3,32988,3,1672319423),(147113,3,32989,3,1672319423),(147114,3,32990,3,1672319423),(147115,3,32991,3,1672319423),(147116,3,32992,3,1672319423),(147117,3,32993,3,1672319423),(147118,3,32994,3,1672319423),(147119,3,32995,3,1672319423),(147120,3,32996,3,1672319423),(147121,3,32997,3,1672319423),(147122,3,33018,3,1672319423),(147123,3,33019,3,1672319423),(147124,3,33020,3,1672319423),(147125,3,33021,3,1672319423),(147126,3,33022,3,1672319423),(147127,3,33023,3,1672319423),(147128,3,34316,3,1672319423),(147129,3,34317,3,1672319423),(147130,3,35272,3,1672319423),(147131,3,35273,3,1672319423),(147132,3,35274,3,1672319423),(147133,3,35532,3,1672319423),(147134,3,35533,3,1672319423),(147135,3,35534,3,1672319423),(147136,3,35535,3,1672319423),(147137,3,35536,3,1672319423),(147138,3,35537,3,1672319423),(147139,3,35538,3,1672319423),(147140,3,35539,3,1672319423),(147141,3,35540,3,1672319423),(147142,3,35541,3,1672319423),(147143,3,35564,3,1672319423),(147144,3,35565,3,1672319423),(147145,3,35566,3,1672319423),(147146,3,35567,3,1672319423),(147147,3,35568,3,1672319423),(147148,3,35569,3,1672319423),(147149,3,35570,3,1672319423),(147150,3,35571,3,1672319423),(147151,3,35572,3,1672319423),(147152,3,35573,3,1672319423),(147153,3,35608,3,1672319423),(147154,3,35609,3,1672319423),(147155,3,35610,3,1672319423),(147156,3,35611,3,1672319423),(147157,3,35612,3,1672319423),(147158,3,35613,3,1672319423),(147159,3,35614,3,1672319423),(147160,3,35615,3,1672319423),(147161,3,35616,3,1672319423),(147162,3,35617,3,1672319423),(147163,3,35642,3,1672319423),(147164,3,35643,3,1672319423),(147165,3,35644,3,1672319423),(147166,3,35645,3,1672319423),(147167,3,35646,3,1672319423),(147168,3,35647,3,1672319423),(147169,3,35648,3,1672319423),(147170,3,35709,3,1672319423),(147171,3,35710,3,1672319423),(147172,3,35711,3,1672319423),(147173,3,35712,3,1672319423),(147174,3,35713,3,1672319423),(147175,3,35714,3,1672319423),(147176,3,35715,3,1672319423),(147177,3,35776,3,1672319423),(147178,3,35777,3,1672319423),(147179,3,35778,3,1672319423),(147180,3,35779,3,1672319423),(147181,3,35780,3,1672319423),(147182,3,35781,3,1672319423),(147183,3,35782,3,1672319423),(147184,3,35783,3,1672319423),(147185,3,35784,3,1672319423),(147186,3,35785,3,1672319423),(147187,3,35810,3,1672319423),(147188,3,35811,3,1672319423),(147189,3,35812,3,1672319423),(147190,3,35813,3,1672319423),(147191,3,35814,3,1672319423),(147192,3,35815,3,1672319423),(147193,3,35816,3,1672319423),(147194,3,35817,3,1672319423),(147195,3,35818,3,1672319423),(147196,3,35819,3,1672319423),(147197,3,35848,3,1672319423),(147198,3,35849,3,1672319423),(147199,3,35850,3,1672319423),(147200,3,35851,3,1672319423),(147201,3,35852,3,1672319423),(147202,3,35853,3,1672319423),(147203,3,35854,3,1672319423),(147204,3,35855,3,1672319423),(147205,3,35856,3,1672319423),(147206,3,35857,3,1672319423),(147207,3,35892,3,1672319423),(147208,3,35893,3,1672319423),(147209,3,35894,3,1672319423),(147210,3,35895,3,1672319423),(147211,3,35896,3,1672319423),(147212,3,35897,3,1672319423),(147213,3,35898,3,1672319423),(147214,3,35899,3,1672319423),(147215,3,35900,3,1672319423),(147216,3,35901,3,1672319423),(147217,3,35936,3,1672319423),(147218,3,35937,3,1672319423),(147219,3,35938,3,1672319423),(147220,3,35939,3,1672319423),(147221,3,35940,3,1672319423),(147222,3,35941,3,1672319423),(147223,3,35942,3,1672319423),(147224,3,35943,3,1672319423),(147225,3,35944,3,1672319423),(147226,3,35945,3,1672319423),(147227,3,35980,3,1672319423),(147228,3,35981,3,1672319423),(147229,3,35982,3,1672319423),(147230,3,35983,3,1672319423),(147231,3,35984,3,1672319423),(147232,3,35985,3,1672319423),(147233,3,35986,3,1672319423),(147234,3,35987,3,1672319423),(147235,3,35988,3,1672319423),(147236,3,35989,3,1672319423),(147237,3,36024,3,1672319423),(147238,3,36025,3,1672319423),(147239,3,36026,3,1672319423),(147240,3,36027,3,1672319423),(147241,3,36028,3,1672319423),(147242,3,36029,3,1672319423),(147243,3,36030,3,1672319423),(147244,3,36031,3,1672319423),(147245,3,36032,3,1672319423),(147246,3,36033,3,1672319423),(147247,3,36034,3,1672319423),(147248,3,36069,3,1672319423),(147249,3,36070,3,1672319423),(147250,3,36071,3,1672319423),(147251,3,36072,3,1672319423),(147252,3,36073,3,1672319423),(147253,3,36074,3,1672319423),(147254,3,36075,3,1672319423),(147255,3,36076,3,1672319423),(147256,3,36077,3,1672319423),(147257,3,36078,3,1672319423),(147258,3,36079,3,1672319423),(147259,3,36114,3,1672319423),(147260,3,36115,3,1672319423),(147261,3,36116,3,1672319423),(147262,3,36117,3,1672319423),(147263,3,36118,3,1672319423),(147264,3,36119,3,1672319423),(147265,3,36120,3,1672319423),(147266,3,36121,3,1672319423),(147267,3,36122,3,1672319423),(147268,3,36123,3,1672319423),(147269,3,39804,3,1672319423),(147270,3,39822,3,1672319423),(147271,3,39826,3,1672319423),(147272,3,40181,3,1672319423),(147273,3,40182,3,1672319423),(147274,3,40183,3,1672319423),(147275,3,40184,3,1672319423),(147276,3,43173,3,1672319423),(147277,3,43860,3,1672319423),(147278,3,43861,3,1672319423),(147279,3,43862,3,1672319423),(147280,3,43863,3,1672319423),(147281,3,43864,3,1672319423),(147282,3,43865,3,1672319423),(147283,3,43866,3,1672319423),(147284,3,43867,3,1672319423),(147285,3,43868,3,1672319423),(147286,3,43869,3,1672319423),(147287,3,43870,3,1672319423),(147288,3,43871,3,1672319423),(147289,3,43872,3,1672319423),(147290,3,43873,3,1672319423),(147291,3,44055,3,1672319423),(147292,1,10047,3,1672319423),(147293,1,10048,3,1672319423),(147294,1,10050,3,1672319423),(147295,1,10292,3,1672319423),(147296,1,10350,3,1672319423),(147297,1,10369,3,1672319423),(147298,1,10420,3,1672319423),(147299,1,10421,3,1672319423),(147300,1,10422,3,1672319423),(147301,1,10423,3,1672319423),(147302,1,10424,3,1672319423),(147303,1,10425,3,1672319423),(147304,1,10426,3,1672319423),(147305,1,10427,3,1672319423),(147306,1,10428,3,1672319423),(147307,1,10429,3,1672319423),(147308,1,10430,3,1672319423),(147309,1,10431,3,1672319423),(147310,1,10432,3,1672319423),(147311,1,10433,3,1672319423),(147312,1,1,1,1672347528),(147313,1,2,1,1672347537),(147314,1,3,1,1672347546),(147315,2,1,1,1672347564),(147316,2,2,1,1672347564),(147317,2,3,1,1672347581),(147318,2,4,1,1672347581),(147319,2,4,3,1672347586),(147320,2,5,1,1672347586),(147321,1,1,2,1672347602),(147322,1,1,2,1672347630),(147323,3,1,1,1672347663),(147324,1,1,2,1672347695),(147325,5,23095,1,1672347728),(147326,7,1,1,1672347728),(147327,5,23095,2,1672347751),(147328,7,1,3,1672347751),(147329,7,2,1,1672347751),(147330,3,2,1,1672384876),(147331,3,3,1,1672384876),(147332,3,4,1,1672384876),(147333,3,3,2,1672385530),(147334,3,4,2,1672385530),(147335,3,3,3,1672385530),(147336,3,4,3,1672385530),(147337,3,2,2,1672385530),(147338,3,2,3,1672385530),(147339,2,3,3,1672385530),(147340,2,5,3,1672385530),(147341,2,1,3,1672385530),(147342,2,2,3,1672385530),(147343,1,2,3,1672385530),(147344,1,3,3,1672385530),(147345,7,2,3,1672385537),(147346,5,23095,2,1672385537),(147347,5,23095,3,1672385537),(147348,3,1,2,1672385537),(147349,3,1,3,1672385537),(147350,1,1,3,1672385537),(147351,1,4,1,1672385547),(147352,1,5,1,1672385557),(147353,1,6,1,1672385649),(147354,1,7,1,1672385655),(147355,1,8,1,1672385660),(147356,1,9,1,1672385665),(147357,1,10,1,1672385673),(147358,1,11,1,1672385738),(147359,1,12,1,1672385745),(147360,1,13,1,1672385752),(147361,1,14,1,1672385758),(147362,1,4,2,1672385981),(147363,1,5,2,1672385991),(147364,1,15,1,1672386119),(147366,3,5,1,1672386240),(147367,3,6,1,1672386240),(147368,3,7,1,1672386258),(147369,3,8,1,1672386258),(147370,3,5,2,1672386262),(147371,3,6,2,1672386262),(147372,3,9,1,1672386429),(147373,3,10,1,1672386429),(147374,3,11,1,1672386429),(147375,3,12,1,1672386438),(147376,3,13,1,1672386438),(147377,3,14,1,1672386438),(147378,3,5,2,1672386448),(147379,3,6,2,1672386448),(147381,3,7,2,1672386457),(147382,3,8,2,1672386457),(147383,3,15,1,1672386631),(147384,3,16,1,1672386631),(147385,3,15,2,1672386646),(147386,3,16,2,1672386646),(147387,3,17,1,1672386653),(147388,3,18,1,1672386653),(147389,3,19,1,1672386674),(147390,3,20,1,1672386674),(147391,3,21,1,1672386674),(147392,3,22,1,1672386674),(147393,3,19,2,1672386679),(147394,3,20,2,1672386679),(147395,3,21,2,1672386679),(147396,3,22,2,1672386679),(147397,3,23,1,1672386687),(147398,3,24,1,1672386687),(147399,3,25,1,1672386687),(147400,3,26,1,1672386687),(147401,3,27,1,1672386705),(147402,3,28,1,1672386705),(147403,3,29,1,1672386705),(147404,3,30,1,1672386713),(147405,3,31,1,1672386713),(147406,3,32,1,1672386713),(147409,3,33,1,1672386868),(147410,3,34,1,1672386868),(147411,3,35,1,1672386868),(147412,3,36,1,1672386877),(147413,3,37,1,1672386877),(147414,3,38,1,1672386877),(147415,3,27,2,1672386890),(147416,3,28,2,1672386890),(147417,3,29,2,1672386890),(147418,3,30,2,1672386898),(147419,3,31,2,1672386898),(147420,3,32,2,1672386898),(147421,3,19,2,1672386914),(147422,3,20,2,1672386914),(147423,3,21,2,1672386914),(147424,3,22,2,1672386914),(147425,3,23,2,1672386921),(147426,3,24,2,1672386921),(147427,3,25,2,1672386921),(147428,3,26,2,1672386921),(147429,3,15,2,1672386932),(147430,3,16,2,1672386932),(147431,3,17,2,1672386937),(147432,3,18,2,1672386937),(147433,3,19,2,1672386969),(147434,3,20,2,1672386969),(147435,3,21,2,1672386969),(147436,3,22,2,1672386969),(147437,3,19,2,1672386978),(147438,3,20,2,1672386978),(147439,3,21,2,1672386978),(147440,3,22,2,1672386978),(147441,3,33,2,1672386996),(147442,3,34,2,1672386996),(147443,3,35,2,1672386996),(147444,3,36,2,1672387001),(147445,3,37,2,1672387001),(147446,3,38,2,1672387001),(147447,3,39,1,1672387043),(147448,3,40,1,1672387043),(147449,3,41,1,1672387043),(147450,3,42,1,1672387043),(147451,3,43,1,1672387043),(147452,3,44,1,1672387160),(147453,3,45,1,1672387160),(147454,3,46,1,1672387160),(147455,3,47,1,1672387160),(147456,3,48,1,1672387160),(147457,3,49,1,1672387177),(147458,3,50,1,1672387177),(147459,3,51,1,1672387177),(147460,3,52,1,1672387177),(147461,3,53,1,1672387177),(147462,3,54,1,1672387183),(147463,3,55,1,1672387183),(147464,3,56,1,1672387183),(147465,3,57,1,1672387183),(147466,3,58,1,1672387183),(147467,3,59,1,1672387250),(147468,3,60,1,1672387250),(147469,3,61,1,1672387250),(147470,3,62,1,1672387250),(147471,3,63,1,1672387250),(147472,3,64,1,1672387250),(147473,3,65,1,1672387257),(147474,3,66,1,1672387257),(147475,3,67,1,1672387257),(147476,3,68,1,1672387257),(147477,3,69,1,1672387257),(147478,3,70,1,1672387257),(147479,3,71,1,1672387332),(147480,3,72,1,1672387332),(147481,3,73,1,1672387332),(147482,3,74,1,1672387332),(147483,3,75,1,1672387339),(147484,3,76,1,1672387339),(147485,3,77,1,1672387339),(147486,3,78,1,1672387339),(147487,5,23096,1,1672387603),(147488,7,3,1,1672387603),(147489,5,23097,1,1672387603),(147490,7,4,1,1672387603),(147491,5,23098,1,1672387626),(147492,7,5,1,1672387626),(147493,7,6,1,1672387626),(147494,5,23099,1,1672387626),(147495,7,7,1,1672387626),(147496,7,8,1,1672387626),(147497,5,23100,1,1672387694),(147498,7,9,1,1672387694),(147499,5,23101,1,1672387694),(147500,7,10,1,1672387694),(147501,5,23102,1,1672387694),(147502,7,11,1,1672387694),(147503,5,23098,2,1672387705),(147504,5,23099,2,1672387705),(147505,5,23096,2,1672387710),(147506,5,23097,2,1672387710),(147507,5,23103,1,1672387743),(147508,7,12,1,1672387743),(147509,5,23104,1,1672387743),(147510,7,13,1,1672387743),(147511,5,23105,1,1672387743),(147512,7,14,1,1672387743),(147513,3,79,1,1672387831),(147514,3,80,1,1672387831),(147515,3,81,1,1672387831),(147516,3,82,1,1672387831),(147517,3,83,1,1672387831),(147518,3,84,1,1672387831),(147519,5,23106,1,1672387831),(147520,7,15,1,1672387831),(147521,5,23107,1,1672387831),(147522,7,16,1,1672387831),(147523,5,23108,1,1672387831),(147524,7,17,1,1672387831),(147525,5,23109,1,1672387861),(147526,7,18,1,1672387861),(147527,7,19,1,1672387861),(147528,5,23110,1,1672387861),(147529,7,20,1,1672387861),(147530,7,21,1,1672387861),(147531,5,23111,1,1672387861),(147532,7,22,1,1672387861),(147533,7,23,1,1672387861),(147534,5,23112,1,1672388264),(147535,7,24,1,1672388264),(147536,5,23113,1,1672388264),(147537,7,25,1,1672388264),(147538,5,23114,1,1672388264),(147539,7,26,1,1672388264),(147540,5,23115,1,1672388264),(147541,7,27,1,1672388264),(147542,5,23116,1,1672388264),(147543,5,23117,1,1672388264),(147544,7,28,1,1672388264),(147545,7,29,1,1672388264),(147546,5,23118,1,1672388293),(147547,7,30,1,1672388293),(147548,5,23119,1,1672388293),(147549,7,31,1,1672388293),(147550,5,23120,1,1672388293),(147551,7,32,1,1672388293),(147552,5,23121,1,1672388293),(147553,5,23122,1,1672388293),(147554,7,33,1,1672388293),(147555,7,34,1,1672388293),(147556,5,23123,1,1672388326),(147557,7,35,1,1672388326),(147558,7,36,1,1672388326),(147559,5,23124,1,1672388326),(147560,7,37,1,1672388326),(147561,7,38,1,1672388326),(147562,5,23125,1,1672388326),(147563,7,39,1,1672388326),(147564,7,40,1,1672388326),(147565,5,23126,1,1672388326),(147566,5,23127,1,1672388326),(147567,7,41,1,1672388326),(147568,7,42,1,1672388326),(147569,7,43,1,1672388326),(147570,7,44,1,1672388326),(147571,5,23128,1,1672388340),(147572,7,45,1,1672388340),(147573,5,23129,1,1672388340),(147574,7,46,1,1672388340),(147575,5,23130,1,1672388340),(147576,7,47,1,1672388340),(147577,5,23131,1,1672388340),(147578,5,23132,1,1672388340),(147579,7,48,1,1672388340),(147580,7,49,1,1672388340),(147581,5,23128,2,1672388375),(147582,5,23129,2,1672388375),(147583,5,23130,2,1672388375),(147584,5,23131,2,1672388375),(147585,5,23132,2,1672388375),(147586,5,23112,2,1672388388),(147587,5,23113,2,1672388388),(147588,5,23114,2,1672388388),(147589,5,23115,2,1672388388),(147590,5,23116,2,1672388388),(147591,5,23117,2,1672388388),(147592,5,23133,1,1672388436),(147593,7,50,1,1672388436),(147594,5,23134,1,1672388436),(147595,7,51,1,1672388436),(147596,5,23135,1,1672388436),(147597,5,23136,1,1672388436),(147598,7,52,1,1672388436),(147599,7,53,1,1672388436),(147600,5,23137,1,1672388469),(147601,7,54,1,1672388469),(147602,7,55,1,1672388469),(147603,7,56,1,1672388469),(147604,7,57,1,1672388469),(147605,5,23138,1,1672388469),(147606,7,58,1,1672388469),(147607,7,59,1,1672388469),(147608,7,60,1,1672388469),(147609,7,61,1,1672388469),(147610,5,23139,1,1672388469),(147611,5,23140,1,1672388469),(147612,7,62,1,1672388469),(147613,7,63,1,1672388469),(147614,7,64,1,1672388469),(147615,7,65,1,1672388469),(147616,7,66,1,1672388469),(147617,7,67,1,1672388469),(147618,7,68,1,1672388469),(147619,7,69,1,1672388469),(147620,5,23141,1,1672388523),(147621,7,70,1,1672388523),(147622,5,23142,1,1672388523),(147623,7,71,1,1672388523),(147624,5,23143,1,1672388523),(147625,5,23144,1,1672388523),(147626,7,72,1,1672388523),(147627,7,73,1,1672388523),(147628,5,23145,1,1672388556),(147629,7,74,1,1672388556),(147630,5,23146,1,1672388556),(147631,5,23147,1,1672388556),(147632,7,75,1,1672388556),(147633,7,76,1,1672388556),(147634,5,23148,1,1672388597),(147635,7,77,1,1672388597),(147636,7,78,1,1672388597),(147637,7,79,1,1672388597),(147638,7,80,1,1672388597),(147639,7,81,1,1672388597),(147640,7,82,1,1672388597),(147641,5,23149,1,1672388597),(147642,5,23150,1,1672388597),(147643,7,83,1,1672388597),(147644,7,84,1,1672388597),(147645,7,85,1,1672388597),(147646,7,86,1,1672388597),(147647,7,87,1,1672388597),(147648,7,88,1,1672388597),(147649,7,89,1,1672388597),(147650,7,90,1,1672388597),(147651,7,91,1,1672388597),(147652,7,92,1,1672388597),(147653,7,93,1,1672388597),(147654,7,94,1,1672388597),(147655,3,75,2,1672388926),(147656,3,76,2,1672388926),(147657,3,77,2,1672388926),(147658,3,78,2,1672388926),(147659,3,5,2,1672388954),(147660,3,7,2,1672388954),(147661,3,6,2,1672388954),(147662,3,8,2,1672388954),(147663,3,9,2,1672388966),(147664,3,12,2,1672388966),(147665,3,10,2,1672388966),(147666,3,11,2,1672388966),(147667,3,13,2,1672388966),(147668,3,14,2,1672388966),(147669,3,27,2,1672388994),(147670,3,30,2,1672388994),(147671,3,28,2,1672388994),(147672,3,31,2,1672388994),(147673,3,29,2,1672388994),(147674,3,32,2,1672388994),(147675,3,33,2,1672389004),(147676,3,36,2,1672389004),(147677,3,34,2,1672389004),(147678,3,37,2,1672389004),(147679,3,79,2,1672389004),(147680,3,80,2,1672389004),(147681,3,35,2,1672389004),(147682,3,38,2,1672389004),(147683,3,81,2,1672389004),(147684,3,82,2,1672389004),(147685,3,83,2,1672389004),(147686,3,84,2,1672389004),(147687,3,49,2,1672389027),(147688,3,54,2,1672389027),(147689,3,50,2,1672389027),(147690,3,55,2,1672389027),(147691,3,51,2,1672389027),(147692,3,56,2,1672389027),(147693,3,52,2,1672389027),(147694,3,53,2,1672389027),(147695,3,57,2,1672389027),(147696,3,58,2,1672389027),(147697,3,59,2,1672389035),(147698,3,65,2,1672389035),(147699,3,60,2,1672389035),(147700,3,66,2,1672389035),(147701,3,61,2,1672389035),(147702,3,67,2,1672389035),(147703,3,62,2,1672389035),(147704,3,68,2,1672389035),(147705,3,63,2,1672389035),(147706,3,64,2,1672389035),(147707,3,69,2,1672389035),(147708,3,70,2,1672389035),(147709,3,71,2,1672389045),(147710,3,72,2,1672389045),(147711,3,73,2,1672389045),(147712,3,74,2,1672389045),(147713,7,15,3,1672389945),(147714,7,16,3,1672389945),(147715,7,17,3,1672389945),(147716,5,23106,2,1672389945),(147717,5,23107,2,1672389945),(147718,5,23108,2,1672389945),(147719,5,23106,3,1672389945),(147720,5,23107,3,1672389945),(147721,5,23108,3,1672389945),(147722,7,18,3,1672389945),(147723,7,19,3,1672389945),(147724,7,20,3,1672389945),(147725,7,21,3,1672389945),(147726,7,22,3,1672389945),(147727,7,23,3,1672389945),(147728,5,23109,2,1672389945),(147729,5,23110,2,1672389945),(147730,5,23111,2,1672389945),(147731,5,23109,3,1672389945),(147732,5,23110,3,1672389945),(147733,5,23111,3,1672389945),(147734,3,79,2,1672389945),(147735,3,80,2,1672389945),(147736,3,81,2,1672389945),(147737,3,82,2,1672389945),(147738,3,83,2,1672389945),(147739,3,84,2,1672389945),(147740,3,79,3,1672389945),(147741,3,80,3,1672389945),(147742,3,81,3,1672389945),(147743,3,82,3,1672389945),(147744,3,83,3,1672389945),(147745,3,84,3,1672389945); /*!40000 ALTER TABLE `changelog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `conditions` -- DROP TABLE IF EXISTS `conditions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `conditions` ( `conditionid` bigint unsigned NOT NULL, `actionid` bigint unsigned NOT NULL, `conditiontype` int NOT NULL DEFAULT '0', `operator` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value2` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`conditionid`), KEY `conditions_1` (`actionid`), CONSTRAINT `c_conditions_1` FOREIGN KEY (`actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `conditions` -- LOCK TABLES `conditions` WRITE; /*!40000 ALTER TABLE `conditions` DISABLE KEYS */; INSERT INTO `conditions` VALUES (2,2,10,0,'0',''),(3,2,8,0,'9',''),(4,2,12,2,'Linux',''),(6,4,23,0,'0',''),(7,5,23,0,'2',''),(8,6,23,0,'4',''); /*!40000 ALTER TABLE `conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `config` -- DROP TABLE IF EXISTS `config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `config` ( `configid` bigint unsigned NOT NULL, `work_period` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1-5,09:00-18:00', `alert_usrgrpid` bigint unsigned DEFAULT NULL, `default_theme` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'blue-theme', `authentication_type` int NOT NULL DEFAULT '0', `discovery_groupid` bigint unsigned DEFAULT NULL, `max_in_table` int NOT NULL DEFAULT '50', `search_limit` int NOT NULL DEFAULT '1000', `severity_color_0` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '97AAB3', `severity_color_1` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '7499FF', `severity_color_2` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'FFC859', `severity_color_3` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'FFA059', `severity_color_4` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'E97659', `severity_color_5` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'E45959', `severity_name_0` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Not classified', `severity_name_1` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Information', `severity_name_2` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Warning', `severity_name_3` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Average', `severity_name_4` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'High', `severity_name_5` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Disaster', `ok_period` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '5m', `blink_period` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '2m', `problem_unack_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'CC0000', `problem_ack_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'CC0000', `ok_unack_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '009900', `ok_ack_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '009900', `problem_unack_style` int NOT NULL DEFAULT '1', `problem_ack_style` int NOT NULL DEFAULT '1', `ok_unack_style` int NOT NULL DEFAULT '1', `ok_ack_style` int NOT NULL DEFAULT '1', `snmptrap_logging` int NOT NULL DEFAULT '1', `server_check_interval` int NOT NULL DEFAULT '10', `hk_events_mode` int NOT NULL DEFAULT '1', `hk_events_trigger` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `hk_events_internal` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1d', `hk_events_discovery` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1d', `hk_events_autoreg` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1d', `hk_services_mode` int NOT NULL DEFAULT '1', `hk_services` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `hk_audit_mode` int NOT NULL DEFAULT '1', `hk_audit` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `hk_sessions_mode` int NOT NULL DEFAULT '1', `hk_sessions` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `hk_history_mode` int NOT NULL DEFAULT '1', `hk_history_global` int NOT NULL DEFAULT '0', `hk_history` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '90d', `hk_trends_mode` int NOT NULL DEFAULT '1', `hk_trends_global` int NOT NULL DEFAULT '0', `hk_trends` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `default_inventory_mode` int NOT NULL DEFAULT '-1', `custom_color` int NOT NULL DEFAULT '0', `http_auth_enabled` int NOT NULL DEFAULT '0', `http_login_form` int NOT NULL DEFAULT '0', `http_strip_domains` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `http_case_sensitive` int NOT NULL DEFAULT '1', `ldap_auth_enabled` int NOT NULL DEFAULT '0', `ldap_case_sensitive` int NOT NULL DEFAULT '1', `db_extension` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `autoreg_tls_accept` int NOT NULL DEFAULT '1', `compression_status` int NOT NULL DEFAULT '0', `compress_older` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '7d', `instanceid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `saml_auth_enabled` int NOT NULL DEFAULT '0', `saml_case_sensitive` int NOT NULL DEFAULT '0', `default_lang` varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'en_US', `default_timezone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'system', `login_attempts` int NOT NULL DEFAULT '5', `login_block` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '30s', `show_technical_errors` int NOT NULL DEFAULT '0', `validate_uri_schemes` int NOT NULL DEFAULT '1', `uri_valid_schemes` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'http,https,ftp,file,mailto,tel,ssh', `x_frame_options` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'SAMEORIGIN', `iframe_sandboxing_enabled` int NOT NULL DEFAULT '1', `iframe_sandboxing_exceptions` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `max_overview_table_size` int NOT NULL DEFAULT '50', `history_period` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '24h', `period_default` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1h', `max_period` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '2y', `socket_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '3s', `connect_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '3s', `media_type_test_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '65s', `script_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '60s', `item_test_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '60s', `session_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `report_test_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '60s', `dbversion_status` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `hk_events_service` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1d', `passwd_min_length` int NOT NULL DEFAULT '8', `passwd_check_rules` int NOT NULL DEFAULT '8', `auditlog_enabled` int NOT NULL DEFAULT '1', `ha_failover_delay` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1m', `geomaps_tile_provider` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `geomaps_tile_url` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `geomaps_max_zoom` int NOT NULL DEFAULT '0', `geomaps_attribution` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `vault_provider` int NOT NULL DEFAULT '0', `ldap_userdirectoryid` bigint unsigned DEFAULT NULL, `server_status` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `jit_provision_interval` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1h', `saml_jit_status` int NOT NULL DEFAULT '0', `ldap_jit_status` int NOT NULL DEFAULT '0', `disabled_usrgrpid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`configid`), KEY `config_1` (`alert_usrgrpid`), KEY `config_2` (`discovery_groupid`), KEY `config_3` (`ldap_userdirectoryid`), KEY `config_4` (`disabled_usrgrpid`), CONSTRAINT `c_config_1` FOREIGN KEY (`alert_usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`), CONSTRAINT `c_config_2` FOREIGN KEY (`discovery_groupid`) REFERENCES `hstgrp` (`groupid`), CONSTRAINT `c_config_3` FOREIGN KEY (`ldap_userdirectoryid`) REFERENCES `userdirectory` (`userdirectoryid`), CONSTRAINT `c_config_4` FOREIGN KEY (`disabled_usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `config` -- LOCK TABLES `config` WRITE; /*!40000 ALTER TABLE `config` DISABLE KEYS */; INSERT INTO `config` VALUES (1,'1-5,09:00-18:00',7,'blue-theme',0,5,50,1000,'97AAB3','7499FF','FFC859','FFA059','E97659','E45959','Not classified','Information','Warning','Average','High','Disaster','5m','2m','CC0000','CC0000','009900','009900',1,1,1,1,1,10,1,'365d','1d','1d','1d',1,'365d',1,'365d',1,'365d',1,0,'90d',1,0,'365d',-1,0,0,0,'',1,0,1,'',1,0,'7d','',0,0,'en_US','system',5,'30s',0,1,'http,https,ftp,file,mailto,tel,ssh','SAMEORIGIN',1,'',50,'24h','1h','2y','3s','3s','65s','60s','60s','2e2a68cf25d26a34bf4e52a6ee9de95e','','60s','','1d',8,8,1,'1m','OpenStreetMap.Mapnik','',0,'',0,NULL,'','1h',0,0,NULL); /*!40000 ALTER TABLE `config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `config_autoreg_tls` -- DROP TABLE IF EXISTS `config_autoreg_tls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `config_autoreg_tls` ( `autoreg_tlsid` bigint unsigned NOT NULL, `tls_psk_identity` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tls_psk` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`autoreg_tlsid`), UNIQUE KEY `config_autoreg_tls_1` (`tls_psk_identity`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `config_autoreg_tls` -- LOCK TABLES `config_autoreg_tls` WRITE; /*!40000 ALTER TABLE `config_autoreg_tls` DISABLE KEYS */; INSERT INTO `config_autoreg_tls` VALUES (1,'',''); /*!40000 ALTER TABLE `config_autoreg_tls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition` -- DROP TABLE IF EXISTS `corr_condition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition` ( `corr_conditionid` bigint unsigned NOT NULL, `correlationid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`corr_conditionid`), KEY `corr_condition_1` (`correlationid`), CONSTRAINT `c_corr_condition_1` FOREIGN KEY (`correlationid`) REFERENCES `correlation` (`correlationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition` -- LOCK TABLES `corr_condition` WRITE; /*!40000 ALTER TABLE `corr_condition` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition_group` -- DROP TABLE IF EXISTS `corr_condition_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition_group` ( `corr_conditionid` bigint unsigned NOT NULL, `operator` int NOT NULL DEFAULT '0', `groupid` bigint unsigned NOT NULL, PRIMARY KEY (`corr_conditionid`), KEY `corr_condition_group_1` (`groupid`), CONSTRAINT `c_corr_condition_group_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE, CONSTRAINT `c_corr_condition_group_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition_group` -- LOCK TABLES `corr_condition_group` WRITE; /*!40000 ALTER TABLE `corr_condition_group` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition_tag` -- DROP TABLE IF EXISTS `corr_condition_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition_tag` ( `corr_conditionid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`corr_conditionid`), CONSTRAINT `c_corr_condition_tag_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition_tag` -- LOCK TABLES `corr_condition_tag` WRITE; /*!40000 ALTER TABLE `corr_condition_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition_tagpair` -- DROP TABLE IF EXISTS `corr_condition_tagpair`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition_tagpair` ( `corr_conditionid` bigint unsigned NOT NULL, `oldtag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `newtag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`corr_conditionid`), CONSTRAINT `c_corr_condition_tagpair_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition_tagpair` -- LOCK TABLES `corr_condition_tagpair` WRITE; /*!40000 ALTER TABLE `corr_condition_tagpair` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition_tagpair` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition_tagvalue` -- DROP TABLE IF EXISTS `corr_condition_tagvalue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition_tagvalue` ( `corr_conditionid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `operator` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`corr_conditionid`), CONSTRAINT `c_corr_condition_tagvalue_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition_tagvalue` -- LOCK TABLES `corr_condition_tagvalue` WRITE; /*!40000 ALTER TABLE `corr_condition_tagvalue` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition_tagvalue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_operation` -- DROP TABLE IF EXISTS `corr_operation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_operation` ( `corr_operationid` bigint unsigned NOT NULL, `correlationid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`corr_operationid`), KEY `corr_operation_1` (`correlationid`), CONSTRAINT `c_corr_operation_1` FOREIGN KEY (`correlationid`) REFERENCES `correlation` (`correlationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_operation` -- LOCK TABLES `corr_operation` WRITE; /*!40000 ALTER TABLE `corr_operation` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_operation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `correlation` -- DROP TABLE IF EXISTS `correlation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `correlation` ( `correlationid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `evaltype` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `formula` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`correlationid`), UNIQUE KEY `correlation_2` (`name`), KEY `correlation_1` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `correlation` -- LOCK TABLES `correlation` WRITE; /*!40000 ALTER TABLE `correlation` DISABLE KEYS */; /*!40000 ALTER TABLE `correlation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard` -- DROP TABLE IF EXISTS `dashboard`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard` ( `dashboardid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `userid` bigint unsigned DEFAULT NULL, `private` int NOT NULL DEFAULT '1', `templateid` bigint unsigned DEFAULT NULL, `display_period` int NOT NULL DEFAULT '30', `auto_start` int NOT NULL DEFAULT '1', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`dashboardid`), KEY `dashboard_1` (`userid`), KEY `dashboard_2` (`templateid`), CONSTRAINT `c_dashboard_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`), CONSTRAINT `c_dashboard_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard` -- LOCK TABLES `dashboard` WRITE; /*!40000 ALTER TABLE `dashboard` DISABLE KEYS */; INSERT INTO `dashboard` VALUES (1,'Global view',1,0,NULL,30,1,''),(2,'Zabbix server health',1,1,NULL,30,1,''),(57,'Zabbix server',1,1,NULL,30,1,''),(58,'t1_1',NULL,1,6,30,1,'ca1874005633420fb7a102de7dc2ffe7'),(59,'t1_2',NULL,1,6,30,1,'c9fa84fe474b4631908ecc39b9b8b983'),(60,'t1_3',NULL,1,6,30,1,'007152ae172d409c844b456c7711a24d'),(61,'t2_1',NULL,1,7,30,1,'823cab9175314ab388318190c4529a9c'),(62,'t2_2',NULL,1,7,30,1,'8c80f2b035d047869021272fa547ee1a'),(63,'t2_3',NULL,1,7,30,1,'58feed816e7648bdb23cc59b4353f3a4'),(64,'t3_1',NULL,1,8,30,1,'fd4515aade0144acba62d3b36d53da6b'),(65,'t3_2',NULL,1,8,30,1,'24d94fbc340c445eb83a436f76dbcfe0'),(66,'t3_3',NULL,1,8,30,1,'bffd5541610e433e90e10c35e56cd3dc'),(67,'t4_1',NULL,1,9,30,1,'3224835a9cbf40d7a077d1cc9433ad65'),(68,'t4_2',NULL,1,9,30,1,'2a813c3bad4a48f9b778890cbdf6fb17'),(69,'t4_3',NULL,1,9,30,1,'6e7734bb107249c2b46a4ca3245c88c6'),(70,'t5_1',NULL,1,10,30,1,'156b22e22e2a46bb99a5cf1d4f7c3e07'),(71,'t5_2',NULL,1,10,30,1,'484b8022e817474e8b555cbd4eed6d30'),(72,'t5_3',NULL,1,10,30,1,'c1957d2208f44561abe0350081d7182a'),(73,'t6_1',NULL,1,11,30,1,'f6bb49da3a8d48bdb3c79dceb3202b6d'),(74,'t6_2',NULL,1,11,30,1,'63ea7334f9aa43c0a6b3572a7da908de'),(75,'t6_3',NULL,1,11,30,1,'ef5995be4ddb4877bf37bd5aa4e4e148'),(76,'t7_1',NULL,1,12,30,1,'13e50f68bd4b41e5afe44aac517ff989'),(77,'t7_2',NULL,1,12,30,1,'1088bd2ca08845478aeeac3813e17a2b'),(78,'t7_3',NULL,1,12,30,1,'797249a0beeb4f99a549aeb4bcd92e48'),(79,'t8_1',NULL,1,13,30,1,'343c6e486b3a4ff79a6050ffe9e8b23c'),(80,'t8_2',NULL,1,13,30,1,'b0595596f2044d9caeba93dbd355f489'),(81,'t8_3',NULL,1,13,30,1,'742afc18887247ed8fdd5eb8f33b8f56'),(82,'t9_1',NULL,1,14,30,1,'b1c077d19c194124b46fedffbc3ad29a'),(83,'t9_2',NULL,1,14,30,1,'c802a70b8f3e4b8f91e0f1ccc379beea'),(84,'t9_3',NULL,1,14,30,1,'c99367ebae2c4ad28766ee579df51952'),(85,'t10_1',NULL,1,15,30,1,'8feb14ec4c664a19b289cbd091706943'),(86,'t10_2',NULL,1,15,30,1,'babb87dae7b4483bb638f6c751438cef'),(87,'t10_3',NULL,1,15,30,1,'70a54fc51ff44060bb0959f24e66f5da'); /*!40000 ALTER TABLE `dashboard` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_page` -- DROP TABLE IF EXISTS `dashboard_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_page` ( `dashboard_pageid` bigint unsigned NOT NULL, `dashboardid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `display_period` int NOT NULL DEFAULT '0', `sortorder` int NOT NULL DEFAULT '0', PRIMARY KEY (`dashboard_pageid`), KEY `dashboard_page_1` (`dashboardid`), CONSTRAINT `c_dashboard_page_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_page` -- LOCK TABLES `dashboard_page` WRITE; /*!40000 ALTER TABLE `dashboard_page` DISABLE KEYS */; INSERT INTO `dashboard_page` VALUES (1,1,'',0,0),(2,2,'',0,0),(57,57,'',0,0),(58,58,'',0,0),(59,59,'',0,0),(60,60,'',0,0),(61,61,'',0,0),(62,62,'',0,0),(63,63,'',0,0),(64,64,'',0,0),(65,65,'',0,0),(66,66,'',0,0),(67,67,'',0,0),(68,68,'',0,0),(69,69,'',0,0),(70,70,'',0,0),(71,71,'',0,0),(72,72,'',0,0),(73,73,'',0,0),(74,74,'',0,0),(75,75,'',0,0),(76,76,'',0,0),(77,77,'',0,0),(78,78,'',0,0),(79,79,'',0,0),(80,80,'',0,0),(81,81,'',0,0),(82,82,'',0,0),(83,83,'',0,0),(84,84,'',0,0),(85,85,'',0,0),(86,86,'',0,0),(87,87,'',0,0),(88,58,'p2',0,1),(89,59,'p2',0,1),(90,61,'p2',0,1),(91,62,'p2',0,1),(92,67,'p2',0,1),(93,68,'p2',0,1),(94,70,'p2',0,1),(95,71,'p2',0,1),(96,73,'p2',0,1),(97,74,'p2',0,1),(98,76,'p2',0,1),(99,77,'p2',0,1),(100,79,'p2',0,1),(101,80,'p2',0,1),(102,82,'p2',0,1),(103,83,'p2',0,1),(104,85,'p2',0,1),(105,86,'p2',0,1),(106,58,'p3',0,2),(107,59,'p3',0,2),(108,61,'p3',0,2),(109,62,'p3',0,2),(110,64,'p2',0,1),(111,64,'p3',0,2),(112,65,'p2',0,1),(113,65,'p3',0,2),(114,67,'p3',0,2),(115,68,'p3',0,2),(116,70,'p3',0,2),(117,71,'p3',0,2),(118,73,'p3',0,2),(119,74,'p3',0,2),(120,76,'p3',0,2),(121,77,'p3',0,2),(122,79,'p3',0,2),(123,80,'p3',0,2),(124,82,'p3',0,2),(125,83,'p3',0,2),(126,85,'p3',0,2),(127,86,'p3',0,2); /*!40000 ALTER TABLE `dashboard_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_user` -- DROP TABLE IF EXISTS `dashboard_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_user` ( `dashboard_userid` bigint unsigned NOT NULL, `dashboardid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `permission` int NOT NULL DEFAULT '2', PRIMARY KEY (`dashboard_userid`), UNIQUE KEY `dashboard_user_1` (`dashboardid`,`userid`), KEY `c_dashboard_user_2` (`userid`), CONSTRAINT `c_dashboard_user_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE, CONSTRAINT `c_dashboard_user_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_user` -- LOCK TABLES `dashboard_user` WRITE; /*!40000 ALTER TABLE `dashboard_user` DISABLE KEYS */; /*!40000 ALTER TABLE `dashboard_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_usrgrp` -- DROP TABLE IF EXISTS `dashboard_usrgrp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_usrgrp` ( `dashboard_usrgrpid` bigint unsigned NOT NULL, `dashboardid` bigint unsigned NOT NULL, `usrgrpid` bigint unsigned NOT NULL, `permission` int NOT NULL DEFAULT '2', PRIMARY KEY (`dashboard_usrgrpid`), UNIQUE KEY `dashboard_usrgrp_1` (`dashboardid`,`usrgrpid`), KEY `c_dashboard_usrgrp_2` (`usrgrpid`), CONSTRAINT `c_dashboard_usrgrp_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE, CONSTRAINT `c_dashboard_usrgrp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_usrgrp` -- LOCK TABLES `dashboard_usrgrp` WRITE; /*!40000 ALTER TABLE `dashboard_usrgrp` DISABLE KEYS */; INSERT INTO `dashboard_usrgrp` VALUES (1,2,7,3); /*!40000 ALTER TABLE `dashboard_usrgrp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dbversion` -- DROP TABLE IF EXISTS `dbversion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dbversion` ( `dbversionid` bigint unsigned NOT NULL, `mandatory` int NOT NULL DEFAULT '0', `optional` int NOT NULL DEFAULT '0', PRIMARY KEY (`dbversionid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dbversion` -- LOCK TABLES `dbversion` WRITE; /*!40000 ALTER TABLE `dbversion` DISABLE KEYS */; INSERT INTO `dbversion` VALUES (1,6030158,6030158); /*!40000 ALTER TABLE `dbversion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dchecks` -- DROP TABLE IF EXISTS `dchecks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dchecks` ( `dcheckid` bigint unsigned NOT NULL, `druleid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `key_` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `snmp_community` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ports` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0', `snmpv3_securityname` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `snmpv3_securitylevel` int NOT NULL DEFAULT '0', `snmpv3_authpassphrase` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `snmpv3_privpassphrase` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `uniq` int NOT NULL DEFAULT '0', `snmpv3_authprotocol` int NOT NULL DEFAULT '0', `snmpv3_privprotocol` int NOT NULL DEFAULT '0', `snmpv3_contextname` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_source` int NOT NULL DEFAULT '1', `name_source` int NOT NULL DEFAULT '0', PRIMARY KEY (`dcheckid`), KEY `dchecks_1` (`druleid`,`host_source`,`name_source`), CONSTRAINT `c_dchecks_1` FOREIGN KEY (`druleid`) REFERENCES `drules` (`druleid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dchecks` -- LOCK TABLES `dchecks` WRITE; /*!40000 ALTER TABLE `dchecks` DISABLE KEYS */; INSERT INTO `dchecks` VALUES (2,2,9,'system.uname','','10050','',0,'','',0,0,0,'',1,0); /*!40000 ALTER TABLE `dchecks` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `dchecks_insert` AFTER INSERT ON `dchecks` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (10,new.dcheckid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `dchecks_update` AFTER UPDATE ON `dchecks` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (10,old.dcheckid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `dchecks_delete` BEFORE DELETE ON `dchecks` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (10,old.dcheckid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `dhosts` -- DROP TABLE IF EXISTS `dhosts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dhosts` ( `dhostid` bigint unsigned NOT NULL, `druleid` bigint unsigned NOT NULL, `status` int NOT NULL DEFAULT '0', `lastup` int NOT NULL DEFAULT '0', `lastdown` int NOT NULL DEFAULT '0', PRIMARY KEY (`dhostid`), KEY `dhosts_1` (`druleid`), CONSTRAINT `c_dhosts_1` FOREIGN KEY (`druleid`) REFERENCES `drules` (`druleid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dhosts` -- LOCK TABLES `dhosts` WRITE; /*!40000 ALTER TABLE `dhosts` DISABLE KEYS */; /*!40000 ALTER TABLE `dhosts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drules` -- DROP TABLE IF EXISTS `drules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `drules` ( `druleid` bigint unsigned NOT NULL, `proxy_hostid` bigint unsigned DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `iprange` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `delay` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1h', `status` int NOT NULL DEFAULT '0', PRIMARY KEY (`druleid`), UNIQUE KEY `drules_2` (`name`), KEY `drules_1` (`proxy_hostid`), CONSTRAINT `c_drules_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drules` -- LOCK TABLES `drules` WRITE; /*!40000 ALTER TABLE `drules` DISABLE KEYS */; INSERT INTO `drules` VALUES (2,NULL,'Local network','192.168.0.1-254','1h',1); /*!40000 ALTER TABLE `drules` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `drules_insert` AFTER INSERT ON `drules` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (9,new.druleid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `drules_update` AFTER UPDATE ON `drules` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (9,old.druleid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `drules_delete` BEFORE DELETE ON `drules` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (9,old.druleid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `dservices` -- DROP TABLE IF EXISTS `dservices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dservices` ( `dserviceid` bigint unsigned NOT NULL, `dhostid` bigint unsigned NOT NULL, `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `port` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `lastup` int NOT NULL DEFAULT '0', `lastdown` int NOT NULL DEFAULT '0', `dcheckid` bigint unsigned NOT NULL, `ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `dns` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`dserviceid`), UNIQUE KEY `dservices_1` (`dcheckid`,`ip`,`port`), KEY `dservices_2` (`dhostid`), CONSTRAINT `c_dservices_1` FOREIGN KEY (`dhostid`) REFERENCES `dhosts` (`dhostid`) ON DELETE CASCADE, CONSTRAINT `c_dservices_2` FOREIGN KEY (`dcheckid`) REFERENCES `dchecks` (`dcheckid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dservices` -- LOCK TABLES `dservices` WRITE; /*!40000 ALTER TABLE `dservices` DISABLE KEYS */; /*!40000 ALTER TABLE `dservices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `escalations` -- DROP TABLE IF EXISTS `escalations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `escalations` ( `escalationid` bigint unsigned NOT NULL, `actionid` bigint unsigned NOT NULL, `triggerid` bigint unsigned DEFAULT NULL, `eventid` bigint unsigned DEFAULT NULL, `r_eventid` bigint unsigned DEFAULT NULL, `nextcheck` int NOT NULL DEFAULT '0', `esc_step` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `itemid` bigint unsigned DEFAULT NULL, `acknowledgeid` bigint unsigned DEFAULT NULL, `servicealarmid` bigint unsigned DEFAULT NULL, `serviceid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`escalationid`), UNIQUE KEY `escalations_1` (`triggerid`,`itemid`,`serviceid`,`escalationid`), KEY `escalations_2` (`eventid`), KEY `escalations_3` (`nextcheck`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `escalations` -- LOCK TABLES `escalations` WRITE; /*!40000 ALTER TABLE `escalations` DISABLE KEYS */; /*!40000 ALTER TABLE `escalations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_recovery` -- DROP TABLE IF EXISTS `event_recovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_recovery` ( `eventid` bigint unsigned NOT NULL, `r_eventid` bigint unsigned NOT NULL, `c_eventid` bigint unsigned DEFAULT NULL, `correlationid` bigint unsigned DEFAULT NULL, `userid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`eventid`), KEY `event_recovery_1` (`r_eventid`), KEY `event_recovery_2` (`c_eventid`), CONSTRAINT `c_event_recovery_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_event_recovery_2` FOREIGN KEY (`r_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_event_recovery_3` FOREIGN KEY (`c_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_recovery` -- LOCK TABLES `event_recovery` WRITE; /*!40000 ALTER TABLE `event_recovery` DISABLE KEYS */; /*!40000 ALTER TABLE `event_recovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_suppress` -- DROP TABLE IF EXISTS `event_suppress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_suppress` ( `event_suppressid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `maintenanceid` bigint unsigned DEFAULT NULL, `suppress_until` int NOT NULL DEFAULT '0', `userid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`event_suppressid`), UNIQUE KEY `event_suppress_1` (`eventid`,`maintenanceid`), KEY `event_suppress_2` (`suppress_until`), KEY `event_suppress_3` (`maintenanceid`), KEY `c_event_suppress_3` (`userid`), CONSTRAINT `c_event_suppress_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_event_suppress_2` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE, CONSTRAINT `c_event_suppress_3` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_suppress` -- LOCK TABLES `event_suppress` WRITE; /*!40000 ALTER TABLE `event_suppress` DISABLE KEYS */; /*!40000 ALTER TABLE `event_suppress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_symptom` -- DROP TABLE IF EXISTS `event_symptom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_symptom` ( `eventid` bigint unsigned NOT NULL, `cause_eventid` bigint unsigned NOT NULL, PRIMARY KEY (`eventid`), KEY `event_symptom_1` (`cause_eventid`), CONSTRAINT `c_event_symptom_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_event_symptom_2` FOREIGN KEY (`cause_eventid`) REFERENCES `events` (`eventid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_symptom` -- LOCK TABLES `event_symptom` WRITE; /*!40000 ALTER TABLE `event_symptom` DISABLE KEYS */; /*!40000 ALTER TABLE `event_symptom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_tag` -- DROP TABLE IF EXISTS `event_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_tag` ( `eventtagid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`eventtagid`), KEY `event_tag_1` (`eventid`), CONSTRAINT `c_event_tag_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_tag` -- LOCK TABLES `event_tag` WRITE; /*!40000 ALTER TABLE `event_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `event_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `events` ( `eventid` bigint unsigned NOT NULL, `source` int NOT NULL DEFAULT '0', `object` int NOT NULL DEFAULT '0', `objectid` bigint unsigned NOT NULL DEFAULT '0', `clock` int NOT NULL DEFAULT '0', `value` int NOT NULL DEFAULT '0', `acknowledged` int NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', `name` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `severity` int NOT NULL DEFAULT '0', PRIMARY KEY (`eventid`), KEY `events_1` (`source`,`object`,`objectid`,`clock`), KEY `events_2` (`source`,`object`,`clock`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `expressions` -- DROP TABLE IF EXISTS `expressions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `expressions` ( `expressionid` bigint unsigned NOT NULL, `regexpid` bigint unsigned NOT NULL, `expression` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `expression_type` int NOT NULL DEFAULT '0', `exp_delimiter` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `case_sensitive` int NOT NULL DEFAULT '0', PRIMARY KEY (`expressionid`), KEY `expressions_1` (`regexpid`), CONSTRAINT `c_expressions_1` FOREIGN KEY (`regexpid`) REFERENCES `regexps` (`regexpid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `expressions` -- LOCK TABLES `expressions` WRITE; /*!40000 ALTER TABLE `expressions` DISABLE KEYS */; INSERT INTO `expressions` VALUES (1,1,'^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$',3,',',0),(3,3,'^(Physical memory|Virtual memory|Memory buffers|Cached memory|Swap space)$',4,',',1),(5,4,'^(MMCSS|gupdate|SysmonLog|clr_optimization_v2.0.50727_32|clr_optimization_v4.0.30319_32)$',4,',',1),(6,5,'^(automatic|automatic delayed)$',3,',',1),(7,2,'^Software Loopback Interface',4,',',1),(8,2,'^(In)?[Ll]oop[Bb]ack[0-9._]*$',4,',',1),(9,2,'^NULL[0-9.]*$',4,',',1),(10,2,'^[Ll]o[0-9.]*$',4,',',1),(11,2,'^[Ss]ystem$',4,',',1),(12,2,'^Nu[0-9.]*$',4,',',1); /*!40000 ALTER TABLE `expressions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `functions` -- DROP TABLE IF EXISTS `functions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `functions` ( `functionid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `triggerid` bigint unsigned NOT NULL, `name` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `parameter` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0', PRIMARY KEY (`functionid`), KEY `functions_1` (`triggerid`), KEY `functions_2` (`itemid`,`name`,`parameter`), CONSTRAINT `c_functions_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`), CONSTRAINT `c_functions_2` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `functions` -- LOCK TABLES `functions` WRITE; /*!40000 ALTER TABLE `functions` DISABLE KEYS */; INSERT INTO `functions` VALUES (3,5,23096,'last','$'),(4,6,23097,'last','$'),(5,5,23098,'last','$'),(6,28,23098,'last','$'),(7,6,23099,'last','$'),(8,29,23099,'last','$'),(9,27,23100,'last','$'),(10,28,23101,'last','$'),(11,29,23102,'last','$'),(12,33,23103,'last','$'),(13,34,23104,'last','$'),(14,35,23105,'last','$'),(24,59,23112,'last','$'),(25,60,23113,'last','$'),(26,61,23114,'last','$'),(27,62,23115,'last','$'),(28,63,23116,'last','$'),(29,64,23117,'last','$'),(30,39,23118,'last','$'),(31,40,23119,'last','$'),(32,41,23120,'last','$'),(33,42,23121,'last','$'),(34,43,23122,'last','$'),(35,39,23123,'last','$'),(36,60,23123,'last','$'),(37,40,23124,'last','$'),(38,61,23124,'last','$'),(39,41,23125,'last','$'),(40,62,23125,'last','$'),(41,42,23126,'last','$'),(42,63,23126,'last','$'),(43,43,23127,'last','$'),(44,64,23127,'last','$'),(45,49,23128,'last','$'),(46,50,23129,'last','$'),(47,51,23130,'last','$'),(48,52,23131,'last','$'),(49,53,23132,'last','$'),(50,19,23133,'last','$'),(51,20,23134,'last','$'),(52,21,23135,'last','$'),(53,22,23136,'last','$'),(54,19,23137,'last','$'),(55,40,23137,'last','$'),(56,50,23137,'last','$'),(57,61,23137,'last','$'),(58,20,23138,'last','$'),(59,41,23138,'last','$'),(60,51,23138,'last','$'),(61,62,23138,'last','$'),(62,21,23139,'last','$'),(63,42,23139,'last','$'),(64,52,23139,'last','$'),(65,63,23139,'last','$'),(66,22,23140,'last','$'),(67,43,23140,'last','$'),(68,53,23140,'last','$'),(69,64,23140,'last','$'),(70,71,23141,'last','$'),(71,72,23142,'last','$'),(72,73,23143,'last','$'),(73,74,23144,'last','$'),(74,9,23145,'last','$'),(75,10,23146,'last','$'),(76,11,23147,'last','$'),(77,9,23148,'last','$'),(78,20,23148,'last','$'),(79,41,23148,'last','$'),(80,51,23148,'last','$'),(81,62,23148,'last','$'),(82,72,23148,'last','$'),(83,10,23149,'last','$'),(84,21,23149,'last','$'),(85,42,23149,'last','$'),(86,52,23149,'last','$'),(87,63,23149,'last','$'),(88,73,23149,'last','$'),(89,11,23150,'last','$'),(90,22,23150,'last','$'),(91,43,23150,'last','$'),(92,53,23150,'last','$'),(93,64,23150,'last','$'),(94,74,23150,'last','$'); /*!40000 ALTER TABLE `functions` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `functions_insert` AFTER INSERT ON `functions` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (7,new.functionid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `functions_update` AFTER UPDATE ON `functions` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (7,old.functionid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `functions_delete` BEFORE DELETE ON `functions` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (7,old.functionid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `globalmacro` -- DROP TABLE IF EXISTS `globalmacro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `globalmacro` ( `globalmacroid` bigint unsigned NOT NULL, `macro` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`globalmacroid`), UNIQUE KEY `globalmacro_1` (`macro`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `globalmacro` -- LOCK TABLES `globalmacro` WRITE; /*!40000 ALTER TABLE `globalmacro` DISABLE KEYS */; INSERT INTO `globalmacro` VALUES (2,'{$SNMP_COMMUNITY}','public','',0); /*!40000 ALTER TABLE `globalmacro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `globalvars` -- DROP TABLE IF EXISTS `globalvars`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `globalvars` ( `globalvarid` bigint unsigned NOT NULL, `snmp_lastsize` bigint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`globalvarid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `globalvars` -- LOCK TABLES `globalvars` WRITE; /*!40000 ALTER TABLE `globalvars` DISABLE KEYS */; /*!40000 ALTER TABLE `globalvars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graph_discovery` -- DROP TABLE IF EXISTS `graph_discovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `graph_discovery` ( `graphid` bigint unsigned NOT NULL, `parent_graphid` bigint unsigned NOT NULL, `lastcheck` int NOT NULL DEFAULT '0', `ts_delete` int NOT NULL DEFAULT '0', PRIMARY KEY (`graphid`), KEY `graph_discovery_1` (`parent_graphid`), CONSTRAINT `c_graph_discovery_1` FOREIGN KEY (`graphid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE, CONSTRAINT `c_graph_discovery_2` FOREIGN KEY (`parent_graphid`) REFERENCES `graphs` (`graphid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graph_discovery` -- LOCK TABLES `graph_discovery` WRITE; /*!40000 ALTER TABLE `graph_discovery` DISABLE KEYS */; /*!40000 ALTER TABLE `graph_discovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graph_theme` -- DROP TABLE IF EXISTS `graph_theme`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `graph_theme` ( `graphthemeid` bigint unsigned NOT NULL, `theme` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `backgroundcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `graphcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `gridcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `maingridcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `gridbordercolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `textcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `highlightcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `leftpercentilecolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `rightpercentilecolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `nonworktimecolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `colorpalette` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`graphthemeid`), UNIQUE KEY `graph_theme_1` (`theme`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graph_theme` -- LOCK TABLES `graph_theme` WRITE; /*!40000 ALTER TABLE `graph_theme` DISABLE KEYS */; INSERT INTO `graph_theme` VALUES (1,'blue-theme','FFFFFF','FFFFFF','CCD5D9','ACBBC2','ACBBC2','1F2C33','E33734','429E47','E33734','EBEBEB','1A7C11,F63100,2774A4,A54F10,FC6EA3,6C59DC,AC8C14,611F27,F230E0,5CCD18,BB2A02,5A2B57,89ABF8,7EC25C,274482,2B5429,8048B4,FD5434,790E1F,87AC4D,E89DF4'),(2,'dark-theme','2B2B2B','2B2B2B','454545','4F4F4F','4F4F4F','F2F2F2','E45959','59DB8F','E45959','333333','199C0D,F63100,2774A4,F7941D,FC6EA3,6C59DC,C7A72D,BA2A5D,F230E0,5CCD18,BB2A02,AC41A5,89ABF8,7EC25C,3165D5,79A277,AA73DE,FD5434,F21C3E,87AC4D,E89DF4'),(3,'hc-light','FFFFFF','FFFFFF','555555','000000','333333','000000','333333','000000','000000','EBEBEB','1A7C11,F63100,2774A4,A54F10,FC6EA3,6C59DC,AC8C14,611F27,F230E0,5CCD18,BB2A02,5A2B57,89ABF8,7EC25C,274482,2B5429,8048B4,FD5434,790E1F,87AC4D,E89DF4'),(4,'hc-dark','000000','000000','666666','888888','4F4F4F','FFFFFF','FFFFFF','FFFFFF','FFFFFF','333333','199C0D,F63100,2774A4,F7941D,FC6EA3,6C59DC,C7A72D,BA2A5D,F230E0,5CCD18,BB2A02,AC41A5,89ABF8,7EC25C,3165D5,79A277,AA73DE,FD5434,F21C3E,87AC4D,E89DF4'); /*!40000 ALTER TABLE `graph_theme` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graphs` -- DROP TABLE IF EXISTS `graphs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `graphs` ( `graphid` bigint unsigned NOT NULL, `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `width` int NOT NULL DEFAULT '900', `height` int NOT NULL DEFAULT '200', `yaxismin` double NOT NULL DEFAULT '0', `yaxismax` double NOT NULL DEFAULT '100', `templateid` bigint unsigned DEFAULT NULL, `show_work_period` int NOT NULL DEFAULT '1', `show_triggers` int NOT NULL DEFAULT '1', `graphtype` int NOT NULL DEFAULT '0', `show_legend` int NOT NULL DEFAULT '1', `show_3d` int NOT NULL DEFAULT '0', `percent_left` double NOT NULL DEFAULT '0', `percent_right` double NOT NULL DEFAULT '0', `ymin_type` int NOT NULL DEFAULT '0', `ymax_type` int NOT NULL DEFAULT '0', `ymin_itemid` bigint unsigned DEFAULT NULL, `ymax_itemid` bigint unsigned DEFAULT NULL, `flags` int NOT NULL DEFAULT '0', `discover` int NOT NULL DEFAULT '0', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`graphid`), KEY `graphs_1` (`name`), KEY `graphs_2` (`templateid`), KEY `graphs_3` (`ymin_itemid`), KEY `graphs_4` (`ymax_itemid`), CONSTRAINT `c_graphs_1` FOREIGN KEY (`templateid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE, CONSTRAINT `c_graphs_2` FOREIGN KEY (`ymin_itemid`) REFERENCES `items` (`itemid`), CONSTRAINT `c_graphs_3` FOREIGN KEY (`ymax_itemid`) REFERENCES `items` (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graphs` -- LOCK TABLES `graphs` WRITE; /*!40000 ALTER TABLE `graphs` DISABLE KEYS */; INSERT INTO `graphs` VALUES (1,'g10_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'237eac48d01a42e08b8d29d1d0887198'),(2,'g10_1',900,200,0,100,1,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(3,'g10_1',900,200,0,100,2,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(4,'g10_1',900,200,0,100,2,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(5,'g9_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'5df38184ddd040de83f05f7eb7546dc6'),(6,'g9_1',900,200,0,100,5,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(7,'g9_1',900,200,0,100,6,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(8,'g9_1',900,200,0,100,7,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(9,'g9_1',900,200,0,100,8,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(10,'g9_1',900,200,0,100,8,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(11,'g8_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'82e9498ddeb448e7bf2064c42beb32cc'),(12,'g8_1',900,200,0,100,11,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(13,'g8_1',900,200,0,100,12,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(14,'g8_1',900,200,0,100,13,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(15,'g8_1',900,200,0,100,13,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(16,'g6_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'acb03c06365c41e99aacb3620c7a0a79'),(17,'g6_1',900,200,0,100,16,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(19,'g6_1',900,200,0,100,17,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(22,'g1_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'a0652460dd264d7db8747a4de1ca20f1'),(23,'g1_1',900,200,0,100,22,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(24,'g2_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'b8b498610d514d01906548f85b095a6b'),(25,'g2_1',900,200,0,100,24,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(26,'g2_1',900,200,0,100,24,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(27,'g3_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'a345c475026b485ba75c8b5d6648691b'),(28,'g3_1',900,200,0,100,27,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(29,'g4_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'e7769676e86c42fc9376b53fbe46d899'),(30,'g4_1',900,200,0,100,29,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(31,'g4_1',900,200,0,100,30,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(32,'g4_1',900,200,0,100,30,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(33,'g5_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'486cb0239fa94412ad6d48a74ddbdbd6'),(34,'g5_1',900,200,0,100,33,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(35,'g5_1',900,200,0,100,34,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(36,'g7_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'bcf65abc9e3d4632ab03daf6939c75f7'),(37,'g7_1',900,200,0,100,36,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(38,'g7_1',900,200,0,100,37,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(39,'g7_1',900,200,0,100,38,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(40,'g7_1',900,200,0,100,38,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''); /*!40000 ALTER TABLE `graphs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graphs_items` -- DROP TABLE IF EXISTS `graphs_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `graphs_items` ( `gitemid` bigint unsigned NOT NULL, `graphid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `drawtype` int NOT NULL DEFAULT '0', `sortorder` int NOT NULL DEFAULT '0', `color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '009600', `yaxisside` int NOT NULL DEFAULT '0', `calc_fnc` int NOT NULL DEFAULT '2', `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`gitemid`), KEY `graphs_items_1` (`itemid`), KEY `graphs_items_2` (`graphid`), CONSTRAINT `c_graphs_items_1` FOREIGN KEY (`graphid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE, CONSTRAINT `c_graphs_items_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graphs_items` -- LOCK TABLES `graphs_items` WRITE; /*!40000 ALTER TABLE `graphs_items` DISABLE KEYS */; INSERT INTO `graphs_items` VALUES (1,1,75,0,0,'1A7C11',0,7,0),(2,2,76,0,0,'1A7C11',0,7,0),(3,3,77,0,0,'1A7C11',0,7,0),(4,4,78,0,0,'1A7C11',0,7,0),(5,5,59,0,0,'1A7C11',0,7,0),(6,5,65,0,1,'274482',0,7,0),(7,6,60,0,0,'1A7C11',0,7,0),(8,6,66,0,1,'274482',0,7,0),(9,7,61,0,0,'1A7C11',0,7,0),(10,7,67,0,1,'274482',0,7,0),(11,8,62,0,0,'1A7C11',0,7,0),(12,8,68,0,1,'274482',0,7,0),(13,9,63,0,0,'1A7C11',0,7,0),(14,9,69,0,1,'274482',0,7,0),(15,10,64,0,0,'1A7C11',0,7,0),(16,10,70,0,1,'274482',0,7,0),(17,1,71,0,1,'274482',0,7,0),(18,2,72,0,1,'274482',0,7,0),(19,3,73,0,1,'274482',0,7,0),(20,4,74,0,1,'274482',0,7,0),(21,11,49,0,0,'1A7C11',0,7,0),(22,11,54,0,1,'274482',0,7,0),(23,12,50,0,0,'1A7C11',0,7,0),(24,12,55,0,1,'274482',0,7,0),(25,13,51,0,0,'1A7C11',0,7,0),(26,13,56,0,1,'274482',0,7,0),(27,14,52,0,0,'1A7C11',0,7,0),(28,14,57,0,1,'274482',0,7,0),(29,15,53,0,0,'1A7C11',0,7,0),(30,15,58,0,1,'274482',0,7,0),(31,16,33,0,0,'1A7C11',0,7,0),(32,16,36,0,1,'274482',0,7,0),(33,17,34,0,0,'1A7C11',0,7,0),(34,17,37,0,1,'274482',0,7,0),(37,19,35,0,0,'1A7C11',0,7,0),(38,19,38,0,1,'274482',0,7,0),(43,22,5,0,0,'1A7C11',0,7,0),(44,22,7,0,1,'274482',0,7,0),(45,22,28,0,2,'F63100',0,7,0),(46,22,31,0,3,'2774A4',0,7,0),(49,23,6,0,0,'1A7C11',0,7,0),(50,23,8,0,1,'274482',0,7,0),(51,23,29,0,2,'F63100',0,7,0),(52,23,32,0,3,'2774A4',0,7,0),(55,24,9,0,0,'1A7C11',0,7,0),(56,24,12,0,1,'274482',0,7,0),(57,24,20,0,2,'F63100',0,7,0),(58,24,24,0,3,'2774A4',0,7,0),(59,24,41,0,4,'A54F10',0,7,0),(60,24,46,0,5,'FC6EA3',0,7,0),(61,24,51,0,6,'6C59DC',0,7,0),(62,24,56,0,7,'AC8C14',0,7,0),(63,24,62,0,8,'611F27',0,7,0),(64,24,68,0,9,'F230E0',0,7,0),(65,24,72,0,10,'5CCD18',0,7,0),(66,24,76,0,11,'BB2A02',0,7,0),(67,25,10,0,0,'1A7C11',0,7,0),(68,25,13,0,1,'274482',0,7,0),(69,25,21,0,2,'F63100',0,7,0),(70,25,25,0,3,'2774A4',0,7,0),(71,25,42,0,4,'A54F10',0,7,0),(72,25,47,0,5,'FC6EA3',0,7,0),(73,25,52,0,6,'6C59DC',0,7,0),(74,25,57,0,7,'AC8C14',0,7,0),(75,25,63,0,8,'611F27',0,7,0),(76,25,69,0,9,'F230E0',0,7,0),(77,25,73,0,10,'5CCD18',0,7,0),(78,25,77,0,11,'BB2A02',0,7,0),(79,26,11,0,0,'1A7C11',0,7,0),(80,26,14,0,1,'274482',0,7,0),(81,26,22,0,2,'F63100',0,7,0),(82,26,26,0,3,'2774A4',0,7,0),(83,26,43,0,4,'A54F10',0,7,0),(84,26,48,0,5,'FC6EA3',0,7,0),(85,26,53,0,6,'6C59DC',0,7,0),(86,26,58,0,7,'AC8C14',0,7,0),(87,26,64,0,8,'611F27',0,7,0),(88,26,70,0,9,'F230E0',0,7,0),(89,26,74,0,10,'5CCD18',0,7,0),(90,26,78,0,11,'BB2A02',0,7,0),(91,27,15,0,0,'1A7C11',0,7,0),(92,27,17,0,1,'274482',0,7,0),(93,27,34,0,2,'F63100',0,7,0),(94,27,37,0,3,'2774A4',0,7,0),(95,28,16,0,0,'1A7C11',0,7,0),(96,28,18,0,1,'274482',0,7,0),(97,28,35,0,2,'F63100',0,7,0),(98,28,38,0,3,'2774A4',0,7,0),(99,29,19,0,0,'1A7C11',0,7,0),(100,29,23,0,1,'274482',0,7,0),(101,29,40,0,2,'F63100',0,7,0),(102,29,45,0,3,'2774A4',0,7,0),(103,29,50,0,4,'A54F10',0,7,0),(104,29,55,0,5,'FC6EA3',0,7,0),(105,29,61,0,6,'6C59DC',0,7,0),(106,29,67,0,7,'AC8C14',0,7,0),(107,30,20,0,0,'1A7C11',0,7,0),(108,30,24,0,1,'274482',0,7,0),(109,30,41,0,2,'F63100',0,7,0),(110,30,46,0,3,'2774A4',0,7,0),(111,30,51,0,4,'A54F10',0,7,0),(112,30,56,0,5,'FC6EA3',0,7,0),(113,30,62,0,6,'6C59DC',0,7,0),(114,30,68,0,7,'AC8C14',0,7,0),(115,31,21,0,0,'1A7C11',0,7,0),(116,31,25,0,1,'274482',0,7,0),(117,31,42,0,2,'F63100',0,7,0),(118,31,47,0,3,'2774A4',0,7,0),(119,31,52,0,4,'A54F10',0,7,0),(120,31,57,0,5,'FC6EA3',0,7,0),(121,31,63,0,6,'6C59DC',0,7,0),(122,31,69,0,7,'AC8C14',0,7,0),(123,32,22,0,0,'1A7C11',0,7,0),(124,32,26,0,1,'274482',0,7,0),(125,32,43,0,2,'F63100',0,7,0),(126,32,48,0,3,'2774A4',0,7,0),(127,32,53,0,4,'A54F10',0,7,0),(128,32,58,0,5,'FC6EA3',0,7,0),(129,32,64,0,6,'6C59DC',0,7,0),(130,32,70,0,7,'AC8C14',0,7,0),(131,33,27,0,0,'1A7C11',0,7,0),(132,33,30,0,1,'274482',0,7,0),(135,34,28,0,0,'1A7C11',0,7,0),(136,34,31,0,1,'274482',0,7,0),(139,35,29,0,0,'1A7C11',0,7,0),(140,35,32,0,1,'274482',0,7,0),(143,36,39,0,0,'1A7C11',0,7,0),(144,36,44,0,1,'274482',0,7,0),(145,36,60,0,2,'F63100',0,7,0),(146,36,66,0,3,'2774A4',0,7,0),(147,37,40,0,0,'1A7C11',0,7,0),(148,37,45,0,1,'274482',0,7,0),(149,37,61,0,2,'F63100',0,7,0),(150,37,67,0,3,'2774A4',0,7,0),(151,38,41,0,0,'1A7C11',0,7,0),(152,38,46,0,1,'274482',0,7,0),(153,38,62,0,2,'F63100',0,7,0),(154,38,68,0,3,'2774A4',0,7,0),(155,39,42,0,0,'1A7C11',0,7,0),(156,39,47,0,1,'274482',0,7,0),(157,39,63,0,2,'F63100',0,7,0),(158,39,69,0,3,'2774A4',0,7,0),(159,40,43,0,0,'1A7C11',0,7,0),(160,40,48,0,1,'274482',0,7,0),(161,40,64,0,2,'F63100',0,7,0),(162,40,70,0,3,'2774A4',0,7,0); /*!40000 ALTER TABLE `graphs_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `group_discovery` -- DROP TABLE IF EXISTS `group_discovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `group_discovery` ( `groupid` bigint unsigned NOT NULL, `parent_group_prototypeid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `lastcheck` int NOT NULL DEFAULT '0', `ts_delete` int NOT NULL DEFAULT '0', PRIMARY KEY (`groupid`), KEY `c_group_discovery_2` (`parent_group_prototypeid`), CONSTRAINT `c_group_discovery_1` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE, CONSTRAINT `c_group_discovery_2` FOREIGN KEY (`parent_group_prototypeid`) REFERENCES `group_prototype` (`group_prototypeid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `group_discovery` -- LOCK TABLES `group_discovery` WRITE; /*!40000 ALTER TABLE `group_discovery` DISABLE KEYS */; /*!40000 ALTER TABLE `group_discovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `group_prototype` -- DROP TABLE IF EXISTS `group_prototype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `group_prototype` ( `group_prototypeid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `groupid` bigint unsigned DEFAULT NULL, `templateid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`group_prototypeid`), KEY `group_prototype_1` (`hostid`), KEY `c_group_prototype_2` (`groupid`), KEY `c_group_prototype_3` (`templateid`), CONSTRAINT `c_group_prototype_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_group_prototype_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`), CONSTRAINT `c_group_prototype_3` FOREIGN KEY (`templateid`) REFERENCES `group_prototype` (`group_prototypeid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `group_prototype` -- LOCK TABLES `group_prototype` WRITE; /*!40000 ALTER TABLE `group_prototype` DISABLE KEYS */; /*!40000 ALTER TABLE `group_prototype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ha_node` -- DROP TABLE IF EXISTS `ha_node`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ha_node` ( `ha_nodeid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `port` int NOT NULL DEFAULT '10051', `lastaccess` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `ha_sessionid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`ha_nodeid`), UNIQUE KEY `ha_node_1` (`name`), KEY `ha_node_2` (`status`,`lastaccess`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ha_node` -- LOCK TABLES `ha_node` WRITE; /*!40000 ALTER TABLE `ha_node` DISABLE KEYS */; /*!40000 ALTER TABLE `ha_node` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history` -- DROP TABLE IF EXISTS `history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` double NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history` -- LOCK TABLES `history` WRITE; /*!40000 ALTER TABLE `history` DISABLE KEYS */; /*!40000 ALTER TABLE `history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history_log` -- DROP TABLE IF EXISTS `history_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history_log` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `timestamp` int NOT NULL DEFAULT '0', `source` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `severity` int NOT NULL DEFAULT '0', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `logeventid` int NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history_log` -- LOCK TABLES `history_log` WRITE; /*!40000 ALTER TABLE `history_log` DISABLE KEYS */; /*!40000 ALTER TABLE `history_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history_str` -- DROP TABLE IF EXISTS `history_str`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history_str` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history_str` -- LOCK TABLES `history_str` WRITE; /*!40000 ALTER TABLE `history_str` DISABLE KEYS */; /*!40000 ALTER TABLE `history_str` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history_text` -- DROP TABLE IF EXISTS `history_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history_text` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history_text` -- LOCK TABLES `history_text` WRITE; /*!40000 ALTER TABLE `history_text` DISABLE KEYS */; /*!40000 ALTER TABLE `history_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history_uint` -- DROP TABLE IF EXISTS `history_uint`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history_uint` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` bigint unsigned NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history_uint` -- LOCK TABLES `history_uint` WRITE; /*!40000 ALTER TABLE `history_uint` DISABLE KEYS */; /*!40000 ALTER TABLE `history_uint` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host_discovery` -- DROP TABLE IF EXISTS `host_discovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `host_discovery` ( `hostid` bigint unsigned NOT NULL, `parent_hostid` bigint unsigned DEFAULT NULL, `parent_itemid` bigint unsigned DEFAULT NULL, `host` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `lastcheck` int NOT NULL DEFAULT '0', `ts_delete` int NOT NULL DEFAULT '0', PRIMARY KEY (`hostid`), KEY `c_host_discovery_2` (`parent_hostid`), KEY `c_host_discovery_3` (`parent_itemid`), CONSTRAINT `c_host_discovery_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_host_discovery_2` FOREIGN KEY (`parent_hostid`) REFERENCES `hosts` (`hostid`), CONSTRAINT `c_host_discovery_3` FOREIGN KEY (`parent_itemid`) REFERENCES `items` (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host_discovery` -- LOCK TABLES `host_discovery` WRITE; /*!40000 ALTER TABLE `host_discovery` DISABLE KEYS */; /*!40000 ALTER TABLE `host_discovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host_inventory` -- DROP TABLE IF EXISTS `host_inventory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `host_inventory` ( `hostid` bigint unsigned NOT NULL, `inventory_mode` int NOT NULL DEFAULT '0', `type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `type_full` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `alias` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `os` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `os_full` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `os_short` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `serialno_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `serialno_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tag` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `asset_tag` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `macaddress_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `macaddress_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `hardware` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `hardware_full` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `software` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_full` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `software_app_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_app_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_app_c` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_app_d` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_app_e` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `contact` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `location` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `location_lat` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `location_lon` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `chassis` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `model` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `hw_arch` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `vendor` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `contract_number` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `installer_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `deployment_status` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url_a` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url_b` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url_c` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_networks` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `host_netmask` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_router` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `oob_ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `oob_netmask` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `oob_router` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `date_hw_purchase` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `date_hw_install` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `date_hw_expiry` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `date_hw_decomm` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_address_a` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_address_b` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_address_c` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_city` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_state` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_country` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_zip` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_rack` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `poc_1_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_email` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_phone_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_phone_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_cell` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_screen` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `poc_2_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_email` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_phone_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_phone_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_cell` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_screen` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`hostid`), CONSTRAINT `c_host_inventory_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host_inventory` -- LOCK TABLES `host_inventory` WRITE; /*!40000 ALTER TABLE `host_inventory` DISABLE KEYS */; /*!40000 ALTER TABLE `host_inventory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host_rtdata` -- DROP TABLE IF EXISTS `host_rtdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `host_rtdata` ( `hostid` bigint unsigned NOT NULL, `active_available` int NOT NULL DEFAULT '0', `lastaccess` int NOT NULL DEFAULT '0', `version` int NOT NULL DEFAULT '0', `compatibility` int NOT NULL DEFAULT '0', PRIMARY KEY (`hostid`), CONSTRAINT `c_host_rtdata_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host_rtdata` -- LOCK TABLES `host_rtdata` WRITE; /*!40000 ALTER TABLE `host_rtdata` DISABLE KEYS */; INSERT INTO `host_rtdata` VALUES (4,0,0,0,0),(5,0,0,0,0); /*!40000 ALTER TABLE `host_rtdata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host_tag` -- DROP TABLE IF EXISTS `host_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `host_tag` ( `hosttagid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `automatic` int NOT NULL DEFAULT '0', PRIMARY KEY (`hosttagid`), KEY `host_tag_1` (`hostid`), CONSTRAINT `c_host_tag_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host_tag` -- LOCK TABLES `host_tag` WRITE; /*!40000 ALTER TABLE `host_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `host_tag` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `host_tag_insert` AFTER INSERT ON `host_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (2,new.hosttagid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `host_tag_update` AFTER UPDATE ON `host_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (2,old.hosttagid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `host_tag_delete` BEFORE DELETE ON `host_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (2,old.hosttagid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `hostmacro` -- DROP TABLE IF EXISTS `hostmacro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hostmacro` ( `hostmacroid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `macro` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `type` int NOT NULL DEFAULT '0', `automatic` int NOT NULL DEFAULT '0', PRIMARY KEY (`hostmacroid`), UNIQUE KEY `hostmacro_1` (`hostid`,`macro`), CONSTRAINT `c_hostmacro_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hostmacro` -- LOCK TABLES `hostmacro` WRITE; /*!40000 ALTER TABLE `hostmacro` DISABLE KEYS */; /*!40000 ALTER TABLE `hostmacro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hosts` -- DROP TABLE IF EXISTS `hosts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hosts` ( `hostid` bigint unsigned NOT NULL, `proxy_hostid` bigint unsigned DEFAULT NULL, `host` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '0', `ipmi_authtype` int NOT NULL DEFAULT '-1', `ipmi_privilege` int NOT NULL DEFAULT '2', `ipmi_username` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ipmi_password` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `maintenanceid` bigint unsigned DEFAULT NULL, `maintenance_status` int NOT NULL DEFAULT '0', `maintenance_type` int NOT NULL DEFAULT '0', `maintenance_from` int NOT NULL DEFAULT '0', `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `flags` int NOT NULL DEFAULT '0', `templateid` bigint unsigned DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `tls_connect` int NOT NULL DEFAULT '1', `tls_accept` int NOT NULL DEFAULT '1', `tls_issuer` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tls_subject` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tls_psk_identity` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tls_psk` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `proxy_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `auto_compress` int NOT NULL DEFAULT '1', `discover` int NOT NULL DEFAULT '0', `custom_interfaces` int NOT NULL DEFAULT '0', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `name_upper` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`hostid`), KEY `hosts_1` (`host`), KEY `hosts_2` (`status`), KEY `hosts_3` (`proxy_hostid`), KEY `hosts_4` (`name`), KEY `hosts_5` (`maintenanceid`), KEY `hosts_6` (`name_upper`), KEY `c_hosts_3` (`templateid`), CONSTRAINT `c_hosts_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`), CONSTRAINT `c_hosts_2` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`), CONSTRAINT `c_hosts_3` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hosts` -- LOCK TABLES `hosts` WRITE; /*!40000 ALTER TABLE `hosts` DISABLE KEYS */; INSERT INTO `hosts` VALUES (4,NULL,'h',0,-1,2,'','',NULL,0,0,0,'h',0,NULL,'',1,1,'','','','','',1,0,0,'','H'),(5,NULL,'h2',0,-1,2,'','',NULL,0,0,0,'h2',0,NULL,'',1,1,'','','','','',1,0,0,'','H2'),(6,NULL,'t1',3,-1,2,'','',NULL,0,0,0,'t1',0,NULL,'',1,1,'','','','','',1,0,0,'7d58d4d4ba004ccfa7d78dfd97d6c1f1','T1'),(7,NULL,'t2',3,-1,2,'','',NULL,0,0,0,'t2',0,NULL,'',1,1,'','','','','',1,0,0,'01ef5965ec84463fb8e7cfa5c2ecf284','T2'),(8,NULL,'t3',3,-1,2,'','',NULL,0,0,0,'t3',0,NULL,'',1,1,'','','','','',1,0,0,'c13ca0808758460187e1ca282838f9a9','T3'),(9,NULL,'t4',3,-1,2,'','',NULL,0,0,0,'t4',0,NULL,'',1,1,'','','','','',1,0,0,'d34313cb8d7648e9b3dae4c83ab7f082','T4'),(10,NULL,'t5',3,-1,2,'','',NULL,0,0,0,'t5',0,NULL,'',1,1,'','','','','',1,0,0,'200847e3e71e4549b74000b8d24a4b7a','T5'),(11,NULL,'t6',3,-1,2,'','',NULL,0,0,0,'t6',0,NULL,'',1,1,'','','','','',1,0,0,'a1f09b64a1c24fb4ab4b580bbb4f7422','T6'),(12,NULL,'t7',3,-1,2,'','',NULL,0,0,0,'t7',0,NULL,'',1,1,'','','','','',1,0,0,'9fde7b6034a9497983f30da19a249308','T7'),(13,NULL,'t8',3,-1,2,'','',NULL,0,0,0,'t8',0,NULL,'',1,1,'','','','','',1,0,0,'f7cc6223463545898129a4b10eac9fdd','T8'),(14,NULL,'t9',3,-1,2,'','',NULL,0,0,0,'t9',0,NULL,'',1,1,'','','','','',1,0,0,'16cc006f3e8b47c4be0238ed75fc766a','T9'),(15,NULL,'t10',3,-1,2,'','',NULL,0,0,0,'t10',0,NULL,'',1,1,'','','','','',1,0,0,'2b4fa2906104419b87d9f2a62be402bb','T10'); /*!40000 ALTER TABLE `hosts` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_name_upper_insert` BEFORE INSERT ON `hosts` FOR EACH ROW set new.name_upper=upper(new.name) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_insert` AFTER INSERT ON `hosts` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (1,new.hostid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_name_upper_update` BEFORE UPDATE ON `hosts` FOR EACH ROW begin if new.name<>old.name then set new.name_upper=upper(new.name); end if; end */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_update` AFTER UPDATE ON `hosts` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (1,old.hostid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_delete` BEFORE DELETE ON `hosts` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (1,old.hostid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `hosts_groups` -- DROP TABLE IF EXISTS `hosts_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hosts_groups` ( `hostgroupid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `groupid` bigint unsigned NOT NULL, PRIMARY KEY (`hostgroupid`), UNIQUE KEY `hosts_groups_1` (`hostid`,`groupid`), KEY `hosts_groups_2` (`groupid`), CONSTRAINT `c_hosts_groups_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_hosts_groups_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hosts_groups` -- LOCK TABLES `hosts_groups` WRITE; /*!40000 ALTER TABLE `hosts_groups` DISABLE KEYS */; INSERT INTO `hosts_groups` VALUES (4,4,19),(5,5,19),(6,6,1),(7,7,1),(8,8,1),(9,9,1),(10,10,1),(11,11,1),(12,12,1),(13,13,1),(14,14,1),(15,15,1); /*!40000 ALTER TABLE `hosts_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hosts_templates` -- DROP TABLE IF EXISTS `hosts_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hosts_templates` ( `hosttemplateid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `templateid` bigint unsigned NOT NULL, `link_type` int NOT NULL DEFAULT '0', PRIMARY KEY (`hosttemplateid`), UNIQUE KEY `hosts_templates_1` (`hostid`,`templateid`), KEY `hosts_templates_2` (`templateid`), CONSTRAINT `c_hosts_templates_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_hosts_templates_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hosts_templates` -- LOCK TABLES `hosts_templates` WRITE; /*!40000 ALTER TABLE `hosts_templates` DISABLE KEYS */; INSERT INTO `hosts_templates` VALUES (4,6,10,0),(5,7,9,0),(6,9,12,0),(7,9,13,0),(8,12,14,0),(9,8,11,0),(10,4,6,0),(11,4,7,0),(12,5,7,0),(13,5,8,0),(14,7,15,0); /*!40000 ALTER TABLE `hosts_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `housekeeper` -- DROP TABLE IF EXISTS `housekeeper`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `housekeeper` ( `housekeeperid` bigint unsigned NOT NULL, `tablename` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `field` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` bigint unsigned NOT NULL, PRIMARY KEY (`housekeeperid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `housekeeper` -- LOCK TABLES `housekeeper` WRITE; /*!40000 ALTER TABLE `housekeeper` DISABLE KEYS */; INSERT INTO `housekeeper` VALUES (1,'events','lldruleid',42274),(2,'events','lldruleid',42275),(3,'events','lldruleid',42276),(4,'events','lldruleid',39807),(5,'events','lldruleid',44058),(6,'events','triggerid',13467),(7,'events','triggerid',13468),(8,'events','triggerid',13470),(9,'events','triggerid',13471),(10,'events','triggerid',13472),(11,'events','triggerid',13473),(12,'events','triggerid',13474),(13,'events','triggerid',13475),(14,'events','triggerid',13476),(15,'events','triggerid',13477),(16,'events','triggerid',13479),(17,'events','triggerid',13480),(18,'events','triggerid',13481),(19,'events','triggerid',13482),(20,'events','triggerid',13483),(21,'events','triggerid',13484),(22,'events','triggerid',13485),(23,'events','triggerid',13486),(24,'events','triggerid',13487),(25,'events','triggerid',13488),(26,'events','triggerid',13489),(27,'events','triggerid',13490),(28,'events','triggerid',13436),(29,'events','triggerid',13075),(30,'events','triggerid',13537),(31,'events','triggerid',13558),(32,'events','triggerid',13560),(33,'events','triggerid',13563),(34,'events','triggerid',13567),(35,'events','triggerid',13570),(36,'events','triggerid',13571),(37,'events','triggerid',15854),(38,'events','triggerid',15856),(39,'events','triggerid',16274),(40,'events','triggerid',17537),(41,'events','triggerid',17538),(42,'events','triggerid',18533),(43,'events','triggerid',18532),(44,'events','triggerid',18982),(45,'events','triggerid',18983),(46,'events','triggerid',18981),(47,'events','triggerid',21198),(48,'events','triggerid',22385),(49,'events','triggerid',22386),(50,'events','triggerid',22387),(51,'events','triggerid',22393),(52,'events','triggerid',22388),(53,'events','triggerid',22389),(54,'events','triggerid',22394),(55,'events','triggerid',22395),(56,'events','triggerid',22382),(57,'events','triggerid',22383),(58,'events','triggerid',22392),(59,'events','triggerid',22391),(60,'events','triggerid',22384),(61,'events','triggerid',22390),(62,'events','itemid',42227),(63,'history','itemid',42227),(64,'history_log','itemid',42227),(65,'history_str','itemid',42227),(66,'history_text','itemid',42227),(67,'history_uint','itemid',42227),(68,'trends','itemid',42227),(69,'trends_uint','itemid',42227),(70,'events','itemid',42237),(71,'history','itemid',42237),(72,'history_log','itemid',42237),(73,'history_str','itemid',42237),(74,'history_text','itemid',42237),(75,'history_uint','itemid',42237),(76,'trends','itemid',42237),(77,'trends_uint','itemid',42237),(78,'events','itemid',42250),(79,'history','itemid',42250),(80,'history_log','itemid',42250),(81,'history_str','itemid',42250),(82,'history_text','itemid',42250),(83,'history_uint','itemid',42250),(84,'trends','itemid',42250),(85,'trends_uint','itemid',42250),(86,'events','itemid',42251),(87,'history','itemid',42251),(88,'history_log','itemid',42251),(89,'history_str','itemid',42251),(90,'history_text','itemid',42251),(91,'history_uint','itemid',42251),(92,'trends','itemid',42251),(93,'trends_uint','itemid',42251),(94,'events','itemid',42252),(95,'history','itemid',42252),(96,'history_log','itemid',42252),(97,'history_str','itemid',42252),(98,'history_text','itemid',42252),(99,'history_uint','itemid',42252),(100,'trends','itemid',42252),(101,'trends_uint','itemid',42252),(102,'events','itemid',42253),(103,'history','itemid',42253),(104,'history_log','itemid',42253),(105,'history_str','itemid',42253),(106,'history_text','itemid',42253),(107,'history_uint','itemid',42253),(108,'trends','itemid',42253),(109,'trends_uint','itemid',42253),(110,'events','itemid',42254),(111,'history','itemid',42254),(112,'history_log','itemid',42254),(113,'history_str','itemid',42254),(114,'history_text','itemid',42254),(115,'history_uint','itemid',42254),(116,'trends','itemid',42254),(117,'trends_uint','itemid',42254),(118,'events','itemid',42255),(119,'history','itemid',42255),(120,'history_log','itemid',42255),(121,'history_str','itemid',42255),(122,'history_text','itemid',42255),(123,'history_uint','itemid',42255),(124,'trends','itemid',42255),(125,'trends_uint','itemid',42255),(126,'events','itemid',42256),(127,'history','itemid',42256),(128,'history_log','itemid',42256),(129,'history_str','itemid',42256),(130,'history_text','itemid',42256),(131,'history_uint','itemid',42256),(132,'trends','itemid',42256),(133,'trends_uint','itemid',42256),(134,'events','itemid',42259),(135,'history','itemid',42259),(136,'history_log','itemid',42259),(137,'history_str','itemid',42259),(138,'history_text','itemid',42259),(139,'history_uint','itemid',42259),(140,'trends','itemid',42259),(141,'trends_uint','itemid',42259),(142,'events','itemid',42249),(143,'history','itemid',42249),(144,'history_log','itemid',42249),(145,'history_str','itemid',42249),(146,'history_text','itemid',42249),(147,'history_uint','itemid',42249),(148,'trends','itemid',42249),(149,'trends_uint','itemid',42249),(150,'events','itemid',42257),(151,'history','itemid',42257),(152,'history_log','itemid',42257),(153,'history_str','itemid',42257),(154,'history_text','itemid',42257),(155,'history_uint','itemid',42257),(156,'trends','itemid',42257),(157,'trends_uint','itemid',42257),(158,'events','itemid',42260),(159,'history','itemid',42260),(160,'history_log','itemid',42260),(161,'history_str','itemid',42260),(162,'history_text','itemid',42260),(163,'history_uint','itemid',42260),(164,'trends','itemid',42260),(165,'trends_uint','itemid',42260),(166,'events','itemid',42261),(167,'history','itemid',42261),(168,'history_log','itemid',42261),(169,'history_str','itemid',42261),(170,'history_text','itemid',42261),(171,'history_uint','itemid',42261),(172,'trends','itemid',42261),(173,'trends_uint','itemid',42261),(174,'events','itemid',42269),(175,'history','itemid',42269),(176,'history_log','itemid',42269),(177,'history_str','itemid',42269),(178,'history_text','itemid',42269),(179,'history_uint','itemid',42269),(180,'trends','itemid',42269),(181,'trends_uint','itemid',42269),(182,'events','itemid',42262),(183,'history','itemid',42262),(184,'history_log','itemid',42262),(185,'history_str','itemid',42262),(186,'history_text','itemid',42262),(187,'history_uint','itemid',42262),(188,'trends','itemid',42262),(189,'trends_uint','itemid',42262),(190,'events','itemid',42263),(191,'history','itemid',42263),(192,'history_log','itemid',42263),(193,'history_str','itemid',42263),(194,'history_text','itemid',42263),(195,'history_uint','itemid',42263),(196,'trends','itemid',42263),(197,'trends_uint','itemid',42263),(198,'events','itemid',42264),(199,'history','itemid',42264),(200,'history_log','itemid',42264),(201,'history_str','itemid',42264),(202,'history_text','itemid',42264),(203,'history_uint','itemid',42264),(204,'trends','itemid',42264),(205,'trends_uint','itemid',42264),(206,'events','itemid',42265),(207,'history','itemid',42265),(208,'history_log','itemid',42265),(209,'history_str','itemid',42265),(210,'history_text','itemid',42265),(211,'history_uint','itemid',42265),(212,'trends','itemid',42265),(213,'trends_uint','itemid',42265),(214,'events','itemid',42258),(215,'history','itemid',42258),(216,'history_log','itemid',42258),(217,'history_str','itemid',42258),(218,'history_text','itemid',42258),(219,'history_uint','itemid',42258),(220,'trends','itemid',42258),(221,'trends_uint','itemid',42258),(222,'events','itemid',42248),(223,'history','itemid',42248),(224,'history_log','itemid',42248),(225,'history_str','itemid',42248),(226,'history_text','itemid',42248),(227,'history_uint','itemid',42248),(228,'trends','itemid',42248),(229,'trends_uint','itemid',42248),(230,'events','itemid',42247),(231,'history','itemid',42247),(232,'history_log','itemid',42247),(233,'history_str','itemid',42247),(234,'history_text','itemid',42247),(235,'history_uint','itemid',42247),(236,'trends','itemid',42247),(237,'trends_uint','itemid',42247),(238,'events','itemid',42246),(239,'history','itemid',42246),(240,'history_log','itemid',42246),(241,'history_str','itemid',42246),(242,'history_text','itemid',42246),(243,'history_uint','itemid',42246),(244,'trends','itemid',42246),(245,'trends_uint','itemid',42246),(246,'events','itemid',42229),(247,'history','itemid',42229),(248,'history_log','itemid',42229),(249,'history_str','itemid',42229),(250,'history_text','itemid',42229),(251,'history_uint','itemid',42229),(252,'trends','itemid',42229),(253,'trends_uint','itemid',42229),(254,'events','itemid',42230),(255,'history','itemid',42230),(256,'history_log','itemid',42230),(257,'history_str','itemid',42230),(258,'history_text','itemid',42230),(259,'history_uint','itemid',42230),(260,'trends','itemid',42230),(261,'trends_uint','itemid',42230),(262,'events','itemid',42231),(263,'history','itemid',42231),(264,'history_log','itemid',42231),(265,'history_str','itemid',42231),(266,'history_text','itemid',42231),(267,'history_uint','itemid',42231),(268,'trends','itemid',42231),(269,'trends_uint','itemid',42231),(270,'events','itemid',42232),(271,'history','itemid',42232),(272,'history_log','itemid',42232),(273,'history_str','itemid',42232),(274,'history_text','itemid',42232),(275,'history_uint','itemid',42232),(276,'trends','itemid',42232),(277,'trends_uint','itemid',42232),(278,'events','itemid',42233),(279,'history','itemid',42233),(280,'history_log','itemid',42233),(281,'history_str','itemid',42233),(282,'history_text','itemid',42233),(283,'history_uint','itemid',42233),(284,'trends','itemid',42233),(285,'trends_uint','itemid',42233),(286,'events','itemid',42234),(287,'history','itemid',42234),(288,'history_log','itemid',42234),(289,'history_str','itemid',42234),(290,'history_text','itemid',42234),(291,'history_uint','itemid',42234),(292,'trends','itemid',42234),(293,'trends_uint','itemid',42234),(294,'events','itemid',42235),(295,'history','itemid',42235),(296,'history_log','itemid',42235),(297,'history_str','itemid',42235),(298,'history_text','itemid',42235),(299,'history_uint','itemid',42235),(300,'trends','itemid',42235),(301,'trends_uint','itemid',42235),(302,'events','itemid',42228),(303,'history','itemid',42228),(304,'history_log','itemid',42228),(305,'history_str','itemid',42228),(306,'history_text','itemid',42228),(307,'history_uint','itemid',42228),(308,'trends','itemid',42228),(309,'trends_uint','itemid',42228),(310,'events','itemid',42236),(311,'history','itemid',42236),(312,'history_log','itemid',42236),(313,'history_str','itemid',42236),(314,'history_text','itemid',42236),(315,'history_uint','itemid',42236),(316,'trends','itemid',42236),(317,'trends_uint','itemid',42236),(318,'events','itemid',42238),(319,'history','itemid',42238),(320,'history_log','itemid',42238),(321,'history_str','itemid',42238),(322,'history_text','itemid',42238),(323,'history_uint','itemid',42238),(324,'trends','itemid',42238),(325,'trends_uint','itemid',42238),(326,'events','itemid',42239),(327,'history','itemid',42239),(328,'history_log','itemid',42239),(329,'history_str','itemid',42239),(330,'history_text','itemid',42239),(331,'history_uint','itemid',42239),(332,'trends','itemid',42239),(333,'trends_uint','itemid',42239),(334,'events','itemid',42240),(335,'history','itemid',42240),(336,'history_log','itemid',42240),(337,'history_str','itemid',42240),(338,'history_text','itemid',42240),(339,'history_uint','itemid',42240),(340,'trends','itemid',42240),(341,'trends_uint','itemid',42240),(342,'events','itemid',42241),(343,'history','itemid',42241),(344,'history_log','itemid',42241),(345,'history_str','itemid',42241),(346,'history_text','itemid',42241),(347,'history_uint','itemid',42241),(348,'trends','itemid',42241),(349,'trends_uint','itemid',42241),(350,'events','itemid',42242),(351,'history','itemid',42242),(352,'history_log','itemid',42242),(353,'history_str','itemid',42242),(354,'history_text','itemid',42242),(355,'history_uint','itemid',42242),(356,'trends','itemid',42242),(357,'trends_uint','itemid',42242),(358,'events','itemid',44437),(359,'history','itemid',44437),(360,'history_log','itemid',44437),(361,'history_str','itemid',44437),(362,'history_text','itemid',44437),(363,'history_uint','itemid',44437),(364,'trends','itemid',44437),(365,'trends_uint','itemid',44437),(366,'events','itemid',42243),(367,'history','itemid',42243),(368,'history_log','itemid',42243),(369,'history_str','itemid',42243),(370,'history_text','itemid',42243),(371,'history_uint','itemid',42243),(372,'trends','itemid',42243),(373,'trends_uint','itemid',42243),(374,'events','itemid',42244),(375,'history','itemid',42244),(376,'history_log','itemid',42244),(377,'history_str','itemid',42244),(378,'history_text','itemid',42244),(379,'history_uint','itemid',42244),(380,'trends','itemid',42244),(381,'trends_uint','itemid',42244),(382,'events','itemid',42245),(383,'history','itemid',42245),(384,'history_log','itemid',42245),(385,'history_str','itemid',42245),(386,'history_text','itemid',42245),(387,'history_uint','itemid',42245),(388,'trends','itemid',42245),(389,'trends_uint','itemid',42245),(390,'events','itemid',42270),(391,'history','itemid',42270),(392,'history_log','itemid',42270),(393,'history_str','itemid',42270),(394,'history_text','itemid',42270),(395,'history_uint','itemid',42270),(396,'trends','itemid',42270),(397,'trends_uint','itemid',42270),(398,'events','itemid',39805),(399,'history','itemid',39805),(400,'history_log','itemid',39805),(401,'history_str','itemid',39805),(402,'history_text','itemid',39805),(403,'history_uint','itemid',39805),(404,'trends','itemid',39805),(405,'trends_uint','itemid',39805),(406,'events','itemid',42266),(407,'history','itemid',42266),(408,'history_log','itemid',42266),(409,'history_str','itemid',42266),(410,'history_text','itemid',42266),(411,'history_uint','itemid',42266),(412,'trends','itemid',42266),(413,'trends_uint','itemid',42266),(414,'events','itemid',28534),(415,'history','itemid',28534),(416,'history_log','itemid',28534),(417,'history_str','itemid',28534),(418,'history_text','itemid',28534),(419,'history_uint','itemid',28534),(420,'trends','itemid',28534),(421,'trends_uint','itemid',28534),(422,'events','itemid',28249),(423,'history','itemid',28249),(424,'history_log','itemid',28249),(425,'history_str','itemid',28249),(426,'history_text','itemid',28249),(427,'history_uint','itemid',28249),(428,'trends','itemid',28249),(429,'trends_uint','itemid',28249),(430,'events','itemid',25371),(431,'history','itemid',25371),(432,'history_log','itemid',25371),(433,'history_str','itemid',25371),(434,'history_text','itemid',25371),(435,'history_uint','itemid',25371),(436,'trends','itemid',25371),(437,'trends_uint','itemid',25371),(438,'events','itemid',29823),(439,'history','itemid',29823),(440,'history_log','itemid',29823),(441,'history_str','itemid',29823),(442,'history_text','itemid',29823),(443,'history_uint','itemid',29823),(444,'trends','itemid',29823),(445,'trends_uint','itemid',29823),(446,'events','itemid',23252),(447,'history','itemid',23252),(448,'history_log','itemid',23252),(449,'history_str','itemid',23252),(450,'history_text','itemid',23252),(451,'history_uint','itemid',23252),(452,'trends','itemid',23252),(453,'trends_uint','itemid',23252),(454,'events','itemid',33026),(455,'history','itemid',33026),(456,'history_log','itemid',33026),(457,'history_str','itemid',33026),(458,'history_text','itemid',33026),(459,'history_uint','itemid',33026),(460,'trends','itemid',33026),(461,'trends_uint','itemid',33026),(462,'events','itemid',23253),(463,'history','itemid',23253),(464,'history_log','itemid',23253),(465,'history_str','itemid',23253),(466,'history_text','itemid',23253),(467,'history_uint','itemid',23253),(468,'trends','itemid',23253),(469,'trends_uint','itemid',23253),(470,'events','itemid',23255),(471,'history','itemid',23255),(472,'history_log','itemid',23255),(473,'history_str','itemid',23255),(474,'history_text','itemid',23255),(475,'history_uint','itemid',23255),(476,'trends','itemid',23255),(477,'trends_uint','itemid',23255),(478,'events','itemid',23256),(479,'history','itemid',23256),(480,'history_log','itemid',23256),(481,'history_str','itemid',23256),(482,'history_text','itemid',23256),(483,'history_uint','itemid',23256),(484,'trends','itemid',23256),(485,'trends_uint','itemid',23256),(486,'events','itemid',33027),(487,'history','itemid',33027),(488,'history_log','itemid',33027),(489,'history_str','itemid',33027),(490,'history_text','itemid',33027),(491,'history_uint','itemid',33027),(492,'trends','itemid',33027),(493,'trends_uint','itemid',33027),(494,'events','itemid',23257),(495,'history','itemid',23257),(496,'history_log','itemid',23257),(497,'history_str','itemid',23257),(498,'history_text','itemid',23257),(499,'history_uint','itemid',23257),(500,'trends','itemid',23257),(501,'trends_uint','itemid',23257),(502,'events','itemid',23258),(503,'history','itemid',23258),(504,'history_log','itemid',23258),(505,'history_str','itemid',23258),(506,'history_text','itemid',23258),(507,'history_uint','itemid',23258),(508,'trends','itemid',23258),(509,'trends_uint','itemid',23258),(510,'events','itemid',23259),(511,'history','itemid',23259),(512,'history_log','itemid',23259),(513,'history_str','itemid',23259),(514,'history_text','itemid',23259),(515,'history_uint','itemid',23259),(516,'trends','itemid',23259),(517,'trends_uint','itemid',23259),(518,'events','itemid',23260),(519,'history','itemid',23260),(520,'history_log','itemid',23260),(521,'history_str','itemid',23260),(522,'history_text','itemid',23260),(523,'history_uint','itemid',23260),(524,'trends','itemid',23260),(525,'trends_uint','itemid',23260),(526,'events','itemid',25367),(527,'history','itemid',25367),(528,'history_log','itemid',25367),(529,'history_str','itemid',25367),(530,'history_text','itemid',25367),(531,'history_uint','itemid',25367),(532,'trends','itemid',25367),(533,'trends_uint','itemid',25367),(534,'events','itemid',23261),(535,'history','itemid',23261),(536,'history_log','itemid',23261),(537,'history_str','itemid',23261),(538,'history_text','itemid',23261),(539,'history_uint','itemid',23261),(540,'trends','itemid',23261),(541,'trends_uint','itemid',23261),(542,'events','itemid',23262),(543,'history','itemid',23262),(544,'history_log','itemid',23262),(545,'history_str','itemid',23262),(546,'history_text','itemid',23262),(547,'history_uint','itemid',23262),(548,'trends','itemid',23262),(549,'trends_uint','itemid',23262),(550,'events','itemid',28536),(551,'history','itemid',28536),(552,'history_log','itemid',28536),(553,'history_str','itemid',28536),(554,'history_text','itemid',28536),(555,'history_uint','itemid',28536),(556,'trends','itemid',28536),(557,'trends_uint','itemid',28536),(558,'events','itemid',28538),(559,'history','itemid',28538),(560,'history_log','itemid',28538),(561,'history_str','itemid',28538),(562,'history_text','itemid',28538),(563,'history_uint','itemid',28538),(564,'trends','itemid',28538),(565,'trends_uint','itemid',28538),(566,'events','itemid',39823),(567,'history','itemid',39823),(568,'history_log','itemid',39823),(569,'history_str','itemid',39823),(570,'history_text','itemid',39823),(571,'history_uint','itemid',39823),(572,'trends','itemid',39823),(573,'trends_uint','itemid',39823),(574,'events','itemid',23264),(575,'history','itemid',23264),(576,'history_log','itemid',23264),(577,'history_str','itemid',23264),(578,'history_text','itemid',23264),(579,'history_uint','itemid',23264),(580,'trends','itemid',23264),(581,'trends_uint','itemid',23264),(582,'events','itemid',25667),(583,'history','itemid',25667),(584,'history_log','itemid',25667),(585,'history_str','itemid',25667),(586,'history_text','itemid',25667),(587,'history_uint','itemid',25667),(588,'trends','itemid',25667),(589,'trends_uint','itemid',25667),(590,'events','itemid',25668),(591,'history','itemid',25668),(592,'history_log','itemid',25668),(593,'history_str','itemid',25668),(594,'history_text','itemid',25668),(595,'history_uint','itemid',25668),(596,'trends','itemid',25668),(597,'trends_uint','itemid',25668),(598,'events','itemid',23265),(599,'history','itemid',23265),(600,'history_log','itemid',23265),(601,'history_str','itemid',23265),(602,'history_text','itemid',23265),(603,'history_uint','itemid',23265),(604,'trends','itemid',23265),(605,'trends_uint','itemid',23265),(606,'events','itemid',34319),(607,'history','itemid',34319),(608,'history_log','itemid',34319),(609,'history_str','itemid',34319),(610,'history_text','itemid',34319),(611,'history_uint','itemid',34319),(612,'trends','itemid',34319),(613,'trends_uint','itemid',34319),(614,'events','itemid',34318),(615,'history','itemid',34318),(616,'history_log','itemid',34318),(617,'history_str','itemid',34318),(618,'history_text','itemid',34318),(619,'history_uint','itemid',34318),(620,'trends','itemid',34318),(621,'trends_uint','itemid',34318),(622,'events','itemid',23266),(623,'history','itemid',23266),(624,'history_log','itemid',23266),(625,'history_str','itemid',23266),(626,'history_text','itemid',23266),(627,'history_uint','itemid',23266),(628,'trends','itemid',23266),(629,'trends_uint','itemid',23266),(630,'events','itemid',35277),(631,'history','itemid',35277),(632,'history_log','itemid',35277),(633,'history_str','itemid',35277),(634,'history_text','itemid',35277),(635,'history_uint','itemid',35277),(636,'trends','itemid',35277),(637,'trends_uint','itemid',35277),(638,'events','itemid',23267),(639,'history','itemid',23267),(640,'history_log','itemid',23267),(641,'history_str','itemid',23267),(642,'history_text','itemid',23267),(643,'history_uint','itemid',23267),(644,'trends','itemid',23267),(645,'trends_uint','itemid',23267),(646,'events','itemid',23664),(647,'history','itemid',23664),(648,'history_log','itemid',23664),(649,'history_str','itemid',23664),(650,'history_text','itemid',23664),(651,'history_uint','itemid',23664),(652,'trends','itemid',23664),(653,'trends_uint','itemid',23664),(654,'events','itemid',23268),(655,'history','itemid',23268),(656,'history_log','itemid',23268),(657,'history_str','itemid',23268),(658,'history_text','itemid',23268),(659,'history_uint','itemid',23268),(660,'trends','itemid',23268),(661,'trends_uint','itemid',23268),(662,'events','itemid',23269),(663,'history','itemid',23269),(664,'history_log','itemid',23269),(665,'history_str','itemid',23269),(666,'history_text','itemid',23269),(667,'history_uint','itemid',23269),(668,'trends','itemid',23269),(669,'trends_uint','itemid',23269),(670,'events','itemid',35275),(671,'history','itemid',35275),(672,'history_log','itemid',35275),(673,'history_str','itemid',35275),(674,'history_text','itemid',35275),(675,'history_uint','itemid',35275),(676,'trends','itemid',35275),(677,'trends_uint','itemid',35275),(678,'events','itemid',23270),(679,'history','itemid',23270),(680,'history_log','itemid',23270),(681,'history_str','itemid',23270),(682,'history_text','itemid',23270),(683,'history_uint','itemid',23270),(684,'trends','itemid',23270),(685,'trends_uint','itemid',23270),(686,'events','itemid',23328),(687,'history','itemid',23328),(688,'history_log','itemid',23328),(689,'history_str','itemid',23328),(690,'history_text','itemid',23328),(691,'history_uint','itemid',23328),(692,'trends','itemid',23328),(693,'trends_uint','itemid',23328),(694,'events','itemid',44056),(695,'history','itemid',44056),(696,'history_log','itemid',44056),(697,'history_str','itemid',44056),(698,'history_text','itemid',44056),(699,'history_uint','itemid',44056),(700,'trends','itemid',44056),(701,'trends_uint','itemid',44056),(702,'events','itemid',23271),(703,'history','itemid',23271),(704,'history_log','itemid',23271),(705,'history_str','itemid',23271),(706,'history_text','itemid',23271),(707,'history_uint','itemid',23271),(708,'trends','itemid',23271),(709,'trends_uint','itemid',23271),(710,'events','itemid',23272),(711,'history','itemid',23272),(712,'history_log','itemid',23272),(713,'history_str','itemid',23272),(714,'history_text','itemid',23272),(715,'history_uint','itemid',23272),(716,'trends','itemid',23272),(717,'trends_uint','itemid',23272),(718,'events','itemid',23273),(719,'history','itemid',23273),(720,'history_log','itemid',23273),(721,'history_str','itemid',23273),(722,'history_text','itemid',23273),(723,'history_uint','itemid',23273),(724,'trends','itemid',23273),(725,'trends_uint','itemid',23273),(726,'events','itemid',33024),(727,'history','itemid',33024),(728,'history_log','itemid',33024),(729,'history_str','itemid',33024),(730,'history_text','itemid',33024),(731,'history_uint','itemid',33024),(732,'trends','itemid',33024),(733,'trends_uint','itemid',33024),(734,'events','itemid',33025),(735,'history','itemid',33025),(736,'history_log','itemid',33025),(737,'history_str','itemid',33025),(738,'history_text','itemid',33025),(739,'history_uint','itemid',33025),(740,'trends','itemid',33025),(741,'trends_uint','itemid',33025),(742,'events','itemid',23620),(743,'history','itemid',23620),(744,'history_log','itemid',23620),(745,'history_str','itemid',23620),(746,'history_text','itemid',23620),(747,'history_uint','itemid',23620),(748,'trends','itemid',23620),(749,'trends_uint','itemid',23620),(750,'events','itemid',23625),(751,'history','itemid',23625),(752,'history_log','itemid',23625),(753,'history_str','itemid',23625),(754,'history_text','itemid',23625),(755,'history_uint','itemid',23625),(756,'trends','itemid',23625),(757,'trends_uint','itemid',23625),(758,'events','itemid',23628),(759,'history','itemid',23628),(760,'history_log','itemid',23628),(761,'history_str','itemid',23628),(762,'history_text','itemid',23628),(763,'history_uint','itemid',23628),(764,'trends','itemid',23628),(765,'trends_uint','itemid',23628),(766,'events','itemid',23662),(767,'history','itemid',23662),(768,'history_log','itemid',23662),(769,'history_str','itemid',23662),(770,'history_text','itemid',23662),(771,'history_uint','itemid',23662),(772,'trends','itemid',23662),(773,'trends_uint','itemid',23662),(774,'events','itemid',35276),(775,'history','itemid',35276),(776,'history_log','itemid',35276),(777,'history_str','itemid',35276),(778,'history_text','itemid',35276),(779,'history_uint','itemid',35276),(780,'trends','itemid',35276),(781,'trends_uint','itemid',35276),(782,'events','itemid',23635),(783,'history','itemid',23635),(784,'history_log','itemid',23635),(785,'history_str','itemid',23635),(786,'history_text','itemid',23635),(787,'history_uint','itemid',23635),(788,'trends','itemid',23635),(789,'trends_uint','itemid',23635),(790,'events','itemid',23274),(791,'history','itemid',23274),(792,'history_log','itemid',23274),(793,'history_str','itemid',23274),(794,'history_text','itemid',23274),(795,'history_uint','itemid',23274),(796,'trends','itemid',23274),(797,'trends_uint','itemid',23274),(798,'events','itemid',23275),(799,'history','itemid',23275),(800,'history_log','itemid',23275),(801,'history_str','itemid',23275),(802,'history_text','itemid',23275),(803,'history_uint','itemid',23275),(804,'trends','itemid',23275),(805,'trends_uint','itemid',23275),(806,'events','itemid',23276),(807,'history','itemid',23276),(808,'history_log','itemid',23276),(809,'history_str','itemid',23276),(810,'history_text','itemid',23276),(811,'history_uint','itemid',23276),(812,'trends','itemid',23276),(813,'trends_uint','itemid',23276),(814,'events','itemid',10073),(815,'history','itemid',10073),(816,'history_log','itemid',10073),(817,'history_str','itemid',10073),(818,'history_text','itemid',10073),(819,'history_uint','itemid',10073),(820,'trends','itemid',10073),(821,'trends_uint','itemid',10073),(822,'events','itemid',10075),(823,'history','itemid',10075),(824,'history_log','itemid',10075),(825,'history_str','itemid',10075),(826,'history_text','itemid',10075),(827,'history_uint','itemid',10075),(828,'trends','itemid',10075),(829,'trends_uint','itemid',10075),(830,'events','itemid',10078),(831,'history','itemid',10078),(832,'history_log','itemid',10078),(833,'history_str','itemid',10078),(834,'history_text','itemid',10078),(835,'history_uint','itemid',10078),(836,'trends','itemid',10078),(837,'trends_uint','itemid',10078),(838,'events','itemid',10074),(839,'history','itemid',10074),(840,'history_log','itemid',10074),(841,'history_str','itemid',10074),(842,'history_text','itemid',10074),(843,'history_uint','itemid',10074),(844,'trends','itemid',10074),(845,'trends_uint','itemid',10074),(846,'events','itemid',10077),(847,'history','itemid',10077),(848,'history_log','itemid',10077),(849,'history_str','itemid',10077),(850,'history_text','itemid',10077),(851,'history_uint','itemid',10077),(852,'trends','itemid',10077),(853,'trends_uint','itemid',10077),(854,'events','itemid',10076),(855,'history','itemid',10076),(856,'history_log','itemid',10076),(857,'history_str','itemid',10076),(858,'history_text','itemid',10076),(859,'history_uint','itemid',10076),(860,'trends','itemid',10076),(861,'trends_uint','itemid',10076),(862,'events','itemid',23277),(863,'history','itemid',23277),(864,'history_log','itemid',23277),(865,'history_str','itemid',23277),(866,'history_text','itemid',23277),(867,'history_uint','itemid',23277),(868,'trends','itemid',23277),(869,'trends_uint','itemid',23277),(870,'events','lldruleid',22944),(871,'events','lldruleid',22947),(872,'events','lldruleid',27211),(873,'events','lldruleid',27210),(874,'events','lldruleid',40489),(875,'events','lldruleid',40490),(876,'events','lldruleid',30090),(877,'events','lldruleid',27209),(878,'events','lldruleid',27244),(879,'events','lldruleid',40544),(880,'events','lldruleid',27243),(881,'events','lldruleid',27242),(882,'events','lldruleid',27303),(883,'events','lldruleid',40580),(884,'events','lldruleid',27302),(885,'events','lldruleid',27306),(886,'events','lldruleid',27304),(887,'events','lldruleid',27311),(888,'events','lldruleid',27308),(889,'events','lldruleid',40581),(890,'events','lldruleid',27307),(891,'events','lldruleid',27310),(892,'events','lldruleid',27309),(893,'events','lldruleid',27390),(894,'events','lldruleid',27391),(895,'events','lldruleid',27393),(896,'events','lldruleid',27396),(897,'events','lldruleid',27395),(898,'events','lldruleid',27394),(899,'events','lldruleid',40648),(900,'events','lldruleid',40649),(901,'events','lldruleid',40650),(902,'events','lldruleid',40651),(903,'events','lldruleid',40652),(904,'events','lldruleid',40653),(905,'events','lldruleid',40654),(906,'events','lldruleid',40655),(907,'events','lldruleid',28244),(908,'events','lldruleid',28308),(909,'events','lldruleid',28307),(910,'events','lldruleid',40513),(911,'events','lldruleid',40514),(912,'events','lldruleid',28309),(913,'events','lldruleid',28306),(914,'events','lldruleid',40515),(915,'events','lldruleid',40516),(916,'events','lldruleid',33182),(917,'events','lldruleid',32762),(918,'events','lldruleid',32763),(919,'events','lldruleid',32764),(920,'events','lldruleid',32765),(921,'events','lldruleid',30916),(922,'events','lldruleid',44336),(923,'events','lldruleid',28797),(924,'events','lldruleid',30686),(925,'events','lldruleid',30687),(926,'events','lldruleid',31803),(927,'events','lldruleid',31804),(928,'events','lldruleid',31805),(929,'events','lldruleid',31806),(930,'events','lldruleid',32168),(931,'events','lldruleid',32169),(932,'events','lldruleid',32440),(933,'events','lldruleid',32441),(934,'events','lldruleid',32465),(935,'events','lldruleid',32466),(936,'events','lldruleid',32467),(937,'events','lldruleid',32468),(938,'events','lldruleid',32469),(939,'events','lldruleid',32470),(940,'events','lldruleid',32471),(941,'events','lldruleid',32472),(942,'events','lldruleid',32473),(943,'events','lldruleid',32474),(944,'events','lldruleid',32475),(945,'events','lldruleid',32476),(946,'events','lldruleid',32477),(947,'events','lldruleid',32478),(948,'events','lldruleid',32479),(949,'events','lldruleid',32480),(950,'events','lldruleid',32481),(951,'events','lldruleid',32482),(952,'events','lldruleid',32483),(953,'events','lldruleid',32484),(954,'events','lldruleid',32485),(955,'events','lldruleid',32755),(956,'events','lldruleid',32756),(957,'events','lldruleid',32757),(958,'events','lldruleid',33095),(959,'events','lldruleid',33958),(960,'events','lldruleid',33959),(961,'events','lldruleid',33960),(962,'events','lldruleid',33961),(963,'events','lldruleid',33962),(964,'events','lldruleid',33963),(965,'events','lldruleid',33964),(966,'events','lldruleid',33965),(967,'events','lldruleid',33999),(968,'events','lldruleid',34000),(969,'events','lldruleid',34001),(970,'events','lldruleid',34002),(971,'events','lldruleid',34003),(972,'events','lldruleid',34004),(973,'events','lldruleid',34005),(974,'events','lldruleid',34006),(975,'events','lldruleid',34040),(976,'events','lldruleid',34041),(977,'events','lldruleid',34042),(978,'events','lldruleid',34043),(979,'events','lldruleid',34044),(980,'events','lldruleid',34045),(981,'events','lldruleid',34046),(982,'events','lldruleid',34047),(983,'events','lldruleid',34081),(984,'events','lldruleid',34082),(985,'events','lldruleid',34083),(986,'events','lldruleid',34084),(987,'events','lldruleid',34085),(988,'events','lldruleid',34086),(989,'events','lldruleid',34087),(990,'events','lldruleid',34088),(991,'events','lldruleid',34122),(992,'events','lldruleid',34123),(993,'events','lldruleid',34124),(994,'events','lldruleid',34125),(995,'events','lldruleid',34126),(996,'events','lldruleid',34127),(997,'events','lldruleid',34128),(998,'events','lldruleid',34129),(999,'events','lldruleid',34207),(1000,'events','lldruleid',34208),(1001,'events','lldruleid',34209),(1002,'events','lldruleid',34210),(1003,'events','lldruleid',34211),(1004,'events','lldruleid',34789),(1005,'events','lldruleid',34476),(1006,'events','lldruleid',34477),(1007,'events','lldruleid',34478),(1008,'events','lldruleid',34479),(1009,'events','lldruleid',34480),(1010,'events','lldruleid',34481),(1011,'events','lldruleid',34524),(1012,'events','lldruleid',34525),(1013,'events','lldruleid',34526),(1014,'events','lldruleid',34527),(1015,'events','lldruleid',34528),(1016,'events','lldruleid',34529),(1017,'events','lldruleid',34572),(1018,'events','lldruleid',34573),(1019,'events','lldruleid',34574),(1020,'events','lldruleid',34575),(1021,'events','lldruleid',34576),(1022,'events','lldruleid',34577),(1023,'events','lldruleid',34620),(1024,'events','lldruleid',34621),(1025,'events','lldruleid',34622),(1026,'events','lldruleid',34623),(1027,'events','lldruleid',34624),(1028,'events','lldruleid',34625),(1029,'events','lldruleid',34668),(1030,'events','lldruleid',34669),(1031,'events','lldruleid',34670),(1032,'events','lldruleid',34671),(1033,'events','lldruleid',34672),(1034,'events','lldruleid',34673),(1035,'events','lldruleid',34764),(1036,'events','lldruleid',34765),(1037,'events','lldruleid',34766),(1038,'events','lldruleid',34767),(1039,'events','lldruleid',34768),(1040,'events','lldruleid',34769),(1041,'events','lldruleid',34818),(1042,'events','lldruleid',34819),(1043,'events','lldruleid',34820),(1044,'events','lldruleid',34821),(1045,'events','lldruleid',34822),(1046,'events','lldruleid',34823),(1047,'events','lldruleid',34866),(1048,'events','lldruleid',34867),(1049,'events','lldruleid',34868),(1050,'events','lldruleid',34869),(1051,'events','lldruleid',34870),(1052,'events','lldruleid',34871),(1053,'events','lldruleid',34914),(1054,'events','lldruleid',34915),(1055,'events','lldruleid',34916),(1056,'events','lldruleid',34917),(1057,'events','lldruleid',34918),(1058,'events','lldruleid',34919),(1059,'events','lldruleid',35041),(1060,'events','lldruleid',35042),(1061,'events','lldruleid',35043),(1062,'events','lldruleid',35044),(1063,'events','lldruleid',35045),(1064,'events','lldruleid',35046),(1065,'events','lldruleid',35364),(1066,'events','lldruleid',35365),(1067,'events','lldruleid',35366),(1068,'events','lldruleid',35367),(1069,'events','lldruleid',35368),(1070,'events','lldruleid',43526),(1071,'events','lldruleid',43527),(1072,'events','lldruleid',43642),(1073,'events','lldruleid',43643),(1074,'events','lldruleid',43644),(1075,'events','lldruleid',43645),(1076,'events','lldruleid',43711),(1077,'events','lldruleid',44200),(1078,'events','lldruleid',44293),(1079,'events','lldruleid',43768),(1080,'events','lldruleid',44052),(1081,'events','lldruleid',44053),(1082,'events','lldruleid',44054),(1083,'events','itemid',42175),(1084,'history','itemid',42175),(1085,'history_log','itemid',42175),(1086,'history_str','itemid',42175),(1087,'history_text','itemid',42175),(1088,'history_uint','itemid',42175),(1089,'trends','itemid',42175),(1090,'trends_uint','itemid',42175),(1091,'events','itemid',42176),(1092,'history','itemid',42176),(1093,'history_log','itemid',42176),(1094,'history_str','itemid',42176),(1095,'history_text','itemid',42176),(1096,'history_uint','itemid',42176),(1097,'trends','itemid',42176),(1098,'trends_uint','itemid',42176),(1099,'events','itemid',42177),(1100,'history','itemid',42177),(1101,'history_log','itemid',42177),(1102,'history_str','itemid',42177),(1103,'history_text','itemid',42177),(1104,'history_uint','itemid',42177),(1105,'trends','itemid',42177),(1106,'trends_uint','itemid',42177),(1107,'events','itemid',22917),(1108,'history','itemid',22917),(1109,'history_log','itemid',22917),(1110,'history_str','itemid',22917),(1111,'history_text','itemid',22917),(1112,'history_uint','itemid',22917),(1113,'trends','itemid',22917),(1114,'trends_uint','itemid',22917),(1115,'events','itemid',22918),(1116,'history','itemid',22918),(1117,'history_log','itemid',22918),(1118,'history_str','itemid',22918),(1119,'history_text','itemid',22918),(1120,'history_uint','itemid',22918),(1121,'trends','itemid',22918),(1122,'trends_uint','itemid',22918),(1123,'events','itemid',22920),(1124,'history','itemid',22920),(1125,'history_log','itemid',22920),(1126,'history_str','itemid',22920),(1127,'history_text','itemid',22920),(1128,'history_uint','itemid',22920),(1129,'trends','itemid',22920),(1130,'trends_uint','itemid',22920),(1131,'events','itemid',22921),(1132,'history','itemid',22921),(1133,'history_log','itemid',22921),(1134,'history_str','itemid',22921),(1135,'history_text','itemid',22921),(1136,'history_uint','itemid',22921),(1137,'trends','itemid',22921),(1138,'trends_uint','itemid',22921),(1139,'events','itemid',22922),(1140,'history','itemid',22922),(1141,'history_log','itemid',22922),(1142,'history_str','itemid',22922),(1143,'history_text','itemid',22922),(1144,'history_uint','itemid',22922),(1145,'trends','itemid',22922),(1146,'trends_uint','itemid',22922),(1147,'events','itemid',22923),(1148,'history','itemid',22923),(1149,'history_log','itemid',22923),(1150,'history_str','itemid',22923),(1151,'history_text','itemid',22923),(1152,'history_uint','itemid',22923),(1153,'trends','itemid',22923),(1154,'trends_uint','itemid',22923),(1155,'events','itemid',22924),(1156,'history','itemid',22924),(1157,'history_log','itemid',22924),(1158,'history_str','itemid',22924),(1159,'history_text','itemid',22924),(1160,'history_uint','itemid',22924),(1161,'trends','itemid',22924),(1162,'trends_uint','itemid',22924),(1163,'events','itemid',22933),(1164,'history','itemid',22933),(1165,'history_log','itemid',22933),(1166,'history_str','itemid',22933),(1167,'history_text','itemid',22933),(1168,'history_uint','itemid',22933),(1169,'trends','itemid',22933),(1170,'trends_uint','itemid',22933),(1171,'events','itemid',22934),(1172,'history','itemid',22934),(1173,'history_log','itemid',22934),(1174,'history_str','itemid',22934),(1175,'history_text','itemid',22934),(1176,'history_uint','itemid',22934),(1177,'trends','itemid',22934),(1178,'trends_uint','itemid',22934),(1179,'events','itemid',23108),(1180,'history','itemid',23108),(1181,'history_log','itemid',23108),(1182,'history_str','itemid',23108),(1183,'history_text','itemid',23108),(1184,'history_uint','itemid',23108),(1185,'trends','itemid',23108),(1186,'trends_uint','itemid',23108),(1187,'events','itemid',23109),(1188,'history','itemid',23109),(1189,'history_log','itemid',23109),(1190,'history_str','itemid',23109),(1191,'history_text','itemid',23109),(1192,'history_uint','itemid',23109),(1193,'trends','itemid',23109),(1194,'trends_uint','itemid',23109),(1195,'events','itemid',23110),(1196,'history','itemid',23110),(1197,'history_log','itemid',23110),(1198,'history_str','itemid',23110),(1199,'history_text','itemid',23110),(1200,'history_uint','itemid',23110),(1201,'trends','itemid',23110),(1202,'trends_uint','itemid',23110),(1203,'events','itemid',23111),(1204,'history','itemid',23111),(1205,'history_log','itemid',23111),(1206,'history_str','itemid',23111),(1207,'history_text','itemid',23111),(1208,'history_uint','itemid',23111),(1209,'trends','itemid',23111),(1210,'trends_uint','itemid',23111),(1211,'events','itemid',23112),(1212,'history','itemid',23112),(1213,'history_log','itemid',23112),(1214,'history_str','itemid',23112),(1215,'history_text','itemid',23112),(1216,'history_uint','itemid',23112),(1217,'trends','itemid',23112),(1218,'trends_uint','itemid',23112),(1219,'events','itemid',23113),(1220,'history','itemid',23113),(1221,'history_log','itemid',23113),(1222,'history_str','itemid',23113),(1223,'history_text','itemid',23113),(1224,'history_uint','itemid',23113),(1225,'trends','itemid',23113),(1226,'trends_uint','itemid',23113),(1227,'events','itemid',23114),(1228,'history','itemid',23114),(1229,'history_log','itemid',23114),(1230,'history_str','itemid',23114),(1231,'history_text','itemid',23114),(1232,'history_uint','itemid',23114),(1233,'trends','itemid',23114),(1234,'trends_uint','itemid',23114),(1235,'events','itemid',23115),(1236,'history','itemid',23115),(1237,'history_log','itemid',23115),(1238,'history_str','itemid',23115),(1239,'history_text','itemid',23115),(1240,'history_uint','itemid',23115),(1241,'trends','itemid',23115),(1242,'trends_uint','itemid',23115),(1243,'events','itemid',23116),(1244,'history','itemid',23116),(1245,'history_log','itemid',23116),(1246,'history_str','itemid',23116),(1247,'history_text','itemid',23116),(1248,'history_uint','itemid',23116),(1249,'trends','itemid',23116),(1250,'trends_uint','itemid',23116),(1251,'events','itemid',23117),(1252,'history','itemid',23117),(1253,'history_log','itemid',23117),(1254,'history_str','itemid',23117),(1255,'history_text','itemid',23117),(1256,'history_uint','itemid',23117),(1257,'trends','itemid',23117),(1258,'trends_uint','itemid',23117),(1259,'events','itemid',23118),(1260,'history','itemid',23118),(1261,'history_log','itemid',23118),(1262,'history_str','itemid',23118),(1263,'history_text','itemid',23118),(1264,'history_uint','itemid',23118),(1265,'trends','itemid',23118),(1266,'trends_uint','itemid',23118),(1267,'events','itemid',23119),(1268,'history','itemid',23119),(1269,'history_log','itemid',23119),(1270,'history_str','itemid',23119),(1271,'history_text','itemid',23119),(1272,'history_uint','itemid',23119),(1273,'trends','itemid',23119),(1274,'trends_uint','itemid',23119),(1275,'events','itemid',23120),(1276,'history','itemid',23120),(1277,'history_log','itemid',23120),(1278,'history_str','itemid',23120),(1279,'history_text','itemid',23120),(1280,'history_uint','itemid',23120),(1281,'trends','itemid',23120),(1282,'trends_uint','itemid',23120),(1283,'events','itemid',23121),(1284,'history','itemid',23121),(1285,'history_log','itemid',23121),(1286,'history_str','itemid',23121),(1287,'history_text','itemid',23121),(1288,'history_uint','itemid',23121),(1289,'trends','itemid',23121),(1290,'trends_uint','itemid',23121),(1291,'events','itemid',23122),(1292,'history','itemid',23122),(1293,'history_log','itemid',23122),(1294,'history_str','itemid',23122),(1295,'history_text','itemid',23122),(1296,'history_uint','itemid',23122),(1297,'trends','itemid',23122),(1298,'trends_uint','itemid',23122),(1299,'events','itemid',23123),(1300,'history','itemid',23123),(1301,'history_log','itemid',23123),(1302,'history_str','itemid',23123),(1303,'history_text','itemid',23123),(1304,'history_uint','itemid',23123),(1305,'trends','itemid',23123),(1306,'trends_uint','itemid',23123),(1307,'events','itemid',23124),(1308,'history','itemid',23124),(1309,'history_log','itemid',23124),(1310,'history_str','itemid',23124),(1311,'history_text','itemid',23124),(1312,'history_uint','itemid',23124),(1313,'trends','itemid',23124),(1314,'trends_uint','itemid',23124),(1315,'events','itemid',23125),(1316,'history','itemid',23125),(1317,'history_log','itemid',23125),(1318,'history_str','itemid',23125),(1319,'history_text','itemid',23125),(1320,'history_uint','itemid',23125),(1321,'trends','itemid',23125),(1322,'trends_uint','itemid',23125),(1323,'events','itemid',23126),(1324,'history','itemid',23126),(1325,'history_log','itemid',23126),(1326,'history_str','itemid',23126),(1327,'history_text','itemid',23126),(1328,'history_uint','itemid',23126),(1329,'trends','itemid',23126),(1330,'trends_uint','itemid',23126),(1331,'events','itemid',23127),(1332,'history','itemid',23127),(1333,'history_log','itemid',23127),(1334,'history_str','itemid',23127),(1335,'history_text','itemid',23127),(1336,'history_uint','itemid',23127),(1337,'trends','itemid',23127),(1338,'trends_uint','itemid',23127),(1339,'events','itemid',23128),(1340,'history','itemid',23128),(1341,'history_log','itemid',23128),(1342,'history_str','itemid',23128),(1343,'history_text','itemid',23128),(1344,'history_uint','itemid',23128),(1345,'trends','itemid',23128),(1346,'trends_uint','itemid',23128),(1347,'events','itemid',23129),(1348,'history','itemid',23129),(1349,'history_log','itemid',23129),(1350,'history_str','itemid',23129),(1351,'history_text','itemid',23129),(1352,'history_uint','itemid',23129),(1353,'trends','itemid',23129),(1354,'trends_uint','itemid',23129),(1355,'events','itemid',23130),(1356,'history','itemid',23130),(1357,'history_log','itemid',23130),(1358,'history_str','itemid',23130),(1359,'history_text','itemid',23130),(1360,'history_uint','itemid',23130),(1361,'trends','itemid',23130),(1362,'trends_uint','itemid',23130),(1363,'events','itemid',23131),(1364,'history','itemid',23131),(1365,'history_log','itemid',23131),(1366,'history_str','itemid',23131),(1367,'history_text','itemid',23131),(1368,'history_uint','itemid',23131),(1369,'trends','itemid',23131),(1370,'trends_uint','itemid',23131),(1371,'events','itemid',22938),(1372,'history','itemid',22938),(1373,'history_log','itemid',22938),(1374,'history_str','itemid',22938),(1375,'history_text','itemid',22938),(1376,'history_uint','itemid',22938),(1377,'trends','itemid',22938),(1378,'trends_uint','itemid',22938),(1379,'events','itemid',22939),(1380,'history','itemid',22939),(1381,'history_log','itemid',22939),(1382,'history_str','itemid',22939),(1383,'history_text','itemid',22939),(1384,'history_uint','itemid',22939),(1385,'trends','itemid',22939),(1386,'trends_uint','itemid',22939),(1387,'events','itemid',22940),(1388,'history','itemid',22940),(1389,'history_log','itemid',22940),(1390,'history_str','itemid',22940),(1391,'history_text','itemid',22940),(1392,'history_uint','itemid',22940),(1393,'trends','itemid',22940),(1394,'trends_uint','itemid',22940),(1395,'events','itemid',22941),(1396,'history','itemid',22941),(1397,'history_log','itemid',22941),(1398,'history_str','itemid',22941),(1399,'history_text','itemid',22941),(1400,'history_uint','itemid',22941),(1401,'trends','itemid',22941),(1402,'trends_uint','itemid',22941),(1403,'events','itemid',44427),(1404,'history','itemid',44427),(1405,'history_log','itemid',44427),(1406,'history_str','itemid',44427),(1407,'history_text','itemid',44427),(1408,'history_uint','itemid',44427),(1409,'trends','itemid',44427),(1410,'trends_uint','itemid',44427),(1411,'events','itemid',22942),(1412,'history','itemid',22942),(1413,'history_log','itemid',22942),(1414,'history_str','itemid',22942),(1415,'history_text','itemid',22942),(1416,'history_uint','itemid',22942),(1417,'trends','itemid',22942),(1418,'trends_uint','itemid',22942),(1419,'events','itemid',22943),(1420,'history','itemid',22943),(1421,'history_log','itemid',22943),(1422,'history_str','itemid',22943),(1423,'history_text','itemid',22943),(1424,'history_uint','itemid',22943),(1425,'trends','itemid',22943),(1426,'trends_uint','itemid',22943),(1427,'events','itemid',42178),(1428,'history','itemid',42178),(1429,'history_log','itemid',42178),(1430,'history_str','itemid',42178),(1431,'history_text','itemid',42178),(1432,'history_uint','itemid',42178),(1433,'trends','itemid',42178),(1434,'trends_uint','itemid',42178),(1435,'events','itemid',40478),(1436,'history','itemid',40478),(1437,'history_log','itemid',40478),(1438,'history_str','itemid',40478),(1439,'history_text','itemid',40478),(1440,'history_uint','itemid',40478),(1441,'trends','itemid',40478),(1442,'trends_uint','itemid',40478),(1443,'events','itemid',40482),(1444,'history','itemid',40482),(1445,'history_log','itemid',40482),(1446,'history_str','itemid',40482),(1447,'history_text','itemid',40482),(1448,'history_uint','itemid',40482),(1449,'trends','itemid',40482),(1450,'trends_uint','itemid',40482),(1451,'events','itemid',40487),(1452,'history','itemid',40487),(1453,'history_log','itemid',40487),(1454,'history_str','itemid',40487),(1455,'history_text','itemid',40487),(1456,'history_uint','itemid',40487),(1457,'trends','itemid',40487),(1458,'trends_uint','itemid',40487),(1459,'events','itemid',40486),(1460,'history','itemid',40486),(1461,'history_log','itemid',40486),(1462,'history_str','itemid',40486),(1463,'history_text','itemid',40486),(1464,'history_uint','itemid',40486),(1465,'trends','itemid',40486),(1466,'trends_uint','itemid',40486),(1467,'events','itemid',40485),(1468,'history','itemid',40485),(1469,'history_log','itemid',40485),(1470,'history_str','itemid',40485),(1471,'history_text','itemid',40485),(1472,'history_uint','itemid',40485),(1473,'trends','itemid',40485),(1474,'trends_uint','itemid',40485),(1475,'events','itemid',27208),(1476,'history','itemid',27208),(1477,'history_log','itemid',27208),(1478,'history_str','itemid',27208),(1479,'history_text','itemid',27208),(1480,'history_uint','itemid',27208),(1481,'trends','itemid',27208),(1482,'trends_uint','itemid',27208),(1483,'events','itemid',40484),(1484,'history','itemid',40484),(1485,'history_log','itemid',40484),(1486,'history_str','itemid',40484),(1487,'history_text','itemid',40484),(1488,'history_uint','itemid',40484),(1489,'trends','itemid',40484),(1490,'trends_uint','itemid',40484),(1491,'events','itemid',27203),(1492,'history','itemid',27203),(1493,'history_log','itemid',27203),(1494,'history_str','itemid',27203),(1495,'history_text','itemid',27203),(1496,'history_uint','itemid',27203),(1497,'trends','itemid',27203),(1498,'trends_uint','itemid',27203),(1499,'events','itemid',43770),(1500,'history','itemid',43770),(1501,'history_log','itemid',43770),(1502,'history_str','itemid',43770),(1503,'history_text','itemid',43770),(1504,'history_uint','itemid',43770),(1505,'trends','itemid',43770),(1506,'trends_uint','itemid',43770),(1507,'events','itemid',40483),(1508,'history','itemid',40483),(1509,'history_log','itemid',40483),(1510,'history_str','itemid',40483),(1511,'history_text','itemid',40483),(1512,'history_uint','itemid',40483),(1513,'trends','itemid',40483),(1514,'trends_uint','itemid',40483),(1515,'events','itemid',40481),(1516,'history','itemid',40481),(1517,'history_log','itemid',40481),(1518,'history_str','itemid',40481),(1519,'history_text','itemid',40481),(1520,'history_uint','itemid',40481),(1521,'trends','itemid',40481),(1522,'trends_uint','itemid',40481),(1523,'events','itemid',40480),(1524,'history','itemid',40480),(1525,'history_log','itemid',40480),(1526,'history_str','itemid',40480),(1527,'history_text','itemid',40480),(1528,'history_uint','itemid',40480),(1529,'trends','itemid',40480),(1530,'trends_uint','itemid',40480),(1531,'events','itemid',40479),(1532,'history','itemid',40479),(1533,'history_log','itemid',40479),(1534,'history_str','itemid',40479),(1535,'history_text','itemid',40479),(1536,'history_uint','itemid',40479),(1537,'trends','itemid',40479),(1538,'trends_uint','itemid',40479),(1539,'events','itemid',30086),(1540,'history','itemid',30086),(1541,'history_log','itemid',30086),(1542,'history_str','itemid',30086),(1543,'history_text','itemid',30086),(1544,'history_uint','itemid',30086),(1545,'trends','itemid',30086),(1546,'trends_uint','itemid',30086),(1547,'events','itemid',30087),(1548,'history','itemid',30087),(1549,'history_log','itemid',30087),(1550,'history_str','itemid',30087),(1551,'history_text','itemid',30087),(1552,'history_uint','itemid',30087),(1553,'trends','itemid',30087),(1554,'trends_uint','itemid',30087),(1555,'events','itemid',30088),(1556,'history','itemid',30088),(1557,'history_log','itemid',30088),(1558,'history_str','itemid',30088),(1559,'history_text','itemid',30088),(1560,'history_uint','itemid',30088),(1561,'trends','itemid',30088),(1562,'trends_uint','itemid',30088),(1563,'events','itemid',27207),(1564,'history','itemid',27207),(1565,'history_log','itemid',27207),(1566,'history_str','itemid',27207),(1567,'history_text','itemid',27207),(1568,'history_uint','itemid',27207),(1569,'trends','itemid',27207),(1570,'trends_uint','itemid',27207),(1571,'events','itemid',30089),(1572,'history','itemid',30089),(1573,'history_log','itemid',30089),(1574,'history_str','itemid',30089),(1575,'history_text','itemid',30089),(1576,'history_uint','itemid',30089),(1577,'trends','itemid',30089),(1578,'trends_uint','itemid',30089),(1579,'events','itemid',40488),(1580,'history','itemid',40488),(1581,'history_log','itemid',40488),(1582,'history_str','itemid',40488),(1583,'history_text','itemid',40488),(1584,'history_uint','itemid',40488),(1585,'trends','itemid',40488),(1586,'trends_uint','itemid',40488),(1587,'events','itemid',40533),(1588,'history','itemid',40533),(1589,'history_log','itemid',40533),(1590,'history_str','itemid',40533),(1591,'history_text','itemid',40533),(1592,'history_uint','itemid',40533),(1593,'trends','itemid',40533),(1594,'trends_uint','itemid',40533),(1595,'events','itemid',40534),(1596,'history','itemid',40534),(1597,'history_log','itemid',40534),(1598,'history_str','itemid',40534),(1599,'history_text','itemid',40534),(1600,'history_uint','itemid',40534),(1601,'trends','itemid',40534),(1602,'trends_uint','itemid',40534),(1603,'events','itemid',40535),(1604,'history','itemid',40535),(1605,'history_log','itemid',40535),(1606,'history_str','itemid',40535),(1607,'history_text','itemid',40535),(1608,'history_uint','itemid',40535),(1609,'trends','itemid',40535),(1610,'trends_uint','itemid',40535),(1611,'events','itemid',40536),(1612,'history','itemid',40536),(1613,'history_log','itemid',40536),(1614,'history_str','itemid',40536),(1615,'history_text','itemid',40536),(1616,'history_uint','itemid',40536),(1617,'trends','itemid',40536),(1618,'trends_uint','itemid',40536),(1619,'events','itemid',40537),(1620,'history','itemid',40537),(1621,'history_log','itemid',40537),(1622,'history_str','itemid',40537),(1623,'history_text','itemid',40537),(1624,'history_uint','itemid',40537),(1625,'trends','itemid',40537),(1626,'trends_uint','itemid',40537),(1627,'events','itemid',27240),(1628,'history','itemid',27240),(1629,'history_log','itemid',27240),(1630,'history_str','itemid',27240),(1631,'history_text','itemid',27240),(1632,'history_uint','itemid',27240),(1633,'trends','itemid',27240),(1634,'trends_uint','itemid',27240),(1635,'events','itemid',40538),(1636,'history','itemid',40538),(1637,'history_log','itemid',40538),(1638,'history_str','itemid',40538),(1639,'history_text','itemid',40538),(1640,'history_uint','itemid',40538),(1641,'trends','itemid',40538),(1642,'trends_uint','itemid',40538),(1643,'events','itemid',27236),(1644,'history','itemid',27236),(1645,'history_log','itemid',27236),(1646,'history_str','itemid',27236),(1647,'history_text','itemid',27236),(1648,'history_uint','itemid',27236),(1649,'trends','itemid',27236),(1650,'trends_uint','itemid',27236),(1651,'events','itemid',27237),(1652,'history','itemid',27237),(1653,'history_log','itemid',27237),(1654,'history_str','itemid',27237),(1655,'history_text','itemid',27237),(1656,'history_uint','itemid',27237),(1657,'trends','itemid',27237),(1658,'trends_uint','itemid',27237),(1659,'events','itemid',43772),(1660,'history','itemid',43772),(1661,'history_log','itemid',43772),(1662,'history_str','itemid',43772),(1663,'history_text','itemid',43772),(1664,'history_uint','itemid',43772),(1665,'trends','itemid',43772),(1666,'trends_uint','itemid',43772),(1667,'events','itemid',40539),(1668,'history','itemid',40539),(1669,'history_log','itemid',40539),(1670,'history_str','itemid',40539),(1671,'history_text','itemid',40539),(1672,'history_uint','itemid',40539),(1673,'trends','itemid',40539),(1674,'trends_uint','itemid',40539),(1675,'events','itemid',40540),(1676,'history','itemid',40540),(1677,'history_log','itemid',40540),(1678,'history_str','itemid',40540),(1679,'history_text','itemid',40540),(1680,'history_uint','itemid',40540),(1681,'trends','itemid',40540),(1682,'trends_uint','itemid',40540),(1683,'events','itemid',40542),(1684,'history','itemid',40542),(1685,'history_log','itemid',40542),(1686,'history_str','itemid',40542),(1687,'history_text','itemid',40542),(1688,'history_uint','itemid',40542),(1689,'trends','itemid',40542),(1690,'trends_uint','itemid',40542),(1691,'events','itemid',40541),(1692,'history','itemid',40541),(1693,'history_log','itemid',40541),(1694,'history_str','itemid',40541),(1695,'history_text','itemid',40541),(1696,'history_uint','itemid',40541),(1697,'trends','itemid',40541),(1698,'trends_uint','itemid',40541),(1699,'events','itemid',27238),(1700,'history','itemid',27238),(1701,'history_log','itemid',27238),(1702,'history_str','itemid',27238),(1703,'history_text','itemid',27238),(1704,'history_uint','itemid',27238),(1705,'trends','itemid',27238),(1706,'trends_uint','itemid',27238),(1707,'events','itemid',30093),(1708,'history','itemid',30093),(1709,'history_log','itemid',30093),(1710,'history_str','itemid',30093),(1711,'history_text','itemid',30093),(1712,'history_uint','itemid',30093),(1713,'trends','itemid',30093),(1714,'trends_uint','itemid',30093),(1715,'events','itemid',40543),(1716,'history','itemid',40543),(1717,'history_log','itemid',40543),(1718,'history_str','itemid',40543),(1719,'history_text','itemid',40543),(1720,'history_uint','itemid',40543),(1721,'trends','itemid',40543),(1722,'trends_uint','itemid',40543),(1723,'events','itemid',27294),(1724,'history','itemid',27294),(1725,'history_log','itemid',27294),(1726,'history_str','itemid',27294),(1727,'history_text','itemid',27294),(1728,'history_uint','itemid',27294),(1729,'trends','itemid',27294),(1730,'trends_uint','itemid',27294),(1731,'events','itemid',30094),(1732,'history','itemid',30094),(1733,'history_log','itemid',30094),(1734,'history_str','itemid',30094),(1735,'history_text','itemid',30094),(1736,'history_uint','itemid',30094),(1737,'trends','itemid',30094),(1738,'trends_uint','itemid',30094),(1739,'events','itemid',40554),(1740,'history','itemid',40554),(1741,'history_log','itemid',40554),(1742,'history_str','itemid',40554),(1743,'history_text','itemid',40554),(1744,'history_uint','itemid',40554),(1745,'trends','itemid',40554),(1746,'trends_uint','itemid',40554),(1747,'events','itemid',40555),(1748,'history','itemid',40555),(1749,'history_log','itemid',40555),(1750,'history_str','itemid',40555),(1751,'history_text','itemid',40555),(1752,'history_uint','itemid',40555),(1753,'trends','itemid',40555),(1754,'trends_uint','itemid',40555),(1755,'events','itemid',40556),(1756,'history','itemid',40556),(1757,'history_log','itemid',40556),(1758,'history_str','itemid',40556),(1759,'history_text','itemid',40556),(1760,'history_uint','itemid',40556),(1761,'trends','itemid',40556),(1762,'trends_uint','itemid',40556),(1763,'events','itemid',40557),(1764,'history','itemid',40557),(1765,'history_log','itemid',40557),(1766,'history_str','itemid',40557),(1767,'history_text','itemid',40557),(1768,'history_uint','itemid',40557),(1769,'trends','itemid',40557),(1770,'trends_uint','itemid',40557),(1771,'events','itemid',40558),(1772,'history','itemid',40558),(1773,'history_log','itemid',40558),(1774,'history_str','itemid',40558),(1775,'history_text','itemid',40558),(1776,'history_uint','itemid',40558),(1777,'trends','itemid',40558),(1778,'trends_uint','itemid',40558),(1779,'events','itemid',40559),(1780,'history','itemid',40559),(1781,'history_log','itemid',40559),(1782,'history_str','itemid',40559),(1783,'history_text','itemid',40559),(1784,'history_uint','itemid',40559),(1785,'trends','itemid',40559),(1786,'trends_uint','itemid',40559),(1787,'events','itemid',40560),(1788,'history','itemid',40560),(1789,'history_log','itemid',40560),(1790,'history_str','itemid',40560),(1791,'history_text','itemid',40560),(1792,'history_uint','itemid',40560),(1793,'trends','itemid',40560),(1794,'trends_uint','itemid',40560),(1795,'events','itemid',27295),(1796,'history','itemid',27295),(1797,'history_log','itemid',27295),(1798,'history_str','itemid',27295),(1799,'history_text','itemid',27295),(1800,'history_uint','itemid',27295),(1801,'trends','itemid',27295),(1802,'trends_uint','itemid',27295),(1803,'events','itemid',27296),(1804,'history','itemid',27296),(1805,'history_log','itemid',27296),(1806,'history_str','itemid',27296),(1807,'history_text','itemid',27296),(1808,'history_uint','itemid',27296),(1809,'trends','itemid',27296),(1810,'trends_uint','itemid',27296),(1811,'events','itemid',43773),(1812,'history','itemid',43773),(1813,'history_log','itemid',43773),(1814,'history_str','itemid',43773),(1815,'history_text','itemid',43773),(1816,'history_uint','itemid',43773),(1817,'trends','itemid',43773),(1818,'trends_uint','itemid',43773),(1819,'events','itemid',40561),(1820,'history','itemid',40561),(1821,'history_log','itemid',40561),(1822,'history_str','itemid',40561),(1823,'history_text','itemid',40561),(1824,'history_uint','itemid',40561),(1825,'trends','itemid',40561),(1826,'trends_uint','itemid',40561),(1827,'events','itemid',40562),(1828,'history','itemid',40562),(1829,'history_log','itemid',40562),(1830,'history_str','itemid',40562),(1831,'history_text','itemid',40562),(1832,'history_uint','itemid',40562),(1833,'trends','itemid',40562),(1834,'trends_uint','itemid',40562),(1835,'events','itemid',40564),(1836,'history','itemid',40564),(1837,'history_log','itemid',40564),(1838,'history_str','itemid',40564),(1839,'history_text','itemid',40564),(1840,'history_uint','itemid',40564),(1841,'trends','itemid',40564),(1842,'trends_uint','itemid',40564),(1843,'events','itemid',40563),(1844,'history','itemid',40563),(1845,'history_log','itemid',40563),(1846,'history_str','itemid',40563),(1847,'history_text','itemid',40563),(1848,'history_uint','itemid',40563),(1849,'trends','itemid',40563),(1850,'trends_uint','itemid',40563),(1851,'events','itemid',40565),(1852,'history','itemid',40565),(1853,'history_log','itemid',40565),(1854,'history_str','itemid',40565),(1855,'history_text','itemid',40565),(1856,'history_uint','itemid',40565),(1857,'trends','itemid',40565),(1858,'trends_uint','itemid',40565),(1859,'events','itemid',40566),(1860,'history','itemid',40566),(1861,'history_log','itemid',40566),(1862,'history_str','itemid',40566),(1863,'history_text','itemid',40566),(1864,'history_uint','itemid',40566),(1865,'trends','itemid',40566),(1866,'trends_uint','itemid',40566),(1867,'events','itemid',40567),(1868,'history','itemid',40567),(1869,'history_log','itemid',40567),(1870,'history_str','itemid',40567),(1871,'history_text','itemid',40567),(1872,'history_uint','itemid',40567),(1873,'trends','itemid',40567),(1874,'trends_uint','itemid',40567),(1875,'events','itemid',40568),(1876,'history','itemid',40568),(1877,'history_log','itemid',40568),(1878,'history_str','itemid',40568),(1879,'history_text','itemid',40568),(1880,'history_uint','itemid',40568),(1881,'trends','itemid',40568),(1882,'trends_uint','itemid',40568),(1883,'events','itemid',40569),(1884,'history','itemid',40569),(1885,'history_log','itemid',40569),(1886,'history_str','itemid',40569),(1887,'history_text','itemid',40569),(1888,'history_uint','itemid',40569),(1889,'trends','itemid',40569),(1890,'trends_uint','itemid',40569),(1891,'events','itemid',40570),(1892,'history','itemid',40570),(1893,'history_log','itemid',40570),(1894,'history_str','itemid',40570),(1895,'history_text','itemid',40570),(1896,'history_uint','itemid',40570),(1897,'trends','itemid',40570),(1898,'trends_uint','itemid',40570),(1899,'events','itemid',40571),(1900,'history','itemid',40571),(1901,'history_log','itemid',40571),(1902,'history_str','itemid',40571),(1903,'history_text','itemid',40571),(1904,'history_uint','itemid',40571),(1905,'trends','itemid',40571),(1906,'trends_uint','itemid',40571),(1907,'events','itemid',40572),(1908,'history','itemid',40572),(1909,'history_log','itemid',40572),(1910,'history_str','itemid',40572),(1911,'history_text','itemid',40572),(1912,'history_uint','itemid',40572),(1913,'trends','itemid',40572),(1914,'trends_uint','itemid',40572),(1915,'events','itemid',40573),(1916,'history','itemid',40573),(1917,'history_log','itemid',40573),(1918,'history_str','itemid',40573),(1919,'history_text','itemid',40573),(1920,'history_uint','itemid',40573),(1921,'trends','itemid',40573),(1922,'trends_uint','itemid',40573),(1923,'events','itemid',27297),(1924,'history','itemid',27297),(1925,'history_log','itemid',27297),(1926,'history_str','itemid',27297),(1927,'history_text','itemid',27297),(1928,'history_uint','itemid',27297),(1929,'trends','itemid',27297),(1930,'trends_uint','itemid',27297),(1931,'events','itemid',43774),(1932,'history','itemid',43774),(1933,'history_log','itemid',43774),(1934,'history_str','itemid',43774),(1935,'history_text','itemid',43774),(1936,'history_uint','itemid',43774),(1937,'trends','itemid',43774),(1938,'trends_uint','itemid',43774),(1939,'events','itemid',40574),(1940,'history','itemid',40574),(1941,'history_log','itemid',40574),(1942,'history_str','itemid',40574),(1943,'history_text','itemid',40574),(1944,'history_uint','itemid',40574),(1945,'trends','itemid',40574),(1946,'trends_uint','itemid',40574),(1947,'events','itemid',40575),(1948,'history','itemid',40575),(1949,'history_log','itemid',40575),(1950,'history_str','itemid',40575),(1951,'history_text','itemid',40575),(1952,'history_uint','itemid',40575),(1953,'trends','itemid',40575),(1954,'trends_uint','itemid',40575),(1955,'events','itemid',40577),(1956,'history','itemid',40577),(1957,'history_log','itemid',40577),(1958,'history_str','itemid',40577),(1959,'history_text','itemid',40577),(1960,'history_uint','itemid',40577),(1961,'trends','itemid',40577),(1962,'trends_uint','itemid',40577),(1963,'events','itemid',40576),(1964,'history','itemid',40576),(1965,'history_log','itemid',40576),(1966,'history_str','itemid',40576),(1967,'history_text','itemid',40576),(1968,'history_uint','itemid',40576),(1969,'trends','itemid',40576),(1970,'trends_uint','itemid',40576),(1971,'events','itemid',40578),(1972,'history','itemid',40578),(1973,'history_log','itemid',40578),(1974,'history_str','itemid',40578),(1975,'history_text','itemid',40578),(1976,'history_uint','itemid',40578),(1977,'trends','itemid',40578),(1978,'trends_uint','itemid',40578),(1979,'events','itemid',40579),(1980,'history','itemid',40579),(1981,'history_log','itemid',40579),(1982,'history_str','itemid',40579),(1983,'history_text','itemid',40579),(1984,'history_uint','itemid',40579),(1985,'trends','itemid',40579),(1986,'trends_uint','itemid',40579),(1987,'events','itemid',27379),(1988,'history','itemid',27379),(1989,'history_log','itemid',27379),(1990,'history_str','itemid',27379),(1991,'history_text','itemid',27379),(1992,'history_uint','itemid',27379),(1993,'trends','itemid',27379),(1994,'trends_uint','itemid',27379),(1995,'events','itemid',27378),(1996,'history','itemid',27378),(1997,'history_log','itemid',27378),(1998,'history_str','itemid',27378),(1999,'history_text','itemid',27378),(2000,'history_uint','itemid',27378),(2001,'trends','itemid',27378),(2002,'trends_uint','itemid',27378),(2003,'events','itemid',30097),(2004,'history','itemid',30097),(2005,'history_log','itemid',30097),(2006,'history_str','itemid',30097),(2007,'history_text','itemid',30097),(2008,'history_uint','itemid',30097),(2009,'trends','itemid',30097),(2010,'trends_uint','itemid',30097),(2011,'events','itemid',40615),(2012,'history','itemid',40615),(2013,'history_log','itemid',40615),(2014,'history_str','itemid',40615),(2015,'history_text','itemid',40615),(2016,'history_uint','itemid',40615),(2017,'trends','itemid',40615),(2018,'trends_uint','itemid',40615),(2019,'events','itemid',40616),(2020,'history','itemid',40616),(2021,'history_log','itemid',40616),(2022,'history_str','itemid',40616),(2023,'history_text','itemid',40616),(2024,'history_uint','itemid',40616),(2025,'trends','itemid',40616),(2026,'trends_uint','itemid',40616),(2027,'events','itemid',40617),(2028,'history','itemid',40617),(2029,'history_log','itemid',40617),(2030,'history_str','itemid',40617),(2031,'history_text','itemid',40617),(2032,'history_uint','itemid',40617),(2033,'trends','itemid',40617),(2034,'trends_uint','itemid',40617),(2035,'events','itemid',40618),(2036,'history','itemid',40618),(2037,'history_log','itemid',40618),(2038,'history_str','itemid',40618),(2039,'history_text','itemid',40618),(2040,'history_uint','itemid',40618),(2041,'trends','itemid',40618),(2042,'trends_uint','itemid',40618),(2043,'events','itemid',40619),(2044,'history','itemid',40619),(2045,'history_log','itemid',40619),(2046,'history_str','itemid',40619),(2047,'history_text','itemid',40619),(2048,'history_uint','itemid',40619),(2049,'trends','itemid',40619),(2050,'trends_uint','itemid',40619),(2051,'events','itemid',40620),(2052,'history','itemid',40620),(2053,'history_log','itemid',40620),(2054,'history_str','itemid',40620),(2055,'history_text','itemid',40620),(2056,'history_uint','itemid',40620),(2057,'trends','itemid',40620),(2058,'trends_uint','itemid',40620),(2059,'events','itemid',40621),(2060,'history','itemid',40621),(2061,'history_log','itemid',40621),(2062,'history_str','itemid',40621),(2063,'history_text','itemid',40621),(2064,'history_uint','itemid',40621),(2065,'trends','itemid',40621),(2066,'trends_uint','itemid',40621),(2067,'events','itemid',40622),(2068,'history','itemid',40622),(2069,'history_log','itemid',40622),(2070,'history_str','itemid',40622),(2071,'history_text','itemid',40622),(2072,'history_uint','itemid',40622),(2073,'trends','itemid',40622),(2074,'trends_uint','itemid',40622),(2075,'events','itemid',43781),(2076,'history','itemid',43781),(2077,'history_log','itemid',43781),(2078,'history_str','itemid',43781),(2079,'history_text','itemid',43781),(2080,'history_uint','itemid',43781),(2081,'trends','itemid',43781),(2082,'trends_uint','itemid',43781),(2083,'events','itemid',40623),(2084,'history','itemid',40623),(2085,'history_log','itemid',40623),(2086,'history_str','itemid',40623),(2087,'history_text','itemid',40623),(2088,'history_uint','itemid',40623),(2089,'trends','itemid',40623),(2090,'trends_uint','itemid',40623),(2091,'events','itemid',40624),(2092,'history','itemid',40624),(2093,'history_log','itemid',40624),(2094,'history_str','itemid',40624),(2095,'history_text','itemid',40624),(2096,'history_uint','itemid',40624),(2097,'trends','itemid',40624),(2098,'trends_uint','itemid',40624),(2099,'events','itemid',40627),(2100,'history','itemid',40627),(2101,'history_log','itemid',40627),(2102,'history_str','itemid',40627),(2103,'history_text','itemid',40627),(2104,'history_uint','itemid',40627),(2105,'trends','itemid',40627),(2106,'trends_uint','itemid',40627),(2107,'events','itemid',40625),(2108,'history','itemid',40625),(2109,'history_log','itemid',40625),(2110,'history_str','itemid',40625),(2111,'history_text','itemid',40625),(2112,'history_uint','itemid',40625),(2113,'trends','itemid',40625),(2114,'trends_uint','itemid',40625),(2115,'events','itemid',40626),(2116,'history','itemid',40626),(2117,'history_log','itemid',40626),(2118,'history_str','itemid',40626),(2119,'history_text','itemid',40626),(2120,'history_uint','itemid',40626),(2121,'trends','itemid',40626),(2122,'trends_uint','itemid',40626),(2123,'events','itemid',40628),(2124,'history','itemid',40628),(2125,'history_log','itemid',40628),(2126,'history_str','itemid',40628),(2127,'history_text','itemid',40628),(2128,'history_uint','itemid',40628),(2129,'trends','itemid',40628),(2130,'trends_uint','itemid',40628),(2131,'events','itemid',40501),(2132,'history','itemid',40501),(2133,'history_log','itemid',40501),(2134,'history_str','itemid',40501),(2135,'history_text','itemid',40501),(2136,'history_uint','itemid',40501),(2137,'trends','itemid',40501),(2138,'trends_uint','itemid',40501),(2139,'events','itemid',40502),(2140,'history','itemid',40502),(2141,'history_log','itemid',40502),(2142,'history_str','itemid',40502),(2143,'history_text','itemid',40502),(2144,'history_uint','itemid',40502),(2145,'trends','itemid',40502),(2146,'trends_uint','itemid',40502),(2147,'events','itemid',40503),(2148,'history','itemid',40503),(2149,'history_log','itemid',40503),(2150,'history_str','itemid',40503),(2151,'history_text','itemid',40503),(2152,'history_uint','itemid',40503),(2153,'trends','itemid',40503),(2154,'trends_uint','itemid',40503),(2155,'events','itemid',33181),(2156,'history','itemid',33181),(2157,'history_log','itemid',33181),(2158,'history_str','itemid',33181),(2159,'history_text','itemid',33181),(2160,'history_uint','itemid',33181),(2161,'trends','itemid',33181),(2162,'trends_uint','itemid',33181),(2163,'events','itemid',40504),(2164,'history','itemid',40504),(2165,'history_log','itemid',40504),(2166,'history_str','itemid',40504),(2167,'history_text','itemid',40504),(2168,'history_uint','itemid',40504),(2169,'trends','itemid',40504),(2170,'trends_uint','itemid',40504),(2171,'events','itemid',40505),(2172,'history','itemid',40505),(2173,'history_log','itemid',40505),(2174,'history_str','itemid',40505),(2175,'history_text','itemid',40505),(2176,'history_uint','itemid',40505),(2177,'trends','itemid',40505),(2178,'trends_uint','itemid',40505),(2179,'events','itemid',40506),(2180,'history','itemid',40506),(2181,'history_log','itemid',40506),(2182,'history_str','itemid',40506),(2183,'history_text','itemid',40506),(2184,'history_uint','itemid',40506),(2185,'trends','itemid',40506),(2186,'trends_uint','itemid',40506),(2187,'events','itemid',40507),(2188,'history','itemid',40507),(2189,'history_log','itemid',40507),(2190,'history_str','itemid',40507),(2191,'history_text','itemid',40507),(2192,'history_uint','itemid',40507),(2193,'trends','itemid',40507),(2194,'trends_uint','itemid',40507),(2195,'events','itemid',43771),(2196,'history','itemid',43771),(2197,'history_log','itemid',43771),(2198,'history_str','itemid',43771),(2199,'history_text','itemid',43771),(2200,'history_uint','itemid',43771),(2201,'trends','itemid',43771),(2202,'trends_uint','itemid',43771),(2203,'events','itemid',40508),(2204,'history','itemid',40508),(2205,'history_log','itemid',40508),(2206,'history_str','itemid',40508),(2207,'history_text','itemid',40508),(2208,'history_uint','itemid',40508),(2209,'trends','itemid',40508),(2210,'trends_uint','itemid',40508),(2211,'events','itemid',40509),(2212,'history','itemid',40509),(2213,'history_log','itemid',40509),(2214,'history_str','itemid',40509),(2215,'history_text','itemid',40509),(2216,'history_uint','itemid',40509),(2217,'trends','itemid',40509),(2218,'trends_uint','itemid',40509),(2219,'events','itemid',40511),(2220,'history','itemid',40511),(2221,'history_log','itemid',40511),(2222,'history_str','itemid',40511),(2223,'history_text','itemid',40511),(2224,'history_uint','itemid',40511),(2225,'trends','itemid',40511),(2226,'trends_uint','itemid',40511),(2227,'events','itemid',40510),(2228,'history','itemid',40510),(2229,'history_log','itemid',40510),(2230,'history_str','itemid',40510),(2231,'history_text','itemid',40510),(2232,'history_uint','itemid',40510),(2233,'trends','itemid',40510),(2234,'trends_uint','itemid',40510),(2235,'events','itemid',40512),(2236,'history','itemid',40512),(2237,'history_log','itemid',40512),(2238,'history_str','itemid',40512),(2239,'history_text','itemid',40512),(2240,'history_uint','itemid',40512),(2241,'trends','itemid',40512),(2242,'trends_uint','itemid',40512),(2243,'events','itemid',28511),(2244,'history','itemid',28511),(2245,'history_log','itemid',28511),(2246,'history_str','itemid',28511),(2247,'history_text','itemid',28511),(2248,'history_uint','itemid',28511),(2249,'trends','itemid',28511),(2250,'trends_uint','itemid',28511),(2251,'events','itemid',30902),(2252,'history','itemid',30902),(2253,'history_log','itemid',30902),(2254,'history_str','itemid',30902),(2255,'history_text','itemid',30902),(2256,'history_uint','itemid',30902),(2257,'trends','itemid',30902),(2258,'trends_uint','itemid',30902),(2259,'events','itemid',30903),(2260,'history','itemid',30903),(2261,'history_log','itemid',30903),(2262,'history_str','itemid',30903),(2263,'history_text','itemid',30903),(2264,'history_uint','itemid',30903),(2265,'trends','itemid',30903),(2266,'trends_uint','itemid',30903),(2267,'events','itemid',30914),(2268,'history','itemid',30914),(2269,'history_log','itemid',30914),(2270,'history_str','itemid',30914),(2271,'history_text','itemid',30914),(2272,'history_uint','itemid',30914),(2273,'trends','itemid',30914),(2274,'trends_uint','itemid',30914),(2275,'events','itemid',30913),(2276,'history','itemid',30913),(2277,'history_log','itemid',30913),(2278,'history_str','itemid',30913),(2279,'history_text','itemid',30913),(2280,'history_uint','itemid',30913),(2281,'trends','itemid',30913),(2282,'trends_uint','itemid',30913),(2283,'events','itemid',30912),(2284,'history','itemid',30912),(2285,'history_log','itemid',30912),(2286,'history_str','itemid',30912),(2287,'history_text','itemid',30912),(2288,'history_uint','itemid',30912),(2289,'trends','itemid',30912),(2290,'trends_uint','itemid',30912),(2291,'events','itemid',30911),(2292,'history','itemid',30911),(2293,'history_log','itemid',30911),(2294,'history_str','itemid',30911),(2295,'history_text','itemid',30911),(2296,'history_uint','itemid',30911),(2297,'trends','itemid',30911),(2298,'trends_uint','itemid',30911),(2299,'events','itemid',30908),(2300,'history','itemid',30908),(2301,'history_log','itemid',30908),(2302,'history_str','itemid',30908),(2303,'history_text','itemid',30908),(2304,'history_uint','itemid',30908),(2305,'trends','itemid',30908),(2306,'trends_uint','itemid',30908),(2307,'events','itemid',30907),(2308,'history','itemid',30907),(2309,'history_log','itemid',30907),(2310,'history_str','itemid',30907),(2311,'history_text','itemid',30907),(2312,'history_uint','itemid',30907),(2313,'trends','itemid',30907),(2314,'trends_uint','itemid',30907),(2315,'events','itemid',30906),(2316,'history','itemid',30906),(2317,'history_log','itemid',30906),(2318,'history_str','itemid',30906),(2319,'history_text','itemid',30906),(2320,'history_uint','itemid',30906),(2321,'trends','itemid',30906),(2322,'trends_uint','itemid',30906),(2323,'events','itemid',30905),(2324,'history','itemid',30905),(2325,'history_log','itemid',30905),(2326,'history_str','itemid',30905),(2327,'history_text','itemid',30905),(2328,'history_uint','itemid',30905),(2329,'trends','itemid',30905),(2330,'trends_uint','itemid',30905),(2331,'events','itemid',30904),(2332,'history','itemid',30904),(2333,'history_log','itemid',30904),(2334,'history_str','itemid',30904),(2335,'history_text','itemid',30904),(2336,'history_uint','itemid',30904),(2337,'trends','itemid',30904),(2338,'trends_uint','itemid',30904),(2339,'events','itemid',30915),(2340,'history','itemid',30915),(2341,'history_log','itemid',30915),(2342,'history_str','itemid',30915),(2343,'history_text','itemid',30915),(2344,'history_uint','itemid',30915),(2345,'trends','itemid',30915),(2346,'trends_uint','itemid',30915),(2347,'events','itemid',30897),(2348,'history','itemid',30897),(2349,'history_log','itemid',30897),(2350,'history_str','itemid',30897),(2351,'history_text','itemid',30897),(2352,'history_uint','itemid',30897),(2353,'trends','itemid',30897),(2354,'trends_uint','itemid',30897),(2355,'events','itemid',30901),(2356,'history','itemid',30901),(2357,'history_log','itemid',30901),(2358,'history_str','itemid',30901),(2359,'history_text','itemid',30901),(2360,'history_uint','itemid',30901),(2361,'trends','itemid',30901),(2362,'trends_uint','itemid',30901),(2363,'events','itemid',30900),(2364,'history','itemid',30900),(2365,'history_log','itemid',30900),(2366,'history_str','itemid',30900),(2367,'history_text','itemid',30900),(2368,'history_uint','itemid',30900),(2369,'trends','itemid',30900),(2370,'trends_uint','itemid',30900),(2371,'events','itemid',30899),(2372,'history','itemid',30899),(2373,'history_log','itemid',30899),(2374,'history_str','itemid',30899),(2375,'history_text','itemid',30899),(2376,'history_uint','itemid',30899),(2377,'trends','itemid',30899),(2378,'trends_uint','itemid',30899),(2379,'events','itemid',30898),(2380,'history','itemid',30898),(2381,'history_log','itemid',30898),(2382,'history_str','itemid',30898),(2383,'history_text','itemid',30898),(2384,'history_uint','itemid',30898),(2385,'trends','itemid',30898),(2386,'trends_uint','itemid',30898),(2387,'events','itemid',30910),(2388,'history','itemid',30910),(2389,'history_log','itemid',30910),(2390,'history_str','itemid',30910),(2391,'history_text','itemid',30910),(2392,'history_uint','itemid',30910),(2393,'trends','itemid',30910),(2394,'trends_uint','itemid',30910),(2395,'events','itemid',30909),(2396,'history','itemid',30909),(2397,'history_log','itemid',30909),(2398,'history_str','itemid',30909),(2399,'history_text','itemid',30909),(2400,'history_uint','itemid',30909),(2401,'trends','itemid',30909),(2402,'trends_uint','itemid',30909),(2403,'events','itemid',28748),(2404,'history','itemid',28748),(2405,'history_log','itemid',28748),(2406,'history_str','itemid',28748),(2407,'history_text','itemid',28748),(2408,'history_uint','itemid',28748),(2409,'trends','itemid',28748),(2410,'trends_uint','itemid',28748),(2411,'events','itemid',28743),(2412,'history','itemid',28743),(2413,'history_log','itemid',28743),(2414,'history_str','itemid',28743),(2415,'history_text','itemid',28743),(2416,'history_uint','itemid',28743),(2417,'trends','itemid',28743),(2418,'trends_uint','itemid',28743),(2419,'events','itemid',44335),(2420,'history','itemid',44335),(2421,'history_log','itemid',44335),(2422,'history_str','itemid',44335),(2423,'history_text','itemid',44335),(2424,'history_uint','itemid',44335),(2425,'trends','itemid',44335),(2426,'trends_uint','itemid',44335),(2427,'events','itemid',30896),(2428,'history','itemid',30896),(2429,'history_log','itemid',30896),(2430,'history_str','itemid',30896),(2431,'history_text','itemid',30896),(2432,'history_uint','itemid',30896),(2433,'trends','itemid',30896),(2434,'trends_uint','itemid',30896),(2435,'events','itemid',28795),(2436,'history','itemid',28795),(2437,'history_log','itemid',28795),(2438,'history_str','itemid',28795),(2439,'history_text','itemid',28795),(2440,'history_uint','itemid',28795),(2441,'trends','itemid',28795),(2442,'trends_uint','itemid',28795),(2443,'events','itemid',28794),(2444,'history','itemid',28794),(2445,'history_log','itemid',28794),(2446,'history_str','itemid',28794),(2447,'history_text','itemid',28794),(2448,'history_uint','itemid',28794),(2449,'trends','itemid',28794),(2450,'trends_uint','itemid',28794),(2451,'events','itemid',28775),(2452,'history','itemid',28775),(2453,'history_log','itemid',28775),(2454,'history_str','itemid',28775),(2455,'history_text','itemid',28775),(2456,'history_uint','itemid',28775),(2457,'trends','itemid',28775),(2458,'trends_uint','itemid',28775),(2459,'events','itemid',28792),(2460,'history','itemid',28792),(2461,'history_log','itemid',28792),(2462,'history_str','itemid',28792),(2463,'history_text','itemid',28792),(2464,'history_uint','itemid',28792),(2465,'trends','itemid',28792),(2466,'trends_uint','itemid',28792),(2467,'events','itemid',28793),(2468,'history','itemid',28793),(2469,'history_log','itemid',28793),(2470,'history_str','itemid',28793),(2471,'history_text','itemid',28793),(2472,'history_uint','itemid',28793),(2473,'trends','itemid',28793),(2474,'trends_uint','itemid',28793),(2475,'events','itemid',28791),(2476,'history','itemid',28791),(2477,'history_log','itemid',28791),(2478,'history_str','itemid',28791),(2479,'history_text','itemid',28791),(2480,'history_uint','itemid',28791),(2481,'trends','itemid',28791),(2482,'trends_uint','itemid',28791),(2483,'events','itemid',28790),(2484,'history','itemid',28790),(2485,'history_log','itemid',28790),(2486,'history_str','itemid',28790),(2487,'history_text','itemid',28790),(2488,'history_uint','itemid',28790),(2489,'trends','itemid',28790),(2490,'trends_uint','itemid',28790),(2491,'events','itemid',28784),(2492,'history','itemid',28784),(2493,'history_log','itemid',28784),(2494,'history_str','itemid',28784),(2495,'history_text','itemid',28784),(2496,'history_uint','itemid',28784),(2497,'trends','itemid',28784),(2498,'trends_uint','itemid',28784),(2499,'events','itemid',28786),(2500,'history','itemid',28786),(2501,'history_log','itemid',28786),(2502,'history_str','itemid',28786),(2503,'history_text','itemid',28786),(2504,'history_uint','itemid',28786),(2505,'trends','itemid',28786),(2506,'trends_uint','itemid',28786),(2507,'events','itemid',28787),(2508,'history','itemid',28787),(2509,'history_log','itemid',28787),(2510,'history_str','itemid',28787),(2511,'history_text','itemid',28787),(2512,'history_uint','itemid',28787),(2513,'trends','itemid',28787),(2514,'trends_uint','itemid',28787),(2515,'events','itemid',28785),(2516,'history','itemid',28785),(2517,'history_log','itemid',28785),(2518,'history_str','itemid',28785),(2519,'history_text','itemid',28785),(2520,'history_uint','itemid',28785),(2521,'trends','itemid',28785),(2522,'trends_uint','itemid',28785),(2523,'events','itemid',28783),(2524,'history','itemid',28783),(2525,'history_log','itemid',28783),(2526,'history_str','itemid',28783),(2527,'history_text','itemid',28783),(2528,'history_uint','itemid',28783),(2529,'trends','itemid',28783),(2530,'trends_uint','itemid',28783),(2531,'events','itemid',28782),(2532,'history','itemid',28782),(2533,'history_log','itemid',28782),(2534,'history_str','itemid',28782),(2535,'history_text','itemid',28782),(2536,'history_uint','itemid',28782),(2537,'trends','itemid',28782),(2538,'trends_uint','itemid',28782),(2539,'events','itemid',28781),(2540,'history','itemid',28781),(2541,'history_log','itemid',28781),(2542,'history_str','itemid',28781),(2543,'history_text','itemid',28781),(2544,'history_uint','itemid',28781),(2545,'trends','itemid',28781),(2546,'trends_uint','itemid',28781),(2547,'events','itemid',28780),(2548,'history','itemid',28780),(2549,'history_log','itemid',28780),(2550,'history_str','itemid',28780),(2551,'history_text','itemid',28780),(2552,'history_uint','itemid',28780),(2553,'trends','itemid',28780),(2554,'trends_uint','itemid',28780),(2555,'events','itemid',28779),(2556,'history','itemid',28779),(2557,'history_log','itemid',28779),(2558,'history_str','itemid',28779),(2559,'history_text','itemid',28779),(2560,'history_uint','itemid',28779),(2561,'trends','itemid',28779),(2562,'trends_uint','itemid',28779),(2563,'events','itemid',28778),(2564,'history','itemid',28778),(2565,'history_log','itemid',28778),(2566,'history_str','itemid',28778),(2567,'history_text','itemid',28778),(2568,'history_uint','itemid',28778),(2569,'trends','itemid',28778),(2570,'trends_uint','itemid',28778),(2571,'events','itemid',28796),(2572,'history','itemid',28796),(2573,'history_log','itemid',28796),(2574,'history_str','itemid',28796),(2575,'history_text','itemid',28796),(2576,'history_uint','itemid',28796),(2577,'trends','itemid',28796),(2578,'trends_uint','itemid',28796),(2579,'events','itemid',28789),(2580,'history','itemid',28789),(2581,'history_log','itemid',28789),(2582,'history_str','itemid',28789),(2583,'history_text','itemid',28789),(2584,'history_uint','itemid',28789),(2585,'trends','itemid',28789),(2586,'trends_uint','itemid',28789),(2587,'events','itemid',28788),(2588,'history','itemid',28788),(2589,'history_log','itemid',28788),(2590,'history_str','itemid',28788),(2591,'history_text','itemid',28788),(2592,'history_uint','itemid',28788),(2593,'trends','itemid',28788),(2594,'trends_uint','itemid',28788),(2595,'events','itemid',28777),(2596,'history','itemid',28777),(2597,'history_log','itemid',28777),(2598,'history_str','itemid',28777),(2599,'history_text','itemid',28777),(2600,'history_uint','itemid',28777),(2601,'trends','itemid',28777),(2602,'trends_uint','itemid',28777),(2603,'events','itemid',28776),(2604,'history','itemid',28776),(2605,'history_log','itemid',28776),(2606,'history_str','itemid',28776),(2607,'history_text','itemid',28776),(2608,'history_uint','itemid',28776),(2609,'trends','itemid',28776),(2610,'trends_uint','itemid',28776),(2611,'events','itemid',30685),(2612,'history','itemid',30685),(2613,'history_log','itemid',30685),(2614,'history_str','itemid',30685),(2615,'history_text','itemid',30685),(2616,'history_uint','itemid',30685),(2617,'trends','itemid',30685),(2618,'trends_uint','itemid',30685),(2619,'events','itemid',31792),(2620,'history','itemid',31792),(2621,'history_log','itemid',31792),(2622,'history_str','itemid',31792),(2623,'history_text','itemid',31792),(2624,'history_uint','itemid',31792),(2625,'trends','itemid',31792),(2626,'trends_uint','itemid',31792),(2627,'events','itemid',31794),(2628,'history','itemid',31794),(2629,'history_log','itemid',31794),(2630,'history_str','itemid',31794),(2631,'history_text','itemid',31794),(2632,'history_uint','itemid',31794),(2633,'trends','itemid',31794),(2634,'trends_uint','itemid',31794),(2635,'events','itemid',31801),(2636,'history','itemid',31801),(2637,'history_log','itemid',31801),(2638,'history_str','itemid',31801),(2639,'history_text','itemid',31801),(2640,'history_uint','itemid',31801),(2641,'trends','itemid',31801),(2642,'trends_uint','itemid',31801),(2643,'events','itemid',31800),(2644,'history','itemid',31800),(2645,'history_log','itemid',31800),(2646,'history_str','itemid',31800),(2647,'history_text','itemid',31800),(2648,'history_uint','itemid',31800),(2649,'trends','itemid',31800),(2650,'trends_uint','itemid',31800),(2651,'events','itemid',31784),(2652,'history','itemid',31784),(2653,'history_log','itemid',31784),(2654,'history_str','itemid',31784),(2655,'history_text','itemid',31784),(2656,'history_uint','itemid',31784),(2657,'trends','itemid',31784),(2658,'trends_uint','itemid',31784),(2659,'events','itemid',36771),(2660,'history','itemid',36771),(2661,'history_log','itemid',36771),(2662,'history_str','itemid',36771),(2663,'history_text','itemid',36771),(2664,'history_uint','itemid',36771),(2665,'trends','itemid',36771),(2666,'trends_uint','itemid',36771),(2667,'events','itemid',31799),(2668,'history','itemid',31799),(2669,'history_log','itemid',31799),(2670,'history_str','itemid',31799),(2671,'history_text','itemid',31799),(2672,'history_uint','itemid',31799),(2673,'trends','itemid',31799),(2674,'trends_uint','itemid',31799),(2675,'events','itemid',33390),(2676,'history','itemid',33390),(2677,'history_log','itemid',33390),(2678,'history_str','itemid',33390),(2679,'history_text','itemid',33390),(2680,'history_uint','itemid',33390),(2681,'trends','itemid',33390),(2682,'trends_uint','itemid',33390),(2683,'events','itemid',31798),(2684,'history','itemid',31798),(2685,'history_log','itemid',31798),(2686,'history_str','itemid',31798),(2687,'history_text','itemid',31798),(2688,'history_uint','itemid',31798),(2689,'trends','itemid',31798),(2690,'trends_uint','itemid',31798),(2691,'events','itemid',31797),(2692,'history','itemid',31797),(2693,'history_log','itemid',31797),(2694,'history_str','itemid',31797),(2695,'history_text','itemid',31797),(2696,'history_uint','itemid',31797),(2697,'trends','itemid',31797),(2698,'trends_uint','itemid',31797),(2699,'events','itemid',36770),(2700,'history','itemid',36770),(2701,'history_log','itemid',36770),(2702,'history_str','itemid',36770),(2703,'history_text','itemid',36770),(2704,'history_uint','itemid',36770),(2705,'trends','itemid',36770),(2706,'trends_uint','itemid',36770),(2707,'events','itemid',33389),(2708,'history','itemid',33389),(2709,'history_log','itemid',33389),(2710,'history_str','itemid',33389),(2711,'history_text','itemid',33389),(2712,'history_uint','itemid',33389),(2713,'trends','itemid',33389),(2714,'trends_uint','itemid',33389),(2715,'events','itemid',31796),(2716,'history','itemid',31796),(2717,'history_log','itemid',31796),(2718,'history_str','itemid',31796),(2719,'history_text','itemid',31796),(2720,'history_uint','itemid',31796),(2721,'trends','itemid',31796),(2722,'trends_uint','itemid',31796),(2723,'events','itemid',31795),(2724,'history','itemid',31795),(2725,'history_log','itemid',31795),(2726,'history_str','itemid',31795),(2727,'history_text','itemid',31795),(2728,'history_uint','itemid',31795),(2729,'trends','itemid',31795),(2730,'trends_uint','itemid',31795),(2731,'events','itemid',36769),(2732,'history','itemid',36769),(2733,'history_log','itemid',36769),(2734,'history_str','itemid',36769),(2735,'history_text','itemid',36769),(2736,'history_uint','itemid',36769),(2737,'trends','itemid',36769),(2738,'trends_uint','itemid',36769),(2739,'events','itemid',31802),(2740,'history','itemid',31802),(2741,'history_log','itemid',31802),(2742,'history_str','itemid',31802),(2743,'history_text','itemid',31802),(2744,'history_uint','itemid',31802),(2745,'trends','itemid',31802),(2746,'trends_uint','itemid',31802),(2747,'events','itemid',31793),(2748,'history','itemid',31793),(2749,'history_log','itemid',31793),(2750,'history_str','itemid',31793),(2751,'history_text','itemid',31793),(2752,'history_uint','itemid',31793),(2753,'trends','itemid',31793),(2754,'trends_uint','itemid',31793),(2755,'events','itemid',31785),(2756,'history','itemid',31785),(2757,'history_log','itemid',31785),(2758,'history_str','itemid',31785),(2759,'history_text','itemid',31785),(2760,'history_uint','itemid',31785),(2761,'trends','itemid',31785),(2762,'trends_uint','itemid',31785),(2763,'events','itemid',31791),(2764,'history','itemid',31791),(2765,'history_log','itemid',31791),(2766,'history_str','itemid',31791),(2767,'history_text','itemid',31791),(2768,'history_uint','itemid',31791),(2769,'trends','itemid',31791),(2770,'trends_uint','itemid',31791),(2771,'events','itemid',31790),(2772,'history','itemid',31790),(2773,'history_log','itemid',31790),(2774,'history_str','itemid',31790),(2775,'history_text','itemid',31790),(2776,'history_uint','itemid',31790),(2777,'trends','itemid',31790),(2778,'trends_uint','itemid',31790),(2779,'events','itemid',31789),(2780,'history','itemid',31789),(2781,'history_log','itemid',31789),(2782,'history_str','itemid',31789),(2783,'history_text','itemid',31789),(2784,'history_uint','itemid',31789),(2785,'trends','itemid',31789),(2786,'trends_uint','itemid',31789),(2787,'events','itemid',31788),(2788,'history','itemid',31788),(2789,'history_log','itemid',31788),(2790,'history_str','itemid',31788),(2791,'history_text','itemid',31788),(2792,'history_uint','itemid',31788),(2793,'trends','itemid',31788),(2794,'trends_uint','itemid',31788),(2795,'events','itemid',31787),(2796,'history','itemid',31787),(2797,'history_log','itemid',31787),(2798,'history_str','itemid',31787),(2799,'history_text','itemid',31787),(2800,'history_uint','itemid',31787),(2801,'trends','itemid',31787),(2802,'trends_uint','itemid',31787),(2803,'events','itemid',31786),(2804,'history','itemid',31786),(2805,'history_log','itemid',31786),(2806,'history_str','itemid',31786),(2807,'history_text','itemid',31786),(2808,'history_uint','itemid',31786),(2809,'trends','itemid',31786),(2810,'trends_uint','itemid',31786),(2811,'events','itemid',31783),(2812,'history','itemid',31783),(2813,'history_log','itemid',31783),(2814,'history_str','itemid',31783),(2815,'history_text','itemid',31783),(2816,'history_uint','itemid',31783),(2817,'trends','itemid',31783),(2818,'trends_uint','itemid',31783),(2819,'events','itemid',31782),(2820,'history','itemid',31782),(2821,'history_log','itemid',31782),(2822,'history_str','itemid',31782),(2823,'history_text','itemid',31782),(2824,'history_uint','itemid',31782),(2825,'trends','itemid',31782),(2826,'trends_uint','itemid',31782),(2827,'events','itemid',32117),(2828,'history','itemid',32117),(2829,'history_log','itemid',32117),(2830,'history_str','itemid',32117),(2831,'history_text','itemid',32117),(2832,'history_uint','itemid',32117),(2833,'trends','itemid',32117),(2834,'trends_uint','itemid',32117),(2835,'events','itemid',32165),(2836,'history','itemid',32165),(2837,'history_log','itemid',32165),(2838,'history_str','itemid',32165),(2839,'history_text','itemid',32165),(2840,'history_uint','itemid',32165),(2841,'trends','itemid',32165),(2842,'trends_uint','itemid',32165),(2843,'events','itemid',32137),(2844,'history','itemid',32137),(2845,'history_log','itemid',32137),(2846,'history_str','itemid',32137),(2847,'history_text','itemid',32137),(2848,'history_uint','itemid',32137),(2849,'trends','itemid',32137),(2850,'trends_uint','itemid',32137),(2851,'events','itemid',32134),(2852,'history','itemid',32134),(2853,'history_log','itemid',32134),(2854,'history_str','itemid',32134),(2855,'history_text','itemid',32134),(2856,'history_uint','itemid',32134),(2857,'trends','itemid',32134),(2858,'trends_uint','itemid',32134),(2859,'events','itemid',32164),(2860,'history','itemid',32164),(2861,'history_log','itemid',32164),(2862,'history_str','itemid',32164),(2863,'history_text','itemid',32164),(2864,'history_uint','itemid',32164),(2865,'trends','itemid',32164),(2866,'trends_uint','itemid',32164),(2867,'events','itemid',32122),(2868,'history','itemid',32122),(2869,'history_log','itemid',32122),(2870,'history_str','itemid',32122),(2871,'history_text','itemid',32122),(2872,'history_uint','itemid',32122),(2873,'trends','itemid',32122),(2874,'trends_uint','itemid',32122),(2875,'events','itemid',32145),(2876,'history','itemid',32145),(2877,'history_log','itemid',32145),(2878,'history_str','itemid',32145),(2879,'history_text','itemid',32145),(2880,'history_uint','itemid',32145),(2881,'trends','itemid',32145),(2882,'trends_uint','itemid',32145),(2883,'events','itemid',32147),(2884,'history','itemid',32147),(2885,'history_log','itemid',32147),(2886,'history_str','itemid',32147),(2887,'history_text','itemid',32147),(2888,'history_uint','itemid',32147),(2889,'trends','itemid',32147),(2890,'trends_uint','itemid',32147),(2891,'events','itemid',32148),(2892,'history','itemid',32148),(2893,'history_log','itemid',32148),(2894,'history_str','itemid',32148),(2895,'history_text','itemid',32148),(2896,'history_uint','itemid',32148),(2897,'trends','itemid',32148),(2898,'trends_uint','itemid',32148),(2899,'events','itemid',32118),(2900,'history','itemid',32118),(2901,'history_log','itemid',32118),(2902,'history_str','itemid',32118),(2903,'history_text','itemid',32118),(2904,'history_uint','itemid',32118),(2905,'trends','itemid',32118),(2906,'trends_uint','itemid',32118),(2907,'events','itemid',32121),(2908,'history','itemid',32121),(2909,'history_log','itemid',32121),(2910,'history_str','itemid',32121),(2911,'history_text','itemid',32121),(2912,'history_uint','itemid',32121),(2913,'trends','itemid',32121),(2914,'trends_uint','itemid',32121),(2915,'events','itemid',32149),(2916,'history','itemid',32149),(2917,'history_log','itemid',32149),(2918,'history_str','itemid',32149),(2919,'history_text','itemid',32149),(2920,'history_uint','itemid',32149),(2921,'trends','itemid',32149),(2922,'trends_uint','itemid',32149),(2923,'events','itemid',32150),(2924,'history','itemid',32150),(2925,'history_log','itemid',32150),(2926,'history_str','itemid',32150),(2927,'history_text','itemid',32150),(2928,'history_uint','itemid',32150),(2929,'trends','itemid',32150),(2930,'trends_uint','itemid',32150),(2931,'events','itemid',32151),(2932,'history','itemid',32151),(2933,'history_log','itemid',32151),(2934,'history_str','itemid',32151),(2935,'history_text','itemid',32151),(2936,'history_uint','itemid',32151),(2937,'trends','itemid',32151),(2938,'trends_uint','itemid',32151),(2939,'events','itemid',32152),(2940,'history','itemid',32152),(2941,'history_log','itemid',32152),(2942,'history_str','itemid',32152),(2943,'history_text','itemid',32152),(2944,'history_uint','itemid',32152),(2945,'trends','itemid',32152),(2946,'trends_uint','itemid',32152),(2947,'events','itemid',32153),(2948,'history','itemid',32153),(2949,'history_log','itemid',32153),(2950,'history_str','itemid',32153),(2951,'history_text','itemid',32153),(2952,'history_uint','itemid',32153),(2953,'trends','itemid',32153),(2954,'trends_uint','itemid',32153),(2955,'events','itemid',32154),(2956,'history','itemid',32154),(2957,'history_log','itemid',32154),(2958,'history_str','itemid',32154),(2959,'history_text','itemid',32154),(2960,'history_uint','itemid',32154),(2961,'trends','itemid',32154),(2962,'trends_uint','itemid',32154),(2963,'events','itemid',32155),(2964,'history','itemid',32155),(2965,'history_log','itemid',32155),(2966,'history_str','itemid',32155),(2967,'history_text','itemid',32155),(2968,'history_uint','itemid',32155),(2969,'trends','itemid',32155),(2970,'trends_uint','itemid',32155),(2971,'events','itemid',32146),(2972,'history','itemid',32146),(2973,'history_log','itemid',32146),(2974,'history_str','itemid',32146),(2975,'history_text','itemid',32146),(2976,'history_uint','itemid',32146),(2977,'trends','itemid',32146),(2978,'trends_uint','itemid',32146),(2979,'events','itemid',32156),(2980,'history','itemid',32156),(2981,'history_log','itemid',32156),(2982,'history_str','itemid',32156),(2983,'history_text','itemid',32156),(2984,'history_uint','itemid',32156),(2985,'trends','itemid',32156),(2986,'trends_uint','itemid',32156),(2987,'events','itemid',32158),(2988,'history','itemid',32158),(2989,'history_log','itemid',32158),(2990,'history_str','itemid',32158),(2991,'history_text','itemid',32158),(2992,'history_uint','itemid',32158),(2993,'trends','itemid',32158),(2994,'trends_uint','itemid',32158),(2995,'events','itemid',32159),(2996,'history','itemid',32159),(2997,'history_log','itemid',32159),(2998,'history_str','itemid',32159),(2999,'history_text','itemid',32159),(3000,'history_uint','itemid',32159),(3001,'trends','itemid',32159),(3002,'trends_uint','itemid',32159),(3003,'events','itemid',32160),(3004,'history','itemid',32160),(3005,'history_log','itemid',32160),(3006,'history_str','itemid',32160),(3007,'history_text','itemid',32160),(3008,'history_uint','itemid',32160),(3009,'trends','itemid',32160),(3010,'trends_uint','itemid',32160),(3011,'events','itemid',32161),(3012,'history','itemid',32161),(3013,'history_log','itemid',32161),(3014,'history_str','itemid',32161),(3015,'history_text','itemid',32161),(3016,'history_uint','itemid',32161),(3017,'trends','itemid',32161),(3018,'trends_uint','itemid',32161),(3019,'events','itemid',32162),(3020,'history','itemid',32162),(3021,'history_log','itemid',32162),(3022,'history_str','itemid',32162),(3023,'history_text','itemid',32162),(3024,'history_uint','itemid',32162),(3025,'trends','itemid',32162),(3026,'trends_uint','itemid',32162),(3027,'events','itemid',32163),(3028,'history','itemid',32163),(3029,'history_log','itemid',32163),(3030,'history_str','itemid',32163),(3031,'history_text','itemid',32163),(3032,'history_uint','itemid',32163),(3033,'trends','itemid',32163),(3034,'trends_uint','itemid',32163),(3035,'events','itemid',32166),(3036,'history','itemid',32166),(3037,'history_log','itemid',32166),(3038,'history_str','itemid',32166),(3039,'history_text','itemid',32166),(3040,'history_uint','itemid',32166),(3041,'trends','itemid',32166),(3042,'trends_uint','itemid',32166),(3043,'events','itemid',32157),(3044,'history','itemid',32157),(3045,'history_log','itemid',32157),(3046,'history_str','itemid',32157),(3047,'history_text','itemid',32157),(3048,'history_uint','itemid',32157),(3049,'trends','itemid',32157),(3050,'trends_uint','itemid',32157),(3051,'events','itemid',32144),(3052,'history','itemid',32144),(3053,'history_log','itemid',32144),(3054,'history_str','itemid',32144),(3055,'history_text','itemid',32144),(3056,'history_uint','itemid',32144),(3057,'trends','itemid',32144),(3058,'trends_uint','itemid',32144),(3059,'events','itemid',32133),(3060,'history','itemid',32133),(3061,'history_log','itemid',32133),(3062,'history_str','itemid',32133),(3063,'history_text','itemid',32133),(3064,'history_uint','itemid',32133),(3065,'trends','itemid',32133),(3066,'trends_uint','itemid',32133),(3067,'events','itemid',32143),(3068,'history','itemid',32143),(3069,'history_log','itemid',32143),(3070,'history_str','itemid',32143),(3071,'history_text','itemid',32143),(3072,'history_uint','itemid',32143),(3073,'trends','itemid',32143),(3074,'trends_uint','itemid',32143),(3075,'events','itemid',32124),(3076,'history','itemid',32124),(3077,'history_log','itemid',32124),(3078,'history_str','itemid',32124),(3079,'history_text','itemid',32124),(3080,'history_uint','itemid',32124),(3081,'trends','itemid',32124),(3082,'trends_uint','itemid',32124),(3083,'events','itemid',32125),(3084,'history','itemid',32125),(3085,'history_log','itemid',32125),(3086,'history_str','itemid',32125),(3087,'history_text','itemid',32125),(3088,'history_uint','itemid',32125),(3089,'trends','itemid',32125),(3090,'trends_uint','itemid',32125),(3091,'events','itemid',32126),(3092,'history','itemid',32126),(3093,'history_log','itemid',32126),(3094,'history_str','itemid',32126),(3095,'history_text','itemid',32126),(3096,'history_uint','itemid',32126),(3097,'trends','itemid',32126),(3098,'trends_uint','itemid',32126),(3099,'events','itemid',32127),(3100,'history','itemid',32127),(3101,'history_log','itemid',32127),(3102,'history_str','itemid',32127),(3103,'history_text','itemid',32127),(3104,'history_uint','itemid',32127),(3105,'trends','itemid',32127),(3106,'trends_uint','itemid',32127),(3107,'events','itemid',32128),(3108,'history','itemid',32128),(3109,'history_log','itemid',32128),(3110,'history_str','itemid',32128),(3111,'history_text','itemid',32128),(3112,'history_uint','itemid',32128),(3113,'trends','itemid',32128),(3114,'trends_uint','itemid',32128),(3115,'events','itemid',32129),(3116,'history','itemid',32129),(3117,'history_log','itemid',32129),(3118,'history_str','itemid',32129),(3119,'history_text','itemid',32129),(3120,'history_uint','itemid',32129),(3121,'trends','itemid',32129),(3122,'trends_uint','itemid',32129),(3123,'events','itemid',32130),(3124,'history','itemid',32130),(3125,'history_log','itemid',32130),(3126,'history_str','itemid',32130),(3127,'history_text','itemid',32130),(3128,'history_uint','itemid',32130),(3129,'trends','itemid',32130),(3130,'trends_uint','itemid',32130),(3131,'events','itemid',32131),(3132,'history','itemid',32131),(3133,'history_log','itemid',32131),(3134,'history_str','itemid',32131),(3135,'history_text','itemid',32131),(3136,'history_uint','itemid',32131),(3137,'trends','itemid',32131),(3138,'trends_uint','itemid',32131),(3139,'events','itemid',32123),(3140,'history','itemid',32123),(3141,'history_log','itemid',32123),(3142,'history_str','itemid',32123),(3143,'history_text','itemid',32123),(3144,'history_uint','itemid',32123),(3145,'trends','itemid',32123),(3146,'trends_uint','itemid',32123),(3147,'events','itemid',32132),(3148,'history','itemid',32132),(3149,'history_log','itemid',32132),(3150,'history_str','itemid',32132),(3151,'history_text','itemid',32132),(3152,'history_uint','itemid',32132),(3153,'trends','itemid',32132),(3154,'trends_uint','itemid',32132),(3155,'events','itemid',32120),(3156,'history','itemid',32120),(3157,'history_log','itemid',32120),(3158,'history_str','itemid',32120),(3159,'history_text','itemid',32120),(3160,'history_uint','itemid',32120),(3161,'trends','itemid',32120),(3162,'trends_uint','itemid',32120),(3163,'events','itemid',32135),(3164,'history','itemid',32135),(3165,'history_log','itemid',32135),(3166,'history_str','itemid',32135),(3167,'history_text','itemid',32135),(3168,'history_uint','itemid',32135),(3169,'trends','itemid',32135),(3170,'trends_uint','itemid',32135),(3171,'events','itemid',32136),(3172,'history','itemid',32136),(3173,'history_log','itemid',32136),(3174,'history_str','itemid',32136),(3175,'history_text','itemid',32136),(3176,'history_uint','itemid',32136),(3177,'trends','itemid',32136),(3178,'trends_uint','itemid',32136),(3179,'events','itemid',32119),(3180,'history','itemid',32119),(3181,'history_log','itemid',32119),(3182,'history_str','itemid',32119),(3183,'history_text','itemid',32119),(3184,'history_uint','itemid',32119),(3185,'trends','itemid',32119),(3186,'trends_uint','itemid',32119),(3187,'events','itemid',32138),(3188,'history','itemid',32138),(3189,'history_log','itemid',32138),(3190,'history_str','itemid',32138),(3191,'history_text','itemid',32138),(3192,'history_uint','itemid',32138),(3193,'trends','itemid',32138),(3194,'trends_uint','itemid',32138),(3195,'events','itemid',32139),(3196,'history','itemid',32139),(3197,'history_log','itemid',32139),(3198,'history_str','itemid',32139),(3199,'history_text','itemid',32139),(3200,'history_uint','itemid',32139),(3201,'trends','itemid',32139),(3202,'trends_uint','itemid',32139),(3203,'events','itemid',32140),(3204,'history','itemid',32140),(3205,'history_log','itemid',32140),(3206,'history_str','itemid',32140),(3207,'history_text','itemid',32140),(3208,'history_uint','itemid',32140),(3209,'trends','itemid',32140),(3210,'trends_uint','itemid',32140),(3211,'events','itemid',32141),(3212,'history','itemid',32141),(3213,'history_log','itemid',32141),(3214,'history_str','itemid',32141),(3215,'history_text','itemid',32141),(3216,'history_uint','itemid',32141),(3217,'trends','itemid',32141),(3218,'trends_uint','itemid',32141),(3219,'events','itemid',32142),(3220,'history','itemid',32142),(3221,'history_log','itemid',32142),(3222,'history_str','itemid',32142),(3223,'history_text','itemid',32142),(3224,'history_uint','itemid',32142),(3225,'trends','itemid',32142),(3226,'trends_uint','itemid',32142),(3227,'events','itemid',32167),(3228,'history','itemid',32167),(3229,'history_log','itemid',32167),(3230,'history_str','itemid',32167),(3231,'history_text','itemid',32167),(3232,'history_uint','itemid',32167),(3233,'trends','itemid',32167),(3234,'trends_uint','itemid',32167),(3235,'events','itemid',32463),(3236,'history','itemid',32463),(3237,'history_log','itemid',32463),(3238,'history_str','itemid',32463),(3239,'history_text','itemid',32463),(3240,'history_uint','itemid',32463),(3241,'trends','itemid',32463),(3242,'trends_uint','itemid',32463),(3243,'events','itemid',32464),(3244,'history','itemid',32464),(3245,'history_log','itemid',32464),(3246,'history_str','itemid',32464),(3247,'history_text','itemid',32464),(3248,'history_uint','itemid',32464),(3249,'trends','itemid',32464),(3250,'trends_uint','itemid',32464),(3251,'events','itemid',32693),(3252,'history','itemid',32693),(3253,'history_log','itemid',32693),(3254,'history_str','itemid',32693),(3255,'history_text','itemid',32693),(3256,'history_uint','itemid',32693),(3257,'trends','itemid',32693),(3258,'trends_uint','itemid',32693),(3259,'events','itemid',32724),(3260,'history','itemid',32724),(3261,'history_log','itemid',32724),(3262,'history_str','itemid',32724),(3263,'history_text','itemid',32724),(3264,'history_uint','itemid',32724),(3265,'trends','itemid',32724),(3266,'trends_uint','itemid',32724),(3267,'events','itemid',32726),(3268,'history','itemid',32726),(3269,'history_log','itemid',32726),(3270,'history_str','itemid',32726),(3271,'history_text','itemid',32726),(3272,'history_uint','itemid',32726),(3273,'trends','itemid',32726),(3274,'trends_uint','itemid',32726),(3275,'events','itemid',32727),(3276,'history','itemid',32727),(3277,'history_log','itemid',32727),(3278,'history_str','itemid',32727),(3279,'history_text','itemid',32727),(3280,'history_uint','itemid',32727),(3281,'trends','itemid',32727),(3282,'trends_uint','itemid',32727),(3283,'events','itemid',32728),(3284,'history','itemid',32728),(3285,'history_log','itemid',32728),(3286,'history_str','itemid',32728),(3287,'history_text','itemid',32728),(3288,'history_uint','itemid',32728),(3289,'trends','itemid',32728),(3290,'trends_uint','itemid',32728),(3291,'events','itemid',32729),(3292,'history','itemid',32729),(3293,'history_log','itemid',32729),(3294,'history_str','itemid',32729),(3295,'history_text','itemid',32729),(3296,'history_uint','itemid',32729),(3297,'trends','itemid',32729),(3298,'trends_uint','itemid',32729),(3299,'events','itemid',32730),(3300,'history','itemid',32730),(3301,'history_log','itemid',32730),(3302,'history_str','itemid',32730),(3303,'history_text','itemid',32730),(3304,'history_uint','itemid',32730),(3305,'trends','itemid',32730),(3306,'trends_uint','itemid',32730),(3307,'events','itemid',32731),(3308,'history','itemid',32731),(3309,'history_log','itemid',32731),(3310,'history_str','itemid',32731),(3311,'history_text','itemid',32731),(3312,'history_uint','itemid',32731),(3313,'trends','itemid',32731),(3314,'trends_uint','itemid',32731),(3315,'events','itemid',32732),(3316,'history','itemid',32732),(3317,'history_log','itemid',32732),(3318,'history_str','itemid',32732),(3319,'history_text','itemid',32732),(3320,'history_uint','itemid',32732),(3321,'trends','itemid',32732),(3322,'trends_uint','itemid',32732),(3323,'events','itemid',32733),(3324,'history','itemid',32733),(3325,'history_log','itemid',32733),(3326,'history_str','itemid',32733),(3327,'history_text','itemid',32733),(3328,'history_uint','itemid',32733),(3329,'trends','itemid',32733),(3330,'trends_uint','itemid',32733),(3331,'events','itemid',32734),(3332,'history','itemid',32734),(3333,'history_log','itemid',32734),(3334,'history_str','itemid',32734),(3335,'history_text','itemid',32734),(3336,'history_uint','itemid',32734),(3337,'trends','itemid',32734),(3338,'trends_uint','itemid',32734),(3339,'events','itemid',32735),(3340,'history','itemid',32735),(3341,'history_log','itemid',32735),(3342,'history_str','itemid',32735),(3343,'history_text','itemid',32735),(3344,'history_uint','itemid',32735),(3345,'trends','itemid',32735),(3346,'trends_uint','itemid',32735),(3347,'events','itemid',32736),(3348,'history','itemid',32736),(3349,'history_log','itemid',32736),(3350,'history_str','itemid',32736),(3351,'history_text','itemid',32736),(3352,'history_uint','itemid',32736),(3353,'trends','itemid',32736),(3354,'trends_uint','itemid',32736),(3355,'events','itemid',32737),(3356,'history','itemid',32737),(3357,'history_log','itemid',32737),(3358,'history_str','itemid',32737),(3359,'history_text','itemid',32737),(3360,'history_uint','itemid',32737),(3361,'trends','itemid',32737),(3362,'trends_uint','itemid',32737),(3363,'events','itemid',32738),(3364,'history','itemid',32738),(3365,'history_log','itemid',32738),(3366,'history_str','itemid',32738),(3367,'history_text','itemid',32738),(3368,'history_uint','itemid',32738),(3369,'trends','itemid',32738),(3370,'trends_uint','itemid',32738),(3371,'events','itemid',32725),(3372,'history','itemid',32725),(3373,'history_log','itemid',32725),(3374,'history_str','itemid',32725),(3375,'history_text','itemid',32725),(3376,'history_uint','itemid',32725),(3377,'trends','itemid',32725),(3378,'trends_uint','itemid',32725),(3379,'events','itemid',32739),(3380,'history','itemid',32739),(3381,'history_log','itemid',32739),(3382,'history_str','itemid',32739),(3383,'history_text','itemid',32739),(3384,'history_uint','itemid',32739),(3385,'trends','itemid',32739),(3386,'trends_uint','itemid',32739),(3387,'events','itemid',32741),(3388,'history','itemid',32741),(3389,'history_log','itemid',32741),(3390,'history_str','itemid',32741),(3391,'history_text','itemid',32741),(3392,'history_uint','itemid',32741),(3393,'trends','itemid',32741),(3394,'trends_uint','itemid',32741),(3395,'events','itemid',32742),(3396,'history','itemid',32742),(3397,'history_log','itemid',32742),(3398,'history_str','itemid',32742),(3399,'history_text','itemid',32742),(3400,'history_uint','itemid',32742),(3401,'trends','itemid',32742),(3402,'trends_uint','itemid',32742),(3403,'events','itemid',32743),(3404,'history','itemid',32743),(3405,'history_log','itemid',32743),(3406,'history_str','itemid',32743),(3407,'history_text','itemid',32743),(3408,'history_uint','itemid',32743),(3409,'trends','itemid',32743),(3410,'trends_uint','itemid',32743),(3411,'events','itemid',32744),(3412,'history','itemid',32744),(3413,'history_log','itemid',32744),(3414,'history_str','itemid',32744),(3415,'history_text','itemid',32744),(3416,'history_uint','itemid',32744),(3417,'trends','itemid',32744),(3418,'trends_uint','itemid',32744),(3419,'events','itemid',32745),(3420,'history','itemid',32745),(3421,'history_log','itemid',32745),(3422,'history_str','itemid',32745),(3423,'history_text','itemid',32745),(3424,'history_uint','itemid',32745),(3425,'trends','itemid',32745),(3426,'trends_uint','itemid',32745),(3427,'events','itemid',32746),(3428,'history','itemid',32746),(3429,'history_log','itemid',32746),(3430,'history_str','itemid',32746),(3431,'history_text','itemid',32746),(3432,'history_uint','itemid',32746),(3433,'trends','itemid',32746),(3434,'trends_uint','itemid',32746),(3435,'events','itemid',32747),(3436,'history','itemid',32747),(3437,'history_log','itemid',32747),(3438,'history_str','itemid',32747),(3439,'history_text','itemid',32747),(3440,'history_uint','itemid',32747),(3441,'trends','itemid',32747),(3442,'trends_uint','itemid',32747),(3443,'events','itemid',32748),(3444,'history','itemid',32748),(3445,'history_log','itemid',32748),(3446,'history_str','itemid',32748),(3447,'history_text','itemid',32748),(3448,'history_uint','itemid',32748),(3449,'trends','itemid',32748),(3450,'trends_uint','itemid',32748),(3451,'events','itemid',32749),(3452,'history','itemid',32749),(3453,'history_log','itemid',32749),(3454,'history_str','itemid',32749),(3455,'history_text','itemid',32749),(3456,'history_uint','itemid',32749),(3457,'trends','itemid',32749),(3458,'trends_uint','itemid',32749),(3459,'events','itemid',32750),(3460,'history','itemid',32750),(3461,'history_log','itemid',32750),(3462,'history_str','itemid',32750),(3463,'history_text','itemid',32750),(3464,'history_uint','itemid',32750),(3465,'trends','itemid',32750),(3466,'trends_uint','itemid',32750),(3467,'events','itemid',32751),(3468,'history','itemid',32751),(3469,'history_log','itemid',32751),(3470,'history_str','itemid',32751),(3471,'history_text','itemid',32751),(3472,'history_uint','itemid',32751),(3473,'trends','itemid',32751),(3474,'trends_uint','itemid',32751),(3475,'events','itemid',32752),(3476,'history','itemid',32752),(3477,'history_log','itemid',32752),(3478,'history_str','itemid',32752),(3479,'history_text','itemid',32752),(3480,'history_uint','itemid',32752),(3481,'trends','itemid',32752),(3482,'trends_uint','itemid',32752),(3483,'events','itemid',32753),(3484,'history','itemid',32753),(3485,'history_log','itemid',32753),(3486,'history_str','itemid',32753),(3487,'history_text','itemid',32753),(3488,'history_uint','itemid',32753),(3489,'trends','itemid',32753),(3490,'trends_uint','itemid',32753),(3491,'events','itemid',32740),(3492,'history','itemid',32740),(3493,'history_log','itemid',32740),(3494,'history_str','itemid',32740),(3495,'history_text','itemid',32740),(3496,'history_uint','itemid',32740),(3497,'trends','itemid',32740),(3498,'trends_uint','itemid',32740),(3499,'events','itemid',32723),(3500,'history','itemid',32723),(3501,'history_log','itemid',32723),(3502,'history_str','itemid',32723),(3503,'history_text','itemid',32723),(3504,'history_uint','itemid',32723),(3505,'trends','itemid',32723),(3506,'trends_uint','itemid',32723),(3507,'events','itemid',32708),(3508,'history','itemid',32708),(3509,'history_log','itemid',32708),(3510,'history_str','itemid',32708),(3511,'history_text','itemid',32708),(3512,'history_uint','itemid',32708),(3513,'trends','itemid',32708),(3514,'trends_uint','itemid',32708),(3515,'events','itemid',32722),(3516,'history','itemid',32722),(3517,'history_log','itemid',32722),(3518,'history_str','itemid',32722),(3519,'history_text','itemid',32722),(3520,'history_uint','itemid',32722),(3521,'trends','itemid',32722),(3522,'trends_uint','itemid',32722),(3523,'events','itemid',32695),(3524,'history','itemid',32695),(3525,'history_log','itemid',32695),(3526,'history_str','itemid',32695),(3527,'history_text','itemid',32695),(3528,'history_uint','itemid',32695),(3529,'trends','itemid',32695),(3530,'trends_uint','itemid',32695),(3531,'events','itemid',32696),(3532,'history','itemid',32696),(3533,'history_log','itemid',32696),(3534,'history_str','itemid',32696),(3535,'history_text','itemid',32696),(3536,'history_uint','itemid',32696),(3537,'trends','itemid',32696),(3538,'trends_uint','itemid',32696),(3539,'events','itemid',32699),(3540,'history','itemid',32699),(3541,'history_log','itemid',32699),(3542,'history_str','itemid',32699),(3543,'history_text','itemid',32699),(3544,'history_uint','itemid',32699),(3545,'trends','itemid',32699),(3546,'trends_uint','itemid',32699),(3547,'events','itemid',32700),(3548,'history','itemid',32700),(3549,'history_log','itemid',32700),(3550,'history_str','itemid',32700),(3551,'history_text','itemid',32700),(3552,'history_uint','itemid',32700),(3553,'trends','itemid',32700),(3554,'trends_uint','itemid',32700),(3555,'events','itemid',32701),(3556,'history','itemid',32701),(3557,'history_log','itemid',32701),(3558,'history_str','itemid',32701),(3559,'history_text','itemid',32701),(3560,'history_uint','itemid',32701),(3561,'trends','itemid',32701),(3562,'trends_uint','itemid',32701),(3563,'events','itemid',32702),(3564,'history','itemid',32702),(3565,'history_log','itemid',32702),(3566,'history_str','itemid',32702),(3567,'history_text','itemid',32702),(3568,'history_uint','itemid',32702),(3569,'trends','itemid',32702),(3570,'trends_uint','itemid',32702),(3571,'events','itemid',32703),(3572,'history','itemid',32703),(3573,'history_log','itemid',32703),(3574,'history_str','itemid',32703),(3575,'history_text','itemid',32703),(3576,'history_uint','itemid',32703),(3577,'trends','itemid',32703),(3578,'trends_uint','itemid',32703),(3579,'events','itemid',32704),(3580,'history','itemid',32704),(3581,'history_log','itemid',32704),(3582,'history_str','itemid',32704),(3583,'history_text','itemid',32704),(3584,'history_uint','itemid',32704),(3585,'trends','itemid',32704),(3586,'trends_uint','itemid',32704),(3587,'events','itemid',32705),(3588,'history','itemid',32705),(3589,'history_log','itemid',32705),(3590,'history_str','itemid',32705),(3591,'history_text','itemid',32705),(3592,'history_uint','itemid',32705),(3593,'trends','itemid',32705),(3594,'trends_uint','itemid',32705),(3595,'events','itemid',32706),(3596,'history','itemid',32706),(3597,'history_log','itemid',32706),(3598,'history_str','itemid',32706),(3599,'history_text','itemid',32706),(3600,'history_uint','itemid',32706),(3601,'trends','itemid',32706),(3602,'trends_uint','itemid',32706),(3603,'events','itemid',32694),(3604,'history','itemid',32694),(3605,'history_log','itemid',32694),(3606,'history_str','itemid',32694),(3607,'history_text','itemid',32694),(3608,'history_uint','itemid',32694),(3609,'trends','itemid',32694),(3610,'trends_uint','itemid',32694),(3611,'events','itemid',32707),(3612,'history','itemid',32707),(3613,'history_log','itemid',32707),(3614,'history_str','itemid',32707),(3615,'history_text','itemid',32707),(3616,'history_uint','itemid',32707),(3617,'trends','itemid',32707),(3618,'trends_uint','itemid',32707),(3619,'events','itemid',32709),(3620,'history','itemid',32709),(3621,'history_log','itemid',32709),(3622,'history_str','itemid',32709),(3623,'history_text','itemid',32709),(3624,'history_uint','itemid',32709),(3625,'trends','itemid',32709),(3626,'trends_uint','itemid',32709),(3627,'events','itemid',32710),(3628,'history','itemid',32710),(3629,'history_log','itemid',32710),(3630,'history_str','itemid',32710),(3631,'history_text','itemid',32710),(3632,'history_uint','itemid',32710),(3633,'trends','itemid',32710),(3634,'trends_uint','itemid',32710),(3635,'events','itemid',32711),(3636,'history','itemid',32711),(3637,'history_log','itemid',32711),(3638,'history_str','itemid',32711),(3639,'history_text','itemid',32711),(3640,'history_uint','itemid',32711),(3641,'trends','itemid',32711),(3642,'trends_uint','itemid',32711),(3643,'events','itemid',32712),(3644,'history','itemid',32712),(3645,'history_log','itemid',32712),(3646,'history_str','itemid',32712),(3647,'history_text','itemid',32712),(3648,'history_uint','itemid',32712),(3649,'trends','itemid',32712),(3650,'trends_uint','itemid',32712),(3651,'events','itemid',32713),(3652,'history','itemid',32713),(3653,'history_log','itemid',32713),(3654,'history_str','itemid',32713),(3655,'history_text','itemid',32713),(3656,'history_uint','itemid',32713),(3657,'trends','itemid',32713),(3658,'trends_uint','itemid',32713),(3659,'events','itemid',32714),(3660,'history','itemid',32714),(3661,'history_log','itemid',32714),(3662,'history_str','itemid',32714),(3663,'history_text','itemid',32714),(3664,'history_uint','itemid',32714),(3665,'trends','itemid',32714),(3666,'trends_uint','itemid',32714),(3667,'events','itemid',32715),(3668,'history','itemid',32715),(3669,'history_log','itemid',32715),(3670,'history_str','itemid',32715),(3671,'history_text','itemid',32715),(3672,'history_uint','itemid',32715),(3673,'trends','itemid',32715),(3674,'trends_uint','itemid',32715),(3675,'events','itemid',32716),(3676,'history','itemid',32716),(3677,'history_log','itemid',32716),(3678,'history_str','itemid',32716),(3679,'history_text','itemid',32716),(3680,'history_uint','itemid',32716),(3681,'trends','itemid',32716),(3682,'trends_uint','itemid',32716),(3683,'events','itemid',32717),(3684,'history','itemid',32717),(3685,'history_log','itemid',32717),(3686,'history_str','itemid',32717),(3687,'history_text','itemid',32717),(3688,'history_uint','itemid',32717),(3689,'trends','itemid',32717),(3690,'trends_uint','itemid',32717),(3691,'events','itemid',32718),(3692,'history','itemid',32718),(3693,'history_log','itemid',32718),(3694,'history_str','itemid',32718),(3695,'history_text','itemid',32718),(3696,'history_uint','itemid',32718),(3697,'trends','itemid',32718),(3698,'trends_uint','itemid',32718),(3699,'events','itemid',32719),(3700,'history','itemid',32719),(3701,'history_log','itemid',32719),(3702,'history_str','itemid',32719),(3703,'history_text','itemid',32719),(3704,'history_uint','itemid',32719),(3705,'trends','itemid',32719),(3706,'trends_uint','itemid',32719),(3707,'events','itemid',32720),(3708,'history','itemid',32720),(3709,'history_log','itemid',32720),(3710,'history_str','itemid',32720),(3711,'history_text','itemid',32720),(3712,'history_uint','itemid',32720),(3713,'trends','itemid',32720),(3714,'trends_uint','itemid',32720),(3715,'events','itemid',32721),(3716,'history','itemid',32721),(3717,'history_log','itemid',32721),(3718,'history_str','itemid',32721),(3719,'history_text','itemid',32721),(3720,'history_uint','itemid',32721),(3721,'trends','itemid',32721),(3722,'trends_uint','itemid',32721),(3723,'events','itemid',32754),(3724,'history','itemid',32754),(3725,'history_log','itemid',32754),(3726,'history_str','itemid',32754),(3727,'history_text','itemid',32754),(3728,'history_uint','itemid',32754),(3729,'trends','itemid',32754),(3730,'trends_uint','itemid',32754),(3731,'events','itemid',32697),(3732,'history','itemid',32697),(3733,'history_log','itemid',32697),(3734,'history_str','itemid',32697),(3735,'history_text','itemid',32697),(3736,'history_uint','itemid',32697),(3737,'trends','itemid',32697),(3738,'trends_uint','itemid',32697),(3739,'events','itemid',32698),(3740,'history','itemid',32698),(3741,'history_log','itemid',32698),(3742,'history_str','itemid',32698),(3743,'history_text','itemid',32698),(3744,'history_uint','itemid',32698),(3745,'trends','itemid',32698),(3746,'trends_uint','itemid',32698),(3747,'events','itemid',33028),(3748,'history','itemid',33028),(3749,'history_log','itemid',33028),(3750,'history_str','itemid',33028),(3751,'history_text','itemid',33028),(3752,'history_uint','itemid',33028),(3753,'trends','itemid',33028),(3754,'trends_uint','itemid',33028),(3755,'events','itemid',33062),(3756,'history','itemid',33062),(3757,'history_log','itemid',33062),(3758,'history_str','itemid',33062),(3759,'history_text','itemid',33062),(3760,'history_uint','itemid',33062),(3761,'trends','itemid',33062),(3762,'trends_uint','itemid',33062),(3763,'events','itemid',33064),(3764,'history','itemid',33064),(3765,'history_log','itemid',33064),(3766,'history_str','itemid',33064),(3767,'history_text','itemid',33064),(3768,'history_uint','itemid',33064),(3769,'trends','itemid',33064),(3770,'trends_uint','itemid',33064),(3771,'events','itemid',33065),(3772,'history','itemid',33065),(3773,'history_log','itemid',33065),(3774,'history_str','itemid',33065),(3775,'history_text','itemid',33065),(3776,'history_uint','itemid',33065),(3777,'trends','itemid',33065),(3778,'trends_uint','itemid',33065),(3779,'events','itemid',33066),(3780,'history','itemid',33066),(3781,'history_log','itemid',33066),(3782,'history_str','itemid',33066),(3783,'history_text','itemid',33066),(3784,'history_uint','itemid',33066),(3785,'trends','itemid',33066),(3786,'trends_uint','itemid',33066),(3787,'events','itemid',33067),(3788,'history','itemid',33067),(3789,'history_log','itemid',33067),(3790,'history_str','itemid',33067),(3791,'history_text','itemid',33067),(3792,'history_uint','itemid',33067),(3793,'trends','itemid',33067),(3794,'trends_uint','itemid',33067),(3795,'events','itemid',33068),(3796,'history','itemid',33068),(3797,'history_log','itemid',33068),(3798,'history_str','itemid',33068),(3799,'history_text','itemid',33068),(3800,'history_uint','itemid',33068),(3801,'trends','itemid',33068),(3802,'trends_uint','itemid',33068),(3803,'events','itemid',33069),(3804,'history','itemid',33069),(3805,'history_log','itemid',33069),(3806,'history_str','itemid',33069),(3807,'history_text','itemid',33069),(3808,'history_uint','itemid',33069),(3809,'trends','itemid',33069),(3810,'trends_uint','itemid',33069),(3811,'events','itemid',33070),(3812,'history','itemid',33070),(3813,'history_log','itemid',33070),(3814,'history_str','itemid',33070),(3815,'history_text','itemid',33070),(3816,'history_uint','itemid',33070),(3817,'trends','itemid',33070),(3818,'trends_uint','itemid',33070),(3819,'events','itemid',33071),(3820,'history','itemid',33071),(3821,'history_log','itemid',33071),(3822,'history_str','itemid',33071),(3823,'history_text','itemid',33071),(3824,'history_uint','itemid',33071),(3825,'trends','itemid',33071),(3826,'trends_uint','itemid',33071),(3827,'events','itemid',33072),(3828,'history','itemid',33072),(3829,'history_log','itemid',33072),(3830,'history_str','itemid',33072),(3831,'history_text','itemid',33072),(3832,'history_uint','itemid',33072),(3833,'trends','itemid',33072),(3834,'trends_uint','itemid',33072),(3835,'events','itemid',33073),(3836,'history','itemid',33073),(3837,'history_log','itemid',33073),(3838,'history_str','itemid',33073),(3839,'history_text','itemid',33073),(3840,'history_uint','itemid',33073),(3841,'trends','itemid',33073),(3842,'trends_uint','itemid',33073),(3843,'events','itemid',33074),(3844,'history','itemid',33074),(3845,'history_log','itemid',33074),(3846,'history_str','itemid',33074),(3847,'history_text','itemid',33074),(3848,'history_uint','itemid',33074),(3849,'trends','itemid',33074),(3850,'trends_uint','itemid',33074),(3851,'events','itemid',33075),(3852,'history','itemid',33075),(3853,'history_log','itemid',33075),(3854,'history_str','itemid',33075),(3855,'history_text','itemid',33075),(3856,'history_uint','itemid',33075),(3857,'trends','itemid',33075),(3858,'trends_uint','itemid',33075),(3859,'events','itemid',33076),(3860,'history','itemid',33076),(3861,'history_log','itemid',33076),(3862,'history_str','itemid',33076),(3863,'history_text','itemid',33076),(3864,'history_uint','itemid',33076),(3865,'trends','itemid',33076),(3866,'trends_uint','itemid',33076),(3867,'events','itemid',33077),(3868,'history','itemid',33077),(3869,'history_log','itemid',33077),(3870,'history_str','itemid',33077),(3871,'history_text','itemid',33077),(3872,'history_uint','itemid',33077),(3873,'trends','itemid',33077),(3874,'trends_uint','itemid',33077),(3875,'events','itemid',33063),(3876,'history','itemid',33063),(3877,'history_log','itemid',33063),(3878,'history_str','itemid',33063),(3879,'history_text','itemid',33063),(3880,'history_uint','itemid',33063),(3881,'trends','itemid',33063),(3882,'trends_uint','itemid',33063),(3883,'events','itemid',33078),(3884,'history','itemid',33078),(3885,'history_log','itemid',33078),(3886,'history_str','itemid',33078),(3887,'history_text','itemid',33078),(3888,'history_uint','itemid',33078),(3889,'trends','itemid',33078),(3890,'trends_uint','itemid',33078),(3891,'events','itemid',33080),(3892,'history','itemid',33080),(3893,'history_log','itemid',33080),(3894,'history_str','itemid',33080),(3895,'history_text','itemid',33080),(3896,'history_uint','itemid',33080),(3897,'trends','itemid',33080),(3898,'trends_uint','itemid',33080),(3899,'events','itemid',33081),(3900,'history','itemid',33081),(3901,'history_log','itemid',33081),(3902,'history_str','itemid',33081),(3903,'history_text','itemid',33081),(3904,'history_uint','itemid',33081),(3905,'trends','itemid',33081),(3906,'trends_uint','itemid',33081),(3907,'events','itemid',33082),(3908,'history','itemid',33082),(3909,'history_log','itemid',33082),(3910,'history_str','itemid',33082),(3911,'history_text','itemid',33082),(3912,'history_uint','itemid',33082),(3913,'trends','itemid',33082),(3914,'trends_uint','itemid',33082),(3915,'events','itemid',33083),(3916,'history','itemid',33083),(3917,'history_log','itemid',33083),(3918,'history_str','itemid',33083),(3919,'history_text','itemid',33083),(3920,'history_uint','itemid',33083),(3921,'trends','itemid',33083),(3922,'trends_uint','itemid',33083),(3923,'events','itemid',33084),(3924,'history','itemid',33084),(3925,'history_log','itemid',33084),(3926,'history_str','itemid',33084),(3927,'history_text','itemid',33084),(3928,'history_uint','itemid',33084),(3929,'trends','itemid',33084),(3930,'trends_uint','itemid',33084),(3931,'events','itemid',33085),(3932,'history','itemid',33085),(3933,'history_log','itemid',33085),(3934,'history_str','itemid',33085),(3935,'history_text','itemid',33085),(3936,'history_uint','itemid',33085),(3937,'trends','itemid',33085),(3938,'trends_uint','itemid',33085),(3939,'events','itemid',33086),(3940,'history','itemid',33086),(3941,'history_log','itemid',33086),(3942,'history_str','itemid',33086),(3943,'history_text','itemid',33086),(3944,'history_uint','itemid',33086),(3945,'trends','itemid',33086),(3946,'trends_uint','itemid',33086),(3947,'events','itemid',33087),(3948,'history','itemid',33087),(3949,'history_log','itemid',33087),(3950,'history_str','itemid',33087),(3951,'history_text','itemid',33087),(3952,'history_uint','itemid',33087),(3953,'trends','itemid',33087),(3954,'trends_uint','itemid',33087),(3955,'events','itemid',33088),(3956,'history','itemid',33088),(3957,'history_log','itemid',33088),(3958,'history_str','itemid',33088),(3959,'history_text','itemid',33088),(3960,'history_uint','itemid',33088),(3961,'trends','itemid',33088),(3962,'trends_uint','itemid',33088),(3963,'events','itemid',33089),(3964,'history','itemid',33089),(3965,'history_log','itemid',33089),(3966,'history_str','itemid',33089),(3967,'history_text','itemid',33089),(3968,'history_uint','itemid',33089),(3969,'trends','itemid',33089),(3970,'trends_uint','itemid',33089),(3971,'events','itemid',33090),(3972,'history','itemid',33090),(3973,'history_log','itemid',33090),(3974,'history_str','itemid',33090),(3975,'history_text','itemid',33090),(3976,'history_uint','itemid',33090),(3977,'trends','itemid',33090),(3978,'trends_uint','itemid',33090),(3979,'events','itemid',33091),(3980,'history','itemid',33091),(3981,'history_log','itemid',33091),(3982,'history_str','itemid',33091),(3983,'history_text','itemid',33091),(3984,'history_uint','itemid',33091),(3985,'trends','itemid',33091),(3986,'trends_uint','itemid',33091),(3987,'events','itemid',33092),(3988,'history','itemid',33092),(3989,'history_log','itemid',33092),(3990,'history_str','itemid',33092),(3991,'history_text','itemid',33092),(3992,'history_uint','itemid',33092),(3993,'trends','itemid',33092),(3994,'trends_uint','itemid',33092),(3995,'events','itemid',33093),(3996,'history','itemid',33093),(3997,'history_log','itemid',33093),(3998,'history_str','itemid',33093),(3999,'history_text','itemid',33093),(4000,'history_uint','itemid',33093),(4001,'trends','itemid',33093),(4002,'trends_uint','itemid',33093),(4003,'events','itemid',33079),(4004,'history','itemid',33079),(4005,'history_log','itemid',33079),(4006,'history_str','itemid',33079),(4007,'history_text','itemid',33079),(4008,'history_uint','itemid',33079),(4009,'trends','itemid',33079),(4010,'trends_uint','itemid',33079),(4011,'events','itemid',33061),(4012,'history','itemid',33061),(4013,'history_log','itemid',33061),(4014,'history_str','itemid',33061),(4015,'history_text','itemid',33061),(4016,'history_uint','itemid',33061),(4017,'trends','itemid',33061),(4018,'trends_uint','itemid',33061),(4019,'events','itemid',33045),(4020,'history','itemid',33045),(4021,'history_log','itemid',33045),(4022,'history_str','itemid',33045),(4023,'history_text','itemid',33045),(4024,'history_uint','itemid',33045),(4025,'trends','itemid',33045),(4026,'trends_uint','itemid',33045),(4027,'events','itemid',33060),(4028,'history','itemid',33060),(4029,'history_log','itemid',33060),(4030,'history_str','itemid',33060),(4031,'history_text','itemid',33060),(4032,'history_uint','itemid',33060),(4033,'trends','itemid',33060),(4034,'trends_uint','itemid',33060),(4035,'events','itemid',33030),(4036,'history','itemid',33030),(4037,'history_log','itemid',33030),(4038,'history_str','itemid',33030),(4039,'history_text','itemid',33030),(4040,'history_uint','itemid',33030),(4041,'trends','itemid',33030),(4042,'trends_uint','itemid',33030),(4043,'events','itemid',33031),(4044,'history','itemid',33031),(4045,'history_log','itemid',33031),(4046,'history_str','itemid',33031),(4047,'history_text','itemid',33031),(4048,'history_uint','itemid',33031),(4049,'trends','itemid',33031),(4050,'trends_uint','itemid',33031),(4051,'events','itemid',33032),(4052,'history','itemid',33032),(4053,'history_log','itemid',33032),(4054,'history_str','itemid',33032),(4055,'history_text','itemid',33032),(4056,'history_uint','itemid',33032),(4057,'trends','itemid',33032),(4058,'trends_uint','itemid',33032),(4059,'events','itemid',33033),(4060,'history','itemid',33033),(4061,'history_log','itemid',33033),(4062,'history_str','itemid',33033),(4063,'history_text','itemid',33033),(4064,'history_uint','itemid',33033),(4065,'trends','itemid',33033),(4066,'trends_uint','itemid',33033),(4067,'events','itemid',33034),(4068,'history','itemid',33034),(4069,'history_log','itemid',33034),(4070,'history_str','itemid',33034),(4071,'history_text','itemid',33034),(4072,'history_uint','itemid',33034),(4073,'trends','itemid',33034),(4074,'trends_uint','itemid',33034),(4075,'events','itemid',33035),(4076,'history','itemid',33035),(4077,'history_log','itemid',33035),(4078,'history_str','itemid',33035),(4079,'history_text','itemid',33035),(4080,'history_uint','itemid',33035),(4081,'trends','itemid',33035),(4082,'trends_uint','itemid',33035),(4083,'events','itemid',33036),(4084,'history','itemid',33036),(4085,'history_log','itemid',33036),(4086,'history_str','itemid',33036),(4087,'history_text','itemid',33036),(4088,'history_uint','itemid',33036),(4089,'trends','itemid',33036),(4090,'trends_uint','itemid',33036),(4091,'events','itemid',33037),(4092,'history','itemid',33037),(4093,'history_log','itemid',33037),(4094,'history_str','itemid',33037),(4095,'history_text','itemid',33037),(4096,'history_uint','itemid',33037),(4097,'trends','itemid',33037),(4098,'trends_uint','itemid',33037),(4099,'events','itemid',33038),(4100,'history','itemid',33038),(4101,'history_log','itemid',33038),(4102,'history_str','itemid',33038),(4103,'history_text','itemid',33038),(4104,'history_uint','itemid',33038),(4105,'trends','itemid',33038),(4106,'trends_uint','itemid',33038),(4107,'events','itemid',33039),(4108,'history','itemid',33039),(4109,'history_log','itemid',33039),(4110,'history_str','itemid',33039),(4111,'history_text','itemid',33039),(4112,'history_uint','itemid',33039),(4113,'trends','itemid',33039),(4114,'trends_uint','itemid',33039),(4115,'events','itemid',33040),(4116,'history','itemid',33040),(4117,'history_log','itemid',33040),(4118,'history_str','itemid',33040),(4119,'history_text','itemid',33040),(4120,'history_uint','itemid',33040),(4121,'trends','itemid',33040),(4122,'trends_uint','itemid',33040),(4123,'events','itemid',33041),(4124,'history','itemid',33041),(4125,'history_log','itemid',33041),(4126,'history_str','itemid',33041),(4127,'history_text','itemid',33041),(4128,'history_uint','itemid',33041),(4129,'trends','itemid',33041),(4130,'trends_uint','itemid',33041),(4131,'events','itemid',33042),(4132,'history','itemid',33042),(4133,'history_log','itemid',33042),(4134,'history_str','itemid',33042),(4135,'history_text','itemid',33042),(4136,'history_uint','itemid',33042),(4137,'trends','itemid',33042),(4138,'trends_uint','itemid',33042),(4139,'events','itemid',33043),(4140,'history','itemid',33043),(4141,'history_log','itemid',33043),(4142,'history_str','itemid',33043),(4143,'history_text','itemid',33043),(4144,'history_uint','itemid',33043),(4145,'trends','itemid',33043),(4146,'trends_uint','itemid',33043),(4147,'events','itemid',33029),(4148,'history','itemid',33029),(4149,'history_log','itemid',33029),(4150,'history_str','itemid',33029),(4151,'history_text','itemid',33029),(4152,'history_uint','itemid',33029),(4153,'trends','itemid',33029),(4154,'trends_uint','itemid',33029),(4155,'events','itemid',33044),(4156,'history','itemid',33044),(4157,'history_log','itemid',33044),(4158,'history_str','itemid',33044),(4159,'history_text','itemid',33044),(4160,'history_uint','itemid',33044),(4161,'trends','itemid',33044),(4162,'trends_uint','itemid',33044),(4163,'events','itemid',33046),(4164,'history','itemid',33046),(4165,'history_log','itemid',33046),(4166,'history_str','itemid',33046),(4167,'history_text','itemid',33046),(4168,'history_uint','itemid',33046),(4169,'trends','itemid',33046),(4170,'trends_uint','itemid',33046),(4171,'events','itemid',33047),(4172,'history','itemid',33047),(4173,'history_log','itemid',33047),(4174,'history_str','itemid',33047),(4175,'history_text','itemid',33047),(4176,'history_uint','itemid',33047),(4177,'trends','itemid',33047),(4178,'trends_uint','itemid',33047),(4179,'events','itemid',33048),(4180,'history','itemid',33048),(4181,'history_log','itemid',33048),(4182,'history_str','itemid',33048),(4183,'history_text','itemid',33048),(4184,'history_uint','itemid',33048),(4185,'trends','itemid',33048),(4186,'trends_uint','itemid',33048),(4187,'events','itemid',33049),(4188,'history','itemid',33049),(4189,'history_log','itemid',33049),(4190,'history_str','itemid',33049),(4191,'history_text','itemid',33049),(4192,'history_uint','itemid',33049),(4193,'trends','itemid',33049),(4194,'trends_uint','itemid',33049),(4195,'events','itemid',33050),(4196,'history','itemid',33050),(4197,'history_log','itemid',33050),(4198,'history_str','itemid',33050),(4199,'history_text','itemid',33050),(4200,'history_uint','itemid',33050),(4201,'trends','itemid',33050),(4202,'trends_uint','itemid',33050),(4203,'events','itemid',33051),(4204,'history','itemid',33051),(4205,'history_log','itemid',33051),(4206,'history_str','itemid',33051),(4207,'history_text','itemid',33051),(4208,'history_uint','itemid',33051),(4209,'trends','itemid',33051),(4210,'trends_uint','itemid',33051),(4211,'events','itemid',33052),(4212,'history','itemid',33052),(4213,'history_log','itemid',33052),(4214,'history_str','itemid',33052),(4215,'history_text','itemid',33052),(4216,'history_uint','itemid',33052),(4217,'trends','itemid',33052),(4218,'trends_uint','itemid',33052),(4219,'events','itemid',33053),(4220,'history','itemid',33053),(4221,'history_log','itemid',33053),(4222,'history_str','itemid',33053),(4223,'history_text','itemid',33053),(4224,'history_uint','itemid',33053),(4225,'trends','itemid',33053),(4226,'trends_uint','itemid',33053),(4227,'events','itemid',33054),(4228,'history','itemid',33054),(4229,'history_log','itemid',33054),(4230,'history_str','itemid',33054),(4231,'history_text','itemid',33054),(4232,'history_uint','itemid',33054),(4233,'trends','itemid',33054),(4234,'trends_uint','itemid',33054),(4235,'events','itemid',33055),(4236,'history','itemid',33055),(4237,'history_log','itemid',33055),(4238,'history_str','itemid',33055),(4239,'history_text','itemid',33055),(4240,'history_uint','itemid',33055),(4241,'trends','itemid',33055),(4242,'trends_uint','itemid',33055),(4243,'events','itemid',33056),(4244,'history','itemid',33056),(4245,'history_log','itemid',33056),(4246,'history_str','itemid',33056),(4247,'history_text','itemid',33056),(4248,'history_uint','itemid',33056),(4249,'trends','itemid',33056),(4250,'trends_uint','itemid',33056),(4251,'events','itemid',33057),(4252,'history','itemid',33057),(4253,'history_log','itemid',33057),(4254,'history_str','itemid',33057),(4255,'history_text','itemid',33057),(4256,'history_uint','itemid',33057),(4257,'trends','itemid',33057),(4258,'trends_uint','itemid',33057),(4259,'events','itemid',33058),(4260,'history','itemid',33058),(4261,'history_log','itemid',33058),(4262,'history_str','itemid',33058),(4263,'history_text','itemid',33058),(4264,'history_uint','itemid',33058),(4265,'trends','itemid',33058),(4266,'trends_uint','itemid',33058),(4267,'events','itemid',33059),(4268,'history','itemid',33059),(4269,'history_log','itemid',33059),(4270,'history_str','itemid',33059),(4271,'history_text','itemid',33059),(4272,'history_uint','itemid',33059),(4273,'trends','itemid',33059),(4274,'trends_uint','itemid',33059),(4275,'events','itemid',33094),(4276,'history','itemid',33094),(4277,'history_log','itemid',33094),(4278,'history_str','itemid',33094),(4279,'history_text','itemid',33094),(4280,'history_uint','itemid',33094),(4281,'trends','itemid',33094),(4282,'trends_uint','itemid',33094),(4283,'events','itemid',33944),(4284,'history','itemid',33944),(4285,'history_log','itemid',33944),(4286,'history_str','itemid',33944),(4287,'history_text','itemid',33944),(4288,'history_uint','itemid',33944),(4289,'trends','itemid',33944),(4290,'trends_uint','itemid',33944),(4291,'events','itemid',33945),(4292,'history','itemid',33945),(4293,'history_log','itemid',33945),(4294,'history_str','itemid',33945),(4295,'history_text','itemid',33945),(4296,'history_uint','itemid',33945),(4297,'trends','itemid',33945),(4298,'trends_uint','itemid',33945),(4299,'events','itemid',33946),(4300,'history','itemid',33946),(4301,'history_log','itemid',33946),(4302,'history_str','itemid',33946),(4303,'history_text','itemid',33946),(4304,'history_uint','itemid',33946),(4305,'trends','itemid',33946),(4306,'trends_uint','itemid',33946),(4307,'events','itemid',33947),(4308,'history','itemid',33947),(4309,'history_log','itemid',33947),(4310,'history_str','itemid',33947),(4311,'history_text','itemid',33947),(4312,'history_uint','itemid',33947),(4313,'trends','itemid',33947),(4314,'trends_uint','itemid',33947),(4315,'events','itemid',33948),(4316,'history','itemid',33948),(4317,'history_log','itemid',33948),(4318,'history_str','itemid',33948),(4319,'history_text','itemid',33948),(4320,'history_uint','itemid',33948),(4321,'trends','itemid',33948),(4322,'trends_uint','itemid',33948),(4323,'events','itemid',33949),(4324,'history','itemid',33949),(4325,'history_log','itemid',33949),(4326,'history_str','itemid',33949),(4327,'history_text','itemid',33949),(4328,'history_uint','itemid',33949),(4329,'trends','itemid',33949),(4330,'trends_uint','itemid',33949),(4331,'events','itemid',33950),(4332,'history','itemid',33950),(4333,'history_log','itemid',33950),(4334,'history_str','itemid',33950),(4335,'history_text','itemid',33950),(4336,'history_uint','itemid',33950),(4337,'trends','itemid',33950),(4338,'trends_uint','itemid',33950),(4339,'events','itemid',33951),(4340,'history','itemid',33951),(4341,'history_log','itemid',33951),(4342,'history_str','itemid',33951),(4343,'history_text','itemid',33951),(4344,'history_uint','itemid',33951),(4345,'trends','itemid',33951),(4346,'trends_uint','itemid',33951),(4347,'events','itemid',43775),(4348,'history','itemid',43775),(4349,'history_log','itemid',43775),(4350,'history_str','itemid',43775),(4351,'history_text','itemid',43775),(4352,'history_uint','itemid',43775),(4353,'trends','itemid',43775),(4354,'trends_uint','itemid',43775),(4355,'events','itemid',33952),(4356,'history','itemid',33952),(4357,'history_log','itemid',33952),(4358,'history_str','itemid',33952),(4359,'history_text','itemid',33952),(4360,'history_uint','itemid',33952),(4361,'trends','itemid',33952),(4362,'trends_uint','itemid',33952),(4363,'events','itemid',33953),(4364,'history','itemid',33953),(4365,'history_log','itemid',33953),(4366,'history_str','itemid',33953),(4367,'history_text','itemid',33953),(4368,'history_uint','itemid',33953),(4369,'trends','itemid',33953),(4370,'trends_uint','itemid',33953),(4371,'events','itemid',33956),(4372,'history','itemid',33956),(4373,'history_log','itemid',33956),(4374,'history_str','itemid',33956),(4375,'history_text','itemid',33956),(4376,'history_uint','itemid',33956),(4377,'trends','itemid',33956),(4378,'trends_uint','itemid',33956),(4379,'events','itemid',33954),(4380,'history','itemid',33954),(4381,'history_log','itemid',33954),(4382,'history_str','itemid',33954),(4383,'history_text','itemid',33954),(4384,'history_uint','itemid',33954),(4385,'trends','itemid',33954),(4386,'trends_uint','itemid',33954),(4387,'events','itemid',33955),(4388,'history','itemid',33955),(4389,'history_log','itemid',33955),(4390,'history_str','itemid',33955),(4391,'history_text','itemid',33955),(4392,'history_uint','itemid',33955),(4393,'trends','itemid',33955),(4394,'trends_uint','itemid',33955),(4395,'events','itemid',33957),(4396,'history','itemid',33957),(4397,'history_log','itemid',33957),(4398,'history_str','itemid',33957),(4399,'history_text','itemid',33957),(4400,'history_uint','itemid',33957),(4401,'trends','itemid',33957),(4402,'trends_uint','itemid',33957),(4403,'events','itemid',33985),(4404,'history','itemid',33985),(4405,'history_log','itemid',33985),(4406,'history_str','itemid',33985),(4407,'history_text','itemid',33985),(4408,'history_uint','itemid',33985),(4409,'trends','itemid',33985),(4410,'trends_uint','itemid',33985),(4411,'events','itemid',33986),(4412,'history','itemid',33986),(4413,'history_log','itemid',33986),(4414,'history_str','itemid',33986),(4415,'history_text','itemid',33986),(4416,'history_uint','itemid',33986),(4417,'trends','itemid',33986),(4418,'trends_uint','itemid',33986),(4419,'events','itemid',33987),(4420,'history','itemid',33987),(4421,'history_log','itemid',33987),(4422,'history_str','itemid',33987),(4423,'history_text','itemid',33987),(4424,'history_uint','itemid',33987),(4425,'trends','itemid',33987),(4426,'trends_uint','itemid',33987),(4427,'events','itemid',33988),(4428,'history','itemid',33988),(4429,'history_log','itemid',33988),(4430,'history_str','itemid',33988),(4431,'history_text','itemid',33988),(4432,'history_uint','itemid',33988),(4433,'trends','itemid',33988),(4434,'trends_uint','itemid',33988),(4435,'events','itemid',33989),(4436,'history','itemid',33989),(4437,'history_log','itemid',33989),(4438,'history_str','itemid',33989),(4439,'history_text','itemid',33989),(4440,'history_uint','itemid',33989),(4441,'trends','itemid',33989),(4442,'trends_uint','itemid',33989),(4443,'events','itemid',33990),(4444,'history','itemid',33990),(4445,'history_log','itemid',33990),(4446,'history_str','itemid',33990),(4447,'history_text','itemid',33990),(4448,'history_uint','itemid',33990),(4449,'trends','itemid',33990),(4450,'trends_uint','itemid',33990),(4451,'events','itemid',33991),(4452,'history','itemid',33991),(4453,'history_log','itemid',33991),(4454,'history_str','itemid',33991),(4455,'history_text','itemid',33991),(4456,'history_uint','itemid',33991),(4457,'trends','itemid',33991),(4458,'trends_uint','itemid',33991),(4459,'events','itemid',33992),(4460,'history','itemid',33992),(4461,'history_log','itemid',33992),(4462,'history_str','itemid',33992),(4463,'history_text','itemid',33992),(4464,'history_uint','itemid',33992),(4465,'trends','itemid',33992),(4466,'trends_uint','itemid',33992),(4467,'events','itemid',43776),(4468,'history','itemid',43776),(4469,'history_log','itemid',43776),(4470,'history_str','itemid',43776),(4471,'history_text','itemid',43776),(4472,'history_uint','itemid',43776),(4473,'trends','itemid',43776),(4474,'trends_uint','itemid',43776),(4475,'events','itemid',33993),(4476,'history','itemid',33993),(4477,'history_log','itemid',33993),(4478,'history_str','itemid',33993),(4479,'history_text','itemid',33993),(4480,'history_uint','itemid',33993),(4481,'trends','itemid',33993),(4482,'trends_uint','itemid',33993),(4483,'events','itemid',33994),(4484,'history','itemid',33994),(4485,'history_log','itemid',33994),(4486,'history_str','itemid',33994),(4487,'history_text','itemid',33994),(4488,'history_uint','itemid',33994),(4489,'trends','itemid',33994),(4490,'trends_uint','itemid',33994),(4491,'events','itemid',33997),(4492,'history','itemid',33997),(4493,'history_log','itemid',33997),(4494,'history_str','itemid',33997),(4495,'history_text','itemid',33997),(4496,'history_uint','itemid',33997),(4497,'trends','itemid',33997),(4498,'trends_uint','itemid',33997),(4499,'events','itemid',33995),(4500,'history','itemid',33995),(4501,'history_log','itemid',33995),(4502,'history_str','itemid',33995),(4503,'history_text','itemid',33995),(4504,'history_uint','itemid',33995),(4505,'trends','itemid',33995),(4506,'trends_uint','itemid',33995),(4507,'events','itemid',33996),(4508,'history','itemid',33996),(4509,'history_log','itemid',33996),(4510,'history_str','itemid',33996),(4511,'history_text','itemid',33996),(4512,'history_uint','itemid',33996),(4513,'trends','itemid',33996),(4514,'trends_uint','itemid',33996),(4515,'events','itemid',33998),(4516,'history','itemid',33998),(4517,'history_log','itemid',33998),(4518,'history_str','itemid',33998),(4519,'history_text','itemid',33998),(4520,'history_uint','itemid',33998),(4521,'trends','itemid',33998),(4522,'trends_uint','itemid',33998),(4523,'events','itemid',34026),(4524,'history','itemid',34026),(4525,'history_log','itemid',34026),(4526,'history_str','itemid',34026),(4527,'history_text','itemid',34026),(4528,'history_uint','itemid',34026),(4529,'trends','itemid',34026),(4530,'trends_uint','itemid',34026),(4531,'events','itemid',34027),(4532,'history','itemid',34027),(4533,'history_log','itemid',34027),(4534,'history_str','itemid',34027),(4535,'history_text','itemid',34027),(4536,'history_uint','itemid',34027),(4537,'trends','itemid',34027),(4538,'trends_uint','itemid',34027),(4539,'events','itemid',34028),(4540,'history','itemid',34028),(4541,'history_log','itemid',34028),(4542,'history_str','itemid',34028),(4543,'history_text','itemid',34028),(4544,'history_uint','itemid',34028),(4545,'trends','itemid',34028),(4546,'trends_uint','itemid',34028),(4547,'events','itemid',34029),(4548,'history','itemid',34029),(4549,'history_log','itemid',34029),(4550,'history_str','itemid',34029),(4551,'history_text','itemid',34029),(4552,'history_uint','itemid',34029),(4553,'trends','itemid',34029),(4554,'trends_uint','itemid',34029),(4555,'events','itemid',34030),(4556,'history','itemid',34030),(4557,'history_log','itemid',34030),(4558,'history_str','itemid',34030),(4559,'history_text','itemid',34030),(4560,'history_uint','itemid',34030),(4561,'trends','itemid',34030),(4562,'trends_uint','itemid',34030),(4563,'events','itemid',34031),(4564,'history','itemid',34031),(4565,'history_log','itemid',34031),(4566,'history_str','itemid',34031),(4567,'history_text','itemid',34031),(4568,'history_uint','itemid',34031),(4569,'trends','itemid',34031),(4570,'trends_uint','itemid',34031),(4571,'events','itemid',34032),(4572,'history','itemid',34032),(4573,'history_log','itemid',34032),(4574,'history_str','itemid',34032),(4575,'history_text','itemid',34032),(4576,'history_uint','itemid',34032),(4577,'trends','itemid',34032),(4578,'trends_uint','itemid',34032),(4579,'events','itemid',34033),(4580,'history','itemid',34033),(4581,'history_log','itemid',34033),(4582,'history_str','itemid',34033),(4583,'history_text','itemid',34033),(4584,'history_uint','itemid',34033),(4585,'trends','itemid',34033),(4586,'trends_uint','itemid',34033),(4587,'events','itemid',43777),(4588,'history','itemid',43777),(4589,'history_log','itemid',43777),(4590,'history_str','itemid',43777),(4591,'history_text','itemid',43777),(4592,'history_uint','itemid',43777),(4593,'trends','itemid',43777),(4594,'trends_uint','itemid',43777),(4595,'events','itemid',34034),(4596,'history','itemid',34034),(4597,'history_log','itemid',34034),(4598,'history_str','itemid',34034),(4599,'history_text','itemid',34034),(4600,'history_uint','itemid',34034),(4601,'trends','itemid',34034),(4602,'trends_uint','itemid',34034),(4603,'events','itemid',34035),(4604,'history','itemid',34035),(4605,'history_log','itemid',34035),(4606,'history_str','itemid',34035),(4607,'history_text','itemid',34035),(4608,'history_uint','itemid',34035),(4609,'trends','itemid',34035),(4610,'trends_uint','itemid',34035),(4611,'events','itemid',34038),(4612,'history','itemid',34038),(4613,'history_log','itemid',34038),(4614,'history_str','itemid',34038),(4615,'history_text','itemid',34038),(4616,'history_uint','itemid',34038),(4617,'trends','itemid',34038),(4618,'trends_uint','itemid',34038),(4619,'events','itemid',34036),(4620,'history','itemid',34036),(4621,'history_log','itemid',34036),(4622,'history_str','itemid',34036),(4623,'history_text','itemid',34036),(4624,'history_uint','itemid',34036),(4625,'trends','itemid',34036),(4626,'trends_uint','itemid',34036),(4627,'events','itemid',34037),(4628,'history','itemid',34037),(4629,'history_log','itemid',34037),(4630,'history_str','itemid',34037),(4631,'history_text','itemid',34037),(4632,'history_uint','itemid',34037),(4633,'trends','itemid',34037),(4634,'trends_uint','itemid',34037),(4635,'events','itemid',34039),(4636,'history','itemid',34039),(4637,'history_log','itemid',34039),(4638,'history_str','itemid',34039),(4639,'history_text','itemid',34039),(4640,'history_uint','itemid',34039),(4641,'trends','itemid',34039),(4642,'trends_uint','itemid',34039),(4643,'events','itemid',34067),(4644,'history','itemid',34067),(4645,'history_log','itemid',34067),(4646,'history_str','itemid',34067),(4647,'history_text','itemid',34067),(4648,'history_uint','itemid',34067),(4649,'trends','itemid',34067),(4650,'trends_uint','itemid',34067),(4651,'events','itemid',34068),(4652,'history','itemid',34068),(4653,'history_log','itemid',34068),(4654,'history_str','itemid',34068),(4655,'history_text','itemid',34068),(4656,'history_uint','itemid',34068),(4657,'trends','itemid',34068),(4658,'trends_uint','itemid',34068),(4659,'events','itemid',34069),(4660,'history','itemid',34069),(4661,'history_log','itemid',34069),(4662,'history_str','itemid',34069),(4663,'history_text','itemid',34069),(4664,'history_uint','itemid',34069),(4665,'trends','itemid',34069),(4666,'trends_uint','itemid',34069),(4667,'events','itemid',34070),(4668,'history','itemid',34070),(4669,'history_log','itemid',34070),(4670,'history_str','itemid',34070),(4671,'history_text','itemid',34070),(4672,'history_uint','itemid',34070),(4673,'trends','itemid',34070),(4674,'trends_uint','itemid',34070),(4675,'events','itemid',34071),(4676,'history','itemid',34071),(4677,'history_log','itemid',34071),(4678,'history_str','itemid',34071),(4679,'history_text','itemid',34071),(4680,'history_uint','itemid',34071),(4681,'trends','itemid',34071),(4682,'trends_uint','itemid',34071),(4683,'events','itemid',34072),(4684,'history','itemid',34072),(4685,'history_log','itemid',34072),(4686,'history_str','itemid',34072),(4687,'history_text','itemid',34072),(4688,'history_uint','itemid',34072),(4689,'trends','itemid',34072),(4690,'trends_uint','itemid',34072),(4691,'events','itemid',34073),(4692,'history','itemid',34073),(4693,'history_log','itemid',34073),(4694,'history_str','itemid',34073),(4695,'history_text','itemid',34073),(4696,'history_uint','itemid',34073),(4697,'trends','itemid',34073),(4698,'trends_uint','itemid',34073),(4699,'events','itemid',34074),(4700,'history','itemid',34074),(4701,'history_log','itemid',34074),(4702,'history_str','itemid',34074),(4703,'history_text','itemid',34074),(4704,'history_uint','itemid',34074),(4705,'trends','itemid',34074),(4706,'trends_uint','itemid',34074),(4707,'events','itemid',43778),(4708,'history','itemid',43778),(4709,'history_log','itemid',43778),(4710,'history_str','itemid',43778),(4711,'history_text','itemid',43778),(4712,'history_uint','itemid',43778),(4713,'trends','itemid',43778),(4714,'trends_uint','itemid',43778),(4715,'events','itemid',34075),(4716,'history','itemid',34075),(4717,'history_log','itemid',34075),(4718,'history_str','itemid',34075),(4719,'history_text','itemid',34075),(4720,'history_uint','itemid',34075),(4721,'trends','itemid',34075),(4722,'trends_uint','itemid',34075),(4723,'events','itemid',34076),(4724,'history','itemid',34076),(4725,'history_log','itemid',34076),(4726,'history_str','itemid',34076),(4727,'history_text','itemid',34076),(4728,'history_uint','itemid',34076),(4729,'trends','itemid',34076),(4730,'trends_uint','itemid',34076),(4731,'events','itemid',34079),(4732,'history','itemid',34079),(4733,'history_log','itemid',34079),(4734,'history_str','itemid',34079),(4735,'history_text','itemid',34079),(4736,'history_uint','itemid',34079),(4737,'trends','itemid',34079),(4738,'trends_uint','itemid',34079),(4739,'events','itemid',34077),(4740,'history','itemid',34077),(4741,'history_log','itemid',34077),(4742,'history_str','itemid',34077),(4743,'history_text','itemid',34077),(4744,'history_uint','itemid',34077),(4745,'trends','itemid',34077),(4746,'trends_uint','itemid',34077),(4747,'events','itemid',34078),(4748,'history','itemid',34078),(4749,'history_log','itemid',34078),(4750,'history_str','itemid',34078),(4751,'history_text','itemid',34078),(4752,'history_uint','itemid',34078),(4753,'trends','itemid',34078),(4754,'trends_uint','itemid',34078),(4755,'events','itemid',34080),(4756,'history','itemid',34080),(4757,'history_log','itemid',34080),(4758,'history_str','itemid',34080),(4759,'history_text','itemid',34080),(4760,'history_uint','itemid',34080),(4761,'trends','itemid',34080),(4762,'trends_uint','itemid',34080),(4763,'events','itemid',34108),(4764,'history','itemid',34108),(4765,'history_log','itemid',34108),(4766,'history_str','itemid',34108),(4767,'history_text','itemid',34108),(4768,'history_uint','itemid',34108),(4769,'trends','itemid',34108),(4770,'trends_uint','itemid',34108),(4771,'events','itemid',34109),(4772,'history','itemid',34109),(4773,'history_log','itemid',34109),(4774,'history_str','itemid',34109),(4775,'history_text','itemid',34109),(4776,'history_uint','itemid',34109),(4777,'trends','itemid',34109),(4778,'trends_uint','itemid',34109),(4779,'events','itemid',34110),(4780,'history','itemid',34110),(4781,'history_log','itemid',34110),(4782,'history_str','itemid',34110),(4783,'history_text','itemid',34110),(4784,'history_uint','itemid',34110),(4785,'trends','itemid',34110),(4786,'trends_uint','itemid',34110),(4787,'events','itemid',34111),(4788,'history','itemid',34111),(4789,'history_log','itemid',34111),(4790,'history_str','itemid',34111),(4791,'history_text','itemid',34111),(4792,'history_uint','itemid',34111),(4793,'trends','itemid',34111),(4794,'trends_uint','itemid',34111),(4795,'events','itemid',34112),(4796,'history','itemid',34112),(4797,'history_log','itemid',34112),(4798,'history_str','itemid',34112),(4799,'history_text','itemid',34112),(4800,'history_uint','itemid',34112),(4801,'trends','itemid',34112),(4802,'trends_uint','itemid',34112),(4803,'events','itemid',34113),(4804,'history','itemid',34113),(4805,'history_log','itemid',34113),(4806,'history_str','itemid',34113),(4807,'history_text','itemid',34113),(4808,'history_uint','itemid',34113),(4809,'trends','itemid',34113),(4810,'trends_uint','itemid',34113),(4811,'events','itemid',34114),(4812,'history','itemid',34114),(4813,'history_log','itemid',34114),(4814,'history_str','itemid',34114),(4815,'history_text','itemid',34114),(4816,'history_uint','itemid',34114),(4817,'trends','itemid',34114),(4818,'trends_uint','itemid',34114),(4819,'events','itemid',34115),(4820,'history','itemid',34115),(4821,'history_log','itemid',34115),(4822,'history_str','itemid',34115),(4823,'history_text','itemid',34115),(4824,'history_uint','itemid',34115),(4825,'trends','itemid',34115),(4826,'trends_uint','itemid',34115),(4827,'events','itemid',43779),(4828,'history','itemid',43779),(4829,'history_log','itemid',43779),(4830,'history_str','itemid',43779),(4831,'history_text','itemid',43779),(4832,'history_uint','itemid',43779),(4833,'trends','itemid',43779),(4834,'trends_uint','itemid',43779),(4835,'events','itemid',34116),(4836,'history','itemid',34116),(4837,'history_log','itemid',34116),(4838,'history_str','itemid',34116),(4839,'history_text','itemid',34116),(4840,'history_uint','itemid',34116),(4841,'trends','itemid',34116),(4842,'trends_uint','itemid',34116),(4843,'events','itemid',34117),(4844,'history','itemid',34117),(4845,'history_log','itemid',34117),(4846,'history_str','itemid',34117),(4847,'history_text','itemid',34117),(4848,'history_uint','itemid',34117),(4849,'trends','itemid',34117),(4850,'trends_uint','itemid',34117),(4851,'events','itemid',34120),(4852,'history','itemid',34120),(4853,'history_log','itemid',34120),(4854,'history_str','itemid',34120),(4855,'history_text','itemid',34120),(4856,'history_uint','itemid',34120),(4857,'trends','itemid',34120),(4858,'trends_uint','itemid',34120),(4859,'events','itemid',34118),(4860,'history','itemid',34118),(4861,'history_log','itemid',34118),(4862,'history_str','itemid',34118),(4863,'history_text','itemid',34118),(4864,'history_uint','itemid',34118),(4865,'trends','itemid',34118),(4866,'trends_uint','itemid',34118),(4867,'events','itemid',34119),(4868,'history','itemid',34119),(4869,'history_log','itemid',34119),(4870,'history_str','itemid',34119),(4871,'history_text','itemid',34119),(4872,'history_uint','itemid',34119),(4873,'trends','itemid',34119),(4874,'trends_uint','itemid',34119),(4875,'events','itemid',34121),(4876,'history','itemid',34121),(4877,'history_log','itemid',34121),(4878,'history_str','itemid',34121),(4879,'history_text','itemid',34121),(4880,'history_uint','itemid',34121),(4881,'trends','itemid',34121),(4882,'trends_uint','itemid',34121),(4883,'events','itemid',34787),(4884,'history','itemid',34787),(4885,'history_log','itemid',34787),(4886,'history_str','itemid',34787),(4887,'history_text','itemid',34787),(4888,'history_uint','itemid',34787),(4889,'trends','itemid',34787),(4890,'trends_uint','itemid',34787),(4891,'events','itemid',34193),(4892,'history','itemid',34193),(4893,'history_log','itemid',34193),(4894,'history_str','itemid',34193),(4895,'history_text','itemid',34193),(4896,'history_uint','itemid',34193),(4897,'trends','itemid',34193),(4898,'trends_uint','itemid',34193),(4899,'events','itemid',34205),(4900,'history','itemid',34205),(4901,'history_log','itemid',34205),(4902,'history_str','itemid',34205),(4903,'history_text','itemid',34205),(4904,'history_uint','itemid',34205),(4905,'trends','itemid',34205),(4906,'trends_uint','itemid',34205),(4907,'events','itemid',34204),(4908,'history','itemid',34204),(4909,'history_log','itemid',34204),(4910,'history_str','itemid',34204),(4911,'history_text','itemid',34204),(4912,'history_uint','itemid',34204),(4913,'trends','itemid',34204),(4914,'trends_uint','itemid',34204),(4915,'events','itemid',34203),(4916,'history','itemid',34203),(4917,'history_log','itemid',34203),(4918,'history_str','itemid',34203),(4919,'history_text','itemid',34203),(4920,'history_uint','itemid',34203),(4921,'trends','itemid',34203),(4922,'trends_uint','itemid',34203),(4923,'events','itemid',34202),(4924,'history','itemid',34202),(4925,'history_log','itemid',34202),(4926,'history_str','itemid',34202),(4927,'history_text','itemid',34202),(4928,'history_uint','itemid',34202),(4929,'trends','itemid',34202),(4930,'trends_uint','itemid',34202),(4931,'events','itemid',34201),(4932,'history','itemid',34201),(4933,'history_log','itemid',34201),(4934,'history_str','itemid',34201),(4935,'history_text','itemid',34201),(4936,'history_uint','itemid',34201),(4937,'trends','itemid',34201),(4938,'trends_uint','itemid',34201),(4939,'events','itemid',34200),(4940,'history','itemid',34200),(4941,'history_log','itemid',34200),(4942,'history_str','itemid',34200),(4943,'history_text','itemid',34200),(4944,'history_uint','itemid',34200),(4945,'trends','itemid',34200),(4946,'trends_uint','itemid',34200),(4947,'events','itemid',34196),(4948,'history','itemid',34196),(4949,'history_log','itemid',34196),(4950,'history_str','itemid',34196),(4951,'history_text','itemid',34196),(4952,'history_uint','itemid',34196),(4953,'trends','itemid',34196),(4954,'trends_uint','itemid',34196),(4955,'events','itemid',34195),(4956,'history','itemid',34195),(4957,'history_log','itemid',34195),(4958,'history_str','itemid',34195),(4959,'history_text','itemid',34195),(4960,'history_uint','itemid',34195),(4961,'trends','itemid',34195),(4962,'trends_uint','itemid',34195),(4963,'events','itemid',34194),(4964,'history','itemid',34194),(4965,'history_log','itemid',34194),(4966,'history_str','itemid',34194),(4967,'history_text','itemid',34194),(4968,'history_uint','itemid',34194),(4969,'trends','itemid',34194),(4970,'trends_uint','itemid',34194),(4971,'events','itemid',34192),(4972,'history','itemid',34192),(4973,'history_log','itemid',34192),(4974,'history_str','itemid',34192),(4975,'history_text','itemid',34192),(4976,'history_uint','itemid',34192),(4977,'trends','itemid',34192),(4978,'trends_uint','itemid',34192),(4979,'events','itemid',34180),(4980,'history','itemid',34180),(4981,'history_log','itemid',34180),(4982,'history_str','itemid',34180),(4983,'history_text','itemid',34180),(4984,'history_uint','itemid',34180),(4985,'trends','itemid',34180),(4986,'trends_uint','itemid',34180),(4987,'events','itemid',34191),(4988,'history','itemid',34191),(4989,'history_log','itemid',34191),(4990,'history_str','itemid',34191),(4991,'history_text','itemid',34191),(4992,'history_uint','itemid',34191),(4993,'trends','itemid',34191),(4994,'trends_uint','itemid',34191),(4995,'events','itemid',34190),(4996,'history','itemid',34190),(4997,'history_log','itemid',34190),(4998,'history_str','itemid',34190),(4999,'history_text','itemid',34190),(5000,'history_uint','itemid',34190),(5001,'trends','itemid',34190),(5002,'trends_uint','itemid',34190),(5003,'events','itemid',34189),(5004,'history','itemid',34189),(5005,'history_log','itemid',34189),(5006,'history_str','itemid',34189),(5007,'history_text','itemid',34189),(5008,'history_uint','itemid',34189),(5009,'trends','itemid',34189),(5010,'trends_uint','itemid',34189),(5011,'events','itemid',34188),(5012,'history','itemid',34188),(5013,'history_log','itemid',34188),(5014,'history_str','itemid',34188),(5015,'history_text','itemid',34188),(5016,'history_uint','itemid',34188),(5017,'trends','itemid',34188),(5018,'trends_uint','itemid',34188),(5019,'events','itemid',34187),(5020,'history','itemid',34187),(5021,'history_log','itemid',34187),(5022,'history_str','itemid',34187),(5023,'history_text','itemid',34187),(5024,'history_uint','itemid',34187),(5025,'trends','itemid',34187),(5026,'trends_uint','itemid',34187),(5027,'events','itemid',43883),(5028,'history','itemid',43883),(5029,'history_log','itemid',43883),(5030,'history_str','itemid',43883),(5031,'history_text','itemid',43883),(5032,'history_uint','itemid',43883),(5033,'trends','itemid',43883),(5034,'trends_uint','itemid',43883),(5035,'events','itemid',34186),(5036,'history','itemid',34186),(5037,'history_log','itemid',34186),(5038,'history_str','itemid',34186),(5039,'history_text','itemid',34186),(5040,'history_uint','itemid',34186),(5041,'trends','itemid',34186),(5042,'trends_uint','itemid',34186),(5043,'events','itemid',34185),(5044,'history','itemid',34185),(5045,'history_log','itemid',34185),(5046,'history_str','itemid',34185),(5047,'history_text','itemid',34185),(5048,'history_uint','itemid',34185),(5049,'trends','itemid',34185),(5050,'trends_uint','itemid',34185),(5051,'events','itemid',34788),(5052,'history','itemid',34788),(5053,'history_log','itemid',34788),(5054,'history_str','itemid',34788),(5055,'history_text','itemid',34788),(5056,'history_uint','itemid',34788),(5057,'trends','itemid',34788),(5058,'trends_uint','itemid',34788),(5059,'events','itemid',34181),(5060,'history','itemid',34181),(5061,'history_log','itemid',34181),(5062,'history_str','itemid',34181),(5063,'history_text','itemid',34181),(5064,'history_uint','itemid',34181),(5065,'trends','itemid',34181),(5066,'trends_uint','itemid',34181),(5067,'events','itemid',34183),(5068,'history','itemid',34183),(5069,'history_log','itemid',34183),(5070,'history_str','itemid',34183),(5071,'history_text','itemid',34183),(5072,'history_uint','itemid',34183),(5073,'trends','itemid',34183),(5074,'trends_uint','itemid',34183),(5075,'events','itemid',34182),(5076,'history','itemid',34182),(5077,'history_log','itemid',34182),(5078,'history_str','itemid',34182),(5079,'history_text','itemid',34182),(5080,'history_uint','itemid',34182),(5081,'trends','itemid',34182),(5082,'trends_uint','itemid',34182),(5083,'events','itemid',34206),(5084,'history','itemid',34206),(5085,'history_log','itemid',34206),(5086,'history_str','itemid',34206),(5087,'history_text','itemid',34206),(5088,'history_uint','itemid',34206),(5089,'trends','itemid',34206),(5090,'trends_uint','itemid',34206),(5091,'events','itemid',34451),(5092,'history','itemid',34451),(5093,'history_log','itemid',34451),(5094,'history_str','itemid',34451),(5095,'history_text','itemid',34451),(5096,'history_uint','itemid',34451),(5097,'trends','itemid',34451),(5098,'trends_uint','itemid',34451),(5099,'events','itemid',34464),(5100,'history','itemid',34464),(5101,'history_log','itemid',34464),(5102,'history_str','itemid',34464),(5103,'history_text','itemid',34464),(5104,'history_uint','itemid',34464),(5105,'trends','itemid',34464),(5106,'trends_uint','itemid',34464),(5107,'events','itemid',34474),(5108,'history','itemid',34474),(5109,'history_log','itemid',34474),(5110,'history_str','itemid',34474),(5111,'history_text','itemid',34474),(5112,'history_uint','itemid',34474),(5113,'trends','itemid',34474),(5114,'trends_uint','itemid',34474),(5115,'events','itemid',34473),(5116,'history','itemid',34473),(5117,'history_log','itemid',34473),(5118,'history_str','itemid',34473),(5119,'history_text','itemid',34473),(5120,'history_uint','itemid',34473),(5121,'trends','itemid',34473),(5122,'trends_uint','itemid',34473),(5123,'events','itemid',34472),(5124,'history','itemid',34472),(5125,'history_log','itemid',34472),(5126,'history_str','itemid',34472),(5127,'history_text','itemid',34472),(5128,'history_uint','itemid',34472),(5129,'trends','itemid',34472),(5130,'trends_uint','itemid',34472),(5131,'events','itemid',34471),(5132,'history','itemid',34471),(5133,'history_log','itemid',34471),(5134,'history_str','itemid',34471),(5135,'history_text','itemid',34471),(5136,'history_uint','itemid',34471),(5137,'trends','itemid',34471),(5138,'trends_uint','itemid',34471),(5139,'events','itemid',34470),(5140,'history','itemid',34470),(5141,'history_log','itemid',34470),(5142,'history_str','itemid',34470),(5143,'history_text','itemid',34470),(5144,'history_uint','itemid',34470),(5145,'trends','itemid',34470),(5146,'trends_uint','itemid',34470),(5147,'events','itemid',34469),(5148,'history','itemid',34469),(5149,'history_log','itemid',34469),(5150,'history_str','itemid',34469),(5151,'history_text','itemid',34469),(5152,'history_uint','itemid',34469),(5153,'trends','itemid',34469),(5154,'trends_uint','itemid',34469),(5155,'events','itemid',34468),(5156,'history','itemid',34468),(5157,'history_log','itemid',34468),(5158,'history_str','itemid',34468),(5159,'history_text','itemid',34468),(5160,'history_uint','itemid',34468),(5161,'trends','itemid',34468),(5162,'trends_uint','itemid',34468),(5163,'events','itemid',34467),(5164,'history','itemid',34467),(5165,'history_log','itemid',34467),(5166,'history_str','itemid',34467),(5167,'history_text','itemid',34467),(5168,'history_uint','itemid',34467),(5169,'trends','itemid',34467),(5170,'trends_uint','itemid',34467),(5171,'events','itemid',34466),(5172,'history','itemid',34466),(5173,'history_log','itemid',34466),(5174,'history_str','itemid',34466),(5175,'history_text','itemid',34466),(5176,'history_uint','itemid',34466),(5177,'trends','itemid',34466),(5178,'trends_uint','itemid',34466),(5179,'events','itemid',34465),(5180,'history','itemid',34465),(5181,'history_log','itemid',34465),(5182,'history_str','itemid',34465),(5183,'history_text','itemid',34465),(5184,'history_uint','itemid',34465),(5185,'trends','itemid',34465),(5186,'trends_uint','itemid',34465),(5187,'events','itemid',34463),(5188,'history','itemid',34463),(5189,'history_log','itemid',34463),(5190,'history_str','itemid',34463),(5191,'history_text','itemid',34463),(5192,'history_uint','itemid',34463),(5193,'trends','itemid',34463),(5194,'trends_uint','itemid',34463),(5195,'events','itemid',34452),(5196,'history','itemid',34452),(5197,'history_log','itemid',34452),(5198,'history_str','itemid',34452),(5199,'history_text','itemid',34452),(5200,'history_uint','itemid',34452),(5201,'trends','itemid',34452),(5202,'trends_uint','itemid',34452),(5203,'events','itemid',34462),(5204,'history','itemid',34462),(5205,'history_log','itemid',34462),(5206,'history_str','itemid',34462),(5207,'history_text','itemid',34462),(5208,'history_uint','itemid',34462),(5209,'trends','itemid',34462),(5210,'trends_uint','itemid',34462),(5211,'events','itemid',34461),(5212,'history','itemid',34461),(5213,'history_log','itemid',34461),(5214,'history_str','itemid',34461),(5215,'history_text','itemid',34461),(5216,'history_uint','itemid',34461),(5217,'trends','itemid',34461),(5218,'trends_uint','itemid',34461),(5219,'events','itemid',34460),(5220,'history','itemid',34460),(5221,'history_log','itemid',34460),(5222,'history_str','itemid',34460),(5223,'history_text','itemid',34460),(5224,'history_uint','itemid',34460),(5225,'trends','itemid',34460),(5226,'trends_uint','itemid',34460),(5227,'events','itemid',34459),(5228,'history','itemid',34459),(5229,'history_log','itemid',34459),(5230,'history_str','itemid',34459),(5231,'history_text','itemid',34459),(5232,'history_uint','itemid',34459),(5233,'trends','itemid',34459),(5234,'trends_uint','itemid',34459),(5235,'events','itemid',43876),(5236,'history','itemid',43876),(5237,'history_log','itemid',43876),(5238,'history_str','itemid',43876),(5239,'history_text','itemid',43876),(5240,'history_uint','itemid',43876),(5241,'trends','itemid',43876),(5242,'trends_uint','itemid',43876),(5243,'events','itemid',34458),(5244,'history','itemid',34458),(5245,'history_log','itemid',34458),(5246,'history_str','itemid',34458),(5247,'history_text','itemid',34458),(5248,'history_uint','itemid',34458),(5249,'trends','itemid',34458),(5250,'trends_uint','itemid',34458),(5251,'events','itemid',34457),(5252,'history','itemid',34457),(5253,'history_log','itemid',34457),(5254,'history_str','itemid',34457),(5255,'history_text','itemid',34457),(5256,'history_uint','itemid',34457),(5257,'trends','itemid',34457),(5258,'trends_uint','itemid',34457),(5259,'events','itemid',34456),(5260,'history','itemid',34456),(5261,'history_log','itemid',34456),(5262,'history_str','itemid',34456),(5263,'history_text','itemid',34456),(5264,'history_uint','itemid',34456),(5265,'trends','itemid',34456),(5266,'trends_uint','itemid',34456),(5267,'events','itemid',34453),(5268,'history','itemid',34453),(5269,'history_log','itemid',34453),(5270,'history_str','itemid',34453),(5271,'history_text','itemid',34453),(5272,'history_uint','itemid',34453),(5273,'trends','itemid',34453),(5274,'trends_uint','itemid',34453),(5275,'events','itemid',34455),(5276,'history','itemid',34455),(5277,'history_log','itemid',34455),(5278,'history_str','itemid',34455),(5279,'history_text','itemid',34455),(5280,'history_uint','itemid',34455),(5281,'trends','itemid',34455),(5282,'trends_uint','itemid',34455),(5283,'events','itemid',34454),(5284,'history','itemid',34454),(5285,'history_log','itemid',34454),(5286,'history_str','itemid',34454),(5287,'history_text','itemid',34454),(5288,'history_uint','itemid',34454),(5289,'trends','itemid',34454),(5290,'trends_uint','itemid',34454),(5291,'events','itemid',34475),(5292,'history','itemid',34475),(5293,'history_log','itemid',34475),(5294,'history_str','itemid',34475),(5295,'history_text','itemid',34475),(5296,'history_uint','itemid',34475),(5297,'trends','itemid',34475),(5298,'trends_uint','itemid',34475),(5299,'events','itemid',34499),(5300,'history','itemid',34499),(5301,'history_log','itemid',34499),(5302,'history_str','itemid',34499),(5303,'history_text','itemid',34499),(5304,'history_uint','itemid',34499),(5305,'trends','itemid',34499),(5306,'trends_uint','itemid',34499),(5307,'events','itemid',34512),(5308,'history','itemid',34512),(5309,'history_log','itemid',34512),(5310,'history_str','itemid',34512),(5311,'history_text','itemid',34512),(5312,'history_uint','itemid',34512),(5313,'trends','itemid',34512),(5314,'trends_uint','itemid',34512),(5315,'events','itemid',34522),(5316,'history','itemid',34522),(5317,'history_log','itemid',34522),(5318,'history_str','itemid',34522),(5319,'history_text','itemid',34522),(5320,'history_uint','itemid',34522),(5321,'trends','itemid',34522),(5322,'trends_uint','itemid',34522),(5323,'events','itemid',34521),(5324,'history','itemid',34521),(5325,'history_log','itemid',34521),(5326,'history_str','itemid',34521),(5327,'history_text','itemid',34521),(5328,'history_uint','itemid',34521),(5329,'trends','itemid',34521),(5330,'trends_uint','itemid',34521),(5331,'events','itemid',34520),(5332,'history','itemid',34520),(5333,'history_log','itemid',34520),(5334,'history_str','itemid',34520),(5335,'history_text','itemid',34520),(5336,'history_uint','itemid',34520),(5337,'trends','itemid',34520),(5338,'trends_uint','itemid',34520),(5339,'events','itemid',34519),(5340,'history','itemid',34519),(5341,'history_log','itemid',34519),(5342,'history_str','itemid',34519),(5343,'history_text','itemid',34519),(5344,'history_uint','itemid',34519),(5345,'trends','itemid',34519),(5346,'trends_uint','itemid',34519),(5347,'events','itemid',34518),(5348,'history','itemid',34518),(5349,'history_log','itemid',34518),(5350,'history_str','itemid',34518),(5351,'history_text','itemid',34518),(5352,'history_uint','itemid',34518),(5353,'trends','itemid',34518),(5354,'trends_uint','itemid',34518),(5355,'events','itemid',34517),(5356,'history','itemid',34517),(5357,'history_log','itemid',34517),(5358,'history_str','itemid',34517),(5359,'history_text','itemid',34517),(5360,'history_uint','itemid',34517),(5361,'trends','itemid',34517),(5362,'trends_uint','itemid',34517),(5363,'events','itemid',34516),(5364,'history','itemid',34516),(5365,'history_log','itemid',34516),(5366,'history_str','itemid',34516),(5367,'history_text','itemid',34516),(5368,'history_uint','itemid',34516),(5369,'trends','itemid',34516),(5370,'trends_uint','itemid',34516),(5371,'events','itemid',34515),(5372,'history','itemid',34515),(5373,'history_log','itemid',34515),(5374,'history_str','itemid',34515),(5375,'history_text','itemid',34515),(5376,'history_uint','itemid',34515),(5377,'trends','itemid',34515),(5378,'trends_uint','itemid',34515),(5379,'events','itemid',34514),(5380,'history','itemid',34514),(5381,'history_log','itemid',34514),(5382,'history_str','itemid',34514),(5383,'history_text','itemid',34514),(5384,'history_uint','itemid',34514),(5385,'trends','itemid',34514),(5386,'trends_uint','itemid',34514),(5387,'events','itemid',34513),(5388,'history','itemid',34513),(5389,'history_log','itemid',34513),(5390,'history_str','itemid',34513),(5391,'history_text','itemid',34513),(5392,'history_uint','itemid',34513),(5393,'trends','itemid',34513),(5394,'trends_uint','itemid',34513),(5395,'events','itemid',34511),(5396,'history','itemid',34511),(5397,'history_log','itemid',34511),(5398,'history_str','itemid',34511),(5399,'history_text','itemid',34511),(5400,'history_uint','itemid',34511),(5401,'trends','itemid',34511),(5402,'trends_uint','itemid',34511),(5403,'events','itemid',34500),(5404,'history','itemid',34500),(5405,'history_log','itemid',34500),(5406,'history_str','itemid',34500),(5407,'history_text','itemid',34500),(5408,'history_uint','itemid',34500),(5409,'trends','itemid',34500),(5410,'trends_uint','itemid',34500),(5411,'events','itemid',34510),(5412,'history','itemid',34510),(5413,'history_log','itemid',34510),(5414,'history_str','itemid',34510),(5415,'history_text','itemid',34510),(5416,'history_uint','itemid',34510),(5417,'trends','itemid',34510),(5418,'trends_uint','itemid',34510),(5419,'events','itemid',34509),(5420,'history','itemid',34509),(5421,'history_log','itemid',34509),(5422,'history_str','itemid',34509),(5423,'history_text','itemid',34509),(5424,'history_uint','itemid',34509),(5425,'trends','itemid',34509),(5426,'trends_uint','itemid',34509),(5427,'events','itemid',34508),(5428,'history','itemid',34508),(5429,'history_log','itemid',34508),(5430,'history_str','itemid',34508),(5431,'history_text','itemid',34508),(5432,'history_uint','itemid',34508),(5433,'trends','itemid',34508),(5434,'trends_uint','itemid',34508),(5435,'events','itemid',34507),(5436,'history','itemid',34507),(5437,'history_log','itemid',34507),(5438,'history_str','itemid',34507),(5439,'history_text','itemid',34507),(5440,'history_uint','itemid',34507),(5441,'trends','itemid',34507),(5442,'trends_uint','itemid',34507),(5443,'events','itemid',43877),(5444,'history','itemid',43877),(5445,'history_log','itemid',43877),(5446,'history_str','itemid',43877),(5447,'history_text','itemid',43877),(5448,'history_uint','itemid',43877),(5449,'trends','itemid',43877),(5450,'trends_uint','itemid',43877),(5451,'events','itemid',34506),(5452,'history','itemid',34506),(5453,'history_log','itemid',34506),(5454,'history_str','itemid',34506),(5455,'history_text','itemid',34506),(5456,'history_uint','itemid',34506),(5457,'trends','itemid',34506),(5458,'trends_uint','itemid',34506),(5459,'events','itemid',34505),(5460,'history','itemid',34505),(5461,'history_log','itemid',34505),(5462,'history_str','itemid',34505),(5463,'history_text','itemid',34505),(5464,'history_uint','itemid',34505),(5465,'trends','itemid',34505),(5466,'trends_uint','itemid',34505),(5467,'events','itemid',34504),(5468,'history','itemid',34504),(5469,'history_log','itemid',34504),(5470,'history_str','itemid',34504),(5471,'history_text','itemid',34504),(5472,'history_uint','itemid',34504),(5473,'trends','itemid',34504),(5474,'trends_uint','itemid',34504),(5475,'events','itemid',34501),(5476,'history','itemid',34501),(5477,'history_log','itemid',34501),(5478,'history_str','itemid',34501),(5479,'history_text','itemid',34501),(5480,'history_uint','itemid',34501),(5481,'trends','itemid',34501),(5482,'trends_uint','itemid',34501),(5483,'events','itemid',34503),(5484,'history','itemid',34503),(5485,'history_log','itemid',34503),(5486,'history_str','itemid',34503),(5487,'history_text','itemid',34503),(5488,'history_uint','itemid',34503),(5489,'trends','itemid',34503),(5490,'trends_uint','itemid',34503),(5491,'events','itemid',34502),(5492,'history','itemid',34502),(5493,'history_log','itemid',34502),(5494,'history_str','itemid',34502),(5495,'history_text','itemid',34502),(5496,'history_uint','itemid',34502),(5497,'trends','itemid',34502),(5498,'trends_uint','itemid',34502),(5499,'events','itemid',34523),(5500,'history','itemid',34523),(5501,'history_log','itemid',34523),(5502,'history_str','itemid',34523),(5503,'history_text','itemid',34523),(5504,'history_uint','itemid',34523),(5505,'trends','itemid',34523),(5506,'trends_uint','itemid',34523),(5507,'events','itemid',34547),(5508,'history','itemid',34547),(5509,'history_log','itemid',34547),(5510,'history_str','itemid',34547),(5511,'history_text','itemid',34547),(5512,'history_uint','itemid',34547),(5513,'trends','itemid',34547),(5514,'trends_uint','itemid',34547),(5515,'events','itemid',34560),(5516,'history','itemid',34560),(5517,'history_log','itemid',34560),(5518,'history_str','itemid',34560),(5519,'history_text','itemid',34560),(5520,'history_uint','itemid',34560),(5521,'trends','itemid',34560),(5522,'trends_uint','itemid',34560),(5523,'events','itemid',34570),(5524,'history','itemid',34570),(5525,'history_log','itemid',34570),(5526,'history_str','itemid',34570),(5527,'history_text','itemid',34570),(5528,'history_uint','itemid',34570),(5529,'trends','itemid',34570),(5530,'trends_uint','itemid',34570),(5531,'events','itemid',34569),(5532,'history','itemid',34569),(5533,'history_log','itemid',34569),(5534,'history_str','itemid',34569),(5535,'history_text','itemid',34569),(5536,'history_uint','itemid',34569),(5537,'trends','itemid',34569),(5538,'trends_uint','itemid',34569),(5539,'events','itemid',34568),(5540,'history','itemid',34568),(5541,'history_log','itemid',34568),(5542,'history_str','itemid',34568),(5543,'history_text','itemid',34568),(5544,'history_uint','itemid',34568),(5545,'trends','itemid',34568),(5546,'trends_uint','itemid',34568),(5547,'events','itemid',34567),(5548,'history','itemid',34567),(5549,'history_log','itemid',34567),(5550,'history_str','itemid',34567),(5551,'history_text','itemid',34567),(5552,'history_uint','itemid',34567),(5553,'trends','itemid',34567),(5554,'trends_uint','itemid',34567),(5555,'events','itemid',34566),(5556,'history','itemid',34566),(5557,'history_log','itemid',34566),(5558,'history_str','itemid',34566),(5559,'history_text','itemid',34566),(5560,'history_uint','itemid',34566),(5561,'trends','itemid',34566),(5562,'trends_uint','itemid',34566),(5563,'events','itemid',34565),(5564,'history','itemid',34565),(5565,'history_log','itemid',34565),(5566,'history_str','itemid',34565),(5567,'history_text','itemid',34565),(5568,'history_uint','itemid',34565),(5569,'trends','itemid',34565),(5570,'trends_uint','itemid',34565),(5571,'events','itemid',34564),(5572,'history','itemid',34564),(5573,'history_log','itemid',34564),(5574,'history_str','itemid',34564),(5575,'history_text','itemid',34564),(5576,'history_uint','itemid',34564),(5577,'trends','itemid',34564),(5578,'trends_uint','itemid',34564),(5579,'events','itemid',34563),(5580,'history','itemid',34563),(5581,'history_log','itemid',34563),(5582,'history_str','itemid',34563),(5583,'history_text','itemid',34563),(5584,'history_uint','itemid',34563),(5585,'trends','itemid',34563),(5586,'trends_uint','itemid',34563),(5587,'events','itemid',34562),(5588,'history','itemid',34562),(5589,'history_log','itemid',34562),(5590,'history_str','itemid',34562),(5591,'history_text','itemid',34562),(5592,'history_uint','itemid',34562),(5593,'trends','itemid',34562),(5594,'trends_uint','itemid',34562),(5595,'events','itemid',34561),(5596,'history','itemid',34561),(5597,'history_log','itemid',34561),(5598,'history_str','itemid',34561),(5599,'history_text','itemid',34561),(5600,'history_uint','itemid',34561),(5601,'trends','itemid',34561),(5602,'trends_uint','itemid',34561),(5603,'events','itemid',34559),(5604,'history','itemid',34559),(5605,'history_log','itemid',34559),(5606,'history_str','itemid',34559),(5607,'history_text','itemid',34559),(5608,'history_uint','itemid',34559),(5609,'trends','itemid',34559),(5610,'trends_uint','itemid',34559),(5611,'events','itemid',34548),(5612,'history','itemid',34548),(5613,'history_log','itemid',34548),(5614,'history_str','itemid',34548),(5615,'history_text','itemid',34548),(5616,'history_uint','itemid',34548),(5617,'trends','itemid',34548),(5618,'trends_uint','itemid',34548),(5619,'events','itemid',34558),(5620,'history','itemid',34558),(5621,'history_log','itemid',34558),(5622,'history_str','itemid',34558),(5623,'history_text','itemid',34558),(5624,'history_uint','itemid',34558),(5625,'trends','itemid',34558),(5626,'trends_uint','itemid',34558),(5627,'events','itemid',34557),(5628,'history','itemid',34557),(5629,'history_log','itemid',34557),(5630,'history_str','itemid',34557),(5631,'history_text','itemid',34557),(5632,'history_uint','itemid',34557),(5633,'trends','itemid',34557),(5634,'trends_uint','itemid',34557),(5635,'events','itemid',34556),(5636,'history','itemid',34556),(5637,'history_log','itemid',34556),(5638,'history_str','itemid',34556),(5639,'history_text','itemid',34556),(5640,'history_uint','itemid',34556),(5641,'trends','itemid',34556),(5642,'trends_uint','itemid',34556),(5643,'events','itemid',34555),(5644,'history','itemid',34555),(5645,'history_log','itemid',34555),(5646,'history_str','itemid',34555),(5647,'history_text','itemid',34555),(5648,'history_uint','itemid',34555),(5649,'trends','itemid',34555),(5650,'trends_uint','itemid',34555),(5651,'events','itemid',43878),(5652,'history','itemid',43878),(5653,'history_log','itemid',43878),(5654,'history_str','itemid',43878),(5655,'history_text','itemid',43878),(5656,'history_uint','itemid',43878),(5657,'trends','itemid',43878),(5658,'trends_uint','itemid',43878),(5659,'events','itemid',34554),(5660,'history','itemid',34554),(5661,'history_log','itemid',34554),(5662,'history_str','itemid',34554),(5663,'history_text','itemid',34554),(5664,'history_uint','itemid',34554),(5665,'trends','itemid',34554),(5666,'trends_uint','itemid',34554),(5667,'events','itemid',34553),(5668,'history','itemid',34553),(5669,'history_log','itemid',34553),(5670,'history_str','itemid',34553),(5671,'history_text','itemid',34553),(5672,'history_uint','itemid',34553),(5673,'trends','itemid',34553),(5674,'trends_uint','itemid',34553),(5675,'events','itemid',34552),(5676,'history','itemid',34552),(5677,'history_log','itemid',34552),(5678,'history_str','itemid',34552),(5679,'history_text','itemid',34552),(5680,'history_uint','itemid',34552),(5681,'trends','itemid',34552),(5682,'trends_uint','itemid',34552),(5683,'events','itemid',34549),(5684,'history','itemid',34549),(5685,'history_log','itemid',34549),(5686,'history_str','itemid',34549),(5687,'history_text','itemid',34549),(5688,'history_uint','itemid',34549),(5689,'trends','itemid',34549),(5690,'trends_uint','itemid',34549),(5691,'events','itemid',34551),(5692,'history','itemid',34551),(5693,'history_log','itemid',34551),(5694,'history_str','itemid',34551),(5695,'history_text','itemid',34551),(5696,'history_uint','itemid',34551),(5697,'trends','itemid',34551),(5698,'trends_uint','itemid',34551),(5699,'events','itemid',34550),(5700,'history','itemid',34550),(5701,'history_log','itemid',34550),(5702,'history_str','itemid',34550),(5703,'history_text','itemid',34550),(5704,'history_uint','itemid',34550),(5705,'trends','itemid',34550),(5706,'trends_uint','itemid',34550),(5707,'events','itemid',34571),(5708,'history','itemid',34571),(5709,'history_log','itemid',34571),(5710,'history_str','itemid',34571),(5711,'history_text','itemid',34571),(5712,'history_uint','itemid',34571),(5713,'trends','itemid',34571),(5714,'trends_uint','itemid',34571),(5715,'events','itemid',34595),(5716,'history','itemid',34595),(5717,'history_log','itemid',34595),(5718,'history_str','itemid',34595),(5719,'history_text','itemid',34595),(5720,'history_uint','itemid',34595),(5721,'trends','itemid',34595),(5722,'trends_uint','itemid',34595),(5723,'events','itemid',34608),(5724,'history','itemid',34608),(5725,'history_log','itemid',34608),(5726,'history_str','itemid',34608),(5727,'history_text','itemid',34608),(5728,'history_uint','itemid',34608),(5729,'trends','itemid',34608),(5730,'trends_uint','itemid',34608),(5731,'events','itemid',34618),(5732,'history','itemid',34618),(5733,'history_log','itemid',34618),(5734,'history_str','itemid',34618),(5735,'history_text','itemid',34618),(5736,'history_uint','itemid',34618),(5737,'trends','itemid',34618),(5738,'trends_uint','itemid',34618),(5739,'events','itemid',34617),(5740,'history','itemid',34617),(5741,'history_log','itemid',34617),(5742,'history_str','itemid',34617),(5743,'history_text','itemid',34617),(5744,'history_uint','itemid',34617),(5745,'trends','itemid',34617),(5746,'trends_uint','itemid',34617),(5747,'events','itemid',34616),(5748,'history','itemid',34616),(5749,'history_log','itemid',34616),(5750,'history_str','itemid',34616),(5751,'history_text','itemid',34616),(5752,'history_uint','itemid',34616),(5753,'trends','itemid',34616),(5754,'trends_uint','itemid',34616),(5755,'events','itemid',34615),(5756,'history','itemid',34615),(5757,'history_log','itemid',34615),(5758,'history_str','itemid',34615),(5759,'history_text','itemid',34615),(5760,'history_uint','itemid',34615),(5761,'trends','itemid',34615),(5762,'trends_uint','itemid',34615),(5763,'events','itemid',34614),(5764,'history','itemid',34614),(5765,'history_log','itemid',34614),(5766,'history_str','itemid',34614),(5767,'history_text','itemid',34614),(5768,'history_uint','itemid',34614),(5769,'trends','itemid',34614),(5770,'trends_uint','itemid',34614),(5771,'events','itemid',34613),(5772,'history','itemid',34613),(5773,'history_log','itemid',34613),(5774,'history_str','itemid',34613),(5775,'history_text','itemid',34613),(5776,'history_uint','itemid',34613),(5777,'trends','itemid',34613),(5778,'trends_uint','itemid',34613),(5779,'events','itemid',34612),(5780,'history','itemid',34612),(5781,'history_log','itemid',34612),(5782,'history_str','itemid',34612),(5783,'history_text','itemid',34612),(5784,'history_uint','itemid',34612),(5785,'trends','itemid',34612),(5786,'trends_uint','itemid',34612),(5787,'events','itemid',34611),(5788,'history','itemid',34611),(5789,'history_log','itemid',34611),(5790,'history_str','itemid',34611),(5791,'history_text','itemid',34611),(5792,'history_uint','itemid',34611),(5793,'trends','itemid',34611),(5794,'trends_uint','itemid',34611),(5795,'events','itemid',34610),(5796,'history','itemid',34610),(5797,'history_log','itemid',34610),(5798,'history_str','itemid',34610),(5799,'history_text','itemid',34610),(5800,'history_uint','itemid',34610),(5801,'trends','itemid',34610),(5802,'trends_uint','itemid',34610),(5803,'events','itemid',34609),(5804,'history','itemid',34609),(5805,'history_log','itemid',34609),(5806,'history_str','itemid',34609),(5807,'history_text','itemid',34609),(5808,'history_uint','itemid',34609),(5809,'trends','itemid',34609),(5810,'trends_uint','itemid',34609),(5811,'events','itemid',34607),(5812,'history','itemid',34607),(5813,'history_log','itemid',34607),(5814,'history_str','itemid',34607),(5815,'history_text','itemid',34607),(5816,'history_uint','itemid',34607),(5817,'trends','itemid',34607),(5818,'trends_uint','itemid',34607),(5819,'events','itemid',34596),(5820,'history','itemid',34596),(5821,'history_log','itemid',34596),(5822,'history_str','itemid',34596),(5823,'history_text','itemid',34596),(5824,'history_uint','itemid',34596),(5825,'trends','itemid',34596),(5826,'trends_uint','itemid',34596),(5827,'events','itemid',34606),(5828,'history','itemid',34606),(5829,'history_log','itemid',34606),(5830,'history_str','itemid',34606),(5831,'history_text','itemid',34606),(5832,'history_uint','itemid',34606),(5833,'trends','itemid',34606),(5834,'trends_uint','itemid',34606),(5835,'events','itemid',34605),(5836,'history','itemid',34605),(5837,'history_log','itemid',34605),(5838,'history_str','itemid',34605),(5839,'history_text','itemid',34605),(5840,'history_uint','itemid',34605),(5841,'trends','itemid',34605),(5842,'trends_uint','itemid',34605),(5843,'events','itemid',34604),(5844,'history','itemid',34604),(5845,'history_log','itemid',34604),(5846,'history_str','itemid',34604),(5847,'history_text','itemid',34604),(5848,'history_uint','itemid',34604),(5849,'trends','itemid',34604),(5850,'trends_uint','itemid',34604),(5851,'events','itemid',34603),(5852,'history','itemid',34603),(5853,'history_log','itemid',34603),(5854,'history_str','itemid',34603),(5855,'history_text','itemid',34603),(5856,'history_uint','itemid',34603),(5857,'trends','itemid',34603),(5858,'trends_uint','itemid',34603),(5859,'events','itemid',43879),(5860,'history','itemid',43879),(5861,'history_log','itemid',43879),(5862,'history_str','itemid',43879),(5863,'history_text','itemid',43879),(5864,'history_uint','itemid',43879),(5865,'trends','itemid',43879),(5866,'trends_uint','itemid',43879),(5867,'events','itemid',34602),(5868,'history','itemid',34602),(5869,'history_log','itemid',34602),(5870,'history_str','itemid',34602),(5871,'history_text','itemid',34602),(5872,'history_uint','itemid',34602),(5873,'trends','itemid',34602),(5874,'trends_uint','itemid',34602),(5875,'events','itemid',34601),(5876,'history','itemid',34601),(5877,'history_log','itemid',34601),(5878,'history_str','itemid',34601),(5879,'history_text','itemid',34601),(5880,'history_uint','itemid',34601),(5881,'trends','itemid',34601),(5882,'trends_uint','itemid',34601),(5883,'events','itemid',34600),(5884,'history','itemid',34600),(5885,'history_log','itemid',34600),(5886,'history_str','itemid',34600),(5887,'history_text','itemid',34600),(5888,'history_uint','itemid',34600),(5889,'trends','itemid',34600),(5890,'trends_uint','itemid',34600),(5891,'events','itemid',34597),(5892,'history','itemid',34597),(5893,'history_log','itemid',34597),(5894,'history_str','itemid',34597),(5895,'history_text','itemid',34597),(5896,'history_uint','itemid',34597),(5897,'trends','itemid',34597),(5898,'trends_uint','itemid',34597),(5899,'events','itemid',34599),(5900,'history','itemid',34599),(5901,'history_log','itemid',34599),(5902,'history_str','itemid',34599),(5903,'history_text','itemid',34599),(5904,'history_uint','itemid',34599),(5905,'trends','itemid',34599),(5906,'trends_uint','itemid',34599),(5907,'events','itemid',34598),(5908,'history','itemid',34598),(5909,'history_log','itemid',34598),(5910,'history_str','itemid',34598),(5911,'history_text','itemid',34598),(5912,'history_uint','itemid',34598),(5913,'trends','itemid',34598),(5914,'trends_uint','itemid',34598),(5915,'events','itemid',34619),(5916,'history','itemid',34619),(5917,'history_log','itemid',34619),(5918,'history_str','itemid',34619),(5919,'history_text','itemid',34619),(5920,'history_uint','itemid',34619),(5921,'trends','itemid',34619),(5922,'trends_uint','itemid',34619),(5923,'events','itemid',34643),(5924,'history','itemid',34643),(5925,'history_log','itemid',34643),(5926,'history_str','itemid',34643),(5927,'history_text','itemid',34643),(5928,'history_uint','itemid',34643),(5929,'trends','itemid',34643),(5930,'trends_uint','itemid',34643),(5931,'events','itemid',34656),(5932,'history','itemid',34656),(5933,'history_log','itemid',34656),(5934,'history_str','itemid',34656),(5935,'history_text','itemid',34656),(5936,'history_uint','itemid',34656),(5937,'trends','itemid',34656),(5938,'trends_uint','itemid',34656),(5939,'events','itemid',34666),(5940,'history','itemid',34666),(5941,'history_log','itemid',34666),(5942,'history_str','itemid',34666),(5943,'history_text','itemid',34666),(5944,'history_uint','itemid',34666),(5945,'trends','itemid',34666),(5946,'trends_uint','itemid',34666),(5947,'events','itemid',34665),(5948,'history','itemid',34665),(5949,'history_log','itemid',34665),(5950,'history_str','itemid',34665),(5951,'history_text','itemid',34665),(5952,'history_uint','itemid',34665),(5953,'trends','itemid',34665),(5954,'trends_uint','itemid',34665),(5955,'events','itemid',34664),(5956,'history','itemid',34664),(5957,'history_log','itemid',34664),(5958,'history_str','itemid',34664),(5959,'history_text','itemid',34664),(5960,'history_uint','itemid',34664),(5961,'trends','itemid',34664),(5962,'trends_uint','itemid',34664),(5963,'events','itemid',34663),(5964,'history','itemid',34663),(5965,'history_log','itemid',34663),(5966,'history_str','itemid',34663),(5967,'history_text','itemid',34663),(5968,'history_uint','itemid',34663),(5969,'trends','itemid',34663),(5970,'trends_uint','itemid',34663),(5971,'events','itemid',34662),(5972,'history','itemid',34662),(5973,'history_log','itemid',34662),(5974,'history_str','itemid',34662),(5975,'history_text','itemid',34662),(5976,'history_uint','itemid',34662),(5977,'trends','itemid',34662),(5978,'trends_uint','itemid',34662),(5979,'events','itemid',34661),(5980,'history','itemid',34661),(5981,'history_log','itemid',34661),(5982,'history_str','itemid',34661),(5983,'history_text','itemid',34661),(5984,'history_uint','itemid',34661),(5985,'trends','itemid',34661),(5986,'trends_uint','itemid',34661),(5987,'events','itemid',34660),(5988,'history','itemid',34660),(5989,'history_log','itemid',34660),(5990,'history_str','itemid',34660),(5991,'history_text','itemid',34660),(5992,'history_uint','itemid',34660),(5993,'trends','itemid',34660),(5994,'trends_uint','itemid',34660),(5995,'events','itemid',34659),(5996,'history','itemid',34659),(5997,'history_log','itemid',34659),(5998,'history_str','itemid',34659),(5999,'history_text','itemid',34659),(6000,'history_uint','itemid',34659),(6001,'trends','itemid',34659),(6002,'trends_uint','itemid',34659),(6003,'events','itemid',34658),(6004,'history','itemid',34658),(6005,'history_log','itemid',34658),(6006,'history_str','itemid',34658),(6007,'history_text','itemid',34658),(6008,'history_uint','itemid',34658),(6009,'trends','itemid',34658),(6010,'trends_uint','itemid',34658),(6011,'events','itemid',34657),(6012,'history','itemid',34657),(6013,'history_log','itemid',34657),(6014,'history_str','itemid',34657),(6015,'history_text','itemid',34657),(6016,'history_uint','itemid',34657),(6017,'trends','itemid',34657),(6018,'trends_uint','itemid',34657),(6019,'events','itemid',34655),(6020,'history','itemid',34655),(6021,'history_log','itemid',34655),(6022,'history_str','itemid',34655),(6023,'history_text','itemid',34655),(6024,'history_uint','itemid',34655),(6025,'trends','itemid',34655),(6026,'trends_uint','itemid',34655),(6027,'events','itemid',34644),(6028,'history','itemid',34644),(6029,'history_log','itemid',34644),(6030,'history_str','itemid',34644),(6031,'history_text','itemid',34644),(6032,'history_uint','itemid',34644),(6033,'trends','itemid',34644),(6034,'trends_uint','itemid',34644),(6035,'events','itemid',34654),(6036,'history','itemid',34654),(6037,'history_log','itemid',34654),(6038,'history_str','itemid',34654),(6039,'history_text','itemid',34654),(6040,'history_uint','itemid',34654),(6041,'trends','itemid',34654),(6042,'trends_uint','itemid',34654),(6043,'events','itemid',34653),(6044,'history','itemid',34653),(6045,'history_log','itemid',34653),(6046,'history_str','itemid',34653),(6047,'history_text','itemid',34653),(6048,'history_uint','itemid',34653),(6049,'trends','itemid',34653),(6050,'trends_uint','itemid',34653),(6051,'events','itemid',34652),(6052,'history','itemid',34652),(6053,'history_log','itemid',34652),(6054,'history_str','itemid',34652),(6055,'history_text','itemid',34652),(6056,'history_uint','itemid',34652),(6057,'trends','itemid',34652),(6058,'trends_uint','itemid',34652),(6059,'events','itemid',34651),(6060,'history','itemid',34651),(6061,'history_log','itemid',34651),(6062,'history_str','itemid',34651),(6063,'history_text','itemid',34651),(6064,'history_uint','itemid',34651),(6065,'trends','itemid',34651),(6066,'trends_uint','itemid',34651),(6067,'events','itemid',43880),(6068,'history','itemid',43880),(6069,'history_log','itemid',43880),(6070,'history_str','itemid',43880),(6071,'history_text','itemid',43880),(6072,'history_uint','itemid',43880),(6073,'trends','itemid',43880),(6074,'trends_uint','itemid',43880),(6075,'events','itemid',34650),(6076,'history','itemid',34650),(6077,'history_log','itemid',34650),(6078,'history_str','itemid',34650),(6079,'history_text','itemid',34650),(6080,'history_uint','itemid',34650),(6081,'trends','itemid',34650),(6082,'trends_uint','itemid',34650),(6083,'events','itemid',34649),(6084,'history','itemid',34649),(6085,'history_log','itemid',34649),(6086,'history_str','itemid',34649),(6087,'history_text','itemid',34649),(6088,'history_uint','itemid',34649),(6089,'trends','itemid',34649),(6090,'trends_uint','itemid',34649),(6091,'events','itemid',34648),(6092,'history','itemid',34648),(6093,'history_log','itemid',34648),(6094,'history_str','itemid',34648),(6095,'history_text','itemid',34648),(6096,'history_uint','itemid',34648),(6097,'trends','itemid',34648),(6098,'trends_uint','itemid',34648),(6099,'events','itemid',34645),(6100,'history','itemid',34645),(6101,'history_log','itemid',34645),(6102,'history_str','itemid',34645),(6103,'history_text','itemid',34645),(6104,'history_uint','itemid',34645),(6105,'trends','itemid',34645),(6106,'trends_uint','itemid',34645),(6107,'events','itemid',34647),(6108,'history','itemid',34647),(6109,'history_log','itemid',34647),(6110,'history_str','itemid',34647),(6111,'history_text','itemid',34647),(6112,'history_uint','itemid',34647),(6113,'trends','itemid',34647),(6114,'trends_uint','itemid',34647),(6115,'events','itemid',34646),(6116,'history','itemid',34646),(6117,'history_log','itemid',34646),(6118,'history_str','itemid',34646),(6119,'history_text','itemid',34646),(6120,'history_uint','itemid',34646),(6121,'trends','itemid',34646),(6122,'trends_uint','itemid',34646),(6123,'events','itemid',34667),(6124,'history','itemid',34667),(6125,'history_log','itemid',34667),(6126,'history_str','itemid',34667),(6127,'history_text','itemid',34667),(6128,'history_uint','itemid',34667),(6129,'trends','itemid',34667),(6130,'trends_uint','itemid',34667),(6131,'events','itemid',34739),(6132,'history','itemid',34739),(6133,'history_log','itemid',34739),(6134,'history_str','itemid',34739),(6135,'history_text','itemid',34739),(6136,'history_uint','itemid',34739),(6137,'trends','itemid',34739),(6138,'trends_uint','itemid',34739),(6139,'events','itemid',34752),(6140,'history','itemid',34752),(6141,'history_log','itemid',34752),(6142,'history_str','itemid',34752),(6143,'history_text','itemid',34752),(6144,'history_uint','itemid',34752),(6145,'trends','itemid',34752),(6146,'trends_uint','itemid',34752),(6147,'events','itemid',34762),(6148,'history','itemid',34762),(6149,'history_log','itemid',34762),(6150,'history_str','itemid',34762),(6151,'history_text','itemid',34762),(6152,'history_uint','itemid',34762),(6153,'trends','itemid',34762),(6154,'trends_uint','itemid',34762),(6155,'events','itemid',34761),(6156,'history','itemid',34761),(6157,'history_log','itemid',34761),(6158,'history_str','itemid',34761),(6159,'history_text','itemid',34761),(6160,'history_uint','itemid',34761),(6161,'trends','itemid',34761),(6162,'trends_uint','itemid',34761),(6163,'events','itemid',34760),(6164,'history','itemid',34760),(6165,'history_log','itemid',34760),(6166,'history_str','itemid',34760),(6167,'history_text','itemid',34760),(6168,'history_uint','itemid',34760),(6169,'trends','itemid',34760),(6170,'trends_uint','itemid',34760),(6171,'events','itemid',34759),(6172,'history','itemid',34759),(6173,'history_log','itemid',34759),(6174,'history_str','itemid',34759),(6175,'history_text','itemid',34759),(6176,'history_uint','itemid',34759),(6177,'trends','itemid',34759),(6178,'trends_uint','itemid',34759),(6179,'events','itemid',34758),(6180,'history','itemid',34758),(6181,'history_log','itemid',34758),(6182,'history_str','itemid',34758),(6183,'history_text','itemid',34758),(6184,'history_uint','itemid',34758),(6185,'trends','itemid',34758),(6186,'trends_uint','itemid',34758),(6187,'events','itemid',34757),(6188,'history','itemid',34757),(6189,'history_log','itemid',34757),(6190,'history_str','itemid',34757),(6191,'history_text','itemid',34757),(6192,'history_uint','itemid',34757),(6193,'trends','itemid',34757),(6194,'trends_uint','itemid',34757),(6195,'events','itemid',34756),(6196,'history','itemid',34756),(6197,'history_log','itemid',34756),(6198,'history_str','itemid',34756),(6199,'history_text','itemid',34756),(6200,'history_uint','itemid',34756),(6201,'trends','itemid',34756),(6202,'trends_uint','itemid',34756),(6203,'events','itemid',34755),(6204,'history','itemid',34755),(6205,'history_log','itemid',34755),(6206,'history_str','itemid',34755),(6207,'history_text','itemid',34755),(6208,'history_uint','itemid',34755),(6209,'trends','itemid',34755),(6210,'trends_uint','itemid',34755),(6211,'events','itemid',34754),(6212,'history','itemid',34754),(6213,'history_log','itemid',34754),(6214,'history_str','itemid',34754),(6215,'history_text','itemid',34754),(6216,'history_uint','itemid',34754),(6217,'trends','itemid',34754),(6218,'trends_uint','itemid',34754),(6219,'events','itemid',34753),(6220,'history','itemid',34753),(6221,'history_log','itemid',34753),(6222,'history_str','itemid',34753),(6223,'history_text','itemid',34753),(6224,'history_uint','itemid',34753),(6225,'trends','itemid',34753),(6226,'trends_uint','itemid',34753),(6227,'events','itemid',34751),(6228,'history','itemid',34751),(6229,'history_log','itemid',34751),(6230,'history_str','itemid',34751),(6231,'history_text','itemid',34751),(6232,'history_uint','itemid',34751),(6233,'trends','itemid',34751),(6234,'trends_uint','itemid',34751),(6235,'events','itemid',34740),(6236,'history','itemid',34740),(6237,'history_log','itemid',34740),(6238,'history_str','itemid',34740),(6239,'history_text','itemid',34740),(6240,'history_uint','itemid',34740),(6241,'trends','itemid',34740),(6242,'trends_uint','itemid',34740),(6243,'events','itemid',34750),(6244,'history','itemid',34750),(6245,'history_log','itemid',34750),(6246,'history_str','itemid',34750),(6247,'history_text','itemid',34750),(6248,'history_uint','itemid',34750),(6249,'trends','itemid',34750),(6250,'trends_uint','itemid',34750),(6251,'events','itemid',34749),(6252,'history','itemid',34749),(6253,'history_log','itemid',34749),(6254,'history_str','itemid',34749),(6255,'history_text','itemid',34749),(6256,'history_uint','itemid',34749),(6257,'trends','itemid',34749),(6258,'trends_uint','itemid',34749),(6259,'events','itemid',34748),(6260,'history','itemid',34748),(6261,'history_log','itemid',34748),(6262,'history_str','itemid',34748),(6263,'history_text','itemid',34748),(6264,'history_uint','itemid',34748),(6265,'trends','itemid',34748),(6266,'trends_uint','itemid',34748),(6267,'events','itemid',34747),(6268,'history','itemid',34747),(6269,'history_log','itemid',34747),(6270,'history_str','itemid',34747),(6271,'history_text','itemid',34747),(6272,'history_uint','itemid',34747),(6273,'trends','itemid',34747),(6274,'trends_uint','itemid',34747),(6275,'events','itemid',43882),(6276,'history','itemid',43882),(6277,'history_log','itemid',43882),(6278,'history_str','itemid',43882),(6279,'history_text','itemid',43882),(6280,'history_uint','itemid',43882),(6281,'trends','itemid',43882),(6282,'trends_uint','itemid',43882),(6283,'events','itemid',34746),(6284,'history','itemid',34746),(6285,'history_log','itemid',34746),(6286,'history_str','itemid',34746),(6287,'history_text','itemid',34746),(6288,'history_uint','itemid',34746),(6289,'trends','itemid',34746),(6290,'trends_uint','itemid',34746),(6291,'events','itemid',34745),(6292,'history','itemid',34745),(6293,'history_log','itemid',34745),(6294,'history_str','itemid',34745),(6295,'history_text','itemid',34745),(6296,'history_uint','itemid',34745),(6297,'trends','itemid',34745),(6298,'trends_uint','itemid',34745),(6299,'events','itemid',34744),(6300,'history','itemid',34744),(6301,'history_log','itemid',34744),(6302,'history_str','itemid',34744),(6303,'history_text','itemid',34744),(6304,'history_uint','itemid',34744),(6305,'trends','itemid',34744),(6306,'trends_uint','itemid',34744),(6307,'events','itemid',34741),(6308,'history','itemid',34741),(6309,'history_log','itemid',34741),(6310,'history_str','itemid',34741),(6311,'history_text','itemid',34741),(6312,'history_uint','itemid',34741),(6313,'trends','itemid',34741),(6314,'trends_uint','itemid',34741),(6315,'events','itemid',34743),(6316,'history','itemid',34743),(6317,'history_log','itemid',34743),(6318,'history_str','itemid',34743),(6319,'history_text','itemid',34743),(6320,'history_uint','itemid',34743),(6321,'trends','itemid',34743),(6322,'trends_uint','itemid',34743),(6323,'events','itemid',34742),(6324,'history','itemid',34742),(6325,'history_log','itemid',34742),(6326,'history_str','itemid',34742),(6327,'history_text','itemid',34742),(6328,'history_uint','itemid',34742),(6329,'trends','itemid',34742),(6330,'trends_uint','itemid',34742),(6331,'events','itemid',34763),(6332,'history','itemid',34763),(6333,'history_log','itemid',34763),(6334,'history_str','itemid',34763),(6335,'history_text','itemid',34763),(6336,'history_uint','itemid',34763),(6337,'trends','itemid',34763),(6338,'trends_uint','itemid',34763),(6339,'events','itemid',34793),(6340,'history','itemid',34793),(6341,'history_log','itemid',34793),(6342,'history_str','itemid',34793),(6343,'history_text','itemid',34793),(6344,'history_uint','itemid',34793),(6345,'trends','itemid',34793),(6346,'trends_uint','itemid',34793),(6347,'events','itemid',34806),(6348,'history','itemid',34806),(6349,'history_log','itemid',34806),(6350,'history_str','itemid',34806),(6351,'history_text','itemid',34806),(6352,'history_uint','itemid',34806),(6353,'trends','itemid',34806),(6354,'trends_uint','itemid',34806),(6355,'events','itemid',34816),(6356,'history','itemid',34816),(6357,'history_log','itemid',34816),(6358,'history_str','itemid',34816),(6359,'history_text','itemid',34816),(6360,'history_uint','itemid',34816),(6361,'trends','itemid',34816),(6362,'trends_uint','itemid',34816),(6363,'events','itemid',34815),(6364,'history','itemid',34815),(6365,'history_log','itemid',34815),(6366,'history_str','itemid',34815),(6367,'history_text','itemid',34815),(6368,'history_uint','itemid',34815),(6369,'trends','itemid',34815),(6370,'trends_uint','itemid',34815),(6371,'events','itemid',34814),(6372,'history','itemid',34814),(6373,'history_log','itemid',34814),(6374,'history_str','itemid',34814),(6375,'history_text','itemid',34814),(6376,'history_uint','itemid',34814),(6377,'trends','itemid',34814),(6378,'trends_uint','itemid',34814),(6379,'events','itemid',34813),(6380,'history','itemid',34813),(6381,'history_log','itemid',34813),(6382,'history_str','itemid',34813),(6383,'history_text','itemid',34813),(6384,'history_uint','itemid',34813),(6385,'trends','itemid',34813),(6386,'trends_uint','itemid',34813),(6387,'events','itemid',34812),(6388,'history','itemid',34812),(6389,'history_log','itemid',34812),(6390,'history_str','itemid',34812),(6391,'history_text','itemid',34812),(6392,'history_uint','itemid',34812),(6393,'trends','itemid',34812),(6394,'trends_uint','itemid',34812),(6395,'events','itemid',34811),(6396,'history','itemid',34811),(6397,'history_log','itemid',34811),(6398,'history_str','itemid',34811),(6399,'history_text','itemid',34811),(6400,'history_uint','itemid',34811),(6401,'trends','itemid',34811),(6402,'trends_uint','itemid',34811),(6403,'events','itemid',34810),(6404,'history','itemid',34810),(6405,'history_log','itemid',34810),(6406,'history_str','itemid',34810),(6407,'history_text','itemid',34810),(6408,'history_uint','itemid',34810),(6409,'trends','itemid',34810),(6410,'trends_uint','itemid',34810),(6411,'events','itemid',34809),(6412,'history','itemid',34809),(6413,'history_log','itemid',34809),(6414,'history_str','itemid',34809),(6415,'history_text','itemid',34809),(6416,'history_uint','itemid',34809),(6417,'trends','itemid',34809),(6418,'trends_uint','itemid',34809),(6419,'events','itemid',34808),(6420,'history','itemid',34808),(6421,'history_log','itemid',34808),(6422,'history_str','itemid',34808),(6423,'history_text','itemid',34808),(6424,'history_uint','itemid',34808),(6425,'trends','itemid',34808),(6426,'trends_uint','itemid',34808),(6427,'events','itemid',34807),(6428,'history','itemid',34807),(6429,'history_log','itemid',34807),(6430,'history_str','itemid',34807),(6431,'history_text','itemid',34807),(6432,'history_uint','itemid',34807),(6433,'trends','itemid',34807),(6434,'trends_uint','itemid',34807),(6435,'events','itemid',34805),(6436,'history','itemid',34805),(6437,'history_log','itemid',34805),(6438,'history_str','itemid',34805),(6439,'history_text','itemid',34805),(6440,'history_uint','itemid',34805),(6441,'trends','itemid',34805),(6442,'trends_uint','itemid',34805),(6443,'events','itemid',34794),(6444,'history','itemid',34794),(6445,'history_log','itemid',34794),(6446,'history_str','itemid',34794),(6447,'history_text','itemid',34794),(6448,'history_uint','itemid',34794),(6449,'trends','itemid',34794),(6450,'trends_uint','itemid',34794),(6451,'events','itemid',34804),(6452,'history','itemid',34804),(6453,'history_log','itemid',34804),(6454,'history_str','itemid',34804),(6455,'history_text','itemid',34804),(6456,'history_uint','itemid',34804),(6457,'trends','itemid',34804),(6458,'trends_uint','itemid',34804),(6459,'events','itemid',34803),(6460,'history','itemid',34803),(6461,'history_log','itemid',34803),(6462,'history_str','itemid',34803),(6463,'history_text','itemid',34803),(6464,'history_uint','itemid',34803),(6465,'trends','itemid',34803),(6466,'trends_uint','itemid',34803),(6467,'events','itemid',34802),(6468,'history','itemid',34802),(6469,'history_log','itemid',34802),(6470,'history_str','itemid',34802),(6471,'history_text','itemid',34802),(6472,'history_uint','itemid',34802),(6473,'trends','itemid',34802),(6474,'trends_uint','itemid',34802),(6475,'events','itemid',34801),(6476,'history','itemid',34801),(6477,'history_log','itemid',34801),(6478,'history_str','itemid',34801),(6479,'history_text','itemid',34801),(6480,'history_uint','itemid',34801),(6481,'trends','itemid',34801),(6482,'trends_uint','itemid',34801),(6483,'events','itemid',43884),(6484,'history','itemid',43884),(6485,'history_log','itemid',43884),(6486,'history_str','itemid',43884),(6487,'history_text','itemid',43884),(6488,'history_uint','itemid',43884),(6489,'trends','itemid',43884),(6490,'trends_uint','itemid',43884),(6491,'events','itemid',34800),(6492,'history','itemid',34800),(6493,'history_log','itemid',34800),(6494,'history_str','itemid',34800),(6495,'history_text','itemid',34800),(6496,'history_uint','itemid',34800),(6497,'trends','itemid',34800),(6498,'trends_uint','itemid',34800),(6499,'events','itemid',34799),(6500,'history','itemid',34799),(6501,'history_log','itemid',34799),(6502,'history_str','itemid',34799),(6503,'history_text','itemid',34799),(6504,'history_uint','itemid',34799),(6505,'trends','itemid',34799),(6506,'trends_uint','itemid',34799),(6507,'events','itemid',34798),(6508,'history','itemid',34798),(6509,'history_log','itemid',34798),(6510,'history_str','itemid',34798),(6511,'history_text','itemid',34798),(6512,'history_uint','itemid',34798),(6513,'trends','itemid',34798),(6514,'trends_uint','itemid',34798),(6515,'events','itemid',34795),(6516,'history','itemid',34795),(6517,'history_log','itemid',34795),(6518,'history_str','itemid',34795),(6519,'history_text','itemid',34795),(6520,'history_uint','itemid',34795),(6521,'trends','itemid',34795),(6522,'trends_uint','itemid',34795),(6523,'events','itemid',34797),(6524,'history','itemid',34797),(6525,'history_log','itemid',34797),(6526,'history_str','itemid',34797),(6527,'history_text','itemid',34797),(6528,'history_uint','itemid',34797),(6529,'trends','itemid',34797),(6530,'trends_uint','itemid',34797),(6531,'events','itemid',34796),(6532,'history','itemid',34796),(6533,'history_log','itemid',34796),(6534,'history_str','itemid',34796),(6535,'history_text','itemid',34796),(6536,'history_uint','itemid',34796),(6537,'trends','itemid',34796),(6538,'trends_uint','itemid',34796),(6539,'events','itemid',34817),(6540,'history','itemid',34817),(6541,'history_log','itemid',34817),(6542,'history_str','itemid',34817),(6543,'history_text','itemid',34817),(6544,'history_uint','itemid',34817),(6545,'trends','itemid',34817),(6546,'trends_uint','itemid',34817),(6547,'events','itemid',34841),(6548,'history','itemid',34841),(6549,'history_log','itemid',34841),(6550,'history_str','itemid',34841),(6551,'history_text','itemid',34841),(6552,'history_uint','itemid',34841),(6553,'trends','itemid',34841),(6554,'trends_uint','itemid',34841),(6555,'events','itemid',34854),(6556,'history','itemid',34854),(6557,'history_log','itemid',34854),(6558,'history_str','itemid',34854),(6559,'history_text','itemid',34854),(6560,'history_uint','itemid',34854),(6561,'trends','itemid',34854),(6562,'trends_uint','itemid',34854),(6563,'events','itemid',34864),(6564,'history','itemid',34864),(6565,'history_log','itemid',34864),(6566,'history_str','itemid',34864),(6567,'history_text','itemid',34864),(6568,'history_uint','itemid',34864),(6569,'trends','itemid',34864),(6570,'trends_uint','itemid',34864),(6571,'events','itemid',34863),(6572,'history','itemid',34863),(6573,'history_log','itemid',34863),(6574,'history_str','itemid',34863),(6575,'history_text','itemid',34863),(6576,'history_uint','itemid',34863),(6577,'trends','itemid',34863),(6578,'trends_uint','itemid',34863),(6579,'events','itemid',34862),(6580,'history','itemid',34862),(6581,'history_log','itemid',34862),(6582,'history_str','itemid',34862),(6583,'history_text','itemid',34862),(6584,'history_uint','itemid',34862),(6585,'trends','itemid',34862),(6586,'trends_uint','itemid',34862),(6587,'events','itemid',34861),(6588,'history','itemid',34861),(6589,'history_log','itemid',34861),(6590,'history_str','itemid',34861),(6591,'history_text','itemid',34861),(6592,'history_uint','itemid',34861),(6593,'trends','itemid',34861),(6594,'trends_uint','itemid',34861),(6595,'events','itemid',34860),(6596,'history','itemid',34860),(6597,'history_log','itemid',34860),(6598,'history_str','itemid',34860),(6599,'history_text','itemid',34860),(6600,'history_uint','itemid',34860),(6601,'trends','itemid',34860),(6602,'trends_uint','itemid',34860),(6603,'events','itemid',34859),(6604,'history','itemid',34859),(6605,'history_log','itemid',34859),(6606,'history_str','itemid',34859),(6607,'history_text','itemid',34859),(6608,'history_uint','itemid',34859),(6609,'trends','itemid',34859),(6610,'trends_uint','itemid',34859),(6611,'events','itemid',34858),(6612,'history','itemid',34858),(6613,'history_log','itemid',34858),(6614,'history_str','itemid',34858),(6615,'history_text','itemid',34858),(6616,'history_uint','itemid',34858),(6617,'trends','itemid',34858),(6618,'trends_uint','itemid',34858),(6619,'events','itemid',34857),(6620,'history','itemid',34857),(6621,'history_log','itemid',34857),(6622,'history_str','itemid',34857),(6623,'history_text','itemid',34857),(6624,'history_uint','itemid',34857),(6625,'trends','itemid',34857),(6626,'trends_uint','itemid',34857),(6627,'events','itemid',34856),(6628,'history','itemid',34856),(6629,'history_log','itemid',34856),(6630,'history_str','itemid',34856),(6631,'history_text','itemid',34856),(6632,'history_uint','itemid',34856),(6633,'trends','itemid',34856),(6634,'trends_uint','itemid',34856),(6635,'events','itemid',34855),(6636,'history','itemid',34855),(6637,'history_log','itemid',34855),(6638,'history_str','itemid',34855),(6639,'history_text','itemid',34855),(6640,'history_uint','itemid',34855),(6641,'trends','itemid',34855),(6642,'trends_uint','itemid',34855),(6643,'events','itemid',34853),(6644,'history','itemid',34853),(6645,'history_log','itemid',34853),(6646,'history_str','itemid',34853),(6647,'history_text','itemid',34853),(6648,'history_uint','itemid',34853),(6649,'trends','itemid',34853),(6650,'trends_uint','itemid',34853),(6651,'events','itemid',34842),(6652,'history','itemid',34842),(6653,'history_log','itemid',34842),(6654,'history_str','itemid',34842),(6655,'history_text','itemid',34842),(6656,'history_uint','itemid',34842),(6657,'trends','itemid',34842),(6658,'trends_uint','itemid',34842),(6659,'events','itemid',34852),(6660,'history','itemid',34852),(6661,'history_log','itemid',34852),(6662,'history_str','itemid',34852),(6663,'history_text','itemid',34852),(6664,'history_uint','itemid',34852),(6665,'trends','itemid',34852),(6666,'trends_uint','itemid',34852),(6667,'events','itemid',34851),(6668,'history','itemid',34851),(6669,'history_log','itemid',34851),(6670,'history_str','itemid',34851),(6671,'history_text','itemid',34851),(6672,'history_uint','itemid',34851),(6673,'trends','itemid',34851),(6674,'trends_uint','itemid',34851),(6675,'events','itemid',34850),(6676,'history','itemid',34850),(6677,'history_log','itemid',34850),(6678,'history_str','itemid',34850),(6679,'history_text','itemid',34850),(6680,'history_uint','itemid',34850),(6681,'trends','itemid',34850),(6682,'trends_uint','itemid',34850),(6683,'events','itemid',34849),(6684,'history','itemid',34849),(6685,'history_log','itemid',34849),(6686,'history_str','itemid',34849),(6687,'history_text','itemid',34849),(6688,'history_uint','itemid',34849),(6689,'trends','itemid',34849),(6690,'trends_uint','itemid',34849),(6691,'events','itemid',43885),(6692,'history','itemid',43885),(6693,'history_log','itemid',43885),(6694,'history_str','itemid',43885),(6695,'history_text','itemid',43885),(6696,'history_uint','itemid',43885),(6697,'trends','itemid',43885),(6698,'trends_uint','itemid',43885),(6699,'events','itemid',34848),(6700,'history','itemid',34848),(6701,'history_log','itemid',34848),(6702,'history_str','itemid',34848),(6703,'history_text','itemid',34848),(6704,'history_uint','itemid',34848),(6705,'trends','itemid',34848),(6706,'trends_uint','itemid',34848),(6707,'events','itemid',34847),(6708,'history','itemid',34847),(6709,'history_log','itemid',34847),(6710,'history_str','itemid',34847),(6711,'history_text','itemid',34847),(6712,'history_uint','itemid',34847),(6713,'trends','itemid',34847),(6714,'trends_uint','itemid',34847),(6715,'events','itemid',34846),(6716,'history','itemid',34846),(6717,'history_log','itemid',34846),(6718,'history_str','itemid',34846),(6719,'history_text','itemid',34846),(6720,'history_uint','itemid',34846),(6721,'trends','itemid',34846),(6722,'trends_uint','itemid',34846),(6723,'events','itemid',34843),(6724,'history','itemid',34843),(6725,'history_log','itemid',34843),(6726,'history_str','itemid',34843),(6727,'history_text','itemid',34843),(6728,'history_uint','itemid',34843),(6729,'trends','itemid',34843),(6730,'trends_uint','itemid',34843),(6731,'events','itemid',34845),(6732,'history','itemid',34845),(6733,'history_log','itemid',34845),(6734,'history_str','itemid',34845),(6735,'history_text','itemid',34845),(6736,'history_uint','itemid',34845),(6737,'trends','itemid',34845),(6738,'trends_uint','itemid',34845),(6739,'events','itemid',34844),(6740,'history','itemid',34844),(6741,'history_log','itemid',34844),(6742,'history_str','itemid',34844),(6743,'history_text','itemid',34844),(6744,'history_uint','itemid',34844),(6745,'trends','itemid',34844),(6746,'trends_uint','itemid',34844),(6747,'events','itemid',34865),(6748,'history','itemid',34865),(6749,'history_log','itemid',34865),(6750,'history_str','itemid',34865),(6751,'history_text','itemid',34865),(6752,'history_uint','itemid',34865),(6753,'trends','itemid',34865),(6754,'trends_uint','itemid',34865),(6755,'events','itemid',34889),(6756,'history','itemid',34889),(6757,'history_log','itemid',34889),(6758,'history_str','itemid',34889),(6759,'history_text','itemid',34889),(6760,'history_uint','itemid',34889),(6761,'trends','itemid',34889),(6762,'trends_uint','itemid',34889),(6763,'events','itemid',34902),(6764,'history','itemid',34902),(6765,'history_log','itemid',34902),(6766,'history_str','itemid',34902),(6767,'history_text','itemid',34902),(6768,'history_uint','itemid',34902),(6769,'trends','itemid',34902),(6770,'trends_uint','itemid',34902),(6771,'events','itemid',34912),(6772,'history','itemid',34912),(6773,'history_log','itemid',34912),(6774,'history_str','itemid',34912),(6775,'history_text','itemid',34912),(6776,'history_uint','itemid',34912),(6777,'trends','itemid',34912),(6778,'trends_uint','itemid',34912),(6779,'events','itemid',34911),(6780,'history','itemid',34911),(6781,'history_log','itemid',34911),(6782,'history_str','itemid',34911),(6783,'history_text','itemid',34911),(6784,'history_uint','itemid',34911),(6785,'trends','itemid',34911),(6786,'trends_uint','itemid',34911),(6787,'events','itemid',34910),(6788,'history','itemid',34910),(6789,'history_log','itemid',34910),(6790,'history_str','itemid',34910),(6791,'history_text','itemid',34910),(6792,'history_uint','itemid',34910),(6793,'trends','itemid',34910),(6794,'trends_uint','itemid',34910),(6795,'events','itemid',34909),(6796,'history','itemid',34909),(6797,'history_log','itemid',34909),(6798,'history_str','itemid',34909),(6799,'history_text','itemid',34909),(6800,'history_uint','itemid',34909),(6801,'trends','itemid',34909),(6802,'trends_uint','itemid',34909),(6803,'events','itemid',34908),(6804,'history','itemid',34908),(6805,'history_log','itemid',34908),(6806,'history_str','itemid',34908),(6807,'history_text','itemid',34908),(6808,'history_uint','itemid',34908),(6809,'trends','itemid',34908),(6810,'trends_uint','itemid',34908),(6811,'events','itemid',34907),(6812,'history','itemid',34907),(6813,'history_log','itemid',34907),(6814,'history_str','itemid',34907),(6815,'history_text','itemid',34907),(6816,'history_uint','itemid',34907),(6817,'trends','itemid',34907),(6818,'trends_uint','itemid',34907),(6819,'events','itemid',34906),(6820,'history','itemid',34906),(6821,'history_log','itemid',34906),(6822,'history_str','itemid',34906),(6823,'history_text','itemid',34906),(6824,'history_uint','itemid',34906),(6825,'trends','itemid',34906),(6826,'trends_uint','itemid',34906),(6827,'events','itemid',34905),(6828,'history','itemid',34905),(6829,'history_log','itemid',34905),(6830,'history_str','itemid',34905),(6831,'history_text','itemid',34905),(6832,'history_uint','itemid',34905),(6833,'trends','itemid',34905),(6834,'trends_uint','itemid',34905),(6835,'events','itemid',34904),(6836,'history','itemid',34904),(6837,'history_log','itemid',34904),(6838,'history_str','itemid',34904),(6839,'history_text','itemid',34904),(6840,'history_uint','itemid',34904),(6841,'trends','itemid',34904),(6842,'trends_uint','itemid',34904),(6843,'events','itemid',34903),(6844,'history','itemid',34903),(6845,'history_log','itemid',34903),(6846,'history_str','itemid',34903),(6847,'history_text','itemid',34903),(6848,'history_uint','itemid',34903),(6849,'trends','itemid',34903),(6850,'trends_uint','itemid',34903),(6851,'events','itemid',34901),(6852,'history','itemid',34901),(6853,'history_log','itemid',34901),(6854,'history_str','itemid',34901),(6855,'history_text','itemid',34901),(6856,'history_uint','itemid',34901),(6857,'trends','itemid',34901),(6858,'trends_uint','itemid',34901),(6859,'events','itemid',34890),(6860,'history','itemid',34890),(6861,'history_log','itemid',34890),(6862,'history_str','itemid',34890),(6863,'history_text','itemid',34890),(6864,'history_uint','itemid',34890),(6865,'trends','itemid',34890),(6866,'trends_uint','itemid',34890),(6867,'events','itemid',34900),(6868,'history','itemid',34900),(6869,'history_log','itemid',34900),(6870,'history_str','itemid',34900),(6871,'history_text','itemid',34900),(6872,'history_uint','itemid',34900),(6873,'trends','itemid',34900),(6874,'trends_uint','itemid',34900),(6875,'events','itemid',34899),(6876,'history','itemid',34899),(6877,'history_log','itemid',34899),(6878,'history_str','itemid',34899),(6879,'history_text','itemid',34899),(6880,'history_uint','itemid',34899),(6881,'trends','itemid',34899),(6882,'trends_uint','itemid',34899),(6883,'events','itemid',34898),(6884,'history','itemid',34898),(6885,'history_log','itemid',34898),(6886,'history_str','itemid',34898),(6887,'history_text','itemid',34898),(6888,'history_uint','itemid',34898),(6889,'trends','itemid',34898),(6890,'trends_uint','itemid',34898),(6891,'events','itemid',34897),(6892,'history','itemid',34897),(6893,'history_log','itemid',34897),(6894,'history_str','itemid',34897),(6895,'history_text','itemid',34897),(6896,'history_uint','itemid',34897),(6897,'trends','itemid',34897),(6898,'trends_uint','itemid',34897),(6899,'events','itemid',43886),(6900,'history','itemid',43886),(6901,'history_log','itemid',43886),(6902,'history_str','itemid',43886),(6903,'history_text','itemid',43886),(6904,'history_uint','itemid',43886),(6905,'trends','itemid',43886),(6906,'trends_uint','itemid',43886),(6907,'events','itemid',34896),(6908,'history','itemid',34896),(6909,'history_log','itemid',34896),(6910,'history_str','itemid',34896),(6911,'history_text','itemid',34896),(6912,'history_uint','itemid',34896),(6913,'trends','itemid',34896),(6914,'trends_uint','itemid',34896),(6915,'events','itemid',34895),(6916,'history','itemid',34895),(6917,'history_log','itemid',34895),(6918,'history_str','itemid',34895),(6919,'history_text','itemid',34895),(6920,'history_uint','itemid',34895),(6921,'trends','itemid',34895),(6922,'trends_uint','itemid',34895),(6923,'events','itemid',34894),(6924,'history','itemid',34894),(6925,'history_log','itemid',34894),(6926,'history_str','itemid',34894),(6927,'history_text','itemid',34894),(6928,'history_uint','itemid',34894),(6929,'trends','itemid',34894),(6930,'trends_uint','itemid',34894),(6931,'events','itemid',34891),(6932,'history','itemid',34891),(6933,'history_log','itemid',34891),(6934,'history_str','itemid',34891),(6935,'history_text','itemid',34891),(6936,'history_uint','itemid',34891),(6937,'trends','itemid',34891),(6938,'trends_uint','itemid',34891),(6939,'events','itemid',34893),(6940,'history','itemid',34893),(6941,'history_log','itemid',34893),(6942,'history_str','itemid',34893),(6943,'history_text','itemid',34893),(6944,'history_uint','itemid',34893),(6945,'trends','itemid',34893),(6946,'trends_uint','itemid',34893),(6947,'events','itemid',34892),(6948,'history','itemid',34892),(6949,'history_log','itemid',34892),(6950,'history_str','itemid',34892),(6951,'history_text','itemid',34892),(6952,'history_uint','itemid',34892),(6953,'trends','itemid',34892),(6954,'trends_uint','itemid',34892),(6955,'events','itemid',34913),(6956,'history','itemid',34913),(6957,'history_log','itemid',34913),(6958,'history_str','itemid',34913),(6959,'history_text','itemid',34913),(6960,'history_uint','itemid',34913),(6961,'trends','itemid',34913),(6962,'trends_uint','itemid',34913),(6963,'events','itemid',35016),(6964,'history','itemid',35016),(6965,'history_log','itemid',35016),(6966,'history_str','itemid',35016),(6967,'history_text','itemid',35016),(6968,'history_uint','itemid',35016),(6969,'trends','itemid',35016),(6970,'trends_uint','itemid',35016),(6971,'events','itemid',35029),(6972,'history','itemid',35029),(6973,'history_log','itemid',35029),(6974,'history_str','itemid',35029),(6975,'history_text','itemid',35029),(6976,'history_uint','itemid',35029),(6977,'trends','itemid',35029),(6978,'trends_uint','itemid',35029),(6979,'events','itemid',35039),(6980,'history','itemid',35039),(6981,'history_log','itemid',35039),(6982,'history_str','itemid',35039),(6983,'history_text','itemid',35039),(6984,'history_uint','itemid',35039),(6985,'trends','itemid',35039),(6986,'trends_uint','itemid',35039),(6987,'events','itemid',35038),(6988,'history','itemid',35038),(6989,'history_log','itemid',35038),(6990,'history_str','itemid',35038),(6991,'history_text','itemid',35038),(6992,'history_uint','itemid',35038),(6993,'trends','itemid',35038),(6994,'trends_uint','itemid',35038),(6995,'events','itemid',35037),(6996,'history','itemid',35037),(6997,'history_log','itemid',35037),(6998,'history_str','itemid',35037),(6999,'history_text','itemid',35037),(7000,'history_uint','itemid',35037),(7001,'trends','itemid',35037),(7002,'trends_uint','itemid',35037),(7003,'events','itemid',35036),(7004,'history','itemid',35036),(7005,'history_log','itemid',35036),(7006,'history_str','itemid',35036),(7007,'history_text','itemid',35036),(7008,'history_uint','itemid',35036),(7009,'trends','itemid',35036),(7010,'trends_uint','itemid',35036),(7011,'events','itemid',35035),(7012,'history','itemid',35035),(7013,'history_log','itemid',35035),(7014,'history_str','itemid',35035),(7015,'history_text','itemid',35035),(7016,'history_uint','itemid',35035),(7017,'trends','itemid',35035),(7018,'trends_uint','itemid',35035),(7019,'events','itemid',35034),(7020,'history','itemid',35034),(7021,'history_log','itemid',35034),(7022,'history_str','itemid',35034),(7023,'history_text','itemid',35034),(7024,'history_uint','itemid',35034),(7025,'trends','itemid',35034),(7026,'trends_uint','itemid',35034),(7027,'events','itemid',35033),(7028,'history','itemid',35033),(7029,'history_log','itemid',35033),(7030,'history_str','itemid',35033),(7031,'history_text','itemid',35033),(7032,'history_uint','itemid',35033),(7033,'trends','itemid',35033),(7034,'trends_uint','itemid',35033),(7035,'events','itemid',35032),(7036,'history','itemid',35032),(7037,'history_log','itemid',35032),(7038,'history_str','itemid',35032),(7039,'history_text','itemid',35032),(7040,'history_uint','itemid',35032),(7041,'trends','itemid',35032),(7042,'trends_uint','itemid',35032),(7043,'events','itemid',35031),(7044,'history','itemid',35031),(7045,'history_log','itemid',35031),(7046,'history_str','itemid',35031),(7047,'history_text','itemid',35031),(7048,'history_uint','itemid',35031),(7049,'trends','itemid',35031),(7050,'trends_uint','itemid',35031),(7051,'events','itemid',35030),(7052,'history','itemid',35030),(7053,'history_log','itemid',35030),(7054,'history_str','itemid',35030),(7055,'history_text','itemid',35030),(7056,'history_uint','itemid',35030),(7057,'trends','itemid',35030),(7058,'trends_uint','itemid',35030),(7059,'events','itemid',35028),(7060,'history','itemid',35028),(7061,'history_log','itemid',35028),(7062,'history_str','itemid',35028),(7063,'history_text','itemid',35028),(7064,'history_uint','itemid',35028),(7065,'trends','itemid',35028),(7066,'trends_uint','itemid',35028),(7067,'events','itemid',35017),(7068,'history','itemid',35017),(7069,'history_log','itemid',35017),(7070,'history_str','itemid',35017),(7071,'history_text','itemid',35017),(7072,'history_uint','itemid',35017),(7073,'trends','itemid',35017),(7074,'trends_uint','itemid',35017),(7075,'events','itemid',35027),(7076,'history','itemid',35027),(7077,'history_log','itemid',35027),(7078,'history_str','itemid',35027),(7079,'history_text','itemid',35027),(7080,'history_uint','itemid',35027),(7081,'trends','itemid',35027),(7082,'trends_uint','itemid',35027),(7083,'events','itemid',35026),(7084,'history','itemid',35026),(7085,'history_log','itemid',35026),(7086,'history_str','itemid',35026),(7087,'history_text','itemid',35026),(7088,'history_uint','itemid',35026),(7089,'trends','itemid',35026),(7090,'trends_uint','itemid',35026),(7091,'events','itemid',35025),(7092,'history','itemid',35025),(7093,'history_log','itemid',35025),(7094,'history_str','itemid',35025),(7095,'history_text','itemid',35025),(7096,'history_uint','itemid',35025),(7097,'trends','itemid',35025),(7098,'trends_uint','itemid',35025),(7099,'events','itemid',35024),(7100,'history','itemid',35024),(7101,'history_log','itemid',35024),(7102,'history_str','itemid',35024),(7103,'history_text','itemid',35024),(7104,'history_uint','itemid',35024),(7105,'trends','itemid',35024),(7106,'trends_uint','itemid',35024),(7107,'events','itemid',43881),(7108,'history','itemid',43881),(7109,'history_log','itemid',43881),(7110,'history_str','itemid',43881),(7111,'history_text','itemid',43881),(7112,'history_uint','itemid',43881),(7113,'trends','itemid',43881),(7114,'trends_uint','itemid',43881),(7115,'events','itemid',35023),(7116,'history','itemid',35023),(7117,'history_log','itemid',35023),(7118,'history_str','itemid',35023),(7119,'history_text','itemid',35023),(7120,'history_uint','itemid',35023),(7121,'trends','itemid',35023),(7122,'trends_uint','itemid',35023),(7123,'events','itemid',35022),(7124,'history','itemid',35022),(7125,'history_log','itemid',35022),(7126,'history_str','itemid',35022),(7127,'history_text','itemid',35022),(7128,'history_uint','itemid',35022),(7129,'trends','itemid',35022),(7130,'trends_uint','itemid',35022),(7131,'events','itemid',35021),(7132,'history','itemid',35021),(7133,'history_log','itemid',35021),(7134,'history_str','itemid',35021),(7135,'history_text','itemid',35021),(7136,'history_uint','itemid',35021),(7137,'trends','itemid',35021),(7138,'trends_uint','itemid',35021),(7139,'events','itemid',35018),(7140,'history','itemid',35018),(7141,'history_log','itemid',35018),(7142,'history_str','itemid',35018),(7143,'history_text','itemid',35018),(7144,'history_uint','itemid',35018),(7145,'trends','itemid',35018),(7146,'trends_uint','itemid',35018),(7147,'events','itemid',35020),(7148,'history','itemid',35020),(7149,'history_log','itemid',35020),(7150,'history_str','itemid',35020),(7151,'history_text','itemid',35020),(7152,'history_uint','itemid',35020),(7153,'trends','itemid',35020),(7154,'trends_uint','itemid',35020),(7155,'events','itemid',35019),(7156,'history','itemid',35019),(7157,'history_log','itemid',35019),(7158,'history_str','itemid',35019),(7159,'history_text','itemid',35019),(7160,'history_uint','itemid',35019),(7161,'trends','itemid',35019),(7162,'trends_uint','itemid',35019),(7163,'events','itemid',35040),(7164,'history','itemid',35040),(7165,'history_log','itemid',35040),(7166,'history_str','itemid',35040),(7167,'history_text','itemid',35040),(7168,'history_uint','itemid',35040),(7169,'trends','itemid',35040),(7170,'trends_uint','itemid',35040),(7171,'events','itemid',35358),(7172,'history','itemid',35358),(7173,'history_log','itemid',35358),(7174,'history_str','itemid',35358),(7175,'history_text','itemid',35358),(7176,'history_uint','itemid',35358),(7177,'trends','itemid',35358),(7178,'trends_uint','itemid',35358),(7179,'events','itemid',35359),(7180,'history','itemid',35359),(7181,'history_log','itemid',35359),(7182,'history_str','itemid',35359),(7183,'history_text','itemid',35359),(7184,'history_uint','itemid',35359),(7185,'trends','itemid',35359),(7186,'trends_uint','itemid',35359),(7187,'events','itemid',35360),(7188,'history','itemid',35360),(7189,'history_log','itemid',35360),(7190,'history_str','itemid',35360),(7191,'history_text','itemid',35360),(7192,'history_uint','itemid',35360),(7193,'trends','itemid',35360),(7194,'trends_uint','itemid',35360),(7195,'events','itemid',35361),(7196,'history','itemid',35361),(7197,'history_log','itemid',35361),(7198,'history_str','itemid',35361),(7199,'history_text','itemid',35361),(7200,'history_uint','itemid',35361),(7201,'trends','itemid',35361),(7202,'trends_uint','itemid',35361),(7203,'events','itemid',35362),(7204,'history','itemid',35362),(7205,'history_log','itemid',35362),(7206,'history_str','itemid',35362),(7207,'history_text','itemid',35362),(7208,'history_uint','itemid',35362),(7209,'trends','itemid',35362),(7210,'trends_uint','itemid',35362),(7211,'events','itemid',35363),(7212,'history','itemid',35363),(7213,'history_log','itemid',35363),(7214,'history_str','itemid',35363),(7215,'history_text','itemid',35363),(7216,'history_uint','itemid',35363),(7217,'trends','itemid',35363),(7218,'trends_uint','itemid',35363),(7219,'events','itemid',43500),(7220,'history','itemid',43500),(7221,'history_log','itemid',43500),(7222,'history_str','itemid',43500),(7223,'history_text','itemid',43500),(7224,'history_uint','itemid',43500),(7225,'trends','itemid',43500),(7226,'trends_uint','itemid',43500),(7227,'events','itemid',43512),(7228,'history','itemid',43512),(7229,'history_log','itemid',43512),(7230,'history_str','itemid',43512),(7231,'history_text','itemid',43512),(7232,'history_uint','itemid',43512),(7233,'trends','itemid',43512),(7234,'trends_uint','itemid',43512),(7235,'events','itemid',43524),(7236,'history','itemid',43524),(7237,'history_log','itemid',43524),(7238,'history_str','itemid',43524),(7239,'history_text','itemid',43524),(7240,'history_uint','itemid',43524),(7241,'trends','itemid',43524),(7242,'trends_uint','itemid',43524),(7243,'events','itemid',43523),(7244,'history','itemid',43523),(7245,'history_log','itemid',43523),(7246,'history_str','itemid',43523),(7247,'history_text','itemid',43523),(7248,'history_uint','itemid',43523),(7249,'trends','itemid',43523),(7250,'trends_uint','itemid',43523),(7251,'events','itemid',43522),(7252,'history','itemid',43522),(7253,'history_log','itemid',43522),(7254,'history_str','itemid',43522),(7255,'history_text','itemid',43522),(7256,'history_uint','itemid',43522),(7257,'trends','itemid',43522),(7258,'trends_uint','itemid',43522),(7259,'events','itemid',43521),(7260,'history','itemid',43521),(7261,'history_log','itemid',43521),(7262,'history_str','itemid',43521),(7263,'history_text','itemid',43521),(7264,'history_uint','itemid',43521),(7265,'trends','itemid',43521),(7266,'trends_uint','itemid',43521),(7267,'events','itemid',43520),(7268,'history','itemid',43520),(7269,'history_log','itemid',43520),(7270,'history_str','itemid',43520),(7271,'history_text','itemid',43520),(7272,'history_uint','itemid',43520),(7273,'trends','itemid',43520),(7274,'trends_uint','itemid',43520),(7275,'events','itemid',43519),(7276,'history','itemid',43519),(7277,'history_log','itemid',43519),(7278,'history_str','itemid',43519),(7279,'history_text','itemid',43519),(7280,'history_uint','itemid',43519),(7281,'trends','itemid',43519),(7282,'trends_uint','itemid',43519),(7283,'events','itemid',43518),(7284,'history','itemid',43518),(7285,'history_log','itemid',43518),(7286,'history_str','itemid',43518),(7287,'history_text','itemid',43518),(7288,'history_uint','itemid',43518),(7289,'trends','itemid',43518),(7290,'trends_uint','itemid',43518),(7291,'events','itemid',43517),(7292,'history','itemid',43517),(7293,'history_log','itemid',43517),(7294,'history_str','itemid',43517),(7295,'history_text','itemid',43517),(7296,'history_uint','itemid',43517),(7297,'trends','itemid',43517),(7298,'trends_uint','itemid',43517),(7299,'events','itemid',43516),(7300,'history','itemid',43516),(7301,'history_log','itemid',43516),(7302,'history_str','itemid',43516),(7303,'history_text','itemid',43516),(7304,'history_uint','itemid',43516),(7305,'trends','itemid',43516),(7306,'trends_uint','itemid',43516),(7307,'events','itemid',43515),(7308,'history','itemid',43515),(7309,'history_log','itemid',43515),(7310,'history_str','itemid',43515),(7311,'history_text','itemid',43515),(7312,'history_uint','itemid',43515),(7313,'trends','itemid',43515),(7314,'trends_uint','itemid',43515),(7315,'events','itemid',43514),(7316,'history','itemid',43514),(7317,'history_log','itemid',43514),(7318,'history_str','itemid',43514),(7319,'history_text','itemid',43514),(7320,'history_uint','itemid',43514),(7321,'trends','itemid',43514),(7322,'trends_uint','itemid',43514),(7323,'events','itemid',43513),(7324,'history','itemid',43513),(7325,'history_log','itemid',43513),(7326,'history_str','itemid',43513),(7327,'history_text','itemid',43513),(7328,'history_uint','itemid',43513),(7329,'trends','itemid',43513),(7330,'trends_uint','itemid',43513),(7331,'events','itemid',43511),(7332,'history','itemid',43511),(7333,'history_log','itemid',43511),(7334,'history_str','itemid',43511),(7335,'history_text','itemid',43511),(7336,'history_uint','itemid',43511),(7337,'trends','itemid',43511),(7338,'trends_uint','itemid',43511),(7339,'events','itemid',43501),(7340,'history','itemid',43501),(7341,'history_log','itemid',43501),(7342,'history_str','itemid',43501),(7343,'history_text','itemid',43501),(7344,'history_uint','itemid',43501),(7345,'trends','itemid',43501),(7346,'trends_uint','itemid',43501),(7347,'events','itemid',43499),(7348,'history','itemid',43499),(7349,'history_log','itemid',43499),(7350,'history_str','itemid',43499),(7351,'history_text','itemid',43499),(7352,'history_uint','itemid',43499),(7353,'trends','itemid',43499),(7354,'trends_uint','itemid',43499),(7355,'events','itemid',43497),(7356,'history','itemid',43497),(7357,'history_log','itemid',43497),(7358,'history_str','itemid',43497),(7359,'history_text','itemid',43497),(7360,'history_uint','itemid',43497),(7361,'trends','itemid',43497),(7362,'trends_uint','itemid',43497),(7363,'events','itemid',43498),(7364,'history','itemid',43498),(7365,'history_log','itemid',43498),(7366,'history_str','itemid',43498),(7367,'history_text','itemid',43498),(7368,'history_uint','itemid',43498),(7369,'trends','itemid',43498),(7370,'trends_uint','itemid',43498),(7371,'events','itemid',43510),(7372,'history','itemid',43510),(7373,'history_log','itemid',43510),(7374,'history_str','itemid',43510),(7375,'history_text','itemid',43510),(7376,'history_uint','itemid',43510),(7377,'trends','itemid',43510),(7378,'trends_uint','itemid',43510),(7379,'events','itemid',43509),(7380,'history','itemid',43509),(7381,'history_log','itemid',43509),(7382,'history_str','itemid',43509),(7383,'history_text','itemid',43509),(7384,'history_uint','itemid',43509),(7385,'trends','itemid',43509),(7386,'trends_uint','itemid',43509),(7387,'events','itemid',43508),(7388,'history','itemid',43508),(7389,'history_log','itemid',43508),(7390,'history_str','itemid',43508),(7391,'history_text','itemid',43508),(7392,'history_uint','itemid',43508),(7393,'trends','itemid',43508),(7394,'trends_uint','itemid',43508),(7395,'events','itemid',43507),(7396,'history','itemid',43507),(7397,'history_log','itemid',43507),(7398,'history_str','itemid',43507),(7399,'history_text','itemid',43507),(7400,'history_uint','itemid',43507),(7401,'trends','itemid',43507),(7402,'trends_uint','itemid',43507),(7403,'events','itemid',43506),(7404,'history','itemid',43506),(7405,'history_log','itemid',43506),(7406,'history_str','itemid',43506),(7407,'history_text','itemid',43506),(7408,'history_uint','itemid',43506),(7409,'trends','itemid',43506),(7410,'trends_uint','itemid',43506),(7411,'events','itemid',43505),(7412,'history','itemid',43505),(7413,'history_log','itemid',43505),(7414,'history_str','itemid',43505),(7415,'history_text','itemid',43505),(7416,'history_uint','itemid',43505),(7417,'trends','itemid',43505),(7418,'trends_uint','itemid',43505),(7419,'events','itemid',43504),(7420,'history','itemid',43504),(7421,'history_log','itemid',43504),(7422,'history_str','itemid',43504),(7423,'history_text','itemid',43504),(7424,'history_uint','itemid',43504),(7425,'trends','itemid',43504),(7426,'trends_uint','itemid',43504),(7427,'events','itemid',43503),(7428,'history','itemid',43503),(7429,'history_log','itemid',43503),(7430,'history_str','itemid',43503),(7431,'history_text','itemid',43503),(7432,'history_uint','itemid',43503),(7433,'trends','itemid',43503),(7434,'trends_uint','itemid',43503),(7435,'events','itemid',43502),(7436,'history','itemid',43502),(7437,'history_log','itemid',43502),(7438,'history_str','itemid',43502),(7439,'history_text','itemid',43502),(7440,'history_uint','itemid',43502),(7441,'trends','itemid',43502),(7442,'trends_uint','itemid',43502),(7443,'events','itemid',43525),(7444,'history','itemid',43525),(7445,'history_log','itemid',43525),(7446,'history_str','itemid',43525),(7447,'history_text','itemid',43525),(7448,'history_uint','itemid',43525),(7449,'trends','itemid',43525),(7450,'trends_uint','itemid',43525),(7451,'events','itemid',43596),(7452,'history','itemid',43596),(7453,'history_log','itemid',43596),(7454,'history_str','itemid',43596),(7455,'history_text','itemid',43596),(7456,'history_uint','itemid',43596),(7457,'trends','itemid',43596),(7458,'trends_uint','itemid',43596),(7459,'events','itemid',43640),(7460,'history','itemid',43640),(7461,'history_log','itemid',43640),(7462,'history_str','itemid',43640),(7463,'history_text','itemid',43640),(7464,'history_uint','itemid',43640),(7465,'trends','itemid',43640),(7466,'trends_uint','itemid',43640),(7467,'events','itemid',43621),(7468,'history','itemid',43621),(7469,'history_log','itemid',43621),(7470,'history_str','itemid',43621),(7471,'history_text','itemid',43621),(7472,'history_uint','itemid',43621),(7473,'trends','itemid',43621),(7474,'trends_uint','itemid',43621),(7475,'events','itemid',43622),(7476,'history','itemid',43622),(7477,'history_log','itemid',43622),(7478,'history_str','itemid',43622),(7479,'history_text','itemid',43622),(7480,'history_uint','itemid',43622),(7481,'trends','itemid',43622),(7482,'trends_uint','itemid',43622),(7483,'events','itemid',43623),(7484,'history','itemid',43623),(7485,'history_log','itemid',43623),(7486,'history_str','itemid',43623),(7487,'history_text','itemid',43623),(7488,'history_uint','itemid',43623),(7489,'trends','itemid',43623),(7490,'trends_uint','itemid',43623),(7491,'events','itemid',43624),(7492,'history','itemid',43624),(7493,'history_log','itemid',43624),(7494,'history_str','itemid',43624),(7495,'history_text','itemid',43624),(7496,'history_uint','itemid',43624),(7497,'trends','itemid',43624),(7498,'trends_uint','itemid',43624),(7499,'events','itemid',43625),(7500,'history','itemid',43625),(7501,'history_log','itemid',43625),(7502,'history_str','itemid',43625),(7503,'history_text','itemid',43625),(7504,'history_uint','itemid',43625),(7505,'trends','itemid',43625),(7506,'trends_uint','itemid',43625),(7507,'events','itemid',43626),(7508,'history','itemid',43626),(7509,'history_log','itemid',43626),(7510,'history_str','itemid',43626),(7511,'history_text','itemid',43626),(7512,'history_uint','itemid',43626),(7513,'trends','itemid',43626),(7514,'trends_uint','itemid',43626),(7515,'events','itemid',43627),(7516,'history','itemid',43627),(7517,'history_log','itemid',43627),(7518,'history_str','itemid',43627),(7519,'history_text','itemid',43627),(7520,'history_uint','itemid',43627),(7521,'trends','itemid',43627),(7522,'trends_uint','itemid',43627),(7523,'events','itemid',43628),(7524,'history','itemid',43628),(7525,'history_log','itemid',43628),(7526,'history_str','itemid',43628),(7527,'history_text','itemid',43628),(7528,'history_uint','itemid',43628),(7529,'trends','itemid',43628),(7530,'trends_uint','itemid',43628),(7531,'events','itemid',43629),(7532,'history','itemid',43629),(7533,'history_log','itemid',43629),(7534,'history_str','itemid',43629),(7535,'history_text','itemid',43629),(7536,'history_uint','itemid',43629),(7537,'trends','itemid',43629),(7538,'trends_uint','itemid',43629),(7539,'events','itemid',43620),(7540,'history','itemid',43620),(7541,'history_log','itemid',43620),(7542,'history_str','itemid',43620),(7543,'history_text','itemid',43620),(7544,'history_uint','itemid',43620),(7545,'trends','itemid',43620),(7546,'trends_uint','itemid',43620),(7547,'events','itemid',43630),(7548,'history','itemid',43630),(7549,'history_log','itemid',43630),(7550,'history_str','itemid',43630),(7551,'history_text','itemid',43630),(7552,'history_uint','itemid',43630),(7553,'trends','itemid',43630),(7554,'trends_uint','itemid',43630),(7555,'events','itemid',43632),(7556,'history','itemid',43632),(7557,'history_log','itemid',43632),(7558,'history_str','itemid',43632),(7559,'history_text','itemid',43632),(7560,'history_uint','itemid',43632),(7561,'trends','itemid',43632),(7562,'trends_uint','itemid',43632),(7563,'events','itemid',43633),(7564,'history','itemid',43633),(7565,'history_log','itemid',43633),(7566,'history_str','itemid',43633),(7567,'history_text','itemid',43633),(7568,'history_uint','itemid',43633),(7569,'trends','itemid',43633),(7570,'trends_uint','itemid',43633),(7571,'events','itemid',43634),(7572,'history','itemid',43634),(7573,'history_log','itemid',43634),(7574,'history_str','itemid',43634),(7575,'history_text','itemid',43634),(7576,'history_uint','itemid',43634),(7577,'trends','itemid',43634),(7578,'trends_uint','itemid',43634),(7579,'events','itemid',43636),(7580,'history','itemid',43636),(7581,'history_log','itemid',43636),(7582,'history_str','itemid',43636),(7583,'history_text','itemid',43636),(7584,'history_uint','itemid',43636),(7585,'trends','itemid',43636),(7586,'trends_uint','itemid',43636),(7587,'events','itemid',43637),(7588,'history','itemid',43637),(7589,'history_log','itemid',43637),(7590,'history_str','itemid',43637),(7591,'history_text','itemid',43637),(7592,'history_uint','itemid',43637),(7593,'trends','itemid',43637),(7594,'trends_uint','itemid',43637),(7595,'events','itemid',43635),(7596,'history','itemid',43635),(7597,'history_log','itemid',43635),(7598,'history_str','itemid',43635),(7599,'history_text','itemid',43635),(7600,'history_uint','itemid',43635),(7601,'trends','itemid',43635),(7602,'trends_uint','itemid',43635),(7603,'events','itemid',43595),(7604,'history','itemid',43595),(7605,'history_log','itemid',43595),(7606,'history_str','itemid',43595),(7607,'history_text','itemid',43595),(7608,'history_uint','itemid',43595),(7609,'trends','itemid',43595),(7610,'trends_uint','itemid',43595),(7611,'events','itemid',43594),(7612,'history','itemid',43594),(7613,'history_log','itemid',43594),(7614,'history_str','itemid',43594),(7615,'history_text','itemid',43594),(7616,'history_uint','itemid',43594),(7617,'trends','itemid',43594),(7618,'trends_uint','itemid',43594),(7619,'events','itemid',43593),(7620,'history','itemid',43593),(7621,'history_log','itemid',43593),(7622,'history_str','itemid',43593),(7623,'history_text','itemid',43593),(7624,'history_uint','itemid',43593),(7625,'trends','itemid',43593),(7626,'trends_uint','itemid',43593),(7627,'events','itemid',43592),(7628,'history','itemid',43592),(7629,'history_log','itemid',43592),(7630,'history_str','itemid',43592),(7631,'history_text','itemid',43592),(7632,'history_uint','itemid',43592),(7633,'trends','itemid',43592),(7634,'trends_uint','itemid',43592),(7635,'events','itemid',43638),(7636,'history','itemid',43638),(7637,'history_log','itemid',43638),(7638,'history_str','itemid',43638),(7639,'history_text','itemid',43638),(7640,'history_uint','itemid',43638),(7641,'trends','itemid',43638),(7642,'trends_uint','itemid',43638),(7643,'events','itemid',43639),(7644,'history','itemid',43639),(7645,'history_log','itemid',43639),(7646,'history_str','itemid',43639),(7647,'history_text','itemid',43639),(7648,'history_uint','itemid',43639),(7649,'trends','itemid',43639),(7650,'trends_uint','itemid',43639),(7651,'events','itemid',43618),(7652,'history','itemid',43618),(7653,'history_log','itemid',43618),(7654,'history_str','itemid',43618),(7655,'history_text','itemid',43618),(7656,'history_uint','itemid',43618),(7657,'trends','itemid',43618),(7658,'trends_uint','itemid',43618),(7659,'events','itemid',43631),(7660,'history','itemid',43631),(7661,'history_log','itemid',43631),(7662,'history_str','itemid',43631),(7663,'history_text','itemid',43631),(7664,'history_uint','itemid',43631),(7665,'trends','itemid',43631),(7666,'trends_uint','itemid',43631),(7667,'events','itemid',43619),(7668,'history','itemid',43619),(7669,'history_log','itemid',43619),(7670,'history_str','itemid',43619),(7671,'history_text','itemid',43619),(7672,'history_uint','itemid',43619),(7673,'trends','itemid',43619),(7674,'trends_uint','itemid',43619),(7675,'events','itemid',43605),(7676,'history','itemid',43605),(7677,'history_log','itemid',43605),(7678,'history_str','itemid',43605),(7679,'history_text','itemid',43605),(7680,'history_uint','itemid',43605),(7681,'trends','itemid',43605),(7682,'trends_uint','itemid',43605),(7683,'events','itemid',43617),(7684,'history','itemid',43617),(7685,'history_log','itemid',43617),(7686,'history_str','itemid',43617),(7687,'history_text','itemid',43617),(7688,'history_uint','itemid',43617),(7689,'trends','itemid',43617),(7690,'trends_uint','itemid',43617),(7691,'events','itemid',43598),(7692,'history','itemid',43598),(7693,'history_log','itemid',43598),(7694,'history_str','itemid',43598),(7695,'history_text','itemid',43598),(7696,'history_uint','itemid',43598),(7697,'trends','itemid',43598),(7698,'trends_uint','itemid',43598),(7699,'events','itemid',43599),(7700,'history','itemid',43599),(7701,'history_log','itemid',43599),(7702,'history_str','itemid',43599),(7703,'history_text','itemid',43599),(7704,'history_uint','itemid',43599),(7705,'trends','itemid',43599),(7706,'trends_uint','itemid',43599),(7707,'events','itemid',43600),(7708,'history','itemid',43600),(7709,'history_log','itemid',43600),(7710,'history_str','itemid',43600),(7711,'history_text','itemid',43600),(7712,'history_uint','itemid',43600),(7713,'trends','itemid',43600),(7714,'trends_uint','itemid',43600),(7715,'events','itemid',43601),(7716,'history','itemid',43601),(7717,'history_log','itemid',43601),(7718,'history_str','itemid',43601),(7719,'history_text','itemid',43601),(7720,'history_uint','itemid',43601),(7721,'trends','itemid',43601),(7722,'trends_uint','itemid',43601),(7723,'events','itemid',43602),(7724,'history','itemid',43602),(7725,'history_log','itemid',43602),(7726,'history_str','itemid',43602),(7727,'history_text','itemid',43602),(7728,'history_uint','itemid',43602),(7729,'trends','itemid',43602),(7730,'trends_uint','itemid',43602),(7731,'events','itemid',43603),(7732,'history','itemid',43603),(7733,'history_log','itemid',43603),(7734,'history_str','itemid',43603),(7735,'history_text','itemid',43603),(7736,'history_uint','itemid',43603),(7737,'trends','itemid',43603),(7738,'trends_uint','itemid',43603),(7739,'events','itemid',43597),(7740,'history','itemid',43597),(7741,'history_log','itemid',43597),(7742,'history_str','itemid',43597),(7743,'history_text','itemid',43597),(7744,'history_uint','itemid',43597),(7745,'trends','itemid',43597),(7746,'trends_uint','itemid',43597),(7747,'events','itemid',43604),(7748,'history','itemid',43604),(7749,'history_log','itemid',43604),(7750,'history_str','itemid',43604),(7751,'history_text','itemid',43604),(7752,'history_uint','itemid',43604),(7753,'trends','itemid',43604),(7754,'trends_uint','itemid',43604),(7755,'events','itemid',43606),(7756,'history','itemid',43606),(7757,'history_log','itemid',43606),(7758,'history_str','itemid',43606),(7759,'history_text','itemid',43606),(7760,'history_uint','itemid',43606),(7761,'trends','itemid',43606),(7762,'trends_uint','itemid',43606),(7763,'events','itemid',43607),(7764,'history','itemid',43607),(7765,'history_log','itemid',43607),(7766,'history_str','itemid',43607),(7767,'history_text','itemid',43607),(7768,'history_uint','itemid',43607),(7769,'trends','itemid',43607),(7770,'trends_uint','itemid',43607),(7771,'events','itemid',43608),(7772,'history','itemid',43608),(7773,'history_log','itemid',43608),(7774,'history_str','itemid',43608),(7775,'history_text','itemid',43608),(7776,'history_uint','itemid',43608),(7777,'trends','itemid',43608),(7778,'trends_uint','itemid',43608),(7779,'events','itemid',43609),(7780,'history','itemid',43609),(7781,'history_log','itemid',43609),(7782,'history_str','itemid',43609),(7783,'history_text','itemid',43609),(7784,'history_uint','itemid',43609),(7785,'trends','itemid',43609),(7786,'trends_uint','itemid',43609),(7787,'events','itemid',43610),(7788,'history','itemid',43610),(7789,'history_log','itemid',43610),(7790,'history_str','itemid',43610),(7791,'history_text','itemid',43610),(7792,'history_uint','itemid',43610),(7793,'trends','itemid',43610),(7794,'trends_uint','itemid',43610),(7795,'events','itemid',43611),(7796,'history','itemid',43611),(7797,'history_log','itemid',43611),(7798,'history_str','itemid',43611),(7799,'history_text','itemid',43611),(7800,'history_uint','itemid',43611),(7801,'trends','itemid',43611),(7802,'trends_uint','itemid',43611),(7803,'events','itemid',43612),(7804,'history','itemid',43612),(7805,'history_log','itemid',43612),(7806,'history_str','itemid',43612),(7807,'history_text','itemid',43612),(7808,'history_uint','itemid',43612),(7809,'trends','itemid',43612),(7810,'trends_uint','itemid',43612),(7811,'events','itemid',43613),(7812,'history','itemid',43613),(7813,'history_log','itemid',43613),(7814,'history_str','itemid',43613),(7815,'history_text','itemid',43613),(7816,'history_uint','itemid',43613),(7817,'trends','itemid',43613),(7818,'trends_uint','itemid',43613),(7819,'events','itemid',43614),(7820,'history','itemid',43614),(7821,'history_log','itemid',43614),(7822,'history_str','itemid',43614),(7823,'history_text','itemid',43614),(7824,'history_uint','itemid',43614),(7825,'trends','itemid',43614),(7826,'trends_uint','itemid',43614),(7827,'events','itemid',43615),(7828,'history','itemid',43615),(7829,'history_log','itemid',43615),(7830,'history_str','itemid',43615),(7831,'history_text','itemid',43615),(7832,'history_uint','itemid',43615),(7833,'trends','itemid',43615),(7834,'trends_uint','itemid',43615),(7835,'events','itemid',43616),(7836,'history','itemid',43616),(7837,'history_log','itemid',43616),(7838,'history_str','itemid',43616),(7839,'history_text','itemid',43616),(7840,'history_uint','itemid',43616),(7841,'trends','itemid',43616),(7842,'trends_uint','itemid',43616),(7843,'events','itemid',43641),(7844,'history','itemid',43641),(7845,'history_log','itemid',43641),(7846,'history_str','itemid',43641),(7847,'history_text','itemid',43641),(7848,'history_uint','itemid',43641),(7849,'trends','itemid',43641),(7850,'trends_uint','itemid',43641),(7851,'events','itemid',43686),(7852,'history','itemid',43686),(7853,'history_log','itemid',43686),(7854,'history_str','itemid',43686),(7855,'history_text','itemid',43686),(7856,'history_uint','itemid',43686),(7857,'trends','itemid',43686),(7858,'trends_uint','itemid',43686),(7859,'events','itemid',43700),(7860,'history','itemid',43700),(7861,'history_log','itemid',43700),(7862,'history_str','itemid',43700),(7863,'history_text','itemid',43700),(7864,'history_uint','itemid',43700),(7865,'trends','itemid',43700),(7866,'trends_uint','itemid',43700),(7867,'events','itemid',43709),(7868,'history','itemid',43709),(7869,'history_log','itemid',43709),(7870,'history_str','itemid',43709),(7871,'history_text','itemid',43709),(7872,'history_uint','itemid',43709),(7873,'trends','itemid',43709),(7874,'trends_uint','itemid',43709),(7875,'events','itemid',43708),(7876,'history','itemid',43708),(7877,'history_log','itemid',43708),(7878,'history_str','itemid',43708),(7879,'history_text','itemid',43708),(7880,'history_uint','itemid',43708),(7881,'trends','itemid',43708),(7882,'trends_uint','itemid',43708),(7883,'events','itemid',43707),(7884,'history','itemid',43707),(7885,'history_log','itemid',43707),(7886,'history_str','itemid',43707),(7887,'history_text','itemid',43707),(7888,'history_uint','itemid',43707),(7889,'trends','itemid',43707),(7890,'trends_uint','itemid',43707),(7891,'events','itemid',43706),(7892,'history','itemid',43706),(7893,'history_log','itemid',43706),(7894,'history_str','itemid',43706),(7895,'history_text','itemid',43706),(7896,'history_uint','itemid',43706),(7897,'trends','itemid',43706),(7898,'trends_uint','itemid',43706),(7899,'events','itemid',43705),(7900,'history','itemid',43705),(7901,'history_log','itemid',43705),(7902,'history_str','itemid',43705),(7903,'history_text','itemid',43705),(7904,'history_uint','itemid',43705),(7905,'trends','itemid',43705),(7906,'trends_uint','itemid',43705),(7907,'events','itemid',43704),(7908,'history','itemid',43704),(7909,'history_log','itemid',43704),(7910,'history_str','itemid',43704),(7911,'history_text','itemid',43704),(7912,'history_uint','itemid',43704),(7913,'trends','itemid',43704),(7914,'trends_uint','itemid',43704),(7915,'events','itemid',43703),(7916,'history','itemid',43703),(7917,'history_log','itemid',43703),(7918,'history_str','itemid',43703),(7919,'history_text','itemid',43703),(7920,'history_uint','itemid',43703),(7921,'trends','itemid',43703),(7922,'trends_uint','itemid',43703),(7923,'events','itemid',43702),(7924,'history','itemid',43702),(7925,'history_log','itemid',43702),(7926,'history_str','itemid',43702),(7927,'history_text','itemid',43702),(7928,'history_uint','itemid',43702),(7929,'trends','itemid',43702),(7930,'trends_uint','itemid',43702),(7931,'events','itemid',43701),(7932,'history','itemid',43701),(7933,'history_log','itemid',43701),(7934,'history_str','itemid',43701),(7935,'history_text','itemid',43701),(7936,'history_uint','itemid',43701),(7937,'trends','itemid',43701),(7938,'trends_uint','itemid',43701),(7939,'events','itemid',43685),(7940,'history','itemid',43685),(7941,'history_log','itemid',43685),(7942,'history_str','itemid',43685),(7943,'history_text','itemid',43685),(7944,'history_uint','itemid',43685),(7945,'trends','itemid',43685),(7946,'trends_uint','itemid',43685),(7947,'events','itemid',43684),(7948,'history','itemid',43684),(7949,'history_log','itemid',43684),(7950,'history_str','itemid',43684),(7951,'history_text','itemid',43684),(7952,'history_uint','itemid',43684),(7953,'trends','itemid',43684),(7954,'trends_uint','itemid',43684),(7955,'events','itemid',43698),(7956,'history','itemid',43698),(7957,'history_log','itemid',43698),(7958,'history_str','itemid',43698),(7959,'history_text','itemid',43698),(7960,'history_uint','itemid',43698),(7961,'trends','itemid',43698),(7962,'trends_uint','itemid',43698),(7963,'events','itemid',43699),(7964,'history','itemid',43699),(7965,'history_log','itemid',43699),(7966,'history_str','itemid',43699),(7967,'history_text','itemid',43699),(7968,'history_uint','itemid',43699),(7969,'trends','itemid',43699),(7970,'trends_uint','itemid',43699),(7971,'events','itemid',43687),(7972,'history','itemid',43687),(7973,'history_log','itemid',43687),(7974,'history_str','itemid',43687),(7975,'history_text','itemid',43687),(7976,'history_uint','itemid',43687),(7977,'trends','itemid',43687),(7978,'trends_uint','itemid',43687),(7979,'events','itemid',43697),(7980,'history','itemid',43697),(7981,'history_log','itemid',43697),(7982,'history_str','itemid',43697),(7983,'history_text','itemid',43697),(7984,'history_uint','itemid',43697),(7985,'trends','itemid',43697),(7986,'trends_uint','itemid',43697),(7987,'events','itemid',43696),(7988,'history','itemid',43696),(7989,'history_log','itemid',43696),(7990,'history_str','itemid',43696),(7991,'history_text','itemid',43696),(7992,'history_uint','itemid',43696),(7993,'trends','itemid',43696),(7994,'trends_uint','itemid',43696),(7995,'events','itemid',43695),(7996,'history','itemid',43695),(7997,'history_log','itemid',43695),(7998,'history_str','itemid',43695),(7999,'history_text','itemid',43695),(8000,'history_uint','itemid',43695),(8001,'trends','itemid',43695),(8002,'trends_uint','itemid',43695),(8003,'events','itemid',43694),(8004,'history','itemid',43694),(8005,'history_log','itemid',43694),(8006,'history_str','itemid',43694),(8007,'history_text','itemid',43694),(8008,'history_uint','itemid',43694),(8009,'trends','itemid',43694),(8010,'trends_uint','itemid',43694),(8011,'events','itemid',43693),(8012,'history','itemid',43693),(8013,'history_log','itemid',43693),(8014,'history_str','itemid',43693),(8015,'history_text','itemid',43693),(8016,'history_uint','itemid',43693),(8017,'trends','itemid',43693),(8018,'trends_uint','itemid',43693),(8019,'events','itemid',43692),(8020,'history','itemid',43692),(8021,'history_log','itemid',43692),(8022,'history_str','itemid',43692),(8023,'history_text','itemid',43692),(8024,'history_uint','itemid',43692),(8025,'trends','itemid',43692),(8026,'trends_uint','itemid',43692),(8027,'events','itemid',43691),(8028,'history','itemid',43691),(8029,'history_log','itemid',43691),(8030,'history_str','itemid',43691),(8031,'history_text','itemid',43691),(8032,'history_uint','itemid',43691),(8033,'trends','itemid',43691),(8034,'trends_uint','itemid',43691),(8035,'events','itemid',43690),(8036,'history','itemid',43690),(8037,'history_log','itemid',43690),(8038,'history_str','itemid',43690),(8039,'history_text','itemid',43690),(8040,'history_uint','itemid',43690),(8041,'trends','itemid',43690),(8042,'trends_uint','itemid',43690),(8043,'events','itemid',43689),(8044,'history','itemid',43689),(8045,'history_log','itemid',43689),(8046,'history_str','itemid',43689),(8047,'history_text','itemid',43689),(8048,'history_uint','itemid',43689),(8049,'trends','itemid',43689),(8050,'trends_uint','itemid',43689),(8051,'events','itemid',43688),(8052,'history','itemid',43688),(8053,'history_log','itemid',43688),(8054,'history_str','itemid',43688),(8055,'history_text','itemid',43688),(8056,'history_uint','itemid',43688),(8057,'trends','itemid',43688),(8058,'trends_uint','itemid',43688),(8059,'events','itemid',43710),(8060,'history','itemid',43710),(8061,'history_log','itemid',43710),(8062,'history_str','itemid',43710),(8063,'history_text','itemid',43710),(8064,'history_uint','itemid',43710),(8065,'trends','itemid',43710),(8066,'trends_uint','itemid',43710),(8067,'events','itemid',43716),(8068,'history','itemid',43716),(8069,'history_log','itemid',43716),(8070,'history_str','itemid',43716),(8071,'history_text','itemid',43716),(8072,'history_uint','itemid',43716),(8073,'trends','itemid',43716),(8074,'trends_uint','itemid',43716),(8075,'events','itemid',43714),(8076,'history','itemid',43714),(8077,'history_log','itemid',43714),(8078,'history_str','itemid',43714),(8079,'history_text','itemid',43714),(8080,'history_uint','itemid',43714),(8081,'trends','itemid',43714),(8082,'trends_uint','itemid',43714),(8083,'events','itemid',43717),(8084,'history','itemid',43717),(8085,'history_log','itemid',43717),(8086,'history_str','itemid',43717),(8087,'history_text','itemid',43717),(8088,'history_uint','itemid',43717),(8089,'trends','itemid',43717),(8090,'trends_uint','itemid',43717),(8091,'events','itemid',43743),(8092,'history','itemid',43743),(8093,'history_log','itemid',43743),(8094,'history_str','itemid',43743),(8095,'history_text','itemid',43743),(8096,'history_uint','itemid',43743),(8097,'trends','itemid',43743),(8098,'trends_uint','itemid',43743),(8099,'events','itemid',43745),(8100,'history','itemid',43745),(8101,'history_log','itemid',43745),(8102,'history_str','itemid',43745),(8103,'history_text','itemid',43745),(8104,'history_uint','itemid',43745),(8105,'trends','itemid',43745),(8106,'trends_uint','itemid',43745),(8107,'events','itemid',43746),(8108,'history','itemid',43746),(8109,'history_log','itemid',43746),(8110,'history_str','itemid',43746),(8111,'history_text','itemid',43746),(8112,'history_uint','itemid',43746),(8113,'trends','itemid',43746),(8114,'trends_uint','itemid',43746),(8115,'events','itemid',43747),(8116,'history','itemid',43747),(8117,'history_log','itemid',43747),(8118,'history_str','itemid',43747),(8119,'history_text','itemid',43747),(8120,'history_uint','itemid',43747),(8121,'trends','itemid',43747),(8122,'trends_uint','itemid',43747),(8123,'events','itemid',43748),(8124,'history','itemid',43748),(8125,'history_log','itemid',43748),(8126,'history_str','itemid',43748),(8127,'history_text','itemid',43748),(8128,'history_uint','itemid',43748),(8129,'trends','itemid',43748),(8130,'trends_uint','itemid',43748),(8131,'events','itemid',43749),(8132,'history','itemid',43749),(8133,'history_log','itemid',43749),(8134,'history_str','itemid',43749),(8135,'history_text','itemid',43749),(8136,'history_uint','itemid',43749),(8137,'trends','itemid',43749),(8138,'trends_uint','itemid',43749),(8139,'events','itemid',43750),(8140,'history','itemid',43750),(8141,'history_log','itemid',43750),(8142,'history_str','itemid',43750),(8143,'history_text','itemid',43750),(8144,'history_uint','itemid',43750),(8145,'trends','itemid',43750),(8146,'trends_uint','itemid',43750),(8147,'events','itemid',43751),(8148,'history','itemid',43751),(8149,'history_log','itemid',43751),(8150,'history_str','itemid',43751),(8151,'history_text','itemid',43751),(8152,'history_uint','itemid',43751),(8153,'trends','itemid',43751),(8154,'trends_uint','itemid',43751),(8155,'events','itemid',43752),(8156,'history','itemid',43752),(8157,'history_log','itemid',43752),(8158,'history_str','itemid',43752),(8159,'history_text','itemid',43752),(8160,'history_uint','itemid',43752),(8161,'trends','itemid',43752),(8162,'trends_uint','itemid',43752),(8163,'events','itemid',43753),(8164,'history','itemid',43753),(8165,'history_log','itemid',43753),(8166,'history_str','itemid',43753),(8167,'history_text','itemid',43753),(8168,'history_uint','itemid',43753),(8169,'trends','itemid',43753),(8170,'trends_uint','itemid',43753),(8171,'events','itemid',43754),(8172,'history','itemid',43754),(8173,'history_log','itemid',43754),(8174,'history_str','itemid',43754),(8175,'history_text','itemid',43754),(8176,'history_uint','itemid',43754),(8177,'trends','itemid',43754),(8178,'trends_uint','itemid',43754),(8179,'events','itemid',43744),(8180,'history','itemid',43744),(8181,'history_log','itemid',43744),(8182,'history_str','itemid',43744),(8183,'history_text','itemid',43744),(8184,'history_uint','itemid',43744),(8185,'trends','itemid',43744),(8186,'trends_uint','itemid',43744),(8187,'events','itemid',43755),(8188,'history','itemid',43755),(8189,'history_log','itemid',43755),(8190,'history_str','itemid',43755),(8191,'history_text','itemid',43755),(8192,'history_uint','itemid',43755),(8193,'trends','itemid',43755),(8194,'trends_uint','itemid',43755),(8195,'events','itemid',43757),(8196,'history','itemid',43757),(8197,'history_log','itemid',43757),(8198,'history_str','itemid',43757),(8199,'history_text','itemid',43757),(8200,'history_uint','itemid',43757),(8201,'trends','itemid',43757),(8202,'trends_uint','itemid',43757),(8203,'events','itemid',43758),(8204,'history','itemid',43758),(8205,'history_log','itemid',43758),(8206,'history_str','itemid',43758),(8207,'history_text','itemid',43758),(8208,'history_uint','itemid',43758),(8209,'trends','itemid',43758),(8210,'trends_uint','itemid',43758),(8211,'events','itemid',43759),(8212,'history','itemid',43759),(8213,'history_log','itemid',43759),(8214,'history_str','itemid',43759),(8215,'history_text','itemid',43759),(8216,'history_uint','itemid',43759),(8217,'trends','itemid',43759),(8218,'trends_uint','itemid',43759),(8219,'events','itemid',43760),(8220,'history','itemid',43760),(8221,'history_log','itemid',43760),(8222,'history_str','itemid',43760),(8223,'history_text','itemid',43760),(8224,'history_uint','itemid',43760),(8225,'trends','itemid',43760),(8226,'trends_uint','itemid',43760),(8227,'events','itemid',43761),(8228,'history','itemid',43761),(8229,'history_log','itemid',43761),(8230,'history_str','itemid',43761),(8231,'history_text','itemid',43761),(8232,'history_uint','itemid',43761),(8233,'trends','itemid',43761),(8234,'trends_uint','itemid',43761),(8235,'events','itemid',43762),(8236,'history','itemid',43762),(8237,'history_log','itemid',43762),(8238,'history_str','itemid',43762),(8239,'history_text','itemid',43762),(8240,'history_uint','itemid',43762),(8241,'trends','itemid',43762),(8242,'trends_uint','itemid',43762),(8243,'events','itemid',43763),(8244,'history','itemid',43763),(8245,'history_log','itemid',43763),(8246,'history_str','itemid',43763),(8247,'history_text','itemid',43763),(8248,'history_uint','itemid',43763),(8249,'trends','itemid',43763),(8250,'trends_uint','itemid',43763),(8251,'events','itemid',43715),(8252,'history','itemid',43715),(8253,'history_log','itemid',43715),(8254,'history_str','itemid',43715),(8255,'history_text','itemid',43715),(8256,'history_uint','itemid',43715),(8257,'trends','itemid',43715),(8258,'trends_uint','itemid',43715),(8259,'events','itemid',43764),(8260,'history','itemid',43764),(8261,'history_log','itemid',43764),(8262,'history_str','itemid',43764),(8263,'history_text','itemid',43764),(8264,'history_uint','itemid',43764),(8265,'trends','itemid',43764),(8266,'trends_uint','itemid',43764),(8267,'events','itemid',43765),(8268,'history','itemid',43765),(8269,'history_log','itemid',43765),(8270,'history_str','itemid',43765),(8271,'history_text','itemid',43765),(8272,'history_uint','itemid',43765),(8273,'trends','itemid',43765),(8274,'trends_uint','itemid',43765),(8275,'events','itemid',43766),(8276,'history','itemid',43766),(8277,'history_log','itemid',43766),(8278,'history_str','itemid',43766),(8279,'history_text','itemid',43766),(8280,'history_uint','itemid',43766),(8281,'trends','itemid',43766),(8282,'trends_uint','itemid',43766),(8283,'events','itemid',43756),(8284,'history','itemid',43756),(8285,'history_log','itemid',43756),(8286,'history_str','itemid',43756),(8287,'history_text','itemid',43756),(8288,'history_uint','itemid',43756),(8289,'trends','itemid',43756),(8290,'trends_uint','itemid',43756),(8291,'events','itemid',43742),(8292,'history','itemid',43742),(8293,'history_log','itemid',43742),(8294,'history_str','itemid',43742),(8295,'history_text','itemid',43742),(8296,'history_uint','itemid',43742),(8297,'trends','itemid',43742),(8298,'trends_uint','itemid',43742),(8299,'events','itemid',43729),(8300,'history','itemid',43729),(8301,'history_log','itemid',43729),(8302,'history_str','itemid',43729),(8303,'history_text','itemid',43729),(8304,'history_uint','itemid',43729),(8305,'trends','itemid',43729),(8306,'trends_uint','itemid',43729),(8307,'events','itemid',43741),(8308,'history','itemid',43741),(8309,'history_log','itemid',43741),(8310,'history_str','itemid',43741),(8311,'history_text','itemid',43741),(8312,'history_uint','itemid',43741),(8313,'trends','itemid',43741),(8314,'trends_uint','itemid',43741),(8315,'events','itemid',43719),(8316,'history','itemid',43719),(8317,'history_log','itemid',43719),(8318,'history_str','itemid',43719),(8319,'history_text','itemid',43719),(8320,'history_uint','itemid',43719),(8321,'trends','itemid',43719),(8322,'trends_uint','itemid',43719),(8323,'events','itemid',43720),(8324,'history','itemid',43720),(8325,'history_log','itemid',43720),(8326,'history_str','itemid',43720),(8327,'history_text','itemid',43720),(8328,'history_uint','itemid',43720),(8329,'trends','itemid',43720),(8330,'trends_uint','itemid',43720),(8331,'events','itemid',43721),(8332,'history','itemid',43721),(8333,'history_log','itemid',43721),(8334,'history_str','itemid',43721),(8335,'history_text','itemid',43721),(8336,'history_uint','itemid',43721),(8337,'trends','itemid',43721),(8338,'trends_uint','itemid',43721),(8339,'events','itemid',43722),(8340,'history','itemid',43722),(8341,'history_log','itemid',43722),(8342,'history_str','itemid',43722),(8343,'history_text','itemid',43722),(8344,'history_uint','itemid',43722),(8345,'trends','itemid',43722),(8346,'trends_uint','itemid',43722),(8347,'events','itemid',43723),(8348,'history','itemid',43723),(8349,'history_log','itemid',43723),(8350,'history_str','itemid',43723),(8351,'history_text','itemid',43723),(8352,'history_uint','itemid',43723),(8353,'trends','itemid',43723),(8354,'trends_uint','itemid',43723),(8355,'events','itemid',43724),(8356,'history','itemid',43724),(8357,'history_log','itemid',43724),(8358,'history_str','itemid',43724),(8359,'history_text','itemid',43724),(8360,'history_uint','itemid',43724),(8361,'trends','itemid',43724),(8362,'trends_uint','itemid',43724),(8363,'events','itemid',43725),(8364,'history','itemid',43725),(8365,'history_log','itemid',43725),(8366,'history_str','itemid',43725),(8367,'history_text','itemid',43725),(8368,'history_uint','itemid',43725),(8369,'trends','itemid',43725),(8370,'trends_uint','itemid',43725),(8371,'events','itemid',43726),(8372,'history','itemid',43726),(8373,'history_log','itemid',43726),(8374,'history_str','itemid',43726),(8375,'history_text','itemid',43726),(8376,'history_uint','itemid',43726),(8377,'trends','itemid',43726),(8378,'trends_uint','itemid',43726),(8379,'events','itemid',43727),(8380,'history','itemid',43727),(8381,'history_log','itemid',43727),(8382,'history_str','itemid',43727),(8383,'history_text','itemid',43727),(8384,'history_uint','itemid',43727),(8385,'trends','itemid',43727),(8386,'trends_uint','itemid',43727),(8387,'events','itemid',43718),(8388,'history','itemid',43718),(8389,'history_log','itemid',43718),(8390,'history_str','itemid',43718),(8391,'history_text','itemid',43718),(8392,'history_uint','itemid',43718),(8393,'trends','itemid',43718),(8394,'trends_uint','itemid',43718),(8395,'events','itemid',43728),(8396,'history','itemid',43728),(8397,'history_log','itemid',43728),(8398,'history_str','itemid',43728),(8399,'history_text','itemid',43728),(8400,'history_uint','itemid',43728),(8401,'trends','itemid',43728),(8402,'trends_uint','itemid',43728),(8403,'events','itemid',43730),(8404,'history','itemid',43730),(8405,'history_log','itemid',43730),(8406,'history_str','itemid',43730),(8407,'history_text','itemid',43730),(8408,'history_uint','itemid',43730),(8409,'trends','itemid',43730),(8410,'trends_uint','itemid',43730),(8411,'events','itemid',43731),(8412,'history','itemid',43731),(8413,'history_log','itemid',43731),(8414,'history_str','itemid',43731),(8415,'history_text','itemid',43731),(8416,'history_uint','itemid',43731),(8417,'trends','itemid',43731),(8418,'trends_uint','itemid',43731),(8419,'events','itemid',43732),(8420,'history','itemid',43732),(8421,'history_log','itemid',43732),(8422,'history_str','itemid',43732),(8423,'history_text','itemid',43732),(8424,'history_uint','itemid',43732),(8425,'trends','itemid',43732),(8426,'trends_uint','itemid',43732),(8427,'events','itemid',43733),(8428,'history','itemid',43733),(8429,'history_log','itemid',43733),(8430,'history_str','itemid',43733),(8431,'history_text','itemid',43733),(8432,'history_uint','itemid',43733),(8433,'trends','itemid',43733),(8434,'trends_uint','itemid',43733),(8435,'events','itemid',43734),(8436,'history','itemid',43734),(8437,'history_log','itemid',43734),(8438,'history_str','itemid',43734),(8439,'history_text','itemid',43734),(8440,'history_uint','itemid',43734),(8441,'trends','itemid',43734),(8442,'trends_uint','itemid',43734),(8443,'events','itemid',43735),(8444,'history','itemid',43735),(8445,'history_log','itemid',43735),(8446,'history_str','itemid',43735),(8447,'history_text','itemid',43735),(8448,'history_uint','itemid',43735),(8449,'trends','itemid',43735),(8450,'trends_uint','itemid',43735),(8451,'events','itemid',43736),(8452,'history','itemid',43736),(8453,'history_log','itemid',43736),(8454,'history_str','itemid',43736),(8455,'history_text','itemid',43736),(8456,'history_uint','itemid',43736),(8457,'trends','itemid',43736),(8458,'trends_uint','itemid',43736),(8459,'events','itemid',43737),(8460,'history','itemid',43737),(8461,'history_log','itemid',43737),(8462,'history_str','itemid',43737),(8463,'history_text','itemid',43737),(8464,'history_uint','itemid',43737),(8465,'trends','itemid',43737),(8466,'trends_uint','itemid',43737),(8467,'events','itemid',43738),(8468,'history','itemid',43738),(8469,'history_log','itemid',43738),(8470,'history_str','itemid',43738),(8471,'history_text','itemid',43738),(8472,'history_uint','itemid',43738),(8473,'trends','itemid',43738),(8474,'trends_uint','itemid',43738),(8475,'events','itemid',43739),(8476,'history','itemid',43739),(8477,'history_log','itemid',43739),(8478,'history_str','itemid',43739),(8479,'history_text','itemid',43739),(8480,'history_uint','itemid',43739),(8481,'trends','itemid',43739),(8482,'trends_uint','itemid',43739),(8483,'events','itemid',43740),(8484,'history','itemid',43740),(8485,'history_log','itemid',43740),(8486,'history_str','itemid',43740),(8487,'history_text','itemid',43740),(8488,'history_uint','itemid',43740),(8489,'trends','itemid',43740),(8490,'trends_uint','itemid',43740),(8491,'events','itemid',43767),(8492,'history','itemid',43767),(8493,'history_log','itemid',43767),(8494,'history_str','itemid',43767),(8495,'history_text','itemid',43767),(8496,'history_uint','itemid',43767),(8497,'trends','itemid',43767),(8498,'trends_uint','itemid',43767),(8499,'events','itemid',44163),(8500,'history','itemid',44163),(8501,'history_log','itemid',44163),(8502,'history_str','itemid',44163),(8503,'history_text','itemid',44163),(8504,'history_uint','itemid',44163),(8505,'trends','itemid',44163),(8506,'trends_uint','itemid',44163),(8507,'events','itemid',44173),(8508,'history','itemid',44173),(8509,'history_log','itemid',44173),(8510,'history_str','itemid',44173),(8511,'history_text','itemid',44173),(8512,'history_uint','itemid',44173),(8513,'trends','itemid',44173),(8514,'trends_uint','itemid',44173),(8515,'events','itemid',44180),(8516,'history','itemid',44180),(8517,'history_log','itemid',44180),(8518,'history_str','itemid',44180),(8519,'history_text','itemid',44180),(8520,'history_uint','itemid',44180),(8521,'trends','itemid',44180),(8522,'trends_uint','itemid',44180),(8523,'events','itemid',44179),(8524,'history','itemid',44179),(8525,'history_log','itemid',44179),(8526,'history_str','itemid',44179),(8527,'history_text','itemid',44179),(8528,'history_uint','itemid',44179),(8529,'trends','itemid',44179),(8530,'trends_uint','itemid',44179),(8531,'events','itemid',44178),(8532,'history','itemid',44178),(8533,'history_log','itemid',44178),(8534,'history_str','itemid',44178),(8535,'history_text','itemid',44178),(8536,'history_uint','itemid',44178),(8537,'trends','itemid',44178),(8538,'trends_uint','itemid',44178),(8539,'events','itemid',44177),(8540,'history','itemid',44177),(8541,'history_log','itemid',44177),(8542,'history_str','itemid',44177),(8543,'history_text','itemid',44177),(8544,'history_uint','itemid',44177),(8545,'trends','itemid',44177),(8546,'trends_uint','itemid',44177),(8547,'events','itemid',44176),(8548,'history','itemid',44176),(8549,'history_log','itemid',44176),(8550,'history_str','itemid',44176),(8551,'history_text','itemid',44176),(8552,'history_uint','itemid',44176),(8553,'trends','itemid',44176),(8554,'trends_uint','itemid',44176),(8555,'events','itemid',44175),(8556,'history','itemid',44175),(8557,'history_log','itemid',44175),(8558,'history_str','itemid',44175),(8559,'history_text','itemid',44175),(8560,'history_uint','itemid',44175),(8561,'trends','itemid',44175),(8562,'trends_uint','itemid',44175),(8563,'events','itemid',44174),(8564,'history','itemid',44174),(8565,'history_log','itemid',44174),(8566,'history_str','itemid',44174),(8567,'history_text','itemid',44174),(8568,'history_uint','itemid',44174),(8569,'trends','itemid',44174),(8570,'trends_uint','itemid',44174),(8571,'events','itemid',44161),(8572,'history','itemid',44161),(8573,'history_log','itemid',44161),(8574,'history_str','itemid',44161),(8575,'history_text','itemid',44161),(8576,'history_uint','itemid',44161),(8577,'trends','itemid',44161),(8578,'trends_uint','itemid',44161),(8579,'events','itemid',44172),(8580,'history','itemid',44172),(8581,'history_log','itemid',44172),(8582,'history_str','itemid',44172),(8583,'history_text','itemid',44172),(8584,'history_uint','itemid',44172),(8585,'trends','itemid',44172),(8586,'trends_uint','itemid',44172),(8587,'events','itemid',44164),(8588,'history','itemid',44164),(8589,'history_log','itemid',44164),(8590,'history_str','itemid',44164),(8591,'history_text','itemid',44164),(8592,'history_uint','itemid',44164),(8593,'trends','itemid',44164),(8594,'trends_uint','itemid',44164),(8595,'events','itemid',44171),(8596,'history','itemid',44171),(8597,'history_log','itemid',44171),(8598,'history_str','itemid',44171),(8599,'history_text','itemid',44171),(8600,'history_uint','itemid',44171),(8601,'trends','itemid',44171),(8602,'trends_uint','itemid',44171),(8603,'events','itemid',44170),(8604,'history','itemid',44170),(8605,'history_log','itemid',44170),(8606,'history_str','itemid',44170),(8607,'history_text','itemid',44170),(8608,'history_uint','itemid',44170),(8609,'trends','itemid',44170),(8610,'trends_uint','itemid',44170),(8611,'events','itemid',44169),(8612,'history','itemid',44169),(8613,'history_log','itemid',44169),(8614,'history_str','itemid',44169),(8615,'history_text','itemid',44169),(8616,'history_uint','itemid',44169),(8617,'trends','itemid',44169),(8618,'trends_uint','itemid',44169),(8619,'events','itemid',44168),(8620,'history','itemid',44168),(8621,'history_log','itemid',44168),(8622,'history_str','itemid',44168),(8623,'history_text','itemid',44168),(8624,'history_uint','itemid',44168),(8625,'trends','itemid',44168),(8626,'trends_uint','itemid',44168),(8627,'events','itemid',44167),(8628,'history','itemid',44167),(8629,'history_log','itemid',44167),(8630,'history_str','itemid',44167),(8631,'history_text','itemid',44167),(8632,'history_uint','itemid',44167),(8633,'trends','itemid',44167),(8634,'trends_uint','itemid',44167),(8635,'events','itemid',44166),(8636,'history','itemid',44166),(8637,'history_log','itemid',44166),(8638,'history_str','itemid',44166),(8639,'history_text','itemid',44166),(8640,'history_uint','itemid',44166),(8641,'trends','itemid',44166),(8642,'trends_uint','itemid',44166),(8643,'events','itemid',44165),(8644,'history','itemid',44165),(8645,'history_log','itemid',44165),(8646,'history_str','itemid',44165),(8647,'history_text','itemid',44165),(8648,'history_uint','itemid',44165),(8649,'trends','itemid',44165),(8650,'trends_uint','itemid',44165),(8651,'events','itemid',44181),(8652,'history','itemid',44181),(8653,'history_log','itemid',44181),(8654,'history_str','itemid',44181),(8655,'history_text','itemid',44181),(8656,'history_uint','itemid',44181),(8657,'trends','itemid',44181),(8658,'trends_uint','itemid',44181),(8659,'events','itemid',44182),(8660,'history','itemid',44182),(8661,'history_log','itemid',44182),(8662,'history_str','itemid',44182),(8663,'history_text','itemid',44182),(8664,'history_uint','itemid',44182),(8665,'trends','itemid',44182),(8666,'trends_uint','itemid',44182),(8667,'events','itemid',44192),(8668,'history','itemid',44192),(8669,'history_log','itemid',44192),(8670,'history_str','itemid',44192),(8671,'history_text','itemid',44192),(8672,'history_uint','itemid',44192),(8673,'trends','itemid',44192),(8674,'trends_uint','itemid',44192),(8675,'events','itemid',44198),(8676,'history','itemid',44198),(8677,'history_log','itemid',44198),(8678,'history_str','itemid',44198),(8679,'history_text','itemid',44198),(8680,'history_uint','itemid',44198),(8681,'trends','itemid',44198),(8682,'trends_uint','itemid',44198),(8683,'events','itemid',44197),(8684,'history','itemid',44197),(8685,'history_log','itemid',44197),(8686,'history_str','itemid',44197),(8687,'history_text','itemid',44197),(8688,'history_uint','itemid',44197),(8689,'trends','itemid',44197),(8690,'trends_uint','itemid',44197),(8691,'events','itemid',44196),(8692,'history','itemid',44196),(8693,'history_log','itemid',44196),(8694,'history_str','itemid',44196),(8695,'history_text','itemid',44196),(8696,'history_uint','itemid',44196),(8697,'trends','itemid',44196),(8698,'trends_uint','itemid',44196),(8699,'events','itemid',44195),(8700,'history','itemid',44195),(8701,'history_log','itemid',44195),(8702,'history_str','itemid',44195),(8703,'history_text','itemid',44195),(8704,'history_uint','itemid',44195),(8705,'trends','itemid',44195),(8706,'trends_uint','itemid',44195),(8707,'events','itemid',44162),(8708,'history','itemid',44162),(8709,'history_log','itemid',44162),(8710,'history_str','itemid',44162),(8711,'history_text','itemid',44162),(8712,'history_uint','itemid',44162),(8713,'trends','itemid',44162),(8714,'trends_uint','itemid',44162),(8715,'events','itemid',44194),(8716,'history','itemid',44194),(8717,'history_log','itemid',44194),(8718,'history_str','itemid',44194),(8719,'history_text','itemid',44194),(8720,'history_uint','itemid',44194),(8721,'trends','itemid',44194),(8722,'trends_uint','itemid',44194),(8723,'events','itemid',44193),(8724,'history','itemid',44193),(8725,'history_log','itemid',44193),(8726,'history_str','itemid',44193),(8727,'history_text','itemid',44193),(8728,'history_uint','itemid',44193),(8729,'trends','itemid',44193),(8730,'trends_uint','itemid',44193),(8731,'events','itemid',44190),(8732,'history','itemid',44190),(8733,'history_log','itemid',44190),(8734,'history_str','itemid',44190),(8735,'history_text','itemid',44190),(8736,'history_uint','itemid',44190),(8737,'trends','itemid',44190),(8738,'trends_uint','itemid',44190),(8739,'events','itemid',44191),(8740,'history','itemid',44191),(8741,'history_log','itemid',44191),(8742,'history_str','itemid',44191),(8743,'history_text','itemid',44191),(8744,'history_uint','itemid',44191),(8745,'trends','itemid',44191),(8746,'trends_uint','itemid',44191),(8747,'events','itemid',44183),(8748,'history','itemid',44183),(8749,'history_log','itemid',44183),(8750,'history_str','itemid',44183),(8751,'history_text','itemid',44183),(8752,'history_uint','itemid',44183),(8753,'trends','itemid',44183),(8754,'trends_uint','itemid',44183),(8755,'events','itemid',44189),(8756,'history','itemid',44189),(8757,'history_log','itemid',44189),(8758,'history_str','itemid',44189),(8759,'history_text','itemid',44189),(8760,'history_uint','itemid',44189),(8761,'trends','itemid',44189),(8762,'trends_uint','itemid',44189),(8763,'events','itemid',44188),(8764,'history','itemid',44188),(8765,'history_log','itemid',44188),(8766,'history_str','itemid',44188),(8767,'history_text','itemid',44188),(8768,'history_uint','itemid',44188),(8769,'trends','itemid',44188),(8770,'trends_uint','itemid',44188),(8771,'events','itemid',44187),(8772,'history','itemid',44187),(8773,'history_log','itemid',44187),(8774,'history_str','itemid',44187),(8775,'history_text','itemid',44187),(8776,'history_uint','itemid',44187),(8777,'trends','itemid',44187),(8778,'trends_uint','itemid',44187),(8779,'events','itemid',44186),(8780,'history','itemid',44186),(8781,'history_log','itemid',44186),(8782,'history_str','itemid',44186),(8783,'history_text','itemid',44186),(8784,'history_uint','itemid',44186),(8785,'trends','itemid',44186),(8786,'trends_uint','itemid',44186),(8787,'events','itemid',44185),(8788,'history','itemid',44185),(8789,'history_log','itemid',44185),(8790,'history_str','itemid',44185),(8791,'history_text','itemid',44185),(8792,'history_uint','itemid',44185),(8793,'trends','itemid',44185),(8794,'trends_uint','itemid',44185),(8795,'events','itemid',44184),(8796,'history','itemid',44184),(8797,'history_log','itemid',44184),(8798,'history_str','itemid',44184),(8799,'history_text','itemid',44184),(8800,'history_uint','itemid',44184),(8801,'trends','itemid',44184),(8802,'trends_uint','itemid',44184),(8803,'events','itemid',44199),(8804,'history','itemid',44199),(8805,'history_log','itemid',44199),(8806,'history_str','itemid',44199),(8807,'history_text','itemid',44199),(8808,'history_uint','itemid',44199),(8809,'trends','itemid',44199),(8810,'trends_uint','itemid',44199),(8811,'events','itemid',44250),(8812,'history','itemid',44250),(8813,'history_log','itemid',44250),(8814,'history_str','itemid',44250),(8815,'history_text','itemid',44250),(8816,'history_uint','itemid',44250),(8817,'trends','itemid',44250),(8818,'trends_uint','itemid',44250),(8819,'events','itemid',44263),(8820,'history','itemid',44263),(8821,'history_log','itemid',44263),(8822,'history_str','itemid',44263),(8823,'history_text','itemid',44263),(8824,'history_uint','itemid',44263),(8825,'trends','itemid',44263),(8826,'trends_uint','itemid',44263),(8827,'events','itemid',44272),(8828,'history','itemid',44272),(8829,'history_log','itemid',44272),(8830,'history_str','itemid',44272),(8831,'history_text','itemid',44272),(8832,'history_uint','itemid',44272),(8833,'trends','itemid',44272),(8834,'trends_uint','itemid',44272),(8835,'events','itemid',44271),(8836,'history','itemid',44271),(8837,'history_log','itemid',44271),(8838,'history_str','itemid',44271),(8839,'history_text','itemid',44271),(8840,'history_uint','itemid',44271),(8841,'trends','itemid',44271),(8842,'trends_uint','itemid',44271),(8843,'events','itemid',44270),(8844,'history','itemid',44270),(8845,'history_log','itemid',44270),(8846,'history_str','itemid',44270),(8847,'history_text','itemid',44270),(8848,'history_uint','itemid',44270),(8849,'trends','itemid',44270),(8850,'trends_uint','itemid',44270),(8851,'events','itemid',44269),(8852,'history','itemid',44269),(8853,'history_log','itemid',44269),(8854,'history_str','itemid',44269),(8855,'history_text','itemid',44269),(8856,'history_uint','itemid',44269),(8857,'trends','itemid',44269),(8858,'trends_uint','itemid',44269),(8859,'events','itemid',44268),(8860,'history','itemid',44268),(8861,'history_log','itemid',44268),(8862,'history_str','itemid',44268),(8863,'history_text','itemid',44268),(8864,'history_uint','itemid',44268),(8865,'trends','itemid',44268),(8866,'trends_uint','itemid',44268),(8867,'events','itemid',44267),(8868,'history','itemid',44267),(8869,'history_log','itemid',44267),(8870,'history_str','itemid',44267),(8871,'history_text','itemid',44267),(8872,'history_uint','itemid',44267),(8873,'trends','itemid',44267),(8874,'trends_uint','itemid',44267),(8875,'events','itemid',44266),(8876,'history','itemid',44266),(8877,'history_log','itemid',44266),(8878,'history_str','itemid',44266),(8879,'history_text','itemid',44266),(8880,'history_uint','itemid',44266),(8881,'trends','itemid',44266),(8882,'trends_uint','itemid',44266),(8883,'events','itemid',44248),(8884,'history','itemid',44248),(8885,'history_log','itemid',44248),(8886,'history_str','itemid',44248),(8887,'history_text','itemid',44248),(8888,'history_uint','itemid',44248),(8889,'trends','itemid',44248),(8890,'trends_uint','itemid',44248),(8891,'events','itemid',44265),(8892,'history','itemid',44265),(8893,'history_log','itemid',44265),(8894,'history_str','itemid',44265),(8895,'history_text','itemid',44265),(8896,'history_uint','itemid',44265),(8897,'trends','itemid',44265),(8898,'trends_uint','itemid',44265),(8899,'events','itemid',44264),(8900,'history','itemid',44264),(8901,'history_log','itemid',44264),(8902,'history_str','itemid',44264),(8903,'history_text','itemid',44264),(8904,'history_uint','itemid',44264),(8905,'trends','itemid',44264),(8906,'trends_uint','itemid',44264),(8907,'events','itemid',44261),(8908,'history','itemid',44261),(8909,'history_log','itemid',44261),(8910,'history_str','itemid',44261),(8911,'history_text','itemid',44261),(8912,'history_uint','itemid',44261),(8913,'trends','itemid',44261),(8914,'trends_uint','itemid',44261),(8915,'events','itemid',44262),(8916,'history','itemid',44262),(8917,'history_log','itemid',44262),(8918,'history_str','itemid',44262),(8919,'history_text','itemid',44262),(8920,'history_uint','itemid',44262),(8921,'trends','itemid',44262),(8922,'trends_uint','itemid',44262),(8923,'events','itemid',44251),(8924,'history','itemid',44251),(8925,'history_log','itemid',44251),(8926,'history_str','itemid',44251),(8927,'history_text','itemid',44251),(8928,'history_uint','itemid',44251),(8929,'trends','itemid',44251),(8930,'trends_uint','itemid',44251),(8931,'events','itemid',44260),(8932,'history','itemid',44260),(8933,'history_log','itemid',44260),(8934,'history_str','itemid',44260),(8935,'history_text','itemid',44260),(8936,'history_uint','itemid',44260),(8937,'trends','itemid',44260),(8938,'trends_uint','itemid',44260),(8939,'events','itemid',44259),(8940,'history','itemid',44259),(8941,'history_log','itemid',44259),(8942,'history_str','itemid',44259),(8943,'history_text','itemid',44259),(8944,'history_uint','itemid',44259),(8945,'trends','itemid',44259),(8946,'trends_uint','itemid',44259),(8947,'events','itemid',44258),(8948,'history','itemid',44258),(8949,'history_log','itemid',44258),(8950,'history_str','itemid',44258),(8951,'history_text','itemid',44258),(8952,'history_uint','itemid',44258),(8953,'trends','itemid',44258),(8954,'trends_uint','itemid',44258),(8955,'events','itemid',44257),(8956,'history','itemid',44257),(8957,'history_log','itemid',44257),(8958,'history_str','itemid',44257),(8959,'history_text','itemid',44257),(8960,'history_uint','itemid',44257),(8961,'trends','itemid',44257),(8962,'trends_uint','itemid',44257),(8963,'events','itemid',44256),(8964,'history','itemid',44256),(8965,'history_log','itemid',44256),(8966,'history_str','itemid',44256),(8967,'history_text','itemid',44256),(8968,'history_uint','itemid',44256),(8969,'trends','itemid',44256),(8970,'trends_uint','itemid',44256),(8971,'events','itemid',44255),(8972,'history','itemid',44255),(8973,'history_log','itemid',44255),(8974,'history_str','itemid',44255),(8975,'history_text','itemid',44255),(8976,'history_uint','itemid',44255),(8977,'trends','itemid',44255),(8978,'trends_uint','itemid',44255),(8979,'events','itemid',44254),(8980,'history','itemid',44254),(8981,'history_log','itemid',44254),(8982,'history_str','itemid',44254),(8983,'history_text','itemid',44254),(8984,'history_uint','itemid',44254),(8985,'trends','itemid',44254),(8986,'trends_uint','itemid',44254),(8987,'events','itemid',44253),(8988,'history','itemid',44253),(8989,'history_log','itemid',44253),(8990,'history_str','itemid',44253),(8991,'history_text','itemid',44253),(8992,'history_uint','itemid',44253),(8993,'trends','itemid',44253),(8994,'trends_uint','itemid',44253),(8995,'events','itemid',44252),(8996,'history','itemid',44252),(8997,'history_log','itemid',44252),(8998,'history_str','itemid',44252),(8999,'history_text','itemid',44252),(9000,'history_uint','itemid',44252),(9001,'trends','itemid',44252),(9002,'trends_uint','itemid',44252),(9003,'events','itemid',44273),(9004,'history','itemid',44273),(9005,'history_log','itemid',44273),(9006,'history_str','itemid',44273),(9007,'history_text','itemid',44273),(9008,'history_uint','itemid',44273),(9009,'trends','itemid',44273),(9010,'trends_uint','itemid',44273),(9011,'events','itemid',44274),(9012,'history','itemid',44274),(9013,'history_log','itemid',44274),(9014,'history_str','itemid',44274),(9015,'history_text','itemid',44274),(9016,'history_uint','itemid',44274),(9017,'trends','itemid',44274),(9018,'trends_uint','itemid',44274),(9019,'events','itemid',44284),(9020,'history','itemid',44284),(9021,'history_log','itemid',44284),(9022,'history_str','itemid',44284),(9023,'history_text','itemid',44284),(9024,'history_uint','itemid',44284),(9025,'trends','itemid',44284),(9026,'trends_uint','itemid',44284),(9027,'events','itemid',44291),(9028,'history','itemid',44291),(9029,'history_log','itemid',44291),(9030,'history_str','itemid',44291),(9031,'history_text','itemid',44291),(9032,'history_uint','itemid',44291),(9033,'trends','itemid',44291),(9034,'trends_uint','itemid',44291),(9035,'events','itemid',44290),(9036,'history','itemid',44290),(9037,'history_log','itemid',44290),(9038,'history_str','itemid',44290),(9039,'history_text','itemid',44290),(9040,'history_uint','itemid',44290),(9041,'trends','itemid',44290),(9042,'trends_uint','itemid',44290),(9043,'events','itemid',44289),(9044,'history','itemid',44289),(9045,'history_log','itemid',44289),(9046,'history_str','itemid',44289),(9047,'history_text','itemid',44289),(9048,'history_uint','itemid',44289),(9049,'trends','itemid',44289),(9050,'trends_uint','itemid',44289),(9051,'events','itemid',44288),(9052,'history','itemid',44288),(9053,'history_log','itemid',44288),(9054,'history_str','itemid',44288),(9055,'history_text','itemid',44288),(9056,'history_uint','itemid',44288),(9057,'trends','itemid',44288),(9058,'trends_uint','itemid',44288),(9059,'events','itemid',44249),(9060,'history','itemid',44249),(9061,'history_log','itemid',44249),(9062,'history_str','itemid',44249),(9063,'history_text','itemid',44249),(9064,'history_uint','itemid',44249),(9065,'trends','itemid',44249),(9066,'trends_uint','itemid',44249),(9067,'events','itemid',44287),(9068,'history','itemid',44287),(9069,'history_log','itemid',44287),(9070,'history_str','itemid',44287),(9071,'history_text','itemid',44287),(9072,'history_uint','itemid',44287),(9073,'trends','itemid',44287),(9074,'trends_uint','itemid',44287),(9075,'events','itemid',44286),(9076,'history','itemid',44286),(9077,'history_log','itemid',44286),(9078,'history_str','itemid',44286),(9079,'history_text','itemid',44286),(9080,'history_uint','itemid',44286),(9081,'trends','itemid',44286),(9082,'trends_uint','itemid',44286),(9083,'events','itemid',44285),(9084,'history','itemid',44285),(9085,'history_log','itemid',44285),(9086,'history_str','itemid',44285),(9087,'history_text','itemid',44285),(9088,'history_uint','itemid',44285),(9089,'trends','itemid',44285),(9090,'trends_uint','itemid',44285),(9091,'events','itemid',44283),(9092,'history','itemid',44283),(9093,'history_log','itemid',44283),(9094,'history_str','itemid',44283),(9095,'history_text','itemid',44283),(9096,'history_uint','itemid',44283),(9097,'trends','itemid',44283),(9098,'trends_uint','itemid',44283),(9099,'events','itemid',44275),(9100,'history','itemid',44275),(9101,'history_log','itemid',44275),(9102,'history_str','itemid',44275),(9103,'history_text','itemid',44275),(9104,'history_uint','itemid',44275),(9105,'trends','itemid',44275),(9106,'trends_uint','itemid',44275),(9107,'events','itemid',44282),(9108,'history','itemid',44282),(9109,'history_log','itemid',44282),(9110,'history_str','itemid',44282),(9111,'history_text','itemid',44282),(9112,'history_uint','itemid',44282),(9113,'trends','itemid',44282),(9114,'trends_uint','itemid',44282),(9115,'events','itemid',44281),(9116,'history','itemid',44281),(9117,'history_log','itemid',44281),(9118,'history_str','itemid',44281),(9119,'history_text','itemid',44281),(9120,'history_uint','itemid',44281),(9121,'trends','itemid',44281),(9122,'trends_uint','itemid',44281),(9123,'events','itemid',44280),(9124,'history','itemid',44280),(9125,'history_log','itemid',44280),(9126,'history_str','itemid',44280),(9127,'history_text','itemid',44280),(9128,'history_uint','itemid',44280),(9129,'trends','itemid',44280),(9130,'trends_uint','itemid',44280),(9131,'events','itemid',44279),(9132,'history','itemid',44279),(9133,'history_log','itemid',44279),(9134,'history_str','itemid',44279),(9135,'history_text','itemid',44279),(9136,'history_uint','itemid',44279),(9137,'trends','itemid',44279),(9138,'trends_uint','itemid',44279),(9139,'events','itemid',44278),(9140,'history','itemid',44278),(9141,'history_log','itemid',44278),(9142,'history_str','itemid',44278),(9143,'history_text','itemid',44278),(9144,'history_uint','itemid',44278),(9145,'trends','itemid',44278),(9146,'trends_uint','itemid',44278),(9147,'events','itemid',44277),(9148,'history','itemid',44277),(9149,'history_log','itemid',44277),(9150,'history_str','itemid',44277),(9151,'history_text','itemid',44277),(9152,'history_uint','itemid',44277),(9153,'trends','itemid',44277),(9154,'trends_uint','itemid',44277),(9155,'events','itemid',44276),(9156,'history','itemid',44276),(9157,'history_log','itemid',44276),(9158,'history_str','itemid',44276),(9159,'history_text','itemid',44276),(9160,'history_uint','itemid',44276),(9161,'trends','itemid',44276),(9162,'trends_uint','itemid',44276),(9163,'events','itemid',44292),(9164,'history','itemid',44292),(9165,'history_log','itemid',44292),(9166,'history_str','itemid',44292),(9167,'history_text','itemid',44292),(9168,'history_uint','itemid',44292),(9169,'trends','itemid',44292),(9170,'trends_uint','itemid',44292),(9171,'events','lldruleid',23540),(9172,'events','lldruleid',22907),(9173,'events','lldruleid',22984),(9174,'events','lldruleid',22987),(9175,'events','lldruleid',42684),(9176,'events','lldruleid',42685),(9177,'events','lldruleid',27031),(9178,'events','lldruleid',40454),(9179,'events','lldruleid',40455),(9180,'events','lldruleid',40643),(9181,'events','lldruleid',40644),(9182,'events','lldruleid',40645),(9183,'events','lldruleid',40646),(9184,'events','lldruleid',40647),(9185,'events','lldruleid',27475),(9186,'events','lldruleid',27473),(9187,'events','lldruleid',40719),(9188,'events','lldruleid',40720),(9189,'events','lldruleid',27474),(9190,'events','lldruleid',27476),(9191,'events','lldruleid',27515),(9192,'events','lldruleid',27512),(9193,'events','lldruleid',40742),(9194,'events','lldruleid',27514),(9195,'events','lldruleid',27513),(9196,'events','lldruleid',27551),(9197,'events','lldruleid',27548),(9198,'events','lldruleid',40763),(9199,'events','lldruleid',40764),(9200,'events','lldruleid',27550),(9201,'events','lldruleid',27549),(9202,'events','lldruleid',27589),(9203,'events','lldruleid',27587),(9204,'events','lldruleid',40786),(9205,'events','lldruleid',40787),(9206,'events','lldruleid',27588),(9207,'events','lldruleid',27669),(9208,'events','lldruleid',27667),(9209,'events','lldruleid',27665),(9210,'events','lldruleid',40832),(9211,'events','lldruleid',40833),(9212,'events','lldruleid',27668),(9213,'events','lldruleid',27666),(9214,'events','lldruleid',40656),(9215,'events','lldruleid',40657),(9216,'events','lldruleid',40658),(9217,'events','lldruleid',40659),(9218,'events','lldruleid',40660),(9219,'events','lldruleid',40661),(9220,'events','lldruleid',40662),(9221,'events','lldruleid',28353),(9222,'events','lldruleid',28349),(9223,'events','lldruleid',28352),(9224,'events','lldruleid',28350),(9225,'events','lldruleid',28348),(9226,'events','lldruleid',28347),(9227,'events','lldruleid',28346),(9228,'events','lldruleid',28351),(9229,'events','lldruleid',30065),(9230,'events','lldruleid',30064),(9231,'events','lldruleid',30061),(9232,'events','lldruleid',30062),(9233,'events','lldruleid',30059),(9234,'events','lldruleid',30058),(9235,'events','lldruleid',30057),(9236,'events','lldruleid',30060),(9237,'events','lldruleid',30063),(9238,'events','lldruleid',30147),(9239,'events','lldruleid',30148),(9240,'events','lldruleid',30193),(9241,'events','lldruleid',30194),(9242,'events','lldruleid',30195),(9243,'events','lldruleid',30236),(9244,'events','lldruleid',30237),(9245,'events','lldruleid',30238),(9246,'events','lldruleid',30571),(9247,'events','lldruleid',30572),(9248,'events','lldruleid',30713),(9249,'events','lldruleid',30874),(9250,'events','lldruleid',30875),(9251,'events','lldruleid',30876),(9252,'events','lldruleid',30961),(9253,'events','lldruleid',30962),(9254,'events','lldruleid',32619),(9255,'events','lldruleid',32620),(9256,'events','lldruleid',32668),(9257,'events','lldruleid',32669),(9258,'events','lldruleid',32866),(9259,'events','lldruleid',32867),(9260,'events','lldruleid',32868),(9261,'events','lldruleid',32869),(9262,'events','lldruleid',32870),(9263,'events','lldruleid',33520),(9264,'events','lldruleid',33521),(9265,'events','lldruleid',35280),(9266,'events','lldruleid',35281),(9267,'events','lldruleid',35282),(9268,'events','lldruleid',35283),(9269,'events','lldruleid',35284),(9270,'events','lldruleid',35285),(9271,'events','lldruleid',35286),(9272,'events','lldruleid',35287),(9273,'events','lldruleid',35288),(9274,'events','lldruleid',35289),(9275,'events','lldruleid',35424),(9276,'events','lldruleid',35425),(9277,'events','lldruleid',35426),(9278,'events','lldruleid',35427),(9279,'events','lldruleid',35428),(9280,'events','lldruleid',35429),(9281,'events','lldruleid',35430),(9282,'events','lldruleid',35431),(9283,'events','lldruleid',35432),(9284,'events','lldruleid',35433),(9285,'events','lldruleid',35434),(9286,'events','lldruleid',35435),(9287,'events','lldruleid',35436),(9288,'events','lldruleid',35437),(9289,'events','lldruleid',35438),(9290,'events','lldruleid',36168),(9291,'events','lldruleid',36169),(9292,'events','lldruleid',36170),(9293,'events','lldruleid',36171),(9294,'events','lldruleid',36172),(9295,'events','lldruleid',36173),(9296,'events','lldruleid',36174),(9297,'events','lldruleid',36175),(9298,'events','lldruleid',36176),(9299,'events','lldruleid',36177),(9300,'events','lldruleid',36219),(9301,'events','lldruleid',36220),(9302,'events','lldruleid',36221),(9303,'events','lldruleid',36222),(9304,'events','lldruleid',36223),(9305,'events','lldruleid',36224),(9306,'events','lldruleid',36225),(9307,'events','lldruleid',36226),(9308,'events','lldruleid',36268),(9309,'events','lldruleid',36269),(9310,'events','lldruleid',36270),(9311,'events','lldruleid',36271),(9312,'events','lldruleid',36272),(9313,'events','lldruleid',36273),(9314,'events','lldruleid',36274),(9315,'events','lldruleid',36301),(9316,'events','lldruleid',36302),(9317,'events','lldruleid',36303),(9318,'events','lldruleid',36304),(9319,'events','lldruleid',36305),(9320,'events','lldruleid',36306),(9321,'events','lldruleid',36307),(9322,'events','lldruleid',36308),(9323,'events','lldruleid',36350),(9324,'events','lldruleid',36351),(9325,'events','lldruleid',36352),(9326,'events','lldruleid',36353),(9327,'events','lldruleid',36354),(9328,'events','lldruleid',36355),(9329,'events','lldruleid',36356),(9330,'events','lldruleid',36383),(9331,'events','lldruleid',36384),(9332,'events','lldruleid',36385),(9333,'events','lldruleid',36386),(9334,'events','lldruleid',36387),(9335,'events','lldruleid',36388),(9336,'events','lldruleid',36389),(9337,'events','lldruleid',36390),(9338,'events','lldruleid',36432),(9339,'events','lldruleid',36433),(9340,'events','lldruleid',36434),(9341,'events','lldruleid',36435),(9342,'events','lldruleid',36436),(9343,'events','lldruleid',36437),(9344,'events','lldruleid',36438),(9345,'events','lldruleid',36465),(9346,'events','lldruleid',36466),(9347,'events','lldruleid',36467),(9348,'events','lldruleid',36468),(9349,'events','lldruleid',36469),(9350,'events','lldruleid',36470),(9351,'events','lldruleid',36471),(9352,'events','lldruleid',36472),(9353,'events','lldruleid',36514),(9354,'events','lldruleid',36515),(9355,'events','lldruleid',36516),(9356,'events','lldruleid',36517),(9357,'events','lldruleid',36518),(9358,'events','lldruleid',36519),(9359,'events','lldruleid',36520),(9360,'events','lldruleid',42986),(9361,'events','lldruleid',43047),(9362,'events','lldruleid',43048),(9363,'events','lldruleid',43049),(9364,'events','lldruleid',43133),(9365,'events','lldruleid',43134),(9366,'events','lldruleid',43135),(9367,'events','lldruleid',43136),(9368,'events','lldruleid',43166),(9369,'events','lldruleid',43167),(9370,'events','lldruleid',44314),(9371,'events','lldruleid',44315),(9372,'events','lldruleid',44316),(9373,'events','lldruleid',44317),(9374,'events','lldruleid',44318),(9375,'events','lldruleid',44395),(9376,'events','lldruleid',44396),(9377,'events','lldruleid',44397),(9378,'events','lldruleid',44398),(9379,'events','lldruleid',44399),(9380,'events','lldruleid',44400),(9381,'events','lldruleid',44401),(9382,'events','lldruleid',44402),(9383,'events','itemid',42179),(9384,'history','itemid',42179),(9385,'history_log','itemid',42179),(9386,'history_str','itemid',42179),(9387,'history_text','itemid',42179),(9388,'history_uint','itemid',42179),(9389,'trends','itemid',42179),(9390,'trends_uint','itemid',42179),(9391,'events','itemid',42180),(9392,'history','itemid',42180),(9393,'history_log','itemid',42180),(9394,'history_str','itemid',42180),(9395,'history_text','itemid',42180),(9396,'history_uint','itemid',42180),(9397,'trends','itemid',42180),(9398,'trends_uint','itemid',42180),(9399,'events','itemid',42181),(9400,'history','itemid',42181),(9401,'history_log','itemid',42181),(9402,'history_str','itemid',42181),(9403,'history_text','itemid',42181),(9404,'history_uint','itemid',42181),(9405,'trends','itemid',42181),(9406,'trends_uint','itemid',42181),(9407,'events','itemid',22875),(9408,'history','itemid',22875),(9409,'history_log','itemid',22875),(9410,'history_str','itemid',22875),(9411,'history_text','itemid',22875),(9412,'history_uint','itemid',22875),(9413,'trends','itemid',22875),(9414,'trends_uint','itemid',22875),(9415,'events','itemid',22876),(9416,'history','itemid',22876),(9417,'history_log','itemid',22876),(9418,'history_str','itemid',22876),(9419,'history_text','itemid',22876),(9420,'history_uint','itemid',22876),(9421,'trends','itemid',22876),(9422,'trends_uint','itemid',22876),(9423,'events','itemid',22877),(9424,'history','itemid',22877),(9425,'history_log','itemid',22877),(9426,'history_str','itemid',22877),(9427,'history_text','itemid',22877),(9428,'history_uint','itemid',22877),(9429,'trends','itemid',22877),(9430,'trends_uint','itemid',22877),(9431,'events','itemid',22878),(9432,'history','itemid',22878),(9433,'history_log','itemid',22878),(9434,'history_str','itemid',22878),(9435,'history_text','itemid',22878),(9436,'history_uint','itemid',22878),(9437,'trends','itemid',22878),(9438,'trends_uint','itemid',22878),(9439,'events','itemid',22879),(9440,'history','itemid',22879),(9441,'history_log','itemid',22879),(9442,'history_str','itemid',22879),(9443,'history_text','itemid',22879),(9444,'history_uint','itemid',22879),(9445,'trends','itemid',22879),(9446,'trends_uint','itemid',22879),(9447,'events','itemid',22880),(9448,'history','itemid',22880),(9449,'history_log','itemid',22880),(9450,'history_str','itemid',22880),(9451,'history_text','itemid',22880),(9452,'history_uint','itemid',22880),(9453,'trends','itemid',22880),(9454,'trends_uint','itemid',22880),(9455,'events','itemid',22881),(9456,'history','itemid',22881),(9457,'history_log','itemid',22881),(9458,'history_str','itemid',22881),(9459,'history_text','itemid',22881),(9460,'history_uint','itemid',22881),(9461,'trends','itemid',22881),(9462,'trends_uint','itemid',22881),(9463,'events','itemid',22882),(9464,'history','itemid',22882),(9465,'history_log','itemid',22882),(9466,'history_str','itemid',22882),(9467,'history_text','itemid',22882),(9468,'history_uint','itemid',22882),(9469,'trends','itemid',22882),(9470,'trends_uint','itemid',22882),(9471,'events','itemid',22883),(9472,'history','itemid',22883),(9473,'history_log','itemid',22883),(9474,'history_str','itemid',22883),(9475,'history_text','itemid',22883),(9476,'history_uint','itemid',22883),(9477,'trends','itemid',22883),(9478,'trends_uint','itemid',22883),(9479,'events','itemid',22884),(9480,'history','itemid',22884),(9481,'history_log','itemid',22884),(9482,'history_str','itemid',22884),(9483,'history_text','itemid',22884),(9484,'history_uint','itemid',22884),(9485,'trends','itemid',22884),(9486,'trends_uint','itemid',22884),(9487,'events','itemid',22885),(9488,'history','itemid',22885),(9489,'history_log','itemid',22885),(9490,'history_str','itemid',22885),(9491,'history_text','itemid',22885),(9492,'history_uint','itemid',22885),(9493,'trends','itemid',22885),(9494,'trends_uint','itemid',22885),(9495,'events','itemid',22886),(9496,'history','itemid',22886),(9497,'history_log','itemid',22886),(9498,'history_str','itemid',22886),(9499,'history_text','itemid',22886),(9500,'history_uint','itemid',22886),(9501,'trends','itemid',22886),(9502,'trends_uint','itemid',22886),(9503,'events','itemid',22888),(9504,'history','itemid',22888),(9505,'history_log','itemid',22888),(9506,'history_str','itemid',22888),(9507,'history_text','itemid',22888),(9508,'history_uint','itemid',22888),(9509,'trends','itemid',22888),(9510,'trends_uint','itemid',22888),(9511,'events','itemid',22891),(9512,'history','itemid',22891),(9513,'history_log','itemid',22891),(9514,'history_str','itemid',22891),(9515,'history_text','itemid',22891),(9516,'history_uint','itemid',22891),(9517,'trends','itemid',22891),(9518,'trends_uint','itemid',22891),(9519,'events','itemid',22892),(9520,'history','itemid',22892),(9521,'history_log','itemid',22892),(9522,'history_str','itemid',22892),(9523,'history_text','itemid',22892),(9524,'history_uint','itemid',22892),(9525,'trends','itemid',22892),(9526,'trends_uint','itemid',22892),(9527,'events','itemid',22893),(9528,'history','itemid',22893),(9529,'history_log','itemid',22893),(9530,'history_str','itemid',22893),(9531,'history_text','itemid',22893),(9532,'history_uint','itemid',22893),(9533,'trends','itemid',22893),(9534,'trends_uint','itemid',22893),(9535,'events','itemid',22894),(9536,'history','itemid',22894),(9537,'history_log','itemid',22894),(9538,'history_str','itemid',22894),(9539,'history_text','itemid',22894),(9540,'history_uint','itemid',22894),(9541,'trends','itemid',22894),(9542,'trends_uint','itemid',22894),(9543,'events','itemid',22895),(9544,'history','itemid',22895),(9545,'history_log','itemid',22895),(9546,'history_str','itemid',22895),(9547,'history_text','itemid',22895),(9548,'history_uint','itemid',22895),(9549,'trends','itemid',22895),(9550,'trends_uint','itemid',22895),(9551,'events','itemid',22896),(9552,'history','itemid',22896),(9553,'history_log','itemid',22896),(9554,'history_str','itemid',22896),(9555,'history_text','itemid',22896),(9556,'history_uint','itemid',22896),(9557,'trends','itemid',22896),(9558,'trends_uint','itemid',22896),(9559,'events','itemid',22897),(9560,'history','itemid',22897),(9561,'history_log','itemid',22897),(9562,'history_str','itemid',22897),(9563,'history_text','itemid',22897),(9564,'history_uint','itemid',22897),(9565,'trends','itemid',22897),(9566,'trends_uint','itemid',22897),(9567,'events','itemid',22898),(9568,'history','itemid',22898),(9569,'history_log','itemid',22898),(9570,'history_str','itemid',22898),(9571,'history_text','itemid',22898),(9572,'history_uint','itemid',22898),(9573,'trends','itemid',22898),(9574,'trends_uint','itemid',22898),(9575,'events','itemid',22899),(9576,'history','itemid',22899),(9577,'history_log','itemid',22899),(9578,'history_str','itemid',22899),(9579,'history_text','itemid',22899),(9580,'history_uint','itemid',22899),(9581,'trends','itemid',22899),(9582,'trends_uint','itemid',22899),(9583,'events','itemid',22900),(9584,'history','itemid',22900),(9585,'history_log','itemid',22900),(9586,'history_str','itemid',22900),(9587,'history_text','itemid',22900),(9588,'history_uint','itemid',22900),(9589,'trends','itemid',22900),(9590,'trends_uint','itemid',22900),(9591,'events','itemid',22901),(9592,'history','itemid',22901),(9593,'history_log','itemid',22901),(9594,'history_str','itemid',22901),(9595,'history_text','itemid',22901),(9596,'history_uint','itemid',22901),(9597,'trends','itemid',22901),(9598,'trends_uint','itemid',22901),(9599,'events','itemid',44430),(9600,'history','itemid',44430),(9601,'history_log','itemid',44430),(9602,'history_str','itemid',44430),(9603,'history_text','itemid',44430),(9604,'history_uint','itemid',44430),(9605,'trends','itemid',44430),(9606,'trends_uint','itemid',44430),(9607,'events','itemid',22902),(9608,'history','itemid',22902),(9609,'history_log','itemid',22902),(9610,'history_str','itemid',22902),(9611,'history_text','itemid',22902),(9612,'history_uint','itemid',22902),(9613,'trends','itemid',22902),(9614,'trends_uint','itemid',22902),(9615,'events','itemid',22903),(9616,'history','itemid',22903),(9617,'history_log','itemid',22903),(9618,'history_str','itemid',22903),(9619,'history_text','itemid',22903),(9620,'history_uint','itemid',22903),(9621,'trends','itemid',22903),(9622,'trends_uint','itemid',22903),(9623,'events','itemid',42182),(9624,'history','itemid',42182),(9625,'history_log','itemid',42182),(9626,'history_str','itemid',42182),(9627,'history_text','itemid',42182),(9628,'history_uint','itemid',42182),(9629,'trends','itemid',42182),(9630,'trends_uint','itemid',42182),(9631,'events','itemid',42183),(9632,'history','itemid',42183),(9633,'history_log','itemid',42183),(9634,'history_str','itemid',42183),(9635,'history_text','itemid',42183),(9636,'history_uint','itemid',42183),(9637,'trends','itemid',42183),(9638,'trends_uint','itemid',42183),(9639,'events','itemid',42184),(9640,'history','itemid',42184),(9641,'history_log','itemid',42184),(9642,'history_str','itemid',42184),(9643,'history_text','itemid',42184),(9644,'history_uint','itemid',42184),(9645,'trends','itemid',42184),(9646,'trends_uint','itemid',42184),(9647,'events','itemid',42185),(9648,'history','itemid',42185),(9649,'history_log','itemid',42185),(9650,'history_str','itemid',42185),(9651,'history_text','itemid',42185),(9652,'history_uint','itemid',42185),(9653,'trends','itemid',42185),(9654,'trends_uint','itemid',42185),(9655,'events','itemid',22961),(9656,'history','itemid',22961),(9657,'history_log','itemid',22961),(9658,'history_str','itemid',22961),(9659,'history_text','itemid',22961),(9660,'history_uint','itemid',22961),(9661,'trends','itemid',22961),(9662,'trends_uint','itemid',22961),(9663,'events','itemid',22962),(9664,'history','itemid',22962),(9665,'history_log','itemid',22962),(9666,'history_str','itemid',22962),(9667,'history_text','itemid',22962),(9668,'history_uint','itemid',22962),(9669,'trends','itemid',22962),(9670,'trends_uint','itemid',22962),(9671,'events','itemid',22963),(9672,'history','itemid',22963),(9673,'history_log','itemid',22963),(9674,'history_str','itemid',22963),(9675,'history_text','itemid',22963),(9676,'history_uint','itemid',22963),(9677,'trends','itemid',22963),(9678,'trends_uint','itemid',22963),(9679,'events','itemid',22965),(9680,'history','itemid',22965),(9681,'history_log','itemid',22965),(9682,'history_str','itemid',22965),(9683,'history_text','itemid',22965),(9684,'history_uint','itemid',22965),(9685,'trends','itemid',22965),(9686,'trends_uint','itemid',22965),(9687,'events','itemid',22968),(9688,'history','itemid',22968),(9689,'history_log','itemid',22968),(9690,'history_str','itemid',22968),(9691,'history_text','itemid',22968),(9692,'history_uint','itemid',22968),(9693,'trends','itemid',22968),(9694,'trends_uint','itemid',22968),(9695,'events','itemid',22971),(9696,'history','itemid',22971),(9697,'history_log','itemid',22971),(9698,'history_str','itemid',22971),(9699,'history_text','itemid',22971),(9700,'history_uint','itemid',22971),(9701,'trends','itemid',22971),(9702,'trends_uint','itemid',22971),(9703,'events','itemid',22972),(9704,'history','itemid',22972),(9705,'history_log','itemid',22972),(9706,'history_str','itemid',22972),(9707,'history_text','itemid',22972),(9708,'history_uint','itemid',22972),(9709,'trends','itemid',22972),(9710,'trends_uint','itemid',22972),(9711,'events','itemid',22973),(9712,'history','itemid',22973),(9713,'history_log','itemid',22973),(9714,'history_str','itemid',22973),(9715,'history_text','itemid',22973),(9716,'history_uint','itemid',22973),(9717,'trends','itemid',22973),(9718,'trends_uint','itemid',22973),(9719,'events','itemid',22974),(9720,'history','itemid',22974),(9721,'history_log','itemid',22974),(9722,'history_str','itemid',22974),(9723,'history_text','itemid',22974),(9724,'history_uint','itemid',22974),(9725,'trends','itemid',22974),(9726,'trends_uint','itemid',22974),(9727,'events','itemid',22978),(9728,'history','itemid',22978),(9729,'history_log','itemid',22978),(9730,'history_str','itemid',22978),(9731,'history_text','itemid',22978),(9732,'history_uint','itemid',22978),(9733,'trends','itemid',22978),(9734,'trends_uint','itemid',22978),(9735,'events','itemid',22980),(9736,'history','itemid',22980),(9737,'history_log','itemid',22980),(9738,'history_str','itemid',22980),(9739,'history_text','itemid',22980),(9740,'history_uint','itemid',22980),(9741,'trends','itemid',22980),(9742,'trends_uint','itemid',22980),(9743,'events','itemid',22981),(9744,'history','itemid',22981),(9745,'history_log','itemid',22981),(9746,'history_str','itemid',22981),(9747,'history_text','itemid',22981),(9748,'history_uint','itemid',22981),(9749,'trends','itemid',22981),(9750,'trends_uint','itemid',22981),(9751,'events','itemid',44433),(9752,'history','itemid',44433),(9753,'history_log','itemid',44433),(9754,'history_str','itemid',44433),(9755,'history_text','itemid',44433),(9756,'history_uint','itemid',44433),(9757,'trends','itemid',44433),(9758,'trends_uint','itemid',44433),(9759,'events','itemid',22982),(9760,'history','itemid',22982),(9761,'history_log','itemid',22982),(9762,'history_str','itemid',22982),(9763,'history_text','itemid',22982),(9764,'history_uint','itemid',22982),(9765,'trends','itemid',22982),(9766,'trends_uint','itemid',22982),(9767,'events','itemid',22983),(9768,'history','itemid',22983),(9769,'history_log','itemid',22983),(9770,'history_str','itemid',22983),(9771,'history_text','itemid',22983),(9772,'history_uint','itemid',22983),(9773,'trends','itemid',22983),(9774,'trends_uint','itemid',22983),(9775,'events','itemid',42186),(9776,'history','itemid',42186),(9777,'history_log','itemid',42186),(9778,'history_str','itemid',42186),(9779,'history_text','itemid',42186),(9780,'history_uint','itemid',42186),(9781,'trends','itemid',42186),(9782,'trends_uint','itemid',42186),(9783,'events','itemid',23644),(9784,'history','itemid',23644),(9785,'history_log','itemid',23644),(9786,'history_str','itemid',23644),(9787,'history_text','itemid',23644),(9788,'history_uint','itemid',23644),(9789,'trends','itemid',23644),(9790,'trends_uint','itemid',23644),(9791,'events','itemid',31499),(9792,'history','itemid',31499),(9793,'history_log','itemid',31499),(9794,'history_str','itemid',31499),(9795,'history_text','itemid',31499),(9796,'history_uint','itemid',31499),(9797,'trends','itemid',31499),(9798,'trends_uint','itemid',31499),(9799,'events','itemid',31527),(9800,'history','itemid',31527),(9801,'history_log','itemid',31527),(9802,'history_str','itemid',31527),(9803,'history_text','itemid',31527),(9804,'history_uint','itemid',31527),(9805,'trends','itemid',31527),(9806,'trends_uint','itemid',31527),(9807,'events','itemid',31529),(9808,'history','itemid',31529),(9809,'history_log','itemid',31529),(9810,'history_str','itemid',31529),(9811,'history_text','itemid',31529),(9812,'history_uint','itemid',31529),(9813,'trends','itemid',31529),(9814,'trends_uint','itemid',31529),(9815,'events','itemid',31530),(9816,'history','itemid',31530),(9817,'history_log','itemid',31530),(9818,'history_str','itemid',31530),(9819,'history_text','itemid',31530),(9820,'history_uint','itemid',31530),(9821,'trends','itemid',31530),(9822,'trends_uint','itemid',31530),(9823,'events','itemid',31531),(9824,'history','itemid',31531),(9825,'history_log','itemid',31531),(9826,'history_str','itemid',31531),(9827,'history_text','itemid',31531),(9828,'history_uint','itemid',31531),(9829,'trends','itemid',31531),(9830,'trends_uint','itemid',31531),(9831,'events','itemid',31544),(9832,'history','itemid',31544),(9833,'history_log','itemid',31544),(9834,'history_str','itemid',31544),(9835,'history_text','itemid',31544),(9836,'history_uint','itemid',31544),(9837,'trends','itemid',31544),(9838,'trends_uint','itemid',31544),(9839,'events','itemid',31545),(9840,'history','itemid',31545),(9841,'history_log','itemid',31545),(9842,'history_str','itemid',31545),(9843,'history_text','itemid',31545),(9844,'history_uint','itemid',31545),(9845,'trends','itemid',31545),(9846,'trends_uint','itemid',31545),(9847,'events','itemid',31546),(9848,'history','itemid',31546),(9849,'history_log','itemid',31546),(9850,'history_str','itemid',31546),(9851,'history_text','itemid',31546),(9852,'history_uint','itemid',31546),(9853,'trends','itemid',31546),(9854,'trends_uint','itemid',31546),(9855,'events','itemid',31547),(9856,'history','itemid',31547),(9857,'history_log','itemid',31547),(9858,'history_str','itemid',31547),(9859,'history_text','itemid',31547),(9860,'history_uint','itemid',31547),(9861,'trends','itemid',31547),(9862,'trends_uint','itemid',31547),(9863,'events','itemid',31548),(9864,'history','itemid',31548),(9865,'history_log','itemid',31548),(9866,'history_str','itemid',31548),(9867,'history_text','itemid',31548),(9868,'history_uint','itemid',31548),(9869,'trends','itemid',31548),(9870,'trends_uint','itemid',31548),(9871,'events','itemid',31549),(9872,'history','itemid',31549),(9873,'history_log','itemid',31549),(9874,'history_str','itemid',31549),(9875,'history_text','itemid',31549),(9876,'history_uint','itemid',31549),(9877,'trends','itemid',31549),(9878,'trends_uint','itemid',31549),(9879,'events','itemid',31550),(9880,'history','itemid',31550),(9881,'history_log','itemid',31550),(9882,'history_str','itemid',31550),(9883,'history_text','itemid',31550),(9884,'history_uint','itemid',31550),(9885,'trends','itemid',31550),(9886,'trends_uint','itemid',31550),(9887,'events','itemid',31516),(9888,'history','itemid',31516),(9889,'history_log','itemid',31516),(9890,'history_str','itemid',31516),(9891,'history_text','itemid',31516),(9892,'history_uint','itemid',31516),(9893,'trends','itemid',31516),(9894,'trends_uint','itemid',31516),(9895,'events','itemid',31517),(9896,'history','itemid',31517),(9897,'history_log','itemid',31517),(9898,'history_str','itemid',31517),(9899,'history_text','itemid',31517),(9900,'history_uint','itemid',31517),(9901,'trends','itemid',31517),(9902,'trends_uint','itemid',31517),(9903,'events','itemid',31518),(9904,'history','itemid',31518),(9905,'history_log','itemid',31518),(9906,'history_str','itemid',31518),(9907,'history_text','itemid',31518),(9908,'history_uint','itemid',31518),(9909,'trends','itemid',31518),(9910,'trends_uint','itemid',31518),(9911,'events','itemid',31519),(9912,'history','itemid',31519),(9913,'history_log','itemid',31519),(9914,'history_str','itemid',31519),(9915,'history_text','itemid',31519),(9916,'history_uint','itemid',31519),(9917,'trends','itemid',31519),(9918,'trends_uint','itemid',31519),(9919,'events','itemid',31520),(9920,'history','itemid',31520),(9921,'history_log','itemid',31520),(9922,'history_str','itemid',31520),(9923,'history_text','itemid',31520),(9924,'history_uint','itemid',31520),(9925,'trends','itemid',31520),(9926,'trends_uint','itemid',31520),(9927,'events','itemid',31521),(9928,'history','itemid',31521),(9929,'history_log','itemid',31521),(9930,'history_str','itemid',31521),(9931,'history_text','itemid',31521),(9932,'history_uint','itemid',31521),(9933,'trends','itemid',31521),(9934,'trends_uint','itemid',31521),(9935,'events','itemid',31522),(9936,'history','itemid',31522),(9937,'history_log','itemid',31522),(9938,'history_str','itemid',31522),(9939,'history_text','itemid',31522),(9940,'history_uint','itemid',31522),(9941,'trends','itemid',31522),(9942,'trends_uint','itemid',31522),(9943,'events','itemid',31523),(9944,'history','itemid',31523),(9945,'history_log','itemid',31523),(9946,'history_str','itemid',31523),(9947,'history_text','itemid',31523),(9948,'history_uint','itemid',31523),(9949,'trends','itemid',31523),(9950,'trends_uint','itemid',31523),(9951,'events','itemid',31524),(9952,'history','itemid',31524),(9953,'history_log','itemid',31524),(9954,'history_str','itemid',31524),(9955,'history_text','itemid',31524),(9956,'history_uint','itemid',31524),(9957,'trends','itemid',31524),(9958,'trends_uint','itemid',31524),(9959,'events','itemid',31553),(9960,'history','itemid',31553),(9961,'history_log','itemid',31553),(9962,'history_str','itemid',31553),(9963,'history_text','itemid',31553),(9964,'history_uint','itemid',31553),(9965,'trends','itemid',31553),(9966,'trends_uint','itemid',31553),(9967,'events','itemid',40451),(9968,'history','itemid',40451),(9969,'history_log','itemid',40451),(9970,'history_str','itemid',40451),(9971,'history_text','itemid',40451),(9972,'history_uint','itemid',40451),(9973,'trends','itemid',40451),(9974,'trends_uint','itemid',40451),(9975,'events','itemid',40190),(9976,'history','itemid',40190),(9977,'history_log','itemid',40190),(9978,'history_str','itemid',40190),(9979,'history_text','itemid',40190),(9980,'history_uint','itemid',40190),(9981,'trends','itemid',40190),(9982,'trends_uint','itemid',40190),(9983,'events','itemid',40191),(9984,'history','itemid',40191),(9985,'history_log','itemid',40191),(9986,'history_str','itemid',40191),(9987,'history_text','itemid',40191),(9988,'history_uint','itemid',40191),(9989,'trends','itemid',40191),(9990,'trends_uint','itemid',40191),(9991,'events','itemid',40192),(9992,'history','itemid',40192),(9993,'history_log','itemid',40192),(9994,'history_str','itemid',40192),(9995,'history_text','itemid',40192),(9996,'history_uint','itemid',40192),(9997,'trends','itemid',40192),(9998,'trends_uint','itemid',40192),(9999,'events','itemid',27157),(10000,'history','itemid',27157),(10001,'history_log','itemid',27157),(10002,'history_str','itemid',27157),(10003,'history_text','itemid',27157),(10004,'history_uint','itemid',27157),(10005,'trends','itemid',27157),(10006,'trends_uint','itemid',27157),(10007,'events','itemid',29846),(10008,'history','itemid',29846),(10009,'history_log','itemid',29846),(10010,'history_str','itemid',29846),(10011,'history_text','itemid',29846),(10012,'history_uint','itemid',29846),(10013,'trends','itemid',29846),(10014,'trends_uint','itemid',29846),(10015,'events','itemid',29848),(10016,'history','itemid',29848),(10017,'history_log','itemid',29848),(10018,'history_str','itemid',29848),(10019,'history_text','itemid',29848),(10020,'history_uint','itemid',29848),(10021,'trends','itemid',29848),(10022,'trends_uint','itemid',29848),(10023,'events','itemid',43769),(10024,'history','itemid',43769),(10025,'history_log','itemid',43769),(10026,'history_str','itemid',43769),(10027,'history_text','itemid',43769),(10028,'history_uint','itemid',43769),(10029,'trends','itemid',43769),(10030,'trends_uint','itemid',43769),(10031,'events','itemid',29845),(10032,'history','itemid',29845),(10033,'history_log','itemid',29845),(10034,'history_str','itemid',29845),(10035,'history_text','itemid',29845),(10036,'history_uint','itemid',29845),(10037,'trends','itemid',29845),(10038,'trends_uint','itemid',29845),(10039,'events','itemid',27152),(10040,'history','itemid',27152),(10041,'history_log','itemid',27152),(10042,'history_str','itemid',27152),(10043,'history_text','itemid',27152),(10044,'history_uint','itemid',27152),(10045,'trends','itemid',27152),(10046,'trends_uint','itemid',27152),(10047,'events','itemid',29844),(10048,'history','itemid',29844),(10049,'history_log','itemid',29844),(10050,'history_str','itemid',29844),(10051,'history_text','itemid',29844),(10052,'history_uint','itemid',29844),(10053,'trends','itemid',29844),(10054,'trends_uint','itemid',29844),(10055,'events','itemid',29847),(10056,'history','itemid',29847),(10057,'history_log','itemid',29847),(10058,'history_str','itemid',29847),(10059,'history_text','itemid',29847),(10060,'history_uint','itemid',29847),(10061,'trends','itemid',29847),(10062,'trends_uint','itemid',29847),(10063,'events','itemid',27154),(10064,'history','itemid',27154),(10065,'history_log','itemid',27154),(10066,'history_str','itemid',27154),(10067,'history_text','itemid',27154),(10068,'history_uint','itemid',27154),(10069,'trends','itemid',27154),(10070,'trends_uint','itemid',27154),(10071,'events','itemid',27376),(10072,'history','itemid',27376),(10073,'history_log','itemid',27376),(10074,'history_str','itemid',27376),(10075,'history_text','itemid',27376),(10076,'history_uint','itemid',27376),(10077,'trends','itemid',27376),(10078,'trends_uint','itemid',27376),(10079,'events','itemid',40600),(10080,'history','itemid',40600),(10081,'history_log','itemid',40600),(10082,'history_str','itemid',40600),(10083,'history_text','itemid',40600),(10084,'history_uint','itemid',40600),(10085,'trends','itemid',40600),(10086,'trends_uint','itemid',40600),(10087,'events','itemid',40601),(10088,'history','itemid',40601),(10089,'history_log','itemid',40601),(10090,'history_str','itemid',40601),(10091,'history_text','itemid',40601),(10092,'history_uint','itemid',40601),(10093,'trends','itemid',40601),(10094,'trends_uint','itemid',40601),(10095,'events','itemid',40602),(10096,'history','itemid',40602),(10097,'history_log','itemid',40602),(10098,'history_str','itemid',40602),(10099,'history_text','itemid',40602),(10100,'history_uint','itemid',40602),(10101,'trends','itemid',40602),(10102,'trends_uint','itemid',40602),(10103,'events','itemid',40603),(10104,'history','itemid',40603),(10105,'history_log','itemid',40603),(10106,'history_str','itemid',40603),(10107,'history_text','itemid',40603),(10108,'history_uint','itemid',40603),(10109,'trends','itemid',40603),(10110,'trends_uint','itemid',40603),(10111,'events','itemid',40604),(10112,'history','itemid',40604),(10113,'history_log','itemid',40604),(10114,'history_str','itemid',40604),(10115,'history_text','itemid',40604),(10116,'history_uint','itemid',40604),(10117,'trends','itemid',40604),(10118,'trends_uint','itemid',40604),(10119,'events','itemid',40605),(10120,'history','itemid',40605),(10121,'history_log','itemid',40605),(10122,'history_str','itemid',40605),(10123,'history_text','itemid',40605),(10124,'history_uint','itemid',40605),(10125,'trends','itemid',40605),(10126,'trends_uint','itemid',40605),(10127,'events','itemid',40606),(10128,'history','itemid',40606),(10129,'history_log','itemid',40606),(10130,'history_str','itemid',40606),(10131,'history_text','itemid',40606),(10132,'history_uint','itemid',40606),(10133,'trends','itemid',40606),(10134,'trends_uint','itemid',40606),(10135,'events','itemid',40607),(10136,'history','itemid',40607),(10137,'history_log','itemid',40607),(10138,'history_str','itemid',40607),(10139,'history_text','itemid',40607),(10140,'history_uint','itemid',40607),(10141,'trends','itemid',40607),(10142,'trends_uint','itemid',40607),(10143,'events','itemid',40608),(10144,'history','itemid',40608),(10145,'history_log','itemid',40608),(10146,'history_str','itemid',40608),(10147,'history_text','itemid',40608),(10148,'history_uint','itemid',40608),(10149,'trends','itemid',40608),(10150,'trends_uint','itemid',40608),(10151,'events','itemid',43780),(10152,'history','itemid',43780),(10153,'history_log','itemid',43780),(10154,'history_str','itemid',43780),(10155,'history_text','itemid',43780),(10156,'history_uint','itemid',43780),(10157,'trends','itemid',43780),(10158,'trends_uint','itemid',43780),(10159,'events','itemid',40609),(10160,'history','itemid',40609),(10161,'history_log','itemid',40609),(10162,'history_str','itemid',40609),(10163,'history_text','itemid',40609),(10164,'history_uint','itemid',40609),(10165,'trends','itemid',40609),(10166,'trends_uint','itemid',40609),(10167,'events','itemid',40610),(10168,'history','itemid',40610),(10169,'history_log','itemid',40610),(10170,'history_str','itemid',40610),(10171,'history_text','itemid',40610),(10172,'history_uint','itemid',40610),(10173,'trends','itemid',40610),(10174,'trends_uint','itemid',40610),(10175,'events','itemid',40613),(10176,'history','itemid',40613),(10177,'history_log','itemid',40613),(10178,'history_str','itemid',40613),(10179,'history_text','itemid',40613),(10180,'history_uint','itemid',40613),(10181,'trends','itemid',40613),(10182,'trends_uint','itemid',40613),(10183,'events','itemid',40611),(10184,'history','itemid',40611),(10185,'history_log','itemid',40611),(10186,'history_str','itemid',40611),(10187,'history_text','itemid',40611),(10188,'history_uint','itemid',40611),(10189,'trends','itemid',40611),(10190,'trends_uint','itemid',40611),(10191,'events','itemid',40612),(10192,'history','itemid',40612),(10193,'history_log','itemid',40612),(10194,'history_str','itemid',40612),(10195,'history_text','itemid',40612),(10196,'history_uint','itemid',40612),(10197,'trends','itemid',40612),(10198,'trends_uint','itemid',40612),(10199,'events','itemid',40614),(10200,'history','itemid',40614),(10201,'history_log','itemid',40614),(10202,'history_str','itemid',40614),(10203,'history_text','itemid',40614),(10204,'history_uint','itemid',40614),(10205,'trends','itemid',40614),(10206,'trends_uint','itemid',40614),(10207,'events','itemid',40708),(10208,'history','itemid',40708),(10209,'history_log','itemid',40708),(10210,'history_str','itemid',40708),(10211,'history_text','itemid',40708),(10212,'history_uint','itemid',40708),(10213,'trends','itemid',40708),(10214,'trends_uint','itemid',40708),(10215,'events','itemid',40709),(10216,'history','itemid',40709),(10217,'history_log','itemid',40709),(10218,'history_str','itemid',40709),(10219,'history_text','itemid',40709),(10220,'history_uint','itemid',40709),(10221,'trends','itemid',40709),(10222,'trends_uint','itemid',40709),(10223,'events','itemid',40710),(10224,'history','itemid',40710),(10225,'history_log','itemid',40710),(10226,'history_str','itemid',40710),(10227,'history_text','itemid',40710),(10228,'history_uint','itemid',40710),(10229,'trends','itemid',40710),(10230,'trends_uint','itemid',40710),(10231,'events','itemid',40711),(10232,'history','itemid',40711),(10233,'history_log','itemid',40711),(10234,'history_str','itemid',40711),(10235,'history_text','itemid',40711),(10236,'history_uint','itemid',40711),(10237,'trends','itemid',40711),(10238,'trends_uint','itemid',40711),(10239,'events','itemid',40712),(10240,'history','itemid',40712),(10241,'history_log','itemid',40712),(10242,'history_str','itemid',40712),(10243,'history_text','itemid',40712),(10244,'history_uint','itemid',40712),(10245,'trends','itemid',40712),(10246,'trends_uint','itemid',40712),(10247,'events','itemid',40713),(10248,'history','itemid',40713),(10249,'history_log','itemid',40713),(10250,'history_str','itemid',40713),(10251,'history_text','itemid',40713),(10252,'history_uint','itemid',40713),(10253,'trends','itemid',40713),(10254,'trends_uint','itemid',40713),(10255,'events','itemid',43783),(10256,'history','itemid',43783),(10257,'history_log','itemid',43783),(10258,'history_str','itemid',43783),(10259,'history_text','itemid',43783),(10260,'history_uint','itemid',43783),(10261,'trends','itemid',43783),(10262,'trends_uint','itemid',43783),(10263,'events','itemid',40714),(10264,'history','itemid',40714),(10265,'history_log','itemid',40714),(10266,'history_str','itemid',40714),(10267,'history_text','itemid',40714),(10268,'history_uint','itemid',40714),(10269,'trends','itemid',40714),(10270,'trends_uint','itemid',40714),(10271,'events','itemid',40715),(10272,'history','itemid',40715),(10273,'history_log','itemid',40715),(10274,'history_str','itemid',40715),(10275,'history_text','itemid',40715),(10276,'history_uint','itemid',40715),(10277,'trends','itemid',40715),(10278,'trends_uint','itemid',40715),(10279,'events','itemid',40717),(10280,'history','itemid',40717),(10281,'history_log','itemid',40717),(10282,'history_str','itemid',40717),(10283,'history_text','itemid',40717),(10284,'history_uint','itemid',40717),(10285,'trends','itemid',40717),(10286,'trends_uint','itemid',40717),(10287,'events','itemid',40716),(10288,'history','itemid',40716),(10289,'history_log','itemid',40716),(10290,'history_str','itemid',40716),(10291,'history_text','itemid',40716),(10292,'history_uint','itemid',40716),(10293,'trends','itemid',40716),(10294,'trends_uint','itemid',40716),(10295,'events','itemid',40718),(10296,'history','itemid',40718),(10297,'history_log','itemid',40718),(10298,'history_str','itemid',40718),(10299,'history_text','itemid',40718),(10300,'history_uint','itemid',40718),(10301,'trends','itemid',40718),(10302,'trends_uint','itemid',40718),(10303,'events','itemid',40731),(10304,'history','itemid',40731),(10305,'history_log','itemid',40731),(10306,'history_str','itemid',40731),(10307,'history_text','itemid',40731),(10308,'history_uint','itemid',40731),(10309,'trends','itemid',40731),(10310,'trends_uint','itemid',40731),(10311,'events','itemid',40732),(10312,'history','itemid',40732),(10313,'history_log','itemid',40732),(10314,'history_str','itemid',40732),(10315,'history_text','itemid',40732),(10316,'history_uint','itemid',40732),(10317,'trends','itemid',40732),(10318,'trends_uint','itemid',40732),(10319,'events','itemid',40733),(10320,'history','itemid',40733),(10321,'history_log','itemid',40733),(10322,'history_str','itemid',40733),(10323,'history_text','itemid',40733),(10324,'history_uint','itemid',40733),(10325,'trends','itemid',40733),(10326,'trends_uint','itemid',40733),(10327,'events','itemid',40734),(10328,'history','itemid',40734),(10329,'history_log','itemid',40734),(10330,'history_str','itemid',40734),(10331,'history_text','itemid',40734),(10332,'history_uint','itemid',40734),(10333,'trends','itemid',40734),(10334,'trends_uint','itemid',40734),(10335,'events','itemid',40735),(10336,'history','itemid',40735),(10337,'history_log','itemid',40735),(10338,'history_str','itemid',40735),(10339,'history_text','itemid',40735),(10340,'history_uint','itemid',40735),(10341,'trends','itemid',40735),(10342,'trends_uint','itemid',40735),(10343,'events','itemid',27511),(10344,'history','itemid',27511),(10345,'history_log','itemid',27511),(10346,'history_str','itemid',27511),(10347,'history_text','itemid',27511),(10348,'history_uint','itemid',27511),(10349,'trends','itemid',27511),(10350,'trends_uint','itemid',27511),(10351,'events','itemid',40736),(10352,'history','itemid',40736),(10353,'history_log','itemid',40736),(10354,'history_str','itemid',40736),(10355,'history_text','itemid',40736),(10356,'history_uint','itemid',40736),(10357,'trends','itemid',40736),(10358,'trends_uint','itemid',40736),(10359,'events','itemid',27509),(10360,'history','itemid',27509),(10361,'history_log','itemid',27509),(10362,'history_str','itemid',27509),(10363,'history_text','itemid',27509),(10364,'history_uint','itemid',27509),(10365,'trends','itemid',27509),(10366,'trends_uint','itemid',27509),(10367,'events','itemid',27510),(10368,'history','itemid',27510),(10369,'history_log','itemid',27510),(10370,'history_str','itemid',27510),(10371,'history_text','itemid',27510),(10372,'history_uint','itemid',27510),(10373,'trends','itemid',27510),(10374,'trends_uint','itemid',27510),(10375,'events','itemid',43784),(10376,'history','itemid',43784),(10377,'history_log','itemid',43784),(10378,'history_str','itemid',43784),(10379,'history_text','itemid',43784),(10380,'history_uint','itemid',43784),(10381,'trends','itemid',43784),(10382,'trends_uint','itemid',43784),(10383,'events','itemid',27508),(10384,'history','itemid',27508),(10385,'history_log','itemid',27508),(10386,'history_str','itemid',27508),(10387,'history_text','itemid',27508),(10388,'history_uint','itemid',27508),(10389,'trends','itemid',27508),(10390,'trends_uint','itemid',27508),(10391,'events','itemid',40737),(10392,'history','itemid',40737),(10393,'history_log','itemid',40737),(10394,'history_str','itemid',40737),(10395,'history_text','itemid',40737),(10396,'history_uint','itemid',40737),(10397,'trends','itemid',40737),(10398,'trends_uint','itemid',40737),(10399,'events','itemid',40738),(10400,'history','itemid',40738),(10401,'history_log','itemid',40738),(10402,'history_str','itemid',40738),(10403,'history_text','itemid',40738),(10404,'history_uint','itemid',40738),(10405,'trends','itemid',40738),(10406,'trends_uint','itemid',40738),(10407,'events','itemid',40740),(10408,'history','itemid',40740),(10409,'history_log','itemid',40740),(10410,'history_str','itemid',40740),(10411,'history_text','itemid',40740),(10412,'history_uint','itemid',40740),(10413,'trends','itemid',40740),(10414,'trends_uint','itemid',40740),(10415,'events','itemid',40739),(10416,'history','itemid',40739),(10417,'history_log','itemid',40739),(10418,'history_str','itemid',40739),(10419,'history_text','itemid',40739),(10420,'history_uint','itemid',40739),(10421,'trends','itemid',40739),(10422,'trends_uint','itemid',40739),(10423,'events','itemid',30106),(10424,'history','itemid',30106),(10425,'history_log','itemid',30106),(10426,'history_str','itemid',30106),(10427,'history_text','itemid',30106),(10428,'history_uint','itemid',30106),(10429,'trends','itemid',30106),(10430,'trends_uint','itemid',30106),(10431,'events','itemid',40741),(10432,'history','itemid',40741),(10433,'history_log','itemid',40741),(10434,'history_str','itemid',40741),(10435,'history_text','itemid',40741),(10436,'history_uint','itemid',40741),(10437,'trends','itemid',40741),(10438,'trends_uint','itemid',40741),(10439,'events','itemid',40752),(10440,'history','itemid',40752),(10441,'history_log','itemid',40752),(10442,'history_str','itemid',40752),(10443,'history_text','itemid',40752),(10444,'history_uint','itemid',40752),(10445,'trends','itemid',40752),(10446,'trends_uint','itemid',40752),(10447,'events','itemid',40753),(10448,'history','itemid',40753),(10449,'history_log','itemid',40753),(10450,'history_str','itemid',40753),(10451,'history_text','itemid',40753),(10452,'history_uint','itemid',40753),(10453,'trends','itemid',40753),(10454,'trends_uint','itemid',40753),(10455,'events','itemid',40754),(10456,'history','itemid',40754),(10457,'history_log','itemid',40754),(10458,'history_str','itemid',40754),(10459,'history_text','itemid',40754),(10460,'history_uint','itemid',40754),(10461,'trends','itemid',40754),(10462,'trends_uint','itemid',40754),(10463,'events','itemid',40755),(10464,'history','itemid',40755),(10465,'history_log','itemid',40755),(10466,'history_str','itemid',40755),(10467,'history_text','itemid',40755),(10468,'history_uint','itemid',40755),(10469,'trends','itemid',40755),(10470,'trends_uint','itemid',40755),(10471,'events','itemid',40756),(10472,'history','itemid',40756),(10473,'history_log','itemid',40756),(10474,'history_str','itemid',40756),(10475,'history_text','itemid',40756),(10476,'history_uint','itemid',40756),(10477,'trends','itemid',40756),(10478,'trends_uint','itemid',40756),(10479,'events','itemid',27547),(10480,'history','itemid',27547),(10481,'history_log','itemid',27547),(10482,'history_str','itemid',27547),(10483,'history_text','itemid',27547),(10484,'history_uint','itemid',27547),(10485,'trends','itemid',27547),(10486,'trends_uint','itemid',27547),(10487,'events','itemid',40757),(10488,'history','itemid',40757),(10489,'history_log','itemid',40757),(10490,'history_str','itemid',40757),(10491,'history_text','itemid',40757),(10492,'history_uint','itemid',40757),(10493,'trends','itemid',40757),(10494,'trends_uint','itemid',40757),(10495,'events','itemid',27544),(10496,'history','itemid',27544),(10497,'history_log','itemid',27544),(10498,'history_str','itemid',27544),(10499,'history_text','itemid',27544),(10500,'history_uint','itemid',27544),(10501,'trends','itemid',27544),(10502,'trends_uint','itemid',27544),(10503,'events','itemid',27546),(10504,'history','itemid',27546),(10505,'history_log','itemid',27546),(10506,'history_str','itemid',27546),(10507,'history_text','itemid',27546),(10508,'history_uint','itemid',27546),(10509,'trends','itemid',27546),(10510,'trends_uint','itemid',27546),(10511,'events','itemid',27545),(10512,'history','itemid',27545),(10513,'history_log','itemid',27545),(10514,'history_str','itemid',27545),(10515,'history_text','itemid',27545),(10516,'history_uint','itemid',27545),(10517,'trends','itemid',27545),(10518,'trends_uint','itemid',27545),(10519,'events','itemid',43785),(10520,'history','itemid',43785),(10521,'history_log','itemid',43785),(10522,'history_str','itemid',43785),(10523,'history_text','itemid',43785),(10524,'history_uint','itemid',43785),(10525,'trends','itemid',43785),(10526,'trends_uint','itemid',43785),(10527,'events','itemid',27543),(10528,'history','itemid',27543),(10529,'history_log','itemid',27543),(10530,'history_str','itemid',27543),(10531,'history_text','itemid',27543),(10532,'history_uint','itemid',27543),(10533,'trends','itemid',27543),(10534,'trends_uint','itemid',27543),(10535,'events','itemid',40758),(10536,'history','itemid',40758),(10537,'history_log','itemid',40758),(10538,'history_str','itemid',40758),(10539,'history_text','itemid',40758),(10540,'history_uint','itemid',40758),(10541,'trends','itemid',40758),(10542,'trends_uint','itemid',40758),(10543,'events','itemid',40759),(10544,'history','itemid',40759),(10545,'history_log','itemid',40759),(10546,'history_str','itemid',40759),(10547,'history_text','itemid',40759),(10548,'history_uint','itemid',40759),(10549,'trends','itemid',40759),(10550,'trends_uint','itemid',40759),(10551,'events','itemid',40761),(10552,'history','itemid',40761),(10553,'history_log','itemid',40761),(10554,'history_str','itemid',40761),(10555,'history_text','itemid',40761),(10556,'history_uint','itemid',40761),(10557,'trends','itemid',40761),(10558,'trends_uint','itemid',40761),(10559,'events','itemid',40760),(10560,'history','itemid',40760),(10561,'history_log','itemid',40760),(10562,'history_str','itemid',40760),(10563,'history_text','itemid',40760),(10564,'history_uint','itemid',40760),(10565,'trends','itemid',40760),(10566,'trends_uint','itemid',40760),(10567,'events','itemid',40762),(10568,'history','itemid',40762),(10569,'history_log','itemid',40762),(10570,'history_str','itemid',40762),(10571,'history_text','itemid',40762),(10572,'history_uint','itemid',40762),(10573,'trends','itemid',40762),(10574,'trends_uint','itemid',40762),(10575,'events','itemid',40775),(10576,'history','itemid',40775),(10577,'history_log','itemid',40775),(10578,'history_str','itemid',40775),(10579,'history_text','itemid',40775),(10580,'history_uint','itemid',40775),(10581,'trends','itemid',40775),(10582,'trends_uint','itemid',40775),(10583,'events','itemid',40780),(10584,'history','itemid',40780),(10585,'history_log','itemid',40780),(10586,'history_str','itemid',40780),(10587,'history_text','itemid',40780),(10588,'history_uint','itemid',40780),(10589,'trends','itemid',40780),(10590,'trends_uint','itemid',40780),(10591,'events','itemid',40784),(10592,'history','itemid',40784),(10593,'history_log','itemid',40784),(10594,'history_str','itemid',40784),(10595,'history_text','itemid',40784),(10596,'history_uint','itemid',40784),(10597,'trends','itemid',40784),(10598,'trends_uint','itemid',40784),(10599,'events','itemid',27585),(10600,'history','itemid',27585),(10601,'history_log','itemid',27585),(10602,'history_str','itemid',27585),(10603,'history_text','itemid',27585),(10604,'history_uint','itemid',27585),(10605,'trends','itemid',27585),(10606,'trends_uint','itemid',27585),(10607,'events','itemid',27584),(10608,'history','itemid',27584),(10609,'history_log','itemid',27584),(10610,'history_str','itemid',27584),(10611,'history_text','itemid',27584),(10612,'history_uint','itemid',27584),(10613,'trends','itemid',27584),(10614,'trends_uint','itemid',27584),(10615,'events','itemid',40783),(10616,'history','itemid',40783),(10617,'history_log','itemid',40783),(10618,'history_str','itemid',40783),(10619,'history_text','itemid',40783),(10620,'history_uint','itemid',40783),(10621,'trends','itemid',40783),(10622,'trends_uint','itemid',40783),(10623,'events','itemid',40782),(10624,'history','itemid',40782),(10625,'history_log','itemid',40782),(10626,'history_str','itemid',40782),(10627,'history_text','itemid',40782),(10628,'history_uint','itemid',40782),(10629,'trends','itemid',40782),(10630,'trends_uint','itemid',40782),(10631,'events','itemid',27586),(10632,'history','itemid',27586),(10633,'history_log','itemid',27586),(10634,'history_str','itemid',27586),(10635,'history_text','itemid',27586),(10636,'history_uint','itemid',27586),(10637,'trends','itemid',27586),(10638,'trends_uint','itemid',27586),(10639,'events','itemid',40781),(10640,'history','itemid',40781),(10641,'history_log','itemid',40781),(10642,'history_str','itemid',40781),(10643,'history_text','itemid',40781),(10644,'history_uint','itemid',40781),(10645,'trends','itemid',40781),(10646,'trends_uint','itemid',40781),(10647,'events','itemid',27579),(10648,'history','itemid',27579),(10649,'history_log','itemid',27579),(10650,'history_str','itemid',27579),(10651,'history_text','itemid',27579),(10652,'history_uint','itemid',27579),(10653,'trends','itemid',27579),(10654,'trends_uint','itemid',27579),(10655,'events','itemid',27583),(10656,'history','itemid',27583),(10657,'history_log','itemid',27583),(10658,'history_str','itemid',27583),(10659,'history_text','itemid',27583),(10660,'history_uint','itemid',27583),(10661,'trends','itemid',27583),(10662,'trends_uint','itemid',27583),(10663,'events','itemid',27582),(10664,'history','itemid',27582),(10665,'history_log','itemid',27582),(10666,'history_str','itemid',27582),(10667,'history_text','itemid',27582),(10668,'history_uint','itemid',27582),(10669,'trends','itemid',27582),(10670,'trends_uint','itemid',27582),(10671,'events','itemid',43786),(10672,'history','itemid',43786),(10673,'history_log','itemid',43786),(10674,'history_str','itemid',43786),(10675,'history_text','itemid',43786),(10676,'history_uint','itemid',43786),(10677,'trends','itemid',43786),(10678,'trends_uint','itemid',43786),(10679,'events','itemid',27580),(10680,'history','itemid',27580),(10681,'history_log','itemid',27580),(10682,'history_str','itemid',27580),(10683,'history_text','itemid',27580),(10684,'history_uint','itemid',27580),(10685,'trends','itemid',27580),(10686,'trends_uint','itemid',27580),(10687,'events','itemid',40779),(10688,'history','itemid',40779),(10689,'history_log','itemid',40779),(10690,'history_str','itemid',40779),(10691,'history_text','itemid',40779),(10692,'history_uint','itemid',40779),(10693,'trends','itemid',40779),(10694,'trends_uint','itemid',40779),(10695,'events','itemid',40778),(10696,'history','itemid',40778),(10697,'history_log','itemid',40778),(10698,'history_str','itemid',40778),(10699,'history_text','itemid',40778),(10700,'history_uint','itemid',40778),(10701,'trends','itemid',40778),(10702,'trends_uint','itemid',40778),(10703,'events','itemid',40776),(10704,'history','itemid',40776),(10705,'history_log','itemid',40776),(10706,'history_str','itemid',40776),(10707,'history_text','itemid',40776),(10708,'history_uint','itemid',40776),(10709,'trends','itemid',40776),(10710,'trends_uint','itemid',40776),(10711,'events','itemid',40777),(10712,'history','itemid',40777),(10713,'history_log','itemid',40777),(10714,'history_str','itemid',40777),(10715,'history_text','itemid',40777),(10716,'history_uint','itemid',40777),(10717,'trends','itemid',40777),(10718,'trends_uint','itemid',40777),(10719,'events','itemid',30109),(10720,'history','itemid',30109),(10721,'history_log','itemid',30109),(10722,'history_str','itemid',30109),(10723,'history_text','itemid',30109),(10724,'history_uint','itemid',30109),(10725,'trends','itemid',30109),(10726,'trends_uint','itemid',30109),(10727,'events','itemid',40785),(10728,'history','itemid',40785),(10729,'history_log','itemid',40785),(10730,'history_str','itemid',40785),(10731,'history_text','itemid',40785),(10732,'history_uint','itemid',40785),(10733,'trends','itemid',40785),(10734,'trends_uint','itemid',40785),(10735,'events','itemid',40821),(10736,'history','itemid',40821),(10737,'history_log','itemid',40821),(10738,'history_str','itemid',40821),(10739,'history_text','itemid',40821),(10740,'history_uint','itemid',40821),(10741,'trends','itemid',40821),(10742,'trends_uint','itemid',40821),(10743,'events','itemid',40822),(10744,'history','itemid',40822),(10745,'history_log','itemid',40822),(10746,'history_str','itemid',40822),(10747,'history_text','itemid',40822),(10748,'history_uint','itemid',40822),(10749,'trends','itemid',40822),(10750,'trends_uint','itemid',40822),(10751,'events','itemid',40823),(10752,'history','itemid',40823),(10753,'history_log','itemid',40823),(10754,'history_str','itemid',40823),(10755,'history_text','itemid',40823),(10756,'history_uint','itemid',40823),(10757,'trends','itemid',40823),(10758,'trends_uint','itemid',40823),(10759,'events','itemid',40824),(10760,'history','itemid',40824),(10761,'history_log','itemid',40824),(10762,'history_str','itemid',40824),(10763,'history_text','itemid',40824),(10764,'history_uint','itemid',40824),(10765,'trends','itemid',40824),(10766,'trends_uint','itemid',40824),(10767,'events','itemid',40825),(10768,'history','itemid',40825),(10769,'history_log','itemid',40825),(10770,'history_str','itemid',40825),(10771,'history_text','itemid',40825),(10772,'history_uint','itemid',40825),(10773,'trends','itemid',40825),(10774,'trends_uint','itemid',40825),(10775,'events','itemid',40826),(10776,'history','itemid',40826),(10777,'history_log','itemid',40826),(10778,'history_str','itemid',40826),(10779,'history_text','itemid',40826),(10780,'history_uint','itemid',40826),(10781,'trends','itemid',40826),(10782,'trends_uint','itemid',40826),(10783,'events','itemid',43788),(10784,'history','itemid',43788),(10785,'history_log','itemid',43788),(10786,'history_str','itemid',43788),(10787,'history_text','itemid',43788),(10788,'history_uint','itemid',43788),(10789,'trends','itemid',43788),(10790,'trends_uint','itemid',43788),(10791,'events','itemid',40827),(10792,'history','itemid',40827),(10793,'history_log','itemid',40827),(10794,'history_str','itemid',40827),(10795,'history_text','itemid',40827),(10796,'history_uint','itemid',40827),(10797,'trends','itemid',40827),(10798,'trends_uint','itemid',40827),(10799,'events','itemid',40828),(10800,'history','itemid',40828),(10801,'history_log','itemid',40828),(10802,'history_str','itemid',40828),(10803,'history_text','itemid',40828),(10804,'history_uint','itemid',40828),(10805,'trends','itemid',40828),(10806,'trends_uint','itemid',40828),(10807,'events','itemid',40830),(10808,'history','itemid',40830),(10809,'history_log','itemid',40830),(10810,'history_str','itemid',40830),(10811,'history_text','itemid',40830),(10812,'history_uint','itemid',40830),(10813,'trends','itemid',40830),(10814,'trends_uint','itemid',40830),(10815,'events','itemid',40829),(10816,'history','itemid',40829),(10817,'history_log','itemid',40829),(10818,'history_str','itemid',40829),(10819,'history_text','itemid',40829),(10820,'history_uint','itemid',40829),(10821,'trends','itemid',40829),(10822,'trends_uint','itemid',40829),(10823,'events','itemid',40831),(10824,'history','itemid',40831),(10825,'history_log','itemid',40831),(10826,'history_str','itemid',40831),(10827,'history_text','itemid',40831),(10828,'history_uint','itemid',40831),(10829,'trends','itemid',40831),(10830,'trends_uint','itemid',40831),(10831,'events','itemid',40629),(10832,'history','itemid',40629),(10833,'history_log','itemid',40629),(10834,'history_str','itemid',40629),(10835,'history_text','itemid',40629),(10836,'history_uint','itemid',40629),(10837,'trends','itemid',40629),(10838,'trends_uint','itemid',40629),(10839,'events','itemid',40630),(10840,'history','itemid',40630),(10841,'history_log','itemid',40630),(10842,'history_str','itemid',40630),(10843,'history_text','itemid',40630),(10844,'history_uint','itemid',40630),(10845,'trends','itemid',40630),(10846,'trends_uint','itemid',40630),(10847,'events','itemid',40631),(10848,'history','itemid',40631),(10849,'history_log','itemid',40631),(10850,'history_str','itemid',40631),(10851,'history_text','itemid',40631),(10852,'history_uint','itemid',40631),(10853,'trends','itemid',40631),(10854,'trends_uint','itemid',40631),(10855,'events','itemid',40632),(10856,'history','itemid',40632),(10857,'history_log','itemid',40632),(10858,'history_str','itemid',40632),(10859,'history_text','itemid',40632),(10860,'history_uint','itemid',40632),(10861,'trends','itemid',40632),(10862,'trends_uint','itemid',40632),(10863,'events','itemid',40633),(10864,'history','itemid',40633),(10865,'history_log','itemid',40633),(10866,'history_str','itemid',40633),(10867,'history_text','itemid',40633),(10868,'history_uint','itemid',40633),(10869,'trends','itemid',40633),(10870,'trends_uint','itemid',40633),(10871,'events','itemid',40634),(10872,'history','itemid',40634),(10873,'history_log','itemid',40634),(10874,'history_str','itemid',40634),(10875,'history_text','itemid',40634),(10876,'history_uint','itemid',40634),(10877,'trends','itemid',40634),(10878,'trends_uint','itemid',40634),(10879,'events','itemid',40635),(10880,'history','itemid',40635),(10881,'history_log','itemid',40635),(10882,'history_str','itemid',40635),(10883,'history_text','itemid',40635),(10884,'history_uint','itemid',40635),(10885,'trends','itemid',40635),(10886,'trends_uint','itemid',40635),(10887,'events','itemid',40636),(10888,'history','itemid',40636),(10889,'history_log','itemid',40636),(10890,'history_str','itemid',40636),(10891,'history_text','itemid',40636),(10892,'history_uint','itemid',40636),(10893,'trends','itemid',40636),(10894,'trends_uint','itemid',40636),(10895,'events','itemid',43782),(10896,'history','itemid',43782),(10897,'history_log','itemid',43782),(10898,'history_str','itemid',43782),(10899,'history_text','itemid',43782),(10900,'history_uint','itemid',43782),(10901,'trends','itemid',43782),(10902,'trends_uint','itemid',43782),(10903,'events','itemid',40637),(10904,'history','itemid',40637),(10905,'history_log','itemid',40637),(10906,'history_str','itemid',40637),(10907,'history_text','itemid',40637),(10908,'history_uint','itemid',40637),(10909,'trends','itemid',40637),(10910,'trends_uint','itemid',40637),(10911,'events','itemid',40638),(10912,'history','itemid',40638),(10913,'history_log','itemid',40638),(10914,'history_str','itemid',40638),(10915,'history_text','itemid',40638),(10916,'history_uint','itemid',40638),(10917,'trends','itemid',40638),(10918,'trends_uint','itemid',40638),(10919,'events','itemid',40641),(10920,'history','itemid',40641),(10921,'history_log','itemid',40641),(10922,'history_str','itemid',40641),(10923,'history_text','itemid',40641),(10924,'history_uint','itemid',40641),(10925,'trends','itemid',40641),(10926,'trends_uint','itemid',40641),(10927,'events','itemid',40639),(10928,'history','itemid',40639),(10929,'history_log','itemid',40639),(10930,'history_str','itemid',40639),(10931,'history_text','itemid',40639),(10932,'history_uint','itemid',40639),(10933,'trends','itemid',40639),(10934,'trends_uint','itemid',40639),(10935,'events','itemid',40640),(10936,'history','itemid',40640),(10937,'history_log','itemid',40640),(10938,'history_str','itemid',40640),(10939,'history_text','itemid',40640),(10940,'history_uint','itemid',40640),(10941,'trends','itemid',40640),(10942,'trends_uint','itemid',40640),(10943,'events','itemid',40642),(10944,'history','itemid',40642),(10945,'history_log','itemid',40642),(10946,'history_str','itemid',40642),(10947,'history_text','itemid',40642),(10948,'history_uint','itemid',40642),(10949,'trends','itemid',40642),(10950,'trends_uint','itemid',40642),(10951,'events','itemid',42631),(10952,'history','itemid',42631),(10953,'history_log','itemid',42631),(10954,'history_str','itemid',42631),(10955,'history_text','itemid',42631),(10956,'history_uint','itemid',42631),(10957,'trends','itemid',42631),(10958,'trends_uint','itemid',42631),(10959,'events','itemid',42632),(10960,'history','itemid',42632),(10961,'history_log','itemid',42632),(10962,'history_str','itemid',42632),(10963,'history_text','itemid',42632),(10964,'history_uint','itemid',42632),(10965,'trends','itemid',42632),(10966,'trends_uint','itemid',42632),(10967,'events','itemid',42633),(10968,'history','itemid',42633),(10969,'history_log','itemid',42633),(10970,'history_str','itemid',42633),(10971,'history_text','itemid',42633),(10972,'history_uint','itemid',42633),(10973,'trends','itemid',42633),(10974,'trends_uint','itemid',42633),(10975,'events','itemid',42634),(10976,'history','itemid',42634),(10977,'history_log','itemid',42634),(10978,'history_str','itemid',42634),(10979,'history_text','itemid',42634),(10980,'history_uint','itemid',42634),(10981,'trends','itemid',42634),(10982,'trends_uint','itemid',42634),(10983,'events','itemid',42635),(10984,'history','itemid',42635),(10985,'history_log','itemid',42635),(10986,'history_str','itemid',42635),(10987,'history_text','itemid',42635),(10988,'history_uint','itemid',42635),(10989,'trends','itemid',42635),(10990,'trends_uint','itemid',42635),(10991,'events','itemid',42636),(10992,'history','itemid',42636),(10993,'history_log','itemid',42636),(10994,'history_str','itemid',42636),(10995,'history_text','itemid',42636),(10996,'history_uint','itemid',42636),(10997,'trends','itemid',42636),(10998,'trends_uint','itemid',42636),(10999,'events','itemid',28345),(11000,'history','itemid',28345),(11001,'history_log','itemid',28345),(11002,'history_str','itemid',28345),(11003,'history_text','itemid',28345),(11004,'history_uint','itemid',28345),(11005,'trends','itemid',28345),(11006,'trends_uint','itemid',28345),(11007,'events','itemid',28342),(11008,'history','itemid',28342),(11009,'history_log','itemid',28342),(11010,'history_str','itemid',28342),(11011,'history_text','itemid',28342),(11012,'history_uint','itemid',28342),(11013,'trends','itemid',28342),(11014,'trends_uint','itemid',28342),(11015,'events','itemid',28344),(11016,'history','itemid',28344),(11017,'history_log','itemid',28344),(11018,'history_str','itemid',28344),(11019,'history_text','itemid',28344),(11020,'history_uint','itemid',28344),(11021,'trends','itemid',28344),(11022,'trends_uint','itemid',28344),(11023,'events','itemid',43895),(11024,'history','itemid',43895),(11025,'history_log','itemid',43895),(11026,'history_str','itemid',43895),(11027,'history_text','itemid',43895),(11028,'history_uint','itemid',43895),(11029,'trends','itemid',43895),(11030,'trends_uint','itemid',43895),(11031,'events','itemid',42637),(11032,'history','itemid',42637),(11033,'history_log','itemid',42637),(11034,'history_str','itemid',42637),(11035,'history_text','itemid',42637),(11036,'history_uint','itemid',42637),(11037,'trends','itemid',42637),(11038,'trends_uint','itemid',42637),(11039,'events','itemid',42638),(11040,'history','itemid',42638),(11041,'history_log','itemid',42638),(11042,'history_str','itemid',42638),(11043,'history_text','itemid',42638),(11044,'history_uint','itemid',42638),(11045,'trends','itemid',42638),(11046,'trends_uint','itemid',42638),(11047,'events','itemid',42640),(11048,'history','itemid',42640),(11049,'history_log','itemid',42640),(11050,'history_str','itemid',42640),(11051,'history_text','itemid',42640),(11052,'history_uint','itemid',42640),(11053,'trends','itemid',42640),(11054,'trends_uint','itemid',42640),(11055,'events','itemid',42639),(11056,'history','itemid',42639),(11057,'history_log','itemid',42639),(11058,'history_str','itemid',42639),(11059,'history_text','itemid',42639),(11060,'history_uint','itemid',42639),(11061,'trends','itemid',42639),(11062,'trends_uint','itemid',42639),(11063,'events','itemid',28341),(11064,'history','itemid',28341),(11065,'history_log','itemid',28341),(11066,'history_str','itemid',28341),(11067,'history_text','itemid',28341),(11068,'history_uint','itemid',28341),(11069,'trends','itemid',28341),(11070,'trends_uint','itemid',28341),(11071,'events','itemid',30141),(11072,'history','itemid',30141),(11073,'history_log','itemid',30141),(11074,'history_str','itemid',30141),(11075,'history_text','itemid',30141),(11076,'history_uint','itemid',30141),(11077,'trends','itemid',30141),(11078,'trends_uint','itemid',30141),(11079,'events','itemid',42641),(11080,'history','itemid',42641),(11081,'history_log','itemid',42641),(11082,'history_str','itemid',42641),(11083,'history_text','itemid',42641),(11084,'history_uint','itemid',42641),(11085,'trends','itemid',42641),(11086,'trends_uint','itemid',42641),(11087,'events','itemid',42620),(11088,'history','itemid',42620),(11089,'history_log','itemid',42620),(11090,'history_str','itemid',42620),(11091,'history_text','itemid',42620),(11092,'history_uint','itemid',42620),(11093,'trends','itemid',42620),(11094,'trends_uint','itemid',42620),(11095,'events','itemid',42621),(11096,'history','itemid',42621),(11097,'history_log','itemid',42621),(11098,'history_str','itemid',42621),(11099,'history_text','itemid',42621),(11100,'history_uint','itemid',42621),(11101,'trends','itemid',42621),(11102,'trends_uint','itemid',42621),(11103,'events','itemid',42622),(11104,'history','itemid',42622),(11105,'history_log','itemid',42622),(11106,'history_str','itemid',42622),(11107,'history_text','itemid',42622),(11108,'history_uint','itemid',42622),(11109,'trends','itemid',42622),(11110,'trends_uint','itemid',42622),(11111,'events','itemid',42623),(11112,'history','itemid',42623),(11113,'history_log','itemid',42623),(11114,'history_str','itemid',42623),(11115,'history_text','itemid',42623),(11116,'history_uint','itemid',42623),(11117,'trends','itemid',42623),(11118,'trends_uint','itemid',42623),(11119,'events','itemid',42624),(11120,'history','itemid',42624),(11121,'history_log','itemid',42624),(11122,'history_str','itemid',42624),(11123,'history_text','itemid',42624),(11124,'history_uint','itemid',42624),(11125,'trends','itemid',42624),(11126,'trends_uint','itemid',42624),(11127,'events','itemid',42625),(11128,'history','itemid',42625),(11129,'history_log','itemid',42625),(11130,'history_str','itemid',42625),(11131,'history_text','itemid',42625),(11132,'history_uint','itemid',42625),(11133,'trends','itemid',42625),(11134,'trends_uint','itemid',42625),(11135,'events','itemid',43890),(11136,'history','itemid',43890),(11137,'history_log','itemid',43890),(11138,'history_str','itemid',43890),(11139,'history_text','itemid',43890),(11140,'history_uint','itemid',43890),(11141,'trends','itemid',43890),(11142,'trends_uint','itemid',43890),(11143,'events','itemid',42626),(11144,'history','itemid',42626),(11145,'history_log','itemid',42626),(11146,'history_str','itemid',42626),(11147,'history_text','itemid',42626),(11148,'history_uint','itemid',42626),(11149,'trends','itemid',42626),(11150,'trends_uint','itemid',42626),(11151,'events','itemid',42627),(11152,'history','itemid',42627),(11153,'history_log','itemid',42627),(11154,'history_str','itemid',42627),(11155,'history_text','itemid',42627),(11156,'history_uint','itemid',42627),(11157,'trends','itemid',42627),(11158,'trends_uint','itemid',42627),(11159,'events','itemid',42629),(11160,'history','itemid',42629),(11161,'history_log','itemid',42629),(11162,'history_str','itemid',42629),(11163,'history_text','itemid',42629),(11164,'history_uint','itemid',42629),(11165,'trends','itemid',42629),(11166,'trends_uint','itemid',42629),(11167,'events','itemid',42628),(11168,'history','itemid',42628),(11169,'history_log','itemid',42628),(11170,'history_str','itemid',42628),(11171,'history_text','itemid',42628),(11172,'history_uint','itemid',42628),(11173,'trends','itemid',42628),(11174,'trends_uint','itemid',42628),(11175,'events','itemid',42630),(11176,'history','itemid',42630),(11177,'history_log','itemid',42630),(11178,'history_str','itemid',42630),(11179,'history_text','itemid',42630),(11180,'history_uint','itemid',42630),(11181,'trends','itemid',42630),(11182,'trends_uint','itemid',42630),(11183,'events','itemid',30142),(11184,'history','itemid',30142),(11185,'history_log','itemid',30142),(11186,'history_str','itemid',30142),(11187,'history_text','itemid',30142),(11188,'history_uint','itemid',30142),(11189,'trends','itemid',30142),(11190,'trends_uint','itemid',30142),(11191,'events','itemid',35103),(11192,'history','itemid',35103),(11193,'history_log','itemid',35103),(11194,'history_str','itemid',35103),(11195,'history_text','itemid',35103),(11196,'history_uint','itemid',35103),(11197,'trends','itemid',35103),(11198,'trends_uint','itemid',35103),(11199,'events','itemid',30191),(11200,'history','itemid',30191),(11201,'history_log','itemid',30191),(11202,'history_str','itemid',30191),(11203,'history_text','itemid',30191),(11204,'history_uint','itemid',30191),(11205,'trends','itemid',30191),(11206,'trends_uint','itemid',30191),(11207,'events','itemid',30192),(11208,'history','itemid',30192),(11209,'history_log','itemid',30192),(11210,'history_str','itemid',30192),(11211,'history_text','itemid',30192),(11212,'history_uint','itemid',30192),(11213,'trends','itemid',30192),(11214,'trends_uint','itemid',30192),(11215,'events','itemid',30187),(11216,'history','itemid',30187),(11217,'history_log','itemid',30187),(11218,'history_str','itemid',30187),(11219,'history_text','itemid',30187),(11220,'history_uint','itemid',30187),(11221,'trends','itemid',30187),(11222,'trends_uint','itemid',30187),(11223,'events','itemid',30188),(11224,'history','itemid',30188),(11225,'history_log','itemid',30188),(11226,'history_str','itemid',30188),(11227,'history_text','itemid',30188),(11228,'history_uint','itemid',30188),(11229,'trends','itemid',30188),(11230,'trends_uint','itemid',30188),(11231,'events','itemid',30190),(11232,'history','itemid',30190),(11233,'history_log','itemid',30190),(11234,'history_str','itemid',30190),(11235,'history_text','itemid',30190),(11236,'history_uint','itemid',30190),(11237,'trends','itemid',30190),(11238,'trends_uint','itemid',30190),(11239,'events','itemid',30189),(11240,'history','itemid',30189),(11241,'history_log','itemid',30189),(11242,'history_str','itemid',30189),(11243,'history_text','itemid',30189),(11244,'history_uint','itemid',30189),(11245,'trends','itemid',30189),(11246,'trends_uint','itemid',30189),(11247,'events','itemid',30230),(11248,'history','itemid',30230),(11249,'history_log','itemid',30230),(11250,'history_str','itemid',30230),(11251,'history_text','itemid',30230),(11252,'history_uint','itemid',30230),(11253,'trends','itemid',30230),(11254,'trends_uint','itemid',30230),(11255,'events','itemid',35128),(11256,'history','itemid',35128),(11257,'history_log','itemid',35128),(11258,'history_str','itemid',35128),(11259,'history_text','itemid',35128),(11260,'history_uint','itemid',35128),(11261,'trends','itemid',35128),(11262,'trends_uint','itemid',35128),(11263,'events','itemid',30231),(11264,'history','itemid',30231),(11265,'history_log','itemid',30231),(11266,'history_str','itemid',30231),(11267,'history_text','itemid',30231),(11268,'history_uint','itemid',30231),(11269,'trends','itemid',30231),(11270,'trends_uint','itemid',30231),(11271,'events','itemid',30234),(11272,'history','itemid',30234),(11273,'history_log','itemid',30234),(11274,'history_str','itemid',30234),(11275,'history_text','itemid',30234),(11276,'history_uint','itemid',30234),(11277,'trends','itemid',30234),(11278,'trends_uint','itemid',30234),(11279,'events','itemid',30235),(11280,'history','itemid',30235),(11281,'history_log','itemid',30235),(11282,'history_str','itemid',30235),(11283,'history_text','itemid',30235),(11284,'history_uint','itemid',30235),(11285,'trends','itemid',30235),(11286,'trends_uint','itemid',30235),(11287,'events','itemid',30789),(11288,'history','itemid',30789),(11289,'history_log','itemid',30789),(11290,'history_str','itemid',30789),(11291,'history_text','itemid',30789),(11292,'history_uint','itemid',30789),(11293,'trends','itemid',30789),(11294,'trends_uint','itemid',30789),(11295,'events','itemid',30790),(11296,'history','itemid',30790),(11297,'history_log','itemid',30790),(11298,'history_str','itemid',30790),(11299,'history_text','itemid',30790),(11300,'history_uint','itemid',30790),(11301,'trends','itemid',30790),(11302,'trends_uint','itemid',30790),(11303,'events','itemid',30532),(11304,'history','itemid',30532),(11305,'history_log','itemid',30532),(11306,'history_str','itemid',30532),(11307,'history_text','itemid',30532),(11308,'history_uint','itemid',30532),(11309,'trends','itemid',30532),(11310,'trends_uint','itemid',30532),(11311,'events','itemid',30569),(11312,'history','itemid',30569),(11313,'history_log','itemid',30569),(11314,'history_str','itemid',30569),(11315,'history_text','itemid',30569),(11316,'history_uint','itemid',30569),(11317,'trends','itemid',30569),(11318,'trends_uint','itemid',30569),(11319,'events','itemid',30528),(11320,'history','itemid',30528),(11321,'history_log','itemid',30528),(11322,'history_str','itemid',30528),(11323,'history_text','itemid',30528),(11324,'history_uint','itemid',30528),(11325,'trends','itemid',30528),(11326,'trends_uint','itemid',30528),(11327,'events','itemid',30554),(11328,'history','itemid',30554),(11329,'history_log','itemid',30554),(11330,'history_str','itemid',30554),(11331,'history_text','itemid',30554),(11332,'history_uint','itemid',30554),(11333,'trends','itemid',30554),(11334,'trends_uint','itemid',30554),(11335,'events','itemid',30555),(11336,'history','itemid',30555),(11337,'history_log','itemid',30555),(11338,'history_str','itemid',30555),(11339,'history_text','itemid',30555),(11340,'history_uint','itemid',30555),(11341,'trends','itemid',30555),(11342,'trends_uint','itemid',30555),(11343,'events','itemid',30556),(11344,'history','itemid',30556),(11345,'history_log','itemid',30556),(11346,'history_str','itemid',30556),(11347,'history_text','itemid',30556),(11348,'history_uint','itemid',30556),(11349,'trends','itemid',30556),(11350,'trends_uint','itemid',30556),(11351,'events','itemid',30557),(11352,'history','itemid',30557),(11353,'history_log','itemid',30557),(11354,'history_str','itemid',30557),(11355,'history_text','itemid',30557),(11356,'history_uint','itemid',30557),(11357,'trends','itemid',30557),(11358,'trends_uint','itemid',30557),(11359,'events','itemid',30553),(11360,'history','itemid',30553),(11361,'history_log','itemid',30553),(11362,'history_str','itemid',30553),(11363,'history_text','itemid',30553),(11364,'history_uint','itemid',30553),(11365,'trends','itemid',30553),(11366,'trends_uint','itemid',30553),(11367,'events','itemid',30558),(11368,'history','itemid',30558),(11369,'history_log','itemid',30558),(11370,'history_str','itemid',30558),(11371,'history_text','itemid',30558),(11372,'history_uint','itemid',30558),(11373,'trends','itemid',30558),(11374,'trends_uint','itemid',30558),(11375,'events','itemid',30559),(11376,'history','itemid',30559),(11377,'history_log','itemid',30559),(11378,'history_str','itemid',30559),(11379,'history_text','itemid',30559),(11380,'history_uint','itemid',30559),(11381,'trends','itemid',30559),(11382,'trends_uint','itemid',30559),(11383,'events','itemid',30552),(11384,'history','itemid',30552),(11385,'history_log','itemid',30552),(11386,'history_str','itemid',30552),(11387,'history_text','itemid',30552),(11388,'history_uint','itemid',30552),(11389,'trends','itemid',30552),(11390,'trends_uint','itemid',30552),(11391,'events','itemid',30560),(11392,'history','itemid',30560),(11393,'history_log','itemid',30560),(11394,'history_str','itemid',30560),(11395,'history_text','itemid',30560),(11396,'history_uint','itemid',30560),(11397,'trends','itemid',30560),(11398,'trends_uint','itemid',30560),(11399,'events','itemid',30527),(11400,'history','itemid',30527),(11401,'history_log','itemid',30527),(11402,'history_str','itemid',30527),(11403,'history_text','itemid',30527),(11404,'history_uint','itemid',30527),(11405,'trends','itemid',30527),(11406,'trends_uint','itemid',30527),(11407,'events','itemid',30562),(11408,'history','itemid',30562),(11409,'history_log','itemid',30562),(11410,'history_str','itemid',30562),(11411,'history_text','itemid',30562),(11412,'history_uint','itemid',30562),(11413,'trends','itemid',30562),(11414,'trends_uint','itemid',30562),(11415,'events','itemid',30563),(11416,'history','itemid',30563),(11417,'history_log','itemid',30563),(11418,'history_str','itemid',30563),(11419,'history_text','itemid',30563),(11420,'history_uint','itemid',30563),(11421,'trends','itemid',30563),(11422,'trends_uint','itemid',30563),(11423,'events','itemid',30564),(11424,'history','itemid',30564),(11425,'history_log','itemid',30564),(11426,'history_str','itemid',30564),(11427,'history_text','itemid',30564),(11428,'history_uint','itemid',30564),(11429,'trends','itemid',30564),(11430,'trends_uint','itemid',30564),(11431,'events','itemid',30565),(11432,'history','itemid',30565),(11433,'history_log','itemid',30565),(11434,'history_str','itemid',30565),(11435,'history_text','itemid',30565),(11436,'history_uint','itemid',30565),(11437,'trends','itemid',30565),(11438,'trends_uint','itemid',30565),(11439,'events','itemid',30531),(11440,'history','itemid',30531),(11441,'history_log','itemid',30531),(11442,'history_str','itemid',30531),(11443,'history_text','itemid',30531),(11444,'history_uint','itemid',30531),(11445,'trends','itemid',30531),(11446,'trends_uint','itemid',30531),(11447,'events','itemid',30567),(11448,'history','itemid',30567),(11449,'history_log','itemid',30567),(11450,'history_str','itemid',30567),(11451,'history_text','itemid',30567),(11452,'history_uint','itemid',30567),(11453,'trends','itemid',30567),(11454,'trends_uint','itemid',30567),(11455,'events','itemid',30568),(11456,'history','itemid',30568),(11457,'history_log','itemid',30568),(11458,'history_str','itemid',30568),(11459,'history_text','itemid',30568),(11460,'history_uint','itemid',30568),(11461,'trends','itemid',30568),(11462,'trends_uint','itemid',30568),(11463,'events','itemid',30566),(11464,'history','itemid',30566),(11465,'history_log','itemid',30566),(11466,'history_str','itemid',30566),(11467,'history_text','itemid',30566),(11468,'history_uint','itemid',30566),(11469,'trends','itemid',30566),(11470,'trends_uint','itemid',30566),(11471,'events','itemid',30529),(11472,'history','itemid',30529),(11473,'history_log','itemid',30529),(11474,'history_str','itemid',30529),(11475,'history_text','itemid',30529),(11476,'history_uint','itemid',30529),(11477,'trends','itemid',30529),(11478,'trends_uint','itemid',30529),(11479,'events','itemid',30550),(11480,'history','itemid',30550),(11481,'history_log','itemid',30550),(11482,'history_str','itemid',30550),(11483,'history_text','itemid',30550),(11484,'history_uint','itemid',30550),(11485,'trends','itemid',30550),(11486,'trends_uint','itemid',30550),(11487,'events','itemid',30551),(11488,'history','itemid',30551),(11489,'history_log','itemid',30551),(11490,'history_str','itemid',30551),(11491,'history_text','itemid',30551),(11492,'history_uint','itemid',30551),(11493,'trends','itemid',30551),(11494,'trends_uint','itemid',30551),(11495,'events','itemid',30561),(11496,'history','itemid',30561),(11497,'history_log','itemid',30561),(11498,'history_str','itemid',30561),(11499,'history_text','itemid',30561),(11500,'history_uint','itemid',30561),(11501,'trends','itemid',30561),(11502,'trends_uint','itemid',30561),(11503,'events','itemid',30541),(11504,'history','itemid',30541),(11505,'history_log','itemid',30541),(11506,'history_str','itemid',30541),(11507,'history_text','itemid',30541),(11508,'history_uint','itemid',30541),(11509,'trends','itemid',30541),(11510,'trends_uint','itemid',30541),(11511,'events','itemid',30549),(11512,'history','itemid',30549),(11513,'history_log','itemid',30549),(11514,'history_str','itemid',30549),(11515,'history_text','itemid',30549),(11516,'history_uint','itemid',30549),(11517,'trends','itemid',30549),(11518,'trends_uint','itemid',30549),(11519,'events','itemid',30533),(11520,'history','itemid',30533),(11521,'history_log','itemid',30533),(11522,'history_str','itemid',30533),(11523,'history_text','itemid',30533),(11524,'history_uint','itemid',30533),(11525,'trends','itemid',30533),(11526,'trends_uint','itemid',30533),(11527,'events','itemid',30534),(11528,'history','itemid',30534),(11529,'history_log','itemid',30534),(11530,'history_str','itemid',30534),(11531,'history_text','itemid',30534),(11532,'history_uint','itemid',30534),(11533,'trends','itemid',30534),(11534,'trends_uint','itemid',30534),(11535,'events','itemid',30536),(11536,'history','itemid',30536),(11537,'history_log','itemid',30536),(11538,'history_str','itemid',30536),(11539,'history_text','itemid',30536),(11540,'history_uint','itemid',30536),(11541,'trends','itemid',30536),(11542,'trends_uint','itemid',30536),(11543,'events','itemid',30535),(11544,'history','itemid',30535),(11545,'history_log','itemid',30535),(11546,'history_str','itemid',30535),(11547,'history_text','itemid',30535),(11548,'history_uint','itemid',30535),(11549,'trends','itemid',30535),(11550,'trends_uint','itemid',30535),(11551,'events','itemid',30537),(11552,'history','itemid',30537),(11553,'history_log','itemid',30537),(11554,'history_str','itemid',30537),(11555,'history_text','itemid',30537),(11556,'history_uint','itemid',30537),(11557,'trends','itemid',30537),(11558,'trends_uint','itemid',30537),(11559,'events','itemid',30538),(11560,'history','itemid',30538),(11561,'history_log','itemid',30538),(11562,'history_str','itemid',30538),(11563,'history_text','itemid',30538),(11564,'history_uint','itemid',30538),(11565,'trends','itemid',30538),(11566,'trends_uint','itemid',30538),(11567,'events','itemid',30540),(11568,'history','itemid',30540),(11569,'history_log','itemid',30540),(11570,'history_str','itemid',30540),(11571,'history_text','itemid',30540),(11572,'history_uint','itemid',30540),(11573,'trends','itemid',30540),(11574,'trends_uint','itemid',30540),(11575,'events','itemid',30539),(11576,'history','itemid',30539),(11577,'history_log','itemid',30539),(11578,'history_str','itemid',30539),(11579,'history_text','itemid',30539),(11580,'history_uint','itemid',30539),(11581,'trends','itemid',30539),(11582,'trends_uint','itemid',30539),(11583,'events','itemid',30542),(11584,'history','itemid',30542),(11585,'history_log','itemid',30542),(11586,'history_str','itemid',30542),(11587,'history_text','itemid',30542),(11588,'history_uint','itemid',30542),(11589,'trends','itemid',30542),(11590,'trends_uint','itemid',30542),(11591,'events','itemid',30543),(11592,'history','itemid',30543),(11593,'history_log','itemid',30543),(11594,'history_str','itemid',30543),(11595,'history_text','itemid',30543),(11596,'history_uint','itemid',30543),(11597,'trends','itemid',30543),(11598,'trends_uint','itemid',30543),(11599,'events','itemid',30544),(11600,'history','itemid',30544),(11601,'history_log','itemid',30544),(11602,'history_str','itemid',30544),(11603,'history_text','itemid',30544),(11604,'history_uint','itemid',30544),(11605,'trends','itemid',30544),(11606,'trends_uint','itemid',30544),(11607,'events','itemid',30545),(11608,'history','itemid',30545),(11609,'history_log','itemid',30545),(11610,'history_str','itemid',30545),(11611,'history_text','itemid',30545),(11612,'history_uint','itemid',30545),(11613,'trends','itemid',30545),(11614,'trends_uint','itemid',30545),(11615,'events','itemid',30530),(11616,'history','itemid',30530),(11617,'history_log','itemid',30530),(11618,'history_str','itemid',30530),(11619,'history_text','itemid',30530),(11620,'history_uint','itemid',30530),(11621,'trends','itemid',30530),(11622,'trends_uint','itemid',30530),(11623,'events','itemid',30546),(11624,'history','itemid',30546),(11625,'history_log','itemid',30546),(11626,'history_str','itemid',30546),(11627,'history_text','itemid',30546),(11628,'history_uint','itemid',30546),(11629,'trends','itemid',30546),(11630,'trends_uint','itemid',30546),(11631,'events','itemid',30547),(11632,'history','itemid',30547),(11633,'history_log','itemid',30547),(11634,'history_str','itemid',30547),(11635,'history_text','itemid',30547),(11636,'history_uint','itemid',30547),(11637,'trends','itemid',30547),(11638,'trends_uint','itemid',30547),(11639,'events','itemid',30548),(11640,'history','itemid',30548),(11641,'history_log','itemid',30548),(11642,'history_str','itemid',30548),(11643,'history_text','itemid',30548),(11644,'history_uint','itemid',30548),(11645,'trends','itemid',30548),(11646,'trends_uint','itemid',30548),(11647,'events','itemid',30570),(11648,'history','itemid',30570),(11649,'history_log','itemid',30570),(11650,'history_str','itemid',30570),(11651,'history_text','itemid',30570),(11652,'history_uint','itemid',30570),(11653,'trends','itemid',30570),(11654,'trends_uint','itemid',30570),(11655,'events','itemid',30702),(11656,'history','itemid',30702),(11657,'history_log','itemid',30702),(11658,'history_str','itemid',30702),(11659,'history_text','itemid',30702),(11660,'history_uint','itemid',30702),(11661,'trends','itemid',30702),(11662,'trends_uint','itemid',30702),(11663,'events','itemid',30694),(11664,'history','itemid',30694),(11665,'history_log','itemid',30694),(11666,'history_str','itemid',30694),(11667,'history_text','itemid',30694),(11668,'history_uint','itemid',30694),(11669,'trends','itemid',30694),(11670,'trends_uint','itemid',30694),(11671,'events','itemid',30691),(11672,'history','itemid',30691),(11673,'history_log','itemid',30691),(11674,'history_str','itemid',30691),(11675,'history_text','itemid',30691),(11676,'history_uint','itemid',30691),(11677,'trends','itemid',30691),(11678,'trends_uint','itemid',30691),(11679,'events','itemid',30711),(11680,'history','itemid',30711),(11681,'history_log','itemid',30711),(11682,'history_str','itemid',30711),(11683,'history_text','itemid',30711),(11684,'history_uint','itemid',30711),(11685,'trends','itemid',30711),(11686,'trends_uint','itemid',30711),(11687,'events','itemid',30710),(11688,'history','itemid',30710),(11689,'history_log','itemid',30710),(11690,'history_str','itemid',30710),(11691,'history_text','itemid',30710),(11692,'history_uint','itemid',30710),(11693,'trends','itemid',30710),(11694,'trends_uint','itemid',30710),(11695,'events','itemid',30709),(11696,'history','itemid',30709),(11697,'history_log','itemid',30709),(11698,'history_str','itemid',30709),(11699,'history_text','itemid',30709),(11700,'history_uint','itemid',30709),(11701,'trends','itemid',30709),(11702,'trends_uint','itemid',30709),(11703,'events','itemid',30708),(11704,'history','itemid',30708),(11705,'history_log','itemid',30708),(11706,'history_str','itemid',30708),(11707,'history_text','itemid',30708),(11708,'history_uint','itemid',30708),(11709,'trends','itemid',30708),(11710,'trends_uint','itemid',30708),(11711,'events','itemid',30707),(11712,'history','itemid',30707),(11713,'history_log','itemid',30707),(11714,'history_str','itemid',30707),(11715,'history_text','itemid',30707),(11716,'history_uint','itemid',30707),(11717,'trends','itemid',30707),(11718,'trends_uint','itemid',30707),(11719,'events','itemid',30706),(11720,'history','itemid',30706),(11721,'history_log','itemid',30706),(11722,'history_str','itemid',30706),(11723,'history_text','itemid',30706),(11724,'history_uint','itemid',30706),(11725,'trends','itemid',30706),(11726,'trends_uint','itemid',30706),(11727,'events','itemid',30705),(11728,'history','itemid',30705),(11729,'history_log','itemid',30705),(11730,'history_str','itemid',30705),(11731,'history_text','itemid',30705),(11732,'history_uint','itemid',30705),(11733,'trends','itemid',30705),(11734,'trends_uint','itemid',30705),(11735,'events','itemid',30704),(11736,'history','itemid',30704),(11737,'history_log','itemid',30704),(11738,'history_str','itemid',30704),(11739,'history_text','itemid',30704),(11740,'history_uint','itemid',30704),(11741,'trends','itemid',30704),(11742,'trends_uint','itemid',30704),(11743,'events','itemid',30712),(11744,'history','itemid',30712),(11745,'history_log','itemid',30712),(11746,'history_str','itemid',30712),(11747,'history_text','itemid',30712),(11748,'history_uint','itemid',30712),(11749,'trends','itemid',30712),(11750,'trends_uint','itemid',30712),(11751,'events','itemid',30703),(11752,'history','itemid',30703),(11753,'history_log','itemid',30703),(11754,'history_str','itemid',30703),(11755,'history_text','itemid',30703),(11756,'history_uint','itemid',30703),(11757,'trends','itemid',30703),(11758,'trends_uint','itemid',30703),(11759,'events','itemid',30695),(11760,'history','itemid',30695),(11761,'history_log','itemid',30695),(11762,'history_str','itemid',30695),(11763,'history_text','itemid',30695),(11764,'history_uint','itemid',30695),(11765,'trends','itemid',30695),(11766,'trends_uint','itemid',30695),(11767,'events','itemid',30701),(11768,'history','itemid',30701),(11769,'history_log','itemid',30701),(11770,'history_str','itemid',30701),(11771,'history_text','itemid',30701),(11772,'history_uint','itemid',30701),(11773,'trends','itemid',30701),(11774,'trends_uint','itemid',30701),(11775,'events','itemid',30700),(11776,'history','itemid',30700),(11777,'history_log','itemid',30700),(11778,'history_str','itemid',30700),(11779,'history_text','itemid',30700),(11780,'history_uint','itemid',30700),(11781,'trends','itemid',30700),(11782,'trends_uint','itemid',30700),(11783,'events','itemid',30699),(11784,'history','itemid',30699),(11785,'history_log','itemid',30699),(11786,'history_str','itemid',30699),(11787,'history_text','itemid',30699),(11788,'history_uint','itemid',30699),(11789,'trends','itemid',30699),(11790,'trends_uint','itemid',30699),(11791,'events','itemid',30698),(11792,'history','itemid',30698),(11793,'history_log','itemid',30698),(11794,'history_str','itemid',30698),(11795,'history_text','itemid',30698),(11796,'history_uint','itemid',30698),(11797,'trends','itemid',30698),(11798,'trends_uint','itemid',30698),(11799,'events','itemid',30697),(11800,'history','itemid',30697),(11801,'history_log','itemid',30697),(11802,'history_str','itemid',30697),(11803,'history_text','itemid',30697),(11804,'history_uint','itemid',30697),(11805,'trends','itemid',30697),(11806,'trends_uint','itemid',30697),(11807,'events','itemid',30693),(11808,'history','itemid',30693),(11809,'history_log','itemid',30693),(11810,'history_str','itemid',30693),(11811,'history_text','itemid',30693),(11812,'history_uint','itemid',30693),(11813,'trends','itemid',30693),(11814,'trends_uint','itemid',30693),(11815,'events','itemid',30696),(11816,'history','itemid',30696),(11817,'history_log','itemid',30696),(11818,'history_str','itemid',30696),(11819,'history_text','itemid',30696),(11820,'history_uint','itemid',30696),(11821,'trends','itemid',30696),(11822,'trends_uint','itemid',30696),(11823,'events','itemid',30692),(11824,'history','itemid',30692),(11825,'history_log','itemid',30692),(11826,'history_str','itemid',30692),(11827,'history_text','itemid',30692),(11828,'history_uint','itemid',30692),(11829,'trends','itemid',30692),(11830,'trends_uint','itemid',30692),(11831,'events','itemid',30690),(11832,'history','itemid',30690),(11833,'history_log','itemid',30690),(11834,'history_str','itemid',30690),(11835,'history_text','itemid',30690),(11836,'history_uint','itemid',30690),(11837,'trends','itemid',30690),(11838,'trends_uint','itemid',30690),(11839,'events','itemid',30848),(11840,'history','itemid',30848),(11841,'history_log','itemid',30848),(11842,'history_str','itemid',30848),(11843,'history_text','itemid',30848),(11844,'history_uint','itemid',30848),(11845,'trends','itemid',30848),(11846,'trends_uint','itemid',30848),(11847,'events','itemid',30849),(11848,'history','itemid',30849),(11849,'history_log','itemid',30849),(11850,'history_str','itemid',30849),(11851,'history_text','itemid',30849),(11852,'history_uint','itemid',30849),(11853,'trends','itemid',30849),(11854,'trends_uint','itemid',30849),(11855,'events','itemid',30851),(11856,'history','itemid',30851),(11857,'history_log','itemid',30851),(11858,'history_str','itemid',30851),(11859,'history_text','itemid',30851),(11860,'history_uint','itemid',30851),(11861,'trends','itemid',30851),(11862,'trends_uint','itemid',30851),(11863,'events','itemid',30852),(11864,'history','itemid',30852),(11865,'history_log','itemid',30852),(11866,'history_str','itemid',30852),(11867,'history_text','itemid',30852),(11868,'history_uint','itemid',30852),(11869,'trends','itemid',30852),(11870,'trends_uint','itemid',30852),(11871,'events','itemid',30853),(11872,'history','itemid',30853),(11873,'history_log','itemid',30853),(11874,'history_str','itemid',30853),(11875,'history_text','itemid',30853),(11876,'history_uint','itemid',30853),(11877,'trends','itemid',30853),(11878,'trends_uint','itemid',30853),(11879,'events','itemid',30830),(11880,'history','itemid',30830),(11881,'history_log','itemid',30830),(11882,'history_str','itemid',30830),(11883,'history_text','itemid',30830),(11884,'history_uint','itemid',30830),(11885,'trends','itemid',30830),(11886,'trends_uint','itemid',30830),(11887,'events','itemid',30854),(11888,'history','itemid',30854),(11889,'history_log','itemid',30854),(11890,'history_str','itemid',30854),(11891,'history_text','itemid',30854),(11892,'history_uint','itemid',30854),(11893,'trends','itemid',30854),(11894,'trends_uint','itemid',30854),(11895,'events','itemid',30855),(11896,'history','itemid',30855),(11897,'history_log','itemid',30855),(11898,'history_str','itemid',30855),(11899,'history_text','itemid',30855),(11900,'history_uint','itemid',30855),(11901,'trends','itemid',30855),(11902,'trends_uint','itemid',30855),(11903,'events','itemid',30856),(11904,'history','itemid',30856),(11905,'history_log','itemid',30856),(11906,'history_str','itemid',30856),(11907,'history_text','itemid',30856),(11908,'history_uint','itemid',30856),(11909,'trends','itemid',30856),(11910,'trends_uint','itemid',30856),(11911,'events','itemid',30858),(11912,'history','itemid',30858),(11913,'history_log','itemid',30858),(11914,'history_str','itemid',30858),(11915,'history_text','itemid',30858),(11916,'history_uint','itemid',30858),(11917,'trends','itemid',30858),(11918,'trends_uint','itemid',30858),(11919,'events','itemid',30857),(11920,'history','itemid',30857),(11921,'history_log','itemid',30857),(11922,'history_str','itemid',30857),(11923,'history_text','itemid',30857),(11924,'history_uint','itemid',30857),(11925,'trends','itemid',30857),(11926,'trends_uint','itemid',30857),(11927,'events','itemid',30859),(11928,'history','itemid',30859),(11929,'history_log','itemid',30859),(11930,'history_str','itemid',30859),(11931,'history_text','itemid',30859),(11932,'history_uint','itemid',30859),(11933,'trends','itemid',30859),(11934,'trends_uint','itemid',30859),(11935,'events','itemid',30860),(11936,'history','itemid',30860),(11937,'history_log','itemid',30860),(11938,'history_str','itemid',30860),(11939,'history_text','itemid',30860),(11940,'history_uint','itemid',30860),(11941,'trends','itemid',30860),(11942,'trends_uint','itemid',30860),(11943,'events','itemid',30850),(11944,'history','itemid',30850),(11945,'history_log','itemid',30850),(11946,'history_str','itemid',30850),(11947,'history_text','itemid',30850),(11948,'history_uint','itemid',30850),(11949,'trends','itemid',30850),(11950,'trends_uint','itemid',30850),(11951,'events','itemid',30861),(11952,'history','itemid',30861),(11953,'history_log','itemid',30861),(11954,'history_str','itemid',30861),(11955,'history_text','itemid',30861),(11956,'history_uint','itemid',30861),(11957,'trends','itemid',30861),(11958,'trends_uint','itemid',30861),(11959,'events','itemid',30863),(11960,'history','itemid',30863),(11961,'history_log','itemid',30863),(11962,'history_str','itemid',30863),(11963,'history_text','itemid',30863),(11964,'history_uint','itemid',30863),(11965,'trends','itemid',30863),(11966,'trends_uint','itemid',30863),(11967,'events','itemid',30864),(11968,'history','itemid',30864),(11969,'history_log','itemid',30864),(11970,'history_str','itemid',30864),(11971,'history_text','itemid',30864),(11972,'history_uint','itemid',30864),(11973,'trends','itemid',30864),(11974,'trends_uint','itemid',30864),(11975,'events','itemid',30865),(11976,'history','itemid',30865),(11977,'history_log','itemid',30865),(11978,'history_str','itemid',30865),(11979,'history_text','itemid',30865),(11980,'history_uint','itemid',30865),(11981,'trends','itemid',30865),(11982,'trends_uint','itemid',30865),(11983,'events','itemid',30866),(11984,'history','itemid',30866),(11985,'history_log','itemid',30866),(11986,'history_str','itemid',30866),(11987,'history_text','itemid',30866),(11988,'history_uint','itemid',30866),(11989,'trends','itemid',30866),(11990,'trends_uint','itemid',30866),(11991,'events','itemid',30867),(11992,'history','itemid',30867),(11993,'history_log','itemid',30867),(11994,'history_str','itemid',30867),(11995,'history_text','itemid',30867),(11996,'history_uint','itemid',30867),(11997,'trends','itemid',30867),(11998,'trends_uint','itemid',30867),(11999,'events','itemid',30868),(12000,'history','itemid',30868),(12001,'history_log','itemid',30868),(12002,'history_str','itemid',30868),(12003,'history_text','itemid',30868),(12004,'history_uint','itemid',30868),(12005,'trends','itemid',30868),(12006,'trends_uint','itemid',30868),(12007,'events','itemid',30869),(12008,'history','itemid',30869),(12009,'history_log','itemid',30869),(12010,'history_str','itemid',30869),(12011,'history_text','itemid',30869),(12012,'history_uint','itemid',30869),(12013,'trends','itemid',30869),(12014,'trends_uint','itemid',30869),(12015,'events','itemid',30872),(12016,'history','itemid',30872),(12017,'history_log','itemid',30872),(12018,'history_str','itemid',30872),(12019,'history_text','itemid',30872),(12020,'history_uint','itemid',30872),(12021,'trends','itemid',30872),(12022,'trends_uint','itemid',30872),(12023,'events','itemid',30870),(12024,'history','itemid',30870),(12025,'history_log','itemid',30870),(12026,'history_str','itemid',30870),(12027,'history_text','itemid',30870),(12028,'history_uint','itemid',30870),(12029,'trends','itemid',30870),(12030,'trends_uint','itemid',30870),(12031,'events','itemid',30871),(12032,'history','itemid',30871),(12033,'history_log','itemid',30871),(12034,'history_str','itemid',30871),(12035,'history_text','itemid',30871),(12036,'history_uint','itemid',30871),(12037,'trends','itemid',30871),(12038,'trends_uint','itemid',30871),(12039,'events','itemid',30862),(12040,'history','itemid',30862),(12041,'history_log','itemid',30862),(12042,'history_str','itemid',30862),(12043,'history_text','itemid',30862),(12044,'history_uint','itemid',30862),(12045,'trends','itemid',30862),(12046,'trends_uint','itemid',30862),(12047,'events','itemid',30821),(12048,'history','itemid',30821),(12049,'history_log','itemid',30821),(12050,'history_str','itemid',30821),(12051,'history_text','itemid',30821),(12052,'history_uint','itemid',30821),(12053,'trends','itemid',30821),(12054,'trends_uint','itemid',30821),(12055,'events','itemid',30827),(12056,'history','itemid',30827),(12057,'history_log','itemid',30827),(12058,'history_str','itemid',30827),(12059,'history_text','itemid',30827),(12060,'history_uint','itemid',30827),(12061,'trends','itemid',30827),(12062,'trends_uint','itemid',30827),(12063,'events','itemid',30847),(12064,'history','itemid',30847),(12065,'history_log','itemid',30847),(12066,'history_str','itemid',30847),(12067,'history_text','itemid',30847),(12068,'history_uint','itemid',30847),(12069,'trends','itemid',30847),(12070,'trends_uint','itemid',30847),(12071,'events','itemid',30833),(12072,'history','itemid',30833),(12073,'history_log','itemid',30833),(12074,'history_str','itemid',30833),(12075,'history_text','itemid',30833),(12076,'history_uint','itemid',30833),(12077,'trends','itemid',30833),(12078,'trends_uint','itemid',30833),(12079,'events','itemid',30834),(12080,'history','itemid',30834),(12081,'history_log','itemid',30834),(12082,'history_str','itemid',30834),(12083,'history_text','itemid',30834),(12084,'history_uint','itemid',30834),(12085,'trends','itemid',30834),(12086,'trends_uint','itemid',30834),(12087,'events','itemid',30835),(12088,'history','itemid',30835),(12089,'history_log','itemid',30835),(12090,'history_str','itemid',30835),(12091,'history_text','itemid',30835),(12092,'history_uint','itemid',30835),(12093,'trends','itemid',30835),(12094,'trends_uint','itemid',30835),(12095,'events','itemid',30823),(12096,'history','itemid',30823),(12097,'history_log','itemid',30823),(12098,'history_str','itemid',30823),(12099,'history_text','itemid',30823),(12100,'history_uint','itemid',30823),(12101,'trends','itemid',30823),(12102,'trends_uint','itemid',30823),(12103,'events','itemid',30837),(12104,'history','itemid',30837),(12105,'history_log','itemid',30837),(12106,'history_str','itemid',30837),(12107,'history_text','itemid',30837),(12108,'history_uint','itemid',30837),(12109,'trends','itemid',30837),(12110,'trends_uint','itemid',30837),(12111,'events','itemid',30838),(12112,'history','itemid',30838),(12113,'history_log','itemid',30838),(12114,'history_str','itemid',30838),(12115,'history_text','itemid',30838),(12116,'history_uint','itemid',30838),(12117,'trends','itemid',30838),(12118,'trends_uint','itemid',30838),(12119,'events','itemid',30832),(12120,'history','itemid',30832),(12121,'history_log','itemid',30832),(12122,'history_str','itemid',30832),(12123,'history_text','itemid',30832),(12124,'history_uint','itemid',30832),(12125,'trends','itemid',30832),(12126,'trends_uint','itemid',30832),(12127,'events','itemid',30839),(12128,'history','itemid',30839),(12129,'history_log','itemid',30839),(12130,'history_str','itemid',30839),(12131,'history_text','itemid',30839),(12132,'history_uint','itemid',30839),(12133,'trends','itemid',30839),(12134,'trends_uint','itemid',30839),(12135,'events','itemid',30841),(12136,'history','itemid',30841),(12137,'history_log','itemid',30841),(12138,'history_str','itemid',30841),(12139,'history_text','itemid',30841),(12140,'history_uint','itemid',30841),(12141,'trends','itemid',30841),(12142,'trends_uint','itemid',30841),(12143,'events','itemid',30824),(12144,'history','itemid',30824),(12145,'history_log','itemid',30824),(12146,'history_str','itemid',30824),(12147,'history_text','itemid',30824),(12148,'history_uint','itemid',30824),(12149,'trends','itemid',30824),(12150,'trends_uint','itemid',30824),(12151,'events','itemid',30825),(12152,'history','itemid',30825),(12153,'history_log','itemid',30825),(12154,'history_str','itemid',30825),(12155,'history_text','itemid',30825),(12156,'history_uint','itemid',30825),(12157,'trends','itemid',30825),(12158,'trends_uint','itemid',30825),(12159,'events','itemid',30826),(12160,'history','itemid',30826),(12161,'history_log','itemid',30826),(12162,'history_str','itemid',30826),(12163,'history_text','itemid',30826),(12164,'history_uint','itemid',30826),(12165,'trends','itemid',30826),(12166,'trends_uint','itemid',30826),(12167,'events','itemid',30829),(12168,'history','itemid',30829),(12169,'history_log','itemid',30829),(12170,'history_str','itemid',30829),(12171,'history_text','itemid',30829),(12172,'history_uint','itemid',30829),(12173,'trends','itemid',30829),(12174,'trends_uint','itemid',30829),(12175,'events','itemid',30828),(12176,'history','itemid',30828),(12177,'history_log','itemid',30828),(12178,'history_str','itemid',30828),(12179,'history_text','itemid',30828),(12180,'history_uint','itemid',30828),(12181,'trends','itemid',30828),(12182,'trends_uint','itemid',30828),(12183,'events','itemid',30846),(12184,'history','itemid',30846),(12185,'history_log','itemid',30846),(12186,'history_str','itemid',30846),(12187,'history_text','itemid',30846),(12188,'history_uint','itemid',30846),(12189,'trends','itemid',30846),(12190,'trends_uint','itemid',30846),(12191,'events','itemid',30822),(12192,'history','itemid',30822),(12193,'history_log','itemid',30822),(12194,'history_str','itemid',30822),(12195,'history_text','itemid',30822),(12196,'history_uint','itemid',30822),(12197,'trends','itemid',30822),(12198,'trends_uint','itemid',30822),(12199,'events','itemid',30831),(12200,'history','itemid',30831),(12201,'history_log','itemid',30831),(12202,'history_str','itemid',30831),(12203,'history_text','itemid',30831),(12204,'history_uint','itemid',30831),(12205,'trends','itemid',30831),(12206,'trends_uint','itemid',30831),(12207,'events','itemid',34320),(12208,'history','itemid',34320),(12209,'history_log','itemid',34320),(12210,'history_str','itemid',34320),(12211,'history_text','itemid',34320),(12212,'history_uint','itemid',34320),(12213,'trends','itemid',34320),(12214,'trends_uint','itemid',34320),(12215,'events','itemid',30845),(12216,'history','itemid',30845),(12217,'history_log','itemid',30845),(12218,'history_str','itemid',30845),(12219,'history_text','itemid',30845),(12220,'history_uint','itemid',30845),(12221,'trends','itemid',30845),(12222,'trends_uint','itemid',30845),(12223,'events','itemid',30844),(12224,'history','itemid',30844),(12225,'history_log','itemid',30844),(12226,'history_str','itemid',30844),(12227,'history_text','itemid',30844),(12228,'history_uint','itemid',30844),(12229,'trends','itemid',30844),(12230,'trends_uint','itemid',30844),(12231,'events','itemid',30843),(12232,'history','itemid',30843),(12233,'history_log','itemid',30843),(12234,'history_str','itemid',30843),(12235,'history_text','itemid',30843),(12236,'history_uint','itemid',30843),(12237,'trends','itemid',30843),(12238,'trends_uint','itemid',30843),(12239,'events','itemid',30842),(12240,'history','itemid',30842),(12241,'history_log','itemid',30842),(12242,'history_str','itemid',30842),(12243,'history_text','itemid',30842),(12244,'history_uint','itemid',30842),(12245,'trends','itemid',30842),(12246,'trends_uint','itemid',30842),(12247,'events','itemid',30836),(12248,'history','itemid',30836),(12249,'history_log','itemid',30836),(12250,'history_str','itemid',30836),(12251,'history_text','itemid',30836),(12252,'history_uint','itemid',30836),(12253,'trends','itemid',30836),(12254,'trends_uint','itemid',30836),(12255,'events','itemid',30873),(12256,'history','itemid',30873),(12257,'history_log','itemid',30873),(12258,'history_str','itemid',30873),(12259,'history_text','itemid',30873),(12260,'history_uint','itemid',30873),(12261,'trends','itemid',30873),(12262,'trends_uint','itemid',30873),(12263,'events','itemid',31054),(12264,'history','itemid',31054),(12265,'history_log','itemid',31054),(12266,'history_str','itemid',31054),(12267,'history_text','itemid',31054),(12268,'history_uint','itemid',31054),(12269,'trends','itemid',31054),(12270,'trends_uint','itemid',31054),(12271,'events','itemid',30943),(12272,'history','itemid',30943),(12273,'history_log','itemid',30943),(12274,'history_str','itemid',30943),(12275,'history_text','itemid',30943),(12276,'history_uint','itemid',30943),(12277,'trends','itemid',30943),(12278,'trends_uint','itemid',30943),(12279,'events','itemid',30953),(12280,'history','itemid',30953),(12281,'history_log','itemid',30953),(12282,'history_str','itemid',30953),(12283,'history_text','itemid',30953),(12284,'history_uint','itemid',30953),(12285,'trends','itemid',30953),(12286,'trends_uint','itemid',30953),(12287,'events','itemid',30946),(12288,'history','itemid',30946),(12289,'history_log','itemid',30946),(12290,'history_str','itemid',30946),(12291,'history_text','itemid',30946),(12292,'history_uint','itemid',30946),(12293,'trends','itemid',30946),(12294,'trends_uint','itemid',30946),(12295,'events','itemid',30947),(12296,'history','itemid',30947),(12297,'history_log','itemid',30947),(12298,'history_str','itemid',30947),(12299,'history_text','itemid',30947),(12300,'history_uint','itemid',30947),(12301,'trends','itemid',30947),(12302,'trends_uint','itemid',30947),(12303,'events','itemid',30948),(12304,'history','itemid',30948),(12305,'history_log','itemid',30948),(12306,'history_str','itemid',30948),(12307,'history_text','itemid',30948),(12308,'history_uint','itemid',30948),(12309,'trends','itemid',30948),(12310,'trends_uint','itemid',30948),(12311,'events','itemid',30925),(12312,'history','itemid',30925),(12313,'history_log','itemid',30925),(12314,'history_str','itemid',30925),(12315,'history_text','itemid',30925),(12316,'history_uint','itemid',30925),(12317,'trends','itemid',30925),(12318,'trends_uint','itemid',30925),(12319,'events','itemid',30926),(12320,'history','itemid',30926),(12321,'history_log','itemid',30926),(12322,'history_str','itemid',30926),(12323,'history_text','itemid',30926),(12324,'history_uint','itemid',30926),(12325,'trends','itemid',30926),(12326,'trends_uint','itemid',30926),(12327,'events','itemid',30949),(12328,'history','itemid',30949),(12329,'history_log','itemid',30949),(12330,'history_str','itemid',30949),(12331,'history_text','itemid',30949),(12332,'history_uint','itemid',30949),(12333,'trends','itemid',30949),(12334,'trends_uint','itemid',30949),(12335,'events','itemid',30950),(12336,'history','itemid',30950),(12337,'history_log','itemid',30950),(12338,'history_str','itemid',30950),(12339,'history_text','itemid',30950),(12340,'history_uint','itemid',30950),(12341,'trends','itemid',30950),(12342,'trends_uint','itemid',30950),(12343,'events','itemid',30951),(12344,'history','itemid',30951),(12345,'history_log','itemid',30951),(12346,'history_str','itemid',30951),(12347,'history_text','itemid',30951),(12348,'history_uint','itemid',30951),(12349,'trends','itemid',30951),(12350,'trends_uint','itemid',30951),(12351,'events','itemid',30945),(12352,'history','itemid',30945),(12353,'history_log','itemid',30945),(12354,'history_str','itemid',30945),(12355,'history_text','itemid',30945),(12356,'history_uint','itemid',30945),(12357,'trends','itemid',30945),(12358,'trends_uint','itemid',30945),(12359,'events','itemid',30924),(12360,'history','itemid',30924),(12361,'history_log','itemid',30924),(12362,'history_str','itemid',30924),(12363,'history_text','itemid',30924),(12364,'history_uint','itemid',30924),(12365,'trends','itemid',30924),(12366,'trends_uint','itemid',30924),(12367,'events','itemid',30952),(12368,'history','itemid',30952),(12369,'history_log','itemid',30952),(12370,'history_str','itemid',30952),(12371,'history_text','itemid',30952),(12372,'history_uint','itemid',30952),(12373,'trends','itemid',30952),(12374,'trends_uint','itemid',30952),(12375,'events','itemid',30954),(12376,'history','itemid',30954),(12377,'history_log','itemid',30954),(12378,'history_str','itemid',30954),(12379,'history_text','itemid',30954),(12380,'history_uint','itemid',30954),(12381,'trends','itemid',30954),(12382,'trends_uint','itemid',30954),(12383,'events','itemid',30955),(12384,'history','itemid',30955),(12385,'history_log','itemid',30955),(12386,'history_str','itemid',30955),(12387,'history_text','itemid',30955),(12388,'history_uint','itemid',30955),(12389,'trends','itemid',30955),(12390,'trends_uint','itemid',30955),(12391,'events','itemid',30956),(12392,'history','itemid',30956),(12393,'history_log','itemid',30956),(12394,'history_str','itemid',30956),(12395,'history_text','itemid',30956),(12396,'history_uint','itemid',30956),(12397,'trends','itemid',30956),(12398,'trends_uint','itemid',30956),(12399,'events','itemid',30957),(12400,'history','itemid',30957),(12401,'history_log','itemid',30957),(12402,'history_str','itemid',30957),(12403,'history_text','itemid',30957),(12404,'history_uint','itemid',30957),(12405,'trends','itemid',30957),(12406,'trends_uint','itemid',30957),(12407,'events','itemid',30958),(12408,'history','itemid',30958),(12409,'history_log','itemid',30958),(12410,'history_str','itemid',30958),(12411,'history_text','itemid',30958),(12412,'history_uint','itemid',30958),(12413,'trends','itemid',30958),(12414,'trends_uint','itemid',30958),(12415,'events','itemid',30959),(12416,'history','itemid',30959),(12417,'history_log','itemid',30959),(12418,'history_str','itemid',30959),(12419,'history_text','itemid',30959),(12420,'history_uint','itemid',30959),(12421,'trends','itemid',30959),(12422,'trends_uint','itemid',30959),(12423,'events','itemid',30960),(12424,'history','itemid',30960),(12425,'history_log','itemid',30960),(12426,'history_str','itemid',30960),(12427,'history_text','itemid',30960),(12428,'history_uint','itemid',30960),(12429,'trends','itemid',30960),(12430,'trends_uint','itemid',30960),(12431,'events','itemid',30944),(12432,'history','itemid',30944),(12433,'history_log','itemid',30944),(12434,'history_str','itemid',30944),(12435,'history_text','itemid',30944),(12436,'history_uint','itemid',30944),(12437,'trends','itemid',30944),(12438,'trends_uint','itemid',30944),(12439,'events','itemid',30935),(12440,'history','itemid',30935),(12441,'history_log','itemid',30935),(12442,'history_str','itemid',30935),(12443,'history_text','itemid',30935),(12444,'history_uint','itemid',30935),(12445,'trends','itemid',30935),(12446,'trends_uint','itemid',30935),(12447,'events','itemid',30942),(12448,'history','itemid',30942),(12449,'history_log','itemid',30942),(12450,'history_str','itemid',30942),(12451,'history_text','itemid',30942),(12452,'history_uint','itemid',30942),(12453,'trends','itemid',30942),(12454,'trends_uint','itemid',30942),(12455,'events','itemid',30927),(12456,'history','itemid',30927),(12457,'history_log','itemid',30927),(12458,'history_str','itemid',30927),(12459,'history_text','itemid',30927),(12460,'history_uint','itemid',30927),(12461,'trends','itemid',30927),(12462,'trends_uint','itemid',30927),(12463,'events','itemid',30928),(12464,'history','itemid',30928),(12465,'history_log','itemid',30928),(12466,'history_str','itemid',30928),(12467,'history_text','itemid',30928),(12468,'history_uint','itemid',30928),(12469,'trends','itemid',30928),(12470,'trends_uint','itemid',30928),(12471,'events','itemid',30929),(12472,'history','itemid',30929),(12473,'history_log','itemid',30929),(12474,'history_str','itemid',30929),(12475,'history_text','itemid',30929),(12476,'history_uint','itemid',30929),(12477,'trends','itemid',30929),(12478,'trends_uint','itemid',30929),(12479,'events','itemid',30930),(12480,'history','itemid',30930),(12481,'history_log','itemid',30930),(12482,'history_str','itemid',30930),(12483,'history_text','itemid',30930),(12484,'history_uint','itemid',30930),(12485,'trends','itemid',30930),(12486,'trends_uint','itemid',30930),(12487,'events','itemid',30931),(12488,'history','itemid',30931),(12489,'history_log','itemid',30931),(12490,'history_str','itemid',30931),(12491,'history_text','itemid',30931),(12492,'history_uint','itemid',30931),(12493,'trends','itemid',30931),(12494,'trends_uint','itemid',30931),(12495,'events','itemid',30932),(12496,'history','itemid',30932),(12497,'history_log','itemid',30932),(12498,'history_str','itemid',30932),(12499,'history_text','itemid',30932),(12500,'history_uint','itemid',30932),(12501,'trends','itemid',30932),(12502,'trends_uint','itemid',30932),(12503,'events','itemid',30933),(12504,'history','itemid',30933),(12505,'history_log','itemid',30933),(12506,'history_str','itemid',30933),(12507,'history_text','itemid',30933),(12508,'history_uint','itemid',30933),(12509,'trends','itemid',30933),(12510,'trends_uint','itemid',30933),(12511,'events','itemid',30934),(12512,'history','itemid',30934),(12513,'history_log','itemid',30934),(12514,'history_str','itemid',30934),(12515,'history_text','itemid',30934),(12516,'history_uint','itemid',30934),(12517,'trends','itemid',30934),(12518,'trends_uint','itemid',30934),(12519,'events','itemid',30936),(12520,'history','itemid',30936),(12521,'history_log','itemid',30936),(12522,'history_str','itemid',30936),(12523,'history_text','itemid',30936),(12524,'history_uint','itemid',30936),(12525,'trends','itemid',30936),(12526,'trends_uint','itemid',30936),(12527,'events','itemid',30937),(12528,'history','itemid',30937),(12529,'history_log','itemid',30937),(12530,'history_str','itemid',30937),(12531,'history_text','itemid',30937),(12532,'history_uint','itemid',30937),(12533,'trends','itemid',30937),(12534,'trends_uint','itemid',30937),(12535,'events','itemid',30938),(12536,'history','itemid',30938),(12537,'history_log','itemid',30938),(12538,'history_str','itemid',30938),(12539,'history_text','itemid',30938),(12540,'history_uint','itemid',30938),(12541,'trends','itemid',30938),(12542,'trends_uint','itemid',30938),(12543,'events','itemid',30939),(12544,'history','itemid',30939),(12545,'history_log','itemid',30939),(12546,'history_str','itemid',30939),(12547,'history_text','itemid',30939),(12548,'history_uint','itemid',30939),(12549,'trends','itemid',30939),(12550,'trends_uint','itemid',30939),(12551,'events','itemid',30940),(12552,'history','itemid',30940),(12553,'history_log','itemid',30940),(12554,'history_str','itemid',30940),(12555,'history_text','itemid',30940),(12556,'history_uint','itemid',30940),(12557,'trends','itemid',30940),(12558,'trends_uint','itemid',30940),(12559,'events','itemid',30941),(12560,'history','itemid',30941),(12561,'history_log','itemid',30941),(12562,'history_str','itemid',30941),(12563,'history_text','itemid',30941),(12564,'history_uint','itemid',30941),(12565,'trends','itemid',30941),(12566,'trends_uint','itemid',30941),(12567,'events','itemid',30923),(12568,'history','itemid',30923),(12569,'history_log','itemid',30923),(12570,'history_str','itemid',30923),(12571,'history_text','itemid',30923),(12572,'history_uint','itemid',30923),(12573,'trends','itemid',30923),(12574,'trends_uint','itemid',30923),(12575,'events','itemid',32598),(12576,'history','itemid',32598),(12577,'history_log','itemid',32598),(12578,'history_str','itemid',32598),(12579,'history_text','itemid',32598),(12580,'history_uint','itemid',32598),(12581,'trends','itemid',32598),(12582,'trends_uint','itemid',32598),(12583,'events','itemid',32609),(12584,'history','itemid',32609),(12585,'history_log','itemid',32609),(12586,'history_str','itemid',32609),(12587,'history_text','itemid',32609),(12588,'history_uint','itemid',32609),(12589,'trends','itemid',32609),(12590,'trends_uint','itemid',32609),(12591,'events','itemid',32601),(12592,'history','itemid',32601),(12593,'history_log','itemid',32601),(12594,'history_str','itemid',32601),(12595,'history_text','itemid',32601),(12596,'history_uint','itemid',32601),(12597,'trends','itemid',32601),(12598,'trends_uint','itemid',32601),(12599,'events','itemid',32602),(12600,'history','itemid',32602),(12601,'history_log','itemid',32602),(12602,'history_str','itemid',32602),(12603,'history_text','itemid',32602),(12604,'history_uint','itemid',32602),(12605,'trends','itemid',32602),(12606,'trends_uint','itemid',32602),(12607,'events','itemid',32603),(12608,'history','itemid',32603),(12609,'history_log','itemid',32603),(12610,'history_str','itemid',32603),(12611,'history_text','itemid',32603),(12612,'history_uint','itemid',32603),(12613,'trends','itemid',32603),(12614,'trends_uint','itemid',32603),(12615,'events','itemid',32604),(12616,'history','itemid',32604),(12617,'history_log','itemid',32604),(12618,'history_str','itemid',32604),(12619,'history_text','itemid',32604),(12620,'history_uint','itemid',32604),(12621,'trends','itemid',32604),(12622,'trends_uint','itemid',32604),(12623,'events','itemid',32605),(12624,'history','itemid',32605),(12625,'history_log','itemid',32605),(12626,'history_str','itemid',32605),(12627,'history_text','itemid',32605),(12628,'history_uint','itemid',32605),(12629,'trends','itemid',32605),(12630,'trends_uint','itemid',32605),(12631,'events','itemid',32606),(12632,'history','itemid',32606),(12633,'history_log','itemid',32606),(12634,'history_str','itemid',32606),(12635,'history_text','itemid',32606),(12636,'history_uint','itemid',32606),(12637,'trends','itemid',32606),(12638,'trends_uint','itemid',32606),(12639,'events','itemid',32607),(12640,'history','itemid',32607),(12641,'history_log','itemid',32607),(12642,'history_str','itemid',32607),(12643,'history_text','itemid',32607),(12644,'history_uint','itemid',32607),(12645,'trends','itemid',32607),(12646,'trends_uint','itemid',32607),(12647,'events','itemid',32600),(12648,'history','itemid',32600),(12649,'history_log','itemid',32600),(12650,'history_str','itemid',32600),(12651,'history_text','itemid',32600),(12652,'history_uint','itemid',32600),(12653,'trends','itemid',32600),(12654,'trends_uint','itemid',32600),(12655,'events','itemid',32578),(12656,'history','itemid',32578),(12657,'history_log','itemid',32578),(12658,'history_str','itemid',32578),(12659,'history_text','itemid',32578),(12660,'history_uint','itemid',32578),(12661,'trends','itemid',32578),(12662,'trends_uint','itemid',32578),(12663,'events','itemid',32608),(12664,'history','itemid',32608),(12665,'history_log','itemid',32608),(12666,'history_str','itemid',32608),(12667,'history_text','itemid',32608),(12668,'history_uint','itemid',32608),(12669,'trends','itemid',32608),(12670,'trends_uint','itemid',32608),(12671,'events','itemid',32610),(12672,'history','itemid',32610),(12673,'history_log','itemid',32610),(12674,'history_str','itemid',32610),(12675,'history_text','itemid',32610),(12676,'history_uint','itemid',32610),(12677,'trends','itemid',32610),(12678,'trends_uint','itemid',32610),(12679,'events','itemid',32611),(12680,'history','itemid',32611),(12681,'history_log','itemid',32611),(12682,'history_str','itemid',32611),(12683,'history_text','itemid',32611),(12684,'history_uint','itemid',32611),(12685,'trends','itemid',32611),(12686,'trends_uint','itemid',32611),(12687,'events','itemid',32576),(12688,'history','itemid',32576),(12689,'history_log','itemid',32576),(12690,'history_str','itemid',32576),(12691,'history_text','itemid',32576),(12692,'history_uint','itemid',32576),(12693,'trends','itemid',32576),(12694,'trends_uint','itemid',32576),(12695,'events','itemid',32612),(12696,'history','itemid',32612),(12697,'history_log','itemid',32612),(12698,'history_str','itemid',32612),(12699,'history_text','itemid',32612),(12700,'history_uint','itemid',32612),(12701,'trends','itemid',32612),(12702,'trends_uint','itemid',32612),(12703,'events','itemid',32613),(12704,'history','itemid',32613),(12705,'history_log','itemid',32613),(12706,'history_str','itemid',32613),(12707,'history_text','itemid',32613),(12708,'history_uint','itemid',32613),(12709,'trends','itemid',32613),(12710,'trends_uint','itemid',32613),(12711,'events','itemid',32614),(12712,'history','itemid',32614),(12713,'history_log','itemid',32614),(12714,'history_str','itemid',32614),(12715,'history_text','itemid',32614),(12716,'history_uint','itemid',32614),(12717,'trends','itemid',32614),(12718,'trends_uint','itemid',32614),(12719,'events','itemid',32615),(12720,'history','itemid',32615),(12721,'history_log','itemid',32615),(12722,'history_str','itemid',32615),(12723,'history_text','itemid',32615),(12724,'history_uint','itemid',32615),(12725,'trends','itemid',32615),(12726,'trends_uint','itemid',32615),(12727,'events','itemid',32616),(12728,'history','itemid',32616),(12729,'history_log','itemid',32616),(12730,'history_str','itemid',32616),(12731,'history_text','itemid',32616),(12732,'history_uint','itemid',32616),(12733,'trends','itemid',32616),(12734,'trends_uint','itemid',32616),(12735,'events','itemid',32617),(12736,'history','itemid',32617),(12737,'history_log','itemid',32617),(12738,'history_str','itemid',32617),(12739,'history_text','itemid',32617),(12740,'history_uint','itemid',32617),(12741,'trends','itemid',32617),(12742,'trends_uint','itemid',32617),(12743,'events','itemid',32577),(12744,'history','itemid',32577),(12745,'history_log','itemid',32577),(12746,'history_str','itemid',32577),(12747,'history_text','itemid',32577),(12748,'history_uint','itemid',32577),(12749,'trends','itemid',32577),(12750,'trends_uint','itemid',32577),(12751,'events','itemid',32599),(12752,'history','itemid',32599),(12753,'history_log','itemid',32599),(12754,'history_str','itemid',32599),(12755,'history_text','itemid',32599),(12756,'history_uint','itemid',32599),(12757,'trends','itemid',32599),(12758,'trends_uint','itemid',32599),(12759,'events','itemid',32588),(12760,'history','itemid',32588),(12761,'history_log','itemid',32588),(12762,'history_str','itemid',32588),(12763,'history_text','itemid',32588),(12764,'history_uint','itemid',32588),(12765,'trends','itemid',32588),(12766,'trends_uint','itemid',32588),(12767,'events','itemid',32597),(12768,'history','itemid',32597),(12769,'history_log','itemid',32597),(12770,'history_str','itemid',32597),(12771,'history_text','itemid',32597),(12772,'history_uint','itemid',32597),(12773,'trends','itemid',32597),(12774,'trends_uint','itemid',32597),(12775,'events','itemid',32580),(12776,'history','itemid',32580),(12777,'history_log','itemid',32580),(12778,'history_str','itemid',32580),(12779,'history_text','itemid',32580),(12780,'history_uint','itemid',32580),(12781,'trends','itemid',32580),(12782,'trends_uint','itemid',32580),(12783,'events','itemid',32581),(12784,'history','itemid',32581),(12785,'history_log','itemid',32581),(12786,'history_str','itemid',32581),(12787,'history_text','itemid',32581),(12788,'history_uint','itemid',32581),(12789,'trends','itemid',32581),(12790,'trends_uint','itemid',32581),(12791,'events','itemid',32582),(12792,'history','itemid',32582),(12793,'history_log','itemid',32582),(12794,'history_str','itemid',32582),(12795,'history_text','itemid',32582),(12796,'history_uint','itemid',32582),(12797,'trends','itemid',32582),(12798,'trends_uint','itemid',32582),(12799,'events','itemid',32583),(12800,'history','itemid',32583),(12801,'history_log','itemid',32583),(12802,'history_str','itemid',32583),(12803,'history_text','itemid',32583),(12804,'history_uint','itemid',32583),(12805,'trends','itemid',32583),(12806,'trends_uint','itemid',32583),(12807,'events','itemid',32584),(12808,'history','itemid',32584),(12809,'history_log','itemid',32584),(12810,'history_str','itemid',32584),(12811,'history_text','itemid',32584),(12812,'history_uint','itemid',32584),(12813,'trends','itemid',32584),(12814,'trends_uint','itemid',32584),(12815,'events','itemid',32585),(12816,'history','itemid',32585),(12817,'history_log','itemid',32585),(12818,'history_str','itemid',32585),(12819,'history_text','itemid',32585),(12820,'history_uint','itemid',32585),(12821,'trends','itemid',32585),(12822,'trends_uint','itemid',32585),(12823,'events','itemid',32586),(12824,'history','itemid',32586),(12825,'history_log','itemid',32586),(12826,'history_str','itemid',32586),(12827,'history_text','itemid',32586),(12828,'history_uint','itemid',32586),(12829,'trends','itemid',32586),(12830,'trends_uint','itemid',32586),(12831,'events','itemid',32579),(12832,'history','itemid',32579),(12833,'history_log','itemid',32579),(12834,'history_str','itemid',32579),(12835,'history_text','itemid',32579),(12836,'history_uint','itemid',32579),(12837,'trends','itemid',32579),(12838,'trends_uint','itemid',32579),(12839,'events','itemid',32587),(12840,'history','itemid',32587),(12841,'history_log','itemid',32587),(12842,'history_str','itemid',32587),(12843,'history_text','itemid',32587),(12844,'history_uint','itemid',32587),(12845,'trends','itemid',32587),(12846,'trends_uint','itemid',32587),(12847,'events','itemid',32589),(12848,'history','itemid',32589),(12849,'history_log','itemid',32589),(12850,'history_str','itemid',32589),(12851,'history_text','itemid',32589),(12852,'history_uint','itemid',32589),(12853,'trends','itemid',32589),(12854,'trends_uint','itemid',32589),(12855,'events','itemid',32590),(12856,'history','itemid',32590),(12857,'history_log','itemid',32590),(12858,'history_str','itemid',32590),(12859,'history_text','itemid',32590),(12860,'history_uint','itemid',32590),(12861,'trends','itemid',32590),(12862,'trends_uint','itemid',32590),(12863,'events','itemid',32591),(12864,'history','itemid',32591),(12865,'history_log','itemid',32591),(12866,'history_str','itemid',32591),(12867,'history_text','itemid',32591),(12868,'history_uint','itemid',32591),(12869,'trends','itemid',32591),(12870,'trends_uint','itemid',32591),(12871,'events','itemid',32592),(12872,'history','itemid',32592),(12873,'history_log','itemid',32592),(12874,'history_str','itemid',32592),(12875,'history_text','itemid',32592),(12876,'history_uint','itemid',32592),(12877,'trends','itemid',32592),(12878,'trends_uint','itemid',32592),(12879,'events','itemid',32593),(12880,'history','itemid',32593),(12881,'history_log','itemid',32593),(12882,'history_str','itemid',32593),(12883,'history_text','itemid',32593),(12884,'history_uint','itemid',32593),(12885,'trends','itemid',32593),(12886,'trends_uint','itemid',32593),(12887,'events','itemid',32594),(12888,'history','itemid',32594),(12889,'history_log','itemid',32594),(12890,'history_str','itemid',32594),(12891,'history_text','itemid',32594),(12892,'history_uint','itemid',32594),(12893,'trends','itemid',32594),(12894,'trends_uint','itemid',32594),(12895,'events','itemid',32595),(12896,'history','itemid',32595),(12897,'history_log','itemid',32595),(12898,'history_str','itemid',32595),(12899,'history_text','itemid',32595),(12900,'history_uint','itemid',32595),(12901,'trends','itemid',32595),(12902,'trends_uint','itemid',32595),(12903,'events','itemid',32596),(12904,'history','itemid',32596),(12905,'history_log','itemid',32596),(12906,'history_str','itemid',32596),(12907,'history_text','itemid',32596),(12908,'history_uint','itemid',32596),(12909,'trends','itemid',32596),(12910,'trends_uint','itemid',32596),(12911,'events','itemid',32618),(12912,'history','itemid',32618),(12913,'history_log','itemid',32618),(12914,'history_str','itemid',32618),(12915,'history_text','itemid',32618),(12916,'history_uint','itemid',32618),(12917,'trends','itemid',32618),(12918,'trends_uint','itemid',32618),(12919,'events','itemid',32634),(12920,'history','itemid',32634),(12921,'history_log','itemid',32634),(12922,'history_str','itemid',32634),(12923,'history_text','itemid',32634),(12924,'history_uint','itemid',32634),(12925,'trends','itemid',32634),(12926,'trends_uint','itemid',32634),(12927,'events','itemid',32644),(12928,'history','itemid',32644),(12929,'history_log','itemid',32644),(12930,'history_str','itemid',32644),(12931,'history_text','itemid',32644),(12932,'history_uint','itemid',32644),(12933,'trends','itemid',32644),(12934,'trends_uint','itemid',32644),(12935,'events','itemid',32658),(12936,'history','itemid',32658),(12937,'history_log','itemid',32658),(12938,'history_str','itemid',32658),(12939,'history_text','itemid',32658),(12940,'history_uint','itemid',32658),(12941,'trends','itemid',32658),(12942,'trends_uint','itemid',32658),(12943,'events','itemid',32645),(12944,'history','itemid',32645),(12945,'history_log','itemid',32645),(12946,'history_str','itemid',32645),(12947,'history_text','itemid',32645),(12948,'history_uint','itemid',32645),(12949,'trends','itemid',32645),(12950,'trends_uint','itemid',32645),(12951,'events','itemid',32646),(12952,'history','itemid',32646),(12953,'history_log','itemid',32646),(12954,'history_str','itemid',32646),(12955,'history_text','itemid',32646),(12956,'history_uint','itemid',32646),(12957,'trends','itemid',32646),(12958,'trends_uint','itemid',32646),(12959,'events','itemid',32654),(12960,'history','itemid',32654),(12961,'history_log','itemid',32654),(12962,'history_str','itemid',32654),(12963,'history_text','itemid',32654),(12964,'history_uint','itemid',32654),(12965,'trends','itemid',32654),(12966,'trends_uint','itemid',32654),(12967,'events','itemid',32641),(12968,'history','itemid',32641),(12969,'history_log','itemid',32641),(12970,'history_str','itemid',32641),(12971,'history_text','itemid',32641),(12972,'history_uint','itemid',32641),(12973,'trends','itemid',32641),(12974,'trends_uint','itemid',32641),(12975,'events','itemid',32642),(12976,'history','itemid',32642),(12977,'history_log','itemid',32642),(12978,'history_str','itemid',32642),(12979,'history_text','itemid',32642),(12980,'history_uint','itemid',32642),(12981,'trends','itemid',32642),(12982,'trends_uint','itemid',32642),(12983,'events','itemid',32656),(12984,'history','itemid',32656),(12985,'history_log','itemid',32656),(12986,'history_str','itemid',32656),(12987,'history_text','itemid',32656),(12988,'history_uint','itemid',32656),(12989,'trends','itemid',32656),(12990,'trends_uint','itemid',32656),(12991,'events','itemid',32666),(12992,'history','itemid',32666),(12993,'history_log','itemid',32666),(12994,'history_str','itemid',32666),(12995,'history_text','itemid',32666),(12996,'history_uint','itemid',32666),(12997,'trends','itemid',32666),(12998,'trends_uint','itemid',32666),(12999,'events','itemid',32665),(13000,'history','itemid',32665),(13001,'history_log','itemid',32665),(13002,'history_str','itemid',32665),(13003,'history_text','itemid',32665),(13004,'history_uint','itemid',32665),(13005,'trends','itemid',32665),(13006,'trends_uint','itemid',32665),(13007,'events','itemid',32664),(13008,'history','itemid',32664),(13009,'history_log','itemid',32664),(13010,'history_str','itemid',32664),(13011,'history_text','itemid',32664),(13012,'history_uint','itemid',32664),(13013,'trends','itemid',32664),(13014,'trends_uint','itemid',32664),(13015,'events','itemid',32663),(13016,'history','itemid',32663),(13017,'history_log','itemid',32663),(13018,'history_str','itemid',32663),(13019,'history_text','itemid',32663),(13020,'history_uint','itemid',32663),(13021,'trends','itemid',32663),(13022,'trends_uint','itemid',32663),(13023,'events','itemid',32662),(13024,'history','itemid',32662),(13025,'history_log','itemid',32662),(13026,'history_str','itemid',32662),(13027,'history_text','itemid',32662),(13028,'history_uint','itemid',32662),(13029,'trends','itemid',32662),(13030,'trends_uint','itemid',32662),(13031,'events','itemid',32661),(13032,'history','itemid',32661),(13033,'history_log','itemid',32661),(13034,'history_str','itemid',32661),(13035,'history_text','itemid',32661),(13036,'history_uint','itemid',32661),(13037,'trends','itemid',32661),(13038,'trends_uint','itemid',32661),(13039,'events','itemid',32660),(13040,'history','itemid',32660),(13041,'history_log','itemid',32660),(13042,'history_str','itemid',32660),(13043,'history_text','itemid',32660),(13044,'history_uint','itemid',32660),(13045,'trends','itemid',32660),(13046,'trends_uint','itemid',32660),(13047,'events','itemid',32659),(13048,'history','itemid',32659),(13049,'history_log','itemid',32659),(13050,'history_str','itemid',32659),(13051,'history_text','itemid',32659),(13052,'history_uint','itemid',32659),(13053,'trends','itemid',32659),(13054,'trends_uint','itemid',32659),(13055,'events','itemid',32667),(13056,'history','itemid',32667),(13057,'history_log','itemid',32667),(13058,'history_str','itemid',32667),(13059,'history_text','itemid',32667),(13060,'history_uint','itemid',32667),(13061,'trends','itemid',32667),(13062,'trends_uint','itemid',32667),(13063,'events','itemid',32657),(13064,'history','itemid',32657),(13065,'history_log','itemid',32657),(13066,'history_str','itemid',32657),(13067,'history_text','itemid',32657),(13068,'history_uint','itemid',32657),(13069,'trends','itemid',32657),(13070,'trends_uint','itemid',32657),(13071,'events','itemid',32635),(13072,'history','itemid',32635),(13073,'history_log','itemid',32635),(13074,'history_str','itemid',32635),(13075,'history_text','itemid',32635),(13076,'history_uint','itemid',32635),(13077,'trends','itemid',32635),(13078,'trends_uint','itemid',32635),(13079,'events','itemid',32639),(13080,'history','itemid',32639),(13081,'history_log','itemid',32639),(13082,'history_str','itemid',32639),(13083,'history_text','itemid',32639),(13084,'history_uint','itemid',32639),(13085,'trends','itemid',32639),(13086,'trends_uint','itemid',32639),(13087,'events','itemid',32655),(13088,'history','itemid',32655),(13089,'history_log','itemid',32655),(13090,'history_str','itemid',32655),(13091,'history_text','itemid',32655),(13092,'history_uint','itemid',32655),(13093,'trends','itemid',32655),(13094,'trends_uint','itemid',32655),(13095,'events','itemid',32643),(13096,'history','itemid',32643),(13097,'history_log','itemid',32643),(13098,'history_str','itemid',32643),(13099,'history_text','itemid',32643),(13100,'history_uint','itemid',32643),(13101,'trends','itemid',32643),(13102,'trends_uint','itemid',32643),(13103,'events','itemid',32653),(13104,'history','itemid',32653),(13105,'history_log','itemid',32653),(13106,'history_str','itemid',32653),(13107,'history_text','itemid',32653),(13108,'history_uint','itemid',32653),(13109,'trends','itemid',32653),(13110,'trends_uint','itemid',32653),(13111,'events','itemid',32652),(13112,'history','itemid',32652),(13113,'history_log','itemid',32652),(13114,'history_str','itemid',32652),(13115,'history_text','itemid',32652),(13116,'history_uint','itemid',32652),(13117,'trends','itemid',32652),(13118,'trends_uint','itemid',32652),(13119,'events','itemid',32651),(13120,'history','itemid',32651),(13121,'history_log','itemid',32651),(13122,'history_str','itemid',32651),(13123,'history_text','itemid',32651),(13124,'history_uint','itemid',32651),(13125,'trends','itemid',32651),(13126,'trends_uint','itemid',32651),(13127,'events','itemid',32650),(13128,'history','itemid',32650),(13129,'history_log','itemid',32650),(13130,'history_str','itemid',32650),(13131,'history_text','itemid',32650),(13132,'history_uint','itemid',32650),(13133,'trends','itemid',32650),(13134,'trends_uint','itemid',32650),(13135,'events','itemid',32649),(13136,'history','itemid',32649),(13137,'history_log','itemid',32649),(13138,'history_str','itemid',32649),(13139,'history_text','itemid',32649),(13140,'history_uint','itemid',32649),(13141,'trends','itemid',32649),(13142,'trends_uint','itemid',32649),(13143,'events','itemid',32648),(13144,'history','itemid',32648),(13145,'history_log','itemid',32648),(13146,'history_str','itemid',32648),(13147,'history_text','itemid',32648),(13148,'history_uint','itemid',32648),(13149,'trends','itemid',32648),(13150,'trends_uint','itemid',32648),(13151,'events','itemid',32647),(13152,'history','itemid',32647),(13153,'history_log','itemid',32647),(13154,'history_str','itemid',32647),(13155,'history_text','itemid',32647),(13156,'history_uint','itemid',32647),(13157,'trends','itemid',32647),(13158,'trends_uint','itemid',32647),(13159,'events','itemid',32638),(13160,'history','itemid',32638),(13161,'history_log','itemid',32638),(13162,'history_str','itemid',32638),(13163,'history_text','itemid',32638),(13164,'history_uint','itemid',32638),(13165,'trends','itemid',32638),(13166,'trends_uint','itemid',32638),(13167,'events','itemid',32637),(13168,'history','itemid',32637),(13169,'history_log','itemid',32637),(13170,'history_str','itemid',32637),(13171,'history_text','itemid',32637),(13172,'history_uint','itemid',32637),(13173,'trends','itemid',32637),(13174,'trends_uint','itemid',32637),(13175,'events','itemid',32636),(13176,'history','itemid',32636),(13177,'history_log','itemid',32636),(13178,'history_str','itemid',32636),(13179,'history_text','itemid',32636),(13180,'history_uint','itemid',32636),(13181,'trends','itemid',32636),(13182,'trends_uint','itemid',32636),(13183,'events','itemid',32640),(13184,'history','itemid',32640),(13185,'history_log','itemid',32640),(13186,'history_str','itemid',32640),(13187,'history_text','itemid',32640),(13188,'history_uint','itemid',32640),(13189,'trends','itemid',32640),(13190,'trends_uint','itemid',32640),(13191,'events','itemid',32803),(13192,'history','itemid',32803),(13193,'history_log','itemid',32803),(13194,'history_str','itemid',32803),(13195,'history_text','itemid',32803),(13196,'history_uint','itemid',32803),(13197,'trends','itemid',32803),(13198,'trends_uint','itemid',32803),(13199,'events','itemid',32850),(13200,'history','itemid',32850),(13201,'history_log','itemid',32850),(13202,'history_str','itemid',32850),(13203,'history_text','itemid',32850),(13204,'history_uint','itemid',32850),(13205,'trends','itemid',32850),(13206,'trends_uint','itemid',32850),(13207,'events','itemid',32846),(13208,'history','itemid',32846),(13209,'history_log','itemid',32846),(13210,'history_str','itemid',32846),(13211,'history_text','itemid',32846),(13212,'history_uint','itemid',32846),(13213,'trends','itemid',32846),(13214,'trends_uint','itemid',32846),(13215,'events','itemid',32845),(13216,'history','itemid',32845),(13217,'history_log','itemid',32845),(13218,'history_str','itemid',32845),(13219,'history_text','itemid',32845),(13220,'history_uint','itemid',32845),(13221,'trends','itemid',32845),(13222,'trends_uint','itemid',32845),(13223,'events','itemid',32795),(13224,'history','itemid',32795),(13225,'history_log','itemid',32795),(13226,'history_str','itemid',32795),(13227,'history_text','itemid',32795),(13228,'history_uint','itemid',32795),(13229,'trends','itemid',32795),(13230,'trends_uint','itemid',32795),(13231,'events','itemid',32781),(13232,'history','itemid',32781),(13233,'history_log','itemid',32781),(13234,'history_str','itemid',32781),(13235,'history_text','itemid',32781),(13236,'history_uint','itemid',32781),(13237,'trends','itemid',32781),(13238,'trends_uint','itemid',32781),(13239,'events','itemid',32780),(13240,'history','itemid',32780),(13241,'history_log','itemid',32780),(13242,'history_str','itemid',32780),(13243,'history_text','itemid',32780),(13244,'history_uint','itemid',32780),(13245,'trends','itemid',32780),(13246,'trends_uint','itemid',32780),(13247,'events','itemid',32782),(13248,'history','itemid',32782),(13249,'history_log','itemid',32782),(13250,'history_str','itemid',32782),(13251,'history_text','itemid',32782),(13252,'history_uint','itemid',32782),(13253,'trends','itemid',32782),(13254,'trends_uint','itemid',32782),(13255,'events','itemid',32794),(13256,'history','itemid',32794),(13257,'history_log','itemid',32794),(13258,'history_str','itemid',32794),(13259,'history_text','itemid',32794),(13260,'history_uint','itemid',32794),(13261,'trends','itemid',32794),(13262,'trends_uint','itemid',32794),(13263,'events','itemid',32783),(13264,'history','itemid',32783),(13265,'history_log','itemid',32783),(13266,'history_str','itemid',32783),(13267,'history_text','itemid',32783),(13268,'history_uint','itemid',32783),(13269,'trends','itemid',32783),(13270,'trends_uint','itemid',32783),(13271,'events','itemid',32793),(13272,'history','itemid',32793),(13273,'history_log','itemid',32793),(13274,'history_str','itemid',32793),(13275,'history_text','itemid',32793),(13276,'history_uint','itemid',32793),(13277,'trends','itemid',32793),(13278,'trends_uint','itemid',32793),(13279,'events','itemid',32791),(13280,'history','itemid',32791),(13281,'history_log','itemid',32791),(13282,'history_str','itemid',32791),(13283,'history_text','itemid',32791),(13284,'history_uint','itemid',32791),(13285,'trends','itemid',32791),(13286,'trends_uint','itemid',32791),(13287,'events','itemid',32792),(13288,'history','itemid',32792),(13289,'history_log','itemid',32792),(13290,'history_str','itemid',32792),(13291,'history_text','itemid',32792),(13292,'history_uint','itemid',32792),(13293,'trends','itemid',32792),(13294,'trends_uint','itemid',32792),(13295,'events','itemid',32785),(13296,'history','itemid',32785),(13297,'history_log','itemid',32785),(13298,'history_str','itemid',32785),(13299,'history_text','itemid',32785),(13300,'history_uint','itemid',32785),(13301,'trends','itemid',32785),(13302,'trends_uint','itemid',32785),(13303,'events','itemid',32790),(13304,'history','itemid',32790),(13305,'history_log','itemid',32790),(13306,'history_str','itemid',32790),(13307,'history_text','itemid',32790),(13308,'history_uint','itemid',32790),(13309,'trends','itemid',32790),(13310,'trends_uint','itemid',32790),(13311,'events','itemid',32789),(13312,'history','itemid',32789),(13313,'history_log','itemid',32789),(13314,'history_str','itemid',32789),(13315,'history_text','itemid',32789),(13316,'history_uint','itemid',32789),(13317,'trends','itemid',32789),(13318,'trends_uint','itemid',32789),(13319,'events','itemid',32784),(13320,'history','itemid',32784),(13321,'history_log','itemid',32784),(13322,'history_str','itemid',32784),(13323,'history_text','itemid',32784),(13324,'history_uint','itemid',32784),(13325,'trends','itemid',32784),(13326,'trends_uint','itemid',32784),(13327,'events','itemid',32788),(13328,'history','itemid',32788),(13329,'history_log','itemid',32788),(13330,'history_str','itemid',32788),(13331,'history_text','itemid',32788),(13332,'history_uint','itemid',32788),(13333,'trends','itemid',32788),(13334,'trends_uint','itemid',32788),(13335,'events','itemid',32787),(13336,'history','itemid',32787),(13337,'history_log','itemid',32787),(13338,'history_str','itemid',32787),(13339,'history_text','itemid',32787),(13340,'history_uint','itemid',32787),(13341,'trends','itemid',32787),(13342,'trends_uint','itemid',32787),(13343,'events','itemid',32786),(13344,'history','itemid',32786),(13345,'history_log','itemid',32786),(13346,'history_str','itemid',32786),(13347,'history_text','itemid',32786),(13348,'history_uint','itemid',32786),(13349,'trends','itemid',32786),(13350,'trends_uint','itemid',32786),(13351,'events','itemid',32844),(13352,'history','itemid',32844),(13353,'history_log','itemid',32844),(13354,'history_str','itemid',32844),(13355,'history_text','itemid',32844),(13356,'history_uint','itemid',32844),(13357,'trends','itemid',32844),(13358,'trends_uint','itemid',32844),(13359,'events','itemid',32843),(13360,'history','itemid',32843),(13361,'history_log','itemid',32843),(13362,'history_str','itemid',32843),(13363,'history_text','itemid',32843),(13364,'history_uint','itemid',32843),(13365,'trends','itemid',32843),(13366,'trends_uint','itemid',32843),(13367,'events','itemid',32842),(13368,'history','itemid',32842),(13369,'history_log','itemid',32842),(13370,'history_str','itemid',32842),(13371,'history_text','itemid',32842),(13372,'history_uint','itemid',32842),(13373,'trends','itemid',32842),(13374,'trends_uint','itemid',32842),(13375,'events','itemid',32841),(13376,'history','itemid',32841),(13377,'history_log','itemid',32841),(13378,'history_str','itemid',32841),(13379,'history_text','itemid',32841),(13380,'history_uint','itemid',32841),(13381,'trends','itemid',32841),(13382,'trends_uint','itemid',32841),(13383,'events','itemid',32839),(13384,'history','itemid',32839),(13385,'history_log','itemid',32839),(13386,'history_str','itemid',32839),(13387,'history_text','itemid',32839),(13388,'history_uint','itemid',32839),(13389,'trends','itemid',32839),(13390,'trends_uint','itemid',32839),(13391,'events','itemid',32832),(13392,'history','itemid',32832),(13393,'history_log','itemid',32832),(13394,'history_str','itemid',32832),(13395,'history_text','itemid',32832),(13396,'history_uint','itemid',32832),(13397,'trends','itemid',32832),(13398,'trends_uint','itemid',32832),(13399,'events','itemid',32838),(13400,'history','itemid',32838),(13401,'history_log','itemid',32838),(13402,'history_str','itemid',32838),(13403,'history_text','itemid',32838),(13404,'history_uint','itemid',32838),(13405,'trends','itemid',32838),(13406,'trends_uint','itemid',32838),(13407,'events','itemid',32837),(13408,'history','itemid',32837),(13409,'history_log','itemid',32837),(13410,'history_str','itemid',32837),(13411,'history_text','itemid',32837),(13412,'history_uint','itemid',32837),(13413,'trends','itemid',32837),(13414,'trends_uint','itemid',32837),(13415,'events','itemid',32836),(13416,'history','itemid',32836),(13417,'history_log','itemid',32836),(13418,'history_str','itemid',32836),(13419,'history_text','itemid',32836),(13420,'history_uint','itemid',32836),(13421,'trends','itemid',32836),(13422,'trends_uint','itemid',32836),(13423,'events','itemid',32835),(13424,'history','itemid',32835),(13425,'history_log','itemid',32835),(13426,'history_str','itemid',32835),(13427,'history_text','itemid',32835),(13428,'history_uint','itemid',32835),(13429,'trends','itemid',32835),(13430,'trends_uint','itemid',32835),(13431,'events','itemid',32834),(13432,'history','itemid',32834),(13433,'history_log','itemid',32834),(13434,'history_str','itemid',32834),(13435,'history_text','itemid',32834),(13436,'history_uint','itemid',32834),(13437,'trends','itemid',32834),(13438,'trends_uint','itemid',32834),(13439,'events','itemid',32833),(13440,'history','itemid',32833),(13441,'history_log','itemid',32833),(13442,'history_str','itemid',32833),(13443,'history_text','itemid',32833),(13444,'history_uint','itemid',32833),(13445,'trends','itemid',32833),(13446,'trends_uint','itemid',32833),(13447,'events','itemid',32847),(13448,'history','itemid',32847),(13449,'history_log','itemid',32847),(13450,'history_str','itemid',32847),(13451,'history_text','itemid',32847),(13452,'history_uint','itemid',32847),(13453,'trends','itemid',32847),(13454,'trends_uint','itemid',32847),(13455,'events','itemid',32840),(13456,'history','itemid',32840),(13457,'history_log','itemid',32840),(13458,'history_str','itemid',32840),(13459,'history_text','itemid',32840),(13460,'history_uint','itemid',32840),(13461,'trends','itemid',32840),(13462,'trends_uint','itemid',32840),(13463,'events','itemid',32848),(13464,'history','itemid',32848),(13465,'history_log','itemid',32848),(13466,'history_str','itemid',32848),(13467,'history_text','itemid',32848),(13468,'history_uint','itemid',32848),(13469,'trends','itemid',32848),(13470,'trends_uint','itemid',32848),(13471,'events','itemid',32858),(13472,'history','itemid',32858),(13473,'history_log','itemid',32858),(13474,'history_str','itemid',32858),(13475,'history_text','itemid',32858),(13476,'history_uint','itemid',32858),(13477,'trends','itemid',32858),(13478,'trends_uint','itemid',32858),(13479,'events','itemid',32864),(13480,'history','itemid',32864),(13481,'history_log','itemid',32864),(13482,'history_str','itemid',32864),(13483,'history_text','itemid',32864),(13484,'history_uint','itemid',32864),(13485,'trends','itemid',32864),(13486,'trends_uint','itemid',32864),(13487,'events','itemid',32863),(13488,'history','itemid',32863),(13489,'history_log','itemid',32863),(13490,'history_str','itemid',32863),(13491,'history_text','itemid',32863),(13492,'history_uint','itemid',32863),(13493,'trends','itemid',32863),(13494,'trends_uint','itemid',32863),(13495,'events','itemid',32862),(13496,'history','itemid',32862),(13497,'history_log','itemid',32862),(13498,'history_str','itemid',32862),(13499,'history_text','itemid',32862),(13500,'history_uint','itemid',32862),(13501,'trends','itemid',32862),(13502,'trends_uint','itemid',32862),(13503,'events','itemid',32861),(13504,'history','itemid',32861),(13505,'history_log','itemid',32861),(13506,'history_str','itemid',32861),(13507,'history_text','itemid',32861),(13508,'history_uint','itemid',32861),(13509,'trends','itemid',32861),(13510,'trends_uint','itemid',32861),(13511,'events','itemid',32860),(13512,'history','itemid',32860),(13513,'history_log','itemid',32860),(13514,'history_str','itemid',32860),(13515,'history_text','itemid',32860),(13516,'history_uint','itemid',32860),(13517,'trends','itemid',32860),(13518,'trends_uint','itemid',32860),(13519,'events','itemid',32859),(13520,'history','itemid',32859),(13521,'history_log','itemid',32859),(13522,'history_str','itemid',32859),(13523,'history_text','itemid',32859),(13524,'history_uint','itemid',32859),(13525,'trends','itemid',32859),(13526,'trends_uint','itemid',32859),(13527,'events','itemid',32857),(13528,'history','itemid',32857),(13529,'history_log','itemid',32857),(13530,'history_str','itemid',32857),(13531,'history_text','itemid',32857),(13532,'history_uint','itemid',32857),(13533,'trends','itemid',32857),(13534,'trends_uint','itemid',32857),(13535,'events','itemid',32830),(13536,'history','itemid',32830),(13537,'history_log','itemid',32830),(13538,'history_str','itemid',32830),(13539,'history_text','itemid',32830),(13540,'history_uint','itemid',32830),(13541,'trends','itemid',32830),(13542,'trends_uint','itemid',32830),(13543,'events','itemid',32856),(13544,'history','itemid',32856),(13545,'history_log','itemid',32856),(13546,'history_str','itemid',32856),(13547,'history_text','itemid',32856),(13548,'history_uint','itemid',32856),(13549,'trends','itemid',32856),(13550,'trends_uint','itemid',32856),(13551,'events','itemid',32855),(13552,'history','itemid',32855),(13553,'history_log','itemid',32855),(13554,'history_str','itemid',32855),(13555,'history_text','itemid',32855),(13556,'history_uint','itemid',32855),(13557,'trends','itemid',32855),(13558,'trends_uint','itemid',32855),(13559,'events','itemid',32854),(13560,'history','itemid',32854),(13561,'history_log','itemid',32854),(13562,'history_str','itemid',32854),(13563,'history_text','itemid',32854),(13564,'history_uint','itemid',32854),(13565,'trends','itemid',32854),(13566,'trends_uint','itemid',32854),(13567,'events','itemid',32853),(13568,'history','itemid',32853),(13569,'history_log','itemid',32853),(13570,'history_str','itemid',32853),(13571,'history_text','itemid',32853),(13572,'history_uint','itemid',32853),(13573,'trends','itemid',32853),(13574,'trends_uint','itemid',32853),(13575,'events','itemid',32852),(13576,'history','itemid',32852),(13577,'history_log','itemid',32852),(13578,'history_str','itemid',32852),(13579,'history_text','itemid',32852),(13580,'history_uint','itemid',32852),(13581,'trends','itemid',32852),(13582,'trends_uint','itemid',32852),(13583,'events','itemid',32851),(13584,'history','itemid',32851),(13585,'history_log','itemid',32851),(13586,'history_str','itemid',32851),(13587,'history_text','itemid',32851),(13588,'history_uint','itemid',32851),(13589,'trends','itemid',32851),(13590,'trends_uint','itemid',32851),(13591,'events','itemid',32849),(13592,'history','itemid',32849),(13593,'history_log','itemid',32849),(13594,'history_str','itemid',32849),(13595,'history_text','itemid',32849),(13596,'history_uint','itemid',32849),(13597,'trends','itemid',32849),(13598,'trends_uint','itemid',32849),(13599,'events','itemid',32831),(13600,'history','itemid',32831),(13601,'history_log','itemid',32831),(13602,'history_str','itemid',32831),(13603,'history_text','itemid',32831),(13604,'history_uint','itemid',32831),(13605,'trends','itemid',32831),(13606,'trends_uint','itemid',32831),(13607,'events','itemid',32821),(13608,'history','itemid',32821),(13609,'history_log','itemid',32821),(13610,'history_str','itemid',32821),(13611,'history_text','itemid',32821),(13612,'history_uint','itemid',32821),(13613,'trends','itemid',32821),(13614,'trends_uint','itemid',32821),(13615,'events','itemid',32829),(13616,'history','itemid',32829),(13617,'history_log','itemid',32829),(13618,'history_str','itemid',32829),(13619,'history_text','itemid',32829),(13620,'history_uint','itemid',32829),(13621,'trends','itemid',32829),(13622,'trends_uint','itemid',32829),(13623,'events','itemid',32810),(13624,'history','itemid',32810),(13625,'history_log','itemid',32810),(13626,'history_str','itemid',32810),(13627,'history_text','itemid',32810),(13628,'history_uint','itemid',32810),(13629,'trends','itemid',32810),(13630,'trends_uint','itemid',32810),(13631,'events','itemid',32809),(13632,'history','itemid',32809),(13633,'history_log','itemid',32809),(13634,'history_str','itemid',32809),(13635,'history_text','itemid',32809),(13636,'history_uint','itemid',32809),(13637,'trends','itemid',32809),(13638,'trends_uint','itemid',32809),(13639,'events','itemid',32807),(13640,'history','itemid',32807),(13641,'history_log','itemid',32807),(13642,'history_str','itemid',32807),(13643,'history_text','itemid',32807),(13644,'history_uint','itemid',32807),(13645,'trends','itemid',32807),(13646,'trends_uint','itemid',32807),(13647,'events','itemid',32806),(13648,'history','itemid',32806),(13649,'history_log','itemid',32806),(13650,'history_str','itemid',32806),(13651,'history_text','itemid',32806),(13652,'history_uint','itemid',32806),(13653,'trends','itemid',32806),(13654,'trends_uint','itemid',32806),(13655,'events','itemid',32805),(13656,'history','itemid',32805),(13657,'history_log','itemid',32805),(13658,'history_str','itemid',32805),(13659,'history_text','itemid',32805),(13660,'history_uint','itemid',32805),(13661,'trends','itemid',32805),(13662,'trends_uint','itemid',32805),(13663,'events','itemid',32804),(13664,'history','itemid',32804),(13665,'history_log','itemid',32804),(13666,'history_str','itemid',32804),(13667,'history_text','itemid',32804),(13668,'history_uint','itemid',32804),(13669,'trends','itemid',32804),(13670,'trends_uint','itemid',32804),(13671,'events','itemid',32796),(13672,'history','itemid',32796),(13673,'history_log','itemid',32796),(13674,'history_str','itemid',32796),(13675,'history_text','itemid',32796),(13676,'history_uint','itemid',32796),(13677,'trends','itemid',32796),(13678,'trends_uint','itemid',32796),(13679,'events','itemid',32802),(13680,'history','itemid',32802),(13681,'history_log','itemid',32802),(13682,'history_str','itemid',32802),(13683,'history_text','itemid',32802),(13684,'history_uint','itemid',32802),(13685,'trends','itemid',32802),(13686,'trends_uint','itemid',32802),(13687,'events','itemid',32801),(13688,'history','itemid',32801),(13689,'history_log','itemid',32801),(13690,'history_str','itemid',32801),(13691,'history_text','itemid',32801),(13692,'history_uint','itemid',32801),(13693,'trends','itemid',32801),(13694,'trends_uint','itemid',32801),(13695,'events','itemid',32800),(13696,'history','itemid',32800),(13697,'history_log','itemid',32800),(13698,'history_str','itemid',32800),(13699,'history_text','itemid',32800),(13700,'history_uint','itemid',32800),(13701,'trends','itemid',32800),(13702,'trends_uint','itemid',32800),(13703,'events','itemid',32797),(13704,'history','itemid',32797),(13705,'history_log','itemid',32797),(13706,'history_str','itemid',32797),(13707,'history_text','itemid',32797),(13708,'history_uint','itemid',32797),(13709,'trends','itemid',32797),(13710,'trends_uint','itemid',32797),(13711,'events','itemid',32798),(13712,'history','itemid',32798),(13713,'history_log','itemid',32798),(13714,'history_str','itemid',32798),(13715,'history_text','itemid',32798),(13716,'history_uint','itemid',32798),(13717,'trends','itemid',32798),(13718,'trends_uint','itemid',32798),(13719,'events','itemid',32799),(13720,'history','itemid',32799),(13721,'history_log','itemid',32799),(13722,'history_str','itemid',32799),(13723,'history_text','itemid',32799),(13724,'history_uint','itemid',32799),(13725,'trends','itemid',32799),(13726,'trends_uint','itemid',32799),(13727,'events','itemid',32811),(13728,'history','itemid',32811),(13729,'history_log','itemid',32811),(13730,'history_str','itemid',32811),(13731,'history_text','itemid',32811),(13732,'history_uint','itemid',32811),(13733,'trends','itemid',32811),(13734,'trends_uint','itemid',32811),(13735,'events','itemid',32808),(13736,'history','itemid',32808),(13737,'history_log','itemid',32808),(13738,'history_str','itemid',32808),(13739,'history_text','itemid',32808),(13740,'history_uint','itemid',32808),(13741,'trends','itemid',32808),(13742,'trends_uint','itemid',32808),(13743,'events','itemid',32813),(13744,'history','itemid',32813),(13745,'history_log','itemid',32813),(13746,'history_str','itemid',32813),(13747,'history_text','itemid',32813),(13748,'history_uint','itemid',32813),(13749,'trends','itemid',32813),(13750,'trends_uint','itemid',32813),(13751,'events','itemid',32822),(13752,'history','itemid',32822),(13753,'history_log','itemid',32822),(13754,'history_str','itemid',32822),(13755,'history_text','itemid',32822),(13756,'history_uint','itemid',32822),(13757,'trends','itemid',32822),(13758,'trends_uint','itemid',32822),(13759,'events','itemid',32828),(13760,'history','itemid',32828),(13761,'history_log','itemid',32828),(13762,'history_str','itemid',32828),(13763,'history_text','itemid',32828),(13764,'history_uint','itemid',32828),(13765,'trends','itemid',32828),(13766,'trends_uint','itemid',32828),(13767,'events','itemid',32827),(13768,'history','itemid',32827),(13769,'history_log','itemid',32827),(13770,'history_str','itemid',32827),(13771,'history_text','itemid',32827),(13772,'history_uint','itemid',32827),(13773,'trends','itemid',32827),(13774,'trends_uint','itemid',32827),(13775,'events','itemid',32826),(13776,'history','itemid',32826),(13777,'history_log','itemid',32826),(13778,'history_str','itemid',32826),(13779,'history_text','itemid',32826),(13780,'history_uint','itemid',32826),(13781,'trends','itemid',32826),(13782,'trends_uint','itemid',32826),(13783,'events','itemid',32825),(13784,'history','itemid',32825),(13785,'history_log','itemid',32825),(13786,'history_str','itemid',32825),(13787,'history_text','itemid',32825),(13788,'history_uint','itemid',32825),(13789,'trends','itemid',32825),(13790,'trends_uint','itemid',32825),(13791,'events','itemid',32824),(13792,'history','itemid',32824),(13793,'history_log','itemid',32824),(13794,'history_str','itemid',32824),(13795,'history_text','itemid',32824),(13796,'history_uint','itemid',32824),(13797,'trends','itemid',32824),(13798,'trends_uint','itemid',32824),(13799,'events','itemid',32823),(13800,'history','itemid',32823),(13801,'history_log','itemid',32823),(13802,'history_str','itemid',32823),(13803,'history_text','itemid',32823),(13804,'history_uint','itemid',32823),(13805,'trends','itemid',32823),(13806,'trends_uint','itemid',32823),(13807,'events','itemid',32812),(13808,'history','itemid',32812),(13809,'history_log','itemid',32812),(13810,'history_str','itemid',32812),(13811,'history_text','itemid',32812),(13812,'history_uint','itemid',32812),(13813,'trends','itemid',32812),(13814,'trends_uint','itemid',32812),(13815,'events','itemid',32814),(13816,'history','itemid',32814),(13817,'history_log','itemid',32814),(13818,'history_str','itemid',32814),(13819,'history_text','itemid',32814),(13820,'history_uint','itemid',32814),(13821,'trends','itemid',32814),(13822,'trends_uint','itemid',32814),(13823,'events','itemid',32820),(13824,'history','itemid',32820),(13825,'history_log','itemid',32820),(13826,'history_str','itemid',32820),(13827,'history_text','itemid',32820),(13828,'history_uint','itemid',32820),(13829,'trends','itemid',32820),(13830,'trends_uint','itemid',32820),(13831,'events','itemid',32819),(13832,'history','itemid',32819),(13833,'history_log','itemid',32819),(13834,'history_str','itemid',32819),(13835,'history_text','itemid',32819),(13836,'history_uint','itemid',32819),(13837,'trends','itemid',32819),(13838,'trends_uint','itemid',32819),(13839,'events','itemid',32818),(13840,'history','itemid',32818),(13841,'history_log','itemid',32818),(13842,'history_str','itemid',32818),(13843,'history_text','itemid',32818),(13844,'history_uint','itemid',32818),(13845,'trends','itemid',32818),(13846,'trends_uint','itemid',32818),(13847,'events','itemid',32817),(13848,'history','itemid',32817),(13849,'history_log','itemid',32817),(13850,'history_str','itemid',32817),(13851,'history_text','itemid',32817),(13852,'history_uint','itemid',32817),(13853,'trends','itemid',32817),(13854,'trends_uint','itemid',32817),(13855,'events','itemid',32816),(13856,'history','itemid',32816),(13857,'history_log','itemid',32816),(13858,'history_str','itemid',32816),(13859,'history_text','itemid',32816),(13860,'history_uint','itemid',32816),(13861,'trends','itemid',32816),(13862,'trends_uint','itemid',32816),(13863,'events','itemid',32815),(13864,'history','itemid',32815),(13865,'history_log','itemid',32815),(13866,'history_str','itemid',32815),(13867,'history_text','itemid',32815),(13868,'history_uint','itemid',32815),(13869,'trends','itemid',32815),(13870,'trends_uint','itemid',32815),(13871,'events','itemid',32865),(13872,'history','itemid',32865),(13873,'history_log','itemid',32865),(13874,'history_str','itemid',32865),(13875,'history_text','itemid',32865),(13876,'history_uint','itemid',32865),(13877,'trends','itemid',32865),(13878,'trends_uint','itemid',32865),(13879,'events','itemid',33494),(13880,'history','itemid',33494),(13881,'history_log','itemid',33494),(13882,'history_str','itemid',33494),(13883,'history_text','itemid',33494),(13884,'history_uint','itemid',33494),(13885,'trends','itemid',33494),(13886,'trends_uint','itemid',33494),(13887,'events','itemid',33507),(13888,'history','itemid',33507),(13889,'history_log','itemid',33507),(13890,'history_str','itemid',33507),(13891,'history_text','itemid',33507),(13892,'history_uint','itemid',33507),(13893,'trends','itemid',33507),(13894,'trends_uint','itemid',33507),(13895,'events','itemid',33518),(13896,'history','itemid',33518),(13897,'history_log','itemid',33518),(13898,'history_str','itemid',33518),(13899,'history_text','itemid',33518),(13900,'history_uint','itemid',33518),(13901,'trends','itemid',33518),(13902,'trends_uint','itemid',33518),(13903,'events','itemid',33517),(13904,'history','itemid',33517),(13905,'history_log','itemid',33517),(13906,'history_str','itemid',33517),(13907,'history_text','itemid',33517),(13908,'history_uint','itemid',33517),(13909,'trends','itemid',33517),(13910,'trends_uint','itemid',33517),(13911,'events','itemid',33516),(13912,'history','itemid',33516),(13913,'history_log','itemid',33516),(13914,'history_str','itemid',33516),(13915,'history_text','itemid',33516),(13916,'history_uint','itemid',33516),(13917,'trends','itemid',33516),(13918,'trends_uint','itemid',33516),(13919,'events','itemid',33515),(13920,'history','itemid',33515),(13921,'history_log','itemid',33515),(13922,'history_str','itemid',33515),(13923,'history_text','itemid',33515),(13924,'history_uint','itemid',33515),(13925,'trends','itemid',33515),(13926,'trends_uint','itemid',33515),(13927,'events','itemid',33514),(13928,'history','itemid',33514),(13929,'history_log','itemid',33514),(13930,'history_str','itemid',33514),(13931,'history_text','itemid',33514),(13932,'history_uint','itemid',33514),(13933,'trends','itemid',33514),(13934,'trends_uint','itemid',33514),(13935,'events','itemid',33513),(13936,'history','itemid',33513),(13937,'history_log','itemid',33513),(13938,'history_str','itemid',33513),(13939,'history_text','itemid',33513),(13940,'history_uint','itemid',33513),(13941,'trends','itemid',33513),(13942,'trends_uint','itemid',33513),(13943,'events','itemid',33512),(13944,'history','itemid',33512),(13945,'history_log','itemid',33512),(13946,'history_str','itemid',33512),(13947,'history_text','itemid',33512),(13948,'history_uint','itemid',33512),(13949,'trends','itemid',33512),(13950,'trends_uint','itemid',33512),(13951,'events','itemid',33511),(13952,'history','itemid',33511),(13953,'history_log','itemid',33511),(13954,'history_str','itemid',33511),(13955,'history_text','itemid',33511),(13956,'history_uint','itemid',33511),(13957,'trends','itemid',33511),(13958,'trends_uint','itemid',33511),(13959,'events','itemid',33510),(13960,'history','itemid',33510),(13961,'history_log','itemid',33510),(13962,'history_str','itemid',33510),(13963,'history_text','itemid',33510),(13964,'history_uint','itemid',33510),(13965,'trends','itemid',33510),(13966,'trends_uint','itemid',33510),(13967,'events','itemid',33509),(13968,'history','itemid',33509),(13969,'history_log','itemid',33509),(13970,'history_str','itemid',33509),(13971,'history_text','itemid',33509),(13972,'history_uint','itemid',33509),(13973,'trends','itemid',33509),(13974,'trends_uint','itemid',33509),(13975,'events','itemid',33508),(13976,'history','itemid',33508),(13977,'history_log','itemid',33508),(13978,'history_str','itemid',33508),(13979,'history_text','itemid',33508),(13980,'history_uint','itemid',33508),(13981,'trends','itemid',33508),(13982,'trends_uint','itemid',33508),(13983,'events','itemid',33493),(13984,'history','itemid',33493),(13985,'history_log','itemid',33493),(13986,'history_str','itemid',33493),(13987,'history_text','itemid',33493),(13988,'history_uint','itemid',33493),(13989,'trends','itemid',33493),(13990,'trends_uint','itemid',33493),(13991,'events','itemid',33506),(13992,'history','itemid',33506),(13993,'history_log','itemid',33506),(13994,'history_str','itemid',33506),(13995,'history_text','itemid',33506),(13996,'history_uint','itemid',33506),(13997,'trends','itemid',33506),(13998,'trends_uint','itemid',33506),(13999,'events','itemid',33492),(14000,'history','itemid',33492),(14001,'history_log','itemid',33492),(14002,'history_str','itemid',33492),(14003,'history_text','itemid',33492),(14004,'history_uint','itemid',33492),(14005,'trends','itemid',33492),(14006,'trends_uint','itemid',33492),(14007,'events','itemid',33505),(14008,'history','itemid',33505),(14009,'history_log','itemid',33505),(14010,'history_str','itemid',33505),(14011,'history_text','itemid',33505),(14012,'history_uint','itemid',33505),(14013,'trends','itemid',33505),(14014,'trends_uint','itemid',33505),(14015,'events','itemid',33491),(14016,'history','itemid',33491),(14017,'history_log','itemid',33491),(14018,'history_str','itemid',33491),(14019,'history_text','itemid',33491),(14020,'history_uint','itemid',33491),(14021,'trends','itemid',33491),(14022,'trends_uint','itemid',33491),(14023,'events','itemid',33504),(14024,'history','itemid',33504),(14025,'history_log','itemid',33504),(14026,'history_str','itemid',33504),(14027,'history_text','itemid',33504),(14028,'history_uint','itemid',33504),(14029,'trends','itemid',33504),(14030,'trends_uint','itemid',33504),(14031,'events','itemid',33503),(14032,'history','itemid',33503),(14033,'history_log','itemid',33503),(14034,'history_str','itemid',33503),(14035,'history_text','itemid',33503),(14036,'history_uint','itemid',33503),(14037,'trends','itemid',33503),(14038,'trends_uint','itemid',33503),(14039,'events','itemid',33502),(14040,'history','itemid',33502),(14041,'history_log','itemid',33502),(14042,'history_str','itemid',33502),(14043,'history_text','itemid',33502),(14044,'history_uint','itemid',33502),(14045,'trends','itemid',33502),(14046,'trends_uint','itemid',33502),(14047,'events','itemid',33501),(14048,'history','itemid',33501),(14049,'history_log','itemid',33501),(14050,'history_str','itemid',33501),(14051,'history_text','itemid',33501),(14052,'history_uint','itemid',33501),(14053,'trends','itemid',33501),(14054,'trends_uint','itemid',33501),(14055,'events','itemid',33500),(14056,'history','itemid',33500),(14057,'history_log','itemid',33500),(14058,'history_str','itemid',33500),(14059,'history_text','itemid',33500),(14060,'history_uint','itemid',33500),(14061,'trends','itemid',33500),(14062,'trends_uint','itemid',33500),(14063,'events','itemid',33499),(14064,'history','itemid',33499),(14065,'history_log','itemid',33499),(14066,'history_str','itemid',33499),(14067,'history_text','itemid',33499),(14068,'history_uint','itemid',33499),(14069,'trends','itemid',33499),(14070,'trends_uint','itemid',33499),(14071,'events','itemid',33498),(14072,'history','itemid',33498),(14073,'history_log','itemid',33498),(14074,'history_str','itemid',33498),(14075,'history_text','itemid',33498),(14076,'history_uint','itemid',33498),(14077,'trends','itemid',33498),(14078,'trends_uint','itemid',33498),(14079,'events','itemid',33497),(14080,'history','itemid',33497),(14081,'history_log','itemid',33497),(14082,'history_str','itemid',33497),(14083,'history_text','itemid',33497),(14084,'history_uint','itemid',33497),(14085,'trends','itemid',33497),(14086,'trends_uint','itemid',33497),(14087,'events','itemid',33496),(14088,'history','itemid',33496),(14089,'history_log','itemid',33496),(14090,'history_str','itemid',33496),(14091,'history_text','itemid',33496),(14092,'history_uint','itemid',33496),(14093,'trends','itemid',33496),(14094,'trends_uint','itemid',33496),(14095,'events','itemid',33495),(14096,'history','itemid',33495),(14097,'history_log','itemid',33495),(14098,'history_str','itemid',33495),(14099,'history_text','itemid',33495),(14100,'history_uint','itemid',33495),(14101,'trends','itemid',33495),(14102,'trends_uint','itemid',33495),(14103,'events','itemid',33519),(14104,'history','itemid',33519),(14105,'history_log','itemid',33519),(14106,'history_str','itemid',33519),(14107,'history_text','itemid',33519),(14108,'history_uint','itemid',33519),(14109,'trends','itemid',33519),(14110,'trends_uint','itemid',33519),(14111,'events','itemid',35078),(14112,'history','itemid',35078),(14113,'history_log','itemid',35078),(14114,'history_str','itemid',35078),(14115,'history_text','itemid',35078),(14116,'history_uint','itemid',35078),(14117,'trends','itemid',35078),(14118,'trends_uint','itemid',35078),(14119,'events','itemid',35101),(14120,'history','itemid',35101),(14121,'history_log','itemid',35101),(14122,'history_str','itemid',35101),(14123,'history_text','itemid',35101),(14124,'history_uint','itemid',35101),(14125,'trends','itemid',35101),(14126,'trends_uint','itemid',35101),(14127,'events','itemid',35091),(14128,'history','itemid',35091),(14129,'history_log','itemid',35091),(14130,'history_str','itemid',35091),(14131,'history_text','itemid',35091),(14132,'history_uint','itemid',35091),(14133,'trends','itemid',35091),(14134,'trends_uint','itemid',35091),(14135,'events','itemid',35100),(14136,'history','itemid',35100),(14137,'history_log','itemid',35100),(14138,'history_str','itemid',35100),(14139,'history_text','itemid',35100),(14140,'history_uint','itemid',35100),(14141,'trends','itemid',35100),(14142,'trends_uint','itemid',35100),(14143,'events','itemid',35099),(14144,'history','itemid',35099),(14145,'history_log','itemid',35099),(14146,'history_str','itemid',35099),(14147,'history_text','itemid',35099),(14148,'history_uint','itemid',35099),(14149,'trends','itemid',35099),(14150,'trends_uint','itemid',35099),(14151,'events','itemid',35098),(14152,'history','itemid',35098),(14153,'history_log','itemid',35098),(14154,'history_str','itemid',35098),(14155,'history_text','itemid',35098),(14156,'history_uint','itemid',35098),(14157,'trends','itemid',35098),(14158,'trends_uint','itemid',35098),(14159,'events','itemid',35097),(14160,'history','itemid',35097),(14161,'history_log','itemid',35097),(14162,'history_str','itemid',35097),(14163,'history_text','itemid',35097),(14164,'history_uint','itemid',35097),(14165,'trends','itemid',35097),(14166,'trends_uint','itemid',35097),(14167,'events','itemid',35096),(14168,'history','itemid',35096),(14169,'history_log','itemid',35096),(14170,'history_str','itemid',35096),(14171,'history_text','itemid',35096),(14172,'history_uint','itemid',35096),(14173,'trends','itemid',35096),(14174,'trends_uint','itemid',35096),(14175,'events','itemid',35095),(14176,'history','itemid',35095),(14177,'history_log','itemid',35095),(14178,'history_str','itemid',35095),(14179,'history_text','itemid',35095),(14180,'history_uint','itemid',35095),(14181,'trends','itemid',35095),(14182,'trends_uint','itemid',35095),(14183,'events','itemid',35077),(14184,'history','itemid',35077),(14185,'history_log','itemid',35077),(14186,'history_str','itemid',35077),(14187,'history_text','itemid',35077),(14188,'history_uint','itemid',35077),(14189,'trends','itemid',35077),(14190,'trends_uint','itemid',35077),(14191,'events','itemid',35094),(14192,'history','itemid',35094),(14193,'history_log','itemid',35094),(14194,'history_str','itemid',35094),(14195,'history_text','itemid',35094),(14196,'history_uint','itemid',35094),(14197,'trends','itemid',35094),(14198,'trends_uint','itemid',35094),(14199,'events','itemid',35093),(14200,'history','itemid',35093),(14201,'history_log','itemid',35093),(14202,'history_str','itemid',35093),(14203,'history_text','itemid',35093),(14204,'history_uint','itemid',35093),(14205,'trends','itemid',35093),(14206,'trends_uint','itemid',35093),(14207,'events','itemid',35090),(14208,'history','itemid',35090),(14209,'history_log','itemid',35090),(14210,'history_str','itemid',35090),(14211,'history_text','itemid',35090),(14212,'history_uint','itemid',35090),(14213,'trends','itemid',35090),(14214,'trends_uint','itemid',35090),(14215,'events','itemid',35092),(14216,'history','itemid',35092),(14217,'history_log','itemid',35092),(14218,'history_str','itemid',35092),(14219,'history_text','itemid',35092),(14220,'history_uint','itemid',35092),(14221,'trends','itemid',35092),(14222,'trends_uint','itemid',35092),(14223,'events','itemid',35079),(14224,'history','itemid',35079),(14225,'history_log','itemid',35079),(14226,'history_str','itemid',35079),(14227,'history_text','itemid',35079),(14228,'history_uint','itemid',35079),(14229,'trends','itemid',35079),(14230,'trends_uint','itemid',35079),(14231,'events','itemid',35089),(14232,'history','itemid',35089),(14233,'history_log','itemid',35089),(14234,'history_str','itemid',35089),(14235,'history_text','itemid',35089),(14236,'history_uint','itemid',35089),(14237,'trends','itemid',35089),(14238,'trends_uint','itemid',35089),(14239,'events','itemid',35088),(14240,'history','itemid',35088),(14241,'history_log','itemid',35088),(14242,'history_str','itemid',35088),(14243,'history_text','itemid',35088),(14244,'history_uint','itemid',35088),(14245,'trends','itemid',35088),(14246,'trends_uint','itemid',35088),(14247,'events','itemid',35087),(14248,'history','itemid',35087),(14249,'history_log','itemid',35087),(14250,'history_str','itemid',35087),(14251,'history_text','itemid',35087),(14252,'history_uint','itemid',35087),(14253,'trends','itemid',35087),(14254,'trends_uint','itemid',35087),(14255,'events','itemid',35086),(14256,'history','itemid',35086),(14257,'history_log','itemid',35086),(14258,'history_str','itemid',35086),(14259,'history_text','itemid',35086),(14260,'history_uint','itemid',35086),(14261,'trends','itemid',35086),(14262,'trends_uint','itemid',35086),(14263,'events','itemid',35085),(14264,'history','itemid',35085),(14265,'history_log','itemid',35085),(14266,'history_str','itemid',35085),(14267,'history_text','itemid',35085),(14268,'history_uint','itemid',35085),(14269,'trends','itemid',35085),(14270,'trends_uint','itemid',35085),(14271,'events','itemid',35084),(14272,'history','itemid',35084),(14273,'history_log','itemid',35084),(14274,'history_str','itemid',35084),(14275,'history_text','itemid',35084),(14276,'history_uint','itemid',35084),(14277,'trends','itemid',35084),(14278,'trends_uint','itemid',35084),(14279,'events','itemid',35083),(14280,'history','itemid',35083),(14281,'history_log','itemid',35083),(14282,'history_str','itemid',35083),(14283,'history_text','itemid',35083),(14284,'history_uint','itemid',35083),(14285,'trends','itemid',35083),(14286,'trends_uint','itemid',35083),(14287,'events','itemid',35082),(14288,'history','itemid',35082),(14289,'history_log','itemid',35082),(14290,'history_str','itemid',35082),(14291,'history_text','itemid',35082),(14292,'history_uint','itemid',35082),(14293,'trends','itemid',35082),(14294,'trends_uint','itemid',35082),(14295,'events','itemid',35081),(14296,'history','itemid',35081),(14297,'history_log','itemid',35081),(14298,'history_str','itemid',35081),(14299,'history_text','itemid',35081),(14300,'history_uint','itemid',35081),(14301,'trends','itemid',35081),(14302,'trends_uint','itemid',35081),(14303,'events','itemid',35080),(14304,'history','itemid',35080),(14305,'history_log','itemid',35080),(14306,'history_str','itemid',35080),(14307,'history_text','itemid',35080),(14308,'history_uint','itemid',35080),(14309,'trends','itemid',35080),(14310,'trends_uint','itemid',35080),(14311,'events','itemid',35102),(14312,'history','itemid',35102),(14313,'history_log','itemid',35102),(14314,'history_str','itemid',35102),(14315,'history_text','itemid',35102),(14316,'history_uint','itemid',35102),(14317,'trends','itemid',35102),(14318,'trends_uint','itemid',35102),(14319,'events','itemid',35406),(14320,'history','itemid',35406),(14321,'history_log','itemid',35406),(14322,'history_str','itemid',35406),(14323,'history_text','itemid',35406),(14324,'history_uint','itemid',35406),(14325,'trends','itemid',35406),(14326,'trends_uint','itemid',35406),(14327,'events','itemid',36823),(14328,'history','itemid',36823),(14329,'history_log','itemid',36823),(14330,'history_str','itemid',36823),(14331,'history_text','itemid',36823),(14332,'history_uint','itemid',36823),(14333,'trends','itemid',36823),(14334,'trends_uint','itemid',36823),(14335,'events','itemid',35415),(14336,'history','itemid',35415),(14337,'history_log','itemid',35415),(14338,'history_str','itemid',35415),(14339,'history_text','itemid',35415),(14340,'history_uint','itemid',35415),(14341,'trends','itemid',35415),(14342,'trends_uint','itemid',35415),(14343,'events','itemid',35422),(14344,'history','itemid',35422),(14345,'history_log','itemid',35422),(14346,'history_str','itemid',35422),(14347,'history_text','itemid',35422),(14348,'history_uint','itemid',35422),(14349,'trends','itemid',35422),(14350,'trends_uint','itemid',35422),(14351,'events','itemid',35421),(14352,'history','itemid',35421),(14353,'history_log','itemid',35421),(14354,'history_str','itemid',35421),(14355,'history_text','itemid',35421),(14356,'history_uint','itemid',35421),(14357,'trends','itemid',35421),(14358,'trends_uint','itemid',35421),(14359,'events','itemid',35420),(14360,'history','itemid',35420),(14361,'history_log','itemid',35420),(14362,'history_str','itemid',35420),(14363,'history_text','itemid',35420),(14364,'history_uint','itemid',35420),(14365,'trends','itemid',35420),(14366,'trends_uint','itemid',35420),(14367,'events','itemid',35419),(14368,'history','itemid',35419),(14369,'history_log','itemid',35419),(14370,'history_str','itemid',35419),(14371,'history_text','itemid',35419),(14372,'history_uint','itemid',35419),(14373,'trends','itemid',35419),(14374,'trends_uint','itemid',35419),(14375,'events','itemid',35418),(14376,'history','itemid',35418),(14377,'history_log','itemid',35418),(14378,'history_str','itemid',35418),(14379,'history_text','itemid',35418),(14380,'history_uint','itemid',35418),(14381,'trends','itemid',35418),(14382,'trends_uint','itemid',35418),(14383,'events','itemid',35417),(14384,'history','itemid',35417),(14385,'history_log','itemid',35417),(14386,'history_str','itemid',35417),(14387,'history_text','itemid',35417),(14388,'history_uint','itemid',35417),(14389,'trends','itemid',35417),(14390,'trends_uint','itemid',35417),(14391,'events','itemid',35416),(14392,'history','itemid',35416),(14393,'history_log','itemid',35416),(14394,'history_str','itemid',35416),(14395,'history_text','itemid',35416),(14396,'history_uint','itemid',35416),(14397,'trends','itemid',35416),(14398,'trends_uint','itemid',35416),(14399,'events','itemid',35414),(14400,'history','itemid',35414),(14401,'history_log','itemid',35414),(14402,'history_str','itemid',35414),(14403,'history_text','itemid',35414),(14404,'history_uint','itemid',35414),(14405,'trends','itemid',35414),(14406,'trends_uint','itemid',35414),(14407,'events','itemid',36822),(14408,'history','itemid',36822),(14409,'history_log','itemid',36822),(14410,'history_str','itemid',36822),(14411,'history_text','itemid',36822),(14412,'history_uint','itemid',36822),(14413,'trends','itemid',36822),(14414,'trends_uint','itemid',36822),(14415,'events','itemid',35407),(14416,'history','itemid',35407),(14417,'history_log','itemid',35407),(14418,'history_str','itemid',35407),(14419,'history_text','itemid',35407),(14420,'history_uint','itemid',35407),(14421,'trends','itemid',35407),(14422,'trends_uint','itemid',35407),(14423,'events','itemid',35413),(14424,'history','itemid',35413),(14425,'history_log','itemid',35413),(14426,'history_str','itemid',35413),(14427,'history_text','itemid',35413),(14428,'history_uint','itemid',35413),(14429,'trends','itemid',35413),(14430,'trends_uint','itemid',35413),(14431,'events','itemid',35412),(14432,'history','itemid',35412),(14433,'history_log','itemid',35412),(14434,'history_str','itemid',35412),(14435,'history_text','itemid',35412),(14436,'history_uint','itemid',35412),(14437,'trends','itemid',35412),(14438,'trends_uint','itemid',35412),(14439,'events','itemid',35411),(14440,'history','itemid',35411),(14441,'history_log','itemid',35411),(14442,'history_str','itemid',35411),(14443,'history_text','itemid',35411),(14444,'history_uint','itemid',35411),(14445,'trends','itemid',35411),(14446,'trends_uint','itemid',35411),(14447,'events','itemid',35410),(14448,'history','itemid',35410),(14449,'history_log','itemid',35410),(14450,'history_str','itemid',35410),(14451,'history_text','itemid',35410),(14452,'history_uint','itemid',35410),(14453,'trends','itemid',35410),(14454,'trends_uint','itemid',35410),(14455,'events','itemid',35409),(14456,'history','itemid',35409),(14457,'history_log','itemid',35409),(14458,'history_str','itemid',35409),(14459,'history_text','itemid',35409),(14460,'history_uint','itemid',35409),(14461,'trends','itemid',35409),(14462,'trends_uint','itemid',35409),(14463,'events','itemid',35408),(14464,'history','itemid',35408),(14465,'history_log','itemid',35408),(14466,'history_str','itemid',35408),(14467,'history_text','itemid',35408),(14468,'history_uint','itemid',35408),(14469,'trends','itemid',35408),(14470,'trends_uint','itemid',35408),(14471,'events','itemid',35423),(14472,'history','itemid',35423),(14473,'history_log','itemid',35423),(14474,'history_str','itemid',35423),(14475,'history_text','itemid',35423),(14476,'history_uint','itemid',35423),(14477,'trends','itemid',35423),(14478,'trends_uint','itemid',35423),(14479,'events','itemid',36160),(14480,'history','itemid',36160),(14481,'history_log','itemid',36160),(14482,'history_str','itemid',36160),(14483,'history_text','itemid',36160),(14484,'history_uint','itemid',36160),(14485,'trends','itemid',36160),(14486,'trends_uint','itemid',36160),(14487,'events','itemid',36161),(14488,'history','itemid',36161),(14489,'history_log','itemid',36161),(14490,'history_str','itemid',36161),(14491,'history_text','itemid',36161),(14492,'history_uint','itemid',36161),(14493,'trends','itemid',36161),(14494,'trends_uint','itemid',36161),(14495,'events','itemid',43889),(14496,'history','itemid',43889),(14497,'history_log','itemid',43889),(14498,'history_str','itemid',43889),(14499,'history_text','itemid',43889),(14500,'history_uint','itemid',43889),(14501,'trends','itemid',43889),(14502,'trends_uint','itemid',43889),(14503,'events','itemid',36162),(14504,'history','itemid',36162),(14505,'history_log','itemid',36162),(14506,'history_str','itemid',36162),(14507,'history_text','itemid',36162),(14508,'history_uint','itemid',36162),(14509,'trends','itemid',36162),(14510,'trends_uint','itemid',36162),(14511,'events','itemid',36163),(14512,'history','itemid',36163),(14513,'history_log','itemid',36163),(14514,'history_str','itemid',36163),(14515,'history_text','itemid',36163),(14516,'history_uint','itemid',36163),(14517,'trends','itemid',36163),(14518,'trends_uint','itemid',36163),(14519,'events','itemid',36165),(14520,'history','itemid',36165),(14521,'history_log','itemid',36165),(14522,'history_str','itemid',36165),(14523,'history_text','itemid',36165),(14524,'history_uint','itemid',36165),(14525,'trends','itemid',36165),(14526,'trends_uint','itemid',36165),(14527,'events','itemid',36164),(14528,'history','itemid',36164),(14529,'history_log','itemid',36164),(14530,'history_str','itemid',36164),(14531,'history_text','itemid',36164),(14532,'history_uint','itemid',36164),(14533,'trends','itemid',36164),(14534,'trends_uint','itemid',36164),(14535,'events','itemid',36166),(14536,'history','itemid',36166),(14537,'history_log','itemid',36166),(14538,'history_str','itemid',36166),(14539,'history_text','itemid',36166),(14540,'history_uint','itemid',36166),(14541,'trends','itemid',36166),(14542,'trends_uint','itemid',36166),(14543,'events','itemid',36167),(14544,'history','itemid',36167),(14545,'history_log','itemid',36167),(14546,'history_str','itemid',36167),(14547,'history_text','itemid',36167),(14548,'history_uint','itemid',36167),(14549,'trends','itemid',36167),(14550,'trends_uint','itemid',36167),(14551,'events','itemid',36215),(14552,'history','itemid',36215),(14553,'history_log','itemid',36215),(14554,'history_str','itemid',36215),(14555,'history_text','itemid',36215),(14556,'history_uint','itemid',36215),(14557,'trends','itemid',36215),(14558,'trends_uint','itemid',36215),(14559,'events','itemid',36216),(14560,'history','itemid',36216),(14561,'history_log','itemid',36216),(14562,'history_str','itemid',36216),(14563,'history_text','itemid',36216),(14564,'history_uint','itemid',36216),(14565,'trends','itemid',36216),(14566,'trends_uint','itemid',36216),(14567,'events','itemid',36217),(14568,'history','itemid',36217),(14569,'history_log','itemid',36217),(14570,'history_str','itemid',36217),(14571,'history_text','itemid',36217),(14572,'history_uint','itemid',36217),(14573,'trends','itemid',36217),(14574,'trends_uint','itemid',36217),(14575,'events','itemid',36218),(14576,'history','itemid',36218),(14577,'history_log','itemid',36218),(14578,'history_str','itemid',36218),(14579,'history_text','itemid',36218),(14580,'history_uint','itemid',36218),(14581,'trends','itemid',36218),(14582,'trends_uint','itemid',36218),(14583,'events','itemid',36213),(14584,'history','itemid',36213),(14585,'history_log','itemid',36213),(14586,'history_str','itemid',36213),(14587,'history_text','itemid',36213),(14588,'history_uint','itemid',36213),(14589,'trends','itemid',36213),(14590,'trends_uint','itemid',36213),(14591,'events','itemid',36214),(14592,'history','itemid',36214),(14593,'history_log','itemid',36214),(14594,'history_str','itemid',36214),(14595,'history_text','itemid',36214),(14596,'history_uint','itemid',36214),(14597,'trends','itemid',36214),(14598,'trends_uint','itemid',36214),(14599,'events','itemid',36255),(14600,'history','itemid',36255),(14601,'history_log','itemid',36255),(14602,'history_str','itemid',36255),(14603,'history_text','itemid',36255),(14604,'history_uint','itemid',36255),(14605,'trends','itemid',36255),(14606,'trends_uint','itemid',36255),(14607,'events','itemid',36256),(14608,'history','itemid',36256),(14609,'history_log','itemid',36256),(14610,'history_str','itemid',36256),(14611,'history_text','itemid',36256),(14612,'history_uint','itemid',36256),(14613,'trends','itemid',36256),(14614,'trends_uint','itemid',36256),(14615,'events','itemid',36257),(14616,'history','itemid',36257),(14617,'history_log','itemid',36257),(14618,'history_str','itemid',36257),(14619,'history_text','itemid',36257),(14620,'history_uint','itemid',36257),(14621,'trends','itemid',36257),(14622,'trends_uint','itemid',36257),(14623,'events','itemid',36258),(14624,'history','itemid',36258),(14625,'history_log','itemid',36258),(14626,'history_str','itemid',36258),(14627,'history_text','itemid',36258),(14628,'history_uint','itemid',36258),(14629,'trends','itemid',36258),(14630,'trends_uint','itemid',36258),(14631,'events','itemid',36259),(14632,'history','itemid',36259),(14633,'history_log','itemid',36259),(14634,'history_str','itemid',36259),(14635,'history_text','itemid',36259),(14636,'history_uint','itemid',36259),(14637,'trends','itemid',36259),(14638,'trends_uint','itemid',36259),(14639,'events','itemid',43891),(14640,'history','itemid',43891),(14641,'history_log','itemid',43891),(14642,'history_str','itemid',43891),(14643,'history_text','itemid',43891),(14644,'history_uint','itemid',43891),(14645,'trends','itemid',43891),(14646,'trends_uint','itemid',43891),(14647,'events','itemid',36260),(14648,'history','itemid',36260),(14649,'history_log','itemid',36260),(14650,'history_str','itemid',36260),(14651,'history_text','itemid',36260),(14652,'history_uint','itemid',36260),(14653,'trends','itemid',36260),(14654,'trends_uint','itemid',36260),(14655,'events','itemid',36261),(14656,'history','itemid',36261),(14657,'history_log','itemid',36261),(14658,'history_str','itemid',36261),(14659,'history_text','itemid',36261),(14660,'history_uint','itemid',36261),(14661,'trends','itemid',36261),(14662,'trends_uint','itemid',36261),(14663,'events','itemid',36265),(14664,'history','itemid',36265),(14665,'history_log','itemid',36265),(14666,'history_str','itemid',36265),(14667,'history_text','itemid',36265),(14668,'history_uint','itemid',36265),(14669,'trends','itemid',36265),(14670,'trends_uint','itemid',36265),(14671,'events','itemid',36262),(14672,'history','itemid',36262),(14673,'history_log','itemid',36262),(14674,'history_str','itemid',36262),(14675,'history_text','itemid',36262),(14676,'history_uint','itemid',36262),(14677,'trends','itemid',36262),(14678,'trends_uint','itemid',36262),(14679,'events','itemid',36263),(14680,'history','itemid',36263),(14681,'history_log','itemid',36263),(14682,'history_str','itemid',36263),(14683,'history_text','itemid',36263),(14684,'history_uint','itemid',36263),(14685,'trends','itemid',36263),(14686,'trends_uint','itemid',36263),(14687,'events','itemid',36264),(14688,'history','itemid',36264),(14689,'history_log','itemid',36264),(14690,'history_str','itemid',36264),(14691,'history_text','itemid',36264),(14692,'history_uint','itemid',36264),(14693,'trends','itemid',36264),(14694,'trends_uint','itemid',36264),(14695,'events','itemid',36266),(14696,'history','itemid',36266),(14697,'history_log','itemid',36266),(14698,'history_str','itemid',36266),(14699,'history_text','itemid',36266),(14700,'history_uint','itemid',36266),(14701,'trends','itemid',36266),(14702,'trends_uint','itemid',36266),(14703,'events','itemid',36267),(14704,'history','itemid',36267),(14705,'history_log','itemid',36267),(14706,'history_str','itemid',36267),(14707,'history_text','itemid',36267),(14708,'history_uint','itemid',36267),(14709,'trends','itemid',36267),(14710,'trends_uint','itemid',36267),(14711,'events','itemid',36297),(14712,'history','itemid',36297),(14713,'history_log','itemid',36297),(14714,'history_str','itemid',36297),(14715,'history_text','itemid',36297),(14716,'history_uint','itemid',36297),(14717,'trends','itemid',36297),(14718,'trends_uint','itemid',36297),(14719,'events','itemid',36298),(14720,'history','itemid',36298),(14721,'history_log','itemid',36298),(14722,'history_str','itemid',36298),(14723,'history_text','itemid',36298),(14724,'history_uint','itemid',36298),(14725,'trends','itemid',36298),(14726,'trends_uint','itemid',36298),(14727,'events','itemid',36299),(14728,'history','itemid',36299),(14729,'history_log','itemid',36299),(14730,'history_str','itemid',36299),(14731,'history_text','itemid',36299),(14732,'history_uint','itemid',36299),(14733,'trends','itemid',36299),(14734,'trends_uint','itemid',36299),(14735,'events','itemid',36300),(14736,'history','itemid',36300),(14737,'history_log','itemid',36300),(14738,'history_str','itemid',36300),(14739,'history_text','itemid',36300),(14740,'history_uint','itemid',36300),(14741,'trends','itemid',36300),(14742,'trends_uint','itemid',36300),(14743,'events','itemid',36295),(14744,'history','itemid',36295),(14745,'history_log','itemid',36295),(14746,'history_str','itemid',36295),(14747,'history_text','itemid',36295),(14748,'history_uint','itemid',36295),(14749,'trends','itemid',36295),(14750,'trends_uint','itemid',36295),(14751,'events','itemid',36296),(14752,'history','itemid',36296),(14753,'history_log','itemid',36296),(14754,'history_str','itemid',36296),(14755,'history_text','itemid',36296),(14756,'history_uint','itemid',36296),(14757,'trends','itemid',36296),(14758,'trends_uint','itemid',36296),(14759,'events','itemid',36337),(14760,'history','itemid',36337),(14761,'history_log','itemid',36337),(14762,'history_str','itemid',36337),(14763,'history_text','itemid',36337),(14764,'history_uint','itemid',36337),(14765,'trends','itemid',36337),(14766,'trends_uint','itemid',36337),(14767,'events','itemid',36338),(14768,'history','itemid',36338),(14769,'history_log','itemid',36338),(14770,'history_str','itemid',36338),(14771,'history_text','itemid',36338),(14772,'history_uint','itemid',36338),(14773,'trends','itemid',36338),(14774,'trends_uint','itemid',36338),(14775,'events','itemid',36339),(14776,'history','itemid',36339),(14777,'history_log','itemid',36339),(14778,'history_str','itemid',36339),(14779,'history_text','itemid',36339),(14780,'history_uint','itemid',36339),(14781,'trends','itemid',36339),(14782,'trends_uint','itemid',36339),(14783,'events','itemid',36340),(14784,'history','itemid',36340),(14785,'history_log','itemid',36340),(14786,'history_str','itemid',36340),(14787,'history_text','itemid',36340),(14788,'history_uint','itemid',36340),(14789,'trends','itemid',36340),(14790,'trends_uint','itemid',36340),(14791,'events','itemid',36341),(14792,'history','itemid',36341),(14793,'history_log','itemid',36341),(14794,'history_str','itemid',36341),(14795,'history_text','itemid',36341),(14796,'history_uint','itemid',36341),(14797,'trends','itemid',36341),(14798,'trends_uint','itemid',36341),(14799,'events','itemid',43892),(14800,'history','itemid',43892),(14801,'history_log','itemid',43892),(14802,'history_str','itemid',43892),(14803,'history_text','itemid',43892),(14804,'history_uint','itemid',43892),(14805,'trends','itemid',43892),(14806,'trends_uint','itemid',43892),(14807,'events','itemid',36342),(14808,'history','itemid',36342),(14809,'history_log','itemid',36342),(14810,'history_str','itemid',36342),(14811,'history_text','itemid',36342),(14812,'history_uint','itemid',36342),(14813,'trends','itemid',36342),(14814,'trends_uint','itemid',36342),(14815,'events','itemid',36343),(14816,'history','itemid',36343),(14817,'history_log','itemid',36343),(14818,'history_str','itemid',36343),(14819,'history_text','itemid',36343),(14820,'history_uint','itemid',36343),(14821,'trends','itemid',36343),(14822,'trends_uint','itemid',36343),(14823,'events','itemid',36347),(14824,'history','itemid',36347),(14825,'history_log','itemid',36347),(14826,'history_str','itemid',36347),(14827,'history_text','itemid',36347),(14828,'history_uint','itemid',36347),(14829,'trends','itemid',36347),(14830,'trends_uint','itemid',36347),(14831,'events','itemid',36344),(14832,'history','itemid',36344),(14833,'history_log','itemid',36344),(14834,'history_str','itemid',36344),(14835,'history_text','itemid',36344),(14836,'history_uint','itemid',36344),(14837,'trends','itemid',36344),(14838,'trends_uint','itemid',36344),(14839,'events','itemid',36345),(14840,'history','itemid',36345),(14841,'history_log','itemid',36345),(14842,'history_str','itemid',36345),(14843,'history_text','itemid',36345),(14844,'history_uint','itemid',36345),(14845,'trends','itemid',36345),(14846,'trends_uint','itemid',36345),(14847,'events','itemid',36346),(14848,'history','itemid',36346),(14849,'history_log','itemid',36346),(14850,'history_str','itemid',36346),(14851,'history_text','itemid',36346),(14852,'history_uint','itemid',36346),(14853,'trends','itemid',36346),(14854,'trends_uint','itemid',36346),(14855,'events','itemid',36348),(14856,'history','itemid',36348),(14857,'history_log','itemid',36348),(14858,'history_str','itemid',36348),(14859,'history_text','itemid',36348),(14860,'history_uint','itemid',36348),(14861,'trends','itemid',36348),(14862,'trends_uint','itemid',36348),(14863,'events','itemid',36349),(14864,'history','itemid',36349),(14865,'history_log','itemid',36349),(14866,'history_str','itemid',36349),(14867,'history_text','itemid',36349),(14868,'history_uint','itemid',36349),(14869,'trends','itemid',36349),(14870,'trends_uint','itemid',36349),(14871,'events','itemid',36379),(14872,'history','itemid',36379),(14873,'history_log','itemid',36379),(14874,'history_str','itemid',36379),(14875,'history_text','itemid',36379),(14876,'history_uint','itemid',36379),(14877,'trends','itemid',36379),(14878,'trends_uint','itemid',36379),(14879,'events','itemid',36380),(14880,'history','itemid',36380),(14881,'history_log','itemid',36380),(14882,'history_str','itemid',36380),(14883,'history_text','itemid',36380),(14884,'history_uint','itemid',36380),(14885,'trends','itemid',36380),(14886,'trends_uint','itemid',36380),(14887,'events','itemid',36381),(14888,'history','itemid',36381),(14889,'history_log','itemid',36381),(14890,'history_str','itemid',36381),(14891,'history_text','itemid',36381),(14892,'history_uint','itemid',36381),(14893,'trends','itemid',36381),(14894,'trends_uint','itemid',36381),(14895,'events','itemid',36382),(14896,'history','itemid',36382),(14897,'history_log','itemid',36382),(14898,'history_str','itemid',36382),(14899,'history_text','itemid',36382),(14900,'history_uint','itemid',36382),(14901,'trends','itemid',36382),(14902,'trends_uint','itemid',36382),(14903,'events','itemid',36377),(14904,'history','itemid',36377),(14905,'history_log','itemid',36377),(14906,'history_str','itemid',36377),(14907,'history_text','itemid',36377),(14908,'history_uint','itemid',36377),(14909,'trends','itemid',36377),(14910,'trends_uint','itemid',36377),(14911,'events','itemid',36378),(14912,'history','itemid',36378),(14913,'history_log','itemid',36378),(14914,'history_str','itemid',36378),(14915,'history_text','itemid',36378),(14916,'history_uint','itemid',36378),(14917,'trends','itemid',36378),(14918,'trends_uint','itemid',36378),(14919,'events','itemid',36419),(14920,'history','itemid',36419),(14921,'history_log','itemid',36419),(14922,'history_str','itemid',36419),(14923,'history_text','itemid',36419),(14924,'history_uint','itemid',36419),(14925,'trends','itemid',36419),(14926,'trends_uint','itemid',36419),(14927,'events','itemid',36420),(14928,'history','itemid',36420),(14929,'history_log','itemid',36420),(14930,'history_str','itemid',36420),(14931,'history_text','itemid',36420),(14932,'history_uint','itemid',36420),(14933,'trends','itemid',36420),(14934,'trends_uint','itemid',36420),(14935,'events','itemid',36421),(14936,'history','itemid',36421),(14937,'history_log','itemid',36421),(14938,'history_str','itemid',36421),(14939,'history_text','itemid',36421),(14940,'history_uint','itemid',36421),(14941,'trends','itemid',36421),(14942,'trends_uint','itemid',36421),(14943,'events','itemid',36422),(14944,'history','itemid',36422),(14945,'history_log','itemid',36422),(14946,'history_str','itemid',36422),(14947,'history_text','itemid',36422),(14948,'history_uint','itemid',36422),(14949,'trends','itemid',36422),(14950,'trends_uint','itemid',36422),(14951,'events','itemid',36423),(14952,'history','itemid',36423),(14953,'history_log','itemid',36423),(14954,'history_str','itemid',36423),(14955,'history_text','itemid',36423),(14956,'history_uint','itemid',36423),(14957,'trends','itemid',36423),(14958,'trends_uint','itemid',36423),(14959,'events','itemid',43893),(14960,'history','itemid',43893),(14961,'history_log','itemid',43893),(14962,'history_str','itemid',43893),(14963,'history_text','itemid',43893),(14964,'history_uint','itemid',43893),(14965,'trends','itemid',43893),(14966,'trends_uint','itemid',43893),(14967,'events','itemid',36424),(14968,'history','itemid',36424),(14969,'history_log','itemid',36424),(14970,'history_str','itemid',36424),(14971,'history_text','itemid',36424),(14972,'history_uint','itemid',36424),(14973,'trends','itemid',36424),(14974,'trends_uint','itemid',36424),(14975,'events','itemid',36425),(14976,'history','itemid',36425),(14977,'history_log','itemid',36425),(14978,'history_str','itemid',36425),(14979,'history_text','itemid',36425),(14980,'history_uint','itemid',36425),(14981,'trends','itemid',36425),(14982,'trends_uint','itemid',36425),(14983,'events','itemid',36429),(14984,'history','itemid',36429),(14985,'history_log','itemid',36429),(14986,'history_str','itemid',36429),(14987,'history_text','itemid',36429),(14988,'history_uint','itemid',36429),(14989,'trends','itemid',36429),(14990,'trends_uint','itemid',36429),(14991,'events','itemid',36426),(14992,'history','itemid',36426),(14993,'history_log','itemid',36426),(14994,'history_str','itemid',36426),(14995,'history_text','itemid',36426),(14996,'history_uint','itemid',36426),(14997,'trends','itemid',36426),(14998,'trends_uint','itemid',36426),(14999,'events','itemid',36427),(15000,'history','itemid',36427),(15001,'history_log','itemid',36427),(15002,'history_str','itemid',36427),(15003,'history_text','itemid',36427),(15004,'history_uint','itemid',36427),(15005,'trends','itemid',36427),(15006,'trends_uint','itemid',36427),(15007,'events','itemid',36428),(15008,'history','itemid',36428),(15009,'history_log','itemid',36428),(15010,'history_str','itemid',36428),(15011,'history_text','itemid',36428),(15012,'history_uint','itemid',36428),(15013,'trends','itemid',36428),(15014,'trends_uint','itemid',36428),(15015,'events','itemid',36430),(15016,'history','itemid',36430),(15017,'history_log','itemid',36430),(15018,'history_str','itemid',36430),(15019,'history_text','itemid',36430),(15020,'history_uint','itemid',36430),(15021,'trends','itemid',36430),(15022,'trends_uint','itemid',36430),(15023,'events','itemid',36431),(15024,'history','itemid',36431),(15025,'history_log','itemid',36431),(15026,'history_str','itemid',36431),(15027,'history_text','itemid',36431),(15028,'history_uint','itemid',36431),(15029,'trends','itemid',36431),(15030,'trends_uint','itemid',36431),(15031,'events','itemid',36461),(15032,'history','itemid',36461),(15033,'history_log','itemid',36461),(15034,'history_str','itemid',36461),(15035,'history_text','itemid',36461),(15036,'history_uint','itemid',36461),(15037,'trends','itemid',36461),(15038,'trends_uint','itemid',36461),(15039,'events','itemid',36462),(15040,'history','itemid',36462),(15041,'history_log','itemid',36462),(15042,'history_str','itemid',36462),(15043,'history_text','itemid',36462),(15044,'history_uint','itemid',36462),(15045,'trends','itemid',36462),(15046,'trends_uint','itemid',36462),(15047,'events','itemid',36463),(15048,'history','itemid',36463),(15049,'history_log','itemid',36463),(15050,'history_str','itemid',36463),(15051,'history_text','itemid',36463),(15052,'history_uint','itemid',36463),(15053,'trends','itemid',36463),(15054,'trends_uint','itemid',36463),(15055,'events','itemid',36464),(15056,'history','itemid',36464),(15057,'history_log','itemid',36464),(15058,'history_str','itemid',36464),(15059,'history_text','itemid',36464),(15060,'history_uint','itemid',36464),(15061,'trends','itemid',36464),(15062,'trends_uint','itemid',36464),(15063,'events','itemid',36459),(15064,'history','itemid',36459),(15065,'history_log','itemid',36459),(15066,'history_str','itemid',36459),(15067,'history_text','itemid',36459),(15068,'history_uint','itemid',36459),(15069,'trends','itemid',36459),(15070,'trends_uint','itemid',36459),(15071,'events','itemid',36460),(15072,'history','itemid',36460),(15073,'history_log','itemid',36460),(15074,'history_str','itemid',36460),(15075,'history_text','itemid',36460),(15076,'history_uint','itemid',36460),(15077,'trends','itemid',36460),(15078,'trends_uint','itemid',36460),(15079,'events','itemid',36501),(15080,'history','itemid',36501),(15081,'history_log','itemid',36501),(15082,'history_str','itemid',36501),(15083,'history_text','itemid',36501),(15084,'history_uint','itemid',36501),(15085,'trends','itemid',36501),(15086,'trends_uint','itemid',36501),(15087,'events','itemid',36502),(15088,'history','itemid',36502),(15089,'history_log','itemid',36502),(15090,'history_str','itemid',36502),(15091,'history_text','itemid',36502),(15092,'history_uint','itemid',36502),(15093,'trends','itemid',36502),(15094,'trends_uint','itemid',36502),(15095,'events','itemid',36503),(15096,'history','itemid',36503),(15097,'history_log','itemid',36503),(15098,'history_str','itemid',36503),(15099,'history_text','itemid',36503),(15100,'history_uint','itemid',36503),(15101,'trends','itemid',36503),(15102,'trends_uint','itemid',36503),(15103,'events','itemid',36504),(15104,'history','itemid',36504),(15105,'history_log','itemid',36504),(15106,'history_str','itemid',36504),(15107,'history_text','itemid',36504),(15108,'history_uint','itemid',36504),(15109,'trends','itemid',36504),(15110,'trends_uint','itemid',36504),(15111,'events','itemid',36505),(15112,'history','itemid',36505),(15113,'history_log','itemid',36505),(15114,'history_str','itemid',36505),(15115,'history_text','itemid',36505),(15116,'history_uint','itemid',36505),(15117,'trends','itemid',36505),(15118,'trends_uint','itemid',36505),(15119,'events','itemid',43894),(15120,'history','itemid',43894),(15121,'history_log','itemid',43894),(15122,'history_str','itemid',43894),(15123,'history_text','itemid',43894),(15124,'history_uint','itemid',43894),(15125,'trends','itemid',43894),(15126,'trends_uint','itemid',43894),(15127,'events','itemid',36506),(15128,'history','itemid',36506),(15129,'history_log','itemid',36506),(15130,'history_str','itemid',36506),(15131,'history_text','itemid',36506),(15132,'history_uint','itemid',36506),(15133,'trends','itemid',36506),(15134,'trends_uint','itemid',36506),(15135,'events','itemid',36507),(15136,'history','itemid',36507),(15137,'history_log','itemid',36507),(15138,'history_str','itemid',36507),(15139,'history_text','itemid',36507),(15140,'history_uint','itemid',36507),(15141,'trends','itemid',36507),(15142,'trends_uint','itemid',36507),(15143,'events','itemid',36511),(15144,'history','itemid',36511),(15145,'history_log','itemid',36511),(15146,'history_str','itemid',36511),(15147,'history_text','itemid',36511),(15148,'history_uint','itemid',36511),(15149,'trends','itemid',36511),(15150,'trends_uint','itemid',36511),(15151,'events','itemid',36508),(15152,'history','itemid',36508),(15153,'history_log','itemid',36508),(15154,'history_str','itemid',36508),(15155,'history_text','itemid',36508),(15156,'history_uint','itemid',36508),(15157,'trends','itemid',36508),(15158,'trends_uint','itemid',36508),(15159,'events','itemid',36509),(15160,'history','itemid',36509),(15161,'history_log','itemid',36509),(15162,'history_str','itemid',36509),(15163,'history_text','itemid',36509),(15164,'history_uint','itemid',36509),(15165,'trends','itemid',36509),(15166,'trends_uint','itemid',36509),(15167,'events','itemid',36510),(15168,'history','itemid',36510),(15169,'history_log','itemid',36510),(15170,'history_str','itemid',36510),(15171,'history_text','itemid',36510),(15172,'history_uint','itemid',36510),(15173,'trends','itemid',36510),(15174,'trends_uint','itemid',36510),(15175,'events','itemid',36512),(15176,'history','itemid',36512),(15177,'history_log','itemid',36512),(15178,'history_str','itemid',36512),(15179,'history_text','itemid',36512),(15180,'history_uint','itemid',36512),(15181,'trends','itemid',36512),(15182,'trends_uint','itemid',36512),(15183,'events','itemid',36513),(15184,'history','itemid',36513),(15185,'history_log','itemid',36513),(15186,'history_str','itemid',36513),(15187,'history_text','itemid',36513),(15188,'history_uint','itemid',36513),(15189,'trends','itemid',36513),(15190,'trends_uint','itemid',36513),(15191,'events','itemid',42959),(15192,'history','itemid',42959),(15193,'history_log','itemid',42959),(15194,'history_str','itemid',42959),(15195,'history_text','itemid',42959),(15196,'history_uint','itemid',42959),(15197,'trends','itemid',42959),(15198,'trends_uint','itemid',42959),(15199,'events','itemid',42973),(15200,'history','itemid',42973),(15201,'history_log','itemid',42973),(15202,'history_str','itemid',42973),(15203,'history_text','itemid',42973),(15204,'history_uint','itemid',42973),(15205,'trends','itemid',42973),(15206,'trends_uint','itemid',42973),(15207,'events','itemid',42962),(15208,'history','itemid',42962),(15209,'history_log','itemid',42962),(15210,'history_str','itemid',42962),(15211,'history_text','itemid',42962),(15212,'history_uint','itemid',42962),(15213,'trends','itemid',42962),(15214,'trends_uint','itemid',42962),(15215,'events','itemid',42963),(15216,'history','itemid',42963),(15217,'history_log','itemid',42963),(15218,'history_str','itemid',42963),(15219,'history_text','itemid',42963),(15220,'history_uint','itemid',42963),(15221,'trends','itemid',42963),(15222,'trends_uint','itemid',42963),(15223,'events','itemid',42964),(15224,'history','itemid',42964),(15225,'history_log','itemid',42964),(15226,'history_str','itemid',42964),(15227,'history_text','itemid',42964),(15228,'history_uint','itemid',42964),(15229,'trends','itemid',42964),(15230,'trends_uint','itemid',42964),(15231,'events','itemid',42965),(15232,'history','itemid',42965),(15233,'history_log','itemid',42965),(15234,'history_str','itemid',42965),(15235,'history_text','itemid',42965),(15236,'history_uint','itemid',42965),(15237,'trends','itemid',42965),(15238,'trends_uint','itemid',42965),(15239,'events','itemid',42966),(15240,'history','itemid',42966),(15241,'history_log','itemid',42966),(15242,'history_str','itemid',42966),(15243,'history_text','itemid',42966),(15244,'history_uint','itemid',42966),(15245,'trends','itemid',42966),(15246,'trends_uint','itemid',42966),(15247,'events','itemid',42967),(15248,'history','itemid',42967),(15249,'history_log','itemid',42967),(15250,'history_str','itemid',42967),(15251,'history_text','itemid',42967),(15252,'history_uint','itemid',42967),(15253,'trends','itemid',42967),(15254,'trends_uint','itemid',42967),(15255,'events','itemid',42968),(15256,'history','itemid',42968),(15257,'history_log','itemid',42968),(15258,'history_str','itemid',42968),(15259,'history_text','itemid',42968),(15260,'history_uint','itemid',42968),(15261,'trends','itemid',42968),(15262,'trends_uint','itemid',42968),(15263,'events','itemid',42969),(15264,'history','itemid',42969),(15265,'history_log','itemid',42969),(15266,'history_str','itemid',42969),(15267,'history_text','itemid',42969),(15268,'history_uint','itemid',42969),(15269,'trends','itemid',42969),(15270,'trends_uint','itemid',42969),(15271,'events','itemid',42970),(15272,'history','itemid',42970),(15273,'history_log','itemid',42970),(15274,'history_str','itemid',42970),(15275,'history_text','itemid',42970),(15276,'history_uint','itemid',42970),(15277,'trends','itemid',42970),(15278,'trends_uint','itemid',42970),(15279,'events','itemid',42971),(15280,'history','itemid',42971),(15281,'history_log','itemid',42971),(15282,'history_str','itemid',42971),(15283,'history_text','itemid',42971),(15284,'history_uint','itemid',42971),(15285,'trends','itemid',42971),(15286,'trends_uint','itemid',42971),(15287,'events','itemid',42961),(15288,'history','itemid',42961),(15289,'history_log','itemid',42961),(15290,'history_str','itemid',42961),(15291,'history_text','itemid',42961),(15292,'history_uint','itemid',42961),(15293,'trends','itemid',42961),(15294,'trends_uint','itemid',42961),(15295,'events','itemid',42972),(15296,'history','itemid',42972),(15297,'history_log','itemid',42972),(15298,'history_str','itemid',42972),(15299,'history_text','itemid',42972),(15300,'history_uint','itemid',42972),(15301,'trends','itemid',42972),(15302,'trends_uint','itemid',42972),(15303,'events','itemid',42974),(15304,'history','itemid',42974),(15305,'history_log','itemid',42974),(15306,'history_str','itemid',42974),(15307,'history_text','itemid',42974),(15308,'history_uint','itemid',42974),(15309,'trends','itemid',42974),(15310,'trends_uint','itemid',42974),(15311,'events','itemid',42931),(15312,'history','itemid',42931),(15313,'history_log','itemid',42931),(15314,'history_str','itemid',42931),(15315,'history_text','itemid',42931),(15316,'history_uint','itemid',42931),(15317,'trends','itemid',42931),(15318,'trends_uint','itemid',42931),(15319,'events','itemid',42933),(15320,'history','itemid',42933),(15321,'history_log','itemid',42933),(15322,'history_str','itemid',42933),(15323,'history_text','itemid',42933),(15324,'history_uint','itemid',42933),(15325,'trends','itemid',42933),(15326,'trends_uint','itemid',42933),(15327,'events','itemid',42932),(15328,'history','itemid',42932),(15329,'history_log','itemid',42932),(15330,'history_str','itemid',42932),(15331,'history_text','itemid',42932),(15332,'history_uint','itemid',42932),(15333,'trends','itemid',42932),(15334,'trends_uint','itemid',42932),(15335,'events','itemid',42975),(15336,'history','itemid',42975),(15337,'history_log','itemid',42975),(15338,'history_str','itemid',42975),(15339,'history_text','itemid',42975),(15340,'history_uint','itemid',42975),(15341,'trends','itemid',42975),(15342,'trends_uint','itemid',42975),(15343,'events','itemid',42976),(15344,'history','itemid',42976),(15345,'history_log','itemid',42976),(15346,'history_str','itemid',42976),(15347,'history_text','itemid',42976),(15348,'history_uint','itemid',42976),(15349,'trends','itemid',42976),(15350,'trends_uint','itemid',42976),(15351,'events','itemid',42977),(15352,'history','itemid',42977),(15353,'history_log','itemid',42977),(15354,'history_str','itemid',42977),(15355,'history_text','itemid',42977),(15356,'history_uint','itemid',42977),(15357,'trends','itemid',42977),(15358,'trends_uint','itemid',42977),(15359,'events','itemid',42978),(15360,'history','itemid',42978),(15361,'history_log','itemid',42978),(15362,'history_str','itemid',42978),(15363,'history_text','itemid',42978),(15364,'history_uint','itemid',42978),(15365,'trends','itemid',42978),(15366,'trends_uint','itemid',42978),(15367,'events','itemid',42979),(15368,'history','itemid',42979),(15369,'history_log','itemid',42979),(15370,'history_str','itemid',42979),(15371,'history_text','itemid',42979),(15372,'history_uint','itemid',42979),(15373,'trends','itemid',42979),(15374,'trends_uint','itemid',42979),(15375,'events','itemid',42980),(15376,'history','itemid',42980),(15377,'history_log','itemid',42980),(15378,'history_str','itemid',42980),(15379,'history_text','itemid',42980),(15380,'history_uint','itemid',42980),(15381,'trends','itemid',42980),(15382,'trends_uint','itemid',42980),(15383,'events','itemid',42981),(15384,'history','itemid',42981),(15385,'history_log','itemid',42981),(15386,'history_str','itemid',42981),(15387,'history_text','itemid',42981),(15388,'history_uint','itemid',42981),(15389,'trends','itemid',42981),(15390,'trends_uint','itemid',42981),(15391,'events','itemid',42982),(15392,'history','itemid',42982),(15393,'history_log','itemid',42982),(15394,'history_str','itemid',42982),(15395,'history_text','itemid',42982),(15396,'history_uint','itemid',42982),(15397,'trends','itemid',42982),(15398,'trends_uint','itemid',42982),(15399,'events','itemid',42983),(15400,'history','itemid',42983),(15401,'history_log','itemid',42983),(15402,'history_str','itemid',42983),(15403,'history_text','itemid',42983),(15404,'history_uint','itemid',42983),(15405,'trends','itemid',42983),(15406,'trends_uint','itemid',42983),(15407,'events','itemid',42984),(15408,'history','itemid',42984),(15409,'history_log','itemid',42984),(15410,'history_str','itemid',42984),(15411,'history_text','itemid',42984),(15412,'history_uint','itemid',42984),(15413,'trends','itemid',42984),(15414,'trends_uint','itemid',42984),(15415,'events','itemid',42985),(15416,'history','itemid',42985),(15417,'history_log','itemid',42985),(15418,'history_str','itemid',42985),(15419,'history_text','itemid',42985),(15420,'history_uint','itemid',42985),(15421,'trends','itemid',42985),(15422,'trends_uint','itemid',42985),(15423,'events','itemid',42960),(15424,'history','itemid',42960),(15425,'history_log','itemid',42960),(15426,'history_str','itemid',42960),(15427,'history_text','itemid',42960),(15428,'history_uint','itemid',42960),(15429,'trends','itemid',42960),(15430,'trends_uint','itemid',42960),(15431,'events','itemid',42945),(15432,'history','itemid',42945),(15433,'history_log','itemid',42945),(15434,'history_str','itemid',42945),(15435,'history_text','itemid',42945),(15436,'history_uint','itemid',42945),(15437,'trends','itemid',42945),(15438,'trends_uint','itemid',42945),(15439,'events','itemid',42958),(15440,'history','itemid',42958),(15441,'history_log','itemid',42958),(15442,'history_str','itemid',42958),(15443,'history_text','itemid',42958),(15444,'history_uint','itemid',42958),(15445,'trends','itemid',42958),(15446,'trends_uint','itemid',42958),(15447,'events','itemid',42934),(15448,'history','itemid',42934),(15449,'history_log','itemid',42934),(15450,'history_str','itemid',42934),(15451,'history_text','itemid',42934),(15452,'history_uint','itemid',42934),(15453,'trends','itemid',42934),(15454,'trends_uint','itemid',42934),(15455,'events','itemid',42935),(15456,'history','itemid',42935),(15457,'history_log','itemid',42935),(15458,'history_str','itemid',42935),(15459,'history_text','itemid',42935),(15460,'history_uint','itemid',42935),(15461,'trends','itemid',42935),(15462,'trends_uint','itemid',42935),(15463,'events','itemid',42936),(15464,'history','itemid',42936),(15465,'history_log','itemid',42936),(15466,'history_str','itemid',42936),(15467,'history_text','itemid',42936),(15468,'history_uint','itemid',42936),(15469,'trends','itemid',42936),(15470,'trends_uint','itemid',42936),(15471,'events','itemid',42937),(15472,'history','itemid',42937),(15473,'history_log','itemid',42937),(15474,'history_str','itemid',42937),(15475,'history_text','itemid',42937),(15476,'history_uint','itemid',42937),(15477,'trends','itemid',42937),(15478,'trends_uint','itemid',42937),(15479,'events','itemid',42938),(15480,'history','itemid',42938),(15481,'history_log','itemid',42938),(15482,'history_str','itemid',42938),(15483,'history_text','itemid',42938),(15484,'history_uint','itemid',42938),(15485,'trends','itemid',42938),(15486,'trends_uint','itemid',42938),(15487,'events','itemid',42939),(15488,'history','itemid',42939),(15489,'history_log','itemid',42939),(15490,'history_str','itemid',42939),(15491,'history_text','itemid',42939),(15492,'history_uint','itemid',42939),(15493,'trends','itemid',42939),(15494,'trends_uint','itemid',42939),(15495,'events','itemid',42940),(15496,'history','itemid',42940),(15497,'history_log','itemid',42940),(15498,'history_str','itemid',42940),(15499,'history_text','itemid',42940),(15500,'history_uint','itemid',42940),(15501,'trends','itemid',42940),(15502,'trends_uint','itemid',42940),(15503,'events','itemid',42941),(15504,'history','itemid',42941),(15505,'history_log','itemid',42941),(15506,'history_str','itemid',42941),(15507,'history_text','itemid',42941),(15508,'history_uint','itemid',42941),(15509,'trends','itemid',42941),(15510,'trends_uint','itemid',42941),(15511,'events','itemid',42942),(15512,'history','itemid',42942),(15513,'history_log','itemid',42942),(15514,'history_str','itemid',42942),(15515,'history_text','itemid',42942),(15516,'history_uint','itemid',42942),(15517,'trends','itemid',42942),(15518,'trends_uint','itemid',42942),(15519,'events','itemid',42943),(15520,'history','itemid',42943),(15521,'history_log','itemid',42943),(15522,'history_str','itemid',42943),(15523,'history_text','itemid',42943),(15524,'history_uint','itemid',42943),(15525,'trends','itemid',42943),(15526,'trends_uint','itemid',42943),(15527,'events','itemid',42944),(15528,'history','itemid',42944),(15529,'history_log','itemid',42944),(15530,'history_str','itemid',42944),(15531,'history_text','itemid',42944),(15532,'history_uint','itemid',42944),(15533,'trends','itemid',42944),(15534,'trends_uint','itemid',42944),(15535,'events','itemid',42946),(15536,'history','itemid',42946),(15537,'history_log','itemid',42946),(15538,'history_str','itemid',42946),(15539,'history_text','itemid',42946),(15540,'history_uint','itemid',42946),(15541,'trends','itemid',42946),(15542,'trends_uint','itemid',42946),(15543,'events','itemid',42947),(15544,'history','itemid',42947),(15545,'history_log','itemid',42947),(15546,'history_str','itemid',42947),(15547,'history_text','itemid',42947),(15548,'history_uint','itemid',42947),(15549,'trends','itemid',42947),(15550,'trends_uint','itemid',42947),(15551,'events','itemid',42948),(15552,'history','itemid',42948),(15553,'history_log','itemid',42948),(15554,'history_str','itemid',42948),(15555,'history_text','itemid',42948),(15556,'history_uint','itemid',42948),(15557,'trends','itemid',42948),(15558,'trends_uint','itemid',42948),(15559,'events','itemid',42949),(15560,'history','itemid',42949),(15561,'history_log','itemid',42949),(15562,'history_str','itemid',42949),(15563,'history_text','itemid',42949),(15564,'history_uint','itemid',42949),(15565,'trends','itemid',42949),(15566,'trends_uint','itemid',42949),(15567,'events','itemid',42950),(15568,'history','itemid',42950),(15569,'history_log','itemid',42950),(15570,'history_str','itemid',42950),(15571,'history_text','itemid',42950),(15572,'history_uint','itemid',42950),(15573,'trends','itemid',42950),(15574,'trends_uint','itemid',42950),(15575,'events','itemid',42951),(15576,'history','itemid',42951),(15577,'history_log','itemid',42951),(15578,'history_str','itemid',42951),(15579,'history_text','itemid',42951),(15580,'history_uint','itemid',42951),(15581,'trends','itemid',42951),(15582,'trends_uint','itemid',42951),(15583,'events','itemid',42952),(15584,'history','itemid',42952),(15585,'history_log','itemid',42952),(15586,'history_str','itemid',42952),(15587,'history_text','itemid',42952),(15588,'history_uint','itemid',42952),(15589,'trends','itemid',42952),(15590,'trends_uint','itemid',42952),(15591,'events','itemid',42953),(15592,'history','itemid',42953),(15593,'history_log','itemid',42953),(15594,'history_str','itemid',42953),(15595,'history_text','itemid',42953),(15596,'history_uint','itemid',42953),(15597,'trends','itemid',42953),(15598,'trends_uint','itemid',42953),(15599,'events','itemid',42954),(15600,'history','itemid',42954),(15601,'history_log','itemid',42954),(15602,'history_str','itemid',42954),(15603,'history_text','itemid',42954),(15604,'history_uint','itemid',42954),(15605,'trends','itemid',42954),(15606,'trends_uint','itemid',42954),(15607,'events','itemid',42955),(15608,'history','itemid',42955),(15609,'history_log','itemid',42955),(15610,'history_str','itemid',42955),(15611,'history_text','itemid',42955),(15612,'history_uint','itemid',42955),(15613,'trends','itemid',42955),(15614,'trends_uint','itemid',42955),(15615,'events','itemid',42956),(15616,'history','itemid',42956),(15617,'history_log','itemid',42956),(15618,'history_str','itemid',42956),(15619,'history_text','itemid',42956),(15620,'history_uint','itemid',42956),(15621,'trends','itemid',42956),(15622,'trends_uint','itemid',42956),(15623,'events','itemid',42957),(15624,'history','itemid',42957),(15625,'history_log','itemid',42957),(15626,'history_str','itemid',42957),(15627,'history_text','itemid',42957),(15628,'history_uint','itemid',42957),(15629,'trends','itemid',42957),(15630,'trends_uint','itemid',42957),(15631,'events','itemid',42930),(15632,'history','itemid',42930),(15633,'history_log','itemid',42930),(15634,'history_str','itemid',42930),(15635,'history_text','itemid',42930),(15636,'history_uint','itemid',42930),(15637,'trends','itemid',42930),(15638,'trends_uint','itemid',42930),(15639,'events','itemid',43019),(15640,'history','itemid',43019),(15641,'history_log','itemid',43019),(15642,'history_str','itemid',43019),(15643,'history_text','itemid',43019),(15644,'history_uint','itemid',43019),(15645,'trends','itemid',43019),(15646,'trends_uint','itemid',43019),(15647,'events','itemid',43034),(15648,'history','itemid',43034),(15649,'history_log','itemid',43034),(15650,'history_str','itemid',43034),(15651,'history_text','itemid',43034),(15652,'history_uint','itemid',43034),(15653,'trends','itemid',43034),(15654,'trends_uint','itemid',43034),(15655,'events','itemid',43045),(15656,'history','itemid',43045),(15657,'history_log','itemid',43045),(15658,'history_str','itemid',43045),(15659,'history_text','itemid',43045),(15660,'history_uint','itemid',43045),(15661,'trends','itemid',43045),(15662,'trends_uint','itemid',43045),(15663,'events','itemid',43044),(15664,'history','itemid',43044),(15665,'history_log','itemid',43044),(15666,'history_str','itemid',43044),(15667,'history_text','itemid',43044),(15668,'history_uint','itemid',43044),(15669,'trends','itemid',43044),(15670,'trends_uint','itemid',43044),(15671,'events','itemid',43043),(15672,'history','itemid',43043),(15673,'history_log','itemid',43043),(15674,'history_str','itemid',43043),(15675,'history_text','itemid',43043),(15676,'history_uint','itemid',43043),(15677,'trends','itemid',43043),(15678,'trends_uint','itemid',43043),(15679,'events','itemid',43042),(15680,'history','itemid',43042),(15681,'history_log','itemid',43042),(15682,'history_str','itemid',43042),(15683,'history_text','itemid',43042),(15684,'history_uint','itemid',43042),(15685,'trends','itemid',43042),(15686,'trends_uint','itemid',43042),(15687,'events','itemid',43041),(15688,'history','itemid',43041),(15689,'history_log','itemid',43041),(15690,'history_str','itemid',43041),(15691,'history_text','itemid',43041),(15692,'history_uint','itemid',43041),(15693,'trends','itemid',43041),(15694,'trends_uint','itemid',43041),(15695,'events','itemid',43040),(15696,'history','itemid',43040),(15697,'history_log','itemid',43040),(15698,'history_str','itemid',43040),(15699,'history_text','itemid',43040),(15700,'history_uint','itemid',43040),(15701,'trends','itemid',43040),(15702,'trends_uint','itemid',43040),(15703,'events','itemid',43039),(15704,'history','itemid',43039),(15705,'history_log','itemid',43039),(15706,'history_str','itemid',43039),(15707,'history_text','itemid',43039),(15708,'history_uint','itemid',43039),(15709,'trends','itemid',43039),(15710,'trends_uint','itemid',43039),(15711,'events','itemid',43038),(15712,'history','itemid',43038),(15713,'history_log','itemid',43038),(15714,'history_str','itemid',43038),(15715,'history_text','itemid',43038),(15716,'history_uint','itemid',43038),(15717,'trends','itemid',43038),(15718,'trends_uint','itemid',43038),(15719,'events','itemid',43018),(15720,'history','itemid',43018),(15721,'history_log','itemid',43018),(15722,'history_str','itemid',43018),(15723,'history_text','itemid',43018),(15724,'history_uint','itemid',43018),(15725,'trends','itemid',43018),(15726,'trends_uint','itemid',43018),(15727,'events','itemid',43037),(15728,'history','itemid',43037),(15729,'history_log','itemid',43037),(15730,'history_str','itemid',43037),(15731,'history_text','itemid',43037),(15732,'history_uint','itemid',43037),(15733,'trends','itemid',43037),(15734,'trends_uint','itemid',43037),(15735,'events','itemid',43036),(15736,'history','itemid',43036),(15737,'history_log','itemid',43036),(15738,'history_str','itemid',43036),(15739,'history_text','itemid',43036),(15740,'history_uint','itemid',43036),(15741,'trends','itemid',43036),(15742,'trends_uint','itemid',43036),(15743,'events','itemid',43035),(15744,'history','itemid',43035),(15745,'history_log','itemid',43035),(15746,'history_str','itemid',43035),(15747,'history_text','itemid',43035),(15748,'history_uint','itemid',43035),(15749,'trends','itemid',43035),(15750,'trends_uint','itemid',43035),(15751,'events','itemid',43032),(15752,'history','itemid',43032),(15753,'history_log','itemid',43032),(15754,'history_str','itemid',43032),(15755,'history_text','itemid',43032),(15756,'history_uint','itemid',43032),(15757,'trends','itemid',43032),(15758,'trends_uint','itemid',43032),(15759,'events','itemid',43033),(15760,'history','itemid',43033),(15761,'history_log','itemid',43033),(15762,'history_str','itemid',43033),(15763,'history_text','itemid',43033),(15764,'history_uint','itemid',43033),(15765,'trends','itemid',43033),(15766,'trends_uint','itemid',43033),(15767,'events','itemid',43020),(15768,'history','itemid',43020),(15769,'history_log','itemid',43020),(15770,'history_str','itemid',43020),(15771,'history_text','itemid',43020),(15772,'history_uint','itemid',43020),(15773,'trends','itemid',43020),(15774,'trends_uint','itemid',43020),(15775,'events','itemid',43031),(15776,'history','itemid',43031),(15777,'history_log','itemid',43031),(15778,'history_str','itemid',43031),(15779,'history_text','itemid',43031),(15780,'history_uint','itemid',43031),(15781,'trends','itemid',43031),(15782,'trends_uint','itemid',43031),(15783,'events','itemid',43030),(15784,'history','itemid',43030),(15785,'history_log','itemid',43030),(15786,'history_str','itemid',43030),(15787,'history_text','itemid',43030),(15788,'history_uint','itemid',43030),(15789,'trends','itemid',43030),(15790,'trends_uint','itemid',43030),(15791,'events','itemid',43029),(15792,'history','itemid',43029),(15793,'history_log','itemid',43029),(15794,'history_str','itemid',43029),(15795,'history_text','itemid',43029),(15796,'history_uint','itemid',43029),(15797,'trends','itemid',43029),(15798,'trends_uint','itemid',43029),(15799,'events','itemid',43028),(15800,'history','itemid',43028),(15801,'history_log','itemid',43028),(15802,'history_str','itemid',43028),(15803,'history_text','itemid',43028),(15804,'history_uint','itemid',43028),(15805,'trends','itemid',43028),(15806,'trends_uint','itemid',43028),(15807,'events','itemid',43027),(15808,'history','itemid',43027),(15809,'history_log','itemid',43027),(15810,'history_str','itemid',43027),(15811,'history_text','itemid',43027),(15812,'history_uint','itemid',43027),(15813,'trends','itemid',43027),(15814,'trends_uint','itemid',43027),(15815,'events','itemid',43026),(15816,'history','itemid',43026),(15817,'history_log','itemid',43026),(15818,'history_str','itemid',43026),(15819,'history_text','itemid',43026),(15820,'history_uint','itemid',43026),(15821,'trends','itemid',43026),(15822,'trends_uint','itemid',43026),(15823,'events','itemid',43025),(15824,'history','itemid',43025),(15825,'history_log','itemid',43025),(15826,'history_str','itemid',43025),(15827,'history_text','itemid',43025),(15828,'history_uint','itemid',43025),(15829,'trends','itemid',43025),(15830,'trends_uint','itemid',43025),(15831,'events','itemid',43024),(15832,'history','itemid',43024),(15833,'history_log','itemid',43024),(15834,'history_str','itemid',43024),(15835,'history_text','itemid',43024),(15836,'history_uint','itemid',43024),(15837,'trends','itemid',43024),(15838,'trends_uint','itemid',43024),(15839,'events','itemid',43023),(15840,'history','itemid',43023),(15841,'history_log','itemid',43023),(15842,'history_str','itemid',43023),(15843,'history_text','itemid',43023),(15844,'history_uint','itemid',43023),(15845,'trends','itemid',43023),(15846,'trends_uint','itemid',43023),(15847,'events','itemid',43022),(15848,'history','itemid',43022),(15849,'history_log','itemid',43022),(15850,'history_str','itemid',43022),(15851,'history_text','itemid',43022),(15852,'history_uint','itemid',43022),(15853,'trends','itemid',43022),(15854,'trends_uint','itemid',43022),(15855,'events','itemid',43021),(15856,'history','itemid',43021),(15857,'history_log','itemid',43021),(15858,'history_str','itemid',43021),(15859,'history_text','itemid',43021),(15860,'history_uint','itemid',43021),(15861,'trends','itemid',43021),(15862,'trends_uint','itemid',43021),(15863,'events','itemid',43046),(15864,'history','itemid',43046),(15865,'history_log','itemid',43046),(15866,'history_str','itemid',43046),(15867,'history_text','itemid',43046),(15868,'history_uint','itemid',43046),(15869,'trends','itemid',43046),(15870,'trends_uint','itemid',43046),(15871,'events','itemid',43095),(15872,'history','itemid',43095),(15873,'history_log','itemid',43095),(15874,'history_str','itemid',43095),(15875,'history_text','itemid',43095),(15876,'history_uint','itemid',43095),(15877,'trends','itemid',43095),(15878,'trends_uint','itemid',43095),(15879,'events','itemid',43121),(15880,'history','itemid',43121),(15881,'history_log','itemid',43121),(15882,'history_str','itemid',43121),(15883,'history_text','itemid',43121),(15884,'history_uint','itemid',43121),(15885,'trends','itemid',43121),(15886,'trends_uint','itemid',43121),(15887,'events','itemid',43111),(15888,'history','itemid',43111),(15889,'history_log','itemid',43111),(15890,'history_str','itemid',43111),(15891,'history_text','itemid',43111),(15892,'history_uint','itemid',43111),(15893,'trends','itemid',43111),(15894,'trends_uint','itemid',43111),(15895,'events','itemid',43113),(15896,'history','itemid',43113),(15897,'history_log','itemid',43113),(15898,'history_str','itemid',43113),(15899,'history_text','itemid',43113),(15900,'history_uint','itemid',43113),(15901,'trends','itemid',43113),(15902,'trends_uint','itemid',43113),(15903,'events','itemid',43112),(15904,'history','itemid',43112),(15905,'history_log','itemid',43112),(15906,'history_str','itemid',43112),(15907,'history_text','itemid',43112),(15908,'history_uint','itemid',43112),(15909,'trends','itemid',43112),(15910,'trends_uint','itemid',43112),(15911,'events','itemid',43114),(15912,'history','itemid',43114),(15913,'history_log','itemid',43114),(15914,'history_str','itemid',43114),(15915,'history_text','itemid',43114),(15916,'history_uint','itemid',43114),(15917,'trends','itemid',43114),(15918,'trends_uint','itemid',43114),(15919,'events','itemid',43115),(15920,'history','itemid',43115),(15921,'history_log','itemid',43115),(15922,'history_str','itemid',43115),(15923,'history_text','itemid',43115),(15924,'history_uint','itemid',43115),(15925,'trends','itemid',43115),(15926,'trends_uint','itemid',43115),(15927,'events','itemid',43116),(15928,'history','itemid',43116),(15929,'history_log','itemid',43116),(15930,'history_str','itemid',43116),(15931,'history_text','itemid',43116),(15932,'history_uint','itemid',43116),(15933,'trends','itemid',43116),(15934,'trends_uint','itemid',43116),(15935,'events','itemid',43117),(15936,'history','itemid',43117),(15937,'history_log','itemid',43117),(15938,'history_str','itemid',43117),(15939,'history_text','itemid',43117),(15940,'history_uint','itemid',43117),(15941,'trends','itemid',43117),(15942,'trends_uint','itemid',43117),(15943,'events','itemid',43118),(15944,'history','itemid',43118),(15945,'history_log','itemid',43118),(15946,'history_str','itemid',43118),(15947,'history_text','itemid',43118),(15948,'history_uint','itemid',43118),(15949,'trends','itemid',43118),(15950,'trends_uint','itemid',43118),(15951,'events','itemid',43081),(15952,'history','itemid',43081),(15953,'history_log','itemid',43081),(15954,'history_str','itemid',43081),(15955,'history_text','itemid',43081),(15956,'history_uint','itemid',43081),(15957,'trends','itemid',43081),(15958,'trends_uint','itemid',43081),(15959,'events','itemid',43119),(15960,'history','itemid',43119),(15961,'history_log','itemid',43119),(15962,'history_str','itemid',43119),(15963,'history_text','itemid',43119),(15964,'history_uint','itemid',43119),(15965,'trends','itemid',43119),(15966,'trends_uint','itemid',43119),(15967,'events','itemid',43083),(15968,'history','itemid',43083),(15969,'history_log','itemid',43083),(15970,'history_str','itemid',43083),(15971,'history_text','itemid',43083),(15972,'history_uint','itemid',43083),(15973,'trends','itemid',43083),(15974,'trends_uint','itemid',43083),(15975,'events','itemid',43082),(15976,'history','itemid',43082),(15977,'history_log','itemid',43082),(15978,'history_str','itemid',43082),(15979,'history_text','itemid',43082),(15980,'history_uint','itemid',43082),(15981,'trends','itemid',43082),(15982,'trends_uint','itemid',43082),(15983,'events','itemid',43110),(15984,'history','itemid',43110),(15985,'history_log','itemid',43110),(15986,'history_str','itemid',43110),(15987,'history_text','itemid',43110),(15988,'history_uint','itemid',43110),(15989,'trends','itemid',43110),(15990,'trends_uint','itemid',43110),(15991,'events','itemid',43120),(15992,'history','itemid',43120),(15993,'history_log','itemid',43120),(15994,'history_str','itemid',43120),(15995,'history_text','itemid',43120),(15996,'history_uint','itemid',43120),(15997,'trends','itemid',43120),(15998,'trends_uint','itemid',43120),(15999,'events','itemid',43122),(16000,'history','itemid',43122),(16001,'history_log','itemid',43122),(16002,'history_str','itemid',43122),(16003,'history_text','itemid',43122),(16004,'history_uint','itemid',43122),(16005,'trends','itemid',43122),(16006,'trends_uint','itemid',43122),(16007,'events','itemid',43123),(16008,'history','itemid',43123),(16009,'history_log','itemid',43123),(16010,'history_str','itemid',43123),(16011,'history_text','itemid',43123),(16012,'history_uint','itemid',43123),(16013,'trends','itemid',43123),(16014,'trends_uint','itemid',43123),(16015,'events','itemid',43124),(16016,'history','itemid',43124),(16017,'history_log','itemid',43124),(16018,'history_str','itemid',43124),(16019,'history_text','itemid',43124),(16020,'history_uint','itemid',43124),(16021,'trends','itemid',43124),(16022,'trends_uint','itemid',43124),(16023,'events','itemid',43125),(16024,'history','itemid',43125),(16025,'history_log','itemid',43125),(16026,'history_str','itemid',43125),(16027,'history_text','itemid',43125),(16028,'history_uint','itemid',43125),(16029,'trends','itemid',43125),(16030,'trends_uint','itemid',43125),(16031,'events','itemid',43126),(16032,'history','itemid',43126),(16033,'history_log','itemid',43126),(16034,'history_str','itemid',43126),(16035,'history_text','itemid',43126),(16036,'history_uint','itemid',43126),(16037,'trends','itemid',43126),(16038,'trends_uint','itemid',43126),(16039,'events','itemid',43127),(16040,'history','itemid',43127),(16041,'history_log','itemid',43127),(16042,'history_str','itemid',43127),(16043,'history_text','itemid',43127),(16044,'history_uint','itemid',43127),(16045,'trends','itemid',43127),(16046,'trends_uint','itemid',43127),(16047,'events','itemid',43128),(16048,'history','itemid',43128),(16049,'history_log','itemid',43128),(16050,'history_str','itemid',43128),(16051,'history_text','itemid',43128),(16052,'history_uint','itemid',43128),(16053,'trends','itemid',43128),(16054,'trends_uint','itemid',43128),(16055,'events','itemid',43129),(16056,'history','itemid',43129),(16057,'history_log','itemid',43129),(16058,'history_str','itemid',43129),(16059,'history_text','itemid',43129),(16060,'history_uint','itemid',43129),(16061,'trends','itemid',43129),(16062,'trends_uint','itemid',43129),(16063,'events','itemid',43130),(16064,'history','itemid',43130),(16065,'history_log','itemid',43130),(16066,'history_str','itemid',43130),(16067,'history_text','itemid',43130),(16068,'history_uint','itemid',43130),(16069,'trends','itemid',43130),(16070,'trends_uint','itemid',43130),(16071,'events','itemid',43131),(16072,'history','itemid',43131),(16073,'history_log','itemid',43131),(16074,'history_str','itemid',43131),(16075,'history_text','itemid',43131),(16076,'history_uint','itemid',43131),(16077,'trends','itemid',43131),(16078,'trends_uint','itemid',43131),(16079,'events','itemid',43108),(16080,'history','itemid',43108),(16081,'history_log','itemid',43108),(16082,'history_str','itemid',43108),(16083,'history_text','itemid',43108),(16084,'history_uint','itemid',43108),(16085,'trends','itemid',43108),(16086,'trends_uint','itemid',43108),(16087,'events','itemid',43109),(16088,'history','itemid',43109),(16089,'history_log','itemid',43109),(16090,'history_str','itemid',43109),(16091,'history_text','itemid',43109),(16092,'history_uint','itemid',43109),(16093,'trends','itemid',43109),(16094,'trends_uint','itemid',43109),(16095,'events','itemid',43097),(16096,'history','itemid',43097),(16097,'history_log','itemid',43097),(16098,'history_str','itemid',43097),(16099,'history_text','itemid',43097),(16100,'history_uint','itemid',43097),(16101,'trends','itemid',43097),(16102,'trends_uint','itemid',43097),(16103,'events','itemid',43107),(16104,'history','itemid',43107),(16105,'history_log','itemid',43107),(16106,'history_str','itemid',43107),(16107,'history_text','itemid',43107),(16108,'history_uint','itemid',43107),(16109,'trends','itemid',43107),(16110,'trends_uint','itemid',43107),(16111,'events','itemid',43085),(16112,'history','itemid',43085),(16113,'history_log','itemid',43085),(16114,'history_str','itemid',43085),(16115,'history_text','itemid',43085),(16116,'history_uint','itemid',43085),(16117,'trends','itemid',43085),(16118,'trends_uint','itemid',43085),(16119,'events','itemid',43086),(16120,'history','itemid',43086),(16121,'history_log','itemid',43086),(16122,'history_str','itemid',43086),(16123,'history_text','itemid',43086),(16124,'history_uint','itemid',43086),(16125,'trends','itemid',43086),(16126,'trends_uint','itemid',43086),(16127,'events','itemid',43087),(16128,'history','itemid',43087),(16129,'history_log','itemid',43087),(16130,'history_str','itemid',43087),(16131,'history_text','itemid',43087),(16132,'history_uint','itemid',43087),(16133,'trends','itemid',43087),(16134,'trends_uint','itemid',43087),(16135,'events','itemid',43088),(16136,'history','itemid',43088),(16137,'history_log','itemid',43088),(16138,'history_str','itemid',43088),(16139,'history_text','itemid',43088),(16140,'history_uint','itemid',43088),(16141,'trends','itemid',43088),(16142,'trends_uint','itemid',43088),(16143,'events','itemid',43089),(16144,'history','itemid',43089),(16145,'history_log','itemid',43089),(16146,'history_str','itemid',43089),(16147,'history_text','itemid',43089),(16148,'history_uint','itemid',43089),(16149,'trends','itemid',43089),(16150,'trends_uint','itemid',43089),(16151,'events','itemid',43090),(16152,'history','itemid',43090),(16153,'history_log','itemid',43090),(16154,'history_str','itemid',43090),(16155,'history_text','itemid',43090),(16156,'history_uint','itemid',43090),(16157,'trends','itemid',43090),(16158,'trends_uint','itemid',43090),(16159,'events','itemid',43091),(16160,'history','itemid',43091),(16161,'history_log','itemid',43091),(16162,'history_str','itemid',43091),(16163,'history_text','itemid',43091),(16164,'history_uint','itemid',43091),(16165,'trends','itemid',43091),(16166,'trends_uint','itemid',43091),(16167,'events','itemid',43092),(16168,'history','itemid',43092),(16169,'history_log','itemid',43092),(16170,'history_str','itemid',43092),(16171,'history_text','itemid',43092),(16172,'history_uint','itemid',43092),(16173,'trends','itemid',43092),(16174,'trends_uint','itemid',43092),(16175,'events','itemid',43093),(16176,'history','itemid',43093),(16177,'history_log','itemid',43093),(16178,'history_str','itemid',43093),(16179,'history_text','itemid',43093),(16180,'history_uint','itemid',43093),(16181,'trends','itemid',43093),(16182,'trends_uint','itemid',43093),(16183,'events','itemid',43094),(16184,'history','itemid',43094),(16185,'history_log','itemid',43094),(16186,'history_str','itemid',43094),(16187,'history_text','itemid',43094),(16188,'history_uint','itemid',43094),(16189,'trends','itemid',43094),(16190,'trends_uint','itemid',43094),(16191,'events','itemid',43084),(16192,'history','itemid',43084),(16193,'history_log','itemid',43084),(16194,'history_str','itemid',43084),(16195,'history_text','itemid',43084),(16196,'history_uint','itemid',43084),(16197,'trends','itemid',43084),(16198,'trends_uint','itemid',43084),(16199,'events','itemid',43096),(16200,'history','itemid',43096),(16201,'history_log','itemid',43096),(16202,'history_str','itemid',43096),(16203,'history_text','itemid',43096),(16204,'history_uint','itemid',43096),(16205,'trends','itemid',43096),(16206,'trends_uint','itemid',43096),(16207,'events','itemid',43098),(16208,'history','itemid',43098),(16209,'history_log','itemid',43098),(16210,'history_str','itemid',43098),(16211,'history_text','itemid',43098),(16212,'history_uint','itemid',43098),(16213,'trends','itemid',43098),(16214,'trends_uint','itemid',43098),(16215,'events','itemid',43099),(16216,'history','itemid',43099),(16217,'history_log','itemid',43099),(16218,'history_str','itemid',43099),(16219,'history_text','itemid',43099),(16220,'history_uint','itemid',43099),(16221,'trends','itemid',43099),(16222,'trends_uint','itemid',43099),(16223,'events','itemid',43100),(16224,'history','itemid',43100),(16225,'history_log','itemid',43100),(16226,'history_str','itemid',43100),(16227,'history_text','itemid',43100),(16228,'history_uint','itemid',43100),(16229,'trends','itemid',43100),(16230,'trends_uint','itemid',43100),(16231,'events','itemid',43101),(16232,'history','itemid',43101),(16233,'history_log','itemid',43101),(16234,'history_str','itemid',43101),(16235,'history_text','itemid',43101),(16236,'history_uint','itemid',43101),(16237,'trends','itemid',43101),(16238,'trends_uint','itemid',43101),(16239,'events','itemid',43102),(16240,'history','itemid',43102),(16241,'history_log','itemid',43102),(16242,'history_str','itemid',43102),(16243,'history_text','itemid',43102),(16244,'history_uint','itemid',43102),(16245,'trends','itemid',43102),(16246,'trends_uint','itemid',43102),(16247,'events','itemid',43103),(16248,'history','itemid',43103),(16249,'history_log','itemid',43103),(16250,'history_str','itemid',43103),(16251,'history_text','itemid',43103),(16252,'history_uint','itemid',43103),(16253,'trends','itemid',43103),(16254,'trends_uint','itemid',43103),(16255,'events','itemid',43104),(16256,'history','itemid',43104),(16257,'history_log','itemid',43104),(16258,'history_str','itemid',43104),(16259,'history_text','itemid',43104),(16260,'history_uint','itemid',43104),(16261,'trends','itemid',43104),(16262,'trends_uint','itemid',43104),(16263,'events','itemid',43105),(16264,'history','itemid',43105),(16265,'history_log','itemid',43105),(16266,'history_str','itemid',43105),(16267,'history_text','itemid',43105),(16268,'history_uint','itemid',43105),(16269,'trends','itemid',43105),(16270,'trends_uint','itemid',43105),(16271,'events','itemid',43106),(16272,'history','itemid',43106),(16273,'history_log','itemid',43106),(16274,'history_str','itemid',43106),(16275,'history_text','itemid',43106),(16276,'history_uint','itemid',43106),(16277,'trends','itemid',43106),(16278,'trends_uint','itemid',43106),(16279,'events','itemid',43132),(16280,'history','itemid',43132),(16281,'history_log','itemid',43132),(16282,'history_str','itemid',43132),(16283,'history_text','itemid',43132),(16284,'history_uint','itemid',43132),(16285,'trends','itemid',43132),(16286,'trends_uint','itemid',43132),(16287,'events','itemid',43156),(16288,'history','itemid',43156),(16289,'history_log','itemid',43156),(16290,'history_str','itemid',43156),(16291,'history_text','itemid',43156),(16292,'history_uint','itemid',43156),(16293,'trends','itemid',43156),(16294,'trends_uint','itemid',43156),(16295,'events','itemid',43157),(16296,'history','itemid',43157),(16297,'history_log','itemid',43157),(16298,'history_str','itemid',43157),(16299,'history_text','itemid',43157),(16300,'history_uint','itemid',43157),(16301,'trends','itemid',43157),(16302,'trends_uint','itemid',43157),(16303,'events','itemid',43158),(16304,'history','itemid',43158),(16305,'history_log','itemid',43158),(16306,'history_str','itemid',43158),(16307,'history_text','itemid',43158),(16308,'history_uint','itemid',43158),(16309,'trends','itemid',43158),(16310,'trends_uint','itemid',43158),(16311,'events','itemid',43159),(16312,'history','itemid',43159),(16313,'history_log','itemid',43159),(16314,'history_str','itemid',43159),(16315,'history_text','itemid',43159),(16316,'history_uint','itemid',43159),(16317,'trends','itemid',43159),(16318,'trends_uint','itemid',43159),(16319,'events','itemid',43160),(16320,'history','itemid',43160),(16321,'history_log','itemid',43160),(16322,'history_str','itemid',43160),(16323,'history_text','itemid',43160),(16324,'history_uint','itemid',43160),(16325,'trends','itemid',43160),(16326,'trends_uint','itemid',43160),(16327,'events','itemid',43161),(16328,'history','itemid',43161),(16329,'history_log','itemid',43161),(16330,'history_str','itemid',43161),(16331,'history_text','itemid',43161),(16332,'history_uint','itemid',43161),(16333,'trends','itemid',43161),(16334,'trends_uint','itemid',43161),(16335,'events','itemid',43162),(16336,'history','itemid',43162),(16337,'history_log','itemid',43162),(16338,'history_str','itemid',43162),(16339,'history_text','itemid',43162),(16340,'history_uint','itemid',43162),(16341,'trends','itemid',43162),(16342,'trends_uint','itemid',43162),(16343,'events','itemid',43163),(16344,'history','itemid',43163),(16345,'history_log','itemid',43163),(16346,'history_str','itemid',43163),(16347,'history_text','itemid',43163),(16348,'history_uint','itemid',43163),(16349,'trends','itemid',43163),(16350,'trends_uint','itemid',43163),(16351,'events','itemid',43164),(16352,'history','itemid',43164),(16353,'history_log','itemid',43164),(16354,'history_str','itemid',43164),(16355,'history_text','itemid',43164),(16356,'history_uint','itemid',43164),(16357,'trends','itemid',43164),(16358,'trends_uint','itemid',43164),(16359,'events','itemid',43165),(16360,'history','itemid',43165),(16361,'history_log','itemid',43165),(16362,'history_str','itemid',43165),(16363,'history_text','itemid',43165),(16364,'history_uint','itemid',43165),(16365,'trends','itemid',43165),(16366,'trends_uint','itemid',43165),(16367,'events','itemid',44294),(16368,'history','itemid',44294),(16369,'history_log','itemid',44294),(16370,'history_str','itemid',44294),(16371,'history_text','itemid',44294),(16372,'history_uint','itemid',44294),(16373,'trends','itemid',44294),(16374,'trends_uint','itemid',44294),(16375,'events','itemid',44301),(16376,'history','itemid',44301),(16377,'history_log','itemid',44301),(16378,'history_str','itemid',44301),(16379,'history_text','itemid',44301),(16380,'history_uint','itemid',44301),(16381,'trends','itemid',44301),(16382,'trends_uint','itemid',44301),(16383,'events','itemid',44302),(16384,'history','itemid',44302),(16385,'history_log','itemid',44302),(16386,'history_str','itemid',44302),(16387,'history_text','itemid',44302),(16388,'history_uint','itemid',44302),(16389,'trends','itemid',44302),(16390,'trends_uint','itemid',44302),(16391,'events','itemid',44303),(16392,'history','itemid',44303),(16393,'history_log','itemid',44303),(16394,'history_str','itemid',44303),(16395,'history_text','itemid',44303),(16396,'history_uint','itemid',44303),(16397,'trends','itemid',44303),(16398,'trends_uint','itemid',44303),(16399,'events','itemid',44295),(16400,'history','itemid',44295),(16401,'history_log','itemid',44295),(16402,'history_str','itemid',44295),(16403,'history_text','itemid',44295),(16404,'history_uint','itemid',44295),(16405,'trends','itemid',44295),(16406,'trends_uint','itemid',44295),(16407,'events','itemid',44304),(16408,'history','itemid',44304),(16409,'history_log','itemid',44304),(16410,'history_str','itemid',44304),(16411,'history_text','itemid',44304),(16412,'history_uint','itemid',44304),(16413,'trends','itemid',44304),(16414,'trends_uint','itemid',44304),(16415,'events','itemid',44296),(16416,'history','itemid',44296),(16417,'history_log','itemid',44296),(16418,'history_str','itemid',44296),(16419,'history_text','itemid',44296),(16420,'history_uint','itemid',44296),(16421,'trends','itemid',44296),(16422,'trends_uint','itemid',44296),(16423,'events','itemid',44297),(16424,'history','itemid',44297),(16425,'history_log','itemid',44297),(16426,'history_str','itemid',44297),(16427,'history_text','itemid',44297),(16428,'history_uint','itemid',44297),(16429,'trends','itemid',44297),(16430,'trends_uint','itemid',44297),(16431,'events','itemid',44298),(16432,'history','itemid',44298),(16433,'history_log','itemid',44298),(16434,'history_str','itemid',44298),(16435,'history_text','itemid',44298),(16436,'history_uint','itemid',44298),(16437,'trends','itemid',44298),(16438,'trends_uint','itemid',44298),(16439,'events','itemid',44299),(16440,'history','itemid',44299),(16441,'history_log','itemid',44299),(16442,'history_str','itemid',44299),(16443,'history_text','itemid',44299),(16444,'history_uint','itemid',44299),(16445,'trends','itemid',44299),(16446,'trends_uint','itemid',44299),(16447,'events','itemid',44305),(16448,'history','itemid',44305),(16449,'history_log','itemid',44305),(16450,'history_str','itemid',44305),(16451,'history_text','itemid',44305),(16452,'history_uint','itemid',44305),(16453,'trends','itemid',44305),(16454,'trends_uint','itemid',44305),(16455,'events','itemid',44300),(16456,'history','itemid',44300),(16457,'history_log','itemid',44300),(16458,'history_str','itemid',44300),(16459,'history_text','itemid',44300),(16460,'history_uint','itemid',44300),(16461,'trends','itemid',44300),(16462,'trends_uint','itemid',44300),(16463,'events','itemid',44306),(16464,'history','itemid',44306),(16465,'history_log','itemid',44306),(16466,'history_str','itemid',44306),(16467,'history_text','itemid',44306),(16468,'history_uint','itemid',44306),(16469,'trends','itemid',44306),(16470,'trends_uint','itemid',44306),(16471,'events','itemid',44307),(16472,'history','itemid',44307),(16473,'history_log','itemid',44307),(16474,'history_str','itemid',44307),(16475,'history_text','itemid',44307),(16476,'history_uint','itemid',44307),(16477,'trends','itemid',44307),(16478,'trends_uint','itemid',44307),(16479,'events','itemid',44308),(16480,'history','itemid',44308),(16481,'history_log','itemid',44308),(16482,'history_str','itemid',44308),(16483,'history_text','itemid',44308),(16484,'history_uint','itemid',44308),(16485,'trends','itemid',44308),(16486,'trends_uint','itemid',44308),(16487,'events','itemid',44309),(16488,'history','itemid',44309),(16489,'history_log','itemid',44309),(16490,'history_str','itemid',44309),(16491,'history_text','itemid',44309),(16492,'history_uint','itemid',44309),(16493,'trends','itemid',44309),(16494,'trends_uint','itemid',44309),(16495,'events','itemid',44310),(16496,'history','itemid',44310),(16497,'history_log','itemid',44310),(16498,'history_str','itemid',44310),(16499,'history_text','itemid',44310),(16500,'history_uint','itemid',44310),(16501,'trends','itemid',44310),(16502,'trends_uint','itemid',44310),(16503,'events','itemid',44311),(16504,'history','itemid',44311),(16505,'history_log','itemid',44311),(16506,'history_str','itemid',44311),(16507,'history_text','itemid',44311),(16508,'history_uint','itemid',44311),(16509,'trends','itemid',44311),(16510,'trends_uint','itemid',44311),(16511,'events','itemid',44312),(16512,'history','itemid',44312),(16513,'history_log','itemid',44312),(16514,'history_str','itemid',44312),(16515,'history_text','itemid',44312),(16516,'history_uint','itemid',44312),(16517,'trends','itemid',44312),(16518,'trends_uint','itemid',44312),(16519,'events','itemid',44313),(16520,'history','itemid',44313),(16521,'history_log','itemid',44313),(16522,'history_str','itemid',44313),(16523,'history_text','itemid',44313),(16524,'history_uint','itemid',44313),(16525,'trends','itemid',44313),(16526,'trends_uint','itemid',44313),(16527,'events','itemid',44381),(16528,'history','itemid',44381),(16529,'history_log','itemid',44381),(16530,'history_str','itemid',44381),(16531,'history_text','itemid',44381),(16532,'history_uint','itemid',44381),(16533,'trends','itemid',44381),(16534,'trends_uint','itemid',44381),(16535,'events','itemid',44382),(16536,'history','itemid',44382),(16537,'history_log','itemid',44382),(16538,'history_str','itemid',44382),(16539,'history_text','itemid',44382),(16540,'history_uint','itemid',44382),(16541,'trends','itemid',44382),(16542,'trends_uint','itemid',44382),(16543,'events','itemid',44383),(16544,'history','itemid',44383),(16545,'history_log','itemid',44383),(16546,'history_str','itemid',44383),(16547,'history_text','itemid',44383),(16548,'history_uint','itemid',44383),(16549,'trends','itemid',44383),(16550,'trends_uint','itemid',44383),(16551,'events','itemid',44384),(16552,'history','itemid',44384),(16553,'history_log','itemid',44384),(16554,'history_str','itemid',44384),(16555,'history_text','itemid',44384),(16556,'history_uint','itemid',44384),(16557,'trends','itemid',44384),(16558,'trends_uint','itemid',44384),(16559,'events','itemid',44385),(16560,'history','itemid',44385),(16561,'history_log','itemid',44385),(16562,'history_str','itemid',44385),(16563,'history_text','itemid',44385),(16564,'history_uint','itemid',44385),(16565,'trends','itemid',44385),(16566,'trends_uint','itemid',44385),(16567,'events','itemid',44386),(16568,'history','itemid',44386),(16569,'history_log','itemid',44386),(16570,'history_str','itemid',44386),(16571,'history_text','itemid',44386),(16572,'history_uint','itemid',44386),(16573,'trends','itemid',44386),(16574,'trends_uint','itemid',44386),(16575,'events','itemid',44387),(16576,'history','itemid',44387),(16577,'history_log','itemid',44387),(16578,'history_str','itemid',44387),(16579,'history_text','itemid',44387),(16580,'history_uint','itemid',44387),(16581,'trends','itemid',44387),(16582,'trends_uint','itemid',44387),(16583,'events','itemid',44388),(16584,'history','itemid',44388),(16585,'history_log','itemid',44388),(16586,'history_str','itemid',44388),(16587,'history_text','itemid',44388),(16588,'history_uint','itemid',44388),(16589,'trends','itemid',44388),(16590,'trends_uint','itemid',44388),(16591,'events','itemid',44389),(16592,'history','itemid',44389),(16593,'history_log','itemid',44389),(16594,'history_str','itemid',44389),(16595,'history_text','itemid',44389),(16596,'history_uint','itemid',44389),(16597,'trends','itemid',44389),(16598,'trends_uint','itemid',44389),(16599,'events','itemid',44390),(16600,'history','itemid',44390),(16601,'history_log','itemid',44390),(16602,'history_str','itemid',44390),(16603,'history_text','itemid',44390),(16604,'history_uint','itemid',44390),(16605,'trends','itemid',44390),(16606,'trends_uint','itemid',44390),(16607,'events','itemid',44391),(16608,'history','itemid',44391),(16609,'history_log','itemid',44391),(16610,'history_str','itemid',44391),(16611,'history_text','itemid',44391),(16612,'history_uint','itemid',44391),(16613,'trends','itemid',44391),(16614,'trends_uint','itemid',44391),(16615,'events','itemid',44392),(16616,'history','itemid',44392),(16617,'history_log','itemid',44392),(16618,'history_str','itemid',44392),(16619,'history_text','itemid',44392),(16620,'history_uint','itemid',44392),(16621,'trends','itemid',44392),(16622,'trends_uint','itemid',44392),(16623,'events','itemid',44393),(16624,'history','itemid',44393),(16625,'history_log','itemid',44393),(16626,'history_str','itemid',44393),(16627,'history_text','itemid',44393),(16628,'history_uint','itemid',44393),(16629,'trends','itemid',44393),(16630,'trends_uint','itemid',44393),(16631,'events','itemid',44394),(16632,'history','itemid',44394),(16633,'history_log','itemid',44394),(16634,'history_str','itemid',44394),(16635,'history_text','itemid',44394),(16636,'history_uint','itemid',44394),(16637,'trends','itemid',44394),(16638,'trends_uint','itemid',44394),(16639,'events','lldruleid',42271),(16640,'events','lldruleid',42272),(16641,'events','lldruleid',42273),(16642,'events','lldruleid',27078),(16643,'events','lldruleid',27098),(16644,'events','lldruleid',27118),(16645,'events','lldruleid',27747),(16646,'events','lldruleid',27746),(16647,'events','lldruleid',27745),(16648,'events','lldruleid',40878),(16649,'events','lldruleid',40879),(16650,'events','lldruleid',27782),(16651,'events','lldruleid',40901),(16652,'events','lldruleid',27781),(16653,'events','lldruleid',27779),(16654,'events','lldruleid',27780),(16655,'events','lldruleid',27815),(16656,'events','lldruleid',27817),(16657,'events','lldruleid',27818),(16658,'events','lldruleid',27816),(16659,'events','lldruleid',40922),(16660,'events','lldruleid',40923),(16661,'events','lldruleid',42410),(16662,'events','lldruleid',42411),(16663,'events','lldruleid',42412),(16664,'events','lldruleid',42413),(16665,'events','lldruleid',42414),(16666,'events','lldruleid',28149),(16667,'events','lldruleid',28146),(16668,'events','lldruleid',28145),(16669,'events','lldruleid',40855),(16670,'events','lldruleid',40856),(16671,'events','lldruleid',28147),(16672,'events','lldruleid',28144),(16673,'events','lldruleid',28148),(16674,'events','lldruleid',28401),(16675,'events','lldruleid',28400),(16676,'events','lldruleid',28399),(16677,'events','lldruleid',28402),(16678,'events','lldruleid',28398),(16679,'events','lldruleid',28392),(16680,'events','lldruleid',28393),(16681,'events','lldruleid',28394),(16682,'events','lldruleid',28397),(16683,'events','lldruleid',28395),(16684,'events','lldruleid',28396),(16685,'events','lldruleid',33620),(16686,'events','lldruleid',28403),(16687,'events','lldruleid',28472),(16688,'events','lldruleid',28473),(16689,'events','lldruleid',28471),(16690,'events','lldruleid',28468),(16691,'events','lldruleid',28469),(16692,'events','lldruleid',28470),(16693,'events','lldruleid',29008),(16694,'events','lldruleid',29009),(16695,'events','lldruleid',29010),(16696,'events','lldruleid',29201),(16697,'events','lldruleid',31367),(16698,'events','lldruleid',29429),(16699,'events','lldruleid',29431),(16700,'events','lldruleid',29430),(16701,'events','lldruleid',31005),(16702,'events','lldruleid',31047),(16703,'events','lldruleid',31896),(16704,'events','lldruleid',31897),(16705,'events','lldruleid',42360),(16706,'events','lldruleid',42361),(16707,'events','lldruleid',42362),(16708,'events','lldruleid',33465),(16709,'events','lldruleid',33466),(16710,'events','lldruleid',33542),(16711,'events','lldruleid',33543),(16712,'events','lldruleid',33544),(16713,'events','lldruleid',33545),(16714,'events','lldruleid',33546),(16715,'events','lldruleid',33547),(16716,'events','lldruleid',33548),(16717,'events','lldruleid',33549),(16718,'events','lldruleid',33550),(16719,'events','lldruleid',33551),(16720,'events','lldruleid',33695),(16721,'events','lldruleid',33696),(16722,'events','lldruleid',33697),(16723,'events','lldruleid',33698),(16724,'events','lldruleid',33699),(16725,'events','lldruleid',33700),(16726,'events','lldruleid',33701),(16727,'events','lldruleid',33702),(16728,'events','lldruleid',36553),(16729,'events','lldruleid',36554),(16730,'events','lldruleid',36555),(16731,'events','lldruleid',36556),(16732,'events','lldruleid',36557),(16733,'events','lldruleid',36558),(16734,'events','lldruleid',36559),(16735,'events','lldruleid',36560),(16736,'events','lldruleid',36561),(16737,'events','lldruleid',36562),(16738,'events','lldruleid',36563),(16739,'events','lldruleid',36564),(16740,'events','lldruleid',36565),(16741,'events','lldruleid',36566),(16742,'events','lldruleid',36610),(16743,'events','lldruleid',36611),(16744,'events','lldruleid',36612),(16745,'events','lldruleid',36613),(16746,'events','lldruleid',36614),(16747,'events','lldruleid',36615),(16748,'events','lldruleid',36616),(16749,'events','lldruleid',36617),(16750,'events','lldruleid',36618),(16751,'events','lldruleid',36619),(16752,'events','lldruleid',36620),(16753,'events','lldruleid',36621),(16754,'events','lldruleid',36622),(16755,'events','lldruleid',36623),(16756,'events','lldruleid',36667),(16757,'events','lldruleid',36668),(16758,'events','lldruleid',36669),(16759,'events','lldruleid',36670),(16760,'events','lldruleid',36671),(16761,'events','lldruleid',36672),(16762,'events','lldruleid',36673),(16763,'events','lldruleid',36674),(16764,'events','lldruleid',36675),(16765,'events','lldruleid',36676),(16766,'events','lldruleid',36677),(16767,'events','lldruleid',36678),(16768,'events','lldruleid',36679),(16769,'events','lldruleid',36680),(16770,'events','lldruleid',36724),(16771,'events','lldruleid',36725),(16772,'events','lldruleid',36726),(16773,'events','lldruleid',36727),(16774,'events','lldruleid',36728),(16775,'events','lldruleid',36729),(16776,'events','lldruleid',36730),(16777,'events','lldruleid',36731),(16778,'events','lldruleid',36732),(16779,'events','lldruleid',36733),(16780,'events','lldruleid',36734),(16781,'events','lldruleid',36735),(16782,'events','lldruleid',36736),(16783,'events','lldruleid',36737),(16784,'events','lldruleid',36813),(16785,'events','lldruleid',39851),(16786,'events','lldruleid',39852),(16787,'events','lldruleid',39853),(16788,'events','lldruleid',39854),(16789,'events','lldruleid',39855),(16790,'events','lldruleid',39856),(16791,'events','lldruleid',39857),(16792,'events','lldruleid',39858),(16793,'events','lldruleid',39859),(16794,'events','lldruleid',39860),(16795,'events','lldruleid',39889),(16796,'events','lldruleid',39917),(16797,'events','lldruleid',39918),(16798,'events','lldruleid',39919),(16799,'events','lldruleid',39920),(16800,'events','lldruleid',39940),(16801,'events','lldruleid',39941),(16802,'events','lldruleid',39942),(16803,'events','lldruleid',40000),(16804,'events','lldruleid',40001),(16805,'events','lldruleid',40002),(16806,'events','lldruleid',40021),(16807,'events','lldruleid',40022),(16808,'events','lldruleid',40023),(16809,'events','lldruleid',42703),(16810,'events','lldruleid',40024),(16811,'events','lldruleid',40025),(16812,'events','lldruleid',40026),(16813,'events','lldruleid',42704),(16814,'events','lldruleid',40035),(16815,'events','lldruleid',40027),(16816,'events','lldruleid',40028),(16817,'events','lldruleid',42705),(16818,'events','lldruleid',40029),(16819,'events','lldruleid',40030),(16820,'events','lldruleid',40031),(16821,'events','lldruleid',40032),(16822,'events','lldruleid',40033),(16823,'events','lldruleid',40034),(16824,'events','lldruleid',43184),(16825,'events','lldruleid',43185),(16826,'events','lldruleid',43186),(16827,'events','lldruleid',43187),(16828,'events','lldruleid',43188),(16829,'events','lldruleid',43189),(16830,'events','lldruleid',43190),(16831,'events','lldruleid',43191),(16832,'events','lldruleid',43192),(16833,'events','lldruleid',43193),(16834,'events','lldruleid',43291),(16835,'events','lldruleid',43292),(16836,'events','lldruleid',43293),(16837,'events','lldruleid',43294),(16838,'events','lldruleid',43295),(16839,'events','lldruleid',43296),(16840,'events','lldruleid',43297),(16841,'events','lldruleid',43298),(16842,'events','lldruleid',43299),(16843,'events','lldruleid',43300),(16844,'events','lldruleid',43415),(16845,'events','lldruleid',43416),(16846,'events','lldruleid',43417),(16847,'events','lldruleid',43418),(16848,'events','lldruleid',43419),(16849,'events','lldruleid',43420),(16850,'events','lldruleid',43905),(16851,'events','lldruleid',43906),(16852,'events','lldruleid',43907),(16853,'events','lldruleid',43908),(16854,'events','lldruleid',43909),(16855,'events','lldruleid',43910),(16856,'events','lldruleid',43911),(16857,'events','lldruleid',43912),(16858,'events','lldruleid',43913),(16859,'events','lldruleid',43914),(16860,'events','lldruleid',43915),(16861,'events','lldruleid',43916),(16862,'events','lldruleid',43917),(16863,'events','lldruleid',43918),(16864,'events','lldruleid',43919),(16865,'events','lldruleid',43920),(16866,'events','lldruleid',43921),(16867,'events','lldruleid',43922),(16868,'events','lldruleid',43923),(16869,'events','lldruleid',43924),(16870,'events','lldruleid',43925),(16871,'events','itemid',42187),(16872,'history','itemid',42187),(16873,'history_log','itemid',42187),(16874,'history_str','itemid',42187),(16875,'history_text','itemid',42187),(16876,'history_uint','itemid',42187),(16877,'trends','itemid',42187),(16878,'trends_uint','itemid',42187),(16879,'events','itemid',42197),(16880,'history','itemid',42197),(16881,'history_log','itemid',42197),(16882,'history_str','itemid',42197),(16883,'history_text','itemid',42197),(16884,'history_uint','itemid',42197),(16885,'trends','itemid',42197),(16886,'trends_uint','itemid',42197),(16887,'events','itemid',42210),(16888,'history','itemid',42210),(16889,'history_log','itemid',42210),(16890,'history_str','itemid',42210),(16891,'history_text','itemid',42210),(16892,'history_uint','itemid',42210),(16893,'trends','itemid',42210),(16894,'trends_uint','itemid',42210),(16895,'events','itemid',42211),(16896,'history','itemid',42211),(16897,'history_log','itemid',42211),(16898,'history_str','itemid',42211),(16899,'history_text','itemid',42211),(16900,'history_uint','itemid',42211),(16901,'trends','itemid',42211),(16902,'trends_uint','itemid',42211),(16903,'events','itemid',42212),(16904,'history','itemid',42212),(16905,'history_log','itemid',42212),(16906,'history_str','itemid',42212),(16907,'history_text','itemid',42212),(16908,'history_uint','itemid',42212),(16909,'trends','itemid',42212),(16910,'trends_uint','itemid',42212),(16911,'events','itemid',42213),(16912,'history','itemid',42213),(16913,'history_log','itemid',42213),(16914,'history_str','itemid',42213),(16915,'history_text','itemid',42213),(16916,'history_uint','itemid',42213),(16917,'trends','itemid',42213),(16918,'trends_uint','itemid',42213),(16919,'events','itemid',42214),(16920,'history','itemid',42214),(16921,'history_log','itemid',42214),(16922,'history_str','itemid',42214),(16923,'history_text','itemid',42214),(16924,'history_uint','itemid',42214),(16925,'trends','itemid',42214),(16926,'trends_uint','itemid',42214),(16927,'events','itemid',42215),(16928,'history','itemid',42215),(16929,'history_log','itemid',42215),(16930,'history_str','itemid',42215),(16931,'history_text','itemid',42215),(16932,'history_uint','itemid',42215),(16933,'trends','itemid',42215),(16934,'trends_uint','itemid',42215),(16935,'events','itemid',42216),(16936,'history','itemid',42216),(16937,'history_log','itemid',42216),(16938,'history_str','itemid',42216),(16939,'history_text','itemid',42216),(16940,'history_uint','itemid',42216),(16941,'trends','itemid',42216),(16942,'trends_uint','itemid',42216),(16943,'events','itemid',42219),(16944,'history','itemid',42219),(16945,'history_log','itemid',42219),(16946,'history_str','itemid',42219),(16947,'history_text','itemid',42219),(16948,'history_uint','itemid',42219),(16949,'trends','itemid',42219),(16950,'trends_uint','itemid',42219),(16951,'events','itemid',42209),(16952,'history','itemid',42209),(16953,'history_log','itemid',42209),(16954,'history_str','itemid',42209),(16955,'history_text','itemid',42209),(16956,'history_uint','itemid',42209),(16957,'trends','itemid',42209),(16958,'trends_uint','itemid',42209),(16959,'events','itemid',42217),(16960,'history','itemid',42217),(16961,'history_log','itemid',42217),(16962,'history_str','itemid',42217),(16963,'history_text','itemid',42217),(16964,'history_uint','itemid',42217),(16965,'trends','itemid',42217),(16966,'trends_uint','itemid',42217),(16967,'events','itemid',42220),(16968,'history','itemid',42220),(16969,'history_log','itemid',42220),(16970,'history_str','itemid',42220),(16971,'history_text','itemid',42220),(16972,'history_uint','itemid',42220),(16973,'trends','itemid',42220),(16974,'trends_uint','itemid',42220),(16975,'events','itemid',42221),(16976,'history','itemid',42221),(16977,'history_log','itemid',42221),(16978,'history_str','itemid',42221),(16979,'history_text','itemid',42221),(16980,'history_uint','itemid',42221),(16981,'trends','itemid',42221),(16982,'trends_uint','itemid',42221),(16983,'events','itemid',42267),(16984,'history','itemid',42267),(16985,'history_log','itemid',42267),(16986,'history_str','itemid',42267),(16987,'history_text','itemid',42267),(16988,'history_uint','itemid',42267),(16989,'trends','itemid',42267),(16990,'trends_uint','itemid',42267),(16991,'events','itemid',42222),(16992,'history','itemid',42222),(16993,'history_log','itemid',42222),(16994,'history_str','itemid',42222),(16995,'history_text','itemid',42222),(16996,'history_uint','itemid',42222),(16997,'trends','itemid',42222),(16998,'trends_uint','itemid',42222),(16999,'events','itemid',42223),(17000,'history','itemid',42223),(17001,'history_log','itemid',42223),(17002,'history_str','itemid',42223),(17003,'history_text','itemid',42223),(17004,'history_uint','itemid',42223),(17005,'trends','itemid',42223),(17006,'trends_uint','itemid',42223),(17007,'events','itemid',42224),(17008,'history','itemid',42224),(17009,'history_log','itemid',42224),(17010,'history_str','itemid',42224),(17011,'history_text','itemid',42224),(17012,'history_uint','itemid',42224),(17013,'trends','itemid',42224),(17014,'trends_uint','itemid',42224),(17015,'events','itemid',42225),(17016,'history','itemid',42225),(17017,'history_log','itemid',42225),(17018,'history_str','itemid',42225),(17019,'history_text','itemid',42225),(17020,'history_uint','itemid',42225),(17021,'trends','itemid',42225),(17022,'trends_uint','itemid',42225),(17023,'events','itemid',42218),(17024,'history','itemid',42218),(17025,'history_log','itemid',42218),(17026,'history_str','itemid',42218),(17027,'history_text','itemid',42218),(17028,'history_uint','itemid',42218),(17029,'trends','itemid',42218),(17030,'trends_uint','itemid',42218),(17031,'events','itemid',42208),(17032,'history','itemid',42208),(17033,'history_log','itemid',42208),(17034,'history_str','itemid',42208),(17035,'history_text','itemid',42208),(17036,'history_uint','itemid',42208),(17037,'trends','itemid',42208),(17038,'trends_uint','itemid',42208),(17039,'events','itemid',42207),(17040,'history','itemid',42207),(17041,'history_log','itemid',42207),(17042,'history_str','itemid',42207),(17043,'history_text','itemid',42207),(17044,'history_uint','itemid',42207),(17045,'trends','itemid',42207),(17046,'trends_uint','itemid',42207),(17047,'events','itemid',42206),(17048,'history','itemid',42206),(17049,'history_log','itemid',42206),(17050,'history_str','itemid',42206),(17051,'history_text','itemid',42206),(17052,'history_uint','itemid',42206),(17053,'trends','itemid',42206),(17054,'trends_uint','itemid',42206),(17055,'events','itemid',42189),(17056,'history','itemid',42189),(17057,'history_log','itemid',42189),(17058,'history_str','itemid',42189),(17059,'history_text','itemid',42189),(17060,'history_uint','itemid',42189),(17061,'trends','itemid',42189),(17062,'trends_uint','itemid',42189),(17063,'events','itemid',42190),(17064,'history','itemid',42190),(17065,'history_log','itemid',42190),(17066,'history_str','itemid',42190),(17067,'history_text','itemid',42190),(17068,'history_uint','itemid',42190),(17069,'trends','itemid',42190),(17070,'trends_uint','itemid',42190),(17071,'events','itemid',42191),(17072,'history','itemid',42191),(17073,'history_log','itemid',42191),(17074,'history_str','itemid',42191),(17075,'history_text','itemid',42191),(17076,'history_uint','itemid',42191),(17077,'trends','itemid',42191),(17078,'trends_uint','itemid',42191),(17079,'events','itemid',42192),(17080,'history','itemid',42192),(17081,'history_log','itemid',42192),(17082,'history_str','itemid',42192),(17083,'history_text','itemid',42192),(17084,'history_uint','itemid',42192),(17085,'trends','itemid',42192),(17086,'trends_uint','itemid',42192),(17087,'events','itemid',42193),(17088,'history','itemid',42193),(17089,'history_log','itemid',42193),(17090,'history_str','itemid',42193),(17091,'history_text','itemid',42193),(17092,'history_uint','itemid',42193),(17093,'trends','itemid',42193),(17094,'trends_uint','itemid',42193),(17095,'events','itemid',42194),(17096,'history','itemid',42194),(17097,'history_log','itemid',42194),(17098,'history_str','itemid',42194),(17099,'history_text','itemid',42194),(17100,'history_uint','itemid',42194),(17101,'trends','itemid',42194),(17102,'trends_uint','itemid',42194),(17103,'events','itemid',42195),(17104,'history','itemid',42195),(17105,'history_log','itemid',42195),(17106,'history_str','itemid',42195),(17107,'history_text','itemid',42195),(17108,'history_uint','itemid',42195),(17109,'trends','itemid',42195),(17110,'trends_uint','itemid',42195),(17111,'events','itemid',42188),(17112,'history','itemid',42188),(17113,'history_log','itemid',42188),(17114,'history_str','itemid',42188),(17115,'history_text','itemid',42188),(17116,'history_uint','itemid',42188),(17117,'trends','itemid',42188),(17118,'trends_uint','itemid',42188),(17119,'events','itemid',42196),(17120,'history','itemid',42196),(17121,'history_log','itemid',42196),(17122,'history_str','itemid',42196),(17123,'history_text','itemid',42196),(17124,'history_uint','itemid',42196),(17125,'trends','itemid',42196),(17126,'trends_uint','itemid',42196),(17127,'events','itemid',42198),(17128,'history','itemid',42198),(17129,'history_log','itemid',42198),(17130,'history_str','itemid',42198),(17131,'history_text','itemid',42198),(17132,'history_uint','itemid',42198),(17133,'trends','itemid',42198),(17134,'trends_uint','itemid',42198),(17135,'events','itemid',42199),(17136,'history','itemid',42199),(17137,'history_log','itemid',42199),(17138,'history_str','itemid',42199),(17139,'history_text','itemid',42199),(17140,'history_uint','itemid',42199),(17141,'trends','itemid',42199),(17142,'trends_uint','itemid',42199),(17143,'events','itemid',42200),(17144,'history','itemid',42200),(17145,'history_log','itemid',42200),(17146,'history_str','itemid',42200),(17147,'history_text','itemid',42200),(17148,'history_uint','itemid',42200),(17149,'trends','itemid',42200),(17150,'trends_uint','itemid',42200),(17151,'events','itemid',42201),(17152,'history','itemid',42201),(17153,'history_log','itemid',42201),(17154,'history_str','itemid',42201),(17155,'history_text','itemid',42201),(17156,'history_uint','itemid',42201),(17157,'trends','itemid',42201),(17158,'trends_uint','itemid',42201),(17159,'events','itemid',42202),(17160,'history','itemid',42202),(17161,'history_log','itemid',42202),(17162,'history_str','itemid',42202),(17163,'history_text','itemid',42202),(17164,'history_uint','itemid',42202),(17165,'trends','itemid',42202),(17166,'trends_uint','itemid',42202),(17167,'events','itemid',44436),(17168,'history','itemid',44436),(17169,'history_log','itemid',44436),(17170,'history_str','itemid',44436),(17171,'history_text','itemid',44436),(17172,'history_uint','itemid',44436),(17173,'trends','itemid',44436),(17174,'trends_uint','itemid',44436),(17175,'events','itemid',42203),(17176,'history','itemid',42203),(17177,'history_log','itemid',42203),(17178,'history_str','itemid',42203),(17179,'history_text','itemid',42203),(17180,'history_uint','itemid',42203),(17181,'trends','itemid',42203),(17182,'trends_uint','itemid',42203),(17183,'events','itemid',42204),(17184,'history','itemid',42204),(17185,'history_log','itemid',42204),(17186,'history_str','itemid',42204),(17187,'history_text','itemid',42204),(17188,'history_uint','itemid',42204),(17189,'trends','itemid',42204),(17190,'trends_uint','itemid',42204),(17191,'events','itemid',42205),(17192,'history','itemid',42205),(17193,'history_log','itemid',42205),(17194,'history_str','itemid',42205),(17195,'history_text','itemid',42205),(17196,'history_uint','itemid',42205),(17197,'trends','itemid',42205),(17198,'trends_uint','itemid',42205),(17199,'events','itemid',42268),(17200,'history','itemid',42268),(17201,'history_log','itemid',42268),(17202,'history_str','itemid',42268),(17203,'history_text','itemid',42268),(17204,'history_uint','itemid',42268),(17205,'trends','itemid',42268),(17206,'trends_uint','itemid',42268),(17207,'events','itemid',42226),(17208,'history','itemid',42226),(17209,'history_log','itemid',42226),(17210,'history_str','itemid',42226),(17211,'history_text','itemid',42226),(17212,'history_uint','itemid',42226),(17213,'trends','itemid',42226),(17214,'trends_uint','itemid',42226),(17215,'events','itemid',42675),(17216,'history','itemid',42675),(17217,'history_log','itemid',42675),(17218,'history_str','itemid',42675),(17219,'history_text','itemid',42675),(17220,'history_uint','itemid',42675),(17221,'trends','itemid',42675),(17222,'trends_uint','itemid',42675),(17223,'events','itemid',23646),(17224,'history','itemid',23646),(17225,'history_log','itemid',23646),(17226,'history_str','itemid',23646),(17227,'history_text','itemid',23646),(17228,'history_uint','itemid',23646),(17229,'trends','itemid',23646),(17230,'trends_uint','itemid',23646),(17231,'events','itemid',23647),(17232,'history','itemid',23647),(17233,'history_log','itemid',23647),(17234,'history_str','itemid',23647),(17235,'history_text','itemid',23647),(17236,'history_uint','itemid',23647),(17237,'trends','itemid',23647),(17238,'trends_uint','itemid',23647),(17239,'events','itemid',23648),(17240,'history','itemid',23648),(17241,'history_log','itemid',23648),(17242,'history_str','itemid',23648),(17243,'history_text','itemid',23648),(17244,'history_uint','itemid',23648),(17245,'trends','itemid',23648),(17246,'trends_uint','itemid',23648),(17247,'events','itemid',26932),(17248,'history','itemid',26932),(17249,'history_log','itemid',26932),(17250,'history_str','itemid',26932),(17251,'history_text','itemid',26932),(17252,'history_uint','itemid',26932),(17253,'trends','itemid',26932),(17254,'trends_uint','itemid',26932),(17255,'events','itemid',26930),(17256,'history','itemid',26930),(17257,'history_log','itemid',26930),(17258,'history_str','itemid',26930),(17259,'history_text','itemid',26930),(17260,'history_uint','itemid',26930),(17261,'trends','itemid',26930),(17262,'trends_uint','itemid',26930),(17263,'events','itemid',26931),(17264,'history','itemid',26931),(17265,'history_log','itemid',26931),(17266,'history_str','itemid',26931),(17267,'history_text','itemid',26931),(17268,'history_uint','itemid',26931),(17269,'trends','itemid',26931),(17270,'trends_uint','itemid',26931),(17271,'events','itemid',26929),(17272,'history','itemid',26929),(17273,'history_log','itemid',26929),(17274,'history_str','itemid',26929),(17275,'history_text','itemid',26929),(17276,'history_uint','itemid',26929),(17277,'trends','itemid',26929),(17278,'trends_uint','itemid',26929),(17279,'events','itemid',26928),(17280,'history','itemid',26928),(17281,'history_log','itemid',26928),(17282,'history_str','itemid',26928),(17283,'history_text','itemid',26928),(17284,'history_uint','itemid',26928),(17285,'trends','itemid',26928),(17286,'trends_uint','itemid',26928),(17287,'events','itemid',26925),(17288,'history','itemid',26925),(17289,'history_log','itemid',26925),(17290,'history_str','itemid',26925),(17291,'history_text','itemid',26925),(17292,'history_uint','itemid',26925),(17293,'trends','itemid',26925),(17294,'trends_uint','itemid',26925),(17295,'events','itemid',26926),(17296,'history','itemid',26926),(17297,'history_log','itemid',26926),(17298,'history_str','itemid',26926),(17299,'history_text','itemid',26926),(17300,'history_uint','itemid',26926),(17301,'trends','itemid',26926),(17302,'trends_uint','itemid',26926),(17303,'events','itemid',26927),(17304,'history','itemid',26927),(17305,'history_log','itemid',26927),(17306,'history_str','itemid',26927),(17307,'history_text','itemid',26927),(17308,'history_uint','itemid',26927),(17309,'trends','itemid',26927),(17310,'trends_uint','itemid',26927),(17311,'events','itemid',26943),(17312,'history','itemid',26943),(17313,'history_log','itemid',26943),(17314,'history_str','itemid',26943),(17315,'history_text','itemid',26943),(17316,'history_uint','itemid',26943),(17317,'trends','itemid',26943),(17318,'trends_uint','itemid',26943),(17319,'events','itemid',26939),(17320,'history','itemid',26939),(17321,'history_log','itemid',26939),(17322,'history_str','itemid',26939),(17323,'history_text','itemid',26939),(17324,'history_uint','itemid',26939),(17325,'trends','itemid',26939),(17326,'trends_uint','itemid',26939),(17327,'events','itemid',26940),(17328,'history','itemid',26940),(17329,'history_log','itemid',26940),(17330,'history_str','itemid',26940),(17331,'history_text','itemid',26940),(17332,'history_uint','itemid',26940),(17333,'trends','itemid',26940),(17334,'trends_uint','itemid',26940),(17335,'events','itemid',26941),(17336,'history','itemid',26941),(17337,'history_log','itemid',26941),(17338,'history_str','itemid',26941),(17339,'history_text','itemid',26941),(17340,'history_uint','itemid',26941),(17341,'trends','itemid',26941),(17342,'trends_uint','itemid',26941),(17343,'events','itemid',26942),(17344,'history','itemid',26942),(17345,'history_log','itemid',26942),(17346,'history_str','itemid',26942),(17347,'history_text','itemid',26942),(17348,'history_uint','itemid',26942),(17349,'trends','itemid',26942),(17350,'trends_uint','itemid',26942),(17351,'events','itemid',26938),(17352,'history','itemid',26938),(17353,'history_log','itemid',26938),(17354,'history_str','itemid',26938),(17355,'history_text','itemid',26938),(17356,'history_uint','itemid',26938),(17357,'trends','itemid',26938),(17358,'trends_uint','itemid',26938),(17359,'events','itemid',26937),(17360,'history','itemid',26937),(17361,'history_log','itemid',26937),(17362,'history_str','itemid',26937),(17363,'history_text','itemid',26937),(17364,'history_uint','itemid',26937),(17365,'trends','itemid',26937),(17366,'trends_uint','itemid',26937),(17367,'events','itemid',26933),(17368,'history','itemid',26933),(17369,'history_log','itemid',26933),(17370,'history_str','itemid',26933),(17371,'history_text','itemid',26933),(17372,'history_uint','itemid',26933),(17373,'trends','itemid',26933),(17374,'trends_uint','itemid',26933),(17375,'events','itemid',26934),(17376,'history','itemid',26934),(17377,'history_log','itemid',26934),(17378,'history_str','itemid',26934),(17379,'history_text','itemid',26934),(17380,'history_uint','itemid',26934),(17381,'trends','itemid',26934),(17382,'trends_uint','itemid',26934),(17383,'events','itemid',26935),(17384,'history','itemid',26935),(17385,'history_log','itemid',26935),(17386,'history_str','itemid',26935),(17387,'history_text','itemid',26935),(17388,'history_uint','itemid',26935),(17389,'trends','itemid',26935),(17390,'trends_uint','itemid',26935),(17391,'events','itemid',26936),(17392,'history','itemid',26936),(17393,'history_log','itemid',26936),(17394,'history_str','itemid',26936),(17395,'history_text','itemid',26936),(17396,'history_uint','itemid',26936),(17397,'trends','itemid',26936),(17398,'trends_uint','itemid',26936),(17399,'events','itemid',27067),(17400,'history','itemid',27067),(17401,'history_log','itemid',27067),(17402,'history_str','itemid',27067),(17403,'history_text','itemid',27067),(17404,'history_uint','itemid',27067),(17405,'trends','itemid',27067),(17406,'trends_uint','itemid',27067),(17407,'events','itemid',27066),(17408,'history','itemid',27066),(17409,'history_log','itemid',27066),(17410,'history_str','itemid',27066),(17411,'history_text','itemid',27066),(17412,'history_uint','itemid',27066),(17413,'trends','itemid',27066),(17414,'trends_uint','itemid',27066),(17415,'events','itemid',27065),(17416,'history','itemid',27065),(17417,'history_log','itemid',27065),(17418,'history_str','itemid',27065),(17419,'history_text','itemid',27065),(17420,'history_uint','itemid',27065),(17421,'trends','itemid',27065),(17422,'trends_uint','itemid',27065),(17423,'events','itemid',40867),(17424,'history','itemid',40867),(17425,'history_log','itemid',40867),(17426,'history_str','itemid',40867),(17427,'history_text','itemid',40867),(17428,'history_uint','itemid',40867),(17429,'trends','itemid',40867),(17430,'trends_uint','itemid',40867),(17431,'events','itemid',40868),(17432,'history','itemid',40868),(17433,'history_log','itemid',40868),(17434,'history_str','itemid',40868),(17435,'history_text','itemid',40868),(17436,'history_uint','itemid',40868),(17437,'trends','itemid',40868),(17438,'trends_uint','itemid',40868),(17439,'events','itemid',40869),(17440,'history','itemid',40869),(17441,'history_log','itemid',40869),(17442,'history_str','itemid',40869),(17443,'history_text','itemid',40869),(17444,'history_uint','itemid',40869),(17445,'trends','itemid',40869),(17446,'trends_uint','itemid',40869),(17447,'events','itemid',40870),(17448,'history','itemid',40870),(17449,'history_log','itemid',40870),(17450,'history_str','itemid',40870),(17451,'history_text','itemid',40870),(17452,'history_uint','itemid',40870),(17453,'trends','itemid',40870),(17454,'trends_uint','itemid',40870),(17455,'events','itemid',40871),(17456,'history','itemid',40871),(17457,'history_log','itemid',40871),(17458,'history_str','itemid',40871),(17459,'history_text','itemid',40871),(17460,'history_uint','itemid',40871),(17461,'trends','itemid',40871),(17462,'trends_uint','itemid',40871),(17463,'events','itemid',40872),(17464,'history','itemid',40872),(17465,'history_log','itemid',40872),(17466,'history_str','itemid',40872),(17467,'history_text','itemid',40872),(17468,'history_uint','itemid',40872),(17469,'trends','itemid',40872),(17470,'trends_uint','itemid',40872),(17471,'events','itemid',43790),(17472,'history','itemid',43790),(17473,'history_log','itemid',43790),(17474,'history_str','itemid',43790),(17475,'history_text','itemid',43790),(17476,'history_uint','itemid',43790),(17477,'trends','itemid',43790),(17478,'trends_uint','itemid',43790),(17479,'events','itemid',40873),(17480,'history','itemid',40873),(17481,'history_log','itemid',40873),(17482,'history_str','itemid',40873),(17483,'history_text','itemid',40873),(17484,'history_uint','itemid',40873),(17485,'trends','itemid',40873),(17486,'trends_uint','itemid',40873),(17487,'events','itemid',40874),(17488,'history','itemid',40874),(17489,'history_log','itemid',40874),(17490,'history_str','itemid',40874),(17491,'history_text','itemid',40874),(17492,'history_uint','itemid',40874),(17493,'trends','itemid',40874),(17494,'trends_uint','itemid',40874),(17495,'events','itemid',40876),(17496,'history','itemid',40876),(17497,'history_log','itemid',40876),(17498,'history_str','itemid',40876),(17499,'history_text','itemid',40876),(17500,'history_uint','itemid',40876),(17501,'trends','itemid',40876),(17502,'trends_uint','itemid',40876),(17503,'events','itemid',40875),(17504,'history','itemid',40875),(17505,'history_log','itemid',40875),(17506,'history_str','itemid',40875),(17507,'history_text','itemid',40875),(17508,'history_uint','itemid',40875),(17509,'trends','itemid',40875),(17510,'trends_uint','itemid',40875),(17511,'events','itemid',40877),(17512,'history','itemid',40877),(17513,'history_log','itemid',40877),(17514,'history_str','itemid',40877),(17515,'history_text','itemid',40877),(17516,'history_uint','itemid',40877),(17517,'trends','itemid',40877),(17518,'trends_uint','itemid',40877),(17519,'events','itemid',40890),(17520,'history','itemid',40890),(17521,'history_log','itemid',40890),(17522,'history_str','itemid',40890),(17523,'history_text','itemid',40890),(17524,'history_uint','itemid',40890),(17525,'trends','itemid',40890),(17526,'trends_uint','itemid',40890),(17527,'events','itemid',40891),(17528,'history','itemid',40891),(17529,'history_log','itemid',40891),(17530,'history_str','itemid',40891),(17531,'history_text','itemid',40891),(17532,'history_uint','itemid',40891),(17533,'trends','itemid',40891),(17534,'trends_uint','itemid',40891),(17535,'events','itemid',40892),(17536,'history','itemid',40892),(17537,'history_log','itemid',40892),(17538,'history_str','itemid',40892),(17539,'history_text','itemid',40892),(17540,'history_uint','itemid',40892),(17541,'trends','itemid',40892),(17542,'trends_uint','itemid',40892),(17543,'events','itemid',40893),(17544,'history','itemid',40893),(17545,'history_log','itemid',40893),(17546,'history_str','itemid',40893),(17547,'history_text','itemid',40893),(17548,'history_uint','itemid',40893),(17549,'trends','itemid',40893),(17550,'trends_uint','itemid',40893),(17551,'events','itemid',40894),(17552,'history','itemid',40894),(17553,'history_log','itemid',40894),(17554,'history_str','itemid',40894),(17555,'history_text','itemid',40894),(17556,'history_uint','itemid',40894),(17557,'trends','itemid',40894),(17558,'trends_uint','itemid',40894),(17559,'events','itemid',40895),(17560,'history','itemid',40895),(17561,'history_log','itemid',40895),(17562,'history_str','itemid',40895),(17563,'history_text','itemid',40895),(17564,'history_uint','itemid',40895),(17565,'trends','itemid',40895),(17566,'trends_uint','itemid',40895),(17567,'events','itemid',27777),(17568,'history','itemid',27777),(17569,'history_log','itemid',27777),(17570,'history_str','itemid',27777),(17571,'history_text','itemid',27777),(17572,'history_uint','itemid',27777),(17573,'trends','itemid',27777),(17574,'trends_uint','itemid',27777),(17575,'events','itemid',27778),(17576,'history','itemid',27778),(17577,'history_log','itemid',27778),(17578,'history_str','itemid',27778),(17579,'history_text','itemid',27778),(17580,'history_uint','itemid',27778),(17581,'trends','itemid',27778),(17582,'trends_uint','itemid',27778),(17583,'events','itemid',43791),(17584,'history','itemid',43791),(17585,'history_log','itemid',43791),(17586,'history_str','itemid',43791),(17587,'history_text','itemid',43791),(17588,'history_uint','itemid',43791),(17589,'trends','itemid',43791),(17590,'trends_uint','itemid',43791),(17591,'events','itemid',40896),(17592,'history','itemid',40896),(17593,'history_log','itemid',40896),(17594,'history_str','itemid',40896),(17595,'history_text','itemid',40896),(17596,'history_uint','itemid',40896),(17597,'trends','itemid',40896),(17598,'trends_uint','itemid',40896),(17599,'events','itemid',40897),(17600,'history','itemid',40897),(17601,'history_log','itemid',40897),(17602,'history_str','itemid',40897),(17603,'history_text','itemid',40897),(17604,'history_uint','itemid',40897),(17605,'trends','itemid',40897),(17606,'trends_uint','itemid',40897),(17607,'events','itemid',40899),(17608,'history','itemid',40899),(17609,'history_log','itemid',40899),(17610,'history_str','itemid',40899),(17611,'history_text','itemid',40899),(17612,'history_uint','itemid',40899),(17613,'trends','itemid',40899),(17614,'trends_uint','itemid',40899),(17615,'events','itemid',40898),(17616,'history','itemid',40898),(17617,'history_log','itemid',40898),(17618,'history_str','itemid',40898),(17619,'history_text','itemid',40898),(17620,'history_uint','itemid',40898),(17621,'trends','itemid',40898),(17622,'trends_uint','itemid',40898),(17623,'events','itemid',40900),(17624,'history','itemid',40900),(17625,'history_log','itemid',40900),(17626,'history_str','itemid',40900),(17627,'history_text','itemid',40900),(17628,'history_uint','itemid',40900),(17629,'trends','itemid',40900),(17630,'trends_uint','itemid',40900),(17631,'events','itemid',40911),(17632,'history','itemid',40911),(17633,'history_log','itemid',40911),(17634,'history_str','itemid',40911),(17635,'history_text','itemid',40911),(17636,'history_uint','itemid',40911),(17637,'trends','itemid',40911),(17638,'trends_uint','itemid',40911),(17639,'events','itemid',40912),(17640,'history','itemid',40912),(17641,'history_log','itemid',40912),(17642,'history_str','itemid',40912),(17643,'history_text','itemid',40912),(17644,'history_uint','itemid',40912),(17645,'trends','itemid',40912),(17646,'trends_uint','itemid',40912),(17647,'events','itemid',40913),(17648,'history','itemid',40913),(17649,'history_log','itemid',40913),(17650,'history_str','itemid',40913),(17651,'history_text','itemid',40913),(17652,'history_uint','itemid',40913),(17653,'trends','itemid',40913),(17654,'trends_uint','itemid',40913),(17655,'events','itemid',40914),(17656,'history','itemid',40914),(17657,'history_log','itemid',40914),(17658,'history_str','itemid',40914),(17659,'history_text','itemid',40914),(17660,'history_uint','itemid',40914),(17661,'trends','itemid',40914),(17662,'trends_uint','itemid',40914),(17663,'events','itemid',40915),(17664,'history','itemid',40915),(17665,'history_log','itemid',40915),(17666,'history_str','itemid',40915),(17667,'history_text','itemid',40915),(17668,'history_uint','itemid',40915),(17669,'trends','itemid',40915),(17670,'trends_uint','itemid',40915),(17671,'events','itemid',40916),(17672,'history','itemid',40916),(17673,'history_log','itemid',40916),(17674,'history_str','itemid',40916),(17675,'history_text','itemid',40916),(17676,'history_uint','itemid',40916),(17677,'trends','itemid',40916),(17678,'trends_uint','itemid',40916),(17679,'events','itemid',27812),(17680,'history','itemid',27812),(17681,'history_log','itemid',27812),(17682,'history_str','itemid',27812),(17683,'history_text','itemid',27812),(17684,'history_uint','itemid',27812),(17685,'trends','itemid',27812),(17686,'trends_uint','itemid',27812),(17687,'events','itemid',27813),(17688,'history','itemid',27813),(17689,'history_log','itemid',27813),(17690,'history_str','itemid',27813),(17691,'history_text','itemid',27813),(17692,'history_uint','itemid',27813),(17693,'trends','itemid',27813),(17694,'trends_uint','itemid',27813),(17695,'events','itemid',43792),(17696,'history','itemid',43792),(17697,'history_log','itemid',43792),(17698,'history_str','itemid',43792),(17699,'history_text','itemid',43792),(17700,'history_uint','itemid',43792),(17701,'trends','itemid',43792),(17702,'trends_uint','itemid',43792),(17703,'events','itemid',40917),(17704,'history','itemid',40917),(17705,'history_log','itemid',40917),(17706,'history_str','itemid',40917),(17707,'history_text','itemid',40917),(17708,'history_uint','itemid',40917),(17709,'trends','itemid',40917),(17710,'trends_uint','itemid',40917),(17711,'events','itemid',40918),(17712,'history','itemid',40918),(17713,'history_log','itemid',40918),(17714,'history_str','itemid',40918),(17715,'history_text','itemid',40918),(17716,'history_uint','itemid',40918),(17717,'trends','itemid',40918),(17718,'trends_uint','itemid',40918),(17719,'events','itemid',40920),(17720,'history','itemid',40920),(17721,'history_log','itemid',40920),(17722,'history_str','itemid',40920),(17723,'history_text','itemid',40920),(17724,'history_uint','itemid',40920),(17725,'trends','itemid',40920),(17726,'trends_uint','itemid',40920),(17727,'events','itemid',40919),(17728,'history','itemid',40919),(17729,'history_log','itemid',40919),(17730,'history_str','itemid',40919),(17731,'history_text','itemid',40919),(17732,'history_uint','itemid',40919),(17733,'trends','itemid',40919),(17734,'trends_uint','itemid',40919),(17735,'events','itemid',27814),(17736,'history','itemid',27814),(17737,'history_log','itemid',27814),(17738,'history_str','itemid',27814),(17739,'history_text','itemid',27814),(17740,'history_uint','itemid',27814),(17741,'trends','itemid',27814),(17742,'trends_uint','itemid',27814),(17743,'events','itemid',30117),(17744,'history','itemid',30117),(17745,'history_log','itemid',30117),(17746,'history_str','itemid',30117),(17747,'history_text','itemid',30117),(17748,'history_uint','itemid',30117),(17749,'trends','itemid',30117),(17750,'trends_uint','itemid',30117),(17751,'events','itemid',40921),(17752,'history','itemid',40921),(17753,'history_log','itemid',40921),(17754,'history_str','itemid',40921),(17755,'history_text','itemid',40921),(17756,'history_uint','itemid',40921),(17757,'trends','itemid',40921),(17758,'trends_uint','itemid',40921),(17759,'events','itemid',42384),(17760,'history','itemid',42384),(17761,'history_log','itemid',42384),(17762,'history_str','itemid',42384),(17763,'history_text','itemid',42384),(17764,'history_uint','itemid',42384),(17765,'trends','itemid',42384),(17766,'trends_uint','itemid',42384),(17767,'events','itemid',42397),(17768,'history','itemid',42397),(17769,'history_log','itemid',42397),(17770,'history_str','itemid',42397),(17771,'history_text','itemid',42397),(17772,'history_uint','itemid',42397),(17773,'trends','itemid',42397),(17774,'trends_uint','itemid',42397),(17775,'events','itemid',42408),(17776,'history','itemid',42408),(17777,'history_log','itemid',42408),(17778,'history_str','itemid',42408),(17779,'history_text','itemid',42408),(17780,'history_uint','itemid',42408),(17781,'trends','itemid',42408),(17782,'trends_uint','itemid',42408),(17783,'events','itemid',42407),(17784,'history','itemid',42407),(17785,'history_log','itemid',42407),(17786,'history_str','itemid',42407),(17787,'history_text','itemid',42407),(17788,'history_uint','itemid',42407),(17789,'trends','itemid',42407),(17790,'trends_uint','itemid',42407),(17791,'events','itemid',42406),(17792,'history','itemid',42406),(17793,'history_log','itemid',42406),(17794,'history_str','itemid',42406),(17795,'history_text','itemid',42406),(17796,'history_uint','itemid',42406),(17797,'trends','itemid',42406),(17798,'trends_uint','itemid',42406),(17799,'events','itemid',42405),(17800,'history','itemid',42405),(17801,'history_log','itemid',42405),(17802,'history_str','itemid',42405),(17803,'history_text','itemid',42405),(17804,'history_uint','itemid',42405),(17805,'trends','itemid',42405),(17806,'trends_uint','itemid',42405),(17807,'events','itemid',42402),(17808,'history','itemid',42402),(17809,'history_log','itemid',42402),(17810,'history_str','itemid',42402),(17811,'history_text','itemid',42402),(17812,'history_uint','itemid',42402),(17813,'trends','itemid',42402),(17814,'trends_uint','itemid',42402),(17815,'events','itemid',42404),(17816,'history','itemid',42404),(17817,'history_log','itemid',42404),(17818,'history_str','itemid',42404),(17819,'history_text','itemid',42404),(17820,'history_uint','itemid',42404),(17821,'trends','itemid',42404),(17822,'trends_uint','itemid',42404),(17823,'events','itemid',42403),(17824,'history','itemid',42403),(17825,'history_log','itemid',42403),(17826,'history_str','itemid',42403),(17827,'history_text','itemid',42403),(17828,'history_uint','itemid',42403),(17829,'trends','itemid',42403),(17830,'trends_uint','itemid',42403),(17831,'events','itemid',42401),(17832,'history','itemid',42401),(17833,'history_log','itemid',42401),(17834,'history_str','itemid',42401),(17835,'history_text','itemid',42401),(17836,'history_uint','itemid',42401),(17837,'trends','itemid',42401),(17838,'trends_uint','itemid',42401),(17839,'events','itemid',42400),(17840,'history','itemid',42400),(17841,'history_log','itemid',42400),(17842,'history_str','itemid',42400),(17843,'history_text','itemid',42400),(17844,'history_uint','itemid',42400),(17845,'trends','itemid',42400),(17846,'trends_uint','itemid',42400),(17847,'events','itemid',42399),(17848,'history','itemid',42399),(17849,'history_log','itemid',42399),(17850,'history_str','itemid',42399),(17851,'history_text','itemid',42399),(17852,'history_uint','itemid',42399),(17853,'trends','itemid',42399),(17854,'trends_uint','itemid',42399),(17855,'events','itemid',43874),(17856,'history','itemid',43874),(17857,'history_log','itemid',43874),(17858,'history_str','itemid',43874),(17859,'history_text','itemid',43874),(17860,'history_uint','itemid',43874),(17861,'trends','itemid',43874),(17862,'trends_uint','itemid',43874),(17863,'events','itemid',42398),(17864,'history','itemid',42398),(17865,'history_log','itemid',42398),(17866,'history_str','itemid',42398),(17867,'history_text','itemid',42398),(17868,'history_uint','itemid',42398),(17869,'trends','itemid',42398),(17870,'trends_uint','itemid',42398),(17871,'events','itemid',42396),(17872,'history','itemid',42396),(17873,'history_log','itemid',42396),(17874,'history_str','itemid',42396),(17875,'history_text','itemid',42396),(17876,'history_uint','itemid',42396),(17877,'trends','itemid',42396),(17878,'trends_uint','itemid',42396),(17879,'events','itemid',42392),(17880,'history','itemid',42392),(17881,'history_log','itemid',42392),(17882,'history_str','itemid',42392),(17883,'history_text','itemid',42392),(17884,'history_uint','itemid',42392),(17885,'trends','itemid',42392),(17886,'trends_uint','itemid',42392),(17887,'events','itemid',42385),(17888,'history','itemid',42385),(17889,'history_log','itemid',42385),(17890,'history_str','itemid',42385),(17891,'history_text','itemid',42385),(17892,'history_uint','itemid',42385),(17893,'trends','itemid',42385),(17894,'trends_uint','itemid',42385),(17895,'events','itemid',42395),(17896,'history','itemid',42395),(17897,'history_log','itemid',42395),(17898,'history_str','itemid',42395),(17899,'history_text','itemid',42395),(17900,'history_uint','itemid',42395),(17901,'trends','itemid',42395),(17902,'trends_uint','itemid',42395),(17903,'events','itemid',42394),(17904,'history','itemid',42394),(17905,'history_log','itemid',42394),(17906,'history_str','itemid',42394),(17907,'history_text','itemid',42394),(17908,'history_uint','itemid',42394),(17909,'trends','itemid',42394),(17910,'trends_uint','itemid',42394),(17911,'events','itemid',42393),(17912,'history','itemid',42393),(17913,'history_log','itemid',42393),(17914,'history_str','itemid',42393),(17915,'history_text','itemid',42393),(17916,'history_uint','itemid',42393),(17917,'trends','itemid',42393),(17918,'trends_uint','itemid',42393),(17919,'events','itemid',42391),(17920,'history','itemid',42391),(17921,'history_log','itemid',42391),(17922,'history_str','itemid',42391),(17923,'history_text','itemid',42391),(17924,'history_uint','itemid',42391),(17925,'trends','itemid',42391),(17926,'trends_uint','itemid',42391),(17927,'events','itemid',42390),(17928,'history','itemid',42390),(17929,'history_log','itemid',42390),(17930,'history_str','itemid',42390),(17931,'history_text','itemid',42390),(17932,'history_uint','itemid',42390),(17933,'trends','itemid',42390),(17934,'trends_uint','itemid',42390),(17935,'events','itemid',42389),(17936,'history','itemid',42389),(17937,'history_log','itemid',42389),(17938,'history_str','itemid',42389),(17939,'history_text','itemid',42389),(17940,'history_uint','itemid',42389),(17941,'trends','itemid',42389),(17942,'trends_uint','itemid',42389),(17943,'events','itemid',42388),(17944,'history','itemid',42388),(17945,'history_log','itemid',42388),(17946,'history_str','itemid',42388),(17947,'history_text','itemid',42388),(17948,'history_uint','itemid',42388),(17949,'trends','itemid',42388),(17950,'trends_uint','itemid',42388),(17951,'events','itemid',42387),(17952,'history','itemid',42387),(17953,'history_log','itemid',42387),(17954,'history_str','itemid',42387),(17955,'history_text','itemid',42387),(17956,'history_uint','itemid',42387),(17957,'trends','itemid',42387),(17958,'trends_uint','itemid',42387),(17959,'events','itemid',42386),(17960,'history','itemid',42386),(17961,'history_log','itemid',42386),(17962,'history_str','itemid',42386),(17963,'history_text','itemid',42386),(17964,'history_uint','itemid',42386),(17965,'trends','itemid',42386),(17966,'trends_uint','itemid',42386),(17967,'events','itemid',42409),(17968,'history','itemid',42409),(17969,'history_log','itemid',42409),(17970,'history_str','itemid',42409),(17971,'history_text','itemid',42409),(17972,'history_uint','itemid',42409),(17973,'trends','itemid',42409),(17974,'trends_uint','itemid',42409),(17975,'events','itemid',40844),(17976,'history','itemid',40844),(17977,'history_log','itemid',40844),(17978,'history_str','itemid',40844),(17979,'history_text','itemid',40844),(17980,'history_uint','itemid',40844),(17981,'trends','itemid',40844),(17982,'trends_uint','itemid',40844),(17983,'events','itemid',40845),(17984,'history','itemid',40845),(17985,'history_log','itemid',40845),(17986,'history_str','itemid',40845),(17987,'history_text','itemid',40845),(17988,'history_uint','itemid',40845),(17989,'trends','itemid',40845),(17990,'trends_uint','itemid',40845),(17991,'events','itemid',40846),(17992,'history','itemid',40846),(17993,'history_log','itemid',40846),(17994,'history_str','itemid',40846),(17995,'history_text','itemid',40846),(17996,'history_uint','itemid',40846),(17997,'trends','itemid',40846),(17998,'trends_uint','itemid',40846),(17999,'events','itemid',40847),(18000,'history','itemid',40847),(18001,'history_log','itemid',40847),(18002,'history_str','itemid',40847),(18003,'history_text','itemid',40847),(18004,'history_uint','itemid',40847),(18005,'trends','itemid',40847),(18006,'trends_uint','itemid',40847),(18007,'events','itemid',40848),(18008,'history','itemid',40848),(18009,'history_log','itemid',40848),(18010,'history_str','itemid',40848),(18011,'history_text','itemid',40848),(18012,'history_uint','itemid',40848),(18013,'trends','itemid',40848),(18014,'trends_uint','itemid',40848),(18015,'events','itemid',28143),(18016,'history','itemid',28143),(18017,'history_log','itemid',28143),(18018,'history_str','itemid',28143),(18019,'history_text','itemid',28143),(18020,'history_uint','itemid',28143),(18021,'trends','itemid',28143),(18022,'trends_uint','itemid',28143),(18023,'events','itemid',40849),(18024,'history','itemid',40849),(18025,'history_log','itemid',40849),(18026,'history_str','itemid',40849),(18027,'history_text','itemid',40849),(18028,'history_uint','itemid',40849),(18029,'trends','itemid',40849),(18030,'trends_uint','itemid',40849),(18031,'events','itemid',28141),(18032,'history','itemid',28141),(18033,'history_log','itemid',28141),(18034,'history_str','itemid',28141),(18035,'history_text','itemid',28141),(18036,'history_uint','itemid',28141),(18037,'trends','itemid',28141),(18038,'trends_uint','itemid',28141),(18039,'events','itemid',28142),(18040,'history','itemid',28142),(18041,'history_log','itemid',28142),(18042,'history_str','itemid',28142),(18043,'history_text','itemid',28142),(18044,'history_uint','itemid',28142),(18045,'trends','itemid',28142),(18046,'trends_uint','itemid',28142),(18047,'events','itemid',43789),(18048,'history','itemid',43789),(18049,'history_log','itemid',43789),(18050,'history_str','itemid',43789),(18051,'history_text','itemid',43789),(18052,'history_uint','itemid',43789),(18053,'trends','itemid',43789),(18054,'trends_uint','itemid',43789),(18055,'events','itemid',40850),(18056,'history','itemid',40850),(18057,'history_log','itemid',40850),(18058,'history_str','itemid',40850),(18059,'history_text','itemid',40850),(18060,'history_uint','itemid',40850),(18061,'trends','itemid',40850),(18062,'trends_uint','itemid',40850),(18063,'events','itemid',40851),(18064,'history','itemid',40851),(18065,'history_log','itemid',40851),(18066,'history_str','itemid',40851),(18067,'history_text','itemid',40851),(18068,'history_uint','itemid',40851),(18069,'trends','itemid',40851),(18070,'trends_uint','itemid',40851),(18071,'events','itemid',40853),(18072,'history','itemid',40853),(18073,'history_log','itemid',40853),(18074,'history_str','itemid',40853),(18075,'history_text','itemid',40853),(18076,'history_uint','itemid',40853),(18077,'trends','itemid',40853),(18078,'trends_uint','itemid',40853),(18079,'events','itemid',40852),(18080,'history','itemid',40852),(18081,'history_log','itemid',40852),(18082,'history_str','itemid',40852),(18083,'history_text','itemid',40852),(18084,'history_uint','itemid',40852),(18085,'trends','itemid',40852),(18086,'trends_uint','itemid',40852),(18087,'events','itemid',40854),(18088,'history','itemid',40854),(18089,'history_log','itemid',40854),(18090,'history_str','itemid',40854),(18091,'history_text','itemid',40854),(18092,'history_uint','itemid',40854),(18093,'trends','itemid',40854),(18094,'trends_uint','itemid',40854),(18095,'events','itemid',42642),(18096,'history','itemid',42642),(18097,'history_log','itemid',42642),(18098,'history_str','itemid',42642),(18099,'history_text','itemid',42642),(18100,'history_uint','itemid',42642),(18101,'trends','itemid',42642),(18102,'trends_uint','itemid',42642),(18103,'events','itemid',42643),(18104,'history','itemid',42643),(18105,'history_log','itemid',42643),(18106,'history_str','itemid',42643),(18107,'history_text','itemid',42643),(18108,'history_uint','itemid',42643),(18109,'trends','itemid',42643),(18110,'trends_uint','itemid',42643),(18111,'events','itemid',42644),(18112,'history','itemid',42644),(18113,'history_log','itemid',42644),(18114,'history_str','itemid',42644),(18115,'history_text','itemid',42644),(18116,'history_uint','itemid',42644),(18117,'trends','itemid',42644),(18118,'trends_uint','itemid',42644),(18119,'events','itemid',28388),(18120,'history','itemid',28388),(18121,'history_log','itemid',28388),(18122,'history_str','itemid',28388),(18123,'history_text','itemid',28388),(18124,'history_uint','itemid',28388),(18125,'trends','itemid',28388),(18126,'trends_uint','itemid',28388),(18127,'events','itemid',42645),(18128,'history','itemid',42645),(18129,'history_log','itemid',42645),(18130,'history_str','itemid',42645),(18131,'history_text','itemid',42645),(18132,'history_uint','itemid',42645),(18133,'trends','itemid',42645),(18134,'trends_uint','itemid',42645),(18135,'events','itemid',42646),(18136,'history','itemid',42646),(18137,'history_log','itemid',42646),(18138,'history_str','itemid',42646),(18139,'history_text','itemid',42646),(18140,'history_uint','itemid',42646),(18141,'trends','itemid',42646),(18142,'trends_uint','itemid',42646),(18143,'events','itemid',42647),(18144,'history','itemid',42647),(18145,'history_log','itemid',42647),(18146,'history_str','itemid',42647),(18147,'history_text','itemid',42647),(18148,'history_uint','itemid',42647),(18149,'trends','itemid',42647),(18150,'trends_uint','itemid',42647),(18151,'events','itemid',28390),(18152,'history','itemid',28390),(18153,'history_log','itemid',28390),(18154,'history_str','itemid',28390),(18155,'history_text','itemid',28390),(18156,'history_uint','itemid',28390),(18157,'trends','itemid',28390),(18158,'trends_uint','itemid',28390),(18159,'events','itemid',28391),(18160,'history','itemid',28391),(18161,'history_log','itemid',28391),(18162,'history_str','itemid',28391),(18163,'history_text','itemid',28391),(18164,'history_uint','itemid',28391),(18165,'trends','itemid',28391),(18166,'trends_uint','itemid',28391),(18167,'events','itemid',43900),(18168,'history','itemid',43900),(18169,'history_log','itemid',43900),(18170,'history_str','itemid',43900),(18171,'history_text','itemid',43900),(18172,'history_uint','itemid',43900),(18173,'trends','itemid',43900),(18174,'trends_uint','itemid',43900),(18175,'events','itemid',42648),(18176,'history','itemid',42648),(18177,'history_log','itemid',42648),(18178,'history_str','itemid',42648),(18179,'history_text','itemid',42648),(18180,'history_uint','itemid',42648),(18181,'trends','itemid',42648),(18182,'trends_uint','itemid',42648),(18183,'events','itemid',42649),(18184,'history','itemid',42649),(18185,'history_log','itemid',42649),(18186,'history_str','itemid',42649),(18187,'history_text','itemid',42649),(18188,'history_uint','itemid',42649),(18189,'trends','itemid',42649),(18190,'trends_uint','itemid',42649),(18191,'events','itemid',42651),(18192,'history','itemid',42651),(18193,'history_log','itemid',42651),(18194,'history_str','itemid',42651),(18195,'history_text','itemid',42651),(18196,'history_uint','itemid',42651),(18197,'trends','itemid',42651),(18198,'trends_uint','itemid',42651),(18199,'events','itemid',42650),(18200,'history','itemid',42650),(18201,'history_log','itemid',42650),(18202,'history_str','itemid',42650),(18203,'history_text','itemid',42650),(18204,'history_uint','itemid',42650),(18205,'trends','itemid',42650),(18206,'trends_uint','itemid',42650),(18207,'events','itemid',29994),(18208,'history','itemid',29994),(18209,'history_log','itemid',29994),(18210,'history_str','itemid',29994),(18211,'history_text','itemid',29994),(18212,'history_uint','itemid',29994),(18213,'trends','itemid',29994),(18214,'trends_uint','itemid',29994),(18215,'events','itemid',42652),(18216,'history','itemid',42652),(18217,'history_log','itemid',42652),(18218,'history_str','itemid',42652),(18219,'history_text','itemid',42652),(18220,'history_uint','itemid',42652),(18221,'trends','itemid',42652),(18222,'trends_uint','itemid',42652),(18223,'events','itemid',42653),(18224,'history','itemid',42653),(18225,'history_log','itemid',42653),(18226,'history_str','itemid',42653),(18227,'history_text','itemid',42653),(18228,'history_uint','itemid',42653),(18229,'trends','itemid',42653),(18230,'trends_uint','itemid',42653),(18231,'events','itemid',42654),(18232,'history','itemid',42654),(18233,'history_log','itemid',42654),(18234,'history_str','itemid',42654),(18235,'history_text','itemid',42654),(18236,'history_uint','itemid',42654),(18237,'trends','itemid',42654),(18238,'trends_uint','itemid',42654),(18239,'events','itemid',42655),(18240,'history','itemid',42655),(18241,'history_log','itemid',42655),(18242,'history_str','itemid',42655),(18243,'history_text','itemid',42655),(18244,'history_uint','itemid',42655),(18245,'trends','itemid',42655),(18246,'trends_uint','itemid',42655),(18247,'events','itemid',42656),(18248,'history','itemid',42656),(18249,'history_log','itemid',42656),(18250,'history_str','itemid',42656),(18251,'history_text','itemid',42656),(18252,'history_uint','itemid',42656),(18253,'trends','itemid',42656),(18254,'trends_uint','itemid',42656),(18255,'events','itemid',42657),(18256,'history','itemid',42657),(18257,'history_log','itemid',42657),(18258,'history_str','itemid',42657),(18259,'history_text','itemid',42657),(18260,'history_uint','itemid',42657),(18261,'trends','itemid',42657),(18262,'trends_uint','itemid',42657),(18263,'events','itemid',42658),(18264,'history','itemid',42658),(18265,'history_log','itemid',42658),(18266,'history_str','itemid',42658),(18267,'history_text','itemid',42658),(18268,'history_uint','itemid',42658),(18269,'trends','itemid',42658),(18270,'trends_uint','itemid',42658),(18271,'events','itemid',28466),(18272,'history','itemid',28466),(18273,'history_log','itemid',28466),(18274,'history_str','itemid',28466),(18275,'history_text','itemid',28466),(18276,'history_uint','itemid',28466),(18277,'trends','itemid',28466),(18278,'trends_uint','itemid',28466),(18279,'events','itemid',28467),(18280,'history','itemid',28467),(18281,'history_log','itemid',28467),(18282,'history_str','itemid',28467),(18283,'history_text','itemid',28467),(18284,'history_uint','itemid',28467),(18285,'trends','itemid',28467),(18286,'trends_uint','itemid',28467),(18287,'events','itemid',44050),(18288,'history','itemid',44050),(18289,'history_log','itemid',44050),(18290,'history_str','itemid',44050),(18291,'history_text','itemid',44050),(18292,'history_uint','itemid',44050),(18293,'trends','itemid',44050),(18294,'trends_uint','itemid',44050),(18295,'events','itemid',42659),(18296,'history','itemid',42659),(18297,'history_log','itemid',42659),(18298,'history_str','itemid',42659),(18299,'history_text','itemid',42659),(18300,'history_uint','itemid',42659),(18301,'trends','itemid',42659),(18302,'trends_uint','itemid',42659),(18303,'events','itemid',42660),(18304,'history','itemid',42660),(18305,'history_log','itemid',42660),(18306,'history_str','itemid',42660),(18307,'history_text','itemid',42660),(18308,'history_uint','itemid',42660),(18309,'trends','itemid',42660),(18310,'trends_uint','itemid',42660),(18311,'events','itemid',42662),(18312,'history','itemid',42662),(18313,'history_log','itemid',42662),(18314,'history_str','itemid',42662),(18315,'history_text','itemid',42662),(18316,'history_uint','itemid',42662),(18317,'trends','itemid',42662),(18318,'trends_uint','itemid',42662),(18319,'events','itemid',42661),(18320,'history','itemid',42661),(18321,'history_log','itemid',42661),(18322,'history_str','itemid',42661),(18323,'history_text','itemid',42661),(18324,'history_uint','itemid',42661),(18325,'trends','itemid',42661),(18326,'trends_uint','itemid',42661),(18327,'events','itemid',28465),(18328,'history','itemid',28465),(18329,'history_log','itemid',28465),(18330,'history_str','itemid',28465),(18331,'history_text','itemid',28465),(18332,'history_uint','itemid',28465),(18333,'trends','itemid',28465),(18334,'trends_uint','itemid',28465),(18335,'events','itemid',42663),(18336,'history','itemid',42663),(18337,'history_log','itemid',42663),(18338,'history_str','itemid',42663),(18339,'history_text','itemid',42663),(18340,'history_uint','itemid',42663),(18341,'trends','itemid',42663),(18342,'trends_uint','itemid',42663),(18343,'events','itemid',28991),(18344,'history','itemid',28991),(18345,'history_log','itemid',28991),(18346,'history_str','itemid',28991),(18347,'history_text','itemid',28991),(18348,'history_uint','itemid',28991),(18349,'trends','itemid',28991),(18350,'trends_uint','itemid',28991),(18351,'events','itemid',28989),(18352,'history','itemid',28989),(18353,'history_log','itemid',28989),(18354,'history_str','itemid',28989),(18355,'history_text','itemid',28989),(18356,'history_uint','itemid',28989),(18357,'trends','itemid',28989),(18358,'trends_uint','itemid',28989),(18359,'events','itemid',28987),(18360,'history','itemid',28987),(18361,'history_log','itemid',28987),(18362,'history_str','itemid',28987),(18363,'history_text','itemid',28987),(18364,'history_uint','itemid',28987),(18365,'trends','itemid',28987),(18366,'trends_uint','itemid',28987),(18367,'events','itemid',28988),(18368,'history','itemid',28988),(18369,'history_log','itemid',28988),(18370,'history_str','itemid',28988),(18371,'history_text','itemid',28988),(18372,'history_uint','itemid',28988),(18373,'trends','itemid',28988),(18374,'trends_uint','itemid',28988),(18375,'events','itemid',28990),(18376,'history','itemid',28990),(18377,'history_log','itemid',28990),(18378,'history_str','itemid',28990),(18379,'history_text','itemid',28990),(18380,'history_uint','itemid',28990),(18381,'trends','itemid',28990),(18382,'trends_uint','itemid',28990),(18383,'events','itemid',28992),(18384,'history','itemid',28992),(18385,'history_log','itemid',28992),(18386,'history_str','itemid',28992),(18387,'history_text','itemid',28992),(18388,'history_uint','itemid',28992),(18389,'trends','itemid',28992),(18390,'trends_uint','itemid',28992),(18391,'events','itemid',29102),(18392,'history','itemid',29102),(18393,'history_log','itemid',29102),(18394,'history_str','itemid',29102),(18395,'history_text','itemid',29102),(18396,'history_uint','itemid',29102),(18397,'trends','itemid',29102),(18398,'trends_uint','itemid',29102),(18399,'events','itemid',29100),(18400,'history','itemid',29100),(18401,'history_log','itemid',29100),(18402,'history_str','itemid',29100),(18403,'history_text','itemid',29100),(18404,'history_uint','itemid',29100),(18405,'trends','itemid',29100),(18406,'trends_uint','itemid',29100),(18407,'events','itemid',29096),(18408,'history','itemid',29096),(18409,'history_log','itemid',29096),(18410,'history_str','itemid',29096),(18411,'history_text','itemid',29096),(18412,'history_uint','itemid',29096),(18413,'trends','itemid',29096),(18414,'trends_uint','itemid',29096),(18415,'events','itemid',29101),(18416,'history','itemid',29101),(18417,'history_log','itemid',29101),(18418,'history_str','itemid',29101),(18419,'history_text','itemid',29101),(18420,'history_uint','itemid',29101),(18421,'trends','itemid',29101),(18422,'trends_uint','itemid',29101),(18423,'events','itemid',29087),(18424,'history','itemid',29087),(18425,'history_log','itemid',29087),(18426,'history_str','itemid',29087),(18427,'history_text','itemid',29087),(18428,'history_uint','itemid',29087),(18429,'trends','itemid',29087),(18430,'trends_uint','itemid',29087),(18431,'events','itemid',29089),(18432,'history','itemid',29089),(18433,'history_log','itemid',29089),(18434,'history_str','itemid',29089),(18435,'history_text','itemid',29089),(18436,'history_uint','itemid',29089),(18437,'trends','itemid',29089),(18438,'trends_uint','itemid',29089),(18439,'events','itemid',29198),(18440,'history','itemid',29198),(18441,'history_log','itemid',29198),(18442,'history_str','itemid',29198),(18443,'history_text','itemid',29198),(18444,'history_uint','itemid',29198),(18445,'trends','itemid',29198),(18446,'trends_uint','itemid',29198),(18447,'events','itemid',29091),(18448,'history','itemid',29091),(18449,'history_log','itemid',29091),(18450,'history_str','itemid',29091),(18451,'history_text','itemid',29091),(18452,'history_uint','itemid',29091),(18453,'trends','itemid',29091),(18454,'trends_uint','itemid',29091),(18455,'events','itemid',29090),(18456,'history','itemid',29090),(18457,'history_log','itemid',29090),(18458,'history_str','itemid',29090),(18459,'history_text','itemid',29090),(18460,'history_uint','itemid',29090),(18461,'trends','itemid',29090),(18462,'trends_uint','itemid',29090),(18463,'events','itemid',29099),(18464,'history','itemid',29099),(18465,'history_log','itemid',29099),(18466,'history_str','itemid',29099),(18467,'history_text','itemid',29099),(18468,'history_uint','itemid',29099),(18469,'trends','itemid',29099),(18470,'trends_uint','itemid',29099),(18471,'events','itemid',29093),(18472,'history','itemid',29093),(18473,'history_log','itemid',29093),(18474,'history_str','itemid',29093),(18475,'history_text','itemid',29093),(18476,'history_uint','itemid',29093),(18477,'trends','itemid',29093),(18478,'trends_uint','itemid',29093),(18479,'events','itemid',29088),(18480,'history','itemid',29088),(18481,'history_log','itemid',29088),(18482,'history_str','itemid',29088),(18483,'history_text','itemid',29088),(18484,'history_uint','itemid',29088),(18485,'trends','itemid',29088),(18486,'trends_uint','itemid',29088),(18487,'events','itemid',29095),(18488,'history','itemid',29095),(18489,'history_log','itemid',29095),(18490,'history_str','itemid',29095),(18491,'history_text','itemid',29095),(18492,'history_uint','itemid',29095),(18493,'trends','itemid',29095),(18494,'trends_uint','itemid',29095),(18495,'events','itemid',29092),(18496,'history','itemid',29092),(18497,'history_log','itemid',29092),(18498,'history_str','itemid',29092),(18499,'history_text','itemid',29092),(18500,'history_uint','itemid',29092),(18501,'trends','itemid',29092),(18502,'trends_uint','itemid',29092),(18503,'events','itemid',29094),(18504,'history','itemid',29094),(18505,'history_log','itemid',29094),(18506,'history_str','itemid',29094),(18507,'history_text','itemid',29094),(18508,'history_uint','itemid',29094),(18509,'trends','itemid',29094),(18510,'trends_uint','itemid',29094),(18511,'events','itemid',29098),(18512,'history','itemid',29098),(18513,'history_log','itemid',29098),(18514,'history_str','itemid',29098),(18515,'history_text','itemid',29098),(18516,'history_uint','itemid',29098),(18517,'trends','itemid',29098),(18518,'trends_uint','itemid',29098),(18519,'events','itemid',29097),(18520,'history','itemid',29097),(18521,'history_log','itemid',29097),(18522,'history_str','itemid',29097),(18523,'history_text','itemid',29097),(18524,'history_uint','itemid',29097),(18525,'trends','itemid',29097),(18526,'trends_uint','itemid',29097),(18527,'events','itemid',44371),(18528,'history','itemid',44371),(18529,'history_log','itemid',44371),(18530,'history_str','itemid',44371),(18531,'history_text','itemid',44371),(18532,'history_uint','itemid',44371),(18533,'trends','itemid',44371),(18534,'trends_uint','itemid',44371),(18535,'events','itemid',29116),(18536,'history','itemid',29116),(18537,'history_log','itemid',29116),(18538,'history_str','itemid',29116),(18539,'history_text','itemid',29116),(18540,'history_uint','itemid',29116),(18541,'trends','itemid',29116),(18542,'trends_uint','itemid',29116),(18543,'events','itemid',29117),(18544,'history','itemid',29117),(18545,'history_log','itemid',29117),(18546,'history_str','itemid',29117),(18547,'history_text','itemid',29117),(18548,'history_uint','itemid',29117),(18549,'trends','itemid',29117),(18550,'trends_uint','itemid',29117),(18551,'events','itemid',29118),(18552,'history','itemid',29118),(18553,'history_log','itemid',29118),(18554,'history_str','itemid',29118),(18555,'history_text','itemid',29118),(18556,'history_uint','itemid',29118),(18557,'trends','itemid',29118),(18558,'trends_uint','itemid',29118),(18559,'events','itemid',29119),(18560,'history','itemid',29119),(18561,'history_log','itemid',29119),(18562,'history_str','itemid',29119),(18563,'history_text','itemid',29119),(18564,'history_uint','itemid',29119),(18565,'trends','itemid',29119),(18566,'trends_uint','itemid',29119),(18567,'events','itemid',29111),(18568,'history','itemid',29111),(18569,'history_log','itemid',29111),(18570,'history_str','itemid',29111),(18571,'history_text','itemid',29111),(18572,'history_uint','itemid',29111),(18573,'trends','itemid',29111),(18574,'trends_uint','itemid',29111),(18575,'events','itemid',29113),(18576,'history','itemid',29113),(18577,'history_log','itemid',29113),(18578,'history_str','itemid',29113),(18579,'history_text','itemid',29113),(18580,'history_uint','itemid',29113),(18581,'trends','itemid',29113),(18582,'trends_uint','itemid',29113),(18583,'events','itemid',29112),(18584,'history','itemid',29112),(18585,'history_log','itemid',29112),(18586,'history_str','itemid',29112),(18587,'history_text','itemid',29112),(18588,'history_uint','itemid',29112),(18589,'trends','itemid',29112),(18590,'trends_uint','itemid',29112),(18591,'events','itemid',29122),(18592,'history','itemid',29122),(18593,'history_log','itemid',29122),(18594,'history_str','itemid',29122),(18595,'history_text','itemid',29122),(18596,'history_uint','itemid',29122),(18597,'trends','itemid',29122),(18598,'trends_uint','itemid',29122),(18599,'events','itemid',29121),(18600,'history','itemid',29121),(18601,'history_log','itemid',29121),(18602,'history_str','itemid',29121),(18603,'history_text','itemid',29121),(18604,'history_uint','itemid',29121),(18605,'trends','itemid',29121),(18606,'trends_uint','itemid',29121),(18607,'events','itemid',29123),(18608,'history','itemid',29123),(18609,'history_log','itemid',29123),(18610,'history_str','itemid',29123),(18611,'history_text','itemid',29123),(18612,'history_uint','itemid',29123),(18613,'trends','itemid',29123),(18614,'trends_uint','itemid',29123),(18615,'events','itemid',29114),(18616,'history','itemid',29114),(18617,'history_log','itemid',29114),(18618,'history_str','itemid',29114),(18619,'history_text','itemid',29114),(18620,'history_uint','itemid',29114),(18621,'trends','itemid',29114),(18622,'trends_uint','itemid',29114),(18623,'events','itemid',29110),(18624,'history','itemid',29110),(18625,'history_log','itemid',29110),(18626,'history_str','itemid',29110),(18627,'history_text','itemid',29110),(18628,'history_uint','itemid',29110),(18629,'trends','itemid',29110),(18630,'trends_uint','itemid',29110),(18631,'events','itemid',29115),(18632,'history','itemid',29115),(18633,'history_log','itemid',29115),(18634,'history_str','itemid',29115),(18635,'history_text','itemid',29115),(18636,'history_uint','itemid',29115),(18637,'trends','itemid',29115),(18638,'trends_uint','itemid',29115),(18639,'events','itemid',29120),(18640,'history','itemid',29120),(18641,'history_log','itemid',29120),(18642,'history_str','itemid',29120),(18643,'history_text','itemid',29120),(18644,'history_uint','itemid',29120),(18645,'trends','itemid',29120),(18646,'trends_uint','itemid',29120),(18647,'events','itemid',29415),(18648,'history','itemid',29415),(18649,'history_log','itemid',29415),(18650,'history_str','itemid',29415),(18651,'history_text','itemid',29415),(18652,'history_uint','itemid',29415),(18653,'trends','itemid',29415),(18654,'trends_uint','itemid',29415),(18655,'events','itemid',29423),(18656,'history','itemid',29423),(18657,'history_log','itemid',29423),(18658,'history_str','itemid',29423),(18659,'history_text','itemid',29423),(18660,'history_uint','itemid',29423),(18661,'trends','itemid',29423),(18662,'trends_uint','itemid',29423),(18663,'events','itemid',29424),(18664,'history','itemid',29424),(18665,'history_log','itemid',29424),(18666,'history_str','itemid',29424),(18667,'history_text','itemid',29424),(18668,'history_uint','itemid',29424),(18669,'trends','itemid',29424),(18670,'trends_uint','itemid',29424),(18671,'events','itemid',29395),(18672,'history','itemid',29395),(18673,'history_log','itemid',29395),(18674,'history_str','itemid',29395),(18675,'history_text','itemid',29395),(18676,'history_uint','itemid',29395),(18677,'trends','itemid',29395),(18678,'trends_uint','itemid',29395),(18679,'events','itemid',29404),(18680,'history','itemid',29404),(18681,'history_log','itemid',29404),(18682,'history_str','itemid',29404),(18683,'history_text','itemid',29404),(18684,'history_uint','itemid',29404),(18685,'trends','itemid',29404),(18686,'trends_uint','itemid',29404),(18687,'events','itemid',29408),(18688,'history','itemid',29408),(18689,'history_log','itemid',29408),(18690,'history_str','itemid',29408),(18691,'history_text','itemid',29408),(18692,'history_uint','itemid',29408),(18693,'trends','itemid',29408),(18694,'trends_uint','itemid',29408),(18695,'events','itemid',29407),(18696,'history','itemid',29407),(18697,'history_log','itemid',29407),(18698,'history_str','itemid',29407),(18699,'history_text','itemid',29407),(18700,'history_uint','itemid',29407),(18701,'trends','itemid',29407),(18702,'trends_uint','itemid',29407),(18703,'events','itemid',29416),(18704,'history','itemid',29416),(18705,'history_log','itemid',29416),(18706,'history_str','itemid',29416),(18707,'history_text','itemid',29416),(18708,'history_uint','itemid',29416),(18709,'trends','itemid',29416),(18710,'trends_uint','itemid',29416),(18711,'events','itemid',29409),(18712,'history','itemid',29409),(18713,'history_log','itemid',29409),(18714,'history_str','itemid',29409),(18715,'history_text','itemid',29409),(18716,'history_uint','itemid',29409),(18717,'trends','itemid',29409),(18718,'trends_uint','itemid',29409),(18719,'events','itemid',29406),(18720,'history','itemid',29406),(18721,'history_log','itemid',29406),(18722,'history_str','itemid',29406),(18723,'history_text','itemid',29406),(18724,'history_uint','itemid',29406),(18725,'trends','itemid',29406),(18726,'trends_uint','itemid',29406),(18727,'events','itemid',29410),(18728,'history','itemid',29410),(18729,'history_log','itemid',29410),(18730,'history_str','itemid',29410),(18731,'history_text','itemid',29410),(18732,'history_uint','itemid',29410),(18733,'trends','itemid',29410),(18734,'trends_uint','itemid',29410),(18735,'events','itemid',29418),(18736,'history','itemid',29418),(18737,'history_log','itemid',29418),(18738,'history_str','itemid',29418),(18739,'history_text','itemid',29418),(18740,'history_uint','itemid',29418),(18741,'trends','itemid',29418),(18742,'trends_uint','itemid',29418),(18743,'events','itemid',29420),(18744,'history','itemid',29420),(18745,'history_log','itemid',29420),(18746,'history_str','itemid',29420),(18747,'history_text','itemid',29420),(18748,'history_uint','itemid',29420),(18749,'trends','itemid',29420),(18750,'trends_uint','itemid',29420),(18751,'events','itemid',29419),(18752,'history','itemid',29419),(18753,'history_log','itemid',29419),(18754,'history_str','itemid',29419),(18755,'history_text','itemid',29419),(18756,'history_uint','itemid',29419),(18757,'trends','itemid',29419),(18758,'trends_uint','itemid',29419),(18759,'events','itemid',29411),(18760,'history','itemid',29411),(18761,'history_log','itemid',29411),(18762,'history_str','itemid',29411),(18763,'history_text','itemid',29411),(18764,'history_uint','itemid',29411),(18765,'trends','itemid',29411),(18766,'trends_uint','itemid',29411),(18767,'events','itemid',29417),(18768,'history','itemid',29417),(18769,'history_log','itemid',29417),(18770,'history_str','itemid',29417),(18771,'history_text','itemid',29417),(18772,'history_uint','itemid',29417),(18773,'trends','itemid',29417),(18774,'trends_uint','itemid',29417),(18775,'events','itemid',29412),(18776,'history','itemid',29412),(18777,'history_log','itemid',29412),(18778,'history_str','itemid',29412),(18779,'history_text','itemid',29412),(18780,'history_uint','itemid',29412),(18781,'trends','itemid',29412),(18782,'trends_uint','itemid',29412),(18783,'events','itemid',29399),(18784,'history','itemid',29399),(18785,'history_log','itemid',29399),(18786,'history_str','itemid',29399),(18787,'history_text','itemid',29399),(18788,'history_uint','itemid',29399),(18789,'trends','itemid',29399),(18790,'trends_uint','itemid',29399),(18791,'events','itemid',29405),(18792,'history','itemid',29405),(18793,'history_log','itemid',29405),(18794,'history_str','itemid',29405),(18795,'history_text','itemid',29405),(18796,'history_uint','itemid',29405),(18797,'trends','itemid',29405),(18798,'trends_uint','itemid',29405),(18799,'events','itemid',29426),(18800,'history','itemid',29426),(18801,'history_log','itemid',29426),(18802,'history_str','itemid',29426),(18803,'history_text','itemid',29426),(18804,'history_uint','itemid',29426),(18805,'trends','itemid',29426),(18806,'trends_uint','itemid',29426),(18807,'events','itemid',29413),(18808,'history','itemid',29413),(18809,'history_log','itemid',29413),(18810,'history_str','itemid',29413),(18811,'history_text','itemid',29413),(18812,'history_uint','itemid',29413),(18813,'trends','itemid',29413),(18814,'trends_uint','itemid',29413),(18815,'events','itemid',29427),(18816,'history','itemid',29427),(18817,'history_log','itemid',29427),(18818,'history_str','itemid',29427),(18819,'history_text','itemid',29427),(18820,'history_uint','itemid',29427),(18821,'trends','itemid',29427),(18822,'trends_uint','itemid',29427),(18823,'events','itemid',29425),(18824,'history','itemid',29425),(18825,'history_log','itemid',29425),(18826,'history_str','itemid',29425),(18827,'history_text','itemid',29425),(18828,'history_uint','itemid',29425),(18829,'trends','itemid',29425),(18830,'trends_uint','itemid',29425),(18831,'events','itemid',29398),(18832,'history','itemid',29398),(18833,'history_log','itemid',29398),(18834,'history_str','itemid',29398),(18835,'history_text','itemid',29398),(18836,'history_uint','itemid',29398),(18837,'trends','itemid',29398),(18838,'trends_uint','itemid',29398),(18839,'events','itemid',29414),(18840,'history','itemid',29414),(18841,'history_log','itemid',29414),(18842,'history_str','itemid',29414),(18843,'history_text','itemid',29414),(18844,'history_uint','itemid',29414),(18845,'trends','itemid',29414),(18846,'trends_uint','itemid',29414),(18847,'events','itemid',29422),(18848,'history','itemid',29422),(18849,'history_log','itemid',29422),(18850,'history_str','itemid',29422),(18851,'history_text','itemid',29422),(18852,'history_uint','itemid',29422),(18853,'trends','itemid',29422),(18854,'trends_uint','itemid',29422),(18855,'events','itemid',29428),(18856,'history','itemid',29428),(18857,'history_log','itemid',29428),(18858,'history_str','itemid',29428),(18859,'history_text','itemid',29428),(18860,'history_uint','itemid',29428),(18861,'trends','itemid',29428),(18862,'trends_uint','itemid',29428),(18863,'events','itemid',29400),(18864,'history','itemid',29400),(18865,'history_log','itemid',29400),(18866,'history_str','itemid',29400),(18867,'history_text','itemid',29400),(18868,'history_uint','itemid',29400),(18869,'trends','itemid',29400),(18870,'trends_uint','itemid',29400),(18871,'events','itemid',29397),(18872,'history','itemid',29397),(18873,'history_log','itemid',29397),(18874,'history_str','itemid',29397),(18875,'history_text','itemid',29397),(18876,'history_uint','itemid',29397),(18877,'trends','itemid',29397),(18878,'trends_uint','itemid',29397),(18879,'events','itemid',29401),(18880,'history','itemid',29401),(18881,'history_log','itemid',29401),(18882,'history_str','itemid',29401),(18883,'history_text','itemid',29401),(18884,'history_uint','itemid',29401),(18885,'trends','itemid',29401),(18886,'trends_uint','itemid',29401),(18887,'events','itemid',29421),(18888,'history','itemid',29421),(18889,'history_log','itemid',29421),(18890,'history_str','itemid',29421),(18891,'history_text','itemid',29421),(18892,'history_uint','itemid',29421),(18893,'trends','itemid',29421),(18894,'trends_uint','itemid',29421),(18895,'events','itemid',29402),(18896,'history','itemid',29402),(18897,'history_log','itemid',29402),(18898,'history_str','itemid',29402),(18899,'history_text','itemid',29402),(18900,'history_uint','itemid',29402),(18901,'trends','itemid',29402),(18902,'trends_uint','itemid',29402),(18903,'events','itemid',29403),(18904,'history','itemid',29403),(18905,'history_log','itemid',29403),(18906,'history_str','itemid',29403),(18907,'history_text','itemid',29403),(18908,'history_uint','itemid',29403),(18909,'trends','itemid',29403),(18910,'trends_uint','itemid',29403),(18911,'events','itemid',29396),(18912,'history','itemid',29396),(18913,'history_log','itemid',29396),(18914,'history_str','itemid',29396),(18915,'history_text','itemid',29396),(18916,'history_uint','itemid',29396),(18917,'trends','itemid',29396),(18918,'trends_uint','itemid',29396),(18919,'events','itemid',30968),(18920,'history','itemid',30968),(18921,'history_log','itemid',30968),(18922,'history_str','itemid',30968),(18923,'history_text','itemid',30968),(18924,'history_uint','itemid',30968),(18925,'trends','itemid',30968),(18926,'trends_uint','itemid',30968),(18927,'events','itemid',30980),(18928,'history','itemid',30980),(18929,'history_log','itemid',30980),(18930,'history_str','itemid',30980),(18931,'history_text','itemid',30980),(18932,'history_uint','itemid',30980),(18933,'trends','itemid',30980),(18934,'trends_uint','itemid',30980),(18935,'events','itemid',30981),(18936,'history','itemid',30981),(18937,'history_log','itemid',30981),(18938,'history_str','itemid',30981),(18939,'history_text','itemid',30981),(18940,'history_uint','itemid',30981),(18941,'trends','itemid',30981),(18942,'trends_uint','itemid',30981),(18943,'events','itemid',30982),(18944,'history','itemid',30982),(18945,'history_log','itemid',30982),(18946,'history_str','itemid',30982),(18947,'history_text','itemid',30982),(18948,'history_uint','itemid',30982),(18949,'trends','itemid',30982),(18950,'trends_uint','itemid',30982),(18951,'events','itemid',30983),(18952,'history','itemid',30983),(18953,'history_log','itemid',30983),(18954,'history_str','itemid',30983),(18955,'history_text','itemid',30983),(18956,'history_uint','itemid',30983),(18957,'trends','itemid',30983),(18958,'trends_uint','itemid',30983),(18959,'events','itemid',30987),(18960,'history','itemid',30987),(18961,'history_log','itemid',30987),(18962,'history_str','itemid',30987),(18963,'history_text','itemid',30987),(18964,'history_uint','itemid',30987),(18965,'trends','itemid',30987),(18966,'trends_uint','itemid',30987),(18967,'events','itemid',30989),(18968,'history','itemid',30989),(18969,'history_log','itemid',30989),(18970,'history_str','itemid',30989),(18971,'history_text','itemid',30989),(18972,'history_uint','itemid',30989),(18973,'trends','itemid',30989),(18974,'trends_uint','itemid',30989),(18975,'events','itemid',30990),(18976,'history','itemid',30990),(18977,'history_log','itemid',30990),(18978,'history_str','itemid',30990),(18979,'history_text','itemid',30990),(18980,'history_uint','itemid',30990),(18981,'trends','itemid',30990),(18982,'trends_uint','itemid',30990),(18983,'events','itemid',30991),(18984,'history','itemid',30991),(18985,'history_log','itemid',30991),(18986,'history_str','itemid',30991),(18987,'history_text','itemid',30991),(18988,'history_uint','itemid',30991),(18989,'trends','itemid',30991),(18990,'trends_uint','itemid',30991),(18991,'events','itemid',30992),(18992,'history','itemid',30992),(18993,'history_log','itemid',30992),(18994,'history_str','itemid',30992),(18995,'history_text','itemid',30992),(18996,'history_uint','itemid',30992),(18997,'trends','itemid',30992),(18998,'trends_uint','itemid',30992),(18999,'events','itemid',30993),(19000,'history','itemid',30993),(19001,'history_log','itemid',30993),(19002,'history_str','itemid',30993),(19003,'history_text','itemid',30993),(19004,'history_uint','itemid',30993),(19005,'trends','itemid',30993),(19006,'trends_uint','itemid',30993),(19007,'events','itemid',30994),(19008,'history','itemid',30994),(19009,'history_log','itemid',30994),(19010,'history_str','itemid',30994),(19011,'history_text','itemid',30994),(19012,'history_uint','itemid',30994),(19013,'trends','itemid',30994),(19014,'trends_uint','itemid',30994),(19015,'events','itemid',30988),(19016,'history','itemid',30988),(19017,'history_log','itemid',30988),(19018,'history_str','itemid',30988),(19019,'history_text','itemid',30988),(19020,'history_uint','itemid',30988),(19021,'trends','itemid',30988),(19022,'trends_uint','itemid',30988),(19023,'events','itemid',30995),(19024,'history','itemid',30995),(19025,'history_log','itemid',30995),(19026,'history_str','itemid',30995),(19027,'history_text','itemid',30995),(19028,'history_uint','itemid',30995),(19029,'trends','itemid',30995),(19030,'trends_uint','itemid',30995),(19031,'events','itemid',30997),(19032,'history','itemid',30997),(19033,'history_log','itemid',30997),(19034,'history_str','itemid',30997),(19035,'history_text','itemid',30997),(19036,'history_uint','itemid',30997),(19037,'trends','itemid',30997),(19038,'trends_uint','itemid',30997),(19039,'events','itemid',30998),(19040,'history','itemid',30998),(19041,'history_log','itemid',30998),(19042,'history_str','itemid',30998),(19043,'history_text','itemid',30998),(19044,'history_uint','itemid',30998),(19045,'trends','itemid',30998),(19046,'trends_uint','itemid',30998),(19047,'events','itemid',30999),(19048,'history','itemid',30999),(19049,'history_log','itemid',30999),(19050,'history_str','itemid',30999),(19051,'history_text','itemid',30999),(19052,'history_uint','itemid',30999),(19053,'trends','itemid',30999),(19054,'trends_uint','itemid',30999),(19055,'events','itemid',31001),(19056,'history','itemid',31001),(19057,'history_log','itemid',31001),(19058,'history_str','itemid',31001),(19059,'history_text','itemid',31001),(19060,'history_uint','itemid',31001),(19061,'trends','itemid',31001),(19062,'trends_uint','itemid',31001),(19063,'events','itemid',31000),(19064,'history','itemid',31000),(19065,'history_log','itemid',31000),(19066,'history_str','itemid',31000),(19067,'history_text','itemid',31000),(19068,'history_uint','itemid',31000),(19069,'trends','itemid',31000),(19070,'trends_uint','itemid',31000),(19071,'events','itemid',31002),(19072,'history','itemid',31002),(19073,'history_log','itemid',31002),(19074,'history_str','itemid',31002),(19075,'history_text','itemid',31002),(19076,'history_uint','itemid',31002),(19077,'trends','itemid',31002),(19078,'trends_uint','itemid',31002),(19079,'events','itemid',31003),(19080,'history','itemid',31003),(19081,'history_log','itemid',31003),(19082,'history_str','itemid',31003),(19083,'history_text','itemid',31003),(19084,'history_uint','itemid',31003),(19085,'trends','itemid',31003),(19086,'trends_uint','itemid',31003),(19087,'events','itemid',30996),(19088,'history','itemid',30996),(19089,'history_log','itemid',30996),(19090,'history_str','itemid',30996),(19091,'history_text','itemid',30996),(19092,'history_uint','itemid',30996),(19093,'trends','itemid',30996),(19094,'trends_uint','itemid',30996),(19095,'events','itemid',30986),(19096,'history','itemid',30986),(19097,'history_log','itemid',30986),(19098,'history_str','itemid',30986),(19099,'history_text','itemid',30986),(19100,'history_uint','itemid',30986),(19101,'trends','itemid',30986),(19102,'trends_uint','itemid',30986),(19103,'events','itemid',30977),(19104,'history','itemid',30977),(19105,'history_log','itemid',30977),(19106,'history_str','itemid',30977),(19107,'history_text','itemid',30977),(19108,'history_uint','itemid',30977),(19109,'trends','itemid',30977),(19110,'trends_uint','itemid',30977),(19111,'events','itemid',30985),(19112,'history','itemid',30985),(19113,'history_log','itemid',30985),(19114,'history_str','itemid',30985),(19115,'history_text','itemid',30985),(19116,'history_uint','itemid',30985),(19117,'trends','itemid',30985),(19118,'trends_uint','itemid',30985),(19119,'events','itemid',30970),(19120,'history','itemid',30970),(19121,'history_log','itemid',30970),(19122,'history_str','itemid',30970),(19123,'history_text','itemid',30970),(19124,'history_uint','itemid',30970),(19125,'trends','itemid',30970),(19126,'trends_uint','itemid',30970),(19127,'events','itemid',30971),(19128,'history','itemid',30971),(19129,'history_log','itemid',30971),(19130,'history_str','itemid',30971),(19131,'history_text','itemid',30971),(19132,'history_uint','itemid',30971),(19133,'trends','itemid',30971),(19134,'trends_uint','itemid',30971),(19135,'events','itemid',30972),(19136,'history','itemid',30972),(19137,'history_log','itemid',30972),(19138,'history_str','itemid',30972),(19139,'history_text','itemid',30972),(19140,'history_uint','itemid',30972),(19141,'trends','itemid',30972),(19142,'trends_uint','itemid',30972),(19143,'events','itemid',30973),(19144,'history','itemid',30973),(19145,'history_log','itemid',30973),(19146,'history_str','itemid',30973),(19147,'history_text','itemid',30973),(19148,'history_uint','itemid',30973),(19149,'trends','itemid',30973),(19150,'trends_uint','itemid',30973),(19151,'events','itemid',30974),(19152,'history','itemid',30974),(19153,'history_log','itemid',30974),(19154,'history_str','itemid',30974),(19155,'history_text','itemid',30974),(19156,'history_uint','itemid',30974),(19157,'trends','itemid',30974),(19158,'trends_uint','itemid',30974),(19159,'events','itemid',30975),(19160,'history','itemid',30975),(19161,'history_log','itemid',30975),(19162,'history_str','itemid',30975),(19163,'history_text','itemid',30975),(19164,'history_uint','itemid',30975),(19165,'trends','itemid',30975),(19166,'trends_uint','itemid',30975),(19167,'events','itemid',30969),(19168,'history','itemid',30969),(19169,'history_log','itemid',30969),(19170,'history_str','itemid',30969),(19171,'history_text','itemid',30969),(19172,'history_uint','itemid',30969),(19173,'trends','itemid',30969),(19174,'trends_uint','itemid',30969),(19175,'events','itemid',30976),(19176,'history','itemid',30976),(19177,'history_log','itemid',30976),(19178,'history_str','itemid',30976),(19179,'history_text','itemid',30976),(19180,'history_uint','itemid',30976),(19181,'trends','itemid',30976),(19182,'trends_uint','itemid',30976),(19183,'events','itemid',30978),(19184,'history','itemid',30978),(19185,'history_log','itemid',30978),(19186,'history_str','itemid',30978),(19187,'history_text','itemid',30978),(19188,'history_uint','itemid',30978),(19189,'trends','itemid',30978),(19190,'trends_uint','itemid',30978),(19191,'events','itemid',30979),(19192,'history','itemid',30979),(19193,'history_log','itemid',30979),(19194,'history_str','itemid',30979),(19195,'history_text','itemid',30979),(19196,'history_uint','itemid',30979),(19197,'trends','itemid',30979),(19198,'trends_uint','itemid',30979),(19199,'events','itemid',30984),(19200,'history','itemid',30984),(19201,'history_log','itemid',30984),(19202,'history_str','itemid',30984),(19203,'history_text','itemid',30984),(19204,'history_uint','itemid',30984),(19205,'trends','itemid',30984),(19206,'trends_uint','itemid',30984),(19207,'events','itemid',31004),(19208,'history','itemid',31004),(19209,'history_log','itemid',31004),(19210,'history_str','itemid',31004),(19211,'history_text','itemid',31004),(19212,'history_uint','itemid',31004),(19213,'trends','itemid',31004),(19214,'trends_uint','itemid',31004),(19215,'events','itemid',31010),(19216,'history','itemid',31010),(19217,'history_log','itemid',31010),(19218,'history_str','itemid',31010),(19219,'history_text','itemid',31010),(19220,'history_uint','itemid',31010),(19221,'trends','itemid',31010),(19222,'trends_uint','itemid',31010),(19223,'events','itemid',31022),(19224,'history','itemid',31022),(19225,'history_log','itemid',31022),(19226,'history_str','itemid',31022),(19227,'history_text','itemid',31022),(19228,'history_uint','itemid',31022),(19229,'trends','itemid',31022),(19230,'trends_uint','itemid',31022),(19231,'events','itemid',31023),(19232,'history','itemid',31023),(19233,'history_log','itemid',31023),(19234,'history_str','itemid',31023),(19235,'history_text','itemid',31023),(19236,'history_uint','itemid',31023),(19237,'trends','itemid',31023),(19238,'trends_uint','itemid',31023),(19239,'events','itemid',31024),(19240,'history','itemid',31024),(19241,'history_log','itemid',31024),(19242,'history_str','itemid',31024),(19243,'history_text','itemid',31024),(19244,'history_uint','itemid',31024),(19245,'trends','itemid',31024),(19246,'trends_uint','itemid',31024),(19247,'events','itemid',31025),(19248,'history','itemid',31025),(19249,'history_log','itemid',31025),(19250,'history_str','itemid',31025),(19251,'history_text','itemid',31025),(19252,'history_uint','itemid',31025),(19253,'trends','itemid',31025),(19254,'trends_uint','itemid',31025),(19255,'events','itemid',31029),(19256,'history','itemid',31029),(19257,'history_log','itemid',31029),(19258,'history_str','itemid',31029),(19259,'history_text','itemid',31029),(19260,'history_uint','itemid',31029),(19261,'trends','itemid',31029),(19262,'trends_uint','itemid',31029),(19263,'events','itemid',31031),(19264,'history','itemid',31031),(19265,'history_log','itemid',31031),(19266,'history_str','itemid',31031),(19267,'history_text','itemid',31031),(19268,'history_uint','itemid',31031),(19269,'trends','itemid',31031),(19270,'trends_uint','itemid',31031),(19271,'events','itemid',31032),(19272,'history','itemid',31032),(19273,'history_log','itemid',31032),(19274,'history_str','itemid',31032),(19275,'history_text','itemid',31032),(19276,'history_uint','itemid',31032),(19277,'trends','itemid',31032),(19278,'trends_uint','itemid',31032),(19279,'events','itemid',31033),(19280,'history','itemid',31033),(19281,'history_log','itemid',31033),(19282,'history_str','itemid',31033),(19283,'history_text','itemid',31033),(19284,'history_uint','itemid',31033),(19285,'trends','itemid',31033),(19286,'trends_uint','itemid',31033),(19287,'events','itemid',31034),(19288,'history','itemid',31034),(19289,'history_log','itemid',31034),(19290,'history_str','itemid',31034),(19291,'history_text','itemid',31034),(19292,'history_uint','itemid',31034),(19293,'trends','itemid',31034),(19294,'trends_uint','itemid',31034),(19295,'events','itemid',31035),(19296,'history','itemid',31035),(19297,'history_log','itemid',31035),(19298,'history_str','itemid',31035),(19299,'history_text','itemid',31035),(19300,'history_uint','itemid',31035),(19301,'trends','itemid',31035),(19302,'trends_uint','itemid',31035),(19303,'events','itemid',31036),(19304,'history','itemid',31036),(19305,'history_log','itemid',31036),(19306,'history_str','itemid',31036),(19307,'history_text','itemid',31036),(19308,'history_uint','itemid',31036),(19309,'trends','itemid',31036),(19310,'trends_uint','itemid',31036),(19311,'events','itemid',31030),(19312,'history','itemid',31030),(19313,'history_log','itemid',31030),(19314,'history_str','itemid',31030),(19315,'history_text','itemid',31030),(19316,'history_uint','itemid',31030),(19317,'trends','itemid',31030),(19318,'trends_uint','itemid',31030),(19319,'events','itemid',31037),(19320,'history','itemid',31037),(19321,'history_log','itemid',31037),(19322,'history_str','itemid',31037),(19323,'history_text','itemid',31037),(19324,'history_uint','itemid',31037),(19325,'trends','itemid',31037),(19326,'trends_uint','itemid',31037),(19327,'events','itemid',31039),(19328,'history','itemid',31039),(19329,'history_log','itemid',31039),(19330,'history_str','itemid',31039),(19331,'history_text','itemid',31039),(19332,'history_uint','itemid',31039),(19333,'trends','itemid',31039),(19334,'trends_uint','itemid',31039),(19335,'events','itemid',31040),(19336,'history','itemid',31040),(19337,'history_log','itemid',31040),(19338,'history_str','itemid',31040),(19339,'history_text','itemid',31040),(19340,'history_uint','itemid',31040),(19341,'trends','itemid',31040),(19342,'trends_uint','itemid',31040),(19343,'events','itemid',31041),(19344,'history','itemid',31041),(19345,'history_log','itemid',31041),(19346,'history_str','itemid',31041),(19347,'history_text','itemid',31041),(19348,'history_uint','itemid',31041),(19349,'trends','itemid',31041),(19350,'trends_uint','itemid',31041),(19351,'events','itemid',31043),(19352,'history','itemid',31043),(19353,'history_log','itemid',31043),(19354,'history_str','itemid',31043),(19355,'history_text','itemid',31043),(19356,'history_uint','itemid',31043),(19357,'trends','itemid',31043),(19358,'trends_uint','itemid',31043),(19359,'events','itemid',31042),(19360,'history','itemid',31042),(19361,'history_log','itemid',31042),(19362,'history_str','itemid',31042),(19363,'history_text','itemid',31042),(19364,'history_uint','itemid',31042),(19365,'trends','itemid',31042),(19366,'trends_uint','itemid',31042),(19367,'events','itemid',31044),(19368,'history','itemid',31044),(19369,'history_log','itemid',31044),(19370,'history_str','itemid',31044),(19371,'history_text','itemid',31044),(19372,'history_uint','itemid',31044),(19373,'trends','itemid',31044),(19374,'trends_uint','itemid',31044),(19375,'events','itemid',31045),(19376,'history','itemid',31045),(19377,'history_log','itemid',31045),(19378,'history_str','itemid',31045),(19379,'history_text','itemid',31045),(19380,'history_uint','itemid',31045),(19381,'trends','itemid',31045),(19382,'trends_uint','itemid',31045),(19383,'events','itemid',31038),(19384,'history','itemid',31038),(19385,'history_log','itemid',31038),(19386,'history_str','itemid',31038),(19387,'history_text','itemid',31038),(19388,'history_uint','itemid',31038),(19389,'trends','itemid',31038),(19390,'trends_uint','itemid',31038),(19391,'events','itemid',31028),(19392,'history','itemid',31028),(19393,'history_log','itemid',31028),(19394,'history_str','itemid',31028),(19395,'history_text','itemid',31028),(19396,'history_uint','itemid',31028),(19397,'trends','itemid',31028),(19398,'trends_uint','itemid',31028),(19399,'events','itemid',31019),(19400,'history','itemid',31019),(19401,'history_log','itemid',31019),(19402,'history_str','itemid',31019),(19403,'history_text','itemid',31019),(19404,'history_uint','itemid',31019),(19405,'trends','itemid',31019),(19406,'trends_uint','itemid',31019),(19407,'events','itemid',31027),(19408,'history','itemid',31027),(19409,'history_log','itemid',31027),(19410,'history_str','itemid',31027),(19411,'history_text','itemid',31027),(19412,'history_uint','itemid',31027),(19413,'trends','itemid',31027),(19414,'trends_uint','itemid',31027),(19415,'events','itemid',31012),(19416,'history','itemid',31012),(19417,'history_log','itemid',31012),(19418,'history_str','itemid',31012),(19419,'history_text','itemid',31012),(19420,'history_uint','itemid',31012),(19421,'trends','itemid',31012),(19422,'trends_uint','itemid',31012),(19423,'events','itemid',31013),(19424,'history','itemid',31013),(19425,'history_log','itemid',31013),(19426,'history_str','itemid',31013),(19427,'history_text','itemid',31013),(19428,'history_uint','itemid',31013),(19429,'trends','itemid',31013),(19430,'trends_uint','itemid',31013),(19431,'events','itemid',31014),(19432,'history','itemid',31014),(19433,'history_log','itemid',31014),(19434,'history_str','itemid',31014),(19435,'history_text','itemid',31014),(19436,'history_uint','itemid',31014),(19437,'trends','itemid',31014),(19438,'trends_uint','itemid',31014),(19439,'events','itemid',31015),(19440,'history','itemid',31015),(19441,'history_log','itemid',31015),(19442,'history_str','itemid',31015),(19443,'history_text','itemid',31015),(19444,'history_uint','itemid',31015),(19445,'trends','itemid',31015),(19446,'trends_uint','itemid',31015),(19447,'events','itemid',31016),(19448,'history','itemid',31016),(19449,'history_log','itemid',31016),(19450,'history_str','itemid',31016),(19451,'history_text','itemid',31016),(19452,'history_uint','itemid',31016),(19453,'trends','itemid',31016),(19454,'trends_uint','itemid',31016),(19455,'events','itemid',31017),(19456,'history','itemid',31017),(19457,'history_log','itemid',31017),(19458,'history_str','itemid',31017),(19459,'history_text','itemid',31017),(19460,'history_uint','itemid',31017),(19461,'trends','itemid',31017),(19462,'trends_uint','itemid',31017),(19463,'events','itemid',31011),(19464,'history','itemid',31011),(19465,'history_log','itemid',31011),(19466,'history_str','itemid',31011),(19467,'history_text','itemid',31011),(19468,'history_uint','itemid',31011),(19469,'trends','itemid',31011),(19470,'trends_uint','itemid',31011),(19471,'events','itemid',31018),(19472,'history','itemid',31018),(19473,'history_log','itemid',31018),(19474,'history_str','itemid',31018),(19475,'history_text','itemid',31018),(19476,'history_uint','itemid',31018),(19477,'trends','itemid',31018),(19478,'trends_uint','itemid',31018),(19479,'events','itemid',31020),(19480,'history','itemid',31020),(19481,'history_log','itemid',31020),(19482,'history_str','itemid',31020),(19483,'history_text','itemid',31020),(19484,'history_uint','itemid',31020),(19485,'trends','itemid',31020),(19486,'trends_uint','itemid',31020),(19487,'events','itemid',31021),(19488,'history','itemid',31021),(19489,'history_log','itemid',31021),(19490,'history_str','itemid',31021),(19491,'history_text','itemid',31021),(19492,'history_uint','itemid',31021),(19493,'trends','itemid',31021),(19494,'trends_uint','itemid',31021),(19495,'events','itemid',31026),(19496,'history','itemid',31026),(19497,'history_log','itemid',31026),(19498,'history_str','itemid',31026),(19499,'history_text','itemid',31026),(19500,'history_uint','itemid',31026),(19501,'trends','itemid',31026),(19502,'trends_uint','itemid',31026),(19503,'events','itemid',31046),(19504,'history','itemid',31046),(19505,'history_log','itemid',31046),(19506,'history_str','itemid',31046),(19507,'history_text','itemid',31046),(19508,'history_uint','itemid',31046),(19509,'trends','itemid',31046),(19510,'trends_uint','itemid',31046),(19511,'events','itemid',43078),(19512,'history','itemid',43078),(19513,'history_log','itemid',43078),(19514,'history_str','itemid',43078),(19515,'history_text','itemid',43078),(19516,'history_uint','itemid',43078),(19517,'trends','itemid',43078),(19518,'trends_uint','itemid',43078),(19519,'events','itemid',31820),(19520,'history','itemid',31820),(19521,'history_log','itemid',31820),(19522,'history_str','itemid',31820),(19523,'history_text','itemid',31820),(19524,'history_uint','itemid',31820),(19525,'trends','itemid',31820),(19526,'trends_uint','itemid',31820),(19527,'events','itemid',31834),(19528,'history','itemid',31834),(19529,'history_log','itemid',31834),(19530,'history_str','itemid',31834),(19531,'history_text','itemid',31834),(19532,'history_uint','itemid',31834),(19533,'trends','itemid',31834),(19534,'trends_uint','itemid',31834),(19535,'events','itemid',31829),(19536,'history','itemid',31829),(19537,'history_log','itemid',31829),(19538,'history_str','itemid',31829),(19539,'history_text','itemid',31829),(19540,'history_uint','itemid',31829),(19541,'trends','itemid',31829),(19542,'trends_uint','itemid',31829),(19543,'events','itemid',31833),(19544,'history','itemid',31833),(19545,'history_log','itemid',31833),(19546,'history_str','itemid',31833),(19547,'history_text','itemid',31833),(19548,'history_uint','itemid',31833),(19549,'trends','itemid',31833),(19550,'trends_uint','itemid',31833),(19551,'events','itemid',31832),(19552,'history','itemid',31832),(19553,'history_log','itemid',31832),(19554,'history_str','itemid',31832),(19555,'history_text','itemid',31832),(19556,'history_uint','itemid',31832),(19557,'trends','itemid',31832),(19558,'trends_uint','itemid',31832),(19559,'events','itemid',31831),(19560,'history','itemid',31831),(19561,'history_log','itemid',31831),(19562,'history_str','itemid',31831),(19563,'history_text','itemid',31831),(19564,'history_uint','itemid',31831),(19565,'trends','itemid',31831),(19566,'trends_uint','itemid',31831),(19567,'events','itemid',31892),(19568,'history','itemid',31892),(19569,'history_log','itemid',31892),(19570,'history_str','itemid',31892),(19571,'history_text','itemid',31892),(19572,'history_uint','itemid',31892),(19573,'trends','itemid',31892),(19574,'trends_uint','itemid',31892),(19575,'events','itemid',31828),(19576,'history','itemid',31828),(19577,'history_log','itemid',31828),(19578,'history_str','itemid',31828),(19579,'history_text','itemid',31828),(19580,'history_uint','itemid',31828),(19581,'trends','itemid',31828),(19582,'trends_uint','itemid',31828),(19583,'events','itemid',31830),(19584,'history','itemid',31830),(19585,'history_log','itemid',31830),(19586,'history_str','itemid',31830),(19587,'history_text','itemid',31830),(19588,'history_uint','itemid',31830),(19589,'trends','itemid',31830),(19590,'trends_uint','itemid',31830),(19591,'events','itemid',31821),(19592,'history','itemid',31821),(19593,'history_log','itemid',31821),(19594,'history_str','itemid',31821),(19595,'history_text','itemid',31821),(19596,'history_uint','itemid',31821),(19597,'trends','itemid',31821),(19598,'trends_uint','itemid',31821),(19599,'events','itemid',31827),(19600,'history','itemid',31827),(19601,'history_log','itemid',31827),(19602,'history_str','itemid',31827),(19603,'history_text','itemid',31827),(19604,'history_uint','itemid',31827),(19605,'trends','itemid',31827),(19606,'trends_uint','itemid',31827),(19607,'events','itemid',31826),(19608,'history','itemid',31826),(19609,'history_log','itemid',31826),(19610,'history_str','itemid',31826),(19611,'history_text','itemid',31826),(19612,'history_uint','itemid',31826),(19613,'trends','itemid',31826),(19614,'trends_uint','itemid',31826),(19615,'events','itemid',31825),(19616,'history','itemid',31825),(19617,'history_log','itemid',31825),(19618,'history_str','itemid',31825),(19619,'history_text','itemid',31825),(19620,'history_uint','itemid',31825),(19621,'trends','itemid',31825),(19622,'trends_uint','itemid',31825),(19623,'events','itemid',31824),(19624,'history','itemid',31824),(19625,'history_log','itemid',31824),(19626,'history_str','itemid',31824),(19627,'history_text','itemid',31824),(19628,'history_uint','itemid',31824),(19629,'trends','itemid',31824),(19630,'trends_uint','itemid',31824),(19631,'events','itemid',31823),(19632,'history','itemid',31823),(19633,'history_log','itemid',31823),(19634,'history_str','itemid',31823),(19635,'history_text','itemid',31823),(19636,'history_uint','itemid',31823),(19637,'trends','itemid',31823),(19638,'trends_uint','itemid',31823),(19639,'events','itemid',31822),(19640,'history','itemid',31822),(19641,'history_log','itemid',31822),(19642,'history_str','itemid',31822),(19643,'history_text','itemid',31822),(19644,'history_uint','itemid',31822),(19645,'trends','itemid',31822),(19646,'trends_uint','itemid',31822),(19647,'events','itemid',31835),(19648,'history','itemid',31835),(19649,'history_log','itemid',31835),(19650,'history_str','itemid',31835),(19651,'history_text','itemid',31835),(19652,'history_uint','itemid',31835),(19653,'trends','itemid',31835),(19654,'trends_uint','itemid',31835),(19655,'events','itemid',44374),(19656,'history','itemid',44374),(19657,'history_log','itemid',44374),(19658,'history_str','itemid',44374),(19659,'history_text','itemid',44374),(19660,'history_uint','itemid',44374),(19661,'trends','itemid',44374),(19662,'trends_uint','itemid',44374),(19663,'events','itemid',42319),(19664,'history','itemid',42319),(19665,'history_log','itemid',42319),(19666,'history_str','itemid',42319),(19667,'history_text','itemid',42319),(19668,'history_uint','itemid',42319),(19669,'trends','itemid',42319),(19670,'trends_uint','itemid',42319),(19671,'events','itemid',42340),(19672,'history','itemid',42340),(19673,'history_log','itemid',42340),(19674,'history_str','itemid',42340),(19675,'history_text','itemid',42340),(19676,'history_uint','itemid',42340),(19677,'trends','itemid',42340),(19678,'trends_uint','itemid',42340),(19679,'events','itemid',42342),(19680,'history','itemid',42342),(19681,'history_log','itemid',42342),(19682,'history_str','itemid',42342),(19683,'history_text','itemid',42342),(19684,'history_uint','itemid',42342),(19685,'trends','itemid',42342),(19686,'trends_uint','itemid',42342),(19687,'events','itemid',42343),(19688,'history','itemid',42343),(19689,'history_log','itemid',42343),(19690,'history_str','itemid',42343),(19691,'history_text','itemid',42343),(19692,'history_uint','itemid',42343),(19693,'trends','itemid',42343),(19694,'trends_uint','itemid',42343),(19695,'events','itemid',42344),(19696,'history','itemid',42344),(19697,'history_log','itemid',42344),(19698,'history_str','itemid',42344),(19699,'history_text','itemid',42344),(19700,'history_uint','itemid',42344),(19701,'trends','itemid',42344),(19702,'trends_uint','itemid',42344),(19703,'events','itemid',42345),(19704,'history','itemid',42345),(19705,'history_log','itemid',42345),(19706,'history_str','itemid',42345),(19707,'history_text','itemid',42345),(19708,'history_uint','itemid',42345),(19709,'trends','itemid',42345),(19710,'trends_uint','itemid',42345),(19711,'events','itemid',42346),(19712,'history','itemid',42346),(19713,'history_log','itemid',42346),(19714,'history_str','itemid',42346),(19715,'history_text','itemid',42346),(19716,'history_uint','itemid',42346),(19717,'trends','itemid',42346),(19718,'trends_uint','itemid',42346),(19719,'events','itemid',42347),(19720,'history','itemid',42347),(19721,'history_log','itemid',42347),(19722,'history_str','itemid',42347),(19723,'history_text','itemid',42347),(19724,'history_uint','itemid',42347),(19725,'trends','itemid',42347),(19726,'trends_uint','itemid',42347),(19727,'events','itemid',42348),(19728,'history','itemid',42348),(19729,'history_log','itemid',42348),(19730,'history_str','itemid',42348),(19731,'history_text','itemid',42348),(19732,'history_uint','itemid',42348),(19733,'trends','itemid',42348),(19734,'trends_uint','itemid',42348),(19735,'events','itemid',42351),(19736,'history','itemid',42351),(19737,'history_log','itemid',42351),(19738,'history_str','itemid',42351),(19739,'history_text','itemid',42351),(19740,'history_uint','itemid',42351),(19741,'trends','itemid',42351),(19742,'trends_uint','itemid',42351),(19743,'events','itemid',42341),(19744,'history','itemid',42341),(19745,'history_log','itemid',42341),(19746,'history_str','itemid',42341),(19747,'history_text','itemid',42341),(19748,'history_uint','itemid',42341),(19749,'trends','itemid',42341),(19750,'trends_uint','itemid',42341),(19751,'events','itemid',42349),(19752,'history','itemid',42349),(19753,'history_log','itemid',42349),(19754,'history_str','itemid',42349),(19755,'history_text','itemid',42349),(19756,'history_uint','itemid',42349),(19757,'trends','itemid',42349),(19758,'trends_uint','itemid',42349),(19759,'events','itemid',42352),(19760,'history','itemid',42352),(19761,'history_log','itemid',42352),(19762,'history_str','itemid',42352),(19763,'history_text','itemid',42352),(19764,'history_uint','itemid',42352),(19765,'trends','itemid',42352),(19766,'trends_uint','itemid',42352),(19767,'events','itemid',42353),(19768,'history','itemid',42353),(19769,'history_log','itemid',42353),(19770,'history_str','itemid',42353),(19771,'history_text','itemid',42353),(19772,'history_uint','itemid',42353),(19773,'trends','itemid',42353),(19774,'trends_uint','itemid',42353),(19775,'events','itemid',42358),(19776,'history','itemid',42358),(19777,'history_log','itemid',42358),(19778,'history_str','itemid',42358),(19779,'history_text','itemid',42358),(19780,'history_uint','itemid',42358),(19781,'trends','itemid',42358),(19782,'trends_uint','itemid',42358),(19783,'events','itemid',42354),(19784,'history','itemid',42354),(19785,'history_log','itemid',42354),(19786,'history_str','itemid',42354),(19787,'history_text','itemid',42354),(19788,'history_uint','itemid',42354),(19789,'trends','itemid',42354),(19790,'trends_uint','itemid',42354),(19791,'events','itemid',42355),(19792,'history','itemid',42355),(19793,'history_log','itemid',42355),(19794,'history_str','itemid',42355),(19795,'history_text','itemid',42355),(19796,'history_uint','itemid',42355),(19797,'trends','itemid',42355),(19798,'trends_uint','itemid',42355),(19799,'events','itemid',42356),(19800,'history','itemid',42356),(19801,'history_log','itemid',42356),(19802,'history_str','itemid',42356),(19803,'history_text','itemid',42356),(19804,'history_uint','itemid',42356),(19805,'trends','itemid',42356),(19806,'trends_uint','itemid',42356),(19807,'events','itemid',42357),(19808,'history','itemid',42357),(19809,'history_log','itemid',42357),(19810,'history_str','itemid',42357),(19811,'history_text','itemid',42357),(19812,'history_uint','itemid',42357),(19813,'trends','itemid',42357),(19814,'trends_uint','itemid',42357),(19815,'events','itemid',42350),(19816,'history','itemid',42350),(19817,'history_log','itemid',42350),(19818,'history_str','itemid',42350),(19819,'history_text','itemid',42350),(19820,'history_uint','itemid',42350),(19821,'trends','itemid',42350),(19822,'trends_uint','itemid',42350),(19823,'events','itemid',42339),(19824,'history','itemid',42339),(19825,'history_log','itemid',42339),(19826,'history_str','itemid',42339),(19827,'history_text','itemid',42339),(19828,'history_uint','itemid',42339),(19829,'trends','itemid',42339),(19830,'trends_uint','itemid',42339),(19831,'events','itemid',42329),(19832,'history','itemid',42329),(19833,'history_log','itemid',42329),(19834,'history_str','itemid',42329),(19835,'history_text','itemid',42329),(19836,'history_uint','itemid',42329),(19837,'trends','itemid',42329),(19838,'trends_uint','itemid',42329),(19839,'events','itemid',42338),(19840,'history','itemid',42338),(19841,'history_log','itemid',42338),(19842,'history_str','itemid',42338),(19843,'history_text','itemid',42338),(19844,'history_uint','itemid',42338),(19845,'trends','itemid',42338),(19846,'trends_uint','itemid',42338),(19847,'events','itemid',42321),(19848,'history','itemid',42321),(19849,'history_log','itemid',42321),(19850,'history_str','itemid',42321),(19851,'history_text','itemid',42321),(19852,'history_uint','itemid',42321),(19853,'trends','itemid',42321),(19854,'trends_uint','itemid',42321),(19855,'events','itemid',42322),(19856,'history','itemid',42322),(19857,'history_log','itemid',42322),(19858,'history_str','itemid',42322),(19859,'history_text','itemid',42322),(19860,'history_uint','itemid',42322),(19861,'trends','itemid',42322),(19862,'trends_uint','itemid',42322),(19863,'events','itemid',42323),(19864,'history','itemid',42323),(19865,'history_log','itemid',42323),(19866,'history_str','itemid',42323),(19867,'history_text','itemid',42323),(19868,'history_uint','itemid',42323),(19869,'trends','itemid',42323),(19870,'trends_uint','itemid',42323),(19871,'events','itemid',42324),(19872,'history','itemid',42324),(19873,'history_log','itemid',42324),(19874,'history_str','itemid',42324),(19875,'history_text','itemid',42324),(19876,'history_uint','itemid',42324),(19877,'trends','itemid',42324),(19878,'trends_uint','itemid',42324),(19879,'events','itemid',42325),(19880,'history','itemid',42325),(19881,'history_log','itemid',42325),(19882,'history_str','itemid',42325),(19883,'history_text','itemid',42325),(19884,'history_uint','itemid',42325),(19885,'trends','itemid',42325),(19886,'trends_uint','itemid',42325),(19887,'events','itemid',42326),(19888,'history','itemid',42326),(19889,'history_log','itemid',42326),(19890,'history_str','itemid',42326),(19891,'history_text','itemid',42326),(19892,'history_uint','itemid',42326),(19893,'trends','itemid',42326),(19894,'trends_uint','itemid',42326),(19895,'events','itemid',42327),(19896,'history','itemid',42327),(19897,'history_log','itemid',42327),(19898,'history_str','itemid',42327),(19899,'history_text','itemid',42327),(19900,'history_uint','itemid',42327),(19901,'trends','itemid',42327),(19902,'trends_uint','itemid',42327),(19903,'events','itemid',42320),(19904,'history','itemid',42320),(19905,'history_log','itemid',42320),(19906,'history_str','itemid',42320),(19907,'history_text','itemid',42320),(19908,'history_uint','itemid',42320),(19909,'trends','itemid',42320),(19910,'trends_uint','itemid',42320),(19911,'events','itemid',42328),(19912,'history','itemid',42328),(19913,'history_log','itemid',42328),(19914,'history_str','itemid',42328),(19915,'history_text','itemid',42328),(19916,'history_uint','itemid',42328),(19917,'trends','itemid',42328),(19918,'trends_uint','itemid',42328),(19919,'events','itemid',42330),(19920,'history','itemid',42330),(19921,'history_log','itemid',42330),(19922,'history_str','itemid',42330),(19923,'history_text','itemid',42330),(19924,'history_uint','itemid',42330),(19925,'trends','itemid',42330),(19926,'trends_uint','itemid',42330),(19927,'events','itemid',42331),(19928,'history','itemid',42331),(19929,'history_log','itemid',42331),(19930,'history_str','itemid',42331),(19931,'history_text','itemid',42331),(19932,'history_uint','itemid',42331),(19933,'trends','itemid',42331),(19934,'trends_uint','itemid',42331),(19935,'events','itemid',42332),(19936,'history','itemid',42332),(19937,'history_log','itemid',42332),(19938,'history_str','itemid',42332),(19939,'history_text','itemid',42332),(19940,'history_uint','itemid',42332),(19941,'trends','itemid',42332),(19942,'trends_uint','itemid',42332),(19943,'events','itemid',42333),(19944,'history','itemid',42333),(19945,'history_log','itemid',42333),(19946,'history_str','itemid',42333),(19947,'history_text','itemid',42333),(19948,'history_uint','itemid',42333),(19949,'trends','itemid',42333),(19950,'trends_uint','itemid',42333),(19951,'events','itemid',42334),(19952,'history','itemid',42334),(19953,'history_log','itemid',42334),(19954,'history_str','itemid',42334),(19955,'history_text','itemid',42334),(19956,'history_uint','itemid',42334),(19957,'trends','itemid',42334),(19958,'trends_uint','itemid',42334),(19959,'events','itemid',44442),(19960,'history','itemid',44442),(19961,'history_log','itemid',44442),(19962,'history_str','itemid',44442),(19963,'history_text','itemid',44442),(19964,'history_uint','itemid',44442),(19965,'trends','itemid',44442),(19966,'trends_uint','itemid',44442),(19967,'events','itemid',42335),(19968,'history','itemid',42335),(19969,'history_log','itemid',42335),(19970,'history_str','itemid',42335),(19971,'history_text','itemid',42335),(19972,'history_uint','itemid',42335),(19973,'trends','itemid',42335),(19974,'trends_uint','itemid',42335),(19975,'events','itemid',42336),(19976,'history','itemid',42336),(19977,'history_log','itemid',42336),(19978,'history_str','itemid',42336),(19979,'history_text','itemid',42336),(19980,'history_uint','itemid',42336),(19981,'trends','itemid',42336),(19982,'trends_uint','itemid',42336),(19983,'events','itemid',42337),(19984,'history','itemid',42337),(19985,'history_log','itemid',42337),(19986,'history_str','itemid',42337),(19987,'history_text','itemid',42337),(19988,'history_uint','itemid',42337),(19989,'trends','itemid',42337),(19990,'trends_uint','itemid',42337),(19991,'events','itemid',42359),(19992,'history','itemid',42359),(19993,'history_log','itemid',42359),(19994,'history_str','itemid',42359),(19995,'history_text','itemid',42359),(19996,'history_uint','itemid',42359),(19997,'trends','itemid',42359),(19998,'trends_uint','itemid',42359),(19999,'events','itemid',43079),(20000,'history','itemid',43079),(20001,'history_log','itemid',43079),(20002,'history_str','itemid',43079),(20003,'history_text','itemid',43079),(20004,'history_uint','itemid',43079),(20005,'trends','itemid',43079),(20006,'trends_uint','itemid',43079),(20007,'events','itemid',33391),(20008,'history','itemid',33391),(20009,'history_log','itemid',33391),(20010,'history_str','itemid',33391),(20011,'history_text','itemid',33391),(20012,'history_uint','itemid',33391),(20013,'trends','itemid',33391),(20014,'trends_uint','itemid',33391),(20015,'events','itemid',33447),(20016,'history','itemid',33447),(20017,'history_log','itemid',33447),(20018,'history_str','itemid',33447),(20019,'history_text','itemid',33447),(20020,'history_uint','itemid',33447),(20021,'trends','itemid',33447),(20022,'trends_uint','itemid',33447),(20023,'events','itemid',33444),(20024,'history','itemid',33444),(20025,'history_log','itemid',33444),(20026,'history_str','itemid',33444),(20027,'history_text','itemid',33444),(20028,'history_uint','itemid',33444),(20029,'trends','itemid',33444),(20030,'trends_uint','itemid',33444),(20031,'events','itemid',33443),(20032,'history','itemid',33443),(20033,'history_log','itemid',33443),(20034,'history_str','itemid',33443),(20035,'history_text','itemid',33443),(20036,'history_uint','itemid',33443),(20037,'trends','itemid',33443),(20038,'trends_uint','itemid',33443),(20039,'events','itemid',33442),(20040,'history','itemid',33442),(20041,'history_log','itemid',33442),(20042,'history_str','itemid',33442),(20043,'history_text','itemid',33442),(20044,'history_uint','itemid',33442),(20045,'trends','itemid',33442),(20046,'trends_uint','itemid',33442),(20047,'events','itemid',33441),(20048,'history','itemid',33441),(20049,'history_log','itemid',33441),(20050,'history_str','itemid',33441),(20051,'history_text','itemid',33441),(20052,'history_uint','itemid',33441),(20053,'trends','itemid',33441),(20054,'trends_uint','itemid',33441),(20055,'events','itemid',33440),(20056,'history','itemid',33440),(20057,'history_log','itemid',33440),(20058,'history_str','itemid',33440),(20059,'history_text','itemid',33440),(20060,'history_uint','itemid',33440),(20061,'trends','itemid',33440),(20062,'trends_uint','itemid',33440),(20063,'events','itemid',33394),(20064,'history','itemid',33394),(20065,'history_log','itemid',33394),(20066,'history_str','itemid',33394),(20067,'history_text','itemid',33394),(20068,'history_uint','itemid',33394),(20069,'trends','itemid',33394),(20070,'trends_uint','itemid',33394),(20071,'events','itemid',33395),(20072,'history','itemid',33395),(20073,'history_log','itemid',33395),(20074,'history_str','itemid',33395),(20075,'history_text','itemid',33395),(20076,'history_uint','itemid',33395),(20077,'trends','itemid',33395),(20078,'trends_uint','itemid',33395),(20079,'events','itemid',33439),(20080,'history','itemid',33439),(20081,'history_log','itemid',33439),(20082,'history_str','itemid',33439),(20083,'history_text','itemid',33439),(20084,'history_uint','itemid',33439),(20085,'trends','itemid',33439),(20086,'trends_uint','itemid',33439),(20087,'events','itemid',33437),(20088,'history','itemid',33437),(20089,'history_log','itemid',33437),(20090,'history_str','itemid',33437),(20091,'history_text','itemid',33437),(20092,'history_uint','itemid',33437),(20093,'trends','itemid',33437),(20094,'trends_uint','itemid',33437),(20095,'events','itemid',33430),(20096,'history','itemid',33430),(20097,'history_log','itemid',33430),(20098,'history_str','itemid',33430),(20099,'history_text','itemid',33430),(20100,'history_uint','itemid',33430),(20101,'trends','itemid',33430),(20102,'trends_uint','itemid',33430),(20103,'events','itemid',33436),(20104,'history','itemid',33436),(20105,'history_log','itemid',33436),(20106,'history_str','itemid',33436),(20107,'history_text','itemid',33436),(20108,'history_uint','itemid',33436),(20109,'trends','itemid',33436),(20110,'trends_uint','itemid',33436),(20111,'events','itemid',33433),(20112,'history','itemid',33433),(20113,'history_log','itemid',33433),(20114,'history_str','itemid',33433),(20115,'history_text','itemid',33433),(20116,'history_uint','itemid',33433),(20117,'trends','itemid',33433),(20118,'trends_uint','itemid',33433),(20119,'events','itemid',33435),(20120,'history','itemid',33435),(20121,'history_log','itemid',33435),(20122,'history_str','itemid',33435),(20123,'history_text','itemid',33435),(20124,'history_uint','itemid',33435),(20125,'trends','itemid',33435),(20126,'trends_uint','itemid',33435),(20127,'events','itemid',33434),(20128,'history','itemid',33434),(20129,'history_log','itemid',33434),(20130,'history_str','itemid',33434),(20131,'history_text','itemid',33434),(20132,'history_uint','itemid',33434),(20133,'trends','itemid',33434),(20134,'trends_uint','itemid',33434),(20135,'events','itemid',33432),(20136,'history','itemid',33432),(20137,'history_log','itemid',33432),(20138,'history_str','itemid',33432),(20139,'history_text','itemid',33432),(20140,'history_uint','itemid',33432),(20141,'trends','itemid',33432),(20142,'trends_uint','itemid',33432),(20143,'events','itemid',33431),(20144,'history','itemid',33431),(20145,'history_log','itemid',33431),(20146,'history_str','itemid',33431),(20147,'history_text','itemid',33431),(20148,'history_uint','itemid',33431),(20149,'trends','itemid',33431),(20150,'trends_uint','itemid',33431),(20151,'events','itemid',33445),(20152,'history','itemid',33445),(20153,'history_log','itemid',33445),(20154,'history_str','itemid',33445),(20155,'history_text','itemid',33445),(20156,'history_uint','itemid',33445),(20157,'trends','itemid',33445),(20158,'trends_uint','itemid',33445),(20159,'events','itemid',33438),(20160,'history','itemid',33438),(20161,'history_log','itemid',33438),(20162,'history_str','itemid',33438),(20163,'history_text','itemid',33438),(20164,'history_uint','itemid',33438),(20165,'trends','itemid',33438),(20166,'trends_uint','itemid',33438),(20167,'events','itemid',33446),(20168,'history','itemid',33446),(20169,'history_log','itemid',33446),(20170,'history_str','itemid',33446),(20171,'history_text','itemid',33446),(20172,'history_uint','itemid',33446),(20173,'trends','itemid',33446),(20174,'trends_uint','itemid',33446),(20175,'events','itemid',33456),(20176,'history','itemid',33456),(20177,'history_log','itemid',33456),(20178,'history_str','itemid',33456),(20179,'history_text','itemid',33456),(20180,'history_uint','itemid',33456),(20181,'trends','itemid',33456),(20182,'trends_uint','itemid',33456),(20183,'events','itemid',33463),(20184,'history','itemid',33463),(20185,'history_log','itemid',33463),(20186,'history_str','itemid',33463),(20187,'history_text','itemid',33463),(20188,'history_uint','itemid',33463),(20189,'trends','itemid',33463),(20190,'trends_uint','itemid',33463),(20191,'events','itemid',33462),(20192,'history','itemid',33462),(20193,'history_log','itemid',33462),(20194,'history_str','itemid',33462),(20195,'history_text','itemid',33462),(20196,'history_uint','itemid',33462),(20197,'trends','itemid',33462),(20198,'trends_uint','itemid',33462),(20199,'events','itemid',33461),(20200,'history','itemid',33461),(20201,'history_log','itemid',33461),(20202,'history_str','itemid',33461),(20203,'history_text','itemid',33461),(20204,'history_uint','itemid',33461),(20205,'trends','itemid',33461),(20206,'trends_uint','itemid',33461),(20207,'events','itemid',33460),(20208,'history','itemid',33460),(20209,'history_log','itemid',33460),(20210,'history_str','itemid',33460),(20211,'history_text','itemid',33460),(20212,'history_uint','itemid',33460),(20213,'trends','itemid',33460),(20214,'trends_uint','itemid',33460),(20215,'events','itemid',33459),(20216,'history','itemid',33459),(20217,'history_log','itemid',33459),(20218,'history_str','itemid',33459),(20219,'history_text','itemid',33459),(20220,'history_uint','itemid',33459),(20221,'trends','itemid',33459),(20222,'trends_uint','itemid',33459),(20223,'events','itemid',33458),(20224,'history','itemid',33458),(20225,'history_log','itemid',33458),(20226,'history_str','itemid',33458),(20227,'history_text','itemid',33458),(20228,'history_uint','itemid',33458),(20229,'trends','itemid',33458),(20230,'trends_uint','itemid',33458),(20231,'events','itemid',33457),(20232,'history','itemid',33457),(20233,'history_log','itemid',33457),(20234,'history_str','itemid',33457),(20235,'history_text','itemid',33457),(20236,'history_uint','itemid',33457),(20237,'trends','itemid',33457),(20238,'trends_uint','itemid',33457),(20239,'events','itemid',33455),(20240,'history','itemid',33455),(20241,'history_log','itemid',33455),(20242,'history_str','itemid',33455),(20243,'history_text','itemid',33455),(20244,'history_uint','itemid',33455),(20245,'trends','itemid',33455),(20246,'trends_uint','itemid',33455),(20247,'events','itemid',33448),(20248,'history','itemid',33448),(20249,'history_log','itemid',33448),(20250,'history_str','itemid',33448),(20251,'history_text','itemid',33448),(20252,'history_uint','itemid',33448),(20253,'trends','itemid',33448),(20254,'trends_uint','itemid',33448),(20255,'events','itemid',33454),(20256,'history','itemid',33454),(20257,'history_log','itemid',33454),(20258,'history_str','itemid',33454),(20259,'history_text','itemid',33454),(20260,'history_uint','itemid',33454),(20261,'trends','itemid',33454),(20262,'trends_uint','itemid',33454),(20263,'events','itemid',33453),(20264,'history','itemid',33453),(20265,'history_log','itemid',33453),(20266,'history_str','itemid',33453),(20267,'history_text','itemid',33453),(20268,'history_uint','itemid',33453),(20269,'trends','itemid',33453),(20270,'trends_uint','itemid',33453),(20271,'events','itemid',33452),(20272,'history','itemid',33452),(20273,'history_log','itemid',33452),(20274,'history_str','itemid',33452),(20275,'history_text','itemid',33452),(20276,'history_uint','itemid',33452),(20277,'trends','itemid',33452),(20278,'trends_uint','itemid',33452),(20279,'events','itemid',33451),(20280,'history','itemid',33451),(20281,'history_log','itemid',33451),(20282,'history_str','itemid',33451),(20283,'history_text','itemid',33451),(20284,'history_uint','itemid',33451),(20285,'trends','itemid',33451),(20286,'trends_uint','itemid',33451),(20287,'events','itemid',33450),(20288,'history','itemid',33450),(20289,'history_log','itemid',33450),(20290,'history_str','itemid',33450),(20291,'history_text','itemid',33450),(20292,'history_uint','itemid',33450),(20293,'trends','itemid',33450),(20294,'trends_uint','itemid',33450),(20295,'events','itemid',33449),(20296,'history','itemid',33449),(20297,'history_log','itemid',33449),(20298,'history_str','itemid',33449),(20299,'history_text','itemid',33449),(20300,'history_uint','itemid',33449),(20301,'trends','itemid',33449),(20302,'trends_uint','itemid',33449),(20303,'events','itemid',33428),(20304,'history','itemid',33428),(20305,'history_log','itemid',33428),(20306,'history_str','itemid',33428),(20307,'history_text','itemid',33428),(20308,'history_uint','itemid',33428),(20309,'trends','itemid',33428),(20310,'trends_uint','itemid',33428),(20311,'events','itemid',33429),(20312,'history','itemid',33429),(20313,'history_log','itemid',33429),(20314,'history_str','itemid',33429),(20315,'history_text','itemid',33429),(20316,'history_uint','itemid',33429),(20317,'trends','itemid',33429),(20318,'trends_uint','itemid',33429),(20319,'events','itemid',33420),(20320,'history','itemid',33420),(20321,'history_log','itemid',33420),(20322,'history_str','itemid',33420),(20323,'history_text','itemid',33420),(20324,'history_uint','itemid',33420),(20325,'trends','itemid',33420),(20326,'trends_uint','itemid',33420),(20327,'events','itemid',33427),(20328,'history','itemid',33427),(20329,'history_log','itemid',33427),(20330,'history_str','itemid',33427),(20331,'history_text','itemid',33427),(20332,'history_uint','itemid',33427),(20333,'trends','itemid',33427),(20334,'trends_uint','itemid',33427),(20335,'events','itemid',33408),(20336,'history','itemid',33408),(20337,'history_log','itemid',33408),(20338,'history_str','itemid',33408),(20339,'history_text','itemid',33408),(20340,'history_uint','itemid',33408),(20341,'trends','itemid',33408),(20342,'trends_uint','itemid',33408),(20343,'events','itemid',33407),(20344,'history','itemid',33407),(20345,'history_log','itemid',33407),(20346,'history_str','itemid',33407),(20347,'history_text','itemid',33407),(20348,'history_uint','itemid',33407),(20349,'trends','itemid',33407),(20350,'trends_uint','itemid',33407),(20351,'events','itemid',33406),(20352,'history','itemid',33406),(20353,'history_log','itemid',33406),(20354,'history_str','itemid',33406),(20355,'history_text','itemid',33406),(20356,'history_uint','itemid',33406),(20357,'trends','itemid',33406),(20358,'trends_uint','itemid',33406),(20359,'events','itemid',33405),(20360,'history','itemid',33405),(20361,'history_log','itemid',33405),(20362,'history_str','itemid',33405),(20363,'history_text','itemid',33405),(20364,'history_uint','itemid',33405),(20365,'trends','itemid',33405),(20366,'trends_uint','itemid',33405),(20367,'events','itemid',33404),(20368,'history','itemid',33404),(20369,'history_log','itemid',33404),(20370,'history_str','itemid',33404),(20371,'history_text','itemid',33404),(20372,'history_uint','itemid',33404),(20373,'trends','itemid',33404),(20374,'trends_uint','itemid',33404),(20375,'events','itemid',33401),(20376,'history','itemid',33401),(20377,'history_log','itemid',33401),(20378,'history_str','itemid',33401),(20379,'history_text','itemid',33401),(20380,'history_uint','itemid',33401),(20381,'trends','itemid',33401),(20382,'trends_uint','itemid',33401),(20383,'events','itemid',33402),(20384,'history','itemid',33402),(20385,'history_log','itemid',33402),(20386,'history_str','itemid',33402),(20387,'history_text','itemid',33402),(20388,'history_uint','itemid',33402),(20389,'trends','itemid',33402),(20390,'trends_uint','itemid',33402),(20391,'events','itemid',33396),(20392,'history','itemid',33396),(20393,'history_log','itemid',33396),(20394,'history_str','itemid',33396),(20395,'history_text','itemid',33396),(20396,'history_uint','itemid',33396),(20397,'trends','itemid',33396),(20398,'trends_uint','itemid',33396),(20399,'events','itemid',33400),(20400,'history','itemid',33400),(20401,'history_log','itemid',33400),(20402,'history_str','itemid',33400),(20403,'history_text','itemid',33400),(20404,'history_uint','itemid',33400),(20405,'trends','itemid',33400),(20406,'trends_uint','itemid',33400),(20407,'events','itemid',33393),(20408,'history','itemid',33393),(20409,'history_log','itemid',33393),(20410,'history_str','itemid',33393),(20411,'history_text','itemid',33393),(20412,'history_uint','itemid',33393),(20413,'trends','itemid',33393),(20414,'trends_uint','itemid',33393),(20415,'events','itemid',33399),(20416,'history','itemid',33399),(20417,'history_log','itemid',33399),(20418,'history_str','itemid',33399),(20419,'history_text','itemid',33399),(20420,'history_uint','itemid',33399),(20421,'trends','itemid',33399),(20422,'trends_uint','itemid',33399),(20423,'events','itemid',33398),(20424,'history','itemid',33398),(20425,'history_log','itemid',33398),(20426,'history_str','itemid',33398),(20427,'history_text','itemid',33398),(20428,'history_uint','itemid',33398),(20429,'trends','itemid',33398),(20430,'trends_uint','itemid',33398),(20431,'events','itemid',33397),(20432,'history','itemid',33397),(20433,'history_log','itemid',33397),(20434,'history_str','itemid',33397),(20435,'history_text','itemid',33397),(20436,'history_uint','itemid',33397),(20437,'trends','itemid',33397),(20438,'trends_uint','itemid',33397),(20439,'events','itemid',33392),(20440,'history','itemid',33392),(20441,'history_log','itemid',33392),(20442,'history_str','itemid',33392),(20443,'history_text','itemid',33392),(20444,'history_uint','itemid',33392),(20445,'trends','itemid',33392),(20446,'trends_uint','itemid',33392),(20447,'events','itemid',33409),(20448,'history','itemid',33409),(20449,'history_log','itemid',33409),(20450,'history_str','itemid',33409),(20451,'history_text','itemid',33409),(20452,'history_uint','itemid',33409),(20453,'trends','itemid',33409),(20454,'trends_uint','itemid',33409),(20455,'events','itemid',33403),(20456,'history','itemid',33403),(20457,'history_log','itemid',33403),(20458,'history_str','itemid',33403),(20459,'history_text','itemid',33403),(20460,'history_uint','itemid',33403),(20461,'trends','itemid',33403),(20462,'trends_uint','itemid',33403),(20463,'events','itemid',33411),(20464,'history','itemid',33411),(20465,'history_log','itemid',33411),(20466,'history_str','itemid',33411),(20467,'history_text','itemid',33411),(20468,'history_uint','itemid',33411),(20469,'trends','itemid',33411),(20470,'trends_uint','itemid',33411),(20471,'events','itemid',33410),(20472,'history','itemid',33410),(20473,'history_log','itemid',33410),(20474,'history_str','itemid',33410),(20475,'history_text','itemid',33410),(20476,'history_uint','itemid',33410),(20477,'trends','itemid',33410),(20478,'trends_uint','itemid',33410),(20479,'events','itemid',33426),(20480,'history','itemid',33426),(20481,'history_log','itemid',33426),(20482,'history_str','itemid',33426),(20483,'history_text','itemid',33426),(20484,'history_uint','itemid',33426),(20485,'trends','itemid',33426),(20486,'trends_uint','itemid',33426),(20487,'events','itemid',33425),(20488,'history','itemid',33425),(20489,'history_log','itemid',33425),(20490,'history_str','itemid',33425),(20491,'history_text','itemid',33425),(20492,'history_uint','itemid',33425),(20493,'trends','itemid',33425),(20494,'trends_uint','itemid',33425),(20495,'events','itemid',33424),(20496,'history','itemid',33424),(20497,'history_log','itemid',33424),(20498,'history_str','itemid',33424),(20499,'history_text','itemid',33424),(20500,'history_uint','itemid',33424),(20501,'trends','itemid',33424),(20502,'trends_uint','itemid',33424),(20503,'events','itemid',33423),(20504,'history','itemid',33423),(20505,'history_log','itemid',33423),(20506,'history_str','itemid',33423),(20507,'history_text','itemid',33423),(20508,'history_uint','itemid',33423),(20509,'trends','itemid',33423),(20510,'trends_uint','itemid',33423),(20511,'events','itemid',33422),(20512,'history','itemid',33422),(20513,'history_log','itemid',33422),(20514,'history_str','itemid',33422),(20515,'history_text','itemid',33422),(20516,'history_uint','itemid',33422),(20517,'trends','itemid',33422),(20518,'trends_uint','itemid',33422),(20519,'events','itemid',33421),(20520,'history','itemid',33421),(20521,'history_log','itemid',33421),(20522,'history_str','itemid',33421),(20523,'history_text','itemid',33421),(20524,'history_uint','itemid',33421),(20525,'trends','itemid',33421),(20526,'trends_uint','itemid',33421),(20527,'events','itemid',33419),(20528,'history','itemid',33419),(20529,'history_log','itemid',33419),(20530,'history_str','itemid',33419),(20531,'history_text','itemid',33419),(20532,'history_uint','itemid',33419),(20533,'trends','itemid',33419),(20534,'trends_uint','itemid',33419),(20535,'events','itemid',33412),(20536,'history','itemid',33412),(20537,'history_log','itemid',33412),(20538,'history_str','itemid',33412),(20539,'history_text','itemid',33412),(20540,'history_uint','itemid',33412),(20541,'trends','itemid',33412),(20542,'trends_uint','itemid',33412),(20543,'events','itemid',33418),(20544,'history','itemid',33418),(20545,'history_log','itemid',33418),(20546,'history_str','itemid',33418),(20547,'history_text','itemid',33418),(20548,'history_uint','itemid',33418),(20549,'trends','itemid',33418),(20550,'trends_uint','itemid',33418),(20551,'events','itemid',33417),(20552,'history','itemid',33417),(20553,'history_log','itemid',33417),(20554,'history_str','itemid',33417),(20555,'history_text','itemid',33417),(20556,'history_uint','itemid',33417),(20557,'trends','itemid',33417),(20558,'trends_uint','itemid',33417),(20559,'events','itemid',33416),(20560,'history','itemid',33416),(20561,'history_log','itemid',33416),(20562,'history_str','itemid',33416),(20563,'history_text','itemid',33416),(20564,'history_uint','itemid',33416),(20565,'trends','itemid',33416),(20566,'trends_uint','itemid',33416),(20567,'events','itemid',33415),(20568,'history','itemid',33415),(20569,'history_log','itemid',33415),(20570,'history_str','itemid',33415),(20571,'history_text','itemid',33415),(20572,'history_uint','itemid',33415),(20573,'trends','itemid',33415),(20574,'trends_uint','itemid',33415),(20575,'events','itemid',33414),(20576,'history','itemid',33414),(20577,'history_log','itemid',33414),(20578,'history_str','itemid',33414),(20579,'history_text','itemid',33414),(20580,'history_uint','itemid',33414),(20581,'trends','itemid',33414),(20582,'trends_uint','itemid',33414),(20583,'events','itemid',33413),(20584,'history','itemid',33413),(20585,'history_log','itemid',33413),(20586,'history_str','itemid',33413),(20587,'history_text','itemid',33413),(20588,'history_uint','itemid',33413),(20589,'trends','itemid',33413),(20590,'trends_uint','itemid',33413),(20591,'events','itemid',33464),(20592,'history','itemid',33464),(20593,'history_log','itemid',33464),(20594,'history_str','itemid',33464),(20595,'history_text','itemid',33464),(20596,'history_uint','itemid',33464),(20597,'trends','itemid',33464),(20598,'trends_uint','itemid',33464),(20599,'events','itemid',33691),(20600,'history','itemid',33691),(20601,'history_log','itemid',33691),(20602,'history_str','itemid',33691),(20603,'history_text','itemid',33691),(20604,'history_uint','itemid',33691),(20605,'trends','itemid',33691),(20606,'trends_uint','itemid',33691),(20607,'events','itemid',33692),(20608,'history','itemid',33692),(20609,'history_log','itemid',33692),(20610,'history_str','itemid',33692),(20611,'history_text','itemid',33692),(20612,'history_uint','itemid',33692),(20613,'trends','itemid',33692),(20614,'trends_uint','itemid',33692),(20615,'events','itemid',33693),(20616,'history','itemid',33693),(20617,'history_log','itemid',33693),(20618,'history_str','itemid',33693),(20619,'history_text','itemid',33693),(20620,'history_uint','itemid',33693),(20621,'trends','itemid',33693),(20622,'trends_uint','itemid',33693),(20623,'events','itemid',33694),(20624,'history','itemid',33694),(20625,'history_log','itemid',33694),(20626,'history_str','itemid',33694),(20627,'history_text','itemid',33694),(20628,'history_uint','itemid',33694),(20629,'trends','itemid',33694),(20630,'trends_uint','itemid',33694),(20631,'events','itemid',42598),(20632,'history','itemid',42598),(20633,'history_log','itemid',42598),(20634,'history_str','itemid',42598),(20635,'history_text','itemid',42598),(20636,'history_uint','itemid',42598),(20637,'trends','itemid',42598),(20638,'trends_uint','itemid',42598),(20639,'events','itemid',42599),(20640,'history','itemid',42599),(20641,'history_log','itemid',42599),(20642,'history_str','itemid',42599),(20643,'history_text','itemid',42599),(20644,'history_uint','itemid',42599),(20645,'trends','itemid',42599),(20646,'trends_uint','itemid',42599),(20647,'events','itemid',42600),(20648,'history','itemid',42600),(20649,'history_log','itemid',42600),(20650,'history_str','itemid',42600),(20651,'history_text','itemid',42600),(20652,'history_uint','itemid',42600),(20653,'trends','itemid',42600),(20654,'trends_uint','itemid',42600),(20655,'events','itemid',42601),(20656,'history','itemid',42601),(20657,'history_log','itemid',42601),(20658,'history_str','itemid',42601),(20659,'history_text','itemid',42601),(20660,'history_uint','itemid',42601),(20661,'trends','itemid',42601),(20662,'trends_uint','itemid',42601),(20663,'events','itemid',42602),(20664,'history','itemid',42602),(20665,'history_log','itemid',42602),(20666,'history_str','itemid',42602),(20667,'history_text','itemid',42602),(20668,'history_uint','itemid',42602),(20669,'trends','itemid',42602),(20670,'trends_uint','itemid',42602),(20671,'events','itemid',42603),(20672,'history','itemid',42603),(20673,'history_log','itemid',42603),(20674,'history_str','itemid',42603),(20675,'history_text','itemid',42603),(20676,'history_uint','itemid',42603),(20677,'trends','itemid',42603),(20678,'trends_uint','itemid',42603),(20679,'events','itemid',43887),(20680,'history','itemid',43887),(20681,'history_log','itemid',43887),(20682,'history_str','itemid',43887),(20683,'history_text','itemid',43887),(20684,'history_uint','itemid',43887),(20685,'trends','itemid',43887),(20686,'trends_uint','itemid',43887),(20687,'events','itemid',42604),(20688,'history','itemid',42604),(20689,'history_log','itemid',42604),(20690,'history_str','itemid',42604),(20691,'history_text','itemid',42604),(20692,'history_uint','itemid',42604),(20693,'trends','itemid',42604),(20694,'trends_uint','itemid',42604),(20695,'events','itemid',42605),(20696,'history','itemid',42605),(20697,'history_log','itemid',42605),(20698,'history_str','itemid',42605),(20699,'history_text','itemid',42605),(20700,'history_uint','itemid',42605),(20701,'trends','itemid',42605),(20702,'trends_uint','itemid',42605),(20703,'events','itemid',42607),(20704,'history','itemid',42607),(20705,'history_log','itemid',42607),(20706,'history_str','itemid',42607),(20707,'history_text','itemid',42607),(20708,'history_uint','itemid',42607),(20709,'trends','itemid',42607),(20710,'trends_uint','itemid',42607),(20711,'events','itemid',42606),(20712,'history','itemid',42606),(20713,'history_log','itemid',42606),(20714,'history_str','itemid',42606),(20715,'history_text','itemid',42606),(20716,'history_uint','itemid',42606),(20717,'trends','itemid',42606),(20718,'trends_uint','itemid',42606),(20719,'events','itemid',42608),(20720,'history','itemid',42608),(20721,'history_log','itemid',42608),(20722,'history_str','itemid',42608),(20723,'history_text','itemid',42608),(20724,'history_uint','itemid',42608),(20725,'trends','itemid',42608),(20726,'trends_uint','itemid',42608),(20727,'events','itemid',36541),(20728,'history','itemid',36541),(20729,'history_log','itemid',36541),(20730,'history_str','itemid',36541),(20731,'history_text','itemid',36541),(20732,'history_uint','itemid',36541),(20733,'trends','itemid',36541),(20734,'trends_uint','itemid',36541),(20735,'events','itemid',36542),(20736,'history','itemid',36542),(20737,'history_log','itemid',36542),(20738,'history_str','itemid',36542),(20739,'history_text','itemid',36542),(20740,'history_uint','itemid',36542),(20741,'trends','itemid',36542),(20742,'trends_uint','itemid',36542),(20743,'events','itemid',36543),(20744,'history','itemid',36543),(20745,'history_log','itemid',36543),(20746,'history_str','itemid',36543),(20747,'history_text','itemid',36543),(20748,'history_uint','itemid',36543),(20749,'trends','itemid',36543),(20750,'trends_uint','itemid',36543),(20751,'events','itemid',36544),(20752,'history','itemid',36544),(20753,'history_log','itemid',36544),(20754,'history_str','itemid',36544),(20755,'history_text','itemid',36544),(20756,'history_uint','itemid',36544),(20757,'trends','itemid',36544),(20758,'trends_uint','itemid',36544),(20759,'events','itemid',43896),(20760,'history','itemid',43896),(20761,'history_log','itemid',43896),(20762,'history_str','itemid',43896),(20763,'history_text','itemid',43896),(20764,'history_uint','itemid',43896),(20765,'trends','itemid',43896),(20766,'trends_uint','itemid',43896),(20767,'events','itemid',36545),(20768,'history','itemid',36545),(20769,'history_log','itemid',36545),(20770,'history_str','itemid',36545),(20771,'history_text','itemid',36545),(20772,'history_uint','itemid',36545),(20773,'trends','itemid',36545),(20774,'trends_uint','itemid',36545),(20775,'events','itemid',36546),(20776,'history','itemid',36546),(20777,'history_log','itemid',36546),(20778,'history_str','itemid',36546),(20779,'history_text','itemid',36546),(20780,'history_uint','itemid',36546),(20781,'trends','itemid',36546),(20782,'trends_uint','itemid',36546),(20783,'events','itemid',36550),(20784,'history','itemid',36550),(20785,'history_log','itemid',36550),(20786,'history_str','itemid',36550),(20787,'history_text','itemid',36550),(20788,'history_uint','itemid',36550),(20789,'trends','itemid',36550),(20790,'trends_uint','itemid',36550),(20791,'events','itemid',36547),(20792,'history','itemid',36547),(20793,'history_log','itemid',36547),(20794,'history_str','itemid',36547),(20795,'history_text','itemid',36547),(20796,'history_uint','itemid',36547),(20797,'trends','itemid',36547),(20798,'trends_uint','itemid',36547),(20799,'events','itemid',36548),(20800,'history','itemid',36548),(20801,'history_log','itemid',36548),(20802,'history_str','itemid',36548),(20803,'history_text','itemid',36548),(20804,'history_uint','itemid',36548),(20805,'trends','itemid',36548),(20806,'trends_uint','itemid',36548),(20807,'events','itemid',36549),(20808,'history','itemid',36549),(20809,'history_log','itemid',36549),(20810,'history_str','itemid',36549),(20811,'history_text','itemid',36549),(20812,'history_uint','itemid',36549),(20813,'trends','itemid',36549),(20814,'trends_uint','itemid',36549),(20815,'events','itemid',36551),(20816,'history','itemid',36551),(20817,'history_log','itemid',36551),(20818,'history_str','itemid',36551),(20819,'history_text','itemid',36551),(20820,'history_uint','itemid',36551),(20821,'trends','itemid',36551),(20822,'trends_uint','itemid',36551),(20823,'events','itemid',36552),(20824,'history','itemid',36552),(20825,'history_log','itemid',36552),(20826,'history_str','itemid',36552),(20827,'history_text','itemid',36552),(20828,'history_uint','itemid',36552),(20829,'trends','itemid',36552),(20830,'trends_uint','itemid',36552),(20831,'events','itemid',36598),(20832,'history','itemid',36598),(20833,'history_log','itemid',36598),(20834,'history_str','itemid',36598),(20835,'history_text','itemid',36598),(20836,'history_uint','itemid',36598),(20837,'trends','itemid',36598),(20838,'trends_uint','itemid',36598),(20839,'events','itemid',36599),(20840,'history','itemid',36599),(20841,'history_log','itemid',36599),(20842,'history_str','itemid',36599),(20843,'history_text','itemid',36599),(20844,'history_uint','itemid',36599),(20845,'trends','itemid',36599),(20846,'trends_uint','itemid',36599),(20847,'events','itemid',36600),(20848,'history','itemid',36600),(20849,'history_log','itemid',36600),(20850,'history_str','itemid',36600),(20851,'history_text','itemid',36600),(20852,'history_uint','itemid',36600),(20853,'trends','itemid',36600),(20854,'trends_uint','itemid',36600),(20855,'events','itemid',36601),(20856,'history','itemid',36601),(20857,'history_log','itemid',36601),(20858,'history_str','itemid',36601),(20859,'history_text','itemid',36601),(20860,'history_uint','itemid',36601),(20861,'trends','itemid',36601),(20862,'trends_uint','itemid',36601),(20863,'events','itemid',43897),(20864,'history','itemid',43897),(20865,'history_log','itemid',43897),(20866,'history_str','itemid',43897),(20867,'history_text','itemid',43897),(20868,'history_uint','itemid',43897),(20869,'trends','itemid',43897),(20870,'trends_uint','itemid',43897),(20871,'events','itemid',36602),(20872,'history','itemid',36602),(20873,'history_log','itemid',36602),(20874,'history_str','itemid',36602),(20875,'history_text','itemid',36602),(20876,'history_uint','itemid',36602),(20877,'trends','itemid',36602),(20878,'trends_uint','itemid',36602),(20879,'events','itemid',36603),(20880,'history','itemid',36603),(20881,'history_log','itemid',36603),(20882,'history_str','itemid',36603),(20883,'history_text','itemid',36603),(20884,'history_uint','itemid',36603),(20885,'trends','itemid',36603),(20886,'trends_uint','itemid',36603),(20887,'events','itemid',36607),(20888,'history','itemid',36607),(20889,'history_log','itemid',36607),(20890,'history_str','itemid',36607),(20891,'history_text','itemid',36607),(20892,'history_uint','itemid',36607),(20893,'trends','itemid',36607),(20894,'trends_uint','itemid',36607),(20895,'events','itemid',36604),(20896,'history','itemid',36604),(20897,'history_log','itemid',36604),(20898,'history_str','itemid',36604),(20899,'history_text','itemid',36604),(20900,'history_uint','itemid',36604),(20901,'trends','itemid',36604),(20902,'trends_uint','itemid',36604),(20903,'events','itemid',36605),(20904,'history','itemid',36605),(20905,'history_log','itemid',36605),(20906,'history_str','itemid',36605),(20907,'history_text','itemid',36605),(20908,'history_uint','itemid',36605),(20909,'trends','itemid',36605),(20910,'trends_uint','itemid',36605),(20911,'events','itemid',36606),(20912,'history','itemid',36606),(20913,'history_log','itemid',36606),(20914,'history_str','itemid',36606),(20915,'history_text','itemid',36606),(20916,'history_uint','itemid',36606),(20917,'trends','itemid',36606),(20918,'trends_uint','itemid',36606),(20919,'events','itemid',36608),(20920,'history','itemid',36608),(20921,'history_log','itemid',36608),(20922,'history_str','itemid',36608),(20923,'history_text','itemid',36608),(20924,'history_uint','itemid',36608),(20925,'trends','itemid',36608),(20926,'trends_uint','itemid',36608),(20927,'events','itemid',36609),(20928,'history','itemid',36609),(20929,'history_log','itemid',36609),(20930,'history_str','itemid',36609),(20931,'history_text','itemid',36609),(20932,'history_uint','itemid',36609),(20933,'trends','itemid',36609),(20934,'trends_uint','itemid',36609),(20935,'events','itemid',36655),(20936,'history','itemid',36655),(20937,'history_log','itemid',36655),(20938,'history_str','itemid',36655),(20939,'history_text','itemid',36655),(20940,'history_uint','itemid',36655),(20941,'trends','itemid',36655),(20942,'trends_uint','itemid',36655),(20943,'events','itemid',36656),(20944,'history','itemid',36656),(20945,'history_log','itemid',36656),(20946,'history_str','itemid',36656),(20947,'history_text','itemid',36656),(20948,'history_uint','itemid',36656),(20949,'trends','itemid',36656),(20950,'trends_uint','itemid',36656),(20951,'events','itemid',36657),(20952,'history','itemid',36657),(20953,'history_log','itemid',36657),(20954,'history_str','itemid',36657),(20955,'history_text','itemid',36657),(20956,'history_uint','itemid',36657),(20957,'trends','itemid',36657),(20958,'trends_uint','itemid',36657),(20959,'events','itemid',36658),(20960,'history','itemid',36658),(20961,'history_log','itemid',36658),(20962,'history_str','itemid',36658),(20963,'history_text','itemid',36658),(20964,'history_uint','itemid',36658),(20965,'trends','itemid',36658),(20966,'trends_uint','itemid',36658),(20967,'events','itemid',43898),(20968,'history','itemid',43898),(20969,'history_log','itemid',43898),(20970,'history_str','itemid',43898),(20971,'history_text','itemid',43898),(20972,'history_uint','itemid',43898),(20973,'trends','itemid',43898),(20974,'trends_uint','itemid',43898),(20975,'events','itemid',36659),(20976,'history','itemid',36659),(20977,'history_log','itemid',36659),(20978,'history_str','itemid',36659),(20979,'history_text','itemid',36659),(20980,'history_uint','itemid',36659),(20981,'trends','itemid',36659),(20982,'trends_uint','itemid',36659),(20983,'events','itemid',36660),(20984,'history','itemid',36660),(20985,'history_log','itemid',36660),(20986,'history_str','itemid',36660),(20987,'history_text','itemid',36660),(20988,'history_uint','itemid',36660),(20989,'trends','itemid',36660),(20990,'trends_uint','itemid',36660),(20991,'events','itemid',36664),(20992,'history','itemid',36664),(20993,'history_log','itemid',36664),(20994,'history_str','itemid',36664),(20995,'history_text','itemid',36664),(20996,'history_uint','itemid',36664),(20997,'trends','itemid',36664),(20998,'trends_uint','itemid',36664),(20999,'events','itemid',36661),(21000,'history','itemid',36661),(21001,'history_log','itemid',36661),(21002,'history_str','itemid',36661),(21003,'history_text','itemid',36661),(21004,'history_uint','itemid',36661),(21005,'trends','itemid',36661),(21006,'trends_uint','itemid',36661),(21007,'events','itemid',36662),(21008,'history','itemid',36662),(21009,'history_log','itemid',36662),(21010,'history_str','itemid',36662),(21011,'history_text','itemid',36662),(21012,'history_uint','itemid',36662),(21013,'trends','itemid',36662),(21014,'trends_uint','itemid',36662),(21015,'events','itemid',36663),(21016,'history','itemid',36663),(21017,'history_log','itemid',36663),(21018,'history_str','itemid',36663),(21019,'history_text','itemid',36663),(21020,'history_uint','itemid',36663),(21021,'trends','itemid',36663),(21022,'trends_uint','itemid',36663),(21023,'events','itemid',36665),(21024,'history','itemid',36665),(21025,'history_log','itemid',36665),(21026,'history_str','itemid',36665),(21027,'history_text','itemid',36665),(21028,'history_uint','itemid',36665),(21029,'trends','itemid',36665),(21030,'trends_uint','itemid',36665),(21031,'events','itemid',36666),(21032,'history','itemid',36666),(21033,'history_log','itemid',36666),(21034,'history_str','itemid',36666),(21035,'history_text','itemid',36666),(21036,'history_uint','itemid',36666),(21037,'trends','itemid',36666),(21038,'trends_uint','itemid',36666),(21039,'events','itemid',36712),(21040,'history','itemid',36712),(21041,'history_log','itemid',36712),(21042,'history_str','itemid',36712),(21043,'history_text','itemid',36712),(21044,'history_uint','itemid',36712),(21045,'trends','itemid',36712),(21046,'trends_uint','itemid',36712),(21047,'events','itemid',36713),(21048,'history','itemid',36713),(21049,'history_log','itemid',36713),(21050,'history_str','itemid',36713),(21051,'history_text','itemid',36713),(21052,'history_uint','itemid',36713),(21053,'trends','itemid',36713),(21054,'trends_uint','itemid',36713),(21055,'events','itemid',36714),(21056,'history','itemid',36714),(21057,'history_log','itemid',36714),(21058,'history_str','itemid',36714),(21059,'history_text','itemid',36714),(21060,'history_uint','itemid',36714),(21061,'trends','itemid',36714),(21062,'trends_uint','itemid',36714),(21063,'events','itemid',36715),(21064,'history','itemid',36715),(21065,'history_log','itemid',36715),(21066,'history_str','itemid',36715),(21067,'history_text','itemid',36715),(21068,'history_uint','itemid',36715),(21069,'trends','itemid',36715),(21070,'trends_uint','itemid',36715),(21071,'events','itemid',43899),(21072,'history','itemid',43899),(21073,'history_log','itemid',43899),(21074,'history_str','itemid',43899),(21075,'history_text','itemid',43899),(21076,'history_uint','itemid',43899),(21077,'trends','itemid',43899),(21078,'trends_uint','itemid',43899),(21079,'events','itemid',36716),(21080,'history','itemid',36716),(21081,'history_log','itemid',36716),(21082,'history_str','itemid',36716),(21083,'history_text','itemid',36716),(21084,'history_uint','itemid',36716),(21085,'trends','itemid',36716),(21086,'trends_uint','itemid',36716),(21087,'events','itemid',36717),(21088,'history','itemid',36717),(21089,'history_log','itemid',36717),(21090,'history_str','itemid',36717),(21091,'history_text','itemid',36717),(21092,'history_uint','itemid',36717),(21093,'trends','itemid',36717),(21094,'trends_uint','itemid',36717),(21095,'events','itemid',36721),(21096,'history','itemid',36721),(21097,'history_log','itemid',36721),(21098,'history_str','itemid',36721),(21099,'history_text','itemid',36721),(21100,'history_uint','itemid',36721),(21101,'trends','itemid',36721),(21102,'trends_uint','itemid',36721),(21103,'events','itemid',36718),(21104,'history','itemid',36718),(21105,'history_log','itemid',36718),(21106,'history_str','itemid',36718),(21107,'history_text','itemid',36718),(21108,'history_uint','itemid',36718),(21109,'trends','itemid',36718),(21110,'trends_uint','itemid',36718),(21111,'events','itemid',36719),(21112,'history','itemid',36719),(21113,'history_log','itemid',36719),(21114,'history_str','itemid',36719),(21115,'history_text','itemid',36719),(21116,'history_uint','itemid',36719),(21117,'trends','itemid',36719),(21118,'trends_uint','itemid',36719),(21119,'events','itemid',36720),(21120,'history','itemid',36720),(21121,'history_log','itemid',36720),(21122,'history_str','itemid',36720),(21123,'history_text','itemid',36720),(21124,'history_uint','itemid',36720),(21125,'trends','itemid',36720),(21126,'trends_uint','itemid',36720),(21127,'events','itemid',36722),(21128,'history','itemid',36722),(21129,'history_log','itemid',36722),(21130,'history_str','itemid',36722),(21131,'history_text','itemid',36722),(21132,'history_uint','itemid',36722),(21133,'trends','itemid',36722),(21134,'trends_uint','itemid',36722),(21135,'events','itemid',36723),(21136,'history','itemid',36723),(21137,'history_log','itemid',36723),(21138,'history_str','itemid',36723),(21139,'history_text','itemid',36723),(21140,'history_uint','itemid',36723),(21141,'trends','itemid',36723),(21142,'trends_uint','itemid',36723),(21143,'events','itemid',36795),(21144,'history','itemid',36795),(21145,'history_log','itemid',36795),(21146,'history_str','itemid',36795),(21147,'history_text','itemid',36795),(21148,'history_uint','itemid',36795),(21149,'trends','itemid',36795),(21150,'trends_uint','itemid',36795),(21151,'events','itemid',36796),(21152,'history','itemid',36796),(21153,'history_log','itemid',36796),(21154,'history_str','itemid',36796),(21155,'history_text','itemid',36796),(21156,'history_uint','itemid',36796),(21157,'trends','itemid',36796),(21158,'trends_uint','itemid',36796),(21159,'events','itemid',36811),(21160,'history','itemid',36811),(21161,'history_log','itemid',36811),(21162,'history_str','itemid',36811),(21163,'history_text','itemid',36811),(21164,'history_uint','itemid',36811),(21165,'trends','itemid',36811),(21166,'trends_uint','itemid',36811),(21167,'events','itemid',36810),(21168,'history','itemid',36810),(21169,'history_log','itemid',36810),(21170,'history_str','itemid',36810),(21171,'history_text','itemid',36810),(21172,'history_uint','itemid',36810),(21173,'trends','itemid',36810),(21174,'trends_uint','itemid',36810),(21175,'events','itemid',36809),(21176,'history','itemid',36809),(21177,'history_log','itemid',36809),(21178,'history_str','itemid',36809),(21179,'history_text','itemid',36809),(21180,'history_uint','itemid',36809),(21181,'trends','itemid',36809),(21182,'trends_uint','itemid',36809),(21183,'events','itemid',36808),(21184,'history','itemid',36808),(21185,'history_log','itemid',36808),(21186,'history_str','itemid',36808),(21187,'history_text','itemid',36808),(21188,'history_uint','itemid',36808),(21189,'trends','itemid',36808),(21190,'trends_uint','itemid',36808),(21191,'events','itemid',36807),(21192,'history','itemid',36807),(21193,'history_log','itemid',36807),(21194,'history_str','itemid',36807),(21195,'history_text','itemid',36807),(21196,'history_uint','itemid',36807),(21197,'trends','itemid',36807),(21198,'trends_uint','itemid',36807),(21199,'events','itemid',36806),(21200,'history','itemid',36806),(21201,'history_log','itemid',36806),(21202,'history_str','itemid',36806),(21203,'history_text','itemid',36806),(21204,'history_uint','itemid',36806),(21205,'trends','itemid',36806),(21206,'trends_uint','itemid',36806),(21207,'events','itemid',36805),(21208,'history','itemid',36805),(21209,'history_log','itemid',36805),(21210,'history_str','itemid',36805),(21211,'history_text','itemid',36805),(21212,'history_uint','itemid',36805),(21213,'trends','itemid',36805),(21214,'trends_uint','itemid',36805),(21215,'events','itemid',36804),(21216,'history','itemid',36804),(21217,'history_log','itemid',36804),(21218,'history_str','itemid',36804),(21219,'history_text','itemid',36804),(21220,'history_uint','itemid',36804),(21221,'trends','itemid',36804),(21222,'trends_uint','itemid',36804),(21223,'events','itemid',36803),(21224,'history','itemid',36803),(21225,'history_log','itemid',36803),(21226,'history_str','itemid',36803),(21227,'history_text','itemid',36803),(21228,'history_uint','itemid',36803),(21229,'trends','itemid',36803),(21230,'trends_uint','itemid',36803),(21231,'events','itemid',36802),(21232,'history','itemid',36802),(21233,'history_log','itemid',36802),(21234,'history_str','itemid',36802),(21235,'history_text','itemid',36802),(21236,'history_uint','itemid',36802),(21237,'trends','itemid',36802),(21238,'trends_uint','itemid',36802),(21239,'events','itemid',36800),(21240,'history','itemid',36800),(21241,'history_log','itemid',36800),(21242,'history_str','itemid',36800),(21243,'history_text','itemid',36800),(21244,'history_uint','itemid',36800),(21245,'trends','itemid',36800),(21246,'trends_uint','itemid',36800),(21247,'events','itemid',36801),(21248,'history','itemid',36801),(21249,'history_log','itemid',36801),(21250,'history_str','itemid',36801),(21251,'history_text','itemid',36801),(21252,'history_uint','itemid',36801),(21253,'trends','itemid',36801),(21254,'trends_uint','itemid',36801),(21255,'events','itemid',36799),(21256,'history','itemid',36799),(21257,'history_log','itemid',36799),(21258,'history_str','itemid',36799),(21259,'history_text','itemid',36799),(21260,'history_uint','itemid',36799),(21261,'trends','itemid',36799),(21262,'trends_uint','itemid',36799),(21263,'events','itemid',36798),(21264,'history','itemid',36798),(21265,'history_log','itemid',36798),(21266,'history_str','itemid',36798),(21267,'history_text','itemid',36798),(21268,'history_uint','itemid',36798),(21269,'trends','itemid',36798),(21270,'trends_uint','itemid',36798),(21271,'events','itemid',36797),(21272,'history','itemid',36797),(21273,'history_log','itemid',36797),(21274,'history_str','itemid',36797),(21275,'history_text','itemid',36797),(21276,'history_uint','itemid',36797),(21277,'trends','itemid',36797),(21278,'trends_uint','itemid',36797),(21279,'events','itemid',36812),(21280,'history','itemid',36812),(21281,'history_log','itemid',36812),(21282,'history_str','itemid',36812),(21283,'history_text','itemid',36812),(21284,'history_uint','itemid',36812),(21285,'trends','itemid',36812),(21286,'trends_uint','itemid',36812),(21287,'events','itemid',39829),(21288,'history','itemid',39829),(21289,'history_log','itemid',39829),(21290,'history_str','itemid',39829),(21291,'history_text','itemid',39829),(21292,'history_uint','itemid',39829),(21293,'trends','itemid',39829),(21294,'trends_uint','itemid',39829),(21295,'events','itemid',39841),(21296,'history','itemid',39841),(21297,'history_log','itemid',39841),(21298,'history_str','itemid',39841),(21299,'history_text','itemid',39841),(21300,'history_uint','itemid',39841),(21301,'trends','itemid',39841),(21302,'trends_uint','itemid',39841),(21303,'events','itemid',39849),(21304,'history','itemid',39849),(21305,'history_log','itemid',39849),(21306,'history_str','itemid',39849),(21307,'history_text','itemid',39849),(21308,'history_uint','itemid',39849),(21309,'trends','itemid',39849),(21310,'trends_uint','itemid',39849),(21311,'events','itemid',39848),(21312,'history','itemid',39848),(21313,'history_log','itemid',39848),(21314,'history_str','itemid',39848),(21315,'history_text','itemid',39848),(21316,'history_uint','itemid',39848),(21317,'trends','itemid',39848),(21318,'trends_uint','itemid',39848),(21319,'events','itemid',39847),(21320,'history','itemid',39847),(21321,'history_log','itemid',39847),(21322,'history_str','itemid',39847),(21323,'history_text','itemid',39847),(21324,'history_uint','itemid',39847),(21325,'trends','itemid',39847),(21326,'trends_uint','itemid',39847),(21327,'events','itemid',39846),(21328,'history','itemid',39846),(21329,'history_log','itemid',39846),(21330,'history_str','itemid',39846),(21331,'history_text','itemid',39846),(21332,'history_uint','itemid',39846),(21333,'trends','itemid',39846),(21334,'trends_uint','itemid',39846),(21335,'events','itemid',39845),(21336,'history','itemid',39845),(21337,'history_log','itemid',39845),(21338,'history_str','itemid',39845),(21339,'history_text','itemid',39845),(21340,'history_uint','itemid',39845),(21341,'trends','itemid',39845),(21342,'trends_uint','itemid',39845),(21343,'events','itemid',39844),(21344,'history','itemid',39844),(21345,'history_log','itemid',39844),(21346,'history_str','itemid',39844),(21347,'history_text','itemid',39844),(21348,'history_uint','itemid',39844),(21349,'trends','itemid',39844),(21350,'trends_uint','itemid',39844),(21351,'events','itemid',39843),(21352,'history','itemid',39843),(21353,'history_log','itemid',39843),(21354,'history_str','itemid',39843),(21355,'history_text','itemid',39843),(21356,'history_uint','itemid',39843),(21357,'trends','itemid',39843),(21358,'trends_uint','itemid',39843),(21359,'events','itemid',39827),(21360,'history','itemid',39827),(21361,'history_log','itemid',39827),(21362,'history_str','itemid',39827),(21363,'history_text','itemid',39827),(21364,'history_uint','itemid',39827),(21365,'trends','itemid',39827),(21366,'trends_uint','itemid',39827),(21367,'events','itemid',39842),(21368,'history','itemid',39842),(21369,'history_log','itemid',39842),(21370,'history_str','itemid',39842),(21371,'history_text','itemid',39842),(21372,'history_uint','itemid',39842),(21373,'trends','itemid',39842),(21374,'trends_uint','itemid',39842),(21375,'events','itemid',39839),(21376,'history','itemid',39839),(21377,'history_log','itemid',39839),(21378,'history_str','itemid',39839),(21379,'history_text','itemid',39839),(21380,'history_uint','itemid',39839),(21381,'trends','itemid',39839),(21382,'trends_uint','itemid',39839),(21383,'events','itemid',39840),(21384,'history','itemid',39840),(21385,'history_log','itemid',39840),(21386,'history_str','itemid',39840),(21387,'history_text','itemid',39840),(21388,'history_uint','itemid',39840),(21389,'trends','itemid',39840),(21390,'trends_uint','itemid',39840),(21391,'events','itemid',39830),(21392,'history','itemid',39830),(21393,'history_log','itemid',39830),(21394,'history_str','itemid',39830),(21395,'history_text','itemid',39830),(21396,'history_uint','itemid',39830),(21397,'trends','itemid',39830),(21398,'trends_uint','itemid',39830),(21399,'events','itemid',39838),(21400,'history','itemid',39838),(21401,'history_log','itemid',39838),(21402,'history_str','itemid',39838),(21403,'history_text','itemid',39838),(21404,'history_uint','itemid',39838),(21405,'trends','itemid',39838),(21406,'trends_uint','itemid',39838),(21407,'events','itemid',39837),(21408,'history','itemid',39837),(21409,'history_log','itemid',39837),(21410,'history_str','itemid',39837),(21411,'history_text','itemid',39837),(21412,'history_uint','itemid',39837),(21413,'trends','itemid',39837),(21414,'trends_uint','itemid',39837),(21415,'events','itemid',39836),(21416,'history','itemid',39836),(21417,'history_log','itemid',39836),(21418,'history_str','itemid',39836),(21419,'history_text','itemid',39836),(21420,'history_uint','itemid',39836),(21421,'trends','itemid',39836),(21422,'trends_uint','itemid',39836),(21423,'events','itemid',39835),(21424,'history','itemid',39835),(21425,'history_log','itemid',39835),(21426,'history_str','itemid',39835),(21427,'history_text','itemid',39835),(21428,'history_uint','itemid',39835),(21429,'trends','itemid',39835),(21430,'trends_uint','itemid',39835),(21431,'events','itemid',39834),(21432,'history','itemid',39834),(21433,'history_log','itemid',39834),(21434,'history_str','itemid',39834),(21435,'history_text','itemid',39834),(21436,'history_uint','itemid',39834),(21437,'trends','itemid',39834),(21438,'trends_uint','itemid',39834),(21439,'events','itemid',39833),(21440,'history','itemid',39833),(21441,'history_log','itemid',39833),(21442,'history_str','itemid',39833),(21443,'history_text','itemid',39833),(21444,'history_uint','itemid',39833),(21445,'trends','itemid',39833),(21446,'trends_uint','itemid',39833),(21447,'events','itemid',39832),(21448,'history','itemid',39832),(21449,'history_log','itemid',39832),(21450,'history_str','itemid',39832),(21451,'history_text','itemid',39832),(21452,'history_uint','itemid',39832),(21453,'trends','itemid',39832),(21454,'trends_uint','itemid',39832),(21455,'events','itemid',39831),(21456,'history','itemid',39831),(21457,'history_log','itemid',39831),(21458,'history_str','itemid',39831),(21459,'history_text','itemid',39831),(21460,'history_uint','itemid',39831),(21461,'trends','itemid',39831),(21462,'trends_uint','itemid',39831),(21463,'events','itemid',39850),(21464,'history','itemid',39850),(21465,'history_log','itemid',39850),(21466,'history_str','itemid',39850),(21467,'history_text','itemid',39850),(21468,'history_uint','itemid',39850),(21469,'trends','itemid',39850),(21470,'trends_uint','itemid',39850),(21471,'events','itemid',39877),(21472,'history','itemid',39877),(21473,'history_log','itemid',39877),(21474,'history_str','itemid',39877),(21475,'history_text','itemid',39877),(21476,'history_uint','itemid',39877),(21477,'trends','itemid',39877),(21478,'trends_uint','itemid',39877),(21479,'events','itemid',39878),(21480,'history','itemid',39878),(21481,'history_log','itemid',39878),(21482,'history_str','itemid',39878),(21483,'history_text','itemid',39878),(21484,'history_uint','itemid',39878),(21485,'trends','itemid',39878),(21486,'trends_uint','itemid',39878),(21487,'events','itemid',39879),(21488,'history','itemid',39879),(21489,'history_log','itemid',39879),(21490,'history_str','itemid',39879),(21491,'history_text','itemid',39879),(21492,'history_uint','itemid',39879),(21493,'trends','itemid',39879),(21494,'trends_uint','itemid',39879),(21495,'events','itemid',39880),(21496,'history','itemid',39880),(21497,'history_log','itemid',39880),(21498,'history_str','itemid',39880),(21499,'history_text','itemid',39880),(21500,'history_uint','itemid',39880),(21501,'trends','itemid',39880),(21502,'trends_uint','itemid',39880),(21503,'events','itemid',39881),(21504,'history','itemid',39881),(21505,'history_log','itemid',39881),(21506,'history_str','itemid',39881),(21507,'history_text','itemid',39881),(21508,'history_uint','itemid',39881),(21509,'trends','itemid',39881),(21510,'trends_uint','itemid',39881),(21511,'events','itemid',39876),(21512,'history','itemid',39876),(21513,'history_log','itemid',39876),(21514,'history_str','itemid',39876),(21515,'history_text','itemid',39876),(21516,'history_uint','itemid',39876),(21517,'trends','itemid',39876),(21518,'trends_uint','itemid',39876),(21519,'events','itemid',39882),(21520,'history','itemid',39882),(21521,'history_log','itemid',39882),(21522,'history_str','itemid',39882),(21523,'history_text','itemid',39882),(21524,'history_uint','itemid',39882),(21525,'trends','itemid',39882),(21526,'trends_uint','itemid',39882),(21527,'events','itemid',39883),(21528,'history','itemid',39883),(21529,'history_log','itemid',39883),(21530,'history_str','itemid',39883),(21531,'history_text','itemid',39883),(21532,'history_uint','itemid',39883),(21533,'trends','itemid',39883),(21534,'trends_uint','itemid',39883),(21535,'events','itemid',39884),(21536,'history','itemid',39884),(21537,'history_log','itemid',39884),(21538,'history_str','itemid',39884),(21539,'history_text','itemid',39884),(21540,'history_uint','itemid',39884),(21541,'trends','itemid',39884),(21542,'trends_uint','itemid',39884),(21543,'events','itemid',39885),(21544,'history','itemid',39885),(21545,'history_log','itemid',39885),(21546,'history_str','itemid',39885),(21547,'history_text','itemid',39885),(21548,'history_uint','itemid',39885),(21549,'trends','itemid',39885),(21550,'trends_uint','itemid',39885),(21551,'events','itemid',39886),(21552,'history','itemid',39886),(21553,'history_log','itemid',39886),(21554,'history_str','itemid',39886),(21555,'history_text','itemid',39886),(21556,'history_uint','itemid',39886),(21557,'trends','itemid',39886),(21558,'trends_uint','itemid',39886),(21559,'events','itemid',39887),(21560,'history','itemid',39887),(21561,'history_log','itemid',39887),(21562,'history_str','itemid',39887),(21563,'history_text','itemid',39887),(21564,'history_uint','itemid',39887),(21565,'trends','itemid',39887),(21566,'trends_uint','itemid',39887),(21567,'events','itemid',39888),(21568,'history','itemid',39888),(21569,'history_log','itemid',39888),(21570,'history_str','itemid',39888),(21571,'history_text','itemid',39888),(21572,'history_uint','itemid',39888),(21573,'trends','itemid',39888),(21574,'trends_uint','itemid',39888),(21575,'events','itemid',39905),(21576,'history','itemid',39905),(21577,'history_log','itemid',39905),(21578,'history_str','itemid',39905),(21579,'history_text','itemid',39905),(21580,'history_uint','itemid',39905),(21581,'trends','itemid',39905),(21582,'trends_uint','itemid',39905),(21583,'events','itemid',39908),(21584,'history','itemid',39908),(21585,'history_log','itemid',39908),(21586,'history_str','itemid',39908),(21587,'history_text','itemid',39908),(21588,'history_uint','itemid',39908),(21589,'trends','itemid',39908),(21590,'trends_uint','itemid',39908),(21591,'events','itemid',39909),(21592,'history','itemid',39909),(21593,'history_log','itemid',39909),(21594,'history_str','itemid',39909),(21595,'history_text','itemid',39909),(21596,'history_uint','itemid',39909),(21597,'trends','itemid',39909),(21598,'trends_uint','itemid',39909),(21599,'events','itemid',39910),(21600,'history','itemid',39910),(21601,'history_log','itemid',39910),(21602,'history_str','itemid',39910),(21603,'history_text','itemid',39910),(21604,'history_uint','itemid',39910),(21605,'trends','itemid',39910),(21606,'trends_uint','itemid',39910),(21607,'events','itemid',39911),(21608,'history','itemid',39911),(21609,'history_log','itemid',39911),(21610,'history_str','itemid',39911),(21611,'history_text','itemid',39911),(21612,'history_uint','itemid',39911),(21613,'trends','itemid',39911),(21614,'trends_uint','itemid',39911),(21615,'events','itemid',39906),(21616,'history','itemid',39906),(21617,'history_log','itemid',39906),(21618,'history_str','itemid',39906),(21619,'history_text','itemid',39906),(21620,'history_uint','itemid',39906),(21621,'trends','itemid',39906),(21622,'trends_uint','itemid',39906),(21623,'events','itemid',39912),(21624,'history','itemid',39912),(21625,'history_log','itemid',39912),(21626,'history_str','itemid',39912),(21627,'history_text','itemid',39912),(21628,'history_uint','itemid',39912),(21629,'trends','itemid',39912),(21630,'trends_uint','itemid',39912),(21631,'events','itemid',39913),(21632,'history','itemid',39913),(21633,'history_log','itemid',39913),(21634,'history_str','itemid',39913),(21635,'history_text','itemid',39913),(21636,'history_uint','itemid',39913),(21637,'trends','itemid',39913),(21638,'trends_uint','itemid',39913),(21639,'events','itemid',39914),(21640,'history','itemid',39914),(21641,'history_log','itemid',39914),(21642,'history_str','itemid',39914),(21643,'history_text','itemid',39914),(21644,'history_uint','itemid',39914),(21645,'trends','itemid',39914),(21646,'trends_uint','itemid',39914),(21647,'events','itemid',39915),(21648,'history','itemid',39915),(21649,'history_log','itemid',39915),(21650,'history_str','itemid',39915),(21651,'history_text','itemid',39915),(21652,'history_uint','itemid',39915),(21653,'trends','itemid',39915),(21654,'trends_uint','itemid',39915),(21655,'events','itemid',39916),(21656,'history','itemid',39916),(21657,'history_log','itemid',39916),(21658,'history_str','itemid',39916),(21659,'history_text','itemid',39916),(21660,'history_uint','itemid',39916),(21661,'trends','itemid',39916),(21662,'trends_uint','itemid',39916),(21663,'events','itemid',39907),(21664,'history','itemid',39907),(21665,'history_log','itemid',39907),(21666,'history_str','itemid',39907),(21667,'history_text','itemid',39907),(21668,'history_uint','itemid',39907),(21669,'trends','itemid',39907),(21670,'trends_uint','itemid',39907),(21671,'events','itemid',39937),(21672,'history','itemid',39937),(21673,'history_log','itemid',39937),(21674,'history_str','itemid',39937),(21675,'history_text','itemid',39937),(21676,'history_uint','itemid',39937),(21677,'trends','itemid',39937),(21678,'trends_uint','itemid',39937),(21679,'events','itemid',39938),(21680,'history','itemid',39938),(21681,'history_log','itemid',39938),(21682,'history_str','itemid',39938),(21683,'history_text','itemid',39938),(21684,'history_uint','itemid',39938),(21685,'trends','itemid',39938),(21686,'trends_uint','itemid',39938),(21687,'events','itemid',39939),(21688,'history','itemid',39939),(21689,'history_log','itemid',39939),(21690,'history_str','itemid',39939),(21691,'history_text','itemid',39939),(21692,'history_uint','itemid',39939),(21693,'trends','itemid',39939),(21694,'trends_uint','itemid',39939),(21695,'events','itemid',39998),(21696,'history','itemid',39998),(21697,'history_log','itemid',39998),(21698,'history_str','itemid',39998),(21699,'history_text','itemid',39998),(21700,'history_uint','itemid',39998),(21701,'trends','itemid',39998),(21702,'trends_uint','itemid',39998),(21703,'events','itemid',39990),(21704,'history','itemid',39990),(21705,'history_log','itemid',39990),(21706,'history_str','itemid',39990),(21707,'history_text','itemid',39990),(21708,'history_uint','itemid',39990),(21709,'trends','itemid',39990),(21710,'trends_uint','itemid',39990),(21711,'events','itemid',39988),(21712,'history','itemid',39988),(21713,'history_log','itemid',39988),(21714,'history_str','itemid',39988),(21715,'history_text','itemid',39988),(21716,'history_uint','itemid',39988),(21717,'trends','itemid',39988),(21718,'trends_uint','itemid',39988),(21719,'events','itemid',39986),(21720,'history','itemid',39986),(21721,'history_log','itemid',39986),(21722,'history_str','itemid',39986),(21723,'history_text','itemid',39986),(21724,'history_uint','itemid',39986),(21725,'trends','itemid',39986),(21726,'trends_uint','itemid',39986),(21727,'events','itemid',39987),(21728,'history','itemid',39987),(21729,'history_log','itemid',39987),(21730,'history_str','itemid',39987),(21731,'history_text','itemid',39987),(21732,'history_uint','itemid',39987),(21733,'trends','itemid',39987),(21734,'trends_uint','itemid',39987),(21735,'events','itemid',39978),(21736,'history','itemid',39978),(21737,'history_log','itemid',39978),(21738,'history_str','itemid',39978),(21739,'history_text','itemid',39978),(21740,'history_uint','itemid',39978),(21741,'trends','itemid',39978),(21742,'trends_uint','itemid',39978),(21743,'events','itemid',39989),(21744,'history','itemid',39989),(21745,'history_log','itemid',39989),(21746,'history_str','itemid',39989),(21747,'history_text','itemid',39989),(21748,'history_uint','itemid',39989),(21749,'trends','itemid',39989),(21750,'trends_uint','itemid',39989),(21751,'events','itemid',39999),(21752,'history','itemid',39999),(21753,'history_log','itemid',39999),(21754,'history_str','itemid',39999),(21755,'history_text','itemid',39999),(21756,'history_uint','itemid',39999),(21757,'trends','itemid',39999),(21758,'trends_uint','itemid',39999),(21759,'events','itemid',39991),(21760,'history','itemid',39991),(21761,'history_log','itemid',39991),(21762,'history_str','itemid',39991),(21763,'history_text','itemid',39991),(21764,'history_uint','itemid',39991),(21765,'trends','itemid',39991),(21766,'trends_uint','itemid',39991),(21767,'events','itemid',39992),(21768,'history','itemid',39992),(21769,'history_log','itemid',39992),(21770,'history_str','itemid',39992),(21771,'history_text','itemid',39992),(21772,'history_uint','itemid',39992),(21773,'trends','itemid',39992),(21774,'trends_uint','itemid',39992),(21775,'events','itemid',39993),(21776,'history','itemid',39993),(21777,'history_log','itemid',39993),(21778,'history_str','itemid',39993),(21779,'history_text','itemid',39993),(21780,'history_uint','itemid',39993),(21781,'trends','itemid',39993),(21782,'trends_uint','itemid',39993),(21783,'events','itemid',39994),(21784,'history','itemid',39994),(21785,'history_log','itemid',39994),(21786,'history_str','itemid',39994),(21787,'history_text','itemid',39994),(21788,'history_uint','itemid',39994),(21789,'trends','itemid',39994),(21790,'trends_uint','itemid',39994),(21791,'events','itemid',39995),(21792,'history','itemid',39995),(21793,'history_log','itemid',39995),(21794,'history_str','itemid',39995),(21795,'history_text','itemid',39995),(21796,'history_uint','itemid',39995),(21797,'trends','itemid',39995),(21798,'trends_uint','itemid',39995),(21799,'events','itemid',39996),(21800,'history','itemid',39996),(21801,'history_log','itemid',39996),(21802,'history_str','itemid',39996),(21803,'history_text','itemid',39996),(21804,'history_uint','itemid',39996),(21805,'trends','itemid',39996),(21806,'trends_uint','itemid',39996),(21807,'events','itemid',39997),(21808,'history','itemid',39997),(21809,'history_log','itemid',39997),(21810,'history_str','itemid',39997),(21811,'history_text','itemid',39997),(21812,'history_uint','itemid',39997),(21813,'trends','itemid',39997),(21814,'trends_uint','itemid',39997),(21815,'events','itemid',40010),(21816,'history','itemid',40010),(21817,'history_log','itemid',40010),(21818,'history_str','itemid',40010),(21819,'history_text','itemid',40010),(21820,'history_uint','itemid',40010),(21821,'trends','itemid',40010),(21822,'trends_uint','itemid',40010),(21823,'events','itemid',40011),(21824,'history','itemid',40011),(21825,'history_log','itemid',40011),(21826,'history_str','itemid',40011),(21827,'history_text','itemid',40011),(21828,'history_uint','itemid',40011),(21829,'trends','itemid',40011),(21830,'trends_uint','itemid',40011),(21831,'events','itemid',42700),(21832,'history','itemid',42700),(21833,'history_log','itemid',42700),(21834,'history_str','itemid',42700),(21835,'history_text','itemid',42700),(21836,'history_uint','itemid',42700),(21837,'trends','itemid',42700),(21838,'trends_uint','itemid',42700),(21839,'events','itemid',40016),(21840,'history','itemid',40016),(21841,'history_log','itemid',40016),(21842,'history_str','itemid',40016),(21843,'history_text','itemid',40016),(21844,'history_uint','itemid',40016),(21845,'trends','itemid',40016),(21846,'trends_uint','itemid',40016),(21847,'events','itemid',42701),(21848,'history','itemid',42701),(21849,'history_log','itemid',42701),(21850,'history_str','itemid',42701),(21851,'history_text','itemid',42701),(21852,'history_uint','itemid',42701),(21853,'trends','itemid',42701),(21854,'trends_uint','itemid',42701),(21855,'events','itemid',42702),(21856,'history','itemid',42702),(21857,'history_log','itemid',42702),(21858,'history_str','itemid',42702),(21859,'history_text','itemid',42702),(21860,'history_uint','itemid',42702),(21861,'trends','itemid',42702),(21862,'trends_uint','itemid',42702),(21863,'events','itemid',40012),(21864,'history','itemid',40012),(21865,'history_log','itemid',40012),(21866,'history_str','itemid',40012),(21867,'history_text','itemid',40012),(21868,'history_uint','itemid',40012),(21869,'trends','itemid',40012),(21870,'trends_uint','itemid',40012),(21871,'events','itemid',40017),(21872,'history','itemid',40017),(21873,'history_log','itemid',40017),(21874,'history_str','itemid',40017),(21875,'history_text','itemid',40017),(21876,'history_uint','itemid',40017),(21877,'trends','itemid',40017),(21878,'trends_uint','itemid',40017),(21879,'events','itemid',40018),(21880,'history','itemid',40018),(21881,'history_log','itemid',40018),(21882,'history_str','itemid',40018),(21883,'history_text','itemid',40018),(21884,'history_uint','itemid',40018),(21885,'trends','itemid',40018),(21886,'trends_uint','itemid',40018),(21887,'events','itemid',40015),(21888,'history','itemid',40015),(21889,'history_log','itemid',40015),(21890,'history_str','itemid',40015),(21891,'history_text','itemid',40015),(21892,'history_uint','itemid',40015),(21893,'trends','itemid',40015),(21894,'trends_uint','itemid',40015),(21895,'events','itemid',40013),(21896,'history','itemid',40013),(21897,'history_log','itemid',40013),(21898,'history_str','itemid',40013),(21899,'history_text','itemid',40013),(21900,'history_uint','itemid',40013),(21901,'trends','itemid',40013),(21902,'trends_uint','itemid',40013),(21903,'events','itemid',40019),(21904,'history','itemid',40019),(21905,'history_log','itemid',40019),(21906,'history_str','itemid',40019),(21907,'history_text','itemid',40019),(21908,'history_uint','itemid',40019),(21909,'trends','itemid',40019),(21910,'trends_uint','itemid',40019),(21911,'events','itemid',40014),(21912,'history','itemid',40014),(21913,'history_log','itemid',40014),(21914,'history_str','itemid',40014),(21915,'history_text','itemid',40014),(21916,'history_uint','itemid',40014),(21917,'trends','itemid',40014),(21918,'trends_uint','itemid',40014),(21919,'events','itemid',40020),(21920,'history','itemid',40020),(21921,'history_log','itemid',40020),(21922,'history_str','itemid',40020),(21923,'history_text','itemid',40020),(21924,'history_uint','itemid',40020),(21925,'trends','itemid',40020),(21926,'trends_uint','itemid',40020),(21927,'events','itemid',44100),(21928,'history','itemid',44100),(21929,'history_log','itemid',44100),(21930,'history_str','itemid',44100),(21931,'history_text','itemid',44100),(21932,'history_uint','itemid',44100),(21933,'trends','itemid',44100),(21934,'trends_uint','itemid',44100),(21935,'events','itemid',44106),(21936,'history','itemid',44106),(21937,'history_log','itemid',44106),(21938,'history_str','itemid',44106),(21939,'history_text','itemid',44106),(21940,'history_uint','itemid',44106),(21941,'trends','itemid',44106),(21942,'trends_uint','itemid',44106),(21943,'events','itemid',44098),(21944,'history','itemid',44098),(21945,'history_log','itemid',44098),(21946,'history_str','itemid',44098),(21947,'history_text','itemid',44098),(21948,'history_uint','itemid',44098),(21949,'trends','itemid',44098),(21950,'trends_uint','itemid',44098),(21951,'events','itemid',43174),(21952,'history','itemid',43174),(21953,'history_log','itemid',43174),(21954,'history_str','itemid',43174),(21955,'history_text','itemid',43174),(21956,'history_uint','itemid',43174),(21957,'trends','itemid',43174),(21958,'trends_uint','itemid',43174),(21959,'events','itemid',44105),(21960,'history','itemid',44105),(21961,'history_log','itemid',44105),(21962,'history_str','itemid',44105),(21963,'history_text','itemid',44105),(21964,'history_uint','itemid',44105),(21965,'trends','itemid',44105),(21966,'trends_uint','itemid',44105),(21967,'events','itemid',44104),(21968,'history','itemid',44104),(21969,'history_log','itemid',44104),(21970,'history_str','itemid',44104),(21971,'history_text','itemid',44104),(21972,'history_uint','itemid',44104),(21973,'trends','itemid',44104),(21974,'trends_uint','itemid',44104),(21975,'events','itemid',44103),(21976,'history','itemid',44103),(21977,'history_log','itemid',44103),(21978,'history_str','itemid',44103),(21979,'history_text','itemid',44103),(21980,'history_uint','itemid',44103),(21981,'trends','itemid',44103),(21982,'trends_uint','itemid',44103),(21983,'events','itemid',43176),(21984,'history','itemid',43176),(21985,'history_log','itemid',43176),(21986,'history_str','itemid',43176),(21987,'history_text','itemid',43176),(21988,'history_uint','itemid',43176),(21989,'trends','itemid',43176),(21990,'trends_uint','itemid',43176),(21991,'events','itemid',44102),(21992,'history','itemid',44102),(21993,'history_log','itemid',44102),(21994,'history_str','itemid',44102),(21995,'history_text','itemid',44102),(21996,'history_uint','itemid',44102),(21997,'trends','itemid',44102),(21998,'trends_uint','itemid',44102),(21999,'events','itemid',44101),(22000,'history','itemid',44101),(22001,'history_log','itemid',44101),(22002,'history_str','itemid',44101),(22003,'history_text','itemid',44101),(22004,'history_uint','itemid',44101),(22005,'trends','itemid',44101),(22006,'trends_uint','itemid',44101),(22007,'events','itemid',44094),(22008,'history','itemid',44094),(22009,'history_log','itemid',44094),(22010,'history_str','itemid',44094),(22011,'history_text','itemid',44094),(22012,'history_uint','itemid',44094),(22013,'trends','itemid',44094),(22014,'trends_uint','itemid',44094),(22015,'events','itemid',44099),(22016,'history','itemid',44099),(22017,'history_log','itemid',44099),(22018,'history_str','itemid',44099),(22019,'history_text','itemid',44099),(22020,'history_uint','itemid',44099),(22021,'trends','itemid',44099),(22022,'trends_uint','itemid',44099),(22023,'events','itemid',44107),(22024,'history','itemid',44107),(22025,'history_log','itemid',44107),(22026,'history_str','itemid',44107),(22027,'history_text','itemid',44107),(22028,'history_uint','itemid',44107),(22029,'trends','itemid',44107),(22030,'trends_uint','itemid',44107),(22031,'events','itemid',44097),(22032,'history','itemid',44097),(22033,'history_log','itemid',44097),(22034,'history_str','itemid',44097),(22035,'history_text','itemid',44097),(22036,'history_uint','itemid',44097),(22037,'trends','itemid',44097),(22038,'trends_uint','itemid',44097),(22039,'events','itemid',44096),(22040,'history','itemid',44096),(22041,'history_log','itemid',44096),(22042,'history_str','itemid',44096),(22043,'history_text','itemid',44096),(22044,'history_uint','itemid',44096),(22045,'trends','itemid',44096),(22046,'trends_uint','itemid',44096),(22047,'events','itemid',44095),(22048,'history','itemid',44095),(22049,'history_log','itemid',44095),(22050,'history_str','itemid',44095),(22051,'history_text','itemid',44095),(22052,'history_uint','itemid',44095),(22053,'trends','itemid',44095),(22054,'trends_uint','itemid',44095),(22055,'events','itemid',43177),(22056,'history','itemid',43177),(22057,'history_log','itemid',43177),(22058,'history_str','itemid',43177),(22059,'history_text','itemid',43177),(22060,'history_uint','itemid',43177),(22061,'trends','itemid',43177),(22062,'trends_uint','itemid',43177),(22063,'events','itemid',43178),(22064,'history','itemid',43178),(22065,'history_log','itemid',43178),(22066,'history_str','itemid',43178),(22067,'history_text','itemid',43178),(22068,'history_uint','itemid',43178),(22069,'trends','itemid',43178),(22070,'trends_uint','itemid',43178),(22071,'events','itemid',43179),(22072,'history','itemid',43179),(22073,'history_log','itemid',43179),(22074,'history_str','itemid',43179),(22075,'history_text','itemid',43179),(22076,'history_uint','itemid',43179),(22077,'trends','itemid',43179),(22078,'trends_uint','itemid',43179),(22079,'events','itemid',43180),(22080,'history','itemid',43180),(22081,'history_log','itemid',43180),(22082,'history_str','itemid',43180),(22083,'history_text','itemid',43180),(22084,'history_uint','itemid',43180),(22085,'trends','itemid',43180),(22086,'trends_uint','itemid',43180),(22087,'events','itemid',43181),(22088,'history','itemid',43181),(22089,'history_log','itemid',43181),(22090,'history_str','itemid',43181),(22091,'history_text','itemid',43181),(22092,'history_uint','itemid',43181),(22093,'trends','itemid',43181),(22094,'trends_uint','itemid',43181),(22095,'events','itemid',43182),(22096,'history','itemid',43182),(22097,'history_log','itemid',43182),(22098,'history_str','itemid',43182),(22099,'history_text','itemid',43182),(22100,'history_uint','itemid',43182),(22101,'trends','itemid',43182),(22102,'trends_uint','itemid',43182),(22103,'events','itemid',43183),(22104,'history','itemid',43183),(22105,'history_log','itemid',43183),(22106,'history_str','itemid',43183),(22107,'history_text','itemid',43183),(22108,'history_uint','itemid',43183),(22109,'trends','itemid',43183),(22110,'trends_uint','itemid',43183),(22111,'events','itemid',43175),(22112,'history','itemid',43175),(22113,'history_log','itemid',43175),(22114,'history_str','itemid',43175),(22115,'history_text','itemid',43175),(22116,'history_uint','itemid',43175),(22117,'trends','itemid',43175),(22118,'trends_uint','itemid',43175),(22119,'events','itemid',44127),(22120,'history','itemid',44127),(22121,'history_log','itemid',44127),(22122,'history_str','itemid',44127),(22123,'history_text','itemid',44127),(22124,'history_uint','itemid',44127),(22125,'trends','itemid',44127),(22126,'trends_uint','itemid',44127),(22127,'events','itemid',44133),(22128,'history','itemid',44133),(22129,'history_log','itemid',44133),(22130,'history_str','itemid',44133),(22131,'history_text','itemid',44133),(22132,'history_uint','itemid',44133),(22133,'trends','itemid',44133),(22134,'trends_uint','itemid',44133),(22135,'events','itemid',44125),(22136,'history','itemid',44125),(22137,'history_log','itemid',44125),(22138,'history_str','itemid',44125),(22139,'history_text','itemid',44125),(22140,'history_uint','itemid',44125),(22141,'trends','itemid',44125),(22142,'trends_uint','itemid',44125),(22143,'events','itemid',43281),(22144,'history','itemid',43281),(22145,'history_log','itemid',43281),(22146,'history_str','itemid',43281),(22147,'history_text','itemid',43281),(22148,'history_uint','itemid',43281),(22149,'trends','itemid',43281),(22150,'trends_uint','itemid',43281),(22151,'events','itemid',44132),(22152,'history','itemid',44132),(22153,'history_log','itemid',44132),(22154,'history_str','itemid',44132),(22155,'history_text','itemid',44132),(22156,'history_uint','itemid',44132),(22157,'trends','itemid',44132),(22158,'trends_uint','itemid',44132),(22159,'events','itemid',44131),(22160,'history','itemid',44131),(22161,'history_log','itemid',44131),(22162,'history_str','itemid',44131),(22163,'history_text','itemid',44131),(22164,'history_uint','itemid',44131),(22165,'trends','itemid',44131),(22166,'trends_uint','itemid',44131),(22167,'events','itemid',44130),(22168,'history','itemid',44130),(22169,'history_log','itemid',44130),(22170,'history_str','itemid',44130),(22171,'history_text','itemid',44130),(22172,'history_uint','itemid',44130),(22173,'trends','itemid',44130),(22174,'trends_uint','itemid',44130),(22175,'events','itemid',43283),(22176,'history','itemid',43283),(22177,'history_log','itemid',43283),(22178,'history_str','itemid',43283),(22179,'history_text','itemid',43283),(22180,'history_uint','itemid',43283),(22181,'trends','itemid',43283),(22182,'trends_uint','itemid',43283),(22183,'events','itemid',44129),(22184,'history','itemid',44129),(22185,'history_log','itemid',44129),(22186,'history_str','itemid',44129),(22187,'history_text','itemid',44129),(22188,'history_uint','itemid',44129),(22189,'trends','itemid',44129),(22190,'trends_uint','itemid',44129),(22191,'events','itemid',44128),(22192,'history','itemid',44128),(22193,'history_log','itemid',44128),(22194,'history_str','itemid',44128),(22195,'history_text','itemid',44128),(22196,'history_uint','itemid',44128),(22197,'trends','itemid',44128),(22198,'trends_uint','itemid',44128),(22199,'events','itemid',44121),(22200,'history','itemid',44121),(22201,'history_log','itemid',44121),(22202,'history_str','itemid',44121),(22203,'history_text','itemid',44121),(22204,'history_uint','itemid',44121),(22205,'trends','itemid',44121),(22206,'trends_uint','itemid',44121),(22207,'events','itemid',44126),(22208,'history','itemid',44126),(22209,'history_log','itemid',44126),(22210,'history_str','itemid',44126),(22211,'history_text','itemid',44126),(22212,'history_uint','itemid',44126),(22213,'trends','itemid',44126),(22214,'trends_uint','itemid',44126),(22215,'events','itemid',44134),(22216,'history','itemid',44134),(22217,'history_log','itemid',44134),(22218,'history_str','itemid',44134),(22219,'history_text','itemid',44134),(22220,'history_uint','itemid',44134),(22221,'trends','itemid',44134),(22222,'trends_uint','itemid',44134),(22223,'events','itemid',44124),(22224,'history','itemid',44124),(22225,'history_log','itemid',44124),(22226,'history_str','itemid',44124),(22227,'history_text','itemid',44124),(22228,'history_uint','itemid',44124),(22229,'trends','itemid',44124),(22230,'trends_uint','itemid',44124),(22231,'events','itemid',44123),(22232,'history','itemid',44123),(22233,'history_log','itemid',44123),(22234,'history_str','itemid',44123),(22235,'history_text','itemid',44123),(22236,'history_uint','itemid',44123),(22237,'trends','itemid',44123),(22238,'trends_uint','itemid',44123),(22239,'events','itemid',44122),(22240,'history','itemid',44122),(22241,'history_log','itemid',44122),(22242,'history_str','itemid',44122),(22243,'history_text','itemid',44122),(22244,'history_uint','itemid',44122),(22245,'trends','itemid',44122),(22246,'trends_uint','itemid',44122),(22247,'events','itemid',43284),(22248,'history','itemid',43284),(22249,'history_log','itemid',43284),(22250,'history_str','itemid',43284),(22251,'history_text','itemid',43284),(22252,'history_uint','itemid',43284),(22253,'trends','itemid',43284),(22254,'trends_uint','itemid',43284),(22255,'events','itemid',43285),(22256,'history','itemid',43285),(22257,'history_log','itemid',43285),(22258,'history_str','itemid',43285),(22259,'history_text','itemid',43285),(22260,'history_uint','itemid',43285),(22261,'trends','itemid',43285),(22262,'trends_uint','itemid',43285),(22263,'events','itemid',43286),(22264,'history','itemid',43286),(22265,'history_log','itemid',43286),(22266,'history_str','itemid',43286),(22267,'history_text','itemid',43286),(22268,'history_uint','itemid',43286),(22269,'trends','itemid',43286),(22270,'trends_uint','itemid',43286),(22271,'events','itemid',43287),(22272,'history','itemid',43287),(22273,'history_log','itemid',43287),(22274,'history_str','itemid',43287),(22275,'history_text','itemid',43287),(22276,'history_uint','itemid',43287),(22277,'trends','itemid',43287),(22278,'trends_uint','itemid',43287),(22279,'events','itemid',43288),(22280,'history','itemid',43288),(22281,'history_log','itemid',43288),(22282,'history_str','itemid',43288),(22283,'history_text','itemid',43288),(22284,'history_uint','itemid',43288),(22285,'trends','itemid',43288),(22286,'trends_uint','itemid',43288),(22287,'events','itemid',43289),(22288,'history','itemid',43289),(22289,'history_log','itemid',43289),(22290,'history_str','itemid',43289),(22291,'history_text','itemid',43289),(22292,'history_uint','itemid',43289),(22293,'trends','itemid',43289),(22294,'trends_uint','itemid',43289),(22295,'events','itemid',43290),(22296,'history','itemid',43290),(22297,'history_log','itemid',43290),(22298,'history_str','itemid',43290),(22299,'history_text','itemid',43290),(22300,'history_uint','itemid',43290),(22301,'trends','itemid',43290),(22302,'trends_uint','itemid',43290),(22303,'events','itemid',43282),(22304,'history','itemid',43282),(22305,'history_log','itemid',43282),(22306,'history_str','itemid',43282),(22307,'history_text','itemid',43282),(22308,'history_uint','itemid',43282),(22309,'trends','itemid',43282),(22310,'trends_uint','itemid',43282),(22311,'events','itemid',43413),(22312,'history','itemid',43413),(22313,'history_log','itemid',43413),(22314,'history_str','itemid',43413),(22315,'history_text','itemid',43413),(22316,'history_uint','itemid',43413),(22317,'trends','itemid',43413),(22318,'trends_uint','itemid',43413),(22319,'events','itemid',44154),(22320,'history','itemid',44154),(22321,'history_log','itemid',44154),(22322,'history_str','itemid',44154),(22323,'history_text','itemid',44154),(22324,'history_uint','itemid',44154),(22325,'trends','itemid',44154),(22326,'trends_uint','itemid',44154),(22327,'events','itemid',43399),(22328,'history','itemid',43399),(22329,'history_log','itemid',43399),(22330,'history_str','itemid',43399),(22331,'history_text','itemid',43399),(22332,'history_uint','itemid',43399),(22333,'trends','itemid',43399),(22334,'trends_uint','itemid',43399),(22335,'events','itemid',44148),(22336,'history','itemid',44148),(22337,'history_log','itemid',44148),(22338,'history_str','itemid',44148),(22339,'history_text','itemid',44148),(22340,'history_uint','itemid',44148),(22341,'trends','itemid',44148),(22342,'trends_uint','itemid',44148),(22343,'events','itemid',43406),(22344,'history','itemid',43406),(22345,'history_log','itemid',43406),(22346,'history_str','itemid',43406),(22347,'history_text','itemid',43406),(22348,'history_uint','itemid',43406),(22349,'trends','itemid',43406),(22350,'trends_uint','itemid',43406),(22351,'events','itemid',44149),(22352,'history','itemid',44149),(22353,'history_log','itemid',44149),(22354,'history_str','itemid',44149),(22355,'history_text','itemid',44149),(22356,'history_uint','itemid',44149),(22357,'trends','itemid',44149),(22358,'trends_uint','itemid',44149),(22359,'events','itemid',44150),(22360,'history','itemid',44150),(22361,'history_log','itemid',44150),(22362,'history_str','itemid',44150),(22363,'history_text','itemid',44150),(22364,'history_uint','itemid',44150),(22365,'trends','itemid',44150),(22366,'trends_uint','itemid',44150),(22367,'events','itemid',44151),(22368,'history','itemid',44151),(22369,'history_log','itemid',44151),(22370,'history_str','itemid',44151),(22371,'history_text','itemid',44151),(22372,'history_uint','itemid',44151),(22373,'trends','itemid',44151),(22374,'trends_uint','itemid',44151),(22375,'events','itemid',44152),(22376,'history','itemid',44152),(22377,'history_log','itemid',44152),(22378,'history_str','itemid',44152),(22379,'history_text','itemid',44152),(22380,'history_uint','itemid',44152),(22381,'trends','itemid',44152),(22382,'trends_uint','itemid',44152),(22383,'events','itemid',44153),(22384,'history','itemid',44153),(22385,'history_log','itemid',44153),(22386,'history_str','itemid',44153),(22387,'history_text','itemid',44153),(22388,'history_uint','itemid',44153),(22389,'trends','itemid',44153),(22390,'trends_uint','itemid',44153),(22391,'events','itemid',43412),(22392,'history','itemid',43412),(22393,'history_log','itemid',43412),(22394,'history_str','itemid',43412),(22395,'history_text','itemid',43412),(22396,'history_uint','itemid',43412),(22397,'trends','itemid',43412),(22398,'trends_uint','itemid',43412),(22399,'events','itemid',43411),(22400,'history','itemid',43411),(22401,'history_log','itemid',43411),(22402,'history_str','itemid',43411),(22403,'history_text','itemid',43411),(22404,'history_uint','itemid',43411),(22405,'trends','itemid',43411),(22406,'trends_uint','itemid',43411),(22407,'events','itemid',43410),(22408,'history','itemid',43410),(22409,'history_log','itemid',43410),(22410,'history_str','itemid',43410),(22411,'history_text','itemid',43410),(22412,'history_uint','itemid',43410),(22413,'trends','itemid',43410),(22414,'trends_uint','itemid',43410),(22415,'events','itemid',43409),(22416,'history','itemid',43409),(22417,'history_log','itemid',43409),(22418,'history_str','itemid',43409),(22419,'history_text','itemid',43409),(22420,'history_uint','itemid',43409),(22421,'trends','itemid',43409),(22422,'trends_uint','itemid',43409),(22423,'events','itemid',43408),(22424,'history','itemid',43408),(22425,'history_log','itemid',43408),(22426,'history_str','itemid',43408),(22427,'history_text','itemid',43408),(22428,'history_uint','itemid',43408),(22429,'trends','itemid',43408),(22430,'trends_uint','itemid',43408),(22431,'events','itemid',43414),(22432,'history','itemid',43414),(22433,'history_log','itemid',43414),(22434,'history_str','itemid',43414),(22435,'history_text','itemid',43414),(22436,'history_uint','itemid',43414),(22437,'trends','itemid',43414),(22438,'trends_uint','itemid',43414),(22439,'events','itemid',43407),(22440,'history','itemid',43407),(22441,'history_log','itemid',43407),(22442,'history_str','itemid',43407),(22443,'history_text','itemid',43407),(22444,'history_uint','itemid',43407),(22445,'trends','itemid',43407),(22446,'trends_uint','itemid',43407),(22447,'events','itemid',43405),(22448,'history','itemid',43405),(22449,'history_log','itemid',43405),(22450,'history_str','itemid',43405),(22451,'history_text','itemid',43405),(22452,'history_uint','itemid',43405),(22453,'trends','itemid',43405),(22454,'trends_uint','itemid',43405),(22455,'events','itemid',43404),(22456,'history','itemid',43404),(22457,'history_log','itemid',43404),(22458,'history_str','itemid',43404),(22459,'history_text','itemid',43404),(22460,'history_uint','itemid',43404),(22461,'trends','itemid',43404),(22462,'trends_uint','itemid',43404),(22463,'events','itemid',43403),(22464,'history','itemid',43403),(22465,'history_log','itemid',43403),(22466,'history_str','itemid',43403),(22467,'history_text','itemid',43403),(22468,'history_uint','itemid',43403),(22469,'trends','itemid',43403),(22470,'trends_uint','itemid',43403),(22471,'events','itemid',43402),(22472,'history','itemid',43402),(22473,'history_log','itemid',43402),(22474,'history_str','itemid',43402),(22475,'history_text','itemid',43402),(22476,'history_uint','itemid',43402),(22477,'trends','itemid',43402),(22478,'trends_uint','itemid',43402),(22479,'events','itemid',43401),(22480,'history','itemid',43401),(22481,'history_log','itemid',43401),(22482,'history_str','itemid',43401),(22483,'history_text','itemid',43401),(22484,'history_uint','itemid',43401),(22485,'trends','itemid',43401),(22486,'trends_uint','itemid',43401),(22487,'events','itemid',43400),(22488,'history','itemid',43400),(22489,'history_log','itemid',43400),(22490,'history_str','itemid',43400),(22491,'history_text','itemid',43400),(22492,'history_uint','itemid',43400),(22493,'trends','itemid',43400),(22494,'trends_uint','itemid',43400),(22495,'events','itemid',43398),(22496,'history','itemid',43398),(22497,'history_log','itemid',43398),(22498,'history_str','itemid',43398),(22499,'history_text','itemid',43398),(22500,'history_uint','itemid',43398),(22501,'trends','itemid',43398),(22502,'trends_uint','itemid',43398),(22503,'events','itemid',43901),(22504,'history','itemid',43901),(22505,'history_log','itemid',43901),(22506,'history_str','itemid',43901),(22507,'history_text','itemid',43901),(22508,'history_uint','itemid',43901),(22509,'trends','itemid',43901),(22510,'trends_uint','itemid',43901),(22511,'events','itemid',44205),(22512,'history','itemid',44205),(22513,'history_log','itemid',44205),(22514,'history_str','itemid',44205),(22515,'history_text','itemid',44205),(22516,'history_uint','itemid',44205),(22517,'trends','itemid',44205),(22518,'trends_uint','itemid',44205),(22519,'events','itemid',43903),(22520,'history','itemid',43903),(22521,'history_log','itemid',43903),(22522,'history_str','itemid',43903),(22523,'history_text','itemid',43903),(22524,'history_uint','itemid',43903),(22525,'trends','itemid',43903),(22526,'trends_uint','itemid',43903),(22527,'events','itemid',43904),(22528,'history','itemid',43904),(22529,'history_log','itemid',43904),(22530,'history_str','itemid',43904),(22531,'history_text','itemid',43904),(22532,'history_uint','itemid',43904),(22533,'trends','itemid',43904),(22534,'trends_uint','itemid',43904),(22535,'events','itemid',44201),(22536,'history','itemid',44201),(22537,'history_log','itemid',44201),(22538,'history_str','itemid',44201),(22539,'history_text','itemid',44201),(22540,'history_uint','itemid',44201),(22541,'trends','itemid',44201),(22542,'trends_uint','itemid',44201),(22543,'events','itemid',44202),(22544,'history','itemid',44202),(22545,'history_log','itemid',44202),(22546,'history_str','itemid',44202),(22547,'history_text','itemid',44202),(22548,'history_uint','itemid',44202),(22549,'trends','itemid',44202),(22550,'trends_uint','itemid',44202),(22551,'events','itemid',44203),(22552,'history','itemid',44203),(22553,'history_log','itemid',44203),(22554,'history_str','itemid',44203),(22555,'history_text','itemid',44203),(22556,'history_uint','itemid',44203),(22557,'trends','itemid',44203),(22558,'trends_uint','itemid',44203),(22559,'events','itemid',44204),(22560,'history','itemid',44204),(22561,'history_log','itemid',44204),(22562,'history_str','itemid',44204),(22563,'history_text','itemid',44204),(22564,'history_uint','itemid',44204),(22565,'trends','itemid',44204),(22566,'trends_uint','itemid',44204),(22567,'events','itemid',44213),(22568,'history','itemid',44213),(22569,'history_log','itemid',44213),(22570,'history_str','itemid',44213),(22571,'history_text','itemid',44213),(22572,'history_uint','itemid',44213),(22573,'trends','itemid',44213),(22574,'trends_uint','itemid',44213),(22575,'events','itemid',44206),(22576,'history','itemid',44206),(22577,'history_log','itemid',44206),(22578,'history_str','itemid',44206),(22579,'history_text','itemid',44206),(22580,'history_uint','itemid',44206),(22581,'trends','itemid',44206),(22582,'trends_uint','itemid',44206),(22583,'events','itemid',44207),(22584,'history','itemid',44207),(22585,'history_log','itemid',44207),(22586,'history_str','itemid',44207),(22587,'history_text','itemid',44207),(22588,'history_uint','itemid',44207),(22589,'trends','itemid',44207),(22590,'trends_uint','itemid',44207),(22591,'events','itemid',44208),(22592,'history','itemid',44208),(22593,'history_log','itemid',44208),(22594,'history_str','itemid',44208),(22595,'history_text','itemid',44208),(22596,'history_uint','itemid',44208),(22597,'trends','itemid',44208),(22598,'trends_uint','itemid',44208),(22599,'events','itemid',44209),(22600,'history','itemid',44209),(22601,'history_log','itemid',44209),(22602,'history_str','itemid',44209),(22603,'history_text','itemid',44209),(22604,'history_uint','itemid',44209),(22605,'trends','itemid',44209),(22606,'trends_uint','itemid',44209),(22607,'events','itemid',44210),(22608,'history','itemid',44210),(22609,'history_log','itemid',44210),(22610,'history_str','itemid',44210),(22611,'history_text','itemid',44210),(22612,'history_uint','itemid',44210),(22613,'trends','itemid',44210),(22614,'trends_uint','itemid',44210),(22615,'events','itemid',44211),(22616,'history','itemid',44211),(22617,'history_log','itemid',44211),(22618,'history_str','itemid',44211),(22619,'history_text','itemid',44211),(22620,'history_uint','itemid',44211),(22621,'trends','itemid',44211),(22622,'trends_uint','itemid',44211),(22623,'events','itemid',44212),(22624,'history','itemid',44212),(22625,'history_log','itemid',44212),(22626,'history_str','itemid',44212),(22627,'history_text','itemid',44212),(22628,'history_uint','itemid',44212),(22629,'trends','itemid',44212),(22630,'trends_uint','itemid',44212),(22631,'events','itemid',43902),(22632,'history','itemid',43902),(22633,'history_log','itemid',43902),(22634,'history_str','itemid',43902),(22635,'history_text','itemid',43902),(22636,'history_uint','itemid',43902),(22637,'trends','itemid',43902),(22638,'trends_uint','itemid',43902),(22639,'events','lldruleid',23067),(22640,'events','lldruleid',27901),(22641,'events','lldruleid',27902),(22642,'events','lldruleid',27903),(22643,'events','lldruleid',28196),(22644,'events','lldruleid',28197),(22645,'events','lldruleid',28198),(22646,'events','lldruleid',28199),(22647,'events','lldruleid',29203),(22648,'events','lldruleid',31557),(22649,'events','lldruleid',31558),(22650,'events','lldruleid',31559),(22651,'events','lldruleid',31898),(22652,'events','lldruleid',32435),(22653,'events','lldruleid',32525),(22654,'events','lldruleid',32526),(22655,'events','lldruleid',32527),(22656,'events','lldruleid',32555),(22657,'events','lldruleid',32556),(22658,'events','lldruleid',32557),(22659,'events','lldruleid',33634),(22660,'events','lldruleid',34161),(22661,'events','lldruleid',34162),(22662,'events','lldruleid',34163),(22663,'events','lldruleid',36854),(22664,'events','lldruleid',36855),(22665,'events','lldruleid',36856),(22666,'events','lldruleid',36857),(22667,'events','lldruleid',36858),(22668,'events','lldruleid',36859),(22669,'events','lldruleid',36860),(22670,'events','lldruleid',36908),(22671,'events','lldruleid',36909),(22672,'events','lldruleid',36910),(22673,'events','lldruleid',36911),(22674,'events','lldruleid',36912),(22675,'events','lldruleid',36913),(22676,'events','lldruleid',36914),(22677,'events','lldruleid',36962),(22678,'events','lldruleid',36963),(22679,'events','lldruleid',36964),(22680,'events','lldruleid',36965),(22681,'events','lldruleid',36966),(22682,'events','lldruleid',36967),(22683,'events','lldruleid',36968),(22684,'events','lldruleid',37016),(22685,'events','lldruleid',37017),(22686,'events','lldruleid',37018),(22687,'events','lldruleid',37019),(22688,'events','lldruleid',37020),(22689,'events','lldruleid',37021),(22690,'events','lldruleid',37022),(22691,'events','lldruleid',37070),(22692,'events','lldruleid',37071),(22693,'events','lldruleid',37072),(22694,'events','lldruleid',37073),(22695,'events','lldruleid',37074),(22696,'events','lldruleid',37075),(22697,'events','lldruleid',37076),(22698,'events','lldruleid',37124),(22699,'events','lldruleid',37125),(22700,'events','lldruleid',37126),(22701,'events','lldruleid',37127),(22702,'events','lldruleid',37128),(22703,'events','lldruleid',37129),(22704,'events','lldruleid',37130),(22705,'events','lldruleid',37178),(22706,'events','lldruleid',37179),(22707,'events','lldruleid',37180),(22708,'events','lldruleid',37181),(22709,'events','lldruleid',37182),(22710,'events','lldruleid',37183),(22711,'events','lldruleid',37184),(22712,'events','lldruleid',37232),(22713,'events','lldruleid',37233),(22714,'events','lldruleid',37234),(22715,'events','lldruleid',37235),(22716,'events','lldruleid',37236),(22717,'events','lldruleid',37237),(22718,'events','lldruleid',37238),(22719,'events','lldruleid',37286),(22720,'events','lldruleid',37287),(22721,'events','lldruleid',37288),(22722,'events','lldruleid',37289),(22723,'events','lldruleid',37290),(22724,'events','lldruleid',37291),(22725,'events','lldruleid',37292),(22726,'events','lldruleid',37340),(22727,'events','lldruleid',37341),(22728,'events','lldruleid',37342),(22729,'events','lldruleid',37343),(22730,'events','lldruleid',37344),(22731,'events','lldruleid',37345),(22732,'events','lldruleid',37346),(22733,'events','lldruleid',37394),(22734,'events','lldruleid',37395),(22735,'events','lldruleid',37396),(22736,'events','lldruleid',37397),(22737,'events','lldruleid',37398),(22738,'events','lldruleid',37399),(22739,'events','lldruleid',37400),(22740,'events','lldruleid',37448),(22741,'events','lldruleid',37449),(22742,'events','lldruleid',37450),(22743,'events','lldruleid',37451),(22744,'events','lldruleid',37452),(22745,'events','lldruleid',37453),(22746,'events','lldruleid',37454),(22747,'events','lldruleid',37502),(22748,'events','lldruleid',37503),(22749,'events','lldruleid',37504),(22750,'events','lldruleid',37505),(22751,'events','lldruleid',37506),(22752,'events','lldruleid',37507),(22753,'events','lldruleid',37508),(22754,'events','lldruleid',37556),(22755,'events','lldruleid',37557),(22756,'events','lldruleid',37558),(22757,'events','lldruleid',37559),(22758,'events','lldruleid',37560),(22759,'events','lldruleid',37561),(22760,'events','lldruleid',37562),(22761,'events','lldruleid',37610),(22762,'events','lldruleid',37611),(22763,'events','lldruleid',37612),(22764,'events','lldruleid',37613),(22765,'events','lldruleid',37614),(22766,'events','lldruleid',37615),(22767,'events','lldruleid',37616),(22768,'events','lldruleid',37664),(22769,'events','lldruleid',37665),(22770,'events','lldruleid',37666),(22771,'events','lldruleid',37667),(22772,'events','lldruleid',37668),(22773,'events','lldruleid',37669),(22774,'events','lldruleid',37670),(22775,'events','lldruleid',37718),(22776,'events','lldruleid',37719),(22777,'events','lldruleid',37720),(22778,'events','lldruleid',37721),(22779,'events','lldruleid',37722),(22780,'events','lldruleid',37723),(22781,'events','lldruleid',37724),(22782,'events','lldruleid',37772),(22783,'events','lldruleid',37773),(22784,'events','lldruleid',37774),(22785,'events','lldruleid',37775),(22786,'events','lldruleid',37776),(22787,'events','lldruleid',37777),(22788,'events','lldruleid',37778),(22789,'events','lldruleid',37826),(22790,'events','lldruleid',37827),(22791,'events','lldruleid',37828),(22792,'events','lldruleid',37829),(22793,'events','lldruleid',37830),(22794,'events','lldruleid',37831),(22795,'events','lldruleid',37832),(22796,'events','lldruleid',37880),(22797,'events','lldruleid',37881),(22798,'events','lldruleid',37882),(22799,'events','lldruleid',37883),(22800,'events','lldruleid',37884),(22801,'events','lldruleid',37885),(22802,'events','lldruleid',37886),(22803,'events','lldruleid',37934),(22804,'events','lldruleid',37935),(22805,'events','lldruleid',37936),(22806,'events','lldruleid',37937),(22807,'events','lldruleid',37938),(22808,'events','lldruleid',37939),(22809,'events','lldruleid',37940),(22810,'events','lldruleid',37988),(22811,'events','lldruleid',37989),(22812,'events','lldruleid',37990),(22813,'events','lldruleid',37991),(22814,'events','lldruleid',37992),(22815,'events','lldruleid',37993),(22816,'events','lldruleid',37994),(22817,'events','lldruleid',38042),(22818,'events','lldruleid',38043),(22819,'events','lldruleid',38044),(22820,'events','lldruleid',38045),(22821,'events','lldruleid',38046),(22822,'events','lldruleid',38047),(22823,'events','lldruleid',38048),(22824,'events','lldruleid',38096),(22825,'events','lldruleid',38097),(22826,'events','lldruleid',38098),(22827,'events','lldruleid',38099),(22828,'events','lldruleid',38100),(22829,'events','lldruleid',38101),(22830,'events','lldruleid',38102),(22831,'events','lldruleid',38150),(22832,'events','lldruleid',38151),(22833,'events','lldruleid',38152),(22834,'events','lldruleid',38153),(22835,'events','lldruleid',38154),(22836,'events','lldruleid',38155),(22837,'events','lldruleid',38156),(22838,'events','lldruleid',38204),(22839,'events','lldruleid',38205),(22840,'events','lldruleid',38206),(22841,'events','lldruleid',38207),(22842,'events','lldruleid',38208),(22843,'events','lldruleid',38209),(22844,'events','lldruleid',38210),(22845,'events','lldruleid',38258),(22846,'events','lldruleid',38259),(22847,'events','lldruleid',38260),(22848,'events','lldruleid',38261),(22849,'events','lldruleid',38262),(22850,'events','lldruleid',38263),(22851,'events','lldruleid',38264),(22852,'events','lldruleid',38312),(22853,'events','lldruleid',38313),(22854,'events','lldruleid',38314),(22855,'events','lldruleid',38315),(22856,'events','lldruleid',38316),(22857,'events','lldruleid',38317),(22858,'events','lldruleid',38318),(22859,'events','lldruleid',38366),(22860,'events','lldruleid',38367),(22861,'events','lldruleid',38368),(22862,'events','lldruleid',38369),(22863,'events','lldruleid',38370),(22864,'events','lldruleid',38371),(22865,'events','lldruleid',38372),(22866,'events','lldruleid',38420),(22867,'events','lldruleid',38421),(22868,'events','lldruleid',38422),(22869,'events','lldruleid',38423),(22870,'events','lldruleid',38424),(22871,'events','lldruleid',38425),(22872,'events','lldruleid',38426),(22873,'events','lldruleid',38474),(22874,'events','lldruleid',38475),(22875,'events','lldruleid',38476),(22876,'events','lldruleid',38477),(22877,'events','lldruleid',38478),(22878,'events','lldruleid',38479),(22879,'events','lldruleid',38480),(22880,'events','lldruleid',38528),(22881,'events','lldruleid',38529),(22882,'events','lldruleid',38530),(22883,'events','lldruleid',38531),(22884,'events','lldruleid',38532),(22885,'events','lldruleid',38533),(22886,'events','lldruleid',38534),(22887,'events','lldruleid',39338),(22888,'events','lldruleid',39339),(22889,'events','lldruleid',39340),(22890,'events','lldruleid',39341),(22891,'events','lldruleid',39342),(22892,'events','lldruleid',39343),(22893,'events','lldruleid',39344),(22894,'events','lldruleid',39392),(22895,'events','lldruleid',39393),(22896,'events','lldruleid',39394),(22897,'events','lldruleid',39395),(22898,'events','lldruleid',39396),(22899,'events','lldruleid',39397),(22900,'events','lldruleid',39398),(22901,'events','lldruleid',39446),(22902,'events','lldruleid',39447),(22903,'events','lldruleid',39448),(22904,'events','lldruleid',39449),(22905,'events','lldruleid',39450),(22906,'events','lldruleid',39451),(22907,'events','lldruleid',39452),(22908,'events','lldruleid',39500),(22909,'events','lldruleid',39501),(22910,'events','lldruleid',39502),(22911,'events','lldruleid',39503),(22912,'events','lldruleid',39504),(22913,'events','lldruleid',39505),(22914,'events','lldruleid',39506),(22915,'events','lldruleid',39554),(22916,'events','lldruleid',39555),(22917,'events','lldruleid',39556),(22918,'events','lldruleid',39557),(22919,'events','lldruleid',39558),(22920,'events','lldruleid',39559),(22921,'events','lldruleid',39560),(22922,'events','lldruleid',40945),(22923,'events','lldruleid',40966),(22924,'events','lldruleid',40987),(22925,'events','lldruleid',41008),(22926,'events','lldruleid',41029),(22927,'events','lldruleid',41050),(22928,'events','lldruleid',41071),(22929,'events','lldruleid',41092),(22930,'events','lldruleid',41113),(22931,'events','lldruleid',41134),(22932,'events','lldruleid',41155),(22933,'events','lldruleid',41176),(22934,'events','lldruleid',41197),(22935,'events','lldruleid',41218),(22936,'events','lldruleid',41239),(22937,'events','lldruleid',41260),(22938,'events','lldruleid',41281),(22939,'events','lldruleid',41302),(22940,'events','lldruleid',41323),(22941,'events','lldruleid',41344),(22942,'events','lldruleid',41365),(22943,'events','lldruleid',41386),(22944,'events','lldruleid',41407),(22945,'events','lldruleid',41428),(22946,'events','lldruleid',41449),(22947,'events','lldruleid',41470),(22948,'events','lldruleid',41491),(22949,'events','lldruleid',41512),(22950,'events','lldruleid',41533),(22951,'events','lldruleid',41554),(22952,'events','lldruleid',41575),(22953,'events','lldruleid',41596),(22954,'events','lldruleid',41911),(22955,'events','lldruleid',41932),(22956,'events','lldruleid',41953),(22957,'events','lldruleid',41974),(22958,'events','lldruleid',41995),(22959,'events','lldruleid',42079),(22960,'events','itemid',23035),(22961,'history','itemid',23035),(22962,'history_log','itemid',23035),(22963,'history_str','itemid',23035),(22964,'history_text','itemid',23035),(22965,'history_uint','itemid',23035),(22966,'trends','itemid',23035),(22967,'trends_uint','itemid',23035),(22968,'events','itemid',23036),(22969,'history','itemid',23036),(22970,'history_log','itemid',23036),(22971,'history_str','itemid',23036),(22972,'history_text','itemid',23036),(22973,'history_uint','itemid',23036),(22974,'trends','itemid',23036),(22975,'trends_uint','itemid',23036),(22976,'events','itemid',23039),(22977,'history','itemid',23039),(22978,'history_log','itemid',23039),(22979,'history_str','itemid',23039),(22980,'history_text','itemid',23039),(22981,'history_uint','itemid',23039),(22982,'trends','itemid',23039),(22983,'trends_uint','itemid',23039),(22984,'events','itemid',23041),(22985,'history','itemid',23041),(22986,'history_log','itemid',23041),(22987,'history_str','itemid',23041),(22988,'history_text','itemid',23041),(22989,'history_uint','itemid',23041),(22990,'trends','itemid',23041),(22991,'trends_uint','itemid',23041),(22992,'events','itemid',23042),(22993,'history','itemid',23042),(22994,'history_log','itemid',23042),(22995,'history_str','itemid',23042),(22996,'history_text','itemid',23042),(22997,'history_uint','itemid',23042),(22998,'trends','itemid',23042),(22999,'trends_uint','itemid',23042),(23000,'events','itemid',23043),(23001,'history','itemid',23043),(23002,'history_log','itemid',23043),(23003,'history_str','itemid',23043),(23004,'history_text','itemid',23043),(23005,'history_uint','itemid',23043),(23006,'trends','itemid',23043),(23007,'trends_uint','itemid',23043),(23008,'events','itemid',23053),(23009,'history','itemid',23053),(23010,'history_log','itemid',23053),(23011,'history_str','itemid',23053),(23012,'history_text','itemid',23053),(23013,'history_uint','itemid',23053),(23014,'trends','itemid',23053),(23015,'trends_uint','itemid',23053),(23016,'events','itemid',23054),(23017,'history','itemid',23054),(23018,'history_log','itemid',23054),(23019,'history_str','itemid',23054),(23020,'history_text','itemid',23054),(23021,'history_uint','itemid',23054),(23022,'trends','itemid',23054),(23023,'trends_uint','itemid',23054),(23024,'events','itemid',23058),(23025,'history','itemid',23058),(23026,'history_log','itemid',23058),(23027,'history_str','itemid',23058),(23028,'history_text','itemid',23058),(23029,'history_uint','itemid',23058),(23030,'trends','itemid',23058),(23031,'trends_uint','itemid',23058),(23032,'events','itemid',23059),(23033,'history','itemid',23059),(23034,'history_log','itemid',23059),(23035,'history_str','itemid',23059),(23036,'history_text','itemid',23059),(23037,'history_uint','itemid',23059),(23038,'trends','itemid',23059),(23039,'trends_uint','itemid',23059),(23040,'events','itemid',23060),(23041,'history','itemid',23060),(23042,'history_log','itemid',23060),(23043,'history_str','itemid',23060),(23044,'history_text','itemid',23060),(23045,'history_uint','itemid',23060),(23046,'trends','itemid',23060),(23047,'trends_uint','itemid',23060),(23048,'events','itemid',23061),(23049,'history','itemid',23061),(23050,'history_log','itemid',23061),(23051,'history_str','itemid',23061),(23052,'history_text','itemid',23061),(23053,'history_uint','itemid',23061),(23054,'trends','itemid',23061),(23055,'trends_uint','itemid',23061),(23056,'events','itemid',23062),(23057,'history','itemid',23062),(23058,'history_log','itemid',23062),(23059,'history_str','itemid',23062),(23060,'history_text','itemid',23062),(23061,'history_uint','itemid',23062),(23062,'trends','itemid',23062),(23063,'trends_uint','itemid',23062),(23064,'events','itemid',23063),(23065,'history','itemid',23063),(23066,'history_log','itemid',23063),(23067,'history_str','itemid',23063),(23068,'history_text','itemid',23063),(23069,'history_uint','itemid',23063),(23070,'trends','itemid',23063),(23071,'trends_uint','itemid',23063),(23072,'events','itemid',23077),(23073,'history','itemid',23077),(23074,'history_log','itemid',23077),(23075,'history_str','itemid',23077),(23076,'history_text','itemid',23077),(23077,'history_uint','itemid',23077),(23078,'trends','itemid',23077),(23079,'trends_uint','itemid',23077),(23080,'events','itemid',23078),(23081,'history','itemid',23078),(23082,'history_log','itemid',23078),(23083,'history_str','itemid',23078),(23084,'history_text','itemid',23078),(23085,'history_uint','itemid',23078),(23086,'trends','itemid',23078),(23087,'trends_uint','itemid',23078),(23088,'events','itemid',27893),(23089,'history','itemid',27893),(23090,'history_log','itemid',27893),(23091,'history_str','itemid',27893),(23092,'history_text','itemid',27893),(23093,'history_uint','itemid',27893),(23094,'trends','itemid',27893),(23095,'trends_uint','itemid',27893),(23096,'events','itemid',27894),(23097,'history','itemid',27894),(23098,'history_log','itemid',27894),(23099,'history_str','itemid',27894),(23100,'history_text','itemid',27894),(23101,'history_uint','itemid',27894),(23102,'trends','itemid',27894),(23103,'trends_uint','itemid',27894),(23104,'events','itemid',27895),(23105,'history','itemid',27895),(23106,'history_log','itemid',27895),(23107,'history_str','itemid',27895),(23108,'history_text','itemid',27895),(23109,'history_uint','itemid',27895),(23110,'trends','itemid',27895),(23111,'trends_uint','itemid',27895),(23112,'events','itemid',27898),(23113,'history','itemid',27898),(23114,'history_log','itemid',27898),(23115,'history_str','itemid',27898),(23116,'history_text','itemid',27898),(23117,'history_uint','itemid',27898),(23118,'trends','itemid',27898),(23119,'trends_uint','itemid',27898),(23120,'events','itemid',27900),(23121,'history','itemid',27900),(23122,'history_log','itemid',27900),(23123,'history_str','itemid',27900),(23124,'history_text','itemid',27900),(23125,'history_uint','itemid',27900),(23126,'trends','itemid',27900),(23127,'trends_uint','itemid',27900),(23128,'events','itemid',28978),(23129,'history','itemid',28978),(23130,'history_log','itemid',28978),(23131,'history_str','itemid',28978),(23132,'history_text','itemid',28978),(23133,'history_uint','itemid',28978),(23134,'trends','itemid',28978),(23135,'trends_uint','itemid',28978),(23136,'events','itemid',28979),(23137,'history','itemid',28979),(23138,'history_log','itemid',28979),(23139,'history_str','itemid',28979),(23140,'history_text','itemid',28979),(23141,'history_uint','itemid',28979),(23142,'trends','itemid',28979),(23143,'trends_uint','itemid',28979),(23144,'events','itemid',28980),(23145,'history','itemid',28980),(23146,'history_log','itemid',28980),(23147,'history_str','itemid',28980),(23148,'history_text','itemid',28980),(23149,'history_uint','itemid',28980),(23150,'trends','itemid',28980),(23151,'trends_uint','itemid',28980),(23152,'events','itemid',28981),(23153,'history','itemid',28981),(23154,'history_log','itemid',28981),(23155,'history_str','itemid',28981),(23156,'history_text','itemid',28981),(23157,'history_uint','itemid',28981),(23158,'trends','itemid',28981),(23159,'trends_uint','itemid',28981),(23160,'events','itemid',28982),(23161,'history','itemid',28982),(23162,'history_log','itemid',28982),(23163,'history_str','itemid',28982),(23164,'history_text','itemid',28982),(23165,'history_uint','itemid',28982),(23166,'trends','itemid',28982),(23167,'trends_uint','itemid',28982),(23168,'events','itemid',28983),(23169,'history','itemid',28983),(23170,'history_log','itemid',28983),(23171,'history_str','itemid',28983),(23172,'history_text','itemid',28983),(23173,'history_uint','itemid',28983),(23174,'trends','itemid',28983),(23175,'trends_uint','itemid',28983),(23176,'events','itemid',28984),(23177,'history','itemid',28984),(23178,'history_log','itemid',28984),(23179,'history_str','itemid',28984),(23180,'history_text','itemid',28984),(23181,'history_uint','itemid',28984),(23182,'trends','itemid',28984),(23183,'trends_uint','itemid',28984),(23184,'events','itemid',28985),(23185,'history','itemid',28985),(23186,'history_log','itemid',28985),(23187,'history_str','itemid',28985),(23188,'history_text','itemid',28985),(23189,'history_uint','itemid',28985),(23190,'trends','itemid',28985),(23191,'trends_uint','itemid',28985),(23192,'events','itemid',28986),(23193,'history','itemid',28986),(23194,'history_log','itemid',28986),(23195,'history_str','itemid',28986),(23196,'history_text','itemid',28986),(23197,'history_uint','itemid',28986),(23198,'trends','itemid',28986),(23199,'trends_uint','itemid',28986),(23200,'events','itemid',29103),(23201,'history','itemid',29103),(23202,'history_log','itemid',29103),(23203,'history_str','itemid',29103),(23204,'history_text','itemid',29103),(23205,'history_uint','itemid',29103),(23206,'trends','itemid',29103),(23207,'trends_uint','itemid',29103),(23208,'events','itemid',29104),(23209,'history','itemid',29104),(23210,'history_log','itemid',29104),(23211,'history_str','itemid',29104),(23212,'history_text','itemid',29104),(23213,'history_uint','itemid',29104),(23214,'trends','itemid',29104),(23215,'trends_uint','itemid',29104),(23216,'events','itemid',29105),(23217,'history','itemid',29105),(23218,'history_log','itemid',29105),(23219,'history_str','itemid',29105),(23220,'history_text','itemid',29105),(23221,'history_uint','itemid',29105),(23222,'trends','itemid',29105),(23223,'trends_uint','itemid',29105),(23224,'events','itemid',29106),(23225,'history','itemid',29106),(23226,'history_log','itemid',29106),(23227,'history_str','itemid',29106),(23228,'history_text','itemid',29106),(23229,'history_uint','itemid',29106),(23230,'trends','itemid',29106),(23231,'trends_uint','itemid',29106),(23232,'events','itemid',29107),(23233,'history','itemid',29107),(23234,'history_log','itemid',29107),(23235,'history_str','itemid',29107),(23236,'history_text','itemid',29107),(23237,'history_uint','itemid',29107),(23238,'trends','itemid',29107),(23239,'trends_uint','itemid',29107),(23240,'events','itemid',29108),(23241,'history','itemid',29108),(23242,'history_log','itemid',29108),(23243,'history_str','itemid',29108),(23244,'history_text','itemid',29108),(23245,'history_uint','itemid',29108),(23246,'trends','itemid',29108),(23247,'trends_uint','itemid',29108),(23248,'events','itemid',30119),(23249,'history','itemid',30119),(23250,'history_log','itemid',30119),(23251,'history_str','itemid',30119),(23252,'history_text','itemid',30119),(23253,'history_uint','itemid',30119),(23254,'trends','itemid',30119),(23255,'trends_uint','itemid',30119),(23256,'events','itemid',30120),(23257,'history','itemid',30120),(23258,'history_log','itemid',30120),(23259,'history_str','itemid',30120),(23260,'history_text','itemid',30120),(23261,'history_uint','itemid',30120),(23262,'trends','itemid',30120),(23263,'trends_uint','itemid',30120),(23264,'events','itemid',30611),(23265,'history','itemid',30611),(23266,'history_log','itemid',30611),(23267,'history_str','itemid',30611),(23268,'history_text','itemid',30611),(23269,'history_uint','itemid',30611),(23270,'trends','itemid',30611),(23271,'trends_uint','itemid',30611),(23272,'events','itemid',30612),(23273,'history','itemid',30612),(23274,'history_log','itemid',30612),(23275,'history_str','itemid',30612),(23276,'history_text','itemid',30612),(23277,'history_uint','itemid',30612),(23278,'trends','itemid',30612),(23279,'trends_uint','itemid',30612),(23280,'events','itemid',30613),(23281,'history','itemid',30613),(23282,'history_log','itemid',30613),(23283,'history_str','itemid',30613),(23284,'history_text','itemid',30613),(23285,'history_uint','itemid',30613),(23286,'trends','itemid',30613),(23287,'trends_uint','itemid',30613),(23288,'events','itemid',30614),(23289,'history','itemid',30614),(23290,'history_log','itemid',30614),(23291,'history_str','itemid',30614),(23292,'history_text','itemid',30614),(23293,'history_uint','itemid',30614),(23294,'trends','itemid',30614),(23295,'trends_uint','itemid',30614),(23296,'events','itemid',30615),(23297,'history','itemid',30615),(23298,'history_log','itemid',30615),(23299,'history_str','itemid',30615),(23300,'history_text','itemid',30615),(23301,'history_uint','itemid',30615),(23302,'trends','itemid',30615),(23303,'trends_uint','itemid',30615),(23304,'events','itemid',30616),(23305,'history','itemid',30616),(23306,'history_log','itemid',30616),(23307,'history_str','itemid',30616),(23308,'history_text','itemid',30616),(23309,'history_uint','itemid',30616),(23310,'trends','itemid',30616),(23311,'trends_uint','itemid',30616),(23312,'events','itemid',30617),(23313,'history','itemid',30617),(23314,'history_log','itemid',30617),(23315,'history_str','itemid',30617),(23316,'history_text','itemid',30617),(23317,'history_uint','itemid',30617),(23318,'trends','itemid',30617),(23319,'trends_uint','itemid',30617),(23320,'events','itemid',30618),(23321,'history','itemid',30618),(23322,'history_log','itemid',30618),(23323,'history_str','itemid',30618),(23324,'history_text','itemid',30618),(23325,'history_uint','itemid',30618),(23326,'trends','itemid',30618),(23327,'trends_uint','itemid',30618),(23328,'events','itemid',30619),(23329,'history','itemid',30619),(23330,'history_log','itemid',30619),(23331,'history_str','itemid',30619),(23332,'history_text','itemid',30619),(23333,'history_uint','itemid',30619),(23334,'trends','itemid',30619),(23335,'trends_uint','itemid',30619),(23336,'events','itemid',30620),(23337,'history','itemid',30620),(23338,'history_log','itemid',30620),(23339,'history_str','itemid',30620),(23340,'history_text','itemid',30620),(23341,'history_uint','itemid',30620),(23342,'trends','itemid',30620),(23343,'trends_uint','itemid',30620),(23344,'events','itemid',30621),(23345,'history','itemid',30621),(23346,'history_log','itemid',30621),(23347,'history_str','itemid',30621),(23348,'history_text','itemid',30621),(23349,'history_uint','itemid',30621),(23350,'trends','itemid',30621),(23351,'trends_uint','itemid',30621),(23352,'events','itemid',30622),(23353,'history','itemid',30622),(23354,'history_log','itemid',30622),(23355,'history_str','itemid',30622),(23356,'history_text','itemid',30622),(23357,'history_uint','itemid',30622),(23358,'trends','itemid',30622),(23359,'trends_uint','itemid',30622),(23360,'events','itemid',30623),(23361,'history','itemid',30623),(23362,'history_log','itemid',30623),(23363,'history_str','itemid',30623),(23364,'history_text','itemid',30623),(23365,'history_uint','itemid',30623),(23366,'trends','itemid',30623),(23367,'trends_uint','itemid',30623),(23368,'events','itemid',30624),(23369,'history','itemid',30624),(23370,'history_log','itemid',30624),(23371,'history_str','itemid',30624),(23372,'history_text','itemid',30624),(23373,'history_uint','itemid',30624),(23374,'trends','itemid',30624),(23375,'trends_uint','itemid',30624),(23376,'events','itemid',30625),(23377,'history','itemid',30625),(23378,'history_log','itemid',30625),(23379,'history_str','itemid',30625),(23380,'history_text','itemid',30625),(23381,'history_uint','itemid',30625),(23382,'trends','itemid',30625),(23383,'trends_uint','itemid',30625),(23384,'events','itemid',30626),(23385,'history','itemid',30626),(23386,'history_log','itemid',30626),(23387,'history_str','itemid',30626),(23388,'history_text','itemid',30626),(23389,'history_uint','itemid',30626),(23390,'trends','itemid',30626),(23391,'trends_uint','itemid',30626),(23392,'events','itemid',30627),(23393,'history','itemid',30627),(23394,'history_log','itemid',30627),(23395,'history_str','itemid',30627),(23396,'history_text','itemid',30627),(23397,'history_uint','itemid',30627),(23398,'trends','itemid',30627),(23399,'trends_uint','itemid',30627),(23400,'events','itemid',30628),(23401,'history','itemid',30628),(23402,'history_log','itemid',30628),(23403,'history_str','itemid',30628),(23404,'history_text','itemid',30628),(23405,'history_uint','itemid',30628),(23406,'trends','itemid',30628),(23407,'trends_uint','itemid',30628),(23408,'events','itemid',30629),(23409,'history','itemid',30629),(23410,'history_log','itemid',30629),(23411,'history_str','itemid',30629),(23412,'history_text','itemid',30629),(23413,'history_uint','itemid',30629),(23414,'trends','itemid',30629),(23415,'trends_uint','itemid',30629),(23416,'events','itemid',30630),(23417,'history','itemid',30630),(23418,'history_log','itemid',30630),(23419,'history_str','itemid',30630),(23420,'history_text','itemid',30630),(23421,'history_uint','itemid',30630),(23422,'trends','itemid',30630),(23423,'trends_uint','itemid',30630),(23424,'events','itemid',30631),(23425,'history','itemid',30631),(23426,'history_log','itemid',30631),(23427,'history_str','itemid',30631),(23428,'history_text','itemid',30631),(23429,'history_uint','itemid',30631),(23430,'trends','itemid',30631),(23431,'trends_uint','itemid',30631),(23432,'events','itemid',30632),(23433,'history','itemid',30632),(23434,'history_log','itemid',30632),(23435,'history_str','itemid',30632),(23436,'history_text','itemid',30632),(23437,'history_uint','itemid',30632),(23438,'trends','itemid',30632),(23439,'trends_uint','itemid',30632),(23440,'events','itemid',30633),(23441,'history','itemid',30633),(23442,'history_log','itemid',30633),(23443,'history_str','itemid',30633),(23444,'history_text','itemid',30633),(23445,'history_uint','itemid',30633),(23446,'trends','itemid',30633),(23447,'trends_uint','itemid',30633),(23448,'events','itemid',30634),(23449,'history','itemid',30634),(23450,'history_log','itemid',30634),(23451,'history_str','itemid',30634),(23452,'history_text','itemid',30634),(23453,'history_uint','itemid',30634),(23454,'trends','itemid',30634),(23455,'trends_uint','itemid',30634),(23456,'events','itemid',30635),(23457,'history','itemid',30635),(23458,'history_log','itemid',30635),(23459,'history_str','itemid',30635),(23460,'history_text','itemid',30635),(23461,'history_uint','itemid',30635),(23462,'trends','itemid',30635),(23463,'trends_uint','itemid',30635),(23464,'events','itemid',30636),(23465,'history','itemid',30636),(23466,'history_log','itemid',30636),(23467,'history_str','itemid',30636),(23468,'history_text','itemid',30636),(23469,'history_uint','itemid',30636),(23470,'trends','itemid',30636),(23471,'trends_uint','itemid',30636),(23472,'events','itemid',31364),(23473,'history','itemid',31364),(23474,'history_log','itemid',31364),(23475,'history_str','itemid',31364),(23476,'history_text','itemid',31364),(23477,'history_uint','itemid',31364),(23478,'trends','itemid',31364),(23479,'trends_uint','itemid',31364),(23480,'events','itemid',31836),(23481,'history','itemid',31836),(23482,'history_log','itemid',31836),(23483,'history_str','itemid',31836),(23484,'history_text','itemid',31836),(23485,'history_uint','itemid',31836),(23486,'trends','itemid',31836),(23487,'trends_uint','itemid',31836),(23488,'events','itemid',31837),(23489,'history','itemid',31837),(23490,'history_log','itemid',31837),(23491,'history_str','itemid',31837),(23492,'history_text','itemid',31837),(23493,'history_uint','itemid',31837),(23494,'trends','itemid',31837),(23495,'trends_uint','itemid',31837),(23496,'events','itemid',31838),(23497,'history','itemid',31838),(23498,'history_log','itemid',31838),(23499,'history_str','itemid',31838),(23500,'history_text','itemid',31838),(23501,'history_uint','itemid',31838),(23502,'trends','itemid',31838),(23503,'trends_uint','itemid',31838),(23504,'events','itemid',31839),(23505,'history','itemid',31839),(23506,'history_log','itemid',31839),(23507,'history_str','itemid',31839),(23508,'history_text','itemid',31839),(23509,'history_uint','itemid',31839),(23510,'trends','itemid',31839),(23511,'trends_uint','itemid',31839),(23512,'events','itemid',31840),(23513,'history','itemid',31840),(23514,'history_log','itemid',31840),(23515,'history_str','itemid',31840),(23516,'history_text','itemid',31840),(23517,'history_uint','itemid',31840),(23518,'trends','itemid',31840),(23519,'trends_uint','itemid',31840),(23520,'events','itemid',31841),(23521,'history','itemid',31841),(23522,'history_log','itemid',31841),(23523,'history_str','itemid',31841),(23524,'history_text','itemid',31841),(23525,'history_uint','itemid',31841),(23526,'trends','itemid',31841),(23527,'trends_uint','itemid',31841),(23528,'events','itemid',31842),(23529,'history','itemid',31842),(23530,'history_log','itemid',31842),(23531,'history_str','itemid',31842),(23532,'history_text','itemid',31842),(23533,'history_uint','itemid',31842),(23534,'trends','itemid',31842),(23535,'trends_uint','itemid',31842),(23536,'events','itemid',31843),(23537,'history','itemid',31843),(23538,'history_log','itemid',31843),(23539,'history_str','itemid',31843),(23540,'history_text','itemid',31843),(23541,'history_uint','itemid',31843),(23542,'trends','itemid',31843),(23543,'trends_uint','itemid',31843),(23544,'events','itemid',31844),(23545,'history','itemid',31844),(23546,'history_log','itemid',31844),(23547,'history_str','itemid',31844),(23548,'history_text','itemid',31844),(23549,'history_uint','itemid',31844),(23550,'trends','itemid',31844),(23551,'trends_uint','itemid',31844),(23552,'events','itemid',31845),(23553,'history','itemid',31845),(23554,'history_log','itemid',31845),(23555,'history_str','itemid',31845),(23556,'history_text','itemid',31845),(23557,'history_uint','itemid',31845),(23558,'trends','itemid',31845),(23559,'trends_uint','itemid',31845),(23560,'events','itemid',31846),(23561,'history','itemid',31846),(23562,'history_log','itemid',31846),(23563,'history_str','itemid',31846),(23564,'history_text','itemid',31846),(23565,'history_uint','itemid',31846),(23566,'trends','itemid',31846),(23567,'trends_uint','itemid',31846),(23568,'events','itemid',31847),(23569,'history','itemid',31847),(23570,'history_log','itemid',31847),(23571,'history_str','itemid',31847),(23572,'history_text','itemid',31847),(23573,'history_uint','itemid',31847),(23574,'trends','itemid',31847),(23575,'trends_uint','itemid',31847),(23576,'events','itemid',31848),(23577,'history','itemid',31848),(23578,'history_log','itemid',31848),(23579,'history_str','itemid',31848),(23580,'history_text','itemid',31848),(23581,'history_uint','itemid',31848),(23582,'trends','itemid',31848),(23583,'trends_uint','itemid',31848),(23584,'events','itemid',31849),(23585,'history','itemid',31849),(23586,'history_log','itemid',31849),(23587,'history_str','itemid',31849),(23588,'history_text','itemid',31849),(23589,'history_uint','itemid',31849),(23590,'trends','itemid',31849),(23591,'trends_uint','itemid',31849),(23592,'events','itemid',31850),(23593,'history','itemid',31850),(23594,'history_log','itemid',31850),(23595,'history_str','itemid',31850),(23596,'history_text','itemid',31850),(23597,'history_uint','itemid',31850),(23598,'trends','itemid',31850),(23599,'trends_uint','itemid',31850),(23600,'events','itemid',31851),(23601,'history','itemid',31851),(23602,'history_log','itemid',31851),(23603,'history_str','itemid',31851),(23604,'history_text','itemid',31851),(23605,'history_uint','itemid',31851),(23606,'trends','itemid',31851),(23607,'trends_uint','itemid',31851),(23608,'events','itemid',31852),(23609,'history','itemid',31852),(23610,'history_log','itemid',31852),(23611,'history_str','itemid',31852),(23612,'history_text','itemid',31852),(23613,'history_uint','itemid',31852),(23614,'trends','itemid',31852),(23615,'trends_uint','itemid',31852),(23616,'events','itemid',31853),(23617,'history','itemid',31853),(23618,'history_log','itemid',31853),(23619,'history_str','itemid',31853),(23620,'history_text','itemid',31853),(23621,'history_uint','itemid',31853),(23622,'trends','itemid',31853),(23623,'trends_uint','itemid',31853),(23624,'events','itemid',31854),(23625,'history','itemid',31854),(23626,'history_log','itemid',31854),(23627,'history_str','itemid',31854),(23628,'history_text','itemid',31854),(23629,'history_uint','itemid',31854),(23630,'trends','itemid',31854),(23631,'trends_uint','itemid',31854),(23632,'events','itemid',31855),(23633,'history','itemid',31855),(23634,'history_log','itemid',31855),(23635,'history_str','itemid',31855),(23636,'history_text','itemid',31855),(23637,'history_uint','itemid',31855),(23638,'trends','itemid',31855),(23639,'trends_uint','itemid',31855),(23640,'events','itemid',31893),(23641,'history','itemid',31893),(23642,'history_log','itemid',31893),(23643,'history_str','itemid',31893),(23644,'history_text','itemid',31893),(23645,'history_uint','itemid',31893),(23646,'trends','itemid',31893),(23647,'trends_uint','itemid',31893),(23648,'events','itemid',32516),(23649,'history','itemid',32516),(23650,'history_log','itemid',32516),(23651,'history_str','itemid',32516),(23652,'history_text','itemid',32516),(23653,'history_uint','itemid',32516),(23654,'trends','itemid',32516),(23655,'trends_uint','itemid',32516),(23656,'events','itemid',32517),(23657,'history','itemid',32517),(23658,'history_log','itemid',32517),(23659,'history_str','itemid',32517),(23660,'history_text','itemid',32517),(23661,'history_uint','itemid',32517),(23662,'trends','itemid',32517),(23663,'trends_uint','itemid',32517),(23664,'events','itemid',32518),(23665,'history','itemid',32518),(23666,'history_log','itemid',32518),(23667,'history_str','itemid',32518),(23668,'history_text','itemid',32518),(23669,'history_uint','itemid',32518),(23670,'trends','itemid',32518),(23671,'trends_uint','itemid',32518),(23672,'events','itemid',32519),(23673,'history','itemid',32519),(23674,'history_log','itemid',32519),(23675,'history_str','itemid',32519),(23676,'history_text','itemid',32519),(23677,'history_uint','itemid',32519),(23678,'trends','itemid',32519),(23679,'trends_uint','itemid',32519),(23680,'events','itemid',32520),(23681,'history','itemid',32520),(23682,'history_log','itemid',32520),(23683,'history_str','itemid',32520),(23684,'history_text','itemid',32520),(23685,'history_uint','itemid',32520),(23686,'trends','itemid',32520),(23687,'trends_uint','itemid',32520),(23688,'events','itemid',32521),(23689,'history','itemid',32521),(23690,'history_log','itemid',32521),(23691,'history_str','itemid',32521),(23692,'history_text','itemid',32521),(23693,'history_uint','itemid',32521),(23694,'trends','itemid',32521),(23695,'trends_uint','itemid',32521),(23696,'events','itemid',32522),(23697,'history','itemid',32522),(23698,'history_log','itemid',32522),(23699,'history_str','itemid',32522),(23700,'history_text','itemid',32522),(23701,'history_uint','itemid',32522),(23702,'trends','itemid',32522),(23703,'trends_uint','itemid',32522),(23704,'events','itemid',32523),(23705,'history','itemid',32523),(23706,'history_log','itemid',32523),(23707,'history_str','itemid',32523),(23708,'history_text','itemid',32523),(23709,'history_uint','itemid',32523),(23710,'trends','itemid',32523),(23711,'trends_uint','itemid',32523),(23712,'events','itemid',32524),(23713,'history','itemid',32524),(23714,'history_log','itemid',32524),(23715,'history_str','itemid',32524),(23716,'history_text','itemid',32524),(23717,'history_uint','itemid',32524),(23718,'trends','itemid',32524),(23719,'trends_uint','itemid',32524),(23720,'events','itemid',32546),(23721,'history','itemid',32546),(23722,'history_log','itemid',32546),(23723,'history_str','itemid',32546),(23724,'history_text','itemid',32546),(23725,'history_uint','itemid',32546),(23726,'trends','itemid',32546),(23727,'trends_uint','itemid',32546),(23728,'events','itemid',32547),(23729,'history','itemid',32547),(23730,'history_log','itemid',32547),(23731,'history_str','itemid',32547),(23732,'history_text','itemid',32547),(23733,'history_uint','itemid',32547),(23734,'trends','itemid',32547),(23735,'trends_uint','itemid',32547),(23736,'events','itemid',32548),(23737,'history','itemid',32548),(23738,'history_log','itemid',32548),(23739,'history_str','itemid',32548),(23740,'history_text','itemid',32548),(23741,'history_uint','itemid',32548),(23742,'trends','itemid',32548),(23743,'trends_uint','itemid',32548),(23744,'events','itemid',32549),(23745,'history','itemid',32549),(23746,'history_log','itemid',32549),(23747,'history_str','itemid',32549),(23748,'history_text','itemid',32549),(23749,'history_uint','itemid',32549),(23750,'trends','itemid',32549),(23751,'trends_uint','itemid',32549),(23752,'events','itemid',32550),(23753,'history','itemid',32550),(23754,'history_log','itemid',32550),(23755,'history_str','itemid',32550),(23756,'history_text','itemid',32550),(23757,'history_uint','itemid',32550),(23758,'trends','itemid',32550),(23759,'trends_uint','itemid',32550),(23760,'events','itemid',32551),(23761,'history','itemid',32551),(23762,'history_log','itemid',32551),(23763,'history_str','itemid',32551),(23764,'history_text','itemid',32551),(23765,'history_uint','itemid',32551),(23766,'trends','itemid',32551),(23767,'trends_uint','itemid',32551),(23768,'events','itemid',32552),(23769,'history','itemid',32552),(23770,'history_log','itemid',32552),(23771,'history_str','itemid',32552),(23772,'history_text','itemid',32552),(23773,'history_uint','itemid',32552),(23774,'trends','itemid',32552),(23775,'trends_uint','itemid',32552),(23776,'events','itemid',32553),(23777,'history','itemid',32553),(23778,'history_log','itemid',32553),(23779,'history_str','itemid',32553),(23780,'history_text','itemid',32553),(23781,'history_uint','itemid',32553),(23782,'trends','itemid',32553),(23783,'trends_uint','itemid',32553),(23784,'events','itemid',32554),(23785,'history','itemid',32554),(23786,'history_log','itemid',32554),(23787,'history_str','itemid',32554),(23788,'history_text','itemid',32554),(23789,'history_uint','itemid',32554),(23790,'trends','itemid',32554),(23791,'trends_uint','itemid',32554),(23792,'events','itemid',33630),(23793,'history','itemid',33630),(23794,'history_log','itemid',33630),(23795,'history_str','itemid',33630),(23796,'history_text','itemid',33630),(23797,'history_uint','itemid',33630),(23798,'trends','itemid',33630),(23799,'trends_uint','itemid',33630),(23800,'events','itemid',33631),(23801,'history','itemid',33631),(23802,'history_log','itemid',33631),(23803,'history_str','itemid',33631),(23804,'history_text','itemid',33631),(23805,'history_uint','itemid',33631),(23806,'trends','itemid',33631),(23807,'trends_uint','itemid',33631),(23808,'events','itemid',33632),(23809,'history','itemid',33632),(23810,'history_log','itemid',33632),(23811,'history_str','itemid',33632),(23812,'history_text','itemid',33632),(23813,'history_uint','itemid',33632),(23814,'trends','itemid',33632),(23815,'trends_uint','itemid',33632),(23816,'events','itemid',33633),(23817,'history','itemid',33633),(23818,'history_log','itemid',33633),(23819,'history_str','itemid',33633),(23820,'history_text','itemid',33633),(23821,'history_uint','itemid',33633),(23822,'trends','itemid',33633),(23823,'trends_uint','itemid',33633),(23824,'events','itemid',34149),(23825,'history','itemid',34149),(23826,'history_log','itemid',34149),(23827,'history_str','itemid',34149),(23828,'history_text','itemid',34149),(23829,'history_uint','itemid',34149),(23830,'trends','itemid',34149),(23831,'trends_uint','itemid',34149),(23832,'events','itemid',34150),(23833,'history','itemid',34150),(23834,'history_log','itemid',34150),(23835,'history_str','itemid',34150),(23836,'history_text','itemid',34150),(23837,'history_uint','itemid',34150),(23838,'trends','itemid',34150),(23839,'trends_uint','itemid',34150),(23840,'events','itemid',34151),(23841,'history','itemid',34151),(23842,'history_log','itemid',34151),(23843,'history_str','itemid',34151),(23844,'history_text','itemid',34151),(23845,'history_uint','itemid',34151),(23846,'trends','itemid',34151),(23847,'trends_uint','itemid',34151),(23848,'events','itemid',34152),(23849,'history','itemid',34152),(23850,'history_log','itemid',34152),(23851,'history_str','itemid',34152),(23852,'history_text','itemid',34152),(23853,'history_uint','itemid',34152),(23854,'trends','itemid',34152),(23855,'trends_uint','itemid',34152),(23856,'events','itemid',34153),(23857,'history','itemid',34153),(23858,'history_log','itemid',34153),(23859,'history_str','itemid',34153),(23860,'history_text','itemid',34153),(23861,'history_uint','itemid',34153),(23862,'trends','itemid',34153),(23863,'trends_uint','itemid',34153),(23864,'events','itemid',34154),(23865,'history','itemid',34154),(23866,'history_log','itemid',34154),(23867,'history_str','itemid',34154),(23868,'history_text','itemid',34154),(23869,'history_uint','itemid',34154),(23870,'trends','itemid',34154),(23871,'trends_uint','itemid',34154),(23872,'events','itemid',34155),(23873,'history','itemid',34155),(23874,'history_log','itemid',34155),(23875,'history_str','itemid',34155),(23876,'history_text','itemid',34155),(23877,'history_uint','itemid',34155),(23878,'trends','itemid',34155),(23879,'trends_uint','itemid',34155),(23880,'events','itemid',34156),(23881,'history','itemid',34156),(23882,'history_log','itemid',34156),(23883,'history_str','itemid',34156),(23884,'history_text','itemid',34156),(23885,'history_uint','itemid',34156),(23886,'trends','itemid',34156),(23887,'trends_uint','itemid',34156),(23888,'events','itemid',34157),(23889,'history','itemid',34157),(23890,'history_log','itemid',34157),(23891,'history_str','itemid',34157),(23892,'history_text','itemid',34157),(23893,'history_uint','itemid',34157),(23894,'trends','itemid',34157),(23895,'trends_uint','itemid',34157),(23896,'events','itemid',34158),(23897,'history','itemid',34158),(23898,'history_log','itemid',34158),(23899,'history_str','itemid',34158),(23900,'history_text','itemid',34158),(23901,'history_uint','itemid',34158),(23902,'trends','itemid',34158),(23903,'trends_uint','itemid',34158),(23904,'events','itemid',34159),(23905,'history','itemid',34159),(23906,'history_log','itemid',34159),(23907,'history_str','itemid',34159),(23908,'history_text','itemid',34159),(23909,'history_uint','itemid',34159),(23910,'trends','itemid',34159),(23911,'trends_uint','itemid',34159),(23912,'events','itemid',34160),(23913,'history','itemid',34160),(23914,'history_log','itemid',34160),(23915,'history_str','itemid',34160),(23916,'history_text','itemid',34160),(23917,'history_uint','itemid',34160),(23918,'trends','itemid',34160),(23919,'trends_uint','itemid',34160),(23920,'events','itemid',36847),(23921,'history','itemid',36847),(23922,'history_log','itemid',36847),(23923,'history_str','itemid',36847),(23924,'history_text','itemid',36847),(23925,'history_uint','itemid',36847),(23926,'trends','itemid',36847),(23927,'trends_uint','itemid',36847),(23928,'events','itemid',36848),(23929,'history','itemid',36848),(23930,'history_log','itemid',36848),(23931,'history_str','itemid',36848),(23932,'history_text','itemid',36848),(23933,'history_uint','itemid',36848),(23934,'trends','itemid',36848),(23935,'trends_uint','itemid',36848),(23936,'events','itemid',36849),(23937,'history','itemid',36849),(23938,'history_log','itemid',36849),(23939,'history_str','itemid',36849),(23940,'history_text','itemid',36849),(23941,'history_uint','itemid',36849),(23942,'trends','itemid',36849),(23943,'trends_uint','itemid',36849),(23944,'events','itemid',36850),(23945,'history','itemid',36850),(23946,'history_log','itemid',36850),(23947,'history_str','itemid',36850),(23948,'history_text','itemid',36850),(23949,'history_uint','itemid',36850),(23950,'trends','itemid',36850),(23951,'trends_uint','itemid',36850),(23952,'events','itemid',36851),(23953,'history','itemid',36851),(23954,'history_log','itemid',36851),(23955,'history_str','itemid',36851),(23956,'history_text','itemid',36851),(23957,'history_uint','itemid',36851),(23958,'trends','itemid',36851),(23959,'trends_uint','itemid',36851),(23960,'events','itemid',36852),(23961,'history','itemid',36852),(23962,'history_log','itemid',36852),(23963,'history_str','itemid',36852),(23964,'history_text','itemid',36852),(23965,'history_uint','itemid',36852),(23966,'trends','itemid',36852),(23967,'trends_uint','itemid',36852),(23968,'events','itemid',36853),(23969,'history','itemid',36853),(23970,'history_log','itemid',36853),(23971,'history_str','itemid',36853),(23972,'history_text','itemid',36853),(23973,'history_uint','itemid',36853),(23974,'trends','itemid',36853),(23975,'trends_uint','itemid',36853),(23976,'events','itemid',36901),(23977,'history','itemid',36901),(23978,'history_log','itemid',36901),(23979,'history_str','itemid',36901),(23980,'history_text','itemid',36901),(23981,'history_uint','itemid',36901),(23982,'trends','itemid',36901),(23983,'trends_uint','itemid',36901),(23984,'events','itemid',36902),(23985,'history','itemid',36902),(23986,'history_log','itemid',36902),(23987,'history_str','itemid',36902),(23988,'history_text','itemid',36902),(23989,'history_uint','itemid',36902),(23990,'trends','itemid',36902),(23991,'trends_uint','itemid',36902),(23992,'events','itemid',36903),(23993,'history','itemid',36903),(23994,'history_log','itemid',36903),(23995,'history_str','itemid',36903),(23996,'history_text','itemid',36903),(23997,'history_uint','itemid',36903),(23998,'trends','itemid',36903),(23999,'trends_uint','itemid',36903),(24000,'events','itemid',36904),(24001,'history','itemid',36904),(24002,'history_log','itemid',36904),(24003,'history_str','itemid',36904),(24004,'history_text','itemid',36904),(24005,'history_uint','itemid',36904),(24006,'trends','itemid',36904),(24007,'trends_uint','itemid',36904),(24008,'events','itemid',36905),(24009,'history','itemid',36905),(24010,'history_log','itemid',36905),(24011,'history_str','itemid',36905),(24012,'history_text','itemid',36905),(24013,'history_uint','itemid',36905),(24014,'trends','itemid',36905),(24015,'trends_uint','itemid',36905),(24016,'events','itemid',36906),(24017,'history','itemid',36906),(24018,'history_log','itemid',36906),(24019,'history_str','itemid',36906),(24020,'history_text','itemid',36906),(24021,'history_uint','itemid',36906),(24022,'trends','itemid',36906),(24023,'trends_uint','itemid',36906),(24024,'events','itemid',36907),(24025,'history','itemid',36907),(24026,'history_log','itemid',36907),(24027,'history_str','itemid',36907),(24028,'history_text','itemid',36907),(24029,'history_uint','itemid',36907),(24030,'trends','itemid',36907),(24031,'trends_uint','itemid',36907),(24032,'events','itemid',36955),(24033,'history','itemid',36955),(24034,'history_log','itemid',36955),(24035,'history_str','itemid',36955),(24036,'history_text','itemid',36955),(24037,'history_uint','itemid',36955),(24038,'trends','itemid',36955),(24039,'trends_uint','itemid',36955),(24040,'events','itemid',36956),(24041,'history','itemid',36956),(24042,'history_log','itemid',36956),(24043,'history_str','itemid',36956),(24044,'history_text','itemid',36956),(24045,'history_uint','itemid',36956),(24046,'trends','itemid',36956),(24047,'trends_uint','itemid',36956),(24048,'events','itemid',36957),(24049,'history','itemid',36957),(24050,'history_log','itemid',36957),(24051,'history_str','itemid',36957),(24052,'history_text','itemid',36957),(24053,'history_uint','itemid',36957),(24054,'trends','itemid',36957),(24055,'trends_uint','itemid',36957),(24056,'events','itemid',36958),(24057,'history','itemid',36958),(24058,'history_log','itemid',36958),(24059,'history_str','itemid',36958),(24060,'history_text','itemid',36958),(24061,'history_uint','itemid',36958),(24062,'trends','itemid',36958),(24063,'trends_uint','itemid',36958),(24064,'events','itemid',36959),(24065,'history','itemid',36959),(24066,'history_log','itemid',36959),(24067,'history_str','itemid',36959),(24068,'history_text','itemid',36959),(24069,'history_uint','itemid',36959),(24070,'trends','itemid',36959),(24071,'trends_uint','itemid',36959),(24072,'events','itemid',36960),(24073,'history','itemid',36960),(24074,'history_log','itemid',36960),(24075,'history_str','itemid',36960),(24076,'history_text','itemid',36960),(24077,'history_uint','itemid',36960),(24078,'trends','itemid',36960),(24079,'trends_uint','itemid',36960),(24080,'events','itemid',36961),(24081,'history','itemid',36961),(24082,'history_log','itemid',36961),(24083,'history_str','itemid',36961),(24084,'history_text','itemid',36961),(24085,'history_uint','itemid',36961),(24086,'trends','itemid',36961),(24087,'trends_uint','itemid',36961),(24088,'events','itemid',37009),(24089,'history','itemid',37009),(24090,'history_log','itemid',37009),(24091,'history_str','itemid',37009),(24092,'history_text','itemid',37009),(24093,'history_uint','itemid',37009),(24094,'trends','itemid',37009),(24095,'trends_uint','itemid',37009),(24096,'events','itemid',37010),(24097,'history','itemid',37010),(24098,'history_log','itemid',37010),(24099,'history_str','itemid',37010),(24100,'history_text','itemid',37010),(24101,'history_uint','itemid',37010),(24102,'trends','itemid',37010),(24103,'trends_uint','itemid',37010),(24104,'events','itemid',37011),(24105,'history','itemid',37011),(24106,'history_log','itemid',37011),(24107,'history_str','itemid',37011),(24108,'history_text','itemid',37011),(24109,'history_uint','itemid',37011),(24110,'trends','itemid',37011),(24111,'trends_uint','itemid',37011),(24112,'events','itemid',37012),(24113,'history','itemid',37012),(24114,'history_log','itemid',37012),(24115,'history_str','itemid',37012),(24116,'history_text','itemid',37012),(24117,'history_uint','itemid',37012),(24118,'trends','itemid',37012),(24119,'trends_uint','itemid',37012),(24120,'events','itemid',37013),(24121,'history','itemid',37013),(24122,'history_log','itemid',37013),(24123,'history_str','itemid',37013),(24124,'history_text','itemid',37013),(24125,'history_uint','itemid',37013),(24126,'trends','itemid',37013),(24127,'trends_uint','itemid',37013),(24128,'events','itemid',37014),(24129,'history','itemid',37014),(24130,'history_log','itemid',37014),(24131,'history_str','itemid',37014),(24132,'history_text','itemid',37014),(24133,'history_uint','itemid',37014),(24134,'trends','itemid',37014),(24135,'trends_uint','itemid',37014),(24136,'events','itemid',37015),(24137,'history','itemid',37015),(24138,'history_log','itemid',37015),(24139,'history_str','itemid',37015),(24140,'history_text','itemid',37015),(24141,'history_uint','itemid',37015),(24142,'trends','itemid',37015),(24143,'trends_uint','itemid',37015),(24144,'events','itemid',37063),(24145,'history','itemid',37063),(24146,'history_log','itemid',37063),(24147,'history_str','itemid',37063),(24148,'history_text','itemid',37063),(24149,'history_uint','itemid',37063),(24150,'trends','itemid',37063),(24151,'trends_uint','itemid',37063),(24152,'events','itemid',37064),(24153,'history','itemid',37064),(24154,'history_log','itemid',37064),(24155,'history_str','itemid',37064),(24156,'history_text','itemid',37064),(24157,'history_uint','itemid',37064),(24158,'trends','itemid',37064),(24159,'trends_uint','itemid',37064),(24160,'events','itemid',37065),(24161,'history','itemid',37065),(24162,'history_log','itemid',37065),(24163,'history_str','itemid',37065),(24164,'history_text','itemid',37065),(24165,'history_uint','itemid',37065),(24166,'trends','itemid',37065),(24167,'trends_uint','itemid',37065),(24168,'events','itemid',37066),(24169,'history','itemid',37066),(24170,'history_log','itemid',37066),(24171,'history_str','itemid',37066),(24172,'history_text','itemid',37066),(24173,'history_uint','itemid',37066),(24174,'trends','itemid',37066),(24175,'trends_uint','itemid',37066),(24176,'events','itemid',37067),(24177,'history','itemid',37067),(24178,'history_log','itemid',37067),(24179,'history_str','itemid',37067),(24180,'history_text','itemid',37067),(24181,'history_uint','itemid',37067),(24182,'trends','itemid',37067),(24183,'trends_uint','itemid',37067),(24184,'events','itemid',37068),(24185,'history','itemid',37068),(24186,'history_log','itemid',37068),(24187,'history_str','itemid',37068),(24188,'history_text','itemid',37068),(24189,'history_uint','itemid',37068),(24190,'trends','itemid',37068),(24191,'trends_uint','itemid',37068),(24192,'events','itemid',37069),(24193,'history','itemid',37069),(24194,'history_log','itemid',37069),(24195,'history_str','itemid',37069),(24196,'history_text','itemid',37069),(24197,'history_uint','itemid',37069),(24198,'trends','itemid',37069),(24199,'trends_uint','itemid',37069),(24200,'events','itemid',37117),(24201,'history','itemid',37117),(24202,'history_log','itemid',37117),(24203,'history_str','itemid',37117),(24204,'history_text','itemid',37117),(24205,'history_uint','itemid',37117),(24206,'trends','itemid',37117),(24207,'trends_uint','itemid',37117),(24208,'events','itemid',37118),(24209,'history','itemid',37118),(24210,'history_log','itemid',37118),(24211,'history_str','itemid',37118),(24212,'history_text','itemid',37118),(24213,'history_uint','itemid',37118),(24214,'trends','itemid',37118),(24215,'trends_uint','itemid',37118),(24216,'events','itemid',37119),(24217,'history','itemid',37119),(24218,'history_log','itemid',37119),(24219,'history_str','itemid',37119),(24220,'history_text','itemid',37119),(24221,'history_uint','itemid',37119),(24222,'trends','itemid',37119),(24223,'trends_uint','itemid',37119),(24224,'events','itemid',37120),(24225,'history','itemid',37120),(24226,'history_log','itemid',37120),(24227,'history_str','itemid',37120),(24228,'history_text','itemid',37120),(24229,'history_uint','itemid',37120),(24230,'trends','itemid',37120),(24231,'trends_uint','itemid',37120),(24232,'events','itemid',37121),(24233,'history','itemid',37121),(24234,'history_log','itemid',37121),(24235,'history_str','itemid',37121),(24236,'history_text','itemid',37121),(24237,'history_uint','itemid',37121),(24238,'trends','itemid',37121),(24239,'trends_uint','itemid',37121),(24240,'events','itemid',37122),(24241,'history','itemid',37122),(24242,'history_log','itemid',37122),(24243,'history_str','itemid',37122),(24244,'history_text','itemid',37122),(24245,'history_uint','itemid',37122),(24246,'trends','itemid',37122),(24247,'trends_uint','itemid',37122),(24248,'events','itemid',37123),(24249,'history','itemid',37123),(24250,'history_log','itemid',37123),(24251,'history_str','itemid',37123),(24252,'history_text','itemid',37123),(24253,'history_uint','itemid',37123),(24254,'trends','itemid',37123),(24255,'trends_uint','itemid',37123),(24256,'events','itemid',37171),(24257,'history','itemid',37171),(24258,'history_log','itemid',37171),(24259,'history_str','itemid',37171),(24260,'history_text','itemid',37171),(24261,'history_uint','itemid',37171),(24262,'trends','itemid',37171),(24263,'trends_uint','itemid',37171),(24264,'events','itemid',37172),(24265,'history','itemid',37172),(24266,'history_log','itemid',37172),(24267,'history_str','itemid',37172),(24268,'history_text','itemid',37172),(24269,'history_uint','itemid',37172),(24270,'trends','itemid',37172),(24271,'trends_uint','itemid',37172),(24272,'events','itemid',37173),(24273,'history','itemid',37173),(24274,'history_log','itemid',37173),(24275,'history_str','itemid',37173),(24276,'history_text','itemid',37173),(24277,'history_uint','itemid',37173),(24278,'trends','itemid',37173),(24279,'trends_uint','itemid',37173),(24280,'events','itemid',37174),(24281,'history','itemid',37174),(24282,'history_log','itemid',37174),(24283,'history_str','itemid',37174),(24284,'history_text','itemid',37174),(24285,'history_uint','itemid',37174),(24286,'trends','itemid',37174),(24287,'trends_uint','itemid',37174),(24288,'events','itemid',37175),(24289,'history','itemid',37175),(24290,'history_log','itemid',37175),(24291,'history_str','itemid',37175),(24292,'history_text','itemid',37175),(24293,'history_uint','itemid',37175),(24294,'trends','itemid',37175),(24295,'trends_uint','itemid',37175),(24296,'events','itemid',37176),(24297,'history','itemid',37176),(24298,'history_log','itemid',37176),(24299,'history_str','itemid',37176),(24300,'history_text','itemid',37176),(24301,'history_uint','itemid',37176),(24302,'trends','itemid',37176),(24303,'trends_uint','itemid',37176),(24304,'events','itemid',37177),(24305,'history','itemid',37177),(24306,'history_log','itemid',37177),(24307,'history_str','itemid',37177),(24308,'history_text','itemid',37177),(24309,'history_uint','itemid',37177),(24310,'trends','itemid',37177),(24311,'trends_uint','itemid',37177),(24312,'events','itemid',37225),(24313,'history','itemid',37225),(24314,'history_log','itemid',37225),(24315,'history_str','itemid',37225),(24316,'history_text','itemid',37225),(24317,'history_uint','itemid',37225),(24318,'trends','itemid',37225),(24319,'trends_uint','itemid',37225),(24320,'events','itemid',37226),(24321,'history','itemid',37226),(24322,'history_log','itemid',37226),(24323,'history_str','itemid',37226),(24324,'history_text','itemid',37226),(24325,'history_uint','itemid',37226),(24326,'trends','itemid',37226),(24327,'trends_uint','itemid',37226),(24328,'events','itemid',37227),(24329,'history','itemid',37227),(24330,'history_log','itemid',37227),(24331,'history_str','itemid',37227),(24332,'history_text','itemid',37227),(24333,'history_uint','itemid',37227),(24334,'trends','itemid',37227),(24335,'trends_uint','itemid',37227),(24336,'events','itemid',37228),(24337,'history','itemid',37228),(24338,'history_log','itemid',37228),(24339,'history_str','itemid',37228),(24340,'history_text','itemid',37228),(24341,'history_uint','itemid',37228),(24342,'trends','itemid',37228),(24343,'trends_uint','itemid',37228),(24344,'events','itemid',37229),(24345,'history','itemid',37229),(24346,'history_log','itemid',37229),(24347,'history_str','itemid',37229),(24348,'history_text','itemid',37229),(24349,'history_uint','itemid',37229),(24350,'trends','itemid',37229),(24351,'trends_uint','itemid',37229),(24352,'events','itemid',37230),(24353,'history','itemid',37230),(24354,'history_log','itemid',37230),(24355,'history_str','itemid',37230),(24356,'history_text','itemid',37230),(24357,'history_uint','itemid',37230),(24358,'trends','itemid',37230),(24359,'trends_uint','itemid',37230),(24360,'events','itemid',37231),(24361,'history','itemid',37231),(24362,'history_log','itemid',37231),(24363,'history_str','itemid',37231),(24364,'history_text','itemid',37231),(24365,'history_uint','itemid',37231),(24366,'trends','itemid',37231),(24367,'trends_uint','itemid',37231),(24368,'events','itemid',37279),(24369,'history','itemid',37279),(24370,'history_log','itemid',37279),(24371,'history_str','itemid',37279),(24372,'history_text','itemid',37279),(24373,'history_uint','itemid',37279),(24374,'trends','itemid',37279),(24375,'trends_uint','itemid',37279),(24376,'events','itemid',37280),(24377,'history','itemid',37280),(24378,'history_log','itemid',37280),(24379,'history_str','itemid',37280),(24380,'history_text','itemid',37280),(24381,'history_uint','itemid',37280),(24382,'trends','itemid',37280),(24383,'trends_uint','itemid',37280),(24384,'events','itemid',37281),(24385,'history','itemid',37281),(24386,'history_log','itemid',37281),(24387,'history_str','itemid',37281),(24388,'history_text','itemid',37281),(24389,'history_uint','itemid',37281),(24390,'trends','itemid',37281),(24391,'trends_uint','itemid',37281),(24392,'events','itemid',37282),(24393,'history','itemid',37282),(24394,'history_log','itemid',37282),(24395,'history_str','itemid',37282),(24396,'history_text','itemid',37282),(24397,'history_uint','itemid',37282),(24398,'trends','itemid',37282),(24399,'trends_uint','itemid',37282),(24400,'events','itemid',37283),(24401,'history','itemid',37283),(24402,'history_log','itemid',37283),(24403,'history_str','itemid',37283),(24404,'history_text','itemid',37283),(24405,'history_uint','itemid',37283),(24406,'trends','itemid',37283),(24407,'trends_uint','itemid',37283),(24408,'events','itemid',37284),(24409,'history','itemid',37284),(24410,'history_log','itemid',37284),(24411,'history_str','itemid',37284),(24412,'history_text','itemid',37284),(24413,'history_uint','itemid',37284),(24414,'trends','itemid',37284),(24415,'trends_uint','itemid',37284),(24416,'events','itemid',37285),(24417,'history','itemid',37285),(24418,'history_log','itemid',37285),(24419,'history_str','itemid',37285),(24420,'history_text','itemid',37285),(24421,'history_uint','itemid',37285),(24422,'trends','itemid',37285),(24423,'trends_uint','itemid',37285),(24424,'events','itemid',37333),(24425,'history','itemid',37333),(24426,'history_log','itemid',37333),(24427,'history_str','itemid',37333),(24428,'history_text','itemid',37333),(24429,'history_uint','itemid',37333),(24430,'trends','itemid',37333),(24431,'trends_uint','itemid',37333),(24432,'events','itemid',37334),(24433,'history','itemid',37334),(24434,'history_log','itemid',37334),(24435,'history_str','itemid',37334),(24436,'history_text','itemid',37334),(24437,'history_uint','itemid',37334),(24438,'trends','itemid',37334),(24439,'trends_uint','itemid',37334),(24440,'events','itemid',37335),(24441,'history','itemid',37335),(24442,'history_log','itemid',37335),(24443,'history_str','itemid',37335),(24444,'history_text','itemid',37335),(24445,'history_uint','itemid',37335),(24446,'trends','itemid',37335),(24447,'trends_uint','itemid',37335),(24448,'events','itemid',37336),(24449,'history','itemid',37336),(24450,'history_log','itemid',37336),(24451,'history_str','itemid',37336),(24452,'history_text','itemid',37336),(24453,'history_uint','itemid',37336),(24454,'trends','itemid',37336),(24455,'trends_uint','itemid',37336),(24456,'events','itemid',37337),(24457,'history','itemid',37337),(24458,'history_log','itemid',37337),(24459,'history_str','itemid',37337),(24460,'history_text','itemid',37337),(24461,'history_uint','itemid',37337),(24462,'trends','itemid',37337),(24463,'trends_uint','itemid',37337),(24464,'events','itemid',37338),(24465,'history','itemid',37338),(24466,'history_log','itemid',37338),(24467,'history_str','itemid',37338),(24468,'history_text','itemid',37338),(24469,'history_uint','itemid',37338),(24470,'trends','itemid',37338),(24471,'trends_uint','itemid',37338),(24472,'events','itemid',37339),(24473,'history','itemid',37339),(24474,'history_log','itemid',37339),(24475,'history_str','itemid',37339),(24476,'history_text','itemid',37339),(24477,'history_uint','itemid',37339),(24478,'trends','itemid',37339),(24479,'trends_uint','itemid',37339),(24480,'events','itemid',37387),(24481,'history','itemid',37387),(24482,'history_log','itemid',37387),(24483,'history_str','itemid',37387),(24484,'history_text','itemid',37387),(24485,'history_uint','itemid',37387),(24486,'trends','itemid',37387),(24487,'trends_uint','itemid',37387),(24488,'events','itemid',37388),(24489,'history','itemid',37388),(24490,'history_log','itemid',37388),(24491,'history_str','itemid',37388),(24492,'history_text','itemid',37388),(24493,'history_uint','itemid',37388),(24494,'trends','itemid',37388),(24495,'trends_uint','itemid',37388),(24496,'events','itemid',37389),(24497,'history','itemid',37389),(24498,'history_log','itemid',37389),(24499,'history_str','itemid',37389),(24500,'history_text','itemid',37389),(24501,'history_uint','itemid',37389),(24502,'trends','itemid',37389),(24503,'trends_uint','itemid',37389),(24504,'events','itemid',37390),(24505,'history','itemid',37390),(24506,'history_log','itemid',37390),(24507,'history_str','itemid',37390),(24508,'history_text','itemid',37390),(24509,'history_uint','itemid',37390),(24510,'trends','itemid',37390),(24511,'trends_uint','itemid',37390),(24512,'events','itemid',37391),(24513,'history','itemid',37391),(24514,'history_log','itemid',37391),(24515,'history_str','itemid',37391),(24516,'history_text','itemid',37391),(24517,'history_uint','itemid',37391),(24518,'trends','itemid',37391),(24519,'trends_uint','itemid',37391),(24520,'events','itemid',37392),(24521,'history','itemid',37392),(24522,'history_log','itemid',37392),(24523,'history_str','itemid',37392),(24524,'history_text','itemid',37392),(24525,'history_uint','itemid',37392),(24526,'trends','itemid',37392),(24527,'trends_uint','itemid',37392),(24528,'events','itemid',37393),(24529,'history','itemid',37393),(24530,'history_log','itemid',37393),(24531,'history_str','itemid',37393),(24532,'history_text','itemid',37393),(24533,'history_uint','itemid',37393),(24534,'trends','itemid',37393),(24535,'trends_uint','itemid',37393),(24536,'events','itemid',37441),(24537,'history','itemid',37441),(24538,'history_log','itemid',37441),(24539,'history_str','itemid',37441),(24540,'history_text','itemid',37441),(24541,'history_uint','itemid',37441),(24542,'trends','itemid',37441),(24543,'trends_uint','itemid',37441),(24544,'events','itemid',37442),(24545,'history','itemid',37442),(24546,'history_log','itemid',37442),(24547,'history_str','itemid',37442),(24548,'history_text','itemid',37442),(24549,'history_uint','itemid',37442),(24550,'trends','itemid',37442),(24551,'trends_uint','itemid',37442),(24552,'events','itemid',37443),(24553,'history','itemid',37443),(24554,'history_log','itemid',37443),(24555,'history_str','itemid',37443),(24556,'history_text','itemid',37443),(24557,'history_uint','itemid',37443),(24558,'trends','itemid',37443),(24559,'trends_uint','itemid',37443),(24560,'events','itemid',37444),(24561,'history','itemid',37444),(24562,'history_log','itemid',37444),(24563,'history_str','itemid',37444),(24564,'history_text','itemid',37444),(24565,'history_uint','itemid',37444),(24566,'trends','itemid',37444),(24567,'trends_uint','itemid',37444),(24568,'events','itemid',37445),(24569,'history','itemid',37445),(24570,'history_log','itemid',37445),(24571,'history_str','itemid',37445),(24572,'history_text','itemid',37445),(24573,'history_uint','itemid',37445),(24574,'trends','itemid',37445),(24575,'trends_uint','itemid',37445),(24576,'events','itemid',37446),(24577,'history','itemid',37446),(24578,'history_log','itemid',37446),(24579,'history_str','itemid',37446),(24580,'history_text','itemid',37446),(24581,'history_uint','itemid',37446),(24582,'trends','itemid',37446),(24583,'trends_uint','itemid',37446),(24584,'events','itemid',37447),(24585,'history','itemid',37447),(24586,'history_log','itemid',37447),(24587,'history_str','itemid',37447),(24588,'history_text','itemid',37447),(24589,'history_uint','itemid',37447),(24590,'trends','itemid',37447),(24591,'trends_uint','itemid',37447),(24592,'events','itemid',37495),(24593,'history','itemid',37495),(24594,'history_log','itemid',37495),(24595,'history_str','itemid',37495),(24596,'history_text','itemid',37495),(24597,'history_uint','itemid',37495),(24598,'trends','itemid',37495),(24599,'trends_uint','itemid',37495),(24600,'events','itemid',37496),(24601,'history','itemid',37496),(24602,'history_log','itemid',37496),(24603,'history_str','itemid',37496),(24604,'history_text','itemid',37496),(24605,'history_uint','itemid',37496),(24606,'trends','itemid',37496),(24607,'trends_uint','itemid',37496),(24608,'events','itemid',37497),(24609,'history','itemid',37497),(24610,'history_log','itemid',37497),(24611,'history_str','itemid',37497),(24612,'history_text','itemid',37497),(24613,'history_uint','itemid',37497),(24614,'trends','itemid',37497),(24615,'trends_uint','itemid',37497),(24616,'events','itemid',37498),(24617,'history','itemid',37498),(24618,'history_log','itemid',37498),(24619,'history_str','itemid',37498),(24620,'history_text','itemid',37498),(24621,'history_uint','itemid',37498),(24622,'trends','itemid',37498),(24623,'trends_uint','itemid',37498),(24624,'events','itemid',37499),(24625,'history','itemid',37499),(24626,'history_log','itemid',37499),(24627,'history_str','itemid',37499),(24628,'history_text','itemid',37499),(24629,'history_uint','itemid',37499),(24630,'trends','itemid',37499),(24631,'trends_uint','itemid',37499),(24632,'events','itemid',37500),(24633,'history','itemid',37500),(24634,'history_log','itemid',37500),(24635,'history_str','itemid',37500),(24636,'history_text','itemid',37500),(24637,'history_uint','itemid',37500),(24638,'trends','itemid',37500),(24639,'trends_uint','itemid',37500),(24640,'events','itemid',37501),(24641,'history','itemid',37501),(24642,'history_log','itemid',37501),(24643,'history_str','itemid',37501),(24644,'history_text','itemid',37501),(24645,'history_uint','itemid',37501),(24646,'trends','itemid',37501),(24647,'trends_uint','itemid',37501),(24648,'events','itemid',37549),(24649,'history','itemid',37549),(24650,'history_log','itemid',37549),(24651,'history_str','itemid',37549),(24652,'history_text','itemid',37549),(24653,'history_uint','itemid',37549),(24654,'trends','itemid',37549),(24655,'trends_uint','itemid',37549),(24656,'events','itemid',37550),(24657,'history','itemid',37550),(24658,'history_log','itemid',37550),(24659,'history_str','itemid',37550),(24660,'history_text','itemid',37550),(24661,'history_uint','itemid',37550),(24662,'trends','itemid',37550),(24663,'trends_uint','itemid',37550),(24664,'events','itemid',37551),(24665,'history','itemid',37551),(24666,'history_log','itemid',37551),(24667,'history_str','itemid',37551),(24668,'history_text','itemid',37551),(24669,'history_uint','itemid',37551),(24670,'trends','itemid',37551),(24671,'trends_uint','itemid',37551),(24672,'events','itemid',37552),(24673,'history','itemid',37552),(24674,'history_log','itemid',37552),(24675,'history_str','itemid',37552),(24676,'history_text','itemid',37552),(24677,'history_uint','itemid',37552),(24678,'trends','itemid',37552),(24679,'trends_uint','itemid',37552),(24680,'events','itemid',37553),(24681,'history','itemid',37553),(24682,'history_log','itemid',37553),(24683,'history_str','itemid',37553),(24684,'history_text','itemid',37553),(24685,'history_uint','itemid',37553),(24686,'trends','itemid',37553),(24687,'trends_uint','itemid',37553),(24688,'events','itemid',37554),(24689,'history','itemid',37554),(24690,'history_log','itemid',37554),(24691,'history_str','itemid',37554),(24692,'history_text','itemid',37554),(24693,'history_uint','itemid',37554),(24694,'trends','itemid',37554),(24695,'trends_uint','itemid',37554),(24696,'events','itemid',37555),(24697,'history','itemid',37555),(24698,'history_log','itemid',37555),(24699,'history_str','itemid',37555),(24700,'history_text','itemid',37555),(24701,'history_uint','itemid',37555),(24702,'trends','itemid',37555),(24703,'trends_uint','itemid',37555),(24704,'events','itemid',37603),(24705,'history','itemid',37603),(24706,'history_log','itemid',37603),(24707,'history_str','itemid',37603),(24708,'history_text','itemid',37603),(24709,'history_uint','itemid',37603),(24710,'trends','itemid',37603),(24711,'trends_uint','itemid',37603),(24712,'events','itemid',37604),(24713,'history','itemid',37604),(24714,'history_log','itemid',37604),(24715,'history_str','itemid',37604),(24716,'history_text','itemid',37604),(24717,'history_uint','itemid',37604),(24718,'trends','itemid',37604),(24719,'trends_uint','itemid',37604),(24720,'events','itemid',37605),(24721,'history','itemid',37605),(24722,'history_log','itemid',37605),(24723,'history_str','itemid',37605),(24724,'history_text','itemid',37605),(24725,'history_uint','itemid',37605),(24726,'trends','itemid',37605),(24727,'trends_uint','itemid',37605),(24728,'events','itemid',37606),(24729,'history','itemid',37606),(24730,'history_log','itemid',37606),(24731,'history_str','itemid',37606),(24732,'history_text','itemid',37606),(24733,'history_uint','itemid',37606),(24734,'trends','itemid',37606),(24735,'trends_uint','itemid',37606),(24736,'events','itemid',37607),(24737,'history','itemid',37607),(24738,'history_log','itemid',37607),(24739,'history_str','itemid',37607),(24740,'history_text','itemid',37607),(24741,'history_uint','itemid',37607),(24742,'trends','itemid',37607),(24743,'trends_uint','itemid',37607),(24744,'events','itemid',37608),(24745,'history','itemid',37608),(24746,'history_log','itemid',37608),(24747,'history_str','itemid',37608),(24748,'history_text','itemid',37608),(24749,'history_uint','itemid',37608),(24750,'trends','itemid',37608),(24751,'trends_uint','itemid',37608),(24752,'events','itemid',37609),(24753,'history','itemid',37609),(24754,'history_log','itemid',37609),(24755,'history_str','itemid',37609),(24756,'history_text','itemid',37609),(24757,'history_uint','itemid',37609),(24758,'trends','itemid',37609),(24759,'trends_uint','itemid',37609),(24760,'events','itemid',37657),(24761,'history','itemid',37657),(24762,'history_log','itemid',37657),(24763,'history_str','itemid',37657),(24764,'history_text','itemid',37657),(24765,'history_uint','itemid',37657),(24766,'trends','itemid',37657),(24767,'trends_uint','itemid',37657),(24768,'events','itemid',37658),(24769,'history','itemid',37658),(24770,'history_log','itemid',37658),(24771,'history_str','itemid',37658),(24772,'history_text','itemid',37658),(24773,'history_uint','itemid',37658),(24774,'trends','itemid',37658),(24775,'trends_uint','itemid',37658),(24776,'events','itemid',37659),(24777,'history','itemid',37659),(24778,'history_log','itemid',37659),(24779,'history_str','itemid',37659),(24780,'history_text','itemid',37659),(24781,'history_uint','itemid',37659),(24782,'trends','itemid',37659),(24783,'trends_uint','itemid',37659),(24784,'events','itemid',37660),(24785,'history','itemid',37660),(24786,'history_log','itemid',37660),(24787,'history_str','itemid',37660),(24788,'history_text','itemid',37660),(24789,'history_uint','itemid',37660),(24790,'trends','itemid',37660),(24791,'trends_uint','itemid',37660),(24792,'events','itemid',37661),(24793,'history','itemid',37661),(24794,'history_log','itemid',37661),(24795,'history_str','itemid',37661),(24796,'history_text','itemid',37661),(24797,'history_uint','itemid',37661),(24798,'trends','itemid',37661),(24799,'trends_uint','itemid',37661),(24800,'events','itemid',37662),(24801,'history','itemid',37662),(24802,'history_log','itemid',37662),(24803,'history_str','itemid',37662),(24804,'history_text','itemid',37662),(24805,'history_uint','itemid',37662),(24806,'trends','itemid',37662),(24807,'trends_uint','itemid',37662),(24808,'events','itemid',37663),(24809,'history','itemid',37663),(24810,'history_log','itemid',37663),(24811,'history_str','itemid',37663),(24812,'history_text','itemid',37663),(24813,'history_uint','itemid',37663),(24814,'trends','itemid',37663),(24815,'trends_uint','itemid',37663),(24816,'events','itemid',37711),(24817,'history','itemid',37711),(24818,'history_log','itemid',37711),(24819,'history_str','itemid',37711),(24820,'history_text','itemid',37711),(24821,'history_uint','itemid',37711),(24822,'trends','itemid',37711),(24823,'trends_uint','itemid',37711),(24824,'events','itemid',37712),(24825,'history','itemid',37712),(24826,'history_log','itemid',37712),(24827,'history_str','itemid',37712),(24828,'history_text','itemid',37712),(24829,'history_uint','itemid',37712),(24830,'trends','itemid',37712),(24831,'trends_uint','itemid',37712),(24832,'events','itemid',37713),(24833,'history','itemid',37713),(24834,'history_log','itemid',37713),(24835,'history_str','itemid',37713),(24836,'history_text','itemid',37713),(24837,'history_uint','itemid',37713),(24838,'trends','itemid',37713),(24839,'trends_uint','itemid',37713),(24840,'events','itemid',37714),(24841,'history','itemid',37714),(24842,'history_log','itemid',37714),(24843,'history_str','itemid',37714),(24844,'history_text','itemid',37714),(24845,'history_uint','itemid',37714),(24846,'trends','itemid',37714),(24847,'trends_uint','itemid',37714),(24848,'events','itemid',37715),(24849,'history','itemid',37715),(24850,'history_log','itemid',37715),(24851,'history_str','itemid',37715),(24852,'history_text','itemid',37715),(24853,'history_uint','itemid',37715),(24854,'trends','itemid',37715),(24855,'trends_uint','itemid',37715),(24856,'events','itemid',37716),(24857,'history','itemid',37716),(24858,'history_log','itemid',37716),(24859,'history_str','itemid',37716),(24860,'history_text','itemid',37716),(24861,'history_uint','itemid',37716),(24862,'trends','itemid',37716),(24863,'trends_uint','itemid',37716),(24864,'events','itemid',37717),(24865,'history','itemid',37717),(24866,'history_log','itemid',37717),(24867,'history_str','itemid',37717),(24868,'history_text','itemid',37717),(24869,'history_uint','itemid',37717),(24870,'trends','itemid',37717),(24871,'trends_uint','itemid',37717),(24872,'events','itemid',37765),(24873,'history','itemid',37765),(24874,'history_log','itemid',37765),(24875,'history_str','itemid',37765),(24876,'history_text','itemid',37765),(24877,'history_uint','itemid',37765),(24878,'trends','itemid',37765),(24879,'trends_uint','itemid',37765),(24880,'events','itemid',37766),(24881,'history','itemid',37766),(24882,'history_log','itemid',37766),(24883,'history_str','itemid',37766),(24884,'history_text','itemid',37766),(24885,'history_uint','itemid',37766),(24886,'trends','itemid',37766),(24887,'trends_uint','itemid',37766),(24888,'events','itemid',37767),(24889,'history','itemid',37767),(24890,'history_log','itemid',37767),(24891,'history_str','itemid',37767),(24892,'history_text','itemid',37767),(24893,'history_uint','itemid',37767),(24894,'trends','itemid',37767),(24895,'trends_uint','itemid',37767),(24896,'events','itemid',37768),(24897,'history','itemid',37768),(24898,'history_log','itemid',37768),(24899,'history_str','itemid',37768),(24900,'history_text','itemid',37768),(24901,'history_uint','itemid',37768),(24902,'trends','itemid',37768),(24903,'trends_uint','itemid',37768),(24904,'events','itemid',37769),(24905,'history','itemid',37769),(24906,'history_log','itemid',37769),(24907,'history_str','itemid',37769),(24908,'history_text','itemid',37769),(24909,'history_uint','itemid',37769),(24910,'trends','itemid',37769),(24911,'trends_uint','itemid',37769),(24912,'events','itemid',37770),(24913,'history','itemid',37770),(24914,'history_log','itemid',37770),(24915,'history_str','itemid',37770),(24916,'history_text','itemid',37770),(24917,'history_uint','itemid',37770),(24918,'trends','itemid',37770),(24919,'trends_uint','itemid',37770),(24920,'events','itemid',37771),(24921,'history','itemid',37771),(24922,'history_log','itemid',37771),(24923,'history_str','itemid',37771),(24924,'history_text','itemid',37771),(24925,'history_uint','itemid',37771),(24926,'trends','itemid',37771),(24927,'trends_uint','itemid',37771),(24928,'events','itemid',37819),(24929,'history','itemid',37819),(24930,'history_log','itemid',37819),(24931,'history_str','itemid',37819),(24932,'history_text','itemid',37819),(24933,'history_uint','itemid',37819),(24934,'trends','itemid',37819),(24935,'trends_uint','itemid',37819),(24936,'events','itemid',37820),(24937,'history','itemid',37820),(24938,'history_log','itemid',37820),(24939,'history_str','itemid',37820),(24940,'history_text','itemid',37820),(24941,'history_uint','itemid',37820),(24942,'trends','itemid',37820),(24943,'trends_uint','itemid',37820),(24944,'events','itemid',37821),(24945,'history','itemid',37821),(24946,'history_log','itemid',37821),(24947,'history_str','itemid',37821),(24948,'history_text','itemid',37821),(24949,'history_uint','itemid',37821),(24950,'trends','itemid',37821),(24951,'trends_uint','itemid',37821),(24952,'events','itemid',37822),(24953,'history','itemid',37822),(24954,'history_log','itemid',37822),(24955,'history_str','itemid',37822),(24956,'history_text','itemid',37822),(24957,'history_uint','itemid',37822),(24958,'trends','itemid',37822),(24959,'trends_uint','itemid',37822),(24960,'events','itemid',37823),(24961,'history','itemid',37823),(24962,'history_log','itemid',37823),(24963,'history_str','itemid',37823),(24964,'history_text','itemid',37823),(24965,'history_uint','itemid',37823),(24966,'trends','itemid',37823),(24967,'trends_uint','itemid',37823),(24968,'events','itemid',37824),(24969,'history','itemid',37824),(24970,'history_log','itemid',37824),(24971,'history_str','itemid',37824),(24972,'history_text','itemid',37824),(24973,'history_uint','itemid',37824),(24974,'trends','itemid',37824),(24975,'trends_uint','itemid',37824),(24976,'events','itemid',37825),(24977,'history','itemid',37825),(24978,'history_log','itemid',37825),(24979,'history_str','itemid',37825),(24980,'history_text','itemid',37825),(24981,'history_uint','itemid',37825),(24982,'trends','itemid',37825),(24983,'trends_uint','itemid',37825),(24984,'events','itemid',37873),(24985,'history','itemid',37873),(24986,'history_log','itemid',37873),(24987,'history_str','itemid',37873),(24988,'history_text','itemid',37873),(24989,'history_uint','itemid',37873),(24990,'trends','itemid',37873),(24991,'trends_uint','itemid',37873),(24992,'events','itemid',37874),(24993,'history','itemid',37874),(24994,'history_log','itemid',37874),(24995,'history_str','itemid',37874),(24996,'history_text','itemid',37874),(24997,'history_uint','itemid',37874),(24998,'trends','itemid',37874),(24999,'trends_uint','itemid',37874),(25000,'events','itemid',37875),(25001,'history','itemid',37875),(25002,'history_log','itemid',37875),(25003,'history_str','itemid',37875),(25004,'history_text','itemid',37875),(25005,'history_uint','itemid',37875),(25006,'trends','itemid',37875),(25007,'trends_uint','itemid',37875),(25008,'events','itemid',37876),(25009,'history','itemid',37876),(25010,'history_log','itemid',37876),(25011,'history_str','itemid',37876),(25012,'history_text','itemid',37876),(25013,'history_uint','itemid',37876),(25014,'trends','itemid',37876),(25015,'trends_uint','itemid',37876),(25016,'events','itemid',37877),(25017,'history','itemid',37877),(25018,'history_log','itemid',37877),(25019,'history_str','itemid',37877),(25020,'history_text','itemid',37877),(25021,'history_uint','itemid',37877),(25022,'trends','itemid',37877),(25023,'trends_uint','itemid',37877),(25024,'events','itemid',37878),(25025,'history','itemid',37878),(25026,'history_log','itemid',37878),(25027,'history_str','itemid',37878),(25028,'history_text','itemid',37878),(25029,'history_uint','itemid',37878),(25030,'trends','itemid',37878),(25031,'trends_uint','itemid',37878),(25032,'events','itemid',37879),(25033,'history','itemid',37879),(25034,'history_log','itemid',37879),(25035,'history_str','itemid',37879),(25036,'history_text','itemid',37879),(25037,'history_uint','itemid',37879),(25038,'trends','itemid',37879),(25039,'trends_uint','itemid',37879),(25040,'events','itemid',37927),(25041,'history','itemid',37927),(25042,'history_log','itemid',37927),(25043,'history_str','itemid',37927),(25044,'history_text','itemid',37927),(25045,'history_uint','itemid',37927),(25046,'trends','itemid',37927),(25047,'trends_uint','itemid',37927),(25048,'events','itemid',37928),(25049,'history','itemid',37928),(25050,'history_log','itemid',37928),(25051,'history_str','itemid',37928),(25052,'history_text','itemid',37928),(25053,'history_uint','itemid',37928),(25054,'trends','itemid',37928),(25055,'trends_uint','itemid',37928),(25056,'events','itemid',37929),(25057,'history','itemid',37929),(25058,'history_log','itemid',37929),(25059,'history_str','itemid',37929),(25060,'history_text','itemid',37929),(25061,'history_uint','itemid',37929),(25062,'trends','itemid',37929),(25063,'trends_uint','itemid',37929),(25064,'events','itemid',37930),(25065,'history','itemid',37930),(25066,'history_log','itemid',37930),(25067,'history_str','itemid',37930),(25068,'history_text','itemid',37930),(25069,'history_uint','itemid',37930),(25070,'trends','itemid',37930),(25071,'trends_uint','itemid',37930),(25072,'events','itemid',37931),(25073,'history','itemid',37931),(25074,'history_log','itemid',37931),(25075,'history_str','itemid',37931),(25076,'history_text','itemid',37931),(25077,'history_uint','itemid',37931),(25078,'trends','itemid',37931),(25079,'trends_uint','itemid',37931),(25080,'events','itemid',37932),(25081,'history','itemid',37932),(25082,'history_log','itemid',37932),(25083,'history_str','itemid',37932),(25084,'history_text','itemid',37932),(25085,'history_uint','itemid',37932),(25086,'trends','itemid',37932),(25087,'trends_uint','itemid',37932),(25088,'events','itemid',37933),(25089,'history','itemid',37933),(25090,'history_log','itemid',37933),(25091,'history_str','itemid',37933),(25092,'history_text','itemid',37933),(25093,'history_uint','itemid',37933),(25094,'trends','itemid',37933),(25095,'trends_uint','itemid',37933),(25096,'events','itemid',37981),(25097,'history','itemid',37981),(25098,'history_log','itemid',37981),(25099,'history_str','itemid',37981),(25100,'history_text','itemid',37981),(25101,'history_uint','itemid',37981),(25102,'trends','itemid',37981),(25103,'trends_uint','itemid',37981),(25104,'events','itemid',37982),(25105,'history','itemid',37982),(25106,'history_log','itemid',37982),(25107,'history_str','itemid',37982),(25108,'history_text','itemid',37982),(25109,'history_uint','itemid',37982),(25110,'trends','itemid',37982),(25111,'trends_uint','itemid',37982),(25112,'events','itemid',37983),(25113,'history','itemid',37983),(25114,'history_log','itemid',37983),(25115,'history_str','itemid',37983),(25116,'history_text','itemid',37983),(25117,'history_uint','itemid',37983),(25118,'trends','itemid',37983),(25119,'trends_uint','itemid',37983),(25120,'events','itemid',37984),(25121,'history','itemid',37984),(25122,'history_log','itemid',37984),(25123,'history_str','itemid',37984),(25124,'history_text','itemid',37984),(25125,'history_uint','itemid',37984),(25126,'trends','itemid',37984),(25127,'trends_uint','itemid',37984),(25128,'events','itemid',37985),(25129,'history','itemid',37985),(25130,'history_log','itemid',37985),(25131,'history_str','itemid',37985),(25132,'history_text','itemid',37985),(25133,'history_uint','itemid',37985),(25134,'trends','itemid',37985),(25135,'trends_uint','itemid',37985),(25136,'events','itemid',37986),(25137,'history','itemid',37986),(25138,'history_log','itemid',37986),(25139,'history_str','itemid',37986),(25140,'history_text','itemid',37986),(25141,'history_uint','itemid',37986),(25142,'trends','itemid',37986),(25143,'trends_uint','itemid',37986),(25144,'events','itemid',37987),(25145,'history','itemid',37987),(25146,'history_log','itemid',37987),(25147,'history_str','itemid',37987),(25148,'history_text','itemid',37987),(25149,'history_uint','itemid',37987),(25150,'trends','itemid',37987),(25151,'trends_uint','itemid',37987),(25152,'events','itemid',38035),(25153,'history','itemid',38035),(25154,'history_log','itemid',38035),(25155,'history_str','itemid',38035),(25156,'history_text','itemid',38035),(25157,'history_uint','itemid',38035),(25158,'trends','itemid',38035),(25159,'trends_uint','itemid',38035),(25160,'events','itemid',38036),(25161,'history','itemid',38036),(25162,'history_log','itemid',38036),(25163,'history_str','itemid',38036),(25164,'history_text','itemid',38036),(25165,'history_uint','itemid',38036),(25166,'trends','itemid',38036),(25167,'trends_uint','itemid',38036),(25168,'events','itemid',38037),(25169,'history','itemid',38037),(25170,'history_log','itemid',38037),(25171,'history_str','itemid',38037),(25172,'history_text','itemid',38037),(25173,'history_uint','itemid',38037),(25174,'trends','itemid',38037),(25175,'trends_uint','itemid',38037),(25176,'events','itemid',38038),(25177,'history','itemid',38038),(25178,'history_log','itemid',38038),(25179,'history_str','itemid',38038),(25180,'history_text','itemid',38038),(25181,'history_uint','itemid',38038),(25182,'trends','itemid',38038),(25183,'trends_uint','itemid',38038),(25184,'events','itemid',38039),(25185,'history','itemid',38039),(25186,'history_log','itemid',38039),(25187,'history_str','itemid',38039),(25188,'history_text','itemid',38039),(25189,'history_uint','itemid',38039),(25190,'trends','itemid',38039),(25191,'trends_uint','itemid',38039),(25192,'events','itemid',38040),(25193,'history','itemid',38040),(25194,'history_log','itemid',38040),(25195,'history_str','itemid',38040),(25196,'history_text','itemid',38040),(25197,'history_uint','itemid',38040),(25198,'trends','itemid',38040),(25199,'trends_uint','itemid',38040),(25200,'events','itemid',38041),(25201,'history','itemid',38041),(25202,'history_log','itemid',38041),(25203,'history_str','itemid',38041),(25204,'history_text','itemid',38041),(25205,'history_uint','itemid',38041),(25206,'trends','itemid',38041),(25207,'trends_uint','itemid',38041),(25208,'events','itemid',38089),(25209,'history','itemid',38089),(25210,'history_log','itemid',38089),(25211,'history_str','itemid',38089),(25212,'history_text','itemid',38089),(25213,'history_uint','itemid',38089),(25214,'trends','itemid',38089),(25215,'trends_uint','itemid',38089),(25216,'events','itemid',38090),(25217,'history','itemid',38090),(25218,'history_log','itemid',38090),(25219,'history_str','itemid',38090),(25220,'history_text','itemid',38090),(25221,'history_uint','itemid',38090),(25222,'trends','itemid',38090),(25223,'trends_uint','itemid',38090),(25224,'events','itemid',38091),(25225,'history','itemid',38091),(25226,'history_log','itemid',38091),(25227,'history_str','itemid',38091),(25228,'history_text','itemid',38091),(25229,'history_uint','itemid',38091),(25230,'trends','itemid',38091),(25231,'trends_uint','itemid',38091),(25232,'events','itemid',38092),(25233,'history','itemid',38092),(25234,'history_log','itemid',38092),(25235,'history_str','itemid',38092),(25236,'history_text','itemid',38092),(25237,'history_uint','itemid',38092),(25238,'trends','itemid',38092),(25239,'trends_uint','itemid',38092),(25240,'events','itemid',38093),(25241,'history','itemid',38093),(25242,'history_log','itemid',38093),(25243,'history_str','itemid',38093),(25244,'history_text','itemid',38093),(25245,'history_uint','itemid',38093),(25246,'trends','itemid',38093),(25247,'trends_uint','itemid',38093),(25248,'events','itemid',38094),(25249,'history','itemid',38094),(25250,'history_log','itemid',38094),(25251,'history_str','itemid',38094),(25252,'history_text','itemid',38094),(25253,'history_uint','itemid',38094),(25254,'trends','itemid',38094),(25255,'trends_uint','itemid',38094),(25256,'events','itemid',38095),(25257,'history','itemid',38095),(25258,'history_log','itemid',38095),(25259,'history_str','itemid',38095),(25260,'history_text','itemid',38095),(25261,'history_uint','itemid',38095),(25262,'trends','itemid',38095),(25263,'trends_uint','itemid',38095),(25264,'events','itemid',38143),(25265,'history','itemid',38143),(25266,'history_log','itemid',38143),(25267,'history_str','itemid',38143),(25268,'history_text','itemid',38143),(25269,'history_uint','itemid',38143),(25270,'trends','itemid',38143),(25271,'trends_uint','itemid',38143),(25272,'events','itemid',38144),(25273,'history','itemid',38144),(25274,'history_log','itemid',38144),(25275,'history_str','itemid',38144),(25276,'history_text','itemid',38144),(25277,'history_uint','itemid',38144),(25278,'trends','itemid',38144),(25279,'trends_uint','itemid',38144),(25280,'events','itemid',38145),(25281,'history','itemid',38145),(25282,'history_log','itemid',38145),(25283,'history_str','itemid',38145),(25284,'history_text','itemid',38145),(25285,'history_uint','itemid',38145),(25286,'trends','itemid',38145),(25287,'trends_uint','itemid',38145),(25288,'events','itemid',38146),(25289,'history','itemid',38146),(25290,'history_log','itemid',38146),(25291,'history_str','itemid',38146),(25292,'history_text','itemid',38146),(25293,'history_uint','itemid',38146),(25294,'trends','itemid',38146),(25295,'trends_uint','itemid',38146),(25296,'events','itemid',38147),(25297,'history','itemid',38147),(25298,'history_log','itemid',38147),(25299,'history_str','itemid',38147),(25300,'history_text','itemid',38147),(25301,'history_uint','itemid',38147),(25302,'trends','itemid',38147),(25303,'trends_uint','itemid',38147),(25304,'events','itemid',38148),(25305,'history','itemid',38148),(25306,'history_log','itemid',38148),(25307,'history_str','itemid',38148),(25308,'history_text','itemid',38148),(25309,'history_uint','itemid',38148),(25310,'trends','itemid',38148),(25311,'trends_uint','itemid',38148),(25312,'events','itemid',38149),(25313,'history','itemid',38149),(25314,'history_log','itemid',38149),(25315,'history_str','itemid',38149),(25316,'history_text','itemid',38149),(25317,'history_uint','itemid',38149),(25318,'trends','itemid',38149),(25319,'trends_uint','itemid',38149),(25320,'events','itemid',38197),(25321,'history','itemid',38197),(25322,'history_log','itemid',38197),(25323,'history_str','itemid',38197),(25324,'history_text','itemid',38197),(25325,'history_uint','itemid',38197),(25326,'trends','itemid',38197),(25327,'trends_uint','itemid',38197),(25328,'events','itemid',38198),(25329,'history','itemid',38198),(25330,'history_log','itemid',38198),(25331,'history_str','itemid',38198),(25332,'history_text','itemid',38198),(25333,'history_uint','itemid',38198),(25334,'trends','itemid',38198),(25335,'trends_uint','itemid',38198),(25336,'events','itemid',38199),(25337,'history','itemid',38199),(25338,'history_log','itemid',38199),(25339,'history_str','itemid',38199),(25340,'history_text','itemid',38199),(25341,'history_uint','itemid',38199),(25342,'trends','itemid',38199),(25343,'trends_uint','itemid',38199),(25344,'events','itemid',38200),(25345,'history','itemid',38200),(25346,'history_log','itemid',38200),(25347,'history_str','itemid',38200),(25348,'history_text','itemid',38200),(25349,'history_uint','itemid',38200),(25350,'trends','itemid',38200),(25351,'trends_uint','itemid',38200),(25352,'events','itemid',38201),(25353,'history','itemid',38201),(25354,'history_log','itemid',38201),(25355,'history_str','itemid',38201),(25356,'history_text','itemid',38201),(25357,'history_uint','itemid',38201),(25358,'trends','itemid',38201),(25359,'trends_uint','itemid',38201),(25360,'events','itemid',38202),(25361,'history','itemid',38202),(25362,'history_log','itemid',38202),(25363,'history_str','itemid',38202),(25364,'history_text','itemid',38202),(25365,'history_uint','itemid',38202),(25366,'trends','itemid',38202),(25367,'trends_uint','itemid',38202),(25368,'events','itemid',38203),(25369,'history','itemid',38203),(25370,'history_log','itemid',38203),(25371,'history_str','itemid',38203),(25372,'history_text','itemid',38203),(25373,'history_uint','itemid',38203),(25374,'trends','itemid',38203),(25375,'trends_uint','itemid',38203),(25376,'events','itemid',38251),(25377,'history','itemid',38251),(25378,'history_log','itemid',38251),(25379,'history_str','itemid',38251),(25380,'history_text','itemid',38251),(25381,'history_uint','itemid',38251),(25382,'trends','itemid',38251),(25383,'trends_uint','itemid',38251),(25384,'events','itemid',38252),(25385,'history','itemid',38252),(25386,'history_log','itemid',38252),(25387,'history_str','itemid',38252),(25388,'history_text','itemid',38252),(25389,'history_uint','itemid',38252),(25390,'trends','itemid',38252),(25391,'trends_uint','itemid',38252),(25392,'events','itemid',38253),(25393,'history','itemid',38253),(25394,'history_log','itemid',38253),(25395,'history_str','itemid',38253),(25396,'history_text','itemid',38253),(25397,'history_uint','itemid',38253),(25398,'trends','itemid',38253),(25399,'trends_uint','itemid',38253),(25400,'events','itemid',38254),(25401,'history','itemid',38254),(25402,'history_log','itemid',38254),(25403,'history_str','itemid',38254),(25404,'history_text','itemid',38254),(25405,'history_uint','itemid',38254),(25406,'trends','itemid',38254),(25407,'trends_uint','itemid',38254),(25408,'events','itemid',38255),(25409,'history','itemid',38255),(25410,'history_log','itemid',38255),(25411,'history_str','itemid',38255),(25412,'history_text','itemid',38255),(25413,'history_uint','itemid',38255),(25414,'trends','itemid',38255),(25415,'trends_uint','itemid',38255),(25416,'events','itemid',38256),(25417,'history','itemid',38256),(25418,'history_log','itemid',38256),(25419,'history_str','itemid',38256),(25420,'history_text','itemid',38256),(25421,'history_uint','itemid',38256),(25422,'trends','itemid',38256),(25423,'trends_uint','itemid',38256),(25424,'events','itemid',38257),(25425,'history','itemid',38257),(25426,'history_log','itemid',38257),(25427,'history_str','itemid',38257),(25428,'history_text','itemid',38257),(25429,'history_uint','itemid',38257),(25430,'trends','itemid',38257),(25431,'trends_uint','itemid',38257),(25432,'events','itemid',38305),(25433,'history','itemid',38305),(25434,'history_log','itemid',38305),(25435,'history_str','itemid',38305),(25436,'history_text','itemid',38305),(25437,'history_uint','itemid',38305),(25438,'trends','itemid',38305),(25439,'trends_uint','itemid',38305),(25440,'events','itemid',38306),(25441,'history','itemid',38306),(25442,'history_log','itemid',38306),(25443,'history_str','itemid',38306),(25444,'history_text','itemid',38306),(25445,'history_uint','itemid',38306),(25446,'trends','itemid',38306),(25447,'trends_uint','itemid',38306),(25448,'events','itemid',38307),(25449,'history','itemid',38307),(25450,'history_log','itemid',38307),(25451,'history_str','itemid',38307),(25452,'history_text','itemid',38307),(25453,'history_uint','itemid',38307),(25454,'trends','itemid',38307),(25455,'trends_uint','itemid',38307),(25456,'events','itemid',38308),(25457,'history','itemid',38308),(25458,'history_log','itemid',38308),(25459,'history_str','itemid',38308),(25460,'history_text','itemid',38308),(25461,'history_uint','itemid',38308),(25462,'trends','itemid',38308),(25463,'trends_uint','itemid',38308),(25464,'events','itemid',38309),(25465,'history','itemid',38309),(25466,'history_log','itemid',38309),(25467,'history_str','itemid',38309),(25468,'history_text','itemid',38309),(25469,'history_uint','itemid',38309),(25470,'trends','itemid',38309),(25471,'trends_uint','itemid',38309),(25472,'events','itemid',38310),(25473,'history','itemid',38310),(25474,'history_log','itemid',38310),(25475,'history_str','itemid',38310),(25476,'history_text','itemid',38310),(25477,'history_uint','itemid',38310),(25478,'trends','itemid',38310),(25479,'trends_uint','itemid',38310),(25480,'events','itemid',38311),(25481,'history','itemid',38311),(25482,'history_log','itemid',38311),(25483,'history_str','itemid',38311),(25484,'history_text','itemid',38311),(25485,'history_uint','itemid',38311),(25486,'trends','itemid',38311),(25487,'trends_uint','itemid',38311),(25488,'events','itemid',38359),(25489,'history','itemid',38359),(25490,'history_log','itemid',38359),(25491,'history_str','itemid',38359),(25492,'history_text','itemid',38359),(25493,'history_uint','itemid',38359),(25494,'trends','itemid',38359),(25495,'trends_uint','itemid',38359),(25496,'events','itemid',38360),(25497,'history','itemid',38360),(25498,'history_log','itemid',38360),(25499,'history_str','itemid',38360),(25500,'history_text','itemid',38360),(25501,'history_uint','itemid',38360),(25502,'trends','itemid',38360),(25503,'trends_uint','itemid',38360),(25504,'events','itemid',38361),(25505,'history','itemid',38361),(25506,'history_log','itemid',38361),(25507,'history_str','itemid',38361),(25508,'history_text','itemid',38361),(25509,'history_uint','itemid',38361),(25510,'trends','itemid',38361),(25511,'trends_uint','itemid',38361),(25512,'events','itemid',38362),(25513,'history','itemid',38362),(25514,'history_log','itemid',38362),(25515,'history_str','itemid',38362),(25516,'history_text','itemid',38362),(25517,'history_uint','itemid',38362),(25518,'trends','itemid',38362),(25519,'trends_uint','itemid',38362),(25520,'events','itemid',38363),(25521,'history','itemid',38363),(25522,'history_log','itemid',38363),(25523,'history_str','itemid',38363),(25524,'history_text','itemid',38363),(25525,'history_uint','itemid',38363),(25526,'trends','itemid',38363),(25527,'trends_uint','itemid',38363),(25528,'events','itemid',38364),(25529,'history','itemid',38364),(25530,'history_log','itemid',38364),(25531,'history_str','itemid',38364),(25532,'history_text','itemid',38364),(25533,'history_uint','itemid',38364),(25534,'trends','itemid',38364),(25535,'trends_uint','itemid',38364),(25536,'events','itemid',38365),(25537,'history','itemid',38365),(25538,'history_log','itemid',38365),(25539,'history_str','itemid',38365),(25540,'history_text','itemid',38365),(25541,'history_uint','itemid',38365),(25542,'trends','itemid',38365),(25543,'trends_uint','itemid',38365),(25544,'events','itemid',38413),(25545,'history','itemid',38413),(25546,'history_log','itemid',38413),(25547,'history_str','itemid',38413),(25548,'history_text','itemid',38413),(25549,'history_uint','itemid',38413),(25550,'trends','itemid',38413),(25551,'trends_uint','itemid',38413),(25552,'events','itemid',38414),(25553,'history','itemid',38414),(25554,'history_log','itemid',38414),(25555,'history_str','itemid',38414),(25556,'history_text','itemid',38414),(25557,'history_uint','itemid',38414),(25558,'trends','itemid',38414),(25559,'trends_uint','itemid',38414),(25560,'events','itemid',38415),(25561,'history','itemid',38415),(25562,'history_log','itemid',38415),(25563,'history_str','itemid',38415),(25564,'history_text','itemid',38415),(25565,'history_uint','itemid',38415),(25566,'trends','itemid',38415),(25567,'trends_uint','itemid',38415),(25568,'events','itemid',38416),(25569,'history','itemid',38416),(25570,'history_log','itemid',38416),(25571,'history_str','itemid',38416),(25572,'history_text','itemid',38416),(25573,'history_uint','itemid',38416),(25574,'trends','itemid',38416),(25575,'trends_uint','itemid',38416),(25576,'events','itemid',38417),(25577,'history','itemid',38417),(25578,'history_log','itemid',38417),(25579,'history_str','itemid',38417),(25580,'history_text','itemid',38417),(25581,'history_uint','itemid',38417),(25582,'trends','itemid',38417),(25583,'trends_uint','itemid',38417),(25584,'events','itemid',38418),(25585,'history','itemid',38418),(25586,'history_log','itemid',38418),(25587,'history_str','itemid',38418),(25588,'history_text','itemid',38418),(25589,'history_uint','itemid',38418),(25590,'trends','itemid',38418),(25591,'trends_uint','itemid',38418),(25592,'events','itemid',38419),(25593,'history','itemid',38419),(25594,'history_log','itemid',38419),(25595,'history_str','itemid',38419),(25596,'history_text','itemid',38419),(25597,'history_uint','itemid',38419),(25598,'trends','itemid',38419),(25599,'trends_uint','itemid',38419),(25600,'events','itemid',38467),(25601,'history','itemid',38467),(25602,'history_log','itemid',38467),(25603,'history_str','itemid',38467),(25604,'history_text','itemid',38467),(25605,'history_uint','itemid',38467),(25606,'trends','itemid',38467),(25607,'trends_uint','itemid',38467),(25608,'events','itemid',38468),(25609,'history','itemid',38468),(25610,'history_log','itemid',38468),(25611,'history_str','itemid',38468),(25612,'history_text','itemid',38468),(25613,'history_uint','itemid',38468),(25614,'trends','itemid',38468),(25615,'trends_uint','itemid',38468),(25616,'events','itemid',38469),(25617,'history','itemid',38469),(25618,'history_log','itemid',38469),(25619,'history_str','itemid',38469),(25620,'history_text','itemid',38469),(25621,'history_uint','itemid',38469),(25622,'trends','itemid',38469),(25623,'trends_uint','itemid',38469),(25624,'events','itemid',38470),(25625,'history','itemid',38470),(25626,'history_log','itemid',38470),(25627,'history_str','itemid',38470),(25628,'history_text','itemid',38470),(25629,'history_uint','itemid',38470),(25630,'trends','itemid',38470),(25631,'trends_uint','itemid',38470),(25632,'events','itemid',38471),(25633,'history','itemid',38471),(25634,'history_log','itemid',38471),(25635,'history_str','itemid',38471),(25636,'history_text','itemid',38471),(25637,'history_uint','itemid',38471),(25638,'trends','itemid',38471),(25639,'trends_uint','itemid',38471),(25640,'events','itemid',38472),(25641,'history','itemid',38472),(25642,'history_log','itemid',38472),(25643,'history_str','itemid',38472),(25644,'history_text','itemid',38472),(25645,'history_uint','itemid',38472),(25646,'trends','itemid',38472),(25647,'trends_uint','itemid',38472),(25648,'events','itemid',38473),(25649,'history','itemid',38473),(25650,'history_log','itemid',38473),(25651,'history_str','itemid',38473),(25652,'history_text','itemid',38473),(25653,'history_uint','itemid',38473),(25654,'trends','itemid',38473),(25655,'trends_uint','itemid',38473),(25656,'events','itemid',38521),(25657,'history','itemid',38521),(25658,'history_log','itemid',38521),(25659,'history_str','itemid',38521),(25660,'history_text','itemid',38521),(25661,'history_uint','itemid',38521),(25662,'trends','itemid',38521),(25663,'trends_uint','itemid',38521),(25664,'events','itemid',38522),(25665,'history','itemid',38522),(25666,'history_log','itemid',38522),(25667,'history_str','itemid',38522),(25668,'history_text','itemid',38522),(25669,'history_uint','itemid',38522),(25670,'trends','itemid',38522),(25671,'trends_uint','itemid',38522),(25672,'events','itemid',38523),(25673,'history','itemid',38523),(25674,'history_log','itemid',38523),(25675,'history_str','itemid',38523),(25676,'history_text','itemid',38523),(25677,'history_uint','itemid',38523),(25678,'trends','itemid',38523),(25679,'trends_uint','itemid',38523),(25680,'events','itemid',38524),(25681,'history','itemid',38524),(25682,'history_log','itemid',38524),(25683,'history_str','itemid',38524),(25684,'history_text','itemid',38524),(25685,'history_uint','itemid',38524),(25686,'trends','itemid',38524),(25687,'trends_uint','itemid',38524),(25688,'events','itemid',38525),(25689,'history','itemid',38525),(25690,'history_log','itemid',38525),(25691,'history_str','itemid',38525),(25692,'history_text','itemid',38525),(25693,'history_uint','itemid',38525),(25694,'trends','itemid',38525),(25695,'trends_uint','itemid',38525),(25696,'events','itemid',38526),(25697,'history','itemid',38526),(25698,'history_log','itemid',38526),(25699,'history_str','itemid',38526),(25700,'history_text','itemid',38526),(25701,'history_uint','itemid',38526),(25702,'trends','itemid',38526),(25703,'trends_uint','itemid',38526),(25704,'events','itemid',38527),(25705,'history','itemid',38527),(25706,'history_log','itemid',38527),(25707,'history_str','itemid',38527),(25708,'history_text','itemid',38527),(25709,'history_uint','itemid',38527),(25710,'trends','itemid',38527),(25711,'trends_uint','itemid',38527),(25712,'events','itemid',39331),(25713,'history','itemid',39331),(25714,'history_log','itemid',39331),(25715,'history_str','itemid',39331),(25716,'history_text','itemid',39331),(25717,'history_uint','itemid',39331),(25718,'trends','itemid',39331),(25719,'trends_uint','itemid',39331),(25720,'events','itemid',39332),(25721,'history','itemid',39332),(25722,'history_log','itemid',39332),(25723,'history_str','itemid',39332),(25724,'history_text','itemid',39332),(25725,'history_uint','itemid',39332),(25726,'trends','itemid',39332),(25727,'trends_uint','itemid',39332),(25728,'events','itemid',39333),(25729,'history','itemid',39333),(25730,'history_log','itemid',39333),(25731,'history_str','itemid',39333),(25732,'history_text','itemid',39333),(25733,'history_uint','itemid',39333),(25734,'trends','itemid',39333),(25735,'trends_uint','itemid',39333),(25736,'events','itemid',39334),(25737,'history','itemid',39334),(25738,'history_log','itemid',39334),(25739,'history_str','itemid',39334),(25740,'history_text','itemid',39334),(25741,'history_uint','itemid',39334),(25742,'trends','itemid',39334),(25743,'trends_uint','itemid',39334),(25744,'events','itemid',39335),(25745,'history','itemid',39335),(25746,'history_log','itemid',39335),(25747,'history_str','itemid',39335),(25748,'history_text','itemid',39335),(25749,'history_uint','itemid',39335),(25750,'trends','itemid',39335),(25751,'trends_uint','itemid',39335),(25752,'events','itemid',39336),(25753,'history','itemid',39336),(25754,'history_log','itemid',39336),(25755,'history_str','itemid',39336),(25756,'history_text','itemid',39336),(25757,'history_uint','itemid',39336),(25758,'trends','itemid',39336),(25759,'trends_uint','itemid',39336),(25760,'events','itemid',39337),(25761,'history','itemid',39337),(25762,'history_log','itemid',39337),(25763,'history_str','itemid',39337),(25764,'history_text','itemid',39337),(25765,'history_uint','itemid',39337),(25766,'trends','itemid',39337),(25767,'trends_uint','itemid',39337),(25768,'events','itemid',39385),(25769,'history','itemid',39385),(25770,'history_log','itemid',39385),(25771,'history_str','itemid',39385),(25772,'history_text','itemid',39385),(25773,'history_uint','itemid',39385),(25774,'trends','itemid',39385),(25775,'trends_uint','itemid',39385),(25776,'events','itemid',39386),(25777,'history','itemid',39386),(25778,'history_log','itemid',39386),(25779,'history_str','itemid',39386),(25780,'history_text','itemid',39386),(25781,'history_uint','itemid',39386),(25782,'trends','itemid',39386),(25783,'trends_uint','itemid',39386),(25784,'events','itemid',39387),(25785,'history','itemid',39387),(25786,'history_log','itemid',39387),(25787,'history_str','itemid',39387),(25788,'history_text','itemid',39387),(25789,'history_uint','itemid',39387),(25790,'trends','itemid',39387),(25791,'trends_uint','itemid',39387),(25792,'events','itemid',39388),(25793,'history','itemid',39388),(25794,'history_log','itemid',39388),(25795,'history_str','itemid',39388),(25796,'history_text','itemid',39388),(25797,'history_uint','itemid',39388),(25798,'trends','itemid',39388),(25799,'trends_uint','itemid',39388),(25800,'events','itemid',39389),(25801,'history','itemid',39389),(25802,'history_log','itemid',39389),(25803,'history_str','itemid',39389),(25804,'history_text','itemid',39389),(25805,'history_uint','itemid',39389),(25806,'trends','itemid',39389),(25807,'trends_uint','itemid',39389),(25808,'events','itemid',39390),(25809,'history','itemid',39390),(25810,'history_log','itemid',39390),(25811,'history_str','itemid',39390),(25812,'history_text','itemid',39390),(25813,'history_uint','itemid',39390),(25814,'trends','itemid',39390),(25815,'trends_uint','itemid',39390),(25816,'events','itemid',39391),(25817,'history','itemid',39391),(25818,'history_log','itemid',39391),(25819,'history_str','itemid',39391),(25820,'history_text','itemid',39391),(25821,'history_uint','itemid',39391),(25822,'trends','itemid',39391),(25823,'trends_uint','itemid',39391),(25824,'events','itemid',39439),(25825,'history','itemid',39439),(25826,'history_log','itemid',39439),(25827,'history_str','itemid',39439),(25828,'history_text','itemid',39439),(25829,'history_uint','itemid',39439),(25830,'trends','itemid',39439),(25831,'trends_uint','itemid',39439),(25832,'events','itemid',39440),(25833,'history','itemid',39440),(25834,'history_log','itemid',39440),(25835,'history_str','itemid',39440),(25836,'history_text','itemid',39440),(25837,'history_uint','itemid',39440),(25838,'trends','itemid',39440),(25839,'trends_uint','itemid',39440),(25840,'events','itemid',39441),(25841,'history','itemid',39441),(25842,'history_log','itemid',39441),(25843,'history_str','itemid',39441),(25844,'history_text','itemid',39441),(25845,'history_uint','itemid',39441),(25846,'trends','itemid',39441),(25847,'trends_uint','itemid',39441),(25848,'events','itemid',39442),(25849,'history','itemid',39442),(25850,'history_log','itemid',39442),(25851,'history_str','itemid',39442),(25852,'history_text','itemid',39442),(25853,'history_uint','itemid',39442),(25854,'trends','itemid',39442),(25855,'trends_uint','itemid',39442),(25856,'events','itemid',39443),(25857,'history','itemid',39443),(25858,'history_log','itemid',39443),(25859,'history_str','itemid',39443),(25860,'history_text','itemid',39443),(25861,'history_uint','itemid',39443),(25862,'trends','itemid',39443),(25863,'trends_uint','itemid',39443),(25864,'events','itemid',39444),(25865,'history','itemid',39444),(25866,'history_log','itemid',39444),(25867,'history_str','itemid',39444),(25868,'history_text','itemid',39444),(25869,'history_uint','itemid',39444),(25870,'trends','itemid',39444),(25871,'trends_uint','itemid',39444),(25872,'events','itemid',39445),(25873,'history','itemid',39445),(25874,'history_log','itemid',39445),(25875,'history_str','itemid',39445),(25876,'history_text','itemid',39445),(25877,'history_uint','itemid',39445),(25878,'trends','itemid',39445),(25879,'trends_uint','itemid',39445),(25880,'events','itemid',39493),(25881,'history','itemid',39493),(25882,'history_log','itemid',39493),(25883,'history_str','itemid',39493),(25884,'history_text','itemid',39493),(25885,'history_uint','itemid',39493),(25886,'trends','itemid',39493),(25887,'trends_uint','itemid',39493),(25888,'events','itemid',39494),(25889,'history','itemid',39494),(25890,'history_log','itemid',39494),(25891,'history_str','itemid',39494),(25892,'history_text','itemid',39494),(25893,'history_uint','itemid',39494),(25894,'trends','itemid',39494),(25895,'trends_uint','itemid',39494),(25896,'events','itemid',39495),(25897,'history','itemid',39495),(25898,'history_log','itemid',39495),(25899,'history_str','itemid',39495),(25900,'history_text','itemid',39495),(25901,'history_uint','itemid',39495),(25902,'trends','itemid',39495),(25903,'trends_uint','itemid',39495),(25904,'events','itemid',39496),(25905,'history','itemid',39496),(25906,'history_log','itemid',39496),(25907,'history_str','itemid',39496),(25908,'history_text','itemid',39496),(25909,'history_uint','itemid',39496),(25910,'trends','itemid',39496),(25911,'trends_uint','itemid',39496),(25912,'events','itemid',39497),(25913,'history','itemid',39497),(25914,'history_log','itemid',39497),(25915,'history_str','itemid',39497),(25916,'history_text','itemid',39497),(25917,'history_uint','itemid',39497),(25918,'trends','itemid',39497),(25919,'trends_uint','itemid',39497),(25920,'events','itemid',39498),(25921,'history','itemid',39498),(25922,'history_log','itemid',39498),(25923,'history_str','itemid',39498),(25924,'history_text','itemid',39498),(25925,'history_uint','itemid',39498),(25926,'trends','itemid',39498),(25927,'trends_uint','itemid',39498),(25928,'events','itemid',39499),(25929,'history','itemid',39499),(25930,'history_log','itemid',39499),(25931,'history_str','itemid',39499),(25932,'history_text','itemid',39499),(25933,'history_uint','itemid',39499),(25934,'trends','itemid',39499),(25935,'trends_uint','itemid',39499),(25936,'events','itemid',39547),(25937,'history','itemid',39547),(25938,'history_log','itemid',39547),(25939,'history_str','itemid',39547),(25940,'history_text','itemid',39547),(25941,'history_uint','itemid',39547),(25942,'trends','itemid',39547),(25943,'trends_uint','itemid',39547),(25944,'events','itemid',39548),(25945,'history','itemid',39548),(25946,'history_log','itemid',39548),(25947,'history_str','itemid',39548),(25948,'history_text','itemid',39548),(25949,'history_uint','itemid',39548),(25950,'trends','itemid',39548),(25951,'trends_uint','itemid',39548),(25952,'events','itemid',39549),(25953,'history','itemid',39549),(25954,'history_log','itemid',39549),(25955,'history_str','itemid',39549),(25956,'history_text','itemid',39549),(25957,'history_uint','itemid',39549),(25958,'trends','itemid',39549),(25959,'trends_uint','itemid',39549),(25960,'events','itemid',39550),(25961,'history','itemid',39550),(25962,'history_log','itemid',39550),(25963,'history_str','itemid',39550),(25964,'history_text','itemid',39550),(25965,'history_uint','itemid',39550),(25966,'trends','itemid',39550),(25967,'trends_uint','itemid',39550),(25968,'events','itemid',39551),(25969,'history','itemid',39551),(25970,'history_log','itemid',39551),(25971,'history_str','itemid',39551),(25972,'history_text','itemid',39551),(25973,'history_uint','itemid',39551),(25974,'trends','itemid',39551),(25975,'trends_uint','itemid',39551),(25976,'events','itemid',39552),(25977,'history','itemid',39552),(25978,'history_log','itemid',39552),(25979,'history_str','itemid',39552),(25980,'history_text','itemid',39552),(25981,'history_uint','itemid',39552),(25982,'trends','itemid',39552),(25983,'trends_uint','itemid',39552),(25984,'events','itemid',39553),(25985,'history','itemid',39553),(25986,'history_log','itemid',39553),(25987,'history_str','itemid',39553),(25988,'history_text','itemid',39553),(25989,'history_uint','itemid',39553),(25990,'trends','itemid',39553),(25991,'trends_uint','itemid',39553),(25992,'events','itemid',40934),(25993,'history','itemid',40934),(25994,'history_log','itemid',40934),(25995,'history_str','itemid',40934),(25996,'history_text','itemid',40934),(25997,'history_uint','itemid',40934),(25998,'trends','itemid',40934),(25999,'trends_uint','itemid',40934),(26000,'events','itemid',40935),(26001,'history','itemid',40935),(26002,'history_log','itemid',40935),(26003,'history_str','itemid',40935),(26004,'history_text','itemid',40935),(26005,'history_uint','itemid',40935),(26006,'trends','itemid',40935),(26007,'trends_uint','itemid',40935),(26008,'events','itemid',40936),(26009,'history','itemid',40936),(26010,'history_log','itemid',40936),(26011,'history_str','itemid',40936),(26012,'history_text','itemid',40936),(26013,'history_uint','itemid',40936),(26014,'trends','itemid',40936),(26015,'trends_uint','itemid',40936),(26016,'events','itemid',40937),(26017,'history','itemid',40937),(26018,'history_log','itemid',40937),(26019,'history_str','itemid',40937),(26020,'history_text','itemid',40937),(26021,'history_uint','itemid',40937),(26022,'trends','itemid',40937),(26023,'trends_uint','itemid',40937),(26024,'events','itemid',40938),(26025,'history','itemid',40938),(26026,'history_log','itemid',40938),(26027,'history_str','itemid',40938),(26028,'history_text','itemid',40938),(26029,'history_uint','itemid',40938),(26030,'trends','itemid',40938),(26031,'trends_uint','itemid',40938),(26032,'events','itemid',40939),(26033,'history','itemid',40939),(26034,'history_log','itemid',40939),(26035,'history_str','itemid',40939),(26036,'history_text','itemid',40939),(26037,'history_uint','itemid',40939),(26038,'trends','itemid',40939),(26039,'trends_uint','itemid',40939),(26040,'events','itemid',40940),(26041,'history','itemid',40940),(26042,'history_log','itemid',40940),(26043,'history_str','itemid',40940),(26044,'history_text','itemid',40940),(26045,'history_uint','itemid',40940),(26046,'trends','itemid',40940),(26047,'trends_uint','itemid',40940),(26048,'events','itemid',40941),(26049,'history','itemid',40941),(26050,'history_log','itemid',40941),(26051,'history_str','itemid',40941),(26052,'history_text','itemid',40941),(26053,'history_uint','itemid',40941),(26054,'trends','itemid',40941),(26055,'trends_uint','itemid',40941),(26056,'events','itemid',40942),(26057,'history','itemid',40942),(26058,'history_log','itemid',40942),(26059,'history_str','itemid',40942),(26060,'history_text','itemid',40942),(26061,'history_uint','itemid',40942),(26062,'trends','itemid',40942),(26063,'trends_uint','itemid',40942),(26064,'events','itemid',40943),(26065,'history','itemid',40943),(26066,'history_log','itemid',40943),(26067,'history_str','itemid',40943),(26068,'history_text','itemid',40943),(26069,'history_uint','itemid',40943),(26070,'trends','itemid',40943),(26071,'trends_uint','itemid',40943),(26072,'events','itemid',40944),(26073,'history','itemid',40944),(26074,'history_log','itemid',40944),(26075,'history_str','itemid',40944),(26076,'history_text','itemid',40944),(26077,'history_uint','itemid',40944),(26078,'trends','itemid',40944),(26079,'trends_uint','itemid',40944),(26080,'events','itemid',40955),(26081,'history','itemid',40955),(26082,'history_log','itemid',40955),(26083,'history_str','itemid',40955),(26084,'history_text','itemid',40955),(26085,'history_uint','itemid',40955),(26086,'trends','itemid',40955),(26087,'trends_uint','itemid',40955),(26088,'events','itemid',40956),(26089,'history','itemid',40956),(26090,'history_log','itemid',40956),(26091,'history_str','itemid',40956),(26092,'history_text','itemid',40956),(26093,'history_uint','itemid',40956),(26094,'trends','itemid',40956),(26095,'trends_uint','itemid',40956),(26096,'events','itemid',40957),(26097,'history','itemid',40957),(26098,'history_log','itemid',40957),(26099,'history_str','itemid',40957),(26100,'history_text','itemid',40957),(26101,'history_uint','itemid',40957),(26102,'trends','itemid',40957),(26103,'trends_uint','itemid',40957),(26104,'events','itemid',40958),(26105,'history','itemid',40958),(26106,'history_log','itemid',40958),(26107,'history_str','itemid',40958),(26108,'history_text','itemid',40958),(26109,'history_uint','itemid',40958),(26110,'trends','itemid',40958),(26111,'trends_uint','itemid',40958),(26112,'events','itemid',40959),(26113,'history','itemid',40959),(26114,'history_log','itemid',40959),(26115,'history_str','itemid',40959),(26116,'history_text','itemid',40959),(26117,'history_uint','itemid',40959),(26118,'trends','itemid',40959),(26119,'trends_uint','itemid',40959),(26120,'events','itemid',40960),(26121,'history','itemid',40960),(26122,'history_log','itemid',40960),(26123,'history_str','itemid',40960),(26124,'history_text','itemid',40960),(26125,'history_uint','itemid',40960),(26126,'trends','itemid',40960),(26127,'trends_uint','itemid',40960),(26128,'events','itemid',40961),(26129,'history','itemid',40961),(26130,'history_log','itemid',40961),(26131,'history_str','itemid',40961),(26132,'history_text','itemid',40961),(26133,'history_uint','itemid',40961),(26134,'trends','itemid',40961),(26135,'trends_uint','itemid',40961),(26136,'events','itemid',40962),(26137,'history','itemid',40962),(26138,'history_log','itemid',40962),(26139,'history_str','itemid',40962),(26140,'history_text','itemid',40962),(26141,'history_uint','itemid',40962),(26142,'trends','itemid',40962),(26143,'trends_uint','itemid',40962),(26144,'events','itemid',40963),(26145,'history','itemid',40963),(26146,'history_log','itemid',40963),(26147,'history_str','itemid',40963),(26148,'history_text','itemid',40963),(26149,'history_uint','itemid',40963),(26150,'trends','itemid',40963),(26151,'trends_uint','itemid',40963),(26152,'events','itemid',40964),(26153,'history','itemid',40964),(26154,'history_log','itemid',40964),(26155,'history_str','itemid',40964),(26156,'history_text','itemid',40964),(26157,'history_uint','itemid',40964),(26158,'trends','itemid',40964),(26159,'trends_uint','itemid',40964),(26160,'events','itemid',40965),(26161,'history','itemid',40965),(26162,'history_log','itemid',40965),(26163,'history_str','itemid',40965),(26164,'history_text','itemid',40965),(26165,'history_uint','itemid',40965),(26166,'trends','itemid',40965),(26167,'trends_uint','itemid',40965),(26168,'events','itemid',40976),(26169,'history','itemid',40976),(26170,'history_log','itemid',40976),(26171,'history_str','itemid',40976),(26172,'history_text','itemid',40976),(26173,'history_uint','itemid',40976),(26174,'trends','itemid',40976),(26175,'trends_uint','itemid',40976),(26176,'events','itemid',40977),(26177,'history','itemid',40977),(26178,'history_log','itemid',40977),(26179,'history_str','itemid',40977),(26180,'history_text','itemid',40977),(26181,'history_uint','itemid',40977),(26182,'trends','itemid',40977),(26183,'trends_uint','itemid',40977),(26184,'events','itemid',40978),(26185,'history','itemid',40978),(26186,'history_log','itemid',40978),(26187,'history_str','itemid',40978),(26188,'history_text','itemid',40978),(26189,'history_uint','itemid',40978),(26190,'trends','itemid',40978),(26191,'trends_uint','itemid',40978),(26192,'events','itemid',40979),(26193,'history','itemid',40979),(26194,'history_log','itemid',40979),(26195,'history_str','itemid',40979),(26196,'history_text','itemid',40979),(26197,'history_uint','itemid',40979),(26198,'trends','itemid',40979),(26199,'trends_uint','itemid',40979),(26200,'events','itemid',40980),(26201,'history','itemid',40980),(26202,'history_log','itemid',40980),(26203,'history_str','itemid',40980),(26204,'history_text','itemid',40980),(26205,'history_uint','itemid',40980),(26206,'trends','itemid',40980),(26207,'trends_uint','itemid',40980),(26208,'events','itemid',40981),(26209,'history','itemid',40981),(26210,'history_log','itemid',40981),(26211,'history_str','itemid',40981),(26212,'history_text','itemid',40981),(26213,'history_uint','itemid',40981),(26214,'trends','itemid',40981),(26215,'trends_uint','itemid',40981),(26216,'events','itemid',40982),(26217,'history','itemid',40982),(26218,'history_log','itemid',40982),(26219,'history_str','itemid',40982),(26220,'history_text','itemid',40982),(26221,'history_uint','itemid',40982),(26222,'trends','itemid',40982),(26223,'trends_uint','itemid',40982),(26224,'events','itemid',40983),(26225,'history','itemid',40983),(26226,'history_log','itemid',40983),(26227,'history_str','itemid',40983),(26228,'history_text','itemid',40983),(26229,'history_uint','itemid',40983),(26230,'trends','itemid',40983),(26231,'trends_uint','itemid',40983),(26232,'events','itemid',40984),(26233,'history','itemid',40984),(26234,'history_log','itemid',40984),(26235,'history_str','itemid',40984),(26236,'history_text','itemid',40984),(26237,'history_uint','itemid',40984),(26238,'trends','itemid',40984),(26239,'trends_uint','itemid',40984),(26240,'events','itemid',40985),(26241,'history','itemid',40985),(26242,'history_log','itemid',40985),(26243,'history_str','itemid',40985),(26244,'history_text','itemid',40985),(26245,'history_uint','itemid',40985),(26246,'trends','itemid',40985),(26247,'trends_uint','itemid',40985),(26248,'events','itemid',40986),(26249,'history','itemid',40986),(26250,'history_log','itemid',40986),(26251,'history_str','itemid',40986),(26252,'history_text','itemid',40986),(26253,'history_uint','itemid',40986),(26254,'trends','itemid',40986),(26255,'trends_uint','itemid',40986),(26256,'events','itemid',40997),(26257,'history','itemid',40997),(26258,'history_log','itemid',40997),(26259,'history_str','itemid',40997),(26260,'history_text','itemid',40997),(26261,'history_uint','itemid',40997),(26262,'trends','itemid',40997),(26263,'trends_uint','itemid',40997),(26264,'events','itemid',40998),(26265,'history','itemid',40998),(26266,'history_log','itemid',40998),(26267,'history_str','itemid',40998),(26268,'history_text','itemid',40998),(26269,'history_uint','itemid',40998),(26270,'trends','itemid',40998),(26271,'trends_uint','itemid',40998),(26272,'events','itemid',40999),(26273,'history','itemid',40999),(26274,'history_log','itemid',40999),(26275,'history_str','itemid',40999),(26276,'history_text','itemid',40999),(26277,'history_uint','itemid',40999),(26278,'trends','itemid',40999),(26279,'trends_uint','itemid',40999),(26280,'events','itemid',41000),(26281,'history','itemid',41000),(26282,'history_log','itemid',41000),(26283,'history_str','itemid',41000),(26284,'history_text','itemid',41000),(26285,'history_uint','itemid',41000),(26286,'trends','itemid',41000),(26287,'trends_uint','itemid',41000),(26288,'events','itemid',41001),(26289,'history','itemid',41001),(26290,'history_log','itemid',41001),(26291,'history_str','itemid',41001),(26292,'history_text','itemid',41001),(26293,'history_uint','itemid',41001),(26294,'trends','itemid',41001),(26295,'trends_uint','itemid',41001),(26296,'events','itemid',41002),(26297,'history','itemid',41002),(26298,'history_log','itemid',41002),(26299,'history_str','itemid',41002),(26300,'history_text','itemid',41002),(26301,'history_uint','itemid',41002),(26302,'trends','itemid',41002),(26303,'trends_uint','itemid',41002),(26304,'events','itemid',41003),(26305,'history','itemid',41003),(26306,'history_log','itemid',41003),(26307,'history_str','itemid',41003),(26308,'history_text','itemid',41003),(26309,'history_uint','itemid',41003),(26310,'trends','itemid',41003),(26311,'trends_uint','itemid',41003),(26312,'events','itemid',41004),(26313,'history','itemid',41004),(26314,'history_log','itemid',41004),(26315,'history_str','itemid',41004),(26316,'history_text','itemid',41004),(26317,'history_uint','itemid',41004),(26318,'trends','itemid',41004),(26319,'trends_uint','itemid',41004),(26320,'events','itemid',41005),(26321,'history','itemid',41005),(26322,'history_log','itemid',41005),(26323,'history_str','itemid',41005),(26324,'history_text','itemid',41005),(26325,'history_uint','itemid',41005),(26326,'trends','itemid',41005),(26327,'trends_uint','itemid',41005),(26328,'events','itemid',41006),(26329,'history','itemid',41006),(26330,'history_log','itemid',41006),(26331,'history_str','itemid',41006),(26332,'history_text','itemid',41006),(26333,'history_uint','itemid',41006),(26334,'trends','itemid',41006),(26335,'trends_uint','itemid',41006),(26336,'events','itemid',41007),(26337,'history','itemid',41007),(26338,'history_log','itemid',41007),(26339,'history_str','itemid',41007),(26340,'history_text','itemid',41007),(26341,'history_uint','itemid',41007),(26342,'trends','itemid',41007),(26343,'trends_uint','itemid',41007),(26344,'events','itemid',41018),(26345,'history','itemid',41018),(26346,'history_log','itemid',41018),(26347,'history_str','itemid',41018),(26348,'history_text','itemid',41018),(26349,'history_uint','itemid',41018),(26350,'trends','itemid',41018),(26351,'trends_uint','itemid',41018),(26352,'events','itemid',41019),(26353,'history','itemid',41019),(26354,'history_log','itemid',41019),(26355,'history_str','itemid',41019),(26356,'history_text','itemid',41019),(26357,'history_uint','itemid',41019),(26358,'trends','itemid',41019),(26359,'trends_uint','itemid',41019),(26360,'events','itemid',41020),(26361,'history','itemid',41020),(26362,'history_log','itemid',41020),(26363,'history_str','itemid',41020),(26364,'history_text','itemid',41020),(26365,'history_uint','itemid',41020),(26366,'trends','itemid',41020),(26367,'trends_uint','itemid',41020),(26368,'events','itemid',41021),(26369,'history','itemid',41021),(26370,'history_log','itemid',41021),(26371,'history_str','itemid',41021),(26372,'history_text','itemid',41021),(26373,'history_uint','itemid',41021),(26374,'trends','itemid',41021),(26375,'trends_uint','itemid',41021),(26376,'events','itemid',41022),(26377,'history','itemid',41022),(26378,'history_log','itemid',41022),(26379,'history_str','itemid',41022),(26380,'history_text','itemid',41022),(26381,'history_uint','itemid',41022),(26382,'trends','itemid',41022),(26383,'trends_uint','itemid',41022),(26384,'events','itemid',41023),(26385,'history','itemid',41023),(26386,'history_log','itemid',41023),(26387,'history_str','itemid',41023),(26388,'history_text','itemid',41023),(26389,'history_uint','itemid',41023),(26390,'trends','itemid',41023),(26391,'trends_uint','itemid',41023),(26392,'events','itemid',41024),(26393,'history','itemid',41024),(26394,'history_log','itemid',41024),(26395,'history_str','itemid',41024),(26396,'history_text','itemid',41024),(26397,'history_uint','itemid',41024),(26398,'trends','itemid',41024),(26399,'trends_uint','itemid',41024),(26400,'events','itemid',41025),(26401,'history','itemid',41025),(26402,'history_log','itemid',41025),(26403,'history_str','itemid',41025),(26404,'history_text','itemid',41025),(26405,'history_uint','itemid',41025),(26406,'trends','itemid',41025),(26407,'trends_uint','itemid',41025),(26408,'events','itemid',41026),(26409,'history','itemid',41026),(26410,'history_log','itemid',41026),(26411,'history_str','itemid',41026),(26412,'history_text','itemid',41026),(26413,'history_uint','itemid',41026),(26414,'trends','itemid',41026),(26415,'trends_uint','itemid',41026),(26416,'events','itemid',41027),(26417,'history','itemid',41027),(26418,'history_log','itemid',41027),(26419,'history_str','itemid',41027),(26420,'history_text','itemid',41027),(26421,'history_uint','itemid',41027),(26422,'trends','itemid',41027),(26423,'trends_uint','itemid',41027),(26424,'events','itemid',41028),(26425,'history','itemid',41028),(26426,'history_log','itemid',41028),(26427,'history_str','itemid',41028),(26428,'history_text','itemid',41028),(26429,'history_uint','itemid',41028),(26430,'trends','itemid',41028),(26431,'trends_uint','itemid',41028),(26432,'events','itemid',41039),(26433,'history','itemid',41039),(26434,'history_log','itemid',41039),(26435,'history_str','itemid',41039),(26436,'history_text','itemid',41039),(26437,'history_uint','itemid',41039),(26438,'trends','itemid',41039),(26439,'trends_uint','itemid',41039),(26440,'events','itemid',41040),(26441,'history','itemid',41040),(26442,'history_log','itemid',41040),(26443,'history_str','itemid',41040),(26444,'history_text','itemid',41040),(26445,'history_uint','itemid',41040),(26446,'trends','itemid',41040),(26447,'trends_uint','itemid',41040),(26448,'events','itemid',41041),(26449,'history','itemid',41041),(26450,'history_log','itemid',41041),(26451,'history_str','itemid',41041),(26452,'history_text','itemid',41041),(26453,'history_uint','itemid',41041),(26454,'trends','itemid',41041),(26455,'trends_uint','itemid',41041),(26456,'events','itemid',41042),(26457,'history','itemid',41042),(26458,'history_log','itemid',41042),(26459,'history_str','itemid',41042),(26460,'history_text','itemid',41042),(26461,'history_uint','itemid',41042),(26462,'trends','itemid',41042),(26463,'trends_uint','itemid',41042),(26464,'events','itemid',41043),(26465,'history','itemid',41043),(26466,'history_log','itemid',41043),(26467,'history_str','itemid',41043),(26468,'history_text','itemid',41043),(26469,'history_uint','itemid',41043),(26470,'trends','itemid',41043),(26471,'trends_uint','itemid',41043),(26472,'events','itemid',41044),(26473,'history','itemid',41044),(26474,'history_log','itemid',41044),(26475,'history_str','itemid',41044),(26476,'history_text','itemid',41044),(26477,'history_uint','itemid',41044),(26478,'trends','itemid',41044),(26479,'trends_uint','itemid',41044),(26480,'events','itemid',41045),(26481,'history','itemid',41045),(26482,'history_log','itemid',41045),(26483,'history_str','itemid',41045),(26484,'history_text','itemid',41045),(26485,'history_uint','itemid',41045),(26486,'trends','itemid',41045),(26487,'trends_uint','itemid',41045),(26488,'events','itemid',41046),(26489,'history','itemid',41046),(26490,'history_log','itemid',41046),(26491,'history_str','itemid',41046),(26492,'history_text','itemid',41046),(26493,'history_uint','itemid',41046),(26494,'trends','itemid',41046),(26495,'trends_uint','itemid',41046),(26496,'events','itemid',41047),(26497,'history','itemid',41047),(26498,'history_log','itemid',41047),(26499,'history_str','itemid',41047),(26500,'history_text','itemid',41047),(26501,'history_uint','itemid',41047),(26502,'trends','itemid',41047),(26503,'trends_uint','itemid',41047),(26504,'events','itemid',41048),(26505,'history','itemid',41048),(26506,'history_log','itemid',41048),(26507,'history_str','itemid',41048),(26508,'history_text','itemid',41048),(26509,'history_uint','itemid',41048),(26510,'trends','itemid',41048),(26511,'trends_uint','itemid',41048),(26512,'events','itemid',41049),(26513,'history','itemid',41049),(26514,'history_log','itemid',41049),(26515,'history_str','itemid',41049),(26516,'history_text','itemid',41049),(26517,'history_uint','itemid',41049),(26518,'trends','itemid',41049),(26519,'trends_uint','itemid',41049),(26520,'events','itemid',41060),(26521,'history','itemid',41060),(26522,'history_log','itemid',41060),(26523,'history_str','itemid',41060),(26524,'history_text','itemid',41060),(26525,'history_uint','itemid',41060),(26526,'trends','itemid',41060),(26527,'trends_uint','itemid',41060),(26528,'events','itemid',41061),(26529,'history','itemid',41061),(26530,'history_log','itemid',41061),(26531,'history_str','itemid',41061),(26532,'history_text','itemid',41061),(26533,'history_uint','itemid',41061),(26534,'trends','itemid',41061),(26535,'trends_uint','itemid',41061),(26536,'events','itemid',41062),(26537,'history','itemid',41062),(26538,'history_log','itemid',41062),(26539,'history_str','itemid',41062),(26540,'history_text','itemid',41062),(26541,'history_uint','itemid',41062),(26542,'trends','itemid',41062),(26543,'trends_uint','itemid',41062),(26544,'events','itemid',41063),(26545,'history','itemid',41063),(26546,'history_log','itemid',41063),(26547,'history_str','itemid',41063),(26548,'history_text','itemid',41063),(26549,'history_uint','itemid',41063),(26550,'trends','itemid',41063),(26551,'trends_uint','itemid',41063),(26552,'events','itemid',41064),(26553,'history','itemid',41064),(26554,'history_log','itemid',41064),(26555,'history_str','itemid',41064),(26556,'history_text','itemid',41064),(26557,'history_uint','itemid',41064),(26558,'trends','itemid',41064),(26559,'trends_uint','itemid',41064),(26560,'events','itemid',41065),(26561,'history','itemid',41065),(26562,'history_log','itemid',41065),(26563,'history_str','itemid',41065),(26564,'history_text','itemid',41065),(26565,'history_uint','itemid',41065),(26566,'trends','itemid',41065),(26567,'trends_uint','itemid',41065),(26568,'events','itemid',41066),(26569,'history','itemid',41066),(26570,'history_log','itemid',41066),(26571,'history_str','itemid',41066),(26572,'history_text','itemid',41066),(26573,'history_uint','itemid',41066),(26574,'trends','itemid',41066),(26575,'trends_uint','itemid',41066),(26576,'events','itemid',41067),(26577,'history','itemid',41067),(26578,'history_log','itemid',41067),(26579,'history_str','itemid',41067),(26580,'history_text','itemid',41067),(26581,'history_uint','itemid',41067),(26582,'trends','itemid',41067),(26583,'trends_uint','itemid',41067),(26584,'events','itemid',41068),(26585,'history','itemid',41068),(26586,'history_log','itemid',41068),(26587,'history_str','itemid',41068),(26588,'history_text','itemid',41068),(26589,'history_uint','itemid',41068),(26590,'trends','itemid',41068),(26591,'trends_uint','itemid',41068),(26592,'events','itemid',41069),(26593,'history','itemid',41069),(26594,'history_log','itemid',41069),(26595,'history_str','itemid',41069),(26596,'history_text','itemid',41069),(26597,'history_uint','itemid',41069),(26598,'trends','itemid',41069),(26599,'trends_uint','itemid',41069),(26600,'events','itemid',41070),(26601,'history','itemid',41070),(26602,'history_log','itemid',41070),(26603,'history_str','itemid',41070),(26604,'history_text','itemid',41070),(26605,'history_uint','itemid',41070),(26606,'trends','itemid',41070),(26607,'trends_uint','itemid',41070),(26608,'events','itemid',41081),(26609,'history','itemid',41081),(26610,'history_log','itemid',41081),(26611,'history_str','itemid',41081),(26612,'history_text','itemid',41081),(26613,'history_uint','itemid',41081),(26614,'trends','itemid',41081),(26615,'trends_uint','itemid',41081),(26616,'events','itemid',41082),(26617,'history','itemid',41082),(26618,'history_log','itemid',41082),(26619,'history_str','itemid',41082),(26620,'history_text','itemid',41082),(26621,'history_uint','itemid',41082),(26622,'trends','itemid',41082),(26623,'trends_uint','itemid',41082),(26624,'events','itemid',41083),(26625,'history','itemid',41083),(26626,'history_log','itemid',41083),(26627,'history_str','itemid',41083),(26628,'history_text','itemid',41083),(26629,'history_uint','itemid',41083),(26630,'trends','itemid',41083),(26631,'trends_uint','itemid',41083),(26632,'events','itemid',41084),(26633,'history','itemid',41084),(26634,'history_log','itemid',41084),(26635,'history_str','itemid',41084),(26636,'history_text','itemid',41084),(26637,'history_uint','itemid',41084),(26638,'trends','itemid',41084),(26639,'trends_uint','itemid',41084),(26640,'events','itemid',41085),(26641,'history','itemid',41085),(26642,'history_log','itemid',41085),(26643,'history_str','itemid',41085),(26644,'history_text','itemid',41085),(26645,'history_uint','itemid',41085),(26646,'trends','itemid',41085),(26647,'trends_uint','itemid',41085),(26648,'events','itemid',41086),(26649,'history','itemid',41086),(26650,'history_log','itemid',41086),(26651,'history_str','itemid',41086),(26652,'history_text','itemid',41086),(26653,'history_uint','itemid',41086),(26654,'trends','itemid',41086),(26655,'trends_uint','itemid',41086),(26656,'events','itemid',41087),(26657,'history','itemid',41087),(26658,'history_log','itemid',41087),(26659,'history_str','itemid',41087),(26660,'history_text','itemid',41087),(26661,'history_uint','itemid',41087),(26662,'trends','itemid',41087),(26663,'trends_uint','itemid',41087),(26664,'events','itemid',41088),(26665,'history','itemid',41088),(26666,'history_log','itemid',41088),(26667,'history_str','itemid',41088),(26668,'history_text','itemid',41088),(26669,'history_uint','itemid',41088),(26670,'trends','itemid',41088),(26671,'trends_uint','itemid',41088),(26672,'events','itemid',41089),(26673,'history','itemid',41089),(26674,'history_log','itemid',41089),(26675,'history_str','itemid',41089),(26676,'history_text','itemid',41089),(26677,'history_uint','itemid',41089),(26678,'trends','itemid',41089),(26679,'trends_uint','itemid',41089),(26680,'events','itemid',41090),(26681,'history','itemid',41090),(26682,'history_log','itemid',41090),(26683,'history_str','itemid',41090),(26684,'history_text','itemid',41090),(26685,'history_uint','itemid',41090),(26686,'trends','itemid',41090),(26687,'trends_uint','itemid',41090),(26688,'events','itemid',41091),(26689,'history','itemid',41091),(26690,'history_log','itemid',41091),(26691,'history_str','itemid',41091),(26692,'history_text','itemid',41091),(26693,'history_uint','itemid',41091),(26694,'trends','itemid',41091),(26695,'trends_uint','itemid',41091),(26696,'events','itemid',41102),(26697,'history','itemid',41102),(26698,'history_log','itemid',41102),(26699,'history_str','itemid',41102),(26700,'history_text','itemid',41102),(26701,'history_uint','itemid',41102),(26702,'trends','itemid',41102),(26703,'trends_uint','itemid',41102),(26704,'events','itemid',41103),(26705,'history','itemid',41103),(26706,'history_log','itemid',41103),(26707,'history_str','itemid',41103),(26708,'history_text','itemid',41103),(26709,'history_uint','itemid',41103),(26710,'trends','itemid',41103),(26711,'trends_uint','itemid',41103),(26712,'events','itemid',41104),(26713,'history','itemid',41104),(26714,'history_log','itemid',41104),(26715,'history_str','itemid',41104),(26716,'history_text','itemid',41104),(26717,'history_uint','itemid',41104),(26718,'trends','itemid',41104),(26719,'trends_uint','itemid',41104),(26720,'events','itemid',41105),(26721,'history','itemid',41105),(26722,'history_log','itemid',41105),(26723,'history_str','itemid',41105),(26724,'history_text','itemid',41105),(26725,'history_uint','itemid',41105),(26726,'trends','itemid',41105),(26727,'trends_uint','itemid',41105),(26728,'events','itemid',41106),(26729,'history','itemid',41106),(26730,'history_log','itemid',41106),(26731,'history_str','itemid',41106),(26732,'history_text','itemid',41106),(26733,'history_uint','itemid',41106),(26734,'trends','itemid',41106),(26735,'trends_uint','itemid',41106),(26736,'events','itemid',41107),(26737,'history','itemid',41107),(26738,'history_log','itemid',41107),(26739,'history_str','itemid',41107),(26740,'history_text','itemid',41107),(26741,'history_uint','itemid',41107),(26742,'trends','itemid',41107),(26743,'trends_uint','itemid',41107),(26744,'events','itemid',41108),(26745,'history','itemid',41108),(26746,'history_log','itemid',41108),(26747,'history_str','itemid',41108),(26748,'history_text','itemid',41108),(26749,'history_uint','itemid',41108),(26750,'trends','itemid',41108),(26751,'trends_uint','itemid',41108),(26752,'events','itemid',41109),(26753,'history','itemid',41109),(26754,'history_log','itemid',41109),(26755,'history_str','itemid',41109),(26756,'history_text','itemid',41109),(26757,'history_uint','itemid',41109),(26758,'trends','itemid',41109),(26759,'trends_uint','itemid',41109),(26760,'events','itemid',41110),(26761,'history','itemid',41110),(26762,'history_log','itemid',41110),(26763,'history_str','itemid',41110),(26764,'history_text','itemid',41110),(26765,'history_uint','itemid',41110),(26766,'trends','itemid',41110),(26767,'trends_uint','itemid',41110),(26768,'events','itemid',41111),(26769,'history','itemid',41111),(26770,'history_log','itemid',41111),(26771,'history_str','itemid',41111),(26772,'history_text','itemid',41111),(26773,'history_uint','itemid',41111),(26774,'trends','itemid',41111),(26775,'trends_uint','itemid',41111),(26776,'events','itemid',41112),(26777,'history','itemid',41112),(26778,'history_log','itemid',41112),(26779,'history_str','itemid',41112),(26780,'history_text','itemid',41112),(26781,'history_uint','itemid',41112),(26782,'trends','itemid',41112),(26783,'trends_uint','itemid',41112),(26784,'events','itemid',41123),(26785,'history','itemid',41123),(26786,'history_log','itemid',41123),(26787,'history_str','itemid',41123),(26788,'history_text','itemid',41123),(26789,'history_uint','itemid',41123),(26790,'trends','itemid',41123),(26791,'trends_uint','itemid',41123),(26792,'events','itemid',41124),(26793,'history','itemid',41124),(26794,'history_log','itemid',41124),(26795,'history_str','itemid',41124),(26796,'history_text','itemid',41124),(26797,'history_uint','itemid',41124),(26798,'trends','itemid',41124),(26799,'trends_uint','itemid',41124),(26800,'events','itemid',41125),(26801,'history','itemid',41125),(26802,'history_log','itemid',41125),(26803,'history_str','itemid',41125),(26804,'history_text','itemid',41125),(26805,'history_uint','itemid',41125),(26806,'trends','itemid',41125),(26807,'trends_uint','itemid',41125),(26808,'events','itemid',41126),(26809,'history','itemid',41126),(26810,'history_log','itemid',41126),(26811,'history_str','itemid',41126),(26812,'history_text','itemid',41126),(26813,'history_uint','itemid',41126),(26814,'trends','itemid',41126),(26815,'trends_uint','itemid',41126),(26816,'events','itemid',41127),(26817,'history','itemid',41127),(26818,'history_log','itemid',41127),(26819,'history_str','itemid',41127),(26820,'history_text','itemid',41127),(26821,'history_uint','itemid',41127),(26822,'trends','itemid',41127),(26823,'trends_uint','itemid',41127),(26824,'events','itemid',41128),(26825,'history','itemid',41128),(26826,'history_log','itemid',41128),(26827,'history_str','itemid',41128),(26828,'history_text','itemid',41128),(26829,'history_uint','itemid',41128),(26830,'trends','itemid',41128),(26831,'trends_uint','itemid',41128),(26832,'events','itemid',41129),(26833,'history','itemid',41129),(26834,'history_log','itemid',41129),(26835,'history_str','itemid',41129),(26836,'history_text','itemid',41129),(26837,'history_uint','itemid',41129),(26838,'trends','itemid',41129),(26839,'trends_uint','itemid',41129),(26840,'events','itemid',41130),(26841,'history','itemid',41130),(26842,'history_log','itemid',41130),(26843,'history_str','itemid',41130),(26844,'history_text','itemid',41130),(26845,'history_uint','itemid',41130),(26846,'trends','itemid',41130),(26847,'trends_uint','itemid',41130),(26848,'events','itemid',41131),(26849,'history','itemid',41131),(26850,'history_log','itemid',41131),(26851,'history_str','itemid',41131),(26852,'history_text','itemid',41131),(26853,'history_uint','itemid',41131),(26854,'trends','itemid',41131),(26855,'trends_uint','itemid',41131),(26856,'events','itemid',41132),(26857,'history','itemid',41132),(26858,'history_log','itemid',41132),(26859,'history_str','itemid',41132),(26860,'history_text','itemid',41132),(26861,'history_uint','itemid',41132),(26862,'trends','itemid',41132),(26863,'trends_uint','itemid',41132),(26864,'events','itemid',41133),(26865,'history','itemid',41133),(26866,'history_log','itemid',41133),(26867,'history_str','itemid',41133),(26868,'history_text','itemid',41133),(26869,'history_uint','itemid',41133),(26870,'trends','itemid',41133),(26871,'trends_uint','itemid',41133),(26872,'events','itemid',41144),(26873,'history','itemid',41144),(26874,'history_log','itemid',41144),(26875,'history_str','itemid',41144),(26876,'history_text','itemid',41144),(26877,'history_uint','itemid',41144),(26878,'trends','itemid',41144),(26879,'trends_uint','itemid',41144),(26880,'events','itemid',41145),(26881,'history','itemid',41145),(26882,'history_log','itemid',41145),(26883,'history_str','itemid',41145),(26884,'history_text','itemid',41145),(26885,'history_uint','itemid',41145),(26886,'trends','itemid',41145),(26887,'trends_uint','itemid',41145),(26888,'events','itemid',41146),(26889,'history','itemid',41146),(26890,'history_log','itemid',41146),(26891,'history_str','itemid',41146),(26892,'history_text','itemid',41146),(26893,'history_uint','itemid',41146),(26894,'trends','itemid',41146),(26895,'trends_uint','itemid',41146),(26896,'events','itemid',41147),(26897,'history','itemid',41147),(26898,'history_log','itemid',41147),(26899,'history_str','itemid',41147),(26900,'history_text','itemid',41147),(26901,'history_uint','itemid',41147),(26902,'trends','itemid',41147),(26903,'trends_uint','itemid',41147),(26904,'events','itemid',41148),(26905,'history','itemid',41148),(26906,'history_log','itemid',41148),(26907,'history_str','itemid',41148),(26908,'history_text','itemid',41148),(26909,'history_uint','itemid',41148),(26910,'trends','itemid',41148),(26911,'trends_uint','itemid',41148),(26912,'events','itemid',41149),(26913,'history','itemid',41149),(26914,'history_log','itemid',41149),(26915,'history_str','itemid',41149),(26916,'history_text','itemid',41149),(26917,'history_uint','itemid',41149),(26918,'trends','itemid',41149),(26919,'trends_uint','itemid',41149),(26920,'events','itemid',41150),(26921,'history','itemid',41150),(26922,'history_log','itemid',41150),(26923,'history_str','itemid',41150),(26924,'history_text','itemid',41150),(26925,'history_uint','itemid',41150),(26926,'trends','itemid',41150),(26927,'trends_uint','itemid',41150),(26928,'events','itemid',41151),(26929,'history','itemid',41151),(26930,'history_log','itemid',41151),(26931,'history_str','itemid',41151),(26932,'history_text','itemid',41151),(26933,'history_uint','itemid',41151),(26934,'trends','itemid',41151),(26935,'trends_uint','itemid',41151),(26936,'events','itemid',41152),(26937,'history','itemid',41152),(26938,'history_log','itemid',41152),(26939,'history_str','itemid',41152),(26940,'history_text','itemid',41152),(26941,'history_uint','itemid',41152),(26942,'trends','itemid',41152),(26943,'trends_uint','itemid',41152),(26944,'events','itemid',41153),(26945,'history','itemid',41153),(26946,'history_log','itemid',41153),(26947,'history_str','itemid',41153),(26948,'history_text','itemid',41153),(26949,'history_uint','itemid',41153),(26950,'trends','itemid',41153),(26951,'trends_uint','itemid',41153),(26952,'events','itemid',41154),(26953,'history','itemid',41154),(26954,'history_log','itemid',41154),(26955,'history_str','itemid',41154),(26956,'history_text','itemid',41154),(26957,'history_uint','itemid',41154),(26958,'trends','itemid',41154),(26959,'trends_uint','itemid',41154),(26960,'events','itemid',41165),(26961,'history','itemid',41165),(26962,'history_log','itemid',41165),(26963,'history_str','itemid',41165),(26964,'history_text','itemid',41165),(26965,'history_uint','itemid',41165),(26966,'trends','itemid',41165),(26967,'trends_uint','itemid',41165),(26968,'events','itemid',41166),(26969,'history','itemid',41166),(26970,'history_log','itemid',41166),(26971,'history_str','itemid',41166),(26972,'history_text','itemid',41166),(26973,'history_uint','itemid',41166),(26974,'trends','itemid',41166),(26975,'trends_uint','itemid',41166),(26976,'events','itemid',41167),(26977,'history','itemid',41167),(26978,'history_log','itemid',41167),(26979,'history_str','itemid',41167),(26980,'history_text','itemid',41167),(26981,'history_uint','itemid',41167),(26982,'trends','itemid',41167),(26983,'trends_uint','itemid',41167),(26984,'events','itemid',41168),(26985,'history','itemid',41168),(26986,'history_log','itemid',41168),(26987,'history_str','itemid',41168),(26988,'history_text','itemid',41168),(26989,'history_uint','itemid',41168),(26990,'trends','itemid',41168),(26991,'trends_uint','itemid',41168),(26992,'events','itemid',41169),(26993,'history','itemid',41169),(26994,'history_log','itemid',41169),(26995,'history_str','itemid',41169),(26996,'history_text','itemid',41169),(26997,'history_uint','itemid',41169),(26998,'trends','itemid',41169),(26999,'trends_uint','itemid',41169),(27000,'events','itemid',41170),(27001,'history','itemid',41170),(27002,'history_log','itemid',41170),(27003,'history_str','itemid',41170),(27004,'history_text','itemid',41170),(27005,'history_uint','itemid',41170),(27006,'trends','itemid',41170),(27007,'trends_uint','itemid',41170),(27008,'events','itemid',41171),(27009,'history','itemid',41171),(27010,'history_log','itemid',41171),(27011,'history_str','itemid',41171),(27012,'history_text','itemid',41171),(27013,'history_uint','itemid',41171),(27014,'trends','itemid',41171),(27015,'trends_uint','itemid',41171),(27016,'events','itemid',41172),(27017,'history','itemid',41172),(27018,'history_log','itemid',41172),(27019,'history_str','itemid',41172),(27020,'history_text','itemid',41172),(27021,'history_uint','itemid',41172),(27022,'trends','itemid',41172),(27023,'trends_uint','itemid',41172),(27024,'events','itemid',41173),(27025,'history','itemid',41173),(27026,'history_log','itemid',41173),(27027,'history_str','itemid',41173),(27028,'history_text','itemid',41173),(27029,'history_uint','itemid',41173),(27030,'trends','itemid',41173),(27031,'trends_uint','itemid',41173),(27032,'events','itemid',41174),(27033,'history','itemid',41174),(27034,'history_log','itemid',41174),(27035,'history_str','itemid',41174),(27036,'history_text','itemid',41174),(27037,'history_uint','itemid',41174),(27038,'trends','itemid',41174),(27039,'trends_uint','itemid',41174),(27040,'events','itemid',41175),(27041,'history','itemid',41175),(27042,'history_log','itemid',41175),(27043,'history_str','itemid',41175),(27044,'history_text','itemid',41175),(27045,'history_uint','itemid',41175),(27046,'trends','itemid',41175),(27047,'trends_uint','itemid',41175),(27048,'events','itemid',41186),(27049,'history','itemid',41186),(27050,'history_log','itemid',41186),(27051,'history_str','itemid',41186),(27052,'history_text','itemid',41186),(27053,'history_uint','itemid',41186),(27054,'trends','itemid',41186),(27055,'trends_uint','itemid',41186),(27056,'events','itemid',41187),(27057,'history','itemid',41187),(27058,'history_log','itemid',41187),(27059,'history_str','itemid',41187),(27060,'history_text','itemid',41187),(27061,'history_uint','itemid',41187),(27062,'trends','itemid',41187),(27063,'trends_uint','itemid',41187),(27064,'events','itemid',41188),(27065,'history','itemid',41188),(27066,'history_log','itemid',41188),(27067,'history_str','itemid',41188),(27068,'history_text','itemid',41188),(27069,'history_uint','itemid',41188),(27070,'trends','itemid',41188),(27071,'trends_uint','itemid',41188),(27072,'events','itemid',41189),(27073,'history','itemid',41189),(27074,'history_log','itemid',41189),(27075,'history_str','itemid',41189),(27076,'history_text','itemid',41189),(27077,'history_uint','itemid',41189),(27078,'trends','itemid',41189),(27079,'trends_uint','itemid',41189),(27080,'events','itemid',41190),(27081,'history','itemid',41190),(27082,'history_log','itemid',41190),(27083,'history_str','itemid',41190),(27084,'history_text','itemid',41190),(27085,'history_uint','itemid',41190),(27086,'trends','itemid',41190),(27087,'trends_uint','itemid',41190),(27088,'events','itemid',41191),(27089,'history','itemid',41191),(27090,'history_log','itemid',41191),(27091,'history_str','itemid',41191),(27092,'history_text','itemid',41191),(27093,'history_uint','itemid',41191),(27094,'trends','itemid',41191),(27095,'trends_uint','itemid',41191),(27096,'events','itemid',41192),(27097,'history','itemid',41192),(27098,'history_log','itemid',41192),(27099,'history_str','itemid',41192),(27100,'history_text','itemid',41192),(27101,'history_uint','itemid',41192),(27102,'trends','itemid',41192),(27103,'trends_uint','itemid',41192),(27104,'events','itemid',41193),(27105,'history','itemid',41193),(27106,'history_log','itemid',41193),(27107,'history_str','itemid',41193),(27108,'history_text','itemid',41193),(27109,'history_uint','itemid',41193),(27110,'trends','itemid',41193),(27111,'trends_uint','itemid',41193),(27112,'events','itemid',41194),(27113,'history','itemid',41194),(27114,'history_log','itemid',41194),(27115,'history_str','itemid',41194),(27116,'history_text','itemid',41194),(27117,'history_uint','itemid',41194),(27118,'trends','itemid',41194),(27119,'trends_uint','itemid',41194),(27120,'events','itemid',41195),(27121,'history','itemid',41195),(27122,'history_log','itemid',41195),(27123,'history_str','itemid',41195),(27124,'history_text','itemid',41195),(27125,'history_uint','itemid',41195),(27126,'trends','itemid',41195),(27127,'trends_uint','itemid',41195),(27128,'events','itemid',41196),(27129,'history','itemid',41196),(27130,'history_log','itemid',41196),(27131,'history_str','itemid',41196),(27132,'history_text','itemid',41196),(27133,'history_uint','itemid',41196),(27134,'trends','itemid',41196),(27135,'trends_uint','itemid',41196),(27136,'events','itemid',41207),(27137,'history','itemid',41207),(27138,'history_log','itemid',41207),(27139,'history_str','itemid',41207),(27140,'history_text','itemid',41207),(27141,'history_uint','itemid',41207),(27142,'trends','itemid',41207),(27143,'trends_uint','itemid',41207),(27144,'events','itemid',41208),(27145,'history','itemid',41208),(27146,'history_log','itemid',41208),(27147,'history_str','itemid',41208),(27148,'history_text','itemid',41208),(27149,'history_uint','itemid',41208),(27150,'trends','itemid',41208),(27151,'trends_uint','itemid',41208),(27152,'events','itemid',41209),(27153,'history','itemid',41209),(27154,'history_log','itemid',41209),(27155,'history_str','itemid',41209),(27156,'history_text','itemid',41209),(27157,'history_uint','itemid',41209),(27158,'trends','itemid',41209),(27159,'trends_uint','itemid',41209),(27160,'events','itemid',41210),(27161,'history','itemid',41210),(27162,'history_log','itemid',41210),(27163,'history_str','itemid',41210),(27164,'history_text','itemid',41210),(27165,'history_uint','itemid',41210),(27166,'trends','itemid',41210),(27167,'trends_uint','itemid',41210),(27168,'events','itemid',41211),(27169,'history','itemid',41211),(27170,'history_log','itemid',41211),(27171,'history_str','itemid',41211),(27172,'history_text','itemid',41211),(27173,'history_uint','itemid',41211),(27174,'trends','itemid',41211),(27175,'trends_uint','itemid',41211),(27176,'events','itemid',41212),(27177,'history','itemid',41212),(27178,'history_log','itemid',41212),(27179,'history_str','itemid',41212),(27180,'history_text','itemid',41212),(27181,'history_uint','itemid',41212),(27182,'trends','itemid',41212),(27183,'trends_uint','itemid',41212),(27184,'events','itemid',41213),(27185,'history','itemid',41213),(27186,'history_log','itemid',41213),(27187,'history_str','itemid',41213),(27188,'history_text','itemid',41213),(27189,'history_uint','itemid',41213),(27190,'trends','itemid',41213),(27191,'trends_uint','itemid',41213),(27192,'events','itemid',41214),(27193,'history','itemid',41214),(27194,'history_log','itemid',41214),(27195,'history_str','itemid',41214),(27196,'history_text','itemid',41214),(27197,'history_uint','itemid',41214),(27198,'trends','itemid',41214),(27199,'trends_uint','itemid',41214),(27200,'events','itemid',41215),(27201,'history','itemid',41215),(27202,'history_log','itemid',41215),(27203,'history_str','itemid',41215),(27204,'history_text','itemid',41215),(27205,'history_uint','itemid',41215),(27206,'trends','itemid',41215),(27207,'trends_uint','itemid',41215),(27208,'events','itemid',41216),(27209,'history','itemid',41216),(27210,'history_log','itemid',41216),(27211,'history_str','itemid',41216),(27212,'history_text','itemid',41216),(27213,'history_uint','itemid',41216),(27214,'trends','itemid',41216),(27215,'trends_uint','itemid',41216),(27216,'events','itemid',41217),(27217,'history','itemid',41217),(27218,'history_log','itemid',41217),(27219,'history_str','itemid',41217),(27220,'history_text','itemid',41217),(27221,'history_uint','itemid',41217),(27222,'trends','itemid',41217),(27223,'trends_uint','itemid',41217),(27224,'events','itemid',41228),(27225,'history','itemid',41228),(27226,'history_log','itemid',41228),(27227,'history_str','itemid',41228),(27228,'history_text','itemid',41228),(27229,'history_uint','itemid',41228),(27230,'trends','itemid',41228),(27231,'trends_uint','itemid',41228),(27232,'events','itemid',41229),(27233,'history','itemid',41229),(27234,'history_log','itemid',41229),(27235,'history_str','itemid',41229),(27236,'history_text','itemid',41229),(27237,'history_uint','itemid',41229),(27238,'trends','itemid',41229),(27239,'trends_uint','itemid',41229),(27240,'events','itemid',41230),(27241,'history','itemid',41230),(27242,'history_log','itemid',41230),(27243,'history_str','itemid',41230),(27244,'history_text','itemid',41230),(27245,'history_uint','itemid',41230),(27246,'trends','itemid',41230),(27247,'trends_uint','itemid',41230),(27248,'events','itemid',41231),(27249,'history','itemid',41231),(27250,'history_log','itemid',41231),(27251,'history_str','itemid',41231),(27252,'history_text','itemid',41231),(27253,'history_uint','itemid',41231),(27254,'trends','itemid',41231),(27255,'trends_uint','itemid',41231),(27256,'events','itemid',41232),(27257,'history','itemid',41232),(27258,'history_log','itemid',41232),(27259,'history_str','itemid',41232),(27260,'history_text','itemid',41232),(27261,'history_uint','itemid',41232),(27262,'trends','itemid',41232),(27263,'trends_uint','itemid',41232),(27264,'events','itemid',41233),(27265,'history','itemid',41233),(27266,'history_log','itemid',41233),(27267,'history_str','itemid',41233),(27268,'history_text','itemid',41233),(27269,'history_uint','itemid',41233),(27270,'trends','itemid',41233),(27271,'trends_uint','itemid',41233),(27272,'events','itemid',41234),(27273,'history','itemid',41234),(27274,'history_log','itemid',41234),(27275,'history_str','itemid',41234),(27276,'history_text','itemid',41234),(27277,'history_uint','itemid',41234),(27278,'trends','itemid',41234),(27279,'trends_uint','itemid',41234),(27280,'events','itemid',41235),(27281,'history','itemid',41235),(27282,'history_log','itemid',41235),(27283,'history_str','itemid',41235),(27284,'history_text','itemid',41235),(27285,'history_uint','itemid',41235),(27286,'trends','itemid',41235),(27287,'trends_uint','itemid',41235),(27288,'events','itemid',41236),(27289,'history','itemid',41236),(27290,'history_log','itemid',41236),(27291,'history_str','itemid',41236),(27292,'history_text','itemid',41236),(27293,'history_uint','itemid',41236),(27294,'trends','itemid',41236),(27295,'trends_uint','itemid',41236),(27296,'events','itemid',41237),(27297,'history','itemid',41237),(27298,'history_log','itemid',41237),(27299,'history_str','itemid',41237),(27300,'history_text','itemid',41237),(27301,'history_uint','itemid',41237),(27302,'trends','itemid',41237),(27303,'trends_uint','itemid',41237),(27304,'events','itemid',41238),(27305,'history','itemid',41238),(27306,'history_log','itemid',41238),(27307,'history_str','itemid',41238),(27308,'history_text','itemid',41238),(27309,'history_uint','itemid',41238),(27310,'trends','itemid',41238),(27311,'trends_uint','itemid',41238),(27312,'events','itemid',41249),(27313,'history','itemid',41249),(27314,'history_log','itemid',41249),(27315,'history_str','itemid',41249),(27316,'history_text','itemid',41249),(27317,'history_uint','itemid',41249),(27318,'trends','itemid',41249),(27319,'trends_uint','itemid',41249),(27320,'events','itemid',41250),(27321,'history','itemid',41250),(27322,'history_log','itemid',41250),(27323,'history_str','itemid',41250),(27324,'history_text','itemid',41250),(27325,'history_uint','itemid',41250),(27326,'trends','itemid',41250),(27327,'trends_uint','itemid',41250),(27328,'events','itemid',41251),(27329,'history','itemid',41251),(27330,'history_log','itemid',41251),(27331,'history_str','itemid',41251),(27332,'history_text','itemid',41251),(27333,'history_uint','itemid',41251),(27334,'trends','itemid',41251),(27335,'trends_uint','itemid',41251),(27336,'events','itemid',41252),(27337,'history','itemid',41252),(27338,'history_log','itemid',41252),(27339,'history_str','itemid',41252),(27340,'history_text','itemid',41252),(27341,'history_uint','itemid',41252),(27342,'trends','itemid',41252),(27343,'trends_uint','itemid',41252),(27344,'events','itemid',41253),(27345,'history','itemid',41253),(27346,'history_log','itemid',41253),(27347,'history_str','itemid',41253),(27348,'history_text','itemid',41253),(27349,'history_uint','itemid',41253),(27350,'trends','itemid',41253),(27351,'trends_uint','itemid',41253),(27352,'events','itemid',41254),(27353,'history','itemid',41254),(27354,'history_log','itemid',41254),(27355,'history_str','itemid',41254),(27356,'history_text','itemid',41254),(27357,'history_uint','itemid',41254),(27358,'trends','itemid',41254),(27359,'trends_uint','itemid',41254),(27360,'events','itemid',41255),(27361,'history','itemid',41255),(27362,'history_log','itemid',41255),(27363,'history_str','itemid',41255),(27364,'history_text','itemid',41255),(27365,'history_uint','itemid',41255),(27366,'trends','itemid',41255),(27367,'trends_uint','itemid',41255),(27368,'events','itemid',41256),(27369,'history','itemid',41256),(27370,'history_log','itemid',41256),(27371,'history_str','itemid',41256),(27372,'history_text','itemid',41256),(27373,'history_uint','itemid',41256),(27374,'trends','itemid',41256),(27375,'trends_uint','itemid',41256),(27376,'events','itemid',41257),(27377,'history','itemid',41257),(27378,'history_log','itemid',41257),(27379,'history_str','itemid',41257),(27380,'history_text','itemid',41257),(27381,'history_uint','itemid',41257),(27382,'trends','itemid',41257),(27383,'trends_uint','itemid',41257),(27384,'events','itemid',41258),(27385,'history','itemid',41258),(27386,'history_log','itemid',41258),(27387,'history_str','itemid',41258),(27388,'history_text','itemid',41258),(27389,'history_uint','itemid',41258),(27390,'trends','itemid',41258),(27391,'trends_uint','itemid',41258),(27392,'events','itemid',41259),(27393,'history','itemid',41259),(27394,'history_log','itemid',41259),(27395,'history_str','itemid',41259),(27396,'history_text','itemid',41259),(27397,'history_uint','itemid',41259),(27398,'trends','itemid',41259),(27399,'trends_uint','itemid',41259),(27400,'events','itemid',41270),(27401,'history','itemid',41270),(27402,'history_log','itemid',41270),(27403,'history_str','itemid',41270),(27404,'history_text','itemid',41270),(27405,'history_uint','itemid',41270),(27406,'trends','itemid',41270),(27407,'trends_uint','itemid',41270),(27408,'events','itemid',41271),(27409,'history','itemid',41271),(27410,'history_log','itemid',41271),(27411,'history_str','itemid',41271),(27412,'history_text','itemid',41271),(27413,'history_uint','itemid',41271),(27414,'trends','itemid',41271),(27415,'trends_uint','itemid',41271),(27416,'events','itemid',41272),(27417,'history','itemid',41272),(27418,'history_log','itemid',41272),(27419,'history_str','itemid',41272),(27420,'history_text','itemid',41272),(27421,'history_uint','itemid',41272),(27422,'trends','itemid',41272),(27423,'trends_uint','itemid',41272),(27424,'events','itemid',41273),(27425,'history','itemid',41273),(27426,'history_log','itemid',41273),(27427,'history_str','itemid',41273),(27428,'history_text','itemid',41273),(27429,'history_uint','itemid',41273),(27430,'trends','itemid',41273),(27431,'trends_uint','itemid',41273),(27432,'events','itemid',41274),(27433,'history','itemid',41274),(27434,'history_log','itemid',41274),(27435,'history_str','itemid',41274),(27436,'history_text','itemid',41274),(27437,'history_uint','itemid',41274),(27438,'trends','itemid',41274),(27439,'trends_uint','itemid',41274),(27440,'events','itemid',41275),(27441,'history','itemid',41275),(27442,'history_log','itemid',41275),(27443,'history_str','itemid',41275),(27444,'history_text','itemid',41275),(27445,'history_uint','itemid',41275),(27446,'trends','itemid',41275),(27447,'trends_uint','itemid',41275),(27448,'events','itemid',41276),(27449,'history','itemid',41276),(27450,'history_log','itemid',41276),(27451,'history_str','itemid',41276),(27452,'history_text','itemid',41276),(27453,'history_uint','itemid',41276),(27454,'trends','itemid',41276),(27455,'trends_uint','itemid',41276),(27456,'events','itemid',41277),(27457,'history','itemid',41277),(27458,'history_log','itemid',41277),(27459,'history_str','itemid',41277),(27460,'history_text','itemid',41277),(27461,'history_uint','itemid',41277),(27462,'trends','itemid',41277),(27463,'trends_uint','itemid',41277),(27464,'events','itemid',41278),(27465,'history','itemid',41278),(27466,'history_log','itemid',41278),(27467,'history_str','itemid',41278),(27468,'history_text','itemid',41278),(27469,'history_uint','itemid',41278),(27470,'trends','itemid',41278),(27471,'trends_uint','itemid',41278),(27472,'events','itemid',41279),(27473,'history','itemid',41279),(27474,'history_log','itemid',41279),(27475,'history_str','itemid',41279),(27476,'history_text','itemid',41279),(27477,'history_uint','itemid',41279),(27478,'trends','itemid',41279),(27479,'trends_uint','itemid',41279),(27480,'events','itemid',41280),(27481,'history','itemid',41280),(27482,'history_log','itemid',41280),(27483,'history_str','itemid',41280),(27484,'history_text','itemid',41280),(27485,'history_uint','itemid',41280),(27486,'trends','itemid',41280),(27487,'trends_uint','itemid',41280),(27488,'events','itemid',41291),(27489,'history','itemid',41291),(27490,'history_log','itemid',41291),(27491,'history_str','itemid',41291),(27492,'history_text','itemid',41291),(27493,'history_uint','itemid',41291),(27494,'trends','itemid',41291),(27495,'trends_uint','itemid',41291),(27496,'events','itemid',41292),(27497,'history','itemid',41292),(27498,'history_log','itemid',41292),(27499,'history_str','itemid',41292),(27500,'history_text','itemid',41292),(27501,'history_uint','itemid',41292),(27502,'trends','itemid',41292),(27503,'trends_uint','itemid',41292),(27504,'events','itemid',41293),(27505,'history','itemid',41293),(27506,'history_log','itemid',41293),(27507,'history_str','itemid',41293),(27508,'history_text','itemid',41293),(27509,'history_uint','itemid',41293),(27510,'trends','itemid',41293),(27511,'trends_uint','itemid',41293),(27512,'events','itemid',41294),(27513,'history','itemid',41294),(27514,'history_log','itemid',41294),(27515,'history_str','itemid',41294),(27516,'history_text','itemid',41294),(27517,'history_uint','itemid',41294),(27518,'trends','itemid',41294),(27519,'trends_uint','itemid',41294),(27520,'events','itemid',41295),(27521,'history','itemid',41295),(27522,'history_log','itemid',41295),(27523,'history_str','itemid',41295),(27524,'history_text','itemid',41295),(27525,'history_uint','itemid',41295),(27526,'trends','itemid',41295),(27527,'trends_uint','itemid',41295),(27528,'events','itemid',41296),(27529,'history','itemid',41296),(27530,'history_log','itemid',41296),(27531,'history_str','itemid',41296),(27532,'history_text','itemid',41296),(27533,'history_uint','itemid',41296),(27534,'trends','itemid',41296),(27535,'trends_uint','itemid',41296),(27536,'events','itemid',41297),(27537,'history','itemid',41297),(27538,'history_log','itemid',41297),(27539,'history_str','itemid',41297),(27540,'history_text','itemid',41297),(27541,'history_uint','itemid',41297),(27542,'trends','itemid',41297),(27543,'trends_uint','itemid',41297),(27544,'events','itemid',41298),(27545,'history','itemid',41298),(27546,'history_log','itemid',41298),(27547,'history_str','itemid',41298),(27548,'history_text','itemid',41298),(27549,'history_uint','itemid',41298),(27550,'trends','itemid',41298),(27551,'trends_uint','itemid',41298),(27552,'events','itemid',41299),(27553,'history','itemid',41299),(27554,'history_log','itemid',41299),(27555,'history_str','itemid',41299),(27556,'history_text','itemid',41299),(27557,'history_uint','itemid',41299),(27558,'trends','itemid',41299),(27559,'trends_uint','itemid',41299),(27560,'events','itemid',41300),(27561,'history','itemid',41300),(27562,'history_log','itemid',41300),(27563,'history_str','itemid',41300),(27564,'history_text','itemid',41300),(27565,'history_uint','itemid',41300),(27566,'trends','itemid',41300),(27567,'trends_uint','itemid',41300),(27568,'events','itemid',41301),(27569,'history','itemid',41301),(27570,'history_log','itemid',41301),(27571,'history_str','itemid',41301),(27572,'history_text','itemid',41301),(27573,'history_uint','itemid',41301),(27574,'trends','itemid',41301),(27575,'trends_uint','itemid',41301),(27576,'events','itemid',41312),(27577,'history','itemid',41312),(27578,'history_log','itemid',41312),(27579,'history_str','itemid',41312),(27580,'history_text','itemid',41312),(27581,'history_uint','itemid',41312),(27582,'trends','itemid',41312),(27583,'trends_uint','itemid',41312),(27584,'events','itemid',41313),(27585,'history','itemid',41313),(27586,'history_log','itemid',41313),(27587,'history_str','itemid',41313),(27588,'history_text','itemid',41313),(27589,'history_uint','itemid',41313),(27590,'trends','itemid',41313),(27591,'trends_uint','itemid',41313),(27592,'events','itemid',41314),(27593,'history','itemid',41314),(27594,'history_log','itemid',41314),(27595,'history_str','itemid',41314),(27596,'history_text','itemid',41314),(27597,'history_uint','itemid',41314),(27598,'trends','itemid',41314),(27599,'trends_uint','itemid',41314),(27600,'events','itemid',41315),(27601,'history','itemid',41315),(27602,'history_log','itemid',41315),(27603,'history_str','itemid',41315),(27604,'history_text','itemid',41315),(27605,'history_uint','itemid',41315),(27606,'trends','itemid',41315),(27607,'trends_uint','itemid',41315),(27608,'events','itemid',41316),(27609,'history','itemid',41316),(27610,'history_log','itemid',41316),(27611,'history_str','itemid',41316),(27612,'history_text','itemid',41316),(27613,'history_uint','itemid',41316),(27614,'trends','itemid',41316),(27615,'trends_uint','itemid',41316),(27616,'events','itemid',41317),(27617,'history','itemid',41317),(27618,'history_log','itemid',41317),(27619,'history_str','itemid',41317),(27620,'history_text','itemid',41317),(27621,'history_uint','itemid',41317),(27622,'trends','itemid',41317),(27623,'trends_uint','itemid',41317),(27624,'events','itemid',41318),(27625,'history','itemid',41318),(27626,'history_log','itemid',41318),(27627,'history_str','itemid',41318),(27628,'history_text','itemid',41318),(27629,'history_uint','itemid',41318),(27630,'trends','itemid',41318),(27631,'trends_uint','itemid',41318),(27632,'events','itemid',41319),(27633,'history','itemid',41319),(27634,'history_log','itemid',41319),(27635,'history_str','itemid',41319),(27636,'history_text','itemid',41319),(27637,'history_uint','itemid',41319),(27638,'trends','itemid',41319),(27639,'trends_uint','itemid',41319),(27640,'events','itemid',41320),(27641,'history','itemid',41320),(27642,'history_log','itemid',41320),(27643,'history_str','itemid',41320),(27644,'history_text','itemid',41320),(27645,'history_uint','itemid',41320),(27646,'trends','itemid',41320),(27647,'trends_uint','itemid',41320),(27648,'events','itemid',41321),(27649,'history','itemid',41321),(27650,'history_log','itemid',41321),(27651,'history_str','itemid',41321),(27652,'history_text','itemid',41321),(27653,'history_uint','itemid',41321),(27654,'trends','itemid',41321),(27655,'trends_uint','itemid',41321),(27656,'events','itemid',41322),(27657,'history','itemid',41322),(27658,'history_log','itemid',41322),(27659,'history_str','itemid',41322),(27660,'history_text','itemid',41322),(27661,'history_uint','itemid',41322),(27662,'trends','itemid',41322),(27663,'trends_uint','itemid',41322),(27664,'events','itemid',41333),(27665,'history','itemid',41333),(27666,'history_log','itemid',41333),(27667,'history_str','itemid',41333),(27668,'history_text','itemid',41333),(27669,'history_uint','itemid',41333),(27670,'trends','itemid',41333),(27671,'trends_uint','itemid',41333),(27672,'events','itemid',41334),(27673,'history','itemid',41334),(27674,'history_log','itemid',41334),(27675,'history_str','itemid',41334),(27676,'history_text','itemid',41334),(27677,'history_uint','itemid',41334),(27678,'trends','itemid',41334),(27679,'trends_uint','itemid',41334),(27680,'events','itemid',41335),(27681,'history','itemid',41335),(27682,'history_log','itemid',41335),(27683,'history_str','itemid',41335),(27684,'history_text','itemid',41335),(27685,'history_uint','itemid',41335),(27686,'trends','itemid',41335),(27687,'trends_uint','itemid',41335),(27688,'events','itemid',41336),(27689,'history','itemid',41336),(27690,'history_log','itemid',41336),(27691,'history_str','itemid',41336),(27692,'history_text','itemid',41336),(27693,'history_uint','itemid',41336),(27694,'trends','itemid',41336),(27695,'trends_uint','itemid',41336),(27696,'events','itemid',41337),(27697,'history','itemid',41337),(27698,'history_log','itemid',41337),(27699,'history_str','itemid',41337),(27700,'history_text','itemid',41337),(27701,'history_uint','itemid',41337),(27702,'trends','itemid',41337),(27703,'trends_uint','itemid',41337),(27704,'events','itemid',41338),(27705,'history','itemid',41338),(27706,'history_log','itemid',41338),(27707,'history_str','itemid',41338),(27708,'history_text','itemid',41338),(27709,'history_uint','itemid',41338),(27710,'trends','itemid',41338),(27711,'trends_uint','itemid',41338),(27712,'events','itemid',41339),(27713,'history','itemid',41339),(27714,'history_log','itemid',41339),(27715,'history_str','itemid',41339),(27716,'history_text','itemid',41339),(27717,'history_uint','itemid',41339),(27718,'trends','itemid',41339),(27719,'trends_uint','itemid',41339),(27720,'events','itemid',41340),(27721,'history','itemid',41340),(27722,'history_log','itemid',41340),(27723,'history_str','itemid',41340),(27724,'history_text','itemid',41340),(27725,'history_uint','itemid',41340),(27726,'trends','itemid',41340),(27727,'trends_uint','itemid',41340),(27728,'events','itemid',41341),(27729,'history','itemid',41341),(27730,'history_log','itemid',41341),(27731,'history_str','itemid',41341),(27732,'history_text','itemid',41341),(27733,'history_uint','itemid',41341),(27734,'trends','itemid',41341),(27735,'trends_uint','itemid',41341),(27736,'events','itemid',41342),(27737,'history','itemid',41342),(27738,'history_log','itemid',41342),(27739,'history_str','itemid',41342),(27740,'history_text','itemid',41342),(27741,'history_uint','itemid',41342),(27742,'trends','itemid',41342),(27743,'trends_uint','itemid',41342),(27744,'events','itemid',41343),(27745,'history','itemid',41343),(27746,'history_log','itemid',41343),(27747,'history_str','itemid',41343),(27748,'history_text','itemid',41343),(27749,'history_uint','itemid',41343),(27750,'trends','itemid',41343),(27751,'trends_uint','itemid',41343),(27752,'events','itemid',41354),(27753,'history','itemid',41354),(27754,'history_log','itemid',41354),(27755,'history_str','itemid',41354),(27756,'history_text','itemid',41354),(27757,'history_uint','itemid',41354),(27758,'trends','itemid',41354),(27759,'trends_uint','itemid',41354),(27760,'events','itemid',41355),(27761,'history','itemid',41355),(27762,'history_log','itemid',41355),(27763,'history_str','itemid',41355),(27764,'history_text','itemid',41355),(27765,'history_uint','itemid',41355),(27766,'trends','itemid',41355),(27767,'trends_uint','itemid',41355),(27768,'events','itemid',41356),(27769,'history','itemid',41356),(27770,'history_log','itemid',41356),(27771,'history_str','itemid',41356),(27772,'history_text','itemid',41356),(27773,'history_uint','itemid',41356),(27774,'trends','itemid',41356),(27775,'trends_uint','itemid',41356),(27776,'events','itemid',41357),(27777,'history','itemid',41357),(27778,'history_log','itemid',41357),(27779,'history_str','itemid',41357),(27780,'history_text','itemid',41357),(27781,'history_uint','itemid',41357),(27782,'trends','itemid',41357),(27783,'trends_uint','itemid',41357),(27784,'events','itemid',41358),(27785,'history','itemid',41358),(27786,'history_log','itemid',41358),(27787,'history_str','itemid',41358),(27788,'history_text','itemid',41358),(27789,'history_uint','itemid',41358),(27790,'trends','itemid',41358),(27791,'trends_uint','itemid',41358),(27792,'events','itemid',41359),(27793,'history','itemid',41359),(27794,'history_log','itemid',41359),(27795,'history_str','itemid',41359),(27796,'history_text','itemid',41359),(27797,'history_uint','itemid',41359),(27798,'trends','itemid',41359),(27799,'trends_uint','itemid',41359),(27800,'events','itemid',41360),(27801,'history','itemid',41360),(27802,'history_log','itemid',41360),(27803,'history_str','itemid',41360),(27804,'history_text','itemid',41360),(27805,'history_uint','itemid',41360),(27806,'trends','itemid',41360),(27807,'trends_uint','itemid',41360),(27808,'events','itemid',41361),(27809,'history','itemid',41361),(27810,'history_log','itemid',41361),(27811,'history_str','itemid',41361),(27812,'history_text','itemid',41361),(27813,'history_uint','itemid',41361),(27814,'trends','itemid',41361),(27815,'trends_uint','itemid',41361),(27816,'events','itemid',41362),(27817,'history','itemid',41362),(27818,'history_log','itemid',41362),(27819,'history_str','itemid',41362),(27820,'history_text','itemid',41362),(27821,'history_uint','itemid',41362),(27822,'trends','itemid',41362),(27823,'trends_uint','itemid',41362),(27824,'events','itemid',41363),(27825,'history','itemid',41363),(27826,'history_log','itemid',41363),(27827,'history_str','itemid',41363),(27828,'history_text','itemid',41363),(27829,'history_uint','itemid',41363),(27830,'trends','itemid',41363),(27831,'trends_uint','itemid',41363),(27832,'events','itemid',41364),(27833,'history','itemid',41364),(27834,'history_log','itemid',41364),(27835,'history_str','itemid',41364),(27836,'history_text','itemid',41364),(27837,'history_uint','itemid',41364),(27838,'trends','itemid',41364),(27839,'trends_uint','itemid',41364),(27840,'events','itemid',41375),(27841,'history','itemid',41375),(27842,'history_log','itemid',41375),(27843,'history_str','itemid',41375),(27844,'history_text','itemid',41375),(27845,'history_uint','itemid',41375),(27846,'trends','itemid',41375),(27847,'trends_uint','itemid',41375),(27848,'events','itemid',41376),(27849,'history','itemid',41376),(27850,'history_log','itemid',41376),(27851,'history_str','itemid',41376),(27852,'history_text','itemid',41376),(27853,'history_uint','itemid',41376),(27854,'trends','itemid',41376),(27855,'trends_uint','itemid',41376),(27856,'events','itemid',41377),(27857,'history','itemid',41377),(27858,'history_log','itemid',41377),(27859,'history_str','itemid',41377),(27860,'history_text','itemid',41377),(27861,'history_uint','itemid',41377),(27862,'trends','itemid',41377),(27863,'trends_uint','itemid',41377),(27864,'events','itemid',41378),(27865,'history','itemid',41378),(27866,'history_log','itemid',41378),(27867,'history_str','itemid',41378),(27868,'history_text','itemid',41378),(27869,'history_uint','itemid',41378),(27870,'trends','itemid',41378),(27871,'trends_uint','itemid',41378),(27872,'events','itemid',41379),(27873,'history','itemid',41379),(27874,'history_log','itemid',41379),(27875,'history_str','itemid',41379),(27876,'history_text','itemid',41379),(27877,'history_uint','itemid',41379),(27878,'trends','itemid',41379),(27879,'trends_uint','itemid',41379),(27880,'events','itemid',41380),(27881,'history','itemid',41380),(27882,'history_log','itemid',41380),(27883,'history_str','itemid',41380),(27884,'history_text','itemid',41380),(27885,'history_uint','itemid',41380),(27886,'trends','itemid',41380),(27887,'trends_uint','itemid',41380),(27888,'events','itemid',41381),(27889,'history','itemid',41381),(27890,'history_log','itemid',41381),(27891,'history_str','itemid',41381),(27892,'history_text','itemid',41381),(27893,'history_uint','itemid',41381),(27894,'trends','itemid',41381),(27895,'trends_uint','itemid',41381),(27896,'events','itemid',41382),(27897,'history','itemid',41382),(27898,'history_log','itemid',41382),(27899,'history_str','itemid',41382),(27900,'history_text','itemid',41382),(27901,'history_uint','itemid',41382),(27902,'trends','itemid',41382),(27903,'trends_uint','itemid',41382),(27904,'events','itemid',41383),(27905,'history','itemid',41383),(27906,'history_log','itemid',41383),(27907,'history_str','itemid',41383),(27908,'history_text','itemid',41383),(27909,'history_uint','itemid',41383),(27910,'trends','itemid',41383),(27911,'trends_uint','itemid',41383),(27912,'events','itemid',41384),(27913,'history','itemid',41384),(27914,'history_log','itemid',41384),(27915,'history_str','itemid',41384),(27916,'history_text','itemid',41384),(27917,'history_uint','itemid',41384),(27918,'trends','itemid',41384),(27919,'trends_uint','itemid',41384),(27920,'events','itemid',41385),(27921,'history','itemid',41385),(27922,'history_log','itemid',41385),(27923,'history_str','itemid',41385),(27924,'history_text','itemid',41385),(27925,'history_uint','itemid',41385),(27926,'trends','itemid',41385),(27927,'trends_uint','itemid',41385),(27928,'events','itemid',41396),(27929,'history','itemid',41396),(27930,'history_log','itemid',41396),(27931,'history_str','itemid',41396),(27932,'history_text','itemid',41396),(27933,'history_uint','itemid',41396),(27934,'trends','itemid',41396),(27935,'trends_uint','itemid',41396),(27936,'events','itemid',41397),(27937,'history','itemid',41397),(27938,'history_log','itemid',41397),(27939,'history_str','itemid',41397),(27940,'history_text','itemid',41397),(27941,'history_uint','itemid',41397),(27942,'trends','itemid',41397),(27943,'trends_uint','itemid',41397),(27944,'events','itemid',41398),(27945,'history','itemid',41398),(27946,'history_log','itemid',41398),(27947,'history_str','itemid',41398),(27948,'history_text','itemid',41398),(27949,'history_uint','itemid',41398),(27950,'trends','itemid',41398),(27951,'trends_uint','itemid',41398),(27952,'events','itemid',41399),(27953,'history','itemid',41399),(27954,'history_log','itemid',41399),(27955,'history_str','itemid',41399),(27956,'history_text','itemid',41399),(27957,'history_uint','itemid',41399),(27958,'trends','itemid',41399),(27959,'trends_uint','itemid',41399),(27960,'events','itemid',41400),(27961,'history','itemid',41400),(27962,'history_log','itemid',41400),(27963,'history_str','itemid',41400),(27964,'history_text','itemid',41400),(27965,'history_uint','itemid',41400),(27966,'trends','itemid',41400),(27967,'trends_uint','itemid',41400),(27968,'events','itemid',41401),(27969,'history','itemid',41401),(27970,'history_log','itemid',41401),(27971,'history_str','itemid',41401),(27972,'history_text','itemid',41401),(27973,'history_uint','itemid',41401),(27974,'trends','itemid',41401),(27975,'trends_uint','itemid',41401),(27976,'events','itemid',41402),(27977,'history','itemid',41402),(27978,'history_log','itemid',41402),(27979,'history_str','itemid',41402),(27980,'history_text','itemid',41402),(27981,'history_uint','itemid',41402),(27982,'trends','itemid',41402),(27983,'trends_uint','itemid',41402),(27984,'events','itemid',41403),(27985,'history','itemid',41403),(27986,'history_log','itemid',41403),(27987,'history_str','itemid',41403),(27988,'history_text','itemid',41403),(27989,'history_uint','itemid',41403),(27990,'trends','itemid',41403),(27991,'trends_uint','itemid',41403),(27992,'events','itemid',41404),(27993,'history','itemid',41404),(27994,'history_log','itemid',41404),(27995,'history_str','itemid',41404),(27996,'history_text','itemid',41404),(27997,'history_uint','itemid',41404),(27998,'trends','itemid',41404),(27999,'trends_uint','itemid',41404),(28000,'events','itemid',41405),(28001,'history','itemid',41405),(28002,'history_log','itemid',41405),(28003,'history_str','itemid',41405),(28004,'history_text','itemid',41405),(28005,'history_uint','itemid',41405),(28006,'trends','itemid',41405),(28007,'trends_uint','itemid',41405),(28008,'events','itemid',41406),(28009,'history','itemid',41406),(28010,'history_log','itemid',41406),(28011,'history_str','itemid',41406),(28012,'history_text','itemid',41406),(28013,'history_uint','itemid',41406),(28014,'trends','itemid',41406),(28015,'trends_uint','itemid',41406),(28016,'events','itemid',41417),(28017,'history','itemid',41417),(28018,'history_log','itemid',41417),(28019,'history_str','itemid',41417),(28020,'history_text','itemid',41417),(28021,'history_uint','itemid',41417),(28022,'trends','itemid',41417),(28023,'trends_uint','itemid',41417),(28024,'events','itemid',41418),(28025,'history','itemid',41418),(28026,'history_log','itemid',41418),(28027,'history_str','itemid',41418),(28028,'history_text','itemid',41418),(28029,'history_uint','itemid',41418),(28030,'trends','itemid',41418),(28031,'trends_uint','itemid',41418),(28032,'events','itemid',41419),(28033,'history','itemid',41419),(28034,'history_log','itemid',41419),(28035,'history_str','itemid',41419),(28036,'history_text','itemid',41419),(28037,'history_uint','itemid',41419),(28038,'trends','itemid',41419),(28039,'trends_uint','itemid',41419),(28040,'events','itemid',41420),(28041,'history','itemid',41420),(28042,'history_log','itemid',41420),(28043,'history_str','itemid',41420),(28044,'history_text','itemid',41420),(28045,'history_uint','itemid',41420),(28046,'trends','itemid',41420),(28047,'trends_uint','itemid',41420),(28048,'events','itemid',41421),(28049,'history','itemid',41421),(28050,'history_log','itemid',41421),(28051,'history_str','itemid',41421),(28052,'history_text','itemid',41421),(28053,'history_uint','itemid',41421),(28054,'trends','itemid',41421),(28055,'trends_uint','itemid',41421),(28056,'events','itemid',41422),(28057,'history','itemid',41422),(28058,'history_log','itemid',41422),(28059,'history_str','itemid',41422),(28060,'history_text','itemid',41422),(28061,'history_uint','itemid',41422),(28062,'trends','itemid',41422),(28063,'trends_uint','itemid',41422),(28064,'events','itemid',41423),(28065,'history','itemid',41423),(28066,'history_log','itemid',41423),(28067,'history_str','itemid',41423),(28068,'history_text','itemid',41423),(28069,'history_uint','itemid',41423),(28070,'trends','itemid',41423),(28071,'trends_uint','itemid',41423),(28072,'events','itemid',41424),(28073,'history','itemid',41424),(28074,'history_log','itemid',41424),(28075,'history_str','itemid',41424),(28076,'history_text','itemid',41424),(28077,'history_uint','itemid',41424),(28078,'trends','itemid',41424),(28079,'trends_uint','itemid',41424),(28080,'events','itemid',41425),(28081,'history','itemid',41425),(28082,'history_log','itemid',41425),(28083,'history_str','itemid',41425),(28084,'history_text','itemid',41425),(28085,'history_uint','itemid',41425),(28086,'trends','itemid',41425),(28087,'trends_uint','itemid',41425),(28088,'events','itemid',41426),(28089,'history','itemid',41426),(28090,'history_log','itemid',41426),(28091,'history_str','itemid',41426),(28092,'history_text','itemid',41426),(28093,'history_uint','itemid',41426),(28094,'trends','itemid',41426),(28095,'trends_uint','itemid',41426),(28096,'events','itemid',41427),(28097,'history','itemid',41427),(28098,'history_log','itemid',41427),(28099,'history_str','itemid',41427),(28100,'history_text','itemid',41427),(28101,'history_uint','itemid',41427),(28102,'trends','itemid',41427),(28103,'trends_uint','itemid',41427),(28104,'events','itemid',41438),(28105,'history','itemid',41438),(28106,'history_log','itemid',41438),(28107,'history_str','itemid',41438),(28108,'history_text','itemid',41438),(28109,'history_uint','itemid',41438),(28110,'trends','itemid',41438),(28111,'trends_uint','itemid',41438),(28112,'events','itemid',41439),(28113,'history','itemid',41439),(28114,'history_log','itemid',41439),(28115,'history_str','itemid',41439),(28116,'history_text','itemid',41439),(28117,'history_uint','itemid',41439),(28118,'trends','itemid',41439),(28119,'trends_uint','itemid',41439),(28120,'events','itemid',41440),(28121,'history','itemid',41440),(28122,'history_log','itemid',41440),(28123,'history_str','itemid',41440),(28124,'history_text','itemid',41440),(28125,'history_uint','itemid',41440),(28126,'trends','itemid',41440),(28127,'trends_uint','itemid',41440),(28128,'events','itemid',41441),(28129,'history','itemid',41441),(28130,'history_log','itemid',41441),(28131,'history_str','itemid',41441),(28132,'history_text','itemid',41441),(28133,'history_uint','itemid',41441),(28134,'trends','itemid',41441),(28135,'trends_uint','itemid',41441),(28136,'events','itemid',41442),(28137,'history','itemid',41442),(28138,'history_log','itemid',41442),(28139,'history_str','itemid',41442),(28140,'history_text','itemid',41442),(28141,'history_uint','itemid',41442),(28142,'trends','itemid',41442),(28143,'trends_uint','itemid',41442),(28144,'events','itemid',41443),(28145,'history','itemid',41443),(28146,'history_log','itemid',41443),(28147,'history_str','itemid',41443),(28148,'history_text','itemid',41443),(28149,'history_uint','itemid',41443),(28150,'trends','itemid',41443),(28151,'trends_uint','itemid',41443),(28152,'events','itemid',41444),(28153,'history','itemid',41444),(28154,'history_log','itemid',41444),(28155,'history_str','itemid',41444),(28156,'history_text','itemid',41444),(28157,'history_uint','itemid',41444),(28158,'trends','itemid',41444),(28159,'trends_uint','itemid',41444),(28160,'events','itemid',41445),(28161,'history','itemid',41445),(28162,'history_log','itemid',41445),(28163,'history_str','itemid',41445),(28164,'history_text','itemid',41445),(28165,'history_uint','itemid',41445),(28166,'trends','itemid',41445),(28167,'trends_uint','itemid',41445),(28168,'events','itemid',41446),(28169,'history','itemid',41446),(28170,'history_log','itemid',41446),(28171,'history_str','itemid',41446),(28172,'history_text','itemid',41446),(28173,'history_uint','itemid',41446),(28174,'trends','itemid',41446),(28175,'trends_uint','itemid',41446),(28176,'events','itemid',41447),(28177,'history','itemid',41447),(28178,'history_log','itemid',41447),(28179,'history_str','itemid',41447),(28180,'history_text','itemid',41447),(28181,'history_uint','itemid',41447),(28182,'trends','itemid',41447),(28183,'trends_uint','itemid',41447),(28184,'events','itemid',41448),(28185,'history','itemid',41448),(28186,'history_log','itemid',41448),(28187,'history_str','itemid',41448),(28188,'history_text','itemid',41448),(28189,'history_uint','itemid',41448),(28190,'trends','itemid',41448),(28191,'trends_uint','itemid',41448),(28192,'events','itemid',41459),(28193,'history','itemid',41459),(28194,'history_log','itemid',41459),(28195,'history_str','itemid',41459),(28196,'history_text','itemid',41459),(28197,'history_uint','itemid',41459),(28198,'trends','itemid',41459),(28199,'trends_uint','itemid',41459),(28200,'events','itemid',41460),(28201,'history','itemid',41460),(28202,'history_log','itemid',41460),(28203,'history_str','itemid',41460),(28204,'history_text','itemid',41460),(28205,'history_uint','itemid',41460),(28206,'trends','itemid',41460),(28207,'trends_uint','itemid',41460),(28208,'events','itemid',41461),(28209,'history','itemid',41461),(28210,'history_log','itemid',41461),(28211,'history_str','itemid',41461),(28212,'history_text','itemid',41461),(28213,'history_uint','itemid',41461),(28214,'trends','itemid',41461),(28215,'trends_uint','itemid',41461),(28216,'events','itemid',41462),(28217,'history','itemid',41462),(28218,'history_log','itemid',41462),(28219,'history_str','itemid',41462),(28220,'history_text','itemid',41462),(28221,'history_uint','itemid',41462),(28222,'trends','itemid',41462),(28223,'trends_uint','itemid',41462),(28224,'events','itemid',41463),(28225,'history','itemid',41463),(28226,'history_log','itemid',41463),(28227,'history_str','itemid',41463),(28228,'history_text','itemid',41463),(28229,'history_uint','itemid',41463),(28230,'trends','itemid',41463),(28231,'trends_uint','itemid',41463),(28232,'events','itemid',41464),(28233,'history','itemid',41464),(28234,'history_log','itemid',41464),(28235,'history_str','itemid',41464),(28236,'history_text','itemid',41464),(28237,'history_uint','itemid',41464),(28238,'trends','itemid',41464),(28239,'trends_uint','itemid',41464),(28240,'events','itemid',41465),(28241,'history','itemid',41465),(28242,'history_log','itemid',41465),(28243,'history_str','itemid',41465),(28244,'history_text','itemid',41465),(28245,'history_uint','itemid',41465),(28246,'trends','itemid',41465),(28247,'trends_uint','itemid',41465),(28248,'events','itemid',41466),(28249,'history','itemid',41466),(28250,'history_log','itemid',41466),(28251,'history_str','itemid',41466),(28252,'history_text','itemid',41466),(28253,'history_uint','itemid',41466),(28254,'trends','itemid',41466),(28255,'trends_uint','itemid',41466),(28256,'events','itemid',41467),(28257,'history','itemid',41467),(28258,'history_log','itemid',41467),(28259,'history_str','itemid',41467),(28260,'history_text','itemid',41467),(28261,'history_uint','itemid',41467),(28262,'trends','itemid',41467),(28263,'trends_uint','itemid',41467),(28264,'events','itemid',41468),(28265,'history','itemid',41468),(28266,'history_log','itemid',41468),(28267,'history_str','itemid',41468),(28268,'history_text','itemid',41468),(28269,'history_uint','itemid',41468),(28270,'trends','itemid',41468),(28271,'trends_uint','itemid',41468),(28272,'events','itemid',41469),(28273,'history','itemid',41469),(28274,'history_log','itemid',41469),(28275,'history_str','itemid',41469),(28276,'history_text','itemid',41469),(28277,'history_uint','itemid',41469),(28278,'trends','itemid',41469),(28279,'trends_uint','itemid',41469),(28280,'events','itemid',41480),(28281,'history','itemid',41480),(28282,'history_log','itemid',41480),(28283,'history_str','itemid',41480),(28284,'history_text','itemid',41480),(28285,'history_uint','itemid',41480),(28286,'trends','itemid',41480),(28287,'trends_uint','itemid',41480),(28288,'events','itemid',41481),(28289,'history','itemid',41481),(28290,'history_log','itemid',41481),(28291,'history_str','itemid',41481),(28292,'history_text','itemid',41481),(28293,'history_uint','itemid',41481),(28294,'trends','itemid',41481),(28295,'trends_uint','itemid',41481),(28296,'events','itemid',41482),(28297,'history','itemid',41482),(28298,'history_log','itemid',41482),(28299,'history_str','itemid',41482),(28300,'history_text','itemid',41482),(28301,'history_uint','itemid',41482),(28302,'trends','itemid',41482),(28303,'trends_uint','itemid',41482),(28304,'events','itemid',41483),(28305,'history','itemid',41483),(28306,'history_log','itemid',41483),(28307,'history_str','itemid',41483),(28308,'history_text','itemid',41483),(28309,'history_uint','itemid',41483),(28310,'trends','itemid',41483),(28311,'trends_uint','itemid',41483),(28312,'events','itemid',41484),(28313,'history','itemid',41484),(28314,'history_log','itemid',41484),(28315,'history_str','itemid',41484),(28316,'history_text','itemid',41484),(28317,'history_uint','itemid',41484),(28318,'trends','itemid',41484),(28319,'trends_uint','itemid',41484),(28320,'events','itemid',41485),(28321,'history','itemid',41485),(28322,'history_log','itemid',41485),(28323,'history_str','itemid',41485),(28324,'history_text','itemid',41485),(28325,'history_uint','itemid',41485),(28326,'trends','itemid',41485),(28327,'trends_uint','itemid',41485),(28328,'events','itemid',41486),(28329,'history','itemid',41486),(28330,'history_log','itemid',41486),(28331,'history_str','itemid',41486),(28332,'history_text','itemid',41486),(28333,'history_uint','itemid',41486),(28334,'trends','itemid',41486),(28335,'trends_uint','itemid',41486),(28336,'events','itemid',41487),(28337,'history','itemid',41487),(28338,'history_log','itemid',41487),(28339,'history_str','itemid',41487),(28340,'history_text','itemid',41487),(28341,'history_uint','itemid',41487),(28342,'trends','itemid',41487),(28343,'trends_uint','itemid',41487),(28344,'events','itemid',41488),(28345,'history','itemid',41488),(28346,'history_log','itemid',41488),(28347,'history_str','itemid',41488),(28348,'history_text','itemid',41488),(28349,'history_uint','itemid',41488),(28350,'trends','itemid',41488),(28351,'trends_uint','itemid',41488),(28352,'events','itemid',41489),(28353,'history','itemid',41489),(28354,'history_log','itemid',41489),(28355,'history_str','itemid',41489),(28356,'history_text','itemid',41489),(28357,'history_uint','itemid',41489),(28358,'trends','itemid',41489),(28359,'trends_uint','itemid',41489),(28360,'events','itemid',41490),(28361,'history','itemid',41490),(28362,'history_log','itemid',41490),(28363,'history_str','itemid',41490),(28364,'history_text','itemid',41490),(28365,'history_uint','itemid',41490),(28366,'trends','itemid',41490),(28367,'trends_uint','itemid',41490),(28368,'events','itemid',41501),(28369,'history','itemid',41501),(28370,'history_log','itemid',41501),(28371,'history_str','itemid',41501),(28372,'history_text','itemid',41501),(28373,'history_uint','itemid',41501),(28374,'trends','itemid',41501),(28375,'trends_uint','itemid',41501),(28376,'events','itemid',41502),(28377,'history','itemid',41502),(28378,'history_log','itemid',41502),(28379,'history_str','itemid',41502),(28380,'history_text','itemid',41502),(28381,'history_uint','itemid',41502),(28382,'trends','itemid',41502),(28383,'trends_uint','itemid',41502),(28384,'events','itemid',41503),(28385,'history','itemid',41503),(28386,'history_log','itemid',41503),(28387,'history_str','itemid',41503),(28388,'history_text','itemid',41503),(28389,'history_uint','itemid',41503),(28390,'trends','itemid',41503),(28391,'trends_uint','itemid',41503),(28392,'events','itemid',41504),(28393,'history','itemid',41504),(28394,'history_log','itemid',41504),(28395,'history_str','itemid',41504),(28396,'history_text','itemid',41504),(28397,'history_uint','itemid',41504),(28398,'trends','itemid',41504),(28399,'trends_uint','itemid',41504),(28400,'events','itemid',41505),(28401,'history','itemid',41505),(28402,'history_log','itemid',41505),(28403,'history_str','itemid',41505),(28404,'history_text','itemid',41505),(28405,'history_uint','itemid',41505),(28406,'trends','itemid',41505),(28407,'trends_uint','itemid',41505),(28408,'events','itemid',41506),(28409,'history','itemid',41506),(28410,'history_log','itemid',41506),(28411,'history_str','itemid',41506),(28412,'history_text','itemid',41506),(28413,'history_uint','itemid',41506),(28414,'trends','itemid',41506),(28415,'trends_uint','itemid',41506),(28416,'events','itemid',41507),(28417,'history','itemid',41507),(28418,'history_log','itemid',41507),(28419,'history_str','itemid',41507),(28420,'history_text','itemid',41507),(28421,'history_uint','itemid',41507),(28422,'trends','itemid',41507),(28423,'trends_uint','itemid',41507),(28424,'events','itemid',41508),(28425,'history','itemid',41508),(28426,'history_log','itemid',41508),(28427,'history_str','itemid',41508),(28428,'history_text','itemid',41508),(28429,'history_uint','itemid',41508),(28430,'trends','itemid',41508),(28431,'trends_uint','itemid',41508),(28432,'events','itemid',41509),(28433,'history','itemid',41509),(28434,'history_log','itemid',41509),(28435,'history_str','itemid',41509),(28436,'history_text','itemid',41509),(28437,'history_uint','itemid',41509),(28438,'trends','itemid',41509),(28439,'trends_uint','itemid',41509),(28440,'events','itemid',41510),(28441,'history','itemid',41510),(28442,'history_log','itemid',41510),(28443,'history_str','itemid',41510),(28444,'history_text','itemid',41510),(28445,'history_uint','itemid',41510),(28446,'trends','itemid',41510),(28447,'trends_uint','itemid',41510),(28448,'events','itemid',41511),(28449,'history','itemid',41511),(28450,'history_log','itemid',41511),(28451,'history_str','itemid',41511),(28452,'history_text','itemid',41511),(28453,'history_uint','itemid',41511),(28454,'trends','itemid',41511),(28455,'trends_uint','itemid',41511),(28456,'events','itemid',41522),(28457,'history','itemid',41522),(28458,'history_log','itemid',41522),(28459,'history_str','itemid',41522),(28460,'history_text','itemid',41522),(28461,'history_uint','itemid',41522),(28462,'trends','itemid',41522),(28463,'trends_uint','itemid',41522),(28464,'events','itemid',41523),(28465,'history','itemid',41523),(28466,'history_log','itemid',41523),(28467,'history_str','itemid',41523),(28468,'history_text','itemid',41523),(28469,'history_uint','itemid',41523),(28470,'trends','itemid',41523),(28471,'trends_uint','itemid',41523),(28472,'events','itemid',41524),(28473,'history','itemid',41524),(28474,'history_log','itemid',41524),(28475,'history_str','itemid',41524),(28476,'history_text','itemid',41524),(28477,'history_uint','itemid',41524),(28478,'trends','itemid',41524),(28479,'trends_uint','itemid',41524),(28480,'events','itemid',41525),(28481,'history','itemid',41525),(28482,'history_log','itemid',41525),(28483,'history_str','itemid',41525),(28484,'history_text','itemid',41525),(28485,'history_uint','itemid',41525),(28486,'trends','itemid',41525),(28487,'trends_uint','itemid',41525),(28488,'events','itemid',41526),(28489,'history','itemid',41526),(28490,'history_log','itemid',41526),(28491,'history_str','itemid',41526),(28492,'history_text','itemid',41526),(28493,'history_uint','itemid',41526),(28494,'trends','itemid',41526),(28495,'trends_uint','itemid',41526),(28496,'events','itemid',41527),(28497,'history','itemid',41527),(28498,'history_log','itemid',41527),(28499,'history_str','itemid',41527),(28500,'history_text','itemid',41527),(28501,'history_uint','itemid',41527),(28502,'trends','itemid',41527),(28503,'trends_uint','itemid',41527),(28504,'events','itemid',41528),(28505,'history','itemid',41528),(28506,'history_log','itemid',41528),(28507,'history_str','itemid',41528),(28508,'history_text','itemid',41528),(28509,'history_uint','itemid',41528),(28510,'trends','itemid',41528),(28511,'trends_uint','itemid',41528),(28512,'events','itemid',41529),(28513,'history','itemid',41529),(28514,'history_log','itemid',41529),(28515,'history_str','itemid',41529),(28516,'history_text','itemid',41529),(28517,'history_uint','itemid',41529),(28518,'trends','itemid',41529),(28519,'trends_uint','itemid',41529),(28520,'events','itemid',41530),(28521,'history','itemid',41530),(28522,'history_log','itemid',41530),(28523,'history_str','itemid',41530),(28524,'history_text','itemid',41530),(28525,'history_uint','itemid',41530),(28526,'trends','itemid',41530),(28527,'trends_uint','itemid',41530),(28528,'events','itemid',41531),(28529,'history','itemid',41531),(28530,'history_log','itemid',41531),(28531,'history_str','itemid',41531),(28532,'history_text','itemid',41531),(28533,'history_uint','itemid',41531),(28534,'trends','itemid',41531),(28535,'trends_uint','itemid',41531),(28536,'events','itemid',41532),(28537,'history','itemid',41532),(28538,'history_log','itemid',41532),(28539,'history_str','itemid',41532),(28540,'history_text','itemid',41532),(28541,'history_uint','itemid',41532),(28542,'trends','itemid',41532),(28543,'trends_uint','itemid',41532),(28544,'events','itemid',41543),(28545,'history','itemid',41543),(28546,'history_log','itemid',41543),(28547,'history_str','itemid',41543),(28548,'history_text','itemid',41543),(28549,'history_uint','itemid',41543),(28550,'trends','itemid',41543),(28551,'trends_uint','itemid',41543),(28552,'events','itemid',41544),(28553,'history','itemid',41544),(28554,'history_log','itemid',41544),(28555,'history_str','itemid',41544),(28556,'history_text','itemid',41544),(28557,'history_uint','itemid',41544),(28558,'trends','itemid',41544),(28559,'trends_uint','itemid',41544),(28560,'events','itemid',41545),(28561,'history','itemid',41545),(28562,'history_log','itemid',41545),(28563,'history_str','itemid',41545),(28564,'history_text','itemid',41545),(28565,'history_uint','itemid',41545),(28566,'trends','itemid',41545),(28567,'trends_uint','itemid',41545),(28568,'events','itemid',41546),(28569,'history','itemid',41546),(28570,'history_log','itemid',41546),(28571,'history_str','itemid',41546),(28572,'history_text','itemid',41546),(28573,'history_uint','itemid',41546),(28574,'trends','itemid',41546),(28575,'trends_uint','itemid',41546),(28576,'events','itemid',41547),(28577,'history','itemid',41547),(28578,'history_log','itemid',41547),(28579,'history_str','itemid',41547),(28580,'history_text','itemid',41547),(28581,'history_uint','itemid',41547),(28582,'trends','itemid',41547),(28583,'trends_uint','itemid',41547),(28584,'events','itemid',41548),(28585,'history','itemid',41548),(28586,'history_log','itemid',41548),(28587,'history_str','itemid',41548),(28588,'history_text','itemid',41548),(28589,'history_uint','itemid',41548),(28590,'trends','itemid',41548),(28591,'trends_uint','itemid',41548),(28592,'events','itemid',41549),(28593,'history','itemid',41549),(28594,'history_log','itemid',41549),(28595,'history_str','itemid',41549),(28596,'history_text','itemid',41549),(28597,'history_uint','itemid',41549),(28598,'trends','itemid',41549),(28599,'trends_uint','itemid',41549),(28600,'events','itemid',41550),(28601,'history','itemid',41550),(28602,'history_log','itemid',41550),(28603,'history_str','itemid',41550),(28604,'history_text','itemid',41550),(28605,'history_uint','itemid',41550),(28606,'trends','itemid',41550),(28607,'trends_uint','itemid',41550),(28608,'events','itemid',41551),(28609,'history','itemid',41551),(28610,'history_log','itemid',41551),(28611,'history_str','itemid',41551),(28612,'history_text','itemid',41551),(28613,'history_uint','itemid',41551),(28614,'trends','itemid',41551),(28615,'trends_uint','itemid',41551),(28616,'events','itemid',41552),(28617,'history','itemid',41552),(28618,'history_log','itemid',41552),(28619,'history_str','itemid',41552),(28620,'history_text','itemid',41552),(28621,'history_uint','itemid',41552),(28622,'trends','itemid',41552),(28623,'trends_uint','itemid',41552),(28624,'events','itemid',41553),(28625,'history','itemid',41553),(28626,'history_log','itemid',41553),(28627,'history_str','itemid',41553),(28628,'history_text','itemid',41553),(28629,'history_uint','itemid',41553),(28630,'trends','itemid',41553),(28631,'trends_uint','itemid',41553),(28632,'events','itemid',41564),(28633,'history','itemid',41564),(28634,'history_log','itemid',41564),(28635,'history_str','itemid',41564),(28636,'history_text','itemid',41564),(28637,'history_uint','itemid',41564),(28638,'trends','itemid',41564),(28639,'trends_uint','itemid',41564),(28640,'events','itemid',41565),(28641,'history','itemid',41565),(28642,'history_log','itemid',41565),(28643,'history_str','itemid',41565),(28644,'history_text','itemid',41565),(28645,'history_uint','itemid',41565),(28646,'trends','itemid',41565),(28647,'trends_uint','itemid',41565),(28648,'events','itemid',41566),(28649,'history','itemid',41566),(28650,'history_log','itemid',41566),(28651,'history_str','itemid',41566),(28652,'history_text','itemid',41566),(28653,'history_uint','itemid',41566),(28654,'trends','itemid',41566),(28655,'trends_uint','itemid',41566),(28656,'events','itemid',41567),(28657,'history','itemid',41567),(28658,'history_log','itemid',41567),(28659,'history_str','itemid',41567),(28660,'history_text','itemid',41567),(28661,'history_uint','itemid',41567),(28662,'trends','itemid',41567),(28663,'trends_uint','itemid',41567),(28664,'events','itemid',41568),(28665,'history','itemid',41568),(28666,'history_log','itemid',41568),(28667,'history_str','itemid',41568),(28668,'history_text','itemid',41568),(28669,'history_uint','itemid',41568),(28670,'trends','itemid',41568),(28671,'trends_uint','itemid',41568),(28672,'events','itemid',41569),(28673,'history','itemid',41569),(28674,'history_log','itemid',41569),(28675,'history_str','itemid',41569),(28676,'history_text','itemid',41569),(28677,'history_uint','itemid',41569),(28678,'trends','itemid',41569),(28679,'trends_uint','itemid',41569),(28680,'events','itemid',41570),(28681,'history','itemid',41570),(28682,'history_log','itemid',41570),(28683,'history_str','itemid',41570),(28684,'history_text','itemid',41570),(28685,'history_uint','itemid',41570),(28686,'trends','itemid',41570),(28687,'trends_uint','itemid',41570),(28688,'events','itemid',41571),(28689,'history','itemid',41571),(28690,'history_log','itemid',41571),(28691,'history_str','itemid',41571),(28692,'history_text','itemid',41571),(28693,'history_uint','itemid',41571),(28694,'trends','itemid',41571),(28695,'trends_uint','itemid',41571),(28696,'events','itemid',41572),(28697,'history','itemid',41572),(28698,'history_log','itemid',41572),(28699,'history_str','itemid',41572),(28700,'history_text','itemid',41572),(28701,'history_uint','itemid',41572),(28702,'trends','itemid',41572),(28703,'trends_uint','itemid',41572),(28704,'events','itemid',41573),(28705,'history','itemid',41573),(28706,'history_log','itemid',41573),(28707,'history_str','itemid',41573),(28708,'history_text','itemid',41573),(28709,'history_uint','itemid',41573),(28710,'trends','itemid',41573),(28711,'trends_uint','itemid',41573),(28712,'events','itemid',41574),(28713,'history','itemid',41574),(28714,'history_log','itemid',41574),(28715,'history_str','itemid',41574),(28716,'history_text','itemid',41574),(28717,'history_uint','itemid',41574),(28718,'trends','itemid',41574),(28719,'trends_uint','itemid',41574),(28720,'events','itemid',41585),(28721,'history','itemid',41585),(28722,'history_log','itemid',41585),(28723,'history_str','itemid',41585),(28724,'history_text','itemid',41585),(28725,'history_uint','itemid',41585),(28726,'trends','itemid',41585),(28727,'trends_uint','itemid',41585),(28728,'events','itemid',41586),(28729,'history','itemid',41586),(28730,'history_log','itemid',41586),(28731,'history_str','itemid',41586),(28732,'history_text','itemid',41586),(28733,'history_uint','itemid',41586),(28734,'trends','itemid',41586),(28735,'trends_uint','itemid',41586),(28736,'events','itemid',41587),(28737,'history','itemid',41587),(28738,'history_log','itemid',41587),(28739,'history_str','itemid',41587),(28740,'history_text','itemid',41587),(28741,'history_uint','itemid',41587),(28742,'trends','itemid',41587),(28743,'trends_uint','itemid',41587),(28744,'events','itemid',41588),(28745,'history','itemid',41588),(28746,'history_log','itemid',41588),(28747,'history_str','itemid',41588),(28748,'history_text','itemid',41588),(28749,'history_uint','itemid',41588),(28750,'trends','itemid',41588),(28751,'trends_uint','itemid',41588),(28752,'events','itemid',41589),(28753,'history','itemid',41589),(28754,'history_log','itemid',41589),(28755,'history_str','itemid',41589),(28756,'history_text','itemid',41589),(28757,'history_uint','itemid',41589),(28758,'trends','itemid',41589),(28759,'trends_uint','itemid',41589),(28760,'events','itemid',41590),(28761,'history','itemid',41590),(28762,'history_log','itemid',41590),(28763,'history_str','itemid',41590),(28764,'history_text','itemid',41590),(28765,'history_uint','itemid',41590),(28766,'trends','itemid',41590),(28767,'trends_uint','itemid',41590),(28768,'events','itemid',41591),(28769,'history','itemid',41591),(28770,'history_log','itemid',41591),(28771,'history_str','itemid',41591),(28772,'history_text','itemid',41591),(28773,'history_uint','itemid',41591),(28774,'trends','itemid',41591),(28775,'trends_uint','itemid',41591),(28776,'events','itemid',41592),(28777,'history','itemid',41592),(28778,'history_log','itemid',41592),(28779,'history_str','itemid',41592),(28780,'history_text','itemid',41592),(28781,'history_uint','itemid',41592),(28782,'trends','itemid',41592),(28783,'trends_uint','itemid',41592),(28784,'events','itemid',41593),(28785,'history','itemid',41593),(28786,'history_log','itemid',41593),(28787,'history_str','itemid',41593),(28788,'history_text','itemid',41593),(28789,'history_uint','itemid',41593),(28790,'trends','itemid',41593),(28791,'trends_uint','itemid',41593),(28792,'events','itemid',41594),(28793,'history','itemid',41594),(28794,'history_log','itemid',41594),(28795,'history_str','itemid',41594),(28796,'history_text','itemid',41594),(28797,'history_uint','itemid',41594),(28798,'trends','itemid',41594),(28799,'trends_uint','itemid',41594),(28800,'events','itemid',41595),(28801,'history','itemid',41595),(28802,'history_log','itemid',41595),(28803,'history_str','itemid',41595),(28804,'history_text','itemid',41595),(28805,'history_uint','itemid',41595),(28806,'trends','itemid',41595),(28807,'trends_uint','itemid',41595),(28808,'events','itemid',41900),(28809,'history','itemid',41900),(28810,'history_log','itemid',41900),(28811,'history_str','itemid',41900),(28812,'history_text','itemid',41900),(28813,'history_uint','itemid',41900),(28814,'trends','itemid',41900),(28815,'trends_uint','itemid',41900),(28816,'events','itemid',41901),(28817,'history','itemid',41901),(28818,'history_log','itemid',41901),(28819,'history_str','itemid',41901),(28820,'history_text','itemid',41901),(28821,'history_uint','itemid',41901),(28822,'trends','itemid',41901),(28823,'trends_uint','itemid',41901),(28824,'events','itemid',41902),(28825,'history','itemid',41902),(28826,'history_log','itemid',41902),(28827,'history_str','itemid',41902),(28828,'history_text','itemid',41902),(28829,'history_uint','itemid',41902),(28830,'trends','itemid',41902),(28831,'trends_uint','itemid',41902),(28832,'events','itemid',41903),(28833,'history','itemid',41903),(28834,'history_log','itemid',41903),(28835,'history_str','itemid',41903),(28836,'history_text','itemid',41903),(28837,'history_uint','itemid',41903),(28838,'trends','itemid',41903),(28839,'trends_uint','itemid',41903),(28840,'events','itemid',41904),(28841,'history','itemid',41904),(28842,'history_log','itemid',41904),(28843,'history_str','itemid',41904),(28844,'history_text','itemid',41904),(28845,'history_uint','itemid',41904),(28846,'trends','itemid',41904),(28847,'trends_uint','itemid',41904),(28848,'events','itemid',41905),(28849,'history','itemid',41905),(28850,'history_log','itemid',41905),(28851,'history_str','itemid',41905),(28852,'history_text','itemid',41905),(28853,'history_uint','itemid',41905),(28854,'trends','itemid',41905),(28855,'trends_uint','itemid',41905),(28856,'events','itemid',41906),(28857,'history','itemid',41906),(28858,'history_log','itemid',41906),(28859,'history_str','itemid',41906),(28860,'history_text','itemid',41906),(28861,'history_uint','itemid',41906),(28862,'trends','itemid',41906),(28863,'trends_uint','itemid',41906),(28864,'events','itemid',41907),(28865,'history','itemid',41907),(28866,'history_log','itemid',41907),(28867,'history_str','itemid',41907),(28868,'history_text','itemid',41907),(28869,'history_uint','itemid',41907),(28870,'trends','itemid',41907),(28871,'trends_uint','itemid',41907),(28872,'events','itemid',41908),(28873,'history','itemid',41908),(28874,'history_log','itemid',41908),(28875,'history_str','itemid',41908),(28876,'history_text','itemid',41908),(28877,'history_uint','itemid',41908),(28878,'trends','itemid',41908),(28879,'trends_uint','itemid',41908),(28880,'events','itemid',41909),(28881,'history','itemid',41909),(28882,'history_log','itemid',41909),(28883,'history_str','itemid',41909),(28884,'history_text','itemid',41909),(28885,'history_uint','itemid',41909),(28886,'trends','itemid',41909),(28887,'trends_uint','itemid',41909),(28888,'events','itemid',41910),(28889,'history','itemid',41910),(28890,'history_log','itemid',41910),(28891,'history_str','itemid',41910),(28892,'history_text','itemid',41910),(28893,'history_uint','itemid',41910),(28894,'trends','itemid',41910),(28895,'trends_uint','itemid',41910),(28896,'events','itemid',41921),(28897,'history','itemid',41921),(28898,'history_log','itemid',41921),(28899,'history_str','itemid',41921),(28900,'history_text','itemid',41921),(28901,'history_uint','itemid',41921),(28902,'trends','itemid',41921),(28903,'trends_uint','itemid',41921),(28904,'events','itemid',41922),(28905,'history','itemid',41922),(28906,'history_log','itemid',41922),(28907,'history_str','itemid',41922),(28908,'history_text','itemid',41922),(28909,'history_uint','itemid',41922),(28910,'trends','itemid',41922),(28911,'trends_uint','itemid',41922),(28912,'events','itemid',41923),(28913,'history','itemid',41923),(28914,'history_log','itemid',41923),(28915,'history_str','itemid',41923),(28916,'history_text','itemid',41923),(28917,'history_uint','itemid',41923),(28918,'trends','itemid',41923),(28919,'trends_uint','itemid',41923),(28920,'events','itemid',41924),(28921,'history','itemid',41924),(28922,'history_log','itemid',41924),(28923,'history_str','itemid',41924),(28924,'history_text','itemid',41924),(28925,'history_uint','itemid',41924),(28926,'trends','itemid',41924),(28927,'trends_uint','itemid',41924),(28928,'events','itemid',41925),(28929,'history','itemid',41925),(28930,'history_log','itemid',41925),(28931,'history_str','itemid',41925),(28932,'history_text','itemid',41925),(28933,'history_uint','itemid',41925),(28934,'trends','itemid',41925),(28935,'trends_uint','itemid',41925),(28936,'events','itemid',41926),(28937,'history','itemid',41926),(28938,'history_log','itemid',41926),(28939,'history_str','itemid',41926),(28940,'history_text','itemid',41926),(28941,'history_uint','itemid',41926),(28942,'trends','itemid',41926),(28943,'trends_uint','itemid',41926),(28944,'events','itemid',41927),(28945,'history','itemid',41927),(28946,'history_log','itemid',41927),(28947,'history_str','itemid',41927),(28948,'history_text','itemid',41927),(28949,'history_uint','itemid',41927),(28950,'trends','itemid',41927),(28951,'trends_uint','itemid',41927),(28952,'events','itemid',41928),(28953,'history','itemid',41928),(28954,'history_log','itemid',41928),(28955,'history_str','itemid',41928),(28956,'history_text','itemid',41928),(28957,'history_uint','itemid',41928),(28958,'trends','itemid',41928),(28959,'trends_uint','itemid',41928),(28960,'events','itemid',41929),(28961,'history','itemid',41929),(28962,'history_log','itemid',41929),(28963,'history_str','itemid',41929),(28964,'history_text','itemid',41929),(28965,'history_uint','itemid',41929),(28966,'trends','itemid',41929),(28967,'trends_uint','itemid',41929),(28968,'events','itemid',41930),(28969,'history','itemid',41930),(28970,'history_log','itemid',41930),(28971,'history_str','itemid',41930),(28972,'history_text','itemid',41930),(28973,'history_uint','itemid',41930),(28974,'trends','itemid',41930),(28975,'trends_uint','itemid',41930),(28976,'events','itemid',41931),(28977,'history','itemid',41931),(28978,'history_log','itemid',41931),(28979,'history_str','itemid',41931),(28980,'history_text','itemid',41931),(28981,'history_uint','itemid',41931),(28982,'trends','itemid',41931),(28983,'trends_uint','itemid',41931),(28984,'events','itemid',41942),(28985,'history','itemid',41942),(28986,'history_log','itemid',41942),(28987,'history_str','itemid',41942),(28988,'history_text','itemid',41942),(28989,'history_uint','itemid',41942); INSERT INTO `housekeeper` VALUES (28990,'trends','itemid',41942),(28991,'trends_uint','itemid',41942),(28992,'events','itemid',41943),(28993,'history','itemid',41943),(28994,'history_log','itemid',41943),(28995,'history_str','itemid',41943),(28996,'history_text','itemid',41943),(28997,'history_uint','itemid',41943),(28998,'trends','itemid',41943),(28999,'trends_uint','itemid',41943),(29000,'events','itemid',41944),(29001,'history','itemid',41944),(29002,'history_log','itemid',41944),(29003,'history_str','itemid',41944),(29004,'history_text','itemid',41944),(29005,'history_uint','itemid',41944),(29006,'trends','itemid',41944),(29007,'trends_uint','itemid',41944),(29008,'events','itemid',41945),(29009,'history','itemid',41945),(29010,'history_log','itemid',41945),(29011,'history_str','itemid',41945),(29012,'history_text','itemid',41945),(29013,'history_uint','itemid',41945),(29014,'trends','itemid',41945),(29015,'trends_uint','itemid',41945),(29016,'events','itemid',41946),(29017,'history','itemid',41946),(29018,'history_log','itemid',41946),(29019,'history_str','itemid',41946),(29020,'history_text','itemid',41946),(29021,'history_uint','itemid',41946),(29022,'trends','itemid',41946),(29023,'trends_uint','itemid',41946),(29024,'events','itemid',41947),(29025,'history','itemid',41947),(29026,'history_log','itemid',41947),(29027,'history_str','itemid',41947),(29028,'history_text','itemid',41947),(29029,'history_uint','itemid',41947),(29030,'trends','itemid',41947),(29031,'trends_uint','itemid',41947),(29032,'events','itemid',41948),(29033,'history','itemid',41948),(29034,'history_log','itemid',41948),(29035,'history_str','itemid',41948),(29036,'history_text','itemid',41948),(29037,'history_uint','itemid',41948),(29038,'trends','itemid',41948),(29039,'trends_uint','itemid',41948),(29040,'events','itemid',41949),(29041,'history','itemid',41949),(29042,'history_log','itemid',41949),(29043,'history_str','itemid',41949),(29044,'history_text','itemid',41949),(29045,'history_uint','itemid',41949),(29046,'trends','itemid',41949),(29047,'trends_uint','itemid',41949),(29048,'events','itemid',41950),(29049,'history','itemid',41950),(29050,'history_log','itemid',41950),(29051,'history_str','itemid',41950),(29052,'history_text','itemid',41950),(29053,'history_uint','itemid',41950),(29054,'trends','itemid',41950),(29055,'trends_uint','itemid',41950),(29056,'events','itemid',41951),(29057,'history','itemid',41951),(29058,'history_log','itemid',41951),(29059,'history_str','itemid',41951),(29060,'history_text','itemid',41951),(29061,'history_uint','itemid',41951),(29062,'trends','itemid',41951),(29063,'trends_uint','itemid',41951),(29064,'events','itemid',41952),(29065,'history','itemid',41952),(29066,'history_log','itemid',41952),(29067,'history_str','itemid',41952),(29068,'history_text','itemid',41952),(29069,'history_uint','itemid',41952),(29070,'trends','itemid',41952),(29071,'trends_uint','itemid',41952),(29072,'events','itemid',41963),(29073,'history','itemid',41963),(29074,'history_log','itemid',41963),(29075,'history_str','itemid',41963),(29076,'history_text','itemid',41963),(29077,'history_uint','itemid',41963),(29078,'trends','itemid',41963),(29079,'trends_uint','itemid',41963),(29080,'events','itemid',41964),(29081,'history','itemid',41964),(29082,'history_log','itemid',41964),(29083,'history_str','itemid',41964),(29084,'history_text','itemid',41964),(29085,'history_uint','itemid',41964),(29086,'trends','itemid',41964),(29087,'trends_uint','itemid',41964),(29088,'events','itemid',41965),(29089,'history','itemid',41965),(29090,'history_log','itemid',41965),(29091,'history_str','itemid',41965),(29092,'history_text','itemid',41965),(29093,'history_uint','itemid',41965),(29094,'trends','itemid',41965),(29095,'trends_uint','itemid',41965),(29096,'events','itemid',41966),(29097,'history','itemid',41966),(29098,'history_log','itemid',41966),(29099,'history_str','itemid',41966),(29100,'history_text','itemid',41966),(29101,'history_uint','itemid',41966),(29102,'trends','itemid',41966),(29103,'trends_uint','itemid',41966),(29104,'events','itemid',41967),(29105,'history','itemid',41967),(29106,'history_log','itemid',41967),(29107,'history_str','itemid',41967),(29108,'history_text','itemid',41967),(29109,'history_uint','itemid',41967),(29110,'trends','itemid',41967),(29111,'trends_uint','itemid',41967),(29112,'events','itemid',41968),(29113,'history','itemid',41968),(29114,'history_log','itemid',41968),(29115,'history_str','itemid',41968),(29116,'history_text','itemid',41968),(29117,'history_uint','itemid',41968),(29118,'trends','itemid',41968),(29119,'trends_uint','itemid',41968),(29120,'events','itemid',41969),(29121,'history','itemid',41969),(29122,'history_log','itemid',41969),(29123,'history_str','itemid',41969),(29124,'history_text','itemid',41969),(29125,'history_uint','itemid',41969),(29126,'trends','itemid',41969),(29127,'trends_uint','itemid',41969),(29128,'events','itemid',41970),(29129,'history','itemid',41970),(29130,'history_log','itemid',41970),(29131,'history_str','itemid',41970),(29132,'history_text','itemid',41970),(29133,'history_uint','itemid',41970),(29134,'trends','itemid',41970),(29135,'trends_uint','itemid',41970),(29136,'events','itemid',41971),(29137,'history','itemid',41971),(29138,'history_log','itemid',41971),(29139,'history_str','itemid',41971),(29140,'history_text','itemid',41971),(29141,'history_uint','itemid',41971),(29142,'trends','itemid',41971),(29143,'trends_uint','itemid',41971),(29144,'events','itemid',41972),(29145,'history','itemid',41972),(29146,'history_log','itemid',41972),(29147,'history_str','itemid',41972),(29148,'history_text','itemid',41972),(29149,'history_uint','itemid',41972),(29150,'trends','itemid',41972),(29151,'trends_uint','itemid',41972),(29152,'events','itemid',41973),(29153,'history','itemid',41973),(29154,'history_log','itemid',41973),(29155,'history_str','itemid',41973),(29156,'history_text','itemid',41973),(29157,'history_uint','itemid',41973),(29158,'trends','itemid',41973),(29159,'trends_uint','itemid',41973),(29160,'events','itemid',41984),(29161,'history','itemid',41984),(29162,'history_log','itemid',41984),(29163,'history_str','itemid',41984),(29164,'history_text','itemid',41984),(29165,'history_uint','itemid',41984),(29166,'trends','itemid',41984),(29167,'trends_uint','itemid',41984),(29168,'events','itemid',41985),(29169,'history','itemid',41985),(29170,'history_log','itemid',41985),(29171,'history_str','itemid',41985),(29172,'history_text','itemid',41985),(29173,'history_uint','itemid',41985),(29174,'trends','itemid',41985),(29175,'trends_uint','itemid',41985),(29176,'events','itemid',41986),(29177,'history','itemid',41986),(29178,'history_log','itemid',41986),(29179,'history_str','itemid',41986),(29180,'history_text','itemid',41986),(29181,'history_uint','itemid',41986),(29182,'trends','itemid',41986),(29183,'trends_uint','itemid',41986),(29184,'events','itemid',41987),(29185,'history','itemid',41987),(29186,'history_log','itemid',41987),(29187,'history_str','itemid',41987),(29188,'history_text','itemid',41987),(29189,'history_uint','itemid',41987),(29190,'trends','itemid',41987),(29191,'trends_uint','itemid',41987),(29192,'events','itemid',41988),(29193,'history','itemid',41988),(29194,'history_log','itemid',41988),(29195,'history_str','itemid',41988),(29196,'history_text','itemid',41988),(29197,'history_uint','itemid',41988),(29198,'trends','itemid',41988),(29199,'trends_uint','itemid',41988),(29200,'events','itemid',41989),(29201,'history','itemid',41989),(29202,'history_log','itemid',41989),(29203,'history_str','itemid',41989),(29204,'history_text','itemid',41989),(29205,'history_uint','itemid',41989),(29206,'trends','itemid',41989),(29207,'trends_uint','itemid',41989),(29208,'events','itemid',41990),(29209,'history','itemid',41990),(29210,'history_log','itemid',41990),(29211,'history_str','itemid',41990),(29212,'history_text','itemid',41990),(29213,'history_uint','itemid',41990),(29214,'trends','itemid',41990),(29215,'trends_uint','itemid',41990),(29216,'events','itemid',41991),(29217,'history','itemid',41991),(29218,'history_log','itemid',41991),(29219,'history_str','itemid',41991),(29220,'history_text','itemid',41991),(29221,'history_uint','itemid',41991),(29222,'trends','itemid',41991),(29223,'trends_uint','itemid',41991),(29224,'events','itemid',41992),(29225,'history','itemid',41992),(29226,'history_log','itemid',41992),(29227,'history_str','itemid',41992),(29228,'history_text','itemid',41992),(29229,'history_uint','itemid',41992),(29230,'trends','itemid',41992),(29231,'trends_uint','itemid',41992),(29232,'events','itemid',41993),(29233,'history','itemid',41993),(29234,'history_log','itemid',41993),(29235,'history_str','itemid',41993),(29236,'history_text','itemid',41993),(29237,'history_uint','itemid',41993),(29238,'trends','itemid',41993),(29239,'trends_uint','itemid',41993),(29240,'events','itemid',41994),(29241,'history','itemid',41994),(29242,'history_log','itemid',41994),(29243,'history_str','itemid',41994),(29244,'history_text','itemid',41994),(29245,'history_uint','itemid',41994),(29246,'trends','itemid',41994),(29247,'trends_uint','itemid',41994),(29248,'events','itemid',42068),(29249,'history','itemid',42068),(29250,'history_log','itemid',42068),(29251,'history_str','itemid',42068),(29252,'history_text','itemid',42068),(29253,'history_uint','itemid',42068),(29254,'trends','itemid',42068),(29255,'trends_uint','itemid',42068),(29256,'events','itemid',42069),(29257,'history','itemid',42069),(29258,'history_log','itemid',42069),(29259,'history_str','itemid',42069),(29260,'history_text','itemid',42069),(29261,'history_uint','itemid',42069),(29262,'trends','itemid',42069),(29263,'trends_uint','itemid',42069),(29264,'events','itemid',42070),(29265,'history','itemid',42070),(29266,'history_log','itemid',42070),(29267,'history_str','itemid',42070),(29268,'history_text','itemid',42070),(29269,'history_uint','itemid',42070),(29270,'trends','itemid',42070),(29271,'trends_uint','itemid',42070),(29272,'events','itemid',42071),(29273,'history','itemid',42071),(29274,'history_log','itemid',42071),(29275,'history_str','itemid',42071),(29276,'history_text','itemid',42071),(29277,'history_uint','itemid',42071),(29278,'trends','itemid',42071),(29279,'trends_uint','itemid',42071),(29280,'events','itemid',42072),(29281,'history','itemid',42072),(29282,'history_log','itemid',42072),(29283,'history_str','itemid',42072),(29284,'history_text','itemid',42072),(29285,'history_uint','itemid',42072),(29286,'trends','itemid',42072),(29287,'trends_uint','itemid',42072),(29288,'events','itemid',42073),(29289,'history','itemid',42073),(29290,'history_log','itemid',42073),(29291,'history_str','itemid',42073),(29292,'history_text','itemid',42073),(29293,'history_uint','itemid',42073),(29294,'trends','itemid',42073),(29295,'trends_uint','itemid',42073),(29296,'events','itemid',42074),(29297,'history','itemid',42074),(29298,'history_log','itemid',42074),(29299,'history_str','itemid',42074),(29300,'history_text','itemid',42074),(29301,'history_uint','itemid',42074),(29302,'trends','itemid',42074),(29303,'trends_uint','itemid',42074),(29304,'events','itemid',42075),(29305,'history','itemid',42075),(29306,'history_log','itemid',42075),(29307,'history_str','itemid',42075),(29308,'history_text','itemid',42075),(29309,'history_uint','itemid',42075),(29310,'trends','itemid',42075),(29311,'trends_uint','itemid',42075),(29312,'events','itemid',42076),(29313,'history','itemid',42076),(29314,'history_log','itemid',42076),(29315,'history_str','itemid',42076),(29316,'history_text','itemid',42076),(29317,'history_uint','itemid',42076),(29318,'trends','itemid',42076),(29319,'trends_uint','itemid',42076),(29320,'events','itemid',42077),(29321,'history','itemid',42077),(29322,'history_log','itemid',42077),(29323,'history_str','itemid',42077),(29324,'history_text','itemid',42077),(29325,'history_uint','itemid',42077),(29326,'trends','itemid',42077),(29327,'trends_uint','itemid',42077),(29328,'events','itemid',42078),(29329,'history','itemid',42078),(29330,'history_log','itemid',42078),(29331,'history_str','itemid',42078),(29332,'history_text','itemid',42078),(29333,'history_uint','itemid',42078),(29334,'trends','itemid',42078),(29335,'trends_uint','itemid',42078),(29336,'events','itemid',42443),(29337,'history','itemid',42443),(29338,'history_log','itemid',42443),(29339,'history_str','itemid',42443),(29340,'history_text','itemid',42443),(29341,'history_uint','itemid',42443),(29342,'trends','itemid',42443),(29343,'trends_uint','itemid',42443),(29344,'events','itemid',42444),(29345,'history','itemid',42444),(29346,'history_log','itemid',42444),(29347,'history_str','itemid',42444),(29348,'history_text','itemid',42444),(29349,'history_uint','itemid',42444),(29350,'trends','itemid',42444),(29351,'trends_uint','itemid',42444),(29352,'events','itemid',42445),(29353,'history','itemid',42445),(29354,'history_log','itemid',42445),(29355,'history_str','itemid',42445),(29356,'history_text','itemid',42445),(29357,'history_uint','itemid',42445),(29358,'trends','itemid',42445),(29359,'trends_uint','itemid',42445),(29360,'events','itemid',42446),(29361,'history','itemid',42446),(29362,'history_log','itemid',42446),(29363,'history_str','itemid',42446),(29364,'history_text','itemid',42446),(29365,'history_uint','itemid',42446),(29366,'trends','itemid',42446),(29367,'trends_uint','itemid',42446),(29368,'events','itemid',43077),(29369,'history','itemid',43077),(29370,'history_log','itemid',43077),(29371,'history_str','itemid',43077),(29372,'history_text','itemid',43077),(29373,'history_uint','itemid',43077),(29374,'trends','itemid',43077),(29375,'trends_uint','itemid',43077),(29376,'events','itemid',43793),(29377,'history','itemid',43793),(29378,'history_log','itemid',43793),(29379,'history_str','itemid',43793),(29380,'history_text','itemid',43793),(29381,'history_uint','itemid',43793),(29382,'trends','itemid',43793),(29383,'trends_uint','itemid',43793),(29384,'events','itemid',43794),(29385,'history','itemid',43794),(29386,'history_log','itemid',43794),(29387,'history_str','itemid',43794),(29388,'history_text','itemid',43794),(29389,'history_uint','itemid',43794),(29390,'trends','itemid',43794),(29391,'trends_uint','itemid',43794),(29392,'events','itemid',43795),(29393,'history','itemid',43795),(29394,'history_log','itemid',43795),(29395,'history_str','itemid',43795),(29396,'history_text','itemid',43795),(29397,'history_uint','itemid',43795),(29398,'trends','itemid',43795),(29399,'trends_uint','itemid',43795),(29400,'events','itemid',43796),(29401,'history','itemid',43796),(29402,'history_log','itemid',43796),(29403,'history_str','itemid',43796),(29404,'history_text','itemid',43796),(29405,'history_uint','itemid',43796),(29406,'trends','itemid',43796),(29407,'trends_uint','itemid',43796),(29408,'events','itemid',43797),(29409,'history','itemid',43797),(29410,'history_log','itemid',43797),(29411,'history_str','itemid',43797),(29412,'history_text','itemid',43797),(29413,'history_uint','itemid',43797),(29414,'trends','itemid',43797),(29415,'trends_uint','itemid',43797),(29416,'events','itemid',43798),(29417,'history','itemid',43798),(29418,'history_log','itemid',43798),(29419,'history_str','itemid',43798),(29420,'history_text','itemid',43798),(29421,'history_uint','itemid',43798),(29422,'trends','itemid',43798),(29423,'trends_uint','itemid',43798),(29424,'events','itemid',43799),(29425,'history','itemid',43799),(29426,'history_log','itemid',43799),(29427,'history_str','itemid',43799),(29428,'history_text','itemid',43799),(29429,'history_uint','itemid',43799),(29430,'trends','itemid',43799),(29431,'trends_uint','itemid',43799),(29432,'events','itemid',43800),(29433,'history','itemid',43800),(29434,'history_log','itemid',43800),(29435,'history_str','itemid',43800),(29436,'history_text','itemid',43800),(29437,'history_uint','itemid',43800),(29438,'trends','itemid',43800),(29439,'trends_uint','itemid',43800),(29440,'events','itemid',43801),(29441,'history','itemid',43801),(29442,'history_log','itemid',43801),(29443,'history_str','itemid',43801),(29444,'history_text','itemid',43801),(29445,'history_uint','itemid',43801),(29446,'trends','itemid',43801),(29447,'trends_uint','itemid',43801),(29448,'events','itemid',43802),(29449,'history','itemid',43802),(29450,'history_log','itemid',43802),(29451,'history_str','itemid',43802),(29452,'history_text','itemid',43802),(29453,'history_uint','itemid',43802),(29454,'trends','itemid',43802),(29455,'trends_uint','itemid',43802),(29456,'events','itemid',43803),(29457,'history','itemid',43803),(29458,'history_log','itemid',43803),(29459,'history_str','itemid',43803),(29460,'history_text','itemid',43803),(29461,'history_uint','itemid',43803),(29462,'trends','itemid',43803),(29463,'trends_uint','itemid',43803),(29464,'events','itemid',43804),(29465,'history','itemid',43804),(29466,'history_log','itemid',43804),(29467,'history_str','itemid',43804),(29468,'history_text','itemid',43804),(29469,'history_uint','itemid',43804),(29470,'trends','itemid',43804),(29471,'trends_uint','itemid',43804),(29472,'events','itemid',43805),(29473,'history','itemid',43805),(29474,'history_log','itemid',43805),(29475,'history_str','itemid',43805),(29476,'history_text','itemid',43805),(29477,'history_uint','itemid',43805),(29478,'trends','itemid',43805),(29479,'trends_uint','itemid',43805),(29480,'events','itemid',43806),(29481,'history','itemid',43806),(29482,'history_log','itemid',43806),(29483,'history_str','itemid',43806),(29484,'history_text','itemid',43806),(29485,'history_uint','itemid',43806),(29486,'trends','itemid',43806),(29487,'trends_uint','itemid',43806),(29488,'events','itemid',43807),(29489,'history','itemid',43807),(29490,'history_log','itemid',43807),(29491,'history_str','itemid',43807),(29492,'history_text','itemid',43807),(29493,'history_uint','itemid',43807),(29494,'trends','itemid',43807),(29495,'trends_uint','itemid',43807),(29496,'events','itemid',43808),(29497,'history','itemid',43808),(29498,'history_log','itemid',43808),(29499,'history_str','itemid',43808),(29500,'history_text','itemid',43808),(29501,'history_uint','itemid',43808),(29502,'trends','itemid',43808),(29503,'trends_uint','itemid',43808),(29504,'events','itemid',43809),(29505,'history','itemid',43809),(29506,'history_log','itemid',43809),(29507,'history_str','itemid',43809),(29508,'history_text','itemid',43809),(29509,'history_uint','itemid',43809),(29510,'trends','itemid',43809),(29511,'trends_uint','itemid',43809),(29512,'events','itemid',43810),(29513,'history','itemid',43810),(29514,'history_log','itemid',43810),(29515,'history_str','itemid',43810),(29516,'history_text','itemid',43810),(29517,'history_uint','itemid',43810),(29518,'trends','itemid',43810),(29519,'trends_uint','itemid',43810),(29520,'events','itemid',43811),(29521,'history','itemid',43811),(29522,'history_log','itemid',43811),(29523,'history_str','itemid',43811),(29524,'history_text','itemid',43811),(29525,'history_uint','itemid',43811),(29526,'trends','itemid',43811),(29527,'trends_uint','itemid',43811),(29528,'events','itemid',43812),(29529,'history','itemid',43812),(29530,'history_log','itemid',43812),(29531,'history_str','itemid',43812),(29532,'history_text','itemid',43812),(29533,'history_uint','itemid',43812),(29534,'trends','itemid',43812),(29535,'trends_uint','itemid',43812),(29536,'events','itemid',43813),(29537,'history','itemid',43813),(29538,'history_log','itemid',43813),(29539,'history_str','itemid',43813),(29540,'history_text','itemid',43813),(29541,'history_uint','itemid',43813),(29542,'trends','itemid',43813),(29543,'trends_uint','itemid',43813),(29544,'events','itemid',43814),(29545,'history','itemid',43814),(29546,'history_log','itemid',43814),(29547,'history_str','itemid',43814),(29548,'history_text','itemid',43814),(29549,'history_uint','itemid',43814),(29550,'trends','itemid',43814),(29551,'trends_uint','itemid',43814),(29552,'events','itemid',43815),(29553,'history','itemid',43815),(29554,'history_log','itemid',43815),(29555,'history_str','itemid',43815),(29556,'history_text','itemid',43815),(29557,'history_uint','itemid',43815),(29558,'trends','itemid',43815),(29559,'trends_uint','itemid',43815),(29560,'events','itemid',43816),(29561,'history','itemid',43816),(29562,'history_log','itemid',43816),(29563,'history_str','itemid',43816),(29564,'history_text','itemid',43816),(29565,'history_uint','itemid',43816),(29566,'trends','itemid',43816),(29567,'trends_uint','itemid',43816),(29568,'events','itemid',43817),(29569,'history','itemid',43817),(29570,'history_log','itemid',43817),(29571,'history_str','itemid',43817),(29572,'history_text','itemid',43817),(29573,'history_uint','itemid',43817),(29574,'trends','itemid',43817),(29575,'trends_uint','itemid',43817),(29576,'events','itemid',43818),(29577,'history','itemid',43818),(29578,'history_log','itemid',43818),(29579,'history_str','itemid',43818),(29580,'history_text','itemid',43818),(29581,'history_uint','itemid',43818),(29582,'trends','itemid',43818),(29583,'trends_uint','itemid',43818),(29584,'events','itemid',43819),(29585,'history','itemid',43819),(29586,'history_log','itemid',43819),(29587,'history_str','itemid',43819),(29588,'history_text','itemid',43819),(29589,'history_uint','itemid',43819),(29590,'trends','itemid',43819),(29591,'trends_uint','itemid',43819),(29592,'events','itemid',43820),(29593,'history','itemid',43820),(29594,'history_log','itemid',43820),(29595,'history_str','itemid',43820),(29596,'history_text','itemid',43820),(29597,'history_uint','itemid',43820),(29598,'trends','itemid',43820),(29599,'trends_uint','itemid',43820),(29600,'events','itemid',43821),(29601,'history','itemid',43821),(29602,'history_log','itemid',43821),(29603,'history_str','itemid',43821),(29604,'history_text','itemid',43821),(29605,'history_uint','itemid',43821),(29606,'trends','itemid',43821),(29607,'trends_uint','itemid',43821),(29608,'events','itemid',43822),(29609,'history','itemid',43822),(29610,'history_log','itemid',43822),(29611,'history_str','itemid',43822),(29612,'history_text','itemid',43822),(29613,'history_uint','itemid',43822),(29614,'trends','itemid',43822),(29615,'trends_uint','itemid',43822),(29616,'events','itemid',43823),(29617,'history','itemid',43823),(29618,'history_log','itemid',43823),(29619,'history_str','itemid',43823),(29620,'history_text','itemid',43823),(29621,'history_uint','itemid',43823),(29622,'trends','itemid',43823),(29623,'trends_uint','itemid',43823),(29624,'events','itemid',43824),(29625,'history','itemid',43824),(29626,'history_log','itemid',43824),(29627,'history_str','itemid',43824),(29628,'history_text','itemid',43824),(29629,'history_uint','itemid',43824),(29630,'trends','itemid',43824),(29631,'trends_uint','itemid',43824),(29632,'events','itemid',43825),(29633,'history','itemid',43825),(29634,'history_log','itemid',43825),(29635,'history_str','itemid',43825),(29636,'history_text','itemid',43825),(29637,'history_uint','itemid',43825),(29638,'trends','itemid',43825),(29639,'trends_uint','itemid',43825),(29640,'events','itemid',43840),(29641,'history','itemid',43840),(29642,'history_log','itemid',43840),(29643,'history_str','itemid',43840),(29644,'history_text','itemid',43840),(29645,'history_uint','itemid',43840),(29646,'trends','itemid',43840),(29647,'trends_uint','itemid',43840),(29648,'events','itemid',43841),(29649,'history','itemid',43841),(29650,'history_log','itemid',43841),(29651,'history_str','itemid',43841),(29652,'history_text','itemid',43841),(29653,'history_uint','itemid',43841),(29654,'trends','itemid',43841),(29655,'trends_uint','itemid',43841),(29656,'events','itemid',43842),(29657,'history','itemid',43842),(29658,'history_log','itemid',43842),(29659,'history_str','itemid',43842),(29660,'history_text','itemid',43842),(29661,'history_uint','itemid',43842),(29662,'trends','itemid',43842),(29663,'trends_uint','itemid',43842),(29664,'events','itemid',43843),(29665,'history','itemid',43843),(29666,'history_log','itemid',43843),(29667,'history_str','itemid',43843),(29668,'history_text','itemid',43843),(29669,'history_uint','itemid',43843),(29670,'trends','itemid',43843),(29671,'trends_uint','itemid',43843),(29672,'events','itemid',43844),(29673,'history','itemid',43844),(29674,'history_log','itemid',43844),(29675,'history_str','itemid',43844),(29676,'history_text','itemid',43844),(29677,'history_uint','itemid',43844),(29678,'trends','itemid',43844),(29679,'trends_uint','itemid',43844),(29680,'events','itemid',43848),(29681,'history','itemid',43848),(29682,'history_log','itemid',43848),(29683,'history_str','itemid',43848),(29684,'history_text','itemid',43848),(29685,'history_uint','itemid',43848),(29686,'trends','itemid',43848),(29687,'trends_uint','itemid',43848),(29688,'events','itemid',44445),(29689,'history','itemid',44445),(29690,'history_log','itemid',44445),(29691,'history_str','itemid',44445),(29692,'history_text','itemid',44445),(29693,'history_uint','itemid',44445),(29694,'trends','itemid',44445),(29695,'trends_uint','itemid',44445),(29696,'events','lldruleid',22867),(29697,'events','lldruleid',23329),(29698,'events','lldruleid',27937),(29699,'events','lldruleid',27938),(29700,'events','lldruleid',27939),(29701,'events','lldruleid',30472),(29702,'events','lldruleid',30473),(29703,'events','lldruleid',30520),(29704,'events','lldruleid',30521),(29705,'events','lldruleid',30678),(29706,'events','lldruleid',30679),(29707,'events','lldruleid',31122),(29708,'events','lldruleid',31123),(29709,'events','lldruleid',31124),(29710,'events','lldruleid',31125),(29711,'events','lldruleid',31126),(29712,'events','lldruleid',31127),(29713,'events','lldruleid',31253),(29714,'events','lldruleid',31254),(29715,'events','lldruleid',31255),(29716,'events','lldruleid',31256),(29717,'events','lldruleid',31257),(29718,'events','lldruleid',31761),(29719,'events','lldruleid',31762),(29720,'events','lldruleid',31763),(29721,'events','lldruleid',31764),(29722,'events','lldruleid',31765),(29723,'events','lldruleid',32404),(29724,'events','lldruleid',33133),(29725,'events','lldruleid',33147),(29726,'events','lldruleid',33161),(29727,'events','lldruleid',33205),(29728,'events','lldruleid',33225),(29729,'events','lldruleid',33248),(29730,'events','lldruleid',33257),(29731,'events','lldruleid',33276),(29732,'events','lldruleid',33295),(29733,'events','lldruleid',33306),(29734,'events','lldruleid',33307),(29735,'events','lldruleid',33308),(29736,'events','lldruleid',33309),(29737,'events','lldruleid',33310),(29738,'events','lldruleid',33311),(29739,'events','lldruleid',33352),(29740,'events','lldruleid',33353),(29741,'events','lldruleid',33354),(29742,'events','lldruleid',33355),(29743,'events','lldruleid',33356),(29744,'events','lldruleid',33808),(29745,'events','lldruleid',33809),(29746,'events','lldruleid',33810),(29747,'events','lldruleid',33811),(29748,'events','lldruleid',33920),(29749,'events','lldruleid',33921),(29750,'events','lldruleid',33922),(29751,'events','lldruleid',33923),(29752,'events','lldruleid',34260),(29753,'events','lldruleid',34261),(29754,'events','lldruleid',34262),(29755,'events','lldruleid',34263),(29756,'events','lldruleid',34264),(29757,'events','lldruleid',34265),(29758,'events','lldruleid',34266),(29759,'events','lldruleid',34267),(29760,'events','lldruleid',34268),(29761,'events','lldruleid',34324),(29762,'events','lldruleid',35177),(29763,'events','lldruleid',35178),(29764,'events','lldruleid',35179),(29765,'events','lldruleid',35180),(29766,'events','lldruleid',35181),(29767,'events','lldruleid',35182),(29768,'events','lldruleid',35183),(29769,'events','lldruleid',35184),(29770,'events','lldruleid',38582),(29771,'events','lldruleid',38583),(29772,'events','lldruleid',38584),(29773,'events','lldruleid',38585),(29774,'events','lldruleid',38586),(29775,'events','lldruleid',38587),(29776,'events','lldruleid',38588),(29777,'events','lldruleid',38636),(29778,'events','lldruleid',38637),(29779,'events','lldruleid',38638),(29780,'events','lldruleid',38639),(29781,'events','lldruleid',38640),(29782,'events','lldruleid',38641),(29783,'events','lldruleid',38642),(29784,'events','lldruleid',38690),(29785,'events','lldruleid',38691),(29786,'events','lldruleid',38692),(29787,'events','lldruleid',38693),(29788,'events','lldruleid',38694),(29789,'events','lldruleid',38695),(29790,'events','lldruleid',38696),(29791,'events','lldruleid',38744),(29792,'events','lldruleid',38745),(29793,'events','lldruleid',38746),(29794,'events','lldruleid',38747),(29795,'events','lldruleid',38748),(29796,'events','lldruleid',38749),(29797,'events','lldruleid',38750),(29798,'events','lldruleid',38798),(29799,'events','lldruleid',38799),(29800,'events','lldruleid',38800),(29801,'events','lldruleid',38801),(29802,'events','lldruleid',38802),(29803,'events','lldruleid',38803),(29804,'events','lldruleid',38804),(29805,'events','lldruleid',38852),(29806,'events','lldruleid',38853),(29807,'events','lldruleid',38854),(29808,'events','lldruleid',38855),(29809,'events','lldruleid',38856),(29810,'events','lldruleid',38857),(29811,'events','lldruleid',38858),(29812,'events','lldruleid',38906),(29813,'events','lldruleid',38907),(29814,'events','lldruleid',38908),(29815,'events','lldruleid',38909),(29816,'events','lldruleid',38910),(29817,'events','lldruleid',38911),(29818,'events','lldruleid',38912),(29819,'events','lldruleid',38960),(29820,'events','lldruleid',38961),(29821,'events','lldruleid',38962),(29822,'events','lldruleid',38963),(29823,'events','lldruleid',38964),(29824,'events','lldruleid',38965),(29825,'events','lldruleid',38966),(29826,'events','lldruleid',39014),(29827,'events','lldruleid',39015),(29828,'events','lldruleid',39016),(29829,'events','lldruleid',39017),(29830,'events','lldruleid',39018),(29831,'events','lldruleid',39019),(29832,'events','lldruleid',39020),(29833,'events','lldruleid',39068),(29834,'events','lldruleid',39069),(29835,'events','lldruleid',39070),(29836,'events','lldruleid',39071),(29837,'events','lldruleid',39072),(29838,'events','lldruleid',39073),(29839,'events','lldruleid',39074),(29840,'events','lldruleid',39122),(29841,'events','lldruleid',39123),(29842,'events','lldruleid',39124),(29843,'events','lldruleid',39125),(29844,'events','lldruleid',39126),(29845,'events','lldruleid',39127),(29846,'events','lldruleid',39128),(29847,'events','lldruleid',39176),(29848,'events','lldruleid',39177),(29849,'events','lldruleid',39178),(29850,'events','lldruleid',39179),(29851,'events','lldruleid',39180),(29852,'events','lldruleid',39181),(29853,'events','lldruleid',39182),(29854,'events','lldruleid',39230),(29855,'events','lldruleid',39231),(29856,'events','lldruleid',39232),(29857,'events','lldruleid',39233),(29858,'events','lldruleid',39234),(29859,'events','lldruleid',39235),(29860,'events','lldruleid',39236),(29861,'events','lldruleid',39284),(29862,'events','lldruleid',39285),(29863,'events','lldruleid',39286),(29864,'events','lldruleid',39287),(29865,'events','lldruleid',39288),(29866,'events','lldruleid',39289),(29867,'events','lldruleid',39290),(29868,'events','lldruleid',39608),(29869,'events','lldruleid',39609),(29870,'events','lldruleid',39610),(29871,'events','lldruleid',39611),(29872,'events','lldruleid',39612),(29873,'events','lldruleid',39613),(29874,'events','lldruleid',39614),(29875,'events','lldruleid',39662),(29876,'events','lldruleid',39663),(29877,'events','lldruleid',39664),(29878,'events','lldruleid',39665),(29879,'events','lldruleid',39666),(29880,'events','lldruleid',39667),(29881,'events','lldruleid',39668),(29882,'events','lldruleid',39716),(29883,'events','lldruleid',39717),(29884,'events','lldruleid',39718),(29885,'events','lldruleid',39719),(29886,'events','lldruleid',39720),(29887,'events','lldruleid',39721),(29888,'events','lldruleid',39722),(29889,'events','lldruleid',40138),(29890,'events','lldruleid',40809),(29891,'events','lldruleid',40810),(29892,'events','lldruleid',41617),(29893,'events','lldruleid',41638),(29894,'events','lldruleid',41659),(29895,'events','lldruleid',41680),(29896,'events','lldruleid',41701),(29897,'events','lldruleid',41722),(29898,'events','lldruleid',41743),(29899,'events','lldruleid',41764),(29900,'events','lldruleid',41785),(29901,'events','lldruleid',41806),(29902,'events','lldruleid',41827),(29903,'events','lldruleid',41848),(29904,'events','lldruleid',41869),(29905,'events','lldruleid',41890),(29906,'events','lldruleid',42016),(29907,'events','lldruleid',42037),(29908,'events','lldruleid',42058),(29909,'events','lldruleid',42100),(29910,'events','lldruleid',42726),(29911,'events','lldruleid',43565),(29912,'events','lldruleid',44236),(29913,'events','lldruleid',44344),(29914,'events','lldruleid',44352),(29915,'events','itemid',22835),(29916,'history','itemid',22835),(29917,'history_log','itemid',22835),(29918,'history_str','itemid',22835),(29919,'history_text','itemid',22835),(29920,'history_uint','itemid',22835),(29921,'trends','itemid',22835),(29922,'trends_uint','itemid',22835),(29923,'events','itemid',22836),(29924,'history','itemid',22836),(29925,'history_log','itemid',22836),(29926,'history_str','itemid',22836),(29927,'history_text','itemid',22836),(29928,'history_uint','itemid',22836),(29929,'trends','itemid',22836),(29930,'trends_uint','itemid',22836),(29931,'events','itemid',22837),(29932,'history','itemid',22837),(29933,'history_log','itemid',22837),(29934,'history_str','itemid',22837),(29935,'history_text','itemid',22837),(29936,'history_uint','itemid',22837),(29937,'trends','itemid',22837),(29938,'trends_uint','itemid',22837),(29939,'events','itemid',22838),(29940,'history','itemid',22838),(29941,'history_log','itemid',22838),(29942,'history_str','itemid',22838),(29943,'history_text','itemid',22838),(29944,'history_uint','itemid',22838),(29945,'trends','itemid',22838),(29946,'trends_uint','itemid',22838),(29947,'events','itemid',22839),(29948,'history','itemid',22839),(29949,'history_log','itemid',22839),(29950,'history_str','itemid',22839),(29951,'history_text','itemid',22839),(29952,'history_uint','itemid',22839),(29953,'trends','itemid',22839),(29954,'trends_uint','itemid',22839),(29955,'events','itemid',22840),(29956,'history','itemid',22840),(29957,'history_log','itemid',22840),(29958,'history_str','itemid',22840),(29959,'history_text','itemid',22840),(29960,'history_uint','itemid',22840),(29961,'trends','itemid',22840),(29962,'trends_uint','itemid',22840),(29963,'events','itemid',22841),(29964,'history','itemid',22841),(29965,'history_log','itemid',22841),(29966,'history_str','itemid',22841),(29967,'history_text','itemid',22841),(29968,'history_uint','itemid',22841),(29969,'trends','itemid',22841),(29970,'trends_uint','itemid',22841),(29971,'events','itemid',22842),(29972,'history','itemid',22842),(29973,'history_log','itemid',22842),(29974,'history_str','itemid',22842),(29975,'history_text','itemid',22842),(29976,'history_uint','itemid',22842),(29977,'trends','itemid',22842),(29978,'trends_uint','itemid',22842),(29979,'events','itemid',22843),(29980,'history','itemid',22843),(29981,'history_log','itemid',22843),(29982,'history_str','itemid',22843),(29983,'history_text','itemid',22843),(29984,'history_uint','itemid',22843),(29985,'trends','itemid',22843),(29986,'trends_uint','itemid',22843),(29987,'events','itemid',22844),(29988,'history','itemid',22844),(29989,'history_log','itemid',22844),(29990,'history_str','itemid',22844),(29991,'history_text','itemid',22844),(29992,'history_uint','itemid',22844),(29993,'trends','itemid',22844),(29994,'trends_uint','itemid',22844),(29995,'events','itemid',22845),(29996,'history','itemid',22845),(29997,'history_log','itemid',22845),(29998,'history_str','itemid',22845),(29999,'history_text','itemid',22845),(30000,'history_uint','itemid',22845),(30001,'trends','itemid',22845),(30002,'trends_uint','itemid',22845),(30003,'events','itemid',22846),(30004,'history','itemid',22846),(30005,'history_log','itemid',22846),(30006,'history_str','itemid',22846),(30007,'history_text','itemid',22846),(30008,'history_uint','itemid',22846),(30009,'trends','itemid',22846),(30010,'trends_uint','itemid',22846),(30011,'events','itemid',22848),(30012,'history','itemid',22848),(30013,'history_log','itemid',22848),(30014,'history_str','itemid',22848),(30015,'history_text','itemid',22848),(30016,'history_uint','itemid',22848),(30017,'trends','itemid',22848),(30018,'trends_uint','itemid',22848),(30019,'events','itemid',22851),(30020,'history','itemid',22851),(30021,'history_log','itemid',22851),(30022,'history_str','itemid',22851),(30023,'history_text','itemid',22851),(30024,'history_uint','itemid',22851),(30025,'trends','itemid',22851),(30026,'trends_uint','itemid',22851),(30027,'events','itemid',22852),(30028,'history','itemid',22852),(30029,'history_log','itemid',22852),(30030,'history_str','itemid',22852),(30031,'history_text','itemid',22852),(30032,'history_uint','itemid',22852),(30033,'trends','itemid',22852),(30034,'trends_uint','itemid',22852),(30035,'events','itemid',22853),(30036,'history','itemid',22853),(30037,'history_log','itemid',22853),(30038,'history_str','itemid',22853),(30039,'history_text','itemid',22853),(30040,'history_uint','itemid',22853),(30041,'trends','itemid',22853),(30042,'trends_uint','itemid',22853),(30043,'events','itemid',22854),(30044,'history','itemid',22854),(30045,'history_log','itemid',22854),(30046,'history_str','itemid',22854),(30047,'history_text','itemid',22854),(30048,'history_uint','itemid',22854),(30049,'trends','itemid',22854),(30050,'trends_uint','itemid',22854),(30051,'events','itemid',22855),(30052,'history','itemid',22855),(30053,'history_log','itemid',22855),(30054,'history_str','itemid',22855),(30055,'history_text','itemid',22855),(30056,'history_uint','itemid',22855),(30057,'trends','itemid',22855),(30058,'trends_uint','itemid',22855),(30059,'events','itemid',22856),(30060,'history','itemid',22856),(30061,'history_log','itemid',22856),(30062,'history_str','itemid',22856),(30063,'history_text','itemid',22856),(30064,'history_uint','itemid',22856),(30065,'trends','itemid',22856),(30066,'trends_uint','itemid',22856),(30067,'events','itemid',22857),(30068,'history','itemid',22857),(30069,'history_log','itemid',22857),(30070,'history_str','itemid',22857),(30071,'history_text','itemid',22857),(30072,'history_uint','itemid',22857),(30073,'trends','itemid',22857),(30074,'trends_uint','itemid',22857),(30075,'events','itemid',22858),(30076,'history','itemid',22858),(30077,'history_log','itemid',22858),(30078,'history_str','itemid',22858),(30079,'history_text','itemid',22858),(30080,'history_uint','itemid',22858),(30081,'trends','itemid',22858),(30082,'trends_uint','itemid',22858),(30083,'events','itemid',22859),(30084,'history','itemid',22859),(30085,'history_log','itemid',22859),(30086,'history_str','itemid',22859),(30087,'history_text','itemid',22859),(30088,'history_uint','itemid',22859),(30089,'trends','itemid',22859),(30090,'trends_uint','itemid',22859),(30091,'events','itemid',22860),(30092,'history','itemid',22860),(30093,'history_log','itemid',22860),(30094,'history_str','itemid',22860),(30095,'history_text','itemid',22860),(30096,'history_uint','itemid',22860),(30097,'trends','itemid',22860),(30098,'trends_uint','itemid',22860),(30099,'events','itemid',22861),(30100,'history','itemid',22861),(30101,'history_log','itemid',22861),(30102,'history_str','itemid',22861),(30103,'history_text','itemid',22861),(30104,'history_uint','itemid',22861),(30105,'trends','itemid',22861),(30106,'trends_uint','itemid',22861),(30107,'events','itemid',22862),(30108,'history','itemid',22862),(30109,'history_log','itemid',22862),(30110,'history_str','itemid',22862),(30111,'history_text','itemid',22862),(30112,'history_uint','itemid',22862),(30113,'trends','itemid',22862),(30114,'trends_uint','itemid',22862),(30115,'events','itemid',22863),(30116,'history','itemid',22863),(30117,'history_log','itemid',22863),(30118,'history_str','itemid',22863),(30119,'history_text','itemid',22863),(30120,'history_uint','itemid',22863),(30121,'trends','itemid',22863),(30122,'trends_uint','itemid',22863),(30123,'events','itemid',23649),(30124,'history','itemid',23649),(30125,'history_log','itemid',23649),(30126,'history_str','itemid',23649),(30127,'history_text','itemid',23649),(30128,'history_uint','itemid',23649),(30129,'trends','itemid',23649),(30130,'trends_uint','itemid',23649),(30131,'events','itemid',23650),(30132,'history','itemid',23650),(30133,'history_log','itemid',23650),(30134,'history_str','itemid',23650),(30135,'history_text','itemid',23650),(30136,'history_uint','itemid',23650),(30137,'trends','itemid',23650),(30138,'trends_uint','itemid',23650),(30139,'events','itemid',23651),(30140,'history','itemid',23651),(30141,'history_log','itemid',23651),(30142,'history_str','itemid',23651),(30143,'history_text','itemid',23651),(30144,'history_uint','itemid',23651),(30145,'trends','itemid',23651),(30146,'trends_uint','itemid',23651),(30147,'events','itemid',27930),(30148,'history','itemid',27930),(30149,'history_log','itemid',27930),(30150,'history_str','itemid',27930),(30151,'history_text','itemid',27930),(30152,'history_uint','itemid',27930),(30153,'trends','itemid',27930),(30154,'trends_uint','itemid',27930),(30155,'events','itemid',27931),(30156,'history','itemid',27931),(30157,'history_log','itemid',27931),(30158,'history_str','itemid',27931),(30159,'history_text','itemid',27931),(30160,'history_uint','itemid',27931),(30161,'trends','itemid',27931),(30162,'trends_uint','itemid',27931),(30163,'events','itemid',27935),(30164,'history','itemid',27935),(30165,'history_log','itemid',27935),(30166,'history_str','itemid',27935),(30167,'history_text','itemid',27935),(30168,'history_uint','itemid',27935),(30169,'trends','itemid',27935),(30170,'trends_uint','itemid',27935),(30171,'events','itemid',27936),(30172,'history','itemid',27936),(30173,'history_log','itemid',27936),(30174,'history_str','itemid',27936),(30175,'history_text','itemid',27936),(30176,'history_uint','itemid',27936),(30177,'trends','itemid',27936),(30178,'trends_uint','itemid',27936),(30179,'events','itemid',28804),(30180,'history','itemid',28804),(30181,'history_log','itemid',28804),(30182,'history_str','itemid',28804),(30183,'history_text','itemid',28804),(30184,'history_uint','itemid',28804),(30185,'trends','itemid',28804),(30186,'trends_uint','itemid',28804),(30187,'events','itemid',28805),(30188,'history','itemid',28805),(30189,'history_log','itemid',28805),(30190,'history_str','itemid',28805),(30191,'history_text','itemid',28805),(30192,'history_uint','itemid',28805),(30193,'trends','itemid',28805),(30194,'trends_uint','itemid',28805),(30195,'events','itemid',28810),(30196,'history','itemid',28810),(30197,'history_log','itemid',28810),(30198,'history_str','itemid',28810),(30199,'history_text','itemid',28810),(30200,'history_uint','itemid',28810),(30201,'trends','itemid',28810),(30202,'trends_uint','itemid',28810),(30203,'events','itemid',28811),(30204,'history','itemid',28811),(30205,'history_log','itemid',28811),(30206,'history_str','itemid',28811),(30207,'history_text','itemid',28811),(30208,'history_uint','itemid',28811),(30209,'trends','itemid',28811),(30210,'trends_uint','itemid',28811),(30211,'events','itemid',28812),(30212,'history','itemid',28812),(30213,'history_log','itemid',28812),(30214,'history_str','itemid',28812),(30215,'history_text','itemid',28812),(30216,'history_uint','itemid',28812),(30217,'trends','itemid',28812),(30218,'trends_uint','itemid',28812),(30219,'events','itemid',28813),(30220,'history','itemid',28813),(30221,'history_log','itemid',28813),(30222,'history_str','itemid',28813),(30223,'history_text','itemid',28813),(30224,'history_uint','itemid',28813),(30225,'trends','itemid',28813),(30226,'trends_uint','itemid',28813),(30227,'events','itemid',28814),(30228,'history','itemid',28814),(30229,'history_log','itemid',28814),(30230,'history_str','itemid',28814),(30231,'history_text','itemid',28814),(30232,'history_uint','itemid',28814),(30233,'trends','itemid',28814),(30234,'trends_uint','itemid',28814),(30235,'events','itemid',28815),(30236,'history','itemid',28815),(30237,'history_log','itemid',28815),(30238,'history_str','itemid',28815),(30239,'history_text','itemid',28815),(30240,'history_uint','itemid',28815),(30241,'trends','itemid',28815),(30242,'trends_uint','itemid',28815),(30243,'events','itemid',28816),(30244,'history','itemid',28816),(30245,'history_log','itemid',28816),(30246,'history_str','itemid',28816),(30247,'history_text','itemid',28816),(30248,'history_uint','itemid',28816),(30249,'trends','itemid',28816),(30250,'trends_uint','itemid',28816),(30251,'events','itemid',28817),(30252,'history','itemid',28817),(30253,'history_log','itemid',28817),(30254,'history_str','itemid',28817),(30255,'history_text','itemid',28817),(30256,'history_uint','itemid',28817),(30257,'trends','itemid',28817),(30258,'trends_uint','itemid',28817),(30259,'events','itemid',28818),(30260,'history','itemid',28818),(30261,'history_log','itemid',28818),(30262,'history_str','itemid',28818),(30263,'history_text','itemid',28818),(30264,'history_uint','itemid',28818),(30265,'trends','itemid',28818),(30266,'trends_uint','itemid',28818),(30267,'events','itemid',28819),(30268,'history','itemid',28819),(30269,'history_log','itemid',28819),(30270,'history_str','itemid',28819),(30271,'history_text','itemid',28819),(30272,'history_uint','itemid',28819),(30273,'trends','itemid',28819),(30274,'trends_uint','itemid',28819),(30275,'events','itemid',28820),(30276,'history','itemid',28820),(30277,'history_log','itemid',28820),(30278,'history_str','itemid',28820),(30279,'history_text','itemid',28820),(30280,'history_uint','itemid',28820),(30281,'trends','itemid',28820),(30282,'trends_uint','itemid',28820),(30283,'events','itemid',28821),(30284,'history','itemid',28821),(30285,'history_log','itemid',28821),(30286,'history_str','itemid',28821),(30287,'history_text','itemid',28821),(30288,'history_uint','itemid',28821),(30289,'trends','itemid',28821),(30290,'trends_uint','itemid',28821),(30291,'events','itemid',28822),(30292,'history','itemid',28822),(30293,'history_log','itemid',28822),(30294,'history_str','itemid',28822),(30295,'history_text','itemid',28822),(30296,'history_uint','itemid',28822),(30297,'trends','itemid',28822),(30298,'trends_uint','itemid',28822),(30299,'events','itemid',28823),(30300,'history','itemid',28823),(30301,'history_log','itemid',28823),(30302,'history_str','itemid',28823),(30303,'history_text','itemid',28823),(30304,'history_uint','itemid',28823),(30305,'trends','itemid',28823),(30306,'trends_uint','itemid',28823),(30307,'events','itemid',28824),(30308,'history','itemid',28824),(30309,'history_log','itemid',28824),(30310,'history_str','itemid',28824),(30311,'history_text','itemid',28824),(30312,'history_uint','itemid',28824),(30313,'trends','itemid',28824),(30314,'trends_uint','itemid',28824),(30315,'events','itemid',28825),(30316,'history','itemid',28825),(30317,'history_log','itemid',28825),(30318,'history_str','itemid',28825),(30319,'history_text','itemid',28825),(30320,'history_uint','itemid',28825),(30321,'trends','itemid',28825),(30322,'trends_uint','itemid',28825),(30323,'events','itemid',28826),(30324,'history','itemid',28826),(30325,'history_log','itemid',28826),(30326,'history_str','itemid',28826),(30327,'history_text','itemid',28826),(30328,'history_uint','itemid',28826),(30329,'trends','itemid',28826),(30330,'trends_uint','itemid',28826),(30331,'events','itemid',28827),(30332,'history','itemid',28827),(30333,'history_log','itemid',28827),(30334,'history_str','itemid',28827),(30335,'history_text','itemid',28827),(30336,'history_uint','itemid',28827),(30337,'trends','itemid',28827),(30338,'trends_uint','itemid',28827),(30339,'events','itemid',28828),(30340,'history','itemid',28828),(30341,'history_log','itemid',28828),(30342,'history_str','itemid',28828),(30343,'history_text','itemid',28828),(30344,'history_uint','itemid',28828),(30345,'trends','itemid',28828),(30346,'trends_uint','itemid',28828),(30347,'events','itemid',28829),(30348,'history','itemid',28829),(30349,'history_log','itemid',28829),(30350,'history_str','itemid',28829),(30351,'history_text','itemid',28829),(30352,'history_uint','itemid',28829),(30353,'trends','itemid',28829),(30354,'trends_uint','itemid',28829),(30355,'events','itemid',28830),(30356,'history','itemid',28830),(30357,'history_log','itemid',28830),(30358,'history_str','itemid',28830),(30359,'history_text','itemid',28830),(30360,'history_uint','itemid',28830),(30361,'trends','itemid',28830),(30362,'trends_uint','itemid',28830),(30363,'events','itemid',28831),(30364,'history','itemid',28831),(30365,'history_log','itemid',28831),(30366,'history_str','itemid',28831),(30367,'history_text','itemid',28831),(30368,'history_uint','itemid',28831),(30369,'trends','itemid',28831),(30370,'trends_uint','itemid',28831),(30371,'events','itemid',28832),(30372,'history','itemid',28832),(30373,'history_log','itemid',28832),(30374,'history_str','itemid',28832),(30375,'history_text','itemid',28832),(30376,'history_uint','itemid',28832),(30377,'trends','itemid',28832),(30378,'trends_uint','itemid',28832),(30379,'events','itemid',28833),(30380,'history','itemid',28833),(30381,'history_log','itemid',28833),(30382,'history_str','itemid',28833),(30383,'history_text','itemid',28833),(30384,'history_uint','itemid',28833),(30385,'trends','itemid',28833),(30386,'trends_uint','itemid',28833),(30387,'events','itemid',30121),(30388,'history','itemid',30121),(30389,'history_log','itemid',30121),(30390,'history_str','itemid',30121),(30391,'history_text','itemid',30121),(30392,'history_uint','itemid',30121),(30393,'trends','itemid',30121),(30394,'trends_uint','itemid',30121),(30395,'events','itemid',30122),(30396,'history','itemid',30122),(30397,'history_log','itemid',30122),(30398,'history_str','itemid',30122),(30399,'history_text','itemid',30122),(30400,'history_uint','itemid',30122),(30401,'trends','itemid',30122),(30402,'trends_uint','itemid',30122),(30403,'events','itemid',30123),(30404,'history','itemid',30123),(30405,'history_log','itemid',30123),(30406,'history_str','itemid',30123),(30407,'history_text','itemid',30123),(30408,'history_uint','itemid',30123),(30409,'trends','itemid',30123),(30410,'trends_uint','itemid',30123),(30411,'events','itemid',30431),(30412,'history','itemid',30431),(30413,'history_log','itemid',30431),(30414,'history_str','itemid',30431),(30415,'history_text','itemid',30431),(30416,'history_uint','itemid',30431),(30417,'trends','itemid',30431),(30418,'trends_uint','itemid',30431),(30419,'events','itemid',30432),(30420,'history','itemid',30432),(30421,'history_log','itemid',30432),(30422,'history_str','itemid',30432),(30423,'history_text','itemid',30432),(30424,'history_uint','itemid',30432),(30425,'trends','itemid',30432),(30426,'trends_uint','itemid',30432),(30427,'events','itemid',30433),(30428,'history','itemid',30433),(30429,'history_log','itemid',30433),(30430,'history_str','itemid',30433),(30431,'history_text','itemid',30433),(30432,'history_uint','itemid',30433),(30433,'trends','itemid',30433),(30434,'trends_uint','itemid',30433),(30435,'events','itemid',30434),(30436,'history','itemid',30434),(30437,'history_log','itemid',30434),(30438,'history_str','itemid',30434),(30439,'history_text','itemid',30434),(30440,'history_uint','itemid',30434),(30441,'trends','itemid',30434),(30442,'trends_uint','itemid',30434),(30443,'events','itemid',30435),(30444,'history','itemid',30435),(30445,'history_log','itemid',30435),(30446,'history_str','itemid',30435),(30447,'history_text','itemid',30435),(30448,'history_uint','itemid',30435),(30449,'trends','itemid',30435),(30450,'trends_uint','itemid',30435),(30451,'events','itemid',30436),(30452,'history','itemid',30436),(30453,'history_log','itemid',30436),(30454,'history_str','itemid',30436),(30455,'history_text','itemid',30436),(30456,'history_uint','itemid',30436),(30457,'trends','itemid',30436),(30458,'trends_uint','itemid',30436),(30459,'events','itemid',30437),(30460,'history','itemid',30437),(30461,'history_log','itemid',30437),(30462,'history_str','itemid',30437),(30463,'history_text','itemid',30437),(30464,'history_uint','itemid',30437),(30465,'trends','itemid',30437),(30466,'trends_uint','itemid',30437),(30467,'events','itemid',30438),(30468,'history','itemid',30438),(30469,'history_log','itemid',30438),(30470,'history_str','itemid',30438),(30471,'history_text','itemid',30438),(30472,'history_uint','itemid',30438),(30473,'trends','itemid',30438),(30474,'trends_uint','itemid',30438),(30475,'events','itemid',30439),(30476,'history','itemid',30439),(30477,'history_log','itemid',30439),(30478,'history_str','itemid',30439),(30479,'history_text','itemid',30439),(30480,'history_uint','itemid',30439),(30481,'trends','itemid',30439),(30482,'trends_uint','itemid',30439),(30483,'events','itemid',30440),(30484,'history','itemid',30440),(30485,'history_log','itemid',30440),(30486,'history_str','itemid',30440),(30487,'history_text','itemid',30440),(30488,'history_uint','itemid',30440),(30489,'trends','itemid',30440),(30490,'trends_uint','itemid',30440),(30491,'events','itemid',30441),(30492,'history','itemid',30441),(30493,'history_log','itemid',30441),(30494,'history_str','itemid',30441),(30495,'history_text','itemid',30441),(30496,'history_uint','itemid',30441),(30497,'trends','itemid',30441),(30498,'trends_uint','itemid',30441),(30499,'events','itemid',30442),(30500,'history','itemid',30442),(30501,'history_log','itemid',30442),(30502,'history_str','itemid',30442),(30503,'history_text','itemid',30442),(30504,'history_uint','itemid',30442),(30505,'trends','itemid',30442),(30506,'trends_uint','itemid',30442),(30507,'events','itemid',30443),(30508,'history','itemid',30443),(30509,'history_log','itemid',30443),(30510,'history_str','itemid',30443),(30511,'history_text','itemid',30443),(30512,'history_uint','itemid',30443),(30513,'trends','itemid',30443),(30514,'trends_uint','itemid',30443),(30515,'events','itemid',30444),(30516,'history','itemid',30444),(30517,'history_log','itemid',30444),(30518,'history_str','itemid',30444),(30519,'history_text','itemid',30444),(30520,'history_uint','itemid',30444),(30521,'trends','itemid',30444),(30522,'trends_uint','itemid',30444),(30523,'events','itemid',30445),(30524,'history','itemid',30445),(30525,'history_log','itemid',30445),(30526,'history_str','itemid',30445),(30527,'history_text','itemid',30445),(30528,'history_uint','itemid',30445),(30529,'trends','itemid',30445),(30530,'trends_uint','itemid',30445),(30531,'events','itemid',30446),(30532,'history','itemid',30446),(30533,'history_log','itemid',30446),(30534,'history_str','itemid',30446),(30535,'history_text','itemid',30446),(30536,'history_uint','itemid',30446),(30537,'trends','itemid',30446),(30538,'trends_uint','itemid',30446),(30539,'events','itemid',30447),(30540,'history','itemid',30447),(30541,'history_log','itemid',30447),(30542,'history_str','itemid',30447),(30543,'history_text','itemid',30447),(30544,'history_uint','itemid',30447),(30545,'trends','itemid',30447),(30546,'trends_uint','itemid',30447),(30547,'events','itemid',30449),(30548,'history','itemid',30449),(30549,'history_log','itemid',30449),(30550,'history_str','itemid',30449),(30551,'history_text','itemid',30449),(30552,'history_uint','itemid',30449),(30553,'trends','itemid',30449),(30554,'trends_uint','itemid',30449),(30555,'events','itemid',30450),(30556,'history','itemid',30450),(30557,'history_log','itemid',30450),(30558,'history_str','itemid',30450),(30559,'history_text','itemid',30450),(30560,'history_uint','itemid',30450),(30561,'trends','itemid',30450),(30562,'trends_uint','itemid',30450),(30563,'events','itemid',30451),(30564,'history','itemid',30451),(30565,'history_log','itemid',30451),(30566,'history_str','itemid',30451),(30567,'history_text','itemid',30451),(30568,'history_uint','itemid',30451),(30569,'trends','itemid',30451),(30570,'trends_uint','itemid',30451),(30571,'events','itemid',30452),(30572,'history','itemid',30452),(30573,'history_log','itemid',30452),(30574,'history_str','itemid',30452),(30575,'history_text','itemid',30452),(30576,'history_uint','itemid',30452),(30577,'trends','itemid',30452),(30578,'trends_uint','itemid',30452),(30579,'events','itemid',30453),(30580,'history','itemid',30453),(30581,'history_log','itemid',30453),(30582,'history_str','itemid',30453),(30583,'history_text','itemid',30453),(30584,'history_uint','itemid',30453),(30585,'trends','itemid',30453),(30586,'trends_uint','itemid',30453),(30587,'events','itemid',30454),(30588,'history','itemid',30454),(30589,'history_log','itemid',30454),(30590,'history_str','itemid',30454),(30591,'history_text','itemid',30454),(30592,'history_uint','itemid',30454),(30593,'trends','itemid',30454),(30594,'trends_uint','itemid',30454),(30595,'events','itemid',30455),(30596,'history','itemid',30455),(30597,'history_log','itemid',30455),(30598,'history_str','itemid',30455),(30599,'history_text','itemid',30455),(30600,'history_uint','itemid',30455),(30601,'trends','itemid',30455),(30602,'trends_uint','itemid',30455),(30603,'events','itemid',30456),(30604,'history','itemid',30456),(30605,'history_log','itemid',30456),(30606,'history_str','itemid',30456),(30607,'history_text','itemid',30456),(30608,'history_uint','itemid',30456),(30609,'trends','itemid',30456),(30610,'trends_uint','itemid',30456),(30611,'events','itemid',30457),(30612,'history','itemid',30457),(30613,'history_log','itemid',30457),(30614,'history_str','itemid',30457),(30615,'history_text','itemid',30457),(30616,'history_uint','itemid',30457),(30617,'trends','itemid',30457),(30618,'trends_uint','itemid',30457),(30619,'events','itemid',30458),(30620,'history','itemid',30458),(30621,'history_log','itemid',30458),(30622,'history_str','itemid',30458),(30623,'history_text','itemid',30458),(30624,'history_uint','itemid',30458),(30625,'trends','itemid',30458),(30626,'trends_uint','itemid',30458),(30627,'events','itemid',30459),(30628,'history','itemid',30459),(30629,'history_log','itemid',30459),(30630,'history_str','itemid',30459),(30631,'history_text','itemid',30459),(30632,'history_uint','itemid',30459),(30633,'trends','itemid',30459),(30634,'trends_uint','itemid',30459),(30635,'events','itemid',30460),(30636,'history','itemid',30460),(30637,'history_log','itemid',30460),(30638,'history_str','itemid',30460),(30639,'history_text','itemid',30460),(30640,'history_uint','itemid',30460),(30641,'trends','itemid',30460),(30642,'trends_uint','itemid',30460),(30643,'events','itemid',30461),(30644,'history','itemid',30461),(30645,'history_log','itemid',30461),(30646,'history_str','itemid',30461),(30647,'history_text','itemid',30461),(30648,'history_uint','itemid',30461),(30649,'trends','itemid',30461),(30650,'trends_uint','itemid',30461),(30651,'events','itemid',30462),(30652,'history','itemid',30462),(30653,'history_log','itemid',30462),(30654,'history_str','itemid',30462),(30655,'history_text','itemid',30462),(30656,'history_uint','itemid',30462),(30657,'trends','itemid',30462),(30658,'trends_uint','itemid',30462),(30659,'events','itemid',30463),(30660,'history','itemid',30463),(30661,'history_log','itemid',30463),(30662,'history_str','itemid',30463),(30663,'history_text','itemid',30463),(30664,'history_uint','itemid',30463),(30665,'trends','itemid',30463),(30666,'trends_uint','itemid',30463),(30667,'events','itemid',30464),(30668,'history','itemid',30464),(30669,'history_log','itemid',30464),(30670,'history_str','itemid',30464),(30671,'history_text','itemid',30464),(30672,'history_uint','itemid',30464),(30673,'trends','itemid',30464),(30674,'trends_uint','itemid',30464),(30675,'events','itemid',30465),(30676,'history','itemid',30465),(30677,'history_log','itemid',30465),(30678,'history_str','itemid',30465),(30679,'history_text','itemid',30465),(30680,'history_uint','itemid',30465),(30681,'trends','itemid',30465),(30682,'trends_uint','itemid',30465),(30683,'events','itemid',30466),(30684,'history','itemid',30466),(30685,'history_log','itemid',30466),(30686,'history_str','itemid',30466),(30687,'history_text','itemid',30466),(30688,'history_uint','itemid',30466),(30689,'trends','itemid',30466),(30690,'trends_uint','itemid',30466),(30691,'events','itemid',30470),(30692,'history','itemid',30470),(30693,'history_log','itemid',30470),(30694,'history_str','itemid',30470),(30695,'history_text','itemid',30470),(30696,'history_uint','itemid',30470),(30697,'trends','itemid',30470),(30698,'trends_uint','itemid',30470),(30699,'events','itemid',30471),(30700,'history','itemid',30471),(30701,'history_log','itemid',30471),(30702,'history_str','itemid',30471),(30703,'history_text','itemid',30471),(30704,'history_uint','itemid',30471),(30705,'trends','itemid',30471),(30706,'trends_uint','itemid',30471),(30707,'events','itemid',30479),(30708,'history','itemid',30479),(30709,'history_log','itemid',30479),(30710,'history_str','itemid',30479),(30711,'history_text','itemid',30479),(30712,'history_uint','itemid',30479),(30713,'trends','itemid',30479),(30714,'trends_uint','itemid',30479),(30715,'events','itemid',30480),(30716,'history','itemid',30480),(30717,'history_log','itemid',30480),(30718,'history_str','itemid',30480),(30719,'history_text','itemid',30480),(30720,'history_uint','itemid',30480),(30721,'trends','itemid',30480),(30722,'trends_uint','itemid',30480),(30723,'events','itemid',30481),(30724,'history','itemid',30481),(30725,'history_log','itemid',30481),(30726,'history_str','itemid',30481),(30727,'history_text','itemid',30481),(30728,'history_uint','itemid',30481),(30729,'trends','itemid',30481),(30730,'trends_uint','itemid',30481),(30731,'events','itemid',30482),(30732,'history','itemid',30482),(30733,'history_log','itemid',30482),(30734,'history_str','itemid',30482),(30735,'history_text','itemid',30482),(30736,'history_uint','itemid',30482),(30737,'trends','itemid',30482),(30738,'trends_uint','itemid',30482),(30739,'events','itemid',30483),(30740,'history','itemid',30483),(30741,'history_log','itemid',30483),(30742,'history_str','itemid',30483),(30743,'history_text','itemid',30483),(30744,'history_uint','itemid',30483),(30745,'trends','itemid',30483),(30746,'trends_uint','itemid',30483),(30747,'events','itemid',30484),(30748,'history','itemid',30484),(30749,'history_log','itemid',30484),(30750,'history_str','itemid',30484),(30751,'history_text','itemid',30484),(30752,'history_uint','itemid',30484),(30753,'trends','itemid',30484),(30754,'trends_uint','itemid',30484),(30755,'events','itemid',30485),(30756,'history','itemid',30485),(30757,'history_log','itemid',30485),(30758,'history_str','itemid',30485),(30759,'history_text','itemid',30485),(30760,'history_uint','itemid',30485),(30761,'trends','itemid',30485),(30762,'trends_uint','itemid',30485),(30763,'events','itemid',30486),(30764,'history','itemid',30486),(30765,'history_log','itemid',30486),(30766,'history_str','itemid',30486),(30767,'history_text','itemid',30486),(30768,'history_uint','itemid',30486),(30769,'trends','itemid',30486),(30770,'trends_uint','itemid',30486),(30771,'events','itemid',30487),(30772,'history','itemid',30487),(30773,'history_log','itemid',30487),(30774,'history_str','itemid',30487),(30775,'history_text','itemid',30487),(30776,'history_uint','itemid',30487),(30777,'trends','itemid',30487),(30778,'trends_uint','itemid',30487),(30779,'events','itemid',30488),(30780,'history','itemid',30488),(30781,'history_log','itemid',30488),(30782,'history_str','itemid',30488),(30783,'history_text','itemid',30488),(30784,'history_uint','itemid',30488),(30785,'trends','itemid',30488),(30786,'trends_uint','itemid',30488),(30787,'events','itemid',30489),(30788,'history','itemid',30489),(30789,'history_log','itemid',30489),(30790,'history_str','itemid',30489),(30791,'history_text','itemid',30489),(30792,'history_uint','itemid',30489),(30793,'trends','itemid',30489),(30794,'trends_uint','itemid',30489),(30795,'events','itemid',30490),(30796,'history','itemid',30490),(30797,'history_log','itemid',30490),(30798,'history_str','itemid',30490),(30799,'history_text','itemid',30490),(30800,'history_uint','itemid',30490),(30801,'trends','itemid',30490),(30802,'trends_uint','itemid',30490),(30803,'events','itemid',30491),(30804,'history','itemid',30491),(30805,'history_log','itemid',30491),(30806,'history_str','itemid',30491),(30807,'history_text','itemid',30491),(30808,'history_uint','itemid',30491),(30809,'trends','itemid',30491),(30810,'trends_uint','itemid',30491),(30811,'events','itemid',30492),(30812,'history','itemid',30492),(30813,'history_log','itemid',30492),(30814,'history_str','itemid',30492),(30815,'history_text','itemid',30492),(30816,'history_uint','itemid',30492),(30817,'trends','itemid',30492),(30818,'trends_uint','itemid',30492),(30819,'events','itemid',30493),(30820,'history','itemid',30493),(30821,'history_log','itemid',30493),(30822,'history_str','itemid',30493),(30823,'history_text','itemid',30493),(30824,'history_uint','itemid',30493),(30825,'trends','itemid',30493),(30826,'trends_uint','itemid',30493),(30827,'events','itemid',30494),(30828,'history','itemid',30494),(30829,'history_log','itemid',30494),(30830,'history_str','itemid',30494),(30831,'history_text','itemid',30494),(30832,'history_uint','itemid',30494),(30833,'trends','itemid',30494),(30834,'trends_uint','itemid',30494),(30835,'events','itemid',30495),(30836,'history','itemid',30495),(30837,'history_log','itemid',30495),(30838,'history_str','itemid',30495),(30839,'history_text','itemid',30495),(30840,'history_uint','itemid',30495),(30841,'trends','itemid',30495),(30842,'trends_uint','itemid',30495),(30843,'events','itemid',30496),(30844,'history','itemid',30496),(30845,'history_log','itemid',30496),(30846,'history_str','itemid',30496),(30847,'history_text','itemid',30496),(30848,'history_uint','itemid',30496),(30849,'trends','itemid',30496),(30850,'trends_uint','itemid',30496),(30851,'events','itemid',30497),(30852,'history','itemid',30497),(30853,'history_log','itemid',30497),(30854,'history_str','itemid',30497),(30855,'history_text','itemid',30497),(30856,'history_uint','itemid',30497),(30857,'trends','itemid',30497),(30858,'trends_uint','itemid',30497),(30859,'events','itemid',30499),(30860,'history','itemid',30499),(30861,'history_log','itemid',30499),(30862,'history_str','itemid',30499),(30863,'history_text','itemid',30499),(30864,'history_uint','itemid',30499),(30865,'trends','itemid',30499),(30866,'trends_uint','itemid',30499),(30867,'events','itemid',30500),(30868,'history','itemid',30500),(30869,'history_log','itemid',30500),(30870,'history_str','itemid',30500),(30871,'history_text','itemid',30500),(30872,'history_uint','itemid',30500),(30873,'trends','itemid',30500),(30874,'trends_uint','itemid',30500),(30875,'events','itemid',30503),(30876,'history','itemid',30503),(30877,'history_log','itemid',30503),(30878,'history_str','itemid',30503),(30879,'history_text','itemid',30503),(30880,'history_uint','itemid',30503),(30881,'trends','itemid',30503),(30882,'trends_uint','itemid',30503),(30883,'events','itemid',30504),(30884,'history','itemid',30504),(30885,'history_log','itemid',30504),(30886,'history_str','itemid',30504),(30887,'history_text','itemid',30504),(30888,'history_uint','itemid',30504),(30889,'trends','itemid',30504),(30890,'trends_uint','itemid',30504),(30891,'events','itemid',30505),(30892,'history','itemid',30505),(30893,'history_log','itemid',30505),(30894,'history_str','itemid',30505),(30895,'history_text','itemid',30505),(30896,'history_uint','itemid',30505),(30897,'trends','itemid',30505),(30898,'trends_uint','itemid',30505),(30899,'events','itemid',30506),(30900,'history','itemid',30506),(30901,'history_log','itemid',30506),(30902,'history_str','itemid',30506),(30903,'history_text','itemid',30506),(30904,'history_uint','itemid',30506),(30905,'trends','itemid',30506),(30906,'trends_uint','itemid',30506),(30907,'events','itemid',30507),(30908,'history','itemid',30507),(30909,'history_log','itemid',30507),(30910,'history_str','itemid',30507),(30911,'history_text','itemid',30507),(30912,'history_uint','itemid',30507),(30913,'trends','itemid',30507),(30914,'trends_uint','itemid',30507),(30915,'events','itemid',30508),(30916,'history','itemid',30508),(30917,'history_log','itemid',30508),(30918,'history_str','itemid',30508),(30919,'history_text','itemid',30508),(30920,'history_uint','itemid',30508),(30921,'trends','itemid',30508),(30922,'trends_uint','itemid',30508),(30923,'events','itemid',30509),(30924,'history','itemid',30509),(30925,'history_log','itemid',30509),(30926,'history_str','itemid',30509),(30927,'history_text','itemid',30509),(30928,'history_uint','itemid',30509),(30929,'trends','itemid',30509),(30930,'trends_uint','itemid',30509),(30931,'events','itemid',30510),(30932,'history','itemid',30510),(30933,'history_log','itemid',30510),(30934,'history_str','itemid',30510),(30935,'history_text','itemid',30510),(30936,'history_uint','itemid',30510),(30937,'trends','itemid',30510),(30938,'trends_uint','itemid',30510),(30939,'events','itemid',30512),(30940,'history','itemid',30512),(30941,'history_log','itemid',30512),(30942,'history_str','itemid',30512),(30943,'history_text','itemid',30512),(30944,'history_uint','itemid',30512),(30945,'trends','itemid',30512),(30946,'trends_uint','itemid',30512),(30947,'events','itemid',30513),(30948,'history','itemid',30513),(30949,'history_log','itemid',30513),(30950,'history_str','itemid',30513),(30951,'history_text','itemid',30513),(30952,'history_uint','itemid',30513),(30953,'trends','itemid',30513),(30954,'trends_uint','itemid',30513),(30955,'events','itemid',30514),(30956,'history','itemid',30514),(30957,'history_log','itemid',30514),(30958,'history_str','itemid',30514),(30959,'history_text','itemid',30514),(30960,'history_uint','itemid',30514),(30961,'trends','itemid',30514),(30962,'trends_uint','itemid',30514),(30963,'events','itemid',30515),(30964,'history','itemid',30515),(30965,'history_log','itemid',30515),(30966,'history_str','itemid',30515),(30967,'history_text','itemid',30515),(30968,'history_uint','itemid',30515),(30969,'trends','itemid',30515),(30970,'trends_uint','itemid',30515),(30971,'events','itemid',30516),(30972,'history','itemid',30516),(30973,'history_log','itemid',30516),(30974,'history_str','itemid',30516),(30975,'history_text','itemid',30516),(30976,'history_uint','itemid',30516),(30977,'trends','itemid',30516),(30978,'trends_uint','itemid',30516),(30979,'events','itemid',30517),(30980,'history','itemid',30517),(30981,'history_log','itemid',30517),(30982,'history_str','itemid',30517),(30983,'history_text','itemid',30517),(30984,'history_uint','itemid',30517),(30985,'trends','itemid',30517),(30986,'trends_uint','itemid',30517),(30987,'events','itemid',30518),(30988,'history','itemid',30518),(30989,'history_log','itemid',30518),(30990,'history_str','itemid',30518),(30991,'history_text','itemid',30518),(30992,'history_uint','itemid',30518),(30993,'trends','itemid',30518),(30994,'trends_uint','itemid',30518),(30995,'events','itemid',30519),(30996,'history','itemid',30519),(30997,'history_log','itemid',30519),(30998,'history_str','itemid',30519),(30999,'history_text','itemid',30519),(31000,'history_uint','itemid',30519),(31001,'trends','itemid',30519),(31002,'trends_uint','itemid',30519),(31003,'events','itemid',30637),(31004,'history','itemid',30637),(31005,'history_log','itemid',30637),(31006,'history_str','itemid',30637),(31007,'history_text','itemid',30637),(31008,'history_uint','itemid',30637),(31009,'trends','itemid',30637),(31010,'trends_uint','itemid',30637),(31011,'events','itemid',30638),(31012,'history','itemid',30638),(31013,'history_log','itemid',30638),(31014,'history_str','itemid',30638),(31015,'history_text','itemid',30638),(31016,'history_uint','itemid',30638),(31017,'trends','itemid',30638),(31018,'trends_uint','itemid',30638),(31019,'events','itemid',30639),(31020,'history','itemid',30639),(31021,'history_log','itemid',30639),(31022,'history_str','itemid',30639),(31023,'history_text','itemid',30639),(31024,'history_uint','itemid',30639),(31025,'trends','itemid',30639),(31026,'trends_uint','itemid',30639),(31027,'events','itemid',30640),(31028,'history','itemid',30640),(31029,'history_log','itemid',30640),(31030,'history_str','itemid',30640),(31031,'history_text','itemid',30640),(31032,'history_uint','itemid',30640),(31033,'trends','itemid',30640),(31034,'trends_uint','itemid',30640),(31035,'events','itemid',30641),(31036,'history','itemid',30641),(31037,'history_log','itemid',30641),(31038,'history_str','itemid',30641),(31039,'history_text','itemid',30641),(31040,'history_uint','itemid',30641),(31041,'trends','itemid',30641),(31042,'trends_uint','itemid',30641),(31043,'events','itemid',30642),(31044,'history','itemid',30642),(31045,'history_log','itemid',30642),(31046,'history_str','itemid',30642),(31047,'history_text','itemid',30642),(31048,'history_uint','itemid',30642),(31049,'trends','itemid',30642),(31050,'trends_uint','itemid',30642),(31051,'events','itemid',30643),(31052,'history','itemid',30643),(31053,'history_log','itemid',30643),(31054,'history_str','itemid',30643),(31055,'history_text','itemid',30643),(31056,'history_uint','itemid',30643),(31057,'trends','itemid',30643),(31058,'trends_uint','itemid',30643),(31059,'events','itemid',30644),(31060,'history','itemid',30644),(31061,'history_log','itemid',30644),(31062,'history_str','itemid',30644),(31063,'history_text','itemid',30644),(31064,'history_uint','itemid',30644),(31065,'trends','itemid',30644),(31066,'trends_uint','itemid',30644),(31067,'events','itemid',30645),(31068,'history','itemid',30645),(31069,'history_log','itemid',30645),(31070,'history_str','itemid',30645),(31071,'history_text','itemid',30645),(31072,'history_uint','itemid',30645),(31073,'trends','itemid',30645),(31074,'trends_uint','itemid',30645),(31075,'events','itemid',30646),(31076,'history','itemid',30646),(31077,'history_log','itemid',30646),(31078,'history_str','itemid',30646),(31079,'history_text','itemid',30646),(31080,'history_uint','itemid',30646),(31081,'trends','itemid',30646),(31082,'trends_uint','itemid',30646),(31083,'events','itemid',30647),(31084,'history','itemid',30647),(31085,'history_log','itemid',30647),(31086,'history_str','itemid',30647),(31087,'history_text','itemid',30647),(31088,'history_uint','itemid',30647),(31089,'trends','itemid',30647),(31090,'trends_uint','itemid',30647),(31091,'events','itemid',30648),(31092,'history','itemid',30648),(31093,'history_log','itemid',30648),(31094,'history_str','itemid',30648),(31095,'history_text','itemid',30648),(31096,'history_uint','itemid',30648),(31097,'trends','itemid',30648),(31098,'trends_uint','itemid',30648),(31099,'events','itemid',30649),(31100,'history','itemid',30649),(31101,'history_log','itemid',30649),(31102,'history_str','itemid',30649),(31103,'history_text','itemid',30649),(31104,'history_uint','itemid',30649),(31105,'trends','itemid',30649),(31106,'trends_uint','itemid',30649),(31107,'events','itemid',30650),(31108,'history','itemid',30650),(31109,'history_log','itemid',30650),(31110,'history_str','itemid',30650),(31111,'history_text','itemid',30650),(31112,'history_uint','itemid',30650),(31113,'trends','itemid',30650),(31114,'trends_uint','itemid',30650),(31115,'events','itemid',30651),(31116,'history','itemid',30651),(31117,'history_log','itemid',30651),(31118,'history_str','itemid',30651),(31119,'history_text','itemid',30651),(31120,'history_uint','itemid',30651),(31121,'trends','itemid',30651),(31122,'trends_uint','itemid',30651),(31123,'events','itemid',30652),(31124,'history','itemid',30652),(31125,'history_log','itemid',30652),(31126,'history_str','itemid',30652),(31127,'history_text','itemid',30652),(31128,'history_uint','itemid',30652),(31129,'trends','itemid',30652),(31130,'trends_uint','itemid',30652),(31131,'events','itemid',30653),(31132,'history','itemid',30653),(31133,'history_log','itemid',30653),(31134,'history_str','itemid',30653),(31135,'history_text','itemid',30653),(31136,'history_uint','itemid',30653),(31137,'trends','itemid',30653),(31138,'trends_uint','itemid',30653),(31139,'events','itemid',30655),(31140,'history','itemid',30655),(31141,'history_log','itemid',30655),(31142,'history_str','itemid',30655),(31143,'history_text','itemid',30655),(31144,'history_uint','itemid',30655),(31145,'trends','itemid',30655),(31146,'trends_uint','itemid',30655),(31147,'events','itemid',30656),(31148,'history','itemid',30656),(31149,'history_log','itemid',30656),(31150,'history_str','itemid',30656),(31151,'history_text','itemid',30656),(31152,'history_uint','itemid',30656),(31153,'trends','itemid',30656),(31154,'trends_uint','itemid',30656),(31155,'events','itemid',30657),(31156,'history','itemid',30657),(31157,'history_log','itemid',30657),(31158,'history_str','itemid',30657),(31159,'history_text','itemid',30657),(31160,'history_uint','itemid',30657),(31161,'trends','itemid',30657),(31162,'trends_uint','itemid',30657),(31163,'events','itemid',30658),(31164,'history','itemid',30658),(31165,'history_log','itemid',30658),(31166,'history_str','itemid',30658),(31167,'history_text','itemid',30658),(31168,'history_uint','itemid',30658),(31169,'trends','itemid',30658),(31170,'trends_uint','itemid',30658),(31171,'events','itemid',30659),(31172,'history','itemid',30659),(31173,'history_log','itemid',30659),(31174,'history_str','itemid',30659),(31175,'history_text','itemid',30659),(31176,'history_uint','itemid',30659),(31177,'trends','itemid',30659),(31178,'trends_uint','itemid',30659),(31179,'events','itemid',30660),(31180,'history','itemid',30660),(31181,'history_log','itemid',30660),(31182,'history_str','itemid',30660),(31183,'history_text','itemid',30660),(31184,'history_uint','itemid',30660),(31185,'trends','itemid',30660),(31186,'trends_uint','itemid',30660),(31187,'events','itemid',30661),(31188,'history','itemid',30661),(31189,'history_log','itemid',30661),(31190,'history_str','itemid',30661),(31191,'history_text','itemid',30661),(31192,'history_uint','itemid',30661),(31193,'trends','itemid',30661),(31194,'trends_uint','itemid',30661),(31195,'events','itemid',30662),(31196,'history','itemid',30662),(31197,'history_log','itemid',30662),(31198,'history_str','itemid',30662),(31199,'history_text','itemid',30662),(31200,'history_uint','itemid',30662),(31201,'trends','itemid',30662),(31202,'trends_uint','itemid',30662),(31203,'events','itemid',30663),(31204,'history','itemid',30663),(31205,'history_log','itemid',30663),(31206,'history_str','itemid',30663),(31207,'history_text','itemid',30663),(31208,'history_uint','itemid',30663),(31209,'trends','itemid',30663),(31210,'trends_uint','itemid',30663),(31211,'events','itemid',30664),(31212,'history','itemid',30664),(31213,'history_log','itemid',30664),(31214,'history_str','itemid',30664),(31215,'history_text','itemid',30664),(31216,'history_uint','itemid',30664),(31217,'trends','itemid',30664),(31218,'trends_uint','itemid',30664),(31219,'events','itemid',30665),(31220,'history','itemid',30665),(31221,'history_log','itemid',30665),(31222,'history_str','itemid',30665),(31223,'history_text','itemid',30665),(31224,'history_uint','itemid',30665),(31225,'trends','itemid',30665),(31226,'trends_uint','itemid',30665),(31227,'events','itemid',30666),(31228,'history','itemid',30666),(31229,'history_log','itemid',30666),(31230,'history_str','itemid',30666),(31231,'history_text','itemid',30666),(31232,'history_uint','itemid',30666),(31233,'trends','itemid',30666),(31234,'trends_uint','itemid',30666),(31235,'events','itemid',30667),(31236,'history','itemid',30667),(31237,'history_log','itemid',30667),(31238,'history_str','itemid',30667),(31239,'history_text','itemid',30667),(31240,'history_uint','itemid',30667),(31241,'trends','itemid',30667),(31242,'trends_uint','itemid',30667),(31243,'events','itemid',30668),(31244,'history','itemid',30668),(31245,'history_log','itemid',30668),(31246,'history_str','itemid',30668),(31247,'history_text','itemid',30668),(31248,'history_uint','itemid',30668),(31249,'trends','itemid',30668),(31250,'trends_uint','itemid',30668),(31251,'events','itemid',30669),(31252,'history','itemid',30669),(31253,'history_log','itemid',30669),(31254,'history_str','itemid',30669),(31255,'history_text','itemid',30669),(31256,'history_uint','itemid',30669),(31257,'trends','itemid',30669),(31258,'trends_uint','itemid',30669),(31259,'events','itemid',30670),(31260,'history','itemid',30670),(31261,'history_log','itemid',30670),(31262,'history_str','itemid',30670),(31263,'history_text','itemid',30670),(31264,'history_uint','itemid',30670),(31265,'trends','itemid',30670),(31266,'trends_uint','itemid',30670),(31267,'events','itemid',30671),(31268,'history','itemid',30671),(31269,'history_log','itemid',30671),(31270,'history_str','itemid',30671),(31271,'history_text','itemid',30671),(31272,'history_uint','itemid',30671),(31273,'trends','itemid',30671),(31274,'trends_uint','itemid',30671),(31275,'events','itemid',30672),(31276,'history','itemid',30672),(31277,'history_log','itemid',30672),(31278,'history_str','itemid',30672),(31279,'history_text','itemid',30672),(31280,'history_uint','itemid',30672),(31281,'trends','itemid',30672),(31282,'trends_uint','itemid',30672),(31283,'events','itemid',30676),(31284,'history','itemid',30676),(31285,'history_log','itemid',30676),(31286,'history_str','itemid',30676),(31287,'history_text','itemid',30676),(31288,'history_uint','itemid',30676),(31289,'trends','itemid',30676),(31290,'trends_uint','itemid',30676),(31291,'events','itemid',30677),(31292,'history','itemid',30677),(31293,'history_log','itemid',30677),(31294,'history_str','itemid',30677),(31295,'history_text','itemid',30677),(31296,'history_uint','itemid',30677),(31297,'trends','itemid',30677),(31298,'trends_uint','itemid',30677),(31299,'events','itemid',31055),(31300,'history','itemid',31055),(31301,'history_log','itemid',31055),(31302,'history_str','itemid',31055),(31303,'history_text','itemid',31055),(31304,'history_uint','itemid',31055),(31305,'trends','itemid',31055),(31306,'trends_uint','itemid',31055),(31307,'events','itemid',31056),(31308,'history','itemid',31056),(31309,'history_log','itemid',31056),(31310,'history_str','itemid',31056),(31311,'history_text','itemid',31056),(31312,'history_uint','itemid',31056),(31313,'trends','itemid',31056),(31314,'trends_uint','itemid',31056),(31315,'events','itemid',31057),(31316,'history','itemid',31057),(31317,'history_log','itemid',31057),(31318,'history_str','itemid',31057),(31319,'history_text','itemid',31057),(31320,'history_uint','itemid',31057),(31321,'trends','itemid',31057),(31322,'trends_uint','itemid',31057),(31323,'events','itemid',31058),(31324,'history','itemid',31058),(31325,'history_log','itemid',31058),(31326,'history_str','itemid',31058),(31327,'history_text','itemid',31058),(31328,'history_uint','itemid',31058),(31329,'trends','itemid',31058),(31330,'trends_uint','itemid',31058),(31331,'events','itemid',31059),(31332,'history','itemid',31059),(31333,'history_log','itemid',31059),(31334,'history_str','itemid',31059),(31335,'history_text','itemid',31059),(31336,'history_uint','itemid',31059),(31337,'trends','itemid',31059),(31338,'trends_uint','itemid',31059),(31339,'events','itemid',31060),(31340,'history','itemid',31060),(31341,'history_log','itemid',31060),(31342,'history_str','itemid',31060),(31343,'history_text','itemid',31060),(31344,'history_uint','itemid',31060),(31345,'trends','itemid',31060),(31346,'trends_uint','itemid',31060),(31347,'events','itemid',31061),(31348,'history','itemid',31061),(31349,'history_log','itemid',31061),(31350,'history_str','itemid',31061),(31351,'history_text','itemid',31061),(31352,'history_uint','itemid',31061),(31353,'trends','itemid',31061),(31354,'trends_uint','itemid',31061),(31355,'events','itemid',31062),(31356,'history','itemid',31062),(31357,'history_log','itemid',31062),(31358,'history_str','itemid',31062),(31359,'history_text','itemid',31062),(31360,'history_uint','itemid',31062),(31361,'trends','itemid',31062),(31362,'trends_uint','itemid',31062),(31363,'events','itemid',31063),(31364,'history','itemid',31063),(31365,'history_log','itemid',31063),(31366,'history_str','itemid',31063),(31367,'history_text','itemid',31063),(31368,'history_uint','itemid',31063),(31369,'trends','itemid',31063),(31370,'trends_uint','itemid',31063),(31371,'events','itemid',31064),(31372,'history','itemid',31064),(31373,'history_log','itemid',31064),(31374,'history_str','itemid',31064),(31375,'history_text','itemid',31064),(31376,'history_uint','itemid',31064),(31377,'trends','itemid',31064),(31378,'trends_uint','itemid',31064),(31379,'events','itemid',31065),(31380,'history','itemid',31065),(31381,'history_log','itemid',31065),(31382,'history_str','itemid',31065),(31383,'history_text','itemid',31065),(31384,'history_uint','itemid',31065),(31385,'trends','itemid',31065),(31386,'trends_uint','itemid',31065),(31387,'events','itemid',31066),(31388,'history','itemid',31066),(31389,'history_log','itemid',31066),(31390,'history_str','itemid',31066),(31391,'history_text','itemid',31066),(31392,'history_uint','itemid',31066),(31393,'trends','itemid',31066),(31394,'trends_uint','itemid',31066),(31395,'events','itemid',31067),(31396,'history','itemid',31067),(31397,'history_log','itemid',31067),(31398,'history_str','itemid',31067),(31399,'history_text','itemid',31067),(31400,'history_uint','itemid',31067),(31401,'trends','itemid',31067),(31402,'trends_uint','itemid',31067),(31403,'events','itemid',31068),(31404,'history','itemid',31068),(31405,'history_log','itemid',31068),(31406,'history_str','itemid',31068),(31407,'history_text','itemid',31068),(31408,'history_uint','itemid',31068),(31409,'trends','itemid',31068),(31410,'trends_uint','itemid',31068),(31411,'events','itemid',31069),(31412,'history','itemid',31069),(31413,'history_log','itemid',31069),(31414,'history_str','itemid',31069),(31415,'history_text','itemid',31069),(31416,'history_uint','itemid',31069),(31417,'trends','itemid',31069),(31418,'trends_uint','itemid',31069),(31419,'events','itemid',31070),(31420,'history','itemid',31070),(31421,'history_log','itemid',31070),(31422,'history_str','itemid',31070),(31423,'history_text','itemid',31070),(31424,'history_uint','itemid',31070),(31425,'trends','itemid',31070),(31426,'trends_uint','itemid',31070),(31427,'events','itemid',31071),(31428,'history','itemid',31071),(31429,'history_log','itemid',31071),(31430,'history_str','itemid',31071),(31431,'history_text','itemid',31071),(31432,'history_uint','itemid',31071),(31433,'trends','itemid',31071),(31434,'trends_uint','itemid',31071),(31435,'events','itemid',31072),(31436,'history','itemid',31072),(31437,'history_log','itemid',31072),(31438,'history_str','itemid',31072),(31439,'history_text','itemid',31072),(31440,'history_uint','itemid',31072),(31441,'trends','itemid',31072),(31442,'trends_uint','itemid',31072),(31443,'events','itemid',31073),(31444,'history','itemid',31073),(31445,'history_log','itemid',31073),(31446,'history_str','itemid',31073),(31447,'history_text','itemid',31073),(31448,'history_uint','itemid',31073),(31449,'trends','itemid',31073),(31450,'trends_uint','itemid',31073),(31451,'events','itemid',31074),(31452,'history','itemid',31074),(31453,'history_log','itemid',31074),(31454,'history_str','itemid',31074),(31455,'history_text','itemid',31074),(31456,'history_uint','itemid',31074),(31457,'trends','itemid',31074),(31458,'trends_uint','itemid',31074),(31459,'events','itemid',31075),(31460,'history','itemid',31075),(31461,'history_log','itemid',31075),(31462,'history_str','itemid',31075),(31463,'history_text','itemid',31075),(31464,'history_uint','itemid',31075),(31465,'trends','itemid',31075),(31466,'trends_uint','itemid',31075),(31467,'events','itemid',31076),(31468,'history','itemid',31076),(31469,'history_log','itemid',31076),(31470,'history_str','itemid',31076),(31471,'history_text','itemid',31076),(31472,'history_uint','itemid',31076),(31473,'trends','itemid',31076),(31474,'trends_uint','itemid',31076),(31475,'events','itemid',31077),(31476,'history','itemid',31077),(31477,'history_log','itemid',31077),(31478,'history_str','itemid',31077),(31479,'history_text','itemid',31077),(31480,'history_uint','itemid',31077),(31481,'trends','itemid',31077),(31482,'trends_uint','itemid',31077),(31483,'events','itemid',31078),(31484,'history','itemid',31078),(31485,'history_log','itemid',31078),(31486,'history_str','itemid',31078),(31487,'history_text','itemid',31078),(31488,'history_uint','itemid',31078),(31489,'trends','itemid',31078),(31490,'trends_uint','itemid',31078),(31491,'events','itemid',31079),(31492,'history','itemid',31079),(31493,'history_log','itemid',31079),(31494,'history_str','itemid',31079),(31495,'history_text','itemid',31079),(31496,'history_uint','itemid',31079),(31497,'trends','itemid',31079),(31498,'trends_uint','itemid',31079),(31499,'events','itemid',31080),(31500,'history','itemid',31080),(31501,'history_log','itemid',31080),(31502,'history_str','itemid',31080),(31503,'history_text','itemid',31080),(31504,'history_uint','itemid',31080),(31505,'trends','itemid',31080),(31506,'trends_uint','itemid',31080),(31507,'events','itemid',31081),(31508,'history','itemid',31081),(31509,'history_log','itemid',31081),(31510,'history_str','itemid',31081),(31511,'history_text','itemid',31081),(31512,'history_uint','itemid',31081),(31513,'trends','itemid',31081),(31514,'trends_uint','itemid',31081),(31515,'events','itemid',31082),(31516,'history','itemid',31082),(31517,'history_log','itemid',31082),(31518,'history_str','itemid',31082),(31519,'history_text','itemid',31082),(31520,'history_uint','itemid',31082),(31521,'trends','itemid',31082),(31522,'trends_uint','itemid',31082),(31523,'events','itemid',31083),(31524,'history','itemid',31083),(31525,'history_log','itemid',31083),(31526,'history_str','itemid',31083),(31527,'history_text','itemid',31083),(31528,'history_uint','itemid',31083),(31529,'trends','itemid',31083),(31530,'trends_uint','itemid',31083),(31531,'events','itemid',31084),(31532,'history','itemid',31084),(31533,'history_log','itemid',31084),(31534,'history_str','itemid',31084),(31535,'history_text','itemid',31084),(31536,'history_uint','itemid',31084),(31537,'trends','itemid',31084),(31538,'trends_uint','itemid',31084),(31539,'events','itemid',31085),(31540,'history','itemid',31085),(31541,'history_log','itemid',31085),(31542,'history_str','itemid',31085),(31543,'history_text','itemid',31085),(31544,'history_uint','itemid',31085),(31545,'trends','itemid',31085),(31546,'trends_uint','itemid',31085),(31547,'events','itemid',31086),(31548,'history','itemid',31086),(31549,'history_log','itemid',31086),(31550,'history_str','itemid',31086),(31551,'history_text','itemid',31086),(31552,'history_uint','itemid',31086),(31553,'trends','itemid',31086),(31554,'trends_uint','itemid',31086),(31555,'events','itemid',31087),(31556,'history','itemid',31087),(31557,'history_log','itemid',31087),(31558,'history_str','itemid',31087),(31559,'history_text','itemid',31087),(31560,'history_uint','itemid',31087),(31561,'trends','itemid',31087),(31562,'trends_uint','itemid',31087),(31563,'events','itemid',31088),(31564,'history','itemid',31088),(31565,'history_log','itemid',31088),(31566,'history_str','itemid',31088),(31567,'history_text','itemid',31088),(31568,'history_uint','itemid',31088),(31569,'trends','itemid',31088),(31570,'trends_uint','itemid',31088),(31571,'events','itemid',31089),(31572,'history','itemid',31089),(31573,'history_log','itemid',31089),(31574,'history_str','itemid',31089),(31575,'history_text','itemid',31089),(31576,'history_uint','itemid',31089),(31577,'trends','itemid',31089),(31578,'trends_uint','itemid',31089),(31579,'events','itemid',31090),(31580,'history','itemid',31090),(31581,'history_log','itemid',31090),(31582,'history_str','itemid',31090),(31583,'history_text','itemid',31090),(31584,'history_uint','itemid',31090),(31585,'trends','itemid',31090),(31586,'trends_uint','itemid',31090),(31587,'events','itemid',31091),(31588,'history','itemid',31091),(31589,'history_log','itemid',31091),(31590,'history_str','itemid',31091),(31591,'history_text','itemid',31091),(31592,'history_uint','itemid',31091),(31593,'trends','itemid',31091),(31594,'trends_uint','itemid',31091),(31595,'events','itemid',31092),(31596,'history','itemid',31092),(31597,'history_log','itemid',31092),(31598,'history_str','itemid',31092),(31599,'history_text','itemid',31092),(31600,'history_uint','itemid',31092),(31601,'trends','itemid',31092),(31602,'trends_uint','itemid',31092),(31603,'events','itemid',31093),(31604,'history','itemid',31093),(31605,'history_log','itemid',31093),(31606,'history_str','itemid',31093),(31607,'history_text','itemid',31093),(31608,'history_uint','itemid',31093),(31609,'trends','itemid',31093),(31610,'trends_uint','itemid',31093),(31611,'events','itemid',31094),(31612,'history','itemid',31094),(31613,'history_log','itemid',31094),(31614,'history_str','itemid',31094),(31615,'history_text','itemid',31094),(31616,'history_uint','itemid',31094),(31617,'trends','itemid',31094),(31618,'trends_uint','itemid',31094),(31619,'events','itemid',31095),(31620,'history','itemid',31095),(31621,'history_log','itemid',31095),(31622,'history_str','itemid',31095),(31623,'history_text','itemid',31095),(31624,'history_uint','itemid',31095),(31625,'trends','itemid',31095),(31626,'trends_uint','itemid',31095),(31627,'events','itemid',31096),(31628,'history','itemid',31096),(31629,'history_log','itemid',31096),(31630,'history_str','itemid',31096),(31631,'history_text','itemid',31096),(31632,'history_uint','itemid',31096),(31633,'trends','itemid',31096),(31634,'trends_uint','itemid',31096),(31635,'events','itemid',31097),(31636,'history','itemid',31097),(31637,'history_log','itemid',31097),(31638,'history_str','itemid',31097),(31639,'history_text','itemid',31097),(31640,'history_uint','itemid',31097),(31641,'trends','itemid',31097),(31642,'trends_uint','itemid',31097),(31643,'events','itemid',31098),(31644,'history','itemid',31098),(31645,'history_log','itemid',31098),(31646,'history_str','itemid',31098),(31647,'history_text','itemid',31098),(31648,'history_uint','itemid',31098),(31649,'trends','itemid',31098),(31650,'trends_uint','itemid',31098),(31651,'events','itemid',31099),(31652,'history','itemid',31099),(31653,'history_log','itemid',31099),(31654,'history_str','itemid',31099),(31655,'history_text','itemid',31099),(31656,'history_uint','itemid',31099),(31657,'trends','itemid',31099),(31658,'trends_uint','itemid',31099),(31659,'events','itemid',31100),(31660,'history','itemid',31100),(31661,'history_log','itemid',31100),(31662,'history_str','itemid',31100),(31663,'history_text','itemid',31100),(31664,'history_uint','itemid',31100),(31665,'trends','itemid',31100),(31666,'trends_uint','itemid',31100),(31667,'events','itemid',31101),(31668,'history','itemid',31101),(31669,'history_log','itemid',31101),(31670,'history_str','itemid',31101),(31671,'history_text','itemid',31101),(31672,'history_uint','itemid',31101),(31673,'trends','itemid',31101),(31674,'trends_uint','itemid',31101),(31675,'events','itemid',31102),(31676,'history','itemid',31102),(31677,'history_log','itemid',31102),(31678,'history_str','itemid',31102),(31679,'history_text','itemid',31102),(31680,'history_uint','itemid',31102),(31681,'trends','itemid',31102),(31682,'trends_uint','itemid',31102),(31683,'events','itemid',31103),(31684,'history','itemid',31103),(31685,'history_log','itemid',31103),(31686,'history_str','itemid',31103),(31687,'history_text','itemid',31103),(31688,'history_uint','itemid',31103),(31689,'trends','itemid',31103),(31690,'trends_uint','itemid',31103),(31691,'events','itemid',31104),(31692,'history','itemid',31104),(31693,'history_log','itemid',31104),(31694,'history_str','itemid',31104),(31695,'history_text','itemid',31104),(31696,'history_uint','itemid',31104),(31697,'trends','itemid',31104),(31698,'trends_uint','itemid',31104),(31699,'events','itemid',31105),(31700,'history','itemid',31105),(31701,'history_log','itemid',31105),(31702,'history_str','itemid',31105),(31703,'history_text','itemid',31105),(31704,'history_uint','itemid',31105),(31705,'trends','itemid',31105),(31706,'trends_uint','itemid',31105),(31707,'events','itemid',31106),(31708,'history','itemid',31106),(31709,'history_log','itemid',31106),(31710,'history_str','itemid',31106),(31711,'history_text','itemid',31106),(31712,'history_uint','itemid',31106),(31713,'trends','itemid',31106),(31714,'trends_uint','itemid',31106),(31715,'events','itemid',31107),(31716,'history','itemid',31107),(31717,'history_log','itemid',31107),(31718,'history_str','itemid',31107),(31719,'history_text','itemid',31107),(31720,'history_uint','itemid',31107),(31721,'trends','itemid',31107),(31722,'trends_uint','itemid',31107),(31723,'events','itemid',31108),(31724,'history','itemid',31108),(31725,'history_log','itemid',31108),(31726,'history_str','itemid',31108),(31727,'history_text','itemid',31108),(31728,'history_uint','itemid',31108),(31729,'trends','itemid',31108),(31730,'trends_uint','itemid',31108),(31731,'events','itemid',31109),(31732,'history','itemid',31109),(31733,'history_log','itemid',31109),(31734,'history_str','itemid',31109),(31735,'history_text','itemid',31109),(31736,'history_uint','itemid',31109),(31737,'trends','itemid',31109),(31738,'trends_uint','itemid',31109),(31739,'events','itemid',31110),(31740,'history','itemid',31110),(31741,'history_log','itemid',31110),(31742,'history_str','itemid',31110),(31743,'history_text','itemid',31110),(31744,'history_uint','itemid',31110),(31745,'trends','itemid',31110),(31746,'trends_uint','itemid',31110),(31747,'events','itemid',31111),(31748,'history','itemid',31111),(31749,'history_log','itemid',31111),(31750,'history_str','itemid',31111),(31751,'history_text','itemid',31111),(31752,'history_uint','itemid',31111),(31753,'trends','itemid',31111),(31754,'trends_uint','itemid',31111),(31755,'events','itemid',31112),(31756,'history','itemid',31112),(31757,'history_log','itemid',31112),(31758,'history_str','itemid',31112),(31759,'history_text','itemid',31112),(31760,'history_uint','itemid',31112),(31761,'trends','itemid',31112),(31762,'trends_uint','itemid',31112),(31763,'events','itemid',31113),(31764,'history','itemid',31113),(31765,'history_log','itemid',31113),(31766,'history_str','itemid',31113),(31767,'history_text','itemid',31113),(31768,'history_uint','itemid',31113),(31769,'trends','itemid',31113),(31770,'trends_uint','itemid',31113),(31771,'events','itemid',31114),(31772,'history','itemid',31114),(31773,'history_log','itemid',31114),(31774,'history_str','itemid',31114),(31775,'history_text','itemid',31114),(31776,'history_uint','itemid',31114),(31777,'trends','itemid',31114),(31778,'trends_uint','itemid',31114),(31779,'events','itemid',31115),(31780,'history','itemid',31115),(31781,'history_log','itemid',31115),(31782,'history_str','itemid',31115),(31783,'history_text','itemid',31115),(31784,'history_uint','itemid',31115),(31785,'trends','itemid',31115),(31786,'trends_uint','itemid',31115),(31787,'events','itemid',31116),(31788,'history','itemid',31116),(31789,'history_log','itemid',31116),(31790,'history_str','itemid',31116),(31791,'history_text','itemid',31116),(31792,'history_uint','itemid',31116),(31793,'trends','itemid',31116),(31794,'trends_uint','itemid',31116),(31795,'events','itemid',31117),(31796,'history','itemid',31117),(31797,'history_log','itemid',31117),(31798,'history_str','itemid',31117),(31799,'history_text','itemid',31117),(31800,'history_uint','itemid',31117),(31801,'trends','itemid',31117),(31802,'trends_uint','itemid',31117),(31803,'events','itemid',31118),(31804,'history','itemid',31118),(31805,'history_log','itemid',31118),(31806,'history_str','itemid',31118),(31807,'history_text','itemid',31118),(31808,'history_uint','itemid',31118),(31809,'trends','itemid',31118),(31810,'trends_uint','itemid',31118),(31811,'events','itemid',31119),(31812,'history','itemid',31119),(31813,'history_log','itemid',31119),(31814,'history_str','itemid',31119),(31815,'history_text','itemid',31119),(31816,'history_uint','itemid',31119),(31817,'trends','itemid',31119),(31818,'trends_uint','itemid',31119),(31819,'events','itemid',31120),(31820,'history','itemid',31120),(31821,'history_log','itemid',31120),(31822,'history_str','itemid',31120),(31823,'history_text','itemid',31120),(31824,'history_uint','itemid',31120),(31825,'trends','itemid',31120),(31826,'trends_uint','itemid',31120),(31827,'events','itemid',31121),(31828,'history','itemid',31121),(31829,'history_log','itemid',31121),(31830,'history_str','itemid',31121),(31831,'history_text','itemid',31121),(31832,'history_uint','itemid',31121),(31833,'trends','itemid',31121),(31834,'trends_uint','itemid',31121),(31835,'events','itemid',31168),(31836,'history','itemid',31168),(31837,'history_log','itemid',31168),(31838,'history_str','itemid',31168),(31839,'history_text','itemid',31168),(31840,'history_uint','itemid',31168),(31841,'trends','itemid',31168),(31842,'trends_uint','itemid',31168),(31843,'events','itemid',31169),(31844,'history','itemid',31169),(31845,'history_log','itemid',31169),(31846,'history_str','itemid',31169),(31847,'history_text','itemid',31169),(31848,'history_uint','itemid',31169),(31849,'trends','itemid',31169),(31850,'trends_uint','itemid',31169),(31851,'events','itemid',31170),(31852,'history','itemid',31170),(31853,'history_log','itemid',31170),(31854,'history_str','itemid',31170),(31855,'history_text','itemid',31170),(31856,'history_uint','itemid',31170),(31857,'trends','itemid',31170),(31858,'trends_uint','itemid',31170),(31859,'events','itemid',31171),(31860,'history','itemid',31171),(31861,'history_log','itemid',31171),(31862,'history_str','itemid',31171),(31863,'history_text','itemid',31171),(31864,'history_uint','itemid',31171),(31865,'trends','itemid',31171),(31866,'trends_uint','itemid',31171),(31867,'events','itemid',31172),(31868,'history','itemid',31172),(31869,'history_log','itemid',31172),(31870,'history_str','itemid',31172),(31871,'history_text','itemid',31172),(31872,'history_uint','itemid',31172),(31873,'trends','itemid',31172),(31874,'trends_uint','itemid',31172),(31875,'events','itemid',31173),(31876,'history','itemid',31173),(31877,'history_log','itemid',31173),(31878,'history_str','itemid',31173),(31879,'history_text','itemid',31173),(31880,'history_uint','itemid',31173),(31881,'trends','itemid',31173),(31882,'trends_uint','itemid',31173),(31883,'events','itemid',31174),(31884,'history','itemid',31174),(31885,'history_log','itemid',31174),(31886,'history_str','itemid',31174),(31887,'history_text','itemid',31174),(31888,'history_uint','itemid',31174),(31889,'trends','itemid',31174),(31890,'trends_uint','itemid',31174),(31891,'events','itemid',31175),(31892,'history','itemid',31175),(31893,'history_log','itemid',31175),(31894,'history_str','itemid',31175),(31895,'history_text','itemid',31175),(31896,'history_uint','itemid',31175),(31897,'trends','itemid',31175),(31898,'trends_uint','itemid',31175),(31899,'events','itemid',31176),(31900,'history','itemid',31176),(31901,'history_log','itemid',31176),(31902,'history_str','itemid',31176),(31903,'history_text','itemid',31176),(31904,'history_uint','itemid',31176),(31905,'trends','itemid',31176),(31906,'trends_uint','itemid',31176),(31907,'events','itemid',31177),(31908,'history','itemid',31177),(31909,'history_log','itemid',31177),(31910,'history_str','itemid',31177),(31911,'history_text','itemid',31177),(31912,'history_uint','itemid',31177),(31913,'trends','itemid',31177),(31914,'trends_uint','itemid',31177),(31915,'events','itemid',31178),(31916,'history','itemid',31178),(31917,'history_log','itemid',31178),(31918,'history_str','itemid',31178),(31919,'history_text','itemid',31178),(31920,'history_uint','itemid',31178),(31921,'trends','itemid',31178),(31922,'trends_uint','itemid',31178),(31923,'events','itemid',31179),(31924,'history','itemid',31179),(31925,'history_log','itemid',31179),(31926,'history_str','itemid',31179),(31927,'history_text','itemid',31179),(31928,'history_uint','itemid',31179),(31929,'trends','itemid',31179),(31930,'trends_uint','itemid',31179),(31931,'events','itemid',31180),(31932,'history','itemid',31180),(31933,'history_log','itemid',31180),(31934,'history_str','itemid',31180),(31935,'history_text','itemid',31180),(31936,'history_uint','itemid',31180),(31937,'trends','itemid',31180),(31938,'trends_uint','itemid',31180),(31939,'events','itemid',31181),(31940,'history','itemid',31181),(31941,'history_log','itemid',31181),(31942,'history_str','itemid',31181),(31943,'history_text','itemid',31181),(31944,'history_uint','itemid',31181),(31945,'trends','itemid',31181),(31946,'trends_uint','itemid',31181),(31947,'events','itemid',31182),(31948,'history','itemid',31182),(31949,'history_log','itemid',31182),(31950,'history_str','itemid',31182),(31951,'history_text','itemid',31182),(31952,'history_uint','itemid',31182),(31953,'trends','itemid',31182),(31954,'trends_uint','itemid',31182),(31955,'events','itemid',31183),(31956,'history','itemid',31183),(31957,'history_log','itemid',31183),(31958,'history_str','itemid',31183),(31959,'history_text','itemid',31183),(31960,'history_uint','itemid',31183),(31961,'trends','itemid',31183),(31962,'trends_uint','itemid',31183),(31963,'events','itemid',31184),(31964,'history','itemid',31184),(31965,'history_log','itemid',31184),(31966,'history_str','itemid',31184),(31967,'history_text','itemid',31184),(31968,'history_uint','itemid',31184),(31969,'trends','itemid',31184),(31970,'trends_uint','itemid',31184),(31971,'events','itemid',31185),(31972,'history','itemid',31185),(31973,'history_log','itemid',31185),(31974,'history_str','itemid',31185),(31975,'history_text','itemid',31185),(31976,'history_uint','itemid',31185),(31977,'trends','itemid',31185),(31978,'trends_uint','itemid',31185),(31979,'events','itemid',31186),(31980,'history','itemid',31186),(31981,'history_log','itemid',31186),(31982,'history_str','itemid',31186),(31983,'history_text','itemid',31186),(31984,'history_uint','itemid',31186),(31985,'trends','itemid',31186),(31986,'trends_uint','itemid',31186),(31987,'events','itemid',31187),(31988,'history','itemid',31187),(31989,'history_log','itemid',31187),(31990,'history_str','itemid',31187),(31991,'history_text','itemid',31187),(31992,'history_uint','itemid',31187),(31993,'trends','itemid',31187),(31994,'trends_uint','itemid',31187),(31995,'events','itemid',31188),(31996,'history','itemid',31188),(31997,'history_log','itemid',31188),(31998,'history_str','itemid',31188),(31999,'history_text','itemid',31188),(32000,'history_uint','itemid',31188),(32001,'trends','itemid',31188),(32002,'trends_uint','itemid',31188),(32003,'events','itemid',31189),(32004,'history','itemid',31189),(32005,'history_log','itemid',31189),(32006,'history_str','itemid',31189),(32007,'history_text','itemid',31189),(32008,'history_uint','itemid',31189),(32009,'trends','itemid',31189),(32010,'trends_uint','itemid',31189),(32011,'events','itemid',31190),(32012,'history','itemid',31190),(32013,'history_log','itemid',31190),(32014,'history_str','itemid',31190),(32015,'history_text','itemid',31190),(32016,'history_uint','itemid',31190),(32017,'trends','itemid',31190),(32018,'trends_uint','itemid',31190),(32019,'events','itemid',31191),(32020,'history','itemid',31191),(32021,'history_log','itemid',31191),(32022,'history_str','itemid',31191),(32023,'history_text','itemid',31191),(32024,'history_uint','itemid',31191),(32025,'trends','itemid',31191),(32026,'trends_uint','itemid',31191),(32027,'events','itemid',31192),(32028,'history','itemid',31192),(32029,'history_log','itemid',31192),(32030,'history_str','itemid',31192),(32031,'history_text','itemid',31192),(32032,'history_uint','itemid',31192),(32033,'trends','itemid',31192),(32034,'trends_uint','itemid',31192),(32035,'events','itemid',31193),(32036,'history','itemid',31193),(32037,'history_log','itemid',31193),(32038,'history_str','itemid',31193),(32039,'history_text','itemid',31193),(32040,'history_uint','itemid',31193),(32041,'trends','itemid',31193),(32042,'trends_uint','itemid',31193),(32043,'events','itemid',31194),(32044,'history','itemid',31194),(32045,'history_log','itemid',31194),(32046,'history_str','itemid',31194),(32047,'history_text','itemid',31194),(32048,'history_uint','itemid',31194),(32049,'trends','itemid',31194),(32050,'trends_uint','itemid',31194),(32051,'events','itemid',31195),(32052,'history','itemid',31195),(32053,'history_log','itemid',31195),(32054,'history_str','itemid',31195),(32055,'history_text','itemid',31195),(32056,'history_uint','itemid',31195),(32057,'trends','itemid',31195),(32058,'trends_uint','itemid',31195),(32059,'events','itemid',31196),(32060,'history','itemid',31196),(32061,'history_log','itemid',31196),(32062,'history_str','itemid',31196),(32063,'history_text','itemid',31196),(32064,'history_uint','itemid',31196),(32065,'trends','itemid',31196),(32066,'trends_uint','itemid',31196),(32067,'events','itemid',31197),(32068,'history','itemid',31197),(32069,'history_log','itemid',31197),(32070,'history_str','itemid',31197),(32071,'history_text','itemid',31197),(32072,'history_uint','itemid',31197),(32073,'trends','itemid',31197),(32074,'trends_uint','itemid',31197),(32075,'events','itemid',31198),(32076,'history','itemid',31198),(32077,'history_log','itemid',31198),(32078,'history_str','itemid',31198),(32079,'history_text','itemid',31198),(32080,'history_uint','itemid',31198),(32081,'trends','itemid',31198),(32082,'trends_uint','itemid',31198),(32083,'events','itemid',31199),(32084,'history','itemid',31199),(32085,'history_log','itemid',31199),(32086,'history_str','itemid',31199),(32087,'history_text','itemid',31199),(32088,'history_uint','itemid',31199),(32089,'trends','itemid',31199),(32090,'trends_uint','itemid',31199),(32091,'events','itemid',31200),(32092,'history','itemid',31200),(32093,'history_log','itemid',31200),(32094,'history_str','itemid',31200),(32095,'history_text','itemid',31200),(32096,'history_uint','itemid',31200),(32097,'trends','itemid',31200),(32098,'trends_uint','itemid',31200),(32099,'events','itemid',31201),(32100,'history','itemid',31201),(32101,'history_log','itemid',31201),(32102,'history_str','itemid',31201),(32103,'history_text','itemid',31201),(32104,'history_uint','itemid',31201),(32105,'trends','itemid',31201),(32106,'trends_uint','itemid',31201),(32107,'events','itemid',31202),(32108,'history','itemid',31202),(32109,'history_log','itemid',31202),(32110,'history_str','itemid',31202),(32111,'history_text','itemid',31202),(32112,'history_uint','itemid',31202),(32113,'trends','itemid',31202),(32114,'trends_uint','itemid',31202),(32115,'events','itemid',31203),(32116,'history','itemid',31203),(32117,'history_log','itemid',31203),(32118,'history_str','itemid',31203),(32119,'history_text','itemid',31203),(32120,'history_uint','itemid',31203),(32121,'trends','itemid',31203),(32122,'trends_uint','itemid',31203),(32123,'events','itemid',31204),(32124,'history','itemid',31204),(32125,'history_log','itemid',31204),(32126,'history_str','itemid',31204),(32127,'history_text','itemid',31204),(32128,'history_uint','itemid',31204),(32129,'trends','itemid',31204),(32130,'trends_uint','itemid',31204),(32131,'events','itemid',31205),(32132,'history','itemid',31205),(32133,'history_log','itemid',31205),(32134,'history_str','itemid',31205),(32135,'history_text','itemid',31205),(32136,'history_uint','itemid',31205),(32137,'trends','itemid',31205),(32138,'trends_uint','itemid',31205),(32139,'events','itemid',31206),(32140,'history','itemid',31206),(32141,'history_log','itemid',31206),(32142,'history_str','itemid',31206),(32143,'history_text','itemid',31206),(32144,'history_uint','itemid',31206),(32145,'trends','itemid',31206),(32146,'trends_uint','itemid',31206),(32147,'events','itemid',31207),(32148,'history','itemid',31207),(32149,'history_log','itemid',31207),(32150,'history_str','itemid',31207),(32151,'history_text','itemid',31207),(32152,'history_uint','itemid',31207),(32153,'trends','itemid',31207),(32154,'trends_uint','itemid',31207),(32155,'events','itemid',31208),(32156,'history','itemid',31208),(32157,'history_log','itemid',31208),(32158,'history_str','itemid',31208),(32159,'history_text','itemid',31208),(32160,'history_uint','itemid',31208),(32161,'trends','itemid',31208),(32162,'trends_uint','itemid',31208),(32163,'events','itemid',31209),(32164,'history','itemid',31209),(32165,'history_log','itemid',31209),(32166,'history_str','itemid',31209),(32167,'history_text','itemid',31209),(32168,'history_uint','itemid',31209),(32169,'trends','itemid',31209),(32170,'trends_uint','itemid',31209),(32171,'events','itemid',31210),(32172,'history','itemid',31210),(32173,'history_log','itemid',31210),(32174,'history_str','itemid',31210),(32175,'history_text','itemid',31210),(32176,'history_uint','itemid',31210),(32177,'trends','itemid',31210),(32178,'trends_uint','itemid',31210),(32179,'events','itemid',31211),(32180,'history','itemid',31211),(32181,'history_log','itemid',31211),(32182,'history_str','itemid',31211),(32183,'history_text','itemid',31211),(32184,'history_uint','itemid',31211),(32185,'trends','itemid',31211),(32186,'trends_uint','itemid',31211),(32187,'events','itemid',31212),(32188,'history','itemid',31212),(32189,'history_log','itemid',31212),(32190,'history_str','itemid',31212),(32191,'history_text','itemid',31212),(32192,'history_uint','itemid',31212),(32193,'trends','itemid',31212),(32194,'trends_uint','itemid',31212),(32195,'events','itemid',31213),(32196,'history','itemid',31213),(32197,'history_log','itemid',31213),(32198,'history_str','itemid',31213),(32199,'history_text','itemid',31213),(32200,'history_uint','itemid',31213),(32201,'trends','itemid',31213),(32202,'trends_uint','itemid',31213),(32203,'events','itemid',31214),(32204,'history','itemid',31214),(32205,'history_log','itemid',31214),(32206,'history_str','itemid',31214),(32207,'history_text','itemid',31214),(32208,'history_uint','itemid',31214),(32209,'trends','itemid',31214),(32210,'trends_uint','itemid',31214),(32211,'events','itemid',31215),(32212,'history','itemid',31215),(32213,'history_log','itemid',31215),(32214,'history_str','itemid',31215),(32215,'history_text','itemid',31215),(32216,'history_uint','itemid',31215),(32217,'trends','itemid',31215),(32218,'trends_uint','itemid',31215),(32219,'events','itemid',31216),(32220,'history','itemid',31216),(32221,'history_log','itemid',31216),(32222,'history_str','itemid',31216),(32223,'history_text','itemid',31216),(32224,'history_uint','itemid',31216),(32225,'trends','itemid',31216),(32226,'trends_uint','itemid',31216),(32227,'events','itemid',31217),(32228,'history','itemid',31217),(32229,'history_log','itemid',31217),(32230,'history_str','itemid',31217),(32231,'history_text','itemid',31217),(32232,'history_uint','itemid',31217),(32233,'trends','itemid',31217),(32234,'trends_uint','itemid',31217),(32235,'events','itemid',31218),(32236,'history','itemid',31218),(32237,'history_log','itemid',31218),(32238,'history_str','itemid',31218),(32239,'history_text','itemid',31218),(32240,'history_uint','itemid',31218),(32241,'trends','itemid',31218),(32242,'trends_uint','itemid',31218),(32243,'events','itemid',31219),(32244,'history','itemid',31219),(32245,'history_log','itemid',31219),(32246,'history_str','itemid',31219),(32247,'history_text','itemid',31219),(32248,'history_uint','itemid',31219),(32249,'trends','itemid',31219),(32250,'trends_uint','itemid',31219),(32251,'events','itemid',31220),(32252,'history','itemid',31220),(32253,'history_log','itemid',31220),(32254,'history_str','itemid',31220),(32255,'history_text','itemid',31220),(32256,'history_uint','itemid',31220),(32257,'trends','itemid',31220),(32258,'trends_uint','itemid',31220),(32259,'events','itemid',31221),(32260,'history','itemid',31221),(32261,'history_log','itemid',31221),(32262,'history_str','itemid',31221),(32263,'history_text','itemid',31221),(32264,'history_uint','itemid',31221),(32265,'trends','itemid',31221),(32266,'trends_uint','itemid',31221),(32267,'events','itemid',31222),(32268,'history','itemid',31222),(32269,'history_log','itemid',31222),(32270,'history_str','itemid',31222),(32271,'history_text','itemid',31222),(32272,'history_uint','itemid',31222),(32273,'trends','itemid',31222),(32274,'trends_uint','itemid',31222),(32275,'events','itemid',31223),(32276,'history','itemid',31223),(32277,'history_log','itemid',31223),(32278,'history_str','itemid',31223),(32279,'history_text','itemid',31223),(32280,'history_uint','itemid',31223),(32281,'trends','itemid',31223),(32282,'trends_uint','itemid',31223),(32283,'events','itemid',31224),(32284,'history','itemid',31224),(32285,'history_log','itemid',31224),(32286,'history_str','itemid',31224),(32287,'history_text','itemid',31224),(32288,'history_uint','itemid',31224),(32289,'trends','itemid',31224),(32290,'trends_uint','itemid',31224),(32291,'events','itemid',31225),(32292,'history','itemid',31225),(32293,'history_log','itemid',31225),(32294,'history_str','itemid',31225),(32295,'history_text','itemid',31225),(32296,'history_uint','itemid',31225),(32297,'trends','itemid',31225),(32298,'trends_uint','itemid',31225),(32299,'events','itemid',31226),(32300,'history','itemid',31226),(32301,'history_log','itemid',31226),(32302,'history_str','itemid',31226),(32303,'history_text','itemid',31226),(32304,'history_uint','itemid',31226),(32305,'trends','itemid',31226),(32306,'trends_uint','itemid',31226),(32307,'events','itemid',31227),(32308,'history','itemid',31227),(32309,'history_log','itemid',31227),(32310,'history_str','itemid',31227),(32311,'history_text','itemid',31227),(32312,'history_uint','itemid',31227),(32313,'trends','itemid',31227),(32314,'trends_uint','itemid',31227),(32315,'events','itemid',31228),(32316,'history','itemid',31228),(32317,'history_log','itemid',31228),(32318,'history_str','itemid',31228),(32319,'history_text','itemid',31228),(32320,'history_uint','itemid',31228),(32321,'trends','itemid',31228),(32322,'trends_uint','itemid',31228),(32323,'events','itemid',31229),(32324,'history','itemid',31229),(32325,'history_log','itemid',31229),(32326,'history_str','itemid',31229),(32327,'history_text','itemid',31229),(32328,'history_uint','itemid',31229),(32329,'trends','itemid',31229),(32330,'trends_uint','itemid',31229),(32331,'events','itemid',31230),(32332,'history','itemid',31230),(32333,'history_log','itemid',31230),(32334,'history_str','itemid',31230),(32335,'history_text','itemid',31230),(32336,'history_uint','itemid',31230),(32337,'trends','itemid',31230),(32338,'trends_uint','itemid',31230),(32339,'events','itemid',31231),(32340,'history','itemid',31231),(32341,'history_log','itemid',31231),(32342,'history_str','itemid',31231),(32343,'history_text','itemid',31231),(32344,'history_uint','itemid',31231),(32345,'trends','itemid',31231),(32346,'trends_uint','itemid',31231),(32347,'events','itemid',31232),(32348,'history','itemid',31232),(32349,'history_log','itemid',31232),(32350,'history_str','itemid',31232),(32351,'history_text','itemid',31232),(32352,'history_uint','itemid',31232),(32353,'trends','itemid',31232),(32354,'trends_uint','itemid',31232),(32355,'events','itemid',31233),(32356,'history','itemid',31233),(32357,'history_log','itemid',31233),(32358,'history_str','itemid',31233),(32359,'history_text','itemid',31233),(32360,'history_uint','itemid',31233),(32361,'trends','itemid',31233),(32362,'trends_uint','itemid',31233),(32363,'events','itemid',31234),(32364,'history','itemid',31234),(32365,'history_log','itemid',31234),(32366,'history_str','itemid',31234),(32367,'history_text','itemid',31234),(32368,'history_uint','itemid',31234),(32369,'trends','itemid',31234),(32370,'trends_uint','itemid',31234),(32371,'events','itemid',31235),(32372,'history','itemid',31235),(32373,'history_log','itemid',31235),(32374,'history_str','itemid',31235),(32375,'history_text','itemid',31235),(32376,'history_uint','itemid',31235),(32377,'trends','itemid',31235),(32378,'trends_uint','itemid',31235),(32379,'events','itemid',31236),(32380,'history','itemid',31236),(32381,'history_log','itemid',31236),(32382,'history_str','itemid',31236),(32383,'history_text','itemid',31236),(32384,'history_uint','itemid',31236),(32385,'trends','itemid',31236),(32386,'trends_uint','itemid',31236),(32387,'events','itemid',31237),(32388,'history','itemid',31237),(32389,'history_log','itemid',31237),(32390,'history_str','itemid',31237),(32391,'history_text','itemid',31237),(32392,'history_uint','itemid',31237),(32393,'trends','itemid',31237),(32394,'trends_uint','itemid',31237),(32395,'events','itemid',31238),(32396,'history','itemid',31238),(32397,'history_log','itemid',31238),(32398,'history_str','itemid',31238),(32399,'history_text','itemid',31238),(32400,'history_uint','itemid',31238),(32401,'trends','itemid',31238),(32402,'trends_uint','itemid',31238),(32403,'events','itemid',31239),(32404,'history','itemid',31239),(32405,'history_log','itemid',31239),(32406,'history_str','itemid',31239),(32407,'history_text','itemid',31239),(32408,'history_uint','itemid',31239),(32409,'trends','itemid',31239),(32410,'trends_uint','itemid',31239),(32411,'events','itemid',31240),(32412,'history','itemid',31240),(32413,'history_log','itemid',31240),(32414,'history_str','itemid',31240),(32415,'history_text','itemid',31240),(32416,'history_uint','itemid',31240),(32417,'trends','itemid',31240),(32418,'trends_uint','itemid',31240),(32419,'events','itemid',31241),(32420,'history','itemid',31241),(32421,'history_log','itemid',31241),(32422,'history_str','itemid',31241),(32423,'history_text','itemid',31241),(32424,'history_uint','itemid',31241),(32425,'trends','itemid',31241),(32426,'trends_uint','itemid',31241),(32427,'events','itemid',31242),(32428,'history','itemid',31242),(32429,'history_log','itemid',31242),(32430,'history_str','itemid',31242),(32431,'history_text','itemid',31242),(32432,'history_uint','itemid',31242),(32433,'trends','itemid',31242),(32434,'trends_uint','itemid',31242),(32435,'events','itemid',31243),(32436,'history','itemid',31243),(32437,'history_log','itemid',31243),(32438,'history_str','itemid',31243),(32439,'history_text','itemid',31243),(32440,'history_uint','itemid',31243),(32441,'trends','itemid',31243),(32442,'trends_uint','itemid',31243),(32443,'events','itemid',31244),(32444,'history','itemid',31244),(32445,'history_log','itemid',31244),(32446,'history_str','itemid',31244),(32447,'history_text','itemid',31244),(32448,'history_uint','itemid',31244),(32449,'trends','itemid',31244),(32450,'trends_uint','itemid',31244),(32451,'events','itemid',31245),(32452,'history','itemid',31245),(32453,'history_log','itemid',31245),(32454,'history_str','itemid',31245),(32455,'history_text','itemid',31245),(32456,'history_uint','itemid',31245),(32457,'trends','itemid',31245),(32458,'trends_uint','itemid',31245),(32459,'events','itemid',31246),(32460,'history','itemid',31246),(32461,'history_log','itemid',31246),(32462,'history_str','itemid',31246),(32463,'history_text','itemid',31246),(32464,'history_uint','itemid',31246),(32465,'trends','itemid',31246),(32466,'trends_uint','itemid',31246),(32467,'events','itemid',31247),(32468,'history','itemid',31247),(32469,'history_log','itemid',31247),(32470,'history_str','itemid',31247),(32471,'history_text','itemid',31247),(32472,'history_uint','itemid',31247),(32473,'trends','itemid',31247),(32474,'trends_uint','itemid',31247),(32475,'events','itemid',31248),(32476,'history','itemid',31248),(32477,'history_log','itemid',31248),(32478,'history_str','itemid',31248),(32479,'history_text','itemid',31248),(32480,'history_uint','itemid',31248),(32481,'trends','itemid',31248),(32482,'trends_uint','itemid',31248),(32483,'events','itemid',31249),(32484,'history','itemid',31249),(32485,'history_log','itemid',31249),(32486,'history_str','itemid',31249),(32487,'history_text','itemid',31249),(32488,'history_uint','itemid',31249),(32489,'trends','itemid',31249),(32490,'trends_uint','itemid',31249),(32491,'events','itemid',31250),(32492,'history','itemid',31250),(32493,'history_log','itemid',31250),(32494,'history_str','itemid',31250),(32495,'history_text','itemid',31250),(32496,'history_uint','itemid',31250),(32497,'trends','itemid',31250),(32498,'trends_uint','itemid',31250),(32499,'events','itemid',31251),(32500,'history','itemid',31251),(32501,'history_log','itemid',31251),(32502,'history_str','itemid',31251),(32503,'history_text','itemid',31251),(32504,'history_uint','itemid',31251),(32505,'trends','itemid',31251),(32506,'trends_uint','itemid',31251),(32507,'events','itemid',31252),(32508,'history','itemid',31252),(32509,'history_log','itemid',31252),(32510,'history_str','itemid',31252),(32511,'history_text','itemid',31252),(32512,'history_uint','itemid',31252),(32513,'trends','itemid',31252),(32514,'trends_uint','itemid',31252),(32515,'events','itemid',31554),(32516,'history','itemid',31554),(32517,'history_log','itemid',31554),(32518,'history_str','itemid',31554),(32519,'history_text','itemid',31554),(32520,'history_uint','itemid',31554),(32521,'trends','itemid',31554),(32522,'trends_uint','itemid',31554),(32523,'events','itemid',31555),(32524,'history','itemid',31555),(32525,'history_log','itemid',31555),(32526,'history_str','itemid',31555),(32527,'history_text','itemid',31555),(32528,'history_uint','itemid',31555),(32529,'trends','itemid',31555),(32530,'trends_uint','itemid',31555),(32531,'events','itemid',31556),(32532,'history','itemid',31556),(32533,'history_log','itemid',31556),(32534,'history_str','itemid',31556),(32535,'history_text','itemid',31556),(32536,'history_uint','itemid',31556),(32537,'trends','itemid',31556),(32538,'trends_uint','itemid',31556),(32539,'events','itemid',31570),(32540,'history','itemid',31570),(32541,'history_log','itemid',31570),(32542,'history_str','itemid',31570),(32543,'history_text','itemid',31570),(32544,'history_uint','itemid',31570),(32545,'trends','itemid',31570),(32546,'trends_uint','itemid',31570),(32547,'events','itemid',31571),(32548,'history','itemid',31571),(32549,'history_log','itemid',31571),(32550,'history_str','itemid',31571),(32551,'history_text','itemid',31571),(32552,'history_uint','itemid',31571),(32553,'trends','itemid',31571),(32554,'trends_uint','itemid',31571),(32555,'events','itemid',31573),(32556,'history','itemid',31573),(32557,'history_log','itemid',31573),(32558,'history_str','itemid',31573),(32559,'history_text','itemid',31573),(32560,'history_uint','itemid',31573),(32561,'trends','itemid',31573),(32562,'trends_uint','itemid',31573),(32563,'events','itemid',31577),(32564,'history','itemid',31577),(32565,'history_log','itemid',31577),(32566,'history_str','itemid',31577),(32567,'history_text','itemid',31577),(32568,'history_uint','itemid',31577),(32569,'trends','itemid',31577),(32570,'trends_uint','itemid',31577),(32571,'events','itemid',31578),(32572,'history','itemid',31578),(32573,'history_log','itemid',31578),(32574,'history_str','itemid',31578),(32575,'history_text','itemid',31578),(32576,'history_uint','itemid',31578),(32577,'trends','itemid',31578),(32578,'trends_uint','itemid',31578),(32579,'events','itemid',31579),(32580,'history','itemid',31579),(32581,'history_log','itemid',31579),(32582,'history_str','itemid',31579),(32583,'history_text','itemid',31579),(32584,'history_uint','itemid',31579),(32585,'trends','itemid',31579),(32586,'trends_uint','itemid',31579),(32587,'events','itemid',31580),(32588,'history','itemid',31580),(32589,'history_log','itemid',31580),(32590,'history_str','itemid',31580),(32591,'history_text','itemid',31580),(32592,'history_uint','itemid',31580),(32593,'trends','itemid',31580),(32594,'trends_uint','itemid',31580),(32595,'events','itemid',31581),(32596,'history','itemid',31581),(32597,'history_log','itemid',31581),(32598,'history_str','itemid',31581),(32599,'history_text','itemid',31581),(32600,'history_uint','itemid',31581),(32601,'trends','itemid',31581),(32602,'trends_uint','itemid',31581),(32603,'events','itemid',31582),(32604,'history','itemid',31582),(32605,'history_log','itemid',31582),(32606,'history_str','itemid',31582),(32607,'history_text','itemid',31582),(32608,'history_uint','itemid',31582),(32609,'trends','itemid',31582),(32610,'trends_uint','itemid',31582),(32611,'events','itemid',31583),(32612,'history','itemid',31583),(32613,'history_log','itemid',31583),(32614,'history_str','itemid',31583),(32615,'history_text','itemid',31583),(32616,'history_uint','itemid',31583),(32617,'trends','itemid',31583),(32618,'trends_uint','itemid',31583),(32619,'events','itemid',31584),(32620,'history','itemid',31584),(32621,'history_log','itemid',31584),(32622,'history_str','itemid',31584),(32623,'history_text','itemid',31584),(32624,'history_uint','itemid',31584),(32625,'trends','itemid',31584),(32626,'trends_uint','itemid',31584),(32627,'events','itemid',31585),(32628,'history','itemid',31585),(32629,'history_log','itemid',31585),(32630,'history_str','itemid',31585),(32631,'history_text','itemid',31585),(32632,'history_uint','itemid',31585),(32633,'trends','itemid',31585),(32634,'trends_uint','itemid',31585),(32635,'events','itemid',31586),(32636,'history','itemid',31586),(32637,'history_log','itemid',31586),(32638,'history_str','itemid',31586),(32639,'history_text','itemid',31586),(32640,'history_uint','itemid',31586),(32641,'trends','itemid',31586),(32642,'trends_uint','itemid',31586),(32643,'events','itemid',31587),(32644,'history','itemid',31587),(32645,'history_log','itemid',31587),(32646,'history_str','itemid',31587),(32647,'history_text','itemid',31587),(32648,'history_uint','itemid',31587),(32649,'trends','itemid',31587),(32650,'trends_uint','itemid',31587),(32651,'events','itemid',31588),(32652,'history','itemid',31588),(32653,'history_log','itemid',31588),(32654,'history_str','itemid',31588),(32655,'history_text','itemid',31588),(32656,'history_uint','itemid',31588),(32657,'trends','itemid',31588),(32658,'trends_uint','itemid',31588),(32659,'events','itemid',31589),(32660,'history','itemid',31589),(32661,'history_log','itemid',31589),(32662,'history_str','itemid',31589),(32663,'history_text','itemid',31589),(32664,'history_uint','itemid',31589),(32665,'trends','itemid',31589),(32666,'trends_uint','itemid',31589),(32667,'events','itemid',31590),(32668,'history','itemid',31590),(32669,'history_log','itemid',31590),(32670,'history_str','itemid',31590),(32671,'history_text','itemid',31590),(32672,'history_uint','itemid',31590),(32673,'trends','itemid',31590),(32674,'trends_uint','itemid',31590),(32675,'events','itemid',31591),(32676,'history','itemid',31591),(32677,'history_log','itemid',31591),(32678,'history_str','itemid',31591),(32679,'history_text','itemid',31591),(32680,'history_uint','itemid',31591),(32681,'trends','itemid',31591),(32682,'trends_uint','itemid',31591),(32683,'events','itemid',31592),(32684,'history','itemid',31592),(32685,'history_log','itemid',31592),(32686,'history_str','itemid',31592),(32687,'history_text','itemid',31592),(32688,'history_uint','itemid',31592),(32689,'trends','itemid',31592),(32690,'trends_uint','itemid',31592),(32691,'events','itemid',31593),(32692,'history','itemid',31593),(32693,'history_log','itemid',31593),(32694,'history_str','itemid',31593),(32695,'history_text','itemid',31593),(32696,'history_uint','itemid',31593),(32697,'trends','itemid',31593),(32698,'trends_uint','itemid',31593),(32699,'events','itemid',31594),(32700,'history','itemid',31594),(32701,'history_log','itemid',31594),(32702,'history_str','itemid',31594),(32703,'history_text','itemid',31594),(32704,'history_uint','itemid',31594),(32705,'trends','itemid',31594),(32706,'trends_uint','itemid',31594),(32707,'events','itemid',31595),(32708,'history','itemid',31595),(32709,'history_log','itemid',31595),(32710,'history_str','itemid',31595),(32711,'history_text','itemid',31595),(32712,'history_uint','itemid',31595),(32713,'trends','itemid',31595),(32714,'trends_uint','itemid',31595),(32715,'events','itemid',31596),(32716,'history','itemid',31596),(32717,'history_log','itemid',31596),(32718,'history_str','itemid',31596),(32719,'history_text','itemid',31596),(32720,'history_uint','itemid',31596),(32721,'trends','itemid',31596),(32722,'trends_uint','itemid',31596),(32723,'events','itemid',31597),(32724,'history','itemid',31597),(32725,'history_log','itemid',31597),(32726,'history_str','itemid',31597),(32727,'history_text','itemid',31597),(32728,'history_uint','itemid',31597),(32729,'trends','itemid',31597),(32730,'trends_uint','itemid',31597),(32731,'events','itemid',31598),(32732,'history','itemid',31598),(32733,'history_log','itemid',31598),(32734,'history_str','itemid',31598),(32735,'history_text','itemid',31598),(32736,'history_uint','itemid',31598),(32737,'trends','itemid',31598),(32738,'trends_uint','itemid',31598),(32739,'events','itemid',31599),(32740,'history','itemid',31599),(32741,'history_log','itemid',31599),(32742,'history_str','itemid',31599),(32743,'history_text','itemid',31599),(32744,'history_uint','itemid',31599),(32745,'trends','itemid',31599),(32746,'trends_uint','itemid',31599),(32747,'events','itemid',31600),(32748,'history','itemid',31600),(32749,'history_log','itemid',31600),(32750,'history_str','itemid',31600),(32751,'history_text','itemid',31600),(32752,'history_uint','itemid',31600),(32753,'trends','itemid',31600),(32754,'trends_uint','itemid',31600),(32755,'events','itemid',31601),(32756,'history','itemid',31601),(32757,'history_log','itemid',31601),(32758,'history_str','itemid',31601),(32759,'history_text','itemid',31601),(32760,'history_uint','itemid',31601),(32761,'trends','itemid',31601),(32762,'trends_uint','itemid',31601),(32763,'events','itemid',31602),(32764,'history','itemid',31602),(32765,'history_log','itemid',31602),(32766,'history_str','itemid',31602),(32767,'history_text','itemid',31602),(32768,'history_uint','itemid',31602),(32769,'trends','itemid',31602),(32770,'trends_uint','itemid',31602),(32771,'events','itemid',31603),(32772,'history','itemid',31603),(32773,'history_log','itemid',31603),(32774,'history_str','itemid',31603),(32775,'history_text','itemid',31603),(32776,'history_uint','itemid',31603),(32777,'trends','itemid',31603),(32778,'trends_uint','itemid',31603),(32779,'events','itemid',31604),(32780,'history','itemid',31604),(32781,'history_log','itemid',31604),(32782,'history_str','itemid',31604),(32783,'history_text','itemid',31604),(32784,'history_uint','itemid',31604),(32785,'trends','itemid',31604),(32786,'trends_uint','itemid',31604),(32787,'events','itemid',31605),(32788,'history','itemid',31605),(32789,'history_log','itemid',31605),(32790,'history_str','itemid',31605),(32791,'history_text','itemid',31605),(32792,'history_uint','itemid',31605),(32793,'trends','itemid',31605),(32794,'trends_uint','itemid',31605),(32795,'events','itemid',31606),(32796,'history','itemid',31606),(32797,'history_log','itemid',31606),(32798,'history_str','itemid',31606),(32799,'history_text','itemid',31606),(32800,'history_uint','itemid',31606),(32801,'trends','itemid',31606),(32802,'trends_uint','itemid',31606),(32803,'events','itemid',31607),(32804,'history','itemid',31607),(32805,'history_log','itemid',31607),(32806,'history_str','itemid',31607),(32807,'history_text','itemid',31607),(32808,'history_uint','itemid',31607),(32809,'trends','itemid',31607),(32810,'trends_uint','itemid',31607),(32811,'events','itemid',31608),(32812,'history','itemid',31608),(32813,'history_log','itemid',31608),(32814,'history_str','itemid',31608),(32815,'history_text','itemid',31608),(32816,'history_uint','itemid',31608),(32817,'trends','itemid',31608),(32818,'trends_uint','itemid',31608),(32819,'events','itemid',31609),(32820,'history','itemid',31609),(32821,'history_log','itemid',31609),(32822,'history_str','itemid',31609),(32823,'history_text','itemid',31609),(32824,'history_uint','itemid',31609),(32825,'trends','itemid',31609),(32826,'trends_uint','itemid',31609),(32827,'events','itemid',31610),(32828,'history','itemid',31610),(32829,'history_log','itemid',31610),(32830,'history_str','itemid',31610),(32831,'history_text','itemid',31610),(32832,'history_uint','itemid',31610),(32833,'trends','itemid',31610),(32834,'trends_uint','itemid',31610),(32835,'events','itemid',31611),(32836,'history','itemid',31611),(32837,'history_log','itemid',31611),(32838,'history_str','itemid',31611),(32839,'history_text','itemid',31611),(32840,'history_uint','itemid',31611),(32841,'trends','itemid',31611),(32842,'trends_uint','itemid',31611),(32843,'events','itemid',31684),(32844,'history','itemid',31684),(32845,'history_log','itemid',31684),(32846,'history_str','itemid',31684),(32847,'history_text','itemid',31684),(32848,'history_uint','itemid',31684),(32849,'trends','itemid',31684),(32850,'trends_uint','itemid',31684),(32851,'events','itemid',31685),(32852,'history','itemid',31685),(32853,'history_log','itemid',31685),(32854,'history_str','itemid',31685),(32855,'history_text','itemid',31685),(32856,'history_uint','itemid',31685),(32857,'trends','itemid',31685),(32858,'trends_uint','itemid',31685),(32859,'events','itemid',31686),(32860,'history','itemid',31686),(32861,'history_log','itemid',31686),(32862,'history_str','itemid',31686),(32863,'history_text','itemid',31686),(32864,'history_uint','itemid',31686),(32865,'trends','itemid',31686),(32866,'trends_uint','itemid',31686),(32867,'events','itemid',31687),(32868,'history','itemid',31687),(32869,'history_log','itemid',31687),(32870,'history_str','itemid',31687),(32871,'history_text','itemid',31687),(32872,'history_uint','itemid',31687),(32873,'trends','itemid',31687),(32874,'trends_uint','itemid',31687),(32875,'events','itemid',31688),(32876,'history','itemid',31688),(32877,'history_log','itemid',31688),(32878,'history_str','itemid',31688),(32879,'history_text','itemid',31688),(32880,'history_uint','itemid',31688),(32881,'trends','itemid',31688),(32882,'trends_uint','itemid',31688),(32883,'events','itemid',31689),(32884,'history','itemid',31689),(32885,'history_log','itemid',31689),(32886,'history_str','itemid',31689),(32887,'history_text','itemid',31689),(32888,'history_uint','itemid',31689),(32889,'trends','itemid',31689),(32890,'trends_uint','itemid',31689),(32891,'events','itemid',31690),(32892,'history','itemid',31690),(32893,'history_log','itemid',31690),(32894,'history_str','itemid',31690),(32895,'history_text','itemid',31690),(32896,'history_uint','itemid',31690),(32897,'trends','itemid',31690),(32898,'trends_uint','itemid',31690),(32899,'events','itemid',31691),(32900,'history','itemid',31691),(32901,'history_log','itemid',31691),(32902,'history_str','itemid',31691),(32903,'history_text','itemid',31691),(32904,'history_uint','itemid',31691),(32905,'trends','itemid',31691),(32906,'trends_uint','itemid',31691),(32907,'events','itemid',31692),(32908,'history','itemid',31692),(32909,'history_log','itemid',31692),(32910,'history_str','itemid',31692),(32911,'history_text','itemid',31692),(32912,'history_uint','itemid',31692),(32913,'trends','itemid',31692),(32914,'trends_uint','itemid',31692),(32915,'events','itemid',31693),(32916,'history','itemid',31693),(32917,'history_log','itemid',31693),(32918,'history_str','itemid',31693),(32919,'history_text','itemid',31693),(32920,'history_uint','itemid',31693),(32921,'trends','itemid',31693),(32922,'trends_uint','itemid',31693),(32923,'events','itemid',31694),(32924,'history','itemid',31694),(32925,'history_log','itemid',31694),(32926,'history_str','itemid',31694),(32927,'history_text','itemid',31694),(32928,'history_uint','itemid',31694),(32929,'trends','itemid',31694),(32930,'trends_uint','itemid',31694),(32931,'events','itemid',31695),(32932,'history','itemid',31695),(32933,'history_log','itemid',31695),(32934,'history_str','itemid',31695),(32935,'history_text','itemid',31695),(32936,'history_uint','itemid',31695),(32937,'trends','itemid',31695),(32938,'trends_uint','itemid',31695),(32939,'events','itemid',31696),(32940,'history','itemid',31696),(32941,'history_log','itemid',31696),(32942,'history_str','itemid',31696),(32943,'history_text','itemid',31696),(32944,'history_uint','itemid',31696),(32945,'trends','itemid',31696),(32946,'trends_uint','itemid',31696),(32947,'events','itemid',31697),(32948,'history','itemid',31697),(32949,'history_log','itemid',31697),(32950,'history_str','itemid',31697),(32951,'history_text','itemid',31697),(32952,'history_uint','itemid',31697),(32953,'trends','itemid',31697),(32954,'trends_uint','itemid',31697),(32955,'events','itemid',31698),(32956,'history','itemid',31698),(32957,'history_log','itemid',31698),(32958,'history_str','itemid',31698),(32959,'history_text','itemid',31698),(32960,'history_uint','itemid',31698),(32961,'trends','itemid',31698),(32962,'trends_uint','itemid',31698),(32963,'events','itemid',31699),(32964,'history','itemid',31699),(32965,'history_log','itemid',31699),(32966,'history_str','itemid',31699),(32967,'history_text','itemid',31699),(32968,'history_uint','itemid',31699),(32969,'trends','itemid',31699),(32970,'trends_uint','itemid',31699),(32971,'events','itemid',31700),(32972,'history','itemid',31700),(32973,'history_log','itemid',31700),(32974,'history_str','itemid',31700),(32975,'history_text','itemid',31700),(32976,'history_uint','itemid',31700),(32977,'trends','itemid',31700),(32978,'trends_uint','itemid',31700),(32979,'events','itemid',31701),(32980,'history','itemid',31701),(32981,'history_log','itemid',31701),(32982,'history_str','itemid',31701),(32983,'history_text','itemid',31701),(32984,'history_uint','itemid',31701),(32985,'trends','itemid',31701),(32986,'trends_uint','itemid',31701),(32987,'events','itemid',31702),(32988,'history','itemid',31702),(32989,'history_log','itemid',31702),(32990,'history_str','itemid',31702),(32991,'history_text','itemid',31702),(32992,'history_uint','itemid',31702),(32993,'trends','itemid',31702),(32994,'trends_uint','itemid',31702),(32995,'events','itemid',31703),(32996,'history','itemid',31703),(32997,'history_log','itemid',31703),(32998,'history_str','itemid',31703),(32999,'history_text','itemid',31703),(33000,'history_uint','itemid',31703),(33001,'trends','itemid',31703),(33002,'trends_uint','itemid',31703),(33003,'events','itemid',31704),(33004,'history','itemid',31704),(33005,'history_log','itemid',31704),(33006,'history_str','itemid',31704),(33007,'history_text','itemid',31704),(33008,'history_uint','itemid',31704),(33009,'trends','itemid',31704),(33010,'trends_uint','itemid',31704),(33011,'events','itemid',31705),(33012,'history','itemid',31705),(33013,'history_log','itemid',31705),(33014,'history_str','itemid',31705),(33015,'history_text','itemid',31705),(33016,'history_uint','itemid',31705),(33017,'trends','itemid',31705),(33018,'trends_uint','itemid',31705),(33019,'events','itemid',31706),(33020,'history','itemid',31706),(33021,'history_log','itemid',31706),(33022,'history_str','itemid',31706),(33023,'history_text','itemid',31706),(33024,'history_uint','itemid',31706),(33025,'trends','itemid',31706),(33026,'trends_uint','itemid',31706),(33027,'events','itemid',31707),(33028,'history','itemid',31707),(33029,'history_log','itemid',31707),(33030,'history_str','itemid',31707),(33031,'history_text','itemid',31707),(33032,'history_uint','itemid',31707),(33033,'trends','itemid',31707),(33034,'trends_uint','itemid',31707),(33035,'events','itemid',31708),(33036,'history','itemid',31708),(33037,'history_log','itemid',31708),(33038,'history_str','itemid',31708),(33039,'history_text','itemid',31708),(33040,'history_uint','itemid',31708),(33041,'trends','itemid',31708),(33042,'trends_uint','itemid',31708),(33043,'events','itemid',31709),(33044,'history','itemid',31709),(33045,'history_log','itemid',31709),(33046,'history_str','itemid',31709),(33047,'history_text','itemid',31709),(33048,'history_uint','itemid',31709),(33049,'trends','itemid',31709),(33050,'trends_uint','itemid',31709),(33051,'events','itemid',31710),(33052,'history','itemid',31710),(33053,'history_log','itemid',31710),(33054,'history_str','itemid',31710),(33055,'history_text','itemid',31710),(33056,'history_uint','itemid',31710),(33057,'trends','itemid',31710),(33058,'trends_uint','itemid',31710),(33059,'events','itemid',31711),(33060,'history','itemid',31711),(33061,'history_log','itemid',31711),(33062,'history_str','itemid',31711),(33063,'history_text','itemid',31711),(33064,'history_uint','itemid',31711),(33065,'trends','itemid',31711),(33066,'trends_uint','itemid',31711),(33067,'events','itemid',31712),(33068,'history','itemid',31712),(33069,'history_log','itemid',31712),(33070,'history_str','itemid',31712),(33071,'history_text','itemid',31712),(33072,'history_uint','itemid',31712),(33073,'trends','itemid',31712),(33074,'trends_uint','itemid',31712),(33075,'events','itemid',31713),(33076,'history','itemid',31713),(33077,'history_log','itemid',31713),(33078,'history_str','itemid',31713),(33079,'history_text','itemid',31713),(33080,'history_uint','itemid',31713),(33081,'trends','itemid',31713),(33082,'trends_uint','itemid',31713),(33083,'events','itemid',31714),(33084,'history','itemid',31714),(33085,'history_log','itemid',31714),(33086,'history_str','itemid',31714),(33087,'history_text','itemid',31714),(33088,'history_uint','itemid',31714),(33089,'trends','itemid',31714),(33090,'trends_uint','itemid',31714),(33091,'events','itemid',31715),(33092,'history','itemid',31715),(33093,'history_log','itemid',31715),(33094,'history_str','itemid',31715),(33095,'history_text','itemid',31715),(33096,'history_uint','itemid',31715),(33097,'trends','itemid',31715),(33098,'trends_uint','itemid',31715),(33099,'events','itemid',31716),(33100,'history','itemid',31716),(33101,'history_log','itemid',31716),(33102,'history_str','itemid',31716),(33103,'history_text','itemid',31716),(33104,'history_uint','itemid',31716),(33105,'trends','itemid',31716),(33106,'trends_uint','itemid',31716),(33107,'events','itemid',31717),(33108,'history','itemid',31717),(33109,'history_log','itemid',31717),(33110,'history_str','itemid',31717),(33111,'history_text','itemid',31717),(33112,'history_uint','itemid',31717),(33113,'trends','itemid',31717),(33114,'trends_uint','itemid',31717),(33115,'events','itemid',31718),(33116,'history','itemid',31718),(33117,'history_log','itemid',31718),(33118,'history_str','itemid',31718),(33119,'history_text','itemid',31718),(33120,'history_uint','itemid',31718),(33121,'trends','itemid',31718),(33122,'trends_uint','itemid',31718),(33123,'events','itemid',31719),(33124,'history','itemid',31719),(33125,'history_log','itemid',31719),(33126,'history_str','itemid',31719),(33127,'history_text','itemid',31719),(33128,'history_uint','itemid',31719),(33129,'trends','itemid',31719),(33130,'trends_uint','itemid',31719),(33131,'events','itemid',31720),(33132,'history','itemid',31720),(33133,'history_log','itemid',31720),(33134,'history_str','itemid',31720),(33135,'history_text','itemid',31720),(33136,'history_uint','itemid',31720),(33137,'trends','itemid',31720),(33138,'trends_uint','itemid',31720),(33139,'events','itemid',31721),(33140,'history','itemid',31721),(33141,'history_log','itemid',31721),(33142,'history_str','itemid',31721),(33143,'history_text','itemid',31721),(33144,'history_uint','itemid',31721),(33145,'trends','itemid',31721),(33146,'trends_uint','itemid',31721),(33147,'events','itemid',31722),(33148,'history','itemid',31722),(33149,'history_log','itemid',31722),(33150,'history_str','itemid',31722),(33151,'history_text','itemid',31722),(33152,'history_uint','itemid',31722),(33153,'trends','itemid',31722),(33154,'trends_uint','itemid',31722),(33155,'events','itemid',31723),(33156,'history','itemid',31723),(33157,'history_log','itemid',31723),(33158,'history_str','itemid',31723),(33159,'history_text','itemid',31723),(33160,'history_uint','itemid',31723),(33161,'trends','itemid',31723),(33162,'trends_uint','itemid',31723),(33163,'events','itemid',31724),(33164,'history','itemid',31724),(33165,'history_log','itemid',31724),(33166,'history_str','itemid',31724),(33167,'history_text','itemid',31724),(33168,'history_uint','itemid',31724),(33169,'trends','itemid',31724),(33170,'trends_uint','itemid',31724),(33171,'events','itemid',31725),(33172,'history','itemid',31725),(33173,'history_log','itemid',31725),(33174,'history_str','itemid',31725),(33175,'history_text','itemid',31725),(33176,'history_uint','itemid',31725),(33177,'trends','itemid',31725),(33178,'trends_uint','itemid',31725),(33179,'events','itemid',31726),(33180,'history','itemid',31726),(33181,'history_log','itemid',31726),(33182,'history_str','itemid',31726),(33183,'history_text','itemid',31726),(33184,'history_uint','itemid',31726),(33185,'trends','itemid',31726),(33186,'trends_uint','itemid',31726),(33187,'events','itemid',31727),(33188,'history','itemid',31727),(33189,'history_log','itemid',31727),(33190,'history_str','itemid',31727),(33191,'history_text','itemid',31727),(33192,'history_uint','itemid',31727),(33193,'trends','itemid',31727),(33194,'trends_uint','itemid',31727),(33195,'events','itemid',31728),(33196,'history','itemid',31728),(33197,'history_log','itemid',31728),(33198,'history_str','itemid',31728),(33199,'history_text','itemid',31728),(33200,'history_uint','itemid',31728),(33201,'trends','itemid',31728),(33202,'trends_uint','itemid',31728),(33203,'events','itemid',31729),(33204,'history','itemid',31729),(33205,'history_log','itemid',31729),(33206,'history_str','itemid',31729),(33207,'history_text','itemid',31729),(33208,'history_uint','itemid',31729),(33209,'trends','itemid',31729),(33210,'trends_uint','itemid',31729),(33211,'events','itemid',31730),(33212,'history','itemid',31730),(33213,'history_log','itemid',31730),(33214,'history_str','itemid',31730),(33215,'history_text','itemid',31730),(33216,'history_uint','itemid',31730),(33217,'trends','itemid',31730),(33218,'trends_uint','itemid',31730),(33219,'events','itemid',31731),(33220,'history','itemid',31731),(33221,'history_log','itemid',31731),(33222,'history_str','itemid',31731),(33223,'history_text','itemid',31731),(33224,'history_uint','itemid',31731),(33225,'trends','itemid',31731),(33226,'trends_uint','itemid',31731),(33227,'events','itemid',31732),(33228,'history','itemid',31732),(33229,'history_log','itemid',31732),(33230,'history_str','itemid',31732),(33231,'history_text','itemid',31732),(33232,'history_uint','itemid',31732),(33233,'trends','itemid',31732),(33234,'trends_uint','itemid',31732),(33235,'events','itemid',31733),(33236,'history','itemid',31733),(33237,'history_log','itemid',31733),(33238,'history_str','itemid',31733),(33239,'history_text','itemid',31733),(33240,'history_uint','itemid',31733),(33241,'trends','itemid',31733),(33242,'trends_uint','itemid',31733),(33243,'events','itemid',31734),(33244,'history','itemid',31734),(33245,'history_log','itemid',31734),(33246,'history_str','itemid',31734),(33247,'history_text','itemid',31734),(33248,'history_uint','itemid',31734),(33249,'trends','itemid',31734),(33250,'trends_uint','itemid',31734),(33251,'events','itemid',31735),(33252,'history','itemid',31735),(33253,'history_log','itemid',31735),(33254,'history_str','itemid',31735),(33255,'history_text','itemid',31735),(33256,'history_uint','itemid',31735),(33257,'trends','itemid',31735),(33258,'trends_uint','itemid',31735),(33259,'events','itemid',31736),(33260,'history','itemid',31736),(33261,'history_log','itemid',31736),(33262,'history_str','itemid',31736),(33263,'history_text','itemid',31736),(33264,'history_uint','itemid',31736),(33265,'trends','itemid',31736),(33266,'trends_uint','itemid',31736),(33267,'events','itemid',31737),(33268,'history','itemid',31737),(33269,'history_log','itemid',31737),(33270,'history_str','itemid',31737),(33271,'history_text','itemid',31737),(33272,'history_uint','itemid',31737),(33273,'trends','itemid',31737),(33274,'trends_uint','itemid',31737),(33275,'events','itemid',31738),(33276,'history','itemid',31738),(33277,'history_log','itemid',31738),(33278,'history_str','itemid',31738),(33279,'history_text','itemid',31738),(33280,'history_uint','itemid',31738),(33281,'trends','itemid',31738),(33282,'trends_uint','itemid',31738),(33283,'events','itemid',31739),(33284,'history','itemid',31739),(33285,'history_log','itemid',31739),(33286,'history_str','itemid',31739),(33287,'history_text','itemid',31739),(33288,'history_uint','itemid',31739),(33289,'trends','itemid',31739),(33290,'trends_uint','itemid',31739),(33291,'events','itemid',31740),(33292,'history','itemid',31740),(33293,'history_log','itemid',31740),(33294,'history_str','itemid',31740),(33295,'history_text','itemid',31740),(33296,'history_uint','itemid',31740),(33297,'trends','itemid',31740),(33298,'trends_uint','itemid',31740),(33299,'events','itemid',31741),(33300,'history','itemid',31741),(33301,'history_log','itemid',31741),(33302,'history_str','itemid',31741),(33303,'history_text','itemid',31741),(33304,'history_uint','itemid',31741),(33305,'trends','itemid',31741),(33306,'trends_uint','itemid',31741),(33307,'events','itemid',31742),(33308,'history','itemid',31742),(33309,'history_log','itemid',31742),(33310,'history_str','itemid',31742),(33311,'history_text','itemid',31742),(33312,'history_uint','itemid',31742),(33313,'trends','itemid',31742),(33314,'trends_uint','itemid',31742),(33315,'events','itemid',31743),(33316,'history','itemid',31743),(33317,'history_log','itemid',31743),(33318,'history_str','itemid',31743),(33319,'history_text','itemid',31743),(33320,'history_uint','itemid',31743),(33321,'trends','itemid',31743),(33322,'trends_uint','itemid',31743),(33323,'events','itemid',31744),(33324,'history','itemid',31744),(33325,'history_log','itemid',31744),(33326,'history_str','itemid',31744),(33327,'history_text','itemid',31744),(33328,'history_uint','itemid',31744),(33329,'trends','itemid',31744),(33330,'trends_uint','itemid',31744),(33331,'events','itemid',31745),(33332,'history','itemid',31745),(33333,'history_log','itemid',31745),(33334,'history_str','itemid',31745),(33335,'history_text','itemid',31745),(33336,'history_uint','itemid',31745),(33337,'trends','itemid',31745),(33338,'trends_uint','itemid',31745),(33339,'events','itemid',31746),(33340,'history','itemid',31746),(33341,'history_log','itemid',31746),(33342,'history_str','itemid',31746),(33343,'history_text','itemid',31746),(33344,'history_uint','itemid',31746),(33345,'trends','itemid',31746),(33346,'trends_uint','itemid',31746),(33347,'events','itemid',31747),(33348,'history','itemid',31747),(33349,'history_log','itemid',31747),(33350,'history_str','itemid',31747),(33351,'history_text','itemid',31747),(33352,'history_uint','itemid',31747),(33353,'trends','itemid',31747),(33354,'trends_uint','itemid',31747),(33355,'events','itemid',31748),(33356,'history','itemid',31748),(33357,'history_log','itemid',31748),(33358,'history_str','itemid',31748),(33359,'history_text','itemid',31748),(33360,'history_uint','itemid',31748),(33361,'trends','itemid',31748),(33362,'trends_uint','itemid',31748),(33363,'events','itemid',31749),(33364,'history','itemid',31749),(33365,'history_log','itemid',31749),(33366,'history_str','itemid',31749),(33367,'history_text','itemid',31749),(33368,'history_uint','itemid',31749),(33369,'trends','itemid',31749),(33370,'trends_uint','itemid',31749),(33371,'events','itemid',31750),(33372,'history','itemid',31750),(33373,'history_log','itemid',31750),(33374,'history_str','itemid',31750),(33375,'history_text','itemid',31750),(33376,'history_uint','itemid',31750),(33377,'trends','itemid',31750),(33378,'trends_uint','itemid',31750),(33379,'events','itemid',31751),(33380,'history','itemid',31751),(33381,'history_log','itemid',31751),(33382,'history_str','itemid',31751),(33383,'history_text','itemid',31751),(33384,'history_uint','itemid',31751),(33385,'trends','itemid',31751),(33386,'trends_uint','itemid',31751),(33387,'events','itemid',31752),(33388,'history','itemid',31752),(33389,'history_log','itemid',31752),(33390,'history_str','itemid',31752),(33391,'history_text','itemid',31752),(33392,'history_uint','itemid',31752),(33393,'trends','itemid',31752),(33394,'trends_uint','itemid',31752),(33395,'events','itemid',31753),(33396,'history','itemid',31753),(33397,'history_log','itemid',31753),(33398,'history_str','itemid',31753),(33399,'history_text','itemid',31753),(33400,'history_uint','itemid',31753),(33401,'trends','itemid',31753),(33402,'trends_uint','itemid',31753),(33403,'events','itemid',31754),(33404,'history','itemid',31754),(33405,'history_log','itemid',31754),(33406,'history_str','itemid',31754),(33407,'history_text','itemid',31754),(33408,'history_uint','itemid',31754),(33409,'trends','itemid',31754),(33410,'trends_uint','itemid',31754),(33411,'events','itemid',31755),(33412,'history','itemid',31755),(33413,'history_log','itemid',31755),(33414,'history_str','itemid',31755),(33415,'history_text','itemid',31755),(33416,'history_uint','itemid',31755),(33417,'trends','itemid',31755),(33418,'trends_uint','itemid',31755),(33419,'events','itemid',31756),(33420,'history','itemid',31756),(33421,'history_log','itemid',31756),(33422,'history_str','itemid',31756),(33423,'history_text','itemid',31756),(33424,'history_uint','itemid',31756),(33425,'trends','itemid',31756),(33426,'trends_uint','itemid',31756),(33427,'events','itemid',31757),(33428,'history','itemid',31757),(33429,'history_log','itemid',31757),(33430,'history_str','itemid',31757),(33431,'history_text','itemid',31757),(33432,'history_uint','itemid',31757),(33433,'trends','itemid',31757),(33434,'trends_uint','itemid',31757),(33435,'events','itemid',31758),(33436,'history','itemid',31758),(33437,'history_log','itemid',31758),(33438,'history_str','itemid',31758),(33439,'history_text','itemid',31758),(33440,'history_uint','itemid',31758),(33441,'trends','itemid',31758),(33442,'trends_uint','itemid',31758),(33443,'events','itemid',31759),(33444,'history','itemid',31759),(33445,'history_log','itemid',31759),(33446,'history_str','itemid',31759),(33447,'history_text','itemid',31759),(33448,'history_uint','itemid',31759),(33449,'trends','itemid',31759),(33450,'trends_uint','itemid',31759),(33451,'events','itemid',31760),(33452,'history','itemid',31760),(33453,'history_log','itemid',31760),(33454,'history_str','itemid',31760),(33455,'history_text','itemid',31760),(33456,'history_uint','itemid',31760),(33457,'trends','itemid',31760),(33458,'trends_uint','itemid',31760),(33459,'events','itemid',32364),(33460,'history','itemid',32364),(33461,'history_log','itemid',32364),(33462,'history_str','itemid',32364),(33463,'history_text','itemid',32364),(33464,'history_uint','itemid',32364),(33465,'trends','itemid',32364),(33466,'trends_uint','itemid',32364),(33467,'events','itemid',32365),(33468,'history','itemid',32365),(33469,'history_log','itemid',32365),(33470,'history_str','itemid',32365),(33471,'history_text','itemid',32365),(33472,'history_uint','itemid',32365),(33473,'trends','itemid',32365),(33474,'trends_uint','itemid',32365),(33475,'events','itemid',32366),(33476,'history','itemid',32366),(33477,'history_log','itemid',32366),(33478,'history_str','itemid',32366),(33479,'history_text','itemid',32366),(33480,'history_uint','itemid',32366),(33481,'trends','itemid',32366),(33482,'trends_uint','itemid',32366),(33483,'events','itemid',32367),(33484,'history','itemid',32367),(33485,'history_log','itemid',32367),(33486,'history_str','itemid',32367),(33487,'history_text','itemid',32367),(33488,'history_uint','itemid',32367),(33489,'trends','itemid',32367),(33490,'trends_uint','itemid',32367),(33491,'events','itemid',32368),(33492,'history','itemid',32368),(33493,'history_log','itemid',32368),(33494,'history_str','itemid',32368),(33495,'history_text','itemid',32368),(33496,'history_uint','itemid',32368),(33497,'trends','itemid',32368),(33498,'trends_uint','itemid',32368),(33499,'events','itemid',32369),(33500,'history','itemid',32369),(33501,'history_log','itemid',32369),(33502,'history_str','itemid',32369),(33503,'history_text','itemid',32369),(33504,'history_uint','itemid',32369),(33505,'trends','itemid',32369),(33506,'trends_uint','itemid',32369),(33507,'events','itemid',32370),(33508,'history','itemid',32370),(33509,'history_log','itemid',32370),(33510,'history_str','itemid',32370),(33511,'history_text','itemid',32370),(33512,'history_uint','itemid',32370),(33513,'trends','itemid',32370),(33514,'trends_uint','itemid',32370),(33515,'events','itemid',32371),(33516,'history','itemid',32371),(33517,'history_log','itemid',32371),(33518,'history_str','itemid',32371),(33519,'history_text','itemid',32371),(33520,'history_uint','itemid',32371),(33521,'trends','itemid',32371),(33522,'trends_uint','itemid',32371),(33523,'events','itemid',32372),(33524,'history','itemid',32372),(33525,'history_log','itemid',32372),(33526,'history_str','itemid',32372),(33527,'history_text','itemid',32372),(33528,'history_uint','itemid',32372),(33529,'trends','itemid',32372),(33530,'trends_uint','itemid',32372),(33531,'events','itemid',32373),(33532,'history','itemid',32373),(33533,'history_log','itemid',32373),(33534,'history_str','itemid',32373),(33535,'history_text','itemid',32373),(33536,'history_uint','itemid',32373),(33537,'trends','itemid',32373),(33538,'trends_uint','itemid',32373),(33539,'events','itemid',32374),(33540,'history','itemid',32374),(33541,'history_log','itemid',32374),(33542,'history_str','itemid',32374),(33543,'history_text','itemid',32374),(33544,'history_uint','itemid',32374),(33545,'trends','itemid',32374),(33546,'trends_uint','itemid',32374),(33547,'events','itemid',32375),(33548,'history','itemid',32375),(33549,'history_log','itemid',32375),(33550,'history_str','itemid',32375),(33551,'history_text','itemid',32375),(33552,'history_uint','itemid',32375),(33553,'trends','itemid',32375),(33554,'trends_uint','itemid',32375),(33555,'events','itemid',32376),(33556,'history','itemid',32376),(33557,'history_log','itemid',32376),(33558,'history_str','itemid',32376),(33559,'history_text','itemid',32376),(33560,'history_uint','itemid',32376),(33561,'trends','itemid',32376),(33562,'trends_uint','itemid',32376),(33563,'events','itemid',32377),(33564,'history','itemid',32377),(33565,'history_log','itemid',32377),(33566,'history_str','itemid',32377),(33567,'history_text','itemid',32377),(33568,'history_uint','itemid',32377),(33569,'trends','itemid',32377),(33570,'trends_uint','itemid',32377),(33571,'events','itemid',32378),(33572,'history','itemid',32378),(33573,'history_log','itemid',32378),(33574,'history_str','itemid',32378),(33575,'history_text','itemid',32378),(33576,'history_uint','itemid',32378),(33577,'trends','itemid',32378),(33578,'trends_uint','itemid',32378),(33579,'events','itemid',32379),(33580,'history','itemid',32379),(33581,'history_log','itemid',32379),(33582,'history_str','itemid',32379),(33583,'history_text','itemid',32379),(33584,'history_uint','itemid',32379),(33585,'trends','itemid',32379),(33586,'trends_uint','itemid',32379),(33587,'events','itemid',32380),(33588,'history','itemid',32380),(33589,'history_log','itemid',32380),(33590,'history_str','itemid',32380),(33591,'history_text','itemid',32380),(33592,'history_uint','itemid',32380),(33593,'trends','itemid',32380),(33594,'trends_uint','itemid',32380),(33595,'events','itemid',32381),(33596,'history','itemid',32381),(33597,'history_log','itemid',32381),(33598,'history_str','itemid',32381),(33599,'history_text','itemid',32381),(33600,'history_uint','itemid',32381),(33601,'trends','itemid',32381),(33602,'trends_uint','itemid',32381),(33603,'events','itemid',32382),(33604,'history','itemid',32382),(33605,'history_log','itemid',32382),(33606,'history_str','itemid',32382),(33607,'history_text','itemid',32382),(33608,'history_uint','itemid',32382),(33609,'trends','itemid',32382),(33610,'trends_uint','itemid',32382),(33611,'events','itemid',32383),(33612,'history','itemid',32383),(33613,'history_log','itemid',32383),(33614,'history_str','itemid',32383),(33615,'history_text','itemid',32383),(33616,'history_uint','itemid',32383),(33617,'trends','itemid',32383),(33618,'trends_uint','itemid',32383),(33619,'events','itemid',32384),(33620,'history','itemid',32384),(33621,'history_log','itemid',32384),(33622,'history_str','itemid',32384),(33623,'history_text','itemid',32384),(33624,'history_uint','itemid',32384),(33625,'trends','itemid',32384),(33626,'trends_uint','itemid',32384),(33627,'events','itemid',32385),(33628,'history','itemid',32385),(33629,'history_log','itemid',32385),(33630,'history_str','itemid',32385),(33631,'history_text','itemid',32385),(33632,'history_uint','itemid',32385),(33633,'trends','itemid',32385),(33634,'trends_uint','itemid',32385),(33635,'events','itemid',32386),(33636,'history','itemid',32386),(33637,'history_log','itemid',32386),(33638,'history_str','itemid',32386),(33639,'history_text','itemid',32386),(33640,'history_uint','itemid',32386),(33641,'trends','itemid',32386),(33642,'trends_uint','itemid',32386),(33643,'events','itemid',32387),(33644,'history','itemid',32387),(33645,'history_log','itemid',32387),(33646,'history_str','itemid',32387),(33647,'history_text','itemid',32387),(33648,'history_uint','itemid',32387),(33649,'trends','itemid',32387),(33650,'trends_uint','itemid',32387),(33651,'events','itemid',32388),(33652,'history','itemid',32388),(33653,'history_log','itemid',32388),(33654,'history_str','itemid',32388),(33655,'history_text','itemid',32388),(33656,'history_uint','itemid',32388),(33657,'trends','itemid',32388),(33658,'trends_uint','itemid',32388),(33659,'events','itemid',32389),(33660,'history','itemid',32389),(33661,'history_log','itemid',32389),(33662,'history_str','itemid',32389),(33663,'history_text','itemid',32389),(33664,'history_uint','itemid',32389),(33665,'trends','itemid',32389),(33666,'trends_uint','itemid',32389),(33667,'events','itemid',32390),(33668,'history','itemid',32390),(33669,'history_log','itemid',32390),(33670,'history_str','itemid',32390),(33671,'history_text','itemid',32390),(33672,'history_uint','itemid',32390),(33673,'trends','itemid',32390),(33674,'trends_uint','itemid',32390),(33675,'events','itemid',32391),(33676,'history','itemid',32391),(33677,'history_log','itemid',32391),(33678,'history_str','itemid',32391),(33679,'history_text','itemid',32391),(33680,'history_uint','itemid',32391),(33681,'trends','itemid',32391),(33682,'trends_uint','itemid',32391),(33683,'events','itemid',32392),(33684,'history','itemid',32392),(33685,'history_log','itemid',32392),(33686,'history_str','itemid',32392),(33687,'history_text','itemid',32392),(33688,'history_uint','itemid',32392),(33689,'trends','itemid',32392),(33690,'trends_uint','itemid',32392),(33691,'events','itemid',32393),(33692,'history','itemid',32393),(33693,'history_log','itemid',32393),(33694,'history_str','itemid',32393),(33695,'history_text','itemid',32393),(33696,'history_uint','itemid',32393),(33697,'trends','itemid',32393),(33698,'trends_uint','itemid',32393),(33699,'events','itemid',32394),(33700,'history','itemid',32394),(33701,'history_log','itemid',32394),(33702,'history_str','itemid',32394),(33703,'history_text','itemid',32394),(33704,'history_uint','itemid',32394),(33705,'trends','itemid',32394),(33706,'trends_uint','itemid',32394),(33707,'events','itemid',32395),(33708,'history','itemid',32395),(33709,'history_log','itemid',32395),(33710,'history_str','itemid',32395),(33711,'history_text','itemid',32395),(33712,'history_uint','itemid',32395),(33713,'trends','itemid',32395),(33714,'trends_uint','itemid',32395),(33715,'events','itemid',32396),(33716,'history','itemid',32396),(33717,'history_log','itemid',32396),(33718,'history_str','itemid',32396),(33719,'history_text','itemid',32396),(33720,'history_uint','itemid',32396),(33721,'trends','itemid',32396),(33722,'trends_uint','itemid',32396),(33723,'events','itemid',32397),(33724,'history','itemid',32397),(33725,'history_log','itemid',32397),(33726,'history_str','itemid',32397),(33727,'history_text','itemid',32397),(33728,'history_uint','itemid',32397),(33729,'trends','itemid',32397),(33730,'trends_uint','itemid',32397),(33731,'events','itemid',32398),(33732,'history','itemid',32398),(33733,'history_log','itemid',32398),(33734,'history_str','itemid',32398),(33735,'history_text','itemid',32398),(33736,'history_uint','itemid',32398),(33737,'trends','itemid',32398),(33738,'trends_uint','itemid',32398),(33739,'events','itemid',32399),(33740,'history','itemid',32399),(33741,'history_log','itemid',32399),(33742,'history_str','itemid',32399),(33743,'history_text','itemid',32399),(33744,'history_uint','itemid',32399),(33745,'trends','itemid',32399),(33746,'trends_uint','itemid',32399),(33747,'events','itemid',32400),(33748,'history','itemid',32400),(33749,'history_log','itemid',32400),(33750,'history_str','itemid',32400),(33751,'history_text','itemid',32400),(33752,'history_uint','itemid',32400),(33753,'trends','itemid',32400),(33754,'trends_uint','itemid',32400),(33755,'events','itemid',32401),(33756,'history','itemid',32401),(33757,'history_log','itemid',32401),(33758,'history_str','itemid',32401),(33759,'history_text','itemid',32401),(33760,'history_uint','itemid',32401),(33761,'trends','itemid',32401),(33762,'trends_uint','itemid',32401),(33763,'events','itemid',32402),(33764,'history','itemid',32402),(33765,'history_log','itemid',32402),(33766,'history_str','itemid',32402),(33767,'history_text','itemid',32402),(33768,'history_uint','itemid',32402),(33769,'trends','itemid',32402),(33770,'trends_uint','itemid',32402),(33771,'events','itemid',32403),(33772,'history','itemid',32403),(33773,'history_log','itemid',32403),(33774,'history_str','itemid',32403),(33775,'history_text','itemid',32403),(33776,'history_uint','itemid',32403),(33777,'trends','itemid',32403),(33778,'trends_uint','itemid',32403),(33779,'events','itemid',33126),(33780,'history','itemid',33126),(33781,'history_log','itemid',33126),(33782,'history_str','itemid',33126),(33783,'history_text','itemid',33126),(33784,'history_uint','itemid',33126),(33785,'trends','itemid',33126),(33786,'trends_uint','itemid',33126),(33787,'events','itemid',33127),(33788,'history','itemid',33127),(33789,'history_log','itemid',33127),(33790,'history_str','itemid',33127),(33791,'history_text','itemid',33127),(33792,'history_uint','itemid',33127),(33793,'trends','itemid',33127),(33794,'trends_uint','itemid',33127),(33795,'events','itemid',33128),(33796,'history','itemid',33128),(33797,'history_log','itemid',33128),(33798,'history_str','itemid',33128),(33799,'history_text','itemid',33128),(33800,'history_uint','itemid',33128),(33801,'trends','itemid',33128),(33802,'trends_uint','itemid',33128),(33803,'events','itemid',33129),(33804,'history','itemid',33129),(33805,'history_log','itemid',33129),(33806,'history_str','itemid',33129),(33807,'history_text','itemid',33129),(33808,'history_uint','itemid',33129),(33809,'trends','itemid',33129),(33810,'trends_uint','itemid',33129),(33811,'events','itemid',33130),(33812,'history','itemid',33130),(33813,'history_log','itemid',33130),(33814,'history_str','itemid',33130),(33815,'history_text','itemid',33130),(33816,'history_uint','itemid',33130),(33817,'trends','itemid',33130),(33818,'trends_uint','itemid',33130),(33819,'events','itemid',33131),(33820,'history','itemid',33131),(33821,'history_log','itemid',33131),(33822,'history_str','itemid',33131),(33823,'history_text','itemid',33131),(33824,'history_uint','itemid',33131),(33825,'trends','itemid',33131),(33826,'trends_uint','itemid',33131),(33827,'events','itemid',33132),(33828,'history','itemid',33132),(33829,'history_log','itemid',33132),(33830,'history_str','itemid',33132),(33831,'history_text','itemid',33132),(33832,'history_uint','itemid',33132),(33833,'trends','itemid',33132),(33834,'trends_uint','itemid',33132),(33835,'events','itemid',33140),(33836,'history','itemid',33140),(33837,'history_log','itemid',33140),(33838,'history_str','itemid',33140),(33839,'history_text','itemid',33140),(33840,'history_uint','itemid',33140),(33841,'trends','itemid',33140),(33842,'trends_uint','itemid',33140),(33843,'events','itemid',33141),(33844,'history','itemid',33141),(33845,'history_log','itemid',33141),(33846,'history_str','itemid',33141),(33847,'history_text','itemid',33141),(33848,'history_uint','itemid',33141),(33849,'trends','itemid',33141),(33850,'trends_uint','itemid',33141),(33851,'events','itemid',33142),(33852,'history','itemid',33142),(33853,'history_log','itemid',33142),(33854,'history_str','itemid',33142),(33855,'history_text','itemid',33142),(33856,'history_uint','itemid',33142),(33857,'trends','itemid',33142),(33858,'trends_uint','itemid',33142),(33859,'events','itemid',33143),(33860,'history','itemid',33143),(33861,'history_log','itemid',33143),(33862,'history_str','itemid',33143),(33863,'history_text','itemid',33143),(33864,'history_uint','itemid',33143),(33865,'trends','itemid',33143),(33866,'trends_uint','itemid',33143),(33867,'events','itemid',33144),(33868,'history','itemid',33144),(33869,'history_log','itemid',33144),(33870,'history_str','itemid',33144),(33871,'history_text','itemid',33144),(33872,'history_uint','itemid',33144),(33873,'trends','itemid',33144),(33874,'trends_uint','itemid',33144),(33875,'events','itemid',33145),(33876,'history','itemid',33145),(33877,'history_log','itemid',33145),(33878,'history_str','itemid',33145),(33879,'history_text','itemid',33145),(33880,'history_uint','itemid',33145),(33881,'trends','itemid',33145),(33882,'trends_uint','itemid',33145),(33883,'events','itemid',33146),(33884,'history','itemid',33146),(33885,'history_log','itemid',33146),(33886,'history_str','itemid',33146),(33887,'history_text','itemid',33146),(33888,'history_uint','itemid',33146),(33889,'trends','itemid',33146),(33890,'trends_uint','itemid',33146),(33891,'events','itemid',33154),(33892,'history','itemid',33154),(33893,'history_log','itemid',33154),(33894,'history_str','itemid',33154),(33895,'history_text','itemid',33154),(33896,'history_uint','itemid',33154),(33897,'trends','itemid',33154),(33898,'trends_uint','itemid',33154),(33899,'events','itemid',33155),(33900,'history','itemid',33155),(33901,'history_log','itemid',33155),(33902,'history_str','itemid',33155),(33903,'history_text','itemid',33155),(33904,'history_uint','itemid',33155),(33905,'trends','itemid',33155),(33906,'trends_uint','itemid',33155),(33907,'events','itemid',33156),(33908,'history','itemid',33156),(33909,'history_log','itemid',33156),(33910,'history_str','itemid',33156),(33911,'history_text','itemid',33156),(33912,'history_uint','itemid',33156),(33913,'trends','itemid',33156),(33914,'trends_uint','itemid',33156),(33915,'events','itemid',33157),(33916,'history','itemid',33157),(33917,'history_log','itemid',33157),(33918,'history_str','itemid',33157),(33919,'history_text','itemid',33157),(33920,'history_uint','itemid',33157),(33921,'trends','itemid',33157),(33922,'trends_uint','itemid',33157),(33923,'events','itemid',33158),(33924,'history','itemid',33158),(33925,'history_log','itemid',33158),(33926,'history_str','itemid',33158),(33927,'history_text','itemid',33158),(33928,'history_uint','itemid',33158),(33929,'trends','itemid',33158),(33930,'trends_uint','itemid',33158),(33931,'events','itemid',33159),(33932,'history','itemid',33159),(33933,'history_log','itemid',33159),(33934,'history_str','itemid',33159),(33935,'history_text','itemid',33159),(33936,'history_uint','itemid',33159),(33937,'trends','itemid',33159),(33938,'trends_uint','itemid',33159),(33939,'events','itemid',33160),(33940,'history','itemid',33160),(33941,'history_log','itemid',33160),(33942,'history_str','itemid',33160),(33943,'history_text','itemid',33160),(33944,'history_uint','itemid',33160),(33945,'trends','itemid',33160),(33946,'trends_uint','itemid',33160),(33947,'events','itemid',33184),(33948,'history','itemid',33184),(33949,'history_log','itemid',33184),(33950,'history_str','itemid',33184),(33951,'history_text','itemid',33184),(33952,'history_uint','itemid',33184),(33953,'trends','itemid',33184),(33954,'trends_uint','itemid',33184),(33955,'events','itemid',33185),(33956,'history','itemid',33185),(33957,'history_log','itemid',33185),(33958,'history_str','itemid',33185),(33959,'history_text','itemid',33185),(33960,'history_uint','itemid',33185),(33961,'trends','itemid',33185),(33962,'trends_uint','itemid',33185),(33963,'events','itemid',33186),(33964,'history','itemid',33186),(33965,'history_log','itemid',33186),(33966,'history_str','itemid',33186),(33967,'history_text','itemid',33186),(33968,'history_uint','itemid',33186),(33969,'trends','itemid',33186),(33970,'trends_uint','itemid',33186),(33971,'events','itemid',33187),(33972,'history','itemid',33187),(33973,'history_log','itemid',33187),(33974,'history_str','itemid',33187),(33975,'history_text','itemid',33187),(33976,'history_uint','itemid',33187),(33977,'trends','itemid',33187),(33978,'trends_uint','itemid',33187),(33979,'events','itemid',33188),(33980,'history','itemid',33188),(33981,'history_log','itemid',33188),(33982,'history_str','itemid',33188),(33983,'history_text','itemid',33188),(33984,'history_uint','itemid',33188),(33985,'trends','itemid',33188),(33986,'trends_uint','itemid',33188),(33987,'events','itemid',33189),(33988,'history','itemid',33189),(33989,'history_log','itemid',33189),(33990,'history_str','itemid',33189),(33991,'history_text','itemid',33189),(33992,'history_uint','itemid',33189),(33993,'trends','itemid',33189),(33994,'trends_uint','itemid',33189),(33995,'events','itemid',33190),(33996,'history','itemid',33190),(33997,'history_log','itemid',33190),(33998,'history_str','itemid',33190),(33999,'history_text','itemid',33190),(34000,'history_uint','itemid',33190),(34001,'trends','itemid',33190),(34002,'trends_uint','itemid',33190),(34003,'events','itemid',33191),(34004,'history','itemid',33191),(34005,'history_log','itemid',33191),(34006,'history_str','itemid',33191),(34007,'history_text','itemid',33191),(34008,'history_uint','itemid',33191),(34009,'trends','itemid',33191),(34010,'trends_uint','itemid',33191),(34011,'events','itemid',33192),(34012,'history','itemid',33192),(34013,'history_log','itemid',33192),(34014,'history_str','itemid',33192),(34015,'history_text','itemid',33192),(34016,'history_uint','itemid',33192),(34017,'trends','itemid',33192),(34018,'trends_uint','itemid',33192),(34019,'events','itemid',33193),(34020,'history','itemid',33193),(34021,'history_log','itemid',33193),(34022,'history_str','itemid',33193),(34023,'history_text','itemid',33193),(34024,'history_uint','itemid',33193),(34025,'trends','itemid',33193),(34026,'trends_uint','itemid',33193),(34027,'events','itemid',33194),(34028,'history','itemid',33194),(34029,'history_log','itemid',33194),(34030,'history_str','itemid',33194),(34031,'history_text','itemid',33194),(34032,'history_uint','itemid',33194),(34033,'trends','itemid',33194),(34034,'trends_uint','itemid',33194),(34035,'events','itemid',33195),(34036,'history','itemid',33195),(34037,'history_log','itemid',33195),(34038,'history_str','itemid',33195),(34039,'history_text','itemid',33195),(34040,'history_uint','itemid',33195),(34041,'trends','itemid',33195),(34042,'trends_uint','itemid',33195),(34043,'events','itemid',33196),(34044,'history','itemid',33196),(34045,'history_log','itemid',33196),(34046,'history_str','itemid',33196),(34047,'history_text','itemid',33196),(34048,'history_uint','itemid',33196),(34049,'trends','itemid',33196),(34050,'trends_uint','itemid',33196),(34051,'events','itemid',33197),(34052,'history','itemid',33197),(34053,'history_log','itemid',33197),(34054,'history_str','itemid',33197),(34055,'history_text','itemid',33197),(34056,'history_uint','itemid',33197),(34057,'trends','itemid',33197),(34058,'trends_uint','itemid',33197),(34059,'events','itemid',33198),(34060,'history','itemid',33198),(34061,'history_log','itemid',33198),(34062,'history_str','itemid',33198),(34063,'history_text','itemid',33198),(34064,'history_uint','itemid',33198),(34065,'trends','itemid',33198),(34066,'trends_uint','itemid',33198),(34067,'events','itemid',33199),(34068,'history','itemid',33199),(34069,'history_log','itemid',33199),(34070,'history_str','itemid',33199),(34071,'history_text','itemid',33199),(34072,'history_uint','itemid',33199),(34073,'trends','itemid',33199),(34074,'trends_uint','itemid',33199),(34075,'events','itemid',33200),(34076,'history','itemid',33200),(34077,'history_log','itemid',33200),(34078,'history_str','itemid',33200),(34079,'history_text','itemid',33200),(34080,'history_uint','itemid',33200),(34081,'trends','itemid',33200),(34082,'trends_uint','itemid',33200),(34083,'events','itemid',33201),(34084,'history','itemid',33201),(34085,'history_log','itemid',33201),(34086,'history_str','itemid',33201),(34087,'history_text','itemid',33201),(34088,'history_uint','itemid',33201),(34089,'trends','itemid',33201),(34090,'trends_uint','itemid',33201),(34091,'events','itemid',33202),(34092,'history','itemid',33202),(34093,'history_log','itemid',33202),(34094,'history_str','itemid',33202),(34095,'history_text','itemid',33202),(34096,'history_uint','itemid',33202),(34097,'trends','itemid',33202),(34098,'trends_uint','itemid',33202),(34099,'events','itemid',33203),(34100,'history','itemid',33203),(34101,'history_log','itemid',33203),(34102,'history_str','itemid',33203),(34103,'history_text','itemid',33203),(34104,'history_uint','itemid',33203),(34105,'trends','itemid',33203),(34106,'trends_uint','itemid',33203),(34107,'events','itemid',33204),(34108,'history','itemid',33204),(34109,'history_log','itemid',33204),(34110,'history_str','itemid',33204),(34111,'history_text','itemid',33204),(34112,'history_uint','itemid',33204),(34113,'trends','itemid',33204),(34114,'trends_uint','itemid',33204),(34115,'events','itemid',33207),(34116,'history','itemid',33207),(34117,'history_log','itemid',33207),(34118,'history_str','itemid',33207),(34119,'history_text','itemid',33207),(34120,'history_uint','itemid',33207),(34121,'trends','itemid',33207),(34122,'trends_uint','itemid',33207),(34123,'events','itemid',33208),(34124,'history','itemid',33208),(34125,'history_log','itemid',33208),(34126,'history_str','itemid',33208),(34127,'history_text','itemid',33208),(34128,'history_uint','itemid',33208),(34129,'trends','itemid',33208),(34130,'trends_uint','itemid',33208),(34131,'events','itemid',33209),(34132,'history','itemid',33209),(34133,'history_log','itemid',33209),(34134,'history_str','itemid',33209),(34135,'history_text','itemid',33209),(34136,'history_uint','itemid',33209),(34137,'trends','itemid',33209),(34138,'trends_uint','itemid',33209),(34139,'events','itemid',33210),(34140,'history','itemid',33210),(34141,'history_log','itemid',33210),(34142,'history_str','itemid',33210),(34143,'history_text','itemid',33210),(34144,'history_uint','itemid',33210),(34145,'trends','itemid',33210),(34146,'trends_uint','itemid',33210),(34147,'events','itemid',33211),(34148,'history','itemid',33211),(34149,'history_log','itemid',33211),(34150,'history_str','itemid',33211),(34151,'history_text','itemid',33211),(34152,'history_uint','itemid',33211),(34153,'trends','itemid',33211),(34154,'trends_uint','itemid',33211),(34155,'events','itemid',33212),(34156,'history','itemid',33212),(34157,'history_log','itemid',33212),(34158,'history_str','itemid',33212),(34159,'history_text','itemid',33212),(34160,'history_uint','itemid',33212),(34161,'trends','itemid',33212),(34162,'trends_uint','itemid',33212),(34163,'events','itemid',33213),(34164,'history','itemid',33213),(34165,'history_log','itemid',33213),(34166,'history_str','itemid',33213),(34167,'history_text','itemid',33213),(34168,'history_uint','itemid',33213),(34169,'trends','itemid',33213),(34170,'trends_uint','itemid',33213),(34171,'events','itemid',33214),(34172,'history','itemid',33214),(34173,'history_log','itemid',33214),(34174,'history_str','itemid',33214),(34175,'history_text','itemid',33214),(34176,'history_uint','itemid',33214),(34177,'trends','itemid',33214),(34178,'trends_uint','itemid',33214),(34179,'events','itemid',33215),(34180,'history','itemid',33215),(34181,'history_log','itemid',33215),(34182,'history_str','itemid',33215),(34183,'history_text','itemid',33215),(34184,'history_uint','itemid',33215),(34185,'trends','itemid',33215),(34186,'trends_uint','itemid',33215),(34187,'events','itemid',33216),(34188,'history','itemid',33216),(34189,'history_log','itemid',33216),(34190,'history_str','itemid',33216),(34191,'history_text','itemid',33216),(34192,'history_uint','itemid',33216),(34193,'trends','itemid',33216),(34194,'trends_uint','itemid',33216),(34195,'events','itemid',33217),(34196,'history','itemid',33217),(34197,'history_log','itemid',33217),(34198,'history_str','itemid',33217),(34199,'history_text','itemid',33217),(34200,'history_uint','itemid',33217),(34201,'trends','itemid',33217),(34202,'trends_uint','itemid',33217),(34203,'events','itemid',33218),(34204,'history','itemid',33218),(34205,'history_log','itemid',33218),(34206,'history_str','itemid',33218),(34207,'history_text','itemid',33218),(34208,'history_uint','itemid',33218),(34209,'trends','itemid',33218),(34210,'trends_uint','itemid',33218),(34211,'events','itemid',33219),(34212,'history','itemid',33219),(34213,'history_log','itemid',33219),(34214,'history_str','itemid',33219),(34215,'history_text','itemid',33219),(34216,'history_uint','itemid',33219),(34217,'trends','itemid',33219),(34218,'trends_uint','itemid',33219),(34219,'events','itemid',33220),(34220,'history','itemid',33220),(34221,'history_log','itemid',33220),(34222,'history_str','itemid',33220),(34223,'history_text','itemid',33220),(34224,'history_uint','itemid',33220),(34225,'trends','itemid',33220),(34226,'trends_uint','itemid',33220),(34227,'events','itemid',33221),(34228,'history','itemid',33221),(34229,'history_log','itemid',33221),(34230,'history_str','itemid',33221),(34231,'history_text','itemid',33221),(34232,'history_uint','itemid',33221),(34233,'trends','itemid',33221),(34234,'trends_uint','itemid',33221),(34235,'events','itemid',33222),(34236,'history','itemid',33222),(34237,'history_log','itemid',33222),(34238,'history_str','itemid',33222),(34239,'history_text','itemid',33222),(34240,'history_uint','itemid',33222),(34241,'trends','itemid',33222),(34242,'trends_uint','itemid',33222),(34243,'events','itemid',33223),(34244,'history','itemid',33223),(34245,'history_log','itemid',33223),(34246,'history_str','itemid',33223),(34247,'history_text','itemid',33223),(34248,'history_uint','itemid',33223),(34249,'trends','itemid',33223),(34250,'trends_uint','itemid',33223),(34251,'events','itemid',33224),(34252,'history','itemid',33224),(34253,'history_log','itemid',33224),(34254,'history_str','itemid',33224),(34255,'history_text','itemid',33224),(34256,'history_uint','itemid',33224),(34257,'trends','itemid',33224),(34258,'trends_uint','itemid',33224),(34259,'events','itemid',33227),(34260,'history','itemid',33227),(34261,'history_log','itemid',33227),(34262,'history_str','itemid',33227),(34263,'history_text','itemid',33227),(34264,'history_uint','itemid',33227),(34265,'trends','itemid',33227),(34266,'trends_uint','itemid',33227),(34267,'events','itemid',33228),(34268,'history','itemid',33228),(34269,'history_log','itemid',33228),(34270,'history_str','itemid',33228),(34271,'history_text','itemid',33228),(34272,'history_uint','itemid',33228),(34273,'trends','itemid',33228),(34274,'trends_uint','itemid',33228),(34275,'events','itemid',33229),(34276,'history','itemid',33229),(34277,'history_log','itemid',33229),(34278,'history_str','itemid',33229),(34279,'history_text','itemid',33229),(34280,'history_uint','itemid',33229),(34281,'trends','itemid',33229),(34282,'trends_uint','itemid',33229),(34283,'events','itemid',33230),(34284,'history','itemid',33230),(34285,'history_log','itemid',33230),(34286,'history_str','itemid',33230),(34287,'history_text','itemid',33230),(34288,'history_uint','itemid',33230),(34289,'trends','itemid',33230),(34290,'trends_uint','itemid',33230),(34291,'events','itemid',33231),(34292,'history','itemid',33231),(34293,'history_log','itemid',33231),(34294,'history_str','itemid',33231),(34295,'history_text','itemid',33231),(34296,'history_uint','itemid',33231),(34297,'trends','itemid',33231),(34298,'trends_uint','itemid',33231),(34299,'events','itemid',33232),(34300,'history','itemid',33232),(34301,'history_log','itemid',33232),(34302,'history_str','itemid',33232),(34303,'history_text','itemid',33232),(34304,'history_uint','itemid',33232),(34305,'trends','itemid',33232),(34306,'trends_uint','itemid',33232),(34307,'events','itemid',33233),(34308,'history','itemid',33233),(34309,'history_log','itemid',33233),(34310,'history_str','itemid',33233),(34311,'history_text','itemid',33233),(34312,'history_uint','itemid',33233),(34313,'trends','itemid',33233),(34314,'trends_uint','itemid',33233),(34315,'events','itemid',33234),(34316,'history','itemid',33234),(34317,'history_log','itemid',33234),(34318,'history_str','itemid',33234),(34319,'history_text','itemid',33234),(34320,'history_uint','itemid',33234),(34321,'trends','itemid',33234),(34322,'trends_uint','itemid',33234),(34323,'events','itemid',33235),(34324,'history','itemid',33235),(34325,'history_log','itemid',33235),(34326,'history_str','itemid',33235),(34327,'history_text','itemid',33235),(34328,'history_uint','itemid',33235),(34329,'trends','itemid',33235),(34330,'trends_uint','itemid',33235),(34331,'events','itemid',33236),(34332,'history','itemid',33236),(34333,'history_log','itemid',33236),(34334,'history_str','itemid',33236),(34335,'history_text','itemid',33236),(34336,'history_uint','itemid',33236),(34337,'trends','itemid',33236),(34338,'trends_uint','itemid',33236),(34339,'events','itemid',33237),(34340,'history','itemid',33237),(34341,'history_log','itemid',33237),(34342,'history_str','itemid',33237),(34343,'history_text','itemid',33237),(34344,'history_uint','itemid',33237),(34345,'trends','itemid',33237),(34346,'trends_uint','itemid',33237),(34347,'events','itemid',33238),(34348,'history','itemid',33238),(34349,'history_log','itemid',33238),(34350,'history_str','itemid',33238),(34351,'history_text','itemid',33238),(34352,'history_uint','itemid',33238),(34353,'trends','itemid',33238),(34354,'trends_uint','itemid',33238),(34355,'events','itemid',33239),(34356,'history','itemid',33239),(34357,'history_log','itemid',33239),(34358,'history_str','itemid',33239),(34359,'history_text','itemid',33239),(34360,'history_uint','itemid',33239),(34361,'trends','itemid',33239),(34362,'trends_uint','itemid',33239),(34363,'events','itemid',33240),(34364,'history','itemid',33240),(34365,'history_log','itemid',33240),(34366,'history_str','itemid',33240),(34367,'history_text','itemid',33240),(34368,'history_uint','itemid',33240),(34369,'trends','itemid',33240),(34370,'trends_uint','itemid',33240),(34371,'events','itemid',33241),(34372,'history','itemid',33241),(34373,'history_log','itemid',33241),(34374,'history_str','itemid',33241),(34375,'history_text','itemid',33241),(34376,'history_uint','itemid',33241),(34377,'trends','itemid',33241),(34378,'trends_uint','itemid',33241),(34379,'events','itemid',33242),(34380,'history','itemid',33242),(34381,'history_log','itemid',33242),(34382,'history_str','itemid',33242),(34383,'history_text','itemid',33242),(34384,'history_uint','itemid',33242),(34385,'trends','itemid',33242),(34386,'trends_uint','itemid',33242),(34387,'events','itemid',33243),(34388,'history','itemid',33243),(34389,'history_log','itemid',33243),(34390,'history_str','itemid',33243),(34391,'history_text','itemid',33243),(34392,'history_uint','itemid',33243),(34393,'trends','itemid',33243),(34394,'trends_uint','itemid',33243),(34395,'events','itemid',33244),(34396,'history','itemid',33244),(34397,'history_log','itemid',33244),(34398,'history_str','itemid',33244),(34399,'history_text','itemid',33244),(34400,'history_uint','itemid',33244),(34401,'trends','itemid',33244),(34402,'trends_uint','itemid',33244),(34403,'events','itemid',33245),(34404,'history','itemid',33245),(34405,'history_log','itemid',33245),(34406,'history_str','itemid',33245),(34407,'history_text','itemid',33245),(34408,'history_uint','itemid',33245),(34409,'trends','itemid',33245),(34410,'trends_uint','itemid',33245),(34411,'events','itemid',33246),(34412,'history','itemid',33246),(34413,'history_log','itemid',33246),(34414,'history_str','itemid',33246),(34415,'history_text','itemid',33246),(34416,'history_uint','itemid',33246),(34417,'trends','itemid',33246),(34418,'trends_uint','itemid',33246),(34419,'events','itemid',33247),(34420,'history','itemid',33247),(34421,'history_log','itemid',33247),(34422,'history_str','itemid',33247),(34423,'history_text','itemid',33247),(34424,'history_uint','itemid',33247),(34425,'trends','itemid',33247),(34426,'trends_uint','itemid',33247),(34427,'events','itemid',33250),(34428,'history','itemid',33250),(34429,'history_log','itemid',33250),(34430,'history_str','itemid',33250),(34431,'history_text','itemid',33250),(34432,'history_uint','itemid',33250),(34433,'trends','itemid',33250),(34434,'trends_uint','itemid',33250),(34435,'events','itemid',33251),(34436,'history','itemid',33251),(34437,'history_log','itemid',33251),(34438,'history_str','itemid',33251),(34439,'history_text','itemid',33251),(34440,'history_uint','itemid',33251),(34441,'trends','itemid',33251),(34442,'trends_uint','itemid',33251),(34443,'events','itemid',33252),(34444,'history','itemid',33252),(34445,'history_log','itemid',33252),(34446,'history_str','itemid',33252),(34447,'history_text','itemid',33252),(34448,'history_uint','itemid',33252),(34449,'trends','itemid',33252),(34450,'trends_uint','itemid',33252),(34451,'events','itemid',33253),(34452,'history','itemid',33253),(34453,'history_log','itemid',33253),(34454,'history_str','itemid',33253),(34455,'history_text','itemid',33253),(34456,'history_uint','itemid',33253),(34457,'trends','itemid',33253),(34458,'trends_uint','itemid',33253),(34459,'events','itemid',33254),(34460,'history','itemid',33254),(34461,'history_log','itemid',33254),(34462,'history_str','itemid',33254),(34463,'history_text','itemid',33254),(34464,'history_uint','itemid',33254),(34465,'trends','itemid',33254),(34466,'trends_uint','itemid',33254),(34467,'events','itemid',33255),(34468,'history','itemid',33255),(34469,'history_log','itemid',33255),(34470,'history_str','itemid',33255),(34471,'history_text','itemid',33255),(34472,'history_uint','itemid',33255),(34473,'trends','itemid',33255),(34474,'trends_uint','itemid',33255),(34475,'events','itemid',33256),(34476,'history','itemid',33256),(34477,'history_log','itemid',33256),(34478,'history_str','itemid',33256),(34479,'history_text','itemid',33256),(34480,'history_uint','itemid',33256),(34481,'trends','itemid',33256),(34482,'trends_uint','itemid',33256),(34483,'events','itemid',33259),(34484,'history','itemid',33259),(34485,'history_log','itemid',33259),(34486,'history_str','itemid',33259),(34487,'history_text','itemid',33259),(34488,'history_uint','itemid',33259),(34489,'trends','itemid',33259),(34490,'trends_uint','itemid',33259),(34491,'events','itemid',33260),(34492,'history','itemid',33260),(34493,'history_log','itemid',33260),(34494,'history_str','itemid',33260),(34495,'history_text','itemid',33260),(34496,'history_uint','itemid',33260),(34497,'trends','itemid',33260),(34498,'trends_uint','itemid',33260),(34499,'events','itemid',33261),(34500,'history','itemid',33261),(34501,'history_log','itemid',33261),(34502,'history_str','itemid',33261),(34503,'history_text','itemid',33261),(34504,'history_uint','itemid',33261),(34505,'trends','itemid',33261),(34506,'trends_uint','itemid',33261),(34507,'events','itemid',33262),(34508,'history','itemid',33262),(34509,'history_log','itemid',33262),(34510,'history_str','itemid',33262),(34511,'history_text','itemid',33262),(34512,'history_uint','itemid',33262),(34513,'trends','itemid',33262),(34514,'trends_uint','itemid',33262),(34515,'events','itemid',33263),(34516,'history','itemid',33263),(34517,'history_log','itemid',33263),(34518,'history_str','itemid',33263),(34519,'history_text','itemid',33263),(34520,'history_uint','itemid',33263),(34521,'trends','itemid',33263),(34522,'trends_uint','itemid',33263),(34523,'events','itemid',33264),(34524,'history','itemid',33264),(34525,'history_log','itemid',33264),(34526,'history_str','itemid',33264),(34527,'history_text','itemid',33264),(34528,'history_uint','itemid',33264),(34529,'trends','itemid',33264),(34530,'trends_uint','itemid',33264),(34531,'events','itemid',33265),(34532,'history','itemid',33265),(34533,'history_log','itemid',33265),(34534,'history_str','itemid',33265),(34535,'history_text','itemid',33265),(34536,'history_uint','itemid',33265),(34537,'trends','itemid',33265),(34538,'trends_uint','itemid',33265),(34539,'events','itemid',33266),(34540,'history','itemid',33266),(34541,'history_log','itemid',33266),(34542,'history_str','itemid',33266),(34543,'history_text','itemid',33266),(34544,'history_uint','itemid',33266),(34545,'trends','itemid',33266),(34546,'trends_uint','itemid',33266),(34547,'events','itemid',33267),(34548,'history','itemid',33267),(34549,'history_log','itemid',33267),(34550,'history_str','itemid',33267),(34551,'history_text','itemid',33267),(34552,'history_uint','itemid',33267),(34553,'trends','itemid',33267),(34554,'trends_uint','itemid',33267),(34555,'events','itemid',33268),(34556,'history','itemid',33268),(34557,'history_log','itemid',33268),(34558,'history_str','itemid',33268),(34559,'history_text','itemid',33268),(34560,'history_uint','itemid',33268),(34561,'trends','itemid',33268),(34562,'trends_uint','itemid',33268),(34563,'events','itemid',33269),(34564,'history','itemid',33269),(34565,'history_log','itemid',33269),(34566,'history_str','itemid',33269),(34567,'history_text','itemid',33269),(34568,'history_uint','itemid',33269),(34569,'trends','itemid',33269),(34570,'trends_uint','itemid',33269),(34571,'events','itemid',33270),(34572,'history','itemid',33270),(34573,'history_log','itemid',33270),(34574,'history_str','itemid',33270),(34575,'history_text','itemid',33270),(34576,'history_uint','itemid',33270),(34577,'trends','itemid',33270),(34578,'trends_uint','itemid',33270),(34579,'events','itemid',33271),(34580,'history','itemid',33271),(34581,'history_log','itemid',33271),(34582,'history_str','itemid',33271),(34583,'history_text','itemid',33271),(34584,'history_uint','itemid',33271),(34585,'trends','itemid',33271),(34586,'trends_uint','itemid',33271),(34587,'events','itemid',33272),(34588,'history','itemid',33272),(34589,'history_log','itemid',33272),(34590,'history_str','itemid',33272),(34591,'history_text','itemid',33272),(34592,'history_uint','itemid',33272),(34593,'trends','itemid',33272),(34594,'trends_uint','itemid',33272),(34595,'events','itemid',33273),(34596,'history','itemid',33273),(34597,'history_log','itemid',33273),(34598,'history_str','itemid',33273),(34599,'history_text','itemid',33273),(34600,'history_uint','itemid',33273),(34601,'trends','itemid',33273),(34602,'trends_uint','itemid',33273),(34603,'events','itemid',33274),(34604,'history','itemid',33274),(34605,'history_log','itemid',33274),(34606,'history_str','itemid',33274),(34607,'history_text','itemid',33274),(34608,'history_uint','itemid',33274),(34609,'trends','itemid',33274),(34610,'trends_uint','itemid',33274),(34611,'events','itemid',33275),(34612,'history','itemid',33275),(34613,'history_log','itemid',33275),(34614,'history_str','itemid',33275),(34615,'history_text','itemid',33275),(34616,'history_uint','itemid',33275),(34617,'trends','itemid',33275),(34618,'trends_uint','itemid',33275),(34619,'events','itemid',33278),(34620,'history','itemid',33278),(34621,'history_log','itemid',33278),(34622,'history_str','itemid',33278),(34623,'history_text','itemid',33278),(34624,'history_uint','itemid',33278),(34625,'trends','itemid',33278),(34626,'trends_uint','itemid',33278),(34627,'events','itemid',33279),(34628,'history','itemid',33279),(34629,'history_log','itemid',33279),(34630,'history_str','itemid',33279),(34631,'history_text','itemid',33279),(34632,'history_uint','itemid',33279),(34633,'trends','itemid',33279),(34634,'trends_uint','itemid',33279),(34635,'events','itemid',33280),(34636,'history','itemid',33280),(34637,'history_log','itemid',33280),(34638,'history_str','itemid',33280),(34639,'history_text','itemid',33280),(34640,'history_uint','itemid',33280),(34641,'trends','itemid',33280),(34642,'trends_uint','itemid',33280),(34643,'events','itemid',33281),(34644,'history','itemid',33281),(34645,'history_log','itemid',33281),(34646,'history_str','itemid',33281),(34647,'history_text','itemid',33281),(34648,'history_uint','itemid',33281),(34649,'trends','itemid',33281),(34650,'trends_uint','itemid',33281),(34651,'events','itemid',33282),(34652,'history','itemid',33282),(34653,'history_log','itemid',33282),(34654,'history_str','itemid',33282),(34655,'history_text','itemid',33282),(34656,'history_uint','itemid',33282),(34657,'trends','itemid',33282),(34658,'trends_uint','itemid',33282),(34659,'events','itemid',33283),(34660,'history','itemid',33283),(34661,'history_log','itemid',33283),(34662,'history_str','itemid',33283),(34663,'history_text','itemid',33283),(34664,'history_uint','itemid',33283),(34665,'trends','itemid',33283),(34666,'trends_uint','itemid',33283),(34667,'events','itemid',33284),(34668,'history','itemid',33284),(34669,'history_log','itemid',33284),(34670,'history_str','itemid',33284),(34671,'history_text','itemid',33284),(34672,'history_uint','itemid',33284),(34673,'trends','itemid',33284),(34674,'trends_uint','itemid',33284),(34675,'events','itemid',33285),(34676,'history','itemid',33285),(34677,'history_log','itemid',33285),(34678,'history_str','itemid',33285),(34679,'history_text','itemid',33285),(34680,'history_uint','itemid',33285),(34681,'trends','itemid',33285),(34682,'trends_uint','itemid',33285),(34683,'events','itemid',33286),(34684,'history','itemid',33286),(34685,'history_log','itemid',33286),(34686,'history_str','itemid',33286),(34687,'history_text','itemid',33286),(34688,'history_uint','itemid',33286),(34689,'trends','itemid',33286),(34690,'trends_uint','itemid',33286),(34691,'events','itemid',33287),(34692,'history','itemid',33287),(34693,'history_log','itemid',33287),(34694,'history_str','itemid',33287),(34695,'history_text','itemid',33287),(34696,'history_uint','itemid',33287),(34697,'trends','itemid',33287),(34698,'trends_uint','itemid',33287),(34699,'events','itemid',33288),(34700,'history','itemid',33288),(34701,'history_log','itemid',33288),(34702,'history_str','itemid',33288),(34703,'history_text','itemid',33288),(34704,'history_uint','itemid',33288),(34705,'trends','itemid',33288),(34706,'trends_uint','itemid',33288),(34707,'events','itemid',33289),(34708,'history','itemid',33289),(34709,'history_log','itemid',33289),(34710,'history_str','itemid',33289),(34711,'history_text','itemid',33289),(34712,'history_uint','itemid',33289),(34713,'trends','itemid',33289),(34714,'trends_uint','itemid',33289),(34715,'events','itemid',33290),(34716,'history','itemid',33290),(34717,'history_log','itemid',33290),(34718,'history_str','itemid',33290),(34719,'history_text','itemid',33290),(34720,'history_uint','itemid',33290),(34721,'trends','itemid',33290),(34722,'trends_uint','itemid',33290),(34723,'events','itemid',33291),(34724,'history','itemid',33291),(34725,'history_log','itemid',33291),(34726,'history_str','itemid',33291),(34727,'history_text','itemid',33291),(34728,'history_uint','itemid',33291),(34729,'trends','itemid',33291),(34730,'trends_uint','itemid',33291),(34731,'events','itemid',33292),(34732,'history','itemid',33292),(34733,'history_log','itemid',33292),(34734,'history_str','itemid',33292),(34735,'history_text','itemid',33292),(34736,'history_uint','itemid',33292),(34737,'trends','itemid',33292),(34738,'trends_uint','itemid',33292),(34739,'events','itemid',33293),(34740,'history','itemid',33293),(34741,'history_log','itemid',33293),(34742,'history_str','itemid',33293),(34743,'history_text','itemid',33293),(34744,'history_uint','itemid',33293),(34745,'trends','itemid',33293),(34746,'trends_uint','itemid',33293),(34747,'events','itemid',33294),(34748,'history','itemid',33294),(34749,'history_log','itemid',33294),(34750,'history_str','itemid',33294),(34751,'history_text','itemid',33294),(34752,'history_uint','itemid',33294),(34753,'trends','itemid',33294),(34754,'trends_uint','itemid',33294),(34755,'events','itemid',33297),(34756,'history','itemid',33297),(34757,'history_log','itemid',33297),(34758,'history_str','itemid',33297),(34759,'history_text','itemid',33297),(34760,'history_uint','itemid',33297),(34761,'trends','itemid',33297),(34762,'trends_uint','itemid',33297),(34763,'events','itemid',33298),(34764,'history','itemid',33298),(34765,'history_log','itemid',33298),(34766,'history_str','itemid',33298),(34767,'history_text','itemid',33298),(34768,'history_uint','itemid',33298),(34769,'trends','itemid',33298),(34770,'trends_uint','itemid',33298),(34771,'events','itemid',33299),(34772,'history','itemid',33299),(34773,'history_log','itemid',33299),(34774,'history_str','itemid',33299),(34775,'history_text','itemid',33299),(34776,'history_uint','itemid',33299),(34777,'trends','itemid',33299),(34778,'trends_uint','itemid',33299),(34779,'events','itemid',33300),(34780,'history','itemid',33300),(34781,'history_log','itemid',33300),(34782,'history_str','itemid',33300),(34783,'history_text','itemid',33300),(34784,'history_uint','itemid',33300),(34785,'trends','itemid',33300),(34786,'trends_uint','itemid',33300),(34787,'events','itemid',33301),(34788,'history','itemid',33301),(34789,'history_log','itemid',33301),(34790,'history_str','itemid',33301),(34791,'history_text','itemid',33301),(34792,'history_uint','itemid',33301),(34793,'trends','itemid',33301),(34794,'trends_uint','itemid',33301),(34795,'events','itemid',33302),(34796,'history','itemid',33302),(34797,'history_log','itemid',33302),(34798,'history_str','itemid',33302),(34799,'history_text','itemid',33302),(34800,'history_uint','itemid',33302),(34801,'trends','itemid',33302),(34802,'trends_uint','itemid',33302),(34803,'events','itemid',33303),(34804,'history','itemid',33303),(34805,'history_log','itemid',33303),(34806,'history_str','itemid',33303),(34807,'history_text','itemid',33303),(34808,'history_uint','itemid',33303),(34809,'trends','itemid',33303),(34810,'trends_uint','itemid',33303),(34811,'events','itemid',33304),(34812,'history','itemid',33304),(34813,'history_log','itemid',33304),(34814,'history_str','itemid',33304),(34815,'history_text','itemid',33304),(34816,'history_uint','itemid',33304),(34817,'trends','itemid',33304),(34818,'trends_uint','itemid',33304),(34819,'events','itemid',33305),(34820,'history','itemid',33305),(34821,'history_log','itemid',33305),(34822,'history_str','itemid',33305),(34823,'history_text','itemid',33305),(34824,'history_uint','itemid',33305),(34825,'trends','itemid',33305),(34826,'trends_uint','itemid',33305),(34827,'events','itemid',33348),(34828,'history','itemid',33348),(34829,'history_log','itemid',33348),(34830,'history_str','itemid',33348),(34831,'history_text','itemid',33348),(34832,'history_uint','itemid',33348),(34833,'trends','itemid',33348),(34834,'trends_uint','itemid',33348),(34835,'events','itemid',33349),(34836,'history','itemid',33349),(34837,'history_log','itemid',33349),(34838,'history_str','itemid',33349),(34839,'history_text','itemid',33349),(34840,'history_uint','itemid',33349),(34841,'trends','itemid',33349),(34842,'trends_uint','itemid',33349),(34843,'events','itemid',33350),(34844,'history','itemid',33350),(34845,'history_log','itemid',33350),(34846,'history_str','itemid',33350),(34847,'history_text','itemid',33350),(34848,'history_uint','itemid',33350),(34849,'trends','itemid',33350),(34850,'trends_uint','itemid',33350),(34851,'events','itemid',33351),(34852,'history','itemid',33351),(34853,'history_log','itemid',33351),(34854,'history_str','itemid',33351),(34855,'history_text','itemid',33351),(34856,'history_uint','itemid',33351),(34857,'trends','itemid',33351),(34858,'trends_uint','itemid',33351),(34859,'events','itemid',33764),(34860,'history','itemid',33764),(34861,'history_log','itemid',33764),(34862,'history_str','itemid',33764),(34863,'history_text','itemid',33764),(34864,'history_uint','itemid',33764),(34865,'trends','itemid',33764),(34866,'trends_uint','itemid',33764),(34867,'events','itemid',33765),(34868,'history','itemid',33765),(34869,'history_log','itemid',33765),(34870,'history_str','itemid',33765),(34871,'history_text','itemid',33765),(34872,'history_uint','itemid',33765),(34873,'trends','itemid',33765),(34874,'trends_uint','itemid',33765),(34875,'events','itemid',33766),(34876,'history','itemid',33766),(34877,'history_log','itemid',33766),(34878,'history_str','itemid',33766),(34879,'history_text','itemid',33766),(34880,'history_uint','itemid',33766),(34881,'trends','itemid',33766),(34882,'trends_uint','itemid',33766),(34883,'events','itemid',33767),(34884,'history','itemid',33767),(34885,'history_log','itemid',33767),(34886,'history_str','itemid',33767),(34887,'history_text','itemid',33767),(34888,'history_uint','itemid',33767),(34889,'trends','itemid',33767),(34890,'trends_uint','itemid',33767),(34891,'events','itemid',33768),(34892,'history','itemid',33768),(34893,'history_log','itemid',33768),(34894,'history_str','itemid',33768),(34895,'history_text','itemid',33768),(34896,'history_uint','itemid',33768),(34897,'trends','itemid',33768),(34898,'trends_uint','itemid',33768),(34899,'events','itemid',33769),(34900,'history','itemid',33769),(34901,'history_log','itemid',33769),(34902,'history_str','itemid',33769),(34903,'history_text','itemid',33769),(34904,'history_uint','itemid',33769),(34905,'trends','itemid',33769),(34906,'trends_uint','itemid',33769),(34907,'events','itemid',33770),(34908,'history','itemid',33770),(34909,'history_log','itemid',33770),(34910,'history_str','itemid',33770),(34911,'history_text','itemid',33770),(34912,'history_uint','itemid',33770),(34913,'trends','itemid',33770),(34914,'trends_uint','itemid',33770),(34915,'events','itemid',33771),(34916,'history','itemid',33771),(34917,'history_log','itemid',33771),(34918,'history_str','itemid',33771),(34919,'history_text','itemid',33771),(34920,'history_uint','itemid',33771),(34921,'trends','itemid',33771),(34922,'trends_uint','itemid',33771),(34923,'events','itemid',33772),(34924,'history','itemid',33772),(34925,'history_log','itemid',33772),(34926,'history_str','itemid',33772),(34927,'history_text','itemid',33772),(34928,'history_uint','itemid',33772),(34929,'trends','itemid',33772),(34930,'trends_uint','itemid',33772),(34931,'events','itemid',33773),(34932,'history','itemid',33773),(34933,'history_log','itemid',33773),(34934,'history_str','itemid',33773),(34935,'history_text','itemid',33773),(34936,'history_uint','itemid',33773),(34937,'trends','itemid',33773),(34938,'trends_uint','itemid',33773),(34939,'events','itemid',33774),(34940,'history','itemid',33774),(34941,'history_log','itemid',33774),(34942,'history_str','itemid',33774),(34943,'history_text','itemid',33774),(34944,'history_uint','itemid',33774),(34945,'trends','itemid',33774),(34946,'trends_uint','itemid',33774),(34947,'events','itemid',33775),(34948,'history','itemid',33775),(34949,'history_log','itemid',33775),(34950,'history_str','itemid',33775),(34951,'history_text','itemid',33775),(34952,'history_uint','itemid',33775),(34953,'trends','itemid',33775),(34954,'trends_uint','itemid',33775),(34955,'events','itemid',33776),(34956,'history','itemid',33776),(34957,'history_log','itemid',33776),(34958,'history_str','itemid',33776),(34959,'history_text','itemid',33776),(34960,'history_uint','itemid',33776),(34961,'trends','itemid',33776),(34962,'trends_uint','itemid',33776),(34963,'events','itemid',33777),(34964,'history','itemid',33777),(34965,'history_log','itemid',33777),(34966,'history_str','itemid',33777),(34967,'history_text','itemid',33777),(34968,'history_uint','itemid',33777),(34969,'trends','itemid',33777),(34970,'trends_uint','itemid',33777),(34971,'events','itemid',33778),(34972,'history','itemid',33778),(34973,'history_log','itemid',33778),(34974,'history_str','itemid',33778),(34975,'history_text','itemid',33778),(34976,'history_uint','itemid',33778),(34977,'trends','itemid',33778),(34978,'trends_uint','itemid',33778),(34979,'events','itemid',33779),(34980,'history','itemid',33779),(34981,'history_log','itemid',33779),(34982,'history_str','itemid',33779),(34983,'history_text','itemid',33779),(34984,'history_uint','itemid',33779),(34985,'trends','itemid',33779),(34986,'trends_uint','itemid',33779),(34987,'events','itemid',33780),(34988,'history','itemid',33780),(34989,'history_log','itemid',33780),(34990,'history_str','itemid',33780),(34991,'history_text','itemid',33780),(34992,'history_uint','itemid',33780),(34993,'trends','itemid',33780),(34994,'trends_uint','itemid',33780),(34995,'events','itemid',33781),(34996,'history','itemid',33781),(34997,'history_log','itemid',33781),(34998,'history_str','itemid',33781),(34999,'history_text','itemid',33781),(35000,'history_uint','itemid',33781),(35001,'trends','itemid',33781),(35002,'trends_uint','itemid',33781),(35003,'events','itemid',33782),(35004,'history','itemid',33782),(35005,'history_log','itemid',33782),(35006,'history_str','itemid',33782),(35007,'history_text','itemid',33782),(35008,'history_uint','itemid',33782),(35009,'trends','itemid',33782),(35010,'trends_uint','itemid',33782),(35011,'events','itemid',33783),(35012,'history','itemid',33783),(35013,'history_log','itemid',33783),(35014,'history_str','itemid',33783),(35015,'history_text','itemid',33783),(35016,'history_uint','itemid',33783),(35017,'trends','itemid',33783),(35018,'trends_uint','itemid',33783),(35019,'events','itemid',33784),(35020,'history','itemid',33784),(35021,'history_log','itemid',33784),(35022,'history_str','itemid',33784),(35023,'history_text','itemid',33784),(35024,'history_uint','itemid',33784),(35025,'trends','itemid',33784),(35026,'trends_uint','itemid',33784),(35027,'events','itemid',33785),(35028,'history','itemid',33785),(35029,'history_log','itemid',33785),(35030,'history_str','itemid',33785),(35031,'history_text','itemid',33785),(35032,'history_uint','itemid',33785),(35033,'trends','itemid',33785),(35034,'trends_uint','itemid',33785),(35035,'events','itemid',33786),(35036,'history','itemid',33786),(35037,'history_log','itemid',33786),(35038,'history_str','itemid',33786),(35039,'history_text','itemid',33786),(35040,'history_uint','itemid',33786),(35041,'trends','itemid',33786),(35042,'trends_uint','itemid',33786),(35043,'events','itemid',33787),(35044,'history','itemid',33787),(35045,'history_log','itemid',33787),(35046,'history_str','itemid',33787),(35047,'history_text','itemid',33787),(35048,'history_uint','itemid',33787),(35049,'trends','itemid',33787),(35050,'trends_uint','itemid',33787),(35051,'events','itemid',33788),(35052,'history','itemid',33788),(35053,'history_log','itemid',33788),(35054,'history_str','itemid',33788),(35055,'history_text','itemid',33788),(35056,'history_uint','itemid',33788),(35057,'trends','itemid',33788),(35058,'trends_uint','itemid',33788),(35059,'events','itemid',33789),(35060,'history','itemid',33789),(35061,'history_log','itemid',33789),(35062,'history_str','itemid',33789),(35063,'history_text','itemid',33789),(35064,'history_uint','itemid',33789),(35065,'trends','itemid',33789),(35066,'trends_uint','itemid',33789),(35067,'events','itemid',33790),(35068,'history','itemid',33790),(35069,'history_log','itemid',33790),(35070,'history_str','itemid',33790),(35071,'history_text','itemid',33790),(35072,'history_uint','itemid',33790),(35073,'trends','itemid',33790),(35074,'trends_uint','itemid',33790),(35075,'events','itemid',33791),(35076,'history','itemid',33791),(35077,'history_log','itemid',33791),(35078,'history_str','itemid',33791),(35079,'history_text','itemid',33791),(35080,'history_uint','itemid',33791),(35081,'trends','itemid',33791),(35082,'trends_uint','itemid',33791),(35083,'events','itemid',33792),(35084,'history','itemid',33792),(35085,'history_log','itemid',33792),(35086,'history_str','itemid',33792),(35087,'history_text','itemid',33792),(35088,'history_uint','itemid',33792),(35089,'trends','itemid',33792),(35090,'trends_uint','itemid',33792),(35091,'events','itemid',33793),(35092,'history','itemid',33793),(35093,'history_log','itemid',33793),(35094,'history_str','itemid',33793),(35095,'history_text','itemid',33793),(35096,'history_uint','itemid',33793),(35097,'trends','itemid',33793),(35098,'trends_uint','itemid',33793),(35099,'events','itemid',33794),(35100,'history','itemid',33794),(35101,'history_log','itemid',33794),(35102,'history_str','itemid',33794),(35103,'history_text','itemid',33794),(35104,'history_uint','itemid',33794),(35105,'trends','itemid',33794),(35106,'trends_uint','itemid',33794),(35107,'events','itemid',33795),(35108,'history','itemid',33795),(35109,'history_log','itemid',33795),(35110,'history_str','itemid',33795),(35111,'history_text','itemid',33795),(35112,'history_uint','itemid',33795),(35113,'trends','itemid',33795),(35114,'trends_uint','itemid',33795),(35115,'events','itemid',33796),(35116,'history','itemid',33796),(35117,'history_log','itemid',33796),(35118,'history_str','itemid',33796),(35119,'history_text','itemid',33796),(35120,'history_uint','itemid',33796),(35121,'trends','itemid',33796),(35122,'trends_uint','itemid',33796),(35123,'events','itemid',33797),(35124,'history','itemid',33797),(35125,'history_log','itemid',33797),(35126,'history_str','itemid',33797),(35127,'history_text','itemid',33797),(35128,'history_uint','itemid',33797),(35129,'trends','itemid',33797),(35130,'trends_uint','itemid',33797),(35131,'events','itemid',33798),(35132,'history','itemid',33798),(35133,'history_log','itemid',33798),(35134,'history_str','itemid',33798),(35135,'history_text','itemid',33798),(35136,'history_uint','itemid',33798),(35137,'trends','itemid',33798),(35138,'trends_uint','itemid',33798),(35139,'events','itemid',33799),(35140,'history','itemid',33799),(35141,'history_log','itemid',33799),(35142,'history_str','itemid',33799),(35143,'history_text','itemid',33799),(35144,'history_uint','itemid',33799),(35145,'trends','itemid',33799),(35146,'trends_uint','itemid',33799),(35147,'events','itemid',33800),(35148,'history','itemid',33800),(35149,'history_log','itemid',33800),(35150,'history_str','itemid',33800),(35151,'history_text','itemid',33800),(35152,'history_uint','itemid',33800),(35153,'trends','itemid',33800),(35154,'trends_uint','itemid',33800),(35155,'events','itemid',33801),(35156,'history','itemid',33801),(35157,'history_log','itemid',33801),(35158,'history_str','itemid',33801),(35159,'history_text','itemid',33801),(35160,'history_uint','itemid',33801),(35161,'trends','itemid',33801),(35162,'trends_uint','itemid',33801),(35163,'events','itemid',33802),(35164,'history','itemid',33802),(35165,'history_log','itemid',33802),(35166,'history_str','itemid',33802),(35167,'history_text','itemid',33802),(35168,'history_uint','itemid',33802),(35169,'trends','itemid',33802),(35170,'trends_uint','itemid',33802),(35171,'events','itemid',33803),(35172,'history','itemid',33803),(35173,'history_log','itemid',33803),(35174,'history_str','itemid',33803),(35175,'history_text','itemid',33803),(35176,'history_uint','itemid',33803),(35177,'trends','itemid',33803),(35178,'trends_uint','itemid',33803),(35179,'events','itemid',33804),(35180,'history','itemid',33804),(35181,'history_log','itemid',33804),(35182,'history_str','itemid',33804),(35183,'history_text','itemid',33804),(35184,'history_uint','itemid',33804),(35185,'trends','itemid',33804),(35186,'trends_uint','itemid',33804),(35187,'events','itemid',33805),(35188,'history','itemid',33805),(35189,'history_log','itemid',33805),(35190,'history_str','itemid',33805),(35191,'history_text','itemid',33805),(35192,'history_uint','itemid',33805),(35193,'trends','itemid',33805),(35194,'trends_uint','itemid',33805),(35195,'events','itemid',33806),(35196,'history','itemid',33806),(35197,'history_log','itemid',33806),(35198,'history_str','itemid',33806),(35199,'history_text','itemid',33806),(35200,'history_uint','itemid',33806),(35201,'trends','itemid',33806),(35202,'trends_uint','itemid',33806),(35203,'events','itemid',33807),(35204,'history','itemid',33807),(35205,'history_log','itemid',33807),(35206,'history_str','itemid',33807),(35207,'history_text','itemid',33807),(35208,'history_uint','itemid',33807),(35209,'trends','itemid',33807),(35210,'trends_uint','itemid',33807),(35211,'events','itemid',33886),(35212,'history','itemid',33886),(35213,'history_log','itemid',33886),(35214,'history_str','itemid',33886),(35215,'history_text','itemid',33886),(35216,'history_uint','itemid',33886),(35217,'trends','itemid',33886),(35218,'trends_uint','itemid',33886),(35219,'events','itemid',33887),(35220,'history','itemid',33887),(35221,'history_log','itemid',33887),(35222,'history_str','itemid',33887),(35223,'history_text','itemid',33887),(35224,'history_uint','itemid',33887),(35225,'trends','itemid',33887),(35226,'trends_uint','itemid',33887),(35227,'events','itemid',33888),(35228,'history','itemid',33888),(35229,'history_log','itemid',33888),(35230,'history_str','itemid',33888),(35231,'history_text','itemid',33888),(35232,'history_uint','itemid',33888),(35233,'trends','itemid',33888),(35234,'trends_uint','itemid',33888),(35235,'events','itemid',33889),(35236,'history','itemid',33889),(35237,'history_log','itemid',33889),(35238,'history_str','itemid',33889),(35239,'history_text','itemid',33889),(35240,'history_uint','itemid',33889),(35241,'trends','itemid',33889),(35242,'trends_uint','itemid',33889),(35243,'events','itemid',33891),(35244,'history','itemid',33891),(35245,'history_log','itemid',33891),(35246,'history_str','itemid',33891),(35247,'history_text','itemid',33891),(35248,'history_uint','itemid',33891),(35249,'trends','itemid',33891),(35250,'trends_uint','itemid',33891),(35251,'events','itemid',33892),(35252,'history','itemid',33892),(35253,'history_log','itemid',33892),(35254,'history_str','itemid',33892),(35255,'history_text','itemid',33892),(35256,'history_uint','itemid',33892),(35257,'trends','itemid',33892),(35258,'trends_uint','itemid',33892),(35259,'events','itemid',33893),(35260,'history','itemid',33893),(35261,'history_log','itemid',33893),(35262,'history_str','itemid',33893),(35263,'history_text','itemid',33893),(35264,'history_uint','itemid',33893),(35265,'trends','itemid',33893),(35266,'trends_uint','itemid',33893),(35267,'events','itemid',33894),(35268,'history','itemid',33894),(35269,'history_log','itemid',33894),(35270,'history_str','itemid',33894),(35271,'history_text','itemid',33894),(35272,'history_uint','itemid',33894),(35273,'trends','itemid',33894),(35274,'trends_uint','itemid',33894),(35275,'events','itemid',33895),(35276,'history','itemid',33895),(35277,'history_log','itemid',33895),(35278,'history_str','itemid',33895),(35279,'history_text','itemid',33895),(35280,'history_uint','itemid',33895),(35281,'trends','itemid',33895),(35282,'trends_uint','itemid',33895),(35283,'events','itemid',33896),(35284,'history','itemid',33896),(35285,'history_log','itemid',33896),(35286,'history_str','itemid',33896),(35287,'history_text','itemid',33896),(35288,'history_uint','itemid',33896),(35289,'trends','itemid',33896),(35290,'trends_uint','itemid',33896),(35291,'events','itemid',33897),(35292,'history','itemid',33897),(35293,'history_log','itemid',33897),(35294,'history_str','itemid',33897),(35295,'history_text','itemid',33897),(35296,'history_uint','itemid',33897),(35297,'trends','itemid',33897),(35298,'trends_uint','itemid',33897),(35299,'events','itemid',33898),(35300,'history','itemid',33898),(35301,'history_log','itemid',33898),(35302,'history_str','itemid',33898),(35303,'history_text','itemid',33898),(35304,'history_uint','itemid',33898),(35305,'trends','itemid',33898),(35306,'trends_uint','itemid',33898),(35307,'events','itemid',33899),(35308,'history','itemid',33899),(35309,'history_log','itemid',33899),(35310,'history_str','itemid',33899),(35311,'history_text','itemid',33899),(35312,'history_uint','itemid',33899),(35313,'trends','itemid',33899),(35314,'trends_uint','itemid',33899),(35315,'events','itemid',33900),(35316,'history','itemid',33900),(35317,'history_log','itemid',33900),(35318,'history_str','itemid',33900),(35319,'history_text','itemid',33900),(35320,'history_uint','itemid',33900),(35321,'trends','itemid',33900),(35322,'trends_uint','itemid',33900),(35323,'events','itemid',33901),(35324,'history','itemid',33901),(35325,'history_log','itemid',33901),(35326,'history_str','itemid',33901),(35327,'history_text','itemid',33901),(35328,'history_uint','itemid',33901),(35329,'trends','itemid',33901),(35330,'trends_uint','itemid',33901),(35331,'events','itemid',33902),(35332,'history','itemid',33902),(35333,'history_log','itemid',33902),(35334,'history_str','itemid',33902),(35335,'history_text','itemid',33902),(35336,'history_uint','itemid',33902),(35337,'trends','itemid',33902),(35338,'trends_uint','itemid',33902),(35339,'events','itemid',33903),(35340,'history','itemid',33903),(35341,'history_log','itemid',33903),(35342,'history_str','itemid',33903),(35343,'history_text','itemid',33903),(35344,'history_uint','itemid',33903),(35345,'trends','itemid',33903),(35346,'trends_uint','itemid',33903),(35347,'events','itemid',33904),(35348,'history','itemid',33904),(35349,'history_log','itemid',33904),(35350,'history_str','itemid',33904),(35351,'history_text','itemid',33904),(35352,'history_uint','itemid',33904),(35353,'trends','itemid',33904),(35354,'trends_uint','itemid',33904),(35355,'events','itemid',33905),(35356,'history','itemid',33905),(35357,'history_log','itemid',33905),(35358,'history_str','itemid',33905),(35359,'history_text','itemid',33905),(35360,'history_uint','itemid',33905),(35361,'trends','itemid',33905),(35362,'trends_uint','itemid',33905),(35363,'events','itemid',33906),(35364,'history','itemid',33906),(35365,'history_log','itemid',33906),(35366,'history_str','itemid',33906),(35367,'history_text','itemid',33906),(35368,'history_uint','itemid',33906),(35369,'trends','itemid',33906),(35370,'trends_uint','itemid',33906),(35371,'events','itemid',33907),(35372,'history','itemid',33907),(35373,'history_log','itemid',33907),(35374,'history_str','itemid',33907),(35375,'history_text','itemid',33907),(35376,'history_uint','itemid',33907),(35377,'trends','itemid',33907),(35378,'trends_uint','itemid',33907),(35379,'events','itemid',33908),(35380,'history','itemid',33908),(35381,'history_log','itemid',33908),(35382,'history_str','itemid',33908),(35383,'history_text','itemid',33908),(35384,'history_uint','itemid',33908),(35385,'trends','itemid',33908),(35386,'trends_uint','itemid',33908),(35387,'events','itemid',33909),(35388,'history','itemid',33909),(35389,'history_log','itemid',33909),(35390,'history_str','itemid',33909),(35391,'history_text','itemid',33909),(35392,'history_uint','itemid',33909),(35393,'trends','itemid',33909),(35394,'trends_uint','itemid',33909),(35395,'events','itemid',33910),(35396,'history','itemid',33910),(35397,'history_log','itemid',33910),(35398,'history_str','itemid',33910),(35399,'history_text','itemid',33910),(35400,'history_uint','itemid',33910),(35401,'trends','itemid',33910),(35402,'trends_uint','itemid',33910),(35403,'events','itemid',33911),(35404,'history','itemid',33911),(35405,'history_log','itemid',33911),(35406,'history_str','itemid',33911),(35407,'history_text','itemid',33911),(35408,'history_uint','itemid',33911),(35409,'trends','itemid',33911),(35410,'trends_uint','itemid',33911),(35411,'events','itemid',33912),(35412,'history','itemid',33912),(35413,'history_log','itemid',33912),(35414,'history_str','itemid',33912),(35415,'history_text','itemid',33912),(35416,'history_uint','itemid',33912),(35417,'trends','itemid',33912),(35418,'trends_uint','itemid',33912),(35419,'events','itemid',33913),(35420,'history','itemid',33913),(35421,'history_log','itemid',33913),(35422,'history_str','itemid',33913),(35423,'history_text','itemid',33913),(35424,'history_uint','itemid',33913),(35425,'trends','itemid',33913),(35426,'trends_uint','itemid',33913),(35427,'events','itemid',33914),(35428,'history','itemid',33914),(35429,'history_log','itemid',33914),(35430,'history_str','itemid',33914),(35431,'history_text','itemid',33914),(35432,'history_uint','itemid',33914),(35433,'trends','itemid',33914),(35434,'trends_uint','itemid',33914),(35435,'events','itemid',33915),(35436,'history','itemid',33915),(35437,'history_log','itemid',33915),(35438,'history_str','itemid',33915),(35439,'history_text','itemid',33915),(35440,'history_uint','itemid',33915),(35441,'trends','itemid',33915),(35442,'trends_uint','itemid',33915),(35443,'events','itemid',33916),(35444,'history','itemid',33916),(35445,'history_log','itemid',33916),(35446,'history_str','itemid',33916),(35447,'history_text','itemid',33916),(35448,'history_uint','itemid',33916),(35449,'trends','itemid',33916),(35450,'trends_uint','itemid',33916),(35451,'events','itemid',33917),(35452,'history','itemid',33917),(35453,'history_log','itemid',33917),(35454,'history_str','itemid',33917),(35455,'history_text','itemid',33917),(35456,'history_uint','itemid',33917),(35457,'trends','itemid',33917),(35458,'trends_uint','itemid',33917),(35459,'events','itemid',33918),(35460,'history','itemid',33918),(35461,'history_log','itemid',33918),(35462,'history_str','itemid',33918),(35463,'history_text','itemid',33918),(35464,'history_uint','itemid',33918),(35465,'trends','itemid',33918),(35466,'trends_uint','itemid',33918),(35467,'events','itemid',33919),(35468,'history','itemid',33919),(35469,'history_log','itemid',33919),(35470,'history_str','itemid',33919),(35471,'history_text','itemid',33919),(35472,'history_uint','itemid',33919),(35473,'trends','itemid',33919),(35474,'trends_uint','itemid',33919),(35475,'events','itemid',34226),(35476,'history','itemid',34226),(35477,'history_log','itemid',34226),(35478,'history_str','itemid',34226),(35479,'history_text','itemid',34226),(35480,'history_uint','itemid',34226),(35481,'trends','itemid',34226),(35482,'trends_uint','itemid',34226),(35483,'events','itemid',34227),(35484,'history','itemid',34227),(35485,'history_log','itemid',34227),(35486,'history_str','itemid',34227),(35487,'history_text','itemid',34227),(35488,'history_uint','itemid',34227),(35489,'trends','itemid',34227),(35490,'trends_uint','itemid',34227),(35491,'events','itemid',34228),(35492,'history','itemid',34228),(35493,'history_log','itemid',34228),(35494,'history_str','itemid',34228),(35495,'history_text','itemid',34228),(35496,'history_uint','itemid',34228),(35497,'trends','itemid',34228),(35498,'trends_uint','itemid',34228),(35499,'events','itemid',34229),(35500,'history','itemid',34229),(35501,'history_log','itemid',34229),(35502,'history_str','itemid',34229),(35503,'history_text','itemid',34229),(35504,'history_uint','itemid',34229),(35505,'trends','itemid',34229),(35506,'trends_uint','itemid',34229),(35507,'events','itemid',34230),(35508,'history','itemid',34230),(35509,'history_log','itemid',34230),(35510,'history_str','itemid',34230),(35511,'history_text','itemid',34230),(35512,'history_uint','itemid',34230),(35513,'trends','itemid',34230),(35514,'trends_uint','itemid',34230),(35515,'events','itemid',34231),(35516,'history','itemid',34231),(35517,'history_log','itemid',34231),(35518,'history_str','itemid',34231),(35519,'history_text','itemid',34231),(35520,'history_uint','itemid',34231),(35521,'trends','itemid',34231),(35522,'trends_uint','itemid',34231),(35523,'events','itemid',34232),(35524,'history','itemid',34232),(35525,'history_log','itemid',34232),(35526,'history_str','itemid',34232),(35527,'history_text','itemid',34232),(35528,'history_uint','itemid',34232),(35529,'trends','itemid',34232),(35530,'trends_uint','itemid',34232),(35531,'events','itemid',34233),(35532,'history','itemid',34233),(35533,'history_log','itemid',34233),(35534,'history_str','itemid',34233),(35535,'history_text','itemid',34233),(35536,'history_uint','itemid',34233),(35537,'trends','itemid',34233),(35538,'trends_uint','itemid',34233),(35539,'events','itemid',34234),(35540,'history','itemid',34234),(35541,'history_log','itemid',34234),(35542,'history_str','itemid',34234),(35543,'history_text','itemid',34234),(35544,'history_uint','itemid',34234),(35545,'trends','itemid',34234),(35546,'trends_uint','itemid',34234),(35547,'events','itemid',34235),(35548,'history','itemid',34235),(35549,'history_log','itemid',34235),(35550,'history_str','itemid',34235),(35551,'history_text','itemid',34235),(35552,'history_uint','itemid',34235),(35553,'trends','itemid',34235),(35554,'trends_uint','itemid',34235),(35555,'events','itemid',34236),(35556,'history','itemid',34236),(35557,'history_log','itemid',34236),(35558,'history_str','itemid',34236),(35559,'history_text','itemid',34236),(35560,'history_uint','itemid',34236),(35561,'trends','itemid',34236),(35562,'trends_uint','itemid',34236),(35563,'events','itemid',34237),(35564,'history','itemid',34237),(35565,'history_log','itemid',34237),(35566,'history_str','itemid',34237),(35567,'history_text','itemid',34237),(35568,'history_uint','itemid',34237),(35569,'trends','itemid',34237),(35570,'trends_uint','itemid',34237),(35571,'events','itemid',34238),(35572,'history','itemid',34238),(35573,'history_log','itemid',34238),(35574,'history_str','itemid',34238),(35575,'history_text','itemid',34238),(35576,'history_uint','itemid',34238),(35577,'trends','itemid',34238),(35578,'trends_uint','itemid',34238),(35579,'events','itemid',34239),(35580,'history','itemid',34239),(35581,'history_log','itemid',34239),(35582,'history_str','itemid',34239),(35583,'history_text','itemid',34239),(35584,'history_uint','itemid',34239),(35585,'trends','itemid',34239),(35586,'trends_uint','itemid',34239),(35587,'events','itemid',34240),(35588,'history','itemid',34240),(35589,'history_log','itemid',34240),(35590,'history_str','itemid',34240),(35591,'history_text','itemid',34240),(35592,'history_uint','itemid',34240),(35593,'trends','itemid',34240),(35594,'trends_uint','itemid',34240),(35595,'events','itemid',34241),(35596,'history','itemid',34241),(35597,'history_log','itemid',34241),(35598,'history_str','itemid',34241),(35599,'history_text','itemid',34241),(35600,'history_uint','itemid',34241),(35601,'trends','itemid',34241),(35602,'trends_uint','itemid',34241),(35603,'events','itemid',34242),(35604,'history','itemid',34242),(35605,'history_log','itemid',34242),(35606,'history_str','itemid',34242),(35607,'history_text','itemid',34242),(35608,'history_uint','itemid',34242),(35609,'trends','itemid',34242),(35610,'trends_uint','itemid',34242),(35611,'events','itemid',34243),(35612,'history','itemid',34243),(35613,'history_log','itemid',34243),(35614,'history_str','itemid',34243),(35615,'history_text','itemid',34243),(35616,'history_uint','itemid',34243),(35617,'trends','itemid',34243),(35618,'trends_uint','itemid',34243),(35619,'events','itemid',34244),(35620,'history','itemid',34244),(35621,'history_log','itemid',34244),(35622,'history_str','itemid',34244),(35623,'history_text','itemid',34244),(35624,'history_uint','itemid',34244),(35625,'trends','itemid',34244),(35626,'trends_uint','itemid',34244),(35627,'events','itemid',34245),(35628,'history','itemid',34245),(35629,'history_log','itemid',34245),(35630,'history_str','itemid',34245),(35631,'history_text','itemid',34245),(35632,'history_uint','itemid',34245),(35633,'trends','itemid',34245),(35634,'trends_uint','itemid',34245),(35635,'events','itemid',34246),(35636,'history','itemid',34246),(35637,'history_log','itemid',34246),(35638,'history_str','itemid',34246),(35639,'history_text','itemid',34246),(35640,'history_uint','itemid',34246),(35641,'trends','itemid',34246),(35642,'trends_uint','itemid',34246),(35643,'events','itemid',34247),(35644,'history','itemid',34247),(35645,'history_log','itemid',34247),(35646,'history_str','itemid',34247),(35647,'history_text','itemid',34247),(35648,'history_uint','itemid',34247),(35649,'trends','itemid',34247),(35650,'trends_uint','itemid',34247),(35651,'events','itemid',34248),(35652,'history','itemid',34248),(35653,'history_log','itemid',34248),(35654,'history_str','itemid',34248),(35655,'history_text','itemid',34248),(35656,'history_uint','itemid',34248),(35657,'trends','itemid',34248),(35658,'trends_uint','itemid',34248),(35659,'events','itemid',34249),(35660,'history','itemid',34249),(35661,'history_log','itemid',34249),(35662,'history_str','itemid',34249),(35663,'history_text','itemid',34249),(35664,'history_uint','itemid',34249),(35665,'trends','itemid',34249),(35666,'trends_uint','itemid',34249),(35667,'events','itemid',34250),(35668,'history','itemid',34250),(35669,'history_log','itemid',34250),(35670,'history_str','itemid',34250),(35671,'history_text','itemid',34250),(35672,'history_uint','itemid',34250),(35673,'trends','itemid',34250),(35674,'trends_uint','itemid',34250),(35675,'events','itemid',34251),(35676,'history','itemid',34251),(35677,'history_log','itemid',34251),(35678,'history_str','itemid',34251),(35679,'history_text','itemid',34251),(35680,'history_uint','itemid',34251),(35681,'trends','itemid',34251),(35682,'trends_uint','itemid',34251),(35683,'events','itemid',34252),(35684,'history','itemid',34252),(35685,'history_log','itemid',34252),(35686,'history_str','itemid',34252),(35687,'history_text','itemid',34252),(35688,'history_uint','itemid',34252),(35689,'trends','itemid',34252),(35690,'trends_uint','itemid',34252),(35691,'events','itemid',34253),(35692,'history','itemid',34253),(35693,'history_log','itemid',34253),(35694,'history_str','itemid',34253),(35695,'history_text','itemid',34253),(35696,'history_uint','itemid',34253),(35697,'trends','itemid',34253),(35698,'trends_uint','itemid',34253),(35699,'events','itemid',34254),(35700,'history','itemid',34254),(35701,'history_log','itemid',34254),(35702,'history_str','itemid',34254),(35703,'history_text','itemid',34254),(35704,'history_uint','itemid',34254),(35705,'trends','itemid',34254),(35706,'trends_uint','itemid',34254),(35707,'events','itemid',34255),(35708,'history','itemid',34255),(35709,'history_log','itemid',34255),(35710,'history_str','itemid',34255),(35711,'history_text','itemid',34255),(35712,'history_uint','itemid',34255),(35713,'trends','itemid',34255),(35714,'trends_uint','itemid',34255),(35715,'events','itemid',34256),(35716,'history','itemid',34256),(35717,'history_log','itemid',34256),(35718,'history_str','itemid',34256),(35719,'history_text','itemid',34256),(35720,'history_uint','itemid',34256),(35721,'trends','itemid',34256),(35722,'trends_uint','itemid',34256),(35723,'events','itemid',34257),(35724,'history','itemid',34257),(35725,'history_log','itemid',34257),(35726,'history_str','itemid',34257),(35727,'history_text','itemid',34257),(35728,'history_uint','itemid',34257),(35729,'trends','itemid',34257),(35730,'trends_uint','itemid',34257),(35731,'events','itemid',34258),(35732,'history','itemid',34258),(35733,'history_log','itemid',34258),(35734,'history_str','itemid',34258),(35735,'history_text','itemid',34258),(35736,'history_uint','itemid',34258),(35737,'trends','itemid',34258),(35738,'trends_uint','itemid',34258),(35739,'events','itemid',34259),(35740,'history','itemid',34259),(35741,'history_log','itemid',34259),(35742,'history_str','itemid',34259),(35743,'history_text','itemid',34259),(35744,'history_uint','itemid',34259),(35745,'trends','itemid',34259),(35746,'trends_uint','itemid',34259),(35747,'events','itemid',34321),(35748,'history','itemid',34321),(35749,'history_log','itemid',34321),(35750,'history_str','itemid',34321),(35751,'history_text','itemid',34321),(35752,'history_uint','itemid',34321),(35753,'trends','itemid',34321),(35754,'trends_uint','itemid',34321),(35755,'events','itemid',34322),(35756,'history','itemid',34322),(35757,'history_log','itemid',34322),(35758,'history_str','itemid',34322),(35759,'history_text','itemid',34322),(35760,'history_uint','itemid',34322),(35761,'trends','itemid',34322),(35762,'trends_uint','itemid',34322),(35763,'events','itemid',34323),(35764,'history','itemid',34323),(35765,'history_log','itemid',34323),(35766,'history_str','itemid',34323),(35767,'history_text','itemid',34323),(35768,'history_uint','itemid',34323),(35769,'trends','itemid',34323),(35770,'trends_uint','itemid',34323),(35771,'events','itemid',35153),(35772,'history','itemid',35153),(35773,'history_log','itemid',35153),(35774,'history_str','itemid',35153),(35775,'history_text','itemid',35153),(35776,'history_uint','itemid',35153),(35777,'trends','itemid',35153),(35778,'trends_uint','itemid',35153),(35779,'events','itemid',35154),(35780,'history','itemid',35154),(35781,'history_log','itemid',35154),(35782,'history_str','itemid',35154),(35783,'history_text','itemid',35154),(35784,'history_uint','itemid',35154),(35785,'trends','itemid',35154),(35786,'trends_uint','itemid',35154),(35787,'events','itemid',35155),(35788,'history','itemid',35155),(35789,'history_log','itemid',35155),(35790,'history_str','itemid',35155),(35791,'history_text','itemid',35155),(35792,'history_uint','itemid',35155),(35793,'trends','itemid',35155),(35794,'trends_uint','itemid',35155),(35795,'events','itemid',35156),(35796,'history','itemid',35156),(35797,'history_log','itemid',35156),(35798,'history_str','itemid',35156),(35799,'history_text','itemid',35156),(35800,'history_uint','itemid',35156),(35801,'trends','itemid',35156),(35802,'trends_uint','itemid',35156),(35803,'events','itemid',35157),(35804,'history','itemid',35157),(35805,'history_log','itemid',35157),(35806,'history_str','itemid',35157),(35807,'history_text','itemid',35157),(35808,'history_uint','itemid',35157),(35809,'trends','itemid',35157),(35810,'trends_uint','itemid',35157),(35811,'events','itemid',35158),(35812,'history','itemid',35158),(35813,'history_log','itemid',35158),(35814,'history_str','itemid',35158),(35815,'history_text','itemid',35158),(35816,'history_uint','itemid',35158),(35817,'trends','itemid',35158),(35818,'trends_uint','itemid',35158),(35819,'events','itemid',35159),(35820,'history','itemid',35159),(35821,'history_log','itemid',35159),(35822,'history_str','itemid',35159),(35823,'history_text','itemid',35159),(35824,'history_uint','itemid',35159),(35825,'trends','itemid',35159),(35826,'trends_uint','itemid',35159),(35827,'events','itemid',35160),(35828,'history','itemid',35160),(35829,'history_log','itemid',35160),(35830,'history_str','itemid',35160),(35831,'history_text','itemid',35160),(35832,'history_uint','itemid',35160),(35833,'trends','itemid',35160),(35834,'trends_uint','itemid',35160),(35835,'events','itemid',35161),(35836,'history','itemid',35161),(35837,'history_log','itemid',35161),(35838,'history_str','itemid',35161),(35839,'history_text','itemid',35161),(35840,'history_uint','itemid',35161),(35841,'trends','itemid',35161),(35842,'trends_uint','itemid',35161),(35843,'events','itemid',35162),(35844,'history','itemid',35162),(35845,'history_log','itemid',35162),(35846,'history_str','itemid',35162),(35847,'history_text','itemid',35162),(35848,'history_uint','itemid',35162),(35849,'trends','itemid',35162),(35850,'trends_uint','itemid',35162),(35851,'events','itemid',35163),(35852,'history','itemid',35163),(35853,'history_log','itemid',35163),(35854,'history_str','itemid',35163),(35855,'history_text','itemid',35163),(35856,'history_uint','itemid',35163),(35857,'trends','itemid',35163),(35858,'trends_uint','itemid',35163),(35859,'events','itemid',35164),(35860,'history','itemid',35164),(35861,'history_log','itemid',35164),(35862,'history_str','itemid',35164),(35863,'history_text','itemid',35164),(35864,'history_uint','itemid',35164),(35865,'trends','itemid',35164),(35866,'trends_uint','itemid',35164),(35867,'events','itemid',35165),(35868,'history','itemid',35165),(35869,'history_log','itemid',35165),(35870,'history_str','itemid',35165),(35871,'history_text','itemid',35165),(35872,'history_uint','itemid',35165),(35873,'trends','itemid',35165),(35874,'trends_uint','itemid',35165),(35875,'events','itemid',35166),(35876,'history','itemid',35166),(35877,'history_log','itemid',35166),(35878,'history_str','itemid',35166),(35879,'history_text','itemid',35166),(35880,'history_uint','itemid',35166),(35881,'trends','itemid',35166),(35882,'trends_uint','itemid',35166),(35883,'events','itemid',35167),(35884,'history','itemid',35167),(35885,'history_log','itemid',35167),(35886,'history_str','itemid',35167),(35887,'history_text','itemid',35167),(35888,'history_uint','itemid',35167),(35889,'trends','itemid',35167),(35890,'trends_uint','itemid',35167),(35891,'events','itemid',35168),(35892,'history','itemid',35168),(35893,'history_log','itemid',35168),(35894,'history_str','itemid',35168),(35895,'history_text','itemid',35168),(35896,'history_uint','itemid',35168),(35897,'trends','itemid',35168),(35898,'trends_uint','itemid',35168),(35899,'events','itemid',35169),(35900,'history','itemid',35169),(35901,'history_log','itemid',35169),(35902,'history_str','itemid',35169),(35903,'history_text','itemid',35169),(35904,'history_uint','itemid',35169),(35905,'trends','itemid',35169),(35906,'trends_uint','itemid',35169),(35907,'events','itemid',35170),(35908,'history','itemid',35170),(35909,'history_log','itemid',35170),(35910,'history_str','itemid',35170),(35911,'history_text','itemid',35170),(35912,'history_uint','itemid',35170),(35913,'trends','itemid',35170),(35914,'trends_uint','itemid',35170),(35915,'events','itemid',35171),(35916,'history','itemid',35171),(35917,'history_log','itemid',35171),(35918,'history_str','itemid',35171),(35919,'history_text','itemid',35171),(35920,'history_uint','itemid',35171),(35921,'trends','itemid',35171),(35922,'trends_uint','itemid',35171),(35923,'events','itemid',35172),(35924,'history','itemid',35172),(35925,'history_log','itemid',35172),(35926,'history_str','itemid',35172),(35927,'history_text','itemid',35172),(35928,'history_uint','itemid',35172),(35929,'trends','itemid',35172),(35930,'trends_uint','itemid',35172),(35931,'events','itemid',35173),(35932,'history','itemid',35173),(35933,'history_log','itemid',35173),(35934,'history_str','itemid',35173),(35935,'history_text','itemid',35173),(35936,'history_uint','itemid',35173),(35937,'trends','itemid',35173),(35938,'trends_uint','itemid',35173),(35939,'events','itemid',35174),(35940,'history','itemid',35174),(35941,'history_log','itemid',35174),(35942,'history_str','itemid',35174),(35943,'history_text','itemid',35174),(35944,'history_uint','itemid',35174),(35945,'trends','itemid',35174),(35946,'trends_uint','itemid',35174),(35947,'events','itemid',35175),(35948,'history','itemid',35175),(35949,'history_log','itemid',35175),(35950,'history_str','itemid',35175),(35951,'history_text','itemid',35175),(35952,'history_uint','itemid',35175),(35953,'trends','itemid',35175),(35954,'trends_uint','itemid',35175),(35955,'events','itemid',35176),(35956,'history','itemid',35176),(35957,'history_log','itemid',35176),(35958,'history_str','itemid',35176),(35959,'history_text','itemid',35176),(35960,'history_uint','itemid',35176),(35961,'trends','itemid',35176),(35962,'trends_uint','itemid',35176),(35963,'events','itemid',38575),(35964,'history','itemid',38575),(35965,'history_log','itemid',38575),(35966,'history_str','itemid',38575),(35967,'history_text','itemid',38575),(35968,'history_uint','itemid',38575),(35969,'trends','itemid',38575),(35970,'trends_uint','itemid',38575),(35971,'events','itemid',38576),(35972,'history','itemid',38576),(35973,'history_log','itemid',38576),(35974,'history_str','itemid',38576),(35975,'history_text','itemid',38576),(35976,'history_uint','itemid',38576),(35977,'trends','itemid',38576),(35978,'trends_uint','itemid',38576),(35979,'events','itemid',38577),(35980,'history','itemid',38577),(35981,'history_log','itemid',38577),(35982,'history_str','itemid',38577),(35983,'history_text','itemid',38577),(35984,'history_uint','itemid',38577),(35985,'trends','itemid',38577),(35986,'trends_uint','itemid',38577),(35987,'events','itemid',38578),(35988,'history','itemid',38578),(35989,'history_log','itemid',38578),(35990,'history_str','itemid',38578),(35991,'history_text','itemid',38578),(35992,'history_uint','itemid',38578),(35993,'trends','itemid',38578),(35994,'trends_uint','itemid',38578),(35995,'events','itemid',38579),(35996,'history','itemid',38579),(35997,'history_log','itemid',38579),(35998,'history_str','itemid',38579),(35999,'history_text','itemid',38579),(36000,'history_uint','itemid',38579),(36001,'trends','itemid',38579),(36002,'trends_uint','itemid',38579),(36003,'events','itemid',38580),(36004,'history','itemid',38580),(36005,'history_log','itemid',38580),(36006,'history_str','itemid',38580),(36007,'history_text','itemid',38580),(36008,'history_uint','itemid',38580),(36009,'trends','itemid',38580),(36010,'trends_uint','itemid',38580),(36011,'events','itemid',38581),(36012,'history','itemid',38581),(36013,'history_log','itemid',38581),(36014,'history_str','itemid',38581),(36015,'history_text','itemid',38581),(36016,'history_uint','itemid',38581),(36017,'trends','itemid',38581),(36018,'trends_uint','itemid',38581),(36019,'events','itemid',38629),(36020,'history','itemid',38629),(36021,'history_log','itemid',38629),(36022,'history_str','itemid',38629),(36023,'history_text','itemid',38629),(36024,'history_uint','itemid',38629),(36025,'trends','itemid',38629),(36026,'trends_uint','itemid',38629),(36027,'events','itemid',38630),(36028,'history','itemid',38630),(36029,'history_log','itemid',38630),(36030,'history_str','itemid',38630),(36031,'history_text','itemid',38630),(36032,'history_uint','itemid',38630),(36033,'trends','itemid',38630),(36034,'trends_uint','itemid',38630),(36035,'events','itemid',38631),(36036,'history','itemid',38631),(36037,'history_log','itemid',38631),(36038,'history_str','itemid',38631),(36039,'history_text','itemid',38631),(36040,'history_uint','itemid',38631),(36041,'trends','itemid',38631),(36042,'trends_uint','itemid',38631),(36043,'events','itemid',38632),(36044,'history','itemid',38632),(36045,'history_log','itemid',38632),(36046,'history_str','itemid',38632),(36047,'history_text','itemid',38632),(36048,'history_uint','itemid',38632),(36049,'trends','itemid',38632),(36050,'trends_uint','itemid',38632),(36051,'events','itemid',38633),(36052,'history','itemid',38633),(36053,'history_log','itemid',38633),(36054,'history_str','itemid',38633),(36055,'history_text','itemid',38633),(36056,'history_uint','itemid',38633),(36057,'trends','itemid',38633),(36058,'trends_uint','itemid',38633),(36059,'events','itemid',38634),(36060,'history','itemid',38634),(36061,'history_log','itemid',38634),(36062,'history_str','itemid',38634),(36063,'history_text','itemid',38634),(36064,'history_uint','itemid',38634),(36065,'trends','itemid',38634),(36066,'trends_uint','itemid',38634),(36067,'events','itemid',38635),(36068,'history','itemid',38635),(36069,'history_log','itemid',38635),(36070,'history_str','itemid',38635),(36071,'history_text','itemid',38635),(36072,'history_uint','itemid',38635),(36073,'trends','itemid',38635),(36074,'trends_uint','itemid',38635),(36075,'events','itemid',38683),(36076,'history','itemid',38683),(36077,'history_log','itemid',38683),(36078,'history_str','itemid',38683),(36079,'history_text','itemid',38683),(36080,'history_uint','itemid',38683),(36081,'trends','itemid',38683),(36082,'trends_uint','itemid',38683),(36083,'events','itemid',38684),(36084,'history','itemid',38684),(36085,'history_log','itemid',38684),(36086,'history_str','itemid',38684),(36087,'history_text','itemid',38684),(36088,'history_uint','itemid',38684),(36089,'trends','itemid',38684),(36090,'trends_uint','itemid',38684),(36091,'events','itemid',38685),(36092,'history','itemid',38685),(36093,'history_log','itemid',38685),(36094,'history_str','itemid',38685),(36095,'history_text','itemid',38685),(36096,'history_uint','itemid',38685),(36097,'trends','itemid',38685),(36098,'trends_uint','itemid',38685),(36099,'events','itemid',38686),(36100,'history','itemid',38686),(36101,'history_log','itemid',38686),(36102,'history_str','itemid',38686),(36103,'history_text','itemid',38686),(36104,'history_uint','itemid',38686),(36105,'trends','itemid',38686),(36106,'trends_uint','itemid',38686),(36107,'events','itemid',38687),(36108,'history','itemid',38687),(36109,'history_log','itemid',38687),(36110,'history_str','itemid',38687),(36111,'history_text','itemid',38687),(36112,'history_uint','itemid',38687),(36113,'trends','itemid',38687),(36114,'trends_uint','itemid',38687),(36115,'events','itemid',38688),(36116,'history','itemid',38688),(36117,'history_log','itemid',38688),(36118,'history_str','itemid',38688),(36119,'history_text','itemid',38688),(36120,'history_uint','itemid',38688),(36121,'trends','itemid',38688),(36122,'trends_uint','itemid',38688),(36123,'events','itemid',38689),(36124,'history','itemid',38689),(36125,'history_log','itemid',38689),(36126,'history_str','itemid',38689),(36127,'history_text','itemid',38689),(36128,'history_uint','itemid',38689),(36129,'trends','itemid',38689),(36130,'trends_uint','itemid',38689),(36131,'events','itemid',38737),(36132,'history','itemid',38737),(36133,'history_log','itemid',38737),(36134,'history_str','itemid',38737),(36135,'history_text','itemid',38737),(36136,'history_uint','itemid',38737),(36137,'trends','itemid',38737),(36138,'trends_uint','itemid',38737),(36139,'events','itemid',38738),(36140,'history','itemid',38738),(36141,'history_log','itemid',38738),(36142,'history_str','itemid',38738),(36143,'history_text','itemid',38738),(36144,'history_uint','itemid',38738),(36145,'trends','itemid',38738),(36146,'trends_uint','itemid',38738),(36147,'events','itemid',38739),(36148,'history','itemid',38739),(36149,'history_log','itemid',38739),(36150,'history_str','itemid',38739),(36151,'history_text','itemid',38739),(36152,'history_uint','itemid',38739),(36153,'trends','itemid',38739),(36154,'trends_uint','itemid',38739),(36155,'events','itemid',38740),(36156,'history','itemid',38740),(36157,'history_log','itemid',38740),(36158,'history_str','itemid',38740),(36159,'history_text','itemid',38740),(36160,'history_uint','itemid',38740),(36161,'trends','itemid',38740),(36162,'trends_uint','itemid',38740),(36163,'events','itemid',38741),(36164,'history','itemid',38741),(36165,'history_log','itemid',38741),(36166,'history_str','itemid',38741),(36167,'history_text','itemid',38741),(36168,'history_uint','itemid',38741),(36169,'trends','itemid',38741),(36170,'trends_uint','itemid',38741),(36171,'events','itemid',38742),(36172,'history','itemid',38742),(36173,'history_log','itemid',38742),(36174,'history_str','itemid',38742),(36175,'history_text','itemid',38742),(36176,'history_uint','itemid',38742),(36177,'trends','itemid',38742),(36178,'trends_uint','itemid',38742),(36179,'events','itemid',38743),(36180,'history','itemid',38743),(36181,'history_log','itemid',38743),(36182,'history_str','itemid',38743),(36183,'history_text','itemid',38743),(36184,'history_uint','itemid',38743),(36185,'trends','itemid',38743),(36186,'trends_uint','itemid',38743),(36187,'events','itemid',38791),(36188,'history','itemid',38791),(36189,'history_log','itemid',38791),(36190,'history_str','itemid',38791),(36191,'history_text','itemid',38791),(36192,'history_uint','itemid',38791),(36193,'trends','itemid',38791),(36194,'trends_uint','itemid',38791),(36195,'events','itemid',38792),(36196,'history','itemid',38792),(36197,'history_log','itemid',38792),(36198,'history_str','itemid',38792),(36199,'history_text','itemid',38792),(36200,'history_uint','itemid',38792),(36201,'trends','itemid',38792),(36202,'trends_uint','itemid',38792),(36203,'events','itemid',38793),(36204,'history','itemid',38793),(36205,'history_log','itemid',38793),(36206,'history_str','itemid',38793),(36207,'history_text','itemid',38793),(36208,'history_uint','itemid',38793),(36209,'trends','itemid',38793),(36210,'trends_uint','itemid',38793),(36211,'events','itemid',38794),(36212,'history','itemid',38794),(36213,'history_log','itemid',38794),(36214,'history_str','itemid',38794),(36215,'history_text','itemid',38794),(36216,'history_uint','itemid',38794),(36217,'trends','itemid',38794),(36218,'trends_uint','itemid',38794),(36219,'events','itemid',38795),(36220,'history','itemid',38795),(36221,'history_log','itemid',38795),(36222,'history_str','itemid',38795),(36223,'history_text','itemid',38795),(36224,'history_uint','itemid',38795),(36225,'trends','itemid',38795),(36226,'trends_uint','itemid',38795),(36227,'events','itemid',38796),(36228,'history','itemid',38796),(36229,'history_log','itemid',38796),(36230,'history_str','itemid',38796),(36231,'history_text','itemid',38796),(36232,'history_uint','itemid',38796),(36233,'trends','itemid',38796),(36234,'trends_uint','itemid',38796),(36235,'events','itemid',38797),(36236,'history','itemid',38797),(36237,'history_log','itemid',38797),(36238,'history_str','itemid',38797),(36239,'history_text','itemid',38797),(36240,'history_uint','itemid',38797),(36241,'trends','itemid',38797),(36242,'trends_uint','itemid',38797),(36243,'events','itemid',38845),(36244,'history','itemid',38845),(36245,'history_log','itemid',38845),(36246,'history_str','itemid',38845),(36247,'history_text','itemid',38845),(36248,'history_uint','itemid',38845),(36249,'trends','itemid',38845),(36250,'trends_uint','itemid',38845),(36251,'events','itemid',38846),(36252,'history','itemid',38846),(36253,'history_log','itemid',38846),(36254,'history_str','itemid',38846),(36255,'history_text','itemid',38846),(36256,'history_uint','itemid',38846),(36257,'trends','itemid',38846),(36258,'trends_uint','itemid',38846),(36259,'events','itemid',38847),(36260,'history','itemid',38847),(36261,'history_log','itemid',38847),(36262,'history_str','itemid',38847),(36263,'history_text','itemid',38847),(36264,'history_uint','itemid',38847),(36265,'trends','itemid',38847),(36266,'trends_uint','itemid',38847),(36267,'events','itemid',38848),(36268,'history','itemid',38848),(36269,'history_log','itemid',38848),(36270,'history_str','itemid',38848),(36271,'history_text','itemid',38848),(36272,'history_uint','itemid',38848),(36273,'trends','itemid',38848),(36274,'trends_uint','itemid',38848),(36275,'events','itemid',38849),(36276,'history','itemid',38849),(36277,'history_log','itemid',38849),(36278,'history_str','itemid',38849),(36279,'history_text','itemid',38849),(36280,'history_uint','itemid',38849),(36281,'trends','itemid',38849),(36282,'trends_uint','itemid',38849),(36283,'events','itemid',38850),(36284,'history','itemid',38850),(36285,'history_log','itemid',38850),(36286,'history_str','itemid',38850),(36287,'history_text','itemid',38850),(36288,'history_uint','itemid',38850),(36289,'trends','itemid',38850),(36290,'trends_uint','itemid',38850),(36291,'events','itemid',38851),(36292,'history','itemid',38851),(36293,'history_log','itemid',38851),(36294,'history_str','itemid',38851),(36295,'history_text','itemid',38851),(36296,'history_uint','itemid',38851),(36297,'trends','itemid',38851),(36298,'trends_uint','itemid',38851),(36299,'events','itemid',38899),(36300,'history','itemid',38899),(36301,'history_log','itemid',38899),(36302,'history_str','itemid',38899),(36303,'history_text','itemid',38899),(36304,'history_uint','itemid',38899),(36305,'trends','itemid',38899),(36306,'trends_uint','itemid',38899),(36307,'events','itemid',38900),(36308,'history','itemid',38900),(36309,'history_log','itemid',38900),(36310,'history_str','itemid',38900),(36311,'history_text','itemid',38900),(36312,'history_uint','itemid',38900),(36313,'trends','itemid',38900),(36314,'trends_uint','itemid',38900),(36315,'events','itemid',38901),(36316,'history','itemid',38901),(36317,'history_log','itemid',38901),(36318,'history_str','itemid',38901),(36319,'history_text','itemid',38901),(36320,'history_uint','itemid',38901),(36321,'trends','itemid',38901),(36322,'trends_uint','itemid',38901),(36323,'events','itemid',38902),(36324,'history','itemid',38902),(36325,'history_log','itemid',38902),(36326,'history_str','itemid',38902),(36327,'history_text','itemid',38902),(36328,'history_uint','itemid',38902),(36329,'trends','itemid',38902),(36330,'trends_uint','itemid',38902),(36331,'events','itemid',38903),(36332,'history','itemid',38903),(36333,'history_log','itemid',38903),(36334,'history_str','itemid',38903),(36335,'history_text','itemid',38903),(36336,'history_uint','itemid',38903),(36337,'trends','itemid',38903),(36338,'trends_uint','itemid',38903),(36339,'events','itemid',38904),(36340,'history','itemid',38904),(36341,'history_log','itemid',38904),(36342,'history_str','itemid',38904),(36343,'history_text','itemid',38904),(36344,'history_uint','itemid',38904),(36345,'trends','itemid',38904),(36346,'trends_uint','itemid',38904),(36347,'events','itemid',38905),(36348,'history','itemid',38905),(36349,'history_log','itemid',38905),(36350,'history_str','itemid',38905),(36351,'history_text','itemid',38905),(36352,'history_uint','itemid',38905),(36353,'trends','itemid',38905),(36354,'trends_uint','itemid',38905),(36355,'events','itemid',38953),(36356,'history','itemid',38953),(36357,'history_log','itemid',38953),(36358,'history_str','itemid',38953),(36359,'history_text','itemid',38953),(36360,'history_uint','itemid',38953),(36361,'trends','itemid',38953),(36362,'trends_uint','itemid',38953),(36363,'events','itemid',38954),(36364,'history','itemid',38954),(36365,'history_log','itemid',38954),(36366,'history_str','itemid',38954),(36367,'history_text','itemid',38954),(36368,'history_uint','itemid',38954),(36369,'trends','itemid',38954),(36370,'trends_uint','itemid',38954),(36371,'events','itemid',38955),(36372,'history','itemid',38955),(36373,'history_log','itemid',38955),(36374,'history_str','itemid',38955),(36375,'history_text','itemid',38955),(36376,'history_uint','itemid',38955),(36377,'trends','itemid',38955),(36378,'trends_uint','itemid',38955),(36379,'events','itemid',38956),(36380,'history','itemid',38956),(36381,'history_log','itemid',38956),(36382,'history_str','itemid',38956),(36383,'history_text','itemid',38956),(36384,'history_uint','itemid',38956),(36385,'trends','itemid',38956),(36386,'trends_uint','itemid',38956),(36387,'events','itemid',38957),(36388,'history','itemid',38957),(36389,'history_log','itemid',38957),(36390,'history_str','itemid',38957),(36391,'history_text','itemid',38957),(36392,'history_uint','itemid',38957),(36393,'trends','itemid',38957),(36394,'trends_uint','itemid',38957),(36395,'events','itemid',38958),(36396,'history','itemid',38958),(36397,'history_log','itemid',38958),(36398,'history_str','itemid',38958),(36399,'history_text','itemid',38958),(36400,'history_uint','itemid',38958),(36401,'trends','itemid',38958),(36402,'trends_uint','itemid',38958),(36403,'events','itemid',38959),(36404,'history','itemid',38959),(36405,'history_log','itemid',38959),(36406,'history_str','itemid',38959),(36407,'history_text','itemid',38959),(36408,'history_uint','itemid',38959),(36409,'trends','itemid',38959),(36410,'trends_uint','itemid',38959),(36411,'events','itemid',39007),(36412,'history','itemid',39007),(36413,'history_log','itemid',39007),(36414,'history_str','itemid',39007),(36415,'history_text','itemid',39007),(36416,'history_uint','itemid',39007),(36417,'trends','itemid',39007),(36418,'trends_uint','itemid',39007),(36419,'events','itemid',39008),(36420,'history','itemid',39008),(36421,'history_log','itemid',39008),(36422,'history_str','itemid',39008),(36423,'history_text','itemid',39008),(36424,'history_uint','itemid',39008),(36425,'trends','itemid',39008),(36426,'trends_uint','itemid',39008),(36427,'events','itemid',39009),(36428,'history','itemid',39009),(36429,'history_log','itemid',39009),(36430,'history_str','itemid',39009),(36431,'history_text','itemid',39009),(36432,'history_uint','itemid',39009),(36433,'trends','itemid',39009),(36434,'trends_uint','itemid',39009),(36435,'events','itemid',39010),(36436,'history','itemid',39010),(36437,'history_log','itemid',39010),(36438,'history_str','itemid',39010),(36439,'history_text','itemid',39010),(36440,'history_uint','itemid',39010),(36441,'trends','itemid',39010),(36442,'trends_uint','itemid',39010),(36443,'events','itemid',39011),(36444,'history','itemid',39011),(36445,'history_log','itemid',39011),(36446,'history_str','itemid',39011),(36447,'history_text','itemid',39011),(36448,'history_uint','itemid',39011),(36449,'trends','itemid',39011),(36450,'trends_uint','itemid',39011),(36451,'events','itemid',39012),(36452,'history','itemid',39012),(36453,'history_log','itemid',39012),(36454,'history_str','itemid',39012),(36455,'history_text','itemid',39012),(36456,'history_uint','itemid',39012),(36457,'trends','itemid',39012),(36458,'trends_uint','itemid',39012),(36459,'events','itemid',39013),(36460,'history','itemid',39013),(36461,'history_log','itemid',39013),(36462,'history_str','itemid',39013),(36463,'history_text','itemid',39013),(36464,'history_uint','itemid',39013),(36465,'trends','itemid',39013),(36466,'trends_uint','itemid',39013),(36467,'events','itemid',39061),(36468,'history','itemid',39061),(36469,'history_log','itemid',39061),(36470,'history_str','itemid',39061),(36471,'history_text','itemid',39061),(36472,'history_uint','itemid',39061),(36473,'trends','itemid',39061),(36474,'trends_uint','itemid',39061),(36475,'events','itemid',39062),(36476,'history','itemid',39062),(36477,'history_log','itemid',39062),(36478,'history_str','itemid',39062),(36479,'history_text','itemid',39062),(36480,'history_uint','itemid',39062),(36481,'trends','itemid',39062),(36482,'trends_uint','itemid',39062),(36483,'events','itemid',39063),(36484,'history','itemid',39063),(36485,'history_log','itemid',39063),(36486,'history_str','itemid',39063),(36487,'history_text','itemid',39063),(36488,'history_uint','itemid',39063),(36489,'trends','itemid',39063),(36490,'trends_uint','itemid',39063),(36491,'events','itemid',39064),(36492,'history','itemid',39064),(36493,'history_log','itemid',39064),(36494,'history_str','itemid',39064),(36495,'history_text','itemid',39064),(36496,'history_uint','itemid',39064),(36497,'trends','itemid',39064),(36498,'trends_uint','itemid',39064),(36499,'events','itemid',39065),(36500,'history','itemid',39065),(36501,'history_log','itemid',39065),(36502,'history_str','itemid',39065),(36503,'history_text','itemid',39065),(36504,'history_uint','itemid',39065),(36505,'trends','itemid',39065),(36506,'trends_uint','itemid',39065),(36507,'events','itemid',39066),(36508,'history','itemid',39066),(36509,'history_log','itemid',39066),(36510,'history_str','itemid',39066),(36511,'history_text','itemid',39066),(36512,'history_uint','itemid',39066),(36513,'trends','itemid',39066),(36514,'trends_uint','itemid',39066),(36515,'events','itemid',39067),(36516,'history','itemid',39067),(36517,'history_log','itemid',39067),(36518,'history_str','itemid',39067),(36519,'history_text','itemid',39067),(36520,'history_uint','itemid',39067),(36521,'trends','itemid',39067),(36522,'trends_uint','itemid',39067),(36523,'events','itemid',39115),(36524,'history','itemid',39115),(36525,'history_log','itemid',39115),(36526,'history_str','itemid',39115),(36527,'history_text','itemid',39115),(36528,'history_uint','itemid',39115),(36529,'trends','itemid',39115),(36530,'trends_uint','itemid',39115),(36531,'events','itemid',39116),(36532,'history','itemid',39116),(36533,'history_log','itemid',39116),(36534,'history_str','itemid',39116),(36535,'history_text','itemid',39116),(36536,'history_uint','itemid',39116),(36537,'trends','itemid',39116),(36538,'trends_uint','itemid',39116),(36539,'events','itemid',39117),(36540,'history','itemid',39117),(36541,'history_log','itemid',39117),(36542,'history_str','itemid',39117),(36543,'history_text','itemid',39117),(36544,'history_uint','itemid',39117),(36545,'trends','itemid',39117),(36546,'trends_uint','itemid',39117),(36547,'events','itemid',39118),(36548,'history','itemid',39118),(36549,'history_log','itemid',39118),(36550,'history_str','itemid',39118),(36551,'history_text','itemid',39118),(36552,'history_uint','itemid',39118),(36553,'trends','itemid',39118),(36554,'trends_uint','itemid',39118),(36555,'events','itemid',39119),(36556,'history','itemid',39119),(36557,'history_log','itemid',39119),(36558,'history_str','itemid',39119),(36559,'history_text','itemid',39119),(36560,'history_uint','itemid',39119),(36561,'trends','itemid',39119),(36562,'trends_uint','itemid',39119),(36563,'events','itemid',39120),(36564,'history','itemid',39120),(36565,'history_log','itemid',39120),(36566,'history_str','itemid',39120),(36567,'history_text','itemid',39120),(36568,'history_uint','itemid',39120),(36569,'trends','itemid',39120),(36570,'trends_uint','itemid',39120),(36571,'events','itemid',39121),(36572,'history','itemid',39121),(36573,'history_log','itemid',39121),(36574,'history_str','itemid',39121),(36575,'history_text','itemid',39121),(36576,'history_uint','itemid',39121),(36577,'trends','itemid',39121),(36578,'trends_uint','itemid',39121),(36579,'events','itemid',39169),(36580,'history','itemid',39169),(36581,'history_log','itemid',39169),(36582,'history_str','itemid',39169),(36583,'history_text','itemid',39169),(36584,'history_uint','itemid',39169),(36585,'trends','itemid',39169),(36586,'trends_uint','itemid',39169),(36587,'events','itemid',39170),(36588,'history','itemid',39170),(36589,'history_log','itemid',39170),(36590,'history_str','itemid',39170),(36591,'history_text','itemid',39170),(36592,'history_uint','itemid',39170),(36593,'trends','itemid',39170),(36594,'trends_uint','itemid',39170),(36595,'events','itemid',39171),(36596,'history','itemid',39171),(36597,'history_log','itemid',39171),(36598,'history_str','itemid',39171),(36599,'history_text','itemid',39171),(36600,'history_uint','itemid',39171),(36601,'trends','itemid',39171),(36602,'trends_uint','itemid',39171),(36603,'events','itemid',39172),(36604,'history','itemid',39172),(36605,'history_log','itemid',39172),(36606,'history_str','itemid',39172),(36607,'history_text','itemid',39172),(36608,'history_uint','itemid',39172),(36609,'trends','itemid',39172),(36610,'trends_uint','itemid',39172),(36611,'events','itemid',39173),(36612,'history','itemid',39173),(36613,'history_log','itemid',39173),(36614,'history_str','itemid',39173),(36615,'history_text','itemid',39173),(36616,'history_uint','itemid',39173),(36617,'trends','itemid',39173),(36618,'trends_uint','itemid',39173),(36619,'events','itemid',39174),(36620,'history','itemid',39174),(36621,'history_log','itemid',39174),(36622,'history_str','itemid',39174),(36623,'history_text','itemid',39174),(36624,'history_uint','itemid',39174),(36625,'trends','itemid',39174),(36626,'trends_uint','itemid',39174),(36627,'events','itemid',39175),(36628,'history','itemid',39175),(36629,'history_log','itemid',39175),(36630,'history_str','itemid',39175),(36631,'history_text','itemid',39175),(36632,'history_uint','itemid',39175),(36633,'trends','itemid',39175),(36634,'trends_uint','itemid',39175),(36635,'events','itemid',39223),(36636,'history','itemid',39223),(36637,'history_log','itemid',39223),(36638,'history_str','itemid',39223),(36639,'history_text','itemid',39223),(36640,'history_uint','itemid',39223),(36641,'trends','itemid',39223),(36642,'trends_uint','itemid',39223),(36643,'events','itemid',39224),(36644,'history','itemid',39224),(36645,'history_log','itemid',39224),(36646,'history_str','itemid',39224),(36647,'history_text','itemid',39224),(36648,'history_uint','itemid',39224),(36649,'trends','itemid',39224),(36650,'trends_uint','itemid',39224),(36651,'events','itemid',39225),(36652,'history','itemid',39225),(36653,'history_log','itemid',39225),(36654,'history_str','itemid',39225),(36655,'history_text','itemid',39225),(36656,'history_uint','itemid',39225),(36657,'trends','itemid',39225),(36658,'trends_uint','itemid',39225),(36659,'events','itemid',39226),(36660,'history','itemid',39226),(36661,'history_log','itemid',39226),(36662,'history_str','itemid',39226),(36663,'history_text','itemid',39226),(36664,'history_uint','itemid',39226),(36665,'trends','itemid',39226),(36666,'trends_uint','itemid',39226),(36667,'events','itemid',39227),(36668,'history','itemid',39227),(36669,'history_log','itemid',39227),(36670,'history_str','itemid',39227),(36671,'history_text','itemid',39227),(36672,'history_uint','itemid',39227),(36673,'trends','itemid',39227),(36674,'trends_uint','itemid',39227),(36675,'events','itemid',39228),(36676,'history','itemid',39228),(36677,'history_log','itemid',39228),(36678,'history_str','itemid',39228),(36679,'history_text','itemid',39228),(36680,'history_uint','itemid',39228),(36681,'trends','itemid',39228),(36682,'trends_uint','itemid',39228),(36683,'events','itemid',39229),(36684,'history','itemid',39229),(36685,'history_log','itemid',39229),(36686,'history_str','itemid',39229),(36687,'history_text','itemid',39229),(36688,'history_uint','itemid',39229),(36689,'trends','itemid',39229),(36690,'trends_uint','itemid',39229),(36691,'events','itemid',39277),(36692,'history','itemid',39277),(36693,'history_log','itemid',39277),(36694,'history_str','itemid',39277),(36695,'history_text','itemid',39277),(36696,'history_uint','itemid',39277),(36697,'trends','itemid',39277),(36698,'trends_uint','itemid',39277),(36699,'events','itemid',39278),(36700,'history','itemid',39278),(36701,'history_log','itemid',39278),(36702,'history_str','itemid',39278),(36703,'history_text','itemid',39278),(36704,'history_uint','itemid',39278),(36705,'trends','itemid',39278),(36706,'trends_uint','itemid',39278),(36707,'events','itemid',39279),(36708,'history','itemid',39279),(36709,'history_log','itemid',39279),(36710,'history_str','itemid',39279),(36711,'history_text','itemid',39279),(36712,'history_uint','itemid',39279),(36713,'trends','itemid',39279),(36714,'trends_uint','itemid',39279),(36715,'events','itemid',39280),(36716,'history','itemid',39280),(36717,'history_log','itemid',39280),(36718,'history_str','itemid',39280),(36719,'history_text','itemid',39280),(36720,'history_uint','itemid',39280),(36721,'trends','itemid',39280),(36722,'trends_uint','itemid',39280),(36723,'events','itemid',39281),(36724,'history','itemid',39281),(36725,'history_log','itemid',39281),(36726,'history_str','itemid',39281),(36727,'history_text','itemid',39281),(36728,'history_uint','itemid',39281),(36729,'trends','itemid',39281),(36730,'trends_uint','itemid',39281),(36731,'events','itemid',39282),(36732,'history','itemid',39282),(36733,'history_log','itemid',39282),(36734,'history_str','itemid',39282),(36735,'history_text','itemid',39282),(36736,'history_uint','itemid',39282),(36737,'trends','itemid',39282),(36738,'trends_uint','itemid',39282),(36739,'events','itemid',39283),(36740,'history','itemid',39283),(36741,'history_log','itemid',39283),(36742,'history_str','itemid',39283),(36743,'history_text','itemid',39283),(36744,'history_uint','itemid',39283),(36745,'trends','itemid',39283),(36746,'trends_uint','itemid',39283),(36747,'events','itemid',39601),(36748,'history','itemid',39601),(36749,'history_log','itemid',39601),(36750,'history_str','itemid',39601),(36751,'history_text','itemid',39601),(36752,'history_uint','itemid',39601),(36753,'trends','itemid',39601),(36754,'trends_uint','itemid',39601),(36755,'events','itemid',39602),(36756,'history','itemid',39602),(36757,'history_log','itemid',39602),(36758,'history_str','itemid',39602),(36759,'history_text','itemid',39602),(36760,'history_uint','itemid',39602),(36761,'trends','itemid',39602),(36762,'trends_uint','itemid',39602),(36763,'events','itemid',39603),(36764,'history','itemid',39603),(36765,'history_log','itemid',39603),(36766,'history_str','itemid',39603),(36767,'history_text','itemid',39603),(36768,'history_uint','itemid',39603),(36769,'trends','itemid',39603),(36770,'trends_uint','itemid',39603),(36771,'events','itemid',39604),(36772,'history','itemid',39604),(36773,'history_log','itemid',39604),(36774,'history_str','itemid',39604),(36775,'history_text','itemid',39604),(36776,'history_uint','itemid',39604),(36777,'trends','itemid',39604),(36778,'trends_uint','itemid',39604),(36779,'events','itemid',39605),(36780,'history','itemid',39605),(36781,'history_log','itemid',39605),(36782,'history_str','itemid',39605),(36783,'history_text','itemid',39605),(36784,'history_uint','itemid',39605),(36785,'trends','itemid',39605),(36786,'trends_uint','itemid',39605),(36787,'events','itemid',39606),(36788,'history','itemid',39606),(36789,'history_log','itemid',39606),(36790,'history_str','itemid',39606),(36791,'history_text','itemid',39606),(36792,'history_uint','itemid',39606),(36793,'trends','itemid',39606),(36794,'trends_uint','itemid',39606),(36795,'events','itemid',39607),(36796,'history','itemid',39607),(36797,'history_log','itemid',39607),(36798,'history_str','itemid',39607),(36799,'history_text','itemid',39607),(36800,'history_uint','itemid',39607),(36801,'trends','itemid',39607),(36802,'trends_uint','itemid',39607),(36803,'events','itemid',39655),(36804,'history','itemid',39655),(36805,'history_log','itemid',39655),(36806,'history_str','itemid',39655),(36807,'history_text','itemid',39655),(36808,'history_uint','itemid',39655),(36809,'trends','itemid',39655),(36810,'trends_uint','itemid',39655),(36811,'events','itemid',39656),(36812,'history','itemid',39656),(36813,'history_log','itemid',39656),(36814,'history_str','itemid',39656),(36815,'history_text','itemid',39656),(36816,'history_uint','itemid',39656),(36817,'trends','itemid',39656),(36818,'trends_uint','itemid',39656),(36819,'events','itemid',39657),(36820,'history','itemid',39657),(36821,'history_log','itemid',39657),(36822,'history_str','itemid',39657),(36823,'history_text','itemid',39657),(36824,'history_uint','itemid',39657),(36825,'trends','itemid',39657),(36826,'trends_uint','itemid',39657),(36827,'events','itemid',39658),(36828,'history','itemid',39658),(36829,'history_log','itemid',39658),(36830,'history_str','itemid',39658),(36831,'history_text','itemid',39658),(36832,'history_uint','itemid',39658),(36833,'trends','itemid',39658),(36834,'trends_uint','itemid',39658),(36835,'events','itemid',39659),(36836,'history','itemid',39659),(36837,'history_log','itemid',39659),(36838,'history_str','itemid',39659),(36839,'history_text','itemid',39659),(36840,'history_uint','itemid',39659),(36841,'trends','itemid',39659),(36842,'trends_uint','itemid',39659),(36843,'events','itemid',39660),(36844,'history','itemid',39660),(36845,'history_log','itemid',39660),(36846,'history_str','itemid',39660),(36847,'history_text','itemid',39660),(36848,'history_uint','itemid',39660),(36849,'trends','itemid',39660),(36850,'trends_uint','itemid',39660),(36851,'events','itemid',39661),(36852,'history','itemid',39661),(36853,'history_log','itemid',39661),(36854,'history_str','itemid',39661),(36855,'history_text','itemid',39661),(36856,'history_uint','itemid',39661),(36857,'trends','itemid',39661),(36858,'trends_uint','itemid',39661),(36859,'events','itemid',39709),(36860,'history','itemid',39709),(36861,'history_log','itemid',39709),(36862,'history_str','itemid',39709),(36863,'history_text','itemid',39709),(36864,'history_uint','itemid',39709),(36865,'trends','itemid',39709),(36866,'trends_uint','itemid',39709),(36867,'events','itemid',39710),(36868,'history','itemid',39710),(36869,'history_log','itemid',39710),(36870,'history_str','itemid',39710),(36871,'history_text','itemid',39710),(36872,'history_uint','itemid',39710),(36873,'trends','itemid',39710),(36874,'trends_uint','itemid',39710),(36875,'events','itemid',39711),(36876,'history','itemid',39711),(36877,'history_log','itemid',39711),(36878,'history_str','itemid',39711),(36879,'history_text','itemid',39711),(36880,'history_uint','itemid',39711),(36881,'trends','itemid',39711),(36882,'trends_uint','itemid',39711),(36883,'events','itemid',39712),(36884,'history','itemid',39712),(36885,'history_log','itemid',39712),(36886,'history_str','itemid',39712),(36887,'history_text','itemid',39712),(36888,'history_uint','itemid',39712),(36889,'trends','itemid',39712),(36890,'trends_uint','itemid',39712),(36891,'events','itemid',39713),(36892,'history','itemid',39713),(36893,'history_log','itemid',39713),(36894,'history_str','itemid',39713),(36895,'history_text','itemid',39713),(36896,'history_uint','itemid',39713),(36897,'trends','itemid',39713),(36898,'trends_uint','itemid',39713),(36899,'events','itemid',39714),(36900,'history','itemid',39714),(36901,'history_log','itemid',39714),(36902,'history_str','itemid',39714),(36903,'history_text','itemid',39714),(36904,'history_uint','itemid',39714),(36905,'trends','itemid',39714),(36906,'trends_uint','itemid',39714),(36907,'events','itemid',39715),(36908,'history','itemid',39715),(36909,'history_log','itemid',39715),(36910,'history_str','itemid',39715),(36911,'history_text','itemid',39715),(36912,'history_uint','itemid',39715),(36913,'trends','itemid',39715),(36914,'trends_uint','itemid',39715),(36915,'events','itemid',40117),(36916,'history','itemid',40117),(36917,'history_log','itemid',40117),(36918,'history_str','itemid',40117),(36919,'history_text','itemid',40117),(36920,'history_uint','itemid',40117),(36921,'trends','itemid',40117),(36922,'trends_uint','itemid',40117),(36923,'events','itemid',40119),(36924,'history','itemid',40119),(36925,'history_log','itemid',40119),(36926,'history_str','itemid',40119),(36927,'history_text','itemid',40119),(36928,'history_uint','itemid',40119),(36929,'trends','itemid',40119),(36930,'trends_uint','itemid',40119),(36931,'events','itemid',40120),(36932,'history','itemid',40120),(36933,'history_log','itemid',40120),(36934,'history_str','itemid',40120),(36935,'history_text','itemid',40120),(36936,'history_uint','itemid',40120),(36937,'trends','itemid',40120),(36938,'trends_uint','itemid',40120),(36939,'events','itemid',40121),(36940,'history','itemid',40121),(36941,'history_log','itemid',40121),(36942,'history_str','itemid',40121),(36943,'history_text','itemid',40121),(36944,'history_uint','itemid',40121),(36945,'trends','itemid',40121),(36946,'trends_uint','itemid',40121),(36947,'events','itemid',40122),(36948,'history','itemid',40122),(36949,'history_log','itemid',40122),(36950,'history_str','itemid',40122),(36951,'history_text','itemid',40122),(36952,'history_uint','itemid',40122),(36953,'trends','itemid',40122),(36954,'trends_uint','itemid',40122),(36955,'events','itemid',40123),(36956,'history','itemid',40123),(36957,'history_log','itemid',40123),(36958,'history_str','itemid',40123),(36959,'history_text','itemid',40123),(36960,'history_uint','itemid',40123),(36961,'trends','itemid',40123),(36962,'trends_uint','itemid',40123),(36963,'events','itemid',40124),(36964,'history','itemid',40124),(36965,'history_log','itemid',40124),(36966,'history_str','itemid',40124),(36967,'history_text','itemid',40124),(36968,'history_uint','itemid',40124),(36969,'trends','itemid',40124),(36970,'trends_uint','itemid',40124),(36971,'events','itemid',40125),(36972,'history','itemid',40125),(36973,'history_log','itemid',40125),(36974,'history_str','itemid',40125),(36975,'history_text','itemid',40125),(36976,'history_uint','itemid',40125),(36977,'trends','itemid',40125),(36978,'trends_uint','itemid',40125),(36979,'events','itemid',40126),(36980,'history','itemid',40126),(36981,'history_log','itemid',40126),(36982,'history_str','itemid',40126),(36983,'history_text','itemid',40126),(36984,'history_uint','itemid',40126),(36985,'trends','itemid',40126),(36986,'trends_uint','itemid',40126),(36987,'events','itemid',40128),(36988,'history','itemid',40128),(36989,'history_log','itemid',40128),(36990,'history_str','itemid',40128),(36991,'history_text','itemid',40128),(36992,'history_uint','itemid',40128),(36993,'trends','itemid',40128),(36994,'trends_uint','itemid',40128),(36995,'events','itemid',40129),(36996,'history','itemid',40129),(36997,'history_log','itemid',40129),(36998,'history_str','itemid',40129),(36999,'history_text','itemid',40129),(37000,'history_uint','itemid',40129),(37001,'trends','itemid',40129),(37002,'trends_uint','itemid',40129),(37003,'events','itemid',40130),(37004,'history','itemid',40130),(37005,'history_log','itemid',40130),(37006,'history_str','itemid',40130),(37007,'history_text','itemid',40130),(37008,'history_uint','itemid',40130),(37009,'trends','itemid',40130),(37010,'trends_uint','itemid',40130),(37011,'events','itemid',40131),(37012,'history','itemid',40131),(37013,'history_log','itemid',40131),(37014,'history_str','itemid',40131),(37015,'history_text','itemid',40131),(37016,'history_uint','itemid',40131),(37017,'trends','itemid',40131),(37018,'trends_uint','itemid',40131),(37019,'events','itemid',40132),(37020,'history','itemid',40132),(37021,'history_log','itemid',40132),(37022,'history_str','itemid',40132),(37023,'history_text','itemid',40132),(37024,'history_uint','itemid',40132),(37025,'trends','itemid',40132),(37026,'trends_uint','itemid',40132),(37027,'events','itemid',40133),(37028,'history','itemid',40133),(37029,'history_log','itemid',40133),(37030,'history_str','itemid',40133),(37031,'history_text','itemid',40133),(37032,'history_uint','itemid',40133),(37033,'trends','itemid',40133),(37034,'trends_uint','itemid',40133),(37035,'events','itemid',40134),(37036,'history','itemid',40134),(37037,'history_log','itemid',40134),(37038,'history_str','itemid',40134),(37039,'history_text','itemid',40134),(37040,'history_uint','itemid',40134),(37041,'trends','itemid',40134),(37042,'trends_uint','itemid',40134),(37043,'events','itemid',40135),(37044,'history','itemid',40135),(37045,'history_log','itemid',40135),(37046,'history_str','itemid',40135),(37047,'history_text','itemid',40135),(37048,'history_uint','itemid',40135),(37049,'trends','itemid',40135),(37050,'trends_uint','itemid',40135),(37051,'events','itemid',40136),(37052,'history','itemid',40136),(37053,'history_log','itemid',40136),(37054,'history_str','itemid',40136),(37055,'history_text','itemid',40136),(37056,'history_uint','itemid',40136),(37057,'trends','itemid',40136),(37058,'trends_uint','itemid',40136),(37059,'events','itemid',40798),(37060,'history','itemid',40798),(37061,'history_log','itemid',40798),(37062,'history_str','itemid',40798),(37063,'history_text','itemid',40798),(37064,'history_uint','itemid',40798),(37065,'trends','itemid',40798),(37066,'trends_uint','itemid',40798),(37067,'events','itemid',40799),(37068,'history','itemid',40799),(37069,'history_log','itemid',40799),(37070,'history_str','itemid',40799),(37071,'history_text','itemid',40799),(37072,'history_uint','itemid',40799),(37073,'trends','itemid',40799),(37074,'trends_uint','itemid',40799),(37075,'events','itemid',40800),(37076,'history','itemid',40800),(37077,'history_log','itemid',40800),(37078,'history_str','itemid',40800),(37079,'history_text','itemid',40800),(37080,'history_uint','itemid',40800),(37081,'trends','itemid',40800),(37082,'trends_uint','itemid',40800),(37083,'events','itemid',40801),(37084,'history','itemid',40801),(37085,'history_log','itemid',40801),(37086,'history_str','itemid',40801),(37087,'history_text','itemid',40801),(37088,'history_uint','itemid',40801),(37089,'trends','itemid',40801),(37090,'trends_uint','itemid',40801),(37091,'events','itemid',40802),(37092,'history','itemid',40802),(37093,'history_log','itemid',40802),(37094,'history_str','itemid',40802),(37095,'history_text','itemid',40802),(37096,'history_uint','itemid',40802),(37097,'trends','itemid',40802),(37098,'trends_uint','itemid',40802),(37099,'events','itemid',40803),(37100,'history','itemid',40803),(37101,'history_log','itemid',40803),(37102,'history_str','itemid',40803),(37103,'history_text','itemid',40803),(37104,'history_uint','itemid',40803),(37105,'trends','itemid',40803),(37106,'trends_uint','itemid',40803),(37107,'events','itemid',40804),(37108,'history','itemid',40804),(37109,'history_log','itemid',40804),(37110,'history_str','itemid',40804),(37111,'history_text','itemid',40804),(37112,'history_uint','itemid',40804),(37113,'trends','itemid',40804),(37114,'trends_uint','itemid',40804),(37115,'events','itemid',40805),(37116,'history','itemid',40805),(37117,'history_log','itemid',40805),(37118,'history_str','itemid',40805),(37119,'history_text','itemid',40805),(37120,'history_uint','itemid',40805),(37121,'trends','itemid',40805),(37122,'trends_uint','itemid',40805),(37123,'events','itemid',40806),(37124,'history','itemid',40806),(37125,'history_log','itemid',40806),(37126,'history_str','itemid',40806),(37127,'history_text','itemid',40806),(37128,'history_uint','itemid',40806),(37129,'trends','itemid',40806),(37130,'trends_uint','itemid',40806),(37131,'events','itemid',40807),(37132,'history','itemid',40807),(37133,'history_log','itemid',40807),(37134,'history_str','itemid',40807),(37135,'history_text','itemid',40807),(37136,'history_uint','itemid',40807),(37137,'trends','itemid',40807),(37138,'trends_uint','itemid',40807),(37139,'events','itemid',40808),(37140,'history','itemid',40808),(37141,'history_log','itemid',40808),(37142,'history_str','itemid',40808),(37143,'history_text','itemid',40808),(37144,'history_uint','itemid',40808),(37145,'trends','itemid',40808),(37146,'trends_uint','itemid',40808),(37147,'events','itemid',41606),(37148,'history','itemid',41606),(37149,'history_log','itemid',41606),(37150,'history_str','itemid',41606),(37151,'history_text','itemid',41606),(37152,'history_uint','itemid',41606),(37153,'trends','itemid',41606),(37154,'trends_uint','itemid',41606),(37155,'events','itemid',41607),(37156,'history','itemid',41607),(37157,'history_log','itemid',41607),(37158,'history_str','itemid',41607),(37159,'history_text','itemid',41607),(37160,'history_uint','itemid',41607),(37161,'trends','itemid',41607),(37162,'trends_uint','itemid',41607),(37163,'events','itemid',41608),(37164,'history','itemid',41608),(37165,'history_log','itemid',41608),(37166,'history_str','itemid',41608),(37167,'history_text','itemid',41608),(37168,'history_uint','itemid',41608),(37169,'trends','itemid',41608),(37170,'trends_uint','itemid',41608),(37171,'events','itemid',41609),(37172,'history','itemid',41609),(37173,'history_log','itemid',41609),(37174,'history_str','itemid',41609),(37175,'history_text','itemid',41609),(37176,'history_uint','itemid',41609),(37177,'trends','itemid',41609),(37178,'trends_uint','itemid',41609),(37179,'events','itemid',41610),(37180,'history','itemid',41610),(37181,'history_log','itemid',41610),(37182,'history_str','itemid',41610),(37183,'history_text','itemid',41610),(37184,'history_uint','itemid',41610),(37185,'trends','itemid',41610),(37186,'trends_uint','itemid',41610),(37187,'events','itemid',41611),(37188,'history','itemid',41611),(37189,'history_log','itemid',41611),(37190,'history_str','itemid',41611),(37191,'history_text','itemid',41611),(37192,'history_uint','itemid',41611),(37193,'trends','itemid',41611),(37194,'trends_uint','itemid',41611),(37195,'events','itemid',41612),(37196,'history','itemid',41612),(37197,'history_log','itemid',41612),(37198,'history_str','itemid',41612),(37199,'history_text','itemid',41612),(37200,'history_uint','itemid',41612),(37201,'trends','itemid',41612),(37202,'trends_uint','itemid',41612),(37203,'events','itemid',41613),(37204,'history','itemid',41613),(37205,'history_log','itemid',41613),(37206,'history_str','itemid',41613),(37207,'history_text','itemid',41613),(37208,'history_uint','itemid',41613),(37209,'trends','itemid',41613),(37210,'trends_uint','itemid',41613),(37211,'events','itemid',41614),(37212,'history','itemid',41614),(37213,'history_log','itemid',41614),(37214,'history_str','itemid',41614),(37215,'history_text','itemid',41614),(37216,'history_uint','itemid',41614),(37217,'trends','itemid',41614),(37218,'trends_uint','itemid',41614),(37219,'events','itemid',41615),(37220,'history','itemid',41615),(37221,'history_log','itemid',41615),(37222,'history_str','itemid',41615),(37223,'history_text','itemid',41615),(37224,'history_uint','itemid',41615),(37225,'trends','itemid',41615),(37226,'trends_uint','itemid',41615),(37227,'events','itemid',41616),(37228,'history','itemid',41616),(37229,'history_log','itemid',41616),(37230,'history_str','itemid',41616),(37231,'history_text','itemid',41616),(37232,'history_uint','itemid',41616),(37233,'trends','itemid',41616),(37234,'trends_uint','itemid',41616),(37235,'events','itemid',41627),(37236,'history','itemid',41627),(37237,'history_log','itemid',41627),(37238,'history_str','itemid',41627),(37239,'history_text','itemid',41627),(37240,'history_uint','itemid',41627),(37241,'trends','itemid',41627),(37242,'trends_uint','itemid',41627),(37243,'events','itemid',41628),(37244,'history','itemid',41628),(37245,'history_log','itemid',41628),(37246,'history_str','itemid',41628),(37247,'history_text','itemid',41628),(37248,'history_uint','itemid',41628),(37249,'trends','itemid',41628),(37250,'trends_uint','itemid',41628),(37251,'events','itemid',41629),(37252,'history','itemid',41629),(37253,'history_log','itemid',41629),(37254,'history_str','itemid',41629),(37255,'history_text','itemid',41629),(37256,'history_uint','itemid',41629),(37257,'trends','itemid',41629),(37258,'trends_uint','itemid',41629),(37259,'events','itemid',41630),(37260,'history','itemid',41630),(37261,'history_log','itemid',41630),(37262,'history_str','itemid',41630),(37263,'history_text','itemid',41630),(37264,'history_uint','itemid',41630),(37265,'trends','itemid',41630),(37266,'trends_uint','itemid',41630),(37267,'events','itemid',41631),(37268,'history','itemid',41631),(37269,'history_log','itemid',41631),(37270,'history_str','itemid',41631),(37271,'history_text','itemid',41631),(37272,'history_uint','itemid',41631),(37273,'trends','itemid',41631),(37274,'trends_uint','itemid',41631),(37275,'events','itemid',41632),(37276,'history','itemid',41632),(37277,'history_log','itemid',41632),(37278,'history_str','itemid',41632),(37279,'history_text','itemid',41632),(37280,'history_uint','itemid',41632),(37281,'trends','itemid',41632),(37282,'trends_uint','itemid',41632),(37283,'events','itemid',41633),(37284,'history','itemid',41633),(37285,'history_log','itemid',41633),(37286,'history_str','itemid',41633),(37287,'history_text','itemid',41633),(37288,'history_uint','itemid',41633),(37289,'trends','itemid',41633),(37290,'trends_uint','itemid',41633),(37291,'events','itemid',41634),(37292,'history','itemid',41634),(37293,'history_log','itemid',41634),(37294,'history_str','itemid',41634),(37295,'history_text','itemid',41634),(37296,'history_uint','itemid',41634),(37297,'trends','itemid',41634),(37298,'trends_uint','itemid',41634),(37299,'events','itemid',41635),(37300,'history','itemid',41635),(37301,'history_log','itemid',41635),(37302,'history_str','itemid',41635),(37303,'history_text','itemid',41635),(37304,'history_uint','itemid',41635),(37305,'trends','itemid',41635),(37306,'trends_uint','itemid',41635),(37307,'events','itemid',41636),(37308,'history','itemid',41636),(37309,'history_log','itemid',41636),(37310,'history_str','itemid',41636),(37311,'history_text','itemid',41636),(37312,'history_uint','itemid',41636),(37313,'trends','itemid',41636),(37314,'trends_uint','itemid',41636),(37315,'events','itemid',41637),(37316,'history','itemid',41637),(37317,'history_log','itemid',41637),(37318,'history_str','itemid',41637),(37319,'history_text','itemid',41637),(37320,'history_uint','itemid',41637),(37321,'trends','itemid',41637),(37322,'trends_uint','itemid',41637),(37323,'events','itemid',41648),(37324,'history','itemid',41648),(37325,'history_log','itemid',41648),(37326,'history_str','itemid',41648),(37327,'history_text','itemid',41648),(37328,'history_uint','itemid',41648),(37329,'trends','itemid',41648),(37330,'trends_uint','itemid',41648),(37331,'events','itemid',41649),(37332,'history','itemid',41649),(37333,'history_log','itemid',41649),(37334,'history_str','itemid',41649),(37335,'history_text','itemid',41649),(37336,'history_uint','itemid',41649),(37337,'trends','itemid',41649),(37338,'trends_uint','itemid',41649),(37339,'events','itemid',41650),(37340,'history','itemid',41650),(37341,'history_log','itemid',41650),(37342,'history_str','itemid',41650),(37343,'history_text','itemid',41650),(37344,'history_uint','itemid',41650),(37345,'trends','itemid',41650),(37346,'trends_uint','itemid',41650),(37347,'events','itemid',41651),(37348,'history','itemid',41651),(37349,'history_log','itemid',41651),(37350,'history_str','itemid',41651),(37351,'history_text','itemid',41651),(37352,'history_uint','itemid',41651),(37353,'trends','itemid',41651),(37354,'trends_uint','itemid',41651),(37355,'events','itemid',41652),(37356,'history','itemid',41652),(37357,'history_log','itemid',41652),(37358,'history_str','itemid',41652),(37359,'history_text','itemid',41652),(37360,'history_uint','itemid',41652),(37361,'trends','itemid',41652),(37362,'trends_uint','itemid',41652),(37363,'events','itemid',41653),(37364,'history','itemid',41653),(37365,'history_log','itemid',41653),(37366,'history_str','itemid',41653),(37367,'history_text','itemid',41653),(37368,'history_uint','itemid',41653),(37369,'trends','itemid',41653),(37370,'trends_uint','itemid',41653),(37371,'events','itemid',41654),(37372,'history','itemid',41654),(37373,'history_log','itemid',41654),(37374,'history_str','itemid',41654),(37375,'history_text','itemid',41654),(37376,'history_uint','itemid',41654),(37377,'trends','itemid',41654),(37378,'trends_uint','itemid',41654),(37379,'events','itemid',41655),(37380,'history','itemid',41655),(37381,'history_log','itemid',41655),(37382,'history_str','itemid',41655),(37383,'history_text','itemid',41655),(37384,'history_uint','itemid',41655),(37385,'trends','itemid',41655),(37386,'trends_uint','itemid',41655),(37387,'events','itemid',41656),(37388,'history','itemid',41656),(37389,'history_log','itemid',41656),(37390,'history_str','itemid',41656),(37391,'history_text','itemid',41656),(37392,'history_uint','itemid',41656),(37393,'trends','itemid',41656),(37394,'trends_uint','itemid',41656),(37395,'events','itemid',41657),(37396,'history','itemid',41657),(37397,'history_log','itemid',41657),(37398,'history_str','itemid',41657),(37399,'history_text','itemid',41657),(37400,'history_uint','itemid',41657),(37401,'trends','itemid',41657),(37402,'trends_uint','itemid',41657),(37403,'events','itemid',41658),(37404,'history','itemid',41658),(37405,'history_log','itemid',41658),(37406,'history_str','itemid',41658),(37407,'history_text','itemid',41658),(37408,'history_uint','itemid',41658),(37409,'trends','itemid',41658),(37410,'trends_uint','itemid',41658),(37411,'events','itemid',41669),(37412,'history','itemid',41669),(37413,'history_log','itemid',41669),(37414,'history_str','itemid',41669),(37415,'history_text','itemid',41669),(37416,'history_uint','itemid',41669),(37417,'trends','itemid',41669),(37418,'trends_uint','itemid',41669),(37419,'events','itemid',41670),(37420,'history','itemid',41670),(37421,'history_log','itemid',41670),(37422,'history_str','itemid',41670),(37423,'history_text','itemid',41670),(37424,'history_uint','itemid',41670),(37425,'trends','itemid',41670),(37426,'trends_uint','itemid',41670),(37427,'events','itemid',41671),(37428,'history','itemid',41671),(37429,'history_log','itemid',41671),(37430,'history_str','itemid',41671),(37431,'history_text','itemid',41671),(37432,'history_uint','itemid',41671),(37433,'trends','itemid',41671),(37434,'trends_uint','itemid',41671),(37435,'events','itemid',41672),(37436,'history','itemid',41672),(37437,'history_log','itemid',41672),(37438,'history_str','itemid',41672),(37439,'history_text','itemid',41672),(37440,'history_uint','itemid',41672),(37441,'trends','itemid',41672),(37442,'trends_uint','itemid',41672),(37443,'events','itemid',41673),(37444,'history','itemid',41673),(37445,'history_log','itemid',41673),(37446,'history_str','itemid',41673),(37447,'history_text','itemid',41673),(37448,'history_uint','itemid',41673),(37449,'trends','itemid',41673),(37450,'trends_uint','itemid',41673),(37451,'events','itemid',41674),(37452,'history','itemid',41674),(37453,'history_log','itemid',41674),(37454,'history_str','itemid',41674),(37455,'history_text','itemid',41674),(37456,'history_uint','itemid',41674),(37457,'trends','itemid',41674),(37458,'trends_uint','itemid',41674),(37459,'events','itemid',41675),(37460,'history','itemid',41675),(37461,'history_log','itemid',41675),(37462,'history_str','itemid',41675),(37463,'history_text','itemid',41675),(37464,'history_uint','itemid',41675),(37465,'trends','itemid',41675),(37466,'trends_uint','itemid',41675),(37467,'events','itemid',41676),(37468,'history','itemid',41676),(37469,'history_log','itemid',41676),(37470,'history_str','itemid',41676),(37471,'history_text','itemid',41676),(37472,'history_uint','itemid',41676),(37473,'trends','itemid',41676),(37474,'trends_uint','itemid',41676),(37475,'events','itemid',41677),(37476,'history','itemid',41677),(37477,'history_log','itemid',41677),(37478,'history_str','itemid',41677),(37479,'history_text','itemid',41677),(37480,'history_uint','itemid',41677),(37481,'trends','itemid',41677),(37482,'trends_uint','itemid',41677),(37483,'events','itemid',41678),(37484,'history','itemid',41678),(37485,'history_log','itemid',41678),(37486,'history_str','itemid',41678),(37487,'history_text','itemid',41678),(37488,'history_uint','itemid',41678),(37489,'trends','itemid',41678),(37490,'trends_uint','itemid',41678),(37491,'events','itemid',41679),(37492,'history','itemid',41679),(37493,'history_log','itemid',41679),(37494,'history_str','itemid',41679),(37495,'history_text','itemid',41679),(37496,'history_uint','itemid',41679),(37497,'trends','itemid',41679),(37498,'trends_uint','itemid',41679),(37499,'events','itemid',41690),(37500,'history','itemid',41690),(37501,'history_log','itemid',41690),(37502,'history_str','itemid',41690),(37503,'history_text','itemid',41690),(37504,'history_uint','itemid',41690),(37505,'trends','itemid',41690),(37506,'trends_uint','itemid',41690),(37507,'events','itemid',41691),(37508,'history','itemid',41691),(37509,'history_log','itemid',41691),(37510,'history_str','itemid',41691),(37511,'history_text','itemid',41691),(37512,'history_uint','itemid',41691),(37513,'trends','itemid',41691),(37514,'trends_uint','itemid',41691),(37515,'events','itemid',41692),(37516,'history','itemid',41692),(37517,'history_log','itemid',41692),(37518,'history_str','itemid',41692),(37519,'history_text','itemid',41692),(37520,'history_uint','itemid',41692),(37521,'trends','itemid',41692),(37522,'trends_uint','itemid',41692),(37523,'events','itemid',41693),(37524,'history','itemid',41693),(37525,'history_log','itemid',41693),(37526,'history_str','itemid',41693),(37527,'history_text','itemid',41693),(37528,'history_uint','itemid',41693),(37529,'trends','itemid',41693),(37530,'trends_uint','itemid',41693),(37531,'events','itemid',41694),(37532,'history','itemid',41694),(37533,'history_log','itemid',41694),(37534,'history_str','itemid',41694),(37535,'history_text','itemid',41694),(37536,'history_uint','itemid',41694),(37537,'trends','itemid',41694),(37538,'trends_uint','itemid',41694),(37539,'events','itemid',41695),(37540,'history','itemid',41695),(37541,'history_log','itemid',41695),(37542,'history_str','itemid',41695),(37543,'history_text','itemid',41695),(37544,'history_uint','itemid',41695),(37545,'trends','itemid',41695),(37546,'trends_uint','itemid',41695),(37547,'events','itemid',41696),(37548,'history','itemid',41696),(37549,'history_log','itemid',41696),(37550,'history_str','itemid',41696),(37551,'history_text','itemid',41696),(37552,'history_uint','itemid',41696),(37553,'trends','itemid',41696),(37554,'trends_uint','itemid',41696),(37555,'events','itemid',41697),(37556,'history','itemid',41697),(37557,'history_log','itemid',41697),(37558,'history_str','itemid',41697),(37559,'history_text','itemid',41697),(37560,'history_uint','itemid',41697),(37561,'trends','itemid',41697),(37562,'trends_uint','itemid',41697),(37563,'events','itemid',41698),(37564,'history','itemid',41698),(37565,'history_log','itemid',41698),(37566,'history_str','itemid',41698),(37567,'history_text','itemid',41698),(37568,'history_uint','itemid',41698),(37569,'trends','itemid',41698),(37570,'trends_uint','itemid',41698),(37571,'events','itemid',41699),(37572,'history','itemid',41699),(37573,'history_log','itemid',41699),(37574,'history_str','itemid',41699),(37575,'history_text','itemid',41699),(37576,'history_uint','itemid',41699),(37577,'trends','itemid',41699),(37578,'trends_uint','itemid',41699),(37579,'events','itemid',41700),(37580,'history','itemid',41700),(37581,'history_log','itemid',41700),(37582,'history_str','itemid',41700),(37583,'history_text','itemid',41700),(37584,'history_uint','itemid',41700),(37585,'trends','itemid',41700),(37586,'trends_uint','itemid',41700),(37587,'events','itemid',41711),(37588,'history','itemid',41711),(37589,'history_log','itemid',41711),(37590,'history_str','itemid',41711),(37591,'history_text','itemid',41711),(37592,'history_uint','itemid',41711),(37593,'trends','itemid',41711),(37594,'trends_uint','itemid',41711),(37595,'events','itemid',41712),(37596,'history','itemid',41712),(37597,'history_log','itemid',41712),(37598,'history_str','itemid',41712),(37599,'history_text','itemid',41712),(37600,'history_uint','itemid',41712),(37601,'trends','itemid',41712),(37602,'trends_uint','itemid',41712),(37603,'events','itemid',41713),(37604,'history','itemid',41713),(37605,'history_log','itemid',41713),(37606,'history_str','itemid',41713),(37607,'history_text','itemid',41713),(37608,'history_uint','itemid',41713),(37609,'trends','itemid',41713),(37610,'trends_uint','itemid',41713),(37611,'events','itemid',41714),(37612,'history','itemid',41714),(37613,'history_log','itemid',41714),(37614,'history_str','itemid',41714),(37615,'history_text','itemid',41714),(37616,'history_uint','itemid',41714),(37617,'trends','itemid',41714),(37618,'trends_uint','itemid',41714),(37619,'events','itemid',41715),(37620,'history','itemid',41715),(37621,'history_log','itemid',41715),(37622,'history_str','itemid',41715),(37623,'history_text','itemid',41715),(37624,'history_uint','itemid',41715),(37625,'trends','itemid',41715),(37626,'trends_uint','itemid',41715),(37627,'events','itemid',41716),(37628,'history','itemid',41716),(37629,'history_log','itemid',41716),(37630,'history_str','itemid',41716),(37631,'history_text','itemid',41716),(37632,'history_uint','itemid',41716),(37633,'trends','itemid',41716),(37634,'trends_uint','itemid',41716),(37635,'events','itemid',41717),(37636,'history','itemid',41717),(37637,'history_log','itemid',41717),(37638,'history_str','itemid',41717),(37639,'history_text','itemid',41717),(37640,'history_uint','itemid',41717),(37641,'trends','itemid',41717),(37642,'trends_uint','itemid',41717),(37643,'events','itemid',41718),(37644,'history','itemid',41718),(37645,'history_log','itemid',41718),(37646,'history_str','itemid',41718),(37647,'history_text','itemid',41718),(37648,'history_uint','itemid',41718),(37649,'trends','itemid',41718),(37650,'trends_uint','itemid',41718),(37651,'events','itemid',41719),(37652,'history','itemid',41719),(37653,'history_log','itemid',41719),(37654,'history_str','itemid',41719),(37655,'history_text','itemid',41719),(37656,'history_uint','itemid',41719),(37657,'trends','itemid',41719),(37658,'trends_uint','itemid',41719),(37659,'events','itemid',41720),(37660,'history','itemid',41720),(37661,'history_log','itemid',41720),(37662,'history_str','itemid',41720),(37663,'history_text','itemid',41720),(37664,'history_uint','itemid',41720),(37665,'trends','itemid',41720),(37666,'trends_uint','itemid',41720),(37667,'events','itemid',41721),(37668,'history','itemid',41721),(37669,'history_log','itemid',41721),(37670,'history_str','itemid',41721),(37671,'history_text','itemid',41721),(37672,'history_uint','itemid',41721),(37673,'trends','itemid',41721),(37674,'trends_uint','itemid',41721),(37675,'events','itemid',41732),(37676,'history','itemid',41732),(37677,'history_log','itemid',41732),(37678,'history_str','itemid',41732),(37679,'history_text','itemid',41732),(37680,'history_uint','itemid',41732),(37681,'trends','itemid',41732),(37682,'trends_uint','itemid',41732),(37683,'events','itemid',41733),(37684,'history','itemid',41733),(37685,'history_log','itemid',41733),(37686,'history_str','itemid',41733),(37687,'history_text','itemid',41733),(37688,'history_uint','itemid',41733),(37689,'trends','itemid',41733),(37690,'trends_uint','itemid',41733),(37691,'events','itemid',41734),(37692,'history','itemid',41734),(37693,'history_log','itemid',41734),(37694,'history_str','itemid',41734),(37695,'history_text','itemid',41734),(37696,'history_uint','itemid',41734),(37697,'trends','itemid',41734),(37698,'trends_uint','itemid',41734),(37699,'events','itemid',41735),(37700,'history','itemid',41735),(37701,'history_log','itemid',41735),(37702,'history_str','itemid',41735),(37703,'history_text','itemid',41735),(37704,'history_uint','itemid',41735),(37705,'trends','itemid',41735),(37706,'trends_uint','itemid',41735),(37707,'events','itemid',41736),(37708,'history','itemid',41736),(37709,'history_log','itemid',41736),(37710,'history_str','itemid',41736),(37711,'history_text','itemid',41736),(37712,'history_uint','itemid',41736),(37713,'trends','itemid',41736),(37714,'trends_uint','itemid',41736),(37715,'events','itemid',41737),(37716,'history','itemid',41737),(37717,'history_log','itemid',41737),(37718,'history_str','itemid',41737),(37719,'history_text','itemid',41737),(37720,'history_uint','itemid',41737),(37721,'trends','itemid',41737),(37722,'trends_uint','itemid',41737),(37723,'events','itemid',41738),(37724,'history','itemid',41738),(37725,'history_log','itemid',41738),(37726,'history_str','itemid',41738),(37727,'history_text','itemid',41738),(37728,'history_uint','itemid',41738),(37729,'trends','itemid',41738),(37730,'trends_uint','itemid',41738),(37731,'events','itemid',41739),(37732,'history','itemid',41739),(37733,'history_log','itemid',41739),(37734,'history_str','itemid',41739),(37735,'history_text','itemid',41739),(37736,'history_uint','itemid',41739),(37737,'trends','itemid',41739),(37738,'trends_uint','itemid',41739),(37739,'events','itemid',41740),(37740,'history','itemid',41740),(37741,'history_log','itemid',41740),(37742,'history_str','itemid',41740),(37743,'history_text','itemid',41740),(37744,'history_uint','itemid',41740),(37745,'trends','itemid',41740),(37746,'trends_uint','itemid',41740),(37747,'events','itemid',41741),(37748,'history','itemid',41741),(37749,'history_log','itemid',41741),(37750,'history_str','itemid',41741),(37751,'history_text','itemid',41741),(37752,'history_uint','itemid',41741),(37753,'trends','itemid',41741),(37754,'trends_uint','itemid',41741),(37755,'events','itemid',41742),(37756,'history','itemid',41742),(37757,'history_log','itemid',41742),(37758,'history_str','itemid',41742),(37759,'history_text','itemid',41742),(37760,'history_uint','itemid',41742),(37761,'trends','itemid',41742),(37762,'trends_uint','itemid',41742),(37763,'events','itemid',41753),(37764,'history','itemid',41753),(37765,'history_log','itemid',41753),(37766,'history_str','itemid',41753),(37767,'history_text','itemid',41753),(37768,'history_uint','itemid',41753),(37769,'trends','itemid',41753),(37770,'trends_uint','itemid',41753),(37771,'events','itemid',41754),(37772,'history','itemid',41754),(37773,'history_log','itemid',41754),(37774,'history_str','itemid',41754),(37775,'history_text','itemid',41754),(37776,'history_uint','itemid',41754),(37777,'trends','itemid',41754),(37778,'trends_uint','itemid',41754),(37779,'events','itemid',41755),(37780,'history','itemid',41755),(37781,'history_log','itemid',41755),(37782,'history_str','itemid',41755),(37783,'history_text','itemid',41755),(37784,'history_uint','itemid',41755),(37785,'trends','itemid',41755),(37786,'trends_uint','itemid',41755),(37787,'events','itemid',41756),(37788,'history','itemid',41756),(37789,'history_log','itemid',41756),(37790,'history_str','itemid',41756),(37791,'history_text','itemid',41756),(37792,'history_uint','itemid',41756),(37793,'trends','itemid',41756),(37794,'trends_uint','itemid',41756),(37795,'events','itemid',41757),(37796,'history','itemid',41757),(37797,'history_log','itemid',41757),(37798,'history_str','itemid',41757),(37799,'history_text','itemid',41757),(37800,'history_uint','itemid',41757),(37801,'trends','itemid',41757),(37802,'trends_uint','itemid',41757),(37803,'events','itemid',41758),(37804,'history','itemid',41758),(37805,'history_log','itemid',41758),(37806,'history_str','itemid',41758),(37807,'history_text','itemid',41758),(37808,'history_uint','itemid',41758),(37809,'trends','itemid',41758),(37810,'trends_uint','itemid',41758),(37811,'events','itemid',41759),(37812,'history','itemid',41759),(37813,'history_log','itemid',41759),(37814,'history_str','itemid',41759),(37815,'history_text','itemid',41759),(37816,'history_uint','itemid',41759),(37817,'trends','itemid',41759),(37818,'trends_uint','itemid',41759),(37819,'events','itemid',41760),(37820,'history','itemid',41760),(37821,'history_log','itemid',41760),(37822,'history_str','itemid',41760),(37823,'history_text','itemid',41760),(37824,'history_uint','itemid',41760),(37825,'trends','itemid',41760),(37826,'trends_uint','itemid',41760),(37827,'events','itemid',41761),(37828,'history','itemid',41761),(37829,'history_log','itemid',41761),(37830,'history_str','itemid',41761),(37831,'history_text','itemid',41761),(37832,'history_uint','itemid',41761),(37833,'trends','itemid',41761),(37834,'trends_uint','itemid',41761),(37835,'events','itemid',41762),(37836,'history','itemid',41762),(37837,'history_log','itemid',41762),(37838,'history_str','itemid',41762),(37839,'history_text','itemid',41762),(37840,'history_uint','itemid',41762),(37841,'trends','itemid',41762),(37842,'trends_uint','itemid',41762),(37843,'events','itemid',41763),(37844,'history','itemid',41763),(37845,'history_log','itemid',41763),(37846,'history_str','itemid',41763),(37847,'history_text','itemid',41763),(37848,'history_uint','itemid',41763),(37849,'trends','itemid',41763),(37850,'trends_uint','itemid',41763),(37851,'events','itemid',41774),(37852,'history','itemid',41774),(37853,'history_log','itemid',41774),(37854,'history_str','itemid',41774),(37855,'history_text','itemid',41774),(37856,'history_uint','itemid',41774),(37857,'trends','itemid',41774),(37858,'trends_uint','itemid',41774),(37859,'events','itemid',41775),(37860,'history','itemid',41775),(37861,'history_log','itemid',41775),(37862,'history_str','itemid',41775),(37863,'history_text','itemid',41775),(37864,'history_uint','itemid',41775),(37865,'trends','itemid',41775),(37866,'trends_uint','itemid',41775),(37867,'events','itemid',41776),(37868,'history','itemid',41776),(37869,'history_log','itemid',41776),(37870,'history_str','itemid',41776),(37871,'history_text','itemid',41776),(37872,'history_uint','itemid',41776),(37873,'trends','itemid',41776),(37874,'trends_uint','itemid',41776),(37875,'events','itemid',41777),(37876,'history','itemid',41777),(37877,'history_log','itemid',41777),(37878,'history_str','itemid',41777),(37879,'history_text','itemid',41777),(37880,'history_uint','itemid',41777),(37881,'trends','itemid',41777),(37882,'trends_uint','itemid',41777),(37883,'events','itemid',41778),(37884,'history','itemid',41778),(37885,'history_log','itemid',41778),(37886,'history_str','itemid',41778),(37887,'history_text','itemid',41778),(37888,'history_uint','itemid',41778),(37889,'trends','itemid',41778),(37890,'trends_uint','itemid',41778),(37891,'events','itemid',41779),(37892,'history','itemid',41779),(37893,'history_log','itemid',41779),(37894,'history_str','itemid',41779),(37895,'history_text','itemid',41779),(37896,'history_uint','itemid',41779),(37897,'trends','itemid',41779),(37898,'trends_uint','itemid',41779),(37899,'events','itemid',41780),(37900,'history','itemid',41780),(37901,'history_log','itemid',41780),(37902,'history_str','itemid',41780),(37903,'history_text','itemid',41780),(37904,'history_uint','itemid',41780),(37905,'trends','itemid',41780),(37906,'trends_uint','itemid',41780),(37907,'events','itemid',41781),(37908,'history','itemid',41781),(37909,'history_log','itemid',41781),(37910,'history_str','itemid',41781),(37911,'history_text','itemid',41781),(37912,'history_uint','itemid',41781),(37913,'trends','itemid',41781),(37914,'trends_uint','itemid',41781),(37915,'events','itemid',41782),(37916,'history','itemid',41782),(37917,'history_log','itemid',41782),(37918,'history_str','itemid',41782),(37919,'history_text','itemid',41782),(37920,'history_uint','itemid',41782),(37921,'trends','itemid',41782),(37922,'trends_uint','itemid',41782),(37923,'events','itemid',41783),(37924,'history','itemid',41783),(37925,'history_log','itemid',41783),(37926,'history_str','itemid',41783),(37927,'history_text','itemid',41783),(37928,'history_uint','itemid',41783),(37929,'trends','itemid',41783),(37930,'trends_uint','itemid',41783),(37931,'events','itemid',41784),(37932,'history','itemid',41784),(37933,'history_log','itemid',41784),(37934,'history_str','itemid',41784),(37935,'history_text','itemid',41784),(37936,'history_uint','itemid',41784),(37937,'trends','itemid',41784),(37938,'trends_uint','itemid',41784),(37939,'events','itemid',41795),(37940,'history','itemid',41795),(37941,'history_log','itemid',41795),(37942,'history_str','itemid',41795),(37943,'history_text','itemid',41795),(37944,'history_uint','itemid',41795),(37945,'trends','itemid',41795),(37946,'trends_uint','itemid',41795),(37947,'events','itemid',41796),(37948,'history','itemid',41796),(37949,'history_log','itemid',41796),(37950,'history_str','itemid',41796),(37951,'history_text','itemid',41796),(37952,'history_uint','itemid',41796),(37953,'trends','itemid',41796),(37954,'trends_uint','itemid',41796),(37955,'events','itemid',41797),(37956,'history','itemid',41797),(37957,'history_log','itemid',41797),(37958,'history_str','itemid',41797),(37959,'history_text','itemid',41797),(37960,'history_uint','itemid',41797),(37961,'trends','itemid',41797),(37962,'trends_uint','itemid',41797),(37963,'events','itemid',41798),(37964,'history','itemid',41798),(37965,'history_log','itemid',41798),(37966,'history_str','itemid',41798),(37967,'history_text','itemid',41798),(37968,'history_uint','itemid',41798),(37969,'trends','itemid',41798),(37970,'trends_uint','itemid',41798),(37971,'events','itemid',41799),(37972,'history','itemid',41799),(37973,'history_log','itemid',41799),(37974,'history_str','itemid',41799),(37975,'history_text','itemid',41799),(37976,'history_uint','itemid',41799),(37977,'trends','itemid',41799),(37978,'trends_uint','itemid',41799),(37979,'events','itemid',41800),(37980,'history','itemid',41800),(37981,'history_log','itemid',41800),(37982,'history_str','itemid',41800),(37983,'history_text','itemid',41800),(37984,'history_uint','itemid',41800),(37985,'trends','itemid',41800),(37986,'trends_uint','itemid',41800),(37987,'events','itemid',41801),(37988,'history','itemid',41801),(37989,'history_log','itemid',41801),(37990,'history_str','itemid',41801),(37991,'history_text','itemid',41801),(37992,'history_uint','itemid',41801),(37993,'trends','itemid',41801),(37994,'trends_uint','itemid',41801),(37995,'events','itemid',41802),(37996,'history','itemid',41802),(37997,'history_log','itemid',41802),(37998,'history_str','itemid',41802),(37999,'history_text','itemid',41802),(38000,'history_uint','itemid',41802),(38001,'trends','itemid',41802),(38002,'trends_uint','itemid',41802),(38003,'events','itemid',41803),(38004,'history','itemid',41803),(38005,'history_log','itemid',41803),(38006,'history_str','itemid',41803),(38007,'history_text','itemid',41803),(38008,'history_uint','itemid',41803),(38009,'trends','itemid',41803),(38010,'trends_uint','itemid',41803),(38011,'events','itemid',41804),(38012,'history','itemid',41804),(38013,'history_log','itemid',41804),(38014,'history_str','itemid',41804),(38015,'history_text','itemid',41804),(38016,'history_uint','itemid',41804),(38017,'trends','itemid',41804),(38018,'trends_uint','itemid',41804),(38019,'events','itemid',41805),(38020,'history','itemid',41805),(38021,'history_log','itemid',41805),(38022,'history_str','itemid',41805),(38023,'history_text','itemid',41805),(38024,'history_uint','itemid',41805),(38025,'trends','itemid',41805),(38026,'trends_uint','itemid',41805),(38027,'events','itemid',41816),(38028,'history','itemid',41816),(38029,'history_log','itemid',41816),(38030,'history_str','itemid',41816),(38031,'history_text','itemid',41816),(38032,'history_uint','itemid',41816),(38033,'trends','itemid',41816),(38034,'trends_uint','itemid',41816),(38035,'events','itemid',41817),(38036,'history','itemid',41817),(38037,'history_log','itemid',41817),(38038,'history_str','itemid',41817),(38039,'history_text','itemid',41817),(38040,'history_uint','itemid',41817),(38041,'trends','itemid',41817),(38042,'trends_uint','itemid',41817),(38043,'events','itemid',41818),(38044,'history','itemid',41818),(38045,'history_log','itemid',41818),(38046,'history_str','itemid',41818),(38047,'history_text','itemid',41818),(38048,'history_uint','itemid',41818),(38049,'trends','itemid',41818),(38050,'trends_uint','itemid',41818),(38051,'events','itemid',41819),(38052,'history','itemid',41819),(38053,'history_log','itemid',41819),(38054,'history_str','itemid',41819),(38055,'history_text','itemid',41819),(38056,'history_uint','itemid',41819),(38057,'trends','itemid',41819),(38058,'trends_uint','itemid',41819),(38059,'events','itemid',41820),(38060,'history','itemid',41820),(38061,'history_log','itemid',41820),(38062,'history_str','itemid',41820),(38063,'history_text','itemid',41820),(38064,'history_uint','itemid',41820),(38065,'trends','itemid',41820),(38066,'trends_uint','itemid',41820),(38067,'events','itemid',41821),(38068,'history','itemid',41821),(38069,'history_log','itemid',41821),(38070,'history_str','itemid',41821),(38071,'history_text','itemid',41821),(38072,'history_uint','itemid',41821),(38073,'trends','itemid',41821),(38074,'trends_uint','itemid',41821),(38075,'events','itemid',41822),(38076,'history','itemid',41822),(38077,'history_log','itemid',41822),(38078,'history_str','itemid',41822),(38079,'history_text','itemid',41822),(38080,'history_uint','itemid',41822),(38081,'trends','itemid',41822),(38082,'trends_uint','itemid',41822),(38083,'events','itemid',41823),(38084,'history','itemid',41823),(38085,'history_log','itemid',41823),(38086,'history_str','itemid',41823),(38087,'history_text','itemid',41823),(38088,'history_uint','itemid',41823),(38089,'trends','itemid',41823),(38090,'trends_uint','itemid',41823),(38091,'events','itemid',41824),(38092,'history','itemid',41824),(38093,'history_log','itemid',41824),(38094,'history_str','itemid',41824),(38095,'history_text','itemid',41824),(38096,'history_uint','itemid',41824),(38097,'trends','itemid',41824),(38098,'trends_uint','itemid',41824),(38099,'events','itemid',41825),(38100,'history','itemid',41825),(38101,'history_log','itemid',41825),(38102,'history_str','itemid',41825),(38103,'history_text','itemid',41825),(38104,'history_uint','itemid',41825),(38105,'trends','itemid',41825),(38106,'trends_uint','itemid',41825),(38107,'events','itemid',41826),(38108,'history','itemid',41826),(38109,'history_log','itemid',41826),(38110,'history_str','itemid',41826),(38111,'history_text','itemid',41826),(38112,'history_uint','itemid',41826),(38113,'trends','itemid',41826),(38114,'trends_uint','itemid',41826),(38115,'events','itemid',41837),(38116,'history','itemid',41837),(38117,'history_log','itemid',41837),(38118,'history_str','itemid',41837),(38119,'history_text','itemid',41837),(38120,'history_uint','itemid',41837),(38121,'trends','itemid',41837),(38122,'trends_uint','itemid',41837),(38123,'events','itemid',41838),(38124,'history','itemid',41838),(38125,'history_log','itemid',41838),(38126,'history_str','itemid',41838),(38127,'history_text','itemid',41838),(38128,'history_uint','itemid',41838),(38129,'trends','itemid',41838),(38130,'trends_uint','itemid',41838),(38131,'events','itemid',41839),(38132,'history','itemid',41839),(38133,'history_log','itemid',41839),(38134,'history_str','itemid',41839),(38135,'history_text','itemid',41839),(38136,'history_uint','itemid',41839),(38137,'trends','itemid',41839),(38138,'trends_uint','itemid',41839),(38139,'events','itemid',41840),(38140,'history','itemid',41840),(38141,'history_log','itemid',41840),(38142,'history_str','itemid',41840),(38143,'history_text','itemid',41840),(38144,'history_uint','itemid',41840),(38145,'trends','itemid',41840),(38146,'trends_uint','itemid',41840),(38147,'events','itemid',41841),(38148,'history','itemid',41841),(38149,'history_log','itemid',41841),(38150,'history_str','itemid',41841),(38151,'history_text','itemid',41841),(38152,'history_uint','itemid',41841),(38153,'trends','itemid',41841),(38154,'trends_uint','itemid',41841),(38155,'events','itemid',41842),(38156,'history','itemid',41842),(38157,'history_log','itemid',41842),(38158,'history_str','itemid',41842),(38159,'history_text','itemid',41842),(38160,'history_uint','itemid',41842),(38161,'trends','itemid',41842),(38162,'trends_uint','itemid',41842),(38163,'events','itemid',41843),(38164,'history','itemid',41843),(38165,'history_log','itemid',41843),(38166,'history_str','itemid',41843),(38167,'history_text','itemid',41843),(38168,'history_uint','itemid',41843),(38169,'trends','itemid',41843),(38170,'trends_uint','itemid',41843),(38171,'events','itemid',41844),(38172,'history','itemid',41844),(38173,'history_log','itemid',41844),(38174,'history_str','itemid',41844),(38175,'history_text','itemid',41844),(38176,'history_uint','itemid',41844),(38177,'trends','itemid',41844),(38178,'trends_uint','itemid',41844),(38179,'events','itemid',41845),(38180,'history','itemid',41845),(38181,'history_log','itemid',41845),(38182,'history_str','itemid',41845),(38183,'history_text','itemid',41845),(38184,'history_uint','itemid',41845),(38185,'trends','itemid',41845),(38186,'trends_uint','itemid',41845),(38187,'events','itemid',41846),(38188,'history','itemid',41846),(38189,'history_log','itemid',41846),(38190,'history_str','itemid',41846),(38191,'history_text','itemid',41846),(38192,'history_uint','itemid',41846),(38193,'trends','itemid',41846),(38194,'trends_uint','itemid',41846),(38195,'events','itemid',41847),(38196,'history','itemid',41847),(38197,'history_log','itemid',41847),(38198,'history_str','itemid',41847),(38199,'history_text','itemid',41847),(38200,'history_uint','itemid',41847),(38201,'trends','itemid',41847),(38202,'trends_uint','itemid',41847),(38203,'events','itemid',41858),(38204,'history','itemid',41858),(38205,'history_log','itemid',41858),(38206,'history_str','itemid',41858),(38207,'history_text','itemid',41858),(38208,'history_uint','itemid',41858),(38209,'trends','itemid',41858),(38210,'trends_uint','itemid',41858),(38211,'events','itemid',41859),(38212,'history','itemid',41859),(38213,'history_log','itemid',41859),(38214,'history_str','itemid',41859),(38215,'history_text','itemid',41859),(38216,'history_uint','itemid',41859),(38217,'trends','itemid',41859),(38218,'trends_uint','itemid',41859),(38219,'events','itemid',41860),(38220,'history','itemid',41860),(38221,'history_log','itemid',41860),(38222,'history_str','itemid',41860),(38223,'history_text','itemid',41860),(38224,'history_uint','itemid',41860),(38225,'trends','itemid',41860),(38226,'trends_uint','itemid',41860),(38227,'events','itemid',41861),(38228,'history','itemid',41861),(38229,'history_log','itemid',41861),(38230,'history_str','itemid',41861),(38231,'history_text','itemid',41861),(38232,'history_uint','itemid',41861),(38233,'trends','itemid',41861),(38234,'trends_uint','itemid',41861),(38235,'events','itemid',41862),(38236,'history','itemid',41862),(38237,'history_log','itemid',41862),(38238,'history_str','itemid',41862),(38239,'history_text','itemid',41862),(38240,'history_uint','itemid',41862),(38241,'trends','itemid',41862),(38242,'trends_uint','itemid',41862),(38243,'events','itemid',41863),(38244,'history','itemid',41863),(38245,'history_log','itemid',41863),(38246,'history_str','itemid',41863),(38247,'history_text','itemid',41863),(38248,'history_uint','itemid',41863),(38249,'trends','itemid',41863),(38250,'trends_uint','itemid',41863),(38251,'events','itemid',41864),(38252,'history','itemid',41864),(38253,'history_log','itemid',41864),(38254,'history_str','itemid',41864),(38255,'history_text','itemid',41864),(38256,'history_uint','itemid',41864),(38257,'trends','itemid',41864),(38258,'trends_uint','itemid',41864),(38259,'events','itemid',41865),(38260,'history','itemid',41865),(38261,'history_log','itemid',41865),(38262,'history_str','itemid',41865),(38263,'history_text','itemid',41865),(38264,'history_uint','itemid',41865),(38265,'trends','itemid',41865),(38266,'trends_uint','itemid',41865),(38267,'events','itemid',41866),(38268,'history','itemid',41866),(38269,'history_log','itemid',41866),(38270,'history_str','itemid',41866),(38271,'history_text','itemid',41866),(38272,'history_uint','itemid',41866),(38273,'trends','itemid',41866),(38274,'trends_uint','itemid',41866),(38275,'events','itemid',41867),(38276,'history','itemid',41867),(38277,'history_log','itemid',41867),(38278,'history_str','itemid',41867),(38279,'history_text','itemid',41867),(38280,'history_uint','itemid',41867),(38281,'trends','itemid',41867),(38282,'trends_uint','itemid',41867),(38283,'events','itemid',41868),(38284,'history','itemid',41868),(38285,'history_log','itemid',41868),(38286,'history_str','itemid',41868),(38287,'history_text','itemid',41868),(38288,'history_uint','itemid',41868),(38289,'trends','itemid',41868),(38290,'trends_uint','itemid',41868),(38291,'events','itemid',41879),(38292,'history','itemid',41879),(38293,'history_log','itemid',41879),(38294,'history_str','itemid',41879),(38295,'history_text','itemid',41879),(38296,'history_uint','itemid',41879),(38297,'trends','itemid',41879),(38298,'trends_uint','itemid',41879),(38299,'events','itemid',41880),(38300,'history','itemid',41880),(38301,'history_log','itemid',41880),(38302,'history_str','itemid',41880),(38303,'history_text','itemid',41880),(38304,'history_uint','itemid',41880),(38305,'trends','itemid',41880),(38306,'trends_uint','itemid',41880),(38307,'events','itemid',41881),(38308,'history','itemid',41881),(38309,'history_log','itemid',41881),(38310,'history_str','itemid',41881),(38311,'history_text','itemid',41881),(38312,'history_uint','itemid',41881),(38313,'trends','itemid',41881),(38314,'trends_uint','itemid',41881),(38315,'events','itemid',41882),(38316,'history','itemid',41882),(38317,'history_log','itemid',41882),(38318,'history_str','itemid',41882),(38319,'history_text','itemid',41882),(38320,'history_uint','itemid',41882),(38321,'trends','itemid',41882),(38322,'trends_uint','itemid',41882),(38323,'events','itemid',41883),(38324,'history','itemid',41883),(38325,'history_log','itemid',41883),(38326,'history_str','itemid',41883),(38327,'history_text','itemid',41883),(38328,'history_uint','itemid',41883),(38329,'trends','itemid',41883),(38330,'trends_uint','itemid',41883),(38331,'events','itemid',41884),(38332,'history','itemid',41884),(38333,'history_log','itemid',41884),(38334,'history_str','itemid',41884),(38335,'history_text','itemid',41884),(38336,'history_uint','itemid',41884),(38337,'trends','itemid',41884),(38338,'trends_uint','itemid',41884),(38339,'events','itemid',41885),(38340,'history','itemid',41885),(38341,'history_log','itemid',41885),(38342,'history_str','itemid',41885),(38343,'history_text','itemid',41885),(38344,'history_uint','itemid',41885),(38345,'trends','itemid',41885),(38346,'trends_uint','itemid',41885),(38347,'events','itemid',41886),(38348,'history','itemid',41886),(38349,'history_log','itemid',41886),(38350,'history_str','itemid',41886),(38351,'history_text','itemid',41886),(38352,'history_uint','itemid',41886),(38353,'trends','itemid',41886),(38354,'trends_uint','itemid',41886),(38355,'events','itemid',41887),(38356,'history','itemid',41887),(38357,'history_log','itemid',41887),(38358,'history_str','itemid',41887),(38359,'history_text','itemid',41887),(38360,'history_uint','itemid',41887),(38361,'trends','itemid',41887),(38362,'trends_uint','itemid',41887),(38363,'events','itemid',41888),(38364,'history','itemid',41888),(38365,'history_log','itemid',41888),(38366,'history_str','itemid',41888),(38367,'history_text','itemid',41888),(38368,'history_uint','itemid',41888),(38369,'trends','itemid',41888),(38370,'trends_uint','itemid',41888),(38371,'events','itemid',41889),(38372,'history','itemid',41889),(38373,'history_log','itemid',41889),(38374,'history_str','itemid',41889),(38375,'history_text','itemid',41889),(38376,'history_uint','itemid',41889),(38377,'trends','itemid',41889),(38378,'trends_uint','itemid',41889),(38379,'events','itemid',42005),(38380,'history','itemid',42005),(38381,'history_log','itemid',42005),(38382,'history_str','itemid',42005),(38383,'history_text','itemid',42005),(38384,'history_uint','itemid',42005),(38385,'trends','itemid',42005),(38386,'trends_uint','itemid',42005),(38387,'events','itemid',42006),(38388,'history','itemid',42006),(38389,'history_log','itemid',42006),(38390,'history_str','itemid',42006),(38391,'history_text','itemid',42006),(38392,'history_uint','itemid',42006),(38393,'trends','itemid',42006),(38394,'trends_uint','itemid',42006),(38395,'events','itemid',42007),(38396,'history','itemid',42007),(38397,'history_log','itemid',42007),(38398,'history_str','itemid',42007),(38399,'history_text','itemid',42007),(38400,'history_uint','itemid',42007),(38401,'trends','itemid',42007),(38402,'trends_uint','itemid',42007),(38403,'events','itemid',42008),(38404,'history','itemid',42008),(38405,'history_log','itemid',42008),(38406,'history_str','itemid',42008),(38407,'history_text','itemid',42008),(38408,'history_uint','itemid',42008),(38409,'trends','itemid',42008),(38410,'trends_uint','itemid',42008),(38411,'events','itemid',42009),(38412,'history','itemid',42009),(38413,'history_log','itemid',42009),(38414,'history_str','itemid',42009),(38415,'history_text','itemid',42009),(38416,'history_uint','itemid',42009),(38417,'trends','itemid',42009),(38418,'trends_uint','itemid',42009),(38419,'events','itemid',42010),(38420,'history','itemid',42010),(38421,'history_log','itemid',42010),(38422,'history_str','itemid',42010),(38423,'history_text','itemid',42010),(38424,'history_uint','itemid',42010),(38425,'trends','itemid',42010),(38426,'trends_uint','itemid',42010),(38427,'events','itemid',42011),(38428,'history','itemid',42011),(38429,'history_log','itemid',42011),(38430,'history_str','itemid',42011),(38431,'history_text','itemid',42011),(38432,'history_uint','itemid',42011),(38433,'trends','itemid',42011),(38434,'trends_uint','itemid',42011),(38435,'events','itemid',42012),(38436,'history','itemid',42012),(38437,'history_log','itemid',42012),(38438,'history_str','itemid',42012),(38439,'history_text','itemid',42012),(38440,'history_uint','itemid',42012),(38441,'trends','itemid',42012),(38442,'trends_uint','itemid',42012),(38443,'events','itemid',42013),(38444,'history','itemid',42013),(38445,'history_log','itemid',42013),(38446,'history_str','itemid',42013),(38447,'history_text','itemid',42013),(38448,'history_uint','itemid',42013),(38449,'trends','itemid',42013),(38450,'trends_uint','itemid',42013),(38451,'events','itemid',42014),(38452,'history','itemid',42014),(38453,'history_log','itemid',42014),(38454,'history_str','itemid',42014),(38455,'history_text','itemid',42014),(38456,'history_uint','itemid',42014),(38457,'trends','itemid',42014),(38458,'trends_uint','itemid',42014),(38459,'events','itemid',42015),(38460,'history','itemid',42015),(38461,'history_log','itemid',42015),(38462,'history_str','itemid',42015),(38463,'history_text','itemid',42015),(38464,'history_uint','itemid',42015),(38465,'trends','itemid',42015),(38466,'trends_uint','itemid',42015),(38467,'events','itemid',42026),(38468,'history','itemid',42026),(38469,'history_log','itemid',42026),(38470,'history_str','itemid',42026),(38471,'history_text','itemid',42026),(38472,'history_uint','itemid',42026),(38473,'trends','itemid',42026),(38474,'trends_uint','itemid',42026),(38475,'events','itemid',42027),(38476,'history','itemid',42027),(38477,'history_log','itemid',42027),(38478,'history_str','itemid',42027),(38479,'history_text','itemid',42027),(38480,'history_uint','itemid',42027),(38481,'trends','itemid',42027),(38482,'trends_uint','itemid',42027),(38483,'events','itemid',42028),(38484,'history','itemid',42028),(38485,'history_log','itemid',42028),(38486,'history_str','itemid',42028),(38487,'history_text','itemid',42028),(38488,'history_uint','itemid',42028),(38489,'trends','itemid',42028),(38490,'trends_uint','itemid',42028),(38491,'events','itemid',42029),(38492,'history','itemid',42029),(38493,'history_log','itemid',42029),(38494,'history_str','itemid',42029),(38495,'history_text','itemid',42029),(38496,'history_uint','itemid',42029),(38497,'trends','itemid',42029),(38498,'trends_uint','itemid',42029),(38499,'events','itemid',42030),(38500,'history','itemid',42030),(38501,'history_log','itemid',42030),(38502,'history_str','itemid',42030),(38503,'history_text','itemid',42030),(38504,'history_uint','itemid',42030),(38505,'trends','itemid',42030),(38506,'trends_uint','itemid',42030),(38507,'events','itemid',42031),(38508,'history','itemid',42031),(38509,'history_log','itemid',42031),(38510,'history_str','itemid',42031),(38511,'history_text','itemid',42031),(38512,'history_uint','itemid',42031),(38513,'trends','itemid',42031),(38514,'trends_uint','itemid',42031),(38515,'events','itemid',42032),(38516,'history','itemid',42032),(38517,'history_log','itemid',42032),(38518,'history_str','itemid',42032),(38519,'history_text','itemid',42032),(38520,'history_uint','itemid',42032),(38521,'trends','itemid',42032),(38522,'trends_uint','itemid',42032),(38523,'events','itemid',42033),(38524,'history','itemid',42033),(38525,'history_log','itemid',42033),(38526,'history_str','itemid',42033),(38527,'history_text','itemid',42033),(38528,'history_uint','itemid',42033),(38529,'trends','itemid',42033),(38530,'trends_uint','itemid',42033),(38531,'events','itemid',42034),(38532,'history','itemid',42034),(38533,'history_log','itemid',42034),(38534,'history_str','itemid',42034),(38535,'history_text','itemid',42034),(38536,'history_uint','itemid',42034),(38537,'trends','itemid',42034),(38538,'trends_uint','itemid',42034),(38539,'events','itemid',42035),(38540,'history','itemid',42035),(38541,'history_log','itemid',42035),(38542,'history_str','itemid',42035),(38543,'history_text','itemid',42035),(38544,'history_uint','itemid',42035),(38545,'trends','itemid',42035),(38546,'trends_uint','itemid',42035),(38547,'events','itemid',42036),(38548,'history','itemid',42036),(38549,'history_log','itemid',42036),(38550,'history_str','itemid',42036),(38551,'history_text','itemid',42036),(38552,'history_uint','itemid',42036),(38553,'trends','itemid',42036),(38554,'trends_uint','itemid',42036),(38555,'events','itemid',42047),(38556,'history','itemid',42047),(38557,'history_log','itemid',42047),(38558,'history_str','itemid',42047),(38559,'history_text','itemid',42047),(38560,'history_uint','itemid',42047),(38561,'trends','itemid',42047),(38562,'trends_uint','itemid',42047),(38563,'events','itemid',42048),(38564,'history','itemid',42048),(38565,'history_log','itemid',42048),(38566,'history_str','itemid',42048),(38567,'history_text','itemid',42048),(38568,'history_uint','itemid',42048),(38569,'trends','itemid',42048),(38570,'trends_uint','itemid',42048),(38571,'events','itemid',42049),(38572,'history','itemid',42049),(38573,'history_log','itemid',42049),(38574,'history_str','itemid',42049),(38575,'history_text','itemid',42049),(38576,'history_uint','itemid',42049),(38577,'trends','itemid',42049),(38578,'trends_uint','itemid',42049),(38579,'events','itemid',42050),(38580,'history','itemid',42050),(38581,'history_log','itemid',42050),(38582,'history_str','itemid',42050),(38583,'history_text','itemid',42050),(38584,'history_uint','itemid',42050),(38585,'trends','itemid',42050),(38586,'trends_uint','itemid',42050),(38587,'events','itemid',42051),(38588,'history','itemid',42051),(38589,'history_log','itemid',42051),(38590,'history_str','itemid',42051),(38591,'history_text','itemid',42051),(38592,'history_uint','itemid',42051),(38593,'trends','itemid',42051),(38594,'trends_uint','itemid',42051),(38595,'events','itemid',42052),(38596,'history','itemid',42052),(38597,'history_log','itemid',42052),(38598,'history_str','itemid',42052),(38599,'history_text','itemid',42052),(38600,'history_uint','itemid',42052),(38601,'trends','itemid',42052),(38602,'trends_uint','itemid',42052),(38603,'events','itemid',42053),(38604,'history','itemid',42053),(38605,'history_log','itemid',42053),(38606,'history_str','itemid',42053),(38607,'history_text','itemid',42053),(38608,'history_uint','itemid',42053),(38609,'trends','itemid',42053),(38610,'trends_uint','itemid',42053),(38611,'events','itemid',42054),(38612,'history','itemid',42054),(38613,'history_log','itemid',42054),(38614,'history_str','itemid',42054),(38615,'history_text','itemid',42054),(38616,'history_uint','itemid',42054),(38617,'trends','itemid',42054),(38618,'trends_uint','itemid',42054),(38619,'events','itemid',42055),(38620,'history','itemid',42055),(38621,'history_log','itemid',42055),(38622,'history_str','itemid',42055),(38623,'history_text','itemid',42055),(38624,'history_uint','itemid',42055),(38625,'trends','itemid',42055),(38626,'trends_uint','itemid',42055),(38627,'events','itemid',42056),(38628,'history','itemid',42056),(38629,'history_log','itemid',42056),(38630,'history_str','itemid',42056),(38631,'history_text','itemid',42056),(38632,'history_uint','itemid',42056),(38633,'trends','itemid',42056),(38634,'trends_uint','itemid',42056),(38635,'events','itemid',42057),(38636,'history','itemid',42057),(38637,'history_log','itemid',42057),(38638,'history_str','itemid',42057),(38639,'history_text','itemid',42057),(38640,'history_uint','itemid',42057),(38641,'trends','itemid',42057),(38642,'trends_uint','itemid',42057),(38643,'events','itemid',42089),(38644,'history','itemid',42089),(38645,'history_log','itemid',42089),(38646,'history_str','itemid',42089),(38647,'history_text','itemid',42089),(38648,'history_uint','itemid',42089),(38649,'trends','itemid',42089),(38650,'trends_uint','itemid',42089),(38651,'events','itemid',42090),(38652,'history','itemid',42090),(38653,'history_log','itemid',42090),(38654,'history_str','itemid',42090),(38655,'history_text','itemid',42090),(38656,'history_uint','itemid',42090),(38657,'trends','itemid',42090),(38658,'trends_uint','itemid',42090),(38659,'events','itemid',42091),(38660,'history','itemid',42091),(38661,'history_log','itemid',42091),(38662,'history_str','itemid',42091),(38663,'history_text','itemid',42091),(38664,'history_uint','itemid',42091),(38665,'trends','itemid',42091),(38666,'trends_uint','itemid',42091),(38667,'events','itemid',42092),(38668,'history','itemid',42092),(38669,'history_log','itemid',42092),(38670,'history_str','itemid',42092),(38671,'history_text','itemid',42092),(38672,'history_uint','itemid',42092),(38673,'trends','itemid',42092),(38674,'trends_uint','itemid',42092),(38675,'events','itemid',42093),(38676,'history','itemid',42093),(38677,'history_log','itemid',42093),(38678,'history_str','itemid',42093),(38679,'history_text','itemid',42093),(38680,'history_uint','itemid',42093),(38681,'trends','itemid',42093),(38682,'trends_uint','itemid',42093),(38683,'events','itemid',42094),(38684,'history','itemid',42094),(38685,'history_log','itemid',42094),(38686,'history_str','itemid',42094),(38687,'history_text','itemid',42094),(38688,'history_uint','itemid',42094),(38689,'trends','itemid',42094),(38690,'trends_uint','itemid',42094),(38691,'events','itemid',42095),(38692,'history','itemid',42095),(38693,'history_log','itemid',42095),(38694,'history_str','itemid',42095),(38695,'history_text','itemid',42095),(38696,'history_uint','itemid',42095),(38697,'trends','itemid',42095),(38698,'trends_uint','itemid',42095),(38699,'events','itemid',42096),(38700,'history','itemid',42096),(38701,'history_log','itemid',42096),(38702,'history_str','itemid',42096),(38703,'history_text','itemid',42096),(38704,'history_uint','itemid',42096),(38705,'trends','itemid',42096),(38706,'trends_uint','itemid',42096),(38707,'events','itemid',42097),(38708,'history','itemid',42097),(38709,'history_log','itemid',42097),(38710,'history_str','itemid',42097),(38711,'history_text','itemid',42097),(38712,'history_uint','itemid',42097),(38713,'trends','itemid',42097),(38714,'trends_uint','itemid',42097),(38715,'events','itemid',42098),(38716,'history','itemid',42098),(38717,'history_log','itemid',42098),(38718,'history_str','itemid',42098),(38719,'history_text','itemid',42098),(38720,'history_uint','itemid',42098),(38721,'trends','itemid',42098),(38722,'trends_uint','itemid',42098),(38723,'events','itemid',42099),(38724,'history','itemid',42099),(38725,'history_log','itemid',42099),(38726,'history_str','itemid',42099),(38727,'history_text','itemid',42099),(38728,'history_uint','itemid',42099),(38729,'trends','itemid',42099),(38730,'trends_uint','itemid',42099),(38731,'events','itemid',42447),(38732,'history','itemid',42447),(38733,'history_log','itemid',42447),(38734,'history_str','itemid',42447),(38735,'history_text','itemid',42447),(38736,'history_uint','itemid',42447),(38737,'trends','itemid',42447),(38738,'trends_uint','itemid',42447),(38739,'events','itemid',42448),(38740,'history','itemid',42448),(38741,'history_log','itemid',42448),(38742,'history_str','itemid',42448),(38743,'history_text','itemid',42448),(38744,'history_uint','itemid',42448),(38745,'trends','itemid',42448),(38746,'trends_uint','itemid',42448),(38747,'events','itemid',42449),(38748,'history','itemid',42449),(38749,'history_log','itemid',42449),(38750,'history_str','itemid',42449),(38751,'history_text','itemid',42449),(38752,'history_uint','itemid',42449),(38753,'trends','itemid',42449),(38754,'trends_uint','itemid',42449),(38755,'events','itemid',42450),(38756,'history','itemid',42450),(38757,'history_log','itemid',42450),(38758,'history_str','itemid',42450),(38759,'history_text','itemid',42450),(38760,'history_uint','itemid',42450),(38761,'trends','itemid',42450),(38762,'trends_uint','itemid',42450),(38763,'events','itemid',42609),(38764,'history','itemid',42609),(38765,'history_log','itemid',42609),(38766,'history_str','itemid',42609),(38767,'history_text','itemid',42609),(38768,'history_uint','itemid',42609),(38769,'trends','itemid',42609),(38770,'trends_uint','itemid',42609),(38771,'events','itemid',42610),(38772,'history','itemid',42610),(38773,'history_log','itemid',42610),(38774,'history_str','itemid',42610),(38775,'history_text','itemid',42610),(38776,'history_uint','itemid',42610),(38777,'trends','itemid',42610),(38778,'trends_uint','itemid',42610),(38779,'events','itemid',42611),(38780,'history','itemid',42611),(38781,'history_log','itemid',42611),(38782,'history_str','itemid',42611),(38783,'history_text','itemid',42611),(38784,'history_uint','itemid',42611),(38785,'trends','itemid',42611),(38786,'trends_uint','itemid',42611),(38787,'events','itemid',42612),(38788,'history','itemid',42612),(38789,'history_log','itemid',42612),(38790,'history_str','itemid',42612),(38791,'history_text','itemid',42612),(38792,'history_uint','itemid',42612),(38793,'trends','itemid',42612),(38794,'trends_uint','itemid',42612),(38795,'events','itemid',42613),(38796,'history','itemid',42613),(38797,'history_log','itemid',42613),(38798,'history_str','itemid',42613),(38799,'history_text','itemid',42613),(38800,'history_uint','itemid',42613),(38801,'trends','itemid',42613),(38802,'trends_uint','itemid',42613),(38803,'events','itemid',42614),(38804,'history','itemid',42614),(38805,'history_log','itemid',42614),(38806,'history_str','itemid',42614),(38807,'history_text','itemid',42614),(38808,'history_uint','itemid',42614),(38809,'trends','itemid',42614),(38810,'trends_uint','itemid',42614),(38811,'events','itemid',42615),(38812,'history','itemid',42615),(38813,'history_log','itemid',42615),(38814,'history_str','itemid',42615),(38815,'history_text','itemid',42615),(38816,'history_uint','itemid',42615),(38817,'trends','itemid',42615),(38818,'trends_uint','itemid',42615),(38819,'events','itemid',42616),(38820,'history','itemid',42616),(38821,'history_log','itemid',42616),(38822,'history_str','itemid',42616),(38823,'history_text','itemid',42616),(38824,'history_uint','itemid',42616),(38825,'trends','itemid',42616),(38826,'trends_uint','itemid',42616),(38827,'events','itemid',42617),(38828,'history','itemid',42617),(38829,'history_log','itemid',42617),(38830,'history_str','itemid',42617),(38831,'history_text','itemid',42617),(38832,'history_uint','itemid',42617),(38833,'trends','itemid',42617),(38834,'trends_uint','itemid',42617),(38835,'events','itemid',42618),(38836,'history','itemid',42618),(38837,'history_log','itemid',42618),(38838,'history_str','itemid',42618),(38839,'history_text','itemid',42618),(38840,'history_uint','itemid',42618),(38841,'trends','itemid',42618),(38842,'trends_uint','itemid',42618),(38843,'events','itemid',42619),(38844,'history','itemid',42619),(38845,'history_log','itemid',42619),(38846,'history_str','itemid',42619),(38847,'history_text','itemid',42619),(38848,'history_uint','itemid',42619),(38849,'trends','itemid',42619),(38850,'trends_uint','itemid',42619),(38851,'events','itemid',42724),(38852,'history','itemid',42724),(38853,'history_log','itemid',42724),(38854,'history_str','itemid',42724),(38855,'history_text','itemid',42724),(38856,'history_uint','itemid',42724),(38857,'trends','itemid',42724),(38858,'trends_uint','itemid',42724),(38859,'events','itemid',42725),(38860,'history','itemid',42725),(38861,'history_log','itemid',42725),(38862,'history_str','itemid',42725),(38863,'history_text','itemid',42725),(38864,'history_uint','itemid',42725),(38865,'trends','itemid',42725),(38866,'trends_uint','itemid',42725),(38867,'events','itemid',43547),(38868,'history','itemid',43547),(38869,'history_log','itemid',43547),(38870,'history_str','itemid',43547),(38871,'history_text','itemid',43547),(38872,'history_uint','itemid',43547),(38873,'trends','itemid',43547),(38874,'trends_uint','itemid',43547),(38875,'events','itemid',43548),(38876,'history','itemid',43548),(38877,'history_log','itemid',43548),(38878,'history_str','itemid',43548),(38879,'history_text','itemid',43548),(38880,'history_uint','itemid',43548),(38881,'trends','itemid',43548),(38882,'trends_uint','itemid',43548),(38883,'events','itemid',43549),(38884,'history','itemid',43549),(38885,'history_log','itemid',43549),(38886,'history_str','itemid',43549),(38887,'history_text','itemid',43549),(38888,'history_uint','itemid',43549),(38889,'trends','itemid',43549),(38890,'trends_uint','itemid',43549),(38891,'events','itemid',43550),(38892,'history','itemid',43550),(38893,'history_log','itemid',43550),(38894,'history_str','itemid',43550),(38895,'history_text','itemid',43550),(38896,'history_uint','itemid',43550),(38897,'trends','itemid',43550),(38898,'trends_uint','itemid',43550),(38899,'events','itemid',43551),(38900,'history','itemid',43551),(38901,'history_log','itemid',43551),(38902,'history_str','itemid',43551),(38903,'history_text','itemid',43551),(38904,'history_uint','itemid',43551),(38905,'trends','itemid',43551),(38906,'trends_uint','itemid',43551),(38907,'events','itemid',43552),(38908,'history','itemid',43552),(38909,'history_log','itemid',43552),(38910,'history_str','itemid',43552),(38911,'history_text','itemid',43552),(38912,'history_uint','itemid',43552),(38913,'trends','itemid',43552),(38914,'trends_uint','itemid',43552),(38915,'events','itemid',43553),(38916,'history','itemid',43553),(38917,'history_log','itemid',43553),(38918,'history_str','itemid',43553),(38919,'history_text','itemid',43553),(38920,'history_uint','itemid',43553),(38921,'trends','itemid',43553),(38922,'trends_uint','itemid',43553),(38923,'events','itemid',43554),(38924,'history','itemid',43554),(38925,'history_log','itemid',43554),(38926,'history_str','itemid',43554),(38927,'history_text','itemid',43554),(38928,'history_uint','itemid',43554),(38929,'trends','itemid',43554),(38930,'trends_uint','itemid',43554),(38931,'events','itemid',43555),(38932,'history','itemid',43555),(38933,'history_log','itemid',43555),(38934,'history_str','itemid',43555),(38935,'history_text','itemid',43555),(38936,'history_uint','itemid',43555),(38937,'trends','itemid',43555),(38938,'trends_uint','itemid',43555),(38939,'events','itemid',43556),(38940,'history','itemid',43556),(38941,'history_log','itemid',43556),(38942,'history_str','itemid',43556),(38943,'history_text','itemid',43556),(38944,'history_uint','itemid',43556),(38945,'trends','itemid',43556),(38946,'trends_uint','itemid',43556),(38947,'events','itemid',43557),(38948,'history','itemid',43557),(38949,'history_log','itemid',43557),(38950,'history_str','itemid',43557),(38951,'history_text','itemid',43557),(38952,'history_uint','itemid',43557),(38953,'trends','itemid',43557),(38954,'trends_uint','itemid',43557),(38955,'events','itemid',43558),(38956,'history','itemid',43558),(38957,'history_log','itemid',43558),(38958,'history_str','itemid',43558),(38959,'history_text','itemid',43558),(38960,'history_uint','itemid',43558),(38961,'trends','itemid',43558),(38962,'trends_uint','itemid',43558),(38963,'events','itemid',43559),(38964,'history','itemid',43559),(38965,'history_log','itemid',43559),(38966,'history_str','itemid',43559),(38967,'history_text','itemid',43559),(38968,'history_uint','itemid',43559),(38969,'trends','itemid',43559),(38970,'trends_uint','itemid',43559),(38971,'events','itemid',43560),(38972,'history','itemid',43560),(38973,'history_log','itemid',43560),(38974,'history_str','itemid',43560),(38975,'history_text','itemid',43560),(38976,'history_uint','itemid',43560),(38977,'trends','itemid',43560),(38978,'trends_uint','itemid',43560),(38979,'events','itemid',43561),(38980,'history','itemid',43561),(38981,'history_log','itemid',43561),(38982,'history_str','itemid',43561),(38983,'history_text','itemid',43561),(38984,'history_uint','itemid',43561),(38985,'trends','itemid',43561),(38986,'trends_uint','itemid',43561),(38987,'events','itemid',43562),(38988,'history','itemid',43562),(38989,'history_log','itemid',43562),(38990,'history_str','itemid',43562),(38991,'history_text','itemid',43562),(38992,'history_uint','itemid',43562),(38993,'trends','itemid',43562),(38994,'trends_uint','itemid',43562),(38995,'events','itemid',43563),(38996,'history','itemid',43563),(38997,'history_log','itemid',43563),(38998,'history_str','itemid',43563),(38999,'history_text','itemid',43563),(39000,'history_uint','itemid',43563),(39001,'trends','itemid',43563),(39002,'trends_uint','itemid',43563),(39003,'events','itemid',43564),(39004,'history','itemid',43564),(39005,'history_log','itemid',43564),(39006,'history_str','itemid',43564),(39007,'history_text','itemid',43564),(39008,'history_uint','itemid',43564),(39009,'trends','itemid',43564),(39010,'trends_uint','itemid',43564),(39011,'events','itemid',43787),(39012,'history','itemid',43787),(39013,'history_log','itemid',43787),(39014,'history_str','itemid',43787),(39015,'history_text','itemid',43787),(39016,'history_uint','itemid',43787),(39017,'trends','itemid',43787),(39018,'trends_uint','itemid',43787),(39019,'events','itemid',43826),(39020,'history','itemid',43826),(39021,'history_log','itemid',43826),(39022,'history_str','itemid',43826),(39023,'history_text','itemid',43826),(39024,'history_uint','itemid',43826),(39025,'trends','itemid',43826),(39026,'trends_uint','itemid',43826),(39027,'events','itemid',43827),(39028,'history','itemid',43827),(39029,'history_log','itemid',43827),(39030,'history_str','itemid',43827),(39031,'history_text','itemid',43827),(39032,'history_uint','itemid',43827),(39033,'trends','itemid',43827),(39034,'trends_uint','itemid',43827),(39035,'events','itemid',43828),(39036,'history','itemid',43828),(39037,'history_log','itemid',43828),(39038,'history_str','itemid',43828),(39039,'history_text','itemid',43828),(39040,'history_uint','itemid',43828),(39041,'trends','itemid',43828),(39042,'trends_uint','itemid',43828),(39043,'events','itemid',43829),(39044,'history','itemid',43829),(39045,'history_log','itemid',43829),(39046,'history_str','itemid',43829),(39047,'history_text','itemid',43829),(39048,'history_uint','itemid',43829),(39049,'trends','itemid',43829),(39050,'trends_uint','itemid',43829),(39051,'events','itemid',43830),(39052,'history','itemid',43830),(39053,'history_log','itemid',43830),(39054,'history_str','itemid',43830),(39055,'history_text','itemid',43830),(39056,'history_uint','itemid',43830),(39057,'trends','itemid',43830),(39058,'trends_uint','itemid',43830),(39059,'events','itemid',43831),(39060,'history','itemid',43831),(39061,'history_log','itemid',43831),(39062,'history_str','itemid',43831),(39063,'history_text','itemid',43831),(39064,'history_uint','itemid',43831),(39065,'trends','itemid',43831),(39066,'trends_uint','itemid',43831),(39067,'events','itemid',43832),(39068,'history','itemid',43832),(39069,'history_log','itemid',43832),(39070,'history_str','itemid',43832),(39071,'history_text','itemid',43832),(39072,'history_uint','itemid',43832),(39073,'trends','itemid',43832),(39074,'trends_uint','itemid',43832),(39075,'events','itemid',43833),(39076,'history','itemid',43833),(39077,'history_log','itemid',43833),(39078,'history_str','itemid',43833),(39079,'history_text','itemid',43833),(39080,'history_uint','itemid',43833),(39081,'trends','itemid',43833),(39082,'trends_uint','itemid',43833),(39083,'events','itemid',43834),(39084,'history','itemid',43834),(39085,'history_log','itemid',43834),(39086,'history_str','itemid',43834),(39087,'history_text','itemid',43834),(39088,'history_uint','itemid',43834),(39089,'trends','itemid',43834),(39090,'trends_uint','itemid',43834),(39091,'events','itemid',43835),(39092,'history','itemid',43835),(39093,'history_log','itemid',43835),(39094,'history_str','itemid',43835),(39095,'history_text','itemid',43835),(39096,'history_uint','itemid',43835),(39097,'trends','itemid',43835),(39098,'trends_uint','itemid',43835),(39099,'events','itemid',43836),(39100,'history','itemid',43836),(39101,'history_log','itemid',43836),(39102,'history_str','itemid',43836),(39103,'history_text','itemid',43836),(39104,'history_uint','itemid',43836),(39105,'trends','itemid',43836),(39106,'trends_uint','itemid',43836),(39107,'events','itemid',43837),(39108,'history','itemid',43837),(39109,'history_log','itemid',43837),(39110,'history_str','itemid',43837),(39111,'history_text','itemid',43837),(39112,'history_uint','itemid',43837),(39113,'trends','itemid',43837),(39114,'trends_uint','itemid',43837),(39115,'events','itemid',43838),(39116,'history','itemid',43838),(39117,'history_log','itemid',43838),(39118,'history_str','itemid',43838),(39119,'history_text','itemid',43838),(39120,'history_uint','itemid',43838),(39121,'trends','itemid',43838),(39122,'trends_uint','itemid',43838),(39123,'events','itemid',43839),(39124,'history','itemid',43839),(39125,'history_log','itemid',43839),(39126,'history_str','itemid',43839),(39127,'history_text','itemid',43839),(39128,'history_uint','itemid',43839),(39129,'trends','itemid',43839),(39130,'trends_uint','itemid',43839),(39131,'events','itemid',43845),(39132,'history','itemid',43845),(39133,'history_log','itemid',43845),(39134,'history_str','itemid',43845),(39135,'history_text','itemid',43845),(39136,'history_uint','itemid',43845),(39137,'trends','itemid',43845),(39138,'trends_uint','itemid',43845),(39139,'events','itemid',43846),(39140,'history','itemid',43846),(39141,'history_log','itemid',43846),(39142,'history_str','itemid',43846),(39143,'history_text','itemid',43846),(39144,'history_uint','itemid',43846),(39145,'trends','itemid',43846),(39146,'trends_uint','itemid',43846),(39147,'events','itemid',43847),(39148,'history','itemid',43847),(39149,'history_log','itemid',43847),(39150,'history_str','itemid',43847),(39151,'history_text','itemid',43847),(39152,'history_uint','itemid',43847),(39153,'trends','itemid',43847),(39154,'trends_uint','itemid',43847),(39155,'events','itemid',43849),(39156,'history','itemid',43849),(39157,'history_log','itemid',43849),(39158,'history_str','itemid',43849),(39159,'history_text','itemid',43849),(39160,'history_uint','itemid',43849),(39161,'trends','itemid',43849),(39162,'trends_uint','itemid',43849),(39163,'events','itemid',43850),(39164,'history','itemid',43850),(39165,'history_log','itemid',43850),(39166,'history_str','itemid',43850),(39167,'history_text','itemid',43850),(39168,'history_uint','itemid',43850),(39169,'trends','itemid',43850),(39170,'trends_uint','itemid',43850),(39171,'events','itemid',43851),(39172,'history','itemid',43851),(39173,'history_log','itemid',43851),(39174,'history_str','itemid',43851),(39175,'history_text','itemid',43851),(39176,'history_uint','itemid',43851),(39177,'trends','itemid',43851),(39178,'trends_uint','itemid',43851),(39179,'events','itemid',43852),(39180,'history','itemid',43852),(39181,'history_log','itemid',43852),(39182,'history_str','itemid',43852),(39183,'history_text','itemid',43852),(39184,'history_uint','itemid',43852),(39185,'trends','itemid',43852),(39186,'trends_uint','itemid',43852),(39187,'events','itemid',43853),(39188,'history','itemid',43853),(39189,'history_log','itemid',43853),(39190,'history_str','itemid',43853),(39191,'history_text','itemid',43853),(39192,'history_uint','itemid',43853),(39193,'trends','itemid',43853),(39194,'trends_uint','itemid',43853),(39195,'events','itemid',43854),(39196,'history','itemid',43854),(39197,'history_log','itemid',43854),(39198,'history_str','itemid',43854),(39199,'history_text','itemid',43854),(39200,'history_uint','itemid',43854),(39201,'trends','itemid',43854),(39202,'trends_uint','itemid',43854),(39203,'events','itemid',43855),(39204,'history','itemid',43855),(39205,'history_log','itemid',43855),(39206,'history_str','itemid',43855),(39207,'history_text','itemid',43855),(39208,'history_uint','itemid',43855),(39209,'trends','itemid',43855),(39210,'trends_uint','itemid',43855),(39211,'events','itemid',43856),(39212,'history','itemid',43856),(39213,'history_log','itemid',43856),(39214,'history_str','itemid',43856),(39215,'history_text','itemid',43856),(39216,'history_uint','itemid',43856),(39217,'trends','itemid',43856),(39218,'trends_uint','itemid',43856),(39219,'events','itemid',43888),(39220,'history','itemid',43888),(39221,'history_log','itemid',43888),(39222,'history_str','itemid',43888),(39223,'history_text','itemid',43888),(39224,'history_uint','itemid',43888),(39225,'trends','itemid',43888),(39226,'trends_uint','itemid',43888),(39227,'events','itemid',44235),(39228,'history','itemid',44235),(39229,'history_log','itemid',44235),(39230,'history_str','itemid',44235),(39231,'history_text','itemid',44235),(39232,'history_uint','itemid',44235),(39233,'trends','itemid',44235),(39234,'trends_uint','itemid',44235),(39235,'events','itemid',44343),(39236,'history','itemid',44343),(39237,'history_log','itemid',44343),(39238,'history_str','itemid',44343),(39239,'history_text','itemid',44343),(39240,'history_uint','itemid',44343),(39241,'trends','itemid',44343),(39242,'trends_uint','itemid',44343),(39243,'events','itemid',44351),(39244,'history','itemid',44351),(39245,'history_log','itemid',44351),(39246,'history_str','itemid',44351),(39247,'history_text','itemid',44351),(39248,'history_uint','itemid',44351),(39249,'trends','itemid',44351),(39250,'trends_uint','itemid',44351),(39251,'events','itemid',44447),(39252,'history','itemid',44447),(39253,'history_log','itemid',44447),(39254,'history_str','itemid',44447),(39255,'history_text','itemid',44447),(39256,'history_uint','itemid',44447),(39257,'trends','itemid',44447),(39258,'trends_uint','itemid',44447),(39259,'events','lldruleid',23024),(39260,'events','lldruleid',23027),(39261,'events','lldruleid',28001),(39262,'events','lldruleid',28002),(39263,'events','lldruleid',28493),(39264,'events','lldruleid',28494),(39265,'events','lldruleid',29506),(39266,'events','lldruleid',29703),(39267,'events','lldruleid',29785),(39268,'events','lldruleid',29786),(39269,'events','lldruleid',30026),(39270,'events','lldruleid',30127),(39271,'events','lldruleid',30128),(39272,'events','lldruleid',30337),(39273,'events','lldruleid',30338),(39274,'events','lldruleid',30339),(39275,'events','lldruleid',30340),(39276,'events','lldruleid',30341),(39277,'events','lldruleid',30342),(39278,'events','lldruleid',30343),(39279,'events','lldruleid',30423),(39280,'events','lldruleid',31334),(39281,'events','lldruleid',31429),(39282,'events','lldruleid',31430),(39283,'events','lldruleid',31655),(39284,'events','lldruleid',31656),(39285,'events','lldruleid',31657),(39286,'events','lldruleid',31658),(39287,'events','lldruleid',32004),(39288,'events','lldruleid',32005),(39289,'events','lldruleid',32006),(39290,'events','lldruleid',32931),(39291,'events','lldruleid',32932),(39292,'events','lldruleid',32933),(39293,'events','lldruleid',32934),(39294,'events','lldruleid',32954),(39295,'events','lldruleid',32955),(39296,'events','lldruleid',32956),(39297,'events','lldruleid',32957),(39298,'events','lldruleid',33177),(39299,'events','lldruleid',33658),(39300,'events','lldruleid',33670),(39301,'events','lldruleid',33744),(39302,'events','lldruleid',33745),(39303,'events','lldruleid',33746),(39304,'events','lldruleid',33754),(39305,'events','lldruleid',33755),(39306,'events','lldruleid',33756),(39307,'events','lldruleid',34342),(39308,'events','lldruleid',34343),(39309,'events','lldruleid',34344),(39310,'events','lldruleid',34345),(39311,'events','lldruleid',34346),(39312,'events','lldruleid',34347),(39313,'events','lldruleid',34399),(39314,'events','lldruleid',34400),(39315,'events','lldruleid',34401),(39316,'events','lldruleid',34402),(39317,'events','lldruleid',34403),(39318,'events','lldruleid',34404),(39319,'events','lldruleid',34440),(39320,'events','lldruleid',34441),(39321,'events','lldruleid',34442),(39322,'events','lldruleid',34443),(39323,'events','lldruleid',34942),(39324,'events','lldruleid',34943),(39325,'events','lldruleid',34966),(39326,'events','lldruleid',34967),(39327,'events','lldruleid',34968),(39328,'events','lldruleid',34969),(39329,'events','lldruleid',35262),(39330,'events','lldruleid',35263),(39331,'events','lldruleid',36781),(39332,'events','lldruleid',39749),(39333,'events','lldruleid',39750),(39334,'events','lldruleid',39751),(39335,'events','lldruleid',39752),(39336,'events','lldruleid',39753),(39337,'events','lldruleid',39816),(39338,'events','lldruleid',42121),(39339,'events','lldruleid',42122),(39340,'events','lldruleid',42144),(39341,'events','lldruleid',42165),(39342,'events','lldruleid',42487),(39343,'events','lldruleid',42488),(39344,'events','lldruleid',42489),(39345,'events','lldruleid',42490),(39346,'events','lldruleid',42543),(39347,'events','lldruleid',42544),(39348,'events','lldruleid',42545),(39349,'events','lldruleid',42546),(39350,'events','lldruleid',42580),(39351,'events','lldruleid',42581),(39352,'events','lldruleid',42582),(39353,'events','lldruleid',42741),(39354,'events','lldruleid',42742),(39355,'events','lldruleid',42743),(39356,'events','lldruleid',42744),(39357,'events','lldruleid',42745),(39358,'events','lldruleid',42834),(39359,'events','lldruleid',42835),(39360,'events','lldruleid',42836),(39361,'events','lldruleid',42837),(39362,'events','lldruleid',42838),(39363,'events','lldruleid',42839),(39364,'events','lldruleid',42840),(39365,'events','lldruleid',42878),(39366,'events','lldruleid',44082),(39367,'events','lldruleid',44360),(39368,'events','itemid',22996),(39369,'history','itemid',22996),(39370,'history_log','itemid',22996),(39371,'history_str','itemid',22996),(39372,'history_text','itemid',22996),(39373,'history_uint','itemid',22996),(39374,'trends','itemid',22996),(39375,'trends_uint','itemid',22996),(39376,'events','itemid',22997),(39377,'history','itemid',22997),(39378,'history_log','itemid',22997),(39379,'history_str','itemid',22997),(39380,'history_text','itemid',22997),(39381,'history_uint','itemid',22997),(39382,'trends','itemid',22997),(39383,'trends_uint','itemid',22997),(39384,'events','itemid',22998),(39385,'history','itemid',22998),(39386,'history_log','itemid',22998),(39387,'history_str','itemid',22998),(39388,'history_text','itemid',22998),(39389,'history_uint','itemid',22998),(39390,'trends','itemid',22998),(39391,'trends_uint','itemid',22998),(39392,'events','itemid',22999),(39393,'history','itemid',22999),(39394,'history_log','itemid',22999),(39395,'history_str','itemid',22999),(39396,'history_text','itemid',22999),(39397,'history_uint','itemid',22999),(39398,'trends','itemid',22999),(39399,'trends_uint','itemid',22999),(39400,'events','itemid',23000),(39401,'history','itemid',23000),(39402,'history_log','itemid',23000),(39403,'history_str','itemid',23000),(39404,'history_text','itemid',23000),(39405,'history_uint','itemid',23000),(39406,'trends','itemid',23000),(39407,'trends_uint','itemid',23000),(39408,'events','itemid',23001),(39409,'history','itemid',23001),(39410,'history_log','itemid',23001),(39411,'history_str','itemid',23001),(39412,'history_text','itemid',23001),(39413,'history_uint','itemid',23001),(39414,'trends','itemid',23001),(39415,'trends_uint','itemid',23001),(39416,'events','itemid',23002),(39417,'history','itemid',23002),(39418,'history_log','itemid',23002),(39419,'history_str','itemid',23002),(39420,'history_text','itemid',23002),(39421,'history_uint','itemid',23002),(39422,'trends','itemid',23002),(39423,'trends_uint','itemid',23002),(39424,'events','itemid',23003),(39425,'history','itemid',23003),(39426,'history_log','itemid',23003),(39427,'history_str','itemid',23003),(39428,'history_text','itemid',23003),(39429,'history_uint','itemid',23003),(39430,'trends','itemid',23003),(39431,'trends_uint','itemid',23003),(39432,'events','itemid',23004),(39433,'history','itemid',23004),(39434,'history_log','itemid',23004),(39435,'history_str','itemid',23004),(39436,'history_text','itemid',23004),(39437,'history_uint','itemid',23004),(39438,'trends','itemid',23004),(39439,'trends_uint','itemid',23004),(39440,'events','itemid',23005),(39441,'history','itemid',23005),(39442,'history_log','itemid',23005),(39443,'history_str','itemid',23005),(39444,'history_text','itemid',23005),(39445,'history_uint','itemid',23005),(39446,'trends','itemid',23005),(39447,'trends_uint','itemid',23005),(39448,'events','itemid',23007),(39449,'history','itemid',23007),(39450,'history_log','itemid',23007),(39451,'history_str','itemid',23007),(39452,'history_text','itemid',23007),(39453,'history_uint','itemid',23007),(39454,'trends','itemid',23007),(39455,'trends_uint','itemid',23007),(39456,'events','itemid',23011),(39457,'history','itemid',23011),(39458,'history_log','itemid',23011),(39459,'history_str','itemid',23011),(39460,'history_text','itemid',23011),(39461,'history_uint','itemid',23011),(39462,'trends','itemid',23011),(39463,'trends_uint','itemid',23011),(39464,'events','itemid',23012),(39465,'history','itemid',23012),(39466,'history_log','itemid',23012),(39467,'history_str','itemid',23012),(39468,'history_text','itemid',23012),(39469,'history_uint','itemid',23012),(39470,'trends','itemid',23012),(39471,'trends_uint','itemid',23012),(39472,'events','itemid',23013),(39473,'history','itemid',23013),(39474,'history_log','itemid',23013),(39475,'history_str','itemid',23013),(39476,'history_text','itemid',23013),(39477,'history_uint','itemid',23013),(39478,'trends','itemid',23013),(39479,'trends_uint','itemid',23013),(39480,'events','itemid',23014),(39481,'history','itemid',23014),(39482,'history_log','itemid',23014),(39483,'history_str','itemid',23014),(39484,'history_text','itemid',23014),(39485,'history_uint','itemid',23014),(39486,'trends','itemid',23014),(39487,'trends_uint','itemid',23014),(39488,'events','itemid',23015),(39489,'history','itemid',23015),(39490,'history_log','itemid',23015),(39491,'history_str','itemid',23015),(39492,'history_text','itemid',23015),(39493,'history_uint','itemid',23015),(39494,'trends','itemid',23015),(39495,'trends_uint','itemid',23015),(39496,'events','itemid',23016),(39497,'history','itemid',23016),(39498,'history_log','itemid',23016),(39499,'history_str','itemid',23016),(39500,'history_text','itemid',23016),(39501,'history_uint','itemid',23016),(39502,'trends','itemid',23016),(39503,'trends_uint','itemid',23016),(39504,'events','itemid',23017),(39505,'history','itemid',23017),(39506,'history_log','itemid',23017),(39507,'history_str','itemid',23017),(39508,'history_text','itemid',23017),(39509,'history_uint','itemid',23017),(39510,'trends','itemid',23017),(39511,'trends_uint','itemid',23017),(39512,'events','itemid',23018),(39513,'history','itemid',23018),(39514,'history_log','itemid',23018),(39515,'history_str','itemid',23018),(39516,'history_text','itemid',23018),(39517,'history_uint','itemid',23018),(39518,'trends','itemid',23018),(39519,'trends_uint','itemid',23018),(39520,'events','itemid',23019),(39521,'history','itemid',23019),(39522,'history_log','itemid',23019),(39523,'history_str','itemid',23019),(39524,'history_text','itemid',23019),(39525,'history_uint','itemid',23019),(39526,'trends','itemid',23019),(39527,'trends_uint','itemid',23019),(39528,'events','itemid',23020),(39529,'history','itemid',23020),(39530,'history_log','itemid',23020),(39531,'history_str','itemid',23020),(39532,'history_text','itemid',23020),(39533,'history_uint','itemid',23020),(39534,'trends','itemid',23020),(39535,'trends_uint','itemid',23020),(39536,'events','itemid',23021),(39537,'history','itemid',23021),(39538,'history_log','itemid',23021),(39539,'history_str','itemid',23021),(39540,'history_text','itemid',23021),(39541,'history_uint','itemid',23021),(39542,'trends','itemid',23021),(39543,'trends_uint','itemid',23021),(39544,'events','itemid',23022),(39545,'history','itemid',23022),(39546,'history_log','itemid',23022),(39547,'history_str','itemid',23022),(39548,'history_text','itemid',23022),(39549,'history_uint','itemid',23022),(39550,'trends','itemid',23022),(39551,'trends_uint','itemid',23022),(39552,'events','itemid',23023),(39553,'history','itemid',23023),(39554,'history_log','itemid',23023),(39555,'history_str','itemid',23023),(39556,'history_text','itemid',23023),(39557,'history_uint','itemid',23023),(39558,'trends','itemid',23023),(39559,'trends_uint','itemid',23023),(39560,'events','itemid',23652),(39561,'history','itemid',23652),(39562,'history_log','itemid',23652),(39563,'history_str','itemid',23652),(39564,'history_text','itemid',23652),(39565,'history_uint','itemid',23652),(39566,'trends','itemid',23652),(39567,'trends_uint','itemid',23652),(39568,'events','itemid',23653),(39569,'history','itemid',23653),(39570,'history_log','itemid',23653),(39571,'history_str','itemid',23653),(39572,'history_text','itemid',23653),(39573,'history_uint','itemid',23653),(39574,'trends','itemid',23653),(39575,'trends_uint','itemid',23653),(39576,'events','itemid',23654),(39577,'history','itemid',23654),(39578,'history_log','itemid',23654),(39579,'history_str','itemid',23654),(39580,'history_text','itemid',23654),(39581,'history_uint','itemid',23654),(39582,'trends','itemid',23654),(39583,'trends_uint','itemid',23654),(39584,'events','itemid',27967),(39585,'history','itemid',27967),(39586,'history_log','itemid',27967),(39587,'history_str','itemid',27967),(39588,'history_text','itemid',27967),(39589,'history_uint','itemid',27967),(39590,'trends','itemid',27967),(39591,'trends_uint','itemid',27967),(39592,'events','itemid',27968),(39593,'history','itemid',27968),(39594,'history_log','itemid',27968),(39595,'history_str','itemid',27968),(39596,'history_text','itemid',27968),(39597,'history_uint','itemid',27968),(39598,'trends','itemid',27968),(39599,'trends_uint','itemid',27968),(39600,'events','itemid',27970),(39601,'history','itemid',27970),(39602,'history_log','itemid',27970),(39603,'history_str','itemid',27970),(39604,'history_text','itemid',27970),(39605,'history_uint','itemid',27970),(39606,'trends','itemid',27970),(39607,'trends_uint','itemid',27970),(39608,'events','itemid',27971),(39609,'history','itemid',27971),(39610,'history_log','itemid',27971),(39611,'history_str','itemid',27971),(39612,'history_text','itemid',27971),(39613,'history_uint','itemid',27971),(39614,'trends','itemid',27971),(39615,'trends_uint','itemid',27971),(39616,'events','itemid',27972),(39617,'history','itemid',27972),(39618,'history_log','itemid',27972),(39619,'history_str','itemid',27972),(39620,'history_text','itemid',27972),(39621,'history_uint','itemid',27972),(39622,'trends','itemid',27972),(39623,'trends_uint','itemid',27972),(39624,'events','itemid',27973),(39625,'history','itemid',27973),(39626,'history_log','itemid',27973),(39627,'history_str','itemid',27973),(39628,'history_text','itemid',27973),(39629,'history_uint','itemid',27973),(39630,'trends','itemid',27973),(39631,'trends_uint','itemid',27973),(39632,'events','itemid',27975),(39633,'history','itemid',27975),(39634,'history_log','itemid',27975),(39635,'history_str','itemid',27975),(39636,'history_text','itemid',27975),(39637,'history_uint','itemid',27975),(39638,'trends','itemid',27975),(39639,'trends_uint','itemid',27975),(39640,'events','itemid',27997),(39641,'history','itemid',27997),(39642,'history_log','itemid',27997),(39643,'history_str','itemid',27997),(39644,'history_text','itemid',27997),(39645,'history_uint','itemid',27997),(39646,'trends','itemid',27997),(39647,'trends_uint','itemid',27997),(39648,'events','itemid',27998),(39649,'history','itemid',27998),(39650,'history_log','itemid',27998),(39651,'history_str','itemid',27998),(39652,'history_text','itemid',27998),(39653,'history_uint','itemid',27998),(39654,'trends','itemid',27998),(39655,'trends_uint','itemid',27998),(39656,'events','itemid',27999),(39657,'history','itemid',27999),(39658,'history_log','itemid',27999),(39659,'history_str','itemid',27999),(39660,'history_text','itemid',27999),(39661,'history_uint','itemid',27999),(39662,'trends','itemid',27999),(39663,'trends_uint','itemid',27999),(39664,'events','itemid',28000),(39665,'history','itemid',28000),(39666,'history_log','itemid',28000),(39667,'history_str','itemid',28000),(39668,'history_text','itemid',28000),(39669,'history_uint','itemid',28000),(39670,'trends','itemid',28000),(39671,'trends_uint','itemid',28000),(39672,'events','itemid',28026),(39673,'history','itemid',28026),(39674,'history_log','itemid',28026),(39675,'history_str','itemid',28026),(39676,'history_text','itemid',28026),(39677,'history_uint','itemid',28026),(39678,'trends','itemid',28026),(39679,'trends_uint','itemid',28026),(39680,'events','itemid',28027),(39681,'history','itemid',28027),(39682,'history_log','itemid',28027),(39683,'history_str','itemid',28027),(39684,'history_text','itemid',28027),(39685,'history_uint','itemid',28027),(39686,'trends','itemid',28027),(39687,'trends_uint','itemid',28027),(39688,'events','itemid',28031),(39689,'history','itemid',28031),(39690,'history_log','itemid',28031),(39691,'history_str','itemid',28031),(39692,'history_text','itemid',28031),(39693,'history_uint','itemid',28031),(39694,'trends','itemid',28031),(39695,'trends_uint','itemid',28031),(39696,'events','itemid',28539),(39697,'history','itemid',28539),(39698,'history_log','itemid',28539),(39699,'history_str','itemid',28539),(39700,'history_text','itemid',28539),(39701,'history_uint','itemid',28539),(39702,'trends','itemid',28539),(39703,'trends_uint','itemid',28539),(39704,'events','itemid',28540),(39705,'history','itemid',28540),(39706,'history_log','itemid',28540),(39707,'history_str','itemid',28540),(39708,'history_text','itemid',28540),(39709,'history_uint','itemid',28540),(39710,'trends','itemid',28540),(39711,'trends_uint','itemid',28540),(39712,'events','itemid',28541),(39713,'history','itemid',28541),(39714,'history_log','itemid',28541),(39715,'history_str','itemid',28541),(39716,'history_text','itemid',28541),(39717,'history_uint','itemid',28541),(39718,'trends','itemid',28541),(39719,'trends_uint','itemid',28541),(39720,'events','itemid',28542),(39721,'history','itemid',28542),(39722,'history_log','itemid',28542),(39723,'history_str','itemid',28542),(39724,'history_text','itemid',28542),(39725,'history_uint','itemid',28542),(39726,'trends','itemid',28542),(39727,'trends_uint','itemid',28542),(39728,'events','itemid',28543),(39729,'history','itemid',28543),(39730,'history_log','itemid',28543),(39731,'history_str','itemid',28543),(39732,'history_text','itemid',28543),(39733,'history_uint','itemid',28543),(39734,'trends','itemid',28543),(39735,'trends_uint','itemid',28543),(39736,'events','itemid',28544),(39737,'history','itemid',28544),(39738,'history_log','itemid',28544),(39739,'history_str','itemid',28544),(39740,'history_text','itemid',28544),(39741,'history_uint','itemid',28544),(39742,'trends','itemid',28544),(39743,'trends_uint','itemid',28544),(39744,'events','itemid',28545),(39745,'history','itemid',28545),(39746,'history_log','itemid',28545),(39747,'history_str','itemid',28545),(39748,'history_text','itemid',28545),(39749,'history_uint','itemid',28545),(39750,'trends','itemid',28545),(39751,'trends_uint','itemid',28545),(39752,'events','itemid',28546),(39753,'history','itemid',28546),(39754,'history_log','itemid',28546),(39755,'history_str','itemid',28546),(39756,'history_text','itemid',28546),(39757,'history_uint','itemid',28546),(39758,'trends','itemid',28546),(39759,'trends_uint','itemid',28546),(39760,'events','itemid',28547),(39761,'history','itemid',28547),(39762,'history_log','itemid',28547),(39763,'history_str','itemid',28547),(39764,'history_text','itemid',28547),(39765,'history_uint','itemid',28547),(39766,'trends','itemid',28547),(39767,'trends_uint','itemid',28547),(39768,'events','itemid',28548),(39769,'history','itemid',28548),(39770,'history_log','itemid',28548),(39771,'history_str','itemid',28548),(39772,'history_text','itemid',28548),(39773,'history_uint','itemid',28548),(39774,'trends','itemid',28548),(39775,'trends_uint','itemid',28548),(39776,'events','itemid',28549),(39777,'history','itemid',28549),(39778,'history_log','itemid',28549),(39779,'history_str','itemid',28549),(39780,'history_text','itemid',28549),(39781,'history_uint','itemid',28549),(39782,'trends','itemid',28549),(39783,'trends_uint','itemid',28549),(39784,'events','itemid',28550),(39785,'history','itemid',28550),(39786,'history_log','itemid',28550),(39787,'history_str','itemid',28550),(39788,'history_text','itemid',28550),(39789,'history_uint','itemid',28550),(39790,'trends','itemid',28550),(39791,'trends_uint','itemid',28550),(39792,'events','itemid',28551),(39793,'history','itemid',28551),(39794,'history_log','itemid',28551),(39795,'history_str','itemid',28551),(39796,'history_text','itemid',28551),(39797,'history_uint','itemid',28551),(39798,'trends','itemid',28551),(39799,'trends_uint','itemid',28551),(39800,'events','itemid',28552),(39801,'history','itemid',28552),(39802,'history_log','itemid',28552),(39803,'history_str','itemid',28552),(39804,'history_text','itemid',28552),(39805,'history_uint','itemid',28552),(39806,'trends','itemid',28552),(39807,'trends_uint','itemid',28552),(39808,'events','itemid',28553),(39809,'history','itemid',28553),(39810,'history_log','itemid',28553),(39811,'history_str','itemid',28553),(39812,'history_text','itemid',28553),(39813,'history_uint','itemid',28553),(39814,'trends','itemid',28553),(39815,'trends_uint','itemid',28553),(39816,'events','itemid',28554),(39817,'history','itemid',28554),(39818,'history_log','itemid',28554),(39819,'history_str','itemid',28554),(39820,'history_text','itemid',28554),(39821,'history_uint','itemid',28554),(39822,'trends','itemid',28554),(39823,'trends_uint','itemid',28554),(39824,'events','itemid',28555),(39825,'history','itemid',28555),(39826,'history_log','itemid',28555),(39827,'history_str','itemid',28555),(39828,'history_text','itemid',28555),(39829,'history_uint','itemid',28555),(39830,'trends','itemid',28555),(39831,'trends_uint','itemid',28555),(39832,'events','itemid',28556),(39833,'history','itemid',28556),(39834,'history_log','itemid',28556),(39835,'history_str','itemid',28556),(39836,'history_text','itemid',28556),(39837,'history_uint','itemid',28556),(39838,'trends','itemid',28556),(39839,'trends_uint','itemid',28556),(39840,'events','itemid',28557),(39841,'history','itemid',28557),(39842,'history_log','itemid',28557),(39843,'history_str','itemid',28557),(39844,'history_text','itemid',28557),(39845,'history_uint','itemid',28557),(39846,'trends','itemid',28557),(39847,'trends_uint','itemid',28557),(39848,'events','itemid',28558),(39849,'history','itemid',28558),(39850,'history_log','itemid',28558),(39851,'history_str','itemid',28558),(39852,'history_text','itemid',28558),(39853,'history_uint','itemid',28558),(39854,'trends','itemid',28558),(39855,'trends_uint','itemid',28558),(39856,'events','itemid',28559),(39857,'history','itemid',28559),(39858,'history_log','itemid',28559),(39859,'history_str','itemid',28559),(39860,'history_text','itemid',28559),(39861,'history_uint','itemid',28559),(39862,'trends','itemid',28559),(39863,'trends_uint','itemid',28559),(39864,'events','itemid',28560),(39865,'history','itemid',28560),(39866,'history_log','itemid',28560),(39867,'history_str','itemid',28560),(39868,'history_text','itemid',28560),(39869,'history_uint','itemid',28560),(39870,'trends','itemid',28560),(39871,'trends_uint','itemid',28560),(39872,'events','itemid',28561),(39873,'history','itemid',28561),(39874,'history_log','itemid',28561),(39875,'history_str','itemid',28561),(39876,'history_text','itemid',28561),(39877,'history_uint','itemid',28561),(39878,'trends','itemid',28561),(39879,'trends_uint','itemid',28561),(39880,'events','itemid',28562),(39881,'history','itemid',28562),(39882,'history_log','itemid',28562),(39883,'history_str','itemid',28562),(39884,'history_text','itemid',28562),(39885,'history_uint','itemid',28562),(39886,'trends','itemid',28562),(39887,'trends_uint','itemid',28562),(39888,'events','itemid',28563),(39889,'history','itemid',28563),(39890,'history_log','itemid',28563),(39891,'history_str','itemid',28563),(39892,'history_text','itemid',28563),(39893,'history_uint','itemid',28563),(39894,'trends','itemid',28563),(39895,'trends_uint','itemid',28563),(39896,'events','itemid',28564),(39897,'history','itemid',28564),(39898,'history_log','itemid',28564),(39899,'history_str','itemid',28564),(39900,'history_text','itemid',28564),(39901,'history_uint','itemid',28564),(39902,'trends','itemid',28564),(39903,'trends_uint','itemid',28564),(39904,'events','itemid',28565),(39905,'history','itemid',28565),(39906,'history_log','itemid',28565),(39907,'history_str','itemid',28565),(39908,'history_text','itemid',28565),(39909,'history_uint','itemid',28565),(39910,'trends','itemid',28565),(39911,'trends_uint','itemid',28565),(39912,'events','itemid',28566),(39913,'history','itemid',28566),(39914,'history_log','itemid',28566),(39915,'history_str','itemid',28566),(39916,'history_text','itemid',28566),(39917,'history_uint','itemid',28566),(39918,'trends','itemid',28566),(39919,'trends_uint','itemid',28566),(39920,'events','itemid',28567),(39921,'history','itemid',28567),(39922,'history_log','itemid',28567),(39923,'history_str','itemid',28567),(39924,'history_text','itemid',28567),(39925,'history_uint','itemid',28567),(39926,'trends','itemid',28567),(39927,'trends_uint','itemid',28567),(39928,'events','itemid',28568),(39929,'history','itemid',28568),(39930,'history_log','itemid',28568),(39931,'history_str','itemid',28568),(39932,'history_text','itemid',28568),(39933,'history_uint','itemid',28568),(39934,'trends','itemid',28568),(39935,'trends_uint','itemid',28568),(39936,'events','itemid',28569),(39937,'history','itemid',28569),(39938,'history_log','itemid',28569),(39939,'history_str','itemid',28569),(39940,'history_text','itemid',28569),(39941,'history_uint','itemid',28569),(39942,'trends','itemid',28569),(39943,'trends_uint','itemid',28569),(39944,'events','itemid',28570),(39945,'history','itemid',28570),(39946,'history_log','itemid',28570),(39947,'history_str','itemid',28570),(39948,'history_text','itemid',28570),(39949,'history_uint','itemid',28570),(39950,'trends','itemid',28570),(39951,'trends_uint','itemid',28570),(39952,'events','itemid',28571),(39953,'history','itemid',28571),(39954,'history_log','itemid',28571),(39955,'history_str','itemid',28571),(39956,'history_text','itemid',28571),(39957,'history_uint','itemid',28571),(39958,'trends','itemid',28571),(39959,'trends_uint','itemid',28571),(39960,'events','itemid',28572),(39961,'history','itemid',28572),(39962,'history_log','itemid',28572),(39963,'history_str','itemid',28572),(39964,'history_text','itemid',28572),(39965,'history_uint','itemid',28572),(39966,'trends','itemid',28572),(39967,'trends_uint','itemid',28572),(39968,'events','itemid',28573),(39969,'history','itemid',28573),(39970,'history_log','itemid',28573),(39971,'history_str','itemid',28573),(39972,'history_text','itemid',28573),(39973,'history_uint','itemid',28573),(39974,'trends','itemid',28573),(39975,'trends_uint','itemid',28573),(39976,'events','itemid',28574),(39977,'history','itemid',28574),(39978,'history_log','itemid',28574),(39979,'history_str','itemid',28574),(39980,'history_text','itemid',28574),(39981,'history_uint','itemid',28574),(39982,'trends','itemid',28574),(39983,'trends_uint','itemid',28574),(39984,'events','itemid',28575),(39985,'history','itemid',28575),(39986,'history_log','itemid',28575),(39987,'history_str','itemid',28575),(39988,'history_text','itemid',28575),(39989,'history_uint','itemid',28575),(39990,'trends','itemid',28575),(39991,'trends_uint','itemid',28575),(39992,'events','itemid',28576),(39993,'history','itemid',28576),(39994,'history_log','itemid',28576),(39995,'history_str','itemid',28576),(39996,'history_text','itemid',28576),(39997,'history_uint','itemid',28576),(39998,'trends','itemid',28576),(39999,'trends_uint','itemid',28576),(40000,'events','itemid',28577),(40001,'history','itemid',28577),(40002,'history_log','itemid',28577),(40003,'history_str','itemid',28577),(40004,'history_text','itemid',28577),(40005,'history_uint','itemid',28577),(40006,'trends','itemid',28577),(40007,'trends_uint','itemid',28577),(40008,'events','itemid',28578),(40009,'history','itemid',28578),(40010,'history_log','itemid',28578),(40011,'history_str','itemid',28578),(40012,'history_text','itemid',28578),(40013,'history_uint','itemid',28578),(40014,'trends','itemid',28578),(40015,'trends_uint','itemid',28578),(40016,'events','itemid',28579),(40017,'history','itemid',28579),(40018,'history_log','itemid',28579),(40019,'history_str','itemid',28579),(40020,'history_text','itemid',28579),(40021,'history_uint','itemid',28579),(40022,'trends','itemid',28579),(40023,'trends_uint','itemid',28579),(40024,'events','itemid',28580),(40025,'history','itemid',28580),(40026,'history_log','itemid',28580),(40027,'history_str','itemid',28580),(40028,'history_text','itemid',28580),(40029,'history_uint','itemid',28580),(40030,'trends','itemid',28580),(40031,'trends_uint','itemid',28580),(40032,'events','itemid',28581),(40033,'history','itemid',28581),(40034,'history_log','itemid',28581),(40035,'history_str','itemid',28581),(40036,'history_text','itemid',28581),(40037,'history_uint','itemid',28581),(40038,'trends','itemid',28581),(40039,'trends_uint','itemid',28581),(40040,'events','itemid',28582),(40041,'history','itemid',28582),(40042,'history_log','itemid',28582),(40043,'history_str','itemid',28582),(40044,'history_text','itemid',28582),(40045,'history_uint','itemid',28582),(40046,'trends','itemid',28582),(40047,'trends_uint','itemid',28582),(40048,'events','itemid',28583),(40049,'history','itemid',28583),(40050,'history_log','itemid',28583),(40051,'history_str','itemid',28583),(40052,'history_text','itemid',28583),(40053,'history_uint','itemid',28583),(40054,'trends','itemid',28583),(40055,'trends_uint','itemid',28583),(40056,'events','itemid',28584),(40057,'history','itemid',28584),(40058,'history_log','itemid',28584),(40059,'history_str','itemid',28584),(40060,'history_text','itemid',28584),(40061,'history_uint','itemid',28584),(40062,'trends','itemid',28584),(40063,'trends_uint','itemid',28584),(40064,'events','itemid',28585),(40065,'history','itemid',28585),(40066,'history_log','itemid',28585),(40067,'history_str','itemid',28585),(40068,'history_text','itemid',28585),(40069,'history_uint','itemid',28585),(40070,'trends','itemid',28585),(40071,'trends_uint','itemid',28585),(40072,'events','itemid',28586),(40073,'history','itemid',28586),(40074,'history_log','itemid',28586),(40075,'history_str','itemid',28586),(40076,'history_text','itemid',28586),(40077,'history_uint','itemid',28586),(40078,'trends','itemid',28586),(40079,'trends_uint','itemid',28586),(40080,'events','itemid',28587),(40081,'history','itemid',28587),(40082,'history_log','itemid',28587),(40083,'history_str','itemid',28587),(40084,'history_text','itemid',28587),(40085,'history_uint','itemid',28587),(40086,'trends','itemid',28587),(40087,'trends_uint','itemid',28587),(40088,'events','itemid',28588),(40089,'history','itemid',28588),(40090,'history_log','itemid',28588),(40091,'history_str','itemid',28588),(40092,'history_text','itemid',28588),(40093,'history_uint','itemid',28588),(40094,'trends','itemid',28588),(40095,'trends_uint','itemid',28588),(40096,'events','itemid',28589),(40097,'history','itemid',28589),(40098,'history_log','itemid',28589),(40099,'history_str','itemid',28589),(40100,'history_text','itemid',28589),(40101,'history_uint','itemid',28589),(40102,'trends','itemid',28589),(40103,'trends_uint','itemid',28589),(40104,'events','itemid',28590),(40105,'history','itemid',28590),(40106,'history_log','itemid',28590),(40107,'history_str','itemid',28590),(40108,'history_text','itemid',28590),(40109,'history_uint','itemid',28590),(40110,'trends','itemid',28590),(40111,'trends_uint','itemid',28590),(40112,'events','itemid',28591),(40113,'history','itemid',28591),(40114,'history_log','itemid',28591),(40115,'history_str','itemid',28591),(40116,'history_text','itemid',28591),(40117,'history_uint','itemid',28591),(40118,'trends','itemid',28591),(40119,'trends_uint','itemid',28591),(40120,'events','itemid',28592),(40121,'history','itemid',28592),(40122,'history_log','itemid',28592),(40123,'history_str','itemid',28592),(40124,'history_text','itemid',28592),(40125,'history_uint','itemid',28592),(40126,'trends','itemid',28592),(40127,'trends_uint','itemid',28592),(40128,'events','itemid',28593),(40129,'history','itemid',28593),(40130,'history_log','itemid',28593),(40131,'history_str','itemid',28593),(40132,'history_text','itemid',28593),(40133,'history_uint','itemid',28593),(40134,'trends','itemid',28593),(40135,'trends_uint','itemid',28593),(40136,'events','itemid',28594),(40137,'history','itemid',28594),(40138,'history_log','itemid',28594),(40139,'history_str','itemid',28594),(40140,'history_text','itemid',28594),(40141,'history_uint','itemid',28594),(40142,'trends','itemid',28594),(40143,'trends_uint','itemid',28594),(40144,'events','itemid',28595),(40145,'history','itemid',28595),(40146,'history_log','itemid',28595),(40147,'history_str','itemid',28595),(40148,'history_text','itemid',28595),(40149,'history_uint','itemid',28595),(40150,'trends','itemid',28595),(40151,'trends_uint','itemid',28595),(40152,'events','itemid',28596),(40153,'history','itemid',28596),(40154,'history_log','itemid',28596),(40155,'history_str','itemid',28596),(40156,'history_text','itemid',28596),(40157,'history_uint','itemid',28596),(40158,'trends','itemid',28596),(40159,'trends_uint','itemid',28596),(40160,'events','itemid',28597),(40161,'history','itemid',28597),(40162,'history_log','itemid',28597),(40163,'history_str','itemid',28597),(40164,'history_text','itemid',28597),(40165,'history_uint','itemid',28597),(40166,'trends','itemid',28597),(40167,'trends_uint','itemid',28597),(40168,'events','itemid',28598),(40169,'history','itemid',28598),(40170,'history_log','itemid',28598),(40171,'history_str','itemid',28598),(40172,'history_text','itemid',28598),(40173,'history_uint','itemid',28598),(40174,'trends','itemid',28598),(40175,'trends_uint','itemid',28598),(40176,'events','itemid',28599),(40177,'history','itemid',28599),(40178,'history_log','itemid',28599),(40179,'history_str','itemid',28599),(40180,'history_text','itemid',28599),(40181,'history_uint','itemid',28599),(40182,'trends','itemid',28599),(40183,'trends_uint','itemid',28599),(40184,'events','itemid',28600),(40185,'history','itemid',28600),(40186,'history_log','itemid',28600),(40187,'history_str','itemid',28600),(40188,'history_text','itemid',28600),(40189,'history_uint','itemid',28600),(40190,'trends','itemid',28600),(40191,'trends_uint','itemid',28600),(40192,'events','itemid',28601),(40193,'history','itemid',28601),(40194,'history_log','itemid',28601),(40195,'history_str','itemid',28601),(40196,'history_text','itemid',28601),(40197,'history_uint','itemid',28601),(40198,'trends','itemid',28601),(40199,'trends_uint','itemid',28601),(40200,'events','itemid',28602),(40201,'history','itemid',28602),(40202,'history_log','itemid',28602),(40203,'history_str','itemid',28602),(40204,'history_text','itemid',28602),(40205,'history_uint','itemid',28602),(40206,'trends','itemid',28602),(40207,'trends_uint','itemid',28602),(40208,'events','itemid',28603),(40209,'history','itemid',28603),(40210,'history_log','itemid',28603),(40211,'history_str','itemid',28603),(40212,'history_text','itemid',28603),(40213,'history_uint','itemid',28603),(40214,'trends','itemid',28603),(40215,'trends_uint','itemid',28603),(40216,'events','itemid',28604),(40217,'history','itemid',28604),(40218,'history_log','itemid',28604),(40219,'history_str','itemid',28604),(40220,'history_text','itemid',28604),(40221,'history_uint','itemid',28604),(40222,'trends','itemid',28604),(40223,'trends_uint','itemid',28604),(40224,'events','itemid',28605),(40225,'history','itemid',28605),(40226,'history_log','itemid',28605),(40227,'history_str','itemid',28605),(40228,'history_text','itemid',28605),(40229,'history_uint','itemid',28605),(40230,'trends','itemid',28605),(40231,'trends_uint','itemid',28605),(40232,'events','itemid',28606),(40233,'history','itemid',28606),(40234,'history_log','itemid',28606),(40235,'history_str','itemid',28606),(40236,'history_text','itemid',28606),(40237,'history_uint','itemid',28606),(40238,'trends','itemid',28606),(40239,'trends_uint','itemid',28606),(40240,'events','itemid',28607),(40241,'history','itemid',28607),(40242,'history_log','itemid',28607),(40243,'history_str','itemid',28607),(40244,'history_text','itemid',28607),(40245,'history_uint','itemid',28607),(40246,'trends','itemid',28607),(40247,'trends_uint','itemid',28607),(40248,'events','itemid',28608),(40249,'history','itemid',28608),(40250,'history_log','itemid',28608),(40251,'history_str','itemid',28608),(40252,'history_text','itemid',28608),(40253,'history_uint','itemid',28608),(40254,'trends','itemid',28608),(40255,'trends_uint','itemid',28608),(40256,'events','itemid',28609),(40257,'history','itemid',28609),(40258,'history_log','itemid',28609),(40259,'history_str','itemid',28609),(40260,'history_text','itemid',28609),(40261,'history_uint','itemid',28609),(40262,'trends','itemid',28609),(40263,'trends_uint','itemid',28609),(40264,'events','itemid',28610),(40265,'history','itemid',28610),(40266,'history_log','itemid',28610),(40267,'history_str','itemid',28610),(40268,'history_text','itemid',28610),(40269,'history_uint','itemid',28610),(40270,'trends','itemid',28610),(40271,'trends_uint','itemid',28610),(40272,'events','itemid',28611),(40273,'history','itemid',28611),(40274,'history_log','itemid',28611),(40275,'history_str','itemid',28611),(40276,'history_text','itemid',28611),(40277,'history_uint','itemid',28611),(40278,'trends','itemid',28611),(40279,'trends_uint','itemid',28611),(40280,'events','itemid',28612),(40281,'history','itemid',28612),(40282,'history_log','itemid',28612),(40283,'history_str','itemid',28612),(40284,'history_text','itemid',28612),(40285,'history_uint','itemid',28612),(40286,'trends','itemid',28612),(40287,'trends_uint','itemid',28612),(40288,'events','itemid',28613),(40289,'history','itemid',28613),(40290,'history_log','itemid',28613),(40291,'history_str','itemid',28613),(40292,'history_text','itemid',28613),(40293,'history_uint','itemid',28613),(40294,'trends','itemid',28613),(40295,'trends_uint','itemid',28613),(40296,'events','itemid',28615),(40297,'history','itemid',28615),(40298,'history_log','itemid',28615),(40299,'history_str','itemid',28615),(40300,'history_text','itemid',28615),(40301,'history_uint','itemid',28615),(40302,'trends','itemid',28615),(40303,'trends_uint','itemid',28615),(40304,'events','itemid',28616),(40305,'history','itemid',28616),(40306,'history_log','itemid',28616),(40307,'history_str','itemid',28616),(40308,'history_text','itemid',28616),(40309,'history_uint','itemid',28616),(40310,'trends','itemid',28616),(40311,'trends_uint','itemid',28616),(40312,'events','itemid',29454),(40313,'history','itemid',29454),(40314,'history_log','itemid',29454),(40315,'history_str','itemid',29454),(40316,'history_text','itemid',29454),(40317,'history_uint','itemid',29454),(40318,'trends','itemid',29454),(40319,'trends_uint','itemid',29454),(40320,'events','itemid',29455),(40321,'history','itemid',29455),(40322,'history_log','itemid',29455),(40323,'history_str','itemid',29455),(40324,'history_text','itemid',29455),(40325,'history_uint','itemid',29455),(40326,'trends','itemid',29455),(40327,'trends_uint','itemid',29455),(40328,'events','itemid',29456),(40329,'history','itemid',29456),(40330,'history_log','itemid',29456),(40331,'history_str','itemid',29456),(40332,'history_text','itemid',29456),(40333,'history_uint','itemid',29456),(40334,'trends','itemid',29456),(40335,'trends_uint','itemid',29456),(40336,'events','itemid',29457),(40337,'history','itemid',29457),(40338,'history_log','itemid',29457),(40339,'history_str','itemid',29457),(40340,'history_text','itemid',29457),(40341,'history_uint','itemid',29457),(40342,'trends','itemid',29457),(40343,'trends_uint','itemid',29457),(40344,'events','itemid',29458),(40345,'history','itemid',29458),(40346,'history_log','itemid',29458),(40347,'history_str','itemid',29458),(40348,'history_text','itemid',29458),(40349,'history_uint','itemid',29458),(40350,'trends','itemid',29458),(40351,'trends_uint','itemid',29458),(40352,'events','itemid',29459),(40353,'history','itemid',29459),(40354,'history_log','itemid',29459),(40355,'history_str','itemid',29459),(40356,'history_text','itemid',29459),(40357,'history_uint','itemid',29459),(40358,'trends','itemid',29459),(40359,'trends_uint','itemid',29459),(40360,'events','itemid',29460),(40361,'history','itemid',29460),(40362,'history_log','itemid',29460),(40363,'history_str','itemid',29460),(40364,'history_text','itemid',29460),(40365,'history_uint','itemid',29460),(40366,'trends','itemid',29460),(40367,'trends_uint','itemid',29460),(40368,'events','itemid',29461),(40369,'history','itemid',29461),(40370,'history_log','itemid',29461),(40371,'history_str','itemid',29461),(40372,'history_text','itemid',29461),(40373,'history_uint','itemid',29461),(40374,'trends','itemid',29461),(40375,'trends_uint','itemid',29461),(40376,'events','itemid',29462),(40377,'history','itemid',29462),(40378,'history_log','itemid',29462),(40379,'history_str','itemid',29462),(40380,'history_text','itemid',29462),(40381,'history_uint','itemid',29462),(40382,'trends','itemid',29462),(40383,'trends_uint','itemid',29462),(40384,'events','itemid',29463),(40385,'history','itemid',29463),(40386,'history_log','itemid',29463),(40387,'history_str','itemid',29463),(40388,'history_text','itemid',29463),(40389,'history_uint','itemid',29463),(40390,'trends','itemid',29463),(40391,'trends_uint','itemid',29463),(40392,'events','itemid',29466),(40393,'history','itemid',29466),(40394,'history_log','itemid',29466),(40395,'history_str','itemid',29466),(40396,'history_text','itemid',29466),(40397,'history_uint','itemid',29466),(40398,'trends','itemid',29466),(40399,'trends_uint','itemid',29466),(40400,'events','itemid',29467),(40401,'history','itemid',29467),(40402,'history_log','itemid',29467),(40403,'history_str','itemid',29467),(40404,'history_text','itemid',29467),(40405,'history_uint','itemid',29467),(40406,'trends','itemid',29467),(40407,'trends_uint','itemid',29467),(40408,'events','itemid',29468),(40409,'history','itemid',29468),(40410,'history_log','itemid',29468),(40411,'history_str','itemid',29468),(40412,'history_text','itemid',29468),(40413,'history_uint','itemid',29468),(40414,'trends','itemid',29468),(40415,'trends_uint','itemid',29468),(40416,'events','itemid',29469),(40417,'history','itemid',29469),(40418,'history_log','itemid',29469),(40419,'history_str','itemid',29469),(40420,'history_text','itemid',29469),(40421,'history_uint','itemid',29469),(40422,'trends','itemid',29469),(40423,'trends_uint','itemid',29469),(40424,'events','itemid',29470),(40425,'history','itemid',29470),(40426,'history_log','itemid',29470),(40427,'history_str','itemid',29470),(40428,'history_text','itemid',29470),(40429,'history_uint','itemid',29470),(40430,'trends','itemid',29470),(40431,'trends_uint','itemid',29470),(40432,'events','itemid',29472),(40433,'history','itemid',29472),(40434,'history_log','itemid',29472),(40435,'history_str','itemid',29472),(40436,'history_text','itemid',29472),(40437,'history_uint','itemid',29472),(40438,'trends','itemid',29472),(40439,'trends_uint','itemid',29472),(40440,'events','itemid',29473),(40441,'history','itemid',29473),(40442,'history_log','itemid',29473),(40443,'history_str','itemid',29473),(40444,'history_text','itemid',29473),(40445,'history_uint','itemid',29473),(40446,'trends','itemid',29473),(40447,'trends_uint','itemid',29473),(40448,'events','itemid',29474),(40449,'history','itemid',29474),(40450,'history_log','itemid',29474),(40451,'history_str','itemid',29474),(40452,'history_text','itemid',29474),(40453,'history_uint','itemid',29474),(40454,'trends','itemid',29474),(40455,'trends_uint','itemid',29474),(40456,'events','itemid',29475),(40457,'history','itemid',29475),(40458,'history_log','itemid',29475),(40459,'history_str','itemid',29475),(40460,'history_text','itemid',29475),(40461,'history_uint','itemid',29475),(40462,'trends','itemid',29475),(40463,'trends_uint','itemid',29475),(40464,'events','itemid',29476),(40465,'history','itemid',29476),(40466,'history_log','itemid',29476),(40467,'history_str','itemid',29476),(40468,'history_text','itemid',29476),(40469,'history_uint','itemid',29476),(40470,'trends','itemid',29476),(40471,'trends_uint','itemid',29476),(40472,'events','itemid',29477),(40473,'history','itemid',29477),(40474,'history_log','itemid',29477),(40475,'history_str','itemid',29477),(40476,'history_text','itemid',29477),(40477,'history_uint','itemid',29477),(40478,'trends','itemid',29477),(40479,'trends_uint','itemid',29477),(40480,'events','itemid',29478),(40481,'history','itemid',29478),(40482,'history_log','itemid',29478),(40483,'history_str','itemid',29478),(40484,'history_text','itemid',29478),(40485,'history_uint','itemid',29478),(40486,'trends','itemid',29478),(40487,'trends_uint','itemid',29478),(40488,'events','itemid',29653),(40489,'history','itemid',29653),(40490,'history_log','itemid',29653),(40491,'history_str','itemid',29653),(40492,'history_text','itemid',29653),(40493,'history_uint','itemid',29653),(40494,'trends','itemid',29653),(40495,'trends_uint','itemid',29653),(40496,'events','itemid',29654),(40497,'history','itemid',29654),(40498,'history_log','itemid',29654),(40499,'history_str','itemid',29654),(40500,'history_text','itemid',29654),(40501,'history_uint','itemid',29654),(40502,'trends','itemid',29654),(40503,'trends_uint','itemid',29654),(40504,'events','itemid',29655),(40505,'history','itemid',29655),(40506,'history_log','itemid',29655),(40507,'history_str','itemid',29655),(40508,'history_text','itemid',29655),(40509,'history_uint','itemid',29655),(40510,'trends','itemid',29655),(40511,'trends_uint','itemid',29655),(40512,'events','itemid',29660),(40513,'history','itemid',29660),(40514,'history_log','itemid',29660),(40515,'history_str','itemid',29660),(40516,'history_text','itemid',29660),(40517,'history_uint','itemid',29660),(40518,'trends','itemid',29660),(40519,'trends_uint','itemid',29660),(40520,'events','itemid',29661),(40521,'history','itemid',29661),(40522,'history_log','itemid',29661),(40523,'history_str','itemid',29661),(40524,'history_text','itemid',29661),(40525,'history_uint','itemid',29661),(40526,'trends','itemid',29661),(40527,'trends_uint','itemid',29661),(40528,'events','itemid',29687),(40529,'history','itemid',29687),(40530,'history_log','itemid',29687),(40531,'history_str','itemid',29687),(40532,'history_text','itemid',29687),(40533,'history_uint','itemid',29687),(40534,'trends','itemid',29687),(40535,'trends_uint','itemid',29687),(40536,'events','itemid',29688),(40537,'history','itemid',29688),(40538,'history_log','itemid',29688),(40539,'history_str','itemid',29688),(40540,'history_text','itemid',29688),(40541,'history_uint','itemid',29688),(40542,'trends','itemid',29688),(40543,'trends_uint','itemid',29688),(40544,'events','itemid',29691),(40545,'history','itemid',29691),(40546,'history_log','itemid',29691),(40547,'history_str','itemid',29691),(40548,'history_text','itemid',29691),(40549,'history_uint','itemid',29691),(40550,'trends','itemid',29691),(40551,'trends_uint','itemid',29691),(40552,'events','itemid',29692),(40553,'history','itemid',29692),(40554,'history_log','itemid',29692),(40555,'history_str','itemid',29692),(40556,'history_text','itemid',29692),(40557,'history_uint','itemid',29692),(40558,'trends','itemid',29692),(40559,'trends_uint','itemid',29692),(40560,'events','itemid',29693),(40561,'history','itemid',29693),(40562,'history_log','itemid',29693),(40563,'history_str','itemid',29693),(40564,'history_text','itemid',29693),(40565,'history_uint','itemid',29693),(40566,'trends','itemid',29693),(40567,'trends_uint','itemid',29693),(40568,'events','itemid',29694),(40569,'history','itemid',29694),(40570,'history_log','itemid',29694),(40571,'history_str','itemid',29694),(40572,'history_text','itemid',29694),(40573,'history_uint','itemid',29694),(40574,'trends','itemid',29694),(40575,'trends_uint','itemid',29694),(40576,'events','itemid',29695),(40577,'history','itemid',29695),(40578,'history_log','itemid',29695),(40579,'history_str','itemid',29695),(40580,'history_text','itemid',29695),(40581,'history_uint','itemid',29695),(40582,'trends','itemid',29695),(40583,'trends_uint','itemid',29695),(40584,'events','itemid',29696),(40585,'history','itemid',29696),(40586,'history_log','itemid',29696),(40587,'history_str','itemid',29696),(40588,'history_text','itemid',29696),(40589,'history_uint','itemid',29696),(40590,'trends','itemid',29696),(40591,'trends_uint','itemid',29696),(40592,'events','itemid',29697),(40593,'history','itemid',29697),(40594,'history_log','itemid',29697),(40595,'history_str','itemid',29697),(40596,'history_text','itemid',29697),(40597,'history_uint','itemid',29697),(40598,'trends','itemid',29697),(40599,'trends_uint','itemid',29697),(40600,'events','itemid',29698),(40601,'history','itemid',29698),(40602,'history_log','itemid',29698),(40603,'history_str','itemid',29698),(40604,'history_text','itemid',29698),(40605,'history_uint','itemid',29698),(40606,'trends','itemid',29698),(40607,'trends_uint','itemid',29698),(40608,'events','itemid',29699),(40609,'history','itemid',29699),(40610,'history_log','itemid',29699),(40611,'history_str','itemid',29699),(40612,'history_text','itemid',29699),(40613,'history_uint','itemid',29699),(40614,'trends','itemid',29699),(40615,'trends_uint','itemid',29699),(40616,'events','itemid',29700),(40617,'history','itemid',29700),(40618,'history_log','itemid',29700),(40619,'history_str','itemid',29700),(40620,'history_text','itemid',29700),(40621,'history_uint','itemid',29700),(40622,'trends','itemid',29700),(40623,'trends_uint','itemid',29700),(40624,'events','itemid',29701),(40625,'history','itemid',29701),(40626,'history_log','itemid',29701),(40627,'history_str','itemid',29701),(40628,'history_text','itemid',29701),(40629,'history_uint','itemid',29701),(40630,'trends','itemid',29701),(40631,'trends_uint','itemid',29701),(40632,'events','itemid',29738),(40633,'history','itemid',29738),(40634,'history_log','itemid',29738),(40635,'history_str','itemid',29738),(40636,'history_text','itemid',29738),(40637,'history_uint','itemid',29738),(40638,'trends','itemid',29738),(40639,'trends_uint','itemid',29738),(40640,'events','itemid',29739),(40641,'history','itemid',29739),(40642,'history_log','itemid',29739),(40643,'history_str','itemid',29739),(40644,'history_text','itemid',29739),(40645,'history_uint','itemid',29739),(40646,'trends','itemid',29739),(40647,'trends_uint','itemid',29739),(40648,'events','itemid',29741),(40649,'history','itemid',29741),(40650,'history_log','itemid',29741),(40651,'history_str','itemid',29741),(40652,'history_text','itemid',29741),(40653,'history_uint','itemid',29741),(40654,'trends','itemid',29741),(40655,'trends_uint','itemid',29741),(40656,'events','itemid',29742),(40657,'history','itemid',29742),(40658,'history_log','itemid',29742),(40659,'history_str','itemid',29742),(40660,'history_text','itemid',29742),(40661,'history_uint','itemid',29742),(40662,'trends','itemid',29742),(40663,'trends_uint','itemid',29742),(40664,'events','itemid',29743),(40665,'history','itemid',29743),(40666,'history_log','itemid',29743),(40667,'history_str','itemid',29743),(40668,'history_text','itemid',29743),(40669,'history_uint','itemid',29743),(40670,'trends','itemid',29743),(40671,'trends_uint','itemid',29743),(40672,'events','itemid',29745),(40673,'history','itemid',29745),(40674,'history_log','itemid',29745),(40675,'history_str','itemid',29745),(40676,'history_text','itemid',29745),(40677,'history_uint','itemid',29745),(40678,'trends','itemid',29745),(40679,'trends_uint','itemid',29745),(40680,'events','itemid',29746),(40681,'history','itemid',29746),(40682,'history_log','itemid',29746),(40683,'history_str','itemid',29746),(40684,'history_text','itemid',29746),(40685,'history_uint','itemid',29746),(40686,'trends','itemid',29746),(40687,'trends_uint','itemid',29746),(40688,'events','itemid',29747),(40689,'history','itemid',29747),(40690,'history_log','itemid',29747),(40691,'history_str','itemid',29747),(40692,'history_text','itemid',29747),(40693,'history_uint','itemid',29747),(40694,'trends','itemid',29747),(40695,'trends_uint','itemid',29747),(40696,'events','itemid',29748),(40697,'history','itemid',29748),(40698,'history_log','itemid',29748),(40699,'history_str','itemid',29748),(40700,'history_text','itemid',29748),(40701,'history_uint','itemid',29748),(40702,'trends','itemid',29748),(40703,'trends_uint','itemid',29748),(40704,'events','itemid',29749),(40705,'history','itemid',29749),(40706,'history_log','itemid',29749),(40707,'history_str','itemid',29749),(40708,'history_text','itemid',29749),(40709,'history_uint','itemid',29749),(40710,'trends','itemid',29749),(40711,'trends_uint','itemid',29749),(40712,'events','itemid',29750),(40713,'history','itemid',29750),(40714,'history_log','itemid',29750),(40715,'history_str','itemid',29750),(40716,'history_text','itemid',29750),(40717,'history_uint','itemid',29750),(40718,'trends','itemid',29750),(40719,'trends_uint','itemid',29750),(40720,'events','itemid',29751),(40721,'history','itemid',29751),(40722,'history_log','itemid',29751),(40723,'history_str','itemid',29751),(40724,'history_text','itemid',29751),(40725,'history_uint','itemid',29751),(40726,'trends','itemid',29751),(40727,'trends_uint','itemid',29751),(40728,'events','itemid',29752),(40729,'history','itemid',29752),(40730,'history_log','itemid',29752),(40731,'history_str','itemid',29752),(40732,'history_text','itemid',29752),(40733,'history_uint','itemid',29752),(40734,'trends','itemid',29752),(40735,'trends_uint','itemid',29752),(40736,'events','itemid',29753),(40737,'history','itemid',29753),(40738,'history_log','itemid',29753),(40739,'history_str','itemid',29753),(40740,'history_text','itemid',29753),(40741,'history_uint','itemid',29753),(40742,'trends','itemid',29753),(40743,'trends_uint','itemid',29753),(40744,'events','itemid',29754),(40745,'history','itemid',29754),(40746,'history_log','itemid',29754),(40747,'history_str','itemid',29754),(40748,'history_text','itemid',29754),(40749,'history_uint','itemid',29754),(40750,'trends','itemid',29754),(40751,'trends_uint','itemid',29754),(40752,'events','itemid',29755),(40753,'history','itemid',29755),(40754,'history_log','itemid',29755),(40755,'history_str','itemid',29755),(40756,'history_text','itemid',29755),(40757,'history_uint','itemid',29755),(40758,'trends','itemid',29755),(40759,'trends_uint','itemid',29755),(40760,'events','itemid',29756),(40761,'history','itemid',29756),(40762,'history_log','itemid',29756),(40763,'history_str','itemid',29756),(40764,'history_text','itemid',29756),(40765,'history_uint','itemid',29756),(40766,'trends','itemid',29756),(40767,'trends_uint','itemid',29756),(40768,'events','itemid',29757),(40769,'history','itemid',29757),(40770,'history_log','itemid',29757),(40771,'history_str','itemid',29757),(40772,'history_text','itemid',29757),(40773,'history_uint','itemid',29757),(40774,'trends','itemid',29757),(40775,'trends_uint','itemid',29757),(40776,'events','itemid',29758),(40777,'history','itemid',29758),(40778,'history_log','itemid',29758),(40779,'history_str','itemid',29758),(40780,'history_text','itemid',29758),(40781,'history_uint','itemid',29758),(40782,'trends','itemid',29758),(40783,'trends_uint','itemid',29758),(40784,'events','itemid',29759),(40785,'history','itemid',29759),(40786,'history_log','itemid',29759),(40787,'history_str','itemid',29759),(40788,'history_text','itemid',29759),(40789,'history_uint','itemid',29759),(40790,'trends','itemid',29759),(40791,'trends_uint','itemid',29759),(40792,'events','itemid',29760),(40793,'history','itemid',29760),(40794,'history_log','itemid',29760),(40795,'history_str','itemid',29760),(40796,'history_text','itemid',29760),(40797,'history_uint','itemid',29760),(40798,'trends','itemid',29760),(40799,'trends_uint','itemid',29760),(40800,'events','itemid',29761),(40801,'history','itemid',29761),(40802,'history_log','itemid',29761),(40803,'history_str','itemid',29761),(40804,'history_text','itemid',29761),(40805,'history_uint','itemid',29761),(40806,'trends','itemid',29761),(40807,'trends_uint','itemid',29761),(40808,'events','itemid',29762),(40809,'history','itemid',29762),(40810,'history_log','itemid',29762),(40811,'history_str','itemid',29762),(40812,'history_text','itemid',29762),(40813,'history_uint','itemid',29762),(40814,'trends','itemid',29762),(40815,'trends_uint','itemid',29762),(40816,'events','itemid',29763),(40817,'history','itemid',29763),(40818,'history_log','itemid',29763),(40819,'history_str','itemid',29763),(40820,'history_text','itemid',29763),(40821,'history_uint','itemid',29763),(40822,'trends','itemid',29763),(40823,'trends_uint','itemid',29763),(40824,'events','itemid',29764),(40825,'history','itemid',29764),(40826,'history_log','itemid',29764),(40827,'history_str','itemid',29764),(40828,'history_text','itemid',29764),(40829,'history_uint','itemid',29764),(40830,'trends','itemid',29764),(40831,'trends_uint','itemid',29764),(40832,'events','itemid',29765),(40833,'history','itemid',29765),(40834,'history_log','itemid',29765),(40835,'history_str','itemid',29765),(40836,'history_text','itemid',29765),(40837,'history_uint','itemid',29765),(40838,'trends','itemid',29765),(40839,'trends_uint','itemid',29765),(40840,'events','itemid',29766),(40841,'history','itemid',29766),(40842,'history_log','itemid',29766),(40843,'history_str','itemid',29766),(40844,'history_text','itemid',29766),(40845,'history_uint','itemid',29766),(40846,'trends','itemid',29766),(40847,'trends_uint','itemid',29766),(40848,'events','itemid',29767),(40849,'history','itemid',29767),(40850,'history_log','itemid',29767),(40851,'history_str','itemid',29767),(40852,'history_text','itemid',29767),(40853,'history_uint','itemid',29767),(40854,'trends','itemid',29767),(40855,'trends_uint','itemid',29767),(40856,'events','itemid',29768),(40857,'history','itemid',29768),(40858,'history_log','itemid',29768),(40859,'history_str','itemid',29768),(40860,'history_text','itemid',29768),(40861,'history_uint','itemid',29768),(40862,'trends','itemid',29768),(40863,'trends_uint','itemid',29768),(40864,'events','itemid',29769),(40865,'history','itemid',29769),(40866,'history_log','itemid',29769),(40867,'history_str','itemid',29769),(40868,'history_text','itemid',29769),(40869,'history_uint','itemid',29769),(40870,'trends','itemid',29769),(40871,'trends_uint','itemid',29769),(40872,'events','itemid',29771),(40873,'history','itemid',29771),(40874,'history_log','itemid',29771),(40875,'history_str','itemid',29771),(40876,'history_text','itemid',29771),(40877,'history_uint','itemid',29771),(40878,'trends','itemid',29771),(40879,'trends_uint','itemid',29771),(40880,'events','itemid',29772),(40881,'history','itemid',29772),(40882,'history_log','itemid',29772),(40883,'history_str','itemid',29772),(40884,'history_text','itemid',29772),(40885,'history_uint','itemid',29772),(40886,'trends','itemid',29772),(40887,'trends_uint','itemid',29772),(40888,'events','itemid',29773),(40889,'history','itemid',29773),(40890,'history_log','itemid',29773),(40891,'history_str','itemid',29773),(40892,'history_text','itemid',29773),(40893,'history_uint','itemid',29773),(40894,'trends','itemid',29773),(40895,'trends_uint','itemid',29773),(40896,'events','itemid',29774),(40897,'history','itemid',29774),(40898,'history_log','itemid',29774),(40899,'history_str','itemid',29774),(40900,'history_text','itemid',29774),(40901,'history_uint','itemid',29774),(40902,'trends','itemid',29774),(40903,'trends_uint','itemid',29774),(40904,'events','itemid',29775),(40905,'history','itemid',29775),(40906,'history_log','itemid',29775),(40907,'history_str','itemid',29775),(40908,'history_text','itemid',29775),(40909,'history_uint','itemid',29775),(40910,'trends','itemid',29775),(40911,'trends_uint','itemid',29775),(40912,'events','itemid',29776),(40913,'history','itemid',29776),(40914,'history_log','itemid',29776),(40915,'history_str','itemid',29776),(40916,'history_text','itemid',29776),(40917,'history_uint','itemid',29776),(40918,'trends','itemid',29776),(40919,'trends_uint','itemid',29776),(40920,'events','itemid',29777),(40921,'history','itemid',29777),(40922,'history_log','itemid',29777),(40923,'history_str','itemid',29777),(40924,'history_text','itemid',29777),(40925,'history_uint','itemid',29777),(40926,'trends','itemid',29777),(40927,'trends_uint','itemid',29777),(40928,'events','itemid',29779),(40929,'history','itemid',29779),(40930,'history_log','itemid',29779),(40931,'history_str','itemid',29779),(40932,'history_text','itemid',29779),(40933,'history_uint','itemid',29779),(40934,'trends','itemid',29779),(40935,'trends_uint','itemid',29779),(40936,'events','itemid',29780),(40937,'history','itemid',29780),(40938,'history_log','itemid',29780),(40939,'history_str','itemid',29780),(40940,'history_text','itemid',29780),(40941,'history_uint','itemid',29780),(40942,'trends','itemid',29780),(40943,'trends_uint','itemid',29780),(40944,'events','itemid',29781),(40945,'history','itemid',29781),(40946,'history_log','itemid',29781),(40947,'history_str','itemid',29781),(40948,'history_text','itemid',29781),(40949,'history_uint','itemid',29781),(40950,'trends','itemid',29781),(40951,'trends_uint','itemid',29781),(40952,'events','itemid',29782),(40953,'history','itemid',29782),(40954,'history_log','itemid',29782),(40955,'history_str','itemid',29782),(40956,'history_text','itemid',29782),(40957,'history_uint','itemid',29782),(40958,'trends','itemid',29782),(40959,'trends_uint','itemid',29782),(40960,'events','itemid',29783),(40961,'history','itemid',29783),(40962,'history_log','itemid',29783),(40963,'history_str','itemid',29783),(40964,'history_text','itemid',29783),(40965,'history_uint','itemid',29783),(40966,'trends','itemid',29783),(40967,'trends_uint','itemid',29783),(40968,'events','itemid',29784),(40969,'history','itemid',29784),(40970,'history_log','itemid',29784),(40971,'history_str','itemid',29784),(40972,'history_text','itemid',29784),(40973,'history_uint','itemid',29784),(40974,'trends','itemid',29784),(40975,'trends_uint','itemid',29784),(40976,'events','itemid',29821),(40977,'history','itemid',29821),(40978,'history_log','itemid',29821),(40979,'history_str','itemid',29821),(40980,'history_text','itemid',29821),(40981,'history_uint','itemid',29821),(40982,'trends','itemid',29821),(40983,'trends_uint','itemid',29821),(40984,'events','itemid',29998),(40985,'history','itemid',29998),(40986,'history_log','itemid',29998),(40987,'history_str','itemid',29998),(40988,'history_text','itemid',29998),(40989,'history_uint','itemid',29998),(40990,'trends','itemid',29998),(40991,'trends_uint','itemid',29998),(40992,'events','itemid',29999),(40993,'history','itemid',29999),(40994,'history_log','itemid',29999),(40995,'history_str','itemid',29999),(40996,'history_text','itemid',29999),(40997,'history_uint','itemid',29999),(40998,'trends','itemid',29999),(40999,'trends_uint','itemid',29999),(41000,'events','itemid',30000),(41001,'history','itemid',30000),(41002,'history_log','itemid',30000),(41003,'history_str','itemid',30000),(41004,'history_text','itemid',30000),(41005,'history_uint','itemid',30000),(41006,'trends','itemid',30000),(41007,'trends_uint','itemid',30000),(41008,'events','itemid',30001),(41009,'history','itemid',30001),(41010,'history_log','itemid',30001),(41011,'history_str','itemid',30001),(41012,'history_text','itemid',30001),(41013,'history_uint','itemid',30001),(41014,'trends','itemid',30001),(41015,'trends_uint','itemid',30001),(41016,'events','itemid',30002),(41017,'history','itemid',30002),(41018,'history_log','itemid',30002),(41019,'history_str','itemid',30002),(41020,'history_text','itemid',30002),(41021,'history_uint','itemid',30002),(41022,'trends','itemid',30002),(41023,'trends_uint','itemid',30002),(41024,'events','itemid',30003),(41025,'history','itemid',30003),(41026,'history_log','itemid',30003),(41027,'history_str','itemid',30003),(41028,'history_text','itemid',30003),(41029,'history_uint','itemid',30003),(41030,'trends','itemid',30003),(41031,'trends_uint','itemid',30003),(41032,'events','itemid',30004),(41033,'history','itemid',30004),(41034,'history_log','itemid',30004),(41035,'history_str','itemid',30004),(41036,'history_text','itemid',30004),(41037,'history_uint','itemid',30004),(41038,'trends','itemid',30004),(41039,'trends_uint','itemid',30004),(41040,'events','itemid',30005),(41041,'history','itemid',30005),(41042,'history_log','itemid',30005),(41043,'history_str','itemid',30005),(41044,'history_text','itemid',30005),(41045,'history_uint','itemid',30005),(41046,'trends','itemid',30005),(41047,'trends_uint','itemid',30005),(41048,'events','itemid',30006),(41049,'history','itemid',30006),(41050,'history_log','itemid',30006),(41051,'history_str','itemid',30006),(41052,'history_text','itemid',30006),(41053,'history_uint','itemid',30006),(41054,'trends','itemid',30006),(41055,'trends_uint','itemid',30006),(41056,'events','itemid',30007),(41057,'history','itemid',30007),(41058,'history_log','itemid',30007),(41059,'history_str','itemid',30007),(41060,'history_text','itemid',30007),(41061,'history_uint','itemid',30007),(41062,'trends','itemid',30007),(41063,'trends_uint','itemid',30007),(41064,'events','itemid',30008),(41065,'history','itemid',30008),(41066,'history_log','itemid',30008),(41067,'history_str','itemid',30008),(41068,'history_text','itemid',30008),(41069,'history_uint','itemid',30008),(41070,'trends','itemid',30008),(41071,'trends_uint','itemid',30008),(41072,'events','itemid',30009),(41073,'history','itemid',30009),(41074,'history_log','itemid',30009),(41075,'history_str','itemid',30009),(41076,'history_text','itemid',30009),(41077,'history_uint','itemid',30009),(41078,'trends','itemid',30009),(41079,'trends_uint','itemid',30009),(41080,'events','itemid',30010),(41081,'history','itemid',30010),(41082,'history_log','itemid',30010),(41083,'history_str','itemid',30010),(41084,'history_text','itemid',30010),(41085,'history_uint','itemid',30010),(41086,'trends','itemid',30010),(41087,'trends_uint','itemid',30010),(41088,'events','itemid',30011),(41089,'history','itemid',30011),(41090,'history_log','itemid',30011),(41091,'history_str','itemid',30011),(41092,'history_text','itemid',30011),(41093,'history_uint','itemid',30011),(41094,'trends','itemid',30011),(41095,'trends_uint','itemid',30011),(41096,'events','itemid',30012),(41097,'history','itemid',30012),(41098,'history_log','itemid',30012),(41099,'history_str','itemid',30012),(41100,'history_text','itemid',30012),(41101,'history_uint','itemid',30012),(41102,'trends','itemid',30012),(41103,'trends_uint','itemid',30012),(41104,'events','itemid',30013),(41105,'history','itemid',30013),(41106,'history_log','itemid',30013),(41107,'history_str','itemid',30013),(41108,'history_text','itemid',30013),(41109,'history_uint','itemid',30013),(41110,'trends','itemid',30013),(41111,'trends_uint','itemid',30013),(41112,'events','itemid',30014),(41113,'history','itemid',30014),(41114,'history_log','itemid',30014),(41115,'history_str','itemid',30014),(41116,'history_text','itemid',30014),(41117,'history_uint','itemid',30014),(41118,'trends','itemid',30014),(41119,'trends_uint','itemid',30014),(41120,'events','itemid',30015),(41121,'history','itemid',30015),(41122,'history_log','itemid',30015),(41123,'history_str','itemid',30015),(41124,'history_text','itemid',30015),(41125,'history_uint','itemid',30015),(41126,'trends','itemid',30015),(41127,'trends_uint','itemid',30015),(41128,'events','itemid',30016),(41129,'history','itemid',30016),(41130,'history_log','itemid',30016),(41131,'history_str','itemid',30016),(41132,'history_text','itemid',30016),(41133,'history_uint','itemid',30016),(41134,'trends','itemid',30016),(41135,'trends_uint','itemid',30016),(41136,'events','itemid',30017),(41137,'history','itemid',30017),(41138,'history_log','itemid',30017),(41139,'history_str','itemid',30017),(41140,'history_text','itemid',30017),(41141,'history_uint','itemid',30017),(41142,'trends','itemid',30017),(41143,'trends_uint','itemid',30017),(41144,'events','itemid',30018),(41145,'history','itemid',30018),(41146,'history_log','itemid',30018),(41147,'history_str','itemid',30018),(41148,'history_text','itemid',30018),(41149,'history_uint','itemid',30018),(41150,'trends','itemid',30018),(41151,'trends_uint','itemid',30018),(41152,'events','itemid',30019),(41153,'history','itemid',30019),(41154,'history_log','itemid',30019),(41155,'history_str','itemid',30019),(41156,'history_text','itemid',30019),(41157,'history_uint','itemid',30019),(41158,'trends','itemid',30019),(41159,'trends_uint','itemid',30019),(41160,'events','itemid',30020),(41161,'history','itemid',30020),(41162,'history_log','itemid',30020),(41163,'history_str','itemid',30020),(41164,'history_text','itemid',30020),(41165,'history_uint','itemid',30020),(41166,'trends','itemid',30020),(41167,'trends_uint','itemid',30020),(41168,'events','itemid',30021),(41169,'history','itemid',30021),(41170,'history_log','itemid',30021),(41171,'history_str','itemid',30021),(41172,'history_text','itemid',30021),(41173,'history_uint','itemid',30021),(41174,'trends','itemid',30021),(41175,'trends_uint','itemid',30021),(41176,'events','itemid',30022),(41177,'history','itemid',30022),(41178,'history_log','itemid',30022),(41179,'history_str','itemid',30022),(41180,'history_text','itemid',30022),(41181,'history_uint','itemid',30022),(41182,'trends','itemid',30022),(41183,'trends_uint','itemid',30022),(41184,'events','itemid',30023),(41185,'history','itemid',30023),(41186,'history_log','itemid',30023),(41187,'history_str','itemid',30023),(41188,'history_text','itemid',30023),(41189,'history_uint','itemid',30023),(41190,'trends','itemid',30023),(41191,'trends_uint','itemid',30023),(41192,'events','itemid',30024),(41193,'history','itemid',30024),(41194,'history_log','itemid',30024),(41195,'history_str','itemid',30024),(41196,'history_text','itemid',30024),(41197,'history_uint','itemid',30024),(41198,'trends','itemid',30024),(41199,'trends_uint','itemid',30024),(41200,'events','itemid',30025),(41201,'history','itemid',30025),(41202,'history_log','itemid',30025),(41203,'history_str','itemid',30025),(41204,'history_text','itemid',30025),(41205,'history_uint','itemid',30025),(41206,'trends','itemid',30025),(41207,'trends_uint','itemid',30025),(41208,'events','itemid',30043),(41209,'history','itemid',30043),(41210,'history_log','itemid',30043),(41211,'history_str','itemid',30043),(41212,'history_text','itemid',30043),(41213,'history_uint','itemid',30043),(41214,'trends','itemid',30043),(41215,'trends_uint','itemid',30043),(41216,'events','itemid',30044),(41217,'history','itemid',30044),(41218,'history_log','itemid',30044),(41219,'history_str','itemid',30044),(41220,'history_text','itemid',30044),(41221,'history_uint','itemid',30044),(41222,'trends','itemid',30044),(41223,'trends_uint','itemid',30044),(41224,'events','itemid',30045),(41225,'history','itemid',30045),(41226,'history_log','itemid',30045),(41227,'history_str','itemid',30045),(41228,'history_text','itemid',30045),(41229,'history_uint','itemid',30045),(41230,'trends','itemid',30045),(41231,'trends_uint','itemid',30045),(41232,'events','itemid',30124),(41233,'history','itemid',30124),(41234,'history_log','itemid',30124),(41235,'history_str','itemid',30124),(41236,'history_text','itemid',30124),(41237,'history_uint','itemid',30124),(41238,'trends','itemid',30124),(41239,'trends_uint','itemid',30124),(41240,'events','itemid',30125),(41241,'history','itemid',30125),(41242,'history_log','itemid',30125),(41243,'history_str','itemid',30125),(41244,'history_text','itemid',30125),(41245,'history_uint','itemid',30125),(41246,'trends','itemid',30125),(41247,'trends_uint','itemid',30125),(41248,'events','itemid',30126),(41249,'history','itemid',30126),(41250,'history_log','itemid',30126),(41251,'history_str','itemid',30126),(41252,'history_text','itemid',30126),(41253,'history_uint','itemid',30126),(41254,'trends','itemid',30126),(41255,'trends_uint','itemid',30126),(41256,'events','itemid',30132),(41257,'history','itemid',30132),(41258,'history_log','itemid',30132),(41259,'history_str','itemid',30132),(41260,'history_text','itemid',30132),(41261,'history_uint','itemid',30132),(41262,'trends','itemid',30132),(41263,'trends_uint','itemid',30132),(41264,'events','itemid',30133),(41265,'history','itemid',30133),(41266,'history_log','itemid',30133),(41267,'history_str','itemid',30133),(41268,'history_text','itemid',30133),(41269,'history_uint','itemid',30133),(41270,'trends','itemid',30133),(41271,'trends_uint','itemid',30133),(41272,'events','itemid',30134),(41273,'history','itemid',30134),(41274,'history_log','itemid',30134),(41275,'history_str','itemid',30134),(41276,'history_text','itemid',30134),(41277,'history_uint','itemid',30134),(41278,'trends','itemid',30134),(41279,'trends_uint','itemid',30134),(41280,'events','itemid',30135),(41281,'history','itemid',30135),(41282,'history_log','itemid',30135),(41283,'history_str','itemid',30135),(41284,'history_text','itemid',30135),(41285,'history_uint','itemid',30135),(41286,'trends','itemid',30135),(41287,'trends_uint','itemid',30135),(41288,'events','itemid',30136),(41289,'history','itemid',30136),(41290,'history_log','itemid',30136),(41291,'history_str','itemid',30136),(41292,'history_text','itemid',30136),(41293,'history_uint','itemid',30136),(41294,'trends','itemid',30136),(41295,'trends_uint','itemid',30136),(41296,'events','itemid',30137),(41297,'history','itemid',30137),(41298,'history_log','itemid',30137),(41299,'history_str','itemid',30137),(41300,'history_text','itemid',30137),(41301,'history_uint','itemid',30137),(41302,'trends','itemid',30137),(41303,'trends_uint','itemid',30137),(41304,'events','itemid',30273),(41305,'history','itemid',30273),(41306,'history_log','itemid',30273),(41307,'history_str','itemid',30273),(41308,'history_text','itemid',30273),(41309,'history_uint','itemid',30273),(41310,'trends','itemid',30273),(41311,'trends_uint','itemid',30273),(41312,'events','itemid',30274),(41313,'history','itemid',30274),(41314,'history_log','itemid',30274),(41315,'history_str','itemid',30274),(41316,'history_text','itemid',30274),(41317,'history_uint','itemid',30274),(41318,'trends','itemid',30274),(41319,'trends_uint','itemid',30274),(41320,'events','itemid',30275),(41321,'history','itemid',30275),(41322,'history_log','itemid',30275),(41323,'history_str','itemid',30275),(41324,'history_text','itemid',30275),(41325,'history_uint','itemid',30275),(41326,'trends','itemid',30275),(41327,'trends_uint','itemid',30275),(41328,'events','itemid',30276),(41329,'history','itemid',30276),(41330,'history_log','itemid',30276),(41331,'history_str','itemid',30276),(41332,'history_text','itemid',30276),(41333,'history_uint','itemid',30276),(41334,'trends','itemid',30276),(41335,'trends_uint','itemid',30276),(41336,'events','itemid',30277),(41337,'history','itemid',30277),(41338,'history_log','itemid',30277),(41339,'history_str','itemid',30277),(41340,'history_text','itemid',30277),(41341,'history_uint','itemid',30277),(41342,'trends','itemid',30277),(41343,'trends_uint','itemid',30277),(41344,'events','itemid',30278),(41345,'history','itemid',30278),(41346,'history_log','itemid',30278),(41347,'history_str','itemid',30278),(41348,'history_text','itemid',30278),(41349,'history_uint','itemid',30278),(41350,'trends','itemid',30278),(41351,'trends_uint','itemid',30278),(41352,'events','itemid',30279),(41353,'history','itemid',30279),(41354,'history_log','itemid',30279),(41355,'history_str','itemid',30279),(41356,'history_text','itemid',30279),(41357,'history_uint','itemid',30279),(41358,'trends','itemid',30279),(41359,'trends_uint','itemid',30279),(41360,'events','itemid',30280),(41361,'history','itemid',30280),(41362,'history_log','itemid',30280),(41363,'history_str','itemid',30280),(41364,'history_text','itemid',30280),(41365,'history_uint','itemid',30280),(41366,'trends','itemid',30280),(41367,'trends_uint','itemid',30280),(41368,'events','itemid',30281),(41369,'history','itemid',30281),(41370,'history_log','itemid',30281),(41371,'history_str','itemid',30281),(41372,'history_text','itemid',30281),(41373,'history_uint','itemid',30281),(41374,'trends','itemid',30281),(41375,'trends_uint','itemid',30281),(41376,'events','itemid',30282),(41377,'history','itemid',30282),(41378,'history_log','itemid',30282),(41379,'history_str','itemid',30282),(41380,'history_text','itemid',30282),(41381,'history_uint','itemid',30282),(41382,'trends','itemid',30282),(41383,'trends_uint','itemid',30282),(41384,'events','itemid',30283),(41385,'history','itemid',30283),(41386,'history_log','itemid',30283),(41387,'history_str','itemid',30283),(41388,'history_text','itemid',30283),(41389,'history_uint','itemid',30283),(41390,'trends','itemid',30283),(41391,'trends_uint','itemid',30283),(41392,'events','itemid',30284),(41393,'history','itemid',30284),(41394,'history_log','itemid',30284),(41395,'history_str','itemid',30284),(41396,'history_text','itemid',30284),(41397,'history_uint','itemid',30284),(41398,'trends','itemid',30284),(41399,'trends_uint','itemid',30284),(41400,'events','itemid',30285),(41401,'history','itemid',30285),(41402,'history_log','itemid',30285),(41403,'history_str','itemid',30285),(41404,'history_text','itemid',30285),(41405,'history_uint','itemid',30285),(41406,'trends','itemid',30285),(41407,'trends_uint','itemid',30285),(41408,'events','itemid',30286),(41409,'history','itemid',30286),(41410,'history_log','itemid',30286),(41411,'history_str','itemid',30286),(41412,'history_text','itemid',30286),(41413,'history_uint','itemid',30286),(41414,'trends','itemid',30286),(41415,'trends_uint','itemid',30286),(41416,'events','itemid',30287),(41417,'history','itemid',30287),(41418,'history_log','itemid',30287),(41419,'history_str','itemid',30287),(41420,'history_text','itemid',30287),(41421,'history_uint','itemid',30287),(41422,'trends','itemid',30287),(41423,'trends_uint','itemid',30287),(41424,'events','itemid',30288),(41425,'history','itemid',30288),(41426,'history_log','itemid',30288),(41427,'history_str','itemid',30288),(41428,'history_text','itemid',30288),(41429,'history_uint','itemid',30288),(41430,'trends','itemid',30288),(41431,'trends_uint','itemid',30288),(41432,'events','itemid',30289),(41433,'history','itemid',30289),(41434,'history_log','itemid',30289),(41435,'history_str','itemid',30289),(41436,'history_text','itemid',30289),(41437,'history_uint','itemid',30289),(41438,'trends','itemid',30289),(41439,'trends_uint','itemid',30289),(41440,'events','itemid',30290),(41441,'history','itemid',30290),(41442,'history_log','itemid',30290),(41443,'history_str','itemid',30290),(41444,'history_text','itemid',30290),(41445,'history_uint','itemid',30290),(41446,'trends','itemid',30290),(41447,'trends_uint','itemid',30290),(41448,'events','itemid',30291),(41449,'history','itemid',30291),(41450,'history_log','itemid',30291),(41451,'history_str','itemid',30291),(41452,'history_text','itemid',30291),(41453,'history_uint','itemid',30291),(41454,'trends','itemid',30291),(41455,'trends_uint','itemid',30291),(41456,'events','itemid',30292),(41457,'history','itemid',30292),(41458,'history_log','itemid',30292),(41459,'history_str','itemid',30292),(41460,'history_text','itemid',30292),(41461,'history_uint','itemid',30292),(41462,'trends','itemid',30292),(41463,'trends_uint','itemid',30292),(41464,'events','itemid',30293),(41465,'history','itemid',30293),(41466,'history_log','itemid',30293),(41467,'history_str','itemid',30293),(41468,'history_text','itemid',30293),(41469,'history_uint','itemid',30293),(41470,'trends','itemid',30293),(41471,'trends_uint','itemid',30293),(41472,'events','itemid',30294),(41473,'history','itemid',30294),(41474,'history_log','itemid',30294),(41475,'history_str','itemid',30294),(41476,'history_text','itemid',30294),(41477,'history_uint','itemid',30294),(41478,'trends','itemid',30294),(41479,'trends_uint','itemid',30294),(41480,'events','itemid',30295),(41481,'history','itemid',30295),(41482,'history_log','itemid',30295),(41483,'history_str','itemid',30295),(41484,'history_text','itemid',30295),(41485,'history_uint','itemid',30295),(41486,'trends','itemid',30295),(41487,'trends_uint','itemid',30295),(41488,'events','itemid',30296),(41489,'history','itemid',30296),(41490,'history_log','itemid',30296),(41491,'history_str','itemid',30296),(41492,'history_text','itemid',30296),(41493,'history_uint','itemid',30296),(41494,'trends','itemid',30296),(41495,'trends_uint','itemid',30296),(41496,'events','itemid',30297),(41497,'history','itemid',30297),(41498,'history_log','itemid',30297),(41499,'history_str','itemid',30297),(41500,'history_text','itemid',30297),(41501,'history_uint','itemid',30297),(41502,'trends','itemid',30297),(41503,'trends_uint','itemid',30297),(41504,'events','itemid',30298),(41505,'history','itemid',30298),(41506,'history_log','itemid',30298),(41507,'history_str','itemid',30298),(41508,'history_text','itemid',30298),(41509,'history_uint','itemid',30298),(41510,'trends','itemid',30298),(41511,'trends_uint','itemid',30298),(41512,'events','itemid',30299),(41513,'history','itemid',30299),(41514,'history_log','itemid',30299),(41515,'history_str','itemid',30299),(41516,'history_text','itemid',30299),(41517,'history_uint','itemid',30299),(41518,'trends','itemid',30299),(41519,'trends_uint','itemid',30299),(41520,'events','itemid',30300),(41521,'history','itemid',30300),(41522,'history_log','itemid',30300),(41523,'history_str','itemid',30300),(41524,'history_text','itemid',30300),(41525,'history_uint','itemid',30300),(41526,'trends','itemid',30300),(41527,'trends_uint','itemid',30300),(41528,'events','itemid',30301),(41529,'history','itemid',30301),(41530,'history_log','itemid',30301),(41531,'history_str','itemid',30301),(41532,'history_text','itemid',30301),(41533,'history_uint','itemid',30301),(41534,'trends','itemid',30301),(41535,'trends_uint','itemid',30301),(41536,'events','itemid',30302),(41537,'history','itemid',30302),(41538,'history_log','itemid',30302),(41539,'history_str','itemid',30302),(41540,'history_text','itemid',30302),(41541,'history_uint','itemid',30302),(41542,'trends','itemid',30302),(41543,'trends_uint','itemid',30302),(41544,'events','itemid',30303),(41545,'history','itemid',30303),(41546,'history_log','itemid',30303),(41547,'history_str','itemid',30303),(41548,'history_text','itemid',30303),(41549,'history_uint','itemid',30303),(41550,'trends','itemid',30303),(41551,'trends_uint','itemid',30303),(41552,'events','itemid',30304),(41553,'history','itemid',30304),(41554,'history_log','itemid',30304),(41555,'history_str','itemid',30304),(41556,'history_text','itemid',30304),(41557,'history_uint','itemid',30304),(41558,'trends','itemid',30304),(41559,'trends_uint','itemid',30304),(41560,'events','itemid',30305),(41561,'history','itemid',30305),(41562,'history_log','itemid',30305),(41563,'history_str','itemid',30305),(41564,'history_text','itemid',30305),(41565,'history_uint','itemid',30305),(41566,'trends','itemid',30305),(41567,'trends_uint','itemid',30305),(41568,'events','itemid',30306),(41569,'history','itemid',30306),(41570,'history_log','itemid',30306),(41571,'history_str','itemid',30306),(41572,'history_text','itemid',30306),(41573,'history_uint','itemid',30306),(41574,'trends','itemid',30306),(41575,'trends_uint','itemid',30306),(41576,'events','itemid',30307),(41577,'history','itemid',30307),(41578,'history_log','itemid',30307),(41579,'history_str','itemid',30307),(41580,'history_text','itemid',30307),(41581,'history_uint','itemid',30307),(41582,'trends','itemid',30307),(41583,'trends_uint','itemid',30307),(41584,'events','itemid',30308),(41585,'history','itemid',30308),(41586,'history_log','itemid',30308),(41587,'history_str','itemid',30308),(41588,'history_text','itemid',30308),(41589,'history_uint','itemid',30308),(41590,'trends','itemid',30308),(41591,'trends_uint','itemid',30308),(41592,'events','itemid',30309),(41593,'history','itemid',30309),(41594,'history_log','itemid',30309),(41595,'history_str','itemid',30309),(41596,'history_text','itemid',30309),(41597,'history_uint','itemid',30309),(41598,'trends','itemid',30309),(41599,'trends_uint','itemid',30309),(41600,'events','itemid',30310),(41601,'history','itemid',30310),(41602,'history_log','itemid',30310),(41603,'history_str','itemid',30310),(41604,'history_text','itemid',30310),(41605,'history_uint','itemid',30310),(41606,'trends','itemid',30310),(41607,'trends_uint','itemid',30310),(41608,'events','itemid',30311),(41609,'history','itemid',30311),(41610,'history_log','itemid',30311),(41611,'history_str','itemid',30311),(41612,'history_text','itemid',30311),(41613,'history_uint','itemid',30311),(41614,'trends','itemid',30311),(41615,'trends_uint','itemid',30311),(41616,'events','itemid',30312),(41617,'history','itemid',30312),(41618,'history_log','itemid',30312),(41619,'history_str','itemid',30312),(41620,'history_text','itemid',30312),(41621,'history_uint','itemid',30312),(41622,'trends','itemid',30312),(41623,'trends_uint','itemid',30312),(41624,'events','itemid',30313),(41625,'history','itemid',30313),(41626,'history_log','itemid',30313),(41627,'history_str','itemid',30313),(41628,'history_text','itemid',30313),(41629,'history_uint','itemid',30313),(41630,'trends','itemid',30313),(41631,'trends_uint','itemid',30313),(41632,'events','itemid',30314),(41633,'history','itemid',30314),(41634,'history_log','itemid',30314),(41635,'history_str','itemid',30314),(41636,'history_text','itemid',30314),(41637,'history_uint','itemid',30314),(41638,'trends','itemid',30314),(41639,'trends_uint','itemid',30314),(41640,'events','itemid',30315),(41641,'history','itemid',30315),(41642,'history_log','itemid',30315),(41643,'history_str','itemid',30315),(41644,'history_text','itemid',30315),(41645,'history_uint','itemid',30315),(41646,'trends','itemid',30315),(41647,'trends_uint','itemid',30315),(41648,'events','itemid',30316),(41649,'history','itemid',30316),(41650,'history_log','itemid',30316),(41651,'history_str','itemid',30316),(41652,'history_text','itemid',30316),(41653,'history_uint','itemid',30316),(41654,'trends','itemid',30316),(41655,'trends_uint','itemid',30316),(41656,'events','itemid',30317),(41657,'history','itemid',30317),(41658,'history_log','itemid',30317),(41659,'history_str','itemid',30317),(41660,'history_text','itemid',30317),(41661,'history_uint','itemid',30317),(41662,'trends','itemid',30317),(41663,'trends_uint','itemid',30317),(41664,'events','itemid',30318),(41665,'history','itemid',30318),(41666,'history_log','itemid',30318),(41667,'history_str','itemid',30318),(41668,'history_text','itemid',30318),(41669,'history_uint','itemid',30318),(41670,'trends','itemid',30318),(41671,'trends_uint','itemid',30318),(41672,'events','itemid',30319),(41673,'history','itemid',30319),(41674,'history_log','itemid',30319),(41675,'history_str','itemid',30319),(41676,'history_text','itemid',30319),(41677,'history_uint','itemid',30319),(41678,'trends','itemid',30319),(41679,'trends_uint','itemid',30319),(41680,'events','itemid',30320),(41681,'history','itemid',30320),(41682,'history_log','itemid',30320),(41683,'history_str','itemid',30320),(41684,'history_text','itemid',30320),(41685,'history_uint','itemid',30320),(41686,'trends','itemid',30320),(41687,'trends_uint','itemid',30320),(41688,'events','itemid',30321),(41689,'history','itemid',30321),(41690,'history_log','itemid',30321),(41691,'history_str','itemid',30321),(41692,'history_text','itemid',30321),(41693,'history_uint','itemid',30321),(41694,'trends','itemid',30321),(41695,'trends_uint','itemid',30321),(41696,'events','itemid',30322),(41697,'history','itemid',30322),(41698,'history_log','itemid',30322),(41699,'history_str','itemid',30322),(41700,'history_text','itemid',30322),(41701,'history_uint','itemid',30322),(41702,'trends','itemid',30322),(41703,'trends_uint','itemid',30322),(41704,'events','itemid',30323),(41705,'history','itemid',30323),(41706,'history_log','itemid',30323),(41707,'history_str','itemid',30323),(41708,'history_text','itemid',30323),(41709,'history_uint','itemid',30323),(41710,'trends','itemid',30323),(41711,'trends_uint','itemid',30323),(41712,'events','itemid',30324),(41713,'history','itemid',30324),(41714,'history_log','itemid',30324),(41715,'history_str','itemid',30324),(41716,'history_text','itemid',30324),(41717,'history_uint','itemid',30324),(41718,'trends','itemid',30324),(41719,'trends_uint','itemid',30324),(41720,'events','itemid',30325),(41721,'history','itemid',30325),(41722,'history_log','itemid',30325),(41723,'history_str','itemid',30325),(41724,'history_text','itemid',30325),(41725,'history_uint','itemid',30325),(41726,'trends','itemid',30325),(41727,'trends_uint','itemid',30325),(41728,'events','itemid',30326),(41729,'history','itemid',30326),(41730,'history_log','itemid',30326),(41731,'history_str','itemid',30326),(41732,'history_text','itemid',30326),(41733,'history_uint','itemid',30326),(41734,'trends','itemid',30326),(41735,'trends_uint','itemid',30326),(41736,'events','itemid',30327),(41737,'history','itemid',30327),(41738,'history_log','itemid',30327),(41739,'history_str','itemid',30327),(41740,'history_text','itemid',30327),(41741,'history_uint','itemid',30327),(41742,'trends','itemid',30327),(41743,'trends_uint','itemid',30327),(41744,'events','itemid',30328),(41745,'history','itemid',30328),(41746,'history_log','itemid',30328),(41747,'history_str','itemid',30328),(41748,'history_text','itemid',30328),(41749,'history_uint','itemid',30328),(41750,'trends','itemid',30328),(41751,'trends_uint','itemid',30328),(41752,'events','itemid',30329),(41753,'history','itemid',30329),(41754,'history_log','itemid',30329),(41755,'history_str','itemid',30329),(41756,'history_text','itemid',30329),(41757,'history_uint','itemid',30329),(41758,'trends','itemid',30329),(41759,'trends_uint','itemid',30329),(41760,'events','itemid',30330),(41761,'history','itemid',30330),(41762,'history_log','itemid',30330),(41763,'history_str','itemid',30330),(41764,'history_text','itemid',30330),(41765,'history_uint','itemid',30330),(41766,'trends','itemid',30330),(41767,'trends_uint','itemid',30330),(41768,'events','itemid',30331),(41769,'history','itemid',30331),(41770,'history_log','itemid',30331),(41771,'history_str','itemid',30331),(41772,'history_text','itemid',30331),(41773,'history_uint','itemid',30331),(41774,'trends','itemid',30331),(41775,'trends_uint','itemid',30331),(41776,'events','itemid',30332),(41777,'history','itemid',30332),(41778,'history_log','itemid',30332),(41779,'history_str','itemid',30332),(41780,'history_text','itemid',30332),(41781,'history_uint','itemid',30332),(41782,'trends','itemid',30332),(41783,'trends_uint','itemid',30332),(41784,'events','itemid',30333),(41785,'history','itemid',30333),(41786,'history_log','itemid',30333),(41787,'history_str','itemid',30333),(41788,'history_text','itemid',30333),(41789,'history_uint','itemid',30333),(41790,'trends','itemid',30333),(41791,'trends_uint','itemid',30333),(41792,'events','itemid',30334),(41793,'history','itemid',30334),(41794,'history_log','itemid',30334),(41795,'history_str','itemid',30334),(41796,'history_text','itemid',30334),(41797,'history_uint','itemid',30334),(41798,'trends','itemid',30334),(41799,'trends_uint','itemid',30334),(41800,'events','itemid',30335),(41801,'history','itemid',30335),(41802,'history_log','itemid',30335),(41803,'history_str','itemid',30335),(41804,'history_text','itemid',30335),(41805,'history_uint','itemid',30335),(41806,'trends','itemid',30335),(41807,'trends_uint','itemid',30335),(41808,'events','itemid',30336),(41809,'history','itemid',30336),(41810,'history_log','itemid',30336),(41811,'history_str','itemid',30336),(41812,'history_text','itemid',30336),(41813,'history_uint','itemid',30336),(41814,'trends','itemid',30336),(41815,'trends_uint','itemid',30336),(41816,'events','itemid',31052),(41817,'history','itemid',31052),(41818,'history_log','itemid',31052),(41819,'history_str','itemid',31052),(41820,'history_text','itemid',31052),(41821,'history_uint','itemid',31052),(41822,'trends','itemid',31052),(41823,'trends_uint','itemid',31052),(41824,'events','itemid',31053),(41825,'history','itemid',31053),(41826,'history_log','itemid',31053),(41827,'history_str','itemid',31053),(41828,'history_text','itemid',31053),(41829,'history_uint','itemid',31053),(41830,'trends','itemid',31053),(41831,'trends_uint','itemid',31053),(41832,'events','itemid',31274),(41833,'history','itemid',31274),(41834,'history_log','itemid',31274),(41835,'history_str','itemid',31274),(41836,'history_text','itemid',31274),(41837,'history_uint','itemid',31274),(41838,'trends','itemid',31274),(41839,'trends_uint','itemid',31274),(41840,'events','itemid',31275),(41841,'history','itemid',31275),(41842,'history_log','itemid',31275),(41843,'history_str','itemid',31275),(41844,'history_text','itemid',31275),(41845,'history_uint','itemid',31275),(41846,'trends','itemid',31275),(41847,'trends_uint','itemid',31275),(41848,'events','itemid',31276),(41849,'history','itemid',31276),(41850,'history_log','itemid',31276),(41851,'history_str','itemid',31276),(41852,'history_text','itemid',31276),(41853,'history_uint','itemid',31276),(41854,'trends','itemid',31276),(41855,'trends_uint','itemid',31276),(41856,'events','itemid',31277),(41857,'history','itemid',31277),(41858,'history_log','itemid',31277),(41859,'history_str','itemid',31277),(41860,'history_text','itemid',31277),(41861,'history_uint','itemid',31277),(41862,'trends','itemid',31277),(41863,'trends_uint','itemid',31277),(41864,'events','itemid',31279),(41865,'history','itemid',31279),(41866,'history_log','itemid',31279),(41867,'history_str','itemid',31279),(41868,'history_text','itemid',31279),(41869,'history_uint','itemid',31279),(41870,'trends','itemid',31279),(41871,'trends_uint','itemid',31279),(41872,'events','itemid',31280),(41873,'history','itemid',31280),(41874,'history_log','itemid',31280),(41875,'history_str','itemid',31280),(41876,'history_text','itemid',31280),(41877,'history_uint','itemid',31280),(41878,'trends','itemid',31280),(41879,'trends_uint','itemid',31280),(41880,'events','itemid',31282),(41881,'history','itemid',31282),(41882,'history_log','itemid',31282),(41883,'history_str','itemid',31282),(41884,'history_text','itemid',31282),(41885,'history_uint','itemid',31282),(41886,'trends','itemid',31282),(41887,'trends_uint','itemid',31282),(41888,'events','itemid',31283),(41889,'history','itemid',31283),(41890,'history_log','itemid',31283),(41891,'history_str','itemid',31283),(41892,'history_text','itemid',31283),(41893,'history_uint','itemid',31283),(41894,'trends','itemid',31283),(41895,'trends_uint','itemid',31283),(41896,'events','itemid',31284),(41897,'history','itemid',31284),(41898,'history_log','itemid',31284),(41899,'history_str','itemid',31284),(41900,'history_text','itemid',31284),(41901,'history_uint','itemid',31284),(41902,'trends','itemid',31284),(41903,'trends_uint','itemid',31284),(41904,'events','itemid',31285),(41905,'history','itemid',31285),(41906,'history_log','itemid',31285),(41907,'history_str','itemid',31285),(41908,'history_text','itemid',31285),(41909,'history_uint','itemid',31285),(41910,'trends','itemid',31285),(41911,'trends_uint','itemid',31285),(41912,'events','itemid',31286),(41913,'history','itemid',31286),(41914,'history_log','itemid',31286),(41915,'history_str','itemid',31286),(41916,'history_text','itemid',31286),(41917,'history_uint','itemid',31286),(41918,'trends','itemid',31286),(41919,'trends_uint','itemid',31286),(41920,'events','itemid',31287),(41921,'history','itemid',31287),(41922,'history_log','itemid',31287),(41923,'history_str','itemid',31287),(41924,'history_text','itemid',31287),(41925,'history_uint','itemid',31287),(41926,'trends','itemid',31287),(41927,'trends_uint','itemid',31287),(41928,'events','itemid',31288),(41929,'history','itemid',31288),(41930,'history_log','itemid',31288),(41931,'history_str','itemid',31288),(41932,'history_text','itemid',31288),(41933,'history_uint','itemid',31288),(41934,'trends','itemid',31288),(41935,'trends_uint','itemid',31288),(41936,'events','itemid',31289),(41937,'history','itemid',31289),(41938,'history_log','itemid',31289),(41939,'history_str','itemid',31289),(41940,'history_text','itemid',31289),(41941,'history_uint','itemid',31289),(41942,'trends','itemid',31289),(41943,'trends_uint','itemid',31289),(41944,'events','itemid',31290),(41945,'history','itemid',31290),(41946,'history_log','itemid',31290),(41947,'history_str','itemid',31290),(41948,'history_text','itemid',31290),(41949,'history_uint','itemid',31290),(41950,'trends','itemid',31290),(41951,'trends_uint','itemid',31290),(41952,'events','itemid',31291),(41953,'history','itemid',31291),(41954,'history_log','itemid',31291),(41955,'history_str','itemid',31291),(41956,'history_text','itemid',31291),(41957,'history_uint','itemid',31291),(41958,'trends','itemid',31291),(41959,'trends_uint','itemid',31291),(41960,'events','itemid',31292),(41961,'history','itemid',31292),(41962,'history_log','itemid',31292),(41963,'history_str','itemid',31292),(41964,'history_text','itemid',31292),(41965,'history_uint','itemid',31292),(41966,'trends','itemid',31292),(41967,'trends_uint','itemid',31292),(41968,'events','itemid',31293),(41969,'history','itemid',31293),(41970,'history_log','itemid',31293),(41971,'history_str','itemid',31293),(41972,'history_text','itemid',31293),(41973,'history_uint','itemid',31293),(41974,'trends','itemid',31293),(41975,'trends_uint','itemid',31293),(41976,'events','itemid',31294),(41977,'history','itemid',31294),(41978,'history_log','itemid',31294),(41979,'history_str','itemid',31294),(41980,'history_text','itemid',31294),(41981,'history_uint','itemid',31294),(41982,'trends','itemid',31294),(41983,'trends_uint','itemid',31294),(41984,'events','itemid',31295),(41985,'history','itemid',31295),(41986,'history_log','itemid',31295),(41987,'history_str','itemid',31295),(41988,'history_text','itemid',31295),(41989,'history_uint','itemid',31295),(41990,'trends','itemid',31295),(41991,'trends_uint','itemid',31295),(41992,'events','itemid',31296),(41993,'history','itemid',31296),(41994,'history_log','itemid',31296),(41995,'history_str','itemid',31296),(41996,'history_text','itemid',31296),(41997,'history_uint','itemid',31296),(41998,'trends','itemid',31296),(41999,'trends_uint','itemid',31296),(42000,'events','itemid',31297),(42001,'history','itemid',31297),(42002,'history_log','itemid',31297),(42003,'history_str','itemid',31297),(42004,'history_text','itemid',31297),(42005,'history_uint','itemid',31297),(42006,'trends','itemid',31297),(42007,'trends_uint','itemid',31297),(42008,'events','itemid',31298),(42009,'history','itemid',31298),(42010,'history_log','itemid',31298),(42011,'history_str','itemid',31298),(42012,'history_text','itemid',31298),(42013,'history_uint','itemid',31298),(42014,'trends','itemid',31298),(42015,'trends_uint','itemid',31298),(42016,'events','itemid',31299),(42017,'history','itemid',31299),(42018,'history_log','itemid',31299),(42019,'history_str','itemid',31299),(42020,'history_text','itemid',31299),(42021,'history_uint','itemid',31299),(42022,'trends','itemid',31299),(42023,'trends_uint','itemid',31299),(42024,'events','itemid',31300),(42025,'history','itemid',31300),(42026,'history_log','itemid',31300),(42027,'history_str','itemid',31300),(42028,'history_text','itemid',31300),(42029,'history_uint','itemid',31300),(42030,'trends','itemid',31300),(42031,'trends_uint','itemid',31300),(42032,'events','itemid',31301),(42033,'history','itemid',31301),(42034,'history_log','itemid',31301),(42035,'history_str','itemid',31301),(42036,'history_text','itemid',31301),(42037,'history_uint','itemid',31301),(42038,'trends','itemid',31301),(42039,'trends_uint','itemid',31301),(42040,'events','itemid',31302),(42041,'history','itemid',31302),(42042,'history_log','itemid',31302),(42043,'history_str','itemid',31302),(42044,'history_text','itemid',31302),(42045,'history_uint','itemid',31302),(42046,'trends','itemid',31302),(42047,'trends_uint','itemid',31302),(42048,'events','itemid',31303),(42049,'history','itemid',31303),(42050,'history_log','itemid',31303),(42051,'history_str','itemid',31303),(42052,'history_text','itemid',31303),(42053,'history_uint','itemid',31303),(42054,'trends','itemid',31303),(42055,'trends_uint','itemid',31303),(42056,'events','itemid',31304),(42057,'history','itemid',31304),(42058,'history_log','itemid',31304),(42059,'history_str','itemid',31304),(42060,'history_text','itemid',31304),(42061,'history_uint','itemid',31304),(42062,'trends','itemid',31304),(42063,'trends_uint','itemid',31304),(42064,'events','itemid',31305),(42065,'history','itemid',31305),(42066,'history_log','itemid',31305),(42067,'history_str','itemid',31305),(42068,'history_text','itemid',31305),(42069,'history_uint','itemid',31305),(42070,'trends','itemid',31305),(42071,'trends_uint','itemid',31305),(42072,'events','itemid',31306),(42073,'history','itemid',31306),(42074,'history_log','itemid',31306),(42075,'history_str','itemid',31306),(42076,'history_text','itemid',31306),(42077,'history_uint','itemid',31306),(42078,'trends','itemid',31306),(42079,'trends_uint','itemid',31306),(42080,'events','itemid',31307),(42081,'history','itemid',31307),(42082,'history_log','itemid',31307),(42083,'history_str','itemid',31307),(42084,'history_text','itemid',31307),(42085,'history_uint','itemid',31307),(42086,'trends','itemid',31307),(42087,'trends_uint','itemid',31307),(42088,'events','itemid',31309),(42089,'history','itemid',31309),(42090,'history_log','itemid',31309),(42091,'history_str','itemid',31309),(42092,'history_text','itemid',31309),(42093,'history_uint','itemid',31309),(42094,'trends','itemid',31309),(42095,'trends_uint','itemid',31309),(42096,'events','itemid',31310),(42097,'history','itemid',31310),(42098,'history_log','itemid',31310),(42099,'history_str','itemid',31310),(42100,'history_text','itemid',31310),(42101,'history_uint','itemid',31310),(42102,'trends','itemid',31310),(42103,'trends_uint','itemid',31310),(42104,'events','itemid',31311),(42105,'history','itemid',31311),(42106,'history_log','itemid',31311),(42107,'history_str','itemid',31311),(42108,'history_text','itemid',31311),(42109,'history_uint','itemid',31311),(42110,'trends','itemid',31311),(42111,'trends_uint','itemid',31311),(42112,'events','itemid',31312),(42113,'history','itemid',31312),(42114,'history_log','itemid',31312),(42115,'history_str','itemid',31312),(42116,'history_text','itemid',31312),(42117,'history_uint','itemid',31312),(42118,'trends','itemid',31312),(42119,'trends_uint','itemid',31312),(42120,'events','itemid',31313),(42121,'history','itemid',31313),(42122,'history_log','itemid',31313),(42123,'history_str','itemid',31313),(42124,'history_text','itemid',31313),(42125,'history_uint','itemid',31313),(42126,'trends','itemid',31313),(42127,'trends_uint','itemid',31313),(42128,'events','itemid',31314),(42129,'history','itemid',31314),(42130,'history_log','itemid',31314),(42131,'history_str','itemid',31314),(42132,'history_text','itemid',31314),(42133,'history_uint','itemid',31314),(42134,'trends','itemid',31314),(42135,'trends_uint','itemid',31314),(42136,'events','itemid',31315),(42137,'history','itemid',31315),(42138,'history_log','itemid',31315),(42139,'history_str','itemid',31315),(42140,'history_text','itemid',31315),(42141,'history_uint','itemid',31315),(42142,'trends','itemid',31315),(42143,'trends_uint','itemid',31315),(42144,'events','itemid',31316),(42145,'history','itemid',31316),(42146,'history_log','itemid',31316),(42147,'history_str','itemid',31316),(42148,'history_text','itemid',31316),(42149,'history_uint','itemid',31316),(42150,'trends','itemid',31316),(42151,'trends_uint','itemid',31316),(42152,'events','itemid',31317),(42153,'history','itemid',31317),(42154,'history_log','itemid',31317),(42155,'history_str','itemid',31317),(42156,'history_text','itemid',31317),(42157,'history_uint','itemid',31317),(42158,'trends','itemid',31317),(42159,'trends_uint','itemid',31317),(42160,'events','itemid',31318),(42161,'history','itemid',31318),(42162,'history_log','itemid',31318),(42163,'history_str','itemid',31318),(42164,'history_text','itemid',31318),(42165,'history_uint','itemid',31318),(42166,'trends','itemid',31318),(42167,'trends_uint','itemid',31318),(42168,'events','itemid',31319),(42169,'history','itemid',31319),(42170,'history_log','itemid',31319),(42171,'history_str','itemid',31319),(42172,'history_text','itemid',31319),(42173,'history_uint','itemid',31319),(42174,'trends','itemid',31319),(42175,'trends_uint','itemid',31319),(42176,'events','itemid',31320),(42177,'history','itemid',31320),(42178,'history_log','itemid',31320),(42179,'history_str','itemid',31320),(42180,'history_text','itemid',31320),(42181,'history_uint','itemid',31320),(42182,'trends','itemid',31320),(42183,'trends_uint','itemid',31320),(42184,'events','itemid',31321),(42185,'history','itemid',31321),(42186,'history_log','itemid',31321),(42187,'history_str','itemid',31321),(42188,'history_text','itemid',31321),(42189,'history_uint','itemid',31321),(42190,'trends','itemid',31321),(42191,'trends_uint','itemid',31321),(42192,'events','itemid',31322),(42193,'history','itemid',31322),(42194,'history_log','itemid',31322),(42195,'history_str','itemid',31322),(42196,'history_text','itemid',31322),(42197,'history_uint','itemid',31322),(42198,'trends','itemid',31322),(42199,'trends_uint','itemid',31322),(42200,'events','itemid',31323),(42201,'history','itemid',31323),(42202,'history_log','itemid',31323),(42203,'history_str','itemid',31323),(42204,'history_text','itemid',31323),(42205,'history_uint','itemid',31323),(42206,'trends','itemid',31323),(42207,'trends_uint','itemid',31323),(42208,'events','itemid',31324),(42209,'history','itemid',31324),(42210,'history_log','itemid',31324),(42211,'history_str','itemid',31324),(42212,'history_text','itemid',31324),(42213,'history_uint','itemid',31324),(42214,'trends','itemid',31324),(42215,'trends_uint','itemid',31324),(42216,'events','itemid',31325),(42217,'history','itemid',31325),(42218,'history_log','itemid',31325),(42219,'history_str','itemid',31325),(42220,'history_text','itemid',31325),(42221,'history_uint','itemid',31325),(42222,'trends','itemid',31325),(42223,'trends_uint','itemid',31325),(42224,'events','itemid',31326),(42225,'history','itemid',31326),(42226,'history_log','itemid',31326),(42227,'history_str','itemid',31326),(42228,'history_text','itemid',31326),(42229,'history_uint','itemid',31326),(42230,'trends','itemid',31326),(42231,'trends_uint','itemid',31326),(42232,'events','itemid',31327),(42233,'history','itemid',31327),(42234,'history_log','itemid',31327),(42235,'history_str','itemid',31327),(42236,'history_text','itemid',31327),(42237,'history_uint','itemid',31327),(42238,'trends','itemid',31327),(42239,'trends_uint','itemid',31327),(42240,'events','itemid',31328),(42241,'history','itemid',31328),(42242,'history_log','itemid',31328),(42243,'history_str','itemid',31328),(42244,'history_text','itemid',31328),(42245,'history_uint','itemid',31328),(42246,'trends','itemid',31328),(42247,'trends_uint','itemid',31328),(42248,'events','itemid',31329),(42249,'history','itemid',31329),(42250,'history_log','itemid',31329),(42251,'history_str','itemid',31329),(42252,'history_text','itemid',31329),(42253,'history_uint','itemid',31329),(42254,'trends','itemid',31329),(42255,'trends_uint','itemid',31329),(42256,'events','itemid',31330),(42257,'history','itemid',31330),(42258,'history_log','itemid',31330),(42259,'history_str','itemid',31330),(42260,'history_text','itemid',31330),(42261,'history_uint','itemid',31330),(42262,'trends','itemid',31330),(42263,'trends_uint','itemid',31330),(42264,'events','itemid',31331),(42265,'history','itemid',31331),(42266,'history_log','itemid',31331),(42267,'history_str','itemid',31331),(42268,'history_text','itemid',31331),(42269,'history_uint','itemid',31331),(42270,'trends','itemid',31331),(42271,'trends_uint','itemid',31331),(42272,'events','itemid',31332),(42273,'history','itemid',31332),(42274,'history_log','itemid',31332),(42275,'history_str','itemid',31332),(42276,'history_text','itemid',31332),(42277,'history_uint','itemid',31332),(42278,'trends','itemid',31332),(42279,'trends_uint','itemid',31332),(42280,'events','itemid',31333),(42281,'history','itemid',31333),(42282,'history_log','itemid',31333),(42283,'history_str','itemid',31333),(42284,'history_text','itemid',31333),(42285,'history_uint','itemid',31333),(42286,'trends','itemid',31333),(42287,'trends_uint','itemid',31333),(42288,'events','itemid',31419),(42289,'history','itemid',31419),(42290,'history_log','itemid',31419),(42291,'history_str','itemid',31419),(42292,'history_text','itemid',31419),(42293,'history_uint','itemid',31419),(42294,'trends','itemid',31419),(42295,'trends_uint','itemid',31419),(42296,'events','itemid',31420),(42297,'history','itemid',31420),(42298,'history_log','itemid',31420),(42299,'history_str','itemid',31420),(42300,'history_text','itemid',31420),(42301,'history_uint','itemid',31420),(42302,'trends','itemid',31420),(42303,'trends_uint','itemid',31420),(42304,'events','itemid',31421),(42305,'history','itemid',31421),(42306,'history_log','itemid',31421),(42307,'history_str','itemid',31421),(42308,'history_text','itemid',31421),(42309,'history_uint','itemid',31421),(42310,'trends','itemid',31421),(42311,'trends_uint','itemid',31421),(42312,'events','itemid',31422),(42313,'history','itemid',31422),(42314,'history_log','itemid',31422),(42315,'history_str','itemid',31422),(42316,'history_text','itemid',31422),(42317,'history_uint','itemid',31422),(42318,'trends','itemid',31422),(42319,'trends_uint','itemid',31422),(42320,'events','itemid',31427),(42321,'history','itemid',31427),(42322,'history_log','itemid',31427),(42323,'history_str','itemid',31427),(42324,'history_text','itemid',31427),(42325,'history_uint','itemid',31427),(42326,'trends','itemid',31427),(42327,'trends_uint','itemid',31427),(42328,'events','itemid',31612),(42329,'history','itemid',31612),(42330,'history_log','itemid',31612),(42331,'history_str','itemid',31612),(42332,'history_text','itemid',31612),(42333,'history_uint','itemid',31612),(42334,'trends','itemid',31612),(42335,'trends_uint','itemid',31612),(42336,'events','itemid',31613),(42337,'history','itemid',31613),(42338,'history_log','itemid',31613),(42339,'history_str','itemid',31613),(42340,'history_text','itemid',31613),(42341,'history_uint','itemid',31613),(42342,'trends','itemid',31613),(42343,'trends_uint','itemid',31613),(42344,'events','itemid',31614),(42345,'history','itemid',31614),(42346,'history_log','itemid',31614),(42347,'history_str','itemid',31614),(42348,'history_text','itemid',31614),(42349,'history_uint','itemid',31614),(42350,'trends','itemid',31614),(42351,'trends_uint','itemid',31614),(42352,'events','itemid',31948),(42353,'history','itemid',31948),(42354,'history_log','itemid',31948),(42355,'history_str','itemid',31948),(42356,'history_text','itemid',31948),(42357,'history_uint','itemid',31948),(42358,'trends','itemid',31948),(42359,'trends_uint','itemid',31948),(42360,'events','itemid',31949),(42361,'history','itemid',31949),(42362,'history_log','itemid',31949),(42363,'history_str','itemid',31949),(42364,'history_text','itemid',31949),(42365,'history_uint','itemid',31949),(42366,'trends','itemid',31949),(42367,'trends_uint','itemid',31949),(42368,'events','itemid',31950),(42369,'history','itemid',31950),(42370,'history_log','itemid',31950),(42371,'history_str','itemid',31950),(42372,'history_text','itemid',31950),(42373,'history_uint','itemid',31950),(42374,'trends','itemid',31950),(42375,'trends_uint','itemid',31950),(42376,'events','itemid',31951),(42377,'history','itemid',31951),(42378,'history_log','itemid',31951),(42379,'history_str','itemid',31951),(42380,'history_text','itemid',31951),(42381,'history_uint','itemid',31951),(42382,'trends','itemid',31951),(42383,'trends_uint','itemid',31951),(42384,'events','itemid',31952),(42385,'history','itemid',31952),(42386,'history_log','itemid',31952),(42387,'history_str','itemid',31952),(42388,'history_text','itemid',31952),(42389,'history_uint','itemid',31952),(42390,'trends','itemid',31952),(42391,'trends_uint','itemid',31952),(42392,'events','itemid',31953),(42393,'history','itemid',31953),(42394,'history_log','itemid',31953),(42395,'history_str','itemid',31953),(42396,'history_text','itemid',31953),(42397,'history_uint','itemid',31953),(42398,'trends','itemid',31953),(42399,'trends_uint','itemid',31953),(42400,'events','itemid',31954),(42401,'history','itemid',31954),(42402,'history_log','itemid',31954),(42403,'history_str','itemid',31954),(42404,'history_text','itemid',31954),(42405,'history_uint','itemid',31954),(42406,'trends','itemid',31954),(42407,'trends_uint','itemid',31954),(42408,'events','itemid',31955),(42409,'history','itemid',31955),(42410,'history_log','itemid',31955),(42411,'history_str','itemid',31955),(42412,'history_text','itemid',31955),(42413,'history_uint','itemid',31955),(42414,'trends','itemid',31955),(42415,'trends_uint','itemid',31955),(42416,'events','itemid',31956),(42417,'history','itemid',31956),(42418,'history_log','itemid',31956),(42419,'history_str','itemid',31956),(42420,'history_text','itemid',31956),(42421,'history_uint','itemid',31956),(42422,'trends','itemid',31956),(42423,'trends_uint','itemid',31956),(42424,'events','itemid',31957),(42425,'history','itemid',31957),(42426,'history_log','itemid',31957),(42427,'history_str','itemid',31957),(42428,'history_text','itemid',31957),(42429,'history_uint','itemid',31957),(42430,'trends','itemid',31957),(42431,'trends_uint','itemid',31957),(42432,'events','itemid',31958),(42433,'history','itemid',31958),(42434,'history_log','itemid',31958),(42435,'history_str','itemid',31958),(42436,'history_text','itemid',31958),(42437,'history_uint','itemid',31958),(42438,'trends','itemid',31958),(42439,'trends_uint','itemid',31958),(42440,'events','itemid',31959),(42441,'history','itemid',31959),(42442,'history_log','itemid',31959),(42443,'history_str','itemid',31959),(42444,'history_text','itemid',31959),(42445,'history_uint','itemid',31959),(42446,'trends','itemid',31959),(42447,'trends_uint','itemid',31959),(42448,'events','itemid',31960),(42449,'history','itemid',31960),(42450,'history_log','itemid',31960),(42451,'history_str','itemid',31960),(42452,'history_text','itemid',31960),(42453,'history_uint','itemid',31960),(42454,'trends','itemid',31960),(42455,'trends_uint','itemid',31960),(42456,'events','itemid',31961),(42457,'history','itemid',31961),(42458,'history_log','itemid',31961),(42459,'history_str','itemid',31961),(42460,'history_text','itemid',31961),(42461,'history_uint','itemid',31961),(42462,'trends','itemid',31961),(42463,'trends_uint','itemid',31961),(42464,'events','itemid',31962),(42465,'history','itemid',31962),(42466,'history_log','itemid',31962),(42467,'history_str','itemid',31962),(42468,'history_text','itemid',31962),(42469,'history_uint','itemid',31962),(42470,'trends','itemid',31962),(42471,'trends_uint','itemid',31962),(42472,'events','itemid',31963),(42473,'history','itemid',31963),(42474,'history_log','itemid',31963),(42475,'history_str','itemid',31963),(42476,'history_text','itemid',31963),(42477,'history_uint','itemid',31963),(42478,'trends','itemid',31963),(42479,'trends_uint','itemid',31963),(42480,'events','itemid',31964),(42481,'history','itemid',31964),(42482,'history_log','itemid',31964),(42483,'history_str','itemid',31964),(42484,'history_text','itemid',31964),(42485,'history_uint','itemid',31964),(42486,'trends','itemid',31964),(42487,'trends_uint','itemid',31964),(42488,'events','itemid',31965),(42489,'history','itemid',31965),(42490,'history_log','itemid',31965),(42491,'history_str','itemid',31965),(42492,'history_text','itemid',31965),(42493,'history_uint','itemid',31965),(42494,'trends','itemid',31965),(42495,'trends_uint','itemid',31965),(42496,'events','itemid',31966),(42497,'history','itemid',31966),(42498,'history_log','itemid',31966),(42499,'history_str','itemid',31966),(42500,'history_text','itemid',31966),(42501,'history_uint','itemid',31966),(42502,'trends','itemid',31966),(42503,'trends_uint','itemid',31966),(42504,'events','itemid',31967),(42505,'history','itemid',31967),(42506,'history_log','itemid',31967),(42507,'history_str','itemid',31967),(42508,'history_text','itemid',31967),(42509,'history_uint','itemid',31967),(42510,'trends','itemid',31967),(42511,'trends_uint','itemid',31967),(42512,'events','itemid',31968),(42513,'history','itemid',31968),(42514,'history_log','itemid',31968),(42515,'history_str','itemid',31968),(42516,'history_text','itemid',31968),(42517,'history_uint','itemid',31968),(42518,'trends','itemid',31968),(42519,'trends_uint','itemid',31968),(42520,'events','itemid',31969),(42521,'history','itemid',31969),(42522,'history_log','itemid',31969),(42523,'history_str','itemid',31969),(42524,'history_text','itemid',31969),(42525,'history_uint','itemid',31969),(42526,'trends','itemid',31969),(42527,'trends_uint','itemid',31969),(42528,'events','itemid',31970),(42529,'history','itemid',31970),(42530,'history_log','itemid',31970),(42531,'history_str','itemid',31970),(42532,'history_text','itemid',31970),(42533,'history_uint','itemid',31970),(42534,'trends','itemid',31970),(42535,'trends_uint','itemid',31970),(42536,'events','itemid',31971),(42537,'history','itemid',31971),(42538,'history_log','itemid',31971),(42539,'history_str','itemid',31971),(42540,'history_text','itemid',31971),(42541,'history_uint','itemid',31971),(42542,'trends','itemid',31971),(42543,'trends_uint','itemid',31971),(42544,'events','itemid',31972),(42545,'history','itemid',31972),(42546,'history_log','itemid',31972),(42547,'history_str','itemid',31972),(42548,'history_text','itemid',31972),(42549,'history_uint','itemid',31972),(42550,'trends','itemid',31972),(42551,'trends_uint','itemid',31972),(42552,'events','itemid',31973),(42553,'history','itemid',31973),(42554,'history_log','itemid',31973),(42555,'history_str','itemid',31973),(42556,'history_text','itemid',31973),(42557,'history_uint','itemid',31973),(42558,'trends','itemid',31973),(42559,'trends_uint','itemid',31973),(42560,'events','itemid',31974),(42561,'history','itemid',31974),(42562,'history_log','itemid',31974),(42563,'history_str','itemid',31974),(42564,'history_text','itemid',31974),(42565,'history_uint','itemid',31974),(42566,'trends','itemid',31974),(42567,'trends_uint','itemid',31974),(42568,'events','itemid',32002),(42569,'history','itemid',32002),(42570,'history_log','itemid',32002),(42571,'history_str','itemid',32002),(42572,'history_text','itemid',32002),(42573,'history_uint','itemid',32002),(42574,'trends','itemid',32002),(42575,'trends_uint','itemid',32002),(42576,'events','itemid',32239),(42577,'history','itemid',32239),(42578,'history_log','itemid',32239),(42579,'history_str','itemid',32239),(42580,'history_text','itemid',32239),(42581,'history_uint','itemid',32239),(42582,'trends','itemid',32239),(42583,'trends_uint','itemid',32239),(42584,'events','itemid',32240),(42585,'history','itemid',32240),(42586,'history_log','itemid',32240),(42587,'history_str','itemid',32240),(42588,'history_text','itemid',32240),(42589,'history_uint','itemid',32240),(42590,'trends','itemid',32240),(42591,'trends_uint','itemid',32240),(42592,'events','itemid',32241),(42593,'history','itemid',32241),(42594,'history_log','itemid',32241),(42595,'history_str','itemid',32241),(42596,'history_text','itemid',32241),(42597,'history_uint','itemid',32241),(42598,'trends','itemid',32241),(42599,'trends_uint','itemid',32241),(42600,'events','itemid',32242),(42601,'history','itemid',32242),(42602,'history_log','itemid',32242),(42603,'history_str','itemid',32242),(42604,'history_text','itemid',32242),(42605,'history_uint','itemid',32242),(42606,'trends','itemid',32242),(42607,'trends_uint','itemid',32242),(42608,'events','itemid',32243),(42609,'history','itemid',32243),(42610,'history_log','itemid',32243),(42611,'history_str','itemid',32243),(42612,'history_text','itemid',32243),(42613,'history_uint','itemid',32243),(42614,'trends','itemid',32243),(42615,'trends_uint','itemid',32243),(42616,'events','itemid',32244),(42617,'history','itemid',32244),(42618,'history_log','itemid',32244),(42619,'history_str','itemid',32244),(42620,'history_text','itemid',32244),(42621,'history_uint','itemid',32244),(42622,'trends','itemid',32244),(42623,'trends_uint','itemid',32244),(42624,'events','itemid',32245),(42625,'history','itemid',32245),(42626,'history_log','itemid',32245),(42627,'history_str','itemid',32245),(42628,'history_text','itemid',32245),(42629,'history_uint','itemid',32245),(42630,'trends','itemid',32245),(42631,'trends_uint','itemid',32245),(42632,'events','itemid',32246),(42633,'history','itemid',32246),(42634,'history_log','itemid',32246),(42635,'history_str','itemid',32246),(42636,'history_text','itemid',32246),(42637,'history_uint','itemid',32246),(42638,'trends','itemid',32246),(42639,'trends_uint','itemid',32246),(42640,'events','itemid',32247),(42641,'history','itemid',32247),(42642,'history_log','itemid',32247),(42643,'history_str','itemid',32247),(42644,'history_text','itemid',32247),(42645,'history_uint','itemid',32247),(42646,'trends','itemid',32247),(42647,'trends_uint','itemid',32247),(42648,'events','itemid',32248),(42649,'history','itemid',32248),(42650,'history_log','itemid',32248),(42651,'history_str','itemid',32248),(42652,'history_text','itemid',32248),(42653,'history_uint','itemid',32248),(42654,'trends','itemid',32248),(42655,'trends_uint','itemid',32248),(42656,'events','itemid',32249),(42657,'history','itemid',32249),(42658,'history_log','itemid',32249),(42659,'history_str','itemid',32249),(42660,'history_text','itemid',32249),(42661,'history_uint','itemid',32249),(42662,'trends','itemid',32249),(42663,'trends_uint','itemid',32249),(42664,'events','itemid',32250),(42665,'history','itemid',32250),(42666,'history_log','itemid',32250),(42667,'history_str','itemid',32250),(42668,'history_text','itemid',32250),(42669,'history_uint','itemid',32250),(42670,'trends','itemid',32250),(42671,'trends_uint','itemid',32250),(42672,'events','itemid',32251),(42673,'history','itemid',32251),(42674,'history_log','itemid',32251),(42675,'history_str','itemid',32251),(42676,'history_text','itemid',32251),(42677,'history_uint','itemid',32251),(42678,'trends','itemid',32251),(42679,'trends_uint','itemid',32251),(42680,'events','itemid',32252),(42681,'history','itemid',32252),(42682,'history_log','itemid',32252),(42683,'history_str','itemid',32252),(42684,'history_text','itemid',32252),(42685,'history_uint','itemid',32252),(42686,'trends','itemid',32252),(42687,'trends_uint','itemid',32252),(42688,'events','itemid',32253),(42689,'history','itemid',32253),(42690,'history_log','itemid',32253),(42691,'history_str','itemid',32253),(42692,'history_text','itemid',32253),(42693,'history_uint','itemid',32253),(42694,'trends','itemid',32253),(42695,'trends_uint','itemid',32253),(42696,'events','itemid',32254),(42697,'history','itemid',32254),(42698,'history_log','itemid',32254),(42699,'history_str','itemid',32254),(42700,'history_text','itemid',32254),(42701,'history_uint','itemid',32254),(42702,'trends','itemid',32254),(42703,'trends_uint','itemid',32254),(42704,'events','itemid',32255),(42705,'history','itemid',32255),(42706,'history_log','itemid',32255),(42707,'history_str','itemid',32255),(42708,'history_text','itemid',32255),(42709,'history_uint','itemid',32255),(42710,'trends','itemid',32255),(42711,'trends_uint','itemid',32255),(42712,'events','itemid',32256),(42713,'history','itemid',32256),(42714,'history_log','itemid',32256),(42715,'history_str','itemid',32256),(42716,'history_text','itemid',32256),(42717,'history_uint','itemid',32256),(42718,'trends','itemid',32256),(42719,'trends_uint','itemid',32256),(42720,'events','itemid',32257),(42721,'history','itemid',32257),(42722,'history_log','itemid',32257),(42723,'history_str','itemid',32257),(42724,'history_text','itemid',32257),(42725,'history_uint','itemid',32257),(42726,'trends','itemid',32257),(42727,'trends_uint','itemid',32257),(42728,'events','itemid',32258),(42729,'history','itemid',32258),(42730,'history_log','itemid',32258),(42731,'history_str','itemid',32258),(42732,'history_text','itemid',32258),(42733,'history_uint','itemid',32258),(42734,'trends','itemid',32258),(42735,'trends_uint','itemid',32258),(42736,'events','itemid',32259),(42737,'history','itemid',32259),(42738,'history_log','itemid',32259),(42739,'history_str','itemid',32259),(42740,'history_text','itemid',32259),(42741,'history_uint','itemid',32259),(42742,'trends','itemid',32259),(42743,'trends_uint','itemid',32259),(42744,'events','itemid',32260),(42745,'history','itemid',32260),(42746,'history_log','itemid',32260),(42747,'history_str','itemid',32260),(42748,'history_text','itemid',32260),(42749,'history_uint','itemid',32260),(42750,'trends','itemid',32260),(42751,'trends_uint','itemid',32260),(42752,'events','itemid',32261),(42753,'history','itemid',32261),(42754,'history_log','itemid',32261),(42755,'history_str','itemid',32261),(42756,'history_text','itemid',32261),(42757,'history_uint','itemid',32261),(42758,'trends','itemid',32261),(42759,'trends_uint','itemid',32261),(42760,'events','itemid',32262),(42761,'history','itemid',32262),(42762,'history_log','itemid',32262),(42763,'history_str','itemid',32262),(42764,'history_text','itemid',32262),(42765,'history_uint','itemid',32262),(42766,'trends','itemid',32262),(42767,'trends_uint','itemid',32262),(42768,'events','itemid',32263),(42769,'history','itemid',32263),(42770,'history_log','itemid',32263),(42771,'history_str','itemid',32263),(42772,'history_text','itemid',32263),(42773,'history_uint','itemid',32263),(42774,'trends','itemid',32263),(42775,'trends_uint','itemid',32263),(42776,'events','itemid',32264),(42777,'history','itemid',32264),(42778,'history_log','itemid',32264),(42779,'history_str','itemid',32264),(42780,'history_text','itemid',32264),(42781,'history_uint','itemid',32264),(42782,'trends','itemid',32264),(42783,'trends_uint','itemid',32264),(42784,'events','itemid',32265),(42785,'history','itemid',32265),(42786,'history_log','itemid',32265),(42787,'history_str','itemid',32265),(42788,'history_text','itemid',32265),(42789,'history_uint','itemid',32265),(42790,'trends','itemid',32265),(42791,'trends_uint','itemid',32265),(42792,'events','itemid',32266),(42793,'history','itemid',32266),(42794,'history_log','itemid',32266),(42795,'history_str','itemid',32266),(42796,'history_text','itemid',32266),(42797,'history_uint','itemid',32266),(42798,'trends','itemid',32266),(42799,'trends_uint','itemid',32266),(42800,'events','itemid',32267),(42801,'history','itemid',32267),(42802,'history_log','itemid',32267),(42803,'history_str','itemid',32267),(42804,'history_text','itemid',32267),(42805,'history_uint','itemid',32267),(42806,'trends','itemid',32267),(42807,'trends_uint','itemid',32267),(42808,'events','itemid',32268),(42809,'history','itemid',32268),(42810,'history_log','itemid',32268),(42811,'history_str','itemid',32268),(42812,'history_text','itemid',32268),(42813,'history_uint','itemid',32268),(42814,'trends','itemid',32268),(42815,'trends_uint','itemid',32268),(42816,'events','itemid',32269),(42817,'history','itemid',32269),(42818,'history_log','itemid',32269),(42819,'history_str','itemid',32269),(42820,'history_text','itemid',32269),(42821,'history_uint','itemid',32269),(42822,'trends','itemid',32269),(42823,'trends_uint','itemid',32269),(42824,'events','itemid',32270),(42825,'history','itemid',32270),(42826,'history_log','itemid',32270),(42827,'history_str','itemid',32270),(42828,'history_text','itemid',32270),(42829,'history_uint','itemid',32270),(42830,'trends','itemid',32270),(42831,'trends_uint','itemid',32270),(42832,'events','itemid',32271),(42833,'history','itemid',32271),(42834,'history_log','itemid',32271),(42835,'history_str','itemid',32271),(42836,'history_text','itemid',32271),(42837,'history_uint','itemid',32271),(42838,'trends','itemid',32271),(42839,'trends_uint','itemid',32271),(42840,'events','itemid',32272),(42841,'history','itemid',32272),(42842,'history_log','itemid',32272),(42843,'history_str','itemid',32272),(42844,'history_text','itemid',32272),(42845,'history_uint','itemid',32272),(42846,'trends','itemid',32272),(42847,'trends_uint','itemid',32272),(42848,'events','itemid',32273),(42849,'history','itemid',32273),(42850,'history_log','itemid',32273),(42851,'history_str','itemid',32273),(42852,'history_text','itemid',32273),(42853,'history_uint','itemid',32273),(42854,'trends','itemid',32273),(42855,'trends_uint','itemid',32273),(42856,'events','itemid',32274),(42857,'history','itemid',32274),(42858,'history_log','itemid',32274),(42859,'history_str','itemid',32274),(42860,'history_text','itemid',32274),(42861,'history_uint','itemid',32274),(42862,'trends','itemid',32274),(42863,'trends_uint','itemid',32274),(42864,'events','itemid',32275),(42865,'history','itemid',32275),(42866,'history_log','itemid',32275),(42867,'history_str','itemid',32275),(42868,'history_text','itemid',32275),(42869,'history_uint','itemid',32275),(42870,'trends','itemid',32275),(42871,'trends_uint','itemid',32275),(42872,'events','itemid',32276),(42873,'history','itemid',32276),(42874,'history_log','itemid',32276),(42875,'history_str','itemid',32276),(42876,'history_text','itemid',32276),(42877,'history_uint','itemid',32276),(42878,'trends','itemid',32276),(42879,'trends_uint','itemid',32276),(42880,'events','itemid',32277),(42881,'history','itemid',32277),(42882,'history_log','itemid',32277),(42883,'history_str','itemid',32277),(42884,'history_text','itemid',32277),(42885,'history_uint','itemid',32277),(42886,'trends','itemid',32277),(42887,'trends_uint','itemid',32277),(42888,'events','itemid',32278),(42889,'history','itemid',32278),(42890,'history_log','itemid',32278),(42891,'history_str','itemid',32278),(42892,'history_text','itemid',32278),(42893,'history_uint','itemid',32278),(42894,'trends','itemid',32278),(42895,'trends_uint','itemid',32278),(42896,'events','itemid',32279),(42897,'history','itemid',32279),(42898,'history_log','itemid',32279),(42899,'history_str','itemid',32279),(42900,'history_text','itemid',32279),(42901,'history_uint','itemid',32279),(42902,'trends','itemid',32279),(42903,'trends_uint','itemid',32279),(42904,'events','itemid',32280),(42905,'history','itemid',32280),(42906,'history_log','itemid',32280),(42907,'history_str','itemid',32280),(42908,'history_text','itemid',32280),(42909,'history_uint','itemid',32280),(42910,'trends','itemid',32280),(42911,'trends_uint','itemid',32280),(42912,'events','itemid',32281),(42913,'history','itemid',32281),(42914,'history_log','itemid',32281),(42915,'history_str','itemid',32281),(42916,'history_text','itemid',32281),(42917,'history_uint','itemid',32281),(42918,'trends','itemid',32281),(42919,'trends_uint','itemid',32281),(42920,'events','itemid',32282),(42921,'history','itemid',32282),(42922,'history_log','itemid',32282),(42923,'history_str','itemid',32282),(42924,'history_text','itemid',32282),(42925,'history_uint','itemid',32282),(42926,'trends','itemid',32282),(42927,'trends_uint','itemid',32282),(42928,'events','itemid',32283),(42929,'history','itemid',32283),(42930,'history_log','itemid',32283),(42931,'history_str','itemid',32283),(42932,'history_text','itemid',32283),(42933,'history_uint','itemid',32283),(42934,'trends','itemid',32283),(42935,'trends_uint','itemid',32283),(42936,'events','itemid',32284),(42937,'history','itemid',32284),(42938,'history_log','itemid',32284),(42939,'history_str','itemid',32284),(42940,'history_text','itemid',32284),(42941,'history_uint','itemid',32284),(42942,'trends','itemid',32284),(42943,'trends_uint','itemid',32284),(42944,'events','itemid',32285),(42945,'history','itemid',32285),(42946,'history_log','itemid',32285),(42947,'history_str','itemid',32285),(42948,'history_text','itemid',32285),(42949,'history_uint','itemid',32285),(42950,'trends','itemid',32285),(42951,'trends_uint','itemid',32285),(42952,'events','itemid',32286),(42953,'history','itemid',32286),(42954,'history_log','itemid',32286),(42955,'history_str','itemid',32286),(42956,'history_text','itemid',32286),(42957,'history_uint','itemid',32286),(42958,'trends','itemid',32286),(42959,'trends_uint','itemid',32286),(42960,'events','itemid',32287),(42961,'history','itemid',32287),(42962,'history_log','itemid',32287),(42963,'history_str','itemid',32287),(42964,'history_text','itemid',32287),(42965,'history_uint','itemid',32287),(42966,'trends','itemid',32287),(42967,'trends_uint','itemid',32287),(42968,'events','itemid',32288),(42969,'history','itemid',32288),(42970,'history_log','itemid',32288),(42971,'history_str','itemid',32288),(42972,'history_text','itemid',32288),(42973,'history_uint','itemid',32288),(42974,'trends','itemid',32288),(42975,'trends_uint','itemid',32288),(42976,'events','itemid',32289),(42977,'history','itemid',32289),(42978,'history_log','itemid',32289),(42979,'history_str','itemid',32289),(42980,'history_text','itemid',32289),(42981,'history_uint','itemid',32289),(42982,'trends','itemid',32289),(42983,'trends_uint','itemid',32289),(42984,'events','itemid',32290),(42985,'history','itemid',32290),(42986,'history_log','itemid',32290),(42987,'history_str','itemid',32290),(42988,'history_text','itemid',32290),(42989,'history_uint','itemid',32290),(42990,'trends','itemid',32290),(42991,'trends_uint','itemid',32290),(42992,'events','itemid',32291),(42993,'history','itemid',32291),(42994,'history_log','itemid',32291),(42995,'history_str','itemid',32291),(42996,'history_text','itemid',32291),(42997,'history_uint','itemid',32291),(42998,'trends','itemid',32291),(42999,'trends_uint','itemid',32291),(43000,'events','itemid',32292),(43001,'history','itemid',32292),(43002,'history_log','itemid',32292),(43003,'history_str','itemid',32292),(43004,'history_text','itemid',32292),(43005,'history_uint','itemid',32292),(43006,'trends','itemid',32292),(43007,'trends_uint','itemid',32292),(43008,'events','itemid',32890),(43009,'history','itemid',32890),(43010,'history_log','itemid',32890),(43011,'history_str','itemid',32890),(43012,'history_text','itemid',32890),(43013,'history_uint','itemid',32890),(43014,'trends','itemid',32890),(43015,'trends_uint','itemid',32890),(43016,'events','itemid',32891),(43017,'history','itemid',32891),(43018,'history_log','itemid',32891),(43019,'history_str','itemid',32891),(43020,'history_text','itemid',32891),(43021,'history_uint','itemid',32891),(43022,'trends','itemid',32891),(43023,'trends_uint','itemid',32891),(43024,'events','itemid',32892),(43025,'history','itemid',32892),(43026,'history_log','itemid',32892),(43027,'history_str','itemid',32892),(43028,'history_text','itemid',32892),(43029,'history_uint','itemid',32892),(43030,'trends','itemid',32892),(43031,'trends_uint','itemid',32892),(43032,'events','itemid',32893),(43033,'history','itemid',32893),(43034,'history_log','itemid',32893),(43035,'history_str','itemid',32893),(43036,'history_text','itemid',32893),(43037,'history_uint','itemid',32893),(43038,'trends','itemid',32893),(43039,'trends_uint','itemid',32893),(43040,'events','itemid',32894),(43041,'history','itemid',32894),(43042,'history_log','itemid',32894),(43043,'history_str','itemid',32894),(43044,'history_text','itemid',32894),(43045,'history_uint','itemid',32894),(43046,'trends','itemid',32894),(43047,'trends_uint','itemid',32894),(43048,'events','itemid',32895),(43049,'history','itemid',32895),(43050,'history_log','itemid',32895),(43051,'history_str','itemid',32895),(43052,'history_text','itemid',32895),(43053,'history_uint','itemid',32895),(43054,'trends','itemid',32895),(43055,'trends_uint','itemid',32895),(43056,'events','itemid',32896),(43057,'history','itemid',32896),(43058,'history_log','itemid',32896),(43059,'history_str','itemid',32896),(43060,'history_text','itemid',32896),(43061,'history_uint','itemid',32896),(43062,'trends','itemid',32896),(43063,'trends_uint','itemid',32896),(43064,'events','itemid',32897),(43065,'history','itemid',32897),(43066,'history_log','itemid',32897),(43067,'history_str','itemid',32897),(43068,'history_text','itemid',32897),(43069,'history_uint','itemid',32897),(43070,'trends','itemid',32897),(43071,'trends_uint','itemid',32897),(43072,'events','itemid',32898),(43073,'history','itemid',32898),(43074,'history_log','itemid',32898),(43075,'history_str','itemid',32898),(43076,'history_text','itemid',32898),(43077,'history_uint','itemid',32898),(43078,'trends','itemid',32898),(43079,'trends_uint','itemid',32898),(43080,'events','itemid',32899),(43081,'history','itemid',32899),(43082,'history_log','itemid',32899),(43083,'history_str','itemid',32899),(43084,'history_text','itemid',32899),(43085,'history_uint','itemid',32899),(43086,'trends','itemid',32899),(43087,'trends_uint','itemid',32899),(43088,'events','itemid',32900),(43089,'history','itemid',32900),(43090,'history_log','itemid',32900),(43091,'history_str','itemid',32900),(43092,'history_text','itemid',32900),(43093,'history_uint','itemid',32900),(43094,'trends','itemid',32900),(43095,'trends_uint','itemid',32900),(43096,'events','itemid',32901),(43097,'history','itemid',32901),(43098,'history_log','itemid',32901),(43099,'history_str','itemid',32901),(43100,'history_text','itemid',32901),(43101,'history_uint','itemid',32901),(43102,'trends','itemid',32901),(43103,'trends_uint','itemid',32901),(43104,'events','itemid',32902),(43105,'history','itemid',32902),(43106,'history_log','itemid',32902),(43107,'history_str','itemid',32902),(43108,'history_text','itemid',32902),(43109,'history_uint','itemid',32902),(43110,'trends','itemid',32902),(43111,'trends_uint','itemid',32902),(43112,'events','itemid',32903),(43113,'history','itemid',32903),(43114,'history_log','itemid',32903),(43115,'history_str','itemid',32903),(43116,'history_text','itemid',32903),(43117,'history_uint','itemid',32903),(43118,'trends','itemid',32903),(43119,'trends_uint','itemid',32903),(43120,'events','itemid',32904),(43121,'history','itemid',32904),(43122,'history_log','itemid',32904),(43123,'history_str','itemid',32904),(43124,'history_text','itemid',32904),(43125,'history_uint','itemid',32904),(43126,'trends','itemid',32904),(43127,'trends_uint','itemid',32904),(43128,'events','itemid',32905),(43129,'history','itemid',32905),(43130,'history_log','itemid',32905),(43131,'history_str','itemid',32905),(43132,'history_text','itemid',32905),(43133,'history_uint','itemid',32905),(43134,'trends','itemid',32905),(43135,'trends_uint','itemid',32905),(43136,'events','itemid',32906),(43137,'history','itemid',32906),(43138,'history_log','itemid',32906),(43139,'history_str','itemid',32906),(43140,'history_text','itemid',32906),(43141,'history_uint','itemid',32906),(43142,'trends','itemid',32906),(43143,'trends_uint','itemid',32906),(43144,'events','itemid',32907),(43145,'history','itemid',32907),(43146,'history_log','itemid',32907),(43147,'history_str','itemid',32907),(43148,'history_text','itemid',32907),(43149,'history_uint','itemid',32907),(43150,'trends','itemid',32907),(43151,'trends_uint','itemid',32907),(43152,'events','itemid',32908),(43153,'history','itemid',32908),(43154,'history_log','itemid',32908),(43155,'history_str','itemid',32908),(43156,'history_text','itemid',32908),(43157,'history_uint','itemid',32908),(43158,'trends','itemid',32908),(43159,'trends_uint','itemid',32908),(43160,'events','itemid',32909),(43161,'history','itemid',32909),(43162,'history_log','itemid',32909),(43163,'history_str','itemid',32909),(43164,'history_text','itemid',32909),(43165,'history_uint','itemid',32909),(43166,'trends','itemid',32909),(43167,'trends_uint','itemid',32909),(43168,'events','itemid',32910),(43169,'history','itemid',32910),(43170,'history_log','itemid',32910),(43171,'history_str','itemid',32910),(43172,'history_text','itemid',32910),(43173,'history_uint','itemid',32910),(43174,'trends','itemid',32910),(43175,'trends_uint','itemid',32910),(43176,'events','itemid',32911),(43177,'history','itemid',32911),(43178,'history_log','itemid',32911),(43179,'history_str','itemid',32911),(43180,'history_text','itemid',32911),(43181,'history_uint','itemid',32911),(43182,'trends','itemid',32911),(43183,'trends_uint','itemid',32911),(43184,'events','itemid',32912),(43185,'history','itemid',32912),(43186,'history_log','itemid',32912),(43187,'history_str','itemid',32912),(43188,'history_text','itemid',32912),(43189,'history_uint','itemid',32912),(43190,'trends','itemid',32912),(43191,'trends_uint','itemid',32912),(43192,'events','itemid',32913),(43193,'history','itemid',32913),(43194,'history_log','itemid',32913),(43195,'history_str','itemid',32913),(43196,'history_text','itemid',32913),(43197,'history_uint','itemid',32913),(43198,'trends','itemid',32913),(43199,'trends_uint','itemid',32913),(43200,'events','itemid',32915),(43201,'history','itemid',32915),(43202,'history_log','itemid',32915),(43203,'history_str','itemid',32915),(43204,'history_text','itemid',32915),(43205,'history_uint','itemid',32915),(43206,'trends','itemid',32915),(43207,'trends_uint','itemid',32915),(43208,'events','itemid',32916),(43209,'history','itemid',32916),(43210,'history_log','itemid',32916),(43211,'history_str','itemid',32916),(43212,'history_text','itemid',32916),(43213,'history_uint','itemid',32916),(43214,'trends','itemid',32916),(43215,'trends_uint','itemid',32916),(43216,'events','itemid',32917),(43217,'history','itemid',32917),(43218,'history_log','itemid',32917),(43219,'history_str','itemid',32917),(43220,'history_text','itemid',32917),(43221,'history_uint','itemid',32917),(43222,'trends','itemid',32917),(43223,'trends_uint','itemid',32917),(43224,'events','itemid',32918),(43225,'history','itemid',32918),(43226,'history_log','itemid',32918),(43227,'history_str','itemid',32918),(43228,'history_text','itemid',32918),(43229,'history_uint','itemid',32918),(43230,'trends','itemid',32918),(43231,'trends_uint','itemid',32918),(43232,'events','itemid',32919),(43233,'history','itemid',32919),(43234,'history_log','itemid',32919),(43235,'history_str','itemid',32919),(43236,'history_text','itemid',32919),(43237,'history_uint','itemid',32919),(43238,'trends','itemid',32919),(43239,'trends_uint','itemid',32919),(43240,'events','itemid',32920),(43241,'history','itemid',32920),(43242,'history_log','itemid',32920),(43243,'history_str','itemid',32920),(43244,'history_text','itemid',32920),(43245,'history_uint','itemid',32920),(43246,'trends','itemid',32920),(43247,'trends_uint','itemid',32920),(43248,'events','itemid',32921),(43249,'history','itemid',32921),(43250,'history_log','itemid',32921),(43251,'history_str','itemid',32921),(43252,'history_text','itemid',32921),(43253,'history_uint','itemid',32921),(43254,'trends','itemid',32921),(43255,'trends_uint','itemid',32921),(43256,'events','itemid',32922),(43257,'history','itemid',32922),(43258,'history_log','itemid',32922),(43259,'history_str','itemid',32922),(43260,'history_text','itemid',32922),(43261,'history_uint','itemid',32922),(43262,'trends','itemid',32922),(43263,'trends_uint','itemid',32922),(43264,'events','itemid',32923),(43265,'history','itemid',32923),(43266,'history_log','itemid',32923),(43267,'history_str','itemid',32923),(43268,'history_text','itemid',32923),(43269,'history_uint','itemid',32923),(43270,'trends','itemid',32923),(43271,'trends_uint','itemid',32923),(43272,'events','itemid',32924),(43273,'history','itemid',32924),(43274,'history_log','itemid',32924),(43275,'history_str','itemid',32924),(43276,'history_text','itemid',32924),(43277,'history_uint','itemid',32924),(43278,'trends','itemid',32924),(43279,'trends_uint','itemid',32924),(43280,'events','itemid',32925),(43281,'history','itemid',32925),(43282,'history_log','itemid',32925),(43283,'history_str','itemid',32925),(43284,'history_text','itemid',32925),(43285,'history_uint','itemid',32925),(43286,'trends','itemid',32925),(43287,'trends_uint','itemid',32925),(43288,'events','itemid',32926),(43289,'history','itemid',32926),(43290,'history_log','itemid',32926),(43291,'history_str','itemid',32926),(43292,'history_text','itemid',32926),(43293,'history_uint','itemid',32926),(43294,'trends','itemid',32926),(43295,'trends_uint','itemid',32926),(43296,'events','itemid',32927),(43297,'history','itemid',32927),(43298,'history_log','itemid',32927),(43299,'history_str','itemid',32927),(43300,'history_text','itemid',32927),(43301,'history_uint','itemid',32927),(43302,'trends','itemid',32927),(43303,'trends_uint','itemid',32927),(43304,'events','itemid',32928),(43305,'history','itemid',32928),(43306,'history_log','itemid',32928),(43307,'history_str','itemid',32928),(43308,'history_text','itemid',32928),(43309,'history_uint','itemid',32928),(43310,'trends','itemid',32928),(43311,'trends_uint','itemid',32928),(43312,'events','itemid',32929),(43313,'history','itemid',32929),(43314,'history_log','itemid',32929),(43315,'history_str','itemid',32929),(43316,'history_text','itemid',32929),(43317,'history_uint','itemid',32929),(43318,'trends','itemid',32929),(43319,'trends_uint','itemid',32929),(43320,'events','itemid',32930),(43321,'history','itemid',32930),(43322,'history_log','itemid',32930),(43323,'history_str','itemid',32930),(43324,'history_text','itemid',32930),(43325,'history_uint','itemid',32930),(43326,'trends','itemid',32930),(43327,'trends_uint','itemid',32930),(43328,'events','itemid',32951),(43329,'history','itemid',32951),(43330,'history_log','itemid',32951),(43331,'history_str','itemid',32951),(43332,'history_text','itemid',32951),(43333,'history_uint','itemid',32951),(43334,'trends','itemid',32951),(43335,'trends_uint','itemid',32951),(43336,'events','itemid',32952),(43337,'history','itemid',32952),(43338,'history_log','itemid',32952),(43339,'history_str','itemid',32952),(43340,'history_text','itemid',32952),(43341,'history_uint','itemid',32952),(43342,'trends','itemid',32952),(43343,'trends_uint','itemid',32952),(43344,'events','itemid',32953),(43345,'history','itemid',32953),(43346,'history_log','itemid',32953),(43347,'history_str','itemid',32953),(43348,'history_text','itemid',32953),(43349,'history_uint','itemid',32953),(43350,'trends','itemid',32953),(43351,'trends_uint','itemid',32953),(43352,'events','itemid',33012),(43353,'history','itemid',33012),(43354,'history_log','itemid',33012),(43355,'history_str','itemid',33012),(43356,'history_text','itemid',33012),(43357,'history_uint','itemid',33012),(43358,'trends','itemid',33012),(43359,'trends_uint','itemid',33012),(43360,'events','itemid',33013),(43361,'history','itemid',33013),(43362,'history_log','itemid',33013),(43363,'history_str','itemid',33013),(43364,'history_text','itemid',33013),(43365,'history_uint','itemid',33013),(43366,'trends','itemid',33013),(43367,'trends_uint','itemid',33013),(43368,'events','itemid',33014),(43369,'history','itemid',33014),(43370,'history_log','itemid',33014),(43371,'history_str','itemid',33014),(43372,'history_text','itemid',33014),(43373,'history_uint','itemid',33014),(43374,'trends','itemid',33014),(43375,'trends_uint','itemid',33014),(43376,'events','itemid',33015),(43377,'history','itemid',33015),(43378,'history_log','itemid',33015),(43379,'history_str','itemid',33015),(43380,'history_text','itemid',33015),(43381,'history_uint','itemid',33015),(43382,'trends','itemid',33015),(43383,'trends_uint','itemid',33015),(43384,'events','itemid',33016),(43385,'history','itemid',33016),(43386,'history_log','itemid',33016),(43387,'history_str','itemid',33016),(43388,'history_text','itemid',33016),(43389,'history_uint','itemid',33016),(43390,'trends','itemid',33016),(43391,'trends_uint','itemid',33016),(43392,'events','itemid',33017),(43393,'history','itemid',33017),(43394,'history_log','itemid',33017),(43395,'history_str','itemid',33017),(43396,'history_text','itemid',33017),(43397,'history_uint','itemid',33017),(43398,'trends','itemid',33017),(43399,'trends_uint','itemid',33017),(43400,'events','itemid',33172),(43401,'history','itemid',33172),(43402,'history_log','itemid',33172),(43403,'history_str','itemid',33172),(43404,'history_text','itemid',33172),(43405,'history_uint','itemid',33172),(43406,'trends','itemid',33172),(43407,'trends_uint','itemid',33172),(43408,'events','itemid',33173),(43409,'history','itemid',33173),(43410,'history_log','itemid',33173),(43411,'history_str','itemid',33173),(43412,'history_text','itemid',33173),(43413,'history_uint','itemid',33173),(43414,'trends','itemid',33173),(43415,'trends_uint','itemid',33173),(43416,'events','itemid',33174),(43417,'history','itemid',33174),(43418,'history_log','itemid',33174),(43419,'history_str','itemid',33174),(43420,'history_text','itemid',33174),(43421,'history_uint','itemid',33174),(43422,'trends','itemid',33174),(43423,'trends_uint','itemid',33174),(43424,'events','itemid',33175),(43425,'history','itemid',33175),(43426,'history_log','itemid',33175),(43427,'history_str','itemid',33175),(43428,'history_text','itemid',33175),(43429,'history_uint','itemid',33175),(43430,'trends','itemid',33175),(43431,'trends_uint','itemid',33175),(43432,'events','itemid',33176),(43433,'history','itemid',33176),(43434,'history_log','itemid',33176),(43435,'history_str','itemid',33176),(43436,'history_text','itemid',33176),(43437,'history_uint','itemid',33176),(43438,'trends','itemid',33176),(43439,'trends_uint','itemid',33176),(43440,'events','itemid',33638),(43441,'history','itemid',33638),(43442,'history_log','itemid',33638),(43443,'history_str','itemid',33638),(43444,'history_text','itemid',33638),(43445,'history_uint','itemid',33638),(43446,'trends','itemid',33638),(43447,'trends_uint','itemid',33638),(43448,'events','itemid',33639),(43449,'history','itemid',33639),(43450,'history_log','itemid',33639),(43451,'history_str','itemid',33639),(43452,'history_text','itemid',33639),(43453,'history_uint','itemid',33639),(43454,'trends','itemid',33639),(43455,'trends_uint','itemid',33639),(43456,'events','itemid',33640),(43457,'history','itemid',33640),(43458,'history_log','itemid',33640),(43459,'history_str','itemid',33640),(43460,'history_text','itemid',33640),(43461,'history_uint','itemid',33640),(43462,'trends','itemid',33640),(43463,'trends_uint','itemid',33640),(43464,'events','itemid',33641),(43465,'history','itemid',33641),(43466,'history_log','itemid',33641),(43467,'history_str','itemid',33641),(43468,'history_text','itemid',33641),(43469,'history_uint','itemid',33641),(43470,'trends','itemid',33641),(43471,'trends_uint','itemid',33641),(43472,'events','itemid',33642),(43473,'history','itemid',33642),(43474,'history_log','itemid',33642),(43475,'history_str','itemid',33642),(43476,'history_text','itemid',33642),(43477,'history_uint','itemid',33642),(43478,'trends','itemid',33642),(43479,'trends_uint','itemid',33642),(43480,'events','itemid',33643),(43481,'history','itemid',33643),(43482,'history_log','itemid',33643),(43483,'history_str','itemid',33643),(43484,'history_text','itemid',33643),(43485,'history_uint','itemid',33643),(43486,'trends','itemid',33643),(43487,'trends_uint','itemid',33643),(43488,'events','itemid',33644),(43489,'history','itemid',33644),(43490,'history_log','itemid',33644),(43491,'history_str','itemid',33644),(43492,'history_text','itemid',33644),(43493,'history_uint','itemid',33644),(43494,'trends','itemid',33644),(43495,'trends_uint','itemid',33644),(43496,'events','itemid',33645),(43497,'history','itemid',33645),(43498,'history_log','itemid',33645),(43499,'history_str','itemid',33645),(43500,'history_text','itemid',33645),(43501,'history_uint','itemid',33645),(43502,'trends','itemid',33645),(43503,'trends_uint','itemid',33645),(43504,'events','itemid',33646),(43505,'history','itemid',33646),(43506,'history_log','itemid',33646),(43507,'history_str','itemid',33646),(43508,'history_text','itemid',33646),(43509,'history_uint','itemid',33646),(43510,'trends','itemid',33646),(43511,'trends_uint','itemid',33646),(43512,'events','itemid',33647),(43513,'history','itemid',33647),(43514,'history_log','itemid',33647),(43515,'history_str','itemid',33647),(43516,'history_text','itemid',33647),(43517,'history_uint','itemid',33647),(43518,'trends','itemid',33647),(43519,'trends_uint','itemid',33647),(43520,'events','itemid',33648),(43521,'history','itemid',33648),(43522,'history_log','itemid',33648),(43523,'history_str','itemid',33648),(43524,'history_text','itemid',33648),(43525,'history_uint','itemid',33648),(43526,'trends','itemid',33648),(43527,'trends_uint','itemid',33648),(43528,'events','itemid',33649),(43529,'history','itemid',33649),(43530,'history_log','itemid',33649),(43531,'history_str','itemid',33649),(43532,'history_text','itemid',33649),(43533,'history_uint','itemid',33649),(43534,'trends','itemid',33649),(43535,'trends_uint','itemid',33649),(43536,'events','itemid',34314),(43537,'history','itemid',34314),(43538,'history_log','itemid',34314),(43539,'history_str','itemid',34314),(43540,'history_text','itemid',34314),(43541,'history_uint','itemid',34314),(43542,'trends','itemid',34314),(43543,'trends_uint','itemid',34314),(43544,'events','itemid',34315),(43545,'history','itemid',34315),(43546,'history_log','itemid',34315),(43547,'history_str','itemid',34315),(43548,'history_text','itemid',34315),(43549,'history_uint','itemid',34315),(43550,'trends','itemid',34315),(43551,'trends_uint','itemid',34315),(43552,'events','itemid',34336),(43553,'history','itemid',34336),(43554,'history_log','itemid',34336),(43555,'history_str','itemid',34336),(43556,'history_text','itemid',34336),(43557,'history_uint','itemid',34336),(43558,'trends','itemid',34336),(43559,'trends_uint','itemid',34336),(43560,'events','itemid',34337),(43561,'history','itemid',34337),(43562,'history_log','itemid',34337),(43563,'history_str','itemid',34337),(43564,'history_text','itemid',34337),(43565,'history_uint','itemid',34337),(43566,'trends','itemid',34337),(43567,'trends_uint','itemid',34337),(43568,'events','itemid',34338),(43569,'history','itemid',34338),(43570,'history_log','itemid',34338),(43571,'history_str','itemid',34338),(43572,'history_text','itemid',34338),(43573,'history_uint','itemid',34338),(43574,'trends','itemid',34338),(43575,'trends_uint','itemid',34338),(43576,'events','itemid',34339),(43577,'history','itemid',34339),(43578,'history_log','itemid',34339),(43579,'history_str','itemid',34339),(43580,'history_text','itemid',34339),(43581,'history_uint','itemid',34339),(43582,'trends','itemid',34339),(43583,'trends_uint','itemid',34339),(43584,'events','itemid',34340),(43585,'history','itemid',34340),(43586,'history_log','itemid',34340),(43587,'history_str','itemid',34340),(43588,'history_text','itemid',34340),(43589,'history_uint','itemid',34340),(43590,'trends','itemid',34340),(43591,'trends_uint','itemid',34340),(43592,'events','itemid',34341),(43593,'history','itemid',34341),(43594,'history_log','itemid',34341),(43595,'history_str','itemid',34341),(43596,'history_text','itemid',34341),(43597,'history_uint','itemid',34341),(43598,'trends','itemid',34341),(43599,'trends_uint','itemid',34341),(43600,'events','itemid',34367),(43601,'history','itemid',34367),(43602,'history_log','itemid',34367),(43603,'history_str','itemid',34367),(43604,'history_text','itemid',34367),(43605,'history_uint','itemid',34367),(43606,'trends','itemid',34367),(43607,'trends_uint','itemid',34367),(43608,'events','itemid',34368),(43609,'history','itemid',34368),(43610,'history_log','itemid',34368),(43611,'history_str','itemid',34368),(43612,'history_text','itemid',34368),(43613,'history_uint','itemid',34368),(43614,'trends','itemid',34368),(43615,'trends_uint','itemid',34368),(43616,'events','itemid',34369),(43617,'history','itemid',34369),(43618,'history_log','itemid',34369),(43619,'history_str','itemid',34369),(43620,'history_text','itemid',34369),(43621,'history_uint','itemid',34369),(43622,'trends','itemid',34369),(43623,'trends_uint','itemid',34369),(43624,'events','itemid',34370),(43625,'history','itemid',34370),(43626,'history_log','itemid',34370),(43627,'history_str','itemid',34370),(43628,'history_text','itemid',34370),(43629,'history_uint','itemid',34370),(43630,'trends','itemid',34370),(43631,'trends_uint','itemid',34370),(43632,'events','itemid',34371),(43633,'history','itemid',34371),(43634,'history_log','itemid',34371),(43635,'history_str','itemid',34371),(43636,'history_text','itemid',34371),(43637,'history_uint','itemid',34371),(43638,'trends','itemid',34371),(43639,'trends_uint','itemid',34371),(43640,'events','itemid',34372),(43641,'history','itemid',34372),(43642,'history_log','itemid',34372),(43643,'history_str','itemid',34372),(43644,'history_text','itemid',34372),(43645,'history_uint','itemid',34372),(43646,'trends','itemid',34372),(43647,'trends_uint','itemid',34372),(43648,'events','itemid',34373),(43649,'history','itemid',34373),(43650,'history_log','itemid',34373),(43651,'history_str','itemid',34373),(43652,'history_text','itemid',34373),(43653,'history_uint','itemid',34373),(43654,'trends','itemid',34373),(43655,'trends_uint','itemid',34373),(43656,'events','itemid',34374),(43657,'history','itemid',34374),(43658,'history_log','itemid',34374),(43659,'history_str','itemid',34374),(43660,'history_text','itemid',34374),(43661,'history_uint','itemid',34374),(43662,'trends','itemid',34374),(43663,'trends_uint','itemid',34374),(43664,'events','itemid',34375),(43665,'history','itemid',34375),(43666,'history_log','itemid',34375),(43667,'history_str','itemid',34375),(43668,'history_text','itemid',34375),(43669,'history_uint','itemid',34375),(43670,'trends','itemid',34375),(43671,'trends_uint','itemid',34375),(43672,'events','itemid',34376),(43673,'history','itemid',34376),(43674,'history_log','itemid',34376),(43675,'history_str','itemid',34376),(43676,'history_text','itemid',34376),(43677,'history_uint','itemid',34376),(43678,'trends','itemid',34376),(43679,'trends_uint','itemid',34376),(43680,'events','itemid',34377),(43681,'history','itemid',34377),(43682,'history_log','itemid',34377),(43683,'history_str','itemid',34377),(43684,'history_text','itemid',34377),(43685,'history_uint','itemid',34377),(43686,'trends','itemid',34377),(43687,'trends_uint','itemid',34377),(43688,'events','itemid',34378),(43689,'history','itemid',34378),(43690,'history_log','itemid',34378),(43691,'history_str','itemid',34378),(43692,'history_text','itemid',34378),(43693,'history_uint','itemid',34378),(43694,'trends','itemid',34378),(43695,'trends_uint','itemid',34378),(43696,'events','itemid',34379),(43697,'history','itemid',34379),(43698,'history_log','itemid',34379),(43699,'history_str','itemid',34379),(43700,'history_text','itemid',34379),(43701,'history_uint','itemid',34379),(43702,'trends','itemid',34379),(43703,'trends_uint','itemid',34379),(43704,'events','itemid',34380),(43705,'history','itemid',34380),(43706,'history_log','itemid',34380),(43707,'history_str','itemid',34380),(43708,'history_text','itemid',34380),(43709,'history_uint','itemid',34380),(43710,'trends','itemid',34380),(43711,'trends_uint','itemid',34380),(43712,'events','itemid',34381),(43713,'history','itemid',34381),(43714,'history_log','itemid',34381),(43715,'history_str','itemid',34381),(43716,'history_text','itemid',34381),(43717,'history_uint','itemid',34381),(43718,'trends','itemid',34381),(43719,'trends_uint','itemid',34381),(43720,'events','itemid',34382),(43721,'history','itemid',34382),(43722,'history_log','itemid',34382),(43723,'history_str','itemid',34382),(43724,'history_text','itemid',34382),(43725,'history_uint','itemid',34382),(43726,'trends','itemid',34382),(43727,'trends_uint','itemid',34382),(43728,'events','itemid',34383),(43729,'history','itemid',34383),(43730,'history_log','itemid',34383),(43731,'history_str','itemid',34383),(43732,'history_text','itemid',34383),(43733,'history_uint','itemid',34383),(43734,'trends','itemid',34383),(43735,'trends_uint','itemid',34383),(43736,'events','itemid',34384),(43737,'history','itemid',34384),(43738,'history_log','itemid',34384),(43739,'history_str','itemid',34384),(43740,'history_text','itemid',34384),(43741,'history_uint','itemid',34384),(43742,'trends','itemid',34384),(43743,'trends_uint','itemid',34384),(43744,'events','itemid',34385),(43745,'history','itemid',34385),(43746,'history_log','itemid',34385),(43747,'history_str','itemid',34385),(43748,'history_text','itemid',34385),(43749,'history_uint','itemid',34385),(43750,'trends','itemid',34385),(43751,'trends_uint','itemid',34385),(43752,'events','itemid',34386),(43753,'history','itemid',34386),(43754,'history_log','itemid',34386),(43755,'history_str','itemid',34386),(43756,'history_text','itemid',34386),(43757,'history_uint','itemid',34386),(43758,'trends','itemid',34386),(43759,'trends_uint','itemid',34386),(43760,'events','itemid',34387),(43761,'history','itemid',34387),(43762,'history_log','itemid',34387),(43763,'history_str','itemid',34387),(43764,'history_text','itemid',34387),(43765,'history_uint','itemid',34387),(43766,'trends','itemid',34387),(43767,'trends_uint','itemid',34387),(43768,'events','itemid',34388),(43769,'history','itemid',34388),(43770,'history_log','itemid',34388),(43771,'history_str','itemid',34388),(43772,'history_text','itemid',34388),(43773,'history_uint','itemid',34388),(43774,'trends','itemid',34388),(43775,'trends_uint','itemid',34388),(43776,'events','itemid',34389),(43777,'history','itemid',34389),(43778,'history_log','itemid',34389),(43779,'history_str','itemid',34389),(43780,'history_text','itemid',34389),(43781,'history_uint','itemid',34389),(43782,'trends','itemid',34389),(43783,'trends_uint','itemid',34389),(43784,'events','itemid',34390),(43785,'history','itemid',34390),(43786,'history_log','itemid',34390),(43787,'history_str','itemid',34390),(43788,'history_text','itemid',34390),(43789,'history_uint','itemid',34390),(43790,'trends','itemid',34390),(43791,'trends_uint','itemid',34390),(43792,'events','itemid',34391),(43793,'history','itemid',34391),(43794,'history_log','itemid',34391),(43795,'history_str','itemid',34391),(43796,'history_text','itemid',34391),(43797,'history_uint','itemid',34391),(43798,'trends','itemid',34391),(43799,'trends_uint','itemid',34391),(43800,'events','itemid',34392),(43801,'history','itemid',34392),(43802,'history_log','itemid',34392),(43803,'history_str','itemid',34392),(43804,'history_text','itemid',34392),(43805,'history_uint','itemid',34392),(43806,'trends','itemid',34392),(43807,'trends_uint','itemid',34392),(43808,'events','itemid',34393),(43809,'history','itemid',34393),(43810,'history_log','itemid',34393),(43811,'history_str','itemid',34393),(43812,'history_text','itemid',34393),(43813,'history_uint','itemid',34393),(43814,'trends','itemid',34393),(43815,'trends_uint','itemid',34393),(43816,'events','itemid',34394),(43817,'history','itemid',34394),(43818,'history_log','itemid',34394),(43819,'history_str','itemid',34394),(43820,'history_text','itemid',34394),(43821,'history_uint','itemid',34394),(43822,'trends','itemid',34394),(43823,'trends_uint','itemid',34394),(43824,'events','itemid',34395),(43825,'history','itemid',34395),(43826,'history_log','itemid',34395),(43827,'history_str','itemid',34395),(43828,'history_text','itemid',34395),(43829,'history_uint','itemid',34395),(43830,'trends','itemid',34395),(43831,'trends_uint','itemid',34395),(43832,'events','itemid',34396),(43833,'history','itemid',34396),(43834,'history_log','itemid',34396),(43835,'history_str','itemid',34396),(43836,'history_text','itemid',34396),(43837,'history_uint','itemid',34396),(43838,'trends','itemid',34396),(43839,'trends_uint','itemid',34396),(43840,'events','itemid',34397),(43841,'history','itemid',34397),(43842,'history_log','itemid',34397),(43843,'history_str','itemid',34397),(43844,'history_text','itemid',34397),(43845,'history_uint','itemid',34397),(43846,'trends','itemid',34397),(43847,'trends_uint','itemid',34397),(43848,'events','itemid',34398),(43849,'history','itemid',34398),(43850,'history_log','itemid',34398),(43851,'history_str','itemid',34398),(43852,'history_text','itemid',34398),(43853,'history_uint','itemid',34398),(43854,'trends','itemid',34398),(43855,'trends_uint','itemid',34398),(43856,'events','itemid',34412),(43857,'history','itemid',34412),(43858,'history_log','itemid',34412),(43859,'history_str','itemid',34412),(43860,'history_text','itemid',34412),(43861,'history_uint','itemid',34412),(43862,'trends','itemid',34412),(43863,'trends_uint','itemid',34412),(43864,'events','itemid',34413),(43865,'history','itemid',34413),(43866,'history_log','itemid',34413),(43867,'history_str','itemid',34413),(43868,'history_text','itemid',34413),(43869,'history_uint','itemid',34413),(43870,'trends','itemid',34413),(43871,'trends_uint','itemid',34413),(43872,'events','itemid',34414),(43873,'history','itemid',34414),(43874,'history_log','itemid',34414),(43875,'history_str','itemid',34414),(43876,'history_text','itemid',34414),(43877,'history_uint','itemid',34414),(43878,'trends','itemid',34414),(43879,'trends_uint','itemid',34414),(43880,'events','itemid',34415),(43881,'history','itemid',34415),(43882,'history_log','itemid',34415),(43883,'history_str','itemid',34415),(43884,'history_text','itemid',34415),(43885,'history_uint','itemid',34415),(43886,'trends','itemid',34415),(43887,'trends_uint','itemid',34415),(43888,'events','itemid',34416),(43889,'history','itemid',34416),(43890,'history_log','itemid',34416),(43891,'history_str','itemid',34416),(43892,'history_text','itemid',34416),(43893,'history_uint','itemid',34416),(43894,'trends','itemid',34416),(43895,'trends_uint','itemid',34416),(43896,'events','itemid',34417),(43897,'history','itemid',34417),(43898,'history_log','itemid',34417),(43899,'history_str','itemid',34417),(43900,'history_text','itemid',34417),(43901,'history_uint','itemid',34417),(43902,'trends','itemid',34417),(43903,'trends_uint','itemid',34417),(43904,'events','itemid',34418),(43905,'history','itemid',34418),(43906,'history_log','itemid',34418),(43907,'history_str','itemid',34418),(43908,'history_text','itemid',34418),(43909,'history_uint','itemid',34418),(43910,'trends','itemid',34418),(43911,'trends_uint','itemid',34418),(43912,'events','itemid',34419),(43913,'history','itemid',34419),(43914,'history_log','itemid',34419),(43915,'history_str','itemid',34419),(43916,'history_text','itemid',34419),(43917,'history_uint','itemid',34419),(43918,'trends','itemid',34419),(43919,'trends_uint','itemid',34419),(43920,'events','itemid',34420),(43921,'history','itemid',34420),(43922,'history_log','itemid',34420),(43923,'history_str','itemid',34420),(43924,'history_text','itemid',34420),(43925,'history_uint','itemid',34420),(43926,'trends','itemid',34420),(43927,'trends_uint','itemid',34420),(43928,'events','itemid',34421),(43929,'history','itemid',34421),(43930,'history_log','itemid',34421),(43931,'history_str','itemid',34421),(43932,'history_text','itemid',34421),(43933,'history_uint','itemid',34421),(43934,'trends','itemid',34421),(43935,'trends_uint','itemid',34421),(43936,'events','itemid',34422),(43937,'history','itemid',34422),(43938,'history_log','itemid',34422),(43939,'history_str','itemid',34422),(43940,'history_text','itemid',34422),(43941,'history_uint','itemid',34422),(43942,'trends','itemid',34422),(43943,'trends_uint','itemid',34422),(43944,'events','itemid',34423),(43945,'history','itemid',34423),(43946,'history_log','itemid',34423),(43947,'history_str','itemid',34423),(43948,'history_text','itemid',34423),(43949,'history_uint','itemid',34423),(43950,'trends','itemid',34423),(43951,'trends_uint','itemid',34423),(43952,'events','itemid',34424),(43953,'history','itemid',34424),(43954,'history_log','itemid',34424),(43955,'history_str','itemid',34424),(43956,'history_text','itemid',34424),(43957,'history_uint','itemid',34424),(43958,'trends','itemid',34424),(43959,'trends_uint','itemid',34424),(43960,'events','itemid',34425),(43961,'history','itemid',34425),(43962,'history_log','itemid',34425),(43963,'history_str','itemid',34425),(43964,'history_text','itemid',34425),(43965,'history_uint','itemid',34425),(43966,'trends','itemid',34425),(43967,'trends_uint','itemid',34425),(43968,'events','itemid',34426),(43969,'history','itemid',34426),(43970,'history_log','itemid',34426),(43971,'history_str','itemid',34426),(43972,'history_text','itemid',34426),(43973,'history_uint','itemid',34426),(43974,'trends','itemid',34426),(43975,'trends_uint','itemid',34426),(43976,'events','itemid',34427),(43977,'history','itemid',34427),(43978,'history_log','itemid',34427),(43979,'history_str','itemid',34427),(43980,'history_text','itemid',34427),(43981,'history_uint','itemid',34427),(43982,'trends','itemid',34427),(43983,'trends_uint','itemid',34427),(43984,'events','itemid',34428),(43985,'history','itemid',34428),(43986,'history_log','itemid',34428),(43987,'history_str','itemid',34428),(43988,'history_text','itemid',34428),(43989,'history_uint','itemid',34428),(43990,'trends','itemid',34428),(43991,'trends_uint','itemid',34428),(43992,'events','itemid',34429),(43993,'history','itemid',34429),(43994,'history_log','itemid',34429),(43995,'history_str','itemid',34429),(43996,'history_text','itemid',34429),(43997,'history_uint','itemid',34429),(43998,'trends','itemid',34429),(43999,'trends_uint','itemid',34429),(44000,'events','itemid',34430),(44001,'history','itemid',34430),(44002,'history_log','itemid',34430),(44003,'history_str','itemid',34430),(44004,'history_text','itemid',34430),(44005,'history_uint','itemid',34430),(44006,'trends','itemid',34430),(44007,'trends_uint','itemid',34430),(44008,'events','itemid',34431),(44009,'history','itemid',34431),(44010,'history_log','itemid',34431),(44011,'history_str','itemid',34431),(44012,'history_text','itemid',34431),(44013,'history_uint','itemid',34431),(44014,'trends','itemid',34431),(44015,'trends_uint','itemid',34431),(44016,'events','itemid',34432),(44017,'history','itemid',34432),(44018,'history_log','itemid',34432),(44019,'history_str','itemid',34432),(44020,'history_text','itemid',34432),(44021,'history_uint','itemid',34432),(44022,'trends','itemid',34432),(44023,'trends_uint','itemid',34432),(44024,'events','itemid',34433),(44025,'history','itemid',34433),(44026,'history_log','itemid',34433),(44027,'history_str','itemid',34433),(44028,'history_text','itemid',34433),(44029,'history_uint','itemid',34433),(44030,'trends','itemid',34433),(44031,'trends_uint','itemid',34433),(44032,'events','itemid',34434),(44033,'history','itemid',34434),(44034,'history_log','itemid',34434),(44035,'history_str','itemid',34434),(44036,'history_text','itemid',34434),(44037,'history_uint','itemid',34434),(44038,'trends','itemid',34434),(44039,'trends_uint','itemid',34434),(44040,'events','itemid',34435),(44041,'history','itemid',34435),(44042,'history_log','itemid',34435),(44043,'history_str','itemid',34435),(44044,'history_text','itemid',34435),(44045,'history_uint','itemid',34435),(44046,'trends','itemid',34435),(44047,'trends_uint','itemid',34435),(44048,'events','itemid',34436),(44049,'history','itemid',34436),(44050,'history_log','itemid',34436),(44051,'history_str','itemid',34436),(44052,'history_text','itemid',34436),(44053,'history_uint','itemid',34436),(44054,'trends','itemid',34436),(44055,'trends_uint','itemid',34436),(44056,'events','itemid',34437),(44057,'history','itemid',34437),(44058,'history_log','itemid',34437),(44059,'history_str','itemid',34437),(44060,'history_text','itemid',34437),(44061,'history_uint','itemid',34437),(44062,'trends','itemid',34437),(44063,'trends_uint','itemid',34437),(44064,'events','itemid',34438),(44065,'history','itemid',34438),(44066,'history_log','itemid',34438),(44067,'history_str','itemid',34438),(44068,'history_text','itemid',34438),(44069,'history_uint','itemid',34438),(44070,'trends','itemid',34438),(44071,'trends_uint','itemid',34438),(44072,'events','itemid',34439),(44073,'history','itemid',34439),(44074,'history_log','itemid',34439),(44075,'history_str','itemid',34439),(44076,'history_text','itemid',34439),(44077,'history_uint','itemid',34439),(44078,'trends','itemid',34439),(44079,'trends_uint','itemid',34439),(44080,'events','itemid',34937),(44081,'history','itemid',34937),(44082,'history_log','itemid',34937),(44083,'history_str','itemid',34937),(44084,'history_text','itemid',34937),(44085,'history_uint','itemid',34937),(44086,'trends','itemid',34937),(44087,'trends_uint','itemid',34937),(44088,'events','itemid',34938),(44089,'history','itemid',34938),(44090,'history_log','itemid',34938),(44091,'history_str','itemid',34938),(44092,'history_text','itemid',34938),(44093,'history_uint','itemid',34938),(44094,'trends','itemid',34938),(44095,'trends_uint','itemid',34938),(44096,'events','itemid',34939),(44097,'history','itemid',34939),(44098,'history_log','itemid',34939),(44099,'history_str','itemid',34939),(44100,'history_text','itemid',34939),(44101,'history_uint','itemid',34939),(44102,'trends','itemid',34939),(44103,'trends_uint','itemid',34939),(44104,'events','itemid',34940),(44105,'history','itemid',34940),(44106,'history_log','itemid',34940),(44107,'history_str','itemid',34940),(44108,'history_text','itemid',34940),(44109,'history_uint','itemid',34940),(44110,'trends','itemid',34940),(44111,'trends_uint','itemid',34940),(44112,'events','itemid',34941),(44113,'history','itemid',34941),(44114,'history_log','itemid',34941),(44115,'history_str','itemid',34941),(44116,'history_text','itemid',34941),(44117,'history_uint','itemid',34941),(44118,'trends','itemid',34941),(44119,'trends_uint','itemid',34941),(44120,'events','itemid',34949),(44121,'history','itemid',34949),(44122,'history_log','itemid',34949),(44123,'history_str','itemid',34949),(44124,'history_text','itemid',34949),(44125,'history_uint','itemid',34949),(44126,'trends','itemid',34949),(44127,'trends_uint','itemid',34949),(44128,'events','itemid',34950),(44129,'history','itemid',34950),(44130,'history_log','itemid',34950),(44131,'history_str','itemid',34950),(44132,'history_text','itemid',34950),(44133,'history_uint','itemid',34950),(44134,'trends','itemid',34950),(44135,'trends_uint','itemid',34950),(44136,'events','itemid',34951),(44137,'history','itemid',34951),(44138,'history_log','itemid',34951),(44139,'history_str','itemid',34951),(44140,'history_text','itemid',34951),(44141,'history_uint','itemid',34951),(44142,'trends','itemid',34951),(44143,'trends_uint','itemid',34951),(44144,'events','itemid',34952),(44145,'history','itemid',34952),(44146,'history_log','itemid',34952),(44147,'history_str','itemid',34952),(44148,'history_text','itemid',34952),(44149,'history_uint','itemid',34952),(44150,'trends','itemid',34952),(44151,'trends_uint','itemid',34952),(44152,'events','itemid',34953),(44153,'history','itemid',34953),(44154,'history_log','itemid',34953),(44155,'history_str','itemid',34953),(44156,'history_text','itemid',34953),(44157,'history_uint','itemid',34953),(44158,'trends','itemid',34953),(44159,'trends_uint','itemid',34953),(44160,'events','itemid',34954),(44161,'history','itemid',34954),(44162,'history_log','itemid',34954),(44163,'history_str','itemid',34954),(44164,'history_text','itemid',34954),(44165,'history_uint','itemid',34954),(44166,'trends','itemid',34954),(44167,'trends_uint','itemid',34954),(44168,'events','itemid',34955),(44169,'history','itemid',34955),(44170,'history_log','itemid',34955),(44171,'history_str','itemid',34955),(44172,'history_text','itemid',34955),(44173,'history_uint','itemid',34955),(44174,'trends','itemid',34955),(44175,'trends_uint','itemid',34955),(44176,'events','itemid',34956),(44177,'history','itemid',34956),(44178,'history_log','itemid',34956),(44179,'history_str','itemid',34956),(44180,'history_text','itemid',34956),(44181,'history_uint','itemid',34956),(44182,'trends','itemid',34956),(44183,'trends_uint','itemid',34956),(44184,'events','itemid',34957),(44185,'history','itemid',34957),(44186,'history_log','itemid',34957),(44187,'history_str','itemid',34957),(44188,'history_text','itemid',34957),(44189,'history_uint','itemid',34957),(44190,'trends','itemid',34957),(44191,'trends_uint','itemid',34957),(44192,'events','itemid',34958),(44193,'history','itemid',34958),(44194,'history_log','itemid',34958),(44195,'history_str','itemid',34958),(44196,'history_text','itemid',34958),(44197,'history_uint','itemid',34958),(44198,'trends','itemid',34958),(44199,'trends_uint','itemid',34958),(44200,'events','itemid',34959),(44201,'history','itemid',34959),(44202,'history_log','itemid',34959),(44203,'history_str','itemid',34959),(44204,'history_text','itemid',34959),(44205,'history_uint','itemid',34959),(44206,'trends','itemid',34959),(44207,'trends_uint','itemid',34959),(44208,'events','itemid',34960),(44209,'history','itemid',34960),(44210,'history_log','itemid',34960),(44211,'history_str','itemid',34960),(44212,'history_text','itemid',34960),(44213,'history_uint','itemid',34960),(44214,'trends','itemid',34960),(44215,'trends_uint','itemid',34960),(44216,'events','itemid',34961),(44217,'history','itemid',34961),(44218,'history_log','itemid',34961),(44219,'history_str','itemid',34961),(44220,'history_text','itemid',34961),(44221,'history_uint','itemid',34961),(44222,'trends','itemid',34961),(44223,'trends_uint','itemid',34961),(44224,'events','itemid',34962),(44225,'history','itemid',34962),(44226,'history_log','itemid',34962),(44227,'history_str','itemid',34962),(44228,'history_text','itemid',34962),(44229,'history_uint','itemid',34962),(44230,'trends','itemid',34962),(44231,'trends_uint','itemid',34962),(44232,'events','itemid',34963),(44233,'history','itemid',34963),(44234,'history_log','itemid',34963),(44235,'history_str','itemid',34963),(44236,'history_text','itemid',34963),(44237,'history_uint','itemid',34963),(44238,'trends','itemid',34963),(44239,'trends_uint','itemid',34963),(44240,'events','itemid',34964),(44241,'history','itemid',34964),(44242,'history_log','itemid',34964),(44243,'history_str','itemid',34964),(44244,'history_text','itemid',34964),(44245,'history_uint','itemid',34964),(44246,'trends','itemid',34964),(44247,'trends_uint','itemid',34964),(44248,'events','itemid',34965),(44249,'history','itemid',34965),(44250,'history_log','itemid',34965),(44251,'history_str','itemid',34965),(44252,'history_text','itemid',34965),(44253,'history_uint','itemid',34965),(44254,'trends','itemid',34965),(44255,'trends_uint','itemid',34965),(44256,'events','itemid',35064),(44257,'history','itemid',35064),(44258,'history_log','itemid',35064),(44259,'history_str','itemid',35064),(44260,'history_text','itemid',35064),(44261,'history_uint','itemid',35064),(44262,'trends','itemid',35064),(44263,'trends_uint','itemid',35064),(44264,'events','itemid',35065),(44265,'history','itemid',35065),(44266,'history_log','itemid',35065),(44267,'history_str','itemid',35065),(44268,'history_text','itemid',35065),(44269,'history_uint','itemid',35065),(44270,'trends','itemid',35065),(44271,'trends_uint','itemid',35065),(44272,'events','itemid',35066),(44273,'history','itemid',35066),(44274,'history_log','itemid',35066),(44275,'history_str','itemid',35066),(44276,'history_text','itemid',35066),(44277,'history_uint','itemid',35066),(44278,'trends','itemid',35066),(44279,'trends_uint','itemid',35066),(44280,'events','itemid',35067),(44281,'history','itemid',35067),(44282,'history_log','itemid',35067),(44283,'history_str','itemid',35067),(44284,'history_text','itemid',35067),(44285,'history_uint','itemid',35067),(44286,'trends','itemid',35067),(44287,'trends_uint','itemid',35067),(44288,'events','itemid',35068),(44289,'history','itemid',35068),(44290,'history_log','itemid',35068),(44291,'history_str','itemid',35068),(44292,'history_text','itemid',35068),(44293,'history_uint','itemid',35068),(44294,'trends','itemid',35068),(44295,'trends_uint','itemid',35068),(44296,'events','itemid',35069),(44297,'history','itemid',35069),(44298,'history_log','itemid',35069),(44299,'history_str','itemid',35069),(44300,'history_text','itemid',35069),(44301,'history_uint','itemid',35069),(44302,'trends','itemid',35069),(44303,'trends_uint','itemid',35069),(44304,'events','itemid',35070),(44305,'history','itemid',35070),(44306,'history_log','itemid',35070),(44307,'history_str','itemid',35070),(44308,'history_text','itemid',35070),(44309,'history_uint','itemid',35070),(44310,'trends','itemid',35070),(44311,'trends_uint','itemid',35070),(44312,'events','itemid',35071),(44313,'history','itemid',35071),(44314,'history_log','itemid',35071),(44315,'history_str','itemid',35071),(44316,'history_text','itemid',35071),(44317,'history_uint','itemid',35071),(44318,'trends','itemid',35071),(44319,'trends_uint','itemid',35071),(44320,'events','itemid',35072),(44321,'history','itemid',35072),(44322,'history_log','itemid',35072),(44323,'history_str','itemid',35072),(44324,'history_text','itemid',35072),(44325,'history_uint','itemid',35072),(44326,'trends','itemid',35072),(44327,'trends_uint','itemid',35072),(44328,'events','itemid',35073),(44329,'history','itemid',35073),(44330,'history_log','itemid',35073),(44331,'history_str','itemid',35073),(44332,'history_text','itemid',35073),(44333,'history_uint','itemid',35073),(44334,'trends','itemid',35073),(44335,'trends_uint','itemid',35073),(44336,'events','itemid',35074),(44337,'history','itemid',35074),(44338,'history_log','itemid',35074),(44339,'history_str','itemid',35074),(44340,'history_text','itemid',35074),(44341,'history_uint','itemid',35074),(44342,'trends','itemid',35074),(44343,'trends_uint','itemid',35074),(44344,'events','itemid',35075),(44345,'history','itemid',35075),(44346,'history_log','itemid',35075),(44347,'history_str','itemid',35075),(44348,'history_text','itemid',35075),(44349,'history_uint','itemid',35075),(44350,'trends','itemid',35075),(44351,'trends_uint','itemid',35075),(44352,'events','itemid',35076),(44353,'history','itemid',35076),(44354,'history_log','itemid',35076),(44355,'history_str','itemid',35076),(44356,'history_text','itemid',35076),(44357,'history_uint','itemid',35076),(44358,'trends','itemid',35076),(44359,'trends_uint','itemid',35076),(44360,'events','itemid',35278),(44361,'history','itemid',35278),(44362,'history_log','itemid',35278),(44363,'history_str','itemid',35278),(44364,'history_text','itemid',35278),(44365,'history_uint','itemid',35278),(44366,'trends','itemid',35278),(44367,'trends_uint','itemid',35278),(44368,'events','itemid',35279),(44369,'history','itemid',35279),(44370,'history_log','itemid',35279),(44371,'history_str','itemid',35279),(44372,'history_text','itemid',35279),(44373,'history_uint','itemid',35279),(44374,'trends','itemid',35279),(44375,'trends_uint','itemid',35279),(44376,'events','itemid',36772),(44377,'history','itemid',36772),(44378,'history_log','itemid',36772),(44379,'history_str','itemid',36772),(44380,'history_text','itemid',36772),(44381,'history_uint','itemid',36772),(44382,'trends','itemid',36772),(44383,'trends_uint','itemid',36772),(44384,'events','itemid',36773),(44385,'history','itemid',36773),(44386,'history_log','itemid',36773),(44387,'history_str','itemid',36773),(44388,'history_text','itemid',36773),(44389,'history_uint','itemid',36773),(44390,'trends','itemid',36773),(44391,'trends_uint','itemid',36773),(44392,'events','itemid',36774),(44393,'history','itemid',36774),(44394,'history_log','itemid',36774),(44395,'history_str','itemid',36774),(44396,'history_text','itemid',36774),(44397,'history_uint','itemid',36774),(44398,'trends','itemid',36774),(44399,'trends_uint','itemid',36774),(44400,'events','itemid',36775),(44401,'history','itemid',36775),(44402,'history_log','itemid',36775),(44403,'history_str','itemid',36775),(44404,'history_text','itemid',36775),(44405,'history_uint','itemid',36775),(44406,'trends','itemid',36775),(44407,'trends_uint','itemid',36775),(44408,'events','itemid',36776),(44409,'history','itemid',36776),(44410,'history_log','itemid',36776),(44411,'history_str','itemid',36776),(44412,'history_text','itemid',36776),(44413,'history_uint','itemid',36776),(44414,'trends','itemid',36776),(44415,'trends_uint','itemid',36776),(44416,'events','itemid',36777),(44417,'history','itemid',36777),(44418,'history_log','itemid',36777),(44419,'history_str','itemid',36777),(44420,'history_text','itemid',36777),(44421,'history_uint','itemid',36777),(44422,'trends','itemid',36777),(44423,'trends_uint','itemid',36777),(44424,'events','itemid',36778),(44425,'history','itemid',36778),(44426,'history_log','itemid',36778),(44427,'history_str','itemid',36778),(44428,'history_text','itemid',36778),(44429,'history_uint','itemid',36778),(44430,'trends','itemid',36778),(44431,'trends_uint','itemid',36778),(44432,'events','itemid',36779),(44433,'history','itemid',36779),(44434,'history_log','itemid',36779),(44435,'history_str','itemid',36779),(44436,'history_text','itemid',36779),(44437,'history_uint','itemid',36779),(44438,'trends','itemid',36779),(44439,'trends_uint','itemid',36779),(44440,'events','itemid',36780),(44441,'history','itemid',36780),(44442,'history_log','itemid',36780),(44443,'history_str','itemid',36780),(44444,'history_text','itemid',36780),(44445,'history_uint','itemid',36780),(44446,'trends','itemid',36780),(44447,'trends_uint','itemid',36780),(44448,'events','itemid',39742),(44449,'history','itemid',39742),(44450,'history_log','itemid',39742),(44451,'history_str','itemid',39742),(44452,'history_text','itemid',39742),(44453,'history_uint','itemid',39742),(44454,'trends','itemid',39742),(44455,'trends_uint','itemid',39742),(44456,'events','itemid',39743),(44457,'history','itemid',39743),(44458,'history_log','itemid',39743),(44459,'history_str','itemid',39743),(44460,'history_text','itemid',39743),(44461,'history_uint','itemid',39743),(44462,'trends','itemid',39743),(44463,'trends_uint','itemid',39743),(44464,'events','itemid',39744),(44465,'history','itemid',39744),(44466,'history_log','itemid',39744),(44467,'history_str','itemid',39744),(44468,'history_text','itemid',39744),(44469,'history_uint','itemid',39744),(44470,'trends','itemid',39744),(44471,'trends_uint','itemid',39744),(44472,'events','itemid',39745),(44473,'history','itemid',39745),(44474,'history_log','itemid',39745),(44475,'history_str','itemid',39745),(44476,'history_text','itemid',39745),(44477,'history_uint','itemid',39745),(44478,'trends','itemid',39745),(44479,'trends_uint','itemid',39745),(44480,'events','itemid',39746),(44481,'history','itemid',39746),(44482,'history_log','itemid',39746),(44483,'history_str','itemid',39746),(44484,'history_text','itemid',39746),(44485,'history_uint','itemid',39746),(44486,'trends','itemid',39746),(44487,'trends_uint','itemid',39746),(44488,'events','itemid',39747),(44489,'history','itemid',39747),(44490,'history_log','itemid',39747),(44491,'history_str','itemid',39747),(44492,'history_text','itemid',39747),(44493,'history_uint','itemid',39747),(44494,'trends','itemid',39747),(44495,'trends_uint','itemid',39747),(44496,'events','itemid',39748),(44497,'history','itemid',39748),(44498,'history_log','itemid',39748),(44499,'history_str','itemid',39748),(44500,'history_text','itemid',39748),(44501,'history_uint','itemid',39748),(44502,'trends','itemid',39748),(44503,'trends_uint','itemid',39748),(44504,'events','itemid',39821),(44505,'history','itemid',39821),(44506,'history_log','itemid',39821),(44507,'history_str','itemid',39821),(44508,'history_text','itemid',39821),(44509,'history_uint','itemid',39821),(44510,'trends','itemid',39821),(44511,'trends_uint','itemid',39821),(44512,'events','itemid',39824),(44513,'history','itemid',39824),(44514,'history_log','itemid',39824),(44515,'history_str','itemid',39824),(44516,'history_text','itemid',39824),(44517,'history_uint','itemid',39824),(44518,'trends','itemid',39824),(44519,'trends_uint','itemid',39824),(44520,'events','itemid',39825),(44521,'history','itemid',39825),(44522,'history_log','itemid',39825),(44523,'history_str','itemid',39825),(44524,'history_text','itemid',39825),(44525,'history_uint','itemid',39825),(44526,'trends','itemid',39825),(44527,'trends_uint','itemid',39825),(44528,'events','itemid',40185),(44529,'history','itemid',40185),(44530,'history_log','itemid',40185),(44531,'history_str','itemid',40185),(44532,'history_text','itemid',40185),(44533,'history_uint','itemid',40185),(44534,'trends','itemid',40185),(44535,'trends_uint','itemid',40185),(44536,'events','itemid',40186),(44537,'history','itemid',40186),(44538,'history_log','itemid',40186),(44539,'history_str','itemid',40186),(44540,'history_text','itemid',40186),(44541,'history_uint','itemid',40186),(44542,'trends','itemid',40186),(44543,'trends_uint','itemid',40186),(44544,'events','itemid',40187),(44545,'history','itemid',40187),(44546,'history_log','itemid',40187),(44547,'history_str','itemid',40187),(44548,'history_text','itemid',40187),(44549,'history_uint','itemid',40187),(44550,'trends','itemid',40187),(44551,'trends_uint','itemid',40187),(44552,'events','itemid',40188),(44553,'history','itemid',40188),(44554,'history_log','itemid',40188),(44555,'history_str','itemid',40188),(44556,'history_text','itemid',40188),(44557,'history_uint','itemid',40188),(44558,'trends','itemid',40188),(44559,'trends_uint','itemid',40188),(44560,'events','itemid',40189),(44561,'history','itemid',40189),(44562,'history_log','itemid',40189),(44563,'history_str','itemid',40189),(44564,'history_text','itemid',40189),(44565,'history_uint','itemid',40189),(44566,'trends','itemid',40189),(44567,'trends_uint','itemid',40189),(44568,'events','itemid',42110),(44569,'history','itemid',42110),(44570,'history_log','itemid',42110),(44571,'history_str','itemid',42110),(44572,'history_text','itemid',42110),(44573,'history_uint','itemid',42110),(44574,'trends','itemid',42110),(44575,'trends_uint','itemid',42110),(44576,'events','itemid',42111),(44577,'history','itemid',42111),(44578,'history_log','itemid',42111),(44579,'history_str','itemid',42111),(44580,'history_text','itemid',42111),(44581,'history_uint','itemid',42111),(44582,'trends','itemid',42111),(44583,'trends_uint','itemid',42111),(44584,'events','itemid',42112),(44585,'history','itemid',42112),(44586,'history_log','itemid',42112),(44587,'history_str','itemid',42112),(44588,'history_text','itemid',42112),(44589,'history_uint','itemid',42112),(44590,'trends','itemid',42112),(44591,'trends_uint','itemid',42112),(44592,'events','itemid',42113),(44593,'history','itemid',42113),(44594,'history_log','itemid',42113),(44595,'history_str','itemid',42113),(44596,'history_text','itemid',42113),(44597,'history_uint','itemid',42113),(44598,'trends','itemid',42113),(44599,'trends_uint','itemid',42113),(44600,'events','itemid',42114),(44601,'history','itemid',42114),(44602,'history_log','itemid',42114),(44603,'history_str','itemid',42114),(44604,'history_text','itemid',42114),(44605,'history_uint','itemid',42114),(44606,'trends','itemid',42114),(44607,'trends_uint','itemid',42114),(44608,'events','itemid',42115),(44609,'history','itemid',42115),(44610,'history_log','itemid',42115),(44611,'history_str','itemid',42115),(44612,'history_text','itemid',42115),(44613,'history_uint','itemid',42115),(44614,'trends','itemid',42115),(44615,'trends_uint','itemid',42115),(44616,'events','itemid',42116),(44617,'history','itemid',42116),(44618,'history_log','itemid',42116),(44619,'history_str','itemid',42116),(44620,'history_text','itemid',42116),(44621,'history_uint','itemid',42116),(44622,'trends','itemid',42116),(44623,'trends_uint','itemid',42116),(44624,'events','itemid',42117),(44625,'history','itemid',42117),(44626,'history_log','itemid',42117),(44627,'history_str','itemid',42117),(44628,'history_text','itemid',42117),(44629,'history_uint','itemid',42117),(44630,'trends','itemid',42117),(44631,'trends_uint','itemid',42117),(44632,'events','itemid',42118),(44633,'history','itemid',42118),(44634,'history_log','itemid',42118),(44635,'history_str','itemid',42118),(44636,'history_text','itemid',42118),(44637,'history_uint','itemid',42118),(44638,'trends','itemid',42118),(44639,'trends_uint','itemid',42118),(44640,'events','itemid',42119),(44641,'history','itemid',42119),(44642,'history_log','itemid',42119),(44643,'history_str','itemid',42119),(44644,'history_text','itemid',42119),(44645,'history_uint','itemid',42119),(44646,'trends','itemid',42119),(44647,'trends_uint','itemid',42119),(44648,'events','itemid',42120),(44649,'history','itemid',42120),(44650,'history_log','itemid',42120),(44651,'history_str','itemid',42120),(44652,'history_text','itemid',42120),(44653,'history_uint','itemid',42120),(44654,'trends','itemid',42120),(44655,'trends_uint','itemid',42120),(44656,'events','itemid',42133),(44657,'history','itemid',42133),(44658,'history_log','itemid',42133),(44659,'history_str','itemid',42133),(44660,'history_text','itemid',42133),(44661,'history_uint','itemid',42133),(44662,'trends','itemid',42133),(44663,'trends_uint','itemid',42133),(44664,'events','itemid',42134),(44665,'history','itemid',42134),(44666,'history_log','itemid',42134),(44667,'history_str','itemid',42134),(44668,'history_text','itemid',42134),(44669,'history_uint','itemid',42134),(44670,'trends','itemid',42134),(44671,'trends_uint','itemid',42134),(44672,'events','itemid',42135),(44673,'history','itemid',42135),(44674,'history_log','itemid',42135),(44675,'history_str','itemid',42135),(44676,'history_text','itemid',42135),(44677,'history_uint','itemid',42135),(44678,'trends','itemid',42135),(44679,'trends_uint','itemid',42135),(44680,'events','itemid',42136),(44681,'history','itemid',42136),(44682,'history_log','itemid',42136),(44683,'history_str','itemid',42136),(44684,'history_text','itemid',42136),(44685,'history_uint','itemid',42136),(44686,'trends','itemid',42136),(44687,'trends_uint','itemid',42136),(44688,'events','itemid',42137),(44689,'history','itemid',42137),(44690,'history_log','itemid',42137),(44691,'history_str','itemid',42137),(44692,'history_text','itemid',42137),(44693,'history_uint','itemid',42137),(44694,'trends','itemid',42137),(44695,'trends_uint','itemid',42137),(44696,'events','itemid',42138),(44697,'history','itemid',42138),(44698,'history_log','itemid',42138),(44699,'history_str','itemid',42138),(44700,'history_text','itemid',42138),(44701,'history_uint','itemid',42138),(44702,'trends','itemid',42138),(44703,'trends_uint','itemid',42138),(44704,'events','itemid',42139),(44705,'history','itemid',42139),(44706,'history_log','itemid',42139),(44707,'history_str','itemid',42139),(44708,'history_text','itemid',42139),(44709,'history_uint','itemid',42139),(44710,'trends','itemid',42139),(44711,'trends_uint','itemid',42139),(44712,'events','itemid',42140),(44713,'history','itemid',42140),(44714,'history_log','itemid',42140),(44715,'history_str','itemid',42140),(44716,'history_text','itemid',42140),(44717,'history_uint','itemid',42140),(44718,'trends','itemid',42140),(44719,'trends_uint','itemid',42140),(44720,'events','itemid',42141),(44721,'history','itemid',42141),(44722,'history_log','itemid',42141),(44723,'history_str','itemid',42141),(44724,'history_text','itemid',42141),(44725,'history_uint','itemid',42141),(44726,'trends','itemid',42141),(44727,'trends_uint','itemid',42141),(44728,'events','itemid',42142),(44729,'history','itemid',42142),(44730,'history_log','itemid',42142),(44731,'history_str','itemid',42142),(44732,'history_text','itemid',42142),(44733,'history_uint','itemid',42142),(44734,'trends','itemid',42142),(44735,'trends_uint','itemid',42142),(44736,'events','itemid',42143),(44737,'history','itemid',42143),(44738,'history_log','itemid',42143),(44739,'history_str','itemid',42143),(44740,'history_text','itemid',42143),(44741,'history_uint','itemid',42143),(44742,'trends','itemid',42143),(44743,'trends_uint','itemid',42143),(44744,'events','itemid',42154),(44745,'history','itemid',42154),(44746,'history_log','itemid',42154),(44747,'history_str','itemid',42154),(44748,'history_text','itemid',42154),(44749,'history_uint','itemid',42154),(44750,'trends','itemid',42154),(44751,'trends_uint','itemid',42154),(44752,'events','itemid',42155),(44753,'history','itemid',42155),(44754,'history_log','itemid',42155),(44755,'history_str','itemid',42155),(44756,'history_text','itemid',42155),(44757,'history_uint','itemid',42155),(44758,'trends','itemid',42155),(44759,'trends_uint','itemid',42155),(44760,'events','itemid',42156),(44761,'history','itemid',42156),(44762,'history_log','itemid',42156),(44763,'history_str','itemid',42156),(44764,'history_text','itemid',42156),(44765,'history_uint','itemid',42156),(44766,'trends','itemid',42156),(44767,'trends_uint','itemid',42156),(44768,'events','itemid',42157),(44769,'history','itemid',42157),(44770,'history_log','itemid',42157),(44771,'history_str','itemid',42157),(44772,'history_text','itemid',42157),(44773,'history_uint','itemid',42157),(44774,'trends','itemid',42157),(44775,'trends_uint','itemid',42157),(44776,'events','itemid',42158),(44777,'history','itemid',42158),(44778,'history_log','itemid',42158),(44779,'history_str','itemid',42158),(44780,'history_text','itemid',42158),(44781,'history_uint','itemid',42158),(44782,'trends','itemid',42158),(44783,'trends_uint','itemid',42158),(44784,'events','itemid',42159),(44785,'history','itemid',42159),(44786,'history_log','itemid',42159),(44787,'history_str','itemid',42159),(44788,'history_text','itemid',42159),(44789,'history_uint','itemid',42159),(44790,'trends','itemid',42159),(44791,'trends_uint','itemid',42159),(44792,'events','itemid',42160),(44793,'history','itemid',42160),(44794,'history_log','itemid',42160),(44795,'history_str','itemid',42160),(44796,'history_text','itemid',42160),(44797,'history_uint','itemid',42160),(44798,'trends','itemid',42160),(44799,'trends_uint','itemid',42160),(44800,'events','itemid',42161),(44801,'history','itemid',42161),(44802,'history_log','itemid',42161),(44803,'history_str','itemid',42161),(44804,'history_text','itemid',42161),(44805,'history_uint','itemid',42161),(44806,'trends','itemid',42161),(44807,'trends_uint','itemid',42161),(44808,'events','itemid',42162),(44809,'history','itemid',42162),(44810,'history_log','itemid',42162),(44811,'history_str','itemid',42162),(44812,'history_text','itemid',42162),(44813,'history_uint','itemid',42162),(44814,'trends','itemid',42162),(44815,'trends_uint','itemid',42162),(44816,'events','itemid',42163),(44817,'history','itemid',42163),(44818,'history_log','itemid',42163),(44819,'history_str','itemid',42163),(44820,'history_text','itemid',42163),(44821,'history_uint','itemid',42163),(44822,'trends','itemid',42163),(44823,'trends_uint','itemid',42163),(44824,'events','itemid',42164),(44825,'history','itemid',42164),(44826,'history_log','itemid',42164),(44827,'history_str','itemid',42164),(44828,'history_text','itemid',42164),(44829,'history_uint','itemid',42164),(44830,'trends','itemid',42164),(44831,'trends_uint','itemid',42164),(44832,'events','itemid',42451),(44833,'history','itemid',42451),(44834,'history_log','itemid',42451),(44835,'history_str','itemid',42451),(44836,'history_text','itemid',42451),(44837,'history_uint','itemid',42451),(44838,'trends','itemid',42451),(44839,'trends_uint','itemid',42451),(44840,'events','itemid',42452),(44841,'history','itemid',42452),(44842,'history_log','itemid',42452),(44843,'history_str','itemid',42452),(44844,'history_text','itemid',42452),(44845,'history_uint','itemid',42452),(44846,'trends','itemid',42452),(44847,'trends_uint','itemid',42452),(44848,'events','itemid',42453),(44849,'history','itemid',42453),(44850,'history_log','itemid',42453),(44851,'history_str','itemid',42453),(44852,'history_text','itemid',42453),(44853,'history_uint','itemid',42453),(44854,'trends','itemid',42453),(44855,'trends_uint','itemid',42453),(44856,'events','itemid',42454),(44857,'history','itemid',42454),(44858,'history_log','itemid',42454),(44859,'history_str','itemid',42454),(44860,'history_text','itemid',42454),(44861,'history_uint','itemid',42454),(44862,'trends','itemid',42454),(44863,'trends_uint','itemid',42454),(44864,'events','itemid',42455),(44865,'history','itemid',42455),(44866,'history_log','itemid',42455),(44867,'history_str','itemid',42455),(44868,'history_text','itemid',42455),(44869,'history_uint','itemid',42455),(44870,'trends','itemid',42455),(44871,'trends_uint','itemid',42455),(44872,'events','itemid',42456),(44873,'history','itemid',42456),(44874,'history_log','itemid',42456),(44875,'history_str','itemid',42456),(44876,'history_text','itemid',42456),(44877,'history_uint','itemid',42456),(44878,'trends','itemid',42456),(44879,'trends_uint','itemid',42456),(44880,'events','itemid',42457),(44881,'history','itemid',42457),(44882,'history_log','itemid',42457),(44883,'history_str','itemid',42457),(44884,'history_text','itemid',42457),(44885,'history_uint','itemid',42457),(44886,'trends','itemid',42457),(44887,'trends_uint','itemid',42457),(44888,'events','itemid',42458),(44889,'history','itemid',42458),(44890,'history_log','itemid',42458),(44891,'history_str','itemid',42458),(44892,'history_text','itemid',42458),(44893,'history_uint','itemid',42458),(44894,'trends','itemid',42458),(44895,'trends_uint','itemid',42458),(44896,'events','itemid',42459),(44897,'history','itemid',42459),(44898,'history_log','itemid',42459),(44899,'history_str','itemid',42459),(44900,'history_text','itemid',42459),(44901,'history_uint','itemid',42459),(44902,'trends','itemid',42459),(44903,'trends_uint','itemid',42459),(44904,'events','itemid',42460),(44905,'history','itemid',42460),(44906,'history_log','itemid',42460),(44907,'history_str','itemid',42460),(44908,'history_text','itemid',42460),(44909,'history_uint','itemid',42460),(44910,'trends','itemid',42460),(44911,'trends_uint','itemid',42460),(44912,'events','itemid',42461),(44913,'history','itemid',42461),(44914,'history_log','itemid',42461),(44915,'history_str','itemid',42461),(44916,'history_text','itemid',42461),(44917,'history_uint','itemid',42461),(44918,'trends','itemid',42461),(44919,'trends_uint','itemid',42461),(44920,'events','itemid',42462),(44921,'history','itemid',42462),(44922,'history_log','itemid',42462),(44923,'history_str','itemid',42462),(44924,'history_text','itemid',42462),(44925,'history_uint','itemid',42462),(44926,'trends','itemid',42462),(44927,'trends_uint','itemid',42462),(44928,'events','itemid',42463),(44929,'history','itemid',42463),(44930,'history_log','itemid',42463),(44931,'history_str','itemid',42463),(44932,'history_text','itemid',42463),(44933,'history_uint','itemid',42463),(44934,'trends','itemid',42463),(44935,'trends_uint','itemid',42463),(44936,'events','itemid',42464),(44937,'history','itemid',42464),(44938,'history_log','itemid',42464),(44939,'history_str','itemid',42464),(44940,'history_text','itemid',42464),(44941,'history_uint','itemid',42464),(44942,'trends','itemid',42464),(44943,'trends_uint','itemid',42464),(44944,'events','itemid',42465),(44945,'history','itemid',42465),(44946,'history_log','itemid',42465),(44947,'history_str','itemid',42465),(44948,'history_text','itemid',42465),(44949,'history_uint','itemid',42465),(44950,'trends','itemid',42465),(44951,'trends_uint','itemid',42465),(44952,'events','itemid',42466),(44953,'history','itemid',42466),(44954,'history_log','itemid',42466),(44955,'history_str','itemid',42466),(44956,'history_text','itemid',42466),(44957,'history_uint','itemid',42466),(44958,'trends','itemid',42466),(44959,'trends_uint','itemid',42466),(44960,'events','itemid',42467),(44961,'history','itemid',42467),(44962,'history_log','itemid',42467),(44963,'history_str','itemid',42467),(44964,'history_text','itemid',42467),(44965,'history_uint','itemid',42467),(44966,'trends','itemid',42467),(44967,'trends_uint','itemid',42467),(44968,'events','itemid',42468),(44969,'history','itemid',42468),(44970,'history_log','itemid',42468),(44971,'history_str','itemid',42468),(44972,'history_text','itemid',42468),(44973,'history_uint','itemid',42468),(44974,'trends','itemid',42468),(44975,'trends_uint','itemid',42468),(44976,'events','itemid',42469),(44977,'history','itemid',42469),(44978,'history_log','itemid',42469),(44979,'history_str','itemid',42469),(44980,'history_text','itemid',42469),(44981,'history_uint','itemid',42469),(44982,'trends','itemid',42469),(44983,'trends_uint','itemid',42469),(44984,'events','itemid',42470),(44985,'history','itemid',42470),(44986,'history_log','itemid',42470),(44987,'history_str','itemid',42470),(44988,'history_text','itemid',42470),(44989,'history_uint','itemid',42470),(44990,'trends','itemid',42470),(44991,'trends_uint','itemid',42470),(44992,'events','itemid',42471),(44993,'history','itemid',42471),(44994,'history_log','itemid',42471),(44995,'history_str','itemid',42471),(44996,'history_text','itemid',42471),(44997,'history_uint','itemid',42471),(44998,'trends','itemid',42471),(44999,'trends_uint','itemid',42471),(45000,'events','itemid',42472),(45001,'history','itemid',42472),(45002,'history_log','itemid',42472),(45003,'history_str','itemid',42472),(45004,'history_text','itemid',42472),(45005,'history_uint','itemid',42472),(45006,'trends','itemid',42472),(45007,'trends_uint','itemid',42472),(45008,'events','itemid',42473),(45009,'history','itemid',42473),(45010,'history_log','itemid',42473),(45011,'history_str','itemid',42473),(45012,'history_text','itemid',42473),(45013,'history_uint','itemid',42473),(45014,'trends','itemid',42473),(45015,'trends_uint','itemid',42473),(45016,'events','itemid',42474),(45017,'history','itemid',42474),(45018,'history_log','itemid',42474),(45019,'history_str','itemid',42474),(45020,'history_text','itemid',42474),(45021,'history_uint','itemid',42474),(45022,'trends','itemid',42474),(45023,'trends_uint','itemid',42474),(45024,'events','itemid',42475),(45025,'history','itemid',42475),(45026,'history_log','itemid',42475),(45027,'history_str','itemid',42475),(45028,'history_text','itemid',42475),(45029,'history_uint','itemid',42475),(45030,'trends','itemid',42475),(45031,'trends_uint','itemid',42475),(45032,'events','itemid',42476),(45033,'history','itemid',42476),(45034,'history_log','itemid',42476),(45035,'history_str','itemid',42476),(45036,'history_text','itemid',42476),(45037,'history_uint','itemid',42476),(45038,'trends','itemid',42476),(45039,'trends_uint','itemid',42476),(45040,'events','itemid',42477),(45041,'history','itemid',42477),(45042,'history_log','itemid',42477),(45043,'history_str','itemid',42477),(45044,'history_text','itemid',42477),(45045,'history_uint','itemid',42477),(45046,'trends','itemid',42477),(45047,'trends_uint','itemid',42477),(45048,'events','itemid',42478),(45049,'history','itemid',42478),(45050,'history_log','itemid',42478),(45051,'history_str','itemid',42478),(45052,'history_text','itemid',42478),(45053,'history_uint','itemid',42478),(45054,'trends','itemid',42478),(45055,'trends_uint','itemid',42478),(45056,'events','itemid',42479),(45057,'history','itemid',42479),(45058,'history_log','itemid',42479),(45059,'history_str','itemid',42479),(45060,'history_text','itemid',42479),(45061,'history_uint','itemid',42479),(45062,'trends','itemid',42479),(45063,'trends_uint','itemid',42479),(45064,'events','itemid',42480),(45065,'history','itemid',42480),(45066,'history_log','itemid',42480),(45067,'history_str','itemid',42480),(45068,'history_text','itemid',42480),(45069,'history_uint','itemid',42480),(45070,'trends','itemid',42480),(45071,'trends_uint','itemid',42480),(45072,'events','itemid',42481),(45073,'history','itemid',42481),(45074,'history_log','itemid',42481),(45075,'history_str','itemid',42481),(45076,'history_text','itemid',42481),(45077,'history_uint','itemid',42481),(45078,'trends','itemid',42481),(45079,'trends_uint','itemid',42481),(45080,'events','itemid',42482),(45081,'history','itemid',42482),(45082,'history_log','itemid',42482),(45083,'history_str','itemid',42482),(45084,'history_text','itemid',42482),(45085,'history_uint','itemid',42482),(45086,'trends','itemid',42482),(45087,'trends_uint','itemid',42482),(45088,'events','itemid',42483),(45089,'history','itemid',42483),(45090,'history_log','itemid',42483),(45091,'history_str','itemid',42483),(45092,'history_text','itemid',42483),(45093,'history_uint','itemid',42483),(45094,'trends','itemid',42483),(45095,'trends_uint','itemid',42483),(45096,'events','itemid',42484),(45097,'history','itemid',42484),(45098,'history_log','itemid',42484),(45099,'history_str','itemid',42484),(45100,'history_text','itemid',42484),(45101,'history_uint','itemid',42484),(45102,'trends','itemid',42484),(45103,'trends_uint','itemid',42484),(45104,'events','itemid',42485),(45105,'history','itemid',42485),(45106,'history_log','itemid',42485),(45107,'history_str','itemid',42485),(45108,'history_text','itemid',42485),(45109,'history_uint','itemid',42485),(45110,'trends','itemid',42485),(45111,'trends_uint','itemid',42485),(45112,'events','itemid',42486),(45113,'history','itemid',42486),(45114,'history_log','itemid',42486),(45115,'history_str','itemid',42486),(45116,'history_text','itemid',42486),(45117,'history_uint','itemid',42486),(45118,'trends','itemid',42486),(45119,'trends_uint','itemid',42486),(45120,'events','itemid',42512),(45121,'history','itemid',42512),(45122,'history_log','itemid',42512),(45123,'history_str','itemid',42512),(45124,'history_text','itemid',42512),(45125,'history_uint','itemid',42512),(45126,'trends','itemid',42512),(45127,'trends_uint','itemid',42512),(45128,'events','itemid',42513),(45129,'history','itemid',42513),(45130,'history_log','itemid',42513),(45131,'history_str','itemid',42513),(45132,'history_text','itemid',42513),(45133,'history_uint','itemid',42513),(45134,'trends','itemid',42513),(45135,'trends_uint','itemid',42513),(45136,'events','itemid',42514),(45137,'history','itemid',42514),(45138,'history_log','itemid',42514),(45139,'history_str','itemid',42514),(45140,'history_text','itemid',42514),(45141,'history_uint','itemid',42514),(45142,'trends','itemid',42514),(45143,'trends_uint','itemid',42514),(45144,'events','itemid',42515),(45145,'history','itemid',42515),(45146,'history_log','itemid',42515),(45147,'history_str','itemid',42515),(45148,'history_text','itemid',42515),(45149,'history_uint','itemid',42515),(45150,'trends','itemid',42515),(45151,'trends_uint','itemid',42515),(45152,'events','itemid',42516),(45153,'history','itemid',42516),(45154,'history_log','itemid',42516),(45155,'history_str','itemid',42516),(45156,'history_text','itemid',42516),(45157,'history_uint','itemid',42516),(45158,'trends','itemid',42516),(45159,'trends_uint','itemid',42516),(45160,'events','itemid',42517),(45161,'history','itemid',42517),(45162,'history_log','itemid',42517),(45163,'history_str','itemid',42517),(45164,'history_text','itemid',42517),(45165,'history_uint','itemid',42517),(45166,'trends','itemid',42517),(45167,'trends_uint','itemid',42517),(45168,'events','itemid',42518),(45169,'history','itemid',42518),(45170,'history_log','itemid',42518),(45171,'history_str','itemid',42518),(45172,'history_text','itemid',42518),(45173,'history_uint','itemid',42518),(45174,'trends','itemid',42518),(45175,'trends_uint','itemid',42518),(45176,'events','itemid',42519),(45177,'history','itemid',42519),(45178,'history_log','itemid',42519),(45179,'history_str','itemid',42519),(45180,'history_text','itemid',42519),(45181,'history_uint','itemid',42519),(45182,'trends','itemid',42519),(45183,'trends_uint','itemid',42519),(45184,'events','itemid',42520),(45185,'history','itemid',42520),(45186,'history_log','itemid',42520),(45187,'history_str','itemid',42520),(45188,'history_text','itemid',42520),(45189,'history_uint','itemid',42520),(45190,'trends','itemid',42520),(45191,'trends_uint','itemid',42520),(45192,'events','itemid',42521),(45193,'history','itemid',42521),(45194,'history_log','itemid',42521),(45195,'history_str','itemid',42521),(45196,'history_text','itemid',42521),(45197,'history_uint','itemid',42521),(45198,'trends','itemid',42521),(45199,'trends_uint','itemid',42521),(45200,'events','itemid',42522),(45201,'history','itemid',42522),(45202,'history_log','itemid',42522),(45203,'history_str','itemid',42522),(45204,'history_text','itemid',42522),(45205,'history_uint','itemid',42522),(45206,'trends','itemid',42522),(45207,'trends_uint','itemid',42522),(45208,'events','itemid',42523),(45209,'history','itemid',42523),(45210,'history_log','itemid',42523),(45211,'history_str','itemid',42523),(45212,'history_text','itemid',42523),(45213,'history_uint','itemid',42523),(45214,'trends','itemid',42523),(45215,'trends_uint','itemid',42523),(45216,'events','itemid',42524),(45217,'history','itemid',42524),(45218,'history_log','itemid',42524),(45219,'history_str','itemid',42524),(45220,'history_text','itemid',42524),(45221,'history_uint','itemid',42524),(45222,'trends','itemid',42524),(45223,'trends_uint','itemid',42524),(45224,'events','itemid',42525),(45225,'history','itemid',42525),(45226,'history_log','itemid',42525),(45227,'history_str','itemid',42525),(45228,'history_text','itemid',42525),(45229,'history_uint','itemid',42525),(45230,'trends','itemid',42525),(45231,'trends_uint','itemid',42525),(45232,'events','itemid',42526),(45233,'history','itemid',42526),(45234,'history_log','itemid',42526),(45235,'history_str','itemid',42526),(45236,'history_text','itemid',42526),(45237,'history_uint','itemid',42526),(45238,'trends','itemid',42526),(45239,'trends_uint','itemid',42526),(45240,'events','itemid',42527),(45241,'history','itemid',42527),(45242,'history_log','itemid',42527),(45243,'history_str','itemid',42527),(45244,'history_text','itemid',42527),(45245,'history_uint','itemid',42527),(45246,'trends','itemid',42527),(45247,'trends_uint','itemid',42527),(45248,'events','itemid',42528),(45249,'history','itemid',42528),(45250,'history_log','itemid',42528),(45251,'history_str','itemid',42528),(45252,'history_text','itemid',42528),(45253,'history_uint','itemid',42528),(45254,'trends','itemid',42528),(45255,'trends_uint','itemid',42528),(45256,'events','itemid',42529),(45257,'history','itemid',42529),(45258,'history_log','itemid',42529),(45259,'history_str','itemid',42529),(45260,'history_text','itemid',42529),(45261,'history_uint','itemid',42529),(45262,'trends','itemid',42529),(45263,'trends_uint','itemid',42529),(45264,'events','itemid',42530),(45265,'history','itemid',42530),(45266,'history_log','itemid',42530),(45267,'history_str','itemid',42530),(45268,'history_text','itemid',42530),(45269,'history_uint','itemid',42530),(45270,'trends','itemid',42530),(45271,'trends_uint','itemid',42530),(45272,'events','itemid',42531),(45273,'history','itemid',42531),(45274,'history_log','itemid',42531),(45275,'history_str','itemid',42531),(45276,'history_text','itemid',42531),(45277,'history_uint','itemid',42531),(45278,'trends','itemid',42531),(45279,'trends_uint','itemid',42531),(45280,'events','itemid',42532),(45281,'history','itemid',42532),(45282,'history_log','itemid',42532),(45283,'history_str','itemid',42532),(45284,'history_text','itemid',42532),(45285,'history_uint','itemid',42532),(45286,'trends','itemid',42532),(45287,'trends_uint','itemid',42532),(45288,'events','itemid',42533),(45289,'history','itemid',42533),(45290,'history_log','itemid',42533),(45291,'history_str','itemid',42533),(45292,'history_text','itemid',42533),(45293,'history_uint','itemid',42533),(45294,'trends','itemid',42533),(45295,'trends_uint','itemid',42533),(45296,'events','itemid',42534),(45297,'history','itemid',42534),(45298,'history_log','itemid',42534),(45299,'history_str','itemid',42534),(45300,'history_text','itemid',42534),(45301,'history_uint','itemid',42534),(45302,'trends','itemid',42534),(45303,'trends_uint','itemid',42534),(45304,'events','itemid',42535),(45305,'history','itemid',42535),(45306,'history_log','itemid',42535),(45307,'history_str','itemid',42535),(45308,'history_text','itemid',42535),(45309,'history_uint','itemid',42535),(45310,'trends','itemid',42535),(45311,'trends_uint','itemid',42535),(45312,'events','itemid',42536),(45313,'history','itemid',42536),(45314,'history_log','itemid',42536),(45315,'history_str','itemid',42536),(45316,'history_text','itemid',42536),(45317,'history_uint','itemid',42536),(45318,'trends','itemid',42536),(45319,'trends_uint','itemid',42536),(45320,'events','itemid',42537),(45321,'history','itemid',42537),(45322,'history_log','itemid',42537),(45323,'history_str','itemid',42537),(45324,'history_text','itemid',42537),(45325,'history_uint','itemid',42537),(45326,'trends','itemid',42537),(45327,'trends_uint','itemid',42537),(45328,'events','itemid',42538),(45329,'history','itemid',42538),(45330,'history_log','itemid',42538),(45331,'history_str','itemid',42538),(45332,'history_text','itemid',42538),(45333,'history_uint','itemid',42538),(45334,'trends','itemid',42538),(45335,'trends_uint','itemid',42538),(45336,'events','itemid',42539),(45337,'history','itemid',42539),(45338,'history_log','itemid',42539),(45339,'history_str','itemid',42539),(45340,'history_text','itemid',42539),(45341,'history_uint','itemid',42539),(45342,'trends','itemid',42539),(45343,'trends_uint','itemid',42539),(45344,'events','itemid',42540),(45345,'history','itemid',42540),(45346,'history_log','itemid',42540),(45347,'history_str','itemid',42540),(45348,'history_text','itemid',42540),(45349,'history_uint','itemid',42540),(45350,'trends','itemid',42540),(45351,'trends_uint','itemid',42540),(45352,'events','itemid',42541),(45353,'history','itemid',42541),(45354,'history_log','itemid',42541),(45355,'history_str','itemid',42541),(45356,'history_text','itemid',42541),(45357,'history_uint','itemid',42541),(45358,'trends','itemid',42541),(45359,'trends_uint','itemid',42541),(45360,'events','itemid',42542),(45361,'history','itemid',42542),(45362,'history_log','itemid',42542),(45363,'history_str','itemid',42542),(45364,'history_text','itemid',42542),(45365,'history_uint','itemid',42542),(45366,'trends','itemid',42542),(45367,'trends_uint','itemid',42542),(45368,'events','itemid',42568),(45369,'history','itemid',42568),(45370,'history_log','itemid',42568),(45371,'history_str','itemid',42568),(45372,'history_text','itemid',42568),(45373,'history_uint','itemid',42568),(45374,'trends','itemid',42568),(45375,'trends_uint','itemid',42568),(45376,'events','itemid',42569),(45377,'history','itemid',42569),(45378,'history_log','itemid',42569),(45379,'history_str','itemid',42569),(45380,'history_text','itemid',42569),(45381,'history_uint','itemid',42569),(45382,'trends','itemid',42569),(45383,'trends_uint','itemid',42569),(45384,'events','itemid',42570),(45385,'history','itemid',42570),(45386,'history_log','itemid',42570),(45387,'history_str','itemid',42570),(45388,'history_text','itemid',42570),(45389,'history_uint','itemid',42570),(45390,'trends','itemid',42570),(45391,'trends_uint','itemid',42570),(45392,'events','itemid',42571),(45393,'history','itemid',42571),(45394,'history_log','itemid',42571),(45395,'history_str','itemid',42571),(45396,'history_text','itemid',42571),(45397,'history_uint','itemid',42571),(45398,'trends','itemid',42571),(45399,'trends_uint','itemid',42571),(45400,'events','itemid',42572),(45401,'history','itemid',42572),(45402,'history_log','itemid',42572),(45403,'history_str','itemid',42572),(45404,'history_text','itemid',42572),(45405,'history_uint','itemid',42572),(45406,'trends','itemid',42572),(45407,'trends_uint','itemid',42572),(45408,'events','itemid',42573),(45409,'history','itemid',42573),(45410,'history_log','itemid',42573),(45411,'history_str','itemid',42573),(45412,'history_text','itemid',42573),(45413,'history_uint','itemid',42573),(45414,'trends','itemid',42573),(45415,'trends_uint','itemid',42573),(45416,'events','itemid',42574),(45417,'history','itemid',42574),(45418,'history_log','itemid',42574),(45419,'history_str','itemid',42574),(45420,'history_text','itemid',42574),(45421,'history_uint','itemid',42574),(45422,'trends','itemid',42574),(45423,'trends_uint','itemid',42574),(45424,'events','itemid',42575),(45425,'history','itemid',42575),(45426,'history_log','itemid',42575),(45427,'history_str','itemid',42575),(45428,'history_text','itemid',42575),(45429,'history_uint','itemid',42575),(45430,'trends','itemid',42575),(45431,'trends_uint','itemid',42575),(45432,'events','itemid',42576),(45433,'history','itemid',42576),(45434,'history_log','itemid',42576),(45435,'history_str','itemid',42576),(45436,'history_text','itemid',42576),(45437,'history_uint','itemid',42576),(45438,'trends','itemid',42576),(45439,'trends_uint','itemid',42576),(45440,'events','itemid',42577),(45441,'history','itemid',42577),(45442,'history_log','itemid',42577),(45443,'history_str','itemid',42577),(45444,'history_text','itemid',42577),(45445,'history_uint','itemid',42577),(45446,'trends','itemid',42577),(45447,'trends_uint','itemid',42577),(45448,'events','itemid',42578),(45449,'history','itemid',42578),(45450,'history_log','itemid',42578),(45451,'history_str','itemid',42578),(45452,'history_text','itemid',42578),(45453,'history_uint','itemid',42578),(45454,'trends','itemid',42578),(45455,'trends_uint','itemid',42578),(45456,'events','itemid',42579),(45457,'history','itemid',42579),(45458,'history_log','itemid',42579),(45459,'history_str','itemid',42579),(45460,'history_text','itemid',42579),(45461,'history_uint','itemid',42579),(45462,'trends','itemid',42579),(45463,'trends_uint','itemid',42579),(45464,'events','itemid',42664),(45465,'history','itemid',42664),(45466,'history_log','itemid',42664),(45467,'history_str','itemid',42664),(45468,'history_text','itemid',42664),(45469,'history_uint','itemid',42664),(45470,'trends','itemid',42664),(45471,'trends_uint','itemid',42664),(45472,'events','itemid',42665),(45473,'history','itemid',42665),(45474,'history_log','itemid',42665),(45475,'history_str','itemid',42665),(45476,'history_text','itemid',42665),(45477,'history_uint','itemid',42665),(45478,'trends','itemid',42665),(45479,'trends_uint','itemid',42665),(45480,'events','itemid',42666),(45481,'history','itemid',42666),(45482,'history_log','itemid',42666),(45483,'history_str','itemid',42666),(45484,'history_text','itemid',42666),(45485,'history_uint','itemid',42666),(45486,'trends','itemid',42666),(45487,'trends_uint','itemid',42666),(45488,'events','itemid',42667),(45489,'history','itemid',42667),(45490,'history_log','itemid',42667),(45491,'history_str','itemid',42667),(45492,'history_text','itemid',42667),(45493,'history_uint','itemid',42667),(45494,'trends','itemid',42667),(45495,'trends_uint','itemid',42667),(45496,'events','itemid',42668),(45497,'history','itemid',42668),(45498,'history_log','itemid',42668),(45499,'history_str','itemid',42668),(45500,'history_text','itemid',42668),(45501,'history_uint','itemid',42668),(45502,'trends','itemid',42668),(45503,'trends_uint','itemid',42668),(45504,'events','itemid',42669),(45505,'history','itemid',42669),(45506,'history_log','itemid',42669),(45507,'history_str','itemid',42669),(45508,'history_text','itemid',42669),(45509,'history_uint','itemid',42669),(45510,'trends','itemid',42669),(45511,'trends_uint','itemid',42669),(45512,'events','itemid',42670),(45513,'history','itemid',42670),(45514,'history_log','itemid',42670),(45515,'history_str','itemid',42670),(45516,'history_text','itemid',42670),(45517,'history_uint','itemid',42670),(45518,'trends','itemid',42670),(45519,'trends_uint','itemid',42670),(45520,'events','itemid',42671),(45521,'history','itemid',42671),(45522,'history_log','itemid',42671),(45523,'history_str','itemid',42671),(45524,'history_text','itemid',42671),(45525,'history_uint','itemid',42671),(45526,'trends','itemid',42671),(45527,'trends_uint','itemid',42671),(45528,'events','itemid',42672),(45529,'history','itemid',42672),(45530,'history_log','itemid',42672),(45531,'history_str','itemid',42672),(45532,'history_text','itemid',42672),(45533,'history_uint','itemid',42672),(45534,'trends','itemid',42672),(45535,'trends_uint','itemid',42672),(45536,'events','itemid',42673),(45537,'history','itemid',42673),(45538,'history_log','itemid',42673),(45539,'history_str','itemid',42673),(45540,'history_text','itemid',42673),(45541,'history_uint','itemid',42673),(45542,'trends','itemid',42673),(45543,'trends_uint','itemid',42673),(45544,'events','itemid',42674),(45545,'history','itemid',42674),(45546,'history_log','itemid',42674),(45547,'history_str','itemid',42674),(45548,'history_text','itemid',42674),(45549,'history_uint','itemid',42674),(45550,'trends','itemid',42674),(45551,'trends_uint','itemid',42674),(45552,'events','itemid',42676),(45553,'history','itemid',42676),(45554,'history_log','itemid',42676),(45555,'history_str','itemid',42676),(45556,'history_text','itemid',42676),(45557,'history_uint','itemid',42676),(45558,'trends','itemid',42676),(45559,'trends_uint','itemid',42676),(45560,'events','itemid',42677),(45561,'history','itemid',42677),(45562,'history_log','itemid',42677),(45563,'history_str','itemid',42677),(45564,'history_text','itemid',42677),(45565,'history_uint','itemid',42677),(45566,'trends','itemid',42677),(45567,'trends_uint','itemid',42677),(45568,'events','itemid',42738),(45569,'history','itemid',42738),(45570,'history_log','itemid',42738),(45571,'history_str','itemid',42738),(45572,'history_text','itemid',42738),(45573,'history_uint','itemid',42738),(45574,'trends','itemid',42738),(45575,'trends_uint','itemid',42738),(45576,'events','itemid',42739),(45577,'history','itemid',42739),(45578,'history_log','itemid',42739),(45579,'history_str','itemid',42739),(45580,'history_text','itemid',42739),(45581,'history_uint','itemid',42739),(45582,'trends','itemid',42739),(45583,'trends_uint','itemid',42739),(45584,'events','itemid',42740),(45585,'history','itemid',42740),(45586,'history_log','itemid',42740),(45587,'history_str','itemid',42740),(45588,'history_text','itemid',42740),(45589,'history_uint','itemid',42740),(45590,'trends','itemid',42740),(45591,'trends_uint','itemid',42740),(45592,'events','itemid',42792),(45593,'history','itemid',42792),(45594,'history_log','itemid',42792),(45595,'history_str','itemid',42792),(45596,'history_text','itemid',42792),(45597,'history_uint','itemid',42792),(45598,'trends','itemid',42792),(45599,'trends_uint','itemid',42792),(45600,'events','itemid',42793),(45601,'history','itemid',42793),(45602,'history_log','itemid',42793),(45603,'history_str','itemid',42793),(45604,'history_text','itemid',42793),(45605,'history_uint','itemid',42793),(45606,'trends','itemid',42793),(45607,'trends_uint','itemid',42793),(45608,'events','itemid',42794),(45609,'history','itemid',42794),(45610,'history_log','itemid',42794),(45611,'history_str','itemid',42794),(45612,'history_text','itemid',42794),(45613,'history_uint','itemid',42794),(45614,'trends','itemid',42794),(45615,'trends_uint','itemid',42794),(45616,'events','itemid',42795),(45617,'history','itemid',42795),(45618,'history_log','itemid',42795),(45619,'history_str','itemid',42795),(45620,'history_text','itemid',42795),(45621,'history_uint','itemid',42795),(45622,'trends','itemid',42795),(45623,'trends_uint','itemid',42795),(45624,'events','itemid',42796),(45625,'history','itemid',42796),(45626,'history_log','itemid',42796),(45627,'history_str','itemid',42796),(45628,'history_text','itemid',42796),(45629,'history_uint','itemid',42796),(45630,'trends','itemid',42796),(45631,'trends_uint','itemid',42796),(45632,'events','itemid',42797),(45633,'history','itemid',42797),(45634,'history_log','itemid',42797),(45635,'history_str','itemid',42797),(45636,'history_text','itemid',42797),(45637,'history_uint','itemid',42797),(45638,'trends','itemid',42797),(45639,'trends_uint','itemid',42797),(45640,'events','itemid',42798),(45641,'history','itemid',42798),(45642,'history_log','itemid',42798),(45643,'history_str','itemid',42798),(45644,'history_text','itemid',42798),(45645,'history_uint','itemid',42798),(45646,'trends','itemid',42798),(45647,'trends_uint','itemid',42798),(45648,'events','itemid',42799),(45649,'history','itemid',42799),(45650,'history_log','itemid',42799),(45651,'history_str','itemid',42799),(45652,'history_text','itemid',42799),(45653,'history_uint','itemid',42799),(45654,'trends','itemid',42799),(45655,'trends_uint','itemid',42799),(45656,'events','itemid',42800),(45657,'history','itemid',42800),(45658,'history_log','itemid',42800),(45659,'history_str','itemid',42800),(45660,'history_text','itemid',42800),(45661,'history_uint','itemid',42800),(45662,'trends','itemid',42800),(45663,'trends_uint','itemid',42800),(45664,'events','itemid',42801),(45665,'history','itemid',42801),(45666,'history_log','itemid',42801),(45667,'history_str','itemid',42801),(45668,'history_text','itemid',42801),(45669,'history_uint','itemid',42801),(45670,'trends','itemid',42801),(45671,'trends_uint','itemid',42801),(45672,'events','itemid',42802),(45673,'history','itemid',42802),(45674,'history_log','itemid',42802),(45675,'history_str','itemid',42802),(45676,'history_text','itemid',42802),(45677,'history_uint','itemid',42802),(45678,'trends','itemid',42802),(45679,'trends_uint','itemid',42802),(45680,'events','itemid',42803),(45681,'history','itemid',42803),(45682,'history_log','itemid',42803),(45683,'history_str','itemid',42803),(45684,'history_text','itemid',42803),(45685,'history_uint','itemid',42803),(45686,'trends','itemid',42803),(45687,'trends_uint','itemid',42803),(45688,'events','itemid',42804),(45689,'history','itemid',42804),(45690,'history_log','itemid',42804),(45691,'history_str','itemid',42804),(45692,'history_text','itemid',42804),(45693,'history_uint','itemid',42804),(45694,'trends','itemid',42804),(45695,'trends_uint','itemid',42804),(45696,'events','itemid',42805),(45697,'history','itemid',42805),(45698,'history_log','itemid',42805),(45699,'history_str','itemid',42805),(45700,'history_text','itemid',42805),(45701,'history_uint','itemid',42805),(45702,'trends','itemid',42805),(45703,'trends_uint','itemid',42805),(45704,'events','itemid',42806),(45705,'history','itemid',42806),(45706,'history_log','itemid',42806),(45707,'history_str','itemid',42806),(45708,'history_text','itemid',42806),(45709,'history_uint','itemid',42806),(45710,'trends','itemid',42806),(45711,'trends_uint','itemid',42806),(45712,'events','itemid',42807),(45713,'history','itemid',42807),(45714,'history_log','itemid',42807),(45715,'history_str','itemid',42807),(45716,'history_text','itemid',42807),(45717,'history_uint','itemid',42807),(45718,'trends','itemid',42807),(45719,'trends_uint','itemid',42807),(45720,'events','itemid',42808),(45721,'history','itemid',42808),(45722,'history_log','itemid',42808),(45723,'history_str','itemid',42808),(45724,'history_text','itemid',42808),(45725,'history_uint','itemid',42808),(45726,'trends','itemid',42808),(45727,'trends_uint','itemid',42808),(45728,'events','itemid',42809),(45729,'history','itemid',42809),(45730,'history_log','itemid',42809),(45731,'history_str','itemid',42809),(45732,'history_text','itemid',42809),(45733,'history_uint','itemid',42809),(45734,'trends','itemid',42809),(45735,'trends_uint','itemid',42809),(45736,'events','itemid',42810),(45737,'history','itemid',42810),(45738,'history_log','itemid',42810),(45739,'history_str','itemid',42810),(45740,'history_text','itemid',42810),(45741,'history_uint','itemid',42810),(45742,'trends','itemid',42810),(45743,'trends_uint','itemid',42810),(45744,'events','itemid',42811),(45745,'history','itemid',42811),(45746,'history_log','itemid',42811),(45747,'history_str','itemid',42811),(45748,'history_text','itemid',42811),(45749,'history_uint','itemid',42811),(45750,'trends','itemid',42811),(45751,'trends_uint','itemid',42811),(45752,'events','itemid',42812),(45753,'history','itemid',42812),(45754,'history_log','itemid',42812),(45755,'history_str','itemid',42812),(45756,'history_text','itemid',42812),(45757,'history_uint','itemid',42812),(45758,'trends','itemid',42812),(45759,'trends_uint','itemid',42812),(45760,'events','itemid',42813),(45761,'history','itemid',42813),(45762,'history_log','itemid',42813),(45763,'history_str','itemid',42813),(45764,'history_text','itemid',42813),(45765,'history_uint','itemid',42813),(45766,'trends','itemid',42813),(45767,'trends_uint','itemid',42813),(45768,'events','itemid',42814),(45769,'history','itemid',42814),(45770,'history_log','itemid',42814),(45771,'history_str','itemid',42814),(45772,'history_text','itemid',42814),(45773,'history_uint','itemid',42814),(45774,'trends','itemid',42814),(45775,'trends_uint','itemid',42814),(45776,'events','itemid',42815),(45777,'history','itemid',42815),(45778,'history_log','itemid',42815),(45779,'history_str','itemid',42815),(45780,'history_text','itemid',42815),(45781,'history_uint','itemid',42815),(45782,'trends','itemid',42815),(45783,'trends_uint','itemid',42815),(45784,'events','itemid',42816),(45785,'history','itemid',42816),(45786,'history_log','itemid',42816),(45787,'history_str','itemid',42816),(45788,'history_text','itemid',42816),(45789,'history_uint','itemid',42816),(45790,'trends','itemid',42816),(45791,'trends_uint','itemid',42816),(45792,'events','itemid',42817),(45793,'history','itemid',42817),(45794,'history_log','itemid',42817),(45795,'history_str','itemid',42817),(45796,'history_text','itemid',42817),(45797,'history_uint','itemid',42817),(45798,'trends','itemid',42817),(45799,'trends_uint','itemid',42817),(45800,'events','itemid',42818),(45801,'history','itemid',42818),(45802,'history_log','itemid',42818),(45803,'history_str','itemid',42818),(45804,'history_text','itemid',42818),(45805,'history_uint','itemid',42818),(45806,'trends','itemid',42818),(45807,'trends_uint','itemid',42818),(45808,'events','itemid',42819),(45809,'history','itemid',42819),(45810,'history_log','itemid',42819),(45811,'history_str','itemid',42819),(45812,'history_text','itemid',42819),(45813,'history_uint','itemid',42819),(45814,'trends','itemid',42819),(45815,'trends_uint','itemid',42819),(45816,'events','itemid',42820),(45817,'history','itemid',42820),(45818,'history_log','itemid',42820),(45819,'history_str','itemid',42820),(45820,'history_text','itemid',42820),(45821,'history_uint','itemid',42820),(45822,'trends','itemid',42820),(45823,'trends_uint','itemid',42820),(45824,'events','itemid',42821),(45825,'history','itemid',42821),(45826,'history_log','itemid',42821),(45827,'history_str','itemid',42821),(45828,'history_text','itemid',42821),(45829,'history_uint','itemid',42821),(45830,'trends','itemid',42821),(45831,'trends_uint','itemid',42821),(45832,'events','itemid',42822),(45833,'history','itemid',42822),(45834,'history_log','itemid',42822),(45835,'history_str','itemid',42822),(45836,'history_text','itemid',42822),(45837,'history_uint','itemid',42822),(45838,'trends','itemid',42822),(45839,'trends_uint','itemid',42822),(45840,'events','itemid',42823),(45841,'history','itemid',42823),(45842,'history_log','itemid',42823),(45843,'history_str','itemid',42823),(45844,'history_text','itemid',42823),(45845,'history_uint','itemid',42823),(45846,'trends','itemid',42823),(45847,'trends_uint','itemid',42823),(45848,'events','itemid',42824),(45849,'history','itemid',42824),(45850,'history_log','itemid',42824),(45851,'history_str','itemid',42824),(45852,'history_text','itemid',42824),(45853,'history_uint','itemid',42824),(45854,'trends','itemid',42824),(45855,'trends_uint','itemid',42824),(45856,'events','itemid',42825),(45857,'history','itemid',42825),(45858,'history_log','itemid',42825),(45859,'history_str','itemid',42825),(45860,'history_text','itemid',42825),(45861,'history_uint','itemid',42825),(45862,'trends','itemid',42825),(45863,'trends_uint','itemid',42825),(45864,'events','itemid',42826),(45865,'history','itemid',42826),(45866,'history_log','itemid',42826),(45867,'history_str','itemid',42826),(45868,'history_text','itemid',42826),(45869,'history_uint','itemid',42826),(45870,'trends','itemid',42826),(45871,'trends_uint','itemid',42826),(45872,'events','itemid',42827),(45873,'history','itemid',42827),(45874,'history_log','itemid',42827),(45875,'history_str','itemid',42827),(45876,'history_text','itemid',42827),(45877,'history_uint','itemid',42827),(45878,'trends','itemid',42827),(45879,'trends_uint','itemid',42827),(45880,'events','itemid',42828),(45881,'history','itemid',42828),(45882,'history_log','itemid',42828),(45883,'history_str','itemid',42828),(45884,'history_text','itemid',42828),(45885,'history_uint','itemid',42828),(45886,'trends','itemid',42828),(45887,'trends_uint','itemid',42828),(45888,'events','itemid',42829),(45889,'history','itemid',42829),(45890,'history_log','itemid',42829),(45891,'history_str','itemid',42829),(45892,'history_text','itemid',42829),(45893,'history_uint','itemid',42829),(45894,'trends','itemid',42829),(45895,'trends_uint','itemid',42829),(45896,'events','itemid',42830),(45897,'history','itemid',42830),(45898,'history_log','itemid',42830),(45899,'history_str','itemid',42830),(45900,'history_text','itemid',42830),(45901,'history_uint','itemid',42830),(45902,'trends','itemid',42830),(45903,'trends_uint','itemid',42830),(45904,'events','itemid',42831),(45905,'history','itemid',42831),(45906,'history_log','itemid',42831),(45907,'history_str','itemid',42831),(45908,'history_text','itemid',42831),(45909,'history_uint','itemid',42831),(45910,'trends','itemid',42831),(45911,'trends_uint','itemid',42831),(45912,'events','itemid',42832),(45913,'history','itemid',42832),(45914,'history_log','itemid',42832),(45915,'history_str','itemid',42832),(45916,'history_text','itemid',42832),(45917,'history_uint','itemid',42832),(45918,'trends','itemid',42832),(45919,'trends_uint','itemid',42832),(45920,'events','itemid',42833),(45921,'history','itemid',42833),(45922,'history_log','itemid',42833),(45923,'history_str','itemid',42833),(45924,'history_text','itemid',42833),(45925,'history_uint','itemid',42833),(45926,'trends','itemid',42833),(45927,'trends_uint','itemid',42833),(45928,'events','itemid',42877),(45929,'history','itemid',42877),(45930,'history_log','itemid',42877),(45931,'history_str','itemid',42877),(45932,'history_text','itemid',42877),(45933,'history_uint','itemid',42877),(45934,'trends','itemid',42877),(45935,'trends_uint','itemid',42877),(45936,'events','itemid',42880),(45937,'history','itemid',42880),(45938,'history_log','itemid',42880),(45939,'history_str','itemid',42880),(45940,'history_text','itemid',42880),(45941,'history_uint','itemid',42880),(45942,'trends','itemid',42880),(45943,'trends_uint','itemid',42880),(45944,'events','itemid',43080),(45945,'history','itemid',43080),(45946,'history_log','itemid',43080),(45947,'history_str','itemid',43080),(45948,'history_text','itemid',43080),(45949,'history_uint','itemid',43080),(45950,'trends','itemid',43080),(45951,'trends_uint','itemid',43080),(45952,'events','itemid',43857),(45953,'history','itemid',43857),(45954,'history_log','itemid',43857),(45955,'history_str','itemid',43857),(45956,'history_text','itemid',43857),(45957,'history_uint','itemid',43857),(45958,'trends','itemid',43857),(45959,'trends_uint','itemid',43857),(45960,'events','itemid',43858),(45961,'history','itemid',43858),(45962,'history_log','itemid',43858),(45963,'history_str','itemid',43858),(45964,'history_text','itemid',43858),(45965,'history_uint','itemid',43858),(45966,'trends','itemid',43858),(45967,'trends_uint','itemid',43858),(45968,'events','itemid',43859),(45969,'history','itemid',43859),(45970,'history_log','itemid',43859),(45971,'history_str','itemid',43859),(45972,'history_text','itemid',43859),(45973,'history_uint','itemid',43859),(45974,'trends','itemid',43859),(45975,'trends_uint','itemid',43859),(45976,'events','itemid',43875),(45977,'history','itemid',43875),(45978,'history_log','itemid',43875),(45979,'history_str','itemid',43875),(45980,'history_text','itemid',43875),(45981,'history_uint','itemid',43875),(45982,'trends','itemid',43875),(45983,'trends_uint','itemid',43875),(45984,'events','itemid',44051),(45985,'history','itemid',44051),(45986,'history_log','itemid',44051),(45987,'history_str','itemid',44051),(45988,'history_text','itemid',44051),(45989,'history_uint','itemid',44051),(45990,'trends','itemid',44051),(45991,'trends_uint','itemid',44051),(45992,'events','itemid',44081),(45993,'history','itemid',44081),(45994,'history_log','itemid',44081),(45995,'history_str','itemid',44081),(45996,'history_text','itemid',44081),(45997,'history_uint','itemid',44081),(45998,'trends','itemid',44081),(45999,'trends_uint','itemid',44081),(46000,'events','itemid',44359),(46001,'history','itemid',44359),(46002,'history_log','itemid',44359),(46003,'history_str','itemid',44359),(46004,'history_text','itemid',44359),(46005,'history_uint','itemid',44359),(46006,'trends','itemid',44359),(46007,'trends_uint','itemid',44359),(46008,'events','itemid',44377),(46009,'history','itemid',44377),(46010,'history_log','itemid',44377),(46011,'history_str','itemid',44377),(46012,'history_text','itemid',44377),(46013,'history_uint','itemid',44377),(46014,'trends','itemid',44377),(46015,'trends_uint','itemid',44377),(46016,'events','itemid',44379),(46017,'history','itemid',44379),(46018,'history_log','itemid',44379),(46019,'history_str','itemid',44379),(46020,'history_text','itemid',44379),(46021,'history_uint','itemid',44379),(46022,'trends','itemid',44379),(46023,'trends_uint','itemid',44379),(46024,'events','itemid',44450),(46025,'history','itemid',44450),(46026,'history_log','itemid',44450),(46027,'history_str','itemid',44450),(46028,'history_text','itemid',44450),(46029,'history_uint','itemid',44450),(46030,'trends','itemid',44450),(46031,'trends_uint','itemid',44450),(46032,'events','itemid',44453),(46033,'history','itemid',44453),(46034,'history_log','itemid',44453),(46035,'history_str','itemid',44453),(46036,'history_text','itemid',44453),(46037,'history_uint','itemid',44453),(46038,'trends','itemid',44453),(46039,'trends_uint','itemid',44453),(46040,'events','itemid',44455),(46041,'history','itemid',44455),(46042,'history_log','itemid',44455),(46043,'history_str','itemid',44455),(46044,'history_text','itemid',44455),(46045,'history_uint','itemid',44455),(46046,'trends','itemid',44455),(46047,'trends_uint','itemid',44455),(46048,'events','lldruleid',32007),(46049,'events','lldruleid',32998),(46050,'events','lldruleid',32999),(46051,'events','lldruleid',35542),(46052,'events','lldruleid',35543),(46053,'events','lldruleid',35544),(46054,'events','lldruleid',35545),(46055,'events','lldruleid',35574),(46056,'events','lldruleid',35575),(46057,'events','lldruleid',35576),(46058,'events','lldruleid',35577),(46059,'events','lldruleid',35578),(46060,'events','lldruleid',35579),(46061,'events','lldruleid',35618),(46062,'events','lldruleid',35619),(46063,'events','lldruleid',35620),(46064,'events','lldruleid',35621),(46065,'events','lldruleid',35649),(46066,'events','lldruleid',35650),(46067,'events','lldruleid',35651),(46068,'events','lldruleid',35652),(46069,'events','lldruleid',35653),(46070,'events','lldruleid',35654),(46071,'events','lldruleid',35655),(46072,'events','lldruleid',35656),(46073,'events','lldruleid',35657),(46074,'events','lldruleid',35716),(46075,'events','lldruleid',35717),(46076,'events','lldruleid',35718),(46077,'events','lldruleid',35719),(46078,'events','lldruleid',35720),(46079,'events','lldruleid',35721),(46080,'events','lldruleid',35722),(46081,'events','lldruleid',35723),(46082,'events','lldruleid',35724),(46083,'events','lldruleid',35786),(46084,'events','lldruleid',35787),(46085,'events','lldruleid',35788),(46086,'events','lldruleid',35789),(46087,'events','lldruleid',35790),(46088,'events','lldruleid',35820),(46089,'events','lldruleid',35821),(46090,'events','lldruleid',35822),(46091,'events','lldruleid',35858),(46092,'events','lldruleid',35859),(46093,'events','lldruleid',35860),(46094,'events','lldruleid',35861),(46095,'events','lldruleid',35862),(46096,'events','lldruleid',35863),(46097,'events','lldruleid',35902),(46098,'events','lldruleid',35903),(46099,'events','lldruleid',35904),(46100,'events','lldruleid',35905),(46101,'events','lldruleid',35906),(46102,'events','lldruleid',35907),(46103,'events','lldruleid',35946),(46104,'events','lldruleid',35947),(46105,'events','lldruleid',35948),(46106,'events','lldruleid',35949),(46107,'events','lldruleid',35950),(46108,'events','lldruleid',35951),(46109,'events','lldruleid',35990),(46110,'events','lldruleid',35991),(46111,'events','lldruleid',35992),(46112,'events','lldruleid',35993),(46113,'events','lldruleid',35994),(46114,'events','lldruleid',35995),(46115,'events','lldruleid',36035),(46116,'events','lldruleid',36036),(46117,'events','lldruleid',36037),(46118,'events','lldruleid',36038),(46119,'events','lldruleid',36039),(46120,'events','lldruleid',36040),(46121,'events','lldruleid',36080),(46122,'events','lldruleid',36081),(46123,'events','lldruleid',36082),(46124,'events','lldruleid',36083),(46125,'events','lldruleid',36084),(46126,'events','lldruleid',36085),(46127,'events','lldruleid',36124),(46128,'events','lldruleid',36125),(46129,'events','lldruleid',36126),(46130,'events','lldruleid',36127),(46131,'events','lldruleid',36128),(46132,'events','lldruleid',36129),(46133,'events','lldruleid',36130),(46134,'events','lldruleid',39806),(46135,'events','lldruleid',44057),(46136,'events','itemid',10061),(46137,'history','itemid',10061),(46138,'history_log','itemid',10061),(46139,'history_str','itemid',10061),(46140,'history_text','itemid',10061),(46141,'history_uint','itemid',10061),(46142,'trends','itemid',10061),(46143,'trends_uint','itemid',10061),(46144,'events','itemid',10062),(46145,'history','itemid',10062),(46146,'history_log','itemid',10062),(46147,'history_str','itemid',10062),(46148,'history_text','itemid',10062),(46149,'history_uint','itemid',10062),(46150,'trends','itemid',10062),(46151,'trends_uint','itemid',10062),(46152,'events','itemid',10063),(46153,'history','itemid',10063),(46154,'history_log','itemid',10063),(46155,'history_str','itemid',10063),(46156,'history_text','itemid',10063),(46157,'history_uint','itemid',10063),(46158,'trends','itemid',10063),(46159,'trends_uint','itemid',10063),(46160,'events','itemid',10064),(46161,'history','itemid',10064),(46162,'history_log','itemid',10064),(46163,'history_str','itemid',10064),(46164,'history_text','itemid',10064),(46165,'history_uint','itemid',10064),(46166,'trends','itemid',10064),(46167,'trends_uint','itemid',10064),(46168,'events','itemid',10065),(46169,'history','itemid',10065),(46170,'history_log','itemid',10065),(46171,'history_str','itemid',10065),(46172,'history_text','itemid',10065),(46173,'history_uint','itemid',10065),(46174,'trends','itemid',10065),(46175,'trends_uint','itemid',10065),(46176,'events','itemid',10066),(46177,'history','itemid',10066),(46178,'history_log','itemid',10066),(46179,'history_str','itemid',10066),(46180,'history_text','itemid',10066),(46181,'history_uint','itemid',10066),(46182,'trends','itemid',10066),(46183,'trends_uint','itemid',10066),(46184,'events','itemid',10067),(46185,'history','itemid',10067),(46186,'history_log','itemid',10067),(46187,'history_str','itemid',10067),(46188,'history_text','itemid',10067),(46189,'history_uint','itemid',10067),(46190,'trends','itemid',10067),(46191,'trends_uint','itemid',10067),(46192,'events','itemid',10068),(46193,'history','itemid',10068),(46194,'history_log','itemid',10068),(46195,'history_str','itemid',10068),(46196,'history_text','itemid',10068),(46197,'history_uint','itemid',10068),(46198,'trends','itemid',10068),(46199,'trends_uint','itemid',10068),(46200,'events','itemid',10069),(46201,'history','itemid',10069),(46202,'history_log','itemid',10069),(46203,'history_str','itemid',10069),(46204,'history_text','itemid',10069),(46205,'history_uint','itemid',10069),(46206,'trends','itemid',10069),(46207,'trends_uint','itemid',10069),(46208,'events','itemid',10070),(46209,'history','itemid',10070),(46210,'history_log','itemid',10070),(46211,'history_str','itemid',10070),(46212,'history_text','itemid',10070),(46213,'history_uint','itemid',10070),(46214,'trends','itemid',10070),(46215,'trends_uint','itemid',10070),(46216,'events','itemid',10071),(46217,'history','itemid',10071),(46218,'history_log','itemid',10071),(46219,'history_str','itemid',10071),(46220,'history_text','itemid',10071),(46221,'history_uint','itemid',10071),(46222,'trends','itemid',10071),(46223,'trends_uint','itemid',10071),(46224,'events','itemid',10072),(46225,'history','itemid',10072),(46226,'history_log','itemid',10072),(46227,'history_str','itemid',10072),(46228,'history_text','itemid',10072),(46229,'history_uint','itemid',10072),(46230,'trends','itemid',10072),(46231,'trends_uint','itemid',10072),(46232,'events','itemid',22183),(46233,'history','itemid',22183),(46234,'history_log','itemid',22183),(46235,'history_str','itemid',22183),(46236,'history_text','itemid',22183),(46237,'history_uint','itemid',22183),(46238,'trends','itemid',22183),(46239,'trends_uint','itemid',22183),(46240,'events','itemid',22185),(46241,'history','itemid',22185),(46242,'history_log','itemid',22185),(46243,'history_str','itemid',22185),(46244,'history_text','itemid',22185),(46245,'history_uint','itemid',22185),(46246,'trends','itemid',22185),(46247,'trends_uint','itemid',22185),(46248,'events','itemid',22187),(46249,'history','itemid',22187),(46250,'history_log','itemid',22187),(46251,'history_str','itemid',22187),(46252,'history_text','itemid',22187),(46253,'history_uint','itemid',22187),(46254,'trends','itemid',22187),(46255,'trends_uint','itemid',22187),(46256,'events','itemid',22189),(46257,'history','itemid',22189),(46258,'history_log','itemid',22189),(46259,'history_str','itemid',22189),(46260,'history_text','itemid',22189),(46261,'history_uint','itemid',22189),(46262,'trends','itemid',22189),(46263,'trends_uint','itemid',22189),(46264,'events','itemid',22191),(46265,'history','itemid',22191),(46266,'history_log','itemid',22191),(46267,'history_str','itemid',22191),(46268,'history_text','itemid',22191),(46269,'history_uint','itemid',22191),(46270,'trends','itemid',22191),(46271,'trends_uint','itemid',22191),(46272,'events','itemid',22196),(46273,'history','itemid',22196),(46274,'history_log','itemid',22196),(46275,'history_str','itemid',22196),(46276,'history_text','itemid',22196),(46277,'history_uint','itemid',22196),(46278,'trends','itemid',22196),(46279,'trends_uint','itemid',22196),(46280,'events','itemid',22199),(46281,'history','itemid',22199),(46282,'history_log','itemid',22199),(46283,'history_str','itemid',22199),(46284,'history_text','itemid',22199),(46285,'history_uint','itemid',22199),(46286,'trends','itemid',22199),(46287,'trends_uint','itemid',22199),(46288,'events','itemid',22219),(46289,'history','itemid',22219),(46290,'history_log','itemid',22219),(46291,'history_str','itemid',22219),(46292,'history_text','itemid',22219),(46293,'history_uint','itemid',22219),(46294,'trends','itemid',22219),(46295,'trends_uint','itemid',22219),(46296,'events','itemid',22231),(46297,'history','itemid',22231),(46298,'history_log','itemid',22231),(46299,'history_str','itemid',22231),(46300,'history_text','itemid',22231),(46301,'history_uint','itemid',22231),(46302,'trends','itemid',22231),(46303,'trends_uint','itemid',22231),(46304,'events','itemid',22232),(46305,'history','itemid',22232),(46306,'history_log','itemid',22232),(46307,'history_str','itemid',22232),(46308,'history_text','itemid',22232),(46309,'history_uint','itemid',22232),(46310,'trends','itemid',22232),(46311,'trends_uint','itemid',22232),(46312,'events','itemid',22396),(46313,'history','itemid',22396),(46314,'history_log','itemid',22396),(46315,'history_str','itemid',22396),(46316,'history_text','itemid',22396),(46317,'history_uint','itemid',22396),(46318,'trends','itemid',22396),(46319,'trends_uint','itemid',22396),(46320,'events','itemid',22399),(46321,'history','itemid',22399),(46322,'history_log','itemid',22399),(46323,'history_str','itemid',22399),(46324,'history_text','itemid',22399),(46325,'history_uint','itemid',22399),(46326,'trends','itemid',22399),(46327,'trends_uint','itemid',22399),(46328,'events','itemid',22400),(46329,'history','itemid',22400),(46330,'history_log','itemid',22400),(46331,'history_str','itemid',22400),(46332,'history_text','itemid',22400),(46333,'history_uint','itemid',22400),(46334,'trends','itemid',22400),(46335,'trends_uint','itemid',22400),(46336,'events','itemid',22401),(46337,'history','itemid',22401),(46338,'history_log','itemid',22401),(46339,'history_str','itemid',22401),(46340,'history_text','itemid',22401),(46341,'history_uint','itemid',22401),(46342,'trends','itemid',22401),(46343,'trends_uint','itemid',22401),(46344,'events','itemid',22402),(46345,'history','itemid',22402),(46346,'history_log','itemid',22402),(46347,'history_str','itemid',22402),(46348,'history_text','itemid',22402),(46349,'history_uint','itemid',22402),(46350,'trends','itemid',22402),(46351,'trends_uint','itemid',22402),(46352,'events','itemid',22404),(46353,'history','itemid',22404),(46354,'history_log','itemid',22404),(46355,'history_str','itemid',22404),(46356,'history_text','itemid',22404),(46357,'history_uint','itemid',22404),(46358,'trends','itemid',22404),(46359,'trends_uint','itemid',22404),(46360,'events','itemid',22406),(46361,'history','itemid',22406),(46362,'history_log','itemid',22406),(46363,'history_str','itemid',22406),(46364,'history_text','itemid',22406),(46365,'history_uint','itemid',22406),(46366,'trends','itemid',22406),(46367,'trends_uint','itemid',22406),(46368,'events','itemid',22408),(46369,'history','itemid',22408),(46370,'history_log','itemid',22408),(46371,'history_str','itemid',22408),(46372,'history_text','itemid',22408),(46373,'history_uint','itemid',22408),(46374,'trends','itemid',22408),(46375,'trends_uint','itemid',22408),(46376,'events','itemid',22412),(46377,'history','itemid',22412),(46378,'history_log','itemid',22412),(46379,'history_str','itemid',22412),(46380,'history_text','itemid',22412),(46381,'history_uint','itemid',22412),(46382,'trends','itemid',22412),(46383,'trends_uint','itemid',22412),(46384,'events','itemid',22414),(46385,'history','itemid',22414),(46386,'history_log','itemid',22414),(46387,'history_str','itemid',22414),(46388,'history_text','itemid',22414),(46389,'history_uint','itemid',22414),(46390,'trends','itemid',22414),(46391,'trends_uint','itemid',22414),(46392,'events','itemid',22416),(46393,'history','itemid',22416),(46394,'history_log','itemid',22416),(46395,'history_str','itemid',22416),(46396,'history_text','itemid',22416),(46397,'history_uint','itemid',22416),(46398,'trends','itemid',22416),(46399,'trends_uint','itemid',22416),(46400,'events','itemid',22418),(46401,'history','itemid',22418),(46402,'history_log','itemid',22418),(46403,'history_str','itemid',22418),(46404,'history_text','itemid',22418),(46405,'history_uint','itemid',22418),(46406,'trends','itemid',22418),(46407,'trends_uint','itemid',22418),(46408,'events','itemid',22420),(46409,'history','itemid',22420),(46410,'history_log','itemid',22420),(46411,'history_str','itemid',22420),(46412,'history_text','itemid',22420),(46413,'history_uint','itemid',22420),(46414,'trends','itemid',22420),(46415,'trends_uint','itemid',22420),(46416,'events','itemid',22422),(46417,'history','itemid',22422),(46418,'history_log','itemid',22422),(46419,'history_str','itemid',22422),(46420,'history_text','itemid',22422),(46421,'history_uint','itemid',22422),(46422,'trends','itemid',22422),(46423,'trends_uint','itemid',22422),(46424,'events','itemid',22424),(46425,'history','itemid',22424),(46426,'history_log','itemid',22424),(46427,'history_str','itemid',22424),(46428,'history_text','itemid',22424),(46429,'history_uint','itemid',22424),(46430,'trends','itemid',22424),(46431,'trends_uint','itemid',22424),(46432,'events','itemid',22426),(46433,'history','itemid',22426),(46434,'history_log','itemid',22426),(46435,'history_str','itemid',22426),(46436,'history_text','itemid',22426),(46437,'history_uint','itemid',22426),(46438,'trends','itemid',22426),(46439,'trends_uint','itemid',22426),(46440,'events','itemid',22430),(46441,'history','itemid',22430),(46442,'history_log','itemid',22430),(46443,'history_str','itemid',22430),(46444,'history_text','itemid',22430),(46445,'history_uint','itemid',22430),(46446,'trends','itemid',22430),(46447,'trends_uint','itemid',22430),(46448,'events','itemid',22689),(46449,'history','itemid',22689),(46450,'history_log','itemid',22689),(46451,'history_str','itemid',22689),(46452,'history_text','itemid',22689),(46453,'history_uint','itemid',22689),(46454,'trends','itemid',22689),(46455,'trends_uint','itemid',22689),(46456,'events','itemid',23171),(46457,'history','itemid',23171),(46458,'history_log','itemid',23171),(46459,'history_str','itemid',23171),(46460,'history_text','itemid',23171),(46461,'history_uint','itemid',23171),(46462,'trends','itemid',23171),(46463,'trends_uint','itemid',23171),(46464,'events','itemid',23251),(46465,'history','itemid',23251),(46466,'history_log','itemid',23251),(46467,'history_str','itemid',23251),(46468,'history_text','itemid',23251),(46469,'history_uint','itemid',23251),(46470,'trends','itemid',23251),(46471,'trends_uint','itemid',23251),(46472,'events','itemid',23318),(46473,'history','itemid',23318),(46474,'history_log','itemid',23318),(46475,'history_str','itemid',23318),(46476,'history_text','itemid',23318),(46477,'history_uint','itemid',23318),(46478,'trends','itemid',23318),(46479,'trends_uint','itemid',23318),(46480,'events','itemid',23340),(46481,'history','itemid',23340),(46482,'history_log','itemid',23340),(46483,'history_str','itemid',23340),(46484,'history_text','itemid',23340),(46485,'history_uint','itemid',23340),(46486,'trends','itemid',23340),(46487,'trends_uint','itemid',23340),(46488,'events','itemid',23341),(46489,'history','itemid',23341),(46490,'history_log','itemid',23341),(46491,'history_str','itemid',23341),(46492,'history_text','itemid',23341),(46493,'history_uint','itemid',23341),(46494,'trends','itemid',23341),(46495,'trends_uint','itemid',23341),(46496,'events','itemid',23342),(46497,'history','itemid',23342),(46498,'history_log','itemid',23342),(46499,'history_str','itemid',23342),(46500,'history_text','itemid',23342),(46501,'history_uint','itemid',23342),(46502,'trends','itemid',23342),(46503,'trends_uint','itemid',23342),(46504,'events','itemid',23343),(46505,'history','itemid',23343),(46506,'history_log','itemid',23343),(46507,'history_str','itemid',23343),(46508,'history_text','itemid',23343),(46509,'history_uint','itemid',23343),(46510,'trends','itemid',23343),(46511,'trends_uint','itemid',23343),(46512,'events','itemid',23344),(46513,'history','itemid',23344),(46514,'history_log','itemid',23344),(46515,'history_str','itemid',23344),(46516,'history_text','itemid',23344),(46517,'history_uint','itemid',23344),(46518,'trends','itemid',23344),(46519,'trends_uint','itemid',23344),(46520,'events','itemid',23345),(46521,'history','itemid',23345),(46522,'history_log','itemid',23345),(46523,'history_str','itemid',23345),(46524,'history_text','itemid',23345),(46525,'history_uint','itemid',23345),(46526,'trends','itemid',23345),(46527,'trends_uint','itemid',23345),(46528,'events','itemid',23346),(46529,'history','itemid',23346),(46530,'history_log','itemid',23346),(46531,'history_str','itemid',23346),(46532,'history_text','itemid',23346),(46533,'history_uint','itemid',23346),(46534,'trends','itemid',23346),(46535,'trends_uint','itemid',23346),(46536,'events','itemid',23347),(46537,'history','itemid',23347),(46538,'history_log','itemid',23347),(46539,'history_str','itemid',23347),(46540,'history_text','itemid',23347),(46541,'history_uint','itemid',23347),(46542,'trends','itemid',23347),(46543,'trends_uint','itemid',23347),(46544,'events','itemid',23348),(46545,'history','itemid',23348),(46546,'history_log','itemid',23348),(46547,'history_str','itemid',23348),(46548,'history_text','itemid',23348),(46549,'history_uint','itemid',23348),(46550,'trends','itemid',23348),(46551,'trends_uint','itemid',23348),(46552,'events','itemid',23349),(46553,'history','itemid',23349),(46554,'history_log','itemid',23349),(46555,'history_str','itemid',23349),(46556,'history_text','itemid',23349),(46557,'history_uint','itemid',23349),(46558,'trends','itemid',23349),(46559,'trends_uint','itemid',23349),(46560,'events','itemid',23350),(46561,'history','itemid',23350),(46562,'history_log','itemid',23350),(46563,'history_str','itemid',23350),(46564,'history_text','itemid',23350),(46565,'history_uint','itemid',23350),(46566,'trends','itemid',23350),(46567,'trends_uint','itemid',23350),(46568,'events','itemid',23352),(46569,'history','itemid',23352),(46570,'history_log','itemid',23352),(46571,'history_str','itemid',23352),(46572,'history_text','itemid',23352),(46573,'history_uint','itemid',23352),(46574,'trends','itemid',23352),(46575,'trends_uint','itemid',23352),(46576,'events','itemid',23353),(46577,'history','itemid',23353),(46578,'history_log','itemid',23353),(46579,'history_str','itemid',23353),(46580,'history_text','itemid',23353),(46581,'history_uint','itemid',23353),(46582,'trends','itemid',23353),(46583,'trends_uint','itemid',23353),(46584,'events','itemid',23354),(46585,'history','itemid',23354),(46586,'history_log','itemid',23354),(46587,'history_str','itemid',23354),(46588,'history_text','itemid',23354),(46589,'history_uint','itemid',23354),(46590,'trends','itemid',23354),(46591,'trends_uint','itemid',23354),(46592,'events','itemid',23355),(46593,'history','itemid',23355),(46594,'history_log','itemid',23355),(46595,'history_str','itemid',23355),(46596,'history_text','itemid',23355),(46597,'history_uint','itemid',23355),(46598,'trends','itemid',23355),(46599,'trends_uint','itemid',23355),(46600,'events','itemid',23356),(46601,'history','itemid',23356),(46602,'history_log','itemid',23356),(46603,'history_str','itemid',23356),(46604,'history_text','itemid',23356),(46605,'history_uint','itemid',23356),(46606,'trends','itemid',23356),(46607,'trends_uint','itemid',23356),(46608,'events','itemid',23357),(46609,'history','itemid',23357),(46610,'history_log','itemid',23357),(46611,'history_str','itemid',23357),(46612,'history_text','itemid',23357),(46613,'history_uint','itemid',23357),(46614,'trends','itemid',23357),(46615,'trends_uint','itemid',23357),(46616,'events','itemid',23358),(46617,'history','itemid',23358),(46618,'history_log','itemid',23358),(46619,'history_str','itemid',23358),(46620,'history_text','itemid',23358),(46621,'history_uint','itemid',23358),(46622,'trends','itemid',23358),(46623,'trends_uint','itemid',23358),(46624,'events','itemid',23359),(46625,'history','itemid',23359),(46626,'history_log','itemid',23359),(46627,'history_str','itemid',23359),(46628,'history_text','itemid',23359),(46629,'history_uint','itemid',23359),(46630,'trends','itemid',23359),(46631,'trends_uint','itemid',23359),(46632,'events','itemid',23360),(46633,'history','itemid',23360),(46634,'history_log','itemid',23360),(46635,'history_str','itemid',23360),(46636,'history_text','itemid',23360),(46637,'history_uint','itemid',23360),(46638,'trends','itemid',23360),(46639,'trends_uint','itemid',23360),(46640,'events','itemid',23634),(46641,'history','itemid',23634),(46642,'history_log','itemid',23634),(46643,'history_str','itemid',23634),(46644,'history_text','itemid',23634),(46645,'history_uint','itemid',23634),(46646,'trends','itemid',23634),(46647,'trends_uint','itemid',23634),(46648,'events','itemid',23661),(46649,'history','itemid',23661),(46650,'history_log','itemid',23661),(46651,'history_str','itemid',23661),(46652,'history_text','itemid',23661),(46653,'history_uint','itemid',23661),(46654,'trends','itemid',23661),(46655,'trends_uint','itemid',23661),(46656,'events','itemid',23663),(46657,'history','itemid',23663),(46658,'history_log','itemid',23663),(46659,'history_str','itemid',23663),(46660,'history_text','itemid',23663),(46661,'history_uint','itemid',23663),(46662,'trends','itemid',23663),(46663,'trends_uint','itemid',23663),(46664,'events','itemid',25366),(46665,'history','itemid',25366),(46666,'history_log','itemid',25366),(46667,'history_str','itemid',25366),(46668,'history_text','itemid',25366),(46669,'history_uint','itemid',25366),(46670,'trends','itemid',25366),(46671,'trends_uint','itemid',25366),(46672,'events','itemid',25368),(46673,'history','itemid',25368),(46674,'history_log','itemid',25368),(46675,'history_str','itemid',25368),(46676,'history_text','itemid',25368),(46677,'history_uint','itemid',25368),(46678,'trends','itemid',25368),(46679,'trends_uint','itemid',25368),(46680,'events','itemid',25369),(46681,'history','itemid',25369),(46682,'history_log','itemid',25369),(46683,'history_str','itemid',25369),(46684,'history_text','itemid',25369),(46685,'history_uint','itemid',25369),(46686,'trends','itemid',25369),(46687,'trends_uint','itemid',25369),(46688,'events','itemid',25370),(46689,'history','itemid',25370),(46690,'history_log','itemid',25370),(46691,'history_str','itemid',25370),(46692,'history_text','itemid',25370),(46693,'history_uint','itemid',25370),(46694,'trends','itemid',25370),(46695,'trends_uint','itemid',25370),(46696,'events','itemid',25665),(46697,'history','itemid',25665),(46698,'history_log','itemid',25665),(46699,'history_str','itemid',25665),(46700,'history_text','itemid',25665),(46701,'history_uint','itemid',25665),(46702,'trends','itemid',25665),(46703,'trends_uint','itemid',25665),(46704,'events','itemid',25666),(46705,'history','itemid',25666),(46706,'history_log','itemid',25666),(46707,'history_str','itemid',25666),(46708,'history_text','itemid',25666),(46709,'history_uint','itemid',25666),(46710,'trends','itemid',25666),(46711,'trends_uint','itemid',25666),(46712,'events','itemid',28248),(46713,'history','itemid',28248),(46714,'history_log','itemid',28248),(46715,'history_str','itemid',28248),(46716,'history_text','itemid',28248),(46717,'history_uint','itemid',28248),(46718,'trends','itemid',28248),(46719,'trends_uint','itemid',28248),(46720,'events','itemid',28250),(46721,'history','itemid',28250),(46722,'history_log','itemid',28250),(46723,'history_str','itemid',28250),(46724,'history_text','itemid',28250),(46725,'history_uint','itemid',28250),(46726,'trends','itemid',28250),(46727,'trends_uint','itemid',28250),(46728,'events','itemid',28251),(46729,'history','itemid',28251),(46730,'history_log','itemid',28251),(46731,'history_str','itemid',28251),(46732,'history_text','itemid',28251),(46733,'history_uint','itemid',28251),(46734,'trends','itemid',28251),(46735,'trends_uint','itemid',28251),(46736,'events','itemid',28533),(46737,'history','itemid',28533),(46738,'history_log','itemid',28533),(46739,'history_str','itemid',28533),(46740,'history_text','itemid',28533),(46741,'history_uint','itemid',28533),(46742,'trends','itemid',28533),(46743,'trends_uint','itemid',28533),(46744,'events','itemid',28535),(46745,'history','itemid',28535),(46746,'history_log','itemid',28535),(46747,'history_str','itemid',28535),(46748,'history_text','itemid',28535),(46749,'history_uint','itemid',28535),(46750,'trends','itemid',28535),(46751,'trends_uint','itemid',28535),(46752,'events','itemid',28537),(46753,'history','itemid',28537),(46754,'history_log','itemid',28537),(46755,'history_str','itemid',28537),(46756,'history_text','itemid',28537),(46757,'history_uint','itemid',28537),(46758,'trends','itemid',28537),(46759,'trends_uint','itemid',28537),(46760,'events','itemid',28617),(46761,'history','itemid',28617),(46762,'history_log','itemid',28617),(46763,'history_str','itemid',28617),(46764,'history_text','itemid',28617),(46765,'history_uint','itemid',28617),(46766,'trends','itemid',28617),(46767,'trends_uint','itemid',28617),(46768,'events','itemid',28618),(46769,'history','itemid',28618),(46770,'history_log','itemid',28618),(46771,'history_str','itemid',28618),(46772,'history_text','itemid',28618),(46773,'history_uint','itemid',28618),(46774,'trends','itemid',28618),(46775,'trends_uint','itemid',28618),(46776,'events','itemid',28619),(46777,'history','itemid',28619),(46778,'history_log','itemid',28619),(46779,'history_str','itemid',28619),(46780,'history_text','itemid',28619),(46781,'history_uint','itemid',28619),(46782,'trends','itemid',28619),(46783,'trends_uint','itemid',28619),(46784,'events','itemid',29544),(46785,'history','itemid',29544),(46786,'history_log','itemid',29544),(46787,'history_str','itemid',29544),(46788,'history_text','itemid',29544),(46789,'history_uint','itemid',29544),(46790,'trends','itemid',29544),(46791,'trends_uint','itemid',29544),(46792,'events','itemid',29545),(46793,'history','itemid',29545),(46794,'history_log','itemid',29545),(46795,'history_str','itemid',29545),(46796,'history_text','itemid',29545),(46797,'history_uint','itemid',29545),(46798,'trends','itemid',29545),(46799,'trends_uint','itemid',29545),(46800,'events','itemid',29546),(46801,'history','itemid',29546),(46802,'history_log','itemid',29546),(46803,'history_str','itemid',29546),(46804,'history_text','itemid',29546),(46805,'history_uint','itemid',29546),(46806,'trends','itemid',29546),(46807,'trends_uint','itemid',29546),(46808,'events','itemid',29547),(46809,'history','itemid',29547),(46810,'history_log','itemid',29547),(46811,'history_str','itemid',29547),(46812,'history_text','itemid',29547),(46813,'history_uint','itemid',29547),(46814,'trends','itemid',29547),(46815,'trends_uint','itemid',29547),(46816,'events','itemid',29822),(46817,'history','itemid',29822),(46818,'history_log','itemid',29822),(46819,'history_str','itemid',29822),(46820,'history_text','itemid',29822),(46821,'history_uint','itemid',29822),(46822,'trends','itemid',29822),(46823,'trends_uint','itemid',29822),(46824,'events','itemid',32963),(46825,'history','itemid',32963),(46826,'history_log','itemid',32963),(46827,'history_str','itemid',32963),(46828,'history_text','itemid',32963),(46829,'history_uint','itemid',32963),(46830,'trends','itemid',32963),(46831,'trends_uint','itemid',32963),(46832,'events','itemid',32964),(46833,'history','itemid',32964),(46834,'history_log','itemid',32964),(46835,'history_str','itemid',32964),(46836,'history_text','itemid',32964),(46837,'history_uint','itemid',32964),(46838,'trends','itemid',32964),(46839,'trends_uint','itemid',32964),(46840,'events','itemid',32965),(46841,'history','itemid',32965),(46842,'history_log','itemid',32965),(46843,'history_str','itemid',32965),(46844,'history_text','itemid',32965),(46845,'history_uint','itemid',32965),(46846,'trends','itemid',32965),(46847,'trends_uint','itemid',32965),(46848,'events','itemid',32966),(46849,'history','itemid',32966),(46850,'history_log','itemid',32966),(46851,'history_str','itemid',32966),(46852,'history_text','itemid',32966),(46853,'history_uint','itemid',32966),(46854,'trends','itemid',32966),(46855,'trends_uint','itemid',32966),(46856,'events','itemid',32967),(46857,'history','itemid',32967),(46858,'history_log','itemid',32967),(46859,'history_str','itemid',32967),(46860,'history_text','itemid',32967),(46861,'history_uint','itemid',32967),(46862,'trends','itemid',32967),(46863,'trends_uint','itemid',32967),(46864,'events','itemid',32968),(46865,'history','itemid',32968),(46866,'history_log','itemid',32968),(46867,'history_str','itemid',32968),(46868,'history_text','itemid',32968),(46869,'history_uint','itemid',32968),(46870,'trends','itemid',32968),(46871,'trends_uint','itemid',32968),(46872,'events','itemid',32969),(46873,'history','itemid',32969),(46874,'history_log','itemid',32969),(46875,'history_str','itemid',32969),(46876,'history_text','itemid',32969),(46877,'history_uint','itemid',32969),(46878,'trends','itemid',32969),(46879,'trends_uint','itemid',32969),(46880,'events','itemid',32970),(46881,'history','itemid',32970),(46882,'history_log','itemid',32970),(46883,'history_str','itemid',32970),(46884,'history_text','itemid',32970),(46885,'history_uint','itemid',32970),(46886,'trends','itemid',32970),(46887,'trends_uint','itemid',32970),(46888,'events','itemid',32971),(46889,'history','itemid',32971),(46890,'history_log','itemid',32971),(46891,'history_str','itemid',32971),(46892,'history_text','itemid',32971),(46893,'history_uint','itemid',32971),(46894,'trends','itemid',32971),(46895,'trends_uint','itemid',32971),(46896,'events','itemid',32972),(46897,'history','itemid',32972),(46898,'history_log','itemid',32972),(46899,'history_str','itemid',32972),(46900,'history_text','itemid',32972),(46901,'history_uint','itemid',32972),(46902,'trends','itemid',32972),(46903,'trends_uint','itemid',32972),(46904,'events','itemid',32973),(46905,'history','itemid',32973),(46906,'history_log','itemid',32973),(46907,'history_str','itemid',32973),(46908,'history_text','itemid',32973),(46909,'history_uint','itemid',32973),(46910,'trends','itemid',32973),(46911,'trends_uint','itemid',32973),(46912,'events','itemid',32974),(46913,'history','itemid',32974),(46914,'history_log','itemid',32974),(46915,'history_str','itemid',32974),(46916,'history_text','itemid',32974),(46917,'history_uint','itemid',32974),(46918,'trends','itemid',32974),(46919,'trends_uint','itemid',32974),(46920,'events','itemid',32975),(46921,'history','itemid',32975),(46922,'history_log','itemid',32975),(46923,'history_str','itemid',32975),(46924,'history_text','itemid',32975),(46925,'history_uint','itemid',32975),(46926,'trends','itemid',32975),(46927,'trends_uint','itemid',32975),(46928,'events','itemid',32976),(46929,'history','itemid',32976),(46930,'history_log','itemid',32976),(46931,'history_str','itemid',32976),(46932,'history_text','itemid',32976),(46933,'history_uint','itemid',32976),(46934,'trends','itemid',32976),(46935,'trends_uint','itemid',32976),(46936,'events','itemid',32977),(46937,'history','itemid',32977),(46938,'history_log','itemid',32977),(46939,'history_str','itemid',32977),(46940,'history_text','itemid',32977),(46941,'history_uint','itemid',32977),(46942,'trends','itemid',32977),(46943,'trends_uint','itemid',32977),(46944,'events','itemid',32978),(46945,'history','itemid',32978),(46946,'history_log','itemid',32978),(46947,'history_str','itemid',32978),(46948,'history_text','itemid',32978),(46949,'history_uint','itemid',32978),(46950,'trends','itemid',32978),(46951,'trends_uint','itemid',32978),(46952,'events','itemid',32979),(46953,'history','itemid',32979),(46954,'history_log','itemid',32979),(46955,'history_str','itemid',32979),(46956,'history_text','itemid',32979),(46957,'history_uint','itemid',32979),(46958,'trends','itemid',32979),(46959,'trends_uint','itemid',32979),(46960,'events','itemid',32980),(46961,'history','itemid',32980),(46962,'history_log','itemid',32980),(46963,'history_str','itemid',32980),(46964,'history_text','itemid',32980),(46965,'history_uint','itemid',32980),(46966,'trends','itemid',32980),(46967,'trends_uint','itemid',32980),(46968,'events','itemid',32981),(46969,'history','itemid',32981),(46970,'history_log','itemid',32981),(46971,'history_str','itemid',32981),(46972,'history_text','itemid',32981),(46973,'history_uint','itemid',32981),(46974,'trends','itemid',32981),(46975,'trends_uint','itemid',32981),(46976,'events','itemid',32982),(46977,'history','itemid',32982),(46978,'history_log','itemid',32982),(46979,'history_str','itemid',32982),(46980,'history_text','itemid',32982),(46981,'history_uint','itemid',32982),(46982,'trends','itemid',32982),(46983,'trends_uint','itemid',32982),(46984,'events','itemid',32983),(46985,'history','itemid',32983),(46986,'history_log','itemid',32983),(46987,'history_str','itemid',32983),(46988,'history_text','itemid',32983),(46989,'history_uint','itemid',32983),(46990,'trends','itemid',32983),(46991,'trends_uint','itemid',32983),(46992,'events','itemid',32984),(46993,'history','itemid',32984),(46994,'history_log','itemid',32984),(46995,'history_str','itemid',32984),(46996,'history_text','itemid',32984),(46997,'history_uint','itemid',32984),(46998,'trends','itemid',32984),(46999,'trends_uint','itemid',32984),(47000,'events','itemid',32985),(47001,'history','itemid',32985),(47002,'history_log','itemid',32985),(47003,'history_str','itemid',32985),(47004,'history_text','itemid',32985),(47005,'history_uint','itemid',32985),(47006,'trends','itemid',32985),(47007,'trends_uint','itemid',32985),(47008,'events','itemid',32986),(47009,'history','itemid',32986),(47010,'history_log','itemid',32986),(47011,'history_str','itemid',32986),(47012,'history_text','itemid',32986),(47013,'history_uint','itemid',32986),(47014,'trends','itemid',32986),(47015,'trends_uint','itemid',32986),(47016,'events','itemid',32987),(47017,'history','itemid',32987),(47018,'history_log','itemid',32987),(47019,'history_str','itemid',32987),(47020,'history_text','itemid',32987),(47021,'history_uint','itemid',32987),(47022,'trends','itemid',32987),(47023,'trends_uint','itemid',32987),(47024,'events','itemid',32988),(47025,'history','itemid',32988),(47026,'history_log','itemid',32988),(47027,'history_str','itemid',32988),(47028,'history_text','itemid',32988),(47029,'history_uint','itemid',32988),(47030,'trends','itemid',32988),(47031,'trends_uint','itemid',32988),(47032,'events','itemid',32989),(47033,'history','itemid',32989),(47034,'history_log','itemid',32989),(47035,'history_str','itemid',32989),(47036,'history_text','itemid',32989),(47037,'history_uint','itemid',32989),(47038,'trends','itemid',32989),(47039,'trends_uint','itemid',32989),(47040,'events','itemid',32990),(47041,'history','itemid',32990),(47042,'history_log','itemid',32990),(47043,'history_str','itemid',32990),(47044,'history_text','itemid',32990),(47045,'history_uint','itemid',32990),(47046,'trends','itemid',32990),(47047,'trends_uint','itemid',32990),(47048,'events','itemid',32991),(47049,'history','itemid',32991),(47050,'history_log','itemid',32991),(47051,'history_str','itemid',32991),(47052,'history_text','itemid',32991),(47053,'history_uint','itemid',32991),(47054,'trends','itemid',32991),(47055,'trends_uint','itemid',32991),(47056,'events','itemid',32992),(47057,'history','itemid',32992),(47058,'history_log','itemid',32992),(47059,'history_str','itemid',32992),(47060,'history_text','itemid',32992),(47061,'history_uint','itemid',32992),(47062,'trends','itemid',32992),(47063,'trends_uint','itemid',32992),(47064,'events','itemid',32993),(47065,'history','itemid',32993),(47066,'history_log','itemid',32993),(47067,'history_str','itemid',32993),(47068,'history_text','itemid',32993),(47069,'history_uint','itemid',32993),(47070,'trends','itemid',32993),(47071,'trends_uint','itemid',32993),(47072,'events','itemid',32994),(47073,'history','itemid',32994),(47074,'history_log','itemid',32994),(47075,'history_str','itemid',32994),(47076,'history_text','itemid',32994),(47077,'history_uint','itemid',32994),(47078,'trends','itemid',32994),(47079,'trends_uint','itemid',32994),(47080,'events','itemid',32995),(47081,'history','itemid',32995),(47082,'history_log','itemid',32995),(47083,'history_str','itemid',32995),(47084,'history_text','itemid',32995),(47085,'history_uint','itemid',32995),(47086,'trends','itemid',32995),(47087,'trends_uint','itemid',32995),(47088,'events','itemid',32996),(47089,'history','itemid',32996),(47090,'history_log','itemid',32996),(47091,'history_str','itemid',32996),(47092,'history_text','itemid',32996),(47093,'history_uint','itemid',32996),(47094,'trends','itemid',32996),(47095,'trends_uint','itemid',32996),(47096,'events','itemid',32997),(47097,'history','itemid',32997),(47098,'history_log','itemid',32997),(47099,'history_str','itemid',32997),(47100,'history_text','itemid',32997),(47101,'history_uint','itemid',32997),(47102,'trends','itemid',32997),(47103,'trends_uint','itemid',32997),(47104,'events','itemid',33018),(47105,'history','itemid',33018),(47106,'history_log','itemid',33018),(47107,'history_str','itemid',33018),(47108,'history_text','itemid',33018),(47109,'history_uint','itemid',33018),(47110,'trends','itemid',33018),(47111,'trends_uint','itemid',33018),(47112,'events','itemid',33019),(47113,'history','itemid',33019),(47114,'history_log','itemid',33019),(47115,'history_str','itemid',33019),(47116,'history_text','itemid',33019),(47117,'history_uint','itemid',33019),(47118,'trends','itemid',33019),(47119,'trends_uint','itemid',33019),(47120,'events','itemid',33020),(47121,'history','itemid',33020),(47122,'history_log','itemid',33020),(47123,'history_str','itemid',33020),(47124,'history_text','itemid',33020),(47125,'history_uint','itemid',33020),(47126,'trends','itemid',33020),(47127,'trends_uint','itemid',33020),(47128,'events','itemid',33021),(47129,'history','itemid',33021),(47130,'history_log','itemid',33021),(47131,'history_str','itemid',33021),(47132,'history_text','itemid',33021),(47133,'history_uint','itemid',33021),(47134,'trends','itemid',33021),(47135,'trends_uint','itemid',33021),(47136,'events','itemid',33022),(47137,'history','itemid',33022),(47138,'history_log','itemid',33022),(47139,'history_str','itemid',33022),(47140,'history_text','itemid',33022),(47141,'history_uint','itemid',33022),(47142,'trends','itemid',33022),(47143,'trends_uint','itemid',33022),(47144,'events','itemid',33023),(47145,'history','itemid',33023),(47146,'history_log','itemid',33023),(47147,'history_str','itemid',33023),(47148,'history_text','itemid',33023),(47149,'history_uint','itemid',33023),(47150,'trends','itemid',33023),(47151,'trends_uint','itemid',33023),(47152,'events','itemid',34316),(47153,'history','itemid',34316),(47154,'history_log','itemid',34316),(47155,'history_str','itemid',34316),(47156,'history_text','itemid',34316),(47157,'history_uint','itemid',34316),(47158,'trends','itemid',34316),(47159,'trends_uint','itemid',34316),(47160,'events','itemid',34317),(47161,'history','itemid',34317),(47162,'history_log','itemid',34317),(47163,'history_str','itemid',34317),(47164,'history_text','itemid',34317),(47165,'history_uint','itemid',34317),(47166,'trends','itemid',34317),(47167,'trends_uint','itemid',34317),(47168,'events','itemid',35272),(47169,'history','itemid',35272),(47170,'history_log','itemid',35272),(47171,'history_str','itemid',35272),(47172,'history_text','itemid',35272),(47173,'history_uint','itemid',35272),(47174,'trends','itemid',35272),(47175,'trends_uint','itemid',35272),(47176,'events','itemid',35273),(47177,'history','itemid',35273),(47178,'history_log','itemid',35273),(47179,'history_str','itemid',35273),(47180,'history_text','itemid',35273),(47181,'history_uint','itemid',35273),(47182,'trends','itemid',35273),(47183,'trends_uint','itemid',35273),(47184,'events','itemid',35274),(47185,'history','itemid',35274),(47186,'history_log','itemid',35274),(47187,'history_str','itemid',35274),(47188,'history_text','itemid',35274),(47189,'history_uint','itemid',35274),(47190,'trends','itemid',35274),(47191,'trends_uint','itemid',35274),(47192,'events','itemid',35532),(47193,'history','itemid',35532),(47194,'history_log','itemid',35532),(47195,'history_str','itemid',35532),(47196,'history_text','itemid',35532),(47197,'history_uint','itemid',35532),(47198,'trends','itemid',35532),(47199,'trends_uint','itemid',35532),(47200,'events','itemid',35533),(47201,'history','itemid',35533),(47202,'history_log','itemid',35533),(47203,'history_str','itemid',35533),(47204,'history_text','itemid',35533),(47205,'history_uint','itemid',35533),(47206,'trends','itemid',35533),(47207,'trends_uint','itemid',35533),(47208,'events','itemid',35534),(47209,'history','itemid',35534),(47210,'history_log','itemid',35534),(47211,'history_str','itemid',35534),(47212,'history_text','itemid',35534),(47213,'history_uint','itemid',35534),(47214,'trends','itemid',35534),(47215,'trends_uint','itemid',35534),(47216,'events','itemid',35535),(47217,'history','itemid',35535),(47218,'history_log','itemid',35535),(47219,'history_str','itemid',35535),(47220,'history_text','itemid',35535),(47221,'history_uint','itemid',35535),(47222,'trends','itemid',35535),(47223,'trends_uint','itemid',35535),(47224,'events','itemid',35536),(47225,'history','itemid',35536),(47226,'history_log','itemid',35536),(47227,'history_str','itemid',35536),(47228,'history_text','itemid',35536),(47229,'history_uint','itemid',35536),(47230,'trends','itemid',35536),(47231,'trends_uint','itemid',35536),(47232,'events','itemid',35537),(47233,'history','itemid',35537),(47234,'history_log','itemid',35537),(47235,'history_str','itemid',35537),(47236,'history_text','itemid',35537),(47237,'history_uint','itemid',35537),(47238,'trends','itemid',35537),(47239,'trends_uint','itemid',35537),(47240,'events','itemid',35538),(47241,'history','itemid',35538),(47242,'history_log','itemid',35538),(47243,'history_str','itemid',35538),(47244,'history_text','itemid',35538),(47245,'history_uint','itemid',35538),(47246,'trends','itemid',35538),(47247,'trends_uint','itemid',35538),(47248,'events','itemid',35539),(47249,'history','itemid',35539),(47250,'history_log','itemid',35539),(47251,'history_str','itemid',35539),(47252,'history_text','itemid',35539),(47253,'history_uint','itemid',35539),(47254,'trends','itemid',35539),(47255,'trends_uint','itemid',35539),(47256,'events','itemid',35540),(47257,'history','itemid',35540),(47258,'history_log','itemid',35540),(47259,'history_str','itemid',35540),(47260,'history_text','itemid',35540),(47261,'history_uint','itemid',35540),(47262,'trends','itemid',35540),(47263,'trends_uint','itemid',35540),(47264,'events','itemid',35541),(47265,'history','itemid',35541),(47266,'history_log','itemid',35541),(47267,'history_str','itemid',35541),(47268,'history_text','itemid',35541),(47269,'history_uint','itemid',35541),(47270,'trends','itemid',35541),(47271,'trends_uint','itemid',35541),(47272,'events','itemid',35564),(47273,'history','itemid',35564),(47274,'history_log','itemid',35564),(47275,'history_str','itemid',35564),(47276,'history_text','itemid',35564),(47277,'history_uint','itemid',35564),(47278,'trends','itemid',35564),(47279,'trends_uint','itemid',35564),(47280,'events','itemid',35565),(47281,'history','itemid',35565),(47282,'history_log','itemid',35565),(47283,'history_str','itemid',35565),(47284,'history_text','itemid',35565),(47285,'history_uint','itemid',35565),(47286,'trends','itemid',35565),(47287,'trends_uint','itemid',35565),(47288,'events','itemid',35566),(47289,'history','itemid',35566),(47290,'history_log','itemid',35566),(47291,'history_str','itemid',35566),(47292,'history_text','itemid',35566),(47293,'history_uint','itemid',35566),(47294,'trends','itemid',35566),(47295,'trends_uint','itemid',35566),(47296,'events','itemid',35567),(47297,'history','itemid',35567),(47298,'history_log','itemid',35567),(47299,'history_str','itemid',35567),(47300,'history_text','itemid',35567),(47301,'history_uint','itemid',35567),(47302,'trends','itemid',35567),(47303,'trends_uint','itemid',35567),(47304,'events','itemid',35568),(47305,'history','itemid',35568),(47306,'history_log','itemid',35568),(47307,'history_str','itemid',35568),(47308,'history_text','itemid',35568),(47309,'history_uint','itemid',35568),(47310,'trends','itemid',35568),(47311,'trends_uint','itemid',35568),(47312,'events','itemid',35569),(47313,'history','itemid',35569),(47314,'history_log','itemid',35569),(47315,'history_str','itemid',35569),(47316,'history_text','itemid',35569),(47317,'history_uint','itemid',35569),(47318,'trends','itemid',35569),(47319,'trends_uint','itemid',35569),(47320,'events','itemid',35570),(47321,'history','itemid',35570),(47322,'history_log','itemid',35570),(47323,'history_str','itemid',35570),(47324,'history_text','itemid',35570),(47325,'history_uint','itemid',35570),(47326,'trends','itemid',35570),(47327,'trends_uint','itemid',35570),(47328,'events','itemid',35571),(47329,'history','itemid',35571),(47330,'history_log','itemid',35571),(47331,'history_str','itemid',35571),(47332,'history_text','itemid',35571),(47333,'history_uint','itemid',35571),(47334,'trends','itemid',35571),(47335,'trends_uint','itemid',35571),(47336,'events','itemid',35572),(47337,'history','itemid',35572),(47338,'history_log','itemid',35572),(47339,'history_str','itemid',35572),(47340,'history_text','itemid',35572),(47341,'history_uint','itemid',35572),(47342,'trends','itemid',35572),(47343,'trends_uint','itemid',35572),(47344,'events','itemid',35573),(47345,'history','itemid',35573),(47346,'history_log','itemid',35573),(47347,'history_str','itemid',35573),(47348,'history_text','itemid',35573),(47349,'history_uint','itemid',35573),(47350,'trends','itemid',35573),(47351,'trends_uint','itemid',35573),(47352,'events','itemid',35608),(47353,'history','itemid',35608),(47354,'history_log','itemid',35608),(47355,'history_str','itemid',35608),(47356,'history_text','itemid',35608),(47357,'history_uint','itemid',35608),(47358,'trends','itemid',35608),(47359,'trends_uint','itemid',35608),(47360,'events','itemid',35609),(47361,'history','itemid',35609),(47362,'history_log','itemid',35609),(47363,'history_str','itemid',35609),(47364,'history_text','itemid',35609),(47365,'history_uint','itemid',35609),(47366,'trends','itemid',35609),(47367,'trends_uint','itemid',35609),(47368,'events','itemid',35610),(47369,'history','itemid',35610),(47370,'history_log','itemid',35610),(47371,'history_str','itemid',35610),(47372,'history_text','itemid',35610),(47373,'history_uint','itemid',35610),(47374,'trends','itemid',35610),(47375,'trends_uint','itemid',35610),(47376,'events','itemid',35611),(47377,'history','itemid',35611),(47378,'history_log','itemid',35611),(47379,'history_str','itemid',35611),(47380,'history_text','itemid',35611),(47381,'history_uint','itemid',35611),(47382,'trends','itemid',35611),(47383,'trends_uint','itemid',35611),(47384,'events','itemid',35612),(47385,'history','itemid',35612),(47386,'history_log','itemid',35612),(47387,'history_str','itemid',35612),(47388,'history_text','itemid',35612),(47389,'history_uint','itemid',35612),(47390,'trends','itemid',35612),(47391,'trends_uint','itemid',35612),(47392,'events','itemid',35613),(47393,'history','itemid',35613),(47394,'history_log','itemid',35613),(47395,'history_str','itemid',35613),(47396,'history_text','itemid',35613),(47397,'history_uint','itemid',35613),(47398,'trends','itemid',35613),(47399,'trends_uint','itemid',35613),(47400,'events','itemid',35614),(47401,'history','itemid',35614),(47402,'history_log','itemid',35614),(47403,'history_str','itemid',35614),(47404,'history_text','itemid',35614),(47405,'history_uint','itemid',35614),(47406,'trends','itemid',35614),(47407,'trends_uint','itemid',35614),(47408,'events','itemid',35615),(47409,'history','itemid',35615),(47410,'history_log','itemid',35615),(47411,'history_str','itemid',35615),(47412,'history_text','itemid',35615),(47413,'history_uint','itemid',35615),(47414,'trends','itemid',35615),(47415,'trends_uint','itemid',35615),(47416,'events','itemid',35616),(47417,'history','itemid',35616),(47418,'history_log','itemid',35616),(47419,'history_str','itemid',35616),(47420,'history_text','itemid',35616),(47421,'history_uint','itemid',35616),(47422,'trends','itemid',35616),(47423,'trends_uint','itemid',35616),(47424,'events','itemid',35617),(47425,'history','itemid',35617),(47426,'history_log','itemid',35617),(47427,'history_str','itemid',35617),(47428,'history_text','itemid',35617),(47429,'history_uint','itemid',35617),(47430,'trends','itemid',35617),(47431,'trends_uint','itemid',35617),(47432,'events','itemid',35642),(47433,'history','itemid',35642),(47434,'history_log','itemid',35642),(47435,'history_str','itemid',35642),(47436,'history_text','itemid',35642),(47437,'history_uint','itemid',35642),(47438,'trends','itemid',35642),(47439,'trends_uint','itemid',35642),(47440,'events','itemid',35643),(47441,'history','itemid',35643),(47442,'history_log','itemid',35643),(47443,'history_str','itemid',35643),(47444,'history_text','itemid',35643),(47445,'history_uint','itemid',35643),(47446,'trends','itemid',35643),(47447,'trends_uint','itemid',35643),(47448,'events','itemid',35644),(47449,'history','itemid',35644),(47450,'history_log','itemid',35644),(47451,'history_str','itemid',35644),(47452,'history_text','itemid',35644),(47453,'history_uint','itemid',35644),(47454,'trends','itemid',35644),(47455,'trends_uint','itemid',35644),(47456,'events','itemid',35645),(47457,'history','itemid',35645),(47458,'history_log','itemid',35645),(47459,'history_str','itemid',35645),(47460,'history_text','itemid',35645),(47461,'history_uint','itemid',35645),(47462,'trends','itemid',35645),(47463,'trends_uint','itemid',35645),(47464,'events','itemid',35646),(47465,'history','itemid',35646),(47466,'history_log','itemid',35646),(47467,'history_str','itemid',35646),(47468,'history_text','itemid',35646),(47469,'history_uint','itemid',35646),(47470,'trends','itemid',35646),(47471,'trends_uint','itemid',35646),(47472,'events','itemid',35647),(47473,'history','itemid',35647),(47474,'history_log','itemid',35647),(47475,'history_str','itemid',35647),(47476,'history_text','itemid',35647),(47477,'history_uint','itemid',35647),(47478,'trends','itemid',35647),(47479,'trends_uint','itemid',35647),(47480,'events','itemid',35648),(47481,'history','itemid',35648),(47482,'history_log','itemid',35648),(47483,'history_str','itemid',35648),(47484,'history_text','itemid',35648),(47485,'history_uint','itemid',35648),(47486,'trends','itemid',35648),(47487,'trends_uint','itemid',35648),(47488,'events','itemid',35709),(47489,'history','itemid',35709),(47490,'history_log','itemid',35709),(47491,'history_str','itemid',35709),(47492,'history_text','itemid',35709),(47493,'history_uint','itemid',35709),(47494,'trends','itemid',35709),(47495,'trends_uint','itemid',35709),(47496,'events','itemid',35710),(47497,'history','itemid',35710),(47498,'history_log','itemid',35710),(47499,'history_str','itemid',35710),(47500,'history_text','itemid',35710),(47501,'history_uint','itemid',35710),(47502,'trends','itemid',35710),(47503,'trends_uint','itemid',35710),(47504,'events','itemid',35711),(47505,'history','itemid',35711),(47506,'history_log','itemid',35711),(47507,'history_str','itemid',35711),(47508,'history_text','itemid',35711),(47509,'history_uint','itemid',35711),(47510,'trends','itemid',35711),(47511,'trends_uint','itemid',35711),(47512,'events','itemid',35712),(47513,'history','itemid',35712),(47514,'history_log','itemid',35712),(47515,'history_str','itemid',35712),(47516,'history_text','itemid',35712),(47517,'history_uint','itemid',35712),(47518,'trends','itemid',35712),(47519,'trends_uint','itemid',35712),(47520,'events','itemid',35713),(47521,'history','itemid',35713),(47522,'history_log','itemid',35713),(47523,'history_str','itemid',35713),(47524,'history_text','itemid',35713),(47525,'history_uint','itemid',35713),(47526,'trends','itemid',35713),(47527,'trends_uint','itemid',35713),(47528,'events','itemid',35714),(47529,'history','itemid',35714),(47530,'history_log','itemid',35714),(47531,'history_str','itemid',35714),(47532,'history_text','itemid',35714),(47533,'history_uint','itemid',35714),(47534,'trends','itemid',35714),(47535,'trends_uint','itemid',35714),(47536,'events','itemid',35715),(47537,'history','itemid',35715),(47538,'history_log','itemid',35715),(47539,'history_str','itemid',35715),(47540,'history_text','itemid',35715),(47541,'history_uint','itemid',35715),(47542,'trends','itemid',35715),(47543,'trends_uint','itemid',35715),(47544,'events','itemid',35776),(47545,'history','itemid',35776),(47546,'history_log','itemid',35776),(47547,'history_str','itemid',35776),(47548,'history_text','itemid',35776),(47549,'history_uint','itemid',35776),(47550,'trends','itemid',35776),(47551,'trends_uint','itemid',35776),(47552,'events','itemid',35777),(47553,'history','itemid',35777),(47554,'history_log','itemid',35777),(47555,'history_str','itemid',35777),(47556,'history_text','itemid',35777),(47557,'history_uint','itemid',35777),(47558,'trends','itemid',35777),(47559,'trends_uint','itemid',35777),(47560,'events','itemid',35778),(47561,'history','itemid',35778),(47562,'history_log','itemid',35778),(47563,'history_str','itemid',35778),(47564,'history_text','itemid',35778),(47565,'history_uint','itemid',35778),(47566,'trends','itemid',35778),(47567,'trends_uint','itemid',35778),(47568,'events','itemid',35779),(47569,'history','itemid',35779),(47570,'history_log','itemid',35779),(47571,'history_str','itemid',35779),(47572,'history_text','itemid',35779),(47573,'history_uint','itemid',35779),(47574,'trends','itemid',35779),(47575,'trends_uint','itemid',35779),(47576,'events','itemid',35780),(47577,'history','itemid',35780),(47578,'history_log','itemid',35780),(47579,'history_str','itemid',35780),(47580,'history_text','itemid',35780),(47581,'history_uint','itemid',35780),(47582,'trends','itemid',35780),(47583,'trends_uint','itemid',35780),(47584,'events','itemid',35781),(47585,'history','itemid',35781),(47586,'history_log','itemid',35781),(47587,'history_str','itemid',35781),(47588,'history_text','itemid',35781),(47589,'history_uint','itemid',35781),(47590,'trends','itemid',35781),(47591,'trends_uint','itemid',35781),(47592,'events','itemid',35782),(47593,'history','itemid',35782),(47594,'history_log','itemid',35782),(47595,'history_str','itemid',35782),(47596,'history_text','itemid',35782),(47597,'history_uint','itemid',35782),(47598,'trends','itemid',35782),(47599,'trends_uint','itemid',35782),(47600,'events','itemid',35783),(47601,'history','itemid',35783),(47602,'history_log','itemid',35783),(47603,'history_str','itemid',35783),(47604,'history_text','itemid',35783),(47605,'history_uint','itemid',35783),(47606,'trends','itemid',35783),(47607,'trends_uint','itemid',35783),(47608,'events','itemid',35784),(47609,'history','itemid',35784),(47610,'history_log','itemid',35784),(47611,'history_str','itemid',35784),(47612,'history_text','itemid',35784),(47613,'history_uint','itemid',35784),(47614,'trends','itemid',35784),(47615,'trends_uint','itemid',35784),(47616,'events','itemid',35785),(47617,'history','itemid',35785),(47618,'history_log','itemid',35785),(47619,'history_str','itemid',35785),(47620,'history_text','itemid',35785),(47621,'history_uint','itemid',35785),(47622,'trends','itemid',35785),(47623,'trends_uint','itemid',35785),(47624,'events','itemid',35810),(47625,'history','itemid',35810),(47626,'history_log','itemid',35810),(47627,'history_str','itemid',35810),(47628,'history_text','itemid',35810),(47629,'history_uint','itemid',35810),(47630,'trends','itemid',35810),(47631,'trends_uint','itemid',35810),(47632,'events','itemid',35811),(47633,'history','itemid',35811),(47634,'history_log','itemid',35811),(47635,'history_str','itemid',35811),(47636,'history_text','itemid',35811),(47637,'history_uint','itemid',35811),(47638,'trends','itemid',35811),(47639,'trends_uint','itemid',35811),(47640,'events','itemid',35812),(47641,'history','itemid',35812),(47642,'history_log','itemid',35812),(47643,'history_str','itemid',35812),(47644,'history_text','itemid',35812),(47645,'history_uint','itemid',35812),(47646,'trends','itemid',35812),(47647,'trends_uint','itemid',35812),(47648,'events','itemid',35813),(47649,'history','itemid',35813),(47650,'history_log','itemid',35813),(47651,'history_str','itemid',35813),(47652,'history_text','itemid',35813),(47653,'history_uint','itemid',35813),(47654,'trends','itemid',35813),(47655,'trends_uint','itemid',35813),(47656,'events','itemid',35814),(47657,'history','itemid',35814),(47658,'history_log','itemid',35814),(47659,'history_str','itemid',35814),(47660,'history_text','itemid',35814),(47661,'history_uint','itemid',35814),(47662,'trends','itemid',35814),(47663,'trends_uint','itemid',35814),(47664,'events','itemid',35815),(47665,'history','itemid',35815),(47666,'history_log','itemid',35815),(47667,'history_str','itemid',35815),(47668,'history_text','itemid',35815),(47669,'history_uint','itemid',35815),(47670,'trends','itemid',35815),(47671,'trends_uint','itemid',35815),(47672,'events','itemid',35816),(47673,'history','itemid',35816),(47674,'history_log','itemid',35816),(47675,'history_str','itemid',35816),(47676,'history_text','itemid',35816),(47677,'history_uint','itemid',35816),(47678,'trends','itemid',35816),(47679,'trends_uint','itemid',35816),(47680,'events','itemid',35817),(47681,'history','itemid',35817),(47682,'history_log','itemid',35817),(47683,'history_str','itemid',35817),(47684,'history_text','itemid',35817),(47685,'history_uint','itemid',35817),(47686,'trends','itemid',35817),(47687,'trends_uint','itemid',35817),(47688,'events','itemid',35818),(47689,'history','itemid',35818),(47690,'history_log','itemid',35818),(47691,'history_str','itemid',35818),(47692,'history_text','itemid',35818),(47693,'history_uint','itemid',35818),(47694,'trends','itemid',35818),(47695,'trends_uint','itemid',35818),(47696,'events','itemid',35819),(47697,'history','itemid',35819),(47698,'history_log','itemid',35819),(47699,'history_str','itemid',35819),(47700,'history_text','itemid',35819),(47701,'history_uint','itemid',35819),(47702,'trends','itemid',35819),(47703,'trends_uint','itemid',35819),(47704,'events','itemid',35848),(47705,'history','itemid',35848),(47706,'history_log','itemid',35848),(47707,'history_str','itemid',35848),(47708,'history_text','itemid',35848),(47709,'history_uint','itemid',35848),(47710,'trends','itemid',35848),(47711,'trends_uint','itemid',35848),(47712,'events','itemid',35849),(47713,'history','itemid',35849),(47714,'history_log','itemid',35849),(47715,'history_str','itemid',35849),(47716,'history_text','itemid',35849),(47717,'history_uint','itemid',35849),(47718,'trends','itemid',35849),(47719,'trends_uint','itemid',35849),(47720,'events','itemid',35850),(47721,'history','itemid',35850),(47722,'history_log','itemid',35850),(47723,'history_str','itemid',35850),(47724,'history_text','itemid',35850),(47725,'history_uint','itemid',35850),(47726,'trends','itemid',35850),(47727,'trends_uint','itemid',35850),(47728,'events','itemid',35851),(47729,'history','itemid',35851),(47730,'history_log','itemid',35851),(47731,'history_str','itemid',35851),(47732,'history_text','itemid',35851),(47733,'history_uint','itemid',35851),(47734,'trends','itemid',35851),(47735,'trends_uint','itemid',35851),(47736,'events','itemid',35852),(47737,'history','itemid',35852),(47738,'history_log','itemid',35852),(47739,'history_str','itemid',35852),(47740,'history_text','itemid',35852),(47741,'history_uint','itemid',35852),(47742,'trends','itemid',35852),(47743,'trends_uint','itemid',35852),(47744,'events','itemid',35853),(47745,'history','itemid',35853),(47746,'history_log','itemid',35853),(47747,'history_str','itemid',35853),(47748,'history_text','itemid',35853),(47749,'history_uint','itemid',35853),(47750,'trends','itemid',35853),(47751,'trends_uint','itemid',35853),(47752,'events','itemid',35854),(47753,'history','itemid',35854),(47754,'history_log','itemid',35854),(47755,'history_str','itemid',35854),(47756,'history_text','itemid',35854),(47757,'history_uint','itemid',35854),(47758,'trends','itemid',35854),(47759,'trends_uint','itemid',35854),(47760,'events','itemid',35855),(47761,'history','itemid',35855),(47762,'history_log','itemid',35855),(47763,'history_str','itemid',35855),(47764,'history_text','itemid',35855),(47765,'history_uint','itemid',35855),(47766,'trends','itemid',35855),(47767,'trends_uint','itemid',35855),(47768,'events','itemid',35856),(47769,'history','itemid',35856),(47770,'history_log','itemid',35856),(47771,'history_str','itemid',35856),(47772,'history_text','itemid',35856),(47773,'history_uint','itemid',35856),(47774,'trends','itemid',35856),(47775,'trends_uint','itemid',35856),(47776,'events','itemid',35857),(47777,'history','itemid',35857),(47778,'history_log','itemid',35857),(47779,'history_str','itemid',35857),(47780,'history_text','itemid',35857),(47781,'history_uint','itemid',35857),(47782,'trends','itemid',35857),(47783,'trends_uint','itemid',35857),(47784,'events','itemid',35892),(47785,'history','itemid',35892),(47786,'history_log','itemid',35892),(47787,'history_str','itemid',35892),(47788,'history_text','itemid',35892),(47789,'history_uint','itemid',35892),(47790,'trends','itemid',35892),(47791,'trends_uint','itemid',35892),(47792,'events','itemid',35893),(47793,'history','itemid',35893),(47794,'history_log','itemid',35893),(47795,'history_str','itemid',35893),(47796,'history_text','itemid',35893),(47797,'history_uint','itemid',35893),(47798,'trends','itemid',35893),(47799,'trends_uint','itemid',35893),(47800,'events','itemid',35894),(47801,'history','itemid',35894),(47802,'history_log','itemid',35894),(47803,'history_str','itemid',35894),(47804,'history_text','itemid',35894),(47805,'history_uint','itemid',35894),(47806,'trends','itemid',35894),(47807,'trends_uint','itemid',35894),(47808,'events','itemid',35895),(47809,'history','itemid',35895),(47810,'history_log','itemid',35895),(47811,'history_str','itemid',35895),(47812,'history_text','itemid',35895),(47813,'history_uint','itemid',35895),(47814,'trends','itemid',35895),(47815,'trends_uint','itemid',35895),(47816,'events','itemid',35896),(47817,'history','itemid',35896),(47818,'history_log','itemid',35896),(47819,'history_str','itemid',35896),(47820,'history_text','itemid',35896),(47821,'history_uint','itemid',35896),(47822,'trends','itemid',35896),(47823,'trends_uint','itemid',35896),(47824,'events','itemid',35897),(47825,'history','itemid',35897),(47826,'history_log','itemid',35897),(47827,'history_str','itemid',35897),(47828,'history_text','itemid',35897),(47829,'history_uint','itemid',35897),(47830,'trends','itemid',35897),(47831,'trends_uint','itemid',35897),(47832,'events','itemid',35898),(47833,'history','itemid',35898),(47834,'history_log','itemid',35898),(47835,'history_str','itemid',35898),(47836,'history_text','itemid',35898),(47837,'history_uint','itemid',35898),(47838,'trends','itemid',35898),(47839,'trends_uint','itemid',35898),(47840,'events','itemid',35899),(47841,'history','itemid',35899),(47842,'history_log','itemid',35899),(47843,'history_str','itemid',35899),(47844,'history_text','itemid',35899),(47845,'history_uint','itemid',35899),(47846,'trends','itemid',35899),(47847,'trends_uint','itemid',35899),(47848,'events','itemid',35900),(47849,'history','itemid',35900),(47850,'history_log','itemid',35900),(47851,'history_str','itemid',35900),(47852,'history_text','itemid',35900),(47853,'history_uint','itemid',35900),(47854,'trends','itemid',35900),(47855,'trends_uint','itemid',35900),(47856,'events','itemid',35901),(47857,'history','itemid',35901),(47858,'history_log','itemid',35901),(47859,'history_str','itemid',35901),(47860,'history_text','itemid',35901),(47861,'history_uint','itemid',35901),(47862,'trends','itemid',35901),(47863,'trends_uint','itemid',35901),(47864,'events','itemid',35936),(47865,'history','itemid',35936),(47866,'history_log','itemid',35936),(47867,'history_str','itemid',35936),(47868,'history_text','itemid',35936),(47869,'history_uint','itemid',35936),(47870,'trends','itemid',35936),(47871,'trends_uint','itemid',35936),(47872,'events','itemid',35937),(47873,'history','itemid',35937),(47874,'history_log','itemid',35937),(47875,'history_str','itemid',35937),(47876,'history_text','itemid',35937),(47877,'history_uint','itemid',35937),(47878,'trends','itemid',35937),(47879,'trends_uint','itemid',35937),(47880,'events','itemid',35938),(47881,'history','itemid',35938),(47882,'history_log','itemid',35938),(47883,'history_str','itemid',35938),(47884,'history_text','itemid',35938),(47885,'history_uint','itemid',35938),(47886,'trends','itemid',35938),(47887,'trends_uint','itemid',35938),(47888,'events','itemid',35939),(47889,'history','itemid',35939),(47890,'history_log','itemid',35939),(47891,'history_str','itemid',35939),(47892,'history_text','itemid',35939),(47893,'history_uint','itemid',35939),(47894,'trends','itemid',35939),(47895,'trends_uint','itemid',35939),(47896,'events','itemid',35940),(47897,'history','itemid',35940),(47898,'history_log','itemid',35940),(47899,'history_str','itemid',35940),(47900,'history_text','itemid',35940),(47901,'history_uint','itemid',35940),(47902,'trends','itemid',35940),(47903,'trends_uint','itemid',35940),(47904,'events','itemid',35941),(47905,'history','itemid',35941),(47906,'history_log','itemid',35941),(47907,'history_str','itemid',35941),(47908,'history_text','itemid',35941),(47909,'history_uint','itemid',35941),(47910,'trends','itemid',35941),(47911,'trends_uint','itemid',35941),(47912,'events','itemid',35942),(47913,'history','itemid',35942),(47914,'history_log','itemid',35942),(47915,'history_str','itemid',35942),(47916,'history_text','itemid',35942),(47917,'history_uint','itemid',35942),(47918,'trends','itemid',35942),(47919,'trends_uint','itemid',35942),(47920,'events','itemid',35943),(47921,'history','itemid',35943),(47922,'history_log','itemid',35943),(47923,'history_str','itemid',35943),(47924,'history_text','itemid',35943),(47925,'history_uint','itemid',35943),(47926,'trends','itemid',35943),(47927,'trends_uint','itemid',35943),(47928,'events','itemid',35944),(47929,'history','itemid',35944),(47930,'history_log','itemid',35944),(47931,'history_str','itemid',35944),(47932,'history_text','itemid',35944),(47933,'history_uint','itemid',35944),(47934,'trends','itemid',35944),(47935,'trends_uint','itemid',35944),(47936,'events','itemid',35945),(47937,'history','itemid',35945),(47938,'history_log','itemid',35945),(47939,'history_str','itemid',35945),(47940,'history_text','itemid',35945),(47941,'history_uint','itemid',35945),(47942,'trends','itemid',35945),(47943,'trends_uint','itemid',35945),(47944,'events','itemid',35980),(47945,'history','itemid',35980),(47946,'history_log','itemid',35980),(47947,'history_str','itemid',35980),(47948,'history_text','itemid',35980),(47949,'history_uint','itemid',35980),(47950,'trends','itemid',35980),(47951,'trends_uint','itemid',35980),(47952,'events','itemid',35981),(47953,'history','itemid',35981),(47954,'history_log','itemid',35981),(47955,'history_str','itemid',35981),(47956,'history_text','itemid',35981),(47957,'history_uint','itemid',35981),(47958,'trends','itemid',35981),(47959,'trends_uint','itemid',35981),(47960,'events','itemid',35982),(47961,'history','itemid',35982),(47962,'history_log','itemid',35982),(47963,'history_str','itemid',35982),(47964,'history_text','itemid',35982),(47965,'history_uint','itemid',35982),(47966,'trends','itemid',35982),(47967,'trends_uint','itemid',35982),(47968,'events','itemid',35983),(47969,'history','itemid',35983),(47970,'history_log','itemid',35983),(47971,'history_str','itemid',35983),(47972,'history_text','itemid',35983),(47973,'history_uint','itemid',35983),(47974,'trends','itemid',35983),(47975,'trends_uint','itemid',35983),(47976,'events','itemid',35984),(47977,'history','itemid',35984),(47978,'history_log','itemid',35984),(47979,'history_str','itemid',35984),(47980,'history_text','itemid',35984),(47981,'history_uint','itemid',35984),(47982,'trends','itemid',35984),(47983,'trends_uint','itemid',35984),(47984,'events','itemid',35985),(47985,'history','itemid',35985),(47986,'history_log','itemid',35985),(47987,'history_str','itemid',35985),(47988,'history_text','itemid',35985),(47989,'history_uint','itemid',35985),(47990,'trends','itemid',35985),(47991,'trends_uint','itemid',35985),(47992,'events','itemid',35986),(47993,'history','itemid',35986),(47994,'history_log','itemid',35986),(47995,'history_str','itemid',35986),(47996,'history_text','itemid',35986),(47997,'history_uint','itemid',35986),(47998,'trends','itemid',35986),(47999,'trends_uint','itemid',35986),(48000,'events','itemid',35987),(48001,'history','itemid',35987),(48002,'history_log','itemid',35987),(48003,'history_str','itemid',35987),(48004,'history_text','itemid',35987),(48005,'history_uint','itemid',35987),(48006,'trends','itemid',35987),(48007,'trends_uint','itemid',35987),(48008,'events','itemid',35988),(48009,'history','itemid',35988),(48010,'history_log','itemid',35988),(48011,'history_str','itemid',35988),(48012,'history_text','itemid',35988),(48013,'history_uint','itemid',35988),(48014,'trends','itemid',35988),(48015,'trends_uint','itemid',35988),(48016,'events','itemid',35989),(48017,'history','itemid',35989),(48018,'history_log','itemid',35989),(48019,'history_str','itemid',35989),(48020,'history_text','itemid',35989),(48021,'history_uint','itemid',35989),(48022,'trends','itemid',35989),(48023,'trends_uint','itemid',35989),(48024,'events','itemid',36024),(48025,'history','itemid',36024),(48026,'history_log','itemid',36024),(48027,'history_str','itemid',36024),(48028,'history_text','itemid',36024),(48029,'history_uint','itemid',36024),(48030,'trends','itemid',36024),(48031,'trends_uint','itemid',36024),(48032,'events','itemid',36025),(48033,'history','itemid',36025),(48034,'history_log','itemid',36025),(48035,'history_str','itemid',36025),(48036,'history_text','itemid',36025),(48037,'history_uint','itemid',36025),(48038,'trends','itemid',36025),(48039,'trends_uint','itemid',36025),(48040,'events','itemid',36026),(48041,'history','itemid',36026),(48042,'history_log','itemid',36026),(48043,'history_str','itemid',36026),(48044,'history_text','itemid',36026),(48045,'history_uint','itemid',36026),(48046,'trends','itemid',36026),(48047,'trends_uint','itemid',36026),(48048,'events','itemid',36027),(48049,'history','itemid',36027),(48050,'history_log','itemid',36027),(48051,'history_str','itemid',36027),(48052,'history_text','itemid',36027),(48053,'history_uint','itemid',36027),(48054,'trends','itemid',36027),(48055,'trends_uint','itemid',36027),(48056,'events','itemid',36028),(48057,'history','itemid',36028),(48058,'history_log','itemid',36028),(48059,'history_str','itemid',36028),(48060,'history_text','itemid',36028),(48061,'history_uint','itemid',36028),(48062,'trends','itemid',36028),(48063,'trends_uint','itemid',36028),(48064,'events','itemid',36029),(48065,'history','itemid',36029),(48066,'history_log','itemid',36029),(48067,'history_str','itemid',36029),(48068,'history_text','itemid',36029),(48069,'history_uint','itemid',36029),(48070,'trends','itemid',36029),(48071,'trends_uint','itemid',36029),(48072,'events','itemid',36030),(48073,'history','itemid',36030),(48074,'history_log','itemid',36030),(48075,'history_str','itemid',36030),(48076,'history_text','itemid',36030),(48077,'history_uint','itemid',36030),(48078,'trends','itemid',36030),(48079,'trends_uint','itemid',36030),(48080,'events','itemid',36031),(48081,'history','itemid',36031),(48082,'history_log','itemid',36031),(48083,'history_str','itemid',36031),(48084,'history_text','itemid',36031),(48085,'history_uint','itemid',36031),(48086,'trends','itemid',36031),(48087,'trends_uint','itemid',36031),(48088,'events','itemid',36032),(48089,'history','itemid',36032),(48090,'history_log','itemid',36032),(48091,'history_str','itemid',36032),(48092,'history_text','itemid',36032),(48093,'history_uint','itemid',36032),(48094,'trends','itemid',36032),(48095,'trends_uint','itemid',36032),(48096,'events','itemid',36033),(48097,'history','itemid',36033),(48098,'history_log','itemid',36033),(48099,'history_str','itemid',36033),(48100,'history_text','itemid',36033),(48101,'history_uint','itemid',36033),(48102,'trends','itemid',36033),(48103,'trends_uint','itemid',36033),(48104,'events','itemid',36034),(48105,'history','itemid',36034),(48106,'history_log','itemid',36034),(48107,'history_str','itemid',36034),(48108,'history_text','itemid',36034),(48109,'history_uint','itemid',36034),(48110,'trends','itemid',36034),(48111,'trends_uint','itemid',36034),(48112,'events','itemid',36069),(48113,'history','itemid',36069),(48114,'history_log','itemid',36069),(48115,'history_str','itemid',36069),(48116,'history_text','itemid',36069),(48117,'history_uint','itemid',36069),(48118,'trends','itemid',36069),(48119,'trends_uint','itemid',36069),(48120,'events','itemid',36070),(48121,'history','itemid',36070),(48122,'history_log','itemid',36070),(48123,'history_str','itemid',36070),(48124,'history_text','itemid',36070),(48125,'history_uint','itemid',36070),(48126,'trends','itemid',36070),(48127,'trends_uint','itemid',36070),(48128,'events','itemid',36071),(48129,'history','itemid',36071),(48130,'history_log','itemid',36071),(48131,'history_str','itemid',36071),(48132,'history_text','itemid',36071),(48133,'history_uint','itemid',36071),(48134,'trends','itemid',36071),(48135,'trends_uint','itemid',36071),(48136,'events','itemid',36072),(48137,'history','itemid',36072),(48138,'history_log','itemid',36072),(48139,'history_str','itemid',36072),(48140,'history_text','itemid',36072),(48141,'history_uint','itemid',36072),(48142,'trends','itemid',36072),(48143,'trends_uint','itemid',36072),(48144,'events','itemid',36073),(48145,'history','itemid',36073),(48146,'history_log','itemid',36073),(48147,'history_str','itemid',36073),(48148,'history_text','itemid',36073),(48149,'history_uint','itemid',36073),(48150,'trends','itemid',36073),(48151,'trends_uint','itemid',36073),(48152,'events','itemid',36074),(48153,'history','itemid',36074),(48154,'history_log','itemid',36074),(48155,'history_str','itemid',36074),(48156,'history_text','itemid',36074),(48157,'history_uint','itemid',36074),(48158,'trends','itemid',36074),(48159,'trends_uint','itemid',36074),(48160,'events','itemid',36075),(48161,'history','itemid',36075),(48162,'history_log','itemid',36075),(48163,'history_str','itemid',36075),(48164,'history_text','itemid',36075),(48165,'history_uint','itemid',36075),(48166,'trends','itemid',36075),(48167,'trends_uint','itemid',36075),(48168,'events','itemid',36076),(48169,'history','itemid',36076),(48170,'history_log','itemid',36076),(48171,'history_str','itemid',36076),(48172,'history_text','itemid',36076),(48173,'history_uint','itemid',36076),(48174,'trends','itemid',36076),(48175,'trends_uint','itemid',36076),(48176,'events','itemid',36077),(48177,'history','itemid',36077),(48178,'history_log','itemid',36077),(48179,'history_str','itemid',36077),(48180,'history_text','itemid',36077),(48181,'history_uint','itemid',36077),(48182,'trends','itemid',36077),(48183,'trends_uint','itemid',36077),(48184,'events','itemid',36078),(48185,'history','itemid',36078),(48186,'history_log','itemid',36078),(48187,'history_str','itemid',36078),(48188,'history_text','itemid',36078),(48189,'history_uint','itemid',36078),(48190,'trends','itemid',36078),(48191,'trends_uint','itemid',36078),(48192,'events','itemid',36079),(48193,'history','itemid',36079),(48194,'history_log','itemid',36079),(48195,'history_str','itemid',36079),(48196,'history_text','itemid',36079),(48197,'history_uint','itemid',36079),(48198,'trends','itemid',36079),(48199,'trends_uint','itemid',36079),(48200,'events','itemid',36114),(48201,'history','itemid',36114),(48202,'history_log','itemid',36114),(48203,'history_str','itemid',36114),(48204,'history_text','itemid',36114),(48205,'history_uint','itemid',36114),(48206,'trends','itemid',36114),(48207,'trends_uint','itemid',36114),(48208,'events','itemid',36115),(48209,'history','itemid',36115),(48210,'history_log','itemid',36115),(48211,'history_str','itemid',36115),(48212,'history_text','itemid',36115),(48213,'history_uint','itemid',36115),(48214,'trends','itemid',36115),(48215,'trends_uint','itemid',36115),(48216,'events','itemid',36116),(48217,'history','itemid',36116),(48218,'history_log','itemid',36116),(48219,'history_str','itemid',36116),(48220,'history_text','itemid',36116),(48221,'history_uint','itemid',36116),(48222,'trends','itemid',36116),(48223,'trends_uint','itemid',36116),(48224,'events','itemid',36117),(48225,'history','itemid',36117),(48226,'history_log','itemid',36117),(48227,'history_str','itemid',36117),(48228,'history_text','itemid',36117),(48229,'history_uint','itemid',36117),(48230,'trends','itemid',36117),(48231,'trends_uint','itemid',36117),(48232,'events','itemid',36118),(48233,'history','itemid',36118),(48234,'history_log','itemid',36118),(48235,'history_str','itemid',36118),(48236,'history_text','itemid',36118),(48237,'history_uint','itemid',36118),(48238,'trends','itemid',36118),(48239,'trends_uint','itemid',36118),(48240,'events','itemid',36119),(48241,'history','itemid',36119),(48242,'history_log','itemid',36119),(48243,'history_str','itemid',36119),(48244,'history_text','itemid',36119),(48245,'history_uint','itemid',36119),(48246,'trends','itemid',36119),(48247,'trends_uint','itemid',36119),(48248,'events','itemid',36120),(48249,'history','itemid',36120),(48250,'history_log','itemid',36120),(48251,'history_str','itemid',36120),(48252,'history_text','itemid',36120),(48253,'history_uint','itemid',36120),(48254,'trends','itemid',36120),(48255,'trends_uint','itemid',36120),(48256,'events','itemid',36121),(48257,'history','itemid',36121),(48258,'history_log','itemid',36121),(48259,'history_str','itemid',36121),(48260,'history_text','itemid',36121),(48261,'history_uint','itemid',36121),(48262,'trends','itemid',36121),(48263,'trends_uint','itemid',36121),(48264,'events','itemid',36122),(48265,'history','itemid',36122),(48266,'history_log','itemid',36122),(48267,'history_str','itemid',36122),(48268,'history_text','itemid',36122),(48269,'history_uint','itemid',36122),(48270,'trends','itemid',36122),(48271,'trends_uint','itemid',36122),(48272,'events','itemid',36123),(48273,'history','itemid',36123),(48274,'history_log','itemid',36123),(48275,'history_str','itemid',36123),(48276,'history_text','itemid',36123),(48277,'history_uint','itemid',36123),(48278,'trends','itemid',36123),(48279,'trends_uint','itemid',36123),(48280,'events','itemid',39804),(48281,'history','itemid',39804),(48282,'history_log','itemid',39804),(48283,'history_str','itemid',39804),(48284,'history_text','itemid',39804),(48285,'history_uint','itemid',39804),(48286,'trends','itemid',39804),(48287,'trends_uint','itemid',39804),(48288,'events','itemid',39822),(48289,'history','itemid',39822),(48290,'history_log','itemid',39822),(48291,'history_str','itemid',39822),(48292,'history_text','itemid',39822),(48293,'history_uint','itemid',39822),(48294,'trends','itemid',39822),(48295,'trends_uint','itemid',39822),(48296,'events','itemid',39826),(48297,'history','itemid',39826),(48298,'history_log','itemid',39826),(48299,'history_str','itemid',39826),(48300,'history_text','itemid',39826),(48301,'history_uint','itemid',39826),(48302,'trends','itemid',39826),(48303,'trends_uint','itemid',39826),(48304,'events','itemid',40181),(48305,'history','itemid',40181),(48306,'history_log','itemid',40181),(48307,'history_str','itemid',40181),(48308,'history_text','itemid',40181),(48309,'history_uint','itemid',40181),(48310,'trends','itemid',40181),(48311,'trends_uint','itemid',40181),(48312,'events','itemid',40182),(48313,'history','itemid',40182),(48314,'history_log','itemid',40182),(48315,'history_str','itemid',40182),(48316,'history_text','itemid',40182),(48317,'history_uint','itemid',40182),(48318,'trends','itemid',40182),(48319,'trends_uint','itemid',40182),(48320,'events','itemid',40183),(48321,'history','itemid',40183),(48322,'history_log','itemid',40183),(48323,'history_str','itemid',40183),(48324,'history_text','itemid',40183),(48325,'history_uint','itemid',40183),(48326,'trends','itemid',40183),(48327,'trends_uint','itemid',40183),(48328,'events','itemid',40184),(48329,'history','itemid',40184),(48330,'history_log','itemid',40184),(48331,'history_str','itemid',40184),(48332,'history_text','itemid',40184),(48333,'history_uint','itemid',40184),(48334,'trends','itemid',40184),(48335,'trends_uint','itemid',40184),(48336,'events','itemid',43173),(48337,'history','itemid',43173),(48338,'history_log','itemid',43173),(48339,'history_str','itemid',43173),(48340,'history_text','itemid',43173),(48341,'history_uint','itemid',43173),(48342,'trends','itemid',43173),(48343,'trends_uint','itemid',43173),(48344,'events','itemid',43860),(48345,'history','itemid',43860),(48346,'history_log','itemid',43860),(48347,'history_str','itemid',43860),(48348,'history_text','itemid',43860),(48349,'history_uint','itemid',43860),(48350,'trends','itemid',43860),(48351,'trends_uint','itemid',43860),(48352,'events','itemid',43861),(48353,'history','itemid',43861),(48354,'history_log','itemid',43861),(48355,'history_str','itemid',43861),(48356,'history_text','itemid',43861),(48357,'history_uint','itemid',43861),(48358,'trends','itemid',43861),(48359,'trends_uint','itemid',43861),(48360,'events','itemid',43862),(48361,'history','itemid',43862),(48362,'history_log','itemid',43862),(48363,'history_str','itemid',43862),(48364,'history_text','itemid',43862),(48365,'history_uint','itemid',43862),(48366,'trends','itemid',43862),(48367,'trends_uint','itemid',43862),(48368,'events','itemid',43863),(48369,'history','itemid',43863),(48370,'history_log','itemid',43863),(48371,'history_str','itemid',43863),(48372,'history_text','itemid',43863),(48373,'history_uint','itemid',43863),(48374,'trends','itemid',43863),(48375,'trends_uint','itemid',43863),(48376,'events','itemid',43864),(48377,'history','itemid',43864),(48378,'history_log','itemid',43864),(48379,'history_str','itemid',43864),(48380,'history_text','itemid',43864),(48381,'history_uint','itemid',43864),(48382,'trends','itemid',43864),(48383,'trends_uint','itemid',43864),(48384,'events','itemid',43865),(48385,'history','itemid',43865),(48386,'history_log','itemid',43865),(48387,'history_str','itemid',43865),(48388,'history_text','itemid',43865),(48389,'history_uint','itemid',43865),(48390,'trends','itemid',43865),(48391,'trends_uint','itemid',43865),(48392,'events','itemid',43866),(48393,'history','itemid',43866),(48394,'history_log','itemid',43866),(48395,'history_str','itemid',43866),(48396,'history_text','itemid',43866),(48397,'history_uint','itemid',43866),(48398,'trends','itemid',43866),(48399,'trends_uint','itemid',43866),(48400,'events','itemid',43867),(48401,'history','itemid',43867),(48402,'history_log','itemid',43867),(48403,'history_str','itemid',43867),(48404,'history_text','itemid',43867),(48405,'history_uint','itemid',43867),(48406,'trends','itemid',43867),(48407,'trends_uint','itemid',43867),(48408,'events','itemid',43868),(48409,'history','itemid',43868),(48410,'history_log','itemid',43868),(48411,'history_str','itemid',43868),(48412,'history_text','itemid',43868),(48413,'history_uint','itemid',43868),(48414,'trends','itemid',43868),(48415,'trends_uint','itemid',43868),(48416,'events','itemid',43869),(48417,'history','itemid',43869),(48418,'history_log','itemid',43869),(48419,'history_str','itemid',43869),(48420,'history_text','itemid',43869),(48421,'history_uint','itemid',43869),(48422,'trends','itemid',43869),(48423,'trends_uint','itemid',43869),(48424,'events','itemid',43870),(48425,'history','itemid',43870),(48426,'history_log','itemid',43870),(48427,'history_str','itemid',43870),(48428,'history_text','itemid',43870),(48429,'history_uint','itemid',43870),(48430,'trends','itemid',43870),(48431,'trends_uint','itemid',43870),(48432,'events','itemid',43871),(48433,'history','itemid',43871),(48434,'history_log','itemid',43871),(48435,'history_str','itemid',43871),(48436,'history_text','itemid',43871),(48437,'history_uint','itemid',43871),(48438,'trends','itemid',43871),(48439,'trends_uint','itemid',43871),(48440,'events','itemid',43872),(48441,'history','itemid',43872),(48442,'history_log','itemid',43872),(48443,'history_str','itemid',43872),(48444,'history_text','itemid',43872),(48445,'history_uint','itemid',43872),(48446,'trends','itemid',43872),(48447,'trends_uint','itemid',43872),(48448,'events','itemid',43873),(48449,'history','itemid',43873),(48450,'history_log','itemid',43873),(48451,'history_str','itemid',43873),(48452,'history_text','itemid',43873),(48453,'history_uint','itemid',43873),(48454,'trends','itemid',43873),(48455,'trends_uint','itemid',43873),(48456,'events','itemid',44055),(48457,'history','itemid',44055),(48458,'history_log','itemid',44055),(48459,'history_str','itemid',44055),(48460,'history_text','itemid',44055),(48461,'history_uint','itemid',44055),(48462,'trends','itemid',44055),(48463,'trends_uint','itemid',44055),(48464,'events','itemid',4),(48465,'history','itemid',4),(48466,'history_log','itemid',4),(48467,'history_str','itemid',4),(48468,'history_text','itemid',4),(48469,'history_uint','itemid',4),(48470,'trends','itemid',4),(48471,'trends_uint','itemid',4),(48472,'events','itemid',3),(48473,'history','itemid',3),(48474,'history_log','itemid',3),(48475,'history_str','itemid',3),(48476,'history_text','itemid',3),(48477,'history_uint','itemid',3),(48478,'trends','itemid',3),(48479,'trends_uint','itemid',3),(48480,'events','itemid',2),(48481,'history','itemid',2),(48482,'history_log','itemid',2),(48483,'history_str','itemid',2),(48484,'history_text','itemid',2),(48485,'history_uint','itemid',2),(48486,'trends','itemid',2),(48487,'trends_uint','itemid',2),(48488,'events','triggerid',23095),(48489,'events','itemid',1),(48490,'history','itemid',1),(48491,'history_log','itemid',1),(48492,'history_str','itemid',1),(48493,'history_text','itemid',1),(48494,'history_uint','itemid',1),(48495,'trends','itemid',1),(48496,'trends_uint','itemid',1),(48497,'events','triggerid',23106),(48498,'events','triggerid',23107),(48499,'events','triggerid',23108),(48500,'events','triggerid',23109),(48501,'events','triggerid',23110),(48502,'events','triggerid',23111),(48503,'events','itemid',79),(48504,'history','itemid',79),(48505,'history_log','itemid',79),(48506,'history_str','itemid',79),(48507,'history_text','itemid',79),(48508,'history_uint','itemid',79),(48509,'trends','itemid',79),(48510,'trends_uint','itemid',79),(48511,'events','itemid',80),(48512,'history','itemid',80),(48513,'history_log','itemid',80),(48514,'history_str','itemid',80),(48515,'history_text','itemid',80),(48516,'history_uint','itemid',80),(48517,'trends','itemid',80),(48518,'trends_uint','itemid',80),(48519,'events','itemid',81),(48520,'history','itemid',81),(48521,'history_log','itemid',81),(48522,'history_str','itemid',81),(48523,'history_text','itemid',81),(48524,'history_uint','itemid',81),(48525,'trends','itemid',81),(48526,'trends_uint','itemid',81),(48527,'events','itemid',82),(48528,'history','itemid',82),(48529,'history_log','itemid',82),(48530,'history_str','itemid',82),(48531,'history_text','itemid',82),(48532,'history_uint','itemid',82),(48533,'trends','itemid',82),(48534,'trends_uint','itemid',82),(48535,'events','itemid',83),(48536,'history','itemid',83),(48537,'history_log','itemid',83),(48538,'history_str','itemid',83),(48539,'history_text','itemid',83),(48540,'history_uint','itemid',83),(48541,'trends','itemid',83),(48542,'trends_uint','itemid',83),(48543,'events','itemid',84),(48544,'history','itemid',84),(48545,'history_log','itemid',84),(48546,'history_str','itemid',84),(48547,'history_text','itemid',84),(48548,'history_uint','itemid',84),(48549,'trends','itemid',84),(48550,'trends_uint','itemid',84); /*!40000 ALTER TABLE `housekeeper` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hstgrp` -- DROP TABLE IF EXISTS `hstgrp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hstgrp` ( `groupid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `flags` int NOT NULL DEFAULT '0', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`groupid`), UNIQUE KEY `hstgrp_1` (`type`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hstgrp` -- LOCK TABLES `hstgrp` WRITE; /*!40000 ALTER TABLE `hstgrp` DISABLE KEYS */; INSERT INTO `hstgrp` VALUES (1,'Templates',0,'7df96b18c230490a9a0a9e2307226338',1),(2,'Linux servers',0,'dc579cd7a1a34222933f24f52a68bcd8',0),(4,'Zabbix servers',0,'6f6799aa69e844b4b3918f779f2abf08',0),(5,'Discovered hosts',0,'f2481361f99448eea617b7b1d4765566',0),(6,'Virtual machines',0,'137f19e6e2dc4219b33553b812627bc2',0),(7,'Hypervisors',0,'1b837a3c078647049a0c00c61b4d57b5',0),(8,'Templates/Modules',0,'57b7ae836ca64446ba2c296389c009b7',1),(9,'Templates/Network devices',0,'36bff6c29af64692839d077febfc7079',1),(10,'Templates/Operating systems',0,'846977d1dfed4968bc5f8bdb363285bc',1),(11,'Templates/Server hardware',0,'e960332b3f6c46a1956486d4f3f99fce',1),(12,'Templates/Applications',0,'a571c0d144b14fd4a87a9d9b2aa9fcd6',1),(13,'Templates/Databases',0,'748ad4d098d447d492bb935c907f652f',1),(14,'Templates/Virtualization',0,'02e4df4f20b848e79267641790f241da',1),(15,'Templates/Telephony',0,'1d12408342854fd5a4436dd6d5d1bd4a',1),(16,'Templates/SAN',0,'7c2cb727f85b492d88cd56e17127c64d',1),(17,'Templates/Video surveillance',0,'d37f71c7e3f7469bab645852a69a2018',1),(18,'Templates/Power',0,'3dcd5bbe90534f9e8eb5c2d53756af63',1),(19,'Applications',0,'a571c0d144b14fd4a87a9d9b2aa9fcd6',0),(20,'Databases',0,'748ad4d098d447d492bb935c907f652f',0),(21,'Templates/Cloud',0,'c2c162144c2d4c5491c8801193af4945',1); /*!40000 ALTER TABLE `hstgrp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `httpstep` -- DROP TABLE IF EXISTS `httpstep`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httpstep` ( `httpstepid` bigint unsigned NOT NULL, `httptestid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `no` int NOT NULL DEFAULT '0', `url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `timeout` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '15s', `posts` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `required` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status_codes` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `follow_redirects` int NOT NULL DEFAULT '1', `retrieve_mode` int NOT NULL DEFAULT '0', `post_type` int NOT NULL DEFAULT '0', PRIMARY KEY (`httpstepid`), KEY `httpstep_1` (`httptestid`), CONSTRAINT `c_httpstep_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httpstep` -- LOCK TABLES `httpstep` WRITE; /*!40000 ALTER TABLE `httpstep` DISABLE KEYS */; /*!40000 ALTER TABLE `httpstep` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_insert` AFTER INSERT ON `httpstep` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (14,new.httpstepid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_update` AFTER UPDATE ON `httpstep` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (14,old.httpstepid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_delete` BEFORE DELETE ON `httpstep` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (14,old.httpstepid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httpstep_field` -- DROP TABLE IF EXISTS `httpstep_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httpstep_field` ( `httpstep_fieldid` bigint unsigned NOT NULL, `httpstepid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`httpstep_fieldid`), KEY `httpstep_field_1` (`httpstepid`), CONSTRAINT `c_httpstep_field_1` FOREIGN KEY (`httpstepid`) REFERENCES `httpstep` (`httpstepid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httpstep_field` -- LOCK TABLES `httpstep_field` WRITE; /*!40000 ALTER TABLE `httpstep_field` DISABLE KEYS */; /*!40000 ALTER TABLE `httpstep_field` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_field_insert` AFTER INSERT ON `httpstep_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (15,new.httpstep_fieldid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_field_update` AFTER UPDATE ON `httpstep_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (15,old.httpstep_fieldid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_field_delete` BEFORE DELETE ON `httpstep_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (15,old.httpstep_fieldid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httpstepitem` -- DROP TABLE IF EXISTS `httpstepitem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httpstepitem` ( `httpstepitemid` bigint unsigned NOT NULL, `httpstepid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`httpstepitemid`), UNIQUE KEY `httpstepitem_1` (`httpstepid`,`itemid`), KEY `httpstepitem_2` (`itemid`), CONSTRAINT `c_httpstepitem_1` FOREIGN KEY (`httpstepid`) REFERENCES `httpstep` (`httpstepid`), CONSTRAINT `c_httpstepitem_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httpstepitem` -- LOCK TABLES `httpstepitem` WRITE; /*!40000 ALTER TABLE `httpstepitem` DISABLE KEYS */; /*!40000 ALTER TABLE `httpstepitem` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstepitem_insert` AFTER INSERT ON `httpstepitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (16,new.httpstepitemid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstepitem_update` AFTER UPDATE ON `httpstepitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (16,old.httpstepitemid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstepitem_delete` BEFORE DELETE ON `httpstepitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (16,old.httpstepitemid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httptest` -- DROP TABLE IF EXISTS `httptest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httptest` ( `httptestid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `delay` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1m', `status` int NOT NULL DEFAULT '0', `agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Zabbix', `authentication` int NOT NULL DEFAULT '0', `http_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `http_password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `hostid` bigint unsigned NOT NULL, `templateid` bigint unsigned DEFAULT NULL, `http_proxy` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `retries` int NOT NULL DEFAULT '1', `ssl_cert_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ssl_key_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ssl_key_password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `verify_peer` int NOT NULL DEFAULT '0', `verify_host` int NOT NULL DEFAULT '0', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`httptestid`), UNIQUE KEY `httptest_2` (`hostid`,`name`), KEY `httptest_3` (`status`), KEY `httptest_4` (`templateid`), CONSTRAINT `c_httptest_2` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`), CONSTRAINT `c_httptest_3` FOREIGN KEY (`templateid`) REFERENCES `httptest` (`httptestid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httptest` -- LOCK TABLES `httptest` WRITE; /*!40000 ALTER TABLE `httptest` DISABLE KEYS */; /*!40000 ALTER TABLE `httptest` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_insert` AFTER INSERT ON `httptest` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (11,new.httptestid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_update` AFTER UPDATE ON `httptest` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (11,old.httptestid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_delete` BEFORE DELETE ON `httptest` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (11,old.httptestid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httptest_field` -- DROP TABLE IF EXISTS `httptest_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httptest_field` ( `httptest_fieldid` bigint unsigned NOT NULL, `httptestid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`httptest_fieldid`), KEY `httptest_field_1` (`httptestid`), CONSTRAINT `c_httptest_field_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httptest_field` -- LOCK TABLES `httptest_field` WRITE; /*!40000 ALTER TABLE `httptest_field` DISABLE KEYS */; /*!40000 ALTER TABLE `httptest_field` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_field_insert` AFTER INSERT ON `httptest_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (12,new.httptest_fieldid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_field_update` AFTER UPDATE ON `httptest_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (12,old.httptest_fieldid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_field_delete` BEFORE DELETE ON `httptest_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (12,old.httptest_fieldid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httptest_tag` -- DROP TABLE IF EXISTS `httptest_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httptest_tag` ( `httptesttagid` bigint unsigned NOT NULL, `httptestid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`httptesttagid`), KEY `httptest_tag_1` (`httptestid`), CONSTRAINT `c_httptest_tag_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httptest_tag` -- LOCK TABLES `httptest_tag` WRITE; /*!40000 ALTER TABLE `httptest_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `httptest_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `httptestitem` -- DROP TABLE IF EXISTS `httptestitem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httptestitem` ( `httptestitemid` bigint unsigned NOT NULL, `httptestid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`httptestitemid`), UNIQUE KEY `httptestitem_1` (`httptestid`,`itemid`), KEY `httptestitem_2` (`itemid`), CONSTRAINT `c_httptestitem_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`), CONSTRAINT `c_httptestitem_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httptestitem` -- LOCK TABLES `httptestitem` WRITE; /*!40000 ALTER TABLE `httptestitem` DISABLE KEYS */; /*!40000 ALTER TABLE `httptestitem` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptestitem_insert` AFTER INSERT ON `httptestitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (13,new.httptestitemid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptestitem_update` AFTER UPDATE ON `httptestitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (13,old.httptestitemid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptestitem_delete` BEFORE DELETE ON `httptestitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (13,old.httptestitemid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `icon_map` -- DROP TABLE IF EXISTS `icon_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `icon_map` ( `iconmapid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `default_iconid` bigint unsigned NOT NULL, PRIMARY KEY (`iconmapid`), UNIQUE KEY `icon_map_1` (`name`), KEY `icon_map_2` (`default_iconid`), CONSTRAINT `c_icon_map_1` FOREIGN KEY (`default_iconid`) REFERENCES `images` (`imageid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `icon_map` -- LOCK TABLES `icon_map` WRITE; /*!40000 ALTER TABLE `icon_map` DISABLE KEYS */; /*!40000 ALTER TABLE `icon_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `icon_mapping` -- DROP TABLE IF EXISTS `icon_mapping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `icon_mapping` ( `iconmappingid` bigint unsigned NOT NULL, `iconmapid` bigint unsigned NOT NULL, `iconid` bigint unsigned NOT NULL, `inventory_link` int NOT NULL DEFAULT '0', `expression` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `sortorder` int NOT NULL DEFAULT '0', PRIMARY KEY (`iconmappingid`), KEY `icon_mapping_1` (`iconmapid`), KEY `icon_mapping_2` (`iconid`), CONSTRAINT `c_icon_mapping_1` FOREIGN KEY (`iconmapid`) REFERENCES `icon_map` (`iconmapid`) ON DELETE CASCADE, CONSTRAINT `c_icon_mapping_2` FOREIGN KEY (`iconid`) REFERENCES `images` (`imageid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `icon_mapping` -- LOCK TABLES `icon_mapping` WRITE; /*!40000 ALTER TABLE `icon_mapping` DISABLE KEYS */; /*!40000 ALTER TABLE `icon_mapping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ids` -- DROP TABLE IF EXISTS `ids`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ids` ( `table_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `field_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `nextid` bigint unsigned NOT NULL, PRIMARY KEY (`table_name`,`field_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ids` -- LOCK TABLES `ids` WRITE; /*!40000 ALTER TABLE `ids` DISABLE KEYS */; INSERT INTO `ids` VALUES ('dashboard','dashboardid',87),('dashboard_page','dashboard_pageid',127),('functions','functionid',94),('graphs','graphid',40),('graphs_items','gitemid',162),('host_tag','hosttagid',5),('hosts','hostid',15),('hosts_groups','hostgroupid',15),('hosts_templates','hosttemplateid',15),('housekeeper','housekeeperid',48550),('interface','interfaceid',1),('items','itemid',84),('profiles','profileid',95),('triggers','triggerid',23150),('widget','widgetid',541),('widget_field','widget_fieldid',1322); /*!40000 ALTER TABLE `ids` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `images` -- DROP TABLE IF EXISTS `images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `images` ( `imageid` bigint unsigned NOT NULL, `imagetype` int NOT NULL DEFAULT '0', `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0', `image` longblob NOT NULL, PRIMARY KEY (`imageid`), UNIQUE KEY `images_1` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `images` -- LOCK TABLES `images` WRITE; /*!40000 ALTER TABLE `images` DISABLE KEYS */; INSERT INTO `images` VALUES (1,1,'Cloud_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0D\0\0\0IG=i\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IDATx\\ \\W\\X_|\ؾqO+ \\\\\:J6p\n\\תնP+\]+VdAM\E\ v¾w\9_!$! \Ą\\9\s\e!\X\=\g[-\\a+㈌\\:\fx\1\\g,l~Ř&0\?L\s\\\r\\{\T\>\0\\Tx p\|\_\'11-3{\s\w\\޲)\,a^X\\Po~\\G\6TP0P\ MD\33&\,3K\c*\ʘI;_\g\n\+\Z_\n>}\T\g\+f\X>0f\@5\0\z\AP0av\\f`\NnŘV\\\=9\͏\\\굃o\rr\\\']\l;|\CvY\\\%b|_2y\Id\hGQ\"|:A`\Q\SJ\qV\Q\\ 7|G\\&\\nM\\'\Rr\'\>KⳉolI\"Ӊ{x\Z%4\_t\.^k\\\ \g\E\\0\\ԅU5х\`A(0\V x\x\i\\b]D2e$2{D: e$?, )Rr\ER.\' \l\v\'\9w\翌&e\\\\Ӡ\\0\>\\2,-#Ib(0\'\\Tr\/\M;{<\\7X_:\o\h\\MF\\'_*\^iy\$dQ\02e$CƂ\0=@0\\Qd\n\=0\ٸ\0f\`lB43͢^\\k>\ʗT\\0 \0d\)\Aa\0TaH,( `\Z|=û\u\e/\\V\nvs)\8֢\w@\+O\击v\T\\H~y\rՐjrzQ`\0m\0Ng8\q\;d\ $\hp\ZJM7\4jc\>8|7\3|kK\\.\,j \ZRH5\0h\0\\% 0(@\CN0\f\\\|\\u1\\Na,?e\P4\&\\U\$\\VI\}\4d,\0\Axq\\\\Q\\T7\zZ@VY70\\ e!\\UO\L0}(lˆ\"\\Ip:}}&:=\0 \\GcE\'zu\\RyU}3)i$e5\rBPR]OJ(#\r\\d`\\`\g=ͳN]:\ \b\a\(c*\\\o\j\\\}btn\E \дJ\i\'FK\\8U%1\ypM`trZMc k&uM@9tM0ȵ\ U? \`P]I􁁂@; \aZ\?\/tFΘ\\\/._\'\h\.\={\GP\%\kaɥ15>r\\\9/\\\\}nO\i\\g{W\Z#\r \0%S߰]\\\^\ͭP\\L@ @SF 9E\\\n\\%/|\\″ۭ\\{ٵ\\\!+\\T\23H1\\\\z9(\\\pm`OKI`3r~v\\\ߴF\͵\r\\r\mB\Ԃ Ԩ o\\0CC/ Uƃ.|,8)! \\\(M^}iɆ٠S8\P0P|c:\\\\\ݸ\+Y߁!M`\\\iLf\xյ\\\v\\\F\ZS@ b5\nP\ C\`0T\00\\H\\$1\IT7ZI# \0\_B\+\\\\V\\\0V#\0ag?.e&Y2y\ۚZۺ\\Is[\\0 `G\.\3<( ᩭ?zGT`\!\03 )\:K\\l\n4މH\\j\\$\\\ \\0P\00 \0BY: u\Z`\p\S 8\\P0@ 2V\%\}DU\<\\\c\\r\߃V}\\0\\^.̈́o<߾nim\\\\&]]\\6F`\0\\r\03\n\\\\\\$\z\x|l}\\uw\EK0dW\'\r1(f\ \y9h\W0Ȅ\\c\0\\@5foKhh\\0B7\aWQ3 :P \aj#\R\+P+\ : \Z2R\K% \0\\\\.׽\\C\k\930\\]GmÐ@f\08\$>`N\y\#}\ڝB\0\>t\G?w8\M# =&B00\0Å\r\0\\\\3 w+t\Z\0|(\\z\+\?iKV֐a4 }\\1\H\\LhJ_g됾V-l N\\<\~\lNj\\ \"\߮Yֵf\"єE\\u\\F\ZS\\\\{ Á\=r\ {|):\nw\@\~`ӆ\u\5U\0aP\@PRŠd,\\2C+lq\rN\q\\'\'C<\y\Q\\Zq\ \2\\`\G\\#4cp\jz\\0u\BjX.ei#\n@}\\Z\%:l\N\ Ɲͻ\}lL`|fq>\0e\\\\0~3\03\}`k\$0\Tv/\\PY%\ \'b6bBQ: Š\E\\\\\\j\!\0gPtE\rƖa\0AzB[z-N>v\'<\ܪڵ\~~P \ì7XŒM|+\߽v\K\ξ\\^\\\$ܢ\\Z\٤;\\0\!)R\\Z68}\\nz\\\\$UCA`8w;m\\pN8H\\(GSvj)\\è;\\\\¨e\'^{\\]ǼH`Rȃ6p\\Ax`\\/(aP 8\0fC\}̈́>a\0-\7\!UT-f)k̰\ Jՠ\\n;\0,b\\3\fQUG(Z\\?_\notl\6<#\\ 2f\n %\~ ìrI\;N\'\&*\ѩ;\\-AKmK Z\04,!u\\\\\\\c%\zɚmG\\oRC\4P\Df\\' >љ\\w\{_9\\\{\3T\\[ѩw\ҋ\3<\2\Bv\c\\m\B\0\AY\\ao\2\0\54\)lNϯqv(\l jmp\"Xس\\1\0\ \=`{uz\u|@\\/\0 iaj\\\Xx\&4x0u\A\Z \_ \(*x?s\3Up׌CiM=9\\`8%o\\\op=u!`S\@O,+\3\冯\BS#\5\`na \\n\魰eEv\&\\\~\@a\\o\\\TP؜b\\\ʉj\\\\NCY>:\\ߩ^\哸\kw\{Ef\uz\']}d,u,lBS\Z\g\s\\\b^\00 a^&\\\N\\ (׌ @\r U)6\U\$P\\j\͸lX\\aȢ>!Jި6\m݊#\\,\c\\!&yv\\1}Jq͈0(.\睫\h\DPQ?ɒQ\}\v\]\\;כ\V\0\'\\̄\n@\\Vm\CCr=\zfx1D,\62t\jضd\\\=\ }\4c\Ң\\\0`e\&\q\სT^\\\0\\\\+\s;Aepm0L\\+1ic Ps\e\ z:5Wvc k9&VY\Dx\\\.wsC\p=(Ə=w\61\\"*Y6\d }TpmaАpב\c\zAP0T\0\\f\,$\rdU8\\\CEumVq\w\Io2=y*D\\vhd\\C\\\\]^e\Y\]/X@hdRv.Ĕ9w`\\\qV֘\M=**MG\\OK\;钰`̶\ήΏ9k\o2 \{)v\,6\\\5uAC`LrwƋzN\0_I\t;\rb\x 9[\\\\_j=5C/ ᥌s)=\\qmhnolm3\O\r9\\ {@̄\p3\\ι\kj]\\\ƅ^\\\&}@\}Sxsr[8\0XBH%[h\\{\\ Uʹ\\\\ўy\\sBg6\f^`\\u;\sgR\\0ʌ\D\\[\}\'\\_\ \\\r OOIΒ\\\+*\̓\^$\P0KZT[\w7>ʍP\\8>ʪ\r \c\Z?\i8\\\Mt@\<K\\R`2\0b(n\`z]gX%6\\Nz\8x\nP@b\&\M\S٨~[\\غ]~\@$2\96*\\\%\0%=P\ \\!v?[v\,3kkgKI\,} 8%\\p\\o\R=т\C\\\\\\\ZNAU?SE\pN\\0w詟k\\u\1Q\0\R\ܥ$7\0\0\0\0IENDB`'),(2,1,'Cloud_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\r\0\0\0l\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDAT8˭\KQ\O*!\"E==,\c\ \{\dE\l/mYAYkK\.f%nT&f[\\ Gmo\ޜ\\άu\\Rɪs8\]\0S \4Q\z\\\NEh\-G}ct\\=ljn\\?\\\\\\\\rsv\+A)\h\nP+ظ\23\:\|Qyp}\\TO\" \BtB \À\1M\/+\Dx\f]\\\=d4\\/\3TU(ʐ/j\_0AL{#q\6a\\c\G\0Y\tuܵ \:r\4 SVE ò\\L\F$ 3\\P]\0Ek85\ XU\\\z2y\8\8?\ٗydQTKc,\_\^\\"\% S\\-`H83`\xOwY%\\r\u\\\ra\qq+u\7,;d ;!\\3rAFr :^6\]\\'\Tk1<4\u}]\ˍ0\r~\s\6yj\3{\L\\'\͑g=\\ݗo؏\|)\\-%$\0\0\0\0IENDB`'),(3,1,'Cloud_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0\Z\0\0\0\5\\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0yIDATX\՘ LWǯ,l\5\,N2@A7Y7\\tOu-\dseM09_\p\Ft`A0\C\C`jZ*϶@--\Q\\\\\\-\"\QOrIJ\}\s\{ \0.i\t!Q\8\y\\ɴ\\q0\I\\Y\\\x./jE̎C_~\ć\E\\'\i\!-\j\¿\+wZ\Xf\\\җ¿J6\0\Y\\PwLf\0AQ!a\)Q\èNU\20563\Fv]kۭp$mC\\\R/\\\g\i\by\F\ L\\c\0\0]X\\\\\PfDsaF0O\{\Z\\\\Ja\\ aazF?F\C\@P\4b\\\\\m\ a\-\mi\hc0_2\?rF7\(fEA c?LatЂ0R%*S2;#U\y\ ǣL\:N\k\34\o\\\&ͩ\z\r&cp=BES25dʻ\\T]g tת!y \\y\\ȢХ\VX]\"ԕߔXiZii62C\\0Md\\P\ڼ7c7\\s\\:\>\\0\\\9gIĦgʄ\n\Zьu\A\j\`\\YzF\\)\0/6\'\:_x\I\:gY oh\ r\ s\rUi1#a ,# mTv7\Zii{r\~\\\*\r\*EVW/9,\\Z ]2Rä )>\l}]4\.V\"\rq\1\\X\rQ6\d\X)Y\2J8a&5s\"K\\\):\03\ʏ\6Mȋؑ\O\rfseٕvj+Y\Ǝ\\!vsؙh\\ t~:\\g<\n~\\\\zR\C\\\5By\\\\_,D|\<\\q%蕈W\\3\$rO\'2RM<\\ɜq^y\% \\\\\۱+6\'\\C\ٟ\\gN\J\.<\\ᬤ\\m\\\':\ \e\\Lݙ7\o;s\\/\\\ \ܲg\0\0\0\0IENDB`'),(4,1,'Cloud_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\"\0\0\0\Uߏ\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATh\ݚ PSG\W[\\j\-4\WuZc\\\ztZu\LGElZ\zu<@\*QD\CC\\\n$#`\$@\Y2\\\~\@cԑT7#\'\єu=׳\'}\\\5\\pMGo\C;>eJ\\&sXq\ޅ\ \+\\܇hgo\\\1\IF\\\m\\\\5^\\\QPD,$:]x?Ey!,Az\ʽ;\B,44?\n=\"\rA\A\d\ٮݸ)Mʕ\G9r--6K\\/F)&u]\d~NP\\n5pAI\/.\Maa\rƭ|88J\ۜѸ\\~)\`\~b/F\]\n̶L\0\1\\\_6*\\%*-.ą\\Z,/\\\`d5\ ,\\S4\e2b\\M^u\\]\|v\n\zu\S?\\aq\I&P8Da\ssx$\JJ[\+RS\*\f [9ﳡC\\d1\\Yڢ2\\G\:?|\뿗\Z\^\`\\ }\\k\\ZVY\\ZlQjC|O\Z\\8&SbTFy$ !+JpzŰ\\\\&}ޯϤ\n\nuM\S=\\?\5z\\][\\0F5\&\0\( tjtaR\c#F0\"\"\o\M\\\Wc O\0 q\\}06\`O\zLa\5i s\\TT\fa\ :Mͳ\r*h 3o\\$b+Ց0 ,A\'-%5\\\k\e3W입ܞY\\\\qsϓq eAHFFuZ\\dq7UD\\\4100s\7o0a\64\Y\\\Km,Q\0J* F\IY(CeF\/GѬ`c\y\"\ϡ\eM>\F\u\f\\%7jml!*V\}TFs0\܌-F,gwsr\n196\\\\\'2\\\sm^}2$Z~\\tnBUŌD٠\Ԉ \T\\Zid~ %(C]\\"\\\\\\V\\\nx[!6C\)\\0ʨ4èG \T\r\0CbTF>QFT\'\=}ŏ\03wz\0\\5~\ETы\y 0t\d`\gI) H Q0\bS\Z\0q0)IxDC\,\\ \\^j\r \ ä k0Ss\n\X>t\'\0n`򪗁f0Hg\\\>S\\n\oP+\\\7\2*|:SYQ\L4K\\")\Z\s}us3W0\Z\XeZ\v\d\\\͜xa\Zwj F\\.q\nĤ\\.Xa\12\aNG>L\l\6z|\Nli\,$.:\7\\\n5ܵB\:\rG\\}\2H\\0<#QqߩcJMeQ$Kv\߃\\L\'H\\}`i8\\O\R\'\Z\Zy6z1g~9\z\BH!Ih\V\r\Վ>W\6=:c܆:b\_\n\rM\ErMR}\[,*)Cp#\\/4\CzAO\-\sN;\#l=\$?@7 xs_\\v\rW4鱝\\>@_\\\\3&\@\ԫS4Wmz\\c\rC)w]\0\0\0\0IENDB`'),(5,1,'Cloud_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\03\0\0\0h\ra\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\rIDATx\\ X\߰\\d:\\\\l2)]tG\L:\\:\\{\\н\\)>\Cc4^\!$M\z\x~\Q \\\4\\whΒ;4m\]\\\1\:\? g\\\A\\g!5@\`xC7Sg.qx# 9y\\\uF\^\\\!4\\~\\\{\,1\A\\\\\\2y +b\_\#\\:\\\c\\nF&~t9u{@xԦ\N\O\vY\CNnOP \ םT3&818\\deNTz9|\el\|bnb^jA9\\\RScDR|1SϧሔB|:!Ɖ\\ uy\\r\=.ՈiFYS\\\'\\\\]֧_\\J˯\\LiNT\ 2\ӊ*qXS\ne8_-I\\\"|8\%w\Wk\u\\+&6\^ۃm\24.#_,\k\u8\\\\\Z 0\8\\\*\0bK\\| \"Yّ+SP\r>fA=\3̓\n?;U\My\\\jW\q!P \\ `K\pTfWP|\\D,\\\$\r\o\(\0 ·\'\'\#o\\-\\6v\5ai\\DF!ڡ #Hx\r$h\\vԇ\0I\\\3\=᭕Onl>\0[\Wh\\\J\\^߄K\\FݐaD;$Ar\mTA\'\r>\Y0\/D\e\\\r\Akz\[1a]\\D;\Bī\7\4t\4\*W6(Lތ+ꛍa\XFTF\\rN\^y\&\\Q\L7\<\s\/B7w\=840\\ >0Y\\\)\^yF\&W\\6\\\Ԋ \\h&zS\a@\sʉ\rF\\ \n\ۯo\ٹ\\]C\N\\H.:\Z.\ ,$?\m\\2o A?)Lx;\0\\\S\S\\\\r%\\m+Z\q# \Ʊ\L\\C]\\F\cg~NweU1C\DS \\hO\Q \"RH\\-\!\"h3h\(\~Ӏ\/n\P\\N$7\\\\\n\rփ!\޳IbX+2\3R\Iɘ8\D9R\\\ج\|慜yF\5J`\!\'g1WK*k\:p{\Z\ڡ\"0TX\\ j`\`D_d*6* #2@7DX\\\N~S\0\O\"\rPU3\\Wuuc \k\'y\PY\h5\r&0 \z_\+51SY0 O3Qq!S6Jۇ;TéO)\Z)\0;\Z9\g !#X\bF5\Z\խj?T+ a(#8\\Z.\(7\\02`\\0\"S T;N\\殞K\Uu\#Ov\\8q\ݬ,0\\a(G\n\\=g\k͔(L=\#\BZ\\'\#i8KMw\0.6Dx4\gY\A`\`P\mc\0D$l¬2;\0\ֺ\\\\HxjŢ\Ȝ/-9x9 6oJ\\4\fs`a\dKuP2!\A\aN\E\J෍ \0-|\\]\{z\\"P-\2&0TVÒ 4q@f`dKk\ɩ/2B\ \ &N=d\\"t\d#窍c+T+\Z;\'cEf\{4i@&[F$\/\G\=:\0\\C\0B5\\$^\0}g\\#Zp\aa€2 :\\L\QkaR\\}\Ֆb\\Ci*\~\\P?,I}\U\u$\\g\\1\4\2b! H\\r1\0 I5}\hjG`t1-\V[a\ zƲp ʵ0r\{oUhBH|\r12|Hyu7Z\{!\S\n\sTJm\4c0\0OP\\=\\0g\S\\4=em\}\O>\Ý\\?%J\@N\`^\Y\4̴\ \f/ !f{B-ȉ^G\B\\\\@\nf\qGID\\tI\<\\r\\r#\I\\]Jk\r\ћs. Z\n F\~\I\\7Y\\\]?\q88\\׋qc\\\?\\f-1\^h-\\)J\櫚$|o\>\\d,€\.0^\h\lOR\좆c\\\\\\C%,*W3=\)PZ\5_\\ɘ\6\N\eo]j0\\\\跗a\rJΕ\Vo\8d\'>\0tl\אּ4\"pBQ\e\\\h\`K嵪7Q\\\\s z>\=L/^W/ ͐`@\\Ҿ1.й|\\\r\ʐ\;\r\"$\\o\\lR^;\\oE\A€9$s1ؖ0[\\\4\\\>Hr~\q\T\C\\d\*|\N9\\Zj\\`h|\ZԿm\< 0Pok0\*DFg:DOK\W\\ z\lf\ha)͖\\{p]\MVۖ\`\\\U74%\Z\Zx\\ R +l\) ]˵\B˵Z\\AC&P̣\0\/\s\lg\\p۲-Wie]=Ɏ\If\ \'d\`\SrD\Q+f`&,z\P0i\\m\\\\\ai\'٘0T7\\{J^Hٖ\WSKk\K\z\^BO\"{\{`\\\\\O\\W%ofݶ\\\iZ\\h1Ȱ\_I\ˁɶB/\'͛鴯\\'\֥t\a2ur_[T^ \MF$eU\;\.s\@?\b:h M&\\Z\\\,=\+,76@3Ϯa\-IC&3m/%2a560\ФT~\é`\\(\}x\\O<^\\-dq\#\rr\&\WJ:%\\Eo\\_\\f_z&\\Y+6\W>\\Pԙ\W\Ssą\\nYYU]˙\ڴq~\y\\/\\\V\I/>MXKSsN\\\Dfq\\\ \\bb\\#7\\\0\\Xns\Cr˜~G\?\\\>N\ \n\\\4|%~\.-8 p\g\\`\\\J{\( Ւp&\239c\0\0\0\0IENDB`'),(6,1,'Crypto-router_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0y\0\0\0\)\Z\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\03IDATx\\]x[\\>w\\x\qǙMe4@4BHIm-(--\/{C\\ !;\x\)\%[\{>KX\4~\s;\\\{\s\]I\f3M/d\Z\0\\0n˅^8\d2ykZD\"\|\=\\0/k׮\\\rIOO_\\\\ h\z\Z \ov\\\+v\\\<\r\r\\7_\ZykrrrJtt7\0@CCCT*Q!˫{{{\\\\d\\a\*C\\*0 z`f\\\\ܲ\0WE\n \;-XϺ\vO\\\0\wt\\L\}\\\B\\\ҏ\0%`\j\k\\\\!S\"Bؽ{7\\\Lp\\r7\08\r\xٸqc\\ٳ\\\\z29rDr\r=n\\ %\\:묤5k\|%44T\n\>\Z5\\;﬛il۶\\\\\CBBHR\{\\'|TT\Qs \:6D\"\\nYp\\"z0 lhh\a\Vp.\\\999f̘!|K/$\-\~\4\e˖\\ɩAAA\`0K `\r\"\4\0NO!\ŢE9+,,w\yG},~\\${\\ٴ3\0\3\0\>@5D\2\\[{T[[[\Ѐ.LoҷV\\\s<¸=#\\ڵK8пf9\\A\'\0n\\0 $\\\\\\^D\\O\w\\ihFy;w=\\w\Z\0X\\dPз/p\ \7?? Y\\u\\+\"3\0=EH\\\r\\\O\0\$*jH\\9\r.7\xc.{z+g>\#B\\'D?BX\\uB{\G 91ġ$\0\\\\\\w\n\0\0\\\1\r.\_rD\06\\.B80xDa3׉ \\~}Itttg YrN\\n\\\۷a\\0\0ghik\\\\w\h}}}w\^b\04C\-G8W\,\0\\\h\\EJ\\'|\\S& \00\\\.{\ޭ<\\0\\\>g\a\\\\\{\h\\ \{\~~c{?Wտ\@G驧s\\0\\.\\@}\Z\0\.+W<-Ba\0j\00ug\\O֔0\,G\\0e`<\aaa^y啾\\0z`i\08p FS\U\X2*\n\r\\_^8w\0\F\\`\00@`V!\\ƍT\0\05\0@\4\0YVZ\r#\\L\\0AFQY7|L\X\]y\\\\jm(,\\\m\#`\.F\rçYu\\\L\0u\n@40\r\0g . \\\\|u\'m\\\j-\}\.\&l@\Ͻ\\\\\\ѣt\\!\\\\`\\4\0 \0\~\ȨcmG\\#\\0\\\[n}b2 o\\"u\Z\0\,\\\Dq9^{\^>\r~er\%`\Z\0\3 -\d\,6\^\Xnm\\M&\0Z;P\4\r\0իW{W\0ѓ\\}VWWG\<\L ¢~\\\O?0\0h\0\\\0p`\\\00\\O<\\g}v\\*\0u\\0pnYnL\7D\N+?\\#\h\ <\\oL\0uv kl˚5k\0\\\c\\\L&S\\׿u\\Ghi\0L`\ة\\ܲeK\h\\"yD7N&\0ڻP\0\r0@\"^y|a\ƍ\rp9\[\\\o_;\0h\00\0\\'3\\3N-\r\-\\Z&\ W\|p\d*j\Zf\Z\0@G\d\'\\\\M7\TV,ww\رv\\0PS?\r\0FJ*ny\\T*\|h2\)\0\H\\M\\0@2\ZJ\\\ \?o\Z\Z\3\0\I@O`\i\0L\0U0\̩\\nhT*q\\r\\\\@\0@#U\5N`\0puu5o\0D\0pχ~tR\\/D\4\0&r\s\Tҿu{\\7\+˭\\M&\0\0p\\0pz袋\\0\S\a`]\օ\0@\_U\6L \0PM\T\?o7l\P\\ӓhqe}\Qy\Z\\n>`\nf<9\r\0\R][a2\3\ߦ$\ID2\0\\ɪkq\\z\0\jf3lV\|\\0hdL\å&jٴ[\l\\\k2^z疛n\Z\\\=\gOU)\vӦM]]]q\|\4PǘKKKMpV\0\\\w\,ouA/?\ͫat/ǁ(\\00\ߛtj\\~oNiqq\s蟷w\}wsggg\\v\\cqqq1T*1xzz\ZM\0\\\0m\0hmkσQ\\WLalat\\-\d\\<*\ʨ*-|\=\GZh\G:\0\\u:\\G\\\S\1\0}!+j\\0\\\NF7\cw+\'X\У\aDw\\05O+kjj`\cqz\ր \p=\r\\\\;w:\D\ \0V7F\Z~%\Z=\VM\H\'@g]\q]\~A\\\\\qQQǯR9ſ\V\S\,9\d6 &~r(FR&l\{Z4D \\;#\0mT\\\\084\zK>{\\\u\qd] zC\r𝢂#\ګr+\0\Ffc\ĖA[н?`о\Y\\n\0zz`\uh|\\KM\P&\'5߷kk|吚 \\\\\x\bg]\8@4\\j4\\|\_T\\ \0\\ll3\^ߒ&LI\`@9$F9\_;\\0e1b\Z\*R1\\Tz-\'o\oQaY\\rF\JMK\_N.R\B\\NRX\Z\\`x%\\\4\mO*\r|\0N\00\c]\26\8:q\y\5kn#W\MKE\\ZH5-H)dQdh\\(\8}8\M\\e\\{\uWfR%D`i\0 KO)֘\P\Z\\\}\\\QR \n\\E\2a\\$C\/}%\\\+\Jy\0@Zrizrsuu\F\\"\\\n\|\\WUN\Z\0,\0\\0\]e1|\x\7? 4\\i\\th!Z;f\'\S_;\\L\H\\'r2R\D-\J\)4(֞\#\\\vJ|bT0\\\T\0\0o<\0v\b\s\\q\\:r\w\\Z\\\\F \\\s`\TU\LRIu8\\Nj\\y\\\\\F%u\:)(\\IY$@*j̐@ac~?{pM/\"\~-\\\\zՄRo<\\\0\P\\\j19\\\\l\\ \ *gq=PHm]\\q\\$\'2RI\\0Rb PQ\"\Z\nJ\PqGg\EѲs\\\\bR\5)`ńRGo\\H8\@\[x{xPu} \\܎\>\̔J\'\\a\nHr\CM]\y\\:F\0\\r\0$\J\E*\8\\g\,_hĒw\\\7\\;\€Ţr \΁\g&\QgO/}\0]\r\d\\ς\zi\#\\᯳\/D\(\ӹ\gL^0`NF\n\\H%oOnhp-\-m\0\ɘ0FW\4\\*\n )\\\Zij\\\\T\h\\>\i\\4^^\\aa\\n\T \U^3\\0\_\2\0zD\*\\\]*IK \0:=>z/h@\g/Υϧ\K\\o\\\rb\\\\ӝʠvAXV\@>^8gb 񚟘\LPT^\c\r\ZD \",ZEBCpN`\C\l|\\Q\0|2ESɮ \9lj\8\\ݝ\0|6zxk\2&a0\\LC[w\߾횩\o5[{=\0,[shH\/_\<>Eo\}\ \\t\\pn\\.\v\\gދ\9rI.\C\\\\Ga|\\1a\d\\"~`gqE-Da!\5\3\Y\%9 \k\\n0A9zO\\Ғ\q\da\*\<놏͂\\E_? \06\\%9\\\\"\`\$͵W?\I\[p \غu\\< \\_\\sCԝM\\\+;Ӽ b4<\n~\=\\\C\BțsDv#\Z\\Os\\NjNR\Rw7W!\c\\\q \\\eC\e\N߽ tQ\0g\\`\\$\\nX\ ¥\\\~TR\껙L`vIV\'W L\Ȧi4\2\'zt[\)\n3;\#\0`u\ZuR\Se\XD?^\0>؋\zC\2@\Fo_ϟWԲ8(܀\\\\\\Na\\(*<\\9g\\\wRck8Ȋ^\Ze0\\,\H\G\\RaD+}=<\(b \\f p1+`&aq`8\\ra;\\X87\]\\G\ZkB\\r\'=e\O̦\;\*\0\0\D\0+(;3ݴp~\\n\)1,z\ 1$9?\0BDh0@1>\WA`1$\'\'G\\r\\_ea\\\@Omi~B3L/&q>7.\rn[h\R4`\\[0/\"nH\8 \\ Co\ʪ\\+݅\_)B\F1:X]?l\\\}\\pC\L{\-\3h\\F\(ATȂ㴙\\m\` (\>v>\\\eԈg\\U(4p\) QB\\\ZM\\\EF ; \\hb%n\'Y\j<\6\!\0l|\\.\\ʝ\Mpj@\J]\\\\\쁵t\\Zz.\~E\ϒl\n\"]#hw\w\\1\O;hUݵtn\b!\w\HքPXp h\\\n\\\o J\`\p\\o\\ \,ZN\0\e\>\&/\\wN;\ @H(Fτ\`A.\ \H\r\'V\7PMch\"^\I2Gbt%@\\\\\v\M\#\/9\lHy N\r\0X\\\\\\\\\O\w\eF`e\'\\i[čt\t\*z4\6\n\\\\\w Z\ͰK\e#RI!p\^r*Z\\!51l0f%Ɗ$\\\g1Q,\\\\\c_A8nVB,DY\ZDc0\ӵ\@DrzE&\|6܇VGD.?G y\Hi}\\=hJm\e$C+\NKXJNU\0\\)U\x9\\rA㔸96\>\}\\'\\(\O\E2\A{\\0*p\aa\x\Y\\ C>\\@\uJ\\\\0 RO\uo\CK\:Yu9QW\\Ow\G\\,\ \\"\\_ \\8\\\\>V.E7\bDi\\\v\`\ 3Es>.K\8%\a!_Z%\ Lǧ%\V+[\^φ\\8YGJP\\t~\\\7\0FPH G\Zө.\/\\G +\\\w\0~nKK\\ࠟ[r\hL:\\O9K\\00F)\0D\蚞M\\\\6\\\\C\u\\L\ \\2\:\E ~Bwx\M\q\\ }\r\B\!,)\n:\\Eh7\+oaVh&ڍа\\'\' B Qw\22\0v,\Z9_9A\\ʑBe}(?Rk):,n#}vv\z\̔X\n\\ZTi b\0BTNAh\\ؑ\\\Dk\\\X ?\\\\F@]]sc ؟ \0<\-7~{w\RĿ(ҐL\/\0\Τ\w\n\0 \hsi\t0\ZaXizx\\R7;u\q+U^Qw/P\+\BN\\R\YBq D9\\u\ !\7d%\=]\0/{`\e1\r&p\\;T\\%c(\"y\\0As)^Š\ f\!\ .`k\ǥ%ET\\ +ۍ\0\\c퀶\\\[6m۶Iw\\\P(|\\X\Y\󮊌],Op%6[TO>+\0Mz7\0 IiS\\0\kU\\.\\"1SDM\\=p6쑃\\=G7ٰ<\nʆV0\\\OO\\0\q@c\09Mb\S[\\0\\\\E B?R\\Z \07<;c\\AI\P䄭2oz$\vJҤӺ[\0\R\\\\1\0<,?J\)?\m9;s/.djl5EE,ѷL \r td >:B}\\e;\'O=J\\dg\d>\\\@4דwt `a\60 Q F\szrx\zA7b\rN} ΗaQ!a|\8\\\05 A4v\@ KL\K\\wq\\0\$\ֈ͔͠\~!\0hhC\\\0\[K\SH)ORaÓ\MZ\M+~U\eR9b)4L1\\\\l#\nE(ǼyY\r \cl!B\\0~\\ނrP~(2\A0+1fhN\rCa,\\T\\KFȡSc\d\\j\qg5\\u\}w;\X@\]= 8\è\\\g,qgx[{SG)]\\0u\\0myb|\\0\n\(F\\\E\r\\b\\\պ\(=\3=e\'\TVu!}\\\]8w(eϹᔱR\Z*\\\Q=\PCqr\'?\Zx\\\" \\;\0eN{f\^\\\m\\\q~aH\?MA\\\^bo\|T\~+\M|\"#z`\)滸\dBDk(I\\RM\\0N\0@q\#4J\0h\[EM]W \01T\K6\\4\vEMK\KLwxn\r1\\=1d\\#\\\şE2J##${\n2K\;\j\uQf9Q}\\\Z\gx\\\rZ4<\\\ڕS\\X>\\\\\\vR d\xCYe%D^MKP\͐\}=]G\Bm:\\=\\*V}~~q\a੸\\Dc5h\\笞0#h\#{\08fϹ{\rdvs\Nu\n\0U\\QEu\r\rF\\w\r3\\\\\rtț>ooiڍ\lxw7m=^\(\\>lʟh6rZ\d} \\ d`\\\\_\D1y,\\\\0T+su\0v8\)\\wGIR\T:\\\\\\\\վ\S|/Jގ\\\\\\djK7\(\\\A\F|9oK\r\\\3\\\vmJJJT*\\\'\0ζQGww\\\\\qRB8g(\:;G \0R\S\T\W7\}ժ-t߉\Ӄ\\z\\l\[oer\h\\Q\acttB\\h\0``3U48$$|$\0Nt15U\ږ\v\\\\Y\j\𑣂\9<\\H\a|V\\\\$ҊvkG\\wVม\0\ht\<+x[V+2ֈ\k.9\\e\xyyyN\K8#A;\K\q\wIy9z}et\r&Q\\\\mw|\x^\tZ\^[]bb{3>-\~&\Z9\jڌ9srdR^&\:G948pX1<\YYN\\?Ow\0\\tbR(\imm\h{=\Lp*\\\/`4}`[dM+\\ʚ{\\\/7R\0\u\\.\.8j6ɽO\O_\\mol82\1U>jw\؅\Z\SJ\lcGG\ٶL\Z@\ ݟ\0\ZI׋%~\K|\9\\\\\,\\\?\wwx\ұ\?qxvl-`2\]\_)}\\a\'\\0`\A{֧\\Z\0\V#\\^\\\\\\]\\\\"\O\0\Ϗ<\\>\73ƈz\0\nST\\\܅\fd\\N-\d{i\r\,W\r\\\\.!!1y2\~\7߮~s\\'c\᠌Z@Bf͐b\KAW{\k\dhSL\hg\N\\5\0Fm5EZ&]t\\\׬Y0c\dR?oya\0\\=үu\Z׶\r\u}U\r\\\a\'\Alնt\(`]5R(}\ͷ\\x\\\nnA\_}\\O\0}\\\ɨT\\\\󯚶ZD^z{\T\ \\\<\i尙3g\\\Դ\S~\\"\0\Gs9ㅆ3\\\"\`\.Ę\\[EӽJ\Z\\\\L6ݟ\\0+ 1iժ _\+/\r \rP`C\0x\`\X6\^\+1\t\L\lx\\{񽧔\\0\Zipp\j$D\/~\\+\9\\\/O\R-\0^{\C\\3xι2\Zz\CoMzmֱg\\=\\H\\\\\P\0p&l\&&&&&\v+\f\ \o W\sqCCYc\\r2\[\ڍ\C(\\\<` \RkZ\'[\=7\+~{\05\\DzmI\\\Cy\\\\t\:\\C\\\\0pT\\0T\\ei\\:\\n\0\*oﱨ\\0\\RAN=d4\0a+<6>\=V\\\'\\0Gi堠 w\j$v\r\rMزe˕ \\/\\0\ \03\rʌ\2`#\=\\džG\\\0c\\\/_}\1\u8\\;;<\mk|QW*5\K$fV\r\8=e\.t_\\<$WN+\r\-\\K\0\0v\0\E2\\\f\A\ZK\0\\?t\08\n\H\I<\Ws\_lٲ\.4c \\w\c{=z\IDF\Z˩[\\\\:p3hSg<\ _\0Ga\$W^\\\\˸\;NIII\sy\\z?@\z2]I_\j6V\6<\o\r\)\\\\p\Z\\\\H˭ac\u\]w\\\\=\\\r/v \\ͺRV\02g\8\j-˂{Ĺ\\#;\r)L+\Nr\\\9\9g\۳C*1\|:V\\\;\QT\n3U\\08\F\I\0\ X\\\\\phpx?^\2\k4\Z%ܜJY\4\0NS}ieٓ\'\#\\~T\ST\ l\i\08\0\Z\ \\n \ROOOcWW\?2y\\0\ .\5P9$$\t~\Z\0e\\"\Y^;V|\0\0\0\0IENDB`'),(7,1,'Crypto-router_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0!-\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0zIDATHǝU]LU>wv\A\Z\m)[l 5\\Z5?/>\\*\"Ic\H\\\hRM\Z4*-˂\\\\x\M!Rnr23\|\9\;\^b\6w544\\\OH$n^\\\J\í)**z\\\`0gY\\s-?ֿw\r \"^\\\'7o`jjʎ\\MLL̸\\.mxxr2\Z/7\\͆\hpll,j~}} |d+\0Yfc\Z \\\nEZaa!\tGGG\\}\*ug\fj\0\?99)\0$$0pQ\e\%_+2`\0ŭ\Z\j>r\}\yi[Ս\\Ž\"\Z\\\0|\nIQ&ò \0\\\\>oK\\x8|+Wb\\ݲ,\,@7\Zǒ{< \*,p\4\qIq\\y!\\\*\nB^y}t\\\\Q!4 4\4SP? \96(\xl@Q\\\qʹ̌\n5EdE^S\߆>}\Ŋ\\\ϻ\\\ !G(H C@:ML0ukXۑ \2vȉ\\q}\x\\\']\z/qWj\*a v4\\T]\w:\Z\\2M$Q2$A/Lee3\s<.\\R \1\\5L\n@\]\pX`,וɆ\\}\Y\"AA,\\^\~4\?P\{c \DaE?\âJ@\\c(\oqFtAA]hVPΐ\\qmm{W\s_?\M?\\)i\vh\zx\ݐ\#0\(|3bV!C|EWr¡D\\ly\w۷\\& \\)\jYK2jc\8Z\\\訓\󬕚(ME\\\\Ƚn4\a[UU݁[@Ep1X.\=\TZ\\\"\"G\Cz{/\K\\Z$\uuu={\6|U[[\\\rH\dg簷\q>S\nm\Z\\L+j\]Qs\9A\F}\\\ݧ.\t1AO\\%g\\Z\Z\n\Su\K \Ξ}/YKg\B\\?~?K]\\CO咒\\I\7\o\\\0\0\0\0IENDB`'),(8,1,'Crypto-router_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0-\0\0\0\J\\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 9IDATh\\YypU\Z#\d23CdE@XKA\@˵X\UR@\-Ktt\eUĒ\ueE)@C9H\r{\}O29,]\{zf^~\}\k$ {\A\\ 4^S\zn*\a;~\ &\UZZ:l\q\t\ߋǗ_~\U K.b!\0qs{{{\\W^u\\<.\\֭\̝;\\\\\{\\\m6[CVVVӸq\&\Z ^\"77\t\<.\hA\\Q[[ mmm_\ر\7H\\̶\\n\YF\[oU$ \\xLp\oii۷o\\\\BE\$;\<\\\\OrD l޼ æ`0F\+\{@w(\"V\\G\Ps\u{ \@ `\mf8,\\_ϙ3\> bYY\\ё>\0X,\&du\C\Ljs\뭧iZ`\\\%(bww7DJƨ\\M\_v\Kʄ\Za:S\Md;\ٷo\4֐2\Z\\\P( ::e! \\\@_\0ϋ\(!\0|;0\CO\0~\"\﹡}x\-J xr\\\=;\\#Ȣ\\\x\ܕ:1=L@\*TY\眘\\Z4\7\\ \'\HR?\\C\\0\/t\_A \RHTKR1\}\\|\S>C\\5k\\v5j\sl\Qk\>\U+\n z)\!\\\\F\@mV\\H\l9Q)\<6:-d\⁄=\\9O:,\\MV?YN\"C`\\^~\\\\0@\ğ]?:\(6ZZR\\3{֌\\?T+\0.\\\l\X.uh\\nefd@\v0dichp\Ԁ\\\"KgC\\\\$tP \\0/\\$G\CH^ )\ \"\\v-C!}a\~\0\\\0P|\\B@Y[C,6=s\nt\l\`\qBQ^.QBQ\\q-Z\\Z<\QP\\\\4!\P8\r(FʑCD/R?\vv\n\w_y\EQ\\\H8\`\\0wCF.ia;1o\".Q\[\؍{\|{U\rdT(,\XV؏\\ $7 D7G\ F2M\p<`uzD>\J|FF6s>=5yN _\\qU\\ޡD+(ҽ9\<\T3\ |~\;`Z -\\'k[Dј,P(4C%%`Т\"Z\0?\'\"\w$r\\"f\\,͠ 1QFg(ȼ\>a\\_E\^IZ!>&{\'V\\jg.?8q\\'aŒ\' ߌ!\ e\d\D$|D>\`D\HWap$?F\\"p \K/E?\B\0\\w\V!\r-߫\\\\\0\Z\rA dP*0\0v(nU(s\thm^(\JO,߆@\B2\jYB\H\Z-\Q\Z\jZ\nW}\0+\7>3C&#b /)~\\Ov8dߠ䮌\HJ $Q3g\d_ovUVVjOhh\<qtQ\Xb,J U%\\\eT\`JsP\@FM\\\ \ZBx\2m0\n]g\5H:g\\\\Z9ƃBH\>)P\K@H:\\'=lٲf\\Y,ǮWj\\ba\b\1\%T\8\9?P U$u\t:;\f=ZBN L\8`A%$\\z\jS\\HD\]uL*Y@HР\\~UU6\\˦ϘĄ&-BHh/J|a\n\rF!\@dXоXz\"\h\M]Pk⼜1\1$#$,Vhim\N5 \\9\F\&\򐵫\\\\\̙3\'\`0L3o\\U\?\ \\`_J[\'aDъ\\Nar\X\[\Ԥ\x\\f\b.\\\$\\ٶ=VkF\r\\\7һw\NC/(/c֜9O\Iwp}\\\tuY(\3\\\Zh\\\"񠀓רԘ\~\\\\&:\i\ekllJ\W>{0gϞժT\y B\O\%\څg\\{Q\0\9˰L\.++z\\G>m\M\\\(!\O?W_\:%i>؍:\,G\rKk7\\5u .\\r\ʧKKKG)N\#9A \\x\02o-**\\ڵKE\'&a9\^\\\\goP!\F\Z \zN<\KWd\\\\'9yC)\\\\v;E7\%~o\03F1v%r\=\\)\0\0\0\0IENDB`'),(9,1,'Crypto-router_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0<\0\0\0։d\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0-IDATh\\[ pg~\}\\\\\'> CN!$;!YHdB6LH2;\\&\L\\\\Lef3l\I\\TBB$`\6\Ʒe[%˲l\\mIݽ\oIlc [V\\\\\P\|ym޼6\\"\\\=z\=~\\0Pz\DRTS,kjjj\%˽r\\\0\ر#n\ҥ;5\ZM\Ec\⡡!O___O<\\\C׊\\\\\***\-**H$\va||J4???#::g,\\\\>\T x\\eee<\\\\\\ 622Ҕp\\\\\\\\\\ܰa\>}@$#G`x{\\\\\\\ΪC. d2\}msss\Mv\\\\\%\nc\Zn\Q\~;w\0\}Ȍh\v/ 7 H\$6tvvδ\\Ү\\k&\\o\\r\O\*\\\_zm^$\0 \{\\\\0aD!$C)\r|D{@@\3/S\0gZ1\\E |\\4\\l1\\0a\0\`! \ϼ\… \\\\d\\tJZf͚\w\q2ESġ0f`I\\|)X-V@\{\\G=s\u\\E`P$7\r\\0R]~\, \'C} )\\"|t4Y\\\\\Ȉ\\0#\!P\8hr2p\aR\[o\.`\h\g\\\1Aau\AA\\vќ\\Pp\c60058\\\\2\G\\\6\\i\0P\04MsNU\rf~8 2x \eh\П \\n\\\\o\ P\5S\nLc:(X9``sc\0̭\n\(\0.;\=\#\n\)\0WT)\"x]\0h\\\h\\ޠ\\HHs\n̚ӇH$\\\n\09Ct7\nƘq\!\^+\7v\\\'\`\\ng>I\bdÍ A\\"\&\\leX\.!\yCX,\\G}>\\\\\zEߗ2( \( qdgg;287õ`\\\s\0̝>\*K6\ *H0q:\\`\oe|)\n..^LX\A\\\\r2\p?!z\OL(RL?\\C+\'\a+ðbH\Z\na\lL\g\'H:.\]\\og\\9\t,3P\0ڴ\\\\Bnf\n\RR\Ϝ3\rMP\^8\7\:\n\Á@.\"\\r\S\㋠U 2\D]8\\U\rR6&Dt-8\Za7\P\ \MZ,Dŀ_\\\hZ\*\Z\-Y\\ܲ\; ~W\\<;=\S皠O|\\J\\-0leO D e`.\~DF*E!\d\\\\NHKEVYaӓ\\tCnF\"O\pe\)\\\gI\\\\2{\"\\W_}\0\gYۨ\/\=\\ؓPe:߭KVX$\gσgwYi!ά\\Zې\)ۉ[a\0\\K@$hP\'zꐞ\\}&ר#\89iZ:m\wF \ !&Oё\nh\փR)\\VD_FLl\'\dR\_R&4\y\#L\Z P}\s=[\=\*\\]\\\'ۿAII,//V,/\"\\rN\^5\"\\}`\)\\\Ka~*\2qI\[Q#\=\rM#O\"8!p2h\6\:*\\/n0A&U\Qɓf _\\\RR\v9ӧN\ B\˜\O{\{9}f\xY\3\|}7GJ r 3%Μk\g\.\\\\rF\WӐr\\:uz\MKlw yI \`BjI^&\'|DX\\"R\_T\ L\^W\rF\7.Ã\\v~4\J5)aW\lө˟\!41/É.8zʋAq^6\5CFR,\\s\\#/A(\˄\>\ =(|\\I=,\H\nhW R\@U\\J\J\Km\? |܄4\rDZVEĉ\'u (.\Z\*!śΝ^֎U4/d\Dzw\ \*ZЍ@ QI\p\3q\\`c\\Xm\\+ oD1\j\\"\\.\:q\\9;6k\Ek\T.+W\\@z\\l.\\*\< 0Eʱ4:0.t\@6\>RZz!1&Z(\)\ϐ\"m\\0<\\\@ϑ\nBjEm\&D4:nƌ\\lۿ8u\ ǿ={eD?)O\n\\n@K\,\@\Z37\\Rc)\\ wG^ՍFc\/\~\y`}\dψ\j\)q1Kt`3\|^\ \, _\+UYYI#\n\8\s\\,)]r*\"BEN4\?\\\m@|\!\\\€udſö\x,)\j+>\/\-kY\ʠ8}!?\DRb!1vGrd\`O\\;yw\@r~: ޼vсɣH\O=,\"\ g\?P(F\Z\jmV|bQA*4?B\2<\?1/%\\\\\yN\0\\Q\r\X\v\D\^J\Pª\"\49^ -\EO\\s\\\dYX0 iҫ#\\\0\Y_f\,\0\\S8۵{R p\'\+\\n{\CMM\rn[s\?g\U\n@\"\d\M<_!\T J3Z-~=UjBF+@\84SI\99\\\\r̡\r\8L\nn\r\\ ]\pz\\\e\8]Akp5\Օkhb4 \#I\r/ӋoO\v/̳`{\uvvE\tr|\ \\\\@k{ Q\}*\\\\\ }{>\>22b\j\\zP2h\\\'#\\u\_t\\rB\"l``:8e\\5 9L. olH\nӀGE\\\BkW\\\p #e\aӱ\οb\\0G]]\]ѓ\:gggT*U\\$Zd\}\?UPX\\&b\NDH !\\4\ilkmk\XG\\ 3^j\\tM\l1納5{{\\q\\ӡVUUyC|T\0 \x<\DzqI\]\\ox\"%5-9\\\8#\-aXN@7\\\3`4.\iJ?U\\㞁am\\\t݁˙S\gC`6e.K\\ڰq\\\n\\'\QQʙ\0Ժ\nc9Z\\/hF\\av\\Q\\^\\oN\krc$x`ԇquߧ\ZWU\\\\O/[B т:\靧Z\\\\=\"0XP\\"\\{\c}\\<_`\\\\N55‡@\Pܸ:_o\u\ر\m\\t^^~\Z\\A\\\\\Z\E@d9ۡuZ?F:@w\\6nr霛\\\;dAF%\MnӦ_0s*@Hw\˯/ߡtfw~\x݇1&m}6_\ai\F[=\ؾ\>3\\O?\\Oo_sZR)΀\\nsuA\\\Γ\9L=\\i\7l\\A\e\\\\߷\\\۟\%K\\%_#m/a\\y\\>}n\0\E\"g+\uyH*LƐ6\\5oذa\m۞\\\L\) 8ϫ\ v\x \U\\jw9|]#\\0\-\d㫯\Zڿ\;wnC0D*+\rQ,3*\<\'\\n{K&\J\~\DpBI\nl\8 /\^+{\_E\oq*\\\<ρ(\\\}^ݤV\dĴ\:NG\\:P#zg7\r\0\\Z!S)\T566zf7\0a@\ps53W\Ih[t\\\0\0\0\0IENDB`'),(10,1,'Crypto-router_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0[\0\0\0%V\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\"^IDATx\\]xTeLzg4:. (\\E}ԥ\\\\]ꢮ^u-\eWл\n\\JƤ\^\'m2\\?$$\jdx\d\̜9\{\}\\?\ <\DWo*\\ ,\an\j\n\\\k־~\t Ѩ\ߥ\}\]%\x\q\;.\\\I{{\\0v\\z:::(\'\'\\\\I}///z\\7-x\R˪TՁJqb\r\ZPPkHHϲe\&\w\-(\\\=\|Ɗ\\0k \o0sMV\\\\ܚ9\'\}\r\\nTSS\t@nݪR\0r\nK\\\Q\o\0\c=\Z@@:\`}\\GViڴi7}\\7ߍ\֭\C\6\̎\s:\v\ZՕp\| \\~\0:\=\+M5\ٳ\x?Bfw\-72*\Z\\b\q> \\c\g\"\\\\\\\\SO\]9\0\0xjx\\;\\\#V 2&H\\\\ϲ\d\\ߟ\\0muЂ\nt\\\ΝƆ\rd WVJg\Oq\0n\\\fzjpNPv\h\\\0ȄaxU \00\%\\\\\m%cK@Q\Lg\>xr\H\'g\rX\駟5a\0J+\n\kS[o\=t\'\#\{\ԩ.#\\/\p\0d\0xM\cUYYY;v\`\vm߾}/O\0YYeB\?x |\J?j\0]?\0\"0V)\Z +Ӱ4\ߦK\\0PzVu\\Q\HJM޾~j\좘@i_n\\\?AD;W\\0n P]\ĉ\\' \r\^\l\nw\N\\1\!\ٹt:\64;1\B\|Y>[@Mm/O^nΤ\\\\J<췘\Rv \\\\LE0\0\\~\0B2\>\\^^+\Rai;\$Ǔ#:Og\dnGQ\\h\\_F^!TQh/]?\'U\\r\0\\^d?\\pK\.#\N\-;\rj\Gk\0\44s\"ٛ\0\\6\r-F\htq\\hfV\4.\]tL.\W-\L\knS9穱\@K\6\P!\䉊\\Y$ \'T<\d0\]].v\n]L;\Z\0\0 k\0x\Ww\uےؘ\\l\R\w\\SYt<3\蚙\\\+.c種B|hh&\ߛ\\"\\\\%DS\\d\\\\r/wJ #o\\\jJ\g \\\\u\\_LƝ\Y\0\Z[8\mWOm>k6\\\=c\+\\\\\(\ v\jBl8LNt\\9NlU\\(\{\":u\\\\\Ab\feQgOER\nMƝ-,\ \ǓCI(\9Y9\+U479$\.Xm0v\H\u\\\0gǓ\0\0>8/\\cb2\sIH(H? 5Z:Kw\\тI\\wѡ\,bw8Hminj\JƖ6:Keյ\2Et\\yN \z\b\H\\+\6\iDWO/eb걝0\C\\D\*BPM\\\.2\Z\\\\Z}omnC\+`\3\\\\0\]s\\t\u kg&\4@{u,A\$7~n*\\,\ߟȤ\n\G$Qق\">Ujdl͘K]pDYL \\x\\9 @0*`œJ\\+γ 6\\\0hF+\\*}@v6_ZE\1\n\(\]ϲ\n\b\\\ \uwܘ\٭ ?U\]w,\\NW\\b.槑=A\\T.B6\\z6g摛-HMXTr,\U\7#Chfb 8\S&\6϶7\\\Fl\zp\n\\&Ye5\UT@\WRS\"|(\ϋ*k=E\p]\I붇\`0\\r\t|\+2 \\\0\0o\B7>WgO/Ѽt-|Ty7SAz=܌[7oFwr -Y*p\0\k\Zd{,7Tjg\sp?U Ave\|| +,dI\n9uݽ>.m$OWT?5\UuR\"\"!\yAjr\e5\r\\<\η\ٸ\\\0\T\0\\"(:_\\n9M\5B\=ܳz-n\F\\rw\9 \%N\I}7g\'hA<\\\5\t=\\7\IT!K\L^1\ԁ\|0\D J_\iCQ\rt\7\nᘘ \r\\\/js)=l$\'W7\\1e2j|7\λ.[\{%>?~F\QsC\\\'\%@dj\]PZS\t\f,\46\dq<>/u:2ם\\\'\74\\^\@\\0AK \է \\MmP\\\Y\ 1\\\TP)\\I\\6\K\\\\Z\5px\A5zP]K\\"8T\4\\\\\r/myZx \0\6ΘT*{\\Ba깰\]X\\"qtm\E=+H\\cʛ~\\\Kt\mnӎַ\\\C!9;\%$qgc򆧟7c:7\\\\dv鱳3bʨo\z\\)pC\K\\\08L}oIUs%\ \V\d[_R\r\jr\@j\\*\c \&{[in\gD\v\~3\Bl\l&S ҳ\\\r?44T\\\`\n nyu\\\\sU\v\5t]\\\\\\y}A\!\\i\\\A\@\\'\\\N|T(()\~\Z z9\\A7w\1\jZ\ALY\D\\ʊ#w\'ʂ*P4o\\H\@y\s\'P\n/t\Oz\\ZR\"\9_g\0\I\\\\@.\\oRq\\g\2\X[\%\\\r\0\\n)\6\\Eo\J\\}(\" (\EZ\w+\yzʲ=Bo$(cyx\DL6\}~\r\\N\\;w\'G:\r\@e0\3`2Bs_\\wZ|49;ۡO(\\ : 7IJ9;_̺dO5\Yy-y8R\eg^I\џ\n>0**x\n &\+s[b\\_ >1۲q͏\0\s8D |0n\u7lw\Ꮴ\@\{\HM2i\Zʱ9Nwl\ik\G\v\G \7\sXK*\dk\7\)%~6\\t:r6\ގ7b\\p㬩\r\=\[K!\\W\\ZӹERi8:\n\\\\\\%\n\\i._gŲOB *\H2\l, \F/$\\\\\r\0\Fb\NV舘i \r_@\g\zPC-6\ <\\`\\\0/4}L\ U=\rsSw\"C\.^oO\\\'{}\sS\,Od\S\R\nF\'\(I\"5!\\0\Q\\\\\V7,\b)ě\\̪\#\e5\\ @Q\%\Gn\\?i뱲\\0\Q:o\\0ҁ!Gc\nwptI=ëG~\iQ\Zw\\{o\\}\\n\~+>u\G}\_\\\I,~b\\RMC4uv@~o:Mgu\J\Fg2Y\tZڻ\̝\,j\"x?2\D#[NZRw\zFO>\>\F\\c2]\\&\z\\07{\0`\ٍ&\c(\\]:W\.@q\\\`##UUC\RI\v48@\U*:MH.y \U\(\dV:43`\tz\ 2n4>2\e3V\qwK]\UK[;i#k K:\\\\/\\ -%%% \r)\\\6\ \[\\X[7JCݬ\0\9\0\7m\0\0(9\?\t\~\\҆6\~uD\-\w>N7,@*\NSW\pU\\8a\=L\\wę\@\kx\k!\-\\\s \l\\/q:\_D\\;\~\h4v\vH#e\D\'\ɻ\j\\\f\W\`F>Q\\\rṳ{nv\݄.\bsG \LlѰ93Zb\"}ÌԙvvRy\h>\\0<\7\0\;Qb\Q`n\\$1I\NӦ\y\\B\cU\|e\i\٨vy,9ދ\\cUTR\\~V\\ F\4\lmT&\h\#VMpˮ\0s0h[J%\\\r H\nX|\\\ih ~\T\j?I/[o9\0sP\[^\\\iFj\n\;\M=]rSr\\?\\\\m\L4j\\\:I!9@z\5e%J\y\\\Z\,\r-\\沩lkm2\JF7O?%d[\~\l+@ ٴiӽxmeK\0@H&Ф\\uy,\ql\\\vm)W %ۊe\\Z> O>\QQQC\0P\0`uT`\fa3\\Z|\'\)i\PVZt\=\\\rZrN>\FDz1\\h`TS\s\`Ȑ\A{^\\W{KM8\Fx:4v?\Ni\0,]D\l+\d\C\`(\\;s\o\0sg\P\0]H\@сj\Ϗ\\"`\\8\\0 >F,\x\t\S1d\\ <\wE\䱥\\0\0\0\0IENDB`'),(11,1,'Crypto-router_symbol_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\'\\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0&IDATx\\} x\u\@,$7\b9cٖ\K\u\$U\Zi_Ng9/\Kl7}\M\\=I\Nlq\Qlj-EX(ZH\\"q\'e\3\\\\\ \M-\\՝`ggf$UUazJ~\\\'Շ~\WZZ\h4lrrr\\\ns\Q\\~\\ɓu!\\EZ\8V\\\\\bt:\\\\rH`ll FGG \o:u\{{\F]\\W9\\˗_w\-XJJJ@Q@A$\5\6\… k\.\\\yyǎ\ĉ\,t\>\ϖZj\ҥKoVUU׉O8:8~h\W\CY<\[}>\O6nܸlÆ\rrvlwѺ\Z\\̙3{\n@%\nB\p0 \\"\'\0:x\UTT\\Q_E\\פ= k\I\m6\\.\\\4\6 \\0@gxx\~1 \\"%#<\\\zuu\\M6AaabOO444@[[k@;\Z\\Z\yyy\\{hA~عs\'Q\\o\g>\ fX\\\h\?\0\D\<@ \0W\\ÇåK4yn\B%$Uf#\\\4\"Ak׮cǎxWgg\\\^\B\\裏V!X(//x^0\\:\\;j\ݷ\~( J\\w\u\#\u\\dƕԁ\[\_|\O}\S,\0h\W@9uCCCP__\#1zOge}?#ك Q_ڼy\ -1\\W\\\' \z\u8 \\"!SO=\B\\ׯwdR\6\\\\ 4b/(a$\(\z|\t>}\\"\\A~F,E@\w\eM\r\\?\\\fkk\d\ _\\\\c(\"D&:&9t,r*\4܆\\¹Hb+!\&8_)\0C\箃OmZf\\\\\H\" \"\n\}ee\*\*ұ(\'f!(<\\YT\0w\}\z\\id$\p\0 $]j#bc#7#2\D&zF\0\GC!\'~\#\Q-.\gd H\\0\\w\\\I\\]\ʕ+N\ <20Νi\n\'i6\Ca4T\\Ou:\n\\|\Y\\0x\K\n\\\! \!{mR\\!@v|<\\F ؤ\04\rc)H\\.׉-[<\\Y\y4#8P\i3_Eʀ.\Z\IѯVݡ#;/Oc;}]b mzƏz D\]]]}jc\#@T\\\0\D\"5$<\\\c\r#\\\d 0&.\Rx\f8l\e\\\0Tm\\=:\(,  A\O\昲\n0_@\'.TP\pcU\\;\Q\\5\YOƖYx\r@\\?\Y0\n\0so\S\\n0Q\0\>U\ʸ( \0 \rg0\\\\v)\0 R\b\g\ZV \a&dx\e\ 0S\gKV\K7m߾T y~y\\"U@\(\2Haa\0S,R7\\\ \\@Rd tML\\S\0\\02\:\A\0/o?\>R\0#N \0ѫ\0VtD8eʚ&jEvg\nރb\¬\5\\r(l4g`\0m-xi>3\`\\L}Y=i>T\\0\g 0\\\cdΦ]*J\ \'\\ْ.\\\0ē\t\\\466\ybL\#R\0\N OXg7z b7R6G|*\0I\0yhޜ\\n\\\\-\gˮπ\0f 0[`F>T>\=\JU ` 0\\\H5s\0ͧ <\:^l\z\{\\\>\r\0[\iUUť*j.mzm[[w\z\\'p=֔غblj\_\0\:H\tЕ\\\~\\ =q\9\ZW\Υ*P` 4]j\`\ +Q\I$\nLF\]w\-҅/%_ \su\:t\\0q2\\\\^kx.چ\[Gd\\u\\\?2}=7//\\\\\v\\\DR۸\ ?\\\nh\솾\#\CC#U\ZJ ,!\Ԁ AO\~v]aoX5\2~\:\O\;!\R\\صN\\\fS\'M70V۝(ž\\\x?RD\\W2D\u.la\\ \rCX{P\n Y\ߗ!\+X&f/?\Fo\n\zY#6Y#\\΋\\\n$P\ dM\\}M\'!-3f\0V\W\\R\\^ڕ_̖c/\P\0L\0j\\^ύ^\8S)8\"\EՁW9Ic N\ߏxU\W[\\^^\`Q7;;\9\qyW\xk6ӱO3~\S!2\B\\\׀=T]\)o$k^T\H`4#,hrh\t}\\\\\\t\~\0M8*-q \yKr\8Du\M \"$b#\'y\Y 1UXm \\\6T/gh\\HH\\/\Ou{<\\NQB\\xBh\\\\r\CD\T$H!\S\xj)g}ty7H @\"\A\dw:s\wAy\y\W}aؽ\\r뷼\˒\+^\\\_4\\\7[\AX\ryl\\emTD\Kmp[_΅\\0?\\H\0L\'\w\\u\\\ła\]UP\\D@\\׮uq=\qtn/\SǒHi\"ȁ8\Ȣ\"\0\\'!NSm5I\rr]y Xr9[W$y`_(Sg\C\\f\\\A2\0d\\Bx<\\ܠ}\\\8w\0\\/@\b\w\\P\\\\7_ׅ>6\"\ C\n\0\r\}k׎ B\\\\K؞@,,\4%\w\Y\\ƚ5jEUц9YN&\\dF$Cw\~Z>p\PTT\0\\C\8Ld \0})\U\೟3$\i\\ɧPd! x\Oboy%cOC\\q~\%x]3{> O~?l=ny2\f\0 ۶_\K\B/\39脽;\\f<\4D0\p\gZrpAey\r\\\d &3!K \\Ȃ$@b\$! \|(\k\?\^1\]=شW\ \ \n\Z K:\zrZ\2 8\(BY8\{~\ \\\\\\C4`_9嫿\\\CT\\\D:A6\\e B|\\A\:\0fN>Iiq)[\\8K2ع\ F*c#I8PZZmWZ\\\T\d\r>% 0Z\>B\\\\St\ \\3\ބ\;\0;)ӏōIRct\-,Bgkwۻ!?ߝ6BS8 \k\>\\,~\\\U\+\r\\\\8⋼\\1xojnpx\6$\So^\S̜\ї囿x\\"?U\\a0V)Rl\Ky\\Fe\۠ \[67:v004\ra+\\\\LX\;1ˌiH$\=Ͽy\\ \L\\D\0#\\.=\\S\0v\;ͭ\\\Aa\x̅,H\Z\qG\/<1\M\M~\p\/fU~\9Sr+5IWR\z`2\*nM)WZ@etZ\܂M{E\G\Z#e}\< \r\%9n\n\cv\'T/A\_\}+8\D\AK[ D\"<\4%0|M\'\tu\_\Ϛ\\6\m\\-Ǖ!9#P\`G^Bav\F\\N\h7\\\y}\o\\r{:v bXJ*\zJD;\T\=ռ0\OBlLAz<@ss\VIZ\zU:u3\A*\8\\X\z\\n\n\l:\\xm4]\%|4BF.;ThXs4B[QD\9Q\Dcz\Fe}.\0\'$\}E\\\Y%@WWm\\jsmjIB\"\0=՜y:V<\'\\n\\9\{~\p\妯G\\\Z#\^\\BC#FJ\\\\c\\<\\08\8\Mg!\[P\ٍ\M\7o\\DH\sY%\g{~(..Ii\E\[(\O\rzB\i\\ \0\+\x`\pǭ7N2 o}N\mI \ \\M\WT8\|\2T\PmCF׭%\%ڹ\\\0F7\i^jL@;箎+\\͸\4\\`ۡ5UO\a)|\\\7\{\4@\n\\Qv\n\\"\\\8\\\"v^\\!;\\22/\rL!\W[>\9\n6x\? \{\i<t\\r@:\\\a\P\\_&\rO\ H`\||\>\0\ܪ82\~\\ v w\uܲ\\\ZW_\\7\:+\2)S\6_̑\z2\\I\\7eɧ\Ư\\\&~|>\\5\\O\\ݹ\\rݞP^V7 6n\ e\`.ӆŽdHa\\4_H A*8yg\&a+y\\\'\'\Da y\WI;\(O@y\0#\\:gc0\\\\v\DUV2 q,\i\%\x3\PR\«\ݱP\\)d4\\Y\+c\"\N= \奯\\\\ro\\ ^-]UUˠRSD\Hx玷\\%vLAIJR\\Nz\ @TQ\C\ {\@\Pt\'0\pDW \r\ra,\brh\\Tr),%K*I\n\06\wJ :\\4\{,%UE#\f\*I\2\E\\\*`\\n`hnuoJiծ\.\dԞ>\q8\ B\\'\\\\53ӗL\\'J\aT:\M1]7y\\\R]@\r \r\?\0.\ 0SK(\̆\\7\\\v\\]D\HD\B\>\;i\^{7\RD>\0pY?#\қSO-/\dBOʅ@Į\<@[\\X\I\?Q0\\Mb\>2\'\s\0 ͦ*\0dki\\FYN8UD\sz\,h:x\y!ף\\\h(8J${j\I\\\nӢ\1\Z}\S{M߂\& 4e\!CH\\'\\[drtUF\'xQ/\\\\3Al\", iDp)\׮ \.r &7 1\0Ty0\B@Ӝ\86z\ޏ\DFC\\\^|Khrrn Ա4@ə@b\r4 t\\C\x8196\ns8ݎ\\i_49\\+mW\/\(\L s&\1Fi\6hi\\li|\\\n}%\|\U\\FGz\\\:\+?g6\o=\8xr\Sw1&Y\\A5F\0L#45c#2\/\\_PX\\9]\_s7\Ç\:\761\0p\a\(\'\Si IM\\`D#k6$rc}~B_q[\\d*\\\\\@ޞ\\\\ƦG߮;}_s\?iO\\rgtx\*\"\0s51XF6-k\n\X\\R\6\x\HzKaQq,/?\0*-\\r\Y,\\zq]\\\\ZbQá\(:mh\\FG.5ַ>\\g=\Ӈ#\;vѫ0غB<)x\s\\V\X|\yU,B[T};\\\\s{\v\j\P8+\6\\r\\,\\nX\d\KXQU\ֱ)JF\"\\\AT\޾\\榆\0ݔ \E8udAe\ײ^|\\n*\g\0 ؚ3Y@+\\\\\6@1\aɐ\y\l\nWH\"PU0j\y\(\ڨ\x*G9}^0MBH\$\?\0\"ͫOJ\Z`UV8\\\\\"d\0\^\\u\\05I\0XJ\nE)ϼ\)@\\Ii]8}R\n \"\n\ AW\I_L1DOn\1 r,cwM\\mƃ\\r5\ q+\:\,\"\q\\\0iXZV+]WW\'*-([B\bh\\j> \\'q\\|RQmW\40\\LS\aO\Oz\NVUY\\\1#*\%\f,\A\\X_Z>\0cw\'Ǽl[o\\ \04r\:\:-g\ O\\\"Y\/\\r\z`9\Z/\ \\qP\(\'#4\\M\'O}z\\N\j\Ѓl4\0\\\\ XYY*\G`a1 ,ZFq;s\r^\JӾ$xJ2E8U\G<\,8*\9\\k*\\Z\W?͑J\\ͭ@E\x\ O=vX)4\\YDHf<\\@27\d:C\ ƼэVft\Z\\³\\C- I2\\Ch! D\Zb$H\Z\6;[U6\uZ\nT\"\x锨sR .Y]Tς\7\!h\Au$\")B4ejn\\(Y\or\-E\\\\20\\`7&F#\pN\ASmNٳ! B&}oWEH\\r9\d3\y%ݖ;\'=\K\SB#b\Dxa \Y؅\Ʌ\\aL\hdP>|\f\f\\',6[òU\\\\.3.G.T*u}˛*d&Q;j\{\a0JNQ(-\ޑ}\`\XܶUljRk٥)uQu RH\\\nD\kbB`\'\0\0\0\0IENDB`'),(13,1,'Crypto-router_symbol_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0/\0\0\0I\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IDATh\\Zip\%˗$[#\\`ӄ+\JHs>\0er92m\Cۡ_h;eh:0\f\IJgȴ\4d\d !\0-`lc\S`\a\\-v\꿲ll\0 k?{W\$I\,7o6oذ\\\\\*\\\z=P\\ŋ].\\\۷pn&.;v\Xf͚,\\p\d \\\\\\\\m\\\?U\\\ \L\'lݺb\ڵ\\?}4ܺu+a6#hyʢp8\y<\^\\tp۶mEuuu?Bk\?~\Z[Ν;\7ް9sA\F\"\h4.\Ãj\D\"\\遮.\C]c8\\\\'<\ ó\9E@\sha\\L\hooor5o߾\â(B2bn\)HD\EH$\\\0\ \0(FÜJb\n\\\~KG\\֭+\b\"ƽ\t:\r?h4\Ze\'snڴie*M~~`P\8\n*\B\eeePRR\"2DRݵk׉\\O;\09\ؼ\t:HZ\j9\t:ǴXj\F\'0v]V\"+z\n\n\n\\u*{\\c\i\D x* \֑\'`C#\\\rTgZ\@/$)/=\\%\>\\F\=%\\\\0O&F\\ $u\'\i\0J\\$\0\lÇ45D\K\,:LHOEy\W!\\\UQ)\\'U4~6\zUs\`Nsb\\\'o}B\\bUuu\\p~+Nk\1AoZ\4ሡ)**\0x\K\\\gBx2\` ҂ iyZE\@Z֩\0R\r\:5\\\&PXQ(E\#Oc6\\,Z\b[\髰\X4\\ ZъH3ݛ{\rnކr\U\'yNw\\Qb\m|y\C]6\\y.~t4\ \AҶ_$-2\,\ <ޓ\K\UU\*a^e+~twPhxկ.w\]x8#Ni\U+/2G Z\'\\\\]p\\r\Dƙ(!h1 Z$X||d)T\yగ( x\/\|\E\ \\tZ\c|24k?\\\EA¸em6 ̫p5ഗ\d^\\0E\U{>\\[Y\O=\\\:\~~ ߽G\)\ \Z?9\\_\\H\;X?ʆDҌ\\\\N\'lX4Z \hy\"Ca10䃷w\\?3\OL@Y?vڮ+1.P\L\I0\&\\\.\>\c0E=\\e2xU \x\\\{\bJ\'O}P˯f\0Ⅎ\'O\'(KH\nscգK\\\M>8{ ΜkGO\\fLZD#Q%L ro\2Bg\9v\v⦖Fϳ\<vs\ڹsӅ׮ZA \X˲׉`_n\\\^0M\?\$\%(/pO?caxZf\%1\!̓\W\\Ug\?ߺ\r\zݔ\ڔ=/\X,.]+\E\\ק`\_\\ٚV\\\;z\\\##rYVo7h}\m\K[t\Z\6\r^xXdY%\"VX\ݕ\'X$\\u\\\4,.k&|4\\d\c\Au =\\^+O§\Nà?@)\r~\\0:\9\\k }Y\\\u\r8x\\86\?\\p^|2ٚD@Qwjk8:QLJ\n\p4[\yy,he1kt=^p\o\\l+Y{\\u\\\m-;,\ 9SJBʅ<7\\\\{\0W?/CkUZ\\n\Hl,0M\\w\t\3-w@N_\xrh\ \ݞ[nE#M\-\\A\\\Z\,( \շ@64KA5\?\0j\N\ i$cMNpyPGi?) t5\$\~@d?2 ǦQ@\0\\ R\0\\$#g 9 MNJ2@m\ Ukkk:T V@KN/\\\%\sϕao{v:\X XQ\I\;m!a5\\\3\(wh\ƍ?}\\\+\n\n\nF0\\B\DZG#4@FJ\\ \\\<Bv@H\\x˖-\\\'\E\0Y\+\(i*y\r\\\\\\+7( \\\ &\`f\=gm\~\Z)R\uk\&s\\\\kPD*e\\rO(}A(\nP\Zd\t\B*\' \@uZ\H\\1\0ky\N3T܏ܶ\(-,\\rD-\\E\)h\{\n\\OіL{\z\)\0\\4\і2 \9\K>\\r 2\KnA\Z\\ch\\\\Af\3iPB+@k@ۀw70 \\n r\=x2ESJZʚ \̔&\'dA– \rH[\kg$\{\Z\\zxO\f\'x\TϦ\O\9\]BLA0B}\1/\I\\\[\\0OU\M\$ A!\\\S\7\lq\\\\4e\&ع\)xx}ˤ\\t\\\6= =7\\X (ZIy`\M\\~m\ ӫ?>\6\\\fK\e\\nׯgvnՒ^\d|\)7\zF$N|+rEc\s\'\\\3\nM\y\\xC\\?L5F\`$\\\kK\"\?>\YQ/4]nXP\\\\6$\f>@XA@ \.&\g\C\2whlhMͭAMU 8\\\'p\y\\\Z%- A\'@\\dn)KOkƶ\s\\\dV_f Ef1U0}#}u\\\\r\0cϒ\\\H\n+\L%\B4\Qu|\LON\,+󦗶\̀\\\F*ˈ\DByYlƞ^\* נ\\\@VdvNa~4`\O`\Z}\,R}H\ \'SmL\DG\\\h׻;$z{oګk3@i[ZԹui\zh}h\:\[\n۷~\\ރ\\i\'\))?\\E^Ԫ\ɩv\/`z&!s=\(^:wfvIsW;L=mG-Ӣ=m\\W0_ aú5\\Zn\t (\n\l Aמp J=%\g}x\"tښJ\4T\\\\j \r\\`hI D\\r\O\svfO\$S\n\\"عXJY\K.{Q\ & ~J\neEzeZ@\a6\\F0MM\n&\0)@\\ػ\,y>@tW \|Uu\SYd~\:O= ɩO!85Jt׌\\\BG\z`\\\X\Mu,ђ*{l\f\p\b9> ã\iAF?\n3F%\ \rz4\\z ~?ٟ8\Td7Uof?a\rp\-?BNN\\ 4\UkD\ \)\؜p\qY\0Ө\JX\l\\\v\*\b\ڙ\>~ \?`ʣY\\E>\u\7W/\\\\\#7\ron XT,\zX\'C\rc\n\\ \ t Y\\\\e-\\ro`\q|PSYU\\\8\KP\\F\n\\-ᯝ\\\T\\\\\`\S߆M\`\0z?\Z\O/\\\hN\qct17\r4P.\](`M\7R;\\\x 0\M\\\_da\ 4҄\\Cmo\r\\Zhi^ 2m6\\W$im\Z}\L\a\\,\\1K\\K_\=4\C\`_lH\\\ 2٩X;1@@ss \\H=G,m\Z\\NjDO>:R+@$PFY\b㝭\wM+D@)Z5Z9,eIb~y\:|_)\SJs\n\'\\Z\c\hJ}4\QBI\\R\\e=6`N2,b5\l\\W\\"\'Bphd\j^\K_Om[3MS\\]\0Qn6+\+\ |=+0\_\.rYCI%\r.sr\&&̚54\\Ijdb,>\ע\ٙ}gR\\\\0^\,\f\\נ\\૱X7\z\0dџ^\  F\\Hɂ\HBI$V{+Zx̩%:`xx\\"WwD\'\\K*\0\G\Z2 M\&\@Iy\\o.\0O\ɰ\#\\\\q\4F=7*A\@(`\C \\\Xld\\\,][\)\X\K4\Z\ÿ\\ޜ\n4ŁG8>\\\9AN3ij,gn,-G\7{~kIQIiQ[X\)\\\0Vd99>\Z\\\u\\\\C)\x+\\Yt8\\˜9P\"+Tɂ\@\'\Zw9RoUu\bq;G\\\\r^\{o]\n\@_;\-t\\\\}\\R*SXx\r\\#[~FKR\\\s\Nˉ#Bg\MoםH\E.Ñ\\"\" 3\JDU\d2r8\\cX42 \N\\\\34\4\{Xl \%\Z\ B\'\\\\i\s/M:b8ң\[D´/\cSܔϓ\\N\;~9j41_$\0YLXLt\\Ōq\\&_UL\&\Q\UKK%,w\cRT+\ۤ\"\\j(\T\\{F\"QX \Y\ 89|\0\0\0\0IENDB`'),(15,1,'Crypto-router_symbol_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0_\0\0\0\@\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\ZIDATx\\] \~ݺF3\>=3\\s6` 8&`I\\$\\e\\\ͦRI lmݭ,\6\fCA\\I Y8\\3\s_C#͡FR\_\\߭֌f<6~\n\}\}ソn ,åh\\\l\^r\\q{$Ŀ\\}\\_~=\:a\\x\!\[V^f\\Z\\Ɂh4\n>\333\655\\\\_ʗ\$v\\eF\k2c\\'ԿC$~\\\ }\\w`^7\g>cڴiӏ$I\\\k\\ʂ\\Y\ |t ֑\lp:\\_\\\e6[4L\K\F_/..\]w\em\\\\p\\I\\\\\aE2Ŷ\\\ .m޼-=\\#W\\w\qGm\r\ro~\\0Z->`\-yyy\\˗Caa!\ {\\cg\\Z4-\<6 3^z {zz\\F\AĻ\˖-/((`\Dtvvf#A\\WJPhP[l0\ZAD\?o߾v\R\Ny\\\\{(PL(--%(H\JJċ}\r6\k\0\P\\O\\\\\\\X1&\ő\ tH#Pz\*?CB,_\G\cG|,\<.hl\($\L XH Xr\0̜$n*K\t]\/\x R3*$\!ľ\c\E7#G\\\k2w;\v\e! >\\\\v\-[ 0T\",/e\70\\avC!<NB \\<\0\@IӶE̸JJ\Z?+}\2X{9v B\^7\c\\~\\F\ڵK\\߃_\\\ WV\u\ln̵rt\\\ ]Џ \rAD\nǭ9Ɋ\R\KF^bۚ\*\nzl\nw\J(/-r jVT\g]\ry\\\&\\\ 73\c_#*Al\\8t\\\\=l|\\\,E\%+$\s󡾮\7͢|@!IWw\@sk\'\\\à{H84F5͓\r \c:oXaú\P^VamTWk\ \\\\\|!f<\Z(^\w\?\\KJ\0LJ&K\\\\4\3\jWºի\S\-\\\")\Z~\- {wo/ \"\"\rpI\\\K\:WZ\\kV7\[\~m\\zFGG\\\0\\b\\mW}\4a|sףER8,xJ(k b\2י h\r+aM}\r>#@\A\mj\x\۷#\'v?\\\\\ >(\9d\j\\\[o{>y;89\\\\o`\IiJ\"y2 \\_*d\g~A\\\Da\]_\\`\\\P\{ǷE1zGW\=\j,@C}l~ \}\G!Kܨ@~m{\8\cO\l0X>z\\$\t\\ݻ\KBw\\\t\G\AfŰ\nv~l;جgp$UQV\\O~\$\w\~ X̩GZ\Z\\}o\\3Yh\up\\8w1r\8 \ \\\\[>j{kM29\hXn޶\\\*B.\Y\Z\ \ף\ܴ\:\q\6=\\[p\9 As\m\\0D\"]\\\gM\0=Lpx<d\" 5-\\LimC-\bl\r{6J3(+\\nZ7\1j\A~\ӟc\#\\|9\֬^ +1\\[S\\к  \qb`r\\\z9b5ٓ?ؼh\AʇR?B(1 °\3j \dF\m,\l\`0 ==.YDFuE%m7lf\\{\mh<\ `YGHm3\zB\]M7\\\G4h2o\TP${`\s*\0\\~GN$\\\p\>3Y\v\Kw\wE\c\k\\9\o\\A\_\׎%\d\|w.+\I\x\\\\a}\u\\kᶛ!8| 4am\\\\u\@2\\1\\\Ī;\>I!o\"IEjT\\\\(\`\0A \\\q͂/ȨY]U5\1\)\n\'\r\J`\\\ˇ\\\\K?\0 \\ۇ`$5[\\\\)fuW )[~3\]S\\\\8\pVRYfPzW[Kt\47\y\\Vn :rtN\\h\n\0\-)*k7\\\bAFA|u]\rfDn#(\P\+\CQ~TW\r(bΓ\\\詳09=E3JV\r\\"\rtRĞ\n\|νh<\ @\\+\\ѹd\yN\xGЂVl1[\\7\{\0x\06 Ꚃ:\B\\}\\\}%̑\(/lZ׀\\,\\4 ,\r1\1\J?\,\Q\E%}\\F)\'<\u>\\SR\y\\s8u\\\⒥$A\8lAC _Oav\,\γ\[> &\\b\x][\\Oݒ$}eQ@o7\\\/쁿\/\\\U\xM= >\F,øG\\]\,\\\0bU)؂{\\\\ç\Xo \{幜`\J=Duj\mgZ\} D\Jt)y߽\Eϊ`%eNq\nnn\\\{h^Pj\AC!s\M\cѕ\\:aCD\\E\5\q&b\]}\\;G\\\\Ǡ%$ jWTÆ L\*+JYg\ ֌ubm\(݋\Z\.C\\\/\\{\bohX\/\\L\\'\\za}ra\\I\\\ K?[:z(A\Z۠\ZB\_=U\\TaP_\\nڸ\~\\00.\nf\\;oAG[+\\OO5z$[eb\r~\\ v\9\#E8\G׿\\\)D\|S019\i\Le\Yd\\zُ\R?CJ\G\\\FB\]Yņ4\\H\ĻG0\\\cY=ۮ!\\0?rXUB:2ZF87_ \q;Wh\̈́D8/\x\\\\ s_.\G\\\C y]\h\{9 myI;=\30\\] \̉\\\I \ro|\3\\I(σ\P&_\\s>B>ĩS\'\\\Ӱa\Up\MۡnUg1|\\bQYY5\\8\2ʏ\\\0hFB\ZB ,%̂\jcSm|^/i\r\\"\$9\N\sp4\N7X65&praq\UPSJ\K\4&\Z\xy1~_\d!^vi೚zMޅN6)L\{M\R&\R\"\\Pd-\;1F9z\\(8NXn^r丒\\e\`t\h\FG\\>}] \| cb5 Iucjܔ\\\he\t?7nD >38yN9ŊB6 \n{EE%\\0r \yW\\]ِ\O\FI\$B \\\\dSmF\u\aQ\|\1\"\Q\7OAk[ Fy8=51/]-\\\e;#s:\8\\\\nڧ\0:аt$\hM;LLqdN\*\\\c\cH!9YX\n \\\K(y*<1\\A5\\A\/MqXl\2%@Ō]\E6 G\ro(\\"\{ \_ʆ\#r\iEU\,e)RD=+*E.\|TŞ\%7ôX\\"`\eL~[]\A$`P!@gA\r\~f=\Z\nM@]l;ɍ0=\15Xe \\n%j4\7i\O\r+bVY\U\\\l`8\\Z$\"\)\\O\906t\=\Gá\ \\\\\na$\I\>\^e9^0\\6a@ g`MaM\u? \^4\{\0!\0(:t\R$<>=\>\~gE\Z\\N \U$xz\0\e,H}\?15\42\r\z\J*\fr3P>\[\'|jffƭ`\\\\\03\\\YfC}\\\LM~Iyü\\!-*I\|C~Rx֌*^Z^\Ui\n*o\W)r@`jr \UXTeB@\\hݾW\\\\\n|@1܈|\x$\Ed\+\\hJaqa\3\\\ /,_VWT\+\7BSgO߷\\\{džGlJ\2\\\\\9\u\\4EEE^PP@2\0aחM===\\?\\\\\oҋ/H\\â!j2m?\ f\1\\\\~ttt:u\F/2\\\ SъAn`@-\\\+)1  \\\%lQ\\X\'=mٲE\@}\l\[\\\\7:Jg\A^\B\\\,\,Z\T\)6l\ N\'\tdW\\r}}=E&&\\\Bϛ7n\JW^\u0fA~t\ZwIu\ 2\ZLBA  u\Wh\2^|\Y:p\ u\\&9\\f\\\\DqXB\ٰ\3X5̠\?\ T\\G,dD`b\\ӶOJX\\JJ\\\ \no\ڰfM>\\\7 ? \W7\\r\L\@[\\\Bs\\t\۵K\\[oɜ&\\x\?i\޽X\P˗/\\\ՏA\ a\\\\N\\|fga;\J\\6;<3Z{lYO\h\9\'<\\\n㙚Ts;\r\jt\i7\&\\\\\g܋ \S+$d w6o\̓&\}}}\\\;\\0w\4\\/\`\\\PXԱ47n\\ƪv1\}\ncwR\\\nż\;W\ݻw\\!\-qc3\8A+\ \ǘ\\0\\\Nc\\c\\*\ W\V\\;Ǐ &\[BW\}\\ش1q\ j\\Pd2cUUUTQQA\b\ýt\\5@\7ٯv\\~\\gFsP\\\W\1\\\ 9測1A \\a\g\b\.\\4E\\ZA!\&05H\9.\\]-TW&.\\0\t\\;\\\Ld6\>\\C9W|\ZNS9\Vas\<-I\K h\_nbVT\5\Px\\\\#\\u\\֑B\2&Q\+yk]]-ھ};\\\\7up\\n?m\l*\TTF9UB\\U\ \]ȩK\7j;v\\ku\\ĴDa.\•\0\$:L\#9s\ \\\!\\\\t\.\S\QO \ڰ K\+=طnޠ\\0u$\\u1&杋\~XY\V\\#q\t;\$\YF\H$;%\\0QJ9 Xg*҆\j\s\K\\\q!PW= o\h2;v\1T}\\n:o0_L9\ \\N\'xi\&2&ۅy\\\\"Hx9qmйS9K\9n9\X\R@\\젘˦\5\nu fKKu6\\UV \fމ\,\nSb*N֯\n\^\XK\\Un\Z\\\lN\Zݶm\f<>I7mpy\n\\s͋/^0[`\ύ\\\d\R\\n>|X\\\0J08U\սi\rs 8\\\᜼\5\vF\\~\0Q\'\\|bv1*C\]BQ\\a\\\^0Qw\Ȇ\XȠ\\\\\(*v\\+q7o\\\0\mӃR,\$\\o\ +WZP.\0ZC]GG;uL\rK0U\\F\00\Q\\\1 \\\}b\\"\$ Py4 +(\\Z+S*\\\A{\)IUy\}\`kJ\\`6\A#jo\Ν3Is~ս{\*\#\\?t ɂ\\0!\\Q\ҩX$[\g\2oc^[Ќy\\\3\&\+L\`W)\\?䓢ps݂Fwώwߥ\bb,\\~\\ݼO\X \"J\𠈎QȖͶݨbf\0NDyCِy\\\]gϞ\r\\KJ3Q\\,0OӉ9R1{\\\;s\qX1#=~\-h0-:U\\\\\\\`\"ہ3\:bW\0It3~>\_\\DV \eP\\w\`nj\\lyBf\tNeBbk*\\:&\2@D.>i~q\\Hz\Z\/v\\\nc\S\ZWA\\\ / <ϑbs\\qB \K\ {@P\M->y\/`P\w\\\\\R*kV\xU D8ŏ/_e\\\Ny\\'4W=V\"\\,Ff\ 44\Lo\+N \\,?\\T4Z\'\'&\p\,=\d\\k\y>ss\H\Xv^ X%%O{g:4Pu#G0 \ ~\\\+\ֵkצ G\ٹo=[`\\3A@11\1\e\\\\\\\0g\\8a\\0ðۈ\п|9m\\n/\|Ky\\\6\r3>/\tAk\\V,(9R\'f\"̅\X,.\0<_\\\0z\\0\\\&\j\\WoϜx\]]\t=F\8\rt\Lh/Ka΃1^=1\´\нH_\\ʋ)\\Zz\0\0\0\0IENDB`'),(17,1,'Disk_array_2D_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0c\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATKO\@\\\3\\\"X\7d_~}Z JdQ\Q(؞;s9G\\\\\\\O\\}\\|;7l6\0 t{@P\\4\\y\;a\\\ ?EP\)\v\}V\j4P)\\z/ !F\\ \QEbF#\^^\\\]\u\ (L\L5cT\0oo,\V\yJ4kԪ\\\0\Т\[#@\\\\)Eb>\[c)FR\\]GN\͐R\9S\9G, },R3̌\X?\0\\\0\0\0\0IENDB`'),(18,1,'Disk_array_2D_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0 \0\0\0tw\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDAT8OET\nW]\\\ό\'\%\J Rȥo}\R<\/RKT$p0q\\\u\3]\\\X3Y\\[\\6\0\޾+Z\0dea6a:`:C\\sH;8A-?`4 \f\n;\l4Lq\ -\R \\L7b|MFCY(D\q\jSz \\C6\\iZx\\E(ONN\nG\m>hI4\bۊ \\7..4#\pn\V.\\x\>}<\\*KڮBbX\Z׉\\\\nTAI\n[,`\-\>ULb,\ZTj\tTi$bp9\9[%:D~;(\\KK\\qe\^\Ď<\Msㅾ\r\\Ȼ5y}\\w&ؖ\'\ZjPO)c5)\'>#XE?\ZR\r\KT%R\uf\\\΢P\\`\pX\d\/TR\Zt\\qn4\W\\\][ B롒N\\Zpht\\&\\\Qj\Z\g\ϟ?\wz$A\g\ZN\\8\r\\C\w\p~l\nkHH\KLea\u4Y#ԯ\( ^\ \Ӯr\TE\Ib\4ٔ\M\|\d\8mӌ@Y)\XX&%\'\ߤL.>x[\O\\&6!\/\g8\\f\h\\rȇdb\GN\\\>-\D__\fg[?xSF\`\p\w_?s,O\\,4U%\"\Jve\8IˮN8[HHE\$R\fB\HK \"\IO\3\iAl4\Lw{֧wO\ӕ\\#\\\\[\ڬSG\W\\Ĕ\\\\<&\\i\V<1\\nu2}Q:1ݢ\\v7&^6?z\\Iѡ1)[\'>-\\䜘\l+h}\cА`\rY { P\\";y\\xg\8W+\\W\Y?\\\\,&x\r HL!a*\vX\\Ufƶ84ƌ\ u:\\'#d\'lWxݸqk\}\!ĻwqD\p\n2K}%ܨ\\5;<4\\Z\\\\qO t\\g\ϩ\CQ\\x\r\Љ xXn]VAM\\x@\[\\\\" \V\'d\R-,ξrE\͛7ur\6-n\\kk\&H)PϧO\\\;?FX\\~r6>wT 7Pf&:q>??B>\\>e\\"/U\"ܳ\\xw\ u/\O\\|%Υ\\\\ԔE\\C\ST\#Fgg/2 \:K\#[\'\'Iҧz#\\\ \\\\y\(:\lj4\\\\^\\~}\_\\\q\\\wu}\_W}Ʉ$2\\\nTjc+5ch蜡\Dp\\i\'GOH\$\\#،\5G\z\\}~?\\\`o)\|̘ ūM<]\hg\AO8ΓH\6\`\H*F5\\\k~\=4]\\\\TƁ3t9 \\}X\\t\\.]\e\\\\rG¯v\8 \5#\0\0\0\0IENDB`'),(20,1,'Disk_array_2D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\0\0\0r\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IDATXÍX[l\\\\ٳ\\\-\:\I؄q7\\n\C+!\nE\\'\K\"!\SH-A \R6NBb\\Kl\n\\\\s}gvg7cf|v\7\oƪ\d2\\"b\ۻ\|\\p}CDQ\q\Jߕ\\T\⺮x\|\\]a\\\\N\+ǎ\8\wK*U%KK#bY\\\{\X3?g}kK\uv\\3\^@C\\JM49/n~\\&2\Ho-uhV\-%nM\{\]-\)\\\{s3ӫUHZ\I;PzC0[e\zW=j}\\262,MMMޒl6_\o\\\H\r\PH\ѧl[^\\\\F\\ / /{\\\\\.)*{\\A0\%\~2J8\\䤫sCA뻋Iz9-]]]Z\"g%\\g{[b1Jd\޽R \њ\Zy\1m֪L$Ve\@9\XՙTC\\r\m\nKGG\\jk\bfѩW\nq\"=R?###H,񫯾*;P0\6\\ܾ-oȞ=\[o\@0(XLh\\\\cR\7n1\W^e\&&\u\~><,\erҰ)F?\r\S\\\D^Ql\8f\B\\2p\\DB\Vŧw3ܾ>iNM\tZy倕\\:[ \\3g[~\\;\dn#X)9}\ ÌCq3^\Zw\ꪱJ^i\\\̦\^+Vk\Ux &\\;\\Hy\M7J\{5ײ YC0ʿ-\\LD\0W\\SNF=\C\\HX\\)|\\\/\\\\_ C ٸ8\\\0էJ \\\(.\s\a\O\|\\\1{c }\B\+\\q\\\nR\7WĎ\e~~^\\\r\zW͛7\\F.]T\||/\ZD<\zo:0gffT\B\\ٳ 8mmM撫\=v- \\\Z\ļ-\¦ \r*09]?\\\n\-\'9\ݩ\\"kdؑH(y\\lky9P0\\m Gmo\\&\\\\\*x\pK\R\ڢp\:<\\nH}F9\8\_c]Lz(qW6Eb\[\u\\p\;L\Q\\\r\"ub\\0=M*\Ϲ \'%\O8\—\\+P}!*\\#Xe\k5QxK\\ [i\\\Z\}\`P\r? \\%fqe\\1%њ5#\Y\=䠢(gScL\0\d\j\Z\\R͕fW\\T)ѵ\\a9\jZissH\$\M\ݍ)\\\\\#\KK\3S{҉o\}c2ġ\(*;\\Up\o(HDb\>, \1/G\\e \:p)\X{[L.\\\\\\汕\\Ɣ\\n\Ca\\0\\\0#tڀy\\ {22>\\\rA\X\\0u\0NBc~\'.)0,zSMNN\\؂\Z#U=lߺ%o\R\\"ZYظ\\\՘^\ \\odA\r\r\r\\n477K.\VBZZZT\>\kt\(qnQA\'OH\\򖪉,\\n\\nz\OgAo-#xG\|\-%3\\0\~\_X\--u\\\\!\\f\è0\ǣUxb\^<\p\\?mAqj\+}/1\"\\\Y[%\vrfɒk|F\\\\2>>t\lp8R\O\`?\ӒL\\ɹs\]5Y@A\\Tó\a:`\\u\Þ|\I\WPښ?^]\\X\u`Eh\Zs{[\\U,+.p\}\da<\E%\(\ژi\6\6Ka\h\\\˂M\5~}VR0,\N\\-+P\\o$\\q\n͔\\z\mV\\\\a\\S*Ϣ5}\\jh\\Z\0e\0,Pje%PwJ\kxkO2\`\HXɕAX\` E1YQF-W\5\\n\tS\)ԃ\" ,\\Kb\3:\+\\\[\Z0+\|-NRLe\\@deA&\'Nkגkgw#Ѣ~ \-_!\d{\+^E\\hP߲מG\\}\jL\޺*\G\y>)\\c\s.e\\'\\2 5Ae .HW\r \zD\UW~& ?\\йR\Aj{W>::*\(\\S\ъ\\\$V351\\] N#z\NA~b\B4\ni~\n\\_}uղo\>e\Jxo\1n\\r\"\\ݑ#GTh3(+\R/\##*R \\\\Ԙ\\Ox́z4yw֑Ç3ɮX#\\rr J{ꩧRIZ*a1\sT5\0_,XT>\P\\e6D\n5=6e@졠\NV,\&\3 u\4\իW \\\ȣp۱מ}VⵄY\\vQ\\Z^~=@\͂l^)_,u\?;w.\+*nwL%tX\ς\L\R@gaC\\Z*\rP\\\\X)\q\=*j\=.c6G{\=Xl\P\\3\<tU|dG\h,\̎LB\o\ݻW\"\\i\s{;{NJQQP{\\j̴\\e4e\s\0w c}šY\/#}\a: \*B\)\\\\0\d\ŋU Hy\?Neŷۆ(n^\\[Ϝ9\h\:\Z\,6nó~04\%@S\\\\\'\,\칏Kgm\k\037\Z \%4l\ƹS\ S\:=p8 tj71nA:\"\`h\\Td! b\PB[ ƢU{(&zgPT޺\\\~\)\Z^軑\I?}\ë\'΅\drn!0<\\ޏC0\d\`\ X`\u)+(dk+13u|\\6*O9YJ\0\0\0\0IENDB`'),(21,1,'Disk_array_3D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0 \0\0\0\\"p%\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATx\\[ile~}߉\É\!\0!AFH\\ZfV̹_\+!1;\Z!\\\jXZFDȈxGdI\, (ĉ!s`\rj_}}\kW\mMO]\\\|\}|e-J\\۽{\r|\\\c\"y\\\\\m;ǜiG\0v\\ۡ\0v\*\|Y\\]\nU\_\\\\g]H$\\\Nޮ5\cp\Bxaztm#\r4d`~S<\\_p\\T84Y\aX^\O5\%Mtkq_\V9\Cfat\ƍ\\\\ۛ~F\r{lD\4`E\MDc1\nBa\Ɖ[\Ә\"\\\\T\;w8,\+N.\BX\s\\\'Vvb\\V\<\W1t\\U\>e˖ /_Ncd\UH\n\Oq\;\A V\'b8\\\\"q\Õ˽t!:Hy\\%GL\}\ZyX\0\=Ѩ`\u\]\"?\p\n>\Y\+\\F]t&&&\ڵk ʌdʶm\&\Z4==M\\\˧\\9\.$*-\\~i`dD)C%ܸq#fv\\)J\rþ<1av\?\n\3>\\\\Iߴi̳b8\k(\ì\0?|\!|\\t% \zr23aוR\<\'\[neð_C61/ᇉ5\æ1+ކ#Qnii<(b__<\ 1Ir,\\\\c$#\J[uX\t\@\ \\XL\0\TRR2\h\\?\=%\"=\1\\n\0A`X\rm\0\+Zl߹t2& \n֧ҭ\\\\5\0\0r\rKv\\A{\=oA1\-\q)Y?XoǼps\\\\\\b`\i\A17\0k#앖$\A\\c:ϘL+Ϫ\gΜ!wl*\1\\\r\o\SL\T\\aݓ\'OA\CCCq }\At4#p6ЃKN1\\:1\\\c\\x\ 43 Z#\!W!r\\\!\\n!N\\n\\"w\\i*\}F`| :\-kP\\\\\,\Gn͏\\}\\ \:bP\"$\966F\u~pO\:tH\*\\|\'\|}\q\\8rg1 O\{/]̘4\Z J\\\'?\\\O\'\Li\u[[\\zh [́IxQ]\r\\.\Z\Z[D\9_\º\5GŬ9\i\3躛\Us\E\\T1} S{\\n\\<+y\'\Z\\OUe%b!`$fz>Q \'LM˳\%f\\Z|q\\|!+\\\J S\A\r\0\Y\dCPPQ\Ɔ\Q6 \oߧ\\\ \8BfT[]E\t\R)Pm\~\:&\8,\ 3W-0ت>h,/\\\X/x\\d\\Zi2QB%\\6t\ ¡p:\"\\\\7HF\\v\x~\\:r\\\\SO\9a:\`\3\1IfB?g:s@x6\ H8a(Aۅnm\VB70)\\\8b\r\\˗\+|Gnc}\\Oc: \ސ[X\Lg1\,#Q#ؒf(\0\\\\Peetm\/X\H\eQ<J GԪ\\\\믓`KTySC6 Od\\\ @B\Ÿx\Q_y\5Q6X\\UBkjj(\\+\B01ߚk~{`ߓqoJG\\>7m-\\x\\c ow#+~I\gv\A y(dX25KjNl^UT\"6i\\Y\x2\t*(ɸiL\e\\\jr\\\\\,\D\|z\0Fi\³zH\2C\g׮]\(\Ua@\a!\MZBWL\?{<{Ѣ)\\ [馰\dv\ItT\\Va\'8[1Mkp@0x_\fL\W\T\nxA<\'`U<\\\\\֡\ٵ n))\ŋkN\=\^\lj(Ke\:\- :WB>2\%\3\\\\㭼4ii;J2\7\\ \Qf\nI\Ye(Q`ׯ_\^\Z˫]\nL\F\nCy-\\c]0\Jg/{^\r5E< \jѥ`\^\u\6P^.语%SZϸf\|\r<\gTz\՞\u\C8qø\wm\ \\T(#^\\\z\Hs,QrUOIf\_J..03\~O\!U~\Z^GpE唊GaQf\|NZsU\ZS)|\9 .\q!- 6G3\FFGSW/]\\\x\ 1n\F -E-\+$)s֬YC}N\%E3\\7\ի\^z5e\ K\nS\t\\\\0s|VX.Vz\\)\5ҵ\\arXei6e[/\\H%9son5\[Lѽ+\h\S\'^Aљ/\\\דbF\?\#Q\0V[\uP\"\z=\\8<\oMqbv\\t’$K ׅ^\\ZEg\,]\8X0\\0իrv\\4S{\-\7i\֡\\%֏p0X\\'G*8{\l-6.b0~G\\ EYTd^p\\_rh~=H\{0?-qTf\\P`\Oc\\t\"CRbt\K>\H&.ɗq4k$k<\Ȭ\\\\%!j)3\Q\\t˥\0 .$*zX\*\\:^Ɖ\\\\+{;:\8\\)SrU`br<\#\\s۱A\V\}|\f|@(r)\\c\UW\r\\\\3s\\Θ?\>|w\\\0p\\rEFWW(>\`\jHc $\'N`\0\{\Z?0r\ b\f=fg*\\u\ر\\\\\\/,xY `Slfl\\u\Z\T\"\\\(tꌩ\1\5:x69>\;H\\&\V\zj\\ZJh5ݍ(\04I\rz+wo?VM8G\\q\1Sgb\s.EDNN\l\0 s:\[8\<\r9\\ \g\-\f\n>\{)9\rrOϜ\\"_<\?M#\tSY\\=\\3B;\\?\#\n8_\@\NS\qdytq\\\q3{)ܰ\\\WG\\8G\hۏfabͫ|}1 Ў5 ͇\ i%\냶nM{=\E\\zL]w0\}$\ZiUGF)\N\'?vT\~~k)o\\\\\\{\8\JQϤ_T˗#C \A\mາZ\e\JR{gm~ԼF\ \\'i6`g\\n\$bf\Ȇ[\,V`\OF\\55\&ѣ;p\\\}\Zj\\\]U\\+[l\\n\\5 ʯ0\[\וyӬ\\0ȩ\\\Ii\ׯ?\L\@bJqyEqYI2\;\\՚\Jhn\4c\\\\|[\]q\\%ba\߈\\ Щ};\d\0\\keC\dy\=p\iգRr\0\0\0\0IENDB`'),(22,1,'Disk_array_3D_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0٫^\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDAT(OQ\\ׯ\Q2ȸ\Z\U\ .W\y!O\$ ]xW^@&\\\\\ \'nMAUQ%\8\rYk\K)\D\t\R>\\n\qZ\\;%\\\\W\xt\\USΒY ӣ\*C\\)g\\ҭV\\rڷԇS\0}ݶ]{\\\\\\\\\GY\\w\SϦ8\l)9]_\ \N&T\w\n\9|pF\\\s0C\n\l}寄|\, QUB V\ZJQr\\BUa\\(Ơ㿬\nm1Mӌ\0`}\w\1:\7\Qn6-)e\\c\H\gri\Ysu$\ \\\\!0\\=k04u\Xô(c\cU\ x\HJ\\<\\9\a\"ed\0\0\0\0IENDB`'),(23,1,'Disk_array_3D_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0 \0\0\0$>Q\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0>IDATHUKoW\ᙱ=\G\G\$$\r\!*RTE]tʲ\OT~+EvS! TT%m\\8v\\g߽ Q#ͽw\9\\|\\\~z\u\/Fz\\>\\>\)\Ey\}\q~}\a\}\Rޕ7X,vNQG\avy\o\?\\\\\\۷Ch nݺ5\54\>\\\?&פ,b|\\޽[zi s\e\E\@U\`Y&NN>\k:\8\\<{䈎C\\\\#OU_aJ$b\\\G6PULXF4nR\\C]Cn\\-?\fٺZ,3SSST2$G|\\"\\\\$r\1$~?P\tUA\2 t7J\r,;\YL\\\ \\pؑ02\N\N\\K30;bA\|\\Ƿ\W\B!S(&a4L\Ӏ\0\\\v\JDBr\J\… y}ffFf0[˲0=ãGd$:Yʽ\e\Q4\m\b\ZO<\"~\S~TKy #\\\[=!{{]\\ӓg\\M$sQJ%ﱒ\bu:\^o\aii \coo\\:|\]P\\ \\B¤\0\] /\D5\\TKEi\\a7\\!n\\T<9 AQ*n,\f҂uV\\ӧ*\WV%\\\nN:YN6,y\q*)LTPApR\'OJ\\\_e\5\Z\0\X\I\\q\iI 10\\\j\'\hZRP(H@\")&8H\n\gtԴD\"qsee\\OX0\\ \\\X4v\f)\Z5 6Yׁ\bQC\r\\i6\m\zDOc0\ZQ;\ʹ\\'m6U\SH \WBX\\\hl\\\\vLT$h4^\x\obe\ \R\0\0\0\0IENDB`'),(24,1,'Disk_array_3D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\0\0\0\y)\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATX\\VKo\=U]\\nw\Z\ئ=\p$@\F\\"\,F\ZFP\ e\";V\IƑ\ X&6cl\m\GuuU\w\\ؓHi\\VU\\}\]\u]\\\͛\\\9>\>J=\\\\\-ή\\=\_4\Z?޿ \\\&׮]\\\#:sR\\OsS YZ\\w\\-Wpu\\\]\\\Ç\IJ2۷oO\"HM`{\\Y\x\7n 4\?\@\{oHMBnݺ]P(\\ra E\\b:\h\D\Z\\sa\"\\e{ݰ\^(1\G{*\J\\wu\idUk\i\Z\\-\$\mqe\i8m:\k}\^̽xގ$\\\H\r_\\\\(\\8O&\z<G\t*QX\\\֎~AnJ\juuuU\\ l\ⷁ~D&!P\\n\\d]bmn\4,\Z\\\3F<\\\A;6s=X]]A쑁~\"p76\UU\'\\ny|\d~D5\\QT?m\8\7\\>T \$Y\%\G\\:~!q \\e\\\Uk(JVs\.\n>\u\I[r\=K\\i\5ZZP;(\d~\{|iq@\qW\ʵl\\\F\\\~\\\ȯ\\W E\ \V4 \"[C>_ <+(*\"##\y2\,\8DB\b\=rr+XZWFqkrԵ\3T\WjJ&U(\ \Zʲ;\Y M؞{9\\\\Ϋs\:\nEr\W\_R\\QE^][\ӤK\\\4\}#է\\4=ثے*TƁ\ |4\"A˴\\\̑#HXA_\ͬSNEmxb\)\Ey2\nN\@0h[`c\E#r\rȩ4۳{װ?\\nU\Yl &OtLLL`rrnȈ\nK@\GO\*E/_>t \-\\^P\c0\R}\\/\\\':\\ߟ?\>x\n\\\Tr(\\F\y2:\\}U>\\՟\˫W\;w\ws\\^k,\m\Y\\\_jmȎ\\\\4=z <\K\Z\\\kD7\\\]9i=ȝO\\\0fATo\"\dzg\ve\\F\*\њ0\.633\7q<uq\d 7\\ɓɝЯ]tirii)۹|\\\vut\"=XY^RvZWIyl(\__9I`n\=uEShξs\\W\\IWJd«lLZJFPgϦGΞo$^\pR\\\\\V\\n-\\x\熲/\833\\\\Ok\( 7\sW\0\0\0\0IENDB`'),(25,1,'Disk_array_3D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\0\0\0\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\r\"IDATh\\YYl\\\\2xlDZ\,c= AY*E\<>!\x\0>P\*x@A@UhpBȮ@;^b;\\8\\\\\\;\ڝIS \nRt|\\{\wϱ\8\\穧ڈ=\={Ђ\\ \r\\0cSSSϟ??s7\c\\nx\\x)pW\\A,J\\\\'\O,\_\\\\EZ\l;Ь{-ܻ!x\q|7M\\\Ç\^z\2d2z\po7\ǮC\\\TH8>u\С黢_|1PPP nk6q\\Q8\p}\\\;\4\IR\n\r% OW_}\\\ \Ncm׿\=W\re\+\UU\9p؊\\LŲ\\0Ma?(ΥR$@TAnDsIi\\\72:f\\\\pdB,; 9\\b1 HB\%N\nZfF\'\\0 ئ2\\Hk\\0FvT\\\u#1|ch2\'ID\" lc_A\ F5\\\˶m\\…ik;)(ɤD8t1C\299z(Wk\\k6\\իe\\\\^h4\\tXH|\n\Ȁ?\'[l\\VixF\j7JNN>`0S\\=Io\\ZR\\ǥP\\)/)k\\| KD\\\\n\ɀk2\k\\-▕J#\\\\%isCNېY\4\\gHss3!I8 XZ{\\\ʕtK!.A>k\Z\Z.\C\ʾ}\\>{uhH\Znݒ\I\LMO+7, JN\Ji\;w\ҥK=,\hbB6\\H\w\\?߭ZJbs \*+Oex\\Nw\3\!L\GFȰi8=b#7*+U( _4,1P.Io|m߱\n-1+\A1\TXꖗ\4B^K\\yW4_a~!\+eM* ٺ|\hQ@ \n\\Z {\OcR\3r@J =\r\n\\\\ka䊵\otlL\\\'\<,$ \\l\\l+!\:Լ\\5~CF#\7o\ B@ |\\s\n\nZ\Zx\O/\\'/+*b-\Ρ!72k~\h\\\\3壍C\B\4\nݯ\T\&@\[\'֯\O\"mW[TR\N{_W-q\nD`\\\0 ư)8Zn\\\\s@*f6\\Z\І 1`K4s\j$NߟT&GcR=6zk3a@o!0\1=\$\$\ɓ|6m˗q\5b\>8h\*(?\'\V>\\\r\\[ \2\\իW\X\\gMºD\{ %&\\o͋\J\\tIEoVO?t\Į\KA\+e~1y̲ \\|\\y눬X­f\\r\Pگ}T\\#+\\"H_ɶ u]\\rv\ޭ O\3\\/{a_>xPA 䙅N,1(!-BRͧ\0\z_\)d\n\"\K?)\Yp@\sXHŽ\{s~}\\͊V\顛Q-lZ(ku\=== \ J\\sH\"\\<ͥ|\\#\+vo7\UA$\J\<\P\\\{\\+\r\0oj\92E\鋗%-^$䎎O@P\\v\w6~\\\\Fr\\\n\\Z2\!`\rƦƢ+0}~0^{\x2 \\CcNY\#q+\\07b_L\'-ڏ\Z7Ÿ;Ot‚_(\X^\\yZ/n6\-L\~\^\Kԉ8\'W\n@c?Be[-\Z\X\\J\'Y\[\b\\E<>\w\\0V7DL9\\\I<6++\sy<6?4&\\1-\Yu\\i득k,E\\!\\8NM\* 1\_\jb\XuE+\\\퓕+*Tg\\ïeYiLY]R~\\\\rQM\;8\Z`r5\n\,6rJJ\^~l\0ﭐKq/&\ȫA\ ˲e\TȆ맗J\[m,\\]L9 CCa1֩rIn\*7Q\e=2\g;6o\QW@oVUC\g]\\Cꞈ/&[\k1o\4\lҋwХ \p`\dEG~+P |`*`l8(0V~eG\\\r;rUx\ULwKa\\P^a\\\ץ)\\\\$tPht\"Nޙ?ڝ>?\\U>61ߥޠv\iٻ\n/B\8EW齿W\Va^T#:bw\0d\bP\J\\\\\2\/\>\ ƕ\Y\?\^ٌ,秬t\ \\[\яպF\\\YK\Z\ UE/\\rpO}#{\ `-uu\{~{\un\\E\Q\\o\\\6\x\\\%.\NT\\k\\\W\\ʉ{\ΏG\rh+1\}a=\\晋N}\r*՗wDǢ+o0\`\nq6\y\{ zK\\\'2\ ^\=o\9aD\Z\0s\GNc}w-?\=%\p֞\\0M5T\\S\/\\TOQ\\>&w\\-;;\tܹf\h\Y\B\i\\c\\\~$TbX\\\\_\3 ቿ+k9ܜxE\q\\@\o\%H\ c+4\\%\L38(\ԐJ3\kA\mE`qQ\a:qV\5\\x\v\'R_\$uG>Ɲp\\o\\\\0\\\\\\y\\MVX`Z\20\[,\0٨ƹǭ \\nDI<^\ \\WP%C1CK_89kV\?Rp0,U,\e\\P\rН\r\5\lq4\0\\\گD~>\\\J\0:ꖰT3\\4O\եگTw\.]TA\*f\#n\k\\t\Ô\>W\Sy>7UR{S\\μG\Â\T\w\\=&?\!0hId(\U\=k53\X\>\x$\ۭ~\ԙ>*\=<\f`}K\r\1j)-7΅\G\gc)f#\\U\\y\\xlMτ}\ ~*\0{a!r \ۧYU;\\\NF3\)\\z\ύʟs\τG\tn\t\_\z,pc7\\\3\\l/\\5D)/X{\\'\\\\\{\\\\\mY0$^\\.7{_57Q[+x\r@*liD:\ь}Y~M\e4\c]R\+2`>\*\\\UE0\\\\V \0\1\n\\\NXW&\\q<\3V\p\\W\G\\\[zId}*\)=oD7\\\I\\hLY4\ڑe\H|잾>c!ݺ\Ʒ*˰瞈zg~\\=g~5t\ȋo?\T{\gv|\i\\\ZK\[mϟR\\H\\>\Ǝؗ5\\E9DU6׮}\r\yQ\Zf \C\n<\9Ucskze\\Sw?{\00=\\H\ǔe\F.6W\X\m}{\\fU\{V޾^Ы\R\\\=\,\  \\"*S\3\Zs\s4-=\s\\ t\D\\\ \\4q,ׇǍ\p\\\q?\p\(\}C\Ѥ\o\\#S\c\ó\1n`vgŖxܒ>\&\݅NFs4(XrS\\\ւ\q湨\X;V.\0V\w4ז_W!\-DRy\Y\rg#j\p\\\eSӦ{4i\\"\A*9)njh\0^e<D\c\¼~,\0 A\ D=Y]j̓\m+\0\\Z\Z5\nN^ο\ \)\GjAJ\x\3#ؓ\\\l*M]sUם\ZO&M\ڌ\-\o\.\\6bߔ\X\]\7\\ǩzA,\\0i\n Sq7\_St\ \0\0{eC\mф|㏎~߽{v,hg\'@n\P\\1J:z,|ZC\0*\M2 ,}r\y\ \0Ê\Џ7]\G\\\X.D:7AOK\4VlO]\ \Pf:s~](\\AC`9(y.g2\dc\Rxk\\\9c٨\`:UĆ g`;\9\Yǿ\'͞\0)9y\=_ u+\hH\r\\\\Jt\'\׊ձ\/J\챠Jk\\r\WJ\L{\z\\0\@ǖ-8ë\?rЈ\e?_k=\n>F\n0\tP O؟/b\\LTc\L=nWd\0\Pb+9OP>Ů\?%>-\;\\\Q\\\\:gy\]\r:\S:O`(\\\A;\\$Ϭ\0\\ނomu_A\nO\M\$0A\8Ja\'\0t\'\\uRQ\-0n\\\I9\x\\sĭGz\\lc\e&\B%\Z_\0@5>6٩\\by\Q\U$g=&ѤZθ/wXC3#e9\3l\0K\'U;ő_\x\\'>>\\a\Z\q\(?d\;\K?S\Z\\9\\[n|P\0P\_W\\0_\{CMܭ\tCz.c2/\\c8S3@TFqstj\@\\Ȅz/>!0c\v\n+ \0(՞)\{\\a|׹\0#guj8 lOggH\'>bW\\\J\\_9\>^x\C/\\\^\Zd\\'ޥ\\\L\0B}:\B3\J\\0\̾\M)҅K r\0\0oܥ\\p\M0quCܫ\(;Y\T^` $XJ\\eX\ \\\\ۇ\\ـ!p1\&\6jp\\y+\0\_]z\\ǻ6@ m-~Q\զRPdW\Z\"\\\\(\ba/\'\s֙\\\y7L\0poyݑ\\g!\0\j\o=OO8؜1N0O\\\\+*R\1:\^fm\Pk$\"&Ll\\\xuR\"\\\9D{y1\'\.\0[a\\\(\pLG\\>tShs\Io\\Y{3X\:zN\\hrS\4Y\\?[\fC:@\CM\-\̉,\\ऻc\\S\@\H\ZSTPDd\.O:\\^V\oKl\ڙwUmfe)@\sU\\|U\׋\dN\g \H\\\\1\\q\-f\0z \C \&=\r0\s\1]S\\\\\Du\0N؍\Zb`Qg\.?\0͞w55\>\4{\\\IG\>\\\CfQ4\r\j\e&hy \-ό\A7\n\,?I:\zF\\3 ]\4R\:\C_+=7ݡY,7C\0\&t\Z\r\[$\qQCج ~-\w\4Ce\\R \&E\01\ǹ\OlY p\'wbDݐ\\\\:1\U*E\\\'.\n\\ Ġj\\Z9\Ky Q|],\ Mܜ5Ⱥm\:<\%\fW\{kb\\Meͅd\1G?1\݀\{iC\\Z\wΫ7Z\4\'\\\\I횚0jd\:_\ٛ\0\"\4~!$$\\\0UAcg]\\\\0E-yR\\\+\0\"[㇃ YaswE:<\\2/{n\u\@\\n硟֜-ܺ&\nj\d\7\0ŚL\r<y\n&p/\?V\\|ǔ(\jyfr\\{F\\kژ\\\\\s\\ҁd\\v5\ܧ\\\\5\U&\S\\)w\n4\0&Y\ZͳI\x\J>\"\0pj\;v2Ҭ06/\\7۝\_Ԝd\84ؤ\M\\>O\\V&o\\`*spxO\\P,f7.\\I\ni͍ (t\B\%\\6[p\:_\n/䤎\p\M\N\\\\~W\t-\r\¸-9\F\\1G }kVf\u\bE\ռtc`+wYR酟Pr\+\0*x)[\\%@\ZX\\\a\l_?)N\Byx\k\_oTKg\\\'\eUt\R_y\\ߧ_:~C)@\GF\b\\\H9\\\[\\TR\_\0\\\\\\;Q\\V\ \"8Y\̎:h@c\'A5\'\J\Ј~\bo\\7]!=\ܳ\\ftL[F7`;;u\!p\\rĞkr&rTm\\\_S\6y\m{\橇!HoEhر\)\06~9\i\o8w\\\/5r0\\3rz\\%2:ylu\\"\.1f{\㒃i4\r\R\ԋ\KCr::P\\\\'c\]\'Q\X`%\p]\\Ąĉ޻\^\ \\\\"33`9D)fϖ\<\0xTP\7F\]f\0(9\\|1XǦN.i \K\\\L3c}RsBѤ\ћo֯\\\\\"\\\}\\L\Z\r\G\8Ը$v~\0\0p\\زE\"\\g+~\E%z_\\\\\\\~\cE\0q\i\ҿt\t\\yn7hum\ER}\\;v \\\t ;8(DZ=h \ogzZB<.<(\U\h\\ݒ?y\Bu\\4pKdscDW[\09W s1\\P(1\֑##\\Ȉ\NL4|H@GW>FS\\@cv\"\0p޿,\ִ\\S\I\\&\\ځni@?9!j\-S=&\\\\x; vSM\:\b\uj\\` f4q f\r`\B<\X\0e,&\w}\k\-c\ s\6|\\\\0\l5tUچ\f\Y\  \n\`\\\cW\ߺU\\߿ \{0L\*zm閄\rތW\/̟|\\]O_\]=\0\6h\ ;\f#\8m4\Dw\f\ \\MM\Q\-\N\n೑\ f\-jq\Qc*\ronڤ6;\\r*\J&R@烡!@,Wk*\rɛe9\\\R\u\mD }7\ZeY P\"\\獣\\NX\4\W\r==ܩA07552Zǎհ\$(+dPh\\\0\0\\n$X5:hj4\\\\sF\$\7\\ \\3%`\IϝAt\7\@xP%4nQ\n,\Z\{\\AՐ\ՔgO3~\\0\u7]\t\Y\P&/H\>)^\+Pn\ \\\rY\8\ 2QQ]D \a\'\]#|f$\D\/\\\k_+o{Ѣ \ DNgl\\y>\LP,*[\\\\\\d\I\\V0\BN\n\0q\\^e=2R_52`@fH\`i6s\,\sa\\Gz\+72L̗qآE\\\@,\իz\{p\\0Lſ\r\䵘\s\^\\yJ\\\ c eh\)\g~߁\0`zJ\\wa\\9\n^\85 i|.\Q6\|\\ u3n^7J\.0-\(7a\\\%\s\&Y9Hw\,V I^=j\_~~oDo\\! JB*``(\\\Z\\Rd=\\8aC\\0c\b\Mo\/e\0\\%\\ߣ=@v\n\$\0e_#vˬ\\Y_\c\rQZ\\\\\!K\\\Z4\ξ/@\\,`,L\^v11\\\̛\2\0\\d.~d\0N(ML,\d֯\y#\BKt\rϺVpRɑnY\IBz Ic\'Jz\\wM4nJdqガӵ:\D\#D Me27?\%\\\\ym\\?\ \'mx8\9\\\Y d\\[\\\gg)\\u\C\R@y\s\c\͡ <\\"\H`jL\af\-l\\2\\J2Gj`@lG\.\?\@SS\\\`=\>zh\NM\͖dGKz߾]7z\'\\0g \y\r\W:\_)YZ\?PBx\\\#x\Ĩ\}\\\\\\OA8= \޼Y\}oQ\\(}i \r\,;:rL [J/ݪe] DNmK7M\K\ bVҍ#\g\\rJ\r\r\=ıhC \H\-y?35n1oi\'JfەyqˤRR\'\\"J\Wx8/c\uM\\/0\F$<=Ⰻ\0\ٙΚ\\׿^,HK6\\olHJ27\O0\\0R˩\0\$YC\ִ\r1Xo\0#\0}O\<@`\=\\Ϗ#\\\#\\S\\D\\\\\\W<\W43ӹz\r\\b A \\\0\iN\RS٩#s\e<6@0ˌ4S t\\1oh\** w\lD{\|Bj,G\\\.\\JFR\e<\\n\|Fc\\צ\:@~NO-XVȉn\\_xeL\\҆\rL0jw=\\\u\i3AAg\7\\H\:Д >&\0Ʌ\"\0n#\'Ӎ6A\ \Q \ Ԯͻ\y\\c= a+@8<\\\P38lb#T,qѹn\WQ@12Y&\\\ŌOZ: ,\C\Z!\㏋A\^\R3l0\\<ϣ0\#8\\0iy%6&fMq(\\\d\\ff\\\&00\0Zk\\\;\Y\|4\~\z\\;\9P>M0x(\\"ƹXI\{\I\6tgd+|n\\Gyak~\\\,\[⺅f2Z~ww\\\\Q12K\c\'\,%55\kxmԘ!\@\\\\\\6 =\t#xbh\k\i\\)\k\07V(\plo\\\p\Z\0z}k\n+5U\M\\ \\㿺f\0ϋ\z\Z\= \'4\\qfM󤨕\V>N\\g\\>A\Ldl\mevNM#}s\U@\\#ːm8\/\xKvK}E\y:LL8S:i\E\\I\\\0akJg\'Ag9 2Oq҆\\^\nk<}n\\0\bKh\\A:=L\HBZGpm\ag\ \]z\\tq\0K<\'|&6:k$\\D\Qv9y\g \J\GSv\00\0\jϩV\\`gvn\+eZSh\W\|Q\4\-bR8p\.]eP0&sf\5\"F\r\0t\\E5\\y\&\}Y\\<\ #\`\s\Χoߢ\U\\*ez\\r\\\\%\½^\\\ept ?\H=\07^\a\\8p\"Y\\wZ\/_6\cd\\\\\n \O4K9ɞ1\Z8G-噱G\f 3d M\\d$C6 r\f[\[o\g\>)96\\\!6B\\d\\"@\$ \\`ON =g\r H<\'s\}N?>.B\Ւ\2\9ˋ})R/@\Y\1U\:I\ \0 b\'4\\\ZB%\\Z\U\\'\Lg@-\\1cI\WG\0\n)2Am\Y.bs~z~\n\\~A[8F妛t٘\$JUv\>&峌$| q\0 (A\<\$,p\\\\%h]-C]]\ \吂 횑.J/ଙy\\\\2l,R]iÁ-K\noxԹqt\6#G_\YT\Zt!e\\\ Iy)]\0ZS[d\+_iS\\t`\ZR\\s`\^ !`\\\)¯^Ћ@r\\Eɪ`\=N\\k-\qK/uفцZ%h\z\SE5eZ\9\MwξxȌ\\m\> Y \\@阿\\Zq\0L\j¦\\G\\\wC \\2\K\\* k =WKd\r\f`Ǚц9\ $-\زj1\j@\\\fmf=\%\"\Yb\o\\y\\\"\8\\X\8@閚3awq`d.\0̂\׀bEYam\yE2oAf\w|1moL\\0l\\@f.\\ H\Z8 E\5\\qS* m\0\bY.AOF-\łⳁO>9\\I\\\\n]q\b\)bW) \Zd\\{-Ps^AVٿ\4Ȫ\$\8/*L\\=\hv>\\9du/t\K\\)3<Y\3Όn>\Idg<3@\5\¡+Jd]x [b\g\\ڙy\ X\\\\\\Lc\n\\;E \2\?\@\0{ 0`xXrp\4o1\;!\8\0^Ps\ƀv\xHs\\b03\KGI\8\Z\\r0L\4s \{%@9kw.I\\%0E na2a܍\Re`\"˖9/տI>ߧ4-\鹀\I\\\\}\ۦ\ \r \\\\LGL9\8YJ\n\?Ɇ\r\p?&|\\\\\ 7v\zo}\LP,?[\Mt\xnA:C\|~\\K5\SP\+\FŸ\\2C\\[FG(\"\_j,t|YVH\\v\{m\g\3\nb\X\ڋVh\9!\2ĹsjaM$\\\CC߲E*\^k@\u\\\"{\x\`\9s\\ZS\F\\%` H@QM\0/\&\׳\n\0`[\\$I\oe\Z\f\u)Hs\7\0/<566)\0D \\}$\WtTmg\*;ׅ\i\T\\\z|ˬ8$:~B;f;j\A.`:;\\\A\r\x\紛\\Z,B>\CӮE@\\fǕA\\Hq\}o;_j\\Z\\\|@\n ޅ7a@{V \\t\X\$n \/\ Ug\65r\\l\\\\QK2dX\i@\)y\Nvf2 v\\R\\]vo@y4q<܃6+8<\4\ruo\0\\a\ɵ\'\z:v/ʠ\@P\3Cr&fJz4 \ }z+\\6l\\C J\@{ -]27^\"@\\\\\\072o-Q+G ʮ\ nY%1>\OzLz\ƞK\\\|6\~JK9@V\z\0fb\oΊ\\\"R\\\.m\@y}ҝ\|R2_\Uo\G\н\m:pl\Co\ \\(:>\V0˿X\\\\\\9v\\\\x\0\E\>^A\\\<\0\i\\\f=$\>Է\;r\"z7\0\#E\bGk\s\\n\\4 F3\d VޱC\kG\d]qzb\\)\(\\:^,<o\\\#@\|\ZPJ\л\%!\\\2[4 SpU\\\/3\0^\\[Al~\֖\23\6B\z~{+Dz\\\ #v\\rk\\iyW;p@o\\tdNp$@yNI7N(&N9\S\0,)3\0\Z9N!s֑\rv\n̏J\̢\nbwgT:ӵ\\)X*K29iTgP\\'\\3dѯ\-3\\"\ҖD ;\a\4Yi\:mrr3Xb{/\%,ܮ\\\\283H;\\r$Vy\\k 3[\rL)G\0\\\\L\\&ݘ\"| \ZNM\!q!9`ȋE\l\\D2L7\i\A ͫ3YK`s\i\ K0\0\"ݬ\=Pz߶m{;\\7N܄<߁R\0\\2\r\\\Ν\P2u @_P\o,~\4V\\|}\0\\\\6\\n\J \%\\\2pjj\_{=\\\ge\\%\g!\ul\E\0aLD\|׋ \nqe]]\ 㵼&xIo\\\[Z^\Kt_^^@tv\\'\|\M\w߼\͜\\..\\"}\0\ tU63姉\\\\0YŢ^\?-`\'ˬ\o\vD\b \[Dv\Zv\&\\s@pY*r\@\\\'0u\\o\\25(\\\@d\\썥\\\\\\Eh\\hxy{I\r\\X\?d`e1\r/\\"^?ef\=?\{\ֵ\(E\Yn\;Z\E\]^&E‹_xA \0\AQu\\[\\^]\G-1@ /\nm-ϲڝ\rv-\/W\~\08C@3~kE#\\A\ڴ 5@D\\Eֿ\رA\\F\\Gu)1<}\\Z\\JdUSZ\\n%\\R\\f2].২0\6\\VpZ6t\y\) \G,qȅ\ x-\"Pś{ڝ\r%S\$\2e \"7ȲX[\"\\_T\0\\0\"p\\"\m\\_!υ\\\/\\ۅm@\VH\&K\|n\\\'_\\g\\3t+\\/\OR\\\0]aa\\\}*!\Dc\\os0\r\\N~\ &H\\3\0\rd߸\$/oc\~\\R\ \\nI\6= U\;\$Y\i\Mv₽\\0 d \eS.Z&P4`h\0\R\{5t+2\g\r\0Dk\֮D=n\\\\\N;\ss\08w;ss\08w;no|\\e.\0\0\0\0IENDB`'),(27,1,'Firewall_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0A\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0iIDAT8ͫU\\\<\y\ŗ›$\"yQ0BEV$\h\*\pAۢ}mUo\\"p\n15\\̝y\y\_#\nEӦ\ǦY\\\3^ҍ+?kW+\\\bf<\]zI[\\\J>\\\\\k\<\\Xsމ\KxE\\ݶW8.u?~\ bf ↯.|#%w>j\qz?.\\؊ޚǡٳ\\'9h#:?5:.gw]\\\ <Z\ê\A&/\=-\\lnc%\NEg0\|;\\ <=\\\^ںi\\9i;[N\4z:{ΤwΓ\s\r2;\ע\'\"Υ\ ~\]KO#B\"\I\$ߒN:\\\Ǣ\\\\'=}1e\\\\\\]Hw\X\\\n\\)\UmYx?ʺn\Ĺ9ڲ$a2)i\n[;\R3_bm\`\\.e\2\"!=OR%mnEU+\n\\p)yf\)\%-\n\ dF`eI*4%l2AcDU !B\\\'1\&B`JRhh]Ρ\ǧ1o\6s(Rœ#ň6\r:]\{Rރsdш2\\q\h\4~\[\\HU᫊i\\4T+`0\0*%13)ðr(\\s\̜3ss4m\tjЂ@MjB \~HD\G$!!\n*B џ@\"5! 1\R\8qn3s\\.\w\:vF\-X\\Z߷\}\y`EO\;+]8\\܁BϞjw\~ۍʃR\nf\}i\}8;~x\\\1kzM\\\\\\͹\72]\\\-|K_\Z\_9\FM\+#;W}\kdVNT\\\U[W\\S\\@\\l_Ə\w#/\\8yμ\\\yYo=\7\{\\k\\\\(厩 (\3.2\X[U-sϞ\n\\\8i?>s|2\}\y\\\f\\m\M\{Ow~\>\_\\/\Cq;1>׸XhDZi:6ơs\Zp\.\ <\o/$~\Ɛ\G\\٥\\\\\w\\"\\\'\ZA4\\\\\u\\Ԇ\z\vIFk5i=lM[j\\ı\۷\C\':n\mM㕯uuo\5EKoX\Q˧\hȰ\N\G*J}\>B\\>̭\ n4\bw\\Xï7\=nġ;\ gbxJ9K\\\Ujoj\\sR!S\.}<\\]nIW\o\+p \\\ M\̴0~U }}{\\bp]\\I݁\Z5H7İ5AR\\\Q\\ \\鷟m>fI/\K\n jj\H\|\?\4\Z k\(`\\Zo9زdO\t\n\U\\*0)\\ =0\.\\\s\\^e\\R\u\\\RX\Z\o\jDWD9\5e\׈ǬZ[-\\JK2E͗\\;c`\'bz\\cÔ\\"bŌ|\)\':q*5\n;ޝ4S\\\g\\a\\b0s>tyN7\[\\<\\e\0\ϕ\\P8\੹\O\nP\\$7\\A\uJK\\C\r!A\BS!D1\&Cr\'8\n$\ ?\Z\\8\Gl8Ny \'&\n\\n\hcP(;[>r4\\\\^-\Z\\\\nP`yw&Y\\.܅NwdZysමNCI_LBb>5Thxh\\\#~\\\*4\uIV7.\5\\1\H ND\T!-\4d$ns\\gy\Mp\%Hwi Cg*v`\0fhuц *\f \3\\*ܼv\ ({\.\0.\U^\R YF><\\\hd\\^Ce F7\8\\ \\ Nǰ}\"59\&\}F8!t\\Yy9I(A\(!ȱ\qh\ߺ\23g{\\ľ*\\,4%dNviQd\'ǚ\r-MM\\Ze\dj3\t\\*A\j%\L\\\"`Yd2\\?%\\r\\\\3\\=\\+Բ\\ \n7UC\],0\\@)6\l*,\\e 5\=X!!fQ)^#\\r\cr\y\0\\%\\Z&$~T\adD.Ĕ#b\\0]&ݓ\oČ\\\\I\.r-!фcE6 e3C Ɋ\UlE9Nok\\8\\" 1#P4/XM\A$ru/6\|3>\\ tb\\\n:ss T\친\\\^$3U\nɂ\[\\D4,^ψ[Z=YPk\B;l\M\wa\D)+5$v킷X\\"3Ԡݳ Hcf LoV\\4~>PӕF5\J)u𜸓ٶ-ˆSCɮ)\̵\\Wy|dA\@\YDA2@g).\\\\\\Pt\L(F9a4\\A\G $\H(\\'$\f\\yg\\+\Y^\\|\ʱ\$\dwj\n1\5k`\\+$X\.Hʡܚ̔a@ N9lpz=Y;ػ\\(3;_#ѱ\K\\0\0\=\\h.WB\:21[o#\K\\_.\+\"{1\r\\^\t8\z\\\\\fAj${\eά\T4q\\\\[ \0\y~\_\ɌR\\vf\_P[Ə\\B\\\\i݀\է_\ȟ9A\[\\\\y]?\Z\\&BX4i~ɿ\\\"\n\\F\'jKi|\#2ͩď/\Bim\qP1)v4eJ&\hOz\pHf<%o \0\\\KwZE\SIz4\\\+v.hQ~N[#\\R5\îն])\mWx}[\\2\eV4;\Ջ>yyInI>\nM͗ņ\p\h\n$)\YE\}-yO\\F;\C\KW4\\\P\\\K\.M9k\(Vu:#~\\*^ڰ\\\N\F\\[\\r\\\\\ZI \n\Ò\00Ú36J\ZP$\g[FĬQ\݇|`\0P\\\\\;hPZ\of\RB\ԼO!F9\fnMt]Af\n\c\\hh$ś#22A\t\\\nDd$)p \d>\Z\ZT䯎L (\Ir\(\0#\\_Q\m\\IC}ً\>\kE\S\v\53>عT@\\C1ůT82鐸Lm\{\8K&\EM\^\$h\D@{#@Nbې}\[ T\\Zw\\`B%\uU\&\'\\\\(?5GŒƾ\iR`R\\\\d$\|G@z\\"\ME&\\c\0\a]\CM\;\| Ģ\Zux¤ wҦ%E\\ZuLTF/+*\\B\\\\rI͑{\&U1\0K@(*HL)2pB\\\Q\ݠ\%\rwx\#~\hbkR:\G\DH\t&{v6c|m\1Qd\]T(UW: \0\\g#CЪ\l\\]\rz\\j\0\\\e&\'_\\\'\|^۠ȝ\}ҨRnlz0o\6*=G[\n)\\I\6\2\`j\b67\\\d`LmtH8u-\\P\\:X\hmOkMn\\:\A\K˝?3MδA[x\i,g\VJCQW\[PT*\\\\"e_{0Ln\x˯<~S[\\\{_\,\0\\\n!QXЪ =;We{(sE\*;hh^jr\kP-\r4;6F\k\m\@7\H\!H\\E \n0Gcx4@Z\\\P A4\~\n=\q(}\-\sٯr\$LjocŤY2Z-\pѺ{3\lfzʱcIp\\\\\%\5k\EvS 0\BeX\"\\۶|\+ĵ\cb\"aY# \\\0\\\\;_e\rèo\Z120\\[&\#s`\T\ƺuIyn\nظ1ɰ\\mo\\\\ZfI\T\j \&aa-aX\0\5Ո8\\0@E\?\X v{dN `f@L0@v\"dϹ\c\@ \0\\I\0\qd\\sAunr\cd8\aY ˚\\\OVc$߃{\0Ϻ\#\ރ2\b\\;qvYWXFm犐4D\\5;X\0l+Hv\W_M!`qZ;(:q\"97q<\\0\8f&q&\nP$gSKLA$z\ \9r\9\ZnΆG\\\@u%Ι\\K\1\{v\\$ʞ\`\Nr\qJ)\\Cp>\\nC5Q|\0/g߄X|G=\8\hf\\:y4\tā\I9\\8x\\u\%rE\0&X\\0Θ%\>\\wA\\0BF#\\`\Y\0\Z\\\0P\ntU\ \\\\\n\h\\l \\rO\WrsMo?_Ѐ,3@JM \ 0M!y\͍\r\ʲF\\nϭ1f\@Ê7H(g\䰖c\&\ \r\HM\[dr\q%\\\ m3J 6n,Sp Y\jvi\í\\1\r\Ŏ\ xSPSq\72fVWn[\ٱM\\I)\^\Ó\\嗓Lga\_$4.b+̽@\0f\sl|O\0{<\0\z\mn\\0 \*\Vo€\ W\ez}`ԍ@,\y2u]23(؊\rJ[+:\f \\׀%bk<\;@b\_\s~5S\3\[oA~\\rry `\\7CMzʀw$\&\\\0\젔5\ V}{\\Dˉ\9C0\0mm\ܸ)¢> \\\\\$g<\\\>?6BWhqG|\\%2\\H\0\\$eL\0N`\\\@\ pK=;eTA\\+\:33\\\\\\\ߋT\\\y\]f]\P\r8\7yk\+ kǎ%\*;$>3}M\&\05G/\\L\x\=\\|\FڤL\\'~\\J\rA^\\\\̕Afg\\'FLN> \\7ݕ-[\N0]T\w&%\\&e\\\L\0\mrb\0\0 [\d\nSh#\0\e\\J%o`\0{\\\1B\&%B/WD(Q\ \<\\\\\\'@`ڹnrr\|y\\L*KKAL\\\y?h߳F\\ t\fgp\v}`qqQ\0\ɼj\<\j\\J\\]\}ОAZ\VH\LjVr\\{C\$v\r\\9\n&8\.f \0\󑜃\^K\_\":9\{҄P\5Y?\?\\\\i\J\\\\n߯)\&dD\\Zw\?!\\\~\̀t9{h\w\\\\\5i\ K\"d\'\+z\\\Ֆ[~,\eu#\~\l-\a\?l+,~QyNmfj\ͤ`\\Mov\FғCC\8.\C1,m+v\ԩױޅHZR\\ky軯n 8N\xѩ?K\Jl\nF>\')Q588OMu:c8^C\lˮ\Z\\ ;\˭\.C\[[{] \\0|T^?\\\RQq\\0\0\0\0IENDB`'),(30,1,'Firewall_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0H\0\0\0 g\c\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0#1IDATx\\}i\\\u\\\tϊ \0b!V \.\"E2h:M$%\ڬ$T\Îر8$TT*\\N(+R(\"P  \; 0K\\t\uFc.bh(s\\\\@4MeYܘ\\r<3 ?/cP?5ДM\3\Zvux\ O]\\P<<^|ÍR\\\7\hǏ\#\O\'UF\\)˘Uk*{&*{\\4w`m(3ʁ\~ܳ\dA5\ߊ\\)\ g\DW1Ĕ\hw\F\\!4vU\\yX] \X.0a\\V98^NQm\OUo?d,\5Ȉ\FKo;+\\\W%\\0F\\{ۆ\\'ˏ.\+fx ~Fm\\\fD\\R+H\f\\\`8֓A#U\yad\>\{ƑJ՜5Y\4&\\\\\\\x\]u\W\Յp \\x\z/\\'\\ijI<2`|\\DQ)^N~I~q}ޙ\Ilҗ\\\y/xY\ \$\\\ߍwl\+\?7\?8 \\\&Ε*щtC\Z\7\\4\\\ Mwa\\\+۹\\\\Ꮚ\#\o>27k\ru R\n-\d<\p\\\ko\%\M\'f\\}\v ɅOI8hp0\\si?H$XT88mm~=\\Y \\\mZvC7=\C\\\S-\X\\֬\\n\I^\ _T\\ſ]\\ziꞎ\"hyLy31\¹Xv\\zǓ{\D\\Lj4\'β\=EG+\\FƉzx\DO\\\\\n\\\\#c\\\v\\\\pr|5\Z\Rn.\W\AV\\O\M|測\\C\\U\\\+\O%\ҚURb\7&^\Zmp>3(Lg%Q\Esj1$7\\D\ʨV\\ޤ\\\+Mi]HT\pR?\o\p[N\}-]!R}\Fu&\H\\y\\\\\HT8\~]d\4Rƛ\yȜ$a\h~%2\\\TI~u>\\G\'\re{N#\D;9e\Md\™t \\Pw1\֜D?\M^\\\\qL\\\Z\y^\"q\"2#/\Z!{,\r\\'\O.>6: kȊV3fJp)\ZNG嘳B%8Ԃǜ\\z-\טK\.1~\^o{S\\4׫i\|Z*s]h\d\\\?(2\b\\'\ͪa5O\J\~8$\x韘h \&\5F\Z&5\\\ZG8`l%iN\vmKҖHk:*X_\\\,Ȫj1*X=\9\ZW\"\\Blzc\; Qs-\/Gi\2K\A\\#S\\sFM\\]\\3czIϐ\j[( \_. S|d\ŗ}\0\nx\\\(\Lq\X\\\p~.Z5y\UE\#\\ȶ-1a:S3 NJZ sĪ\Z\ ,{ í\\\ ?\r\\r8\J\#\^-yܛL?2tK>%\\\$\\ZQkx#d\\Y\(\\\\O\\Vܗlh\\7d\\JT\\\VqԒ=, t\Z\0\H\#\\ڧ\\8I7۫\\`\b\nv%si\\`U \ \ՆJRZo-V\eM@o\\&\\\FԓM\ZI. _W-I֋$*g\P\\Eᕑ;\0\ܯ4\~\\'>\վ\WC\ssj+Ly( [\\h\u\0\ѦLԐ\\\\\kO\"}D\ny6$ n\Ðdu\\a\H,i \s\'ɵ8ㆴ&oqH\C\!\\K\0ڹ\K\\:e\y۫C\rS]\\MEl\dU`K}\"`\kA>k=s\\WO\\`j{rM\W#PA;¦5\\rgyRT$\R,\-\D> k45| @u>\'A\+B\\Z\֭\Gvt\\h\'Ji< xʿz\gB\\\AVڒj\N\?\2b\\ \"\\F7{b<瘧|t2\"\>\ET(DYv\\t)\o,\ I\D?\=c\ \r܏\/\DG!\Em\uS\ .\Z \\w\\\\%w 7 @Z\3u,Fj`\~8Q)\\_\\}e\:\\ lGӧ\\)_cJa\ l\\r#\y\}’E/bαC\ߎ(\0\\K- \#7\0@Dkއu˦컯_`hK5L1\\@;\a?C}^U\[|/\%9\`bb\[b͉{+\~u\⍆\\\'<w=j1cr`\L\\N\JƃR%\Ν3A\\ɘׅmh̑x/\큨\R\5\\\\ZRF?. Z2\\\0\\A]0Qp\\p!7XEXL 3q@B+:#t\&)}XBx.8 [ҭ\\s\'!x\Z[d\0\\͜6RV82zM\he8\\-\\j\\\rd\0\\݄\"iD\[<\\M1 Յ]\ P%p\nd!1Ǡ\(\\0NM\0\꿴 gZ #l\IO\\/\Ck\'֔%\X Q\>AP@\03!e\'A/z\\\;\q\j\\\0\,ĵ\$\PVms$\ )\ư~(!?Fp,D\Z}-Q\0\",\\0m)\9T\-M]jzSr\'`a\BMaEw+\\Z9\\\b7\\b3\BvQ\K\?\Ju:@(\2*B-;\]\\k\1c\k\^\0\r05\0ղ#\ޜi\\\"\ \MO\\x\@\k\Z%@\3\@J\')\=M\X\r,\OZMu\S%8%kL\rI~\(\Af\n\gK\\MFL9|*#yx\~HM \\$O/+27U5\0\_lºVڝ\$,Ro Xx\\6ع\&\\\ \dHT,\Bm\0\;\I\}\\Aa\\\\\o\\\'\\\\/SHHEl_>qTKZ\\51 \Ȥf1\3F\L%C-J\8S&\\mI\\Hc됎`J\0eå\K4\iY\vգG:{T邭mi! l¼U$YĘoVd\\\r7Hr\\\i6%!Ӟ:Qw\\o\\+h~ffrY\_\n@,\\\rPKZ\Kph\0g\Q\J\N\\\ Y\SZZWK\\W%aĺ>䤾e\l\\h!\\\~\}\[x\0삛\;cbۇE\C (na9ծ\\[VX\\)6!\ӧu\\]ZܼY\\Y@74$H\\\\0\0#\0Ic\\D \ߗr\\"dGz7\}\jҺ\\ZI\0\"wXb\\i\Yt\w\\%m4\\\1+fR@\\$817!\B\n\\\0jAKY,\pA\\\\\l\+$\k\\!+\o\\\ `)3 |g`ߔ\a;\'&\D(&ڱCo~S\\e?\\rXr\b\M\s\bMB:R,K\k`֬\F>#\0; \0i=P…QZ\\\X3\0@\\mRl\*%\\|\\":\\\\6\\\A\\lIq\f\"\!\\=a v\\\ԐO\ 2ŗϾ \n\\Y\\\mf\ BX\44\yx\R\d\0\1\/X\[o\\\֙bd\ ~DŽeFF15\(J\=\\0gM\\ِyRfJ8ú\\rM<\Qu=_D\2$Zkc,>\;\@ ŌѤ %\0*\n\+\\L槬t&t(fi1\ 3-cs\t\FY2\\n>\nQot rt\n\\Ɉ\Ȗ2y\&&\$Rc࿸qoa\Ͽ(\|\5\Sg\rSF~&)l\&\\M&M5\>c\\ qCks4\cB\{\"\ @ؘs\\z\;j֖w\\\~\\\r\}:ʊ\f\\\@ž\\\&m%&\S:?jl\\\?{V[N\\Fύ\n\ņ\y$\{\p4$%{\\ A.2y\Y$Q\TQ\됢\2I{Pg F\\Ԅm\͌u\ȹ\\\ b\\ڎ\\T)z])d\8{嶎c\ƍ\ v\ٹSld3\| %5cK-\\\\G\\&\2sl,w\%\\ޠ\\zHk\@\0Q3(\\,\DOITy?`f\z{\K̞Jz\\\6\С\Ҁ\;\0]7EP\\D> \\0\@\Z\0]L<\\Zq{\Z2|Qψ \\b}8f\0\>ch`y AfXr8I\\,|,\\RBɱ@\9wnءQ\|\0\No\q\ zngi\\\UFJDzVzqC6\&6\A\{\XJ\!\ 0!.j#1\\\\](\\9b3{l\>\\\\P\^@\^6\m\0(~q\&݌\q\M,~\{\\D\\ \uT2y@\g@\\tz\\\\\Zz+\nAod\k\\\^[\O [w\L P8\g?Zjg!\'CN;\\\1jk\{=@@ʇy\\~3H\r2\/ =\jw߭ Z\\L?s 6\I\ K6̀5t\YCP/`[;526\\\WQ\>sfy\\\M+<މ…YLs\\05@G\\ M͎\'\#\?\]X-Hy\\6v\-<\V\ƺ\\dM\4\L$qE\+Es@\Yhk8\\sC\.\\"\Z 7KB$ z&K(Y\"]\\Y\d\99\lxqg\0v\\tOuӦ\W_\m\0RFC+I}4u\t;\=Yh (c\) \0t@\|\\E\dJÁ\ڵ\\~\\\\~\\\\낲חD~\\\ۀ\ak\x \\'\\7r2\U\nqW!7;lFz\YFHF\r\\=*\l\\\r{\ǻ:\R<\Y)d s\\'t\\\:\ (\2MsO= r\y-#E7Tԃ\"z v\1E΅ $\Gxu$.w҆\f\Q$\\z\f\Kǟ̀7\!:]\Kؓ-Z\Rk\\cћ![d-\nx\v\\?zt-V,g5b#(®R \0+*\ьy4bl\ z뭚\J%\v\h\\N0\\ú<57w\\\Z\hz h\\\\"63 \ntoD𗀟\:!\M}\\#yBtv|]d mȗ\\\߇l\BֵZ\\٬F\\\ܜ& 3\0\)>(d\H} \]\,\ډ\DQ#\W\J9\CX_ϒa\r \ɼ:\\\&}@\u\7Ȇ,3\\Y\G4i#\6ƯW#div8yh0\?//̔\H_t\v\p+\"\\\\rFh>ž\ \Zx5>ބA O\\k_Nq\V\E-Id^9110\\(\"\ r\ܬN9\G.piA~\ď \[F)WԎ\"\'2-\=w0D\\g\ܾp7oɃ\\0\\ 3\Y\3ͯ\|\][V8*?8\\".q\N6\?e\HOt_MR%w\;t\\N\\\\j\\\r\n5GE-![*WD: I\r,\\\&-\m\n7nX#\S\\\'\\\Z\㝡\\sBIIGn\]T\\\ \\`\s_^|\HfS\\Z\0*lX\"\3X\{\\\K]\\\ɁYH\\"z\O?ʊ0:\V\<)\ۻ\N[ԏ!\Uyov\:\^irQ}\oZm\ZG]\&;Zg\\\"\Rַ\<$/ \&~\\k8\\\\r\ɏ\\\\\e\b\\\\"\Q?P\\\\ۛ\\\W\\\U\0~\~X\\\\걄я;5oL\Br=\\h\\Z\x\\\' \&\-YڙgK\\uU(& x B^w{pE\O?/\\\\\O\\ ʁ\0\0\0\0IENDB`'),(31,1,'House_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0u\0\0\0\0\0\05[&\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 +IDATx\\\\\\٣\n,A0T@\BĭUDD\ʨ\nVTD \"{ojmm\\\\\\%\2 `@L\}\qo\$\0@B\ !/Y.\'y \\VRCQ%vdEI@p!\\^ &#!ٞے;:..n)\t\\3T!\ER&\+\ˑ_J ,(j1\\@pK\d%\\.x阘\\\\jn?D* {u\i‘#G 88\\\"\"\A\\\*Ew<\EX\`Yp#p\d%!\y\-~9\\vA\\H\\\{{{XjWmܸ<<<\\ɓ\\\\\gF\5\kI\ꊠR\QYp%lb\\P) )a\s\\\yư~1\_Pp\\11\0\\pqqիW#l߾\\\KD-^\(!.6\ب򄨐;\\.M )Ԓ\\R\M\n\\amگ>D-K\VJKlBp\}7Y$ooa\B\V#_l[G0\\RLx鵘\\"N\I9\q/\\ҰPxιI眷}\P/\\Z\S\m\\˂\ %cX/\c\^=gXn 8/0\'+#X\"\\\v\͂\ۛq,<\r\#4tH4t\O\Zj|o)\K\Jqz\"Q\RΒ\-,\ksC$%F\MQJtDP\ſw\\$Gz\$d7]\\c>\HMPRWW0\KT,1\Z;\\F\ AtF-\n86\{\\Pw(\`P.Q\Ǖ\\$&\2QE:; .5j\n\_[r8%K7}\w(ގ\\* ӑe8\b(RӨ\0.lG\܉ˣ\nKwvIF\eUi\\/!B7>Xrh-P\\@5k\<q1K\(\l\1njVm\n[$&I&\r. \\tܝ%\+\-{NAuTeEoS~%#`q+ԟ\Z \ }r\Mi\+\ZҐD\%lj̒9 Y2II‘~=`*\Zٚe\\\y\0s&Y(!\\P?\0 d-\\,`F-%\\c\]>X\0-%:\\Kp7\\0\U\ݚ2Qrii8\\OP:@f\Um7,\pI\\\r\ͣj%˰[r\E9w\fM\xѕɞg\\˧S\\ 6H\\ke\0,\'\\*ؖZ\\FL\\r\\t!ktt!\\u]\ZXh\\r *\(xY\-%V\7WL\\\\Z\}OMї↞\\\hKgɪJl%Kt\\ՒIW\\M֌{\[KHHHr\CM5J5J1\\`Ē\m\ڢ\7DRjA\N\"Rw{ \I\np\\Eo=:XR\rTXZlL\t\,H!)`o\ ,KQKŸK\\\\nZZZ\ Can\"4#\M7\ 71Xl`yYr\\mq#\E\ng\\ZZu\\u^\۷\" .j\<4cY@p\_\\\\\mZ\ے\ӷ\c==g0J\kh\\UUU\\\\\+\\[\e_HiC9\rD\B֒\X2k\xƍ_׮u(u F(5\}\\\G-䶶bH\H9OX@` q\edC\ےŵ=\'\'\\F]]B\Z\`TQRRR\'R\"Mn\y{\\\\r1R\\ \`Ӎ\+\1Ǎ2\.Z@)`\\ƒ`9Xf\)\1K3F\\@pX9l\w\\Y\,޶\FazۃJ\c\J\\\'\\'\'i&9VX`\nɒ\[rj;XrBK-+oK>\U\ ܟAVhUEqwt C5;\]39\Ģmtl\rK\9nT͸\R\/^l4\r\*]ݧtPI\\\G\\l=A\>kdGP͑\}\0iJ\K)\nK\ߊqc \\S\\\::\;\\CcᾸ\}(\n\\3\'\7dOlys`i-ل%\[r{\\n\\\ U\\\\O\v^\TE]]Q\S\MrȿD`!g<`T$X,_!\RKAo\o)Mxwٿ72ti\\~\\¹}\\;\\룩5 Lk\n\\\Zy\\\N\\pI\v<}\\Z \]5i\eƌ\(3\\oXqIϞ=\Xό[ V\ϔ\?C4\B\\ \R\\ne\-\m7[JsD\Z\Ւ\\ <,c\Ϩwͣ\Ew\\ \\\\\0k\\91\_.TV@d>\q\\,\gɣZa\\"\m\\d\ģ} \\}% PR>?l^K\\\~QXqh\b\祋d!\$ئXr\ ><%pܘ&q#רmحnǻ͙\%@I\{\q a\\l?/QT-V|\\\\" .\0.5jdA\nL1\m\;\N:\MmM\r*-O\\\\nM\\\\DA\\Mw**~]aXB5}JpQK\Ba,y\nKx\HSHВc8\1hۗ\\\w\\\\gm؂aZZ:Ή*)\V\*^E`\\nw\<Β[\\\Hm\\0\hG|G7n|!\nT{.|\g?R]} S\'\*;\3\\0[AE*¥F\>\l\\6\Zk\h\ߒ}tU\\\\\'S\\*\.KK`hSN\\ \'\_\^\ PEE\\#j\\n)!,Y\q㸶7r+BuTѶ/\KssD\r\nv\\\}\n\\{\\\:Z2\vf\\\\J\A\nڝhd\\\^P uue\$`\; \\ jff\7P]]\r>\/\\NA\i-\\%s-\sZ\ۊxܘ4D\\e=j_2ߵ\'PRu\\XM\7%%{<77\}II TUU\mY\\N\YX\ܗҤȾr\Ӧ\9;@\"\df\/H؅\D\\͛srr\Z\#\A\\Pq\~\\7͢\V\޶\\Q)Q{tp\jw˸q/A\\M<9\饭e0\:ŕT\\\\\\\b\0ʻ\.ff\Ր?鿧d\\n\\\\\rG򮢠\c%\\\rc\\ +T\\&\qiRR\ջw\ʻ@\\\\ZfA\\\\`\)Dhɹ\"\\\O7\\\Nb߈ PRjk뷚=\v\ر\<\\y***W_~\;w\0\](..\\Ĵ_\2-{\6XJ\\\Z\n\\[%u\\͇g͢\Z\\|\"\rD`\\\\\'\۷(\Bvv6yYs⿚-\B[{\\\\Z\GHW(DED3m\\\\\j~\ҥ$\\cau\ P\w1pT57D=٤%v\Fl\X\{}\Z5d&\'WXhߋ|n#!\-J\n\0*iiiZ\"\\\\UVT4f&mo\̒۠\7\/\z\`m\*\\ q\\\xΩS\"CC\6\r\\\\C\VC%UXX\eb{nʻee\r!_ToPqc\p\B:\&<LJ:Tee\\JJJ AAOss{KT,T\kט0y/).j(\\Ahޖ\k\_\]oh)\@9\5\xھ\\"Jm899*fHOO%*.,h(\\\\}E7n`)M\\\N\Ϝ\E9f!D\nGjbb\"\\ի@ͻE\EgwZק=z[\a\\t@mmŶ}*\jBQA%njfBBE/y7\'\'\s\OZܺq#\6v|L:\\\0\g-3b\uIIIp\\\r\ќ}\\wkztܘ5Cf>\=\\"\씔T젒!\lLL Y3P\n\\;\ŧ6X(z\7\Chx޳\eG*PI\2\q!::p\\?\Qd\\\\W\\\q\93\t@wL\!ڗ!c+\\WC\W\\=/a\w3n\X\S\6c\WCoC÷5ee}\PI\2\\\pj\\LKy_쿺bEw\\4_\\m\N.^|\Qv8Թ2x\.n\@h2R/>YMoG\\=rej_:\rTRx۠x<\ \nFJ\\\˙v\آ\Ҍn9\!1\EGk_:TR\\\\\|mP\~w~d7\\\\\\\fCZ{~\\\{(b/^$\.q^|%J\õꠝ\Ky\`\ \dl\\w]\ee7\F.>\Z\Z\<<\-[ޥ,+.\9s\,@\\aÈ9\\\\\œ(d\̳g\gޥ*-\\\U?\p407B \魅#\ܹs\3g\`\ADd\}،\\t>\\'s\? 6,\\\<<\Z\\׵IJ\Zo\\\@m\K\{\\\GZ\\\܈\\h\?o\|P=O\޳e\z\\ᗄZ\\/\\cIW5\xe\i.bwRp6\0\RD@\:SИcY`[ y-^\Y){̈́V\<\ n062C{OF\n?O\9\\\\m*· \Pc\\a 8L@\ )C\ \4\\Z\.\-B!;\\۵\\'%e\{\\p\ȥ&[V5\XU\%.n4\PS@J_\\kU\/J\\_?\ \jԶB뜣q\z\\.\Rj\r3( \?ǘlH\\0a(?\n\\FutK烚[ZU`3\7p\J9\(>!?z1 \"]כ \P\\\\n\oUb\r5\\| Au\A]ŀ6>\3>g;z\.ź\\\db!\\\M\\\Zj!G\z\ 7+\DoP\uP\i\[Qnr\ڵ\\t\,p\\\~a\\'\r*\n>7~\":肻{ZIff\\6\ۛ; T{y堏 3\7wn\\~ t\V.-mSՕ*U\\0`$\\ϛWwo\3h$\{\\5jLv@E<& \r\Z`\6\mk;\\\HXG\P\\DU_%P\\1dH\9jg\`\\r5 \_ \uC\\_TTTr)\n2mY \\\\\X\qE\'2j\͞=\\\2\UE)jwkjB;\c3T\B\HL@;\pK^F\ \S6E-\>Z<.]\IO\ihW\W)jk?C%si\{C x\r>ff/о7\ѣ\n\\`RBCK\Zѧ\\\]\\\\\-\!ssȌ UH99o9\\\\9\\YGо\z!ar˵<\D3\:ѽ&ucN.ZE4\\\<_^I $V\\ĉl 9>CZ\EZ[\R-We\\3\3PM\ʽNNPU\\*KP\qq\+N\̙׬\\r-\ϒqǟK\;\?\\0\0\55ԝ\k<~\\0\ΞSȽv\\K \EY\q;f\C={\\\"\\SE!n7\0o`?[\}\ԍi\0yu\@8\\\\.\r\rZX\&&oO,Y{\R \\ആ\%vB\\e^\X\`\,\'slx1\\T\Ѣ\]\JGO+W:T/$ m\\Zk4y\;hPCU\\\`\\\\0V”\m\0Wl6Xy\\]ج\̊P\\z\Ԇ& =ytSUV\\`h\>ku\v=JdJ\sTn-\8#-\u\?r$\\q:DBM \\z\\0Ï:66piO\axxq*\*mFp0%\Z~y\\Ϗ-]\Zm;i\h\\S\,*\ \\~\\`\[Km\讥q^^\\/ ֮=\\|󤗑\c\vE\\\jmQ\t8q.Z9}ģgWrѼ\\o\Zjիy3\\ߓ\fϛWyp\2| U\#@x/^\\3n\;\\ɐ}PPK32 \͍`\\Ӧytٲ֣+z\\^; T~L\\\ahXϙ\~[ *\\hV\\CnN\R\ZnG\}\\fYQGlPwq@\&\\E\\kJg\8z\\$w\\n]wd\ʝjjj\*^G\kko}\NKT\8\08֗w\ڵ7\? =T:H.p0@,mmmy. ;|TvZtL(\\AvZ4dgVA\hrM-\0\0\0\0IENDB`'),(32,1,'House_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\rK\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATHǍ\mL[U\\ޖKߡ:\n†\\ȈH\DP\d\6#a8FLfu:XD\M 24YJ4\%@͊: 8Nj\(\e+-\-}\\R@ {ܓsr~\N\AH\3yp!_9\5\ \'HRV\\wmA\/Y \\\J\oG!I\\>\ p\\$\(^F-9IwzJb\nn\#\\ \Ĩ#\\ɛ\\rqY]\Xwt\\mf\ɕvza<:\\NT\|\ \g\\\\y\ĩEE\+KK\\쮹\)f95\1o>D\\\\M>`\q\F\̘ј\\\\"\#W,5\p.9[Q\8V\\\R\\\ЀFD\\\q\\I\d\Y9Hss\\"2\\wFX\r\\@fM\"T\Z&\&\\=J\JO\%%%Š\\\Q<\0~60\\<\\" \tQj09\|cc8(BѾ<1\dY\\\E`\\mpZ,4w\K\blJō\\&>^+Vk\,Y6\\^\JHXMq\\G\\\mtdg%\ر͐ia\Z9x\\Z:԰03\\^`6\Wל\Y\ukM\']\\[â\'ҁ\\{྾>D\"Y8՞\ޣ@ J\\8Z;\0MԤ\]Ex<\3N_8\VXZXyrz56ܻuR\r\\d\m`&ye\'y+C/NHP?Oa\v^}n\V*\Ԕ\Ak\˟ì\\,Q|n\\/!ݠU*\ZZ\f}}ՖZ^_V\6\nL)(\=\O`\\\u\\N\"_\\ioRV\)\\Q8\<+72\)-\FZsCq\::HѨgEG707w\\V\6^\x.1\\'\'%\5\Z!*)\BS\\\2\0-\\GR\\\\n\i\ERXt~\0\0\0\0IENDB`'),(33,1,'House_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0,\0\0\00\0\0\0j\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\n\IDATh\řw\\S\\Z\3H \Q .\"\RpjA-\㊣΋VTN\\nZ\r(HP! S\nƀjTAE\\\=\\ <\Crr\7\}774\0uz~q\\N\w|llH$\nbbb~JII\P庸:xmfTz\nt\r\"5\r!Τ٢\ѩ\n?\\w\?B/\\\A\Z pH#p=6\Z5\Ӡ\՞IMP\:gA)\Z\rő4Ԩ&ͪ2\\l\X&j 6Rjp}\)ilH\$)54e&(mԔDE\\![\\Y2DA3\Zq\t \͂43\Z#p>7MjנI\\0JS\nhʫdS6\\`~\7\r f\\۷{G[|R25iɆ\,H˂|7U#IM\?k\ؔ\hr;dѫ\0=V\sNZZZ\ڃn>kh\\\lѝIl\\r\p\;!} 7WMjbYh\"\\"A\n[xO\j7>9|\\mmmͶ=k:\LQ;6lm\'\"\\\d\X\64LѤ&\\\u\/֮75}OBc=ttti)\\!v\(mi߶B\8m&\5ilJ\\Ě\7\\w\0>>o?y\韨г\F\n,u\,\!/z:\\\"p\\p\"\4ݚ&L%M\7\ \\촴\&&\o \Z&\jXpoH5p\B\8m{8N{\nA+&Ԧl\\Ƭ\i85Zgf\\n\X\n\h``\\rթд+ن\q.v\@\\"\[8J\n\`pu\IM*kI\d EeMx*\\' 5Ma\\LJ\ \\NCF\\$\@ \/E\\\\G\Nݪ&6MW\\E+|M)\푵k+[%+=!\= \t3gMNZii\\eҼ?ؖ\"\e(^cp\r\mI)[Є:SG^l\\\hiٳg\0\\\Fh#\k1pbbb\\\̽2\MYAfQ\>%\\TM(\lC40Ra\ \:K8*\z_-qw\db2 $@ H\\n\'GzL|5)^JII=E\\F\acz\*\\\\\ ,Y\\\/XX\\icS\\\@rrrmvvv}f\\dt\w\4Y@\dN뚤[kV/\\\\JX\\>\\-\:n@3\G.\6\\\\\"]\颋ckpSbMdh\$\G\Z\\ja\\?+*\W\\\/\i\\:\\͛\W+[o&g\' T\`l\&Ъ\R|>q\h ,Ԕ\\\\\ZX,O\r@hAB\\rIoO;¾\Z0Yw\ޕ\$%%\ŗ*~$5)\y\n«°[\'Mz]LD\"\r\rA˯_\m6;b9a&&\J\N..\\\\\PQ^\최s\\\ \\\bbE/Vዀ\bؾ\x,X b\ij>?2**\UYYه=ia\ /-k}OƵ\\\\5PTP\\\'O@z\Ώ\\1\& \\xMdBv-\\D\\}<a\ֳpn\R_:ֵ\'=ע\\\\nn\\\\\'\8\x\\'&\C\@ؿ\N\\\3r\\ry\(\\% \\67;\\\ښ{r=ÆA\uP,\r\\\\A\ƍ\\\Nmm8hn^x\sz\\\Oi~\\^M5\/~\\\\}}\\\r\\`\\]t\"v\ff$\\Cɉ+\Ѩ\+t.05mʠAzuq\8liY\7y2|\˫\wx{\gg\kc\\j\5`j\X===\\ܢoT\\\˱-[&ZVO\~K\r\5\\M\pz>nn\]\\\\\\^cM\'\*Hj\Ŏk~\0\0\0\0IENDB`'),(34,1,'House_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0;\0\0\0@\0\0\0\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATh\\TW\B\\`(\\2\"\nJ\nZAPVAP!8P[FEU=QZQQ\\$oxI\0 \\\\\xO.\0(˒\\\\\\ \;Xrr2Y111tQ]Q\"y\\\b\WFA4*I\q4x\Ze\9/.zd\'\\GDDt\F&%%eҿD yxI\X1H 4\\\0\ NR .KPjcM1\h\\n`ȸօ\\L\\\=w.\~``  yq\ǻϝp(6<\\\b\R(\\ b?\Q!Y\nI㨐\ |E#4\ Zu6Ӄٵ\\\\nOݯ\\ruP\u1{\?Gyy\4%jhR&\ϲ=Q\p\m`{b\(\\\\m_\m\Wt\\p\\\\\ \\\rxo\ 5{8\\U4E*hV: EΊ6ĊR\f/ua\fC\jX\\\;k\\fN6E\'c8!\n+q\9]&G{hc0\\Q!dx.҂҈p1>\/\bw\\\\fkЌ>ueNkSQMIJI]\\ю#\\2\ \nV \Eލ6\<]+G֙Ilu\Zd}H\e\rhO$E[\'ڣD[;\nr\\Be\6\\E\>CP\p\r;6O-q/\c\Z¤B\2.#8=MD;h_!-\7\1t8\\|U\*`\V\]\zP2@O\V, \ӑ\\m\Z\ &\|,$\cE\\'ڸ\"\\opeeeYi,\|\nH~hΖ] ȟ\3\h\¢}h\'\\h\7\r-L&\ҊRRRR8q\( )Ԉ~\S:H@\\'Шˀ\F,(ړx@,OGힽT1({M\8V,X\ϧ\d.B\\"}R\~, ڡ\\1p֯dV<\n\'\\!ao.\Z@zB\.\v\"$ڜmg\86 t20x\ FX偂bI2\\[K$\\gpc]6\\ҹ\\h\6\2hsLv \]\ͅΜw[kkڵ,++4y\dov\(\\\+L%sIMP-栉.\"ړyM\vx\093o\SS:::\ѣG\ke\ayyy\ӧK\n\ZHUIݯZ)U_JB \\h\m=h\\¢\Q*\\rd\1w\gJ li\'/MX8k1\%C\\\\YH\Ԯ\Zs)^++`w|)=\NU\\\\|M -X\ \\X\C\13{No`0\\,-\'\\(\`#So-uk\1\ qW,,\\z]\홽\\]\\\~\9\wjkly\ %V\\ፇ/Ě\/6\JC\W\JCmA\\Jv+\\gBͳ6\F\7ڧ\ej\|\\ AP2\\\/QK+\"\ 8Jjv\_KB m]Ѩ˃\\h\F{voq\HXd w\og\?(\\\)\rO?~,y\A\lk(m\\\\\\\\+ښ\e&\;\r!ڿh\\\T\\Μ9>@P2x\ed\Lf*\"\\\\ֶ޻w\Vvdi3Mty\.\/ڨ\\\\\׉\\YP\j0P\"\v>\L慽划#UTT\ZYY\Ν;\V{\\#ѶfG)\\ym\"$چ\N\]I3>(Q<&&\\Du3\\\\G{߸q\iSST\_}T\ch|qEP};SݦC=-k\'wg\N\H.##3\\\pnvvv{qqqw}}=\\\LzR\3\/\h\Ѷ\\yMZˌ\gNm\\WG\\\\=\BIc5\\\VQQQ\vkk+ \낂7\\\P\\ӿo]do\D\\'r7\\\\D\\\\\ldd\~+\K!1!A0\rp\qߝSc:\<\r^\h7KQ Kב`ė\\h(v\\\'\>itD\\\\\=bjii4uA\\Z\n/k\s\?\A#x\.,\Z};cX!##\յk\z\\ \\]}ݻ\\v\nw\\\\J\AQb\ KS\mWZZZOaa!\ŝ\lةJ`Q>WJ!9Pcjll4!7\\\3y]e!\榭\Y[1\\\a\.,ȉ:\ٰ}\\F\2\\?{\nW\\\\\a;:t\\K\cχt\n^ڸ{\= hdG\ $<\B`\tp\W%ЌffA\\\\~Ќl Ț\H To#(8Jq+G OHi}CaoP&X[Vn\hF6\\N\\?o%y@cE\MPN\\k|\]\\,Vm-6\\8wÞ\s\x\j8x(\Z\--6r$\6\[Qz\XY22\HCP\\N9g\f?p_n%Rlv/ĸ\\[NF{z\\}B\" >\\\\vh\\\Y\Y|\ottdWBB\\\\\!\f\$Z\\0\ \\бrrrA\)++k\Հ6 \'o\k )6\o)6\\QgU c l\аl%%%7o\\%\n\sᨍ\rl5Kب@\x.bB\F\!c\\G~J\]]۫\\%*\'&\\\Y\>$,,.//?:\ܼ\KY\o\M\n,Q\ \\CU4\\6x\\w\TH\\V!]Hh\±o\~\'[\1?y瀩8\\uu\\\\.ih9\E3\\\0T\o\\\\B\}O\\'\\e|8c˪U\\\**hl % \\>o,+$__8\'¡Y^M0a\"`_,\^[gt\#b?ZZB!\\z\k\\\\G=\'\\\7mr\=E#˃\\\\x\\&\Ѐ \xx*(ުp\\\Aƍ+X\8G\r&7\h,|xbݺ+~\\={MDhmi\!+\r\ 詨 <wpu]R\8ǃhr\n\/\\,\ ]\Zw\O|\'b3\"@1.3+\\6o\x\\>N \\\AcE\}66\AK<\p!%%\r\Z?m/[[أ\\g0ބYS\\fy\y\EbEC\n\>ȓ\\P]X(\\\\\r\2X\[\a\iSN˙p\\ M\ў9阍M\n\8Q..ЎyyyO\\4Bz \\ga\.^<\dHM1,o\Dmp\\u\,l\m/\\0\:bh\ [\LwKKKLG+(\\k\\%xz>\\C\[YU췳ۀo>\6Ԙ,oeee\\x\ƦGG_O\\tXÎ卶\pD\\\\K,NSfDU\su\0\0\0\0IENDB`'),(35,1,'House_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0X\0\0\0`\0\0\0\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0NIDATx\\Xg׆W:\3D$EEcD, EP\hi\Z[Ҥ HU\%t\"\%ƒ\0{\v`ٝv\\{]\\\\\\3\9\\h\0@\OEIDIJ\D[f1i7(i$A)1\Ym=7\\\V7\\q\ڵ2\\-\\N111j1\\ \Ap\1\\KHz\\\?< F@!88\\\\\ n\\n[lm۶ ((\\ß\"\\ \65\?\\y\\ t`\\L\7H71ZV(m-rDWuZgcدḇӽȰkaaa-\'O$@{yyc\ \0.?\\Z\vlDq\23\\\nB<x24\"\rq\E v\\V\\\\\\mnHq\Z\\Z\hr\\\\\\Nfz@h|l2Y\~\\ݔ\\K\#?+\\g\W\ҫnP~\ʯy\rh\a7GT A\\"7Dt\\0\\M\\"\\цTvd\m\\f}P~*ü\\X\vX *4\$Y\\9\ZiT+\x yx;h\"6t(\\\'b\"Di&B+F7!I\\댣bd\vs\P s\DzPw\\\CL\rJ\Z#\Z$/\nr\" ĄLM\\g݋\r \Z\3 GA>\a\\\\\rr z\*ƊPup*VeV\m\o+\R[\n@#\HL;\x26s\rnEP\\21enjಲ5qTؙ\9K\D\^BА=2\\t\\\\"wƉ\m%b+d\\$h~\6H\Ica\\/\b\/D\Zq&Fƀsp\\\*\\ʢpg<<2\\ؐግ826vE56d\"&\nƍ|_p̦-w 4\r¹\)j\)b\\N\\0& b\0]}Sk丮A =\bqpRXc!C&\L5\\m\\!\\,AF1\3H[m ]\<`L-ڰt-4M1H\rh y\"\'hA\p 1=k\ހ\0{mFa\ {\ \\Ib k@Vc\\\\"@B\TE둻Cd7A\\%\B\\\rVQQ\\\GE\r\\R< 2\Z\L\\\߱A\;s@s\oMQR>|cƌFp\ \ޟ\"\{8\\C\E1hx7;-6<{9rw(\in**o45\[M\tuy rrr=~B\\FYS\mL\p\n \\<\ξ221\\Rtz\1ZF\Z=r\\\ 2\\J.\6hΚ.Y\d4I\\\c\\mAU4r_\"]\\n\V:=GENNCfur\6\͙)\>gd\" \\\!\\}|\äD\87tSJ\\Z\Z9\\\'!\z\\nhRxc\, \5\0\Z\d67\\\\Zt\ؠr3Gn\0m44\Z@\\q!##3\\\\@\֋JІHV\ϑ\H\2 &6\;\\fM\_AVWP\\\\.z\<4IΓL/J\n\JBfw3 \\$h.E\0N#78\\ O\ٽ\rڹ\/.芊\\p&dQ^!w\\JJB\\H\d4\\澈\r>\α\Eޣ\Ɔ\_ണ#7\&\ʪa\JJJRB\\IPHB\|$4I\3;)\\bK\\\\h^K,?\%\go\'\\\\\&\"C\\\ dPLҶd,!Ȭ\\ܛ\\\\9TN \N}`Kꄭ-7\\\02~\\nCk&|Ts\2x)3 \ZA.fu3 \D( m\Il\q\r>\\򢿻h\\X-\\R\\\|\>f\a\0d\ \"Qe1X|\r3)([!ˑH\LȽ靽\'*f\\/z1t\Ȇ\r\ /c\Q\\\Ew w\BJ bTK\re$h\\$h\Nbb\\66.)倫\Ȍ+[Y.#3\\\?\\H\\\lX\Z\ʪ5\PZ\nh\I\r{}\;\/Q\\\mw\bz\\n^M \rtYu\^wM\J:\R\Z\I\rL\\n\\rnEд2\ؠ*\\\'p@q62z\\pY!{Z\2NU\l݂\uk6J>\HV2]\\n\\n\wP\hɴ.)i\.+\+V\ɩ\\\\\Fj\#i\\M\PQ\Zn@bjws\\0\r\V\TEp^+侌X\n9\gO\AF\w_\.NN$\\;\\iy\ \96V\5\\n\,6\Xcci\'\ޙb\N\KS\\\\)wgѢ7Tӓ\\\G\\\\w\IY\\\F Ьn\di\\"h\\fA\\Q-\'\se\jjJ \NS\\U\!.ܪǨ7lhh`0\g<\U\k\\}侮3%k\MN\vKƋ\Zdy\~\\T.\޽{s\\\\\ʠ\\\\%\JyL}M\\\*\F\d\;45\\'z\\]_%\\&&\IKp \Z\\\rrrJJJ={ƨ\\]\=-;O{gT\\OR\X\u11yc/_d8ϙ\\r,ܱgC\ljj*n񰸸p|0\nov\ء\\\\z9A[\ڊd\ \W_\ظ0Q\k\\\\o*,,ӏ=b\\'\\o\.Ϳ\\g\\\ȝ<}p5UKv\\\^d\\Assc\۱\ؼy\2233\\\\Q|0\\\\Nz b#\H򍛶\ZNJ\\r\\~\r\\ڎ\s\\\M\P\, \Z\\\\ZPNWVV2\c\pz3/soG\\u8r\\\7\\\;\\,/v\޽\'2,\\\\Z\+W \"\"\5\69\7\\T\\\\"x\\;ρô\\5>֓\mcccKLL\_yyy|\0\J 3\+ۧBp>\\#\X8\\\wk\B>j\x\\\\ׯ\\.((\ \/8\&$A؞p\u*0\#s]p4n\\"\'\\\\\\'\@2\؞\0.,,|\S\ =\\n\\]B\\\8\x\;\0\\\ѿ\\o\\\l\\ӥ.8 9\nG\r\#\up\L6\R\0\0gx\\\ \8Ys\\%سt-מ\˶\\ \sft\apaQٰ\\G^j\d\{\rs3p\H+~\r 9{\\"p12\K\Q$p5ऀ\\6[A\c\TF@\Zi W\n\;\S}\Tp]h! ; |\n鬰N ?\\-!*\"3\\ҍRp_A@᪓^t\A\#\"\\Qy|\\\n\q!{Y\ p \\[\n\&\ιs܍\\\p\'2|V[BJFE[&{[\ \\`W8k;[\n\\dee\mll\u\r9\zz\h $D\i\d\8>x7l\\\8\"\ӗ\=rrr[\^,.NNਥ\'l\\vr1q \3\pr=S\\1?\0|:j\(e{{{\&xZX6L3\3\\:\N\\߮Ϛ5K \\6\\\\I]]\0‹alCv\\Cyn\fQuu\s\\\Z\k,\Z\Y!ょo\}q\ƍ\\4a\ |\.xTY`o\\kjj!N\q\b\R\9`6\'\[D\ \r\r׭K\?n>I\O?\\\ ]܈~x\ÓDLZo{dw \׹\\|l\T\ \roU\B\{\\<\\L\Z\x\K\\ƍ~Ӧm\g\x!c,ZEw\h\\\0\S\EGÕ-[KE\sf\Z\#v/Փ*6p+:?\1pÆ 45B\\}\\\n <`|3c1z\뎎pP]T,OF\\\\\\ngv\\3`v7\\"c_\Z_}ha\1v,\\ j\>kct@.\Ȁ(77\\\်o\ܲ>y\\EFF\\eܞz\3`\n7\\"/½V-<` \\\:w\)ç,ߙNÓ\P\Z~8km}s!>O\\\\\\\\\u\\oذ\\\\xb\LȎ*>+U\\\૧C \\I\W\^Ɗ݊\|\FI\kT/\\\\na\\Z\Z-\A13\L\]\'Q\@^eBr\\&vce\ [TP{`:~\~|93G7`\\\"<\\+/!\\PSR\/cw\)\p\\\0ܙ?\\}\k4L\@?\?\O\0}&TQ^\ `n18\\ׯڪ2\x{\\G\\ xp\*\\X\o,GΘ\\\\ۖ-_u\\+A>?/-r\\\\\\\}\\$O\U\s\z\r\\K\E9j\7\n*z/\"W\\\S,\"@`\\!T?~eUUy\LL />\'W-JJkp\TPq,_^\n\'\Uߣ\s\D\c\u&&FW9H9f\ree\p\KYz:DϤIP\\555\0\rA&Ӧi\` 5`\\\'\\\aaasr\\\X%.**z[ \\SB%s5\\*\n\\98*X}~\ [l`W\\\ǭN\\a͟\\o&nP})p\\ի\}R `nsQAAAn\\5k\33c[r\\A\n.Xx/ ր\-60(YYYE\-[\\ƾIJLC\\\\\\}}\\\l}/`\rH\bcĈC\\\1g<<6nf\2cc\\\p2ŭB\r\\h|cH\L\\j*6%D xʪ\\\\S\0\0\0\0IENDB`'),(36,1,'Hub_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0P\0\0\0\\0}\\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0)kIDATx\\} x[\\}%ٖ\}x\\@X IaBt(Ӗv\< ô@ig:\t)tZ\O)tJ)-$!!؉\ݖe˶dkߥ|\Kdy\0 Dy\H\\=\\\\^8+O\w\\{K+#ي\n\W\1d\y\\\=k5Z\8\0P؋\z#\,+Y\\ \0W_\Dw\\t12\ʘ|B\\\Z`\Xbey\\+!L\\<\\\ \\y= 6\ \d\C\O\0Ӎu_\g/h\\0\0,\c%n\N\o\D\\'Y@8\\0\ݓXR8\\kV\0\{-cY\\\?\,\\,<,0\󙠰{dz\v_Т\}s\:\\0|DͮC\!X\\u^y\A,0_\\`0D\\Z\dvI$ JS)E%&a8\\\¡\Sgvܸ\w\0\\\rI!.\C\\'\\\A-\\o\P︛\.r)+NJ\JA\\Ѐ\GAW(S%4K\Ҁ=\w^\\\0\\ć\\\#0W!@w\u/\SY\\}\O#v궸&L\\\H+\᥮17KB2TJWO<29\c\\$D\(\\n\\u\uۺ\0`@ P\4 .) Q`\dPcNA\r\yd\0d\H &\\H( z\ȃ\:\0\OcX\\\'O0lW y\S\\W\0#qפ+ \\\c ~\{ Qq,./\B|\1lއ\\xNNrټ\4;!^\90dljH&\Ѡ\O=6/\ ϧ4Rd|\nÁ[g?\ݯ>g\\n\0\?txކ\\x\̅x\xtVǪ.A1\@\S\\Tdh\M-CV\Rv\n,\lju-$F!\r9j nx1a\Z50Y*\\BaAWB d\\xB\i\\g~\\O\"\0x\<\\x\\\T\\ H轾\L\$\0 ۋS k\F`\0HH+\*\KT\\\\~%╔\'!\'mԉ\0{8\\`C7\0av(^&l>\r\0{\\b\#X\ \\\n|\}}\\\\ɠ߂:zi\0\KK ~0\\q:\3B1;eb*O\8\n` ?\SPg#\i\ZI\n1h,1\A0Ϙ@JyZ\\\&\xȅ\3@\i\$a@)\\L?D\r0O\;\gR5OEI\ f\oo8\n\{\\ԅV\\8s}\OoNu\\42\\:\\to\\q\ÔL\QZϼt\AxbL$_pB6d(\E&>\~;\\\c0\/\\&(7AA\j\,q\'q\aBD%` d<\FӰk \\\n2\b2(-\0\\0\B\rx@+$\!\B\\\\;[\a\#\(Ü\rΒ*~\\\W\\%g~w?\V*\n\r6\ /3CtP\Qq\7m\L\VIkr\\j9^\0bᲲ0)2\2\\APIA\Z*\\\"\8C=\\G\r\0B5\ v/\),IT\U{\0`YE\"^B 0}\"Z \\0&>\ FT z G- >!\n\"L \)\r \J\#2\Ï}\ \0\\<Ϻvݙ[vܸ\\ \nݼ9ِ\\\\\6\e\r\\ t\@C62H+Ru./Ҵ\n2ޏv\Z9\\'\:0\\d4\\\\Zqx(f\Z\$\\Sa\Zx\(DW@b>g| \>[@\3\rJȳCj`\Bi\X\>\SVDqb\,6 C\F 2\' s`0@\!@E\\\n\$J(K\\SK0Ss8A\\\\\\\0\\=\A\<>Ţ\\\T,_$\0,\"#6\'\\\F\k\ux2=?\1@[Qƹ\Iu)b1 mFꁱ\)$&\'ʑ\\\_\m\"\x\\(i\\}\\4h\i%0\n& !\tp\H\\\&/\̨W\ \\o=8\\{\Z\0|\p\j\O\wgB^s\Q:{\u\0?\8m\\ &38щ\A:0l\I\\0D^C\6\a>3\ʑ\s\Q2Z\8kԊlPMV<_ \rTcܱ1(KQq\`r_z%\0\0P\Z\\'\\ rU@Ð |JLV>6B\;\}`\n\94\@G@\ }\@\Ѕ\!%Äڜ<\Z \(Elߍz\5\ߋ8g\7|\\0\?|g\08Ð^v֑\\R)I\ \\Z@{\@\0xk@\%\ 4\?&`\EWe%\$Za\r\Z\k`k B\g\\0t\\\\Dd_h\3cW2`~\0bІ\%HUSY\nS`VH\n\J^\ӃvdPA\e&\Z (U\HY\\,\ Տx\?$PI\`N{\0\XPţ y>\"L-0!\I/Q[D_\Ǻ6z(\j ӸK:\\0*\E0\nSQă\tce\\QC\\n\\Zf\\0\Y\NI0\\0\0vGVkҙIT~h\Zvpc\n\i*\G\Qq?O+\dIa(πG\$\2IP3&\\}/Q/x\nT\P>\"&qmV\^\rӈjgD\/24SP\'\\drxU`88kOA\\0|;6^pj\I]\0T@JU\|tf\ QF\0O \\ZM͖\0\5\g9\ID(\\\ \0\0\\\00y \oe,/7Gr\r\6p}\j\\iSaibjM}\hE\\ZB(\\\A \\u1/h\\0:\>D3!\r9%2\I:\0k4d9Z#=\Zqy\I0u0F\&UE\R4Huj5\\ \᧓\F\\PL\,~j\q%i) S\c\\G\?\xO~\3\0.طo?,$\00w}P\\\\CT*3G\.|\0\=\n48\0\"U-F\0\p\|1\z\0eI:3Z0\\8\ \0\,\_@i̇<|t\\$\K\(\P \0 ^\rm\r+\\R9?p\U,\\\(4/\0\\\\\\bpö\\0LF\\\H\ݲk\R\f)F`t\\x\0Fo\\\\\n/\O\\p\C\ɫ̈\` \\r \T V\\s_\=0\Zؐ#X@\{-t\\U\R\\\4\)1Z\rY`=V1ظq%\i\\,r z_qg=315ܘo?\\/\\0 >\&F\\v\\\b\|~0x\\]\kV\\U\\\0\2xF\\5:[\\M:ʁʭ\\\\Tx!\kQ \r )^\t\ \\>T\0\ZHFU@G{\tL\ZZǵ\$s\nU\Z\@\\Yiāh}b֍\耝,\ \=\K xX!\\RUuQ!Jn\\0\|~~~0..N*\nU~_m\-\s`Ȅ\\4BAhZE\\+H\ )\yܞ7\\\'LMM.\\:8H;<z\d\'W\RB;\e6\\&ҖT\ y 9\cX~L\\o\\qtN \̠J\p \n\Q<\n\]0\\(W#u\n7X\\\\ͱ\\\n\ZsyhUV\"m/Ox\0M,cC?\49n(N\f52@i\:]K\\ \@C\06QdsV\\FX\\=&O\\\ikq>eA\\0s\0I@iiP$ɱa-\雷\\CR\m;}VW`=п0\x0 TQ6\0\k@\ \F࣫@\0d\Z\{n\$\-GcͶ=\60PMV\\\II*)\^jQ>v\0Y\Z9\\\\1;Q\\\ɤA\\nDŽIܘM9:O^\}J/Q}?99)\1e24w\O]\\\\0\J@\39\\G8zWFN\>H,ؿ\\)&GHn\Kn\\0\\\WTGN޺Z\4\0\\+]@J/Av\s\G\\=ܨ <{e7\\\̓c\\(U-CY8Jo+\j060\nbYz=\E._,ud\\\A\n<2P\\*\\\n^\\vK\P->JP(+WWU\\"37\Z-u;HF-J+\\\\\\/l\+ i\\jڰ~=I\n \r4Yy̌t\\ \1\\\\n.a%슢WOw\\>3ige:\\ܬ7ް\ OG7艗<Y\\-^o\qA\\d#a \\r\f\vx\XO\0re\\:\\zx\ڞC7^e\Z\0\\ͪj3mfxY>ab-\Qw\ʕbJ)]\\X\U\\=D\;\(^!]:CG熬\0D/\9i\\\)K+[\ \ \`0~4==]+\nD\\!\"|T\g\0\7\0\"\`6+1dՁ\x\c\\eU\\nV\!\\#\~\k#f &\c\\O$j!/7L\\\TYaA\0L\M\oeeL%\u\l@Lb精^>\\]K\'\TYs\\u\nR<\腀-8\0ʘFYwA\\xr\\\0Y\09=+;\:H$\\\\JR\RaҒm;F\0i\fܶfE\\ |i\\\gmg\\\\Âx\Ä\Q%\mXGm\\\Jy8!!Ar>g~6e`\\\\Y\|\;q>}ZY\iYw\ɩE\m/QT{0#\\\\Q*\1\n j\N4\ \f|\ &ɛ\\\E1uŢF#\ oFq\\3\8|~_\ڗ.*\hQ ,\\=\U\\/ YL\05\V\)\\~k\\CEA2 I\4\\0\'/<4h\d\\JdR bep\BaHG$s\ZA\ěѴ~ԺD\r\\]51g\'^ҥaɂ@ HݴuwQq\D,4\\\\D6;%8`>\\KZMҢ\?4\F78n\\\$\9Y\\r\qZ(*Ѵs\n@X}\߫ ,\0\\F@\js7^\\\\u>ƈ\\'\ȋ\mP\5\QN307\0f-PJJdщ\d\t\\\"܏(\2ޏ\\-7oF/\~\0\/nh\W\\' l<\1Y(\\vÖ{t \\\\sT\\PHJ|A\\m\\H\"SJ\\ =J\\P\|3E=C\XD}>O\ny\IR\;!6?\\\?ގ\\\\+ ?\\rr`)a\\*wC.\s -@}\\s/Pvf&i\[w\\\\vww{{FQyw\l{\&ZK$T\)\"\SK\\\\\\Ne\goϚ\f\\\_\}\\\'\\\\fc LT*U\\\\p{aa\fP(m\~C?\\{+\n\\\\\\\.g\\o\!\d\ \\ et\\Jt\"tzV\B~]3::\\\\\\\\\jll \\\* 8\n&Rn~~\\ۮ;%5(\o0 \SOˬ\ڻk\ٵs&9\ĕC&\ظԚ8\ŔX@v-\p\\ZX<:\\Z%\\\6k{\\c?o<[<\\\bsecE\~T\\-\r\bNNҺڍ[j7nUV\/\\0>s>4Mr;)yt\\Ϡ.\{aJ%\b\\G\\󆆌^V7\4\\0%\cin:\\C\} Ȳ+A? `pI}! IIIlL$&eAJ+**\w6\0\܃~\c\8*7&\\]N\f\|*f5O!zr\_\#Ȥ\0\h\0!0W[$%R\ h ,\CA_OOϛ\y%\=e\\'\\\VUU2CM\\,Q}\\w\\\U\\㦟\WTX\K\z;\?`]DCB\"QV\?L+\\lVk- U(3!\\\)T*\\c\l\i\\\h4G;^|Տ?8\\o9,`e&Ŕ,\}rM\\\n߾5qJt\\\\C\\|ɤ~\\\RZV\~ P9s6\,ft#\\x\@,\\"\A{\\r[jZzV4=^Gyٔ4 \0?\st\\3~s˦\r\\\s5>ӈ\Jx^<ݸ \\\\\G\48؈\ebtϭ\\!\\\\d%\\0%\ϓߴ\kmۡ\#\I\\0\\EŖ莽f\0\S\\"}|S\I#\L3D{GQ7-\jwQr\t!2K\N\t\L\\:[[Af\&kz\ӳɻ\YPՙw\s\իV\\nEb\B\\\\\\\_w\\&e\\#o\\ ?\\\9v?،el=_@\\\"\g\֖O8&߈1\\\6|\6L\L\eXd\n\n\n\\\\\\\ \\Y:~\Z\dyp0\\Ӱ\W\3\\\\\oN샗O7\\ \_͐Ǟx2(s\\)Kt~\ZzO\?\\\\f&+B\\n\L\eXe\ؔ\kv\\={v\\\\\\;鍷OWm솹pQF\r\\ޙ@\W\\0\?\n:32\\3`1t5:\ڈ\t±#\L\r|cǚH\'\'\Oݿc\-[\H\\ŗ\ހ\\G-\k0y\nz꛿6}wN^g\ \S\\\\0 d\0.\fI\\\4kx\\\358F\rM\e\r\d\|\(p.\\\g\\N=:\ΰ\#e\Z\0=\z\{t4\/\H2s\0\(\W~1H0wo>v?\r:oOg\\3\\\!,o] w\`1Y\0\0\vRkk7\\s߽{\RSg\rot\Կә\dzW?\f%VGg\\ \s\\\rjSS\K \0|gNX`Wx \Z\r\\ZN|\\t\"\\\hv\b\r\0\" xM\{ݾ\mjJ\\a\\e\.\^ٲ\6m\' ZMM\Z)yǴo|{\0su\\e\\麷̣\\螙<\0y\\`&@\\ULS\0D\hpL,$$$d?\\û\׮\nEnq\j\\\BVQwC\۷s1\\0P,y\\\\u4\\h?ύ,\#M,\]L\B\\<ΐ\\\\\\ {P6f\W螦&nVB\\G\ϙ\0\'*`\uw \X\'\\uw\5?3 ؃SY\~OJ\~&\c\rXex\mm㎻\\kՑ#/W\0{\b{3~\+_a\r<7e!l2\rv4՟z\\ruOf\q6I#\\\r@>\0X, \2\\/\t\k\I\֣߮YC\44PJ( \0 \0ѽy`6=`61d\<6;G\"آL^\\%\0Ur\0!rl!G}tWEEek\Dg~\oE%\9\0\\\s]n>\\\\r\$~\\\\.R\|X&\dǪ@\\\Xc\ε\goLMM\\hگ}\%Ҷ\\ޗ\ Cޞ\֦#\\eaݻ?l\b\0\n\n~d\\#\\{\\M\XH\|\oAh MG].G/\rL9|l\֝\r\:?*\@0U-ddd\=\\c;jkkKy] b}\7Q-\\\\\\6\\\?9Vo2+\\00\Ge\\0` L\ yJ\0&W-l޼\\)\'\'\'y\?\\0$@\6\]\̓ls\\"\\Y\\\K.\?\0X,0\\n\\;\j9\Q0h\\\\h;uLY1NT\/\b,0dA\f>\\?ڛ\5N Q!\g\\\\Ӄr\_\dA?Y:x\a6s/Ǭ%\G(Ԁ\ad&ЋgΞ\\E\\0`l9@!E\\\\b3q?\+\0d\\0L \lBRɃD\0!\\\n|\m\+\0d\\\'\\###\0! P/G \0\ԟ\OD} \b=?2!Eؕ\0\0\0\0IENDB`'),(37,1,'Hub_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDAT8˕mlEǟ}\\\\\l\\n\Д6Bc_J\(I\[h5pI F\ZIL5$\nhQ#\r\߈$M\\\Ճ\\\n\\vgvfw}P;\\\\n~\\<#wkSSS[\\#18![ZZU4i9۶kcl\饄6J(ڐ+|\&W8w\+{\fW#\ލOB\f\!;_P\ \s9\\3\l8T\~\\\G\(pr^x\٣TM\\\\\\<0΁1E\\w\8悋\\\\X\\Ő s5P\c\[\\O>ހуa 93\A 8(\q$\\\C!G/9r`$M\rة\>`bQ\`QνG TE\"\\)i\"\:=\\<t\K`{Q\r \" *\ZvP\\\ 6>\rb\3\oRCS\v{[ d\h_>  %{\Q\r\m`l\j oSUI\߿\\/Fe\nw,{Y\rc\]i\4Y5.i\"hqʜz]SU \4M9\\)B @\𑁵\j\\ۢ\\y(Y4>\0/WFu\H\5R]USn\n8\\Ox<~ﶇ[\\t\\ZF@gf\\K\ZE\d`\ᰪ(2\ \dΧ\tJi;tg\֦mm\\ ;7C\a\xѺp\@ERP,ː\e\'o\\O\\r\r7\ݮ[i8v콆M\\\l\\Z7\qO}yNVn­bL\\\sW*\\\\\\\ҥ]\K/{y&\\\\32%p{\Ď\\\8R|{tt\2U]v+ikjj\nNLL\0\y(g?\0\0\0\0IENDB`'),(38,1,'Hub_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0\0\0\0j\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IDATX\\X l\g\\ \z\68|a\6\*Lj#&\\v RM)T\nG\TJ)J\\HTmi\0#\@\"`\\r>\^{O\\\\\\a)I\z\\\fEQ\alnWoܘ\\rwnzMxD\@[\n%E%E$\\SL\~\\P(\ %Y.@ \"6\K\x\\\he7B\ߙ7)\8 XX]\V#ȹ\io\\n\\@\ \ #\\'A?#us\3{q<\Q`\\>\!2hp8O=.D\$0xx \\0\0\qGѺ\\fчM6 \jl\\\,G\n\遦7\P@~$Db\\8!$\0u,YdHf\-!A4 \m/\\\\&p\\\Y\n^\U\Ƅw(è^j\.\ . 8!\B^ `\2\# x HP\DQB]P\\\7_{\+ܲ\X[t\\֭\'&ħw\n~}\\cDIh\\\\\ (>\0 4 :7gPN~G頜\jF\qd̖\n\\%\P4hrÛ\AI\77#\\\\r\^\\\i\EѤ0.5\\U\\\L&c6pX\\c@[\\\KI=M@7vAs7C\\D0S\n8  X\HIk\}\}\1h\\_\&PQQAƧ{iټ]\ب\kDDA5uQTTD|L˜PA#؃˜T,f3\\,\\4\nA\\9O\\\k\Y\2F݋\0z\;\0\Qz\AXnŒ\ʋ7i>\\c\Ռ\T<l\\\k\\\1\2\\lM=<\s$`rv9|\\~\\Ɇ\S \rIF\ \n\nZ\r\'o խ\'\#]\Zfav\υG\\\\\6EGG\\7 oXxQ\u%$h4sb~\\|\\#\oFD̜4 }\\c\674;E\\\rAѸ84+A\ß$QC`\1zL7(_R?l&F:\\=\Z\Z\ļ\9y?\l#k\~zѰd\-$з\\tIIɔ\l@DӰt\}\\\\v2\b\\kh˗\E\\ U\ʕ+^2gn\欜,\Z\ka\\@Lh\(K:)ݝlB\(\Z\\H\\zNjrll^xxPZ\\۹𞋹pY\\%8#3s\0\P\w ZZ\\/\\l-#\\\m\C\\@((\\\\qqF.#Iep\+9\^ݴ\\;\\m\Z5j\h[H@VHL$`\\fߖWWW\r Fod\"\rM\\nNZn\\\\\\\\\Zqb\\'\'\f\ښs\xƄ\ \-\\7_>\\xpȤ\Bd\\\h\#e޼y\~\\r\l\\'~ߡZp&U]\W\\1^\\\\\\#u?Y\iV%n˗/_p>:x\\\]7]>\u\\\\,\ /@&Md\\\gDba\=\;;\{O\ׄ\\ce\\b\\tZl\"ZՈ[VǽJ\7\\\\\ #H\x\\dq\0\0\0\0IENDB`'),(39,1,'Hub_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0(\0\0\0N\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\'IDATh\\Y tT\\ǽ\\\d2I&O\b0R\Z\0\\ZZKZ\\uTң\#=]\9l\\\j\Ϊ)\A \\$\$\~\\~\&!!hQt\?wrߙ\\\\CǫQWQQ/؋ \u\\,\F\Ao\9 rG\o+++/ hkk3д\n\](A\\<_y!\\U»He\'@\\o\vތ\\@eI\\'\㈱<\\"\lI\\'̿\\\\/\rX쫼(\DioC6a ^\ơ}$Y5DYF \\n \0C \h \fboݺ\(q\LނCa!\\\\N(㢌4\ k,\,3(Q D\Z:=!s,h\\`\sj4GxN T\hLLzF M\r0\Z\AG(/\+\~u!\\Xu\ʻn]fT\gzOϰ,|\5=nȶ\!]\n`q\6 Š\퇂t=\n\@G)Ъ\0DX4:AD<V&\B\rU\zE\\dQ\"1\"\\(B \=磿\\!%I\\\\ٱ(^PP\?NYs^\)\n\e(H@\PÔ\@J\az^L gY8\|%CH)\Ikua%{\a\x驧\\\\\*\\\\No|H.}\\Kz\8!H%֡G.r:\\5@\1.FL%3\w\\xƨV§H\$\ZPf\˲??\'c\\EܦK\r+\|%9Z\4ճ|iG~eÆKNO\6U+,\\H$x\]Pb^AV |\"\j\ŕ\\ \w\r]P\O\\(\Q@}\8\\\\\\b\ur\\4Ez&\\ǡ2SY\\D\\\AҢ4sI\cn\T\Le\LlқWr\\WK \H\}\\Z\\\\\\\r\<d%Lܺ~-M\nb\)DH\\δCF\P \v#\ZN\J0\\\K\Q3\a\4aVg>|/d\3>vdf: N\"Q?x\\TUUщD‘SX\\\\ѐ)F{WF\%PR.wݖ\l4K\߳6_Z\\Qq\pS\n\\q\mn,z\$\ KP˲MH\8(\'\I\\\Ts^N\ZU\\*5gh\0I\0=NT2u\֩ER-ʞߤhZ \\h=Pr$` \gH\au\J\Sf#\)2홪\ \\Z\\{\\@VIJ\Ђm0\xM2\\E\-i^ŚO pO\\e\"\+‚v\T\\k\\a\$Y\ SVV`]lg#$͙8\\8.%G\\\\\rF\n\&9j\VF844G*q9\30]%\L 5GQQɪM\|l\\C\\Pȴe\\ϷA\\\ \eBZ[[\\\Q%~?A\L\Z̘Y\93\r]l}\\p}\w\\ Fu;85\"*++iZmfpMu\\r߸\\v\ \`\\r-ݳ\p\rbJ\\^\8\?& r\? M-\3P\$A\\\8\\\O\\u*m\\=\Z&\yq\凑ԴŔn\v\\U\RQ\Sq6\n\r(?z\8u\`\Iz{ŗDJQFuJ\3\xqxx\BSC\\=1\@KK \Z\\\1)-Ua.>Ǟu\}v?Xy\M˥n\w\\qWI@4>6\¢\(\TDAj?#Q\\\5\nxZ\Zuw\tbx A\ump\"-HL \nA[K+Xf͆m\\_XXͰqx\7ãm𯇏ˊu\Ux\\ 7tʟ\gbr6 aK\\h:w \\\\AL\p\\\_\(\\;7ݹi\j\0/.y ]]\\`\ȗ}\\CH R\4z{Ϸ6=fWr\B\M/\\㳥\\\\][v%.\C\\\*(\0CẉOI$ {\\|\'\~+lp.\̔\DXb=q\S8\0Y--@\\\n\"\\p\‡n\q\\0\=H\\\\\\\k\?wfK $lǎ\lַ=yҘ{<\0Ai\\1=\{;$p\\\\">ﮨ?~\\F\0+i͉\+G\/ٻw\7n\\i\\\3\"\\ׁ\49eN\3M\#=P(\\\-Q\̖Ns\}\\W\nx\[=\Yz \>5=v5\KA@jZ`du;Jog\\u\\G\!ϊbo8ia\t\\1\ Ě.63\/\n\{ TD\\\\{{\SC\[$\0\0\0\0IENDB`'),(40,1,'Hub_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0<\0\0\0Կ\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0EIDATx\\\\ t[噽ڟ\Żx\vb;Nd# $@B)Ih\\\\J;\Y\t9 CC\iKO[\a:R(@I\j\'vlǖmYe˲e\\{\\QlyK2%(\?\{~z\\\\{\8|\x\\ \0=\g}V~ӦM\\v\\8\Ŀ/**\Z\0\\޽[\SO2\1D\ke, !\^\\\\\\^^\0kbTw7\)x\\.ƍ\\o(˕+ߡ\p\0G\\P}>\\ :\\\\\\\P0\={\\0fy z\'\\Xnke\D0\58>\\\Y\\\8\\\\\H\\ݑ\"\=\7\0\￑2\6\nfz\\KG\ @-b^B\n\xvO*\C}\fF!u\\\\0\htee\R\EĔ\Rf\~\?\ ch>V\"R\/, :\tl\X \J ,\ZI(\ouof۶\b!\/\\Atn &ƃ\\\u\\r_( -\n\r*8at{1ȨD~x1X\dp\\u\đP,/\\\\\ \04>BcM\1(\\\1ʳ\\\)\I`\ry Fem4`3U\\0,!K%E7>oj\b\ዷj%\S|\\k\0h줱\\ZR~\'7\9Υ\\\r\m\c\5jPi6B!\\ f\W\\\GbP\PN.\]DIzFJ`0¾N\N\RKP\f\MZA\\4b\\\e\l\\\\nƍA0\r\\8I\\:<\CpQk\2\ZNoH\0cNi/\Z\l(zF}\74Kh< ,z%i*\\\\E#\0HPHU!\rGቲ\Sa@\r\8{_ʾ\}\\0xzq\\\H\)M=\9 \\ʂ,g\\\\©!\n,\\Qm\qoёeTy\rw0%j1Ly$[ZB\Q\'UD\/ȥF\!\H\'\X\#pX,\"\\8\zY\lL\p@\ZW꧿ݽ;W\ȱ\4֯\n,\\c t\\D\\0rMZ\e\x\:&\x\\Lkq8\\D\"B%\r&5\nQJ`\A|\ᅚġ<#)\QU\=BA;\#HD\",1\A섶\0 y\DMji9\"b\\\ q(VLJ}F\?\\\'\0\\/~@FI\\\\Lϛ\$\g\\\\Z\[=\EU~\ZK\px\1f l\x0q\ 3\\ʼLT2\qHԨW\\\\臧e$\<\4c,\\ \r\nɪ\\\\ `i:OODY\Jx  \A^Jm_N/r(T\\\ ۔b\\?\7\0z\\X)_\Ⱦ;\U(\\H=\\/mEe^j\n\\;Cm}p\XQx 0;\\0W榣8 G:\xyPcDM^\v\>\\ܬǰ\'ST!j\\%\穈Zj\(|\}tùE9!8\\nnl^B¡}<\0\t\)\'T+,B.s֐\F\j\\ؗ\k\nÏ?qP,\\0Rt\\rk:6_Z$S\\\"\WOb\\\%(*…7\\a ~##:\\\\uHЁڼ4\@G\'lNcT\1u 4aYF\S\qM-\R \\\G\Z\aY&#PL\P\_I@h\ `\"pX1.\\0B5 \F\\![Gc#\d\\_k/}\\W\r\\A\n$\0P(.ܱ\lI\\ąG݉\i%_.údq\:\\\\r)\\\L \0\\r@F:\P\'NR\\+\ͱ-7Pُ}cM]a\Roljql+ՐE89H\PE@bufe\H)\t\v>\\bv?4ѓ\\\\q\8{\?=\]\0|kh\0 DxN\0T\mw\=\b\U \\\\\Z|b\n\"Qrtx\0D3\Ks\'!>D@#-0Sו\PKq\\ 5g$4Pem\\O]~:fjpV1\\\34wE\֢\(U\wE69%* %z9ʨ\n\Z\\a\Ũ0H1D\pn,\r5q\z\\n^mq5z˼\\\ʓddJ\\\Z%5j\}{>V)I\mC y\>,\Z>\[z\\r9QEt \\h\md\E٨/LGӋ:I8\XCUQL\ \U^\3b@9\=\14\6Ctw(,U?o\S\9BrIU*\yȠι:C5m\'C\erXnR\\Tb6\ \ş(\}\)XUTTH\\\T*];5\\0E؇\\\\6<\\\8K\\"^M\\\t\|\rT\y\\z8x~\0 \\\r\0\T\"7\WE}~\ZYO?޺\l\ڂ40\#\/ң\Z&\DG-$\v\b\Q S\\S\"Q\PB]\BY\y\?NX\\\H$a\\dri]2\\b1za)\\Z._\\Jҗ\ 87^n\Au~JH޹Џmv\\\ظ4W\u*\\\PKAoh\Z\T2 6dAItq\#@\Z\y\&z\"zw fk\\3z\\r\ZMU\u\\PCm\r2psh\e>\\\\\\*v\Q9-& nllTP\\ƛ(U\>t\0?r9\Z\Zꐞ6bP\֛oefK\36\#1\@3\R n*^n\Cc kg(g\\/bӒ\\\6\k\n3\\8;87;0\\P`4\\E]t \\\rȠ ?l\Jr-\Be#|\g)\،W.-;c2V\\"{\\0ذa$\(silͦ-\\hu\\\\U]\\;>\\IMA\"KiI·ܼIٲ?y\2Jʪ\[mx\\\6/5c913mghl-7 3n5\`-0\r\\xbUl.\:\ׅb]QXSx**de\Z_\\0*\d\Rݔg\E\\4*)\&>nӋDo\\K\0\ˈn 2|\ƛ\\t\\Ɓ7100BI\\"Eya4d\@WP0f\ʈnh`.&6>\4UEV[-1^n\ES(\/\\\rd_/ \\T,U\/\Bc&\H͚G{\4\PFM\:~*b.b\;>\>N{zqAF\"$?9\ \0n\\.V.[\%k7o7N_\z\z\\ U\\H3\\)\\t\\-%\<\\ʊrQaaq\r\୥8\\.$\r`>\l\b<%\ZFp\EmDTo\87Dz2FMӳW2/} gxa \\\\\\\h_Z}0=#s5U\"ܘu\\$\RDFP]^\kޠC\\2d\\$DI3\>;\PW\'\j\\n\\ߧ\\\J -Fl\kdUs\riI6Q\8DZaoXc洒 \~*93\A%Q\Ӄ/\z\Z\0|%\ \\+s\\5K\+\\\\ly:m\\|,+\$d\w~F\Cjjp\\MS5:H\\h$& sF\msG\\\\\>rOZ#\\0@\c{(G3\\\e>\\ȶ\dkٜ&\\\>1\jkk%PH0\)h\V\\**Yr\'`@v\v \ZLR\N62\\6`ye\e \獪\xYY3^\ؤ\A\\~j\\\\'\Z\\\"\A@\7].\ #\Z 2\\Xt 5\C\\)\0LM\\\\RFM=\PV/nh\\syQ%\\\\0|\?\\`\cPXA]O\8F\\\\t,f$#3S6\\,\'/H\35\\Mu/\\,ՖxM1F\8c6+g\\\\;o$ xJ{^RC2Fќ+\\Z>Q,\_yVE$\xkfÜ\4?=<\-.^\_~ 7G\W\`|\\c\\$ss)9ۙ\\;o\\K\\AA]-UծeYU\\jƔ쐳\r=o x} \*ԭؔ&\Y\"J\#\{\)^\\\\q YLa\vaZ\\\\L2Z-Ow5\\Z\ѵ裻n{\y-\\'h\\\2F!fm-X\\}%KJʤrY\"\O \\j!%\\f]\\FH\6\⫘3}ODB͜\h@3\O\\\nKIEK\Efvv\\5\Z\p9YY)\\kJ\ dqQJ0\}J:\,a\"㯨j. \7L\\B3}\y\;\;y\dl\%-\\e\\׬\k0Sf\\\Ç\7\x\u+\]#=\4\%\\\v[CFS>C|ͳ\(;9\#d4+dTԳҌxǥ㨚N67?y\\\ \WLD#%\ZylVFT\D=_\\M9\Yֿ~}\n:\\\{mɔsܴy\]I\9!\nT\H,\S\n\Z\\\o@\\O\\>r\Hx\\ZZ\"\0L|/\\\x#\\_\\\g%S\\mno\\\6VI\l\At\^Ffn0i\@\\`PqM\M!V$坙h>\\\V,\Z\\֐Q*d2xaAǬZ\qO{\\']\ߦ\8@\q(ǯP(<\sS~\Dcκd\\\^V|-U\M\7\/\-\'\$\\\Y.A8C\شn(fӀ\x<\\s1T\̕6[o\ U*lJ,^\ B\\\\~w\;\\ \\An\'\_\L%*?eA:e\ûv\-((,I1w~\\\޽Ŝ3\\\6<\\ׄsfP\{~\\\Z!Bo-\~\"(OmFF\\\>=\ꘙF|>\\\8z\\"H\'}MQ;###@#\\\7b Zr:2\\ϝ\M\\=/\|\M[ܼ\jru\h!\0ǧ&\\'H\\z\ru\\}fͿ#Wmr̙}pHF\/`\χK$\ǰ\q\ԻG\t5\\\H0\QuG\]\u\#F5ċ|g\W\\\\#70R>\ϵǣ_yR\Z +j\k\(\߁];>!\0ƶ 8>-\\}D#\\'\\\\咫\\c\qǹ3~\\\mۨ\nߡ\#\\\ɋ\YL5-[X\\={\\+*1\\Ճ\'\,\c\Mn_\\\\\ 6a\\q\\{y\\A\\2\|\AhO\\lky\\\i\\0\\5\^JK\0h n\6c\\;srr2U`\iū\r΍qC@i\<.\0\\U*\Ż\O\s\'\=G\0̜혳2\9\\\M\'>\\\:\3\\\S\\\/\5&T\\ܺe\M\p)\\W^F[\\A\5S\R\\/D\\D\A|!5<\"\O\a\60b;Gͧ0:\AKV\\\\\YT\\lꖂN\'\\RSo|\s\\0\\\'\0\0\ԤڏuJ\\EN\w\\fu TZ\"J\k~\[h\H\\\mv\\f4\Z\'i\\F\\\ç\B\Av\\g\0=\%\\\+Tm\\x;U\}:6r%\"7|h\SɧzhצM\BF[C\Z.\t\!{\I\0\sێ\\\\\&?p\>a-鳃W#\0\DK\\\Ϋy\\\,//:󵧠}\EM\{\\\$0m8\\u?6h\y\\*zv1 \Rk`&Z\"ANK\\Ν;7~\^.7\C\O\\78\z\\\~,\\Eۈj\`&Z\:$P=\\;o߾hI&\0}\ib\\@_W{ˑp(t\J\g=\_.4@\ޫ\T\j_\\ \'^Q0La\|\\?\0\*iI\I<%ʉ\\5\0SH\u]>\??J\\\U\0\0\0\0IENDB`'),(41,1,'IP_PBX_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0w\0\0\0˩Hj\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0FIDATx\\ t\u&zk齱\;w$REɑ,˒\c{<\~\\{\[\g\I΋g^\\>I&=ZͲ-DYEI\Ip@4zﮪw\ZՍ(\*bUWW\\\\j\./Ώ\JyW{1r\\r\q#\\}d-\/]>\,\z{e\06qek_\ٷW \_w\gG \\0\;X\\:c5kM;\5\\<\\'Lp\C|\Z]\\q\\L!_%ȑxMXۤuO6# O\\*f\0[\At/>\j3\`l:o>\k\Z\s\o~g\\ /\\\;_\'K\0N\\\\5h\\o}\v i\\\,\ď\\Z\5\k(G=x*G.V\\V\TURUYr(\n\+\\HU*\\3\,V\\\"\Q\o\\+.\uL\8[\\gɼ$\,7dY2Y3F_ң_v}_%\\nCN\0\(rԀIl\\"*J\\\s\ϊMt\gE0LF17a\0E]/VKIC)Sh!VڲR&\Z@\\SnK\/}E,/_p\\Z;``ke% \{\\\Zb\?2:Cƫ_g\I\k\u2Z \\rR\.(-ue\ ;$/ Hym\Lz^?,L\ZaͪČaB7$Q%\Ȓ 0q\\\F\XZi^\r0M\RJ\\\0\&\g\!q|FTU3\\\V\rV9\'\\0K\0j@\0pC\7\\뮷+[0b\l-h-\|\7\\\U9w\w3\\\Mϝ#M ൞A\ dni\0IZr\\\h]\\gl\ԼN:\hy\\U\C\"H޿s<4)_\\\\\\C$ V2&\/J,=\\\\r\9K\E\-,8\cB|\\M\\I&d|ddD\\t\\ q\ڵk\\\\ZFEEe)a)U@>\(C.\!5bz*W2L\;v\ Cd&J\\-..\LNN\n&H|e\\ӗ\\U\\9෇\\C촱\N\\glٴgb\3ùͰ,\1\\)\{zuq}?_~\\Չ,]\\Gx[\TUU)PH\| \\\ \m0꼯\9\ZG0\`\E+\\0nn^\d(I\L\t\A,\7?\f\͜$\\\i\\9γ~\u\x!\\l\wvvʽrQQ„e\Wq1U\\bI\g\[[[\ۿD2\<N\Wif4x0V\p(k\\\j\\\k!\"[:|If$qnq\H\$\<\ 뚑<\\\\\p\$G\Oʸ^\'\N\\W\z=$Yeu]wk\a\\ɷu횵; @7 /]/\\\|$.\rR\\g\\2\0[\㥞.Z~c\w^\\2JߟM/\]:\\\\\R\Hf* \*܅%\\\\򗿼n۶\-([Q\JfJ\Ԩpu\\{\\\\\/>\\\{9\`f$L\F\\$]iP 0<>Aco\!\\D2#\\Nވ8l\"\"r\\\9+/ED UK\UqmD%U\V\ \"~v\O\& J\\"He\U$_\lKxh\p8\bp\y\\Z\\g(\\\\Z:MiނV2:K\\\n[\}\7m\\\Ǟ}\\O0\l+)\\0t\@w \\$\K\!+Yc%n vBGs9 \3 6: ,[\1$!_C@s b\]\nX>*p{\R\\o\y\Ν;K}\\{+\y\3\eH!w\>Y\'\\\P]^^oneǿ\r\\\'\FG_`\\{\flϡE\\tm\0\\,\+\\(PX8\\npB٫&q\\\\{K]X竂6\\]\<\:G.+,g=짓)\"\-Ɛε\Y\K,\\@xW[[\{\\uuu; \\\\3\$0{*\Ow\\3t\\\\3Hag1\;˽j͝w\g7߼\\g\\\K\\\!0<V7\|\\{ ޏ\+WQIy\\\\ad]@\\H\t\Rϖb[\?\϶544<\\pR$\nIhS\!\ &tz\#t\hR\\/ӊ\zj|nwQ\b \\\ngf\\\?H4\\\\\/<\\:&ҹ\0f[\'`0 ґ\\z.P=\t (\r`\?y\e˾f/ˉ\gΒ\z}\aX\\D̄GO\rV\5kVPGw?]*MNsoڴN\\`̵)\\{\_wCX\\'^~\`\Gu}\"Xw9%u>?S>>I4\ pZ\\z\\\u\;nuY\\?E\\?JE\\XG\\'\2\[\Ū\B^\D\5tZ\kv\\O+\n(\\1\`\0\h\\F]c\7\oF#O\\t=y\ȑ^\8AAtqϞ=]\ 0!\G(X\-\\a\K\J$/\\\ܻ\\~нj\&\'Dc1z\\\T\yZb67\{ b^\\Z\\qV4\ :|\,\D\L\\I\n\n \~\<\W\GOSs]%#|׌Jq0Ӿ`\X\\\۵\\\bO\Q<\Z\Zd \nCwpʋt\HciQ{!GE\R+UؓO\>l&X9œAb{B\S\~p\w\\ \#\n!Q\\\P0\~!_\Y0g\\Ldb\InKZnm\n~\2\\\\\ ֵx?\\\\_3Fhyc-Dhff\0L\TV\\H\TTXI\e\\\E\~b\\f$(\"f\\dA2TY9,*jPU\\xx\ ۆm\U\&<\0\ڔH\\\\d² 92\vPGʄ%YvZ Ɋ(J\}9cИ9\R12t1ǂE\"]\LaH\ #:PaS\u\(Bn4(\SC\+t\\6\Q,N\L1;{FH\\U3XTD\\`t2$T@\\#V5׊вB\p\Z\kiǀ\ZB!\MgUg\E\u] e.\OpX  ^f߹J9͗f g)cŚ]c\N\\D\0N@ҊJRT8g! ,f\\@\:6\W\ME۵n&8e\"ڽ\\£\ \J\\i\\u\Oҵ~EOgl\\;E@\\\ jb\"\\\^_]!cyc\rE&\7Z0\eCsE\ٌ,\J&\pd\4A}\\؈x<\\z\nƪN 7\dt*M.ݕޕp \3\\ѓ\Q6CXb!U-Y\'p\3\\ x;\n\v#xQ\qm$Z:d\\\kSSS\\:\>\\\\HuM7ٹ\UfL;CG9\.\M43\\yX]ֳ \M\\ZL\\T+\u+\ZɎ8ڮg\\\\\"\\ Li(j$IC\\\\\0Ne\U+ e/\\@9z<\\[`! X\\F:y\7)++{w\\۾^YU}pZ\\Ԫh\\c4`\P(\"k\\z\\I*\\\'\TkmAƚJ \\z=,\x\\L\Z\a;L\\\\\\)G\+PhAKX\i1T&|\%#\0i)\n^`$<@\ 9QɾϗF2\\ccc}|j[v\u7\⢒6\0#>=BO\O`\cTG\:ib*E?a{\\\!\\\Կ^k\'\t [\Mu\;/ \\ȶ\TiVriv\\ڱ\1G\x}b\\]\&+-\7!Jw(G\\\n0$\a,)+\'?/\-5َ;2mI ^v\\\O\}\\wݸQ\\na\~Ya \ߝ7m X-g\y\\>>\\.\ɴ\M\$`_\0\0?\Z ?y\豿\BEdCP\Yva\0d\\\/3\E-,h\0#$\\\\BujPU5\/??\/\oWY\\\\\\5nAm\"*KQx#}3y\\E~\e6\/@RyW\rVfr{#:}Zo?uZR]n\\X\z\$GEo\\\\42\?O1\R~_c&\\\\\0sS\\x\ʻ\\יn\J\rf\k&\Z\\"\+J5\9S>n[ד0\\\شq=͏~4}\\0\'\#tHr\,I@6-R\K8~VcWdf(\ȑ\\\\ 󇆆7~\ \Cg\| \0\cz:\?<:\=\o\\)3q\,\np8YƸX8\*\0 hp4vUr\es\"@:6\03\UMh\0&\a`\\)Qp@\\+\+o\_\ڸq\+\\\a\\"\vۭR\~\,\bQ\_ч\&d\r8P(\~η]cC\Ǟ\>\\\!&4eԊ3jؠM\\\%E)\bWw\RG;7LY\\\ul\.\n\ Ar\&r,~^\m\ϑvSwa&z\%\|`%\D\\ͮ&@\p Ƈĸ[5#vW\nG$Gp\,\6dt(!\6\bK%]2e1P]D4\\\B\M̀\_\_~\'|jUP``d\\0Dŋ/\ym\\\\7\\ƛ\fq\9Ŭ6n\\9E\\\>N>}N\\\|{\̄t>|jjJ,&a3\e\'`\\1]tJˎ?fg\\^>\LJ\~>>\QVj\Nf\0\V\\V3 \ s\"<\\\\0/\Z\08 \rX\\\x饽\\\GVY)+\d fh\\ss\c>\\\\\c\\\\!\\\\rM\z[\P2Ri\&[\\\6\r`hi\n&DR\\\Y^\˜-{B\ \Ġ53tL0$gI\\ 3=k\Iv[QX\VPAI:zB\03FK\\ \r\\Džm \nLt=\?\Ϯ]\mҗ\竪\w\/ O`\V\\'\'4&\C,aH=oc@̈(8p\uѭq\A\0\\\'\\\Qai\G:m\O~BdD\3p\7x /;\\\ַ\\Νw\\\)\Ϸ}.\t\ea\\\Z\?c\q]6N\\\\\\n\f\0t\H\ ~\s^O\\Rn \\c=6\\\wh\l4@NB\\3-\B \B\Z\?| \\\?aÆ\%Sܓ*\F\j*Hm\\\04\1\ \\@\ ɿf\\Zjik\\\-!2ƒ#\kjj8zllL*++\\_\ 緷`0-\\0L`R\Y\!\\\׾\7\\??W“2\WxN\h\"\׉\\@B\Y\\0\R|_\\\aݒ%\>hV\|B\\0s\~x\\\fB\\\\54\0t\\Ư\ҩ\\\X$<\\^\f&>\EX9 xK\{\\gF !!ľ\-/\"A%%% *\Zڕ\QhLĄ\\\6\5\.\\r\\\p\"\n²\\2K\\\D,Q*\\w\ƦmE\7=\M\`Ҭ\S+d\nP\\M\\ʡ\\ΤT\\\\\1:bD@U\\iV:\<~\\\k\`6\\?1] /\E\0?@\xv3P#\{\>@Б2\\yfG\ځ\\a}ˎ\\!\V Ma#V\DJh\\\U}\oU\!\0\9\r0\dz\\r\\Tk\6 z$d\Z\\)\\YA9\\eyn\ϷN\cAvE\\\\"r\J%X\0B(ixv\B\`\\\0jz \i7\;/\Ϯm]\\\(C\E\a\ \үC\9pc5Ԯ\'E\ꤑӔ&\)/o*7\\e\nBehs\\H*L%b\t\\\\\K\\\L|\I6S\ڒts\e0,#_ݓO{\\\\o\\b\\\.\Zs \+\\\|\*\\ws \\]\\o\ZCTXS\d\#\f f:7+y%\\\\D\\\/\{bwU\\[\\ZҬ\,\\CeMZ\\\\5M\\Xk\\\{v}ʜhq\O$\ \\*+-M,(@\\v4D#9=s\FGHcEnYNJI8\\\14\\\Ir\\W33\a [\`?\ʟN\ߏF\"C\\\LuQ\9\k|\\~zeo\\!Zö\nNK಑>kVq+\\ [e\RNX\\\͛\\?Y%\\\r\y\=\\\I\$\ueZ\\\\Ci*4M=p`\0@e\UfY؟d\S\+\#WV6>Is$o\Dc\ȿyxfQ`\ \\\\Z L93C%e\ښ5L<\\DW\r\\w2\ /\b\\0Ɯ\d\.H_$\\h\\\\>.\\^Ѩ\E7\\\ܹc%}\>\\\\u\\R3xJJ*\Y\r`\( C\@\0 i?|\\u\\j[I\{̀3L\W/\\Q\\[I \\,\1\0\\{_\k]f\3\ɜ\\X*\Zq\\\PplL\Ѵ4%Xr90|ݧ.\\KtC\\tzz\\\Q[\rfv*\` Iv-wn\şG\@,,x(O=I뷑ݽyg~\\n\ Wa(\\\(y\\K\\\O\^r\̖\in\ \\\B»A\R\\\\\u \5&\F},]S\Ϲ\+Ƣb\Rk\MM\u`4-X]UA^tNj\0sW\O\G.\\M9\2#@(\\\ >0@\')x㍤ (>\| E\XqR\|;{<\\=}t\͖1i2VGA;K\_0f\\\\"G\eu c%Š\0\r\t\D43B\IYF#2?\,a\Ecݡ\\pavbzl6C\yfW[\$\SK\\g6\\\|H\g @\E`2\0^\\%\#p\ȣ\\:&,I%\ 3\9f\x\" zRX\\|R`3g(z\ y\>H3m\@\GRjhJ׭\={\nZY6e&\l`\\g\1\Z\r Ԅl\@Ӣ\\\0.E THfN\\"]A\Pô\\۸\\lt`8b\"Ac\i[`zf\\\\oիW\bu>y\\YBN$\\d\\I m4.*\En\61U1Z\l^_\Pw2N ~@u\"g\5\\cɗ\\h\\\66jnk50:$e\G\7\\v\r%#8`梁:_1\1\"AU\\%)V\9c)3 (\\/`g\ ۨ\y& \\/bjhj^4\a\\ol\w]tݦ\@Bhll\\'e\@\99P\R\׺JĽ\\\ q}8\\\rf4ת\9\\\JB2=\"~oE.W%qPS;>\ǥ綮[{&\n%\\\EvQ\\$7E\_\\]Ff2%V{QQ\%^\\\ qMv7ޛ\ۨ -+-!ZޒUk\\d1p_@PϬ\?O\z\'n\\\=\r\>%e\0\/\3\\\\M\j&C\\?\\EK\>\\֦֭[P1\\L۸3fHx\^χ\-<>V\7\/ \0\9k\w\\A.̈́.\h\\\#(\'Ғ\9b$\uv b\5Y\M0Btu_~f Z\]fuj`A\\3\\8\|\\X*y\vD\\\'\\\\ 6\\Ͷ\\\ >\Z_C8\>\'9\rQϏ\0[E\\"9^4\0dlpD7\Y0\\]\>h\* <^}^\\[7\9Рz\\A pT[S5\; ƚU+i\\\\s(4M\\S\ \"A%,\aq`J!DhfS\+ss\\k\_\ǭ\x2\\o2FA\1Ev\?,\\n֯N.0\>\$|@\\S!SyIl\\\n`Év/k\zC$}t\m\\\\ =t\\1f0\c~0\\LNӱgXgOj)\\2\\n\\gP\\Y\\`G\7H \m\mAѠBLl\|`#A=\\U\ \Y\?\ZJfڟ\2/,\\nȔ\\k\5\\\ .\\ZVVѭn\D;l$y`\\\I\\\F\0l\Ϝ\`US(\@]m\rUWV\\\:ibjJK= SSU9;\P_\0576\\k7\\\'N\\h`hUN)\\\ZV\yvo`rt eu31. \\^vmMTܺek\\5cGa\R\\@\\չϢY\\'ǯHY8r\nXw\d~\\O޶^E\\4<2Joe\͖~K\glI\Ze48t\9\rua\\Yr\\\\un\\qf\AV5dVh*\rCs\\\IVS8D==̰%Z\^\\H$\\?&\\\\`\"\rU\a6\\\%\\\J\\!X\\n@kC}\\\[˹\d \UrK3\+\2%ಙ=3\\i\\.^R\Y\\w\`\ߐ\\x iأ\\':\oT1:45\꾬v8I\\\8\\iUk+U d\)ɧ\kVSKsA\\\\>o @Eq\\ZF\7\\kȹ&P\lbb\"\PQ\_ؠ6P\\fD3MbO43\\\0\Q-e;5|K\\3dy$\\\\"f*\\\C|gXͰD503\0;\\Ht.k֮a\\oY\ x\\\\y\\S\B\D\\wDPV0\Z.o\\պB\3EifQ\뎼^ \B/}\\\#>\\\\\\\RM|l P(-.&FT2!T(\E\/3Y\\s-[f0\n\2\oX\FR\NQ4\Mu#3I\Q\'#+-iz\\ ۷\̭\'Bc߲\\12\d\r\_~\C\0M\\\^sKhK\Bp<\\<}I\r)\Ӗ!\\\'OJ9!\r%+WPۊ\\˄!Y\u#\.\M\\\M\__f#ֳ]\?߄:n\\D)_\0\\r \r,\\Qd:*[[U40\\4+%\\Jg\-bgڽ䎾\X\\'uŊKH濾\c\\Ҝ󳽃344<2o+_\M\Q-\\ӧit|GF\\'\`\7\\+\qYsV2\\U\1 x\\-O=\bflêbLIK\1\\ԡ\S\?\S#(9G/!B\s\\\ط*/P\9@a\${\T~5Ca%{3 \$tӧv\*z\]Ԝ\(K\\8ˀ\\,XT\}\\\\\n\\U\*nٸ\;8,\\\"&qI\g^xI\5ִ᷊֯]%25UU\,o\x{\\\o\n\,(,cd\\:\4d~\J#RY\\-1 \\0C6(\nƩ[`8k\ odF\d\ɇ\0ld%=\#&.\\G%/x|\ ݫ\\)8Ζ3|\\\\6\\9\F)j 1|\rȾ\\M\ǏSy\d\\C \\\\\\[\\'\A\7\\\D\\TD\mm@\2\\T*\nb\\\# L| 2#򩀴0+ò\\F\4f$?\mݯgr\ `\H?\D \Z\0\\.\X\,\G|W\\ZH\+y\\%\#b\W\GS\ \\Ďnz\nB\`,D\\\\&\x2\\ؾA\A i>h%\\\x\\\\E\%1vY,\rL`3\ޞ\^8(z]A&O\`\c>]kt\z\\\<|\aV\^\]\П5=|\\Y\u&r\<\0\\Z W\Mǎe+\(.Jy#lLV–ek j\r*EVTf^\M\$\Q\###e\1ݢi\ZC\~\Y\`\n\3\\'\Y+A\eT.\}B\.Tۭ\\U__\59=\׬Row\ڰ~ЯA֙\5\\t+f̗q^c\w\\nbN$#\\\]a\?FxU\S,\K\?2F\U\.2\lg[p\0ޅ\\($ozJ\)C\\,\p*A#>O\(cgQ\3\U\"\"\`N\_+5\[\\\\\\\;\ZJ\nh\" 8?Оޥ_ICnYS𱋋\n}\i+ fJo=י1\.^\6\]\\Lj\\Ct\\Q1ÚaM Ƹi\u\"\\\\\\\\Ifte)]\D\\ ѧ\\\\NE\w¢[} 1E\\\\d\0^h;UB\!\J&E}y[\\\X\\\jcc484Hn[\ܑF&ś\a\՘_\\v~:sQ@\C\\zK9\nbJX?\\/\"\'a&\\\\5I\\=\\@GG\'UV\\Eɸ:B\`5{\r\rl\?\Z\D%^\_\"\&\h \F$\p0\\0e\^҂\\Z!,\\\JĦS)ia A\ak4]\\Z\qˍoAzM\w,WXF\@+G>{Yc-0\[a\ b \{\yQ\\\΄\Љ\c\ \\\mщSgX݄M\\\\\JLZM\\n\L\\4\'&\q\0,\\kX\\\\x/:td^\ V\z\\\b\0t\BKsV)\\'\/\v-!\\{\U+\?Zlq\\{~K0n|Seff&.k PEsRz\_DI\x\"E.FA~;︝}\uHVݤ\vq\\\\\t\cU\VPSC0%\߯\Đ\66>>R\UGIfQf*\.,v\EY\\w\\n\\\Ewu\\Y\lK\\\Lٻ\\\8\ \Z%M\\Z?Z\0\\g\0Y*\\G%^чl_\1162v鉿\*D%\1\T^VJ\\`\.\\ä]o.b\\\\_2M`N!L\s}> \t11\\ɚm\劊\n/1*8c\Y\a\Z\2sbL1\===\\\\A&o\\M\㓓9[\\:<2N\b\\\\D\\R,\ܿyO\_`r>\G ꕭbY@\ \cVۗ\g]̓>\\\H?\\ahk1q+\"\\J:7̭a\(2q\?{o\\k\'CӥH2\g3\\^a\\\USs}\/\"@\\VU\ͷ}>8pX$m\]eeAF;o\J\G \\\@rz\ ~I\!\\+̙3\Zc g\r`\\'>C=\>cq\m\ V\ \r#*\;:\ݝ]>?\\ڶ-\M\\\P\\\uA4\@͍\T, E\'Г3+7`\k\t\1*\]E\ e\@\ F_\cM\\\\\y1)>F0\;\0z\YK=9zzR\趝\\\;`\0 (V˛\G\"\#_EBeZ\\7:6Y\,ȷ\\\\T\rH,b\Ps\O Ce\5\բpŞt!Ky9v\\;n\:o` ÃS#O2\\'\+\sjkku+ֿ\~LA\577\<\\Tm `,2Lڌt2\̖z\`\y p\@E٦p,^72:\\Np\"s\z>V[\Jaip\b\>[l\\\\\I\ƛb\\M \\\838\\>tee~)g? 0\" P]]1\VqqqS\0\rŽ8\K5\xc\p<R).R\\\\QE\\sxǐp4@y5W_Y\\7_#J\_\+b\E<\?aG0\B\\a0[X\0I\\89q\\63mD\\d@MOMĥ\d?ˬ\ZWU7h5\ \c\n\"\-\nE1(c\2\1\gO=+<\cD\с\'\\0P\\"\Z\\\\.\\ \虞NZSb\"?éA (`\g\\A\\\N\Bː /&S\`4/\\1T E,\:2:a\\\\ m\#i\1\B\"~ \y\r/s\~AL\\%\`1lT\0z\Ž\Z\\W$R\\xzbj:ȰBt*\H4 &c_E;aaC3ToGGǢ}\׀3x%U4)>\-&P2\Lb`\X \'P4\EJqEL5%Ѥ\\+c\d0OJ^UJk\;AZ:Y]\\ o\Z \\'\XA.$\0Cȥw 0(\\\\HfUٻ|A% :b\Z|6\"X+P\s)RqD}>*V\%Ð\\IM+\IHFYR\ \L \\?N&C~\3D\F\c01\e~w 0WtѩlTD\"b__ܘВv\^}e+\\\ ;LM+\\'\\\=:~ SkOM 8EDDe\\\ !\n߁%\KX*\F#-c8&20\`< 2\0A:\\g ^\h$s\ *HV\4\"2\R?X1\<\\0$\ʼCCCK\ 0*JJJ\|*TFp.\(\\*ö\r,\fuY\\0T*crj\/ϒx\n\\\BO\N\|~X@ѩ\"Fp Y\fLj\춤\ń\0,FqY\,\!`ҏF\7>YPPp\>\' pi T`\F\\N\6 \\.¶H1x\f\"\n\\\f#\7 \rfŠ)\\{(g\G\'xB|>a+\ SM\ a\\\i\X\nt\\Y\#[ \U2f\n\p\X\cVq\\\HJ \6\\\\, bq\\\EHUUU466Cbi \`\\|sX0<p!s\oa`@gssq ,3\\!\^)!E0\w\r\r\r3g0\غuk\\5Pa\\\?a+\dow\ڕ\\\{u\\\z`ڰ\0\0\0\0IENDB`'),(42,1,'IP_PBX_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\}\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATHyL\g\\\rf̿f\.\Z\&\n qS`PK&\=8\іP-,W\*+ qax!(%c\\\r\w\6_\\/\}\\\&&&&k6}Asm#\\FR\RӥR\\\\u\mmm\\Z\\\\k,6&\Zq\&%B,LAvF:\$\"ɤ\\2$N\\_\g\Aq\2e/}\sLh2\v!ћQW\Z[\ơ\\\\Ȕ\r\e\x?)xL.\G0\\NR\\OrX\D#8\\s\KD*n޺\GPS߄\l): =\\Ea\pH\ĮXX\n./\)w\\~*] O\@YV\\WQ]׈\#7p&&0;?\'O1r\&\v]4]n~\e\Z=OdQ-.ǮDD26NT\t\H-իWh=\ey5\nJT($\Wi1puO/j\Z\L2\\065M\[\\e]n \\_[|}w \˷$\\\0WQ\ؼ\0\+,T ]alx\"<&!Lȉ\`WM\\+%\\y\\ߞ\X\\YQ\ \ox.˒ +2)\ɢL,,\صQ$S$\fK.;k~W\"\\uUŰi^ʞv\nO)\nniiccS\ /\<3)t7\(\oN\\L\CN\l4\\~#\T\Js8\\ŋ\w>r\\΍o\\\^5\̲nDc\h\[{\n\np\7\r3Gy\د86l\`\\,Lև\Tú/\$Fr9$Q\ \0\rދE\(ʖ\zhڈ\\Z-\\\_\\\?\G~\\&\ ѐt:\r\Zy\\'w\ܹ\h\u𛂡\\Z\\D&)tuui\\\ЋNl\n&\ɻ\tMMMSǁq\9ΝA\\z}^\\ZyJ#qUdj\\JZQ`\\Y\\\WZ\\tDojjr766z\*\{=G+iFD_Ѵ|7#uh\Z(E\\@4\Z\K(\p;UL(BǕ\oM\\o޶\\\҉q\$\^ i\Z&\\jɔ\w`xpۛ?\;\k֭_\bI%|\HN\x\"U\\T&?Z0\L*5tx]2sm\##ʖHXy\ Xz\mߺ\\&\䁇b6I|a\\I\/0>\X)\\\"\MC\kEk\p\0orzI=\\1\\8\ر\UP2P\\\r\ފ\nFMl\h-+/vEOT\\q\\\\_Snu\\}O$Фtk\S\7<[\\ 4NpQ`\ \٣\\v\~\\3%\Dz\\#\;\"0O29c̽4Nݽ\)\f\ZL\X\&rE\D4=\cR\6\x\WXC\L\ǩ\XU\\\Vlv~X\\<)\%>!sb\&;Ȫ\^\"p\\@\=\\\\d\\LMU5(᥵\,{y`3\}@90NEe* ~\+XK#\\3O\T\\Ә\\ :\F\t\;\rXD\\A\\I H%.n1\J$\CW9\',@\\\0\\XR\"V\:<\<Qa \N`:\D\ꊰ _Q>\Q 9A\Q(XIK4Y\/>$o\"I\\\E\\"\ \f*;9Ƒ?\B]J6\'$1c\0ib\XdƢ\Hn\<噒ɏ|\nU( TW{pjnZHG\h\"`|0\\.\\ \F1M\'@\Q\p\3c \E\F}2\\s=\Mա*D\\nh~\\W&Fug\\\>\C\\˗Zdbt,jE\=mTW:\n.d_E\\k\{{N\\Ϡ%\ \Xjř\7\Z\\\ѴEN:v0z\jVY\c]95@9~N`\w>\Zoo&y\0(`\q\{IpF\\hhtv\ _\0PӢԌr\.\\\l/ujZ\|I\%\\*\Z\;\`0f\V\Yx|J鼠\3\&\cC5,J\\rYt\\.\\y \˖Z\k\8F6ހ\of1\^H2t΀ޞN\\\AͿ\\UVV:x\\D\h\K>D!\\\.+!׮YmE\p\Q\x\\Fq\\\\`шR:;\S\\t\׬,\Ϟ\_\Y/\\\r\\r n\H\\;l ;\~$](0d7 9~\$}\k/\AuR/؊d[:ki&\Y\S)4\ha>\\qt\:và?\G~w\\\\A\"C\\?x\x{\~xՌ;CfK\\dWb\\o߶B0~hhp\yTãٹk\3\nĭ_^\\nT C\F0\\Pmutn8\Zs<8f\\n`\0{{r\x\\e\3K\ﮑ\\\"zu9\Oa\+V\\\v(\!x\7`\[AJV\Z\\\\\.\0\r`\AUW\\\#Z\o=[\\\O\'gc37`\7of8Ţ0w\\z!\\ \qUQ\\\nLaMoZ\\^cXz5\TQCC\ 6\\TtYDP.@\'V\\!W\j<Ļ=v(6WU^\\`P\\t&x-;9\x:\޹sgb{\s&m\ ^A3t\0^`D\`\ya7\,\(XOccc\N9~T\Wbs:\r\iǹG2 \xYdm\\\b\={\h\\4`>cخ`f\2(̡;v\\G*\\\v\0\0\0\0IENDB`'),(44,1,'IP_PBX_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0;\0\0\0ˌ\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\ZIDATh\\[ p]\u>wy\"=Odٖ\\,a\r6[pB4$!Сft&\4\4CchB\6\ƅ@\6mY\&k\<-Oow\w\,kÆrg˻\?\9\;\ڶM\M$wŽDm \\=6>aZ(\Y\;>704x\r[\d\? \0e}\\d\\iqX\8a1{\\\>?\'\0WX\\ʚeᚯ+TU\\P6ɡb8T\19\^\S\\$WeRUs \\'\͇^\;(V\\\\\Tcy\N\r:\\t\\$7Ӆc>w:\\vL;񛋁\0RUI(*-/v\r#1@Pe\\\@*\}ey!\\kW=׬жCh\ -y a\\9W\\(Nk0\\nn\,\\ \0C\\\\\udJMGAϋZ\GZ\Ux\9qJ\\w\!m\V$X :\0U>U\.k\V\'\\\ChC\n\\\W_m% sѢE\%v{f\0s8YM=\Q:\5 c\Is:yodi\\ZY\{\\~^M\\\x\\$)9C\d\\ڔ\Ǐ;|>k||\]__\-))q\z |\o+W\+V0gB:G ]*۩FZ.\'L\\\~n.\\7 \tѥ\4>IxyÆ\ruG0t\R\\\5\r\ꆮ\~\\K\~k\0fd\:š rP`MY0ӎ\&ȏ\_P\\ufxD\0W򤧈\/\B\K?\\%@j2t\{߻pɒ%_\\^*s9r\Z,ː(\nݰf\/EGw\\~\wt]g \@<\\\0\\7\L0Y5{>$@#\* 歔\\,\\\\'{\o\x\(x3OC*c.<\0$?\t裗CVbMx4>\ԥ7\\r[\\}t\"C\\0S!xb\\{WQc\\S\?0\][;,]phS\0\\䊂ǬS1\bĶ\\'#f\'A&C\A\\/sKuu\7\Y\\D,gW\c\g2\\\m\\\\^۵k\\\n\+\n\P MGS\\\.?d\wlr<YʻT\s4H\\\ @\*; \ \xG#\\\\7;\_l\e1DZ% sIn\>m\j\Ro\\1F\Rɑ\\덩\2U\\6DoE/M\'AOBXҁ esxn;7\Vߵ\^{\\\eX\4\rɡ\\r=\k(\\9ǣ[\ \l\!٣\\D\'n\\xn\:%O>\\5\{\jkk\Gy\:\B\lr m\Νc;v\\w\%/\Z1\gT,\qM볻\0Ig\\}z\)\!a/VLh~\\(!]ˢQbPMm{1,k\0\0\'\S.]\]pˋ\rŐV\\"R&1\9@5\0\Z%\㨩{zztd  \e\\\\rV:\@H-Eomm0\siN)$ہS,\\i!|q\\(d|\"\c^\Rܫi1\]\I\FE-pZ*lٲ\ k6;]PS|Y\\mh\x<<\'`W\\\`\R\\?>ȍ\#\0\\3\r(M\\\\\\\\\\\q\>NB,|^/1\#\IJ\1\\y\\\\\l\D\}\Z \\-\\0\\ˡ\*.jXpQ\ \*\'R\-q\ݺ\%\0TmUpUz*\jÆ\\i\\gg\E\4a9棏>j>\\Lt\\0\{6\\\@̔B4(`\r\\*Vy>uV \o\\g\\\\\_\\_O\'E\F\"\st\\r}\eµe\eTV\Ֆ\R\4m\\N(mp\\\0\/\֭[-[X/s[\04ͤ\"/GyQi\\e{\\\\7%\\ \hph&ָ\\\\b\ـg\\\"\Y2\!ٖm\0E\#L\\ג-in\-\aiX9uJP>NG)hO.XmQ\X\\Zg\\&sYp\\]z2\0\+wݵ:\\4\a‚\'8H\ }T\`\\Nj:bjU.\>:@=\\Z\/\\<\8\(-a%[.\h\\\@*\v[\\\\g\\\\@@ޏ!1\cp] Is$c\g\\r*Y4\\0o?\U\\05-jVPEum!zX\rlP\\Lr\"N2vQ\ \(\p^ .B\Z%\'/\IC\\\\)+RSAX)\P\4y>v\\\\B:\\X\gj!3T\'eA\"\"\Z\Ϋ4ϕ\\\4:\Z#j\ܼ<7Uk;bƦa=G\1g6Ccv\"I*\Dh8Jf6G*V\9@ّar/YF XV\u_\B<܌\\Nd.Y\!)S\C\\̈R\ț\\0XGOFEuUg֬\\z\/\\1Dixlơ\0\\X^A\$\"Ezp_\粔9x]1/^aj9\\\\\rեK\z\Dyy>Գ<\0٘eht\K\\X0\p$\\"1~\vSW Lho^MXJ\\Ѣ.+D1\a\Zgcm0H\!\QX\(\\0\H/5C \0x5ecCwx$2z\YKc03\8\ޖ(\\\"\*\\Wv!|M\_\\\ 7lf>u\R2zXQ끀ڎ#\\pU\09uPʔ!\\\Z\|iScTmsK+{\\)\Uu(\\\u\Z /Ig$V\݄Z\uR\\\\$)t[>#\?K.X\n\\88u֭XA4 ; \\n \{ք\ě-\\b1pEH{\h{\~ji;Nnp|\s\\\(BFWl\'U*\\ikk\II?\\ \\C\\~8\ŋ$\\=D\[*\\_\\խ\t12\=ђFjjZ4aG\$ >\\E\%\>Y\0\Z.\p\\i ֮eKG\=:\\\\ѺիD\j]\\yaM\\M\\\ljjvE.!8p\6ؔL\\ゆ\\4\\\]CP\A#\C^GW\\+`,<\g\)-CQ\Z\Z!s,c\\y\\T\\Zi\%\"\"\a=L\z\\rt\RI (@\߹\ 9::\~C\0qx\0i[L8/|>\\܄\\@Nl I7\p-^hF\L\]f0?\b\q:V\\\&Rc\\\e\B+b \S]\t;,\9宪(pu=\DvM\_+\\\ruwlA;\\\h$z\\-\˹l\SmZN\x%\"-*\P\9oe$(緿\\3ZX!&U\Zڎ\nkYܸ\0H\2e\lBA(\8Bl\\\nFwOO\n\}\0{>&NN\:\Օ\"\"\\yUNp1\\X>H\\\D4\ger(\|\K_\``\W~*\rQ2\\\\\\n+: \\iaz\\ё1&#gB\JA}_ZUUwt#ަ\\A\[n\_JW\\v)&n\!\1dI<\,\\^r\\"tWV \v\ږ#\5W^&\\S{]yhg4\ZM>\\f(R\\0U&\\'\ުq^~\U{].\\\Ӯ.1\[o4Xn\*Az]ݧE\;\\aд\\\\x$@ i\g\3\\\rn\*A̜Qwt\Z%N\CH\Fs4$V\'){\\\\rߖ-[@շ\\\~K \,X\0\S]}\7w\~.?l ;7\`\uƺ$-\\\:U\\ZA.Q!Iъ\\6>\0\0A\t\\N@)6\"\(![©D\"|\Ё\8FYTUV~\Hl*N\#Q\~\AXEߙ\fnxP\\[l\` \v\f|\y\\0utvY\ѡ\\rxNb\ΝӚ \031\\\h6V\0Iybp02@^\\Uϻ k˻\"&1֣\"q*FХ%H}(Ta1K7C\\\ᡡW$\8\\bQh/T?6\0\\\F\0F?d¬\0(\\}\C\\"UoEUip\\\X\PtěӬ|\sỵ]|\zz5\\+ԄTt412CX]?\rpk~;\0(Saf[_p\,c\U D:ܻJT\ \ㅨ\\Z\LE,\f29\.(\\\OS\ \\\̞\s\=\'\O\n\0&/2a\z\Kq=P8$a$S\C\~\-\\%\|.ݦrKR*\Y\~,g-\\\%\02\n\0b`6\,XE+\\\0^\ As\\X׼8v\-]W +fXV\Z\r/{z\sY\Z\\"[QQ\0U8S\.]7u\1\0\\0\\\%\8@>q\0\f\`]v\ᆔX\g\{yE\i\ڿq\\\0 >\/E\nD\>*Ȁr\..\?\/ؿ\\0\0\0\0IENDB`'),(45,1,'IP_PBX_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0Y\0\0\0\!]\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0.hIDATx\\}wx\y\;e{Co@];)Iв,K)ŎO\ىى;\8~,9w;;\\ɓĎ\Vtq\ٖJ5HbH\0 \e\\\,v\Ɋ[>ggv0;\\\[o%\4iK‹7\\\k2gٚ\l7>zI\W@xr(ƈ`1Әp\P!4\i8\\$F\\\*dۮo>{\x\J4~~\Β/\QTYUUU]\R$\HQT\\RUȅ}\\Vq2\/\l]\V\\$)\*\|-\ |\qyr.+\\q\\\\~R\\)\PeŸT(lnBK]\ ζZt\\VU\\\q\fo\Va!2!K40\\\Ĭ=\_\dDW\\009diO@ R\!K&N6 <O\ôKNb\d\8 1`\L)h\nJbOP\\\U\I\eXTiÐm@ཉh\\Ph\\A\n\n\ٱ\Z\Z!U}k}PU\Z\?.Ʌ\YǢ\Q:v\i\Q `x|twN\d\DTx \tbO\'\\c\ P\d@m\\":\\Fd\kkk\Z *OC~α<!,_JLREyg\T\DZ\^\\{\\a)\\n\\\J\\\7S/$]\\"K*vͭv^q\0XH={\\  N EVD\\\\a\߿\p4cE7-\\46o?rS\B\V\:\Fi\\\^˟\[?η+\r\E# !2\\FL&~i\Zj`㸆\5:3݄c\ct&ȖM7AL7ߓ\ A0C\r\.\Fy\زX\Z\lRmm팇)\Z>˹!\/^@aO\\gƓ\d9 s\O\u\\'[` L-S|rJJ\\1W}5!P7\-<\ҩ逰_Rb\nP»\\|gc횵\\m&H>\\}_\_|sdxtWgS>\\D\"#ґHcFlٲ\Xt1#\+DA3\\\-\\Z\\0UT\nX\q>}7+}\s\̌\\de*:v0\\"<0lrQ\q]]\b\\ W@p\\ra\|\ _Xs\\\+-0`p}D\r\Z\\$I\\Ғ߸i՚ё\\_i/z\Č9G\ʈ~\\쀙(.\nDWI{bJ\J19\ ̔t2+T5^=I}]\Ha mn@v]w}\K_\\\pw\kY\s :o\LX\T]Q*9\T^VVv\m\\o^3\Z>qd\\/l7Fi.\;=G\o\Fn{Ns3 8o*]QA\\>޷o\GA 7 \j\ߓL\l\yH\yB#]eee_ٶsǗ7o8<>:#\x5k\m:η\\\\B:GNC\\\WX\\k\\K&=\ݷ\\\\9\G \\\rP2\0JB\"F0 \\\v\\n\u\\~w4N>1:2\2t<kD s Ed$ _NG\FH-\[\}0\K\dCv\"O̔\g{>k\.jll,`\0\|\\\\q<6 +\r\\\r/\F\\'\\S\\\\D\5iO$TU^Jep\\l\@t\ dP\ZYY\\ptBhL|\Q\\Su\`?۸oL\\djts2AKJe\ Ɠ\Z}\v+d欭\\9ss\\]矾\\\0\'=򶴴H\2U8ѥھ\\\=i\\}\xr޴t\\\RdJh\0U4x\n|I~B;<.\O\fH\\re\ra0\\{\R-N16s\0@\_F\J\\{j\\\0a\]wݥ\ń9\\\CW9R;]\S;\:8Y\}Ɓ4gs90?\\\\\Ja2DCa\\:]O\>ܽ>\\\0cd6=.\v\=\dafD$Fe)Rp\\\`[\\tZ%\\~Z٘0$\\\{\\73/\n*B@rAU9\\(\\~f\\ʒR @RXag~OXW))#i@O;\\i\r\0\\n2e\\\\\U9STaƤ2 O=\g +g\0ux=^\\\> \99\眇f\0\\E@g{\+^\\\rOUܢ\\Ys\U1\)⸐0[YsZNl90\2f9\,ܾ \\\/N\r@ L`~\ĩ;_V^\ W#\-?:\T \P\f[{Fr\4\Z]Mg\ZHr[h\A||&P$]Q&Gh0E\lZػ?X8I\\\\B4( ;nr\\\wʌS\Hs% fȶ)r ]8O$o^4q\-G*5{\_]ccӋ^g\\|MҞ\.\\y XX\\* !sI\\\\}\"\L8~g~.rxVԒz25\ޘ\\C@\\YG\ipRV9\Af+\0\\0\\\\I%9 \Q\\\\\?ҐXww癞m\m\\y׳B\=Ɲ\\*nDH\XB\ \\#ެ\?v8m=Aa\\^Ȅgq aL \5\f\\xK8\t\` —i\\߳:#$3\Kܼg3\[d\v Lc~\C/\Gg\űT\塏y>D^\fHw\r\r7fp\\-_Nuc\\n\V{a\,;J\i3\\\T*e$ *\\O?\:\ҝ\g.ݥVJA4c~\f(#\"΅\r%\RN\rEv#\#\7\2{uK[$t\\\Bu\f3o_8\z!R\\"\9|4#7\\\\\Kv,\n,}\z/d\˦\o\Ϝs\/Oi۶mS Ù~hY0\\\朽0`\s\\z\\\[n\{\TUV5\\0 M\\r\\4]3O?aHKv\"id\%c<*\mb[HN z&3882\\_\\Fq< \\\826gksY&v4` x=UZa\?\*\\y\"Os\+E2=\d@\\\\@=U4qzy\q\\\[\\\}Q\\\EF,nyG\W^5ZΜKf(9NV\r$\\tl\"\P﹟v\zQ\\$D\n\1W__\A\3A&8M: jJB}\kޕ K\D \ \ &\iB @THCA F\Z\H=\\{\3\\۰a\E\wv\-/n\=\\\6SwaT\ҩ\L\?;?fO`p\j0\-\UVS\Zp0\\`s\n*\m\{h$[md[B\$\O\\N\f\P\d\'\\9yG\ZӮep)\\~\\w\׿\\MKt\^\I?5TAlav\\1u+{$8\nGq|#fK}[+\GyLSǸ\Ϊ&da5PYz8\L-\rvB\*i[]p\t03\\0\\N\3!_~+\,\`\\\6p\^ \z+\\ov}\S\ؽ\e奎pYi)xs\\\\s\\\\\s`\(3\\ \\7d5k\8fǼlDc#G()A\w:\`\0MdM\\цP(\~MRN$xY6K\G}\\\'|\~\/\e}\0\\$=b&98\\vRX\\?\A|N;W\\DJZ.K\]z!\\2\2)\-\o}k\\z\B0mt\Z \8m\r \\\\\'x\\|\+\\z\IVR\Djr.c\n\0\nx<\\` `hP\p̼\X\d C\L$566J bɼ-++Ν;\'544LA\\I\_\"}\s3\\>\0) m8s\ \a\\ !i8v\\\\\\\l\yԭ#b\0)&A\I\\١#\\\%Pn KYdd2ܘ\qRH\7\*Npe\';*Oː\Sii[\"$āXa\@\'\\ %\Z\\\r24&\nMM\r\{mŊ\Zń\7:t\ \6***\\\p\\\!<\\\p=\\4s/\.mv\]~ӦM \\߽d>t\\Nٴ2/755˗/> ~~\uq\V^\ZM8C\T\'&R[[\Ne&̑\\p\\z\\\챵\`3s\DgbGn<\\s]ٛsi\ irtB%e\:ټ2\i9\n11:\<*b&\\'w\\\\0ut\\*:&\\r+++HnhUs\\"ᒽ\}h\N\rN#z+əR\9-\\<~EIe\_\x\,f\8x9v`xf\\\E\nǎ\޽{MG\\j\0. g\\ZLΑˤv5K\ (_/\[\\bˍA\\;\_u\j\ \XZIX5\ 宪\_WWWc\\/m\FQJ\|wKe\\\\\\\45\+\)m3\sx98\'WvGUY{ѯS$\\v3,@l\2\Y\\~\x\\LFc.\\s0\\;w\}\?dbR Z] rQ9QZdbs\t\|p&\Kv\]vt~=Lk\n\G\\\\\W\\O=ӓػ\m\\)i7\?](L CzZ3\Q$(\v!,@\\$\4\cnEz:\Z\/\N9\L\\۝Pf\a MQE]^Ql&\\\\v7\O\\o\\c׮\\Y<~\\\\\\ \[\)\\-\0~KRȯԔ\J\90b\rW ޗ\1~?\n\\k~+=Gּf9\'~fh\ƥ@\\\0}\\0nnq˪g˖-\\~\C,\\˒lJ>nE\;E\d\%|\"@Lh6Bux_\ ̀D\R\\\#T*ʹ{ʯ\rJ\\\dm>&\\\w9ͫmB]YY>p\\t0c\\\n\\\T\\\vg\\\\\\\Bs\LL\\0\=G|xEJ`D`,\\!C\\j\\\6G\\\\&yL_щ\\ʄ\//\I4\\=S3D\(x_0is\\)1oO\ kx\\'? B$3`\1\\0\wu\\k \ \yny\\kE\ʧ\\Ę0A$\\\Z]\rk\V\\@@~Q0E]P5LdR)\Sڡ\ɺ \bo׺2*\ZNjd>@1%=\r#d\YS4z\LQo*ğ\\$k\\m}dQ\GC7lJJKdvz/\\627N\\\\A4\\\*\\\t:I\')\\\\<37S\\I\LK\\֯L\0EG\\cAmx^\\\n\Z|\>İ\\Dd]Դe\⻬\8%0$;=Pr\_?u\NXUTЕ\Œ!5B4\n\ -\\I\RRR\\S}\\\Q\\\KFk8=z\\Qė\BY!\r(\\J\\V&nB\\ד\\+\]䇩:GbCDAIF.]VELLI\n\\żC\\"(ؐ{f$˦X\Ȯ\\'nii=>\^l\0\ׯ\@4-i`h߇\\'? \"I\\0G*\rF\2:IQ[2AІ\\4ynEf>:B LQ8,\L\\\q0.ɷޢ+\UR\"Ml\CnI\3?\qIC-\0\\\\^Q˰\pYΗr\\t/\\Z\"\\\\0[\|ٶe-[b\\\Riѵ-\-9\\;˒\\h۴\>\%]\Ri5l<\gq\\4u\\r\ r[dMВ,C\X\8*\)\0\\L^UxTҊ\\B^\1h4\\]݅h\@l\\{\ͻ>\ʊʚk^q\5\$8,\`\\jHtN_W\!\\V 5F\q\nN\\r\w\\\d\t\C\Z\ӧ\wi8\`Uuތpy\\\vut\,\=ۿ911ET-q1\r)//Y\\d\H^\Y\PdAߑ8\\!\yT1\\\\\\\\'MՉm\\\\b0[C\\62:F\t8M,;\\`WaKY\{/@;pXm^\r?@/\ H\ah/ssYu\\\ɧ*K#N\}f\\Q=v\ FH~F\'E\Z \g\\\mo\\`ˑ\իfe\3|~\ɣaQHq#Vw\y\9\ДHI)yɫ`\WC\:I\\\0f\mW s\@\\6\ Yc41\ \5S\\it@q\\r\G+!]sw\A$\.X\\\\Bag \[NɌOL\Ł/ 4\ꁃu\\\|\\˖\H˙6j=skKK˨$\* \.Z^\+j\\\\ \mۺI^\s_c|Bv\'lU\n2Y/\?QĀ/\\o-_ >7\\;\U\\\[w\7\ r=Nv\ruTUYQdvX g?\g\W\Y\\\P}}\޾]\;\s݂7\\Q\=]\p\iϮi\\f1\TGOI~e\jjg\ΆO\6q;\TV\ZD\"\mʖ-[$uZ%ش\\0Ә3x\\nݲ`0\\\\ֲ4\<ي*y\\g>s4N*/-%3\WsH\/(4W\|\\`󳤡,ndڬjkh\%c\'ZZa&3[s \I\\} _\\\\"T|<6I\- L_≤0\w\\\\\'\`aLD\\J8\\\{_qglO\f\\\AT\\\O\׮p<\\Ĝ\"0\zfn; ?\&YtI#-kZLFf\_*\Jŵ\\%żn \.\ _Sg\S3@~\\\}k\{s.6V~\\~Q\v>;U\ٻ\r\yX#@/\b^\\&l~`#7\!fā Љ\\\"\†-;)~I/:ld\\}\\A8M`^$ \\x\\SJ\T2%e<\o7)\\9)\\r[7R\? \';^\\IS4:\ZV}{\v\ \:\\\\\0/\\'k)cM-\E$\\񨾲7n\#\$ú\op\\pX\rp\r\\u`ZvMZY\e\\\\2a2$-\\\0m͊e\a\&5<@N\\J\R96\WӒj\+\\\ IN$\\\&\@|~(?\ru&\+`w\hj\B7r8\TTT \@M%\{\a\s/Q<\n\\\+3N_߼&=vXX8\~&!\,\\\r\b\&\g&\\0/Cߴy̩ \|fr@X\\$\a\+ \r,\^\d{zzVU {\ijY`$.]9y9 ėkkk}0#\ri\0I\\\w\Ap_\r\v \vn\& \G\؛7Q=@;\\\3nmSݤz|\1\V#%v.J\WϿ\0HITR1\\454\\\\s\^\K_4?x\60N\0\rͶb\\01\_]א\O\\젣\\\\/H\{v\\G\:J\O\\7Gԋ\\-NS7w\\\\uÀnۼs\2jiP(@eu^3\#@k kQ]\r^\\8`az``f##O=J/#NE\\\\X]\\'L\3M6)˖- 5p\ql\ro U섪y\2$\M8U\\h\{\!R\\\ef8\\\\!8_\\\n_hߦ\\\ \\:G\\\\\\\6X\Ν/6\n\\H\'\t\\X\\\\\\\q\QH\4M\+nvםvͪy\\r\ \\DBa:{\B\-\"\\\\n\\Q\ji֭;[zڄ\M\\&\R`\n\%U\Ԁk\\\\\R+#*\尓%\c?XSh7\\\\[\') F\COeeȵ\^\f&j\ǎ%l) \\,E\'b\".dC\r?uaR\\\\7!H\\+ㅳ444tʥg>\\\rB,xܠe,+\Z\\pgXooo\n\\\\ `[\\\\7\\GU\\W/\146W4\NYū++a\Z*\'55-\mk9 1G m[s\9^nZo\\J/9\\E\D*K\_\Z2\n(++Ӣ\蜿! \Sd\@[Á:N^e)F \\\8\rCFO0s͚몜\'}\Xȯ\Řf\2\#oEHO\K\\{\\.I\g^x\\'\'i\B\\\z\ ~5u\֌3Mj\\H\B\!B\\хC\ C\\\0݋\\\N;L\Y\\bUlr%:t\qE^)UdEpkV\kJ+֬=\,&\|` \\$I%WN\\Mg)-^ \'^/7\?H\D\\rv!正\鹗_\ 2;\}\\\\\`\\ M g{\\\\xM7O\\\\LE-A8\D}`͘P6\\`\A0\*Y(癎\U:Pa! a\\\_[^̕\Z[\\\\0o\<\w\\{^#\ks5\g5`6`my]P^\r\\ !eؚL\\Z\\C]7bmF7W]O\&%g\\yf\\{wtuc\\"Z4d||u\\!]вT*onn\=\\C0\_ϐ\\\q\\t3#\\#\\0\\\tyڊ\\XYt|ҽ\\v`\\ޱoٞ30\A \/\\e`q\KW^I\\*++,\+%r*46D8a-3\G\T\\a\T\+S\0\"\v\Va\W\`\n#A?/ \\$\$\'\\>|x\x\\3`䠭,i\Z^a~\Z~&y\$&8YsM̄\dx$==\3\#G\nT2&\kUiQմ\\ro:QM|\žbj\%\MD\"\&ǵ0&7g\\nnW\͓,xu.\\9\\甇\~ߋr+O}\_T]\n|Z\1́S⠑{ax 5AHϕl{_hB\{Vp\;\ L \1\?\kLq,\l\Լy0\u\\ 0ҬX}\v\0\Z7\\\P(KW\c\\\Gx̧Tjooy} \r@,\ -\\J+\Gy3\^8mn(*\\\x\\\Z\\\x+K \\+\rX\\d\D\"hg\n$\\\n[!Llb/U\5/\r7\y0Cx/x\%\n.\\03ȞıB\\0nX\Rp:\t\+\\P\\\3\0&̚\9\\n\JP\\]nڃ_\ĻKMZ\"Ę\\J\|^69}\gU2\y +\r=W\\j_\\\\\0\0\0\0IENDB`'),(46,1,'IP_PBX_symbol_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0w\0\0\0˩Hj\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0BIDATx\\}\u\й{\'g\`A\$Ғ@RhRZ\k\>\c[\\DQ,\:\Z-\\zuv)T`% $\ys\0=j\\\'$\nb\T\{ߗ5M\Eź\X_\E+\֬ǵR/wm)X\e_X\\,zgF2\0\'A\\oE\\J!A)⫖f\k:\5$X&Xo%ělY[\\B\҈\\no9˶b\\Kv aėy\\lL!^!@+\\9޲\\|\\d01p =\\\4d \\ \ |\n[7\[Ez\ 3@)⻱yy\񵛟[\\\4ޫU \\\\bآE\I&\na\0\o0\u>䯬$ ,\n6Y$I\m \\25 \\cm>k2\D]#\E}\8l;~L\\\Z\t\\f~/A\m\DQ\$Ӧ\'\'^\\ Ez,\ \\n m6٣[\\ML\\\HAt\Ę\@:\\u\\\ 1K\YçD\c2er\\\Z\ڲ `\߃x\8d\M\rP\\Fk}5-\\T$\5HCZ\\n6Aa\ZA3\\-%\Px@\^\\]\#\\\\\\EU;W>(\P%\QI\ j\N7\H\ZaͲC7\D\\t(0ˆ \\b{+\7M#\#NX\\n\~*\+\\y\\mbDƐt@s\~7\\?s@\W@\~\\w\\\0\\#\hZ)\\\sC=\y}={I\\d \1#\d \ Hu[W\\1\N4\'X~i9\k\'w`\W1~jkʡuM\\)t:]A5zʾJ[\\M1U#B6ѭN\\TA}m54\U\\\<\k\]+\\\}$k\?W\\g.\N\\M[s\W\0\"\M_\/0\/}`wA\\\\{쯾u3\בqw\,l\\[6c\$\޺\\ 0\0<:\tF\'6sR\سU*\嚹\\Z k\\\P:\\vϓH\?y\r\v)\ZX?\\w/`\w磑ˀ\0L\|\\0#E\ $\N\\\r\\:rGP4 Q\P\=]f\&Ϣ\[K&H\\gx\D]\s\\PYU \\\\D9\\ I4\\g.\\\\\*\\\׊Ī`\{Fسs3dY8}\"\\ 61\)\~^\D(\\\29\#P\\Asc-l\\@86\p˾\\zzO]dGN\.\\\\w\\[\oe,.\\(T`r:\>\\!\!\Z=\͟~\{G\0\\vbo^\\ <3\L`x泗u\qٔ\\\\\\\eFTQ\~̯a+ps,\D.U1h_$۽H&\ҕ4\\\\"D\I8p\\\4\\\6v.?\=l6},g\\]4 \n+\q\v\?\0|$̄\"\\\Sp@X`X \n\/=\_\KC\0\\\\\\n\\\~\m@;z\8\\\^\\X\\DhM3օ\\n\0\\px\\.\'B\A|\Ș@B&8ψU\\ vl\4O\{o\cg`*\(b\\i]\- >7|-\\\͆xb iHڨ\\\\\\2\\0\\IJ+\1K\v.U\z\\\ib\+\|\\LDZKB5\IL\ns\4<\\\\??k[\Z\ɩ\=0e\s:\!C\C\?o\\~\\U\\0g\=0]B\G,\\\\M٭Zx&_ʜ\kEqMS-*\K \\@ӟ6\\T9e^0\(XlA\u\ѐ\\\\+g\0%,\ջ\\n6\e``f\\\^l\r\k`ώPY`\~\\ 񏟾\0\:\rI\\ZS\0wn\4\\\صdœI\7\LV1s\@\+\B~?\Z\\nK\ܴ\\Xk\ZC,C) aPw\Z\\\G\i-\7=\\0,\F{\oC!qK\\\\E\\\\Rl\pІ\t2\E\\z\z$-\\ /\\\=C\)N2~\ǡ \z\\^Լ^7*Ix\\YWP\\J0I$œ\Y\\\*흅g^\"\}{\d\0gKׅ\\\\\={\;k\`r6\\\\\o}\9k\..\-p㮍VbK8\8H<\Ղ\Dw^8p\\u@2H6v\"ع*\Y\\rp{\0Ǧ`l*\\ H \\\\\tӪA\Q\Zg\M>\h\_5\Xl)%\\S\\C/*\@\\?\z \Ͻw^S_ \\6/C ukS$SCHˆ\\M+\\\CRg\\ZX\\l\ʮ޶il\Іf\Y+\hf\9\+\\;L֟uE~\`\\H$\te\t˖&d\1$SG0\Ă(ZH3H\Er\}or\rN\\3\+N\C͎_K\|\gz\\PUUU\{\\vnvT:}f\\0K`\K\v2\SI\\\\F䯀k\+\hfΒé\ \4VCks=\ \(oxٵP.^\T*mQ^\,i\&!1$ g\J\\[P\h\X\Ml2\':u\"\\0\\\\m\")eR\5 \vv\\no$z\c٬\ܹsp\\ \\|?\\\0\\cgz \ZKB2\E\\۹d9&͵BZk(_\D\3\ (NN 3(\\v gPhTO4<\' \U\4u\\$6 _\g\ûw \\\\0y^2Ň q\\O㧧FT)E\ pM/.V.\ 0`4*\)(Rz\c9r`\\Mq\FTUWM\V\7E\0%\f_/]\0ZA\B`GE\ C099\r\xgyPy)u@g\ce3\0%5;Bscۺ+>O_(q\Q8y\ Ce\H%\[v{ikHE\\#L>}*++\Z\Z\ZPDT2\T\\n:\^.\0!\\\ \L\(\IԽ:*(\@3-\"w&4\\\\R_JAʹ\lljcǎRHvg\~gZ. 0T\!>99 D&&&\\n.\E3\\ұ\\&G5EaD%\'3\PF\`&L&_\pј\'.D#T\\'a\OX\@xdSg\\\o\89,\\b\*2C1\\Q]g\)9\\aE\\e$tH\\FX\\n\\߲\)\4z;@1hȦSƻ+b\0#\]s_\\z\\@\c4#I\\bV\syO]x !o\N$\`Fd\tL3\M`\'\o_Q\~39>r8X\c\n}eE\F\C_Ş1Q,H \3Xp\\\\l\o\0珦\DӯPp,\\k\\2UoV\/\|??y\B4AJS\\\'\\n}\\\ 9}_3y(|[\\\y\8s\o\\\F\8@⋮Tع}+|\(\0\\]\ZTIL\jv۝\b(k/9<\\a4\o5  SDRA\,\ \\nWdžD\\\@d 41\"\ZԺB\\n\\ \U sS\1>x\d\0tBFȋ\X^\\\XL\%O \"K\Z#DB\/y\'O\w̬X*l\ϗoi6\A3-\\%\@\d4\\湂%\\\8r,\\5\tmB\\r:\\j7>bw\ \g\̏\\\ j\kZ@+\n\\\)\rP!\ujl\\#?\b]W\DIs:\0\\)7\\U w:qdX\"Ų\\'1t&L_<\\5M\\\\$ʠw1\\L\\7\\\|`/@+\.P(_!>xי#\}\\kx\ 7m\"\0\ɐ 49\\\\f5ܼw\\i޺\xJh-E\n\_2^J(ȗ\Hco͕͈\\:U\-n_\(`E$x\Z\~245􋦶Mw{<(W*\gP\J\~>*B̔>N \v=q\W~F9>Y=_F[\0+ݡ\sY)ZF\AS\|CQєC\5K\eػ6KE%S\\g\\\\\\ub&0\Υ9P\\\2\ \\عyM\r\\n\:\+\\\K1\R\\D$<9>\\\?\*i1\\CC_h\:vj,\ZfA!\\\\\\͢{L\y lPlc #\\1\ !aq\ϑ* FY \-\FSg\B4C&XY> 4 ,L@Bw:;u\^lT7ɽq\\\rn\\\޹\\&Ac\\SX\f\B\3\\\/;~x{\0 \:\ oh\bH奜e\ʫ:s|\\߆l&\\?\ZL\4\ݨF\L\'\̉N@}\\\\oiln\>\f\f\᳹#\M~WL&K\D21N鋽μu\\\\\DNA@f\B\e~Y @l\\>\$7Ά#P8<3=\ Es\&\\>6\\(}\\i+6^\\\3\Л6mb\\\\ \o6Eߺ\\\v\\ٳd2 ===\b\F]ek\res\O{[j+[ZZ\V\"[y3WUuI%\\/{/,\Bgg\'\\L\\"\jF\\q$M<.TVVR¦FC\Z\r YMb\'\j\^d\CKK\=E}[\S܌\( \"\6\ia5*\\\ڊ\rصkW W\S\\n򶍍bss3\\B\\HdDaY\\\'L\'`\ᶀQ>d,S\\Z`\ײ2\3R^^~\\dL\\q\߰/\"\\\\{E^R\޼c\D\%`?y\\\M \O@\h %N\"\\\|;\n!\J=\֎\9\+QB(+E&/YDx\9M\X&J\'&&\HT \r\rt\\.KE⫼<\nX\Eѣ=䓰y\f\e}\Q\\]K2@(_W\ P\6\oS\X*eP)\)\\ׂߦaق`9nmmi`\P0\\"*ar]]\0\7\\f\\\y\0N\\ؼf(\~\Y\[R~\rˆ\\xl\CƑ d \|\\C<\'\j!$6Bʩ\fJ\"\U\5`˖-*)O<\\5\I\mXj\\Fti\\e[G9\\Pj3\r%fO\GB\ %$希Ѝ͍\ ʛִ\+\n;;\\\L\nO>Út\S槼\\X<֟G6FB\'\"FeRw6 ~D\|D\#\\i\5U)TG\=K\7\?i\\d%\\@4<\r\\;y\\\c\CG0S\\\B~??\'Ba I(,+\`*S׈]:u\\02Jrډ\O\\\nw\{~\\\݅ܙ\'\\\\t&\\QZ\l\URO(J*%D\%y_V$PcM \@=b\+6AA\1\\ 1>cN7\\\7dq00d{٘ai\\BH\'\\P\b--c\\+\C,mJȵdha΂h,\]\0\\&K\o;\g6\\\kZ:n\\lk6\\\\]\ak\6\\~2I>\\Ty=H\\Kz†:T\4M)#H\\!AUP. \S\\C #J5 %\M*\UVtfXZ \\`ؘl6<;\ zh 2\tXЄ\"SC3}\<T+ki\ž\N,M[@2\F\K(\nΖֵ\k\\nG&)\rJ;K$UG%*]ՓED\F&\ոޛҴ\Ij6USr\\0\]W9\UAP\ Cd\Y%3339D1\@\\\\\\ZV\ K2\0ʦ3PU\tU^JnxxAS\D\!x|\W?RS[w)\"\cϟY\Rsy\\v\BpE\\Y\!mlڮ}2X\Đd\H\L@_e1\,,od\\\\ԤrD\V<3\\`M\\ޫ\\F\>\~ B3 Q\\&?\\#w\74ܦb\xQe|rjzj\pl9=f\h\l\,22A}\s06\PR\m[u\ʞ=N\I|\\4TVT\\2\\\\0^ODaZѧ\ann\\\4(m\ 35FY6u\\u\ B`J$\L\\u{{qo\l.\D<>\k\KB\0ҙHk.\_xs ^88W\&-n[޼\"\\+s7\w\\n\i\BXP\];\[\9mG^Jͱ)\xĚZPB\\\s\'dO\\\\rF!mf\,#L2C\rוT՚\\d\":[ ݃\\d+@[P\\"\%ӹEbJXb^\'\ԥc<\A}\@P7\\'ؿ?\r\\j=H|B \Z\֑\\70X f\;8(/\gA+\\3\x͂\04\q56s=\b\0\\\\\Z\\[[C\\|f\}{\%g\0\\jb\n\\\X\rP?K1\z\\ \ZY\"\~\-p\\\+\L\\"4l==\!hK^\f S\\J\;\B\Z\06;@,wp4cR\$>c$\\\\\M\ŝ\K:vle~\Z\ϡ!z\\\0R#`/+[y-\G\\8v!\ w\.X0(oC\K\\\%M\%@\\HpF:\M1pnDID2ix\Z?\\\\\\F\F4ƾi\#\\n\.(6)\y2\Ed\q\\\A\\\\F>Hu`7\\G y\ \\tH^\GU$.\\ +HDq\\\ Jnt\\"?栲Ԥً\\0OdPƇ\ \\}V0*VEٍ,B\\TOYa\\"ì-@5@\C\\^^\'hZ>t\"T\S>w\\"2Q(ɘ\\cEt.\`\[|e K禳i\F\Af\K%!\`kj E\0mMe֡(\\\\c\D \߶\r\N\\$Tl\\ny\r\\r̉9m68\\qL$b|2PR \zshqPI\b o\i\\ZS\tFЭR\w\w\ƍ`2\y\\"s!3\w~_ѭ\hCHc\\[̱:\7k\\'F\O\a04O]\\"Gǖ@pa\*+!\\\\\k\ִ\bx5\ݚd\nI\?M^ꐝCT\ K \Y\nc\%Hq#\\\ID DuI\|,<\\\k%Zz?\S\\?7j!\GsC&\\h0\o\TCCCv˖-\*&\P3t\@\\Nǻ_-\t\\\\" \sT㧺y##l f*\.\%z?5\\BEy` g}LؾeS0\"D\ !cjк\\\ٌ \zDzI|\q\\(.,ud{\8ݔzTNM\df\\\<\\u4\9h>\Z\\)} \\ \\\\J,\CP\L2*\\6V\rle\Z?)z$\m(\\T\\\\\Xdz\OP}\Vk\ ^\\\\|]P}i\\׶.x\IDQ[\\\\0;y\`Ǩ\3 1D:w N\FF\R\* \dI\G\\r\z%bEC1$ި琢o\N`\e\X\\\΃:\]o\'\"Ae5/)4PN%`l&\S\\}}hn\ 6\mfA0/\\n\4\nuU)\C\\[ ^\\\\{QԔ11\\Pu5\\)EJqWOggrX4\$b\kk\\q\5k`\uX#\\s\ة\0>9\"\\\\\\\\ֺO\\SdGG\<\ݽ5R.\\1G\E藕@\\S\:U⢣\C\HZ8\D\\\. l\\o,o\dU4)|MS½k~\\r?\n\\:Cg;~\ \9ꐨ͍\rm\\y\N)\\\q\:z\\\'Plԛ\\,hnߺ\G1\\\\\7< [\2e\0\n&#CÃ\' Ah\9\,P1BY\\ \"kE\ltV\zb022\"ȋ!0B0\J f|\\f=\[4ҹyUo\\\*XRy\r.\\3\ZWj\v~\\Y\\98x,\\\ccq\\bO=\ЁF-C[K3j\TY\U0\\\s\\؉Ӱnسۚv::!KQJ>lݴ\Z[⅗Ç\ZM QH\D*\K|\R p8m\%*\\\\l`>\\\Z\\\($ 66@m \y\-ќg\p\ֱ>DLO\/\\\\kl`d\0R\\U)\\ vI\߱y\a\\!\lD7m\\Zd0\W~\s\nu\m:\1\ TC:\\\\\]\j\\Z\Z_\C\\>\\p\1x\\7\[Il\"\\q> \^ͤ\`I>1Y%z(Ų\nk׮\\)\l2˺dmSc\Kk1#\R\r\\[լ\}|\6\\\1>\b\?g/\ \(\ى)}ݎl,\\ ½}\\\Uy6I\\\\](Rαw\\ڠs];2\Zs7=E\j\wn\7]\|^\>Dj{ᓿ\L\\\h\V`i|z\b\\\\e{\\H33\/ԔI1`P\z~\0k\T\ZEBl ]\Թ/6Gc\̑=#|J!%\\'\\o|:P\L^\\?$\^DMAUl\\\K\.:D7H@\Z\\4A\\\ =s\\= M0\b\D}H|\\\a\\H\&\r\\\O\\ g\\< Y\\\̲T \Z&\ޯw\nOL\R\" Ri,\'\kyn\%o\~Ռ\ֳ5@\\~Ox\ a\\\\~\\\ \I:\r (\OA\\ 3\\\W`r|\^B\B\\O}\\p\\Iв)c\\\ID\\A\3\\\\X\E$K\\\m\\h!T~C6;|TA\Eo\\\\eU\h\5YT\U  >\\xoI\\?\Eº\r͔ƫb1^\\\',\M\\\0EH\l\\n/j~%i\GO\\RHoq/=v .v_@e5c(Z4cUm\k\\5 3\\\= Ϝ\:!H(K\\gLV\5(a};TPTT\3z\g\Q\\\\#e\ѰvN\ܦM\Gyd^8\*Lb\\\6zCo4 ژ}\\jh?*\.{\\UUԧ\\͹\M\M4m\\\\\)96\\2\ʊy\Z]In3f!\\\oys{29\\>|\\O}\,\ШɆBYU-\\\\"\̖^(\lt*Mօ\ag(\o(2j%dsYMRs,\(2O\\.F/4cf\\~\u\\PX I0U\\#y@\\\\*\h\"\p4\&RRB^{\\̓F-\\\ˠm\9\{k\\\\3\\+\gi׭;vq[ǏN\4>\1\M\0gV>_\\0t\\RSXLXҧ\\\w\\F\u\\r?a&{\n\I\0\0Šm K ?\¥$\H^;\+//. abr\6;\S\"yI\:19ʹ\\_L2%bޔ\\\ڥb\(G\\Lc\\\? d\\}PYSüsz3ZO\`#Z\rͨt)D\X<)wڿL\t:DqA$W(#h0\\\\9\8amZ\l?\|{MM\r(iTP!\+\\\{\~ˍp\\1x\\9c\\5SA\G?\R( ž\A\%lEF\\;μK:TR\9*\0Ѝ\&\\HiVX1d–͝,\\\z\7е]\G\q\0\p;=I\\'.R4\\"#\|1 3^\n\/RbC%\\E\(\~q\0\\]\,yP\>\0/rKPIN_\\k`R, Q uH\\\\ PA\,\\nx\\\N8 G\\/ΓD\\\n>L\\V\r-͍L`\gv\\IV!-\nM9\\\ۑAV\*#j\F\Ta\"d.\b\0pa\S\/\7\z򎉉@ZV Q\(\Zlc!\O|\\\Z[֠\a\v\Ņ[\SO^\B2(~\98~\4\\d\"&\l.6\OE=zI\PօL\\r\\1wϏh\46\6^\"S\.΢f\D\ԅB\Kd\+˗\Zt\=\}}}4\\Z=+\F{\\~N=\ \Z7l\v\\\"\:>5-[Qa.<\\a\\瓉Dʑ\\({i߲%\q\\S:\\\4kY\\\n\'\^\AT\7]\ N$>y)r\ _P\\1͜pلcd\!\gU\I\öq 3\eY\\r*\'9C\n$\,77\\\\~L\u\;8UG\'\i^3v@c簗\O\Ǚ\\];\V PDlB\\\78omEe2\r=Ƞ P$\'\\e@R!K\rj\./C\h_?*\I662\/\\S\8\5FX\" Wh\"r\HQ!E se\`2\\{.v]xP\v׭m)4k\ZOJ\\\\\\jAy\qVl2\\ ?}\X\\M\\\\8MN\\j\"?i\JRJ\\ѱl\\e\\‘A\FO I1|~2X\\ @EōΞ=P\*H߀ʧ\K\)\"\dN\M\"\\t=,w\7vv\u=*\">2({f\\zp\Eh\QsOO\B.{\6w\ \\p.nV`rz5\IH5\\#A]K\>\nf\H\\\\\p(_n\vhn7\Z4K\'Vlj.t\\R\nػے⥰h)\42\Z;$_4-t{~J\\x\.߫ b5eeeT(\+)\\\M]\\\\0*\\\\\ط_\\\֚\:\^S \8\\\f\X{MM\3\/`Z-sVrAS\^X\\\\\\&\\ZuS\\\r\\\g#8\=|A|\JfI*v^ `e>U \\\KL\G\\'(\0\D93\ǑKU:iM\F\e=\yJ35JQ\\Z~r\Rv.RQ\\}d\\7P tJVQ\BaaB},!\H\P\\\\:\#1-.~w=9}\p\U\\0&j[\ZS>|\\\L/:yd\"\"\ȶr݀(\!4\B\n#ճ\\\olll\ظ\FT\&D\ZCP \\鳬>X\\{\\n-\Uu^M\\u\-\\X&!K1\\PUYw\v 8h\.\Ѥ]\.\"\\H\\gad<\\"e~\BN&&\rW\Ɗ8p@\\\c*4\\\\?v \Ǐ\\+<<<@¸l߹\\\E\"K\b\AD\-M,c\r,\;v\<\\S\߾\(\_\\R\O)\\w Q/\\\\/\P\)$~?sU0g\S[\J -6qUަ\\\\u\n\\bx9Y\rq\$6 \\}U\>\\\\RU\x]$:WAAҌ{)`px){\ru\\\\b\+\,$r\Zjk\\;`AR72/\"\=w\ƃ=\fHE\\\\t<3.S\/\\\\\i.ߜAW#\I$U*\H[\\b?7#ITz{S}}.\\\ѹ/-pD^ ~X)^\"P\&(\@p\\r\\\\\5*q9\1\\\3!)~\}h.Fg\\3\\ D4~\\\o\'X\wj`!\@\⁇\̐\" \\$ƭ w<K;y\E\n\5m}\-3_U(P\*H\Z\G\PX =f9 ALތ\"\\]۶{\\W\QP\h\\c\\\(\o\e/^͋\'\P\g5@_,j|V(\\\\'pl{+k\wge&D\\"%\-vu\\\]!H4\:bL*B\\,8Nc .t\\X,61;=\=$~YE |\lCC\}{ְ\#\"($Z[[\P(2K0i0\\\f\\MS\4p\\v+<Օ;c\T\\Lж`m,rr4|jF&F _>e)[RUi\9|\\\ 5U\\p$/\*\F\1*\B\{hBF]\\\,,[S r@ p!4Y#xh`:!^\L&bT2Nٗr}_+9=\Cѹ\I) }x:NC©Z\o磉\eż~\\Z\\/.\\'l*\'?lxpɮ`@%\\d\m4\\ ȏ@s\ ^ =t2r@\͆SB42}V\hmLi\`Ȯ.R?a9 DQ\ZKc/\"\i`\y\\⸕3F\".>[?J\$\Z\\K\\01\Z\\\\\<mhhp!\x\\E15^\r\\!M5/ oL\\r٘7J\\4TX6=\\0Uujt\k\OA3\)уlo}\[\\R0@)F(e5\DSq;\1d6}\.\ 80\ERN\θ\\\\\\9(QEy]\" \\y\W˦c^\O$eJ\'@%f\\ss}UfB+i`1>\ZY (ޗ\\If5\ev6 @qd`L\]\\ lJZR1\r@O\\DF[Oj7\ؑ%\fs\\@߳\2ueNg.Pv\t(\859ME\S 9(PF3\\c%\GattTdY\EJ4\\$3p&pq\\27B\F Ac.l6\`\\Ei-(e*\9M\(\\\\\\.afJJ\2G$)}\\\C$\\.ZŃ\n\x\\/\4/ \\m\\Z\Z@C\\hjZ6?1C)\aLU%KΤf\\T\\m\h\gd\EɽM\\\)`9`(ToS\ 6RDd<\@88pᾓ#\P\ZAFGA\f\\'\E\\5;\\\O\\d\\\>)教l\K\\0K1Cyy0<\%\\`uD }}}<M[#\DDl$\"S,\;BǀuB3Q\c\\(Ue?\zr\\߿\,k \\2f34A\\\\XJ\ \"#C\ A\ZSiX\\y\\\\\h-\\DmCd \\|\\ \~w怣\\33,k&F(!MJ\#\6V\y\R.Ce `\$nݞC\9g\i~\\Y\\rI}\\\;\\I\[ @ \\Q-Exd\R4\S(L\.\\x\qJ[;\\\\\}\"\e!۵\Z%Z\\M\0tchdEwg\ B|\5#_iV1r\i\@r\5-+\\\!V@_\\ܮ\'d\WVT\Z\"\\/\@Jj&\Z\\QWUN9.X\q K\բ\xc\S\T4рsc\\EA\$\K\03ϣ\W2\PDSs3zz1<\NK{[d`\\TDTIz!2\P4\\@~\\\\Z\m(\jT\\"\\._T*\d5i4\Ky\T8 \H\#-92)rr\9\d,\\'\;U\ \\Q)>0t&HW\\\9H$Z\\\Q0<:6o\@<\8d\\ǫq\%ħ Iɲ/\\\\K\\\I 3\IL\0q\h$\ʼnK 2D\gS m\\\ g\]vY;l\n\?*\b\˧\6L_\ã$\9$\ZT%\p,\rOzBQ\ 8gpZ\\\\ QLLL\\\)ٖ?dcz\\|:\h\\\vR\h\\\AwhJuf>?M\\\8n\@6aemԑ\y\s\\P\"\з!$5\ }4vss(4\"NN\BB!\Ë/#\p\\m\c\=\V\\Z\n\\\VO\\\|l\\GH${\\\\ʻ(\Tw\\\ QAZ\!W\ WooG#2V--\\\\^^G9\\K vP\r#\0\0\0\0IENDB`'),(48,1,'IP_PBX_symbol_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0,\0\0\0#;g\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0hIDATh\\Y p\u>s_\\J] F \"\\@MNbwB\:=\8m\N\qbZ\\\\x&S\O\ 4M\\ \\0@$!\k\J\\\w\@HJ݄\\{\Ϲ\;\|\`&K?\e\ݜY\.\\{g\n[!%G\^/*AҐ$\c]\PT\\(+\kD*S$ɦZT\*)BBdbeV/))Mb\/~{\a\\\'\IR\x+}_Ci\JV\m6\,\,d\\ʞ0yUa\dV[\\+\2&^Ѹ6=+gQ>zk}\I.GV9d\]9\\r\"\ ws\R[˝\O˾}3J\Y-\\/\\\Ι\\65#$z_\\\M.&ȅӥ!<Ԡ DАtH\:g/\\"-]̽Tomط\\$?cZy\ƜK\``E2%dT\ϔM\V\\~\\\\CEqS\\\\?o,h(\\XlD[W0\X\nbX(lN=F1\\\\w4\\*\\֭\o*ܞu\\r\\Q\n\h0L\>\z\\>E\\nz\_\"񩝒$\ѳ_\ \O\ig,sv\=Pn\E\3-J\0`&\y-O\\;\=b\*B\DN\RlZO\WR>\O\j\\\G\5\|\8E4:27\`xIZ#J\O\\\=r(\ng)9]\B\~\ fs\\~.d@:\S\\@A\E\\z,\d\\enMuv_g:\\$gI f& \0f\2z\\DSS p\?q\}׮/Ɣ\\r20%\ܸ4HR{g/Ҷ\Pv\ג ]ئ\\\\\ \"qbdpp(;B \\TÃ\#Scū\բ ,\)Ea/\)<>J\tvQ\\WoJ:tv\\A<\ݻf\ݫ#4 G&\T\\L頚*\\\t\h\\ %\YL v\0k\"+u$IL$,Se+6\Rn\\\6\\rݘ\\\Ă\9ʤ3g~\u{F!K\mT\[\eU$E s\\\k,\nC㔘\\QՅk\\a0C5P\r^\Ƞap\\1 \la*\\zM\'Ʈ\v\\{{g\\l\^GB\\A;R ,yBqET\yu)0;@ܫQ*\\0Q@u\Hߕd|lMwݥk\\\\\t\\i\o\P˥&\"\ݡ\\?\JA13L\\\\UV/DdN^~\\\\Ғkppp\oCJ~VUU㑖{}U~ćG\2d\r5ǣ\D\"FzOu*N\'\\b9}A*!\\ZOq MCDA\Q\=\\\\T0\<n\p/,.24\Z\\ؾ}~\\omnn׭[g\0:9\\\c\bco\\I,͑9cNu\\,J\cl*Gc \nM`jЗ,\vmS)^/_^Z__\\|)qBvujy\\d\ݡ\eܲg\7iHA\\0acУ;i\"]԰j\\z\\( h IUgF\\- \Z\\/S>\\m\?\\O\o\,)\r\|r\eAb\I\b\\JS;\A\\/\J\cn=x\2`\v}\\\\\~HgR\={\VE\++^4 \n\ yvA1\ʒ\ S\" l1\t:ӧN\9r\0rVx*\ZW?\*+cԴ`F~XG\\\\rK,\wt7w܋{\'mLP R$\9cu8=\}-M\'\iIR\'\F3,\f\o\\drl\"\l\}˖-\0c̝\HAi+;VfΉ\\{I\;zh+:1\"\K=T寤f\\jGe.MĒ2gNDin\b^\z+X\P\\@\\\ױ\c\ QF׺/R9vi\\nXlTā4}@90<¢}\r\\\"\\]\\|g\\\\\yq\ ;\*\\fQwD\\<\-[N\\\f\C\ N_\y0t\T\neU`<%Q@P\$\P\B%E\ |\]V\K\Ÿ\\\09@\א\[A+\Y\GH4NX*)XL\\\ d2bʸ\jJۃ5l&S{\\ H\\I\r\9f\R#:oS)y}p\O\nz[y<\T(\85,_B\\R\Zx(UFcd\\Xہ+f^eG\\'bZ^?o߾\\2o\;ihŋ*\_9ͤ\UJ\n\C\'O:\\vSU(\̇\\z)PUI7\\\Dљ\ % q\n\!795L5S2]\\\31\\:|i\9\n}\\9t\ ヘdf\\\njZ\8>0\\Ep<\aż\α64+\@\U`H\\\0Z{z\Z?2X\\\l\نuC\\\\n1 +Hr\\G\\\" \\t6\s.Δ\2\\\#c\\I\\5\,)\\\\]\\AL@˗.\I)`\\i\\\7\Ƚ䃡\\hd\\"\w.\\\EΑ$\ZÝ_\nPTfD7\ybYJ74a\^\\X\'sϲ\\$:ws^\g\MDÀC,J$q\rx\ z\c|\3kV\w\=aTrZ\̦SO\*=\\_ݸi@_OO\'\\ţA[\\mP\\x\\\\\0KKKx@n޴{\|\E\As\\)\P]\\߯\z\%S7ʔ\}\;.rHm`\8 ~\\\\EW2cX,\ v\n2 aD\97[\\.׹\\\^\^>\y=䇴+\\T[/\Av\\;dG:klXAiSS(bPdNh\\FP\ͻ\\\\޽{M9\4 QH@\ jjj&[\:\n9LL[\>\Î뾁\<ܳԙ\0,Ne\\!p\:T>x\ȍ4A<\Fh\Ёn\\ɏOןDН>\\\Ξ|\&\? \O\Mδ\F|.m Aq\\y^\. ݮPMF`\Sɡs\mSw\'fᙎ\\h O>Ɣ\o=j`} \k<5k\IUR_\I\)g\' D13\\Ea<}f\_\?>:xQE꫉ٴZ\Z6\n}\r\\Y\\nގ\\\w_ҳ鳀\tn?}\\C\vՌ;Ke?\m\\\ \75_\\B>\\G42<\\\\\ܞ@-\n$Ò^ܨ\\+\\#`\\\\PHfG%\Zj\g+z\kV\:{G\R\\ب^q n­_^nhhA7\a\~\\r_UH\#\\Ȅ\~8\G x *S%\\Ս0\~\\\y \\\㳱[7`\--- \'j6uz\j|^1\0;\H\j\T&W faEoF6\oq\Un\S[\eG˗/:)jR o0V\q\\\g\ZRֵ\Z\s:1QKm*!y%Ht\\_\\ w\7i\'z \b\\r#0\!l\8\1\z\\\csV0\W\\hEp\p\NUv>\˪ +\p8<}\\1\׮y7\rX\4% fAa\\\\\\\U à\&I\;\^\\yMlS,+\\1\\)Q\\\n\Db\0¨\Y\3AP\0*\\0 븈]4\0Xfock\Wֆ\&\>E\͎M+vpL\\+w(\\\Q\\LM\\\\}\\.x}\\\\`w^4V\0}\/\\\\ N\\\'9ra88\s.\9 0,Eal\0\N5uu46\Z=w\`0\ \0x_e\Z\]vUWWAf\BS@\0>\Z\*soÞ>9L.Ǯ\Ř\J,]Yy:ZВ\+6\P\W<\=_\{u$\\.\b\"\n\\dYVl\\e\\%j(3\W\z\}_\\ZZ\4U\r1TUse-V6\1{M\bM\w\w=\\s \"\KMfӮl\q/蟄I2e\^%I/kg\\r\}scn}M<\nw$\t!\on\\mEUAU\7)\\kd~\q[޹\0KVd#[(QXןY~~.9\\WU*UFΥ\\'x\9SRpe\.u)6\r E\d0N\\ 4Y#+Ff\']\)T_K\-M\QSc\\rA\\\#c\\d\?\\\lQ=\o;\0\0Uf%HMȏ\o p\ufxD\0I|&\\\ox)4c3Lz\eW\J\}?rڵ\|L\wSKS-\h6^E\1J$R\\;!J\'or}\\Hǵl.O\\:@S4Ad\\K_/?\\ļ\0\&\\\\\ۨj^\^ ڠCUǟy\iwHi\0\\(EF\' TZ(X\j\\\m;\\v\\Mo\޹ɬ\\\r 7\0a<\w\\\\|\ \\0\W\\\Qs(tJ\t<)f-j \07kz\ôs8| \P}0@\=\ӗ\\vQ2\\ɤj\0`@~\\0I\\|/A\}\M\\V\oޤ\}\H\e\ \\v{|p4aR\\r\e\\\\0\ɼ&#|\$\܆\\j\\08\V6?\0\o\\x\\r\R\\n\0\/dm z7q\09-\\\r\~\\R\\\J\\\\.\\\0S\x|\ɺ\Ew;I$.f6×Hd &\ް\\\c&\%4*\s\#Oܵ\\J/B=+\C\'z\3 NV+sቔ\\t\T\"N\ [~*.]\\|\\ϥb\\\B\\\0f ?\a$Yh\x\Z똭\Wr\;=HLڼQ\0fH@@vS\\+\Z\dd\9\Z\\\0!\\ȉ\,^\\\\]\\V\Zڬ&\ym|vll4\^tdh;1\/\nʞal\[~\r\\o\ g 7%k.׿\mۊGGсÇ\\\M--k\SUp\\v\L6H&S\d:L\&Ho\\\ހ6W \4\0 ɐT\>\0|\\Q\\ŋK\֭\a\\S\\\7pwww\'&&\0Djll\3\\n-\\3\}\-\,?)W\\"*v>\0\b\\\\\_8zc\Fhz~Вh~\\(;\\\Z\ue\s\,%$C\\mK.\;=\ VcHHV4Uq\ʕiTi\\0%\*\ӁZt\\\Z,\\0@z}}b\\n㡇\\\0EڑW\n?>\1\\[\?`\鴘\(o\HT\j\*\e\\Z\\WÍ8\\rp\Z\'sRK%v\T\م \tWz\|\\O\*l\t\4ݟJg[\7:|Z\R\˶@Ű99\WW1\ݰ,\0)<\\EXQ\{\\`ڃ>h \\0\\u\2\T\H͊ V\\v\7\f\\\YZ\\o\\\\8\\\/\\\\ 9\ \Iҵ\'\iAJ\2&\\ZR\r\0V\>;i%\\\\SQ[[\8`\\͛+\qvě9a m\F\mZ|mw\/ŗ|~\bu\\S \Z.)Nb!I]F\6<٬\ L\k\\ JI׾\\S\RKҴ烞\XGEhAPf\eI-<,\'[\/g{6M_\,\dq. N\\\k׈\?\\748/?#na\\\\"Ƈ\ǀ\r@\Jy: $\\\x|Íb_l\<\8k5\\r:}-W\K\G&3\l1 lg8 jsp\")y?Ĭu&Y\\{I\0N\\n\G\YCcճ\sh:r% zg\^\\\\FkW`C=tz11&\u&9\"F\\\hT\օ\\\\\%!(Cr\\\\\`|\rn\\Y\ Ih<2DnO]\E\%Ֆ\+\lR)\Dz G^R\r[h.\s\\{\8J\9Q|⶛\\vQC3ș,i9\\(\i\n\HgHqC\5~\\"T\ZQ*\&ɵda}\Z\\\xyK7\>D\e\kv\n\\˼3&ߥ\\d\ӌoV_fjeqۂ\\M&\\[\}\(j\<\j\\\\Smm\r\eeR\n59\\\'\0?\\_\hd5(\"(Z\\5\\Nrcp=P n\ 2\f&IEL&E- ۧW{/+u<̈,\ce\0\c\\bIC(H~Kxa\\\ݕ\\\S\\\%y/\\P\M-4\"\0$Z,PVf\u \0V\¼xay\\\\}\\\Z\[o\\\\\]9\\jN})s_E@09pO\?{;vO\\y5\\\\›UK43::\\:+RL!LN\\؄Xq?\|tNp%ıo\\n\\ Œ4\0\5}S\w2ߋGx\\\\PO\촣k\ͤH֭\AY\\\0Ϲ\\d\\Z7Dlza泷Ht2\ *Z\_ϑ\H)@0\P\6\0ZZ/\\u\\\\\vP2F]?`6JtN\t>T\ y|./\eސ\\-[̈\GL\}} e6\'t}#]y\0{KRt\\ Zb\CPS>\9| ڍ s/o\\\!\<\\E\\\\T\"s\MwߵID\\PW\r Z?\]XD\l\'Uhd\7===2# TOJ#\\\#nYH\|A!U\Ih#ק;n\Tcd{\\%\ٹh\\{3I|#J\q:\RSẢ\g\4ƥkWӲ%\ٱN@\\#n\*\Z.\'UUy`M:[\\\\4*v_@.!\'5.u\u5[K(h\ֲ*\Se\\#}\\F\\\p\@$2Y\\\Y\\\ y.O Mw \\\Seχb\y,\@b\`\6[4A +Ĥ*[WO\\ E\^׬\\\aEa\ M\8e1M\$v\\O\a\l}LZu\E(d%D\"\\\#\d2\Eƴ 0c\c\\FB\\\<\\zqer p\{6b%XG7_J5>?1- ~;OIX\AhL%K\gh\1q\e\\}\\׈r(\\\ \\\۰o|=x\I+ w+\\\\\|\\\EL&\jLҌ\Zy\$e ~ք\0\r\}M(\P>9x͑e\L\\e\CW\Jh⎏\$=\/G籡 \r ͸>$4;08$-\\7^!\,.& \, >11y\\GJQ\\\Ҭ\9\\\Vcc\k\\t:.r<\/&z\\>\n\亂6^\'H`Hg\8 j\~r<\0o\\ kqZ~1y/luV b\\\>\\ߏ\,pK3Kbefz\\\\r\\͛mp kd\k|,\\\\\#\7\~\6z\\\f0w\4\9`\umHZ\\\:!L_hH\\"\MܸQ\L\h|t\\\Z\X,\Z#\\.dC&%\\\@ΧFGGճ6D\G\/B\}\ݗ\f%,aĵzBmM\Zn\$ꊥM\\Q\dzr#\\\n\\0zZg\\\199I\\\\Ho-\\~D|2s\{䨮\_Qכ{\\\s6E\\\\TXD\\\\nn1n0\\0@8NF\z\\u\\K\Z6\0s$\+8Z\#\?\\͐\0sP)\Cu #\\Vę\\'nmIڵ\\0Mm\82L z΅h \k\&d1g`r1\|>\\\]&\wUUh\\O\h.\\\\C=a%r9\\s!\;oO$1\*i\\\k\\\p#c6\as!\/<\~/\0\\_#\TH1Ⰶn g\\\{pڸ(T[wE, es99S\\Q\\MC\{\\\r7\}\&!Ji\\\\\\{\d_\r7 \9\\_]\#\\)\0s1\r\\ȗJ) Z&I扱\(E\-hhj\F\"^&1\^8U\"EK\\Z?\\*@;EU\!\wޥ\\\$U݋\\\"655U>\7\0fQ?\;\\0FB2aJs\\\8H\\ j|\\\Sm\1OI\n4\\1\v\e\{~\\v&}V\T2\Ģ\\Z \2< % C\:L8\@\\\ \\\Wj_8\\\\\D*\\狲a)\\\n<⫮n)`\s\I>\\\"߿X\00\L\0\\\Z\\\0 \\IZi9Z\ue\t\̤\^\\傮\\Li\0\0JQ0aZV\\\O0\0[\s\?\\.E\^.\T=\z׊/{\Y6\Y \VQi[#͢\r{ \uAPs #4\\yE\\\\0\YG\CI\\\\"27*\\3\Z9\\\0+ϼ?4\0\0\0\0IENDB`'),(50,1,'IP_PBX_symbol_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0Y\0\0\0\!]\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0,QIDATx\\} ]gu\\۷~wwmn\dI^E1\1\ !@T(& a<Ij2 \L0xP<\ @1-[mɲ\n\\\\\\]\\^wl\\\\կ\޻\99\;\\:onԙ\7{\W\u}6~6\Sm\~\`n#\:#V M\\ུ\n#n\\757\Vdlg\'4݉̓\͛ה!\*\$t[[7:\3p\rLm_\D&\y}on\Z3A\\Ncc[\\\Vc\\4]\|\\rm\յ$KSEYdYvȢC\$ N9qPe\\B4 _%4*RM(\\"Aw:f\p\\\+ \\\\\\\\\/p\=\\GQ\rCG\\lFx\/W;UQ\ \0t\\TDpP-\Z ~44&\1|G\\/=\K?\ \r\\^p\\ᶭU \rLcj\\>ؼ\\\5<3иNn `1\\o}\\\\\_Q4 \\C\unVWA\sĤBGlt\\W ˊ|\GmNY&\UD=k\\`\dsL\/Ecx}^T.qȇ`_1\\m\\\Ξ~{\\\\\\0;\\y\B#9\\0S\Z\6C\\};7#j[&qݽ\p\i}\\p\T_\]\6CTK\\r\\\X5\\\ڼ5\FǦ\v\\2 H\02:\nI\mt @\\ \\\\0\@\\uQP/\D (,\%\E*\"$I+,vP\瞃7\<\r?\\\¥PAn\woaHhq)*(\t~%\\\\W\׍,g|n1\\nI\\l\{Z\Zj\\nt\N\\32r\r&&&9\0@UI 1\0\\\\0J\Z&P\\3^\r\`N\t9gŜ<+\\\;/1j 0Q^AEX\`\"\\\\\J!>$\\\\\\O<;w~!b\s\\V0\|x?/\\\\_S1\\ZY#=7?\K\xrAl1\"\sګl7h\n \RvK,\qҹ \r\iƼ:ES]\"WENu\'(c\e\0/&x\@\’\Y𝞞\4-[CssTWW\2\\ |\$^*\ 9\0e1D`nv\\\qP) \R\TͰC\ܔGwյ\0\\iim剘\\T\z\3ee\\ZQ\| ~d2 \0\p UW׀\\C)uraX0\yIi\'IjZ`nn\y\Z|fc\7{RvOWv,\Z*!\\\\\K+\\Z\$O\W\ \5\L&\r \ZI/#uH&B3J\Z\r \\\}\MC\T&DxK@^\ntmff\L.\Vʈ\x,חa*MUK\\,^*X9.ZF\\\0\K\I3bI\\!i]_\\F\L\k,g0RT\"18??-&\*6eطh\"\\\x\,\Z?g\&Ǣn\f~?迃}\\/+\ZE]Y\LvU\O\W\*D]\s֥\\\\ͿX\Pv\l5\g\0\r,2\\nׁF\\\nf\O33E\9s_b(gJq\Icܵ\M\\ӈh\W\0m2F\hL\\LX{\[ v\'OJb\H\\#^^H2%,Q-\s?\\$d\\I]K|qKR\h\6|  \\\%\uP\\\\4\y^\}KzKF<\\\7. _ZW$?\E>y\\Q Z\\63\oA6 ^\ui>d\yh4ɉeuQ$2\%y\3\\\'\\\~\'\\|\Q\\06\\\"\sFes\P_דgN\O\$ \Z0\u\֍\9e\A4o\@\ ͠sp͇3fj+\gVAf\u51\3!\_\3\d|\\+ٱ\֍[\\0l\Z9r\[&4;=~\\ٓ/.N\gI\TTj(\"0`|e\~\0O~\\f\*{)Kq\\\n䵡؎\'|\#;v\mέ^\K!\epOu²\8`r\D\\f\'G\\v\\\!N\8\SYT\y .(\lܞ\GzO6\\r\rP2)\z0ӱc\\\׾\5f?VPJSK\asR)ϋi\s\\ܼyKy}cS:\ʼȅS\L\"]X\\\\X_L\\\L\8JsB9P8d͙=\\\]\"{ǹ\\ MMM]@ԗ CCCBcc#ƒ>\hT\\\\\\\3\\\ٲ\ٳg%\`\\d\ŋgldw4\WdEM\\\y\Qb2C^ \0ɴ\F\e(\ \*\*D\ԼW4bQṪ\$Č\p:\\\\8%T)R$+**\d2)\ZalCA\y\\n2CC7MGoTIb&ț\Y\|\\\9\Bk[8y۝4\"\\R\\Մ\x3ʺb\tbkka\6=FbM\\:\YY\)5\\rliiI#\M\'H@fɨ\Q!ᵉ Lю9\0=z\\ޕ9 \*\e\v#h\Zy: ԤOS\T\[\-:O\Ν\#WB8Һu\7nB B)\ﯭo8\"\",\\0\0e!IŖN&za7J\4Gz\"PPrx]%BE\\x\\\\k\tTw#\\tO\9\R_\\\\HZALK\'+z^T_\Cf3CϐEF3\ZC4\"\\`0H \n&CV5\@qx56E\\kf\w\\\;YҌ\,)V\·,h\C\ZE\G:PWW\E5Ru\\\/z}f\z\\\$4\B\Ǣ+w()\"\\c} }.\rN\n\,Y\,ripY&\ɡ\\!3rN\n1\\'О~i\\\a`i֭\\r\\\}\\\DeDGY\\\C\\73F?+\y\rhx\U\\'\\\|^:y\n4p\\Өz\\w\\\}[\5\%`rz\d!Д\Ҋ\\d\Wr\r \"re G¨睒\Ӏ]\3\*IL)FBZ\XEi[Z\\\\R\Q\\\\2\\)T\\\\M)E\~KB5޿ _XxX\\\F\\uG\!+c\Z\FA˞\:\8\!.!LJ\nwm?IJ+NA\\0\r峔}\07:EٵgϞ\\}\\nR\X\.\n.x8%\kF/_\&\M=\j  M(\\\~\\$G\r\5}r.Je>Ps\W{4D\ D8F%LP\z\\Ğ\NUUU~]4\\R\u1\zfЍ][\\n\gQU\\\\\@s\"\\0B\!\z\׉2\!#\C\|\"7\\xȌ UDr1IE[\\\\\\L 7$,h&R\_\OΠlRoA1MJ\\&p\\r0)FJ4~\\>\2\X٘O}\Sm^\UBf G\$\$\\\Z{\<\ކ u\"O<\1X`*Hk\Z60\\48\\\\\\n\,\55\"*Pr\IrIe݃ gbtp[9\rJ6\llJz˥5ɘlx\\T$WG\%{\\\%L3\'Ӗ\\b\n\\p\ۡ,.I팎O0\\\맙7J\rup\NWUrwW\IM\Oo\\p\\\r\K\0dXt׷};c\r<\A//\T\\\j\s!\Z\$1U\\ \*6\0/\( 8\\po\FXKJȘy[z6\Z)$DR?61\JB\" C\u\\\a$ 9\n\?0TƂ?\\|\\9p[9$΀0J eE\nТK\Ԏv\\\0oC\\!\B\ZxQUUK\Z\bK臰Ux\g\q\\/ \ \\t~\ {*4\ru\\P\\3_quh\΃\n\308\}\:t;\\\\\Z\ndƹ] PN]mm͊\crrM\#F\BF\D\\"By8DJޞ={yy:V\3ֶܽT\et\h\7%\\\r2\\?$n\Ui!{\\k\kc㠾q\OKc#472X].+ \\ZsQMfB\\\'|\\BUv\\d\XѶ0\\lJ\8Y.g\{42ѣ\ \\x\ \\ \\r\Z\9s!(66ɘs[(=\"!{zvd\DSuhw\6]dzs2Z\A{q\\Zj\z!S\\9Ŏ45?+?WfzI\}\\\\\l\^\n\۵ \j\7O۹ `vn~\l\*\'ggx\\lp475ƶVv\\^\\M\%\\r2\ч>\h\\\\\<\ o:h$Pte\\\yGٹ9C\U I\x\4M\D\ .+\\xɶ|*(X\y̬7Q\>\\\\&#YYQKgz\5RJ\}{v@Oo\\r04A[\"8\":ڴqtl\[\A\\\#\Ѐ\\.]{$ݾoCNt^ .\\&ި \!\~\d\WyR!S\rAK k\M\\\z \'+|\!\\(e\_\ͮ{v\{\\\t#1\\' (N\\\\0-\[\Ohkjo\\ق\\̗h7^A\\6z!hs \ޱmق\d\n\d4i߼BeSX\^<\UL!\˶jq$\>*9Q\n\\+u+^g}T\\o\몱\d\0G\BL\UӉ*\\[\ߟ3\W\"\&gs,(ԡ\\\՗\\I}\c\ \\\\ųwfbL؟\r^T鲑7Y\KyJ\|3ID\ B~=]S\;p\wߺpZQG\ėZ\\".v]a\v\ \s>{c*U؈ \\\@\e\ n\\w\z\>2H\hq\,<\&{NbŤ\z\\ \ip\d:E&#\AϷ\\c2\ڧ+ـ\\\\6\ \ 蕼\\\\.\S^\;t\\<\gh֝~\36jD#\\Ґ\\BՒ\9ݪ\hy\R:Ys\= *A\0\"r\:6\\xI\\\ȩ6\)&a\ m-\T\\Q71$d\\r\tɻħRh\[\P^\m\r>3,\\(\u%\!\`0説,C#b\PlE\^x\\v[\ۭ+N\\\a] e,[^\F~CG<\\֓\n|\\ϣ$\R5F\\qNy\ZS\S\jL 5I[BX\U\aD\;3;{\\9>\';22R\l75n \nVKOH|΃\rUKK\hǑ88<\\\\\0\5t 0wp> >KE \!]\hqScttd\"b0\\`ǢT\p\0\$*-hD7Ml2:y4)W\^\\n\\4a\PjbbB)N\\Eba\ @<,\\\H\eqia17L9\@G\ٟ=ϐ½wO|p\\9p 5\(zk8\\P-e@\\\ N\\0sņ@\\\\"3N\r\ZK\Zhߴ`zP\OB5K\Z%\C\e+ \&\0\\/fv\֯_\C\ע!݀\6l۱\\`y\A\0JCR܄Bń\\.&\\)\c$PGS\\>0?1&^/@ljx \NI߮\\#v`pM\\'Xz \w<\N\\Z\d\Z\u]Fû2\Q\8\4Uѕ4E\\]JL|衇\\\\L\"\!6u\\\_\z\7o9K%7 S3(\\3\\\#[\#~\0vlκA\\r$P C6}P _\FAD?\8!\U\ԎNڎm\\\Zk\Dl\|9L#VJ\\y\1;~4v\bjx\\nԓex\cmnh\h%\ZIIJ\g>\\SUUb-֨W奉( ϟ?4a\~,Řg]856>Qo\\;\I\ʞp\P3\\\r4\@K+*\fmdp2ltt4\\'Nd\\s؇؂\\Etd9}Á\\޾~ȓ4.xMU%#VDZ[\[D;~\UR\@g\#m72e\T\Fȩ}\ػk; \ $,\QyT\\r%W?\ுД\"uL\:\xOJ \ZBfQ\\8\5[s|c}\\\\lZ۵\\0^{\6x\\gΤ\\\\,F0=>\ע_H1d\\޽{3Tʾ\ZދeI\n4t\sP)4\1\#\SH\Q|\(Ӈ*\)Y.vEfƟE\E4M-,\\\\K̏5T\\\kFE[\-\\WD4M\0\F~L\'\~\n9=\:T\ҳSX\\\Z!w\\%\\\\\'ʪhϗF\"\qēJ\nrȦSq\\\C\mť\n\\3E\n\Z\\\^\\=!$ `Ox\BF}+@uM5\N\\\\"\[6\`v\\\\gI \\\nqc%`% i@!Q-\\mRT\MRb>\%¿GP׉R5\\'fK(M]eRp#\L\\Anj\\\%ͣ_\=76\e(eөT*\\ٙ;z\\l3\\ 2xK\x܉\p\\&F8\d`\~\\}\0\\TVٸG\R\\d\0\ jw>\neGz{>z\J\xō̒\7x3_UVUULNN\\\\48Ř\H{\"8\ZI\ZB\\qXK\@6G\\ 庠׫K\M)Uk\\a\+eج,ߛ@#adK\V\\ޏyfQ\\3`\ \n\Zi\nB,iTDEbD\`\ 5\`{3@s jz\g}A\\\rdthP4VT,(\7\\LF\\Scod\z[\ZZ3/M5-*2o\\\\nR0iz2d\\\\0;\\R@}?\g\V\\\)\\ey\3͈e\$9T 3H=ڨEZb`\-!\'*\&t\(\B*Áp!c\\\kLx\\\0\\yS#\K\̙c3%t#5˖-\c\O\\z\x \\;c\­\\Mm>֗ \\0E\\#\\\i\j:\\\gF\n\nCE\ ٚ_-Nj\"z ZST\KI@BC& GnWH]ao2\\S\')s\\n-\A\\\g)Z\\t25\ӴD`[\c\iA\[T\\׍QeIu BZXhq(\iCjxZ\t\ko\\\*\F\\\\\b\\\"עbtJ%\#2-SS<\\3\2\\lȊm&W \\м҄\\\0\0\0\0IENDB`'),(51,1,'Modem_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0M\0\0\0nHl\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0(\IDATx\\}x[י\B\0\\)R\"EJ\n\ݻ#\v&cǞ\)g&\؛8\\Mvvv7\og\vד\8-\*V\nHU\$A \ $@P\-D\ \\\\\\$\\\Y~tv\D\\\v \\\\o\\f\\cŇ\}*\\\}6I}?\x&|<\<^\]\\X0\\8\0e\\6\r=\\|\>- \6\x\\ϭ3\\R=\k\\kﹰo\ 6\奶5\0|\n0>1\zA|\q\n\\\5\\\]\\?\\?\_\ͭ+\\\0\ ?g\\\t \\w?DZ^xk\\\5\0|LaN\0,9~`\0\\{c\\<s\\\\\w\\\1[0\24\.mh\\Wto,\-\\\\\-%\\\v[\\0pyu\ZI4\ch\8/\9辂\;^\#ex\YdS\}}\r\0=\Dž\r\\=\0\\\[݃\\A\=H˙\*\\\|[\\0\\l\׷`\]yǏRKK&\\ɥx\,\[\@\n\2p{\?g\0(݋\Ilw` \7j\jRG{;55]\q\n Դt\\Φа0\\n\n\ؿ\#`ݗ<2\\0\0)]\ӱ=-\\0\\\їt7`\KD\M&JyM :;کfggI.\\2JLJZ~>\|w@zc7@\\\\/\\O?\\\=1l\\\YLTs\ۯD\"\\*(*$wzjZ\0\\ddeQ(\02<!\0)\]\r\@Xu\X\n\8\#l}\g&>u\0x\\^/ݾ\\{wn\~\'^g\\\ӧOQ\\ˢG\\\Qyy%\\]pA\Z\Ih]z~\r\\\\\\%aVve(A\~\\`RR\(\_NB,FF\\{\\\\r\<\\H\{\L\n\0|\WH\"=V\Z\\'\)y=\JU7\B5\ĉDu|9\!t\\> :\\h~\\\/$LJ-H\\ DFFR~aG{zKs\\L\0gdf 0k\.h>GF I\&\\dI\W ]\EL\wc\\/\\O\0VI\cLĞx<;4$$zU\Ï\\tt\\1:uꤠ\\Tڶm\0\t\9>{V\\\\i \r5P}]\r\@=)=#b\\\ g\\҂4\Dss!Ydff p S@56:B\!c\\\ \\\0K0\$Q\0\+]\:L\I|\\\\ \\\02r@\JL2[~}̓\޹ \\\0\\P\CV\ʍ\\U\d\Z\Z\Z\'>\\JRظ`\rrx?s稭Eh]10!!\0ʤ\W`\ \\/@wBWZ[izz\n KpZaNEv|\\(,2$\\\! #\>O\ZX\\K\\ R\0\\+\X\0\W^d \0xf*\}\Ce%\\]P\\S\\\U\2S\Ν;\㷓*8\;v\\r+m\0\K\\Z\,\\0R|#\5Ȩ`\ha!Z\nAF\\\\E!|O\U\B\HO\OQhX8*\M\\\\)\ݿ\\\\n\0\\0\0Qk|\\\e:{\?\\ÇI\#ho\~*Y_\">G`0\B\o(2\\Μ9C\xlzlM\"\\[h.^@,W pnf\p\\1bQA9p\8+`\\ R)`_X\\\n>\\1q\B\oe0L\r!b8\\\ey\\1\->\D\\\(ֈϾ\$>\߽:\W\r\0\08/]D\+\x\BRqJ\\\\0TUUѝw\)l\Z\كHN4\"ܺv\\AZ\P\qAmm\0EY\Fڼe\7\P[SC&\ ,\+\0xNX\:Aq<3Azfzpm-\BoDh4\%p7\gDZaۘ\b mt\0&6\\\V\5\Zf\\n%$7\\\nK\\;׿\\\\\\2\085{ϗH>\1էNe\K&I\ロv\\-\yX\s>\߳g[)NA{{H[\\n\Y,\\\+ ӄh%̌%\7\\qL)uA\ˁuL02<$FZF%\"}\\3\\\!\,\\Y\Z\0\g\`!\" 3\:!Z!j3ntnÊ[_\\o\0/*\|L\\n\0\';\A^i|\\+\\>t\ \\r\=\ݾw\\ 5\ȇ4\r޵{7\Hz\\GDž\* A9aN7!ؠ\\%qy|%`&A.8g\\\\n(\\5lj)ϓ(\qUXƠ td\08\^H(\\\ \r9*e\Z 6\'RM\5\/I>ĤׂG\I\/T?\ت\0\\wo\ \\( >9Ӎ\Ա#T_sA-\Xikyupp@8r߾}~BC\r \r\gy\fڃs\A\'O\r)gg6(--޼Ξ>Mm\\r~=)p\T\\+.e\\ \0\\\n(\n\\@jh\w\(=;\r!9~bb:#HJI0\0ftx\#):6^\\a\!\"B1\"2\\0\\ϙH}@V黥%/œ\Ƿ\\$d;:\1\n \Pd,+\%\0`A\߼M\hD\'\0x\Ըλ\z\\&gmp V<̀\ F\X<\W->ˢn\\#\\1^\0nٲ\ \ngT.\\8\w\0G\03`h܈-^\\\\\s99 \a<4J2\\2.#[`&XKa!\\Z\\c\0Ӏ&*@L235)t&:\He\m\Y\r5;3LJr\:\|\;{3>49h<@z\\ڹnlT\'-~PL*\0pN9tm\}㞛jW$\\\s/\\>\}\rT*mݺv@4Ag&8?77GB0r`pwc&$\D.r\\\0Fx\\ZmP~m\\\\m\\\ph;;!\nM| M\\ !\0JL\\\"uLM\@  pmI,&\vH\9\n\&\\\f\EEik\n\r\\RY #;\|\\0D\\\\P\6ئ\$^CE\TO\0pnl\J\\m_\SP\z\\A )b ![^P\Q\y* n\ \nP4\\D\C\c\aaS1\ 鿱^\A\nJ\c\{\-#S;\v&,r\\\3Dn\\P/\\ FY\\4\\P?\*u\K 6\i6\a\fw-(y~rW\\*\Ÿ|\kI?.\nH\\\ ~ϓ\7\nz\Gz\n\'PpcVq#\\"W/\;t\ \ns\.\\\Y)dSS8~\\\y\mڼ=A\n6>#,&[\Mb\u%c\ \l/#=\gv\\\.yl2s`\8 Vb\Ҋ3\\C\9)Xl\0K̢\\!Z\֧\0\Id}NFFmDxf\;\x9B\\0\\ZS\\\jœ\\g|%MaO=\[=m`g\^JINN`dd2!\\\\/|8\\ǎ\\\\AE\\܍\\ʝgl\\\)\n>\\\\ \\\\^\\\n\\dC.䀙\?\&Ēໂ-E\SO=%\00\r\}\\âR\A\;w\\\0-. 8[md1pt\\ij\\\vlce=%cv\\*\PFQL\\\r\u4\0\haR\\\tFLE\\0S\\UBR\0k-\\#p yb\0.epȲ]f?\7^ꆴԔ@\\+qD$nw\\7\0dr@\K\\0O亱\Q\|DJ|7~1b3l\xcMk\\\'&&\\\\\K\\h۶DF.\\0\\\\΁\\%aYdV\ A\Ȩ(ZWR\nʏv=ݎD \0\*\ea\TQI\\\\\(G$&>QKO\wk\7\S{MkAxO@Il;\\0\୨\\gBB\R&* H\\i\n\F^/א4yq\Q9EC&\ +#\`;o|\\nx\\\\u` p[aC zz\cG\\/\p \j\\ē_FP!\\:A\\\A˳\,\;X ]\>usaBvNk\H5ub\\!\6\\\\KuB\sj\+\\\'\\\p(\H\\0ҳr`\7\Z\\ae&\\\U1\B\OnYΩC,*Y/\q\]ݭ\ x\\d\\\\n|\of\r(]q \*\E5gOǒ \\"8y].\']\$bPEQ\&l$/V\D7Z\a`\3O\pI\\UU;7w¶K\ngpX\ A\y\\\\\'x\0\\Crm&\1M\\\"V6\\\\v\7\b4\\K1gI\͕ȶˢ\r\sy\s_A<[c\\\q4\ &\rfggyB.+5a(\g\\ƾ \L\@\\u4\P\\-) (=\@tn\\\ l\\\f(sBl \\0\\p\G$l\.\{\I.\D-\3424$4GI\F1v\>\\mB\\RԵt,\\\\0gWlє%J\+ \\\G\w>\j\wޱ;\gZ`\i\D\\\\6xl\)%>t߻BR\\Ah\Hqd_m\Ad\\n f͛I/__\N\\\"1o\&\#\gO (\Lqv\\r)a{\\\tX\\\Q\Z\#*)\\\\\ez;r\C&\<:\_\0\, \' \\0\F\h\IIIwM\nq\Cd{D粢(\\|\n;\W7n\ \{\`\ee\'p%p{\.\=}Z\0<\ X\ʟ\7zK?t\w\3\rő\RI \,\\i\\ɮ\+W:u\`0\U\UWZ\n@ DZ\0\0\`N \\_\\̬ \r \\A\\0l#Ӄ#ט p@E\l\[ :7.\\s\}b-\0O\\@v\ DL&3\\Y\QJ:!X x%\~\\0v5\sa\9\K{?\'ĄȨC1y\@\:33\nm\ş\r\!6|\\R?@ഀ\ȑ_8А\D\-\0 `/#-b\S-V 6\t\-h̤\Z w\ 1\X\)G)@v\/V\D^䴰k\^1\"ǵ\\3\\M[*/\-\,\Sp*aD\{ <;\\\\D\*\_0m\\=\r8)V\0\Z\'&&,\\{\Š\"p@\ځK\Z\" \r\rem+pX@7ܑr \\ \"\`:H/N%$\URԻ)v.jIE\+\cw\3==-\ص[\7Krp]<٥, {&tb-T \0W-f\pW{\\/\C&\>\Y<\0\\Kn\\x<7\ o(\Z6z\@ZZڽ#<_~|\a0tma}\\XJ`\R\2hZq=ߪ{\2o!Jx \\\NM\<\D҄:,\c~\ۂmnpp\w\/\5ƁG[\\9\7s\\k\0\&Q\\\0\\6\XkڧRSR*He\8*&.\\\r\\D\\\o@_8ph\^y;\\3Os\9z+\M؂\0`ŭ$ -c\M\ \\U\\\4\Ϡ\@&<{\0o\Y\n@X 專ת l\\0FYrr\S11191OAd4@H8\ܨ\\V-\\/:V6\\ͭ-d4͓L.%K-R\\(d\"x\er\R X\F2\\\:(H*&\_\8ghkm\ޞKx\\7\ZpF\\h\y^nc\_\\i\\ tO f7\fee=ɍ\@t\ J(Y\Li%Uo(57\T\(0Ӊ$\/?\:pCJE\FKdbۍ.\\\n\c\\\H\\@\jf8G*\:o\\\|gn\\ѹf\\\Z\4gfu\\\o\\6\ \%\pPUFy n\n \\\H\\\ iTR\R\\\\O\.\0.w\$U An\yb\\\^<_k\d5 \0H\e?\\ \\y|t\\.\8`OGn\ Y9\;}cUj\6V!`\ \\DGcԗȻpF\D\\뿁bO\n(\pܒ_7.3-r\N\\\d>ϋJ:\~w-\\\Vجd\!\* \n\\\6\tЙhK\\]ާ\^&>sYNNγ-l#3iDNJ\\#$o?\FT\du|\\/\X6\}\+\tS\\\;io[\#Y (\\=A.S`\^\7 ϻ{:\OoO\r~\\x\\2\:/?tWZ\\\%\DH-t\\\/\\\'\ȁilΪF2\D5Q2/\KCAR1|O\?P\'\08·9S}f&|^8׋ ,)\+d2 \\3-\i|\c\\[X\MkS\xoc\Zm\6\c_-\*\0j\"mc8\<n\\\\;SyW0HgɠF\H1Z\_|1g`\\b?280@\\%V\/o@\\n|L\`)\\b\T\` \u\c47\nAb\G\0CXF7B\*\0dyl\\\\ .F;\0\G}\ \ֲ\\ROwcQ\'\\Msc\\GHTP637ZvX\"\<о+ ֖o\\O\څc_\\#uZ\l7B\J\0TMd\\E$\=@oPTe \\\0\\z\gōZZZ\8<\m~rh]\:\n_BR`3\0<1\0?JJI\0\`J\)G=\mz9:<\\H\ \\\$\=\*ޟ\0&.\\VQ7n|022\z8\\0<>!y\?G\HIP\Z\ Z\\M\S:>=5\\\\\(\==\qk\\\}nਗ਼\\Z5`\\"S\p\}\ݿ}\r ׮\0烙áx\\\u\\r\=\G\\\A?s\-\\\U<~˷\\\qں\Ym\VM䴀yꩧ*/߸\'0P\^\qȔ\#a\\\n\\O\b2u \rr|T Ӳ\򭳊ǵ{0\\\M\\0[MDk3222~\\'ݩ\\\[|\1A\\N\\\\\\"\\<\\yrƭ\\j\" h$\\?뮻*~/FFjc]\#\0^]*by\w\\n\gt\\^\U<\w\ʍ\r;xk\0j\"^G\\\\{\\;v\\\6)#\\7\\_\Ѡ\\U5\0\e\0<\O\\Ʀ,y\tV\춅\\\\r֙繘\\\\\*\\Z\0n\ZȓP\\|\g}v\\ݻTT `SP]b5\Zf\cZ\ymX\\\V\r\ /\\\½pF\ܪzӠ\Z\\\l\pZs\\'Q\[-&\"B(.\QT \Z\;Cz\Z`V\t8\/xk\0E\D\%m\\֑\6rgqpo\\i\>\*\\Z\0nm\mnn.\0=݃ ! `Vy0\\V[\\\ْ>)z8\Zۡl`F`ຟg\\\0J x{\?g\r\|\S\0\0\0\0IENDB`'),(52,1,'Modem_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\05\~\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0mIDAT8ˍT]lSe~\O\\6[AB \\\\b ʦ\f\\`abY$!̌?78#$\Z\~[Eh\#,(O{\w~}Oa-\M\\y\{\\\\\\!\\7tf\z\\,cZ\6{zz4l2 pՙqH\tZ˲A\\u\A3\obLooW\޲mg\tJ\n\\\\\x\H3xA\0ϋkB\[!󬮥Nw\\\n|p\GJɮ\\۷{\~a4\r8DH >a$7F\\`\Rg> Sb\h˥\\b\\A\!\ \$G䞠m۰Lq\$O\\\Y\f(\\\G\\\\\\PukX, Lc04I&[4ڎC51Q\\Z\\%8p\\Ǖ;w=\\K\цSFFFPP\#\\\\r;gXW~\\\\\t\Vo\\dž)@8 eyY\"\\ooLcgRq\u\9\آ\\aAU\`b\\q\\>\ܽg\!BD\{\bG{GPX >v\# I\S X>q\\\\M\J$\\-ߕj+?\"Wa\l\f\r\ىC 6\/--A# {s)+Y!I[VJ\Upllll[\宮\[\\nmϯx1_=l\.2\M\*A/Jpڵ+W\\4#nۨX\@Ӂ}\'\kDQ>88` \ P**m\3\\\\{܅\\I85~\ԧ\Z9wqffK|\\Oj4\Z_\\\ (\\\?g.\+pkr`\\\Wd2\Z\Zz\\7nyU˧2L~nn\\\Y\\ \It<\\\\\\>\_\ 8\\0\0\0\0IENDB`'),(53,1,'Modem_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0\0\0\0\0\o\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 \IDATX\\X pTg>\+\n^d\(\Z^\nU\nS*\a\rV\0\\"\ja\tձu:ZG\*ء3B[qhm;P+iBLH\$\\d7\\}H\(No\\\\޽\w\\s\jTU\\\\\V_-Ib$I$\"\'9s\\3\4H@\ W˒T#\C, \0O$?\\\,\u ʲ z>4D\ IQ\G\1\\n\Q\8\"#k(KWDNSGW\\ T\YVcU\0Fc\\hB&\E\=GSJ\\Z\|\_\^}\Ex/_&\A$Rn^>L\32\~ǗU\\c4ر?}\/bײEv~2A:w\\bQ\\pQoo\'\I\P\\Y$#3+\OI`\r(\))\O۶m\%\\Wn\\\\\(2\:<L }>\\q`p8LN\0B\\I\X2rXȀ{&ycRvQ\B%S\\QiO\q^/.Q\ކ\\\'Iz\r\O.\r\r\rQ_\\\\\\].uvv\h\\t~%-\\Q0\IZf%2\S֎x(\\rGip`\nM`?׹\{z\nS2\`#\Cf\~`n\ \T\nG%X\hu\/\s)3\\\\]O4F`\:\̻/\2W+^;2GyK\\7=EZl Q:0@[\g׹\\`\z\\\eC6ؑI\'3a$Q\+t:\AVG\7F9i^\\nN\Ǧh\\tZ\]z\h4ʏ&,YJ\\3W̚ yuvt\f0C*\~Q\0Q\N\\mv\'\2^Uv\'fٔ\ܞws\\Uz֎ \+kV\%]n]Ziy\|\v\GO\F)\\e$6+\પ*rjkm\u(\q!sݗ(33Fpd\\Rg\+v|FcV\\L<ՠ7\}p\cXj\e933yK\ڑ5\¹3\Z_i3I$E \u$7ixD\$͘YNK\\呝CqraD}\a\\r \\Q\v$\\Oj5\\\1w\a\\\\\\M\\͛6C\*\ddt\{\\n\\\݊$Xԛ\\ɿ\Cb:&+NO*+i<)˅?Z[\2,\\&^Q\DJ\HF\ YY9\*\\K\0fV\\|c4rVTQ$a\Tut7c\(þ޾\\g\~\\\\\לFGeQA6\ p\\\z\s\d\\>H\\E\t\a\s`+AN\\(\0\1\B\0c݇Οy\E\:~\\\\\\r\i&+\|c__)5{\\UUX\\JE)\\\"\)\\-%{Ezh\\Z\\\[K\rt\\ux敏\G\\ (R\F\\<%4<\TH$\\0\={~\r6Q\3\n\ʒ\\}\H$I_пk\$9]͡ų\wx]\\\))Ȩ☯\r4\ZV\\5\\F\:\/\\\N%N>-\@WJFd޼y4|\L>} \`\f4RƿԞ}\iᗤ(s2B` \r\mn\\0o\((Q|/\cB9\ -zzzb,hOw7/^vde-<s5>\\k}6 \\GQ\\0\\\\*\ۘcH\\^n]\\3+tX\\K\n\\:~\\r\n yG/@O\/\\\'a\\\\K\$\&0# &q@\W^Ț5k\Y\lߵg\\*24\?\\\\\\܆.\\(^O.wjeDu\@/ٺu뷗,Y\eExr\rW \\\\сp.y3r\\\vvII\\͛7\\\\\y16> \\Y&\\\\)\rϱ!ҬcXg:WnwH\i\\z\ww\-v[\0\0\0\0IENDB`'),(54,1,'Modem_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\'\0\0\0N<\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0uIDATh\\Yyp\u~ q\xJ\0\0H@\.\0 P\ؒ\\\\\\\\\BF\$\\\ \$\#y\\|g}J^M\\t D8\^\ \ ĉ{\\E7м\@ 3? <*\//Kx|6\\\a\^{x\\\\7R\06\g\0H\kK\")\\ \\GBg:4i%@\q\\\\q]\%G\\'}f\cD\\JR)\ˈm6iU\/6JlM؞\\".\\ȆB!\\KT\r94i p 8#ع*k\0\\\RGG;]n*.)p\\\v m۾G*zD\mdJsD\LS\\\"@\ 1\\d\rk@\0]oi!TJ43;C\\]IE\ \E ǞC\n\"KKdI\\\&BX \n+WH\\HfaQq\_}j\\ߝ\:\=\\0![\da%j\`((\\褜\*Оn\Zr8V\\\G\#T5,,,>2 \N\,M&ҧݥ\r\ZitD\\\\/sx\|eT>Q\Z-Vm^{r|\7\4<4D\۷6EKW^\@\h\\XɦM4<<$_\\\ Q6;>\y\$B\J\"\7xo\~kD9$\H-#\r\\O5\\rk\\]\\\\oM\\\K..|p2\\\t:E\c\\\ʢ\\z}?O,\A\\\HBJ\zDw`rs\D3O\\\\\y\̶Ҽ\Bd\\ ?RE&Sшs\\\UZ\\\dW𡳧O^\'_{\Ta(0f4%@\\}S\\F\6휦\l\\={h|l_o\\BD| \\\A[</bԍ0Md\\#i)D\\qD\YV\n<Ǒɒj2C\nR\z\n7@\n+\\\Br\?\+oGcWp\T\ d0R\a^g^W,̇\"7/qc#( ~]\Bw\ܡ\r;\\nW\\e\\fffE\"عt\\[OC\\y\NR\ϬI)6BAuu\Ȅx)R\\(]`9,B]\LOM\֚\ZG\[cl0INe h&\r>\sLRAT-&\p!\\DT\\\0m+nj:6\$(Fc*,./{\l\h\\lF\\\Ixd4P\C=HM\%M%T[[G[nS\"ޟ\\\0^\\gGrA7)##K>DO\r,\\$i\*Ja>;;+\B\Z\-vPd\P0,\#V V\03B\\FY\\\n\yL]vƟInY.\#\VZVN99v:zQ\nݼp;RAG/^L4Iy\0\\\\nS\Ц\\n,OTɦ\nB\Z&5@\\ZsKp<E\T).E\\S\r;D\CeJUv\\)s\u!(K%\0i\Ϡ[FZ>-tZ7A^4-r<\M\ҾcPpf6e\\{\^A{\=\\ l\\V\n\Z4ULOMR*\F\M\ \u<\%g\E\\SVGE ֞}\6n\qD]] V\\\ju\f[B㣎\q>\&\Oie\\\'U\n!h3\\>\\v99b&2x\\\nI\&F}M.\\:Q-d`UCTĪ@ݝΜ9\\\0\'OJXZ\aJlv7jd(e\0g$n\Z\y\n\\( g8\hw Idfa\.\2\\DhV>V\q\\\vvZB*z%\M24Zf\\XP\"-\^\C>\\\97>VU`g\ ,n\0zQRR\\[4|3JZFʋ$500\\Ï|V|~ދ*^\0y\ K\\_\Z\\'\40\m\\\~ubbAtA\~Dva\\\\\\\w\\\\\x<-\n~\\RYUuKXZZ\}\\\ߦ\>Lv\\Z*\}d\\\\MHȤ\-06:FJs\,\HhAH\q1\\tt{z~0?\\\݈댰|\c0r\\-\d2\")abi/\"\0e+^\\/a>&\l\\\gI\n\*\\5\6r)-\Q;\\\c\1\\\\\\v\Z>ʯ}#`mZ]\ {ڠ\Ҟ\1E\ Ş~\K_ٙ\bL|\\/0$^\UJi5b0@D\\,υ\\\}K 2dmhhxs=\haaa\\gF\\\\Nn\\w\\d\=\\\د\y\z\\\F\^Z J)\L|\ѣG;t\\f\\ <}\/A<\p1\\rlt\\'\Hd\\\'`mZ@\JՃtLo\\<\̟\ڵ\Iyܿ~ \g,\\Bkr\[\0턢\ё.%63kmi\\[o\l6\Z\rlȪojjz\Wϟ\\n9 f?\\\\I\t*\ǒiH\\eM\\\P|⟾C\箩\2؏\Z\\0*K\\\SAzij,J f\7\b\G\\\\\~ XVUz`ǡ 3\\\S\:`;?\\x\b\d8\\0\0\0\0IENDB`'),(55,1,'Modem_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0:\0\0\0O\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATx\\\\it\}wK-!$X$ clc;\\'qlfb\&3\'\\'\3m\q؎/]`dBB\Ѿ/%uw\\\iqK\n\\Z\\\\\}\(dY/\R[[\\6<\\!/$ǻ$9^KNN>O_\E\%0)GK{$Y~P$_$\Xy+\䐤*\\x]+-]\[܁}\.=&(\yi!x c\\\d\\\2335M,\\\QY\0z|\Ulù\5\\999\\\Z\\\\\T#9tiV 0o\S\\\\m]>1g\i\V@;44E\"B2\eI\ YP<\\V_[v\\,\r\6\\\\KIP\\\UG\݁\iĕGO\\'{\~W\\\\U\A\U\;7on\Z`Ks{g*\nҤ;\Lzޅ1\BY΁\v\ن\ݵk\W\\0aXf\.\'QC\fQeE%]/>JHL\\488D^^^s\~W\\\뻠C:1_>0F\':\\}}TXX@%\xѼXjh2\\P|B-J_\\[\\\\\7H^2\ZA\4q#\Xn\%\b\0xڢ\@%\ר\8\'6.\\'A\\TUQ \C,!?[7\\\\\!C3\{\6@\8\L3!]d.\?::JW^ \S_o/\\%Ki`\n\\55d4\ZiaJ*(h>utJ\\\Cq\ udxF$DFooϠ\Z>ar *\ڷ\ \?\\0\j\\ \n\\\ǽ\t\\E\\\̬p!!\n\EҍwSdTIR\=/\Z[#ʩF1\\\j#VGa\s\9F\\PB\\\n>|\\\\\\0?\T*7/NK9\\3Zqv\P9\0\=uJ響)j\\Z\n\n\n \\ӥK\"\"RRSi\\ Ҩ\t\\e*\)5-M\0]Y^.j\(\WUYA\ms\\a\N\n 6N\w\э{\\Ё}?\ \ӟCRnHV޻ic\5+W)p;LBVPħyyt\\ f׮\\bЙӧ\Z\5\\\EdQ%\\\F/\\\\JNI--!oQa\0^\QR\BC\"\@T\"jE~`\{-T{ZИQazS*U\\jkn\qR)`\8\\\5\j[\R\Ԟ_ri\0׮]ʘ\w\\o\ &(4\\$2wo \cy\k\L6\\\,]\bc铳g\`pp֯K(\"Nsr>8VgP\9\\-\\\\\a Jc,\D\u\ L?\\q\970\\\"*X 55ԉ\FD\C\\rRc]P3yQwg;\\;\Pe>A\\n\'F\\Yk\Xx\l\\0\\wܻy\ 0\/%%%\\\E\`\1\\t\Q\nh\\\'X\|8\\\\&(9\"{R\yQ%*\\n\3dP\ZXL\\+\n@S2)\dBR.@V\"\P/\E\\\QjEt\\ġr:$\!8@XD\ns\\"G\g\i\\ \\\G\\onp=a!!\\c\"UJU$G\\v\w\L\\+J\\\\Gb݆Tj\=\'\6:B]͢\dNw~1{O>m\6\'\#G>~뮻\\\\\\DN\n\5\\\s\ZKKFʇBb\җ,ܳ\\ \&\\r\A]]Q&\"61\y\fD\2\ yfς7\糢RNl\W.H?\h\ǀ \X7 48+u\75\Z\\)\w|\\;\q \\L\޶}\.q\\ur4\\\43S +!\!;+\ed\rvR\\CV\\b\nE.HI%VK0VKS\0>:6\룺\Jap\\w\\w\0zfp\\l6\W(\ 1Ő\J>\c+ \+\޽[500\0!\IJM\JmiQג\4\Bz#%n٭1\E,,Y*0O 17!QX\nh5\>#Qwܧ)tranE|||ECe q`ɂ6+\J\\n\=\Z|~hx!\on!=\|\d\nJS(~S@wZ\\{n\u0C&\ZqШ\\\^\t\((/-K7-DW\\)\\%$Yd\\.\C\r\X\ZȮS\ҫԾ\Q\ҟ\w?leJںuݿuP9ǐX\%1\\"џ>uR\0\Qm\J:\\Y\VDQ)\nW\Ǘ`P30F=pԼ$\}]\\\Vsw\0p\0o;\y\\S\0\\Z$u\\\{\}\g (Vo \`hټ7\\r\0\값U7H\N5]O/\\t\)\\HR\k\\Z\ %êGQ J\\Zt\le\n\g@IL\+V\\rm\\\Z\j\B! MKD[p\\\s\zF\ \r\r\*\'&gW]c^\\ _Zx`-OaJ0apF\ۇ) 72$.\\D]MuѠ\մ|\UaQQK-\vxe\\\ʤF\wm\$\\#Ô!+AI\&\"@]s\\2D4\\G̲XX%\9x\\ \\d\nQ\\z[ǵXPti\'\O9ūc\3*a6Bnn.`$5V]^\\C4\%\ǯ\rs\>DEgW-\&; \_\JKLmpy\1\\\\G\}nzZt5\\㬀jJ\\TW!1\AVAr\#E.\\\\˙rHK\C\D7]\5\\ r[ ȱcJ!E%\\W\\\\0`\a #\ \0eKK\AM\0ތ\<\r\n\\5\.C\\WG\{\n\]H^W|\\Z\\)\\uki\Fn\щcGQ\\\ \gfQ \3DO)3k%%$%\+ǣ`9ޱ^\(3\>*&z\Q\?lR\$a|W\\m\=\\n\\(++\\M:\Ά\\yHH\b1޸@\0d\B\\\\L$o+P\\gy4;l\n\};B\'\c`%:\Y\\\\Ω\E\\ZKϦ\:\'\8w\47\\+6\'~wã;\r\M\\\\m\'\~\\èiL&\\7\t\Z+ZB4\k\0F 1\'\lp95r.-Σ\=UD\\漗\S\\00\9\s*bų,#5>\=I \\\B\&;nqow7<\@/\\nV1\\\Yn ב\ڪ.\\\#g\0w\E\\\\\Z@\\0F\-\:\͛\?\\zZjͨ!0\{;5G7ًH裮\\\\Ԓ\\\#R57иPd\\\G@7]\-j\bO\;lɿp\\0\*﫩ٺu\ \X-F=\V|\0\Q騨q#;/~\Ց\\\GJLHk\u\Zk\\B\^\"1\Fh\:H\ZDz\\\0\n\Z*}uyy,`; zyy\rv\L;\E\y;z:-!\\PLzlq\B-=\\\!\u]=J~UT^F\HkӒ\ \n<6%?ًba%j\ZI\Ω\\RK[+yyL\\q\\\]%i\F\_\d(\a\ojl|\\wg;ؠ70\0~\^?\Z>`\<\\*\@Cɨ\acbcc\T\\Os)TxP&\`4[NJ={;wNi\mA%uu\Ϯ 1\\oOhz\`\\0$;@HsJGg`Q|++.\\\qu\\V, =\'\'G\\\/d\V,: \\CLK\ \\uDșn\]\Yl!f\z_H\w?\0\ر㳗\壶Qx\\\rX\\'ڡ\%\TU\0\1\D`}iV\\\tn?@_\\\B|\d\X\x#\\\\%w\4\ \C\\\ OI\\\\\0FR{f\LC4\\d\\ٲv\~TN/ Lm냋.SM}#5J\'\^ZE4\ݞ7lQL5\\x\_\\s\r cL6Ot\O\\Cn\se+5p\0\̐\j\:\III/g͜\\r}\_ w`\N<\\\r\?&+\\\Ugi\\}\\r(\1\|a?S\\\\ħ/Y\ZZ\nR\\}BC\\Te\D\ E[zr\n\ ؿ\(U|\\\Hz4b}\\\޼\\\\D$w\{q/w\\e\\А2p8r5yz5\\ \p\\W`a\0T\\`2\~\\\{\;V7\\\\"W\e3t\V\\K\KyW\4\=L4$%%mx\\\Yԗ\\O\t-*\r<Ư#*\/O_<8i\0n%G\謽W\\\awX:\Z޸QU\!\Վp˲\\TL\\\_\Uચ\n%\rB׮]\0\\L)\gJ\\'sJKKE\255Uo\^ 8*,\mP|M}Z\H\-=Gj+\\l#,+0PGG\\\\d\W\\05\jAF11;;߶n\\m4\Z\\)\\wTCCC\\\j\v\\\\|0\i,h#e%``\3 \f[OOtt\4lM>\0\g4EEE%<\ē/LIYdz&\\\GS}s#Pz\V\m\\\\hk:w f@\D\\N2lM>< \\իWg>\\\O+U\\\/z\HҠ\\溚wwZY\p\r\\Zk3+C\\ĨQ\\\ZF<\D5\\SOm۸q\No.\\,Ͼ\/-̨|3-5~\xi\\\\j\Z\\LK~\XS\3\<7==}\i\\KDjJ;b-\jmSoOW\1\\p\ Ƶ\)Y1&^\\|\\Ms[#++k\\?$\\ߺ=\(\"@;ޭ\tv\\\t Je\\6;\\\C4Al{\n޲e\C0RO\P\\\憿a͈ Q\\J\\o\0OM>j:\\?t\\_Z\\f\\k=\\\4\\0d+$- \"f\0.\o\(\Z^y.\vf\\Z`588X\\߯%8?AP66\E\\\\0 1|ECC\\!\\0_\0Sc|;98K:\M_W\OS\0\0\0\0IENDB`'),(56,1,'Network_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0f\0\0\0#T\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0A\"IDATx\\ \u/|j\}\\}FiC\R0` γ/8_^q\y\{/~6M>/$ll\ŊY@HBm$;\\\\ιU\\†~S\gs\=\u\ڶr\\\\}u\\o\\\#?ast\i\ \ p<\/\ \0 \"ρ \`cϳkʒzY_\\\Ε5ܑ\e\\ \\\\0C\g\r\s\\\\\(NȈ\'\"\\86:g]#\\\ vFY`\G\/!K(\%E2J\\C5BE\\.\2h5t讟\R>a\0v\TD쳌a߳\\\^f:\Hd:\I|\+3\rxN\hF|U3iW\\G¹)\&\ s`j\*\B||\8ʨ\Kʈ_\"\Dpb$bH~\\\0JL`Q @-\\3Y\\0ʝ\YOLk\5\`1\0D\\%\$>B6\"|\\cdI\M\\'sL\k\+^\,g$\,\UO\6\' \^%l\zS\\\GpWQfm~E3$_3Կʎ1Y\0JS@?\\0gasĪ[\\&\yxP@@\n\\3c0 OY\ \\ @CdR-~=1\\)\fFamC\z\\ I%\\'S\ \\agAX(\0^3\\~\Q\n*Q\y&\\Z\:HR$jـ\ \nl!`3U@@\\\B]+\2T$ 8ދ\p \\^cLPѠ\\\\\R \n74F\p;\J¶ׇᅂ9Ѓ\\\]\T<\j\y8\\r8|\HK\i\\\aUCm\\\rTQP \I̍3 n#\H6I2>G!\\\\_\Z\'\\¯s>md\01Art\0x-\0MRj\Z\)Xin?\\Z\n\iN7\*0w횡\\r\OX\0±\zߖx\up\D~ ~\j\\\0\ކ;3!u5!\\+4pʉfIhzU\0\\g\0 (s\9C\2mm\Q3\oOg\ntMs&s\qYaO˗̃h8tF\\-(W*LݛH#>\DZIN PH\w2\'g\\!?w P4Hu\kw\\\u]]nv(̱AX\\W)DcDDys\ȇ89Cq|U\r\ `\c5&\l\utj\Z<< qBA \n\\ ϛl\0@w\5 \L\\>ظˈ\\ޒ\\L\̅SLf %\\&\HS4F 1 3\i@\\W`74\\\e9\pN3st\9\\ְ\WH\\r\\eCҙ\\W\C ̒Lg\\\÷/%MP\ϖ\$\h\4\%\\r3e\4\5,OAc)m\r\*\G\$\"\\\nM\8A6\cwa˧\Y?}\YF\=\m,\š\GQe 6\U\`¹`\|O\0V 0\j\05\\r\\\pۼ\nc\}^\\q\&\UBsd`N2\7\,qXtA5\cH#M=Dn(\0?$\AQJd\\\3yiG\v[\\@\)ihGN\M]|\kS4 ?z$\\ȸͱ\\\Y_jUl\\ծ\@\J2\?p\0~x\\Vd\>ŕK\S|ܜ2^\\rxls\%\><ƔC\\֮]\\K?\|\Y\\?q\$ӿ1\\\t\'g\\C3F\r\/\\7^w\\d2\\\sK͑u[l񷷷G?\o;{X4\"|8\|A\pN\x.˲XȣYj,KLc(\\-\^]\\dݜp\\\^t\DZ\?\\.\)Zcǎ\~\\~\q[7\z\j\E.\\Aį\ix|\\\'\\?v\ot!\Vَ!k\r;4\<N\\\J\"e\\\̵Ht\\/\S+\i\\\A+4i\T)\\\o\z\?F9.=d\ \R_\\S9,e\t\\\r_\~F#5\r?}\\\\\ۛ:\@*\\ă\\nm\ħU\?9\\ \E\ Abr|\m?ގ\Z\T\R*J\ƴ7\t\?\\\\G\I \2^ᇿ\裏\U&85@ww#,ԧ>\\X,|\ya\Νo߾]K6~$\4Ĺ\\\Ai\ۍDSz~\\l&\rT@K^W\^\EO\\ޞ\\W_\4\O~\믿?\n\\'P\{_\\\\$\\\\"\Z\ .D-\;Xp\\,\\"\q\Bҿlٲ\\\\S\\/;pIr\\/s\D5K\\\B(H8\:!DŽ TUg\2\cN N1Lam\\\C\\Ǘ.^AC\\\\p\5\\\\\C\[\0ܲ\\7\3[C\"\\\o\\\,\KTA\W_ߡx|X\7,:G\\$7\nX\1[O\^ds.\\SV\R\n\\"J0  x\rp\p{eO \C\\Tr\\/\\\"\0\\7f2x\\y\\VXьhoП\#\Oǃ-r\\\Z8\Pb,\s\\z\Rx\\ \C0?g\\5F\Og\$p潌ر\7-\Z\\BG\\0a FFF\\\\k\E<@\<Ig͚5[)\\?VQj@LH4G\\\\ܸT\Z\NB\\\\Z J|:;j$\L:q\M\\PU\\\ c0LBc\X\;9h1\Dr\Z\C\\$\82\"1A\Z\N\'ޫ\Z\\\\{\"\ XLp\ر\\s\\r\}h6\Ӷ76m\t˕W^Et8\\\D8\uOW\'(H\\\v t?8,\\t>?\\Z \z:v\T\\\nꪂjVۑq\\4t/Z>NϠah,2[XbktY\\43/N\SS \y<`$\į\Vg?\Ih9WE9D|\ڻQ \\\v\I\+X,S3)Xh&\q2B8S(¢nF\"!\\̓:\\0Xo}=;G\8M\r\%>g\\D8\\::nF\\y\qwg\'^\\\\\\\0 zz`&d @F\vѭ\\q\I\w\@ϼy\.替\Q^\\\g \/ش\\9;Nf@B!\\0\+$K #?95Ŧ|\vL$_\A\\)\XX7\\r\E/`xd\\'p\\1#cѼ\\\r,7\F\Bf#\Б\0^klt\\nok\`i\`Æ\r7G\.t\s@O0\\w\-|_}5!^\rUh\w<ж?ذz%\B,`1673\\\ڂR\Ħs&\6ǭ-\ jnome~bE\{,\"\I\P2*t)\yj\\M~ O\\3K\\X\n\6QTH\\SSSX,ց\/ZG]v\\s\g\Rn\W v\/y^\^Ѓ>\n\' լ\nR\r4\Z\Z 01\iy \q ?9< \@40\ϰ\t a\`\IhngdyJ؂FC@C:ş\f\!G\Zn\S\0r\~\h:7!\\ (D\\?\O\\\_\\{\^0{(Ѓv\\w;::\ը}\"~q~\+nп^.^}.S,՗^Žz\)\\\\}U6A.\\r}et~\\ʂe˂KVy-\˒ R*\#Hhxzq\\r\HB(\\$4@*\ezo\nF2\I $H\\\\E\\O#\!{P\\u\4[ fRHE!1\ @y\\\D:yC?׿x#W]~\\_G\\\\p&N}߿\\\|Pz_k\0r\\oЇ>\k׮6呑}=\\W{\/\\gMw\\Y\eמ!{Ui\'\\z!Ϣ\^r%\߉;E\$Jo4\NXlxP\\9\ k/e\\qGAf.\gmG`\01VgT\\0,Y\|\\ 5m\}yܞz<\\\̴\"\V\|\߾q\(\e\\뮺\?\\K?nsH$\?H$r\\j;\[DCG\9q\\MLL\\P\Jp\aG\\x(\ӈ\\1a\0b\O\׏a\$:|\\}\0j\\iEi\1\ \\<>\e-\Y E1tsw\\\\]j\g\\8c\\\\\|\3\s\=\KN[w\\\|\\!|\[\\[B\\#_9J\rm۶\\\\/w=5݋\Ʊ!\ZӅ\PO\\ZK\u\iqr\\V\\%_+~\jc]\\ﱸ\D\fM^\0\R\AagQPO \_\|FǠ\\kŋ_\A\\ݻ\\~\|\׆ߍdwM W{\A\\\k:\\'N<\\_{qxd\\\H2g\ѣ\\"© jhu\"\XtHT^\E]ķT]%\+}WZ\\\\7\n\\J\\s\\'xUJP[\`ײ\T@P\"y\\\\^\){i$D\P\0F}\ѯ\"C\\x\b+Wn\\'>\wx|\t\\0\\755]\G\\\3\'}\طo߿ា~\m߻M\%\[\Pe\\t4z/\\ Pollԟ#[\\[}ӧl\\\\\Ow\P D4{ >\܏)j\v\O\\\#|mϞ=ɳ\uu\"\'\;>>\[b\\Ν;ğ\\b\\\aCM`\\\+\v\"\E\31\~\_j\Ds9[csVc\\AI\\\o~CCC\\Cu]@{;\G\\'6rp<^{\\\'\d\i\\\6[n\6lЕW^\<9\\0/\܍\NGGGw\r࣌ҁvOO\Ys\\h\\\\3\<\\ ͐Y\05\\㗮_\9gV\\K+\]d\\\Z?|\'N\\c}\J\n\7b__\S/\\ݔ\J\Z\\=\ \\\E&\\\0wӱ\C<}L\G@Ϻu\\Z;/\\X\\\\Kx\\\^t$8Y\ơ{HA?B\e~Om2\\\\෾\q\?\Z# Ox˖-M\-9\\\k.\\\[>[[\ixt_y^P9\<_@%x=4D\*zE+ȥLb\5$\82=Ċ+ꮾ\?F\\\(\|\r\\\\龟\\r \F\' LG8D&pֆ>\\;;;w\\mE1oX\rz\EAlD>:\9j\W\t7\\f\4M\t\\nФ\\?#O\'b8*o[B&\LE\(,J;[Y**\Ȓ\\'J\A\\"\ .A:?\gؖJ&\\3\\\\\\t\omm6T\\vٽv͊֬^\le[c?=\s\\ih%+)PI\\\o\\N -@\\\0]!=z\\\"\n\\[>_IN\WA!4-\l\wr\2\nZA\\\\\2K\+e9(gӠ\\r˼O>%d\~\nBE\̕8:2?P\\_8>[ӹlf\+^\\^x\_\ZhaJ?\э\\Pٮj*z\%g8\lڈ`ze (\\\?\r\n8u :\e4XpyA\m\m \C\A^\ [: Ȳޙ~P\? h]I\yN+:#nS5\)H6;81J\\z)\b\\0\\G`Og\RS\{ ^P\4Z\I\*gf\\٩\\\0<1Yxc\\ɱ\\e\\7~L:>id0y=hlmP (?\\\\\\F\Z:;M)\& %F\u\\\\h\b *\a\\n: _Q\e%\\CYRYQ \U)V#\\0,\"!+x[%E\+#\,\p\\nJjև%\hܼ\=C\A&uT̙ތ\nΞUnV+_V _\r\0\JTaE\MhC\)\BS6\:<\\߮\\/\J݆߿\B\\dH\!\'R\rT\vu\\\0\.*k6\D`rjQ\Z\\\=V7CpA3P\#Yu4ZݜYCm&\AQ\\HUb\r\`|c\1 2+1o\X8\v\4DK\\GSp.\LE\\KU\M\\0˾9\IeYPm\5\r^\\\g}ayV\vU\ZdDTXƁ\\5T\r!\2ƇU\s\_蔯\L\bO\/iY\B9\\47{Q\P\Ufղ8k\'SI} OLEv\ZnT\ES\jǦ4/\ees:\t\\3,_C\\ $`h肠8I\<\3v\À[e˪K\l\s|\\ H<\\\nh\ZF&\\%\\zZU1n\1\\2֮\f \=h2c\\s`\\0Y*K\Y}FtTohL\\0e#\@bN\A\"珂`s\0BC\\N\:q\0\i\\\m0\@\.e\y\Nu&)f\Z,L\p\\ks\&\͎&6C\ nn|\\!%p\T\@SUvQ @&\rJue}*\Z\d\\v\n\\ZiaDH NE25\03$\Lɨ\\My\\0\-\X[O\WG> y\' K\ #pFf\\2 p\pYu/d~w\ZDO\j12\@\\r۩ u\X\\퇢|\\\Z\\\4؆^\"\n氃f&\B\P3\\0f\;E#\\({K 471t\\EGQB\7O\\ʧysݬ\ HM\L\\'rŏn\\@\k\tę ؈q\Ŭ8$\Z\ **4\-\0Džl\~Iy1A>a!\n\0zU\r\phq$g4%錄/uT|)\%\\\oKOen\r\4\ԂTSR\\KY4k\c@.(\\E\\L\ߺz\>\ \ŽvpFo#W[\'\\\\\0t\\\\Z-@YH*3*[\N\\\k\\D3;]P\\\n--\"\\+\n\U\)\\&\0\BJMDLӮ\0\\APi(\CMe\Z<\FY+k\J\X\S\D.cOJ !g:޳gZ\2I\\ԭczO?O\ܡC\X\Z\Z\M\F{O9nmm\\}[H$ڙ\\\fnddD\\b~\n70\ :> F\\\`-e(hjG\\`|d\Ç qp\Z#P\l~Ŭh~22Q|?\r\]AzQ\\n\\'T\\BP`7J\I3؅\LS`2T+>_lHsC.\ ކM\e\'ǠY\\\\\\~PY+ezJ\1\fff\"]\\\-\R\\r6\x\^UU~\ʕ\N\@\4j\s:\0lc\\*Cݚ&LNN\V9xz\sx ^\Q.!\1\B\D\r݋^\\/#]\x(\&;o\^F\!WE]4\+Ϛ}~\P\c3׌\g\\f\?\\3(E\\i \ H\'\+\\(2\\\5\rPM-95˙n\<7dY\^/)z}ٛL6 1NzF!\r٬:-T]>؋LcFo8}Ap8mڦV,v7L\^\\"[\&o:Ԝ0Z;\>>~\viSf\7^OLAz /ïN\R\P>dEXv:x\U>J!C`\\rjJ0S6`C\ \\Q`h\\neeӹ\kV \(ȚcF^ӫL^\~ʎe\\\1X\- \6 M\M@\\d\\wo\{\\f\9\\g\I^Ԭ5\ٙawDJ\ƈL*>\å\ƴ\אԐ`Mf\e\X,\ 䖰\GqCM\n\4ߞnN\\\!:&h%\AS\\0\\]\0\'#1\A/r\l\(1\l\\UAxӵr\\"&1[\\\9\ oF\\kC\5fLǔDOa:5c_y18]H\ \\\((h%s҇:f+Y7\E\\\0\' \\\n\(\s\\\( L\iN@0\\\Z\BfL@\%[a<\\xtѯd$rI~b r*\\\\05p|w<\ r @.Ol\"L\8\R0\@\\\\<\"lF;=\4`I>q\0GW\iF:!#ڋ\4dt\d\(\\\'\|,F \׍01-\RMW~\\g} h\\v.5L2\Z%GЄF,\\\\\;(¡O*\F\;:g-\2\'a4\}I4ʭC݃bڈj?O7t-}-#;\}k\Y\\T8 X\RT&\\\k\]\\\\E5J\\z\\r&J\0#\ZXp ~i\5W\n,%͡&ohq\|5\\0j\2]H{5J\G3bi\M7Qc܊\nB\̰q\S0cЬ![L\0,\\s\*\Z8r\x/Td\y\\H 8\'l$\0%\\0PLn\g\ٵ|6\Ø$]1<oxlP\tohyV;H\Z@\ d\Y]6\ ۴tf\\0u \`\\0:g! ;bi4N\\Ba\$\Ndg3\"C\vsO(j\\`9D[\MӠ\\η\\Ծo\5ǵ\\3\굝\/\X[{J\ivV&v(\'\0\\,\EO=\x|ax\'P#j\Ə\͍F|_cN\\N\ @4ؽ>[]k[\\E@\\\ې\(\L\\rR4C\,3h\Ɲ\Z\Zk6\\3,Ke\"h/\\O\\4\Z0\03r\ڨj\,{b~1o`VVsJ\z\ P\9\\r\\VA\\{)*\\є(r\j\\,6GXpTmbl\.*;\Z\@ ԁfw\ZZ\bpQ\ri7G{ \d.X75\E\\\\0dtS+ :ўMˡ\N\\m\Z励:|8PCe\\\\,\f\&L0\\1͜V\Y`\&x\FRb* ա4\R\\'$œ!(\tiw\0iH{\'$\c\o͞\)\5N5\\!\\\0lL\\fnnJEd\ڪ\\]ʨ1\h\\Z֮[ ^T\h\\X0@\\\e\\\D \\'!}АLڍUW\\r\*Q1+\v\\\\7\eW\0jJ4݃ 4с\@AY\R\=\I\Y\5\kr\pgA\\0W4ӻғ(\&&`X*n\J%aM\Kфe\x#\\Z ǽV\\T\Z\ \\\\\U8~\;,Y\\\{]A \Abr\NLN\\8N@\1\1VTD\lUR$YJ#\\\@B6\\@\{_\\\y\\?6\jɊ.Z\\\I/\:c@q\E\p\\H\\/\\(~ ъ e\\\)\O,\r3+\\Zwp\d\<[]\=504v$)\\EAEQ\\\8\U\hݎj\g\(Wx\\n\\eJBB]\P$\"vtt\ _\x\O\\LI\۶Ǟ\\\o\Z\\33S.j\'M*lj\e\tqf\i\nN\{^x *i\nȪ1\\\ vtv-j\6\8J\n?\\{P4\:SŋE +\\?N\6\tb\8K:\\\o\ 9s\ x/\\.Ap6!\Ǿw)*\p\\a6dRi\\iWUe\\\D\k޶\\\\P\d8m1\\1|\!\ t\'\.ik\weu=\\\rϦўe \\4\5\ҵ궮\h4\'/\6\\ccc\\*\p\>\9>\\\\vB\\\9QK\\\\\9\C \n\EubbBv%\:$\$\x\{\r\s>O\0\\-\\d!\\1(Z]^<xfj\A=\{K8ޒѦ\Um! .ݫ\l@\OLAXp\C\ZDς\r5q E~)-t,z\…!\\h \`G1\\[]NWc25SN$\x\g\\b\{\rj\>w\m\"j@oϚ 7\\? =ry4_( ɪ6+\$\'˥\\\;wR/M\y\\\c\"!O0\ 1 \B n\\\ `\+; =@=S\h\\h\W\~ߙ\7Ҵ)\\Lrb@.}\\hm\A\iL#\f\"^cG\$ -\n2>868\С<~\\\\K=WTM>\\~\Ӻt\\% }m5\/yt)\C\"\+\TJ\pc\01>9,Jft\\\×\'4\2i\2)ȡ`mvu|\\\\\\\\}K\nj]p\\WC3\\—;\\%r9\\ \\qF 12z\\@!ɲv*4\EP\Tb\Z\\"aT\P(\\t\\P}P\\8\O\\\\\+\6\\w.96m\6\=\A\&\\\\\\\m {\߹f\қ\u\\\!\929\r09y\\\\\\jFcF\\\xY&ɣ\V\\0+;+X\?L\I\ZTi\l&\d1z\\(ՊKV*\nu_y3\\\[.\Dn\w\\kq:\(~ܜH\\\my\jÂ~wlr\n֭\\\\\w\%^\Z\\rL\khom\NfBF\ƌ:K3rKhC\1V\z\\%\\J\y/q\lt\\\_Z/\cqiЌU\YS\n\\NpP\azz?j\"Ah\\\#\\\}۵w4\9\n\MϤV$ ǐ\)\6h\\I\\"\ Y$$\\%F&ǧ}\\k{\G6E\\\\υH\nh|l#B\0u>JeWG>@uڜ\\ͦ\\hV\jjB\:o$.~<\ i3G=(\ZF @\\Ҍ \A},FZ\\-(R_P\ \\'T_y\}\\\\x\?-(m\|\E?ݰz\f]\T\n\P+N3F\`\0\\Q\3\\=\JXEq4w+.c}h~zf4\̬\\n\\n\hog\YcM-\$3\a\lNMNpu\\\v@\n\|U\V\=O\9O_{\~\B^Q:x@TE \\ZqT\ӨIIe308ĺp\\g\:HҩfEkײ>\\\\g\ODm\\/\"F^H\\֠il2a$X\ 5⽙H&YL.oQ\x\\\\\}\}\\c\<\~P?\ uONMN\\r\׬Y\g֮\fsPb\\\DRaŒ X\0\'Lk\FP\pȔs.F\>KARDz4\n M\P\ZkjzMM浵!C2BJ\b=F\, \n\'/E[\\\z\U\Z >X\n_~\f\7\0RmޖF`\C\]{A ֍P\+\\qXbSS{\vu}\\,5[è\9\\\\~\\Ե/QR\(u廙\}}l\\"5\Nv\ZJ<\\ð\r1M(o?\s\F&>uw\\;]\\c\Z\\Z\ \\ \%ƥq9ujI\8d\(\nJ9\%_C\1f\DL6&3\\"y\\!D\"]D@̠H,r(W-[ʄnϾ}\\\\hD\d\Z\\\\8<\أW\\\{\N/2`\;^IZxu\mOϤC[.ɩI\\E\bK#ZQ+\1J\ \?\\\{)TYt\\am\\\"\"\\=Yǀ \@Z9\\Xq\AĀ4\1\y N*PHlEV>EO\|ॗ^x{\lٲű~˖u\B$\@@\-\\`Z\t\.Y0H\ϐf\3\\zj@E\\n\nR=21i\XC6o\\4\\Wv\J$|\nqGa_\ZXY\0m٥\+C=\\.\\\wW\t|F/@-\\\Gn\\Q8Rka4t\\\;%\=%/T2kH\\U+q\\'&Q+P#,\AB* ^[\\̫ xyAV.\Zf\r=8]Q\lX#W\z$&qH=_J\ӎ\:R\\{\r6\\݃\nH\|\\ si\[H,Y86k)v\FR0v<1\\4dI\\s|a\\L>?\"~/ \ W/^-\0`/*=_\\\y\px5I\;xl\\[\\x\\\:d\RP5{\\bH6 @\0y\C&H* \^ze\\\&\\,ǀѨ]\\\v\\Þ^\\\(@=\`2\m\uTy\ELiFv9rf&͐)\RÕK 0\±\\'`\rK^\˒\\,ɔ5U\ʕ\x!?\gwT\\s\\<_XLJ\m\L]9ΦO\\\!\\\\\IuylM\gS\wQ\]\\z:\NX{\JT\\ \L\>\A\0m\\r\AIv9Le.a.\Hݙ\\'\4\~ \Za\\\\\'_N&oc$\_#\=\n\\M7.A[Ո?xbr\C\mdwB\t]&\J9Jd$D{`d)ZSH\Ag+)V \\p!-ɾ<8<\3\\*G\C8\T*\\s)H A\ȳB\"(n\njj]\\סX\E\6N0\WR\y\\aiHr1\֏F+(Y$I3o4=i82\8\GQ\\C?Ev8>&\[ѱpg׼\͗W\ϥfQ\\\5`^l\\\7y:GbSsGRM\'_@K\\\p{_v&strrT킐\+B\\/\n\\\$\ad\Q]\Z\!8}\Zȡƶ\=\\>\fw8mfZI\BPxHMm\,\nK2\<ѽ\\\S\_\'\|~F\rx\\lA-P\\ݿw\\ǃ@kjs\\\k\\ \\K\S\Bc\\&S3;&&\z%K*w: 返\\\4}?\]wC\\\\\/F\"{hzN@h3<{8\t1\`X\ItФfs\'z\\;\,nA>Hn\\˿\w\l\\nʜL$DOT$ݤ\Y\",\B>Ng! \39x1M\\*\d9;0\ăJӢ\|P\O[e\~\8c\(y<2;700 \>\#IӼ,=\<\~?\\\u{Bv\D\2TQS$\\Or;t\_\0O=\1OxCoi:\\;\SWo򑶖\.\TR\e8U)k\$\\\\\щʥˆ\n9\\\\kmmi KI*6el6 #C\\\Pq\\Z4K@qO i\t v/022|_>s=W(\\\L>\0jNNZ\\\\\\L:;Τ\<2:T*%t\\"\\Xdl\o\`\\+\^NU}v;\\\p\\[ p?l$\|\\ݟȎ>}\\f\J\ѷFD@\8r%\@>xJK\r\(B1#cIIr;Ei 4 j\$^y}\VN y\Ei[\\~ls!GX4\&\\Z\0\0\0\0IENDB`'),(57,1,'Network_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\;\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0VIDAT8mL[e\_7\\F|H@$Ht8\\H?82V2-BD`P\Z@lo{\\\\\\{{iAhBp\\\\ \,\\\mLiߩ~G8\]\?+3 \Z \+ס:z\r\AxI7Dn$2L\^5\C\e1.n\ٰ\28u\ PZ߿\\*\<}2\\{6(,,L;\n\\riZ#\52\RXa]D\"y\ 233\\\ R\wpgNm4iMM\\\QQ\OɳweO\)Uk#\@hF#0693053*faߚ_OA\T\}o\ n\"ۃ\7\\Ʒ\\\\H$rY,\\\rRSS\պPTT\\np{tttD\rC\\O[b%b:^Eb\'$Ķ\\6\,=%Z<|\\\\Xs\dˢ\\L+u\Z>\l\;28\n\\!\ZI=\}P\\cgZ\$\Aw\p~~^\'\6\<=== ?tu􀐙F\\0pf\\Of\Vų\Z=\'4Z\0 \׃>\T\\n\dv\4+J\\.$iAaE\\6z\y\\Cs\<|㠩\ \\)lޛ\\\d2\KP\\nu\a`\\\\\\^_\;&k \)\<\/\Z]\6\\@\m\ fb6\\s۩\YH6|Y\H\\rZ\އsssddd<|VV\ m\\Fʶ\1(Y 31WxX\zp\,WYT\\o\\5~ \%~T\US\Jy\\r\\\KKKۗ\L\+9dD)i\\\\\\=\\\sm^Ϭ/\*%ńfIBn\"299y?f\'\7\a\rG`,Il\(\\Pt\Z\8e8n\)́a\r\&6\\"f\lSQL#qd\n\B\ᑵ.㼔h4\c\n=R\r%\\Z\530\ĺ\m\~YfЩ߿\r;\~u \n\\\_\0\0\0\0IENDB`'),(58,1,'Network_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0&\0\0\0\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IDATX\ŘyTSg\Z\\v3u\֥V[ukK\jZ*\]\ #.ldGa K\\HBBH $\nXV\\[juZI\[uӞ3b\=\\ͽ\{\\0\Ĝ\{\Ř\A<ӫ8K걾FlS`kV,\0a\r̈Ra\\k,\_\>\',TbJL>Z\%i\*\A#\~\~ ̧\:)mx+ъ\\n\d9x\\nؐkƢ.܇M\Tw\m*^s\*?0: Cc\\\n|\r\c\\Ch;_\"\:\7C\\\\kE3\Q`P\F\E\x\]@ƃH.Ԣ\hDC\r;ۯ`\\NB+C[[\nT\Z|@\PJ^xf}\\;J\\ \\\\t\ڰ\2f\)\\H*\v\\\п\0_SiI)\h#\Wi\ j8ʓL&\dBфעM\I,V+4\27\\- k8T\'15B\ ZlO9\\nI\'\<\e\{ݺ9F6\u\\ظ# w\c\X,\n\ߣ\\\(\\Y#1\?!.)Ky\\\a//_p\#\\\g~ G\vs\\\"r\L\t~%\6/I\3S$fe_M \>ӧOR.\׌37]m\Ĕ^}:?6~\#|\6a\H\\ݐ1\o\}.yyy7HDBBB\*\\w\}I.v\\2RmBW~Xo\J}CSetטe\j\a0\vW\YVkw\ޭҕw9-3&&f\"`Ĉ\Z\f3%5\j\0\:+L \\r\rk--\\e]\\\҂\мo?l-(P;JMlGdd\*`\ȑ\$\'\'\eddߛ!Qm\[\Pgod\6j\m\\\\` Y\\ށ\\3xӲ\\2\'?@1={\\\D\\5\\i\\\BoA=7]\̠\w\\\'\\D0q\\&\\MA\\\}$\hW\C\}\D\\qv\\nb\\\\o\11+\LHԕ$K\\\\\ \y\ \n\^\\]Y]Egصy.Iq\RuFR\Wڲ\2jDDD+++Q\\\\|x\`\\-6Voߵ\\"::\TzG]v:KV\\\\\\\)\'hH$jM\.x\\\\y-\\y\\͜[\ьYs\+ؘmV??b<\O\r\Z\\\\}@zv배/\g\-\ \6(Ȋ\\Z\t()\PQ\\IaUKC\Eۢ3{\S\rRn1M-Jd\QWWDi \$%\8Fb%fb\-[\{k| \0OK3+\iB%dIM޺#L+1-\n\"{J\0\o\rS\rl=(%%%\_4pLaJX\yz.ׄJLH\Ԝ6\I\s7ߞHOڋ\0 \\ P@aV%\;{J\INϔ\nd(FTm;C!\n,\ ݑ\\>m\wt`Ť\LM\\\[|\\\"PDDu;DR466\&l\P9ǎ\o\\\}n\\Æ\r{bԨQ\:gw \sH\%M0\i1:nܸΕ \\\\nfv\\"\\5DT S\؜Q\1r\y\{|39R7\֌ɉe\n,Kb 3\Ie\\w9u)\j\U\\Rj\*߰\[^c+l\\\Q\Z:\Rhu\\Wǭ\خWǖ\.\\\\ذ7S5#3\>:\\\^o\f\\\\Cx_}\L\ViGR\r[\hX\dYKGA\v\ \'oNp7h\eᠶy;_܊S 11+1;BNO/ko\n[\\W\AQ\榖7\\{E\/,;F 1= \"|~1\"\n+\\\\nX+ )d\)\\\nsٵ\\f!b;{\\ݻ\\\\ s)Fvv\A\\\W\\BL\\12Vb&vޔ\|5)4.\MpM߇\xU|Êcr\ix֞\涯\Čyiٹd\W\\4\\'M\\\4ީO\Y\Z\\7z\\\W!h8d1\ -C\r#XPyc b\"6b$Vb&v\TCdڂAi1 \\0\\&jOcNu\7_\Ud}G!n\G]r+\\m9ƒ\'-/\\Eu\\\jRmb b\\#3\͘\4}{\n&\Qa<\\&{H&>\%\l[mم5۱zc v\\aK0\z_rQN\M5դ\\@,\Dl#c%fb\}\1n\0x8^{c \|k\"\~\\r\ߛ\|\YN\^KW\X\\qP\mK\寧\\E9)7\X\\jRmb b\Z\؈X\y46\'>\ͭ\\g\} 쌾\=;\0i\\ /t9Է\2Z\8\\\?tŋ]Tv\Ę\\\c\0x蠡>fVߊ ~b\j\'HCX\,Tk~(Y^]sKW]\<\Ǽ\\WHnI\.\\\rS\r\'\`u3C\"\BL\\\}^}o\*\A\TgYE+c \,\:ֲa.\\،\*\\\b\\ .\=\zrP.ΎRn.l\\MM \BL\F\3\yy\rFsg\5$\g\,\*\Z[9N>%AkG\'\Z\ \\\u\\k\O\\n\\\^zrrj~-\9b!&b#\\g,\`p\ (>Œ\r̘vtp\38~\+\F>T#6#-,4&f\;\#^\LIH:󔪛rRnA&\&bå\o\4]jj9\\\\y\0\>\NJ\mLnMO]\?{γ\ǥ }(7ՠZTjK5 6/xx{{?\ƗCc)j.f\\\`΂ 멕\y><;S&\pLC\\\\\UO0\A\/\\{bO|؈\qԿ\{l\2d\0\0\0\0IENDB`'),(59,1,'Network_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\03\0\0\0\'\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATh\՚T\W\\I6\?\f)X\nlG\n\(jDQQ\P XPQ \ H\\0C/CgwP,\5b\&F]c\\[\qwݳ$d#\\\~\+\~?\\{\\Z\0\VHl\ã\0\\0@MA90:B\`V\0\\XEbOLc+a0 \X\y&C\5+abi\}\\֩5X\Wy\=Z!jka܂eQt\2\\o\+x6\+8,֥c+1K\2\\Ɂ\N\\'&\0[\J2@uJl\ckF\O\NyjKwނWװ>K\[1;oC\UW)\\;dO\%{ U\Z[\UHj.Y\\\\I} \r7\r},\]Xrs0)\Z\1\YE\e봟\}\\ncF\7c RvMs Gէ\_ގ\\\\\m84\r\\\\Px\ JɢF \0Oc\r6\z?Qp\oƧ\N\iEhF.Á\b[\W\Xz\r\rΡT{F`\\b\\kGJ\C\\\R=Q\T\Oф\\0\\Ԅ\\nK΄ˉ[n*^\U̗v!K&CUUp_MM\r\\DIK/Ql\\`K\\\`\Z\\ \\jd\\C`A_z \bzzb%\\\\3\ZM\{\'\r\r\`%\X\Hee%r>NCQIiUR\+>Ü+x;\\\B\\\!Mi^x\7\\oM\\ \0\r3Hѭ\eEQ\}\c \o\5\ɾ\\q\\ξA\<B! c\|n\C\\ \0\ZܝE\y\3fQ\ފ(=MgZv\Z:\Љ(\܄6̋ñ\h\Z02\N\>D`ҤI\9wp \嵡x\\Ƿa#\\",,PT\\\5Z\\n\r\r\r\\\\\܍CCþK.p\'G%x\\xWv\\6\\\wr t\;L\.\\\C~,++\]ruu\DcQQQ7---\_\7o\P\)e#\L`cmvnx_\v\p뷯\5\)\\\{{5iii\\\\\\ͽ}\\WpqqO\#w[Dr\\\j\3\Ӹi O>\Zô\c\\50۹\lb\.\\`\I2r<\O_,\n\\\\\ެ^F)[[[\\.\0vvvch\\\+ !; d!i \%\/SJJQ֠\}u]=ʪkQ^[\f\ IL\\iӸN\m\0 \dJ\\h1J\*\PNp\-(vl5\=%Բ\'N@MЕ5h?q4\}\r\\\w\\\\\\N\\c?\ȬJq:ck6\}\\2=}yG!D*A/\0д\\k\\\-,лϱvf`fb6fXٵ ?\14돈\5\n\\\N>0\\-\\t[}_e\\\061f\\5\WTpLoA\\Ukg\xw\@ò\\>\7k`-K\\\\wpE=\vf`fb6fdVffv\?tπn\Z\u0Nm\ΜpNWB*C\r\Y\Z\"|$2r`R q1LC\7Fnb\^\\0\\>\7k`-r\^܎c\Q\\\\rk锎[\v\nl\Ȭ\\\Z\\s\"\DT \0IoD&,e5Ҽݗ\+: G4`#\y\ %6aM\Zz\J\UM\\ t\0؇z~ło\ZXk\U\_EDt EfP\;\4C`cFfeff\2\h\N1\\{\XӀuI\8շ()dyO\0\G\"\b[F+$\X\\V\p\0X(vLl\Z*.\1\<8EFRR\kEbKmؘYٵ>\\ktK\^>e\I\(\B_\o|⠫$\py\\ihd =DIiq\Z۽#:\0\}\9\d`of-\\ZwW8O\=9?AJJ(O_z -32+33ֲ\>_d JL \\\Q=tb`)\%$&\; {\R\0zĥgr\\\R%L\\'S\\ٳG)\i\\M8qȼy\^kɆ\\\̙\\;\3v\\\Νg:?zϘ1c \K\o\\\'O~\\=w\Q\?O\)SV9n\\\m8\}\\)9Դ4$I8Y`cFfeff\\[\\"k?\V\m\rf\aAt#I#eH2/aG\Dg\!\~㱖M\ٹy<\%\\\Sy#K\\}O\]j>\\.ww)ϸG\}\\\\1_>]J=\\ \\\8\9j\f\5\>x\`Y`cFfeff\Z\B+O;Z tqrhfE@GҌw:uآ\\r\\K\QVA3EqR\\\1O2^Hyq\\o\=|\Ɖ[!u\ud\1\'\\K^\"L+t\L&C~.M?\f|\\t]8Gv2.\t>\\T*\\otKiV2d\\\\\\'KMMJ\f*ǒKvf`fb6fdVffv\jY8aE&\\Z1!\m 9w\\a~\|Xz[¾\\T\\\@,#42\n)ypJ\r(K\L%}lܳg1̦tn3۹sю;6XZZ\5}62rŶm\ جV\y=\\\l\ݻ\.]\\\0E-\A~\\\!E *N7\\&,A+kf\\ 1#23kQZZdc1.\"ބ7\[0<%1)\fe_\2g067\z\pW\hLiv\ FD\Wvb\q\Q\\C\\\\[\\\#\|\"c\\\ O//E\1V\\\\q]\ʚY;30 3132+33\ZÏ\[ct`\r\o\f ax\ \\ )%Eׄ,:j\o!޸!\$\v\\\&Os@}HN݀$\\qp*\\pY\\\X#keͬ]k\&\śatPƆ5aXh3EoƜ\Ȅ.I\兗`Z|{U]p\t\,\"\\ R\qe\Jk\ u*\0\\7\!*BtU&\\\ZY+kf\\,\\l\Ȭ\\\Z6E\\ 1\!\\a\w\\v\\\b\F ,X\f\\\#1h\[\;Sf6\|7\y\h\\"{-\8\0p\\}O\\\ZX kbmfA\L12+3o02\\dbylI=CFNĈ1S1z\ L.\ZY\`\\n\._\aj\j\{?q\\޹kS\\}\\\\V\}o\ZXkc5vf`fb6fdVffvNNC\-^?ky\.\0IwXw~\+օY\~\\\\\\|#\\\7FLz[kР?\ \\\:\0\3\oO\\\r5V\\ڙAWoM313\n\\쏪\\W0v\\Zmh\ \r}WW\5\YiQF-7 []\\\H\rmnAkg\'on\\IR###}K\I:?\up]\\\'\\>\d\BCi\\\Z*\ty\\\\0pw\r\RN_+\ش\nc\\\\!;㝛γg\۩᭭f*\]\n\F%9\P+dӇ$S\+JJ686\E,~\q\\\͐\2~\ຸN}\>߬\>5vf\cfb\b\ë\y!K1\;p\o\Ŀyz:\޻\/²\z3$&N\`F\PN\ \0\ Ϡ \`32%\k\\\'f\r56\\Z7kg\L\r\mc+Qq_\\\8\l\\K\Q\ŗ8s\\#\\\\T@rn^wlz\\>s?\\\1 T\\n\n\/\\\f\fd\\g\r56\\ZY3kgfa@Q\}1?jyAP|\D\\u\R%\r\\"H .3\BH8\- `!oyq+\\C\q\y\1M\\R\ GE\IY#keͬ%[e{\\3\ A\\\nueoNi\=T\\\\\7u5\\\O6F\\C|\\\䏟zM<\\i\g߰0;\\\Z\ pO0lh\<\kK\o!\m>g\ d:!9;\\\\ \\0\0\0\0IENDB`'),(60,1,'Network_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0L\0\0\0\u\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0)IDATx\\| \\U\:cթ\\pǺcro\BB\\ZA$@?P\}\\\\m|ݭOlZ\\A0ܛ\y5kWUApDb\\9\\9u\9k׿\\kK\ӛ芏\\ǙūV㈟G\\|I\\r6\\\\?~;mm\Kt\/;\h폾)P\(\~\X\tMn\j\ű}#RPW(sb\\jN\*\\6J6+h-K ͦr٢\n\[1Bёg\"\\5ᏢoY氡\0\B\\}\B\A\\")Z\Q\hssm \24\\\F\\ϱ~\-\,A,lT4=\\nE\\\\V\\[U\\\\w|4\mϯ\\\\MJ,S$B\s=A\\\nZ~nB %\\\}\!tnϭ\Z\nj\\T\?j<@^A/ \\nHRUU\5\j\\\\0C+Rxu\\\ϯ\#!\-\D9\n\\JP+2\d\uS\>{\0`(=Haۦ\𞪖\\\\\u\́7\\@`#F\0MpF3\ %1r\!\\\\U\g/[J\)azd[&,߫\n߯\n_\?&h-\GBIS!\'2iyW+\>$+U\W\j`\V\\ߕ˴>\Mg`k;M@M5g\zJ\@6 ;l\~qⳃ\'M\nqR@ \ \[4(\K|Td\G\r\r\3\!joi\lftjF3\s\Z/hM~\I{f*\\vO\n\ik\Hw*z/\Ǯ)>zA\Y`ӹ<!-\Jd J\\+\J\09Z\WѰcQN \ߟPo\\\V\\',r\yBS\6-j_\\!\m&;K\M)\\"l0[\r\t\\0\\r \\U$ \Gg\nQ񀕰a|*?JOZ&oMZ*~\\Mc\l\oЁCTgx\\\M\Utu\~56\s\\\0&\x\dž}\\\[\/\qÆ\\\+\ѩ\'\SA#q\LˌiU\"\rI@9_j\~@\ˁ@`\\(\C\\"˳m_\0\&(@a%~\\c\0a{޼y\\\\W\R\nK\\w\3\ \\\Gkn߾\+\\\߳gO\\\hϼ}keX\"\kX\(Svf\۷ǭϷ\\'d\\|q\\\4 8ڰ\\/_~\]\\\s\\1·!\\?\_\%\\\Jif(Z\"\Z\t+\\\\Y+O]Ǻ\0\\f\&:E #\с[\\\Z,C\HJ\\\J\\Tڸq\\5k\ܽm\6\r\=(\KW_}\ɀ\h(\)\\mɒ%sŮ;LJ\eYeqL5Rc\jlFЭ\۶hld&\'\ijr\n4@R{\\ Vν\'\&\n\K\\ &_\L\?K\/\c\ʇ5\ \ϟ G<\'y\:? ըT%ѭ\\;\o\\\ð=E]]\Kz@+\"\zJ\"O\r5X\fff\\ַ\\~\{ \\N9\]v\}MMMBH i\\%zbwiW*̧bYFi2VX\\$65kZ\ZST@\] ` \77\Ԍ\\Ԩ+\q]= ǙҦ\q\\s\ij\ov>\ +\g\HRQx\\x\2\+Vtz\\\\Y䤭\Za\n@v\iR\+\,\\"u\Č\\\ֲL\I\1;\\\13)޲r}ܯP(\w\o1͈{p-\\nwv\\Ԕ\\ϕN[.䒇7m\\gk׶\"\޺x\\u\g2\\̬|Ɔ\\\xӢ^\\ \^p,\\H}\zpN\A;\z\%\\uu\Q\n\tv r \\^|-\ö\HEg]\\R8+@.\\\\\w\u\\\\\0֑\\իW^Ox;w\{\\%*\yi?-K2%?.{=FGU\+\n W \ڐ\"PLi \g\)\Unc>\H\ \ \B$\\NPx/U9ʉP­x\S>\\\_G9,>\n\\Z\lK[no\ўʂFNef\0)\\"\0\\0\ \\86\T\=r\v \r\nl|\ВcEr\*؀\L/\'z8W-\E\"\J2\Zb\\~\\575qrP?\\͛\?nIyI\'d\\z\D\\OMϐ tq\Oe\Ѳ}}\\\\4\|\\I\0\Ǒ0\+&\UR܃!=\&\'ŵ\\\\\\\\\\;\'H~q \\|\=\\\\\s\&0\05i\ݻ\\W>l\+\K\\]L[B\&<]S\݌X4B\r\r1(\J\sTud\usʺk\שzB\0\IɊ\"B\ <\,W\TEIU\}\{N|\\\\\Xl\`h\nF6 YHԶ\\\0~\\\\]@D].2\w\y\\Hg \K\޹\S8^\\\|\\ q\\"z\\1#di\\W{/i\Z\4\W;_\p3Ao\h0l\\r;Ѝ뫚\!HN<]\:O\"9\s\fc\>g\WA\\\\\Du\Y\\N\sW\?\\\\A2l\.\\\\C]cǎQ4B\\w\\XL\q\\#\\0>7440 \a\\aK^\\݀?w8i\\\\ro,\\u\]\K/D}\n=\\cs\9\\C]]]Y `S\s\=\\\\\8>\\\)`ժU]`<\օ?>>>\^~\\N!\~k^\'}<x\1Xev›$lS\x\;\\\p$\UC(\ZڥZ\WRe#\D*\\ U\\n9JNЉ\'oreUsΛ\JN;3q\\6j7C\~dˣ\\\{\֟*\%ds\\\\re\m:>y\\\'_g\KO;\<\s}l+\]u٘ ۪FLyN,\"5M֩J2_\]WnY\=\JF\\0C\G\H}R@{epiٳI*\Yrt\u^ǂH\x\\'\\S\E\=M]JC\0++Rtɛ\Zf׮;&A/[rekg\ͪ$7#\\Zk\먎\\u;\n#\^lm8\$\m\9we\\$\[\\0R\T6\\b\ZMٕ([\E5e:\|৤\\-URW!W2\\':AB\\\PIv\\\9Z\A #\\;Y\\s/B\/rKIF#\\\TJ\,7Qag\\}\\]>x4) W._`\\k&t`\!9) \\\@\o`;-ѕJ8{\R\6]U\mI**t9Db\՛&\=aܲ Da|\\yW-㑠\űtӤƤh\\3)\0M\D\y\\"-lɢY[\"cK\nٚ\F\\\P2\I\ƣ\rjYmiKA\\Z Q<\nW)\ (CYz\\y\ItX \k\CܯX\\rB\욌e\\\\\o8 \]\0\\\)\"e)}5I\9(}))\U\6Z\\\S\}V\Z뉉ļ\8ĵ\TxL+#]rq1Iz\\0 M\\\\1j6\Tg=NH\\S6\'\n `+F҇8C6.QcK~x+GNPQv\*:~#/\FhV8<\\3\ng)j(ze9\\Չ`\n> \9^\ʹ,a\\4XPQ)b\q\]\Zɿ>]e\SUY*_ K)KP ߹ôP)Һ\ylrtKJ-\-\GZ\\͒h#\˻;U\RP`$+4eT~v\R^\¯O\0\\\C6b6w@)\\[\nx)\tn\l!\5(\\\+txx\2jXZ\\,Q[iV\5R<\z\hB\(\ԓ4z\𶞉\=?\Z\\T\%\}\y{ĵ\\WEx\\B\\:\]f>=\ \x\(B \\d\|\\"M\ɢvM9 C<-޲]1U\!~\U1w@~͗\]vK^ TUӫ\\\ZZxb\g\\4f4Sx\ p9\\ \󓴢1BɆ_J=82F\\/d\(\g~>\\]j\J,\\͓4M`9½B]\\ot\庮^\j\\)&}\0ll\\k|{HU\\)[\\5^{ƃ6Z~ڰ\\\}p^\n4S\U Q.\{)5z\Z WML\\A;2\ܪ\\\\ݟ\]Uųx\W%FjA3\\rh<~ʞ2](\\fJ}\'R$\@n>K\\AZЩ7.\r\\h␽rv\I\cud!\\rVR݊I\\\Ȣov-\qyN\k\\\\A\\\\y\MKS\_x_\Ӕ\\\\\ZH\Z2\L/}`wG^\S\\\\"T\c=!W\'\\\01CRB D;gS\?_\\\\lvLZ4\ّKESt\\ \\xN]YX/臡\\q\\\ޜ\\Z\wih\/\l\P\\T|@l\\Nڝ=D D\\<:\~W\\3ȊV\r܂x \\0D\'H `z\6\74`\hh\#Q\5\f\\\u]M\u}\\k \\k|\'#\}\\\F%zzx7\tmVlz\\"%(Yo|J0HG\3=T`9((\W\<\6\\\\LWzĆ\\\Bf\rDƴH\i\\~\\z\o\\\ \\W\?+\qs\C\\땖>\\FǤ9\\\rW.!Q+\rӓRL=P\,l.7 pY\\wkeQ \0\nw9fkl7\\o<\\`w(B!\0\0e }/!y*3L *\I\np5<\\;v К \\З[\rغ,\z]|ޛ/Yf\\\\>ˆǞ\>Ob!.e$-G>Ť-]0bD\s\JNXF)\rǨb\N\T=@\\Y5NW!ȩj\W\Q*cqlDf3=ՙfrQ@S$Nr(D\(%8\\X\\hh`\\\{n\\&\\r?\0 kȲUf40d\`6<\ O\q^\\C\\\c#.[V ׅq\\W$^p-L+<9ٸ\\.*\E\Qr˚.\G`Z*\rȆ`8\%p8\\\+6ݚ+e\e\fX!n\`0\\"\E߄$\f3jy1 HPX+4*?&\V\\VSm`\nC/P\C&lV)hzX\\q%{\\\W\f\u\5-!\'\\\_\\8\\\\\{͛7+w\uW\ 7݋V\\n\\(\$\Ap\$\CCnc\'Ҥ\Z \. %$vRTchEUf\\$\uDq,S\\)\Nn!\*mM!g\I\\\t(s\(Z\\\R``G\NQ\"(4y\_\Švr!\n n\Uۺ}9\0\#/ނǏ\n\\\w\spuiX\`F\@(%\H4\0U\'/Z*\W{73g\@*\[\'\E.)N6S4&3\gIC\Ò|^\*\\\F[\@P\*x# gjp^25R \WAR7\Վ\z:\T\Z\ӛj9 \?y\\U(ȳР\*\\\\\\ Z\0Ƕ2~\\(\\ \Ri{$\H\n\F (\\Hv\\"6x\tI\@Jed\*5\-`S4&)K\a\.zUo\\nI57Dz\kK\\>+ͫ\"\%\ndͫ~\UG\\R p\6b\ \T!$h.\|H*x$pd#fT\R$jf)\S\r\=y\\x\\ΣE\\ή\3\;:\ZE\\bq18#B\\ArqvSP\)L`B\%`C\S)㊠IŃ0|\m1Ce\"O\.O Qz)4\.\$*Ă\Sab\F\4_}j$Ǒ\0\8\0x\\7`F\QSS+m<\\\q\Oet\\f޶r1:;3AS\^\\\ y\ ̙1ȄM \5jyԬ-m$\Ѐ\miꐘ:ϲ\\m\CÇ=\{\Ip\##pG1\Zkh8Z\"d2E\D \\\\r9R.Kŝ\\\}q\zӇ\'/\\vܥM-\C\ʠjFc~\Lfi1Yafzf4B>\nj \\bA\r\F\"\'*\Htٕ\jRu\\KrЋ\d^\%!\`2<[\wDe\n J?b\\V\ɜ$y%hn\Zx<;=}p|l\ə㻟SP3\j\\g\\\\rjK4E\nimmiKS\!㓸D\v +\Tʴ\j9Y\ ;Q`螐=k\]\b\\\R\"\5 sw\\\\>Nx~\\k>p\On}>\Zn-Y\\\c݀Y(\r\ǭZ\\ҟ\Gg\\jŸn\\nd\\r\NXC\'B7\\\'\~\M/\\Z\\\~$ *F>_jGm \p{ۼ\ͯ\So\}\\{?E\"}$k\W\<>*0=\=Wۮf\p\nn|n4Z ԰^R)!+\\"+\}\y3\]s\5\Z2\Z\^ȲRs\Ƴ\\\\2+\6\Q]P\\\C-\\2`YLvn\\todf\Z\\\|\sU\fť\k:\\殥+\<\\\-\Ғj\2vf&F(p4BTu\+uֆ\r\e\N]WӥB\\Z2JU\\r\nܿc\Gq\Ho\ip0v\i4kXHׂRF\\yppph`\;\\ 0\\n1AVQ#b\\nCF\02phj\\\\0_~\c8UommU/\\' OX\rq[[o!5\0z\\\\EWԈ\zcL\pD\\\EY/Q\>%\R~\/\\/x\TPώX͛\R\\\\ \^x1\G\X\H9r9SW\Ԧ\rD\\ bqv¹\0סe9{xx\\ƅa\p\\rֻ.T`z\[޹k\f\\չ\n`w\3\M$\'\\\Y\Kc.*%\涥\\\\\\i\\\0Q㵷=ڿ\t:]y!\p\Ǯ[h-K\\\\\`/6j5h\\n\"prA\n\\f\G Qq%f \\qƧ \\\D+ᛎ\\\"\\u3G\\\x뭷V^uv5ph\JR9%t`\w=o<餵kxH1iW\\\\fʅ\̓\Ey,ŠѱuaA\XTxϝp7Â\'enk])\\\\EQzZ88\\\\KШ7N\E1c\a`\482+\z$@#^/#\\\Z\\\ߚƇяA?$H\)ژlB_w\֬X΃\\BPuSc\\\\.\rW\]xCOW7\8(\\6B\4\ŝlKIx\\\,\\z-^,\\\Ԋ XHz\\=\\׌OL4(\\Xz_\\\㜢\xɞT\\F\ 3YO#c\\R\ ĜG\rmuNA\n\?h;\O%\"\'Cxcgm#æ>>[ G\\\\Zqj`|#\l.\'\ZB\c~ \\\CDi\\4\˓wY\\\m\Ȗd\\ܝ#[\0\\|\Mgy\}ေ3\FŃE5\~\\\_3\\\ӼCs\\AhY\Pc/c\\R.\L>\4\\kd\e\Z\Z\&٬ \q\8!\7#\\\"\\iH\$#\U%\\\ܦ\u\\ \c9\E`Z\<\r=bҥT&\H0wfX:42\.=\\_x\8\+\^\\z\\\\' \7>6\\#4\#C|\\ajGjGKb\\\n\љ\\Cッ\;QPY\\lǺ\7*!\\\\Tó\pS{2\\\Xé\pO B\3\?Ұ\4\2-G8\\vX1\\n\xfĕ =\w\}g\\nO\\\\*\\\n\\\:\\\r=mm\\퀙׭L\\;\\0{XN8\A\\Gf\ \|v\\\C\\$lE)Ycce˖9l\/DI$ KU\r9\\T*uF!ya\\K\py\r\\իDb[iͪ\\\\\r\\\\\~\\/\K_x5{\Ls-;\\.yfjJYw\ZBCFH\yz |\?\\\_\\k\\\\ jj}v@4\\mM6f|#\\\ޯ^d^ő){q\\\m*\E;\=k\z#\ڱ\3\{^\\\\7Nٻ\ԑ0_`V\˴\n\׫] o߾\k\\vMQ-8\0\0\0\0IENDB`'),(61,1,'Network_adapter_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0q\0\0\0\0\0\0\\\P, !@a0L[˲T:YhH xۢĚ(hb\'0Hspp\Bk\ 2\0w\ޭ\e0APRO\ߣJC[lIO:5\7\1\oo\1Zu[G\x<\Z&Jױ{uA\H\O\f!@Æ\\8\\w\uמ#G|\0|C*Z\2~U\˗/{\׮ p\Z\N+[Gi\\xczz\\kZ=i9 **0\\<\Kv\(\ƻV\0\^\8\\g \"\\\䤐\\B[lϞ=c\\w\#CCC$n\\\6Nz|\\7?\O_G魐d:6\>\\f\\nݺu\o\n\ZŖpS\[Ҹ\Eu \Ν{\\'.#b\b\Ib\r\y\\'\=\K\_Df\\\\u+\\y6I\\ׯ{)$+\`YR\~j8\Z\\ڿ\û\\\|v\\\_=\\'\\ca6h~͹\\m0T\\`3@\3݅6+D` \sl\\3)-\\0v\\Z\0\0u\i-\\'\z˻\?t\ڨ7t\5=ߨ\s\j-_TJb.{}~i\\\\̥E\0#\lآTX|2\\:bKM\\\kp ۂM?K7uw\ n\\Eue;ud\\I\n$\ؔQ\|Ck\z\KB.;7t\ln!Kj\\`\~qľ\0\0\HQ\!\~d{\ v{`!?\D>Qbv%\{X2\nP\\0\T\q fxat3⭨V\\ \rQhԵ\V\jR,\\n\\\6;34urN\i\"%\$\P\lF_\n\\">\\qOcl\\'iha%-Z\!a\rC\)޴K\t2@sT4J\\xv 9\\snG±\K%ܜW\\\\\\6\r\ t&\8K\\n^Z*-旲\s\KS\\hA\\0[\\N$-Jy$-\\i_\\.\P}u\\A\1P9;m\PWN,-\ZI2%\Xq\\n\5\<\ ޾nTk*\hx{ A@Ҋ M\(.\h\9\ZT+J\|6w\RnzL\Uy U\\'il\rQͼRd~WkQԟ\IMm\\EB]H\r$sU;OA\ϔ\`\5\\\hbB\r񨋌+_M \bX6P\5݁A3\v,,`R\g\\5\0i3T4I6M\X\"\\=)\nY\r\0(\y\l9\\\sJ}^dk\\R\\lPnpkl6u%P\'?\Z\{#\Ҵ{CX`C\i:Ù?\\o@\_V5\i\G\nc_¿~\\\?I-.W\X\aFwB\n6 \\Ō`i5&\:?.\Kzu *ް\XUelB\\2Ծ<=2\0?\]Ğ!q;f\j\\ p i mP\n EQ—?{pE4ܕW*\ G~e7J\ʽTA\\NW䁉 Ĵ\& Rj,\yn}SqQ\bc&\';\Jl*5:= j\.8}\-!_E) EB\CZsK[\r9 \m8\\\\ty\n\<\X\\Lw\n\#*1DP!\,f@\\\n\\g\*\\n\_G~{\~h\\\KuH\|m7quR_uÆ\D*B\瑐L#\n\v\8\l\\d@^Þ{\A_\A#\j3{?X4FAQAp)P$j\ΗV#a3#\0-\R\\s\eYӰ\"١CH\\5\\\0\?@\@O&ql\muWB{\J*\}ci&7r\W\\њcm#\(\[W.A6;jv%5Z0a9۵\ᷦP\\r`~ }\\=o\t\);v\"Hr\-lTT\a\\\f_\LE\nqKO\ܻ\==\z$|\w?\8u\'4DQG\\cSH@\\)\g6٦d\r[Y0\'رJ8 g/@\}t1ǞoRaN\Ng\j\\\\\\|\?a$\bEp-Շ$DŹe+\{nEg \T \\\ &\FZ\"\n\=Ǐ\\M\&a\\]\\\gP\J\~\T\n&\`$_<]\-\\v\n PRq8_0\\m\ᛯ>q\W\ /|s= \QA\\F\u\75*\\9z\\ԚZO@,\&nMS\*4f\\c> n:\$\-~b,v\0v\}Y\ oqEn\\u7d׮E6\:hMt\\\V\/s *$\\U\\|\E T]Tً\П \IH]6\ǎC\Jg}\0\\52\ W\3\0#lŸ\VHZ\a\6\\ G\\\Z\ӫ\\/~\\\p\GU\\\dzb+Bv\\P_\\i6pcD^\|\$a\De`Z\Zdž\\\l΁\4I\\\s;H8Bז@\\0\]\ev{\v}o\0\ qUp%]e#S[2/%2m%c%I7͖gCm\"EG\\\\nb\RmZ\\0\4bf|\&\i\l\ \r݁\2ώ\y|З;\\|\`t菰Q9/\\\w/\d D\T6v$kS\"5/\x\IIM\ )@nZl\"=\{+o6\nmh\\h\ep䟀ݹ.^-A\ \\2gx\=f\hb$\9`\ZQْ󭡧[cP{n}\\2\ZpZ>Pu*\oJ\P_~89\\OZԩ\I&=K9NE[\\\\s\\mn\ ? h\\o\\ߓ\H\0\\<\AѰ6\Z\;!E\Qz+#\`d_<\X\"Şd\\Z\f\5ikޓDH\\m\)\vq\~\"gˮ EZ\\ \\ \c!\ p\0L\Aɓ\*ɰs8\=KYs:\P\Q_\z\\o/;\PE=߷(Ƶ\&\$\\\KT\t8K7X`\\ϺoUGn\\\2B|\4=c\nvƍ\\~㩧~\ZΞ= \ly\\?\Z\\ $S)H\m]33\J\:n\m\E\(OF\ΤI\ZUr\ov~!\\ƐX;f\Ng`L\0dp\0\ar>\"J2WFL\f\ʿ { Jl\6Q\x\\1v>\!D\\'\\'?\\`v\(\^\Ւc-[oE;S4-\\\\>d\\,U\Z\N ,*\\D\Dv-jsh\$rĀ:\Q !+\^\\\b׺?\\033ӎ\&\C\I-ˁ\\0j\'\ &Lϣ\\n-\q;+lb4\b\]N\'\l;U\olbsP\MI\\\߂\(\}n\\\bd=v\Z 4\\\|A\H\@l;6m\0x\U&%\nbw\4;S\j\FV(7n\\@t\j~\Zi\\\\{جӛ6H\)1w%\ 7X:\ےF\n\\ne\|s\v\D\&38xA[ڽ\ۊj/.ԩ$\\ϱ!I|\\ĉ\}MK\"@\O\\\Z%\0i\ӓDzm{\ڂ\,\P\\\\\\Z\T\d~\\nD7xQPx\\\\\Vp1ưS1T\'ޟ\\\ɓp\\\\\t\>LS\P[L\J`R\D\q2CeԮGI\S\\8\-\\\5m\"\\O\\$& 6)EH .t\\:\\"]Tk@?5\^}:\ܙ\WHI\,G\\\\Q\/\#Z\n2j?4\\\\mN\uDlZD\\ʍ\\`\W\0JG#Br\>\\\\f uޒ\@\ 莔Ē,iV\>g\ߖz벉\.+g|\e T*T*\\ĺAR\n@\Р\\/C\\\\7!SХF\#\\\\2;w\0jnN\w\\+s0\;gDFsp\vs\6\\\/k,WdR:PU:\`g\6_\0!\i\\yR\0\\^\\v\\|\tV&I\^9wdEbƜIfq5\\\ :f\Uk}\nhq\q:y\\0P OnE=\r\ z\q8[@&\_A<}(J?\Qb\Z\r=\\\\~\r^F%\0Na\Z\y#\3T\#\\f\\:\t\F\\>\\@\e)`\\H(p.gH\-}\.@@\\\lⲺ(\R7k \\n;$EmmiT\\ߞg߹\~XxՂ\r;ߖl\&\\nv\\\\7\x\\\6\\b\N͎yBr3@\\a߹\'u^^\ZYŽ\\ؚ,\W\'\\GV\8𭷂v?<\\Zٳ\xɿTq\/ {72ֽ^ }\\XRK|D~e@ֶk|7nnIف&j\\r 4w\rQ\\hK\᾵y\Yul\\\y\@*\\\.I\糯\vس49\\?\\b3B\)\\gvoĦ2]\\6C^\ub%~x:\'\\Ca$,:\WQ-?)RW@\lU#m\\2\WZ4\\n|oyw\\\ew\u\ۯB:\\:\wnJĆf\\|\J7\ٙ8Ԍ(({亅\C`\Q\r R\\^{l]5(#\\e\C&D&\^e\n;O2a\0Յr\PI\\\E\R\) \I|A\Ka6t%X8\wR*F\7fd?X۪ö\n\\M\a\^\f͘\-MP\i\f \\[\F(:uvK\\y\\0\r\\W\n\>6\\~\\_AnAn\\t7\\n|\w/\\\\\[x;+}\/%Hb\$|2\r\^o\\T%dCk~\J\\\vnےׯY5\nK2\|$\X~\F\\\4,\\\X92\\\k&臗,v弋l;\\\ERg\n .\\\-\ \Z\'\^{s\'$\6eXM,y\o\'\\ u6[I*t!T\ uط%5$\0\\\\\(ESL\\\l֒\R\s( u6\S\C+p\\A\ \yk\b\\\\0}ORs\7r\\2<\/\\N\\Zl/\wfo\\_%.7o\W_\\\08_\\Q Bp a+ש*\r\f\n\\\ş8T_B\1r~\6.LXP8\@\0\rSLS\r3dV\\T\+\S\r3\ngSVP\3{^ \dH=W\ƶ/\{e\F8\t5\jJ$YU3?\W?(#Q5A\l\\j|:\S$\"\\\\>\.s\Q\n\֭#\V\ hagŎ\/n^c$\uCa\QE܄yvK[?\0\/I\X,\\\"\T_\9`\Mr3i\\n\*/ Uf\\\[\\\m j\+WX\\\Dd\:\ \\KR6G\~&,;\٭$bT-G\\![6\tbꜤ\ \N)OM\&\\\Z=xtí$k\N \\?ţ\//?65\&\'\ꐄ\jșk|4ظ\=\K\3]S\a%C.cQ4R *Z @Gdh\\F \\N\B=\S\gVԜBCd\v\Z\_5x\J\\\\n\i\\\\/\DE~\r|\HoHʢ\\EnLd\rPLJfgg&\|1$\\'۹{\n\J\m#\Zǡ\ɜ9K\Z{Yp5:]g5\pM\\&ضI\\>N\}Qaq57pF\M\\!1h\\yD7H\L {*\m\ QH\ƀW묝W\j\\\w_*\j\r\rY\&A\~ .YVX\\ Dɥ\Rv)\Hbn\0H\\9!b\\a h\JQ\ā\]Q>֤NEEi{Ȧw#\\\Q\%\'\fܠfY\Z\\Qm;\r(\>F\v J*\)ɤ&x$~]C\\\uhMt\\\\r`Vm\rT\c=\<ڵ.O+QH}Cg\\\\Qn\\,0??_x\\g\DI\\BW`O\}\)]\\ѣkVem\\$AD})b\裏>q\…k6\J\ \)\0Z\۽\\w踌\"\&6tV~ꩧy*\߅\4H \"\l6\\EHHlR\r\\5\gA5\+< L\0\n5\&EZ\\J{\:٩P\\[6\K\Z\`\\0\\f(\?7q\"3A c\\%Z|\0E`6\ )RC+\"Ǘ\ӓ\7PJ:I\\P\"\|\"\c!\}\h\B\ b<F\\\ᯒ\$i@W\ @$Id*4\\Q&Z\0\\VJ\\\\X\N]\\\AP IԐ.=\݂juASNhTRK͆Giz?z\_\h5(*4\"E0\hø\$HHH PCCC{\%6~CIEׁ\+\r3Q \(\2\[\`I H#\6G\*Dz\t\\nl\\I\&\$ >,c}\\\\Mb \\Oz;\@lfGV\kڍ\{\<\0\0\0\0IENDB`'),(62,1,'Network_adapter_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0H\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDAT8˭Mh\\U\\\\\L:I\tLҘڪhp\U q!.BE\\\Mх;]ԝq;)R(AH\8Mm\=&\\\}\hkօo.\\.{\3\\Ȉ&۶UVKKD$T*X_)uett\S\0]Cp>.LLL|4>>bgf+(33͗J\\Իa\4\2\0\\\pJD \0J\\$4Iӎq \\=2(LiY^:>5\\ÏH\\V3\ދC\\8\cDYqPZk\\\\g\`yo\\r\'\".\|X(\\\\U*5;;{gϞdyy4MKA\R\\\*\\ו\8|\\۶H2sBD\s\8\\0~y׳\\0\0\0\0IENDB`'),(63,1,'Network_adapter_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0*\0\0\00\0\0\0g\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IDATX\\Y\\\\~\u3{ɎٛJb4QR!6\V؂\\C[ h_B[+-\\\6\\\Z\\\23sf\\\\Y\'\l\Aq3\\\\\̜\\\\\IAo?9H_ u`<&5MK\D\"Ữ뭯8 pm@\\\pBQ<\ \'Of&\YXX\\-\\Ɔ\\]\\ĉJ:.=z\\'}}}/ # |߯ax\\/\\\]\pwjkgdd$-ſ8<\\Ç\g٧ZZZť^_)P\\XT\DD\\\K[\Qp\qlնB\#\E).\Z闦.=\\vS\\G7DQ~O\E\Mrs Vtuu\rYm|PP\n꨼\\dR\TtWE\\\\S\\r@ѻ3TJi+3AD\}~G, D\\AٗvU\;~\M@5p7](C\P\\"\\in \\ȓ\~\\l 0bI@%pZ\ B!FȽ\\\\\-\n)\\\8>E\Y\ֶ\ֆi;\k;\}\[.]Y~`\װ°\\\Yi45=E\\\{t\\\;^g^8Cuç\7\!\\ d\L:S\A\\n)022(/dD\\kj:\\dx\\:9OE?\{cD\\y\\Ϟ!\~&\ڃ(}?\Ѧr\\'9JjGTw\Z7o \-*TZ9\\(n\\\\0>\|@s\ʩ\\\4/idx\l6G\JLoJDXPED \o\eJ\P]#GZRfQC%\Z(<L.Ҷ,\\-@9BX\\}\7\\ٳ\\SN\\CChtx\\\\\f\') uR\0\\dy:r\"#\ZmYPeJ\\'(PV5QX(.H\d\yU|p\\s\@w~bMǏ\\\B\|\S\\< -+\\\\Z=\= ?VJ\!M%AjP\\Qm\O7\v-Al9oz|rmm\O;PD s\5tbTY\xT,m6A\ZhEu\\\\^\`\Rީ\\;~z(u@\?ok\nD9\Z\\\R>\\<-*%*g\}U \~^\\h\r\\\\\\ӱ{_c\r[u*U\U \\F?\LJ)m(4eЩD\"E.@\1j{$\\?7\g\=\f<\\ + :uHͶ?~y\Vtݘb^fB\e\\\B\]OEط\\\n\S\+cb\Ur\B\R1ʐ8P=\'3x@%\C܂sY;pA;W}\n\\\\.\\\\$/\Pm Q :0\Z\q\\XC\it\:3h~7kا\\`T \$F}td\1\\\\uT[.\{BNar\nGb\sZxԏm֜Fj1)\r\Vut!=&5B\\}\\#QH*&\uG2\mb;r i⭋+\4)\ \}_xN g\\?}\WE=ê{KVyr\Z\x\\r\ZzUrrCM\\r#,ˉDB2?fl3)(0nqՕ\\\ߝz=\n>\\o\>ڛA\wr\h\n zRz \CpE\'p\rk&_ÉagJ ?j=߫\y+12W-ܑ\0&\\\R\\\ \a\asss[[[\\\(0Z\pV4HQ@UU!H\0(7\qă\T9>\ke2\\뉰\ rDۣ\\8?\\$\G&g\aX\" H\\\\\"%(T# \IQI+),\rE)[\( \]X\F\Rtc\\\\۷\ 7\-\\7#M+\ѭ\Z\D\&\J-\\t\s\yY=88\\\\k\\8Zݶ\\\G\&\h\!\"\_}\75\߮l?o\\\,K911q%O\SP\Zx\\Ɇ⟨9D:\\\r\\Mϝ;\*RQ\\U\\~\UAY\'\\\9\\._ڱ35#{ںt\\9\\r/--\V\to.\\\5\\\\Y\0\\K\\KmԈv5M՘\9\f\0\0\0\0IENDB`'),(64,1,'Network_adapter_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\08\0\0\0@\0\0\0O\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0SIDATh\\[[lWz\JR$ER,G\Ev\\N\$]\st\-Aty\[\\}\KEQ0\ZdXdl6\d\v7lے9,Q\"\\\L d\R<€Ù\3\/\\)Q\C\nˆ\F? \Ǐk\rY\}_\a\t:]\v\\\\)~&\M\\ \\\\\Ţ\AJ \@\qa\0\\\OI&)T\+׮];\̙YnhC\\\ߋ\\0P4\\\\O?\0\\l{Wj`j\mۋ`\\\?\ػwoG\\Qw;\ \3ϰ?uM\\1;;[\UFA\\\\0{\Zn\$\ ƚ\HReYL|Q\\H\\Z`7\2*m\rF\`rP\\ \r&xk\0\\\"L$\ɦ\=kI5q/h874|S(n@2\\=I2}\jC\\\ʶ,Fa\r\>V 0\Dap3fھS\;{\kt\r*\0V-T:\4͠\lmM;\N\\'a\'Z?\L$6[j\=\\+?O~\ҵ\njEs\0 \0L\\'n Ԍ \\@\C+LyB\R\\\r?\\ϗ&\'\':u\]6ˤ\\Ռo4#\H\~Ӷݚ\x5\uW]\^u;v\\Tڍ\Jeq\\@\X/F\\\z\]~\\\\Z,J\-\\,Ұ\^RKz\ rMC\N\\mǭ9j[\g\ՎeUf{Z_.\"\00X2\X@\o n\"\<\Ø\\m#֮i\x\\\cTTǾB쥦\s-8\e\]\"2vy\0y\"$\Y$H r;v\'F\i\\Z\뭺\p\T\\) kSm,ׯ\\Ku\n\\0\mlFGG;\r\Ÿ)|>\\0ók\\Cf`QU0\}8\"%ho6ݡV5M\\\\j~\QkB\-\rі3&f\KbUE\\\I\S\\\\n\"I\\n\R%UkBk*\\؄@\O??q\SĖ`<0Bi|\\\ }:{BP\Y7H\*\g\\%\r\tȞ\}%XT@\72\7\;4x&>9\\\ݞG\KVk#\#\\Iy\;Ip\\bD] lɩ\Ti<\Z\nZU+\Z ǣ28D̢\'ž \/b\t:[\ \'\\3\I\\ބ\\:Ȓ\"\Шey\].Cwj}\7\9!\\"\Zχ\\i!4\\"TZ\n̈́\\7a73Q}/*\6\٘4\\\'\@\\I \&\0lĬ`q~\%Du5cCN\rk\snmZ9 \ \5\\\\\MM\\F\i.ܮd5\'3$̥\XC\rh5\M]\@b@_\3FNAe\8A \\cpc\;\\,ۢkZ*\-d\/\䆨bk>\K/D/^\^{ \\\\\1ot\\\\X7>\Z,uT(_J\n\\ZhٸCp\kE\h\"\\w\e\GmX\rb\'eq\rzd\z|AN\84Dwgka\(kv0N/6-<0S\d\\\4x\foO\\!5mf\D\\A\`\'\ _;+YH\Ztci=\r&\\JEo\\+2\\~; >@03e\22aӎO6sG^\8Q\HJ:]A\"h!\\\0;\\X\0Y;\rv@\[aQ}aa0mVH33\\N\[N6SBX\\Ǧ\n\FA\ݢAQ}Xq\n2Htǘt-¢l\\D=*M4Mp0\e>`RPa璒h\_q*%Pyt\>\"\Apt\i9n\_~ez뭷di0\F\Z\3F1\$\0e|4;k\n1>!(\ \'V\jrCժGE\V\\"h\2&>\Z{\huuF,R\\wSCxDСHC\n$oY!\j\ҤiF 0r\ 0\ !\Xc/+\\db\\\9epmʌ$\>Y>\9 ?\j\- /DT?e\zTЪҎ# ;\\C@GL8 L<0i\a*Qn\\r+XB\\o|\\3\\\-m\12\\,\\\G(x\@\{\JHx]\Ŧ\\0\$E`+\b4r!\\\(P3R\- kKX\B\0\}95UoT\\ \\'!1\O\s?\\[gw\Z\\J\\\7=\\L;&5\GU\\XTI@\a,\K:\\\ߜ\\\}\ #\/\?\yFοp׬EMC\\ \eZ>M\\\$\0\\𧜓sJ2\'\li,58L\r \\O]6#5)xck\jmsmPwLw\w/\\,\\@\`C +\Pr0ܥ2H\\\Zkj/\ \$.\4\\xĦ$S,e9/\AG~\\Y\7ZUT\r\\ /\ZB[^*m\Z\0\Zh\(2锼f\e!c]WNv\f\n\Za&׍,$\Pڸv B8ho\\?\0Q;p\\޷ \\+v~|\Kel\0\T\\\\EWH\\)! ]B\\0?9\\\\%\\1\i>\i\0T%4Ҋ={\>/aLMM\ym\\\6X}\}H\KKK6:\Gsss\\d\\\\/٬\}\n_\\{\\\\o>{\mgȝy\=|0[ӝ5\mdx\\ǩ\r+޺)7seeEYWm\&\[ڨ1\. n\3g۶k,k;\I]^˻Ӟ~\;,s󮏭\EoF5c\\\\G`eH\W\\o\\rs\-[݄\\\#\\\\Ow\?\ߧq\nO\\\"\\"bU\\\{m߸q\ތ\\T タy]Vcm\n\ `\;@oW\s/_.\"31\]6\)SB\Ա*~XĚ\իWnx\!|ͅ&\0\+R\\W\l}I\g\\\\0#I\0\0\0\0IENDB`'),(65,1,'Network_adapter_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0T\0\0\0`\0\0\0Uz\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0uIDATx\\}Y\ީ\/\\&&Ec\65\\Fal@^ \`\OI0\Z`\!20\\ <@\"$Aƃ`1Q\,\"ɶ,SS$ť)\\\\wj\W\\\\\fߖ1\Zo\[\\UR\\"a\\| \E\R^xQr\J\0^}\#y=u\\\v\ue\6,ˡiA& \޺_\h Z-\0 ݶm ]㞮\h\gY>\i0?6Me!Y\ar \=lq\0Py mg||ܽ~:\Z\7P0F\(J9\\\0\,\\ _8}\WE\B\Z\\\\\\\\&\x\q\g@\\\n@\y\\)\n\rU\ |\ؙ3g>P\+\ତ\W\رc٣G>:eI\\Թ\\!pB*\t\ҥq H\s\\r,35`Hi\ZА\ϵk\ڷn\3\w\a\\<ʂ\"~\+_*s0#\0~\H^y5f=F\\\\)2B=\\X\'Lǫ\U\a\|\\Ξ=ہI(\ \\ \n\-\K@\R\tguu\`\\0 p\\u2{\\\vo-D\0ZP}\<8! \A \\9\r\0\~\\ҹ\%4\ x%^\\7o\|s;\Zӱ}f_/5Km\0\go\Rt:k;\r\urdP/\vR\!\0:\@\\\0U\0\\ƨP\3\<M\\a\\\\hF*/@\$\Q{1\\\\\0z xz]׷\\J\I\0\\)sZ\au\\gY\x(\09\\+U|I5.+ *\{Tb\\\\\\'/\[s\Ͽ\k \U\hq1\y>\Eu^\ \0\C*\0Q X%\yA\\W]Lg~7\Kţ\?\}\\ bmq\\\\ڍv]Wť\\VX\0Xa >>$ু\\0>~;\Є\n\j;p\4\\\\#O:|\\$\Q~\n\uc\\嬛U\n\nW[\fV,ݛ\\kxMDZD_\y`\4\M3\0>\\r\L?H\\*\r\\\\\v\9=$@\\e)#R\\\hrЃ?]Th\\\N\nue5c\:VQoTKk\7o\\\\Mvlx\\1A\\2W\<~\\9jT\ +\\\ul^\)p\\r:&\6=/ҢN\\r\Ha\\ \n\?`\\~\\\\rIb@SA3\\\taN\q-ij\\9-e4R`v{`NB[\ \&\\\ @&\ZO^ \\q\nO\\\Ket:m\@hX747Owoަv͑\,C\\y\Z\>~y:49M\\\\f\$s\nPu\z6$\%\K\, DԜA\\\"LH]\\FM\D\0\'sa\ZjmW)\\rY\@8ؐr*Fk-Ktמ\Z\\vP\ZXi\N\\\\\\E-\\\8]ܧŌ2\rO\\l\| bmm`\^\\:]vj\\͉\\b׿\c |0O\?>\P\\RkS:TURRN\k+\\8$gj\n5v|J eS\ftYt, \yA\0Xi\p^M\ұ#S\\n\\\D\_\r=\P^v\\jF\\(Dk\ZMLd\%:6KN\8k\Z;Ov\n0#S\41;M\*(э[I7\͊ndhxxtHxih޾3YF+KS\{Ƥ9Z\?)\0\vק\N\\>;\\'K-/\ZdCpj &\/9{\\u\d\I=q){Ʀ\\\'\P\ĴpH2T0:D\|\5ku)\>M?L\ps[\"-%IE\\"U~\\6\rn\ y-K(\\[*MzH\ߗi\Ҡ\\\"u\\æj+OUG%8\rgur\\ZU`z.\\X^\rp\\ :tΉ\\nVVV\A\ωN\\8\r\nq\oSuL(\䋤:\A\Z:4Nj9%\\'vp\0\\\.*:B4\ӣN\o^\(\LN\\6gaJ\\\|cs\=|z\K\[odhՆ\6qo6\\ݿ\sH\c*\\{\$i>\\4 d\\]\\g$sbա\&\n\a9j+\ 7\\ʼIGNtT3Լ\Vl>r\=\c9G\\Z\01MR\[\g*m\0Oyg\\S$G\S*\\ڡwO=@זKtbBS\"\\\0w/z\\\00\'\\QdTö4y\ƣj%IN\\\p)0 \"\*ñB3~1\n?\\\\\c{v\\4ԉ\rv\\3\\3\\^\\\8\X\re\*\\v-\wUWU\g\\:eNZ\\\\y~\,]BvN\S=D\Cjk\4\rtvzuA [q~A&.O.\EqGJ1ЕL_\\ǾMY-\'\u\Mqk\g{\\\8+I\'.d4\\_#L>\\eЪ\0oqM\&|ay\~OBgf:DRZ,94>\T\$J\IE\\79%&\O\\\V=T\0 T6\Qڲώ\Q܍ \ޥ\m\ sk\7;\\8-@$l\OCxW{߇fH; M|+\t\\\\L\u]iA:9O&鶈d\b\V\\\\\r&2Md\Z\ɔڪ\nލX\xdF&X\g\X}N\a{\,!\\'Z\\\\ ˱\r\rC\\9=ϹGb,w\\\n0q/$T\ž&R\\rBD\\= @ pĜ\ED\\ 5\1 \\\2y\t3w\YÅ \\KtYLIcǫC6\r\uw\KT۶Kz\\\\5H>\nf3+emY\\6\&ﱄ.,,\իWEb\K_O\!H&N!F>\\BO⤮KHu|ۯ\xF-\\\\'ݏ%z\#\Zb\>)guLkP(\sM\\nŃn;\0\FgT +#-@g-Zd~/\\T H&\\Zͽ;$g Ml\/OX\?\\E=T41Tꜥ~E \Z\=\e\0U\* bP\\\\v(\ \\n\A(lH\jYX-\Z\;\\\\c\S,GT!\4.XО|P\\_\5\]V\p$FnQ^ʒ }WuF\ \\z\\{\RIpݠ\[i\\{*qdu\\Q\;\@\r\76[JM\\f\\#\\)sT\n\T6v0}NS\\oS\0\T>p\~Fk\\S b\0}zi\ld \#\Lt˳rлB b\}l6+\u\\\vk0\nRy\'e?7DŽ\'`\\nӟ4~\(\'\"\}$b`̓N>M/_~\dv@9+\\'+_\\O0/I~46=<\2պkԲ\d#\"\n@OYеT\\}ߏs>\κz^Y\Gܵ\\d~\˗^z~\ǭ\rMh\^$t\'PE\@t\\\ZQ6\~\+[\\4\gV\\\\n\(X^pcA\\\'i\=-\[.E&$PI\=!m\\\@ea\\UQ\(ߔ#T\ jz>g\\ C\\\*C\\~\\Sw\?\N\\_~Y \8\АG6hmH$\" dz4v:@jˑ\W_\\\\\\cWv\Z\*\" FKm\c\0:]\\Rcj\\\4͸5*\Jc\d]Hg\\q\\ˇ&R\"\\pa$/ܣ\\{bl|k.#*B:\yJۧ\>C\r\\E4!\1(r#РQT[b&\\Y\0\\S3K\\Y\S\\bG=:0$(\͐\E\RVȬSifA7~>BI\\ \] sZj_\? ᨦ\#\G·n\\$T8=D.s\\H\n\\\DC\\I\\\6tR\m\s .\Z5[u|?pௌ)\'\\\*\8RA\Mb|]H\uT̉Nצ5]Q1/dY\\M\;<\\fujLvC\0jZb\ \'hընDm(\/\\1\\5\\\\>p-F\ \\\\tj2C8\eәH\N*\` \u\\|J\6?=$sJ\\ش˅w\ Š\(jX$ϥ7*\E\%\}I\0qsr\\\uH\RRsEQ!\"\\\\e=YEr\,\ \\\\TA\\)\\^\"&\\DuƜ Рe~\=J \Bjs\:گG\P$1\\\У1+ή\PQ\ׄ\qٌ&$\\ \\\Z+@\\/\\\@\'\>_MK\\\FY ꊧ\D 6!&:I\[lÊ\;t\P0p,8{\^\\o*Px\l\>g\C]0Γdʯ=w\\;Kݻ\nS\n\a`Ǐ\5I2y*\n\\g\r\,W4\ \E\\ $\\6ĕqL\A\ZFwʡ|LPu\lV?\~ G\V\~v4]w\\N6\x\p_ɤ/.\\Zç\\{\?Ù{=\Н\\"Ƅy^}R\\o~\\\'\IWma\6\mw\J\j\\\pO\,$l\&\'\' {χ\)ʇq\\\\\\L7Vۏt<ϒ\`n}\ɮMH\c\yrr\.~@\\@P\\=N}邶\\rڒ\\\\\O\ A \KB\,\\=1~\E4\Ujodv7I\å\ vmӚyZ4.\;%\'G\lgJV\r:\d\%kN\k+@y3T\co}\{\\\9r\3t!\z\\ 6\B_\0fU\(Z\\_\Z\p\\\W_}\\0\m\\[\]\\n~vb\WtycX\ \|\Ϳ\0\tn?\04\7Ǐ\nbZ\19s^%Ee\o\9>\i\t\nl {x\\A\Z83 \\g\w\\m\\c/w-\\\\n\vӀ\#\0*?J\\g1\\\t\0\ ?\0\l6[[F\\\(A:Kӥb\W vk\\l\"o\\\B0T*\333;\sV5\\Ƭ9\{=wh\U^\\\4\n\I\\\\\b\yv\0Pϝ;@\\\}EvT.\\\@5\~/\\0Mmd\.Z\\0\0\0\0IENDB`'),(66,1,'Notebook_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0u\0\0\0a\a\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0-$IDATx\\} %\y\\\wϼ9\\"VKR+R KHنX A r eeĉ\PP`ǰ\vĈe mK:E\"\\;3o\}uW\\\w\\re\\\\W\utG\\1\`޿?\\x񋁪\:f\\\\\,,\d_\\\\\\h(\q_\n?\\\k{rF\\\ڼ4\A\\^~%\밳}lɄ\f[g/\\[\\\AۆmG:,B\ \\\pl8,\ZxlBt\Z\\>\IMlߣ#\a O_ć\\_r \y\\\O\R\{\\>8~lmn\A/LloUb\\0\Ilp{)>\:\?yPz I3p\޳\;$\^ؖ\rr+[o\NR\*\k\c\0<\/}:62YWZxa\QԎ997\\\I\S\Ěw\(KWU\mg\\Njq#L\yق{\9\r5\< ch\\\%۴\R>\\\7:83> \B\nQ\_+\\㰾\<0\\r\[\ǣוieA8us\l\ͯ\\\ݣR\\;Ǽ\\0O\Fc\r\\WՀ\$Xs5\'\Z74>@~e\\\\\ؗ\&G]\~\/\\ \\DG\\]L!s>߰]m\C\m\\|y~~ׄ\m\}\i\@\~\ \\0d\0I2)57BlXܬ\o,$0h>\L\'<ϥ36m\5\d\\\5qb6#\!\$\_I1I1\rͣ\y\U\D0\q\1\tNPc\4i\M\j\\k\mBI4`\&\"\\$7\&f\bf\\\Za2\Yrj!2Sn3Фxdk\ \P*Òf{\}\hLc؀)\\7Q@\\C;f&0l A\n#onNl\f\\"\BL SH\BbĈ\\U}\\Ú\ڵL\'\r\H\t=\h(\z?wP8pɗ1\Z.^j*i&v!m$mJNlu\$[\' \R,7\($\\فw)Ō86X_Ϙ\ BH쥖ij\\cadzo\pI A@_#NH߄{fx M !\\"WR\TC&\mi\ \\0\\@i\o\ZMp/ \\ddzm<!TSߒ`f1A(\̴♮J4\"+7\\0\ \\\\\0Z\\"CHTj\0\ Fm=m>F\ \&ͺ^\\oÏO/\\\'\pS\E}\\v\}\0X:\\0`2!r@\gϳ\!\w\n\ob4ՃA*R\Ĉ;\XxAyHT\3iy5oK\\0:3\L\d\_E*\0\#=k+pƙ%\1\\\߶{\\n\(ә9\EHqb\/m\Ez[ \\=;TlK|`2G8N\cBȖn2:$p1G\\'o\u\\ʹt3\r\V:c2sX\z~\2.#\t\l}m3\D:\\ZL#R\\\.3T\$&\7\ \\q\\&\\ V2tJH\u\\w\\}S\df8\׺ {TF\ W\2p\@P1L׊\k\LA.3 op&QdGW!\U\\=\baW0\3K%ثq\\^!dη ?fiԱceLx蠶`¾7\3\US\\'^t\eN͂\\\ߌ\ /\\N\r5C׳+\\\=gS#\#‱\\\0\" C`ei˹\4b\\\[\\\pr\"s3g\p\{#\\w|\\>~\\\\gS\3\0[.H\\`\'\8\\\"f1\\Lj]\څ˥v,\\p\"\@s3\0\h\\nMY,0\\\.H\c.\\$~\\y@\\na`Y\\\b\z\nkjɕ\\3BC\\\<\uF\òI%ޑ\\0\:\6\\>f\\I|;F,\\rF4H ak\\\iA\T17L#\3k*M\q 9\>\-\\nԘ~\NFE\V\J ´%/it\L\,r\L\\${J\JOʚI\t\\\\rdh+\b~]o\:̣Ӆ\\\pT\atA1TE+M*вu\\Q\kA͈\m\X|y5Fd7,\ؕ:M\\ ^%&_3\\\\Z BɄs|8a\T\K\\1B\r,wE\vd1+C.ql[ImD.\\F\\CBLl\ \=\0\\2\|\\,\;c\\\ZІ8D\\\4y_\\"\r3%\m\\'onf,9s(\\n\\Aԓ\n`\/\F<\0fF,^^N\\3\K\t\X\\ 2v(vv$Ί\>;\?&I\@ƉπiyK\9\zG\7z\\\Ze\%D\t̕:\f,ƗOgp\\\\\&\\ ,1\#ķ\\5Le\NI\ҸXLR\3y\x\\ۨc#\e%\ҝ];\36 ,_\pKr-\ -/Pu~jf>\\FNp\۩RM͛cZ~\\<\2\\Y\\N܀Kķ|-\`\\\ \\\qvc\r\57ܢ%\dL#N\\\ZLO\r\\\\0wt\\r#17\/\\X6\Z\OM \T~w.\3h1ҷWԄ\MYKm\[t\xKt\4&X\MN];0{5Q2\\ z,s\Qs\õIƛK\\\N=?1\2/iqD\0LP14\0]\Υc\N\uy_߭c[\}3\Xez3g\7fV\ܡ\:q$\T 7O\8\"#P2x\D\.w\Ex ̺\(\e\VvMD?\p\,o\njR!ڥ\ZXmf\0c3dW\x]\%C\7YX06\\P,T7qFX6\C\~2 HAhN\\ \n\7\ZFugdغQ4Έ\N\(\\0\z2K\'UA<cŻ5w\!;\);MB\ML\p\?v\0[$HQ_زs\ ȇ~|==1y\\rkII7`[qݡ]O$\l\;7 gH`\p[\\a[CX\N\\[\zj\\g\Pa\ψ\\v\0sz\4\\\0\\l<Y+cc_\/tj?fU\'%d\3[oq8\\_\*C\'\\ -2\\݉L\ZCO\ٳ1+pZ\F\./ObN\lL\\n &?\\\r`\7&ֲ}u;&(\Ycɑ0 \\\07;,2ܘC\\o6\ASw\N\nef>@#9\̤\r\`v\~zuEtkCO\Q`F\Z#l\ \\\4e?\\})\V$\nf\\8\\\:\\Z\\z\/Ig\D\\\S\\%[\j\\\\0LTr|s\\]1y\j1 zIqyOBxka\ P)!\Lt$$`\\I,4\X g\D\Eи\?K\'>麷\\t=&\\ф\\Zoh\\\\\\'x\\\93-)c\\t̺\\'N\Z\/5)\\ \7\Q@\\\#\\\\\mKl\r\bp[$\u-ʼn,\\Z&$P\3{\\ZΞb=\}K4\b\=/\0r\ߊMD\|\0=]\\ Ox\.nf\ ՞y$=\a[cT\\\0Q\m\Xe\݁%\\(\\\'\\[\n\Ѩ\0-{(B\J[b[\0$/\\z~&\\\'8LA[\/\\\r@\0,0\\9\=\\͡ߵ\иf@_|d@\0\9ď\\R\2p\&h`-\/i\$H\kAx\\)z >`oV\\l\0F\ͫoF\\\",)f0 \\m$d\gKS\\'\"I|=\\Π\\)(*\dÕ\\䪐\ǙE\L\ 0p˗\w\0WF0 ;W_mC[X(\\un?\K\3,\*2Gy\M)g\3H͸fe2k\Lyy嬡\]}u\\vM\\\\\\]\5\\\\\z\Z\\\kW\:\~\\\oHO~:\\\\\n\(\t\;\ \o\.cB\\\\0>/\wg[o\K\!vZ\\h^*Ћ g\PĞ\\%\l5Խ~\E\\^7ژ\pfZFmZK\:y\6~C\\]\\\,D @qi \\\\_Ix{] \\w\'-\\_y\\0x{_x\J`Eוɐ\0\be[ڥN\\{}}\"\X\igV9\\۶ 8@oܶ:\2R.c\yP\\\-\"?\O\Z^\Z\p\2f,\\36\݉\Xj\\fS+\\r\\\\u?\~\\\\\\v\\~\\m\\%\\c,aB pX\\e\&3a,pMF\i \.3L2\y\$0y2S\\\\MUL\N\FC#^\\\\@\zr+h\\ק\r\\\道\'dD.Eh>.\\乤\s#\\\S\]\EGZP.s\z\{\\\7\\\_V\HG\\\\rH\\\\tY@\P\pL\\p\\\#i\X{2\LF\\\IB \B2\ 1\z}^~\y=L\\A\3>^ʃk{\dE;\I\\o͈\\\R\~]Zn:|ⳙe\\\ob_)7G2\\\녹\t-\\\\$\ ͦ9B\p *ڎ\\\yQܤ\\\\\a\|\3n\%\\\yQ抐4\\}\1\\ğ\\Y\r\#\\h\\\\4\yN\j.\h\\\\\h\\\\ux\ׁ6~Syۆ;ϼ\r\\M\\m\sm\\نJi\r\΃~\r\p؃{1\\\\>\i\\:{V6\\6\\m?u\j0A\\\\C\\\jP\\|vE\\\5\\3gX\ൽ\r\\m\\(n\rJ ׎AP\61\=sbz]X]C\\q2sX\'Lq2r\e{I/ħ\\[\\+P5\:\dsE\\\n\\\\᠃c\\rn\\_\fy\\j\d$!$\"\>?\\'#4э\sӃ\\ ql \\T=.^\۪U+t\n\6\`\!\@\"O\\!\xT?Ԧ~z:{De\x\ߓD\=P\TB\P\`\\m0z\~FAs<\Mp\\\\|6\\\GѨ\y}̚Ii^\\g\_}\\+׮\\\>\rk|\1\\\+yx\Kx\\\:\"L݅NR.K\9\ !]\\\񷬗\g\\B\toʩ\&I/E\dyl\pw\a4\˰-l\z\\%׼\W\ZZƣ1כ|\#hE\Q\'\\Ed\=j\lscu%>x\\V\3-=4ur,W\.\1Ȯ\cizHsuIќ\?GetMD1R1\|ǹ\??C7\\0?\\rGW\\I]|M\D\\#\α\*\kw\6\~~\}SYX\\q\ݰR\\n\A\6R\\\:8*\\?\XJS1x߁SOCiCߛ*#\c\\\\E\>\x\64\Nq\k\ʵu(T:#\\cPljC\)Gsʀy*\ \J\\|2F\.PmI1\n\E\n{k㔁4\;\hԃW.ʏ\=p_.\\\ݐ\n@|\KJE\\\P@I;\8q\\\"冉Q p\&>\"\Zh\\r \T\'\#ꇐa\\\\Z \LC\r\5Tg<\\\JF=.\!e\rO\\\?\n \\r,\\\Ulkj昫\r\4{H9\ZZ\\n\\66\"L+(i} \E#(ՊQ\<\n\Z)\]pm\\rI\ӵ\opڣq\|^o]\C:\{}b=\\\Os\"ג\*(@\#:Ov\\0\\\\k]EPZ,\{\\^o73o?\\\Z\"4\v\PC\"Ռ\ǣ\{CB\"\Q\\\xw!6D~+\\\rdd\j\\\&?\B5?\jr\yM\\s*5>As\l4NH\F\0mlZrq\rW\r\\`_@\\N\qTyX/\\\\Wj#V}8/&{MX\>\΍>\\' a;\ Ml\{/CX\HCK\\?qh\ }`/fO~}fX\ \ihs|uܯ^dkm=\jC\\_HZ\ȫsf*\J\W}F\s\C3\\@I\\ZTd\z\U\@~\=Fўv~V:\ꋶO5\n\1 \:wjk\a>*\\\\m\T*FH&\\r\\@Bz\#B\C\S Wѿ\@\f J\+P`u\.&\*\Z647z\\-\\\_ t*\\x\'p\/\"\\lq5\\\K\x*^\ brg0\EX^-\a#.8h\_EO\JMl\\\o^#lz8{\\\PU\\]篹6V\\\:J^\|\\Y\z;< K\GM\X\\\\\\E\ɣM4H,j\c{d WQ=G\eyM0\x\aڣ\Q\ʵ\9cS`kQ^\Np݂rh\\\'\\0g\H`rrxL\L\\\*\\‰S\'y\be\n\s\\C5~mJ\ֱm`y \]g\GK;\PRCh.kܥuZB\n\\g\A\\{m%]\9q\:gR)t==\\\\{\ \\\aF\<{[\ZEl;\b[\'\q~`+W\/o#Ʒ ۛ\'GWCq\du\MTE[\\\sYdص\\A܈G_ \\'V\s_?=\gF?xw4>hrݯN-\Zn\r\\ZM\ko\\OB \y|U\\\ٕ\\0ŷX.\~gķ@\\KIt\r\.KUF\\zC#VϨ,ſ\"J1\&蝌&=ї\\~WaDc\p>\\rWQ΋z\jcbA\Ȃg\\"݀[\t\O\J\\Z\\\\VT\1䨣\\\`? \f\~ \\n}\XkP\p\ꊧ\\HeN6_@\GA\\?DX\џB*\0u\\w魮\\\nMhup1 \?\\0.^~t8\,*ׄ\ݟ\\V\nHuY\${\oŻ;\s\n\R\xLJH\\\Dx3 ~s5d\\=uh\=\g L]E!u\\b\ǽM(j\z1?\˴\\ZZ O\Es \Z݀\/jc\x\f\oym\r\Q\\{\}\y \\h\ǚs!\0?-VT+(9h\\rVy\+\\cnMn\*.^;\j)t\ʕ|{V\\kuL,<1Y2b}\7\рL\߅< \ZZ& V\_@ )D@/ceʥ|\\Dq\肒\ \\/\隸\'Zi\\&\\n\\}s$\\\\\y\0\r\ﴻPݽ~J#\^&\l\0Yu^FB{™\#Wv\e\\\\\\j\\Z\O*\ts1\0ZҋॗͣNFÑ(prh`\]\[h\\\\*\\\\'S \\ _0_S]hװi׈߅B\q7gp]e\\ӧ!*`\otO\=\N`\Y\A]1L\\܃p^\r-}\xQ@s!;yn\$\B\\f\"\(\m\A\j\r._\Cδx\j?>|O)#\\U\\\kB\\1Z7:\\ZEnv=\I\a%\\r.\"\\:\".d HɢS\<.m\HIJl\\0%\}\\X W\Ҥ(I\L:UD \rѩ\y7\(C\dCT\ht|Uq/\\\B\rj~;JqTګ>\L\ޤ\s\\0$/\Zt\m\!CS jjq\\^\yz\a \D4ܾV\\!3-\\\[˞p2K/\_\\0s16o~\as\\s\sq<<\\su\)\']DLqSQ\q\r=X0\~\MKe\n~\Z\'ˈ\z:\\0ox\2\'$Dj\|G\b\zv@ 2-բV`׬q;\0f0\B3c\\T 2\\\\1S\nYȠG\dp\' Hx<ըG\\\\\\\~JR\\ݯ\?\݉\\`yb\29Tɩ`hEQ$O\a\ROa0\a)1\;t=1pOL\f\\B. 2\Z䴉\\P\"&\(8\\=\PwNs-<~߁x<P\nJO\\/S/\@\\w\}1\\\\ש0:eo\\\\\\\i;\\\\6\WR\L\Co?Ux\\\\ lQ\\\\\k\~x\\:\8\\\;_~u6YC\\\$\ތ/tU 2\\}mc>I\r*ϕ>p\\\p\\n\\܉v \Cp /\\\\\\\ \\ys\u\\;V\\P% \\'N\M\\r\\n\\O\\z \r|\o\}>\-\f`/ AK\0.\\]\\\dr\\U\\\\\c#x wZσ?\' !w<\\EڙoxA<\S0\\)V\R7\"1?,-b2\\\fO\\7^y\wp\Ա|ۉ^>\dN\\BjGܦ<;\nD\{r\Pđ\ቻx\ޔ\M\\\p\V^x\SS\>\Ob~\\cE\$Y\a\` \V\Zˬ\L\\\\z\=\l\\8_\\\\9\G>\t}\\#8\G\~27\nh\SI[ʭT[%!0\ص0Bzh^@ρGG//T:\0\|\y\AR{\\=[[\\'B\x2\\X\@\\\\^[I\^6}R\9ʸ\s\<6W/_\\'N\\gLAl\@B\5rw\y\r%\(\V<\\:\\\cZ≧\' \8`\\0\z\-gb\\4L/|:/\1\0\fr&\W\\իp2\j\\\Kz9.\񘤼\\\\~.\\\\\\\ 2\0NJ$=\Y#E\\K8\\Z6cy\\,+\PMX? \\3\\.h\\"ƜE`f1%_\\#\X\\\n^\?\g}v ?\\R((\'\@\\jN@O#\xS,:E\\aJ\94&\+u\=\\x d\s\rE\\\X&SX\ijH\\`0\;y\d\\\\=,p \?88\E\"rOW$g\\3\O3%8\\yC\3\ƭ f\LH.5&\C`Z=ҕt-KfPf(\\\u] @\q}M2 \\\c\2\UDjf\"\0\B6]\nY?M5TSt[>e\ܬfե\D\=Ͻ\%Wy\eZ;\\\mѧ\\1|\\\\n \0\{\9~\\\\J\\\[\\o\=\ʫ\0\0\0\0IENDB`'),(67,1,'Notebook_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\}\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATHuTK\Dۯ3\n!\nd H%8K$8D\~\\8E\ƅH冄)\\㰛\\\v\|նv\nO\\K8爟\\޳\4\\nk kׯ\\\a\v\\OZ\oD+ixVB\n\ L\j,KRWUE5b3\\\~8\nL\\l\8\4J\JT ؊\0A\I\{5ϕ\'\uMgjx\\KR\r\0E\\0t\c-\#RžX7\G\Pg؀W\\0 \kU\`j\0\3\\!А?\\\O<\},\tc=-7\Zg^\!\}R{p\r݀6\-ˍ(A\\'\GʖAGp.\\\\G۞\P0\4gNJܓ\V땗AFm{\\َ\\%=C7b\`\\-)i6[\08?q\0QRFʼn/7[T\\I\D\\\\0\Ãd\\y\>\,\0oIMc\quC\j\'\=xx]\/\r/\mg\\ZJ԰O\\u\:^\ӆi\"0t\C`\~z\ʳ):O\HB\\*\ \(B\K\Z9Q(HJIƶ\}p\\7n\\\\'>KqH\!\ \ YFY BR:IP`\7XLj48ȍ(\ѵo\"X\ ^\KBKbn\\I BD\}qp‘Б\ԉХ\\KW=\\\ϓH>\\!E\(\\64;\CI !\cۓh6P\\\P\rB\R^8߼yk*]\l\\'\ھ\"\X\~y3ݹ|Z\\\?\_|ɗ\XIv\/\0v䚼\\ݗke\\0\!KJh9l.x\\t>}ʔOmkǏ>.\u!`)\YGJ>NO\\|\\˗-\W*ȲI\\Õu\}꯰\F\MA]\n\\l\FF\\n\qQ\\\o\B?Ru\\f!+)\\x\\01eY\\\\>PŅ\Q\"OIF\0\0\0\0IENDB`'),(68,1,'Notebook_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0,\0\0\0#;g\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IDATh\\Y˫]g_\~\7yY\yT&P\ATq N:\Tp \БPȟP$mADJb\nI\{\=\=k\\>\ܜc;\\\6{\{\\Z\ַ\wEYP\\[\\t\\\\\.w(\+\@x\ZY\ł\rc\ِQ\&\nh--H+\\ P\\lྷt!m\\rL\V5ŔJ=m3O$\\0\r\ v\01j\rc\nor\n\`yq2 \)\-\)ٸSh69\ʐ`\zด.s&hX\\,/\\w6R\t^\\\geӠk;JX>\@\r%lg7Au$\|\2N3\|6`Ö ,+k\5\\Ti=Pn\.:Z\06n9\=m*N{JT֜22j-x\ӈ#\_Qb\hQ H\\Ҫ\ǚ\0Vb\>=~JOW\lv\Pr\u\05`\U:\\r<i\*<{\0x[i\6:\e7,K\5\\ֿ >ڛg6\\:\0US—\:XZ7д\\D{\>c7\\\\0\_BUf\09\K\t2~\\!\\\Z\>\\.[It=TX\U\.\Cg\>@eZh\T\U\*\)G\q\}}\a[m\nR\@\0\{\~ U<\\\\u}(\\6u-u\\\o\\d\\J\?\\0eƍ\Μ}&.4N0\J\\ƛp\\\\ v,4}Ϫ\8I\\n τ(M±%\1j\!\q\̤q5PV\G*5\:\\{\wQ\\W]\x\oQ\\ro1LeqcA\ 7\F`}U2\\n$_\1i\c\$\\ы_\\իW\J<}0\\n\\ZG؉C4uQ(\\\\`8;\8\\\Ven;\d\\"HҔX\\ܠ\!+AFcFV!\lE1aDb\{\n\\#Ì^߇8fF5\\{\\sTW`2Ÿ,@\Y\, 琈Z(/1F|D\<~bj؟!M`k8F\q$ \\\\\\eYw@Y\sĐ\$0OX\\P OҗJv~\\ \'\E(\\Z\2)\-q\{@\\؊2\nIDǴ´ɑM=MG\q K\5h\w\\+\k\\4\r\\\\N\D.\Bbr=10X&m\\\ARk^\\nei\\R3K (>%\\\8:\W_=vHvںL.`1<\ޣ={\6\s\\#M0O`4\0U\<\01>\\\#02pp\0\\\{~ #),UH1\#\F\\e\f\\ICsKI;=P\\\C\nl\ߛ\\D#\>\h<\n;7O\"c=\;Y\ƍ\Ǟ:q\@\HqR\'|̎\ ],\:\\RP RBi\hSvC\\/EʡSϩ8 I22B\\Z0L\8J;kס\յk\+\\n`ʼ?\w|kpoF\\\ȸ1oq \\?\\\\͈\CWb\\\\"|\ _\\9YگC\\q\\fo t@\Y\-Dwc\0^S\?ȃ ؾ\%<\ o_hm s\;;)\K\;wN%ڼC) [شW\ZN\Tn\\\2,\4\\͛0\\w5]\\\p\\ K\\aeP8c\Nv\\\\e\\rj\1>\Qցǃ6.\h殸󗳋%q\#ln\FY\\\N!tGÙq\\{}\\l\\8\J?<}l\^ۦ]1\L\lם;\j_\Z\Naȋ$\ \8ӣ\\\|\9f9);\=\Zj\\?\&\ H\\\ޙr_&;A\Z%Y+!ԢG,q2L\p\\Z\\׿x\\\\9\Oa}e\S\\\E˸(>\\~\~@%\;X\\\\$\{\ʕm\{\\:]\\t\n@Ϛ\z\: n\>HܐF\r\\rC\;n\\\\\\m\h|\mL\Ç\^W޾}$\\Xa|\\0\0\0\0IENDB`'),(69,1,'Notebook_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0;\0\0\0ˌ\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0eIDATh\\[{\yf\\\\\ݻ\J-Yي-E\rjBJ\B\BGI!P PR(\\Ph\\R\n.iJKm\W\Ie\JȶٗvW+v\\q\\\93s\qw\u\ґ.s\\wΜ\~\\<\\\\\gl \\0\r(\x/\hU}D\;\XR\K9A\0\r\O\\/ey\\\˗\ \ј\\4|𒹄\,\\1[̸\wk\\i\Z(\0\|\Sps~uS\\\%U5 CC\J0Y\\'L\rEX8\\!X\\F?6\'x\ZY\0 {\nX\0nã>T -5qg\m?У2Ïg\CZ4>=\c\>\T@!&\s\elOw.\\x\>kph\ xc!!SUZ6c\0}s\&*\\\r\W\p<\|)=+FB\BA$FB)\\ \\\}\\A\˲\ #>iۏ\ՠ\,c\Z\r=Q=\\Pݙ2 \\dc^\ly1\b}\hh\"\rpXd*~Z9AlBɳ2D) >K\\9%ٸ A\rNh\MkLD\~l\\ \\u,\~ ̋K\pV\\"HPP\c-XuMKF\p{֠ԳXLsLӾ`c8q.:՝ 6سֺ_\\\`6(Үy\g\h^BD>K_$\s\~u\5Z&!\(\n\T h5\HRP\\\\"0O\r\x&\"\"*K풣\#&\\CZi048d\:a:I\@>˼\Q\C\\\0L\(ږI\'!JC\Y\kLCm9\\\3\~(\\ ^ZH\\p\LP\\83_\Li_xmͦu\ m\\f\#O\?b.\2] P$icA;;P\d\\i\z(\홳\\̢6 ey p\ \\& 칞\$Adgc,3^<\\\,.gZ\'C Ff\ǜ \F\\ϕg\f\D$\ڵ\\;b\"\\\Z\\<_\&vc!Q\xq\J\'\'iN\g eA<\ \\#=f\n\:\\\Ȥ\rQۮ̴4m\\\D%P<\x.~\,~D\0\\r\l}\0\nÉ Xq\&\q=\\j±\ \ \\8e\\s3 *̓)h4$J`b0aRD\0\\vE\0{5\V\\쌧s\\*d=o\\Y @\-\\$2\\<@`\"\Z6\Rq<+cp\8Oy\\\\\2\' \d\m9H;0slE;\/$\e\"\\Z\q&ȕ]ę\x\Zy\ \r\B\5\p\iǥ\0\_y= \\\"Z p*ˋ\\Yd\j8~ @Լk\0*ws= \Ky\q\LSV\t̨^ռb^1\]\0\jN\\\z\iŌj\\\d^۲>\\]#\08軣 \񂈘e33MsaHͿ\\\a^?jI L@\\\"f@8{?VȄI \0%W\H\0\\\ü}󼭇)r(\\\l? Xm?x@\Im[g7?ML\ݴms3Ec6\\2\]/\4\\w\'\CLC\k!mbІsk\Eȗ\:w0\\^M\\\\\*pnk`۬YS\\\\q\"޵\v@\Y\0 +O\\y\\\\5C\p\7Z;\H9ftI\\C:> Uބ\9*\ZaR\\P=.\\J4\0\@\\ 0$\+0wlq99~h\ZjFba\q0s<&G& 3u\\1Eic\H \\g>\\\>\0V\\?\G\!B\\}\4T\e\\"fy`x\\B\n\/.\Nkl:t\W\\\\\??\+-.DiU\v=\(&\\\L\(钉 eA\\]\K\PO\sj I[\R#a\H\lAT~\rΧ,ԲH&V\Tt%E\\#\9 v\\^dOAg\\r\\=:\\\ίaw=Om09Y`az %,\*`;Hb\\\\!9@S\)!J\b&\U@Z\z\1J\N\&k\{mDA\0cH\\\K:y\&C\wšñ{X\\i \sg\ \٧Ldضl\\܆]y߇\%x.\\\6f\|XY^BM\\oVɆ\\ֵ86Նk?*p|Xx\&0,ӆ\u\vzh2\\n\\LL4GP5΁ՕUb#+\M#] \ MOBD8`\YA\\\Z`\Ze|\T\ \nۂN]M\\g5k\[/\\-d\*\E9Buhe\z:(7g\Z(.\3ؿ\\7} Qj&ZE\rz<1Qv{\0\n\\౾㉵Ijo)z_ v9~%p\\0 ٶe1uh_.WE\V:\wѝ\\6\"\\##\@0\\ځ{\Ύ\n-/C\ґ\X8qJU1\rnLΈV\Xݡ&\7no\y\;#|ȳW\eZhL\\\Vm\D\\@\FQ`ڨACrZ\\n\8ht\^lCh)a{F\@ߙ;ۂ\\=&\\'tG$[ꯊ\vEٜ;A\lbc \\:C\?{;sҟ|\kO\\W_nN5Ί`\`\} \KP\f(C^L\\{6\'ʝ\6~\\w[$( \\\!m|G%\'\\\Z\Z=\\\tx\Dy \U,\C ckL*h\r\p؟3\r8\~),7Sg{\r.|\\\\\\Pv\\\\\s\'\+߁{wo\}܇ڀ\U\0{\ah\0G\m\Ā[wԖ{X\\\:l5\Beb\"̷6oé3\\7E؉h6 \nc(D<k¤>Mtw\t8H3hFS\nG\L w\\\\\\D_N b;\\\'.F\\\[}<\\m\r\\H\|4v\wx\̓\ݞ9uV71 jÓ\/_ \SO^/w\9ࣿq 66p\$| \`\t\\\W^x#\_x\ȑcq\\\nS\H\r\\\\\s:\2v\\u{K\k\/gyƶ\'s\h$\\`n\\\1t\h\dʀXXR\ d;eN\r]\Z\k\\0\|\ϮFk \<%|aYu\t:S\޷\eY_g\\\L}J[U\\\a\\\1l~\0=\l6\'>\\p\ZZ\guj<\\M$\0͈qp񥍿R4g\#&u\Z3z\H`:\\/jGuډiI \T\\,p\_|\\C-oJ\3\OGUT\\̀z^\\‚\T\\\t\@/ B/\\sp\0\0\0\0IENDB`'),(70,1,'Notebook_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0X\0\0\0\n\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATx\\]i\u~\s\\\\ܥHJ<\KIٖ%\p\0c#p\0 $Q\?İ;mȉ\\Nb\1Ip\\KM\\")Z$w\=\>\^uWuUuϱܑddaO\~\\^U\:s\\ \{1J\\6\Q[y̤p\\mx\O\VǷ;9Ɯp,>6k\Ƕ\1\\\\g\7\rC>\f/_?\cx\\\6;2\Ic`16\\\>c\wZm\Ç\\\\a*\0\}X\uȤ\\\!L\Z5\yk\`f\Z\(̾5EHg30QBiy\a\\\\\=Po4FgnF\\!L$è\Z\rØ ֘+¡\qw\Z\8\0/_x~|\P,!\;L\^cb\z\\!m78\\s\Q_\ZsLOi<\Ng2p\q\\pG\<ܱ#\\\Ǹ\\z H-\\r\\cBX^$,0\\qm\o1Uo\'\B\\\})@Q\\\b\08x€\00\\с&G\Z,\\b\I\H\\B!# \n5R$\\ ?m\,\|\\\e(!ǹf1 HK36D\aD %3?P\\yK\<\\=Og\\\rG\\i<3\$i\V> )d\"my\s\\\Ua\5\\Sba\0\n\ -D\P[\K\\"T:+mм#ݎ\JG\ɢ\Xk.\0\r}]p\\\ p`,\d\\($b$3i\\Q`e\7e4CWi-\\\\$\$3\r\\T E,\Zr_\\\\UR̶Sv\%B\\4-\ \گ3]2K\\0i0\\YLg\e?u0K\Ùv^%\m) \\\a\"\E\迃s\銡?W\(n1J \\\\'3=\r\rj׬\\Ў\z]\DHohq9\ち,\eDL\\|a[ҿ\Z\Q>\\M\\r]a\>\If\ڭ1 :\k0fj.xƥ\0!\\4/=\'$az))oؓ 7\0zF3\GY \ P\a)\H\\li\r$?\̗A\1PFvbe\.o C7\@ V\\r0S}\.\\\f\O)ݝb\>?\\q\ !Io8S\q 1L\l֨\\\\\\+\֡`aMmM64,\gFp엙F\&e\W2\\}˱\\rp\|P@\ɄH\Q&,Qϙ\vX\(MϖL\\Q>\\Sܟ7\nqÂѾ\\y,\r&\kAD|\4=2s*F\ M\<w#Vv`QsI`~\\l\nkzj 5fxk?9nr\mmd\n\\S &\e<\ױ\*J6\\`is_F\nGf\\g9\083\yY\e\Z,\\ ߯K+\\WL\Y2Ӭk\Dng\(f\\\(%h \B2,\[a\\ \>SE\\ZƫfAK\\U\\\\0\\\3Rf\r8~2\r\X<*\0&m\O3f1\p\0m \ϹQV\ \%G2\\#\rg\\\'g\\"\#g;1(s\\C}-+/\\-\Xr&\0U\bfEUyr\d\8q+x][`\\A\\n\Ǔ \ʈt\\B e}\\\l\vU=\j\A8 \r!\\Bcz\\\g~)I- \\'̍\4Z)\Vu>\\Z\\\\\\u\_7\\\\؊q\GY-2\-<^\~\\\4?!Xr;\\J%\\\o\0\\)ɱ\ smNX\PFM>;^\ey\"LQL\"g&c\ne\o\e\*\=ƔZ\\\'VJ\\F\ehq\~ٷD\x8/-\.(\\r\r\G\zy!s\r\L*P%\\\ \5\\}}~\\\״~W \Nq\q=\"7AӍ?\\\$$c.\PP\\\/\rD0bpy2M2_o\G*g\\Ɠ VЋ\\5\-)&`trI\j\,ٰ\\b\{\A\0b]%:\\TC*o\$F+(\Zж1φ\N\\\uƿ\\ׁ \] \\Gk?=-.\\Hb~\B&\:E3\~\\\L^\\g7{\\\ГscȠ9\16ٖ\\\ =%\\\\J1\gjմB/\d9b\Z2\6\I\\\0\\ÛEű \H\0\\'\:ً X2S\Zۘ\c\\Q\\\\'rǤc夸 S\30Q.Ǟ\\D\^)`yE?.?A\wzEr\VKx\8b@\I\nʁo`1\`fU\b\\zn\ n0w^\?\\{Iccz~0m \>̡7O\\<\l\\u5#?ĭ3\B?f\&̾ ǔ$\TJ]8n \\\I#\>\\rԏ\0\kkFױ \ܬ^p\\g\V^\\^#w6f#nv\|\\\_:f\\'|\\\\a\\\'N\7س\\\:,\۪?ܵ\0n\\\n\\\r\KFm\\n\] \h[&\ָ8Ns\;9\$ \&\:ٟ_.\r\a\{\\{\f%\$ZءH_5|\>/\\\ZC\\'\\=)\_`=\\\/\\ە2\@\C\J 7cB:\\H?1O&\\ZQH\\9?\3\z\-\\\֯;, \\c\"\5#00ń7=7; {\3\M\rRX}]ի\b\ :8\SC\c\gXi8\\zK#?\S\\ʊxo\\\Z\h:_L\7T \lĠ$\u]\\\m\\Z&*[\xΓ\:xo}*\\\xOQ\\rq~\^E<եz\n`\\\\Er\\rh8\T\\nDsۂKD\kllmB7<s\|V\!\ZO_\F4\>+<]K\ql[\\Źq\oI\0x\wnW\"Δ*\\\n40ծ\ҾЬwSA\mÑ\\f\jאY[077\ǑQ\V\Z\r߳\b\\:i\\w\]E)\!7\jm\P@8F%h3 P\OC\r\V\ \+\\'\چl.\,2>\rcs\n\R*\E@D\Ζgݔy~\n\n\ %E\\"mvfY-\!\ZsT&\Ea{MQ3\d\U[\u\λnU\0N\x,Ϣf7\tPCڨ9\'\\P\z^\\Do >р\\\\\kcb\FZ\\Zt{tjLO\\\\\0 \CU7\\l!JPZ\:\ph\\SKP۪ZmUzuK;q\\\\\mO\{Fm\\XN%\{\ba5Ҷ\б 2Fz\6033sbLD\\\}\4\\Aﻌ\\A)\D#!LU\D\rm\@ņvd\\}\\yt+]\g\"f2.˓p\\Fmr)\T-\lHc\\\2K\D LA\%n\Ak\\k+x,h\"\dR\|dM\4G\\V4\n̴x”RvZ.\ \\2 $r!^\\\nl&\1\\E\\2\bz\6hB\ޣ ǚݖP\{Ox\o>\\FSO=5\\\5\\?+\G\fiM\\\ݧI%\v\\\myj\i\ٹi(N\ 4#i{\` \k( \w\vT\к\u?\Ϫ~D?v\\Lъ\I\0\?\hå\W\K_\n\o0\Л\s$eD\0- lFhٰZMp2CM\\\\\\\&m\'\%x\\5<_\ }\\\"\\Ϯ!ssBÈ\[yc]\\\ϭ{ˠHZ\#օ}ilu\\aIL•\k\ \eZyr tvxo\|67x/]E#[#\E4\\r\ntѲ)\\\\":\`E \\\G G\ǿ:R Ȥg\\\rfЕ\q۰Z[Zv\\{p +B \-(Q\\k7+\֔>~i\XiHs\\\Z\\\5X\wH<%i\ZƁy$A\\NMW0͋鞈6\93/!m\;;,\e\%o@C \ȳ2\5hwj(*U1d\hd\\\\jĖH6:]\GF\+ω\Fy|\n袸\C\Bej\y61f\A3\Z\ u\nƓ2Z3)\\٪a_V\ >٬\nZ!\\V \\<ዳH#X\!\Z!4]\J\VIdJ\aU`\i4\ \\nъZ\\r\KsU\E^#i?Z]\\+ר\6# $5E]א;T\0܋.cv}\\\|VeB4\\,\ܨ!,@\r\D/\\ \ n&y(0i\D\BB!>\]4?j4\?#Y9D\\r۹.TetnƤ֗r\ U\'\(\Z1*#\\\Der9\5=ƀ\c4\)\\,\n\'h ;\\ӏ|\\@\\\b \\d\[\z0C\\.fz\\*0-\\\\ˈv\Ȉp]\\\:\ZTE;t\ji^\\\Γw SZp݆\N;~\}y{jl\\[\&\\\/[HZކY}KYzE]@kT1\,\\*\ZY\deɠ͡R˳:61U\"Z}\)Y \V\ꪵ\\\ \_}kO/-\?\\\3)Pi(\54L./\4ҥĒ(\049uVD\\\\ Шc#\;hOfI`TCj4\\ZS@T\ K \R1U_\}\\rN\ \JtF\~g\:^2\\\\.BѺ$Vp4R\յ-/i8^\\\6kFA\[q=\ʗ>\~O_ x\\ʈ0\1\\u\VWd\Ҟ;\-\Ov\"7\wU\5^\\::Ju\$h\Ͷ|Qv\.\nD$<\b4B)U~[H\\[p\\CZv\\x-\\0ҚF\\2UB%ʋ~~:\\2Ƶ\\\ϟO;w\O\0s3\LU2\S\ꫢР\Y2&PSTY㔍\\"\\\@U\j}䜖kT msI[D!+:\$d5+i\\ \'r00\n3F\Z \KG4\Z<呶(hTi=c\ѺQ;v\\\pnZ-]r\xc\L\0j\Yj\\W\w<\0o=}ʘu&9$OS2n堸\\NX\g\ܯ\\nQ\'0\#\'E]I+/Z6`/lҧ\\:&c\_W\\0\\8Yt\\p\ٔ{\0\%\@Y`5\ AӐ\\[\0`\\wCf\7b\4\{o_}\{\ȤI\q\˾\ui:\V 8&_|\8\n\=<\rhOGrS\\v\FQ\X\6\{2\w AMC>\\\\>\\3\\rC\0N6{6Æͱ9\As\Z~5\o}_\\\j8\;iOW\&\G2\\\rd\p\?!5bZ\\\ŋbp\^ޭo\\\]d֎6\\M\n\\\0_^\l\A\&\(\;Y\0ȵi&\33\n?ء=C«\ ]\nw<2?\ZTGD쥗.<\\Ϲh\0\*?1\\̉5\\\Jbvu9 cAN{G%j\ ]\0 3d`Ǭ/ֵ&\M\\}\;_\?\\[Y8b\ugDxNDS\\g\.,\P%\\'h%\\F}:b^\p\j!\0\4j&\ژ?\!\yě7*/T|\+q\Y*\{\L&\\_dǏ\{\&*=\\&\S\'\\[՚&\";\[ť3\5b\#[7y\g!UM\\\&|\\\%o\\\\.\l\\\+ׯ>X\r\.G?G~IE{9#߁PFeV댺d\\\@\_D<\r\4K\~\'Vs\\atҮ\"L\j~[\Mu\,9\n\˵yXe4\\\͍~sGa\7px\E?ٟ920AR3\(\50cA㤤֮ \|\^2M3\\\m\\K\j\~&\Uu\Z\gW\lVuy\?u\0ޔ\cer\\t\pKO\,;ۼ\\\6\\Kj\\\us\a(\u&4gk\!m]A~᷆ b y\9|!\㏻\\w\\p,a\%d,\B\\!\Tj\Hzm\\;tC\\\:J\\ᶍ\Q \4t\r7I\\\^\02і\߃nZ\˶\u_\\\x\f\>\\C\\r%1\n\\\e\\h\^}\\\\\wq,Mf\D\NN\'fb\AA\\V8}0)4܎R\\˗-\n#k\\߷\\\t\\0\\\\\c@m>\)A?窱\0\0\0\0IENDB`'),(71,1,'PBX_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0}\0\0\0j2k \0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\08IDATx\\}e33\\\\\\\rG.@\IHRD M(\" (\\rT)\" \h@: \\%\z\睲{ !7\{3;\f\ߧK$m\pIH\'ж\Ey\\P/}-\\oZ\\u:cY\߉\Z\\'<\02\t^%\l\X\\ \U\\9\'\"R\0&|^\\TǏ&Hd\\Ô\n\02_\\4\"!6Hd~LU\\0\n\\0\\O\\bѩ6c\0q\#R \Z \'$\0T\\T\b\bP\n\L\Yt.`Z I\\Z\0\Zm\c1S\"7\&2x KBa\ 1I\"͉R9zᔣQq\R1= u_+\s|\ !F\\\~<;o\\* Uj\\@1\'Oތ%oїA# <A,W\\}\[-]\Α\\5b\\5\'m\ckajFe杁\\\ⓀJ \'\0Ե_,V,\%_\ߚL@\A$\\\.|A:\n[^\\\\s/wsb\H@\\nN4\0ȵo%K\\| Y#*h4\C;\ PW/\~!S\\\}\\\\e\l \9pнdܯ\\rH pX \"\\\\'\0\.N~6>\3/\)\ng5IoX3\L\\G4\}8\1G\0 `j9\'5ݟK~\y\8^\}\._G6à\j!zN7\\n*\X\l\$\\_\\˯+ b\\ PVTj\ZN/Rk\F\z!E\GzCm\\\\r|͟}[7>,I\r\j\D\f\XJ{\5\\\\\9 \>f#\[2\\ua\\0\IS\'\0*\0H\08\\k\)\\\)u\0l@H.w#[\\@\DF\\0jO\0<[\Ж&\0\v#\0\~\\!~, p\ 1@\n\0U\\y9\\@&\\p\Tc&\0h8,?\'\0|#\0He2bW>\j\'\\0H\3g\0U\6\͝,\0\0 \r\0_\\|fL\ \76y\\#$\\\= :^\\\c\~{y9\|\\Zy\χ?-^\0\t<X8g\Mn\#\0\\0\\< Ս\\\q\\0$d,Gr\\7\^zYF\0q hQ,8u\\0r\\h2Œqc2`\&;\\\ rHVPj0R2 pi\\-\\!G\\\\N|9\\\+0\Z\5z\f\#̝5\\P\\\\K$`:@\I g/*|*=` \:쓧\<\?7! \"\0y#\4Z\nRmkSj\'$~L\\\y\\dMf*탤Q\IY>iT\?\ <,\.zG\"\S\'\0 W\0\\}\-\rJ( (V>\A$L1J\pb6ON\J\4\\Z,\\L`X0\\\e#~A<$PANǮ\\2u҄\0\\n\\\NJ\rz\j4LrNL\$N\ 3*w\\\sԉ\"v\\t\zAgAd\H\rKR8\2\0e4}>\\0\\2\Ɣ\n0ɠށ,H\bSFT@\\0\i\h7\lغ\@\#F`\n\u7^\yRU\q5\&\\r$Fs\rN\Z[Qr\\'\۸T\\@\0\7\\Pcʋ3\n\o\)aC> %iJ\$}ԉ\"z@i\\\]\\o%i$r\\v\gfM\0\;u\0\gc=$\0\OZ\Z,3\\p\\w\\\1]R\0[Y;j%ĉ9\f\rHg.˶|\M& !eS\ \&1:#\0f\E\F\0k\Ww\\G\np\&:{zaw\\k5~d8@\0\?=\@ \n\r&%\j/([Z\Z\+Qma_䤏X\I\dJP\\%|(M\)q\;Aي\M\"\W\p\ڼ\#\0\\0J̈\8\h!\|jW.1:\Ѡ> \\'\~rNAV-Rgf\\\\q\۱\F\b \\x,\\c/ղy<\# 3\0~\\\rT끁SzW\\ӻx>I#c \K\!\0$S@@N@3\\~\Lm\r>װk}^\E\F\0+\0n\Z\>\ׁVQ:c*|\\a3\\#\B\c\ \\щ\`\E#\0\\0\!F`Q\\\:deKF\03\0\}!B\r\\'VZM\\|\\r\5p\\A(.\0d\+o(`\yg\0 g\0\PE\0v2\\VA$\n\\r9#\0\\0w>X}G\00\\0\H \\\F\0+\0\Zz\\\Aa#\]; JMN\V_C}O?&$\: \'SG\ _49c(7ށ0\k?\\\^\\y\j:\Aϭ| B~\ʋ/@\0\\n̆\0x\\ +5Y\\\'>|\HH\\\\5 z4ҳH\\\h\rw\0x7!\q\WF\0x\O6\0yz-P\\.t!A*\0-j\\e+F\\0\?\ G\\*>A\_P\Ztpɤ \ ⒝68 K\\Ɂ8A<\\Q֩\\'\n;0.\\r\XJ\0+I>~Ss\C,\Z\벋F\0+\0~\:5z>*\ٕPoJ/ Q@|ߞ\eL(ۖ4(ǩ\UգIm\?یD\\\$T똔\V:\Sh@\\\# 3\0\\8I}R),\\Q\GD\Ԭ].\m[\M0\0H%.I\\"\0 %#Ȁ\6e<1Bl4߾\\0\ ^h@ڄ`ЏHN\_` [v\ͭ\~\#\0\\0=|\\\\M!s<\K\\\o܌lЎK?\B\\t\b`\ٳ\'&O\y66\'7\?[\r{j\\ \ߞ{.g\}\j@F\FhZ^\\\\\"eee\ӧ\&Mx\a\\ɉ[n\r\\<\K)\H\_\'8\o\-(N\=(x\hta\\\\\J\H\\~\\\tn7݇w\l6O~~2\a\\}a\\\\p8Ev\\8B@w\yP\\c <5h%P\\\0O\\|\Q\}(T\n؍\\\:a #+D!ؘa^\\m\%\\\0x=\L|0\pM\\%\\8{$2(v\ܙ u\\n9\r\r\0o\\\V\TC\]J\rqM\\,fj\TŶq\F\_\Z\ӏUck6{3\hеqtqc(\8j{ \\\\"J%\Q.\\\P4(t6]\rG\\\\x^\\!\\\)S\;;;!\ƐUǧ\0\1\08VA*\\E+VñX\"\-\ǽJ\\\\QLI/\\\2n#\nȏ\AS\ף\\=1\n\|\y\" \U p\\l`(z8\\\\lb!S\0 폩\C!رw?\\'qkU*\/`m7-\\z\sn\\p t\\\=^gg\\tE\jP@r|\Av\\C΁ \\r:<[+hdPrf)^߇W$t*^\Z;z\ @\>*\0CAؾ{/S z\…?5Xl_\\Y\l\\I& 8!\\\\{A\GwOʞl\n\\\zc6H\\05B*\hCN\0x\\6\!py\4͘\<94yu2G\K&uxS~\'> \V\V\\)z\ \\0gO? !\\{\\O 3@\_@=>ڵEӗJ冺EK_[7H\0\ii\\z\^/\\5FBݘ\цr\3ds\"D$@\0h\}>2ө\e|0\Ǟy!\5\K4x>×\'eJ-%\é\rrِ>\>%`ɠ\XH\ĕu,_2(\ \l Hh\\\\\Sv/9\;yAV\!/a L\ Y4\\\}\\\5S\e?wO2@B!\6\\3\G}\\WG\h+\\\{\.\b\gqZU&\AADE\nu:(7a\\LZ.#;3p,\\\N]\"j^\&\n.~!d\z\\\S\ ِ 1\\\\\n~hH E\\\V>\#:KfK+F\\~h|\\]\\4\n>\\\\Z^\664:\`\j\j\0 iHZD\=~`Go2\\ڢ@\0\+\\]N\L\4\\$|r\\pJ\\\0j\\7B\0\B\}{ͻ\+W^ʹ؊\\_&VW|DW?\7҉]Lt\\I\\\\W!\ŀ\\ZK\Z\&rm\Z}KT f^G4E~G/\\?S[\`(_\pj \'\0\\=,\\?d\n\R\\~~%gW\\0@\u\r\mh8\\Z\0\ 3pԝ2jǎ+\Y\\BP/ \\\қs5\0 ={ \?\0օ !\\\@_U\08\r_zp6x6n^\d\\I\\ }I S\0A\\d-=~FUѣ\\c` `3\n\͛ BT!YyP>)ab!ŅLݗ\\r\\\c\̬ 69\nU,K7\~\zhik\r~\ʚq7RG2\'0!\X\\yPg\\G\Z\A\\|\&\j\ј \\G:\=9s\ګ`<>\F(Z:}l\"e3\\'C\1\0B:\\rF9H\`\h`U9\޸\&\\'۞ \Bvs\=\0x\I\\" \0>\dz\j\k\5\\+ςheZ@b\֬C--ŚV7y\ZQ/\\\.o\\Z_ \+~\@8\nk\wƖNhÚ\\BN/V\F!p\\D-F{\03OV3b떧k\x(D\! ^^\Pc\/X\\\v\\\j\C\r=}ލbʙxU- K\.S\ZTcmPWZU(2 d\5\a?\nAV w \r/Yd\q5`\\ao \# >j\vd(\ 6WINT1t5f \%O\\ ߻\̳Sl2\\0큩Z4\\\>\\Ef\\G\n7K4e \\3ȅi\%A;!Tꠂ\\s=\ \0[w쀍n=\nԠ#u\"i\n6B~\\B\pk,\n5Aq\rJ\6\I{( \\߽m\r.!D@+\ф\{6i2\Y\!s)<й8А,E\m\\‚{\-\!K:}>_]\\bɭ\C\9\>@0\K.S󪤎\\+\\s )\ )̫B\\D_R.\@l\I\\?5׊\yҥPP`Omf\\YS\\\\BG:\Wf!^&E<,-N7\MTvz~X{\ A\D\ ʅVat\*&N万ͭ)\\~vJ\1`0[\Eră5\\\.W Ha\0p\_h \O5\\G\;\b\\\K\(9$s\o)\\\ $9 \f\9\% \^y1\y\\r\EiBOʆB\g:ң}\B\rLN*5\\\ \C9GːN\A\0|8cBtye\Ono #{7\'tA\q3D̪\j4\ZjB-\\nq31\0\\'\d1\05\4,I p))\u\\\\9\\'\'\\\"\\\4\_\r\\qu`/)VXҺ//\Z.\|,/\\\륵\\\&fw\Zz﾿{\K/^\<\'Rޖ8\\\r^Gev\,w\\.\b\,\y\n898̊\k<\;\\n\.\nC\\ԎK8Ag\ ~_\dA\AN\0\Ï7\\cZ\\P(X\䚚sE6y\"1\n#j\\\[oC\&8\\\0\)\vhj[Z7E.\BZ0\f\\\\\K/dFA\\\ \3\\(\|\\\n@SU Esi\\ֳ8Fy\N\\A\hA4\~:ߖj]dxN\0\6P,n\\\0\n\\V<5\\\\Hn\\1\\otj\07R\>\e6,qUeP^T\6^\\\ \S\\\\\=uгP6z =}i\8 Ah\AK\\\\C]]]pq\\+/#G{3{QG+\\'pR\\\rk?h>ut\dgI\\\~\#\@\0J\\O \0$tԎ_lP\\#P}\\~k{\ש.g?₂\\~\\\6:2\ulqU\P\@ H\d0\\W\\\r\\&g\ss\Aǻ>\\u\/F\lԳxa\]\Et\I\> ?KO?=9zT֢g\v \\a^t\\\\P=E\X3>\P0~\S~߃t\\^d\\W/y\\\"w\\\\0MYǓ-J \a\\nC\T0\R\-\;}\Ҍޥ\:VQ{Q5\{x\\\Cfh\\1s\\\D&g\k\{Y\&\:\\l\oXf\٣K\\ڵ\7w=\0AEQ\'䴳I꧖(\4l\\\ϼO0\\՚e\rR\r\\\PU2@LDՑQ\;v\\\Ygr_=\N۴h/wj\g\\\6\f48\\Mj}\((\r?Wg+ԍӧ+O*r%\NbS\ng\\[@}i\~\Z\H\\\z2\0\\[z۰\o~s㏠0\{[\`\\&ոò@6@\\\T\D„j\0\ю]h0\Z`\\ )\r\Ғ\A\E\rQ\4\c\c\)3\hlDf OJ\¡V\c\\t\r_2\䁳\\\0\\rgzbJE\h:\rW4\_A`\\\ɣ\>D\\'밅\\\O?\"Ce\ g-Y\ܮg\\,Bύ\\;&IcG(MF5qٹ{/|u;L; xгa\mP5zbݸʎ\\\@36\\\ee)_\'\\Օz\^xR\bT7E`\\,\R\;\\'WlTiQOq\}r\\SNeQ Ϡ\\\\Qk\\d~?\0o\g-kTͅhYj|s\A\t 2&IUL;\ZԌ\"[vp\\"r\AƦ<\\{\\ƭ*\\Qe%\\3\zT\\/ N)\\b\\(h4J\"\\@s\Z\0*o\\\\\ \\7O\\3T?)\Pd¬\S;o\\-\\l[\\\f֫Tk\\\\\\C\z7i\7\+/&–.7\H4yȽH\\\\@%o?\Z\h2\Z\0$c\\\ԡ\?\ ˨^\S\ɗ\~p\\5W^2jÏ\\\5Hnߜ\K\\\QP\@Y&\ \0(鎻\\BP]V\^\$d\\r;Y\ʦ\B\'y\L7\\_dx\dl\֝\\pg\ñbбmԎ0\-vE_h|f-4wt \e\O!3\U\Y2&)4a\Z\\\*\0\c~\\S\\\g\9\_\\\\Ɇ.7<\\3\\\\v~nF\Z\04\0\Lqײn\0֚ \uU%zTB\@I\@J\\\Adn\Z^h\zS\\\rgY\۰m/[8\3\`ٜ=ֳ\e\<\\\\0E\\L`9[^ƽ{im\3-\\3\n\T:*\kf\ ,\u6\Z߸tE%\+B\C[9\f4{r\\ܹ3&7K_\SRq?gO\"i$]|OJǎ<\0\d\"\\1!\0uu 2V\n4t\퓗]m8vK\\\\7\$\LǦ!e\?֭\\08t8)N#\\Z\\&}⊅3݋ܪUP5n\v2P-v&#<\\"\\zn\*\l\\\\/:\T\_PP\;3r#\l \0\LdS[D,\\\6<>8×H\\Pg\\ZENU>.5Ntj\Sf@:uF\Vf|i+PC//h\\P~\{\͐gEڜng\\)_\O\Z o\hz\+\\5}\\\O^\rCtF3uH\ \a/y</ \-H\A\\\y%FXn)\\Z߇ pM\0\'AeȞ@n\\\3t\JK\&A\ j\\́͟\\~h\\Eu#\n \ͨ\-&Ce^y}\\b2\e\\ \m{Xb)a+ P\r \Ak9\;o\ \\\l1p(\0\\d!f $rr]=_\JՆ\+\ٸ\T\:\R~\A\0\~\\@\A\'`R7ꮜI\\n\\aNɁ3K\\" ,>\LРK\m,\\\t(\g@Zz0\v\o&\\\+gpŅ_J\GI\Rж+\\\з\h\U\ݻ\=vl~\\"(|pX A7~\*R\ݏ͢8\ff4\\\\Å\A-hcV\:\ml\\\S\RF\Jȏ\3F\\)=zc\\N2V\؊b\\\}h\& \ަ<ٹ\\\_<;%κ\\\r\9\n}\)S \sC[o\\\\r\X\%Z\;w@\j\i/\?> \y-Mp\\\\{\x\:\04ޛTSk2HCr\\C\\0\Tj@\r˕߻\VO-Rk\\nxG/5\\r\W >\\\V.T֊Z\\\\\\Z^n\4\Z\\"iq݄F\\\v\OV\0\\_e\nm\\\\\FX4\Z\`\r\o\CD\<l\酦\^f s\0\]8\M.,t\A\\;~f>o\\Qۂ\\\\\\xX!H6\05d Q\t\y\Z\:NU\Y\ҺN\\'\\\\Yl6k?\\E\\FY\CPo1v+υ][@s\\0\sEQ͇z:0-n\[\\׿Ö\vO/]\\\o\rݾ\4s\0f\0 ֧ Ks_3.\+\ix5Fݞ PVj1H\\$QuGO65\\S۹\ fTVÒ-\TAa^?\\\\%\l\ \_\:\A\\\ʋX\o\e\\\+8\rFuX \q~\\S\ck?|\\\\M\ٍ5z\зu\\'\0{j\P]x\յr`\\0\g*\0 \ \_%\0X(F|$\`0\͜7\PP2\\\ HgN \̟\Z\\(\ð^  \[\r\\\"\\\(\Q\ H$=g?DCA\y +\*\!Y\0U`{\\\p\\\S3H7\y7k\b3\7\n\\;\G\"\\T \\0i6{&|}~\\\\\n\1^\n\\\\@\\\\FLAa`@\n^}\̙3I:Q75\\\Ǘ1\\Xn,\\"A\Zl\\W}\\SL}\-(Ў5BG\\8\0\@tw>k!k\t4X\\\HnُY%\\wAz\Z\Z/0\\\qk>\{\^@4y\\\^d@RɞX~=?j\(f`-֢1Ǘ\K1 ZSR\1\_|\\\\F\0P BB\\\X\\HG\!?\ok \̘:\Z\\ϳڕ\rza%\nk?~\'\PAc\0\\\\\\\\ZҙjBGz0\~\r\\\Z`\/=\䙧ΙZRThVœ\L\6&F\h\\\\r B\\\T-\X`\\qPa`\Ν\\:\\m\nP;n)\i\G\\ǟ^z͎\F\(|\\!\0uL Ђ\\.\\\0\\\r(\\ӸѨ_<\\u>ނ\V\N=dٹ\έ3 \DN\(C\fĀ\\zҚ,n\\p\\W@\l޸63\\v~֑\\_\\C\F#\\U\(\.T~\2\s\  2z{{)nԃ\\P\i$!z\P#\yC\:FkX~\&OVg\\\+s*HMU\%rg)$,Ehzѵ\@Tg\0׃`\\p\yg\9K\\ \i:~\Z\Zn%\F&~]]]\\c\Z\0c\n\Z H,@k\`TrdW\M:z\\\gU\H@I&\n\~\,py\ %>lk?\9u\.(ʷ?\_x\7D\\iwkʌgdy<@mmm4\\\\rَ\"h\\Fd(\'V)eV\'Lf\\sϟ5n\ZKvR5dϏ<X6 $\E v}=\\\ \P[\r\g̢L_.v5ZdCV O<96܁+\0dS\\N\r\Zԃ:0?ܨ\ )@UAB\I\6L#hX\/\"\r(\5\ \ZԎ!Bopa\\l\\|9@\\wCWO]\ \\\\B;\a\ZA\\6\\\0H\6\Vւk #\\"L\]`\Z\A&9字]g\=m\E\%E<\\jOaXHP2!\\ `;Rs7xm\\\ p \\7&\\\س/»\6mN \n\D~#\\0\\5#\a\NGJ IR)\d@\\>\1w\\fL\ \Ԡ=\u\\RfD\\\\\n6mJ(+| N*\r\\\'\r\\\<\Dԏ\6\z\s\̉ \n\0+V(^CQQ\Z*(̌`T \\"ZS\$d`J`agͩ8y\!\\"iO6} F׌R\}:ZAOG \Z\\\\'\\ Y3#\\0\\Z\cQ\\W+(\\e#r4Q\ZV ;A\nO\m#ѵuec\'N\f gu͎ ; \\Z`\n\t0YI\r4\{\\\[\ikj\\Yˎ\\?!\0\k\ءPH\\\\\FAe ()\,,eF0ZG0A\\"Me\\\\QuN\/,)әx=\ΥU\m\\%-J5OC\ M \\\\4\Gm\<\\\B`(\UQT+<\\n\V``2J[HIe 丂l/\[e\꼂\7Fk\IS\Ҹ{/8\Q\\rʚZs^EO\\ǍQ븿v!x]h$\\n\1}\\\0\`\⋙ dV !4w \\A;I\@@ @\ A݀\jYЎ0\\i{0\\]\gn\G\\\\08+^@\{pE`0#AG襚oRʶTҁ@5\b\)cGJ\:\"\ #ibIt?\%\6\\\\#\0\\h4\%Ƒ~gj\"\Z2R6 \0ۨ\0A\zj%;A\"dVHHa!kMI\ \\;\,\Hnc\0Y+jժ#\G\00 VP*-PZ0\ d70@\0ȢN\\ZV\Zh\o\\O\"q\\\8i\Q\0\{i⩝ $X\*ȐDњ\zb - \\u\t\x܏\%\\\\0\\x, ДpGG\00 dV+\\\nԬf\'!HhiX\8\:FIKj\kN\u\f E\E:?\\?vf6C]]iX8\šp+/\d\m,3\4eM)\\ڏ\0b `\8\l6\%Kď6\\0\b\\\^/GF\Q\$|\5Ӱb\\x\g\@$\\\\4 }ڗ5 5CȠm50\\H\H\\԰)\3\#\ h\0(\Bj_\S\+\\\0\0\0\0IENDB`'),(72,1,'PBX_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0!-\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATHǝKl\\W\\\\^ⱛ ĵS;I\TRI!\PIbÂ\n@D\r\ QTPU\-\"JAU4*ƎCP,;d{&8\̽3w\\4Be\\|:\\Z\\"@/ 45 \Z\Q\\\pgo\\ZJ\(\\n$JJtDQ-p\O~\;?{\0Q`\cO|\pWWDd \Bc! Zϯ\<\k\f\0^ໝFqyy\0DM\r\h1|el -eH6!\rk\*6\Z\(քJ\{>\\ +:໾#GÃtIO%\HQ\\b\l\˩\<\_I\JJ\H\Z4t\\(.oWO~_\0\s\\BGGD\ZB=|\\r Q,\\'6孫\&l\H\\@B\l\p_R(R>粰pJe5R:3|\\\P\\C` \d\q\ӣ\\\\͓\\\hzz\WG>+T===٥K\\\\ \\'O\\\qЁ>\\.\\$neTk5\}H\ŧu\߮Σ\k\xuez\\\A|\ԩ\\ Z(\nQ\lL;\\eIZ\\\\Z\7>\\4%ۻǷt\k\lV)\\fx\\\\\y\\ZWK\\)]*qxReή^\\8\\\0_>r(b(\dO-<*\IN\W\\\7νw\3\\"kZ<6Fk\(C\\\0,//s\GI[T:ʅ#v)\(s~HZevIy;_~\\=\\F!T\3}c\ma߇PB\ FH25\z}W\n\uF>g\Avn\0;GuL#^Y+{\\\,N_] \2@\(kl/Z\SS8\9\n/c\s]⸊6\\2!\\\\\Gv\߿o^xn\\\\OVgk\um9\\@;s\!\Vh4xK\g\Y\K/HI#MY,\\v\\|\N \x\\ڻ\~bjq\\\n\M\Z\reBiFM\Z{᭷?\\O{\Zk\0\Vj5kmP(\SDw_{\\o_ϼf}\\\\\ѽ \r=Ԓs\n،G\pPx5Ͽ?p\^\\\\\\ٳg݁!\\~\\ڇw~\\egs#\+kUf/_i\ksӽgΜ[b\r :\\\\Fc\}dێ\ҍ\/x\\\f\KB\\I133#\\有 P(dSSS.I\?\ZUy\0\0\0\0IENDB`'),(73,1,'PBX_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0/\0\0\0I\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0/IDATh\\Zi\~\\\s\\ce\\8\!r)\\\"e\\OQ\YaK@JVZ%\,$Ym L0\9\\\i{{\:\|_\Lf13[֫꽞\}\`&CNci|B ߠ5<f\0tmŝ8 2D\3[iچkal{)끄!qH\\ߨL2d\ u&\^f\\\\\\t\TUr񳃜NC%U\\g\nggEI\\\:\o?-ޭOk%T\uIں1ꈅ,el_3Ee~)\\=Cv̞%8{\\)S!\{3b- \@\)$Kg\-\\RmmeWxx\=e75c\#\hlLk\g@\EDx*\ \\\RLfFȖLyy92l\\㞀_1Mkn\07nީ\K4͐eD(\\HQY\K\\s\\\'mr:9ᎏJ\\\0S%m<\"\I1:JXy.\ $ٺ\)ʨW(\\\zhRVB禠\`ڀe \Cee\EZenR0\6X.\\rY+\G3Z- XyX\=\aEIv8x*ɈʞNn@\$\0\\\0Y25M\Ua&TxK6X%Y\\@^ϰ\0cF#\\v3Z\9#+\e\]vaw)ѦSV$\S\\ep\\\g\ UqM[gX%\rx\+\\o\\\kV`2\"J,i&!s#Tls\\A/H3\\5@8A\)$ \aY4urf\E\+.ڝ\!E\6\\0j+_\]\\ LhB\<9\+XKe\Z&隶\)$ϭRT\\\\_\\\\Z^N Ĭ c\Ӥ\\\\\\I\ \0ol\\ϗY\FA +ɉD\\\\\۵k\ܹv\ر\SO=e&޹7m\0Y\\d)[-\| \^3H\6\\ҡ\D\+%#\\\-TV\h\}\\r\t\\u\w7{\\K/̸1hu\n!\M\-Q\4!d\Z\1LS ט`SV+\ \,\\'8t`[\AaJ\b>?!\\\=\a\\Fva\bT|kT_0\O\`Pj4\|\\ \ӻ\l\0\.\g&\%\\n. 3my\\q0\\VWS4vat\\}K\bU\\h\M+\|T:ݬ\)W\_nJjZ\^|\ER\z\0\D z\\VŽ^\6b\?\U\\\\{tVuf469L_x\\աJ?|Mze/m\\ᔢk\\\\e)?הk\\!\~\\\W\Z\\0xRt\fTB\k H|l@\\@Aa>\\ O\P99\E]o^JdɅ(\ӗhxN1\!nLRB6SwT1\r2)x\\ѣ{ H\d<\\e/\/\ ;1pblyy?;\S)\\M^\N\\q\\9\\jz\\\92s\D\>jЎ̖L\Ɯ,Vy\\\+\\\X\Ba1g \4\\L\\\r\r`v\pq\y5,\3y\Z\\\$1Gf\r\0MS\\[\[t+\i$;O\~3\`< :Z\R\\t\nD)_Ew\'\ }\щ\UI\7Q%e\\WP\0՘C:\0Z 9nX5t\EC1\\\1\ϒ\\\Sѐ\K;6\\g\nh\\U+\\ \\'caw\B\Wt }XRF\Nt|Z#\\\jo\\'_\\'\g2 h\Z`j\rx>h\\@\G\ \Z\7ޤ=L\\#\\\4-5H#FN8\۝ \\Yh*^\"NjbߨQ\5\!>\\\\ёJC\[ta\f\r\^Dz\\\?M\V\\H\q \sS`8^>9L.Uq\E(\\D\m!:\\\!`P\N%\^\M25T=Wvn,\-s\ʥ>*ZV14}\o?wu!\\\rR\g\1\P8_\[g\'xRk\\\ 7>ɍJ\uPDQ\'\}#k5\˿\~k\\?\\\F_\;wj\UeC_()\ӎn\ZwZ\?v\nE\ѝk֥Mz㭷\\{qz\^\\&\n\"M\Z9\\H,y\\\u!\\x\rY~/- 42y&)z\t\S-ͳ-V*\\oE\"Gdj#\rg.O\\ P\'!\\%\\\<\):|\\\\7_}M\\w\\̽\\ \R0\]\w}A~ި\zKw\Z\:5\M/[n\<{\\k\f\\\0\R\C\ӝ\\\\,>[\yC`\\\\e=m\\i:\\<%c\h\\\[i\\pab+~.5w\\n\]$\\,D\"u```C4\Z\r\޻\"}*\\\|-tז~nLE\ri\@ʄ=`s9xK\{ j̥\\#d\l\\\\ߴ\9\7\7[\ #D\Ad\\\\\\\\e\8`Yį ZX\\\\\\3}\\׳s\@ll:Q߹|vzvK%#\\t\\h\'r\)rEhS,Hg-\࿛\`\\0}޷gH\d\\-\\\\lsiWQ\r\]CHo\^w\\y \V\1y\\a\7pT\\\HHP\ir&C\Ou%z\=;F@\f(\h\e~-\Z\"9\&ݳo/:3B>8=?Pa8\<]\\\\\\\O `R\P`\6ܷg\ؽ玡P(`,\&I9\rәy\A\\\I\]ls\͇6\;\hnE5R8 \\p=hq\F\\zD\jm]ncg\\۸i:U\\\rUZD\ʣU`QbUa\=\ȃ\\\LW/Gd\_\+h\Z\\\'X6q \r\r\n 0$\\\lܲe\S\(\\(`L\6\n\"(\0ܣgG#\ \\bĨ|\\v<\\s\M+\ky\~9\P)c\Z8\t:\\8\u\\\\Ƈq\vn\\ߴ\\I\6\'a~\C\\\K cG\^\C\\k\'O*\\6\㸎@|SQUo\\\ҩ\BjzTre\@ p\ĉ\u7`!\w\}7&r\\\\\'~\#\\H\`*bm\r \`<\)%\Xk\v\uD6::\*|މ\R\\0\P L*P=\\\[Z\\;vLA\\u\ [|lS\0\0\0\0IENDB`'),(74,1,'PBX_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0>\0\0\0Ao\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0GIDATh\\[yWy؝ٝW\\\-tl@\\&ĮD\nL; `HJ\"\n$\nJ\nq\\\p\(ɖ˫[ZiW\\\\\\\3}\\=dd#[;[_\\o\\{\%˲\s\rC\\gU8\'p~R\̸RV\7¬b^7\<3< Ӻ0\\\x \* U̻@~QqkM\J\L @X,Ȓ\\B!Y\(U#\sH\d\Q%\\\.W\ \\92kIPaj{\088+^\\r$ɥi\viT>v\qu[usUʭj UB2\2\\w\صD\\r@JfjBArj31\ZUQUm\U\ b3蓝c  mI,#1P\ZuTn$\0\APpC\\Z\\\.XXA9M]\Wj\\Ǻi\\\0\{\\[\@J^\\\\58 \MiI\Z\ {P@q\kx\Ih\ C\^a\ٖN~$N$:r\8\\ Z~+HdDC![s\Y^u\\NJӺ8)B\ܪ.\%8d\+ \o\B\s\\s\\%YQK\"}A\'R%\MR,Î\!¦n6%K%\0\TuRu\b\\qyy\"x\\V%k\ >\nJ\0X\ߍdJ\0XK\ΜO\\跨q`;J\B\TN\ ԧܠZ\\0\Aյ\]\먷\&C<\\0*B\%39ع\\ \H8`\H6x-JRt ȶ\\'g\un\88}qAݰIJ%@ML\-jzn;%b:1\p/|?\\0\_̧\t\)ZRV\0ijBB>\; :v&C]\"Ѩ\\Ң>\\#<s߾}J\\wb\`\0K;*\\I:>6*a\c]\\\\\\g\I\\\0q\n7= \0rL\С\, \\rÐt\q \f\\`\\v>HkkGGǦM1K&eӉ_\Ǐcn9ؓL岙>y5Je\0h%E\MV7c`\\+\\\\"FPf+œ\LIYNl[-Jp{ʏ\g\Z\tD}EVw$d0]\ eJzΜ0\\waC}}\cd\A>?m\\\\`\LpKP\,lB2_5\\aC_\W\n>(WyuZa\q\0\\\|2I\몤\\\\\\\\\\\n˲ !\n@\t\\qG\<:;\\r\\\g\^ \Z$\ \\\\\Q\\\xeVnR{!%\\%z\N Oࡇ\Z\\W\\\n\2\0(aVU[%\G\Ks)!\ƹRlګ\!\CT,Rbj\"Mm \O\8\uz\\q\`7>KlD4w\E5]\#\\n\a~^7g\90\\0˔(bWWѧ\\\\\\\\L^S\Y*\0\\l\ -&K\(>vc\ҹ>=\\>XL\0\i\0Y/S>5OV}LP&䪻\\@zz\\po\\\\@#h\}\ZĖ\':5:C}\4\\IC\)&\\rGiӚ[\bLu*o\[T\=s\"\\\؂p\ⵜ\0tg0SܬK*Rr@b\&\0 ~Ģ[w\@(,\\\\Qj\\;\\'^p&\\"2~\8\r\963\,\G<\;7u*\\ɑ4\0 )樄LS\~IF [\Z `͞T6\{R\k\t\{\\\c>\rP2H:5\\Y\w\V\{.\\"\r@\\h$\_(\\ .祊\8u4T\\0mE8@뻺D9<9C3s4\Z͢\e@\'\i\\QWLޢ\|Bu1 ׬\\|\[ZQ*\P }kEwwu7ȫ\9DKn\\ONM\k\7Մ\\\z\\i\h\\FjU\\2\ݽyԕ\\mt\{UfSi\9b-DN\y_?}c\ uh*\\\J=z\0\a:;:*\K%\\\[{\\\s\0\?@H0)\\S[S\\\\QȭƧL#ӬAQ·\4\0\\\(\DmK\.\J!_`E\g\t\\\\ Ez\x,B\ńdzF\epl>pX؏kZ\Ln\lCR^(\nS)9K\=\9<2J㣣\\j\\\l\j\0\?\lJD:K\l\D\\\\e{\˂k3D?{\nj\\Űe\\(\0q\Z\^ `\9*3_-\W\\\TL\N\°! _-\\\MW.]t \-\4/QWK#=\\'\\줠\\'\/\\GsvddD\j\ܑy\\4<\/#2ۿ%3\0N\\&\V(\\\B\0\\ \+,G\nHlWT%\\ \,3(e\'f焈ƢQz\O\\pHB&1\\-\\\\\\T\"Iu\\\Q?$\#\'H\ED\f,\Zl\\cx6/Г\ߏB\R<͕\j\0f (@\{\h_E+ǧ,\\K`\\\\\\\\?\7mJ3\n#ݭ\\\kwN\\\Z\ \}g\E\(V-NF(Ժ6\\%\Fh0Zoa.Ѱ޿\hׇv\\/a\\\\]h\q\vul\i\ޚխpP\Hc\\\hi13 )\\\Ix\0IiA^\\\\03~\cl|\\'\\F\Zo\\\sn\鮮\x@\\jU!%\\.ѵ}+\\yq\b\04=\?v\K.g\k6u\"\\ji \')T\"\qE|h\\n!\\0xtnQ0\cTK\\`\\MyN\\\ɯ\/x-\@:]7ƤS\\]\f}v\\"U\z|>_PӴKVjD[WӲf\_>|PDs6!>\ \R\\MAT\\r}\\$\\/?(B\\\\\\5\\\\\\?s=\kx[U ]MX-\%0H?y\Yj\J\\z\ \0\Sn߾}W}\'Mz7S*{\nnSM$\\0y\&\nP~\][\\Z[ZT\k\0W\Hs>\Z8{\RH8\\\WwPP(aVB \z;6l\l^\\\\r\De\E&dz\*!-i\̧Ly\{\6\>\r\\ &G`*\N\\A\9q\C?\ï\up):N\r]\\\0ƿ\\ Bͼ\\p\0Vt:2>\tF4aL\\Y\r\C_\r\\ɣG\״9zXI*\0 6j.q.yz\0lݓ\K\0\\q\n\N\\U\$cppP\b2C\DZ(R\Y`;\\/\Z\>\\\0\\-<2\\o\&G\\\\Y/3r$\\0\0\0\0IENDB`'),(75,1,'PBX_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0^\0\0\0\\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\'YIDATx\\} ]\޹\۷~Jݭ\$hA \rF^\n\\3$v\$I2ؕ8q\'8\Ԍ=SST0큱Y$ъ\\R\^_}K\\\\\\" {.K\޽\\\;\ ÀZ9Uo\b̵6\E\\\B\r>!%P\۶B2\9/r!\Z\Mt\\\rVS\Դ\\}QZ\<8-\\¦\fo5sb+a+\u\` _\\`\:ۡ\*%\\U+\s\*o\z\\!\\\\ `\D\@%\vI\J\:X[\l!\r~\\xElQs\2$R\L:;+aQZ \Xn㎖\\ɲ,,\5\+U\cc|\y\/l-\\Z\+(ph(\n\<\_\9⁰ ;z\~\\tlaPy/\syXV\T\0\\\s~ϐ#Z :,)Puջ~\znpdʢ̎[!\\\Ȯ\'3}3_m~k\' \Z$1|\Qyvn\B\R\0[\\-\Ms\\0>zކ\Nhonbœ\C+\\\C܉\J\=\r5kfYA\\M\f\\>(%/U\tEUےApK\{\모ۇ|\\\\Z\kUZ\\t\Ǧ\0g\(\\p>~\n\^\\\\RN n !ҍ\5\Z(]RNe\\^\ \L08H1!\\M\\\uC\\\n\n\,\O\/J\0mi+@dv/]wu=X\`, \\%\kZ CG X\Z\n\\x. o>\Њ .\\8,Ђ*\)-n X-y\YO^\r*KQ/m$x&s9\0&\][7[\\01\B\0\Dṧj\v8j9(q?C0ev\\\Ǽ4\ɄK\n*r}~\"\ㆩD)$\\n `CN\f\|\: \n\\qh0p3ɶ\X,>DBK 0\.N\"\T\0\9 OBTJ,\\ \"N\\\Hʴ7-a2t\"\\k\r{\ʔ\ Ж\i_0(K0v+pb\M\$\\?k,Hj\\Vj\HCF$Cy7ϧ\O\ ,5!\\\qa\|N6îo0%-mBQz\\}ZpXwE\-q&\\P5eA?ML9&UU\\ЌO\ \K$\'.D\\\0׵%\r5Aœ\fa\s&SEcZ\W R3W\xYPgi\'XN\\{k%\\\Piumi+\p0\@\ؑƄ\ÑY\n \\K \r”\H\r\\_)+簣c1[`\A\A\$>#V!\nE<\\n&\\DfGbhR3 { JA\\\ 3X5\6U&X\\Zg\1_\Pn4y\-E\\*0qm\ƄF\!Ju3a\n\n\ZƂT1+\\\|U\*!\\I\\@(G\\b\6J-4ٶ3n4\ ɈuN+\?&L#G&oP\Z\(7P\Y d\\"%.\Jf\r\+\c\\s?9_\~\\\LO\I\\\(HZ ~L{e\_.D4ԣaF\nPSS#|\\}\\E1]i1a(\+\\\ׁ ,\\\.*P\r$\\ne\ʕJ4\Z{\9\\_d\pLBd\ns.^ %\I\ d1\ C\n\@ \E\\\uT[[[\bE˥\\q5~\;\\Q,<\\\\m\\K\\ӧ٣~V`>\t+ẟiP`6 \J%f\\\\n@dž\P)ytIbX@G+\&b.SQ9\nߞ\\\xÇ>\\,ؽ{7gX\n\\cQ5+\Z\8 c#\Ӻ\|s_|\M\Ϟʤ\\'\\c\,\lX.\\]\̶\2 \&Ĕ\:ӊ\\}\Vxm#T\"(x@ω\GKj\lsת\.\x6b@PKb\[\N@ \n\\\d]eYEA\GTT\\\P(\\\BA߹s\\f% \"\N(K Ѵ8ArF\\H\Ɯ\\A\n5\Jx`B!> \\Zd3a4\\%\P0H\\;727+\L6\\PS\c\\< M.忮kqnݺmgIH\O\\{bCQsH_7\fKWH)\Z\nߞIV\@v]1<\P.f\l\]Q\\HVm62\'\YMt\K\Ix%\Yg \Lyc=\\n\\n%R8z\\\\\\U_\c~v\4\\P\t\  4{\|6\0\JXjD\N\b\\ <\yl<)ԋj\o\"2 \GB\^\Hå\a<\n\0f%Ҹ\0%P \\4\'賭\#f-4_*\D\0E+QG\\V$pCn\ k\n\\\\\r\ O|\5Ęc?\zI<8#!\\Tf\01$/4\.*\n\\\n\ڨC<^\宂\\+\t\\_\\r====\w]\nBpBPt\l\Z\\T\\'.V\\ Qeix\\Q\,kr\VR<^\wCcƾ\\.\ߏ\U\\3B\3g@Z\ RC\]\Zv\4 \w(B\ej4\"4I-\-\'eYǀ\\\ڂ~h\eCI?%*,0{\qy=\"@ n0A? b9S/wn\\[.}ާAzȦ\{e\rܾ\0ܳ\v\Z\`q\$d\ӄ*L!K\dA\ }yu\^\\S\\ߕR\n\d\\\Ts\\\B:)  #+)(_ \E}_U\,=\*4\-\\\J(/Jt-J k_\FDd^,\0\x\G\E¶|z* \[\c%CR[w<D |\\oٲ \qw\?\4\O2CuN\\ .^\֭\SAȣ;\;or0\\f[dDd\R!G2\jZV\\PW<.$6 Ď\\]n\4s\24\\ː\nd\\"pK}|}\\m_o{ł \7\\gs\z>Xf-\\n|nW\oho\\Ä\\AŠ\Gp<\P!2*(~?)(+Z\\\/$k\(L\\\\yn\r-ZD\"\s!I*%\i=be\\\td]y\TFȖ\\o_jV!@pԓÞ۷\Bݍo \n\\ꜚB~\g\\\\Z-/™iTF\"ZH%p] իǎIO&!\\\C\1 {͋\0Ƅ\\b\\'Jo\Bx\!̗OU\y\h h\ѐ\>^\\\\\L؜\"\D?]^07\"\'\\w\cr\\j\"5\J ڲf%\\F\ k\傆\+\e\H`{w+lVd.ÅXP\\R\\bhO/R\\3l\ \"\g|5IN$\\,4=\KaM\X>䓺\/`H\\7憉Dm٣6٭\ᤋDXH7c 86\B\Bj\\\\n\ff\z&tE*\FX\\4ءJ`r& \\\\n|zRc4.ta \[\,.cl:Ã0N\8\ Yи̜@\Cd#\"R\}\% \LƔǿ\\mN\h@j\\m۶Qڳ\>ˠ\D\n \d`h\\ \r\Pu=0\kp%\k(Ah!\;\|o/pCk\˱^y&e\s \\\9v4E#E^c\7:t?>ae\\`\I\g`\u\ Ĥ\\\*\AھYr t.o\\\\4ѩ83\h\{\+j\4\x\"\\\\ *D$$I\5\\\cm\mD\\u\r\rP??v\\[C\C *@7 .\>\\ >Lla ͊4ׯ+>\\-.=}\S`s.\n+[`U\2hme!\\\\\w߱u\ I.\\Pvm\\Pz\|\\\X\\r\uȎ)MLG0+gT\+Z 1\\"e C<r@\\\\\OE*\0\73bE|!1Xy5׾o!JgO}aN\NN\\gML1\\C\'qu9b?\\\l\Y\CQ_Wk\\cӰ\\|\P\{ \\\)kb\"dą|\Z\YI\\w\*O\Q\\"\r\ \2\\{\vS*nW\\\\\\\\]*\eϱ\6ɚV0:qq>\\\ Cw\rX=`,\%\\\{\\X=\rE\!\bLe-kb\Ήp>v<.Y@>@M-کw\\\\\Z\\\\–U\\\rԩ\y`\QG^2S|\nT\n6\VJ\ܴ⪬\'\\\Y\'\\I^\\0Fy\\\\1|\8\\F\֑S,؅{m[ \hG\>6\nXB!4RTg{\\q\'\kp\l/:Ӌ55A\W-H\T6z(\\$\\\\CL\y9\Z\y>\0D(]3fg\'\)/\U3a+…-(\g<W[\rBA\_zU{\ @h\v\\eV\\hFtgF\a\na5yf`\\aֶM\w\]bm[2I;o\f\\\\\$|~ד\_H༊<)\\)e\(\\:\\\\ʟ\dї\\^\$\n\bOhCR*\_\\Aذn\lXy\%lX,\;^oTYAC\\\\\V$f\"4it}\\~t+\?ì}Yl\Z7wA\'r :6\GiE\\7\:\>\\\g\\|\,a\\4\\T\#$;6\\&{\Z*M\P^+\)f-}QS*\S޷=\\mދ\DY_e}\\\d(\P.D(!\\A\j \Y\3\D\Ko܀\\\b9uh:W\\3P\\\ʻ`p|BA?lܰ\>~q\"CGB\\:\\\8\\\\̔\\n\\ gܵ_\'Dl\LG\'\,Y\Zj4n\r3rf\2,\i\r=\Ň\`t߮Gع \Б\ H\\E\\]\\'D\"8Ɨ>\it\Ʈ66Rv\\ \\\q?D\<\\oC\\(\\\\\I\\ًѲ)]\+\fB\S_{\f\two\\GQ\-Wx Y\(|z?UU\UG\\\\\dJ\\Q\\\o\\n\sC4+\#ߵ\dY\ \0B\@`L&S,\Ҳ\\)dz.\`\ -ﯞ1\.k\[WC@/B\9\Y(\\ס9R\6\k8zk@N\ZIرm+,C\d\\\\"\ƠyEFѲ3\J搴a炜§\\d$I\Pjx\g\@\\B߳\n\GCYU\r\4떷x,c0H\d\\\C~\\x\\\`9d\B逃{\]\0\\\\ 7BA0\\i8|\\0Դt\@C8 ;\MbQ9`^\^D6,\\\"5\;\Z\x\ͷ\\\\\Aq⎎m\\ݬ\;\\i\\Nm\'\uf[\0O:\K\nǰ O\ZWv@,!A\LЖ\z[\E\\\~\V\\\\K,:\\\^H\!k~X\5\\h~w \m@\jDX!_\Z<\',\\[[d6\\ *\\\\hK &ƇO\_\AX\jѣiKWuFz\\~\`#R&g3@\\'B橫tR\\{\(It~\\NfM\G\\(N\\k_x\ڲɾS \\Zp5N+\\\n\_ $p\D^w\BT\f\x\\4\#\0ͫ&l\}d\4\v\zX\\\\ð\$nʙ\!\^|n\Of\ͳ\o\\\lʐQ\\X{\M\\\a\ 6b \\\\\\\\\v?ijn+iL)\Z\$ \euQX\TV\5AhkYnV\\˦UY\U\\8@\\r\6~vP\0 ~\3\\;\rТ\@ݰquQ\\.rss\zTd\c\\o ϶\g\\\\\\.\\㙤Y\n\xA9˱ f|\\\ԋ_*r}\Hk\\m\^\\\l` 6\\\0$I4 ֔&6}~׳ \\nZwA\\\x\'iϯ\,G:]4Ej9\Ыr\\7/\H\fq2\\\fϟ\Z\=w\\\Vmٶ\\(Tu:t9\\~i\v\\$$P \ϊ+\\/$ d\Zr\rQHd2\~\rPoa0WCaxq5iN\\씐xx\\0>\+\"2藚\_\mC\Vǒ\7x*\ Q\\\* ]\ pX\\\\\nQˍ\P\p^\dZcX`<zv޾>k}_?/`\\>過\O\\A|X6\SI|\\<9xg\y(fjjJhllV▐\"7.ɇ=~\Z+7I h\bx\\\Z\\\\h\\iT.\IƦflv!\Z\܆\l\M!z\b/Y?49\_\\nt0KGw\[f\\'{\\ܳ>\{lh`F:\Z#Pq\_bC4Gۼys1\s\\\Q\nF\mz\\y\>\F⣃g\\?\\\BdTkn(}\z\\P \n{2*ԁY\r\M\\\Z\\{\\\5\ٿ\d<*-jlx\'\L2G\\~ɾ\'}??\筄ۂc%7j>\Z/LWl*\\̌\\UUnƃJ!K\Z<O\\Z c< \|\\n;\\ܬj\\Z\ \'\Ifk1ǻ\n\_oFB$T\\a \\\ۤ\\p\\\\[⟢\\N!\\;?1T\\=C\\\2*7\A\y\{o@\\uc\]\=p۲\\\Z\vCRH \'L!T\@\' uk[\eL6\\V(L+dabp\0߂Ϭzm\;\\7TҒ\\\ZO5\1\`I%D>WR?)Cd={RE\V@GEP\> \}RJ\\\#\Sǎ^s\?{Ggת67\$wffR]$5H\H!L22 \vQV9\rCWd +\0\@\E\?4z^\k\5E\cD\r\޳\dR\W\!?\r\\*\\"0^HZhʩLր\B5ՠ2j\Er\\\\ܼ\\\qKIU\'ö\nۢ\\\ߩl\͌\kpr\\V \\\r{X\\F\\\(\\\\\\3\'\\ޮY<\nVZX__\b\h7*K0̟.$\\Z! \A\\\\"lo\\uքk\"2sŊJUV\'\JVlPT\ N|\0է`\\\\}\/_7\y*.˄\(LJ\8\nHLNN\_\D=\\*K\"krhn2>( ;%\|\r[\0\\r\SQ\\qS[ת._(bi2\ي\Jh}\\ lM-\\#7*\ri\\\Rc\r(|\̒$\1BC.\b<,\$\ 8\nS\'uA o\\xk\\\Vv\ kje\mŊjQY\ Gu\c\z$YA\-\n#Rj?~\$\n?/_^/尨,`!\Dacp\a\!\! 0epwEAC.\\B\\\\ysWCsk7\H\n\\s ᨇ[@ϩ\Gj`$\\=\\\\7dY89\)\I\\b- \\ 7,.AV\\(Hn\^\\'ePL \)|-͊z8e\M \cadۢ \\\\:BW{,\J(BS\{-7\\14.Z E\E̜\\S1KoUܖY Qy hT\GzY\R=\\e\ϟ[[[\T*ESd\\+X`\0\!\+\$\ \q\\͑H\ׂ\(`!e Q\9;YĘ!\1\\$xfzoH\r\\\tz)\\nIk\=Yn+Dz\j\Z\Z\(LOOH\#\ T*}\j\\Ҧ%oWk! -P\G^?be\\'\\0\0\0\0IENDB`'),(76,1,'Phone_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0]\0\0\0mn:\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0,xIDATx\\}`յ\\^$z,K\–6\\c\cz l ^\\\ \'\;0\0\kP:\'\ p\_4g \0D/ޫE{ \ǿV\\=x8S\+\\0DbkD{\\\\0M\+\{E\ \0RhV8\\0\/\'xjZ\D\52\@\n\0\E\#z-\0`F\[\\0Q/X\7\\\]paF\\*5L\NV\iq\\\\jp\^\nl.~\\A\_ig<(N \0$\W/Ah?󮳧N<\d)\\8|6p\|\k\\v\ج\޾޽{\?~\\Wy xp답 TI\E/HZ\t\@Fj\\\6\͔x\\\ +&s>lj\\0z\\[mE\_\\\\y\!$i\U\?⼎\o޿U\!|\ 3\0\\0\M\\\V\rk\\1K\H\pBgw7u\\\\\[x! \`?\)Ʋ\K \*\^\\v58\}\-\\\Ք\l>\\ \0\n\׉F= >F\\>\̳7NVSb\0wu\c\o\}\\o\WL\\\=5~\\\8\\tul.ع%-\"qS0\\} \\s\\\\ޓ|OF\\\ Jψ\i\\w]L\gƬy\j\rox.C(@\\\a\\\\\ݛ\774XESIc(̓N%\0Te\U> ?\?W\.tůuZm|@\0\\|Y\cb\c\{3LCB\h@\\zz\N\![\ڪ\o\\\a@8\\0PW\~\\{.Xq\\Ń\\@\#\f\\\\\7\\\}\Y9 \7r\\9u\0\x?\0$m^\9\8\\\\>KA>#\ID\Z\\\\7\\\ ^\h\oBsk[T\.\\\{\5\\{U/\\\\\\~p\\ (y*-\\c\\\d\kX!\i0{\}v[eWG\{_lX\j:e\0\\\'\r\0VĴ\ٝ?u\ʕTj \\\0\p\GU0K\Z*> 4ֹ\\\nJJ\c\ \Tl9hxVj6eB\\\9\vog\co|~\VI4\+c>\0l\0Hx\\yO·\\;\V\G\j\@G\~8\\ \)\Ԇnٜ$72]\\'\t^Wi{R\2\r\A\@\ PR0A\yxܞA\\h\u|\()\rms\0\\>6O,+W\;\F \\\0*4Z\FfK<|\ZR<\\^OШ\\9>\\5x-m&\<1\\MDC2N\f\\7TW\|\@\v\\d@%\ ^\\\-+݃>\\}!>\06nh~$uu\P:mg!b>&tEa|\\\C\\:;`pФ\ ~ =T\o\tD4G,5т~͓ʃ{Z\^\ԩS^\ߞ7\\r\0l\\\>Ž޾~\WQ\rǏ\\\\~) z\\GuVAbJ%:\"\\\\\a\0_G*0AP\|\]0Θp|\\\phLffx(8P\re\3 C* sPH<Ζ\k~4\mx\N\0\KMKK~\NLJ\\'m\\zy\u|_EP\\K\lb]\\ZAft;ymw\\n\p\f\\\\\)}\n\\\\}\ց6) bg\cN.|\\i ulMME0`\\\\"\A{\ O![\\r\0(\0\G\\\_<@h\0@o\app]t\0\oٱ Z\>\e˖@\&\X \q*u\ak?ƏX \\ g6P\\r`,+c9\\JUY\K\!(t/XlsQ\v\9,}\\\\\0 b᫅\\\5uxjc3\~\\j\S\05\0d¼\\=\|x\⒫\\0\tA\o\q\\\A__ \0^Gi\ 0\\n7&\\fCnVF~,M>\\MG \+|A \> m[A\34\\\C\\\\ \+.\w\]B\"NHAн~\\ਮb\\C\e\ˇn<%@,!\Lp\hOe2fn7 \HxJ\}\\\̙sW0s\0\nTw\\#{P\\\\0:A@``{U\d\-Ȍ|\\'\\\>8\\!<\ *Z-r\5g\xCNF\ϞZ\]o\\пk\'5\Z\\\B\\\ې}\Uк=\\\ :\\e3@DR>]\+\\`krb\\\cy<\0\Bp\\0@\\\~3\7\$^C;Z\0\8P{(g\Z\D\0h\rxK$|0$v\\oh\5 )\L}\oe狝0l\2.T8\\6l\0Sf&\\ v\Xhٰ#}\<\!8\VDtD\ x\\0jIQ\r|\g\\r\D\0b5uuh\Yجv\ZBF\'0x݃`uؑ8@#JׂMS(\\ p4\\DZyG\\riA\r{{Z{\0\\'á)K\"a\kf Ī51\CuU\x/\|t\"%x\0x@C¼[\}NN\E\B\04c\-\N\0\rv_\~!*?TSq\9\U%{\\\Ѓp== \\0Z\\\0! \\Qǐ5\\\xvO5,\\\K\B\p\\>.\r\\V8\P\l\Z\\,\5\\l[\=B+0l\0D\󟷖\@-\홟\\\\HFϞ\06#C :: ,\B~c69&]\\jEq Aф`hC\!\Rcƣh4\f\*\\^\\/~\\?~!Sa \O\\p\u\=\*vG ~\r\+P\\\5j\!;\r@B6y\"\\\F|&\\\)\A\'7KG6Bsk;\!3\'gjH9d\/$$-\Z\\fv\"8@\"I\J%\Ϸ$@\\\\03\\f5\0\Ęlڔ\{\ŢAȄ#Zo{\eg\0\ߵw\\I\dG\H\\"Pj $(\hjieÄx\\\E! I:zi\n}K<J!x[[nȟ \Ŗ$?Gi\\/\\\ \0\/B|o\\6{\5\\\C\\\\UY`(\Z\02~\O81mÆ\_\'v\F\nr4cݽ}l\fhq\Bm>>\[b!/\';gjmoڃ\\\Cf=%9)@\o4\\\\B\))>=\04D0@<\\:! \<\\|\\\\\\\ \Gd|!\\c\\\?\K\\yu\[\`QT\0)\Љ=\\\\\(\\Ga#Lj?1>L&L`w\D ;\\\3Κ\Z1-L\\XS#3J\O\(\\\\Lč\^Pm\\Z\\\\wܐ\(\0+\rG\\_}\n\G\,Y(|\\WS%$XZ_x\\I\\0@.\\\\\QZz\O\7\@SK\\)I\'3\\!?qR\4\nu\Z\HǨt\\\D\LP\nڶr\M\]ͼ\\1hnk\cC4Pm\uY\7\8\쭀=\\~2 B\\$`9D FuX_\]0}\\\\\S\\IXP3괚c\<q\8\"\0d\\\}\m_\ShG ^\{\j\\I\\ O08T5_\C\ ز33X|,\ \\Ϛ\\\’qABn\\vԔ \O}G푣GYU\\\\) ڃ>\[Q\\\y\\\YQʆ\4eȴ\D\m7\}sJ.\n7݇{YwIkc#T\\x\\\\\\\Dl\I lh\\Z\\CE\0\E\0\\*{k\\\^ʅt\\0@\z\r\\\e\(?5@e~@\n\\\\\0)ܟAo\,\5\\cڂl\1\ 驩̥Rv\\y@C\q._Og|y+|R\a\n\ԔEe\ F\/\:\\΁$\\Ί\>\[\kQe\\oٲmՇ\\v@\0\n\u\\]\\obt\0A4ף=-;xܸ \\'\ \\\\,-8P\\\\hwI 0&?\\1P\\D\\QK]Lto\q\%\ErI\\Æ?Z\Ē(;6߰~/\97; I\4\\rl\$jhh\ӏ/\ N\^zÏ<\Z;Z\0t#Qڴm&\\;k&MfxW&K\0 \\,\"\0\\\d_ǍhNmp|\\LX\nF{\IC4NQ\ \rA`p\\I/|\k|MZa2\ =x󭷠\NE\-A\ j-O\\' P\\[(\{\ϯ:\ <PR\\\WUW\!\0^r\6\"m\\\ٴg\&А:>\0\+\': TѸ\K`VՠF\\\a)\Q5\\\\!-^r\>\\?\Q\\\n߱+\\sf\r)h\ym uH>\\"+*\~\o/<`rȭ\\$z\oٹs\]&O-F\0\SYmd\-.A6/\v\ۏnd\0̿  *\0 t\1&Ws<8 C<\\Z7*g\Z\M<8\m>z\}eeA\\\\BD]\\\\'s/1t\@\Gb}\\\V\\\9\h@\ $?µ\?w6\\ܾt#pB\0h`AȑpY\_]\B\B(%N\\\(#7kBqLDw\NܴC\? \\aO\Md&\Χ\?,\0bz\*8~6~M\FE\\+T\r\@%Us\\\\\~;l\(&\0lܴ\U\mAr9\{\>ѵF\0rg\(ڼy34\.,\Z-mm,Fߡ\A\\\\h\\[b\\$t\&2\\\:>r^5urX\0\\M[s\R#2\ \0}j\r\\\\\.%N*\ZAr\0\\Y=nj%vr\086@]\\fs\\)p\\޺s7?:Ï\\ܛ\\uuuP:}&L@Nlǎh?+ =;1e\0\x8Bn[nv&LB3u\(.*d7\#t\^rgN\6L#\\?3}\vWv\\\\\*ؼ\=DF \0r\>l#S\\ J|\\\V\\W޲m\'8ݮԱ\,\"\ z!l \Ye\\@U}:;!%-\&\\\2π\\\7,&ی܀L\\Ia\\Ie\\E\V\1(|\\rr\\\\ UVU}\KZ\\'0Ϗ-\\\\@F5UV1\0HFu+lj\\rD{\Ne>Do\\' [\\'ѬA0\$4z\\Z5\A\O ` T /\u$\0\\sRR\[p0\qw\s?\ t\$\\@r߅t8ryp\\ul҂ѐT\8hһ>\\\ݣ\\\np\l}\ˠ\\cvX)8BFB\\0\\4\(\"O@Bb2\\ d\\ߗ\\8Ͷo\ӦFV\/ !op\\\}Mv~RBKʄ\Ȥr9YY,\\\e\0@A}T\M|\[ke>a\'\z\\\0HZ\\׷\l6 elp\\\m6oeI\Z1OXr\tuto\Z\\{!2zʚ\SUa 0xd!y\\H(!.!sBUS\QC\16 \0%f\*rT@S\0CQ:\\rEQ\nB\Z\+Z}\!!\gd\.!ܿ\WVM-~\i? Y`d\\@qU\\g__~\F۲\ !%%\]\\:[J(FZ ({Z\c/;p\Qp*$DZIҹ,Zj7m\\ԾJgi^_7,\]RI\n\0R\Z$\'3\P\nR\\Ax\\T\)}\\̅$\\\0sђn\t3\\\\0ts\sT\;Y\\\E Y\E6\'\\\2r\0L\0&~! \`z\䣏Uzn\ \I;P-\0\V?\n0\Z)\\0HF\sQ\gxK\\\\\w\\V~9M/O?9O\"\q\\~A$\@H@70\\\\ܼ1\:H ?X3 F\I\\ `\\n!\\|]\}7\cG2‰\)\Ϋx\7G`\\\\;\B c\nY\\-\0\?\e .@!\~W.F{\r2k\T\=PsXH\4ջ\@\ \0iGE\0\0\An)\\ӽO )J\G\n(<\rp\I\0\0\\'T\+x\oa-\ZR0B.@hf\0F\\,īq\Lnjm3x !?ZuK,Q\ubBrE\0E\Γ\0\?\t\.[bj\\)\;Vx\pǭ7S>i8gy>@\\S,^\J5r@\Ȁ!\\\\\h4|oe F\\E \\p\Z@ \ \\\\=\yx\nd\\\=Pxz\\ں`IHSLjIn\ \0Ǧsc*R\RC\>\@>rS v\'x\7\OTk@\0۽\ZQ\\\0A\n\0V\%yx\\mJ*|/\!5j\0JRnD n^\0\\RE;K\OJ\*\0 %9Y6LP sg2\]x\\3,f\\\\]\ O\g8KĆ]\"&\9Ø F\3\\2n\\y늘\\6C#Ub\r ?+x\o\"2l#$\};\"ѤedX8\n\0\C\\+EevCm\\p\\|) \칥z\Z\\'~\\"\02\\A \07\\\?\\K\\ 7(JBMGZ1\0\\ >\60\\\v:G\\\6/qc\nBܾ#\r,\"l5Ux\Q\vFL*^[%?\F\\\"\2(4w\~TPm\\n`|o\[*j%T\\D/+QT\h9$ .^R<{\܃YNS\f\\b\,\\ZK\\\6T\0@)o<\\\\٢jh\\m\fK3\_]\+k\'\跏$\W2\Z\2\FI0I)))1\`\eZOU/%\/\UA\DZj*3G>8ܙAC\h\'\JӺV^M\,(*\Zƺ\\\\\\\{H\\DN\Z\0\=\Rw\(\5\%9.Z*\Z}\\r!\\Pu\\4L_\#\\s3/\\r\0:B\ f3\rR 00dd\&\9ziBWwy\\\r\r0I[hj}ABX\\b!1@հCD\\\\!\\ˇ\՗\\@[\\\r\0\\0F\GH<\̃\0\\JϞ\h:::h\n!*\i0.\ R\\h4\\:;֒0i\Nu\ړ\\\\ \ͦq\\E 江C\0^\Kf\H;\\0A9\\JZ\n%\]+>95m\ \ͱqE.O\\О(\0/L!wy~ \B3@\ښ\\\%g$\0Ff3: \Ju r\\LV0~R\d\Z70\J\ٵ\\+q\g\-(,NNϚ\\\G\\0@k \\i~\\IhL\d3\0\ 3G20 \I\Pm80\\`4s\M0\%iu\TS\y=\AO\0&\\O?2\'\l\\ \\3ŜcB_vՕ%\ޓ\\k\0yP\\nrA\0]A#^o4\%\b\2:}2RY‚<\G\\\nw a~D{x![yKU\do\0M\ \tQ0ЯsyA\wz6\\v1\0Ĭ_\I\*\0\\nr\\A Z#B+!b p/AI\I!\lL_\Y\0!\ J\ZBi\ʜC\\-\\E{xa\y\EϩP\0B+\hd+i9\R\0E\\\ }8\\\N`%\00L0ȹ\FA\Z\qRs-\0\"\r\;\;\0:0(U<˙\r v}\"\1J<\\%\\4\n\;\0 r3 \'3B\\\\\\\\\}w_\0\0\0\0IENDB`'),(77,1,'Phone_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0A\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0@IDAT8{L[eƑ\r\r]✋2\\\e\Z\X0\p† 0pƤEn-Z\\ʵ1\n\V:\\twd\5%\\\\ӄEK\I|\'9\{\\3g\&\DO:޽Gl815\vM]Q\\|T0\\n?\\\31-/\\/\%\Й\g4ڦ\+!\vRqb5t*IDR\B\Rr\z\q\\\Ln\\㛵\VՕ\1\\\\rzW$_t\nREA礥\tRD8 \\nNħ\N\\x9՚&lLYN62t3t\أ\\y;JW\\,;h\A77$Vhȅ\|;\\\>>\\O\"\d獓^\S\Z+\Q%l\x\[}&C>}/\\\+\\\Ա\Z\N6;-0\\\Ϝ-\8=s\B\\Z\0\0\0\0IENDB`'),(78,1,'Phone_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0#\0\0\0\@\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 \IDATXõ \\T\S\#R3w\p[w\47i\r\>\\$D\F@\A.ENA0+emO\\ʼM\\\xy6\\#\\\_\޼\0\=u#\+{\i\~\";\pf!/\\@\\0RR/x_W\N\4\FX\\Z(Աj*&!Z(4^|F25\{^$\Ӂ\-3z{R\\r1oJ\\5u\>ǦFT\ԡ\Z\H\ʃ,6N4:\\%\\>\\QG\n*]\Ч\@X\Z\=I\Ç[\\V\\U\Nlb;\\\+DTRuu\XA\\0Y<\\\'\"\\1\\\\\R7ߒ9\ :\\<.\0[o~F\nn\\]{ \\3E\ho\\OFƭ$6ɕ\"\n-<\\`P~QZH\Z\lsv\*2kǢ:\\\0DH_222Kզ\\\@@f^>\1TiL\uj \\\n\F(\P\'8H\"5p ݶshYh\\Z\}x\]E~TTV8|\0J(u\"\?c\2>%H\)gZ \rH\\\0ll\\\\F+0`\\\Z3UZت\\JB\"\ \Q̙\r \\KJ\R~{ \0*6\qoJ`\\*!\%*dW`\\Bz(xIIZ\\\\\" tXAv\0`\\\\茑kx@L\\ZњqiK$B\Ke, @hj4Z<.~aRL\|J\Q\\UŠ:\\\"@\1;e-Fk0L\}$x\\\ro\MWX\1\H uZ.T)9X\.a\~\ZV\\\\ǯ\0\\\vS\B \;w\\񓧰s\^\5nE\\j\o!\̡J\W٘H\F\\nx$&&$c\ZEНO\.FBV!za\܅\F\\kff\rG\ \ǐ!C\\ ,d\\4\Cݼu \\;8t}\\u|(\ʪkUTFi*܌\r\XNXP$5eXWT\uEp\\餙6o8_\\h\:s\\-\$q\6\Sx\2j\\Zy4\\GJf6T\K\׮\c|[[}}`z #\0њ$R\rU\oEy\gp\\\\w\\o=}\\Z \\ø\Nɗ._E׻\B&\\\W~\b{3\K6\"\\\bu\\\&P\'b}Iv| .]\C9{\\xE\\'\K^Ԝ\"\\Z!8R\\HB\Mpl}@NwSSSgϵ\\~\0֭/BaY\AIy^\0\\f5XD@x|\\0Oi\t\J\'\3?r*>\+8D*\\)\Sm\\\\ٳwo֍7\\ͼ\3u=͎/`鳩\\0:\0\\\k\SH\s7(B\\(a n\'/w\";G\_ V˜yk\f\,\tO\ ]\\\W\vx_\\ӧgV~at\\wS\\dy[\\/v\D\rʼ_UWύ\\\r|Fu:H;@\0(\IL%\GBIQPi\PPt\\BX\!y\0`-f.\\G͢R63u\d1\\\.OEŚ4h\k,\\·ӑ՛x_ommE\vf ]6\&\MLC,Ah(Tq_\`\\0p}\0\S]\@{\f>/w_u\.C]tب<\\\\=+࢔\nƗyHA\gm\ݝ]\ m\Z\yو\\\\JK#C\nmt\R^lZe5\\]\7;\=,M\\\إ\D\\\\^wH\G\}v=\HZ\7d\0\rEu,X\r0P<\ ˽\0,\\v\ۏfj鴯\ \L\r\e:Nv{4dAZ\*\\\'\\bM1\\ddG9\m}\0md\n\Z\\\=\X\?J==4Z5\\\0`\>r\\o\=Bn\\\}qy\D/رHH\r򵴱\Aiq\'GjithQ\'R,CieY=\nxX\\\!\0W\'\0\<\rM\\Ïgig>\`6a\jaI\aN\\HhLI3I63\\ձ\Ǩ8\\d*1\B\du\\\= -4Z\ کNh\\\0K{g^7l\c-<#\™Hb *\?S;CCC\N.Ukd\˫\S\\+\\"\8I\A\\́Rǁ\\7{u:6sn\\\w1x\qn#\ZaǟHf$s5\yIJ\U\$e݃u\\,1|>&|46dwp\2Nb\ \-M\x\<\\\\\n\iU \u\H\ !M!-$9<&Li\\vzՒL\G\\M\\\\\\侀?\\|\Z\\΋]po\曠_ 7\\\3\)٬\I.={\\j>nڜƌ\\O,R,*,j]Yj&==}^N\-x\v\vG`.H\d\ƕ=z \,\}\\X<9 |\χx].\fTt|zx\\Ӝ2$\"@\\hNmw\\gxy \0\\`\BW\L&#|^X\&J\K@\n\c[Z\F\Ѻk.h\\"d,n\Z\0\\q\R\]{\!55m\;\0/W\\.Nsd\-W1P\q3@H\HH# i\" \.#*|\jڬfsip`\œ7]\\' \{ߝ \\^#q\\y%+k\c.\\\"\`rf\bO\\'6\h\gb\ky\\\\@N\ \0\\(0\Dt~.C\0\x1\Z\o\ދ\XpS\0pޗrj\ٶ8uڴ\^f\\\0\64\b\~(?{L <\P*7\\s\\0\0\^Y ƹE(Б|׃LY\t\P $\I!#@8F4^ڱu\VRH\\0\T\p\mܸ\ſ@CE\0hl}\\\tykȜ0 \\ D\lOzX\ZPz*+Ab\7q:\0M-70\\\\\0}F\rZ\*$Qt\\\r\q4:lЍYNx\\\0v4~\hS\Ā\L@6\0h\rM`Φ\`\Z\Z\\揞\\S\\\\0\\+\n_\mC\cyC\pn\\`T6^\r11:2d\\ ˘/6;\׌@\\\\r\=R/\yWg\\1\e\p\drW\\ၡcwo{\f\rs!1Ľ6555Z.W\\P\0\u&B\Z\n\r-3^))\`҄\\fBj\\@7e`\4(J*BIb\[\.\'t! &|&%\x:u\Т,&4\A\\rtH{_V]:{dWX\0\\}B3o<\B\0(ǟ r \\x(Vt$\0TJ%dO\\nz\f\\\\?0\0m\\\\Ϙbs8\^5(\~! |~~\\C}\@X]Z6S\5\$ݖ-[Y\\\\D\08{\.a\"\\!\$R\\W\@MD]hm\@/:X\\?D?%k\ \i\0(~Zu\\\7\ADKKK8Ϗ4d\n +U\vn\\\\F• T~z\\o8 \GNlm\\v\,\H\\\\+̨|\\\q8\\"]]?K9Yl}\\r\\ddG\,\\Ɇ\I\^x.乵?gUh\9l\F\\\o^\\QB\0\_~Yn\\\\' \0\\9x\؝vxa\Xÿꑶ5u\a\>z.\&UY\rIIX\JDЂJOOz @0^pR$sdBa^.L+\nl\\r\P\pҎ\\F3\n\\c,۷ϼ\iPI\\\h2ۊ&2iQ\0T\\A\jO<<`|Oo.*B4r$gL͇+W0(R.\\\\\"ȇ\ns@C]\\>0\60(L\n#\\\R,Y\:\=yߌMXKK\\ro>\\&\(\\\ \0\\67^6\Z%=]\"\P&heG\\\̜K\ع\n\\)\A\\\Ř^|_1;{N7 \h\NBFay;\\\\̬\\`j~Kt\\?8\߹o˫.+ǥ8\3\\`\߹g\־ \ӱEO\6k\B\i))0k\T\\\\\\=\Ԛ\7\z;E /4 6:L61\\ne\0\\JW`7Cm\\rIHly`I)w`\܎е\\/\Ϣ9\@۽\\'\\\ؽȁ\8\n*/{\nP\kr~\U^˿ \\]cc\0\iA!2PX2Se+ؾ\J@,fL]l\IH\Pps9\;\\\9(DT!\0p\K/ۊ\3_\\\O$c\rM`d>\h]4ܷ\^\mhd\}`0\0\ :/\ -\\0\g\AL\\\"\ 7% \\Ku\\6\\0a8 x*B\ 0B\\\<\*;\\fr?Z!\pY<\<\04(\[?`CE,>\:燯\\>\@xo\O Y\P! \0\\H\7\0D\0\0|_s\0\0\0\0IENDB`'),(80,1,'Phone_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0F\0\0\03m\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATx\\]|\ۋ\PE`\\\6q\\r$Ν/v|\];\'犍{lH\\1\qD(\eUWZm\\vvV0`\ƿ\3ڝ\\{\7\\\\W(p~$[\z\ 6\\\_+\˵@\\I ]6\0$Wrk%\\"\=\\\\`|\\*ljɚ7 \-4\\\wR/R\x\rȬ\\R\0^/\ZV\\B \x2Ch\Bs x%*%\"\5r|%\\2\0$^4^\\/_pμ\\2fԪ8ǣ\=\n׫\kS\\xowOeM\\\\~\vH\0\_#l+$\\<\\U{\%@b|5gx#\%K\Z{ۊ\.O\Ȝ\\2\x\`k\Ƶ\\[cs8\e\\z<ӵ\5?{Okv F$\n\\\?l\\tuV|m\\̓-w@B`\\t\08\8\G\\\Cf\\?W*UѢ#\tB{g[\\\\?\sMι\;7\얼^\\h\Z\\\8g\g\r\'w\ē\y4\\@.*\0\\?s\\\\o\\\%9\K@1>\o[c0FO\5\!o`\\\\\\{\Ԟ8\\\_4r\"L8\\bz}\˖<\\W\Z\;\\#-m\t9e\\ӟ,\\3\'\\ ?R`\\\n\l\\\?\\\\\\\\)/8\"\\J\0zH;\\\/X\𣏯\\\>CG\0\r\\\Cn\\K\\ @\70\eÀl \\Z\\D`</ƒ\Z\\ڼ~ۆs\\7OWqQ\0\OW6aB\K׬+\Hћ[[v\>ʠ\\Sf\ew*@DRYx\B@ PU[\\.\n4[,\6Խ\\9\p\\\'y×3 io\΋qq\nF\邪c\׏xnZg\\F\pCx\`\z|I^l\wILPA*2ѫ.%1cZ\zv\\kuGs9\n\\\0HN\\OII\ \B\9V}J<\!;\\Z\Q(\`K6~\\\V4o}J%CA\q\PC\nnG \\rr\\"xݛ\rѰZ*-}=\\֟6 \ .\0\ΏU\ [n{$+;{\#hpʩ 5p\\ZNÊ[Ff7D \R 0Fs\mRo\\\\\Np\\ \3@ѰcS !\0Q\\\\\RpHFPL\0I\wt~\\\\!$Kܤo–\,\/\g\\p#\DC\r\r9\p\be\\7\\\"*HHJ3B \N;\>czFUgUV:\r#GA\r^\x@\B\5j\N-A1c z\\D/Ɵfp\i9SW\0;ŃK h|x\~?O.r\o\\\0p\p,V+S<\r\\\\\bcA\5KAJ\0\āZ Q.x\܆=^0`D\0\\\n0.Z \a~\Fr&X>\'\b\\r\Qxx=L0gp1jJ\ZT\\@_tw|c͋3R ๨\0HN\q~\\\\͛\KѸ\FίŞ\?`;\Z\\ Z\:t\@\o\p*!$(\zK\C\'&m>\ 4D\;}\Z<]]IH\0Cq \\\r*S \RSa\)0\\\0~MH\0t\Ic\\n\\Ø$P\\`Tp[\V\\Y\0\n\0G=j\Y\\f\w\x5\\\0@\\_[_}\0\oN+ \Z;=\\ \h\\z4\mЃ$\c\\=\x\\텤\Kw\0>9\=\C\ܹ`HL\y\gX u\\t\r \\\_[\<\0\\@\\0Hx_+*\op\\ϼVk\Z \0\'OՃl\\>\\^/n1:iTjPԡ/0\Y\\\EP\B|P \n\\\\&0fdPS#ƍ{s xSf\\dϫ4z(\\$\@/\[jC\0\e\$%sYE4Z\0\LbLzzzʇ}\Z\\b#\\\c3knf7@ɖ\\p\\Ve`\\0ݍu\\\0\e;\F-\j˗#tQ\\\\lЄ\2J\m\r i)m\l\ ,!,0\ \\\\\\ZS\\\\UU~\Φ6\\\(\"\0\\~|E\\DzǎvȑЅ\dP\J\\0\%/{m;\\A\Ao0,\-fʸ\31ط!0i@p\r\\n\\2%p\%\\9\\\\\\{;\\UTf\'-ݺaQ.K\\ \\ƿq\ݳf\Ej\0\>ʎȲ]\ P\%ݟ\i\F\\Sϲߎ\\\n\rΜk.\\@@PLRB)QN\5\D;҉\-\~\\0\UCsjs7mvvϓ&\\ٺ\-+YK#\xb\\;\\e J\nC\\=Ñ\\'0\;\x!%)\rFK\p\ ĞH\:觜?\E`Fv8\\5\Ěz~U\ a\Xy96..jmLLLi\03gh\t \K?\TGm\\9\g\Z\\A&s\id.^ 1Ѧme\\򮊊_\\")\@GgB \\Ǥ\':\((P %j\nr)ɐYYU\@]iPR \sC\ k\~CPΝ\),#\b\Zm\Py\8m\捃dL\ Lٺ\ U\\\'\\>Z<\\\n\0ٙ\0h\rz\ j:\0J\\\\\/\\;\\\n`X\\0+\́ t\\#l\\\*!\\")e4@Vf&\–\z69\WS\\]f4fzQ\;2x\\l\7f\0\\'\w\*HNN\ܐ\\ٻ!ұ\6\s\s \\]{tt\\\‰W׾\'B(\0\!\1-X \\m\\tI\\0\ܳon\V\d$؊\\'_\d\\?\ϋ\r31Ird!Ƣ\\]\,\\߹\)\)7aLRT!тM\\d]=|\;-[nealv6\A\}8&1z,O?\P1\ \QO]]݋iiK\fa\08sfZ~ᬙϥ\J\;>߱5}\qF[2L\\TT<\<b\WN\\q8r\O\0\J\g=}\\_ 6ofT۷/D~\ \ՠr\\|e\;l 8\m\\?o\F,+\\0@O\dY\\I\|yA\yuρC\\\jP\J\KA\6L~/Lg?aR(\Z\\Z\(W S[\JbJ:x?mlb\2w\ HJ/\9\\t\\=u5Pp \\|p\>\\FBi-\0\{\46 \\e7)~9\\sAD\\Tninf\m\@X\0\\\1\\fg ,KY*suvw\\+n\Y\\0﾿[\n;&ŵ\\9\\bSk\4\\\7>u\\\XA\0\0\C?*111\\ɓ\1{,7Hx\0z09=kp\Se{Ճ3\F@܇\\\J\\/\>&Q\\\(8|\(\\z<΢7\=)(+!\\2q~\\1do\,\zkϩP*0H\\Ϋx@\VJ\k7\˭7.\\\\\\]Ћ׏L\I\?X\J\r\0 \0_v\\\7zS\'B#\NT%\nIRٷUH\@{IMIE\JUiy5u\/~͆J\gLJ,4T\v\\\\r\\\\Oђ\\O2m\J+&(H\1j\\\0\\Xg\\ӂ\\\\{mV\eC9[P\r);=\\\4b5\\QQFac\X` RND%4\\Hޢ\\Yy \\\\4QR`\,vN\n\|।r\\Ɨ~\\ZOB\S\0\bڛ+4\;\\n+\Z D\\"e^nd\\p\0*9\M\_\Tヌޞ\r0\0&w?|\nSQP\\uW-\kVC\|h\\f\B\Ҍ\\'L(B\\)\/\\\\\N\]\ڛO\ q]\!\\f7\o\,\\fx\\\Ɛ\^\*\g\av[.>>%RⱵh\u;\\\έB\\0\\\\@\vB{{;D\\#%\>\\P1\t\\r\Z\H\0\" )gr&_s7t\\\PSS\_^y\\B\\n\##\|\Z\߲3q4\Ztbi11)\/lC6\0\\(5)\\B%۾s#\irhnE\8sA=v\\i\q\Ӧ¾\42\\XCiPL\0q̜\Y#\\\}*T\B5\\\\\\ \2,)-;\۸N\0\\f\d=\;\8jx\0Cp\'\e\Ip\\rסk\O\\\ \'k#PR\\0d\\\BEE \rQ\H^Vz ~AO$э:Ao\ϒ\AJ1\QjIQ>\|xx]\r\챻b\S\T\z#\!\\faK~\ݍb/@ O\cຫ Џv6m\\\ajcfv&5p\x5\\F\\'뢱;;:@\<\r\ \\\nزe \BOE\00ԫ \\ ՐL.C12\"xqMN}ۋO>J\\,p}ir\0P\5e\\%nY\v\[\\ݣx\0?^{i\n\"\\\(\Z 0ep\0\F]}m\r`Q\&Vc\i|@QC\\#\f\\raX\0)S\'a^P \c/%m\4\\\\\:w7t8E @A l\0\\o\\\??haG9d\0&כXV 7\\\- |e8Uz p\\=IKRT\'0\\\"SMˌa\M\轎rs\0^\n:v\\S\{^[u\\&g\AX#>NDJ\vtyy\oc来-\\`\0\<\)\AGb=>&:\Z-FoD\\2\!pp\\gWg\i?#\p\0QTL*+sfbVo J\H\\ \js\\\K,\҂ۈd(\x3 \(\3\\R\G\\[\,mn\J (\GQsQ)b\ZOuz\Z \\\sB\\r\rD9\`\uSSS\\gF=CDi\\0\\pO\d\0\z\'\g̙[TP<\\s-\\S\')\n\\0!}\n\c(\K\:2\X:\ \JTZ4\B/?vlZZ\ 9=\]aO\Hii̢\5K1y-\>\}\lv\KϮQRr\\M̒V@\y{\]\!6FO:޸\\\jt\.A\'`\ >Q\ge{\h?\]`oǀK\PmC\0xX\')..\YT\\/UB+&b\ڱ\\m\ox[ܤ\ {F\>@K\\r(GSEE\t\\\rQ\M%\Z\%x>Ċģ \lyO\nl\\\)pz\:`,*\o\r\'׌Y\?bV\\|IרfG˼^F\ZW\'⣄f\h4{\`Q^Alu\\\\{U\nٙY`Ѐ{\0/oa\+\t\I0wwCvn>+Ȏ\'inQՓ\*\'\=\ \>\|cno?\' .\\‘\\rdh9\ZIA\͜y\\^s\\Ξc\r)\\.\\\"uѳ\\\Ǎ\$a3sƕ\/oa|\8ػked\?` \A\\Šs\@\N\\0!\{׮\'?\\\:z#_vzT\\ўGƊ\Ic2\{NLJ@/Ґ[\0/ \j@4@\\H\ =LO\{^r73#~p\\\@|\\཭\\ګ_x\ Og. \0Г\4F \0!\\kK\'O~\fOEVpl?uQ\\\df\Q\\Fv8)T!?ol\@Ҡ\\nI\aR\\O\\\\\\e\\ދ$P$\(UM\SL\\\\7ݼ4:&\biv\|vKb\\3&UM\egz==M\\ZQs?\\ \LO\\ݠ\\6\O\ފݫn=xE\q_\ ;.\\n@\p\\8G\\ܼԙ\,Rk\rHQN\\nE\0))^\\@)\NW\v{C\0#\;nͪ}\\\;\vG{G\\O>z@=AÌ\/\\j\A-I\2Y\\\Ҳ\IS-ryy\=\Z1h\tD1C\B5XS b!\`dS\\rDz\4\)؈^GWvO|{\;;Y\ŗGx/\a䫴\!ͬ\\T\S\_0\6\\6\\\$\\,e\N<\ZZ1?hekc\#O\\\]j\u;j\\\0A58W\nѓД\险\\\ZgZc_\Slv5\h &`LɆ\ή\x\w;濬\0DoQ\B\'\nuV^Aazf\dZc\\P\0[S[\\\4Ĺ9W?\\\\[\p\c\sY8OR\n+\\r\7\:!Mv\}\X\\``H{F\0@0C06J\UHa\"F D80FD=BiH\0\ *~n\\\o\U|S^?\\0ṟ8\з{.&\|\\08\ \\(\Hn\M\_7\Q\"\GȽ\"_\8\\\\0 (\0H\%p)\rQs\ n\SM\\0\0\0\0IENDB`'),(81,1,'Printer_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0w\0\0\0˩Hj\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATx\\][ETuW\\\\\nC\==VcdɃv\roX\\+\rwW E`d\eص\\\\L\`\v\\\u\˜Q\\ʬʬKw)T\UQq\9\'$\4I\\\K/͞|^)\uܱ\\B癴\6)^\rAI5&\\\ĕ\}\\\\\Y>\7}\\յf \Agy\v\\0\0\8h\\\\\v\=\Zp\>\r=\/\!9wA+\7ja\Jv,\=G\03m~ \\\0F\\0\QWέUA\\3I\"O\0\y~[i\5\nN䏥\`M\\Z\0\ӊ\0_#!\Q\\kFu&\0\P.\r^/ą\h\i\,\0z~f \\=\\0\00\\\L6[dF]Н\\\(F\c p>\0\\P\\\f\0h\Qz]vk.\!H\r\0 \~\\"&\0\0֨ iܔ\\y\\\~\0\( ZA=(\0x\\n\/B\:=t\Z\\/uc\\Ȉ\\\r\n\0\0 ɔEG](uU \\t\ZG1\0Ȃ \3\'0\QW\诶\\\Vʸ\01&u5w\\W\\0! a>F]J賠\\s\ 6\0\Mb&\^?3P\nQk!>e\o X\\\\r\Z:\\:!l\03M\0\.(5\NNL,\qe\yRrY. tg\|\k\\0O.4%l\} \R~P`\ ;\\K\\0jRrG]\ $\\[Q,\Zt&\0w\ygO\\\ښu|\r\Pe]dd刜{uh4FuS>)\\"9\0\VY}_A2\\_]\+>J\0~\\O?j\\w\\T\[&\=\s\;II\H$|\\4+Q\0t=8\޳ǯ\ZW\Z/\0h$kxՅ)\\0ڿ)\oE(\0\\\01KfDp\S\x\\h70DRX\\8d3)}\\\N8\g\'P]\_\ߎ[%\[^\\\O\\i*$VG\uOV\\\\ |IdՁf\nP*Ў\V\.^;r\mr\ҥ^9VFӚٹAKw\\\>\L\I\\\N\8\QN\ܳ5njK\fy\ne\0OQ\0<00+O/e 0\B^+5 \H\2\F\\f[\$=\\Cg\n\\n&\n\\*\Z\\Cw5R7ĀJ\(\b3N \\0 \\ڈ}, H \00x\ZW&;P \C4\0\\\\q-\"SA\@ mͣaQ\0\\\0\\0sz\|\0fU\&\\\|)\dy\\HR3v{\QmP\1\\\M]j\rB1\0\0\I \6\\r>\\0@`\0a\0\0z1 ꀟ\K&d\;w\X\`\'9\00\\@\nF{\tЂ\1@H\0\\n\ >\\ݻ\\\\b\h\Z \Z\0}\\l3?:\@*J0 &\}\\v4/\/\ @_8\28cMP\\\!)\S}v>J/n\\X\Ji\"\\0#zMd\\c;]8+\0?\`\0\\\0\0X\\0`\t\"+لAzK~0tnUi$h 0* >X\\0\/\\0\E\c\i\/kW:贍[\&Ш\b\\_\^O2C~=}\tr\/ȍ!p\\0bH\k\n@H!\\\0(J$\@\\\ -GTY#\c\)c\\Uـ\# ṡ\\dN\jS\" }5\\n/pn+6h\"\0\6 `kX \$lGr]H2~\_~\@\ㅵNr\#=t\:a2B\Hb \d\0vB7\]n[\l~\J`e\n\96k2yd\n[O\Ā~7\ \x3|8\?\۬ΑoO\Z\-\Q6\\:bg\чp4>cl\n\08\\09E-È#\,\\\H\6\\0+,ر\\\\\W\{\"\ HV91\n\A`],&Ƀ|\ k\\`\Z%HXRT1źf^\\\\n\+K\K%\nęv\\ ҅\)(5\\\ǎ\\r:W7o\lʰ\ݽuH\&V<.茌XE*\y2:\ \H5N\MSJz}=\,3nM\rZXѮbߜ#\f燇\\=YB\\J\0 ;\_h\\L\ٮ\\_~\v\ȯ:\\\\\=i\N\\C\˧\\3o!d (/^$?B\K>\ce._\'.WmR\~\\ӽT\˦K]\\ϮVRT=\\_Y\`za\0\n\04\+KK\ׯC\\'\0%*,}\ĉ\zz{e8\ną!\\\\\\jd;\R\x \\\3x )\`W\0\\"\T0i\>\\\\?$\$\\$Pph#A\\\d\J @>h\Ο?p=n\\s 0CR!ވv\8w\ܿSzc\)\\+\s~622U%Ȟ؇\8\0w)G8\oӸp\ʕskkk TxqV\0\\^x# 5\Zn\\t\M|nh`/ة\\\\\0$MDTT\}}}I\\AQap\ڵkj\r,\9z&Y\K\D2&\M!Q^7\\\u(mWi\aI,C;O:u \0\\Ȧ\V\\\\\\\\NA\\\.G6\Вz4D0uN.N:8A\\S\\8\r*q\\\TW@Ny\\^\!m~~p}/ު!\\l\0\$\B\\\07\\\\g(=\㑺B\\@pq\V\@\0\\oK\"P>:~\c \M91y\ 8jdmm d\XV,f`\;>Y=z<\\\0\ǩv\\\^\0 :t\A *fmAc$T>iyyY׽\\r\0KǎvAdȯZ)\\ \LdLC\ݻ\R8^\7ߐ#G\M;: q\\\_\uJ\i\\s\0\Ʀ\\\o\\tZ\#ga\\r\0,\\\ٳ\\g%}\\ ^;.\m@6@\a\4\#0PC<\\޽{N\OL!0\\!M/$\6`vb8G}Ԥ\{\Twm7\0I/\O>?~\R&*\`\Z:~#\Ν#F\O?m{\n\48mS \\ y\\M?R|\&t \>6(\{6\\0LPyx`\?@]Vڟ\\[\n#W^\ꫯ,p\\{V\\_|a1\0d \\\r|  䔊\\K\\\J/_V\\\c=6IZ猦d\\_P wl)\sH\\+Դp!\ڨ?\\\.Q0l\ \Q(IP~l||\\\5?dzz\Z\KGG\6)\hC}\\\'…7%Gyf9g 쾔\d\7\|\\rC\ ^04)G\\\bB\\\7,?\\0@\0\w\̓@H\\F&GR0\\r\\ 8P6R~=4\\\0k\uMY`U\*M\N9\X\\xC$\@ \\\\7h\\5`Tyv\њ\[.\#t\9LNNRq\Nӭ\0m >\\c\ X,\\FaկV>>ni\d2\\E\oz~\'R)8L$t9JWYY>P\xAlT\\3#n٨`yyN:ٔ%\\Ե\l\\Q(W*Op\+_p\\@\\ I\nH\AÞp)S.\\dA-,t8\\GP\"ҏl&b?\\\j=MJ\Z\+c\\di(ˆ{*\nT\ \\\E\\&;022\6\ Fb\:\\X\Z\ɝ۠^\\j\n{{\\\tdz^\\\@Tj|\ۋ\H&\qF\ϖ^\\\N56\"\j\WWW_(\:a3)U>φ]m\\S\A\j09Nӆ|\H\n:AXT έ-\D\㒞\x|H\u P\\єg4\^?Ba\E\\ 533|*6\L\0\0\0\0IENDB`'),(83,1,'Printer_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0-\0\0\0\J\\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATh\\XMoG]{\vl\&pRH\"AbJP\ (\"g\"P\FA\s@DBP\ @J\!B[\BhpLI\I\}\\nu\\z\aUb\ggv\\\2\\޽{=\Z~\MOOp\ҥ\\\\ͼ\\\\\|^o\\<\\G |$P L\ \\rL\\f\\n\\\\S\7\"\\hc\\\b,\]\˳gzsM\|>\\VWY0\ \#L&YX4\.S2 [K#dF\\ˬdR{u \\\1ok++B \\߳gw=z\[__?\\#9h`cc-.-1\\\\V\\TP3\N{ҙTBZ[[\o\\f\G󋦜nD1\^\i\0Dq\C6\\g\\9ck%Ib~O`.\\\0ˈ\!Q\\-\\\]O`H\op*[n\\\.lNC2 5MR~\rBy\G\ZZZ1K!|8\r\\\\\Hh:{\5$\0s:jDsVK\-\H;򘈜\ / \\"\I\$c\+J\0\#\Cج \\"\.\P\\tp\Z4f\ʼr{(T\@w\0%.\@\ꕲr(\\8a-x\rn{X\v\\Q\\F\ 6< U\kפ\$uww\<\Nb_\r\r5\\\n.\\\v\\I҂T b\ܛ7\nc-\NLN/_2-l\V\YJ\\\B>\P\\'bR\84QJ\l\\\\M\J\|9T(%\6`E\9\E\ _$\\\twG\\/\\Z쿏tZ ]D\i/`\40R)\2٬RRl$h`\K)\\gDTŤF\\HepOeƯp槮\>\ު\}\"\e\\x }ͮ\n\wf1\MFT \k\4\\_W\\ZhO>\\7\\0UFY(\h\"Id\"EYY+H˂ \\\ő<\V\dIB9M\L(!\ls܍ 8mmmm) 8\\I\k@\\. \f\\n\\\\R\nJ~f\GD5\/,,(\J=~\711\\'S\K\\ٷ \\"\lH\\TW؈=7\(1\K팈\f\\\ \\'@\%w\\\\\w\\\@uGA\\\\)q?V[ܔ3ˡ\\x\\\\\\_F\ih\G\\\\ǏS\\5::m0\\Kf\\"r\\\ \|^s\ 9XY#@bxF\B\.wcrCCC\7ń\&D \n\\F@$!;vH$֌600\-\`Ffx\\*`r\\ YZGG\o\n(\'xUޜRN\BSQe}\\q\i\\\\\\\\\ӧJXGZ\r\ܹs\._Qŧ\\!K]zU@\"\\/\h\\\\"\CU=4D\\?#,Y|K\"_\ė\\I\u!B@Y\!]Ї}\}\K\\y\K\B\6BX\Chِ,d\\\,ۺ\\\ϨG-ɣئ>0\h.g\\\iJƭ[>x\\\o\\\\\\W\^\KZ[[\\\\\N >\\0{\0\\0{\07={V\\\7\Ӣ}\\d\\\\\?Q3\0RT.|nnN47@ #\0X]] \"\n\&\f\\ښXYY\\\ȈUҺb\0\i\\D<\r\r\r\U%\Z;\E\uiX\E{ Mr-]57KɄ\6\Zp\\\z*30  Z\IPn\\\h?2 \[\0\߿1P\\!l\Z^r\\Hc\\\uM\\қwʱ^\\ԉ4\\r̈́\`\\p\\f_|e<\Z\?\'&&n\0\K>),_M\\\^`\ʝ\}\x\\G@\-\l\0 | &\y\Or^\|~\H\\\\.]J\0l\\z\-\ЪBAʙ\\\0BS\07nv \Bȍ@}\]6\0\\j\_\0\\d\9\\\S1:9\0`~Q繢J\'HU,oj\P\Z766:p ~ \\\\Z \!\HR\|KX\0\\nf\\\0gq\\\\'Aȷ \0(W\\n\b\`W\7\0»>r$\0QkX\Z6\nipY\0H|\0@Vbt\* @\Bnx\`\&{`C\0pv\޽Kn\j\na0\R\\\\x{~E \|\y\Ex\Y) e4\tUx\0\ܲgϖʲv\`]\\\\\&@96*˗/C\(NE\\g\\\\\\0\\H\ڵkom\\0\x;3c\Բv~nN\\\US\_+\,\uq>mU\\RTw\\4\_vx \\JK0uآ\\ɤNZ\rL\$}\FmhM\п3~\,\`4 CdL*>2\\ɐ\O3\B*5kYc\AD)72U\0G\\\\I{yj^\g\5s\0\\(2X\/\0\\\I]\\d\\\5\ne(_\\\0\0\0\0IENDB`'),(85,1,'Printer_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0Y\0\0\0\!]\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATx\\]Il\~p)J\")K\Ȗ#ٲ\\1\\0E\Cbxr0^\n\\0E\9\ ;P1\YzH\\u N\\$NjdG,.\>3\\\i.#n\Fo(A\4\V|\\\i\\v\\\Ο?SƓݼÇ\\\\\w3L枛㉤\Z\z\\\k=z\Z\#G@\\\k=z\\>\7o\f}\++] T>\'KKD\ܼy٭q])G\n(\o\ \\,\]E@:&x8rvm\%%ɐ`0\U\3er9\\V\ZX,\\\\\\Wq\͙V\\u\f\\ڍ4d\0RL&I${v$ ) Z Lki\0H|Q\\\q6fτ\\mw*\nɁl5\֒5]EApu\\W@(ҨYum4,$ <0ah{kq\DD=\:\0Tz\\\"`!\0CQtZ\b\Z߸FPz^v-\n7B/ǙBQ=\\d\"Aw\ ^Mc\\\U<> |\rU}Jj\8Oc\\\\S\y\>z#\\g\\Ǐ`\I$}\뻲q\0} \\ӧ\N~x\+ |9I !s\\j_-\\\t\\\5\\p$\Z*:q\\_\\#\>x6oC Nz\\\f\4\lf[\\1;\~s\\\\\Z\\08llSғZf\r\a\}>Qgz\@\\A?Q#\2\kD«:g\´\N|\(m#\0pkF\j\\\\w\X7ׯ_\^ʩJh\&Z ] \l<|v\0\SBR5V\\\㯑\\þM`\\?\0\0ڹ\vzG mt\Zoݙ\0\\_\)\,԰dU= 4u_\\adh\Zp]4 \T\\\p#QДS\Jς\\ Hp[-\\"\G+W@`\\\)\0=u\0\~\0۴t\\&\0I\Hv#\DL\\]f\\5p%\㱃\x?l\k\"@}Nu\g\*sF4p[@?FmqEqf8\\\I\\\V[\ӧO \Rq1GMeV[ h\r]ۇ3eN\r4v\,+\0\cඐ*\Y[\xOWWm1\\'4z4r\9\'fq\1a\n\w>ݘ\Z_*)=\\\Z|M\\\#|gyy\cf”P\I\rH,\Z%![ \~Cyd\\.\a9]\\\v\\"\Z!!TgnT3\SNyCv\br\ȑJ\r&8Y\P1/];w\\2o\xu\\\'S)n\\\\/\voh\'\'\'\ XU\jlb~! 0\C\'/a\iiƍ\rG\-\ϲf\s?\C2\\\\&\l<χ\1\o`\\ID\[eo\T\v\~\,(j\'\ư}U\B\\Nk(\O\\iY\2/-fZ\) x\\\8т +H\r\aB8\Z\Z` *H?\\Q\X1!G\'Q0\\e\'H\0o#\"\0\IG\Z\hCK0J?v]W\\pb\\4\?{\\*[3\r\֡\J\n*\\sD\e\Zj+\\'\Y\n\5\0\5;\\x\n.N&2\?\n\\d~~\]X(& l-@1Θ\0~\\\ ST\Z U8a\q\)\\ĭҋt\G X)2\8Aɜ\\~\0<\y\`\\;c\\\Y\rw#\Kt\\"%\0MWqy\\ T=E\r\f\`\4ujsK`\\9BiL\U(\\䒰\\\ \<^V6\\eMLF@< H5\ {\\\?\\\p K?5A^jmJ\Zf\0?\.ِp|\O\\ w\+H[I,\"Q\~U\NK(>\̵˜Fv.JE\+\5˻g\\\\a\\\\m\k2,]\ \?@֒`4U\q|4 \2\0\ÃX\03=\P\\Z+2Pj\\|3g\ă\XIxՒ5\P\\T \\_P=tfi\ U?t(\g\\\8g\J\}\pGhD>lݛO\MFd\\D\\.V\㯘\0hH>\\\H ̺a\=V>\)J\V\d=;.\@Mx\\\4%[\\A26:J<`]\Tpw\\x |Ʒ\|swz6kF\ \\ZN{A߿,,,lTl\0L:q\\mg\\Oo\r\r\nB20kwQv\ڥ\V\\\\\2y;\sk\0W!|\0T`\\իW\;~/C~\\\<\0\\Tې\\;w\\T\r5kh\r\x\7<\r_\/o\"@\"<)_N|\\G;\\X,\և\kccc\r\ # }q\\ڨ5J\\[n}MJe\<\eM\ (\R){#3_~\\\e\;222D\\\Ryqہ\\\GR0>Xc+`\\...\0D8\\S \nx\Uup\'\Iɹ\"G\\rÿn\'\\[v\޽\\NMA\:%!K \MKJ\Tf\6c\*:\\\՚Nvv\С0Cl6 \"f\\",I-D\/R2bۢ4@\\D@7o4 q0Ai𙚅\\(9\\0`خ4jLl+\0>\0^\"gLP\n\Oz\E\"*\"ο\\Po \n5CEr!\\}{\\9\C x\\‰\'F\}\\y\`\0t\oߜYĚ [&3{p1 W\0\\4\Zn6d\r!k\Ґ~\\^\nx1?%\0\a$ `0(\ر\\ꫯFP\6m\@U\Y\Y\cx\uALT`N\ \\0\\K/4Aq\91(@Ԯ2q, \\\\$h(ܓ\'O\\\0p.\h\08X\ࠖJ\\U\\ ̶rm(5C\G&))R(um\ʲ o.D򜳻[\9ŵf֚YsH͞\\\{f\]\w\\\N<*w\Fp,\\n;\#`8dq\\NĩS\\\E7~w\|>\\}\\\\\vu\\\k7n\w\>.\m\\r\⡇z\\r\oloo{\\\Ά{~\o\\}\Nn\gc\\\\'\\\\{q\=\$\\x\\\>\k3g\H\n7\\\\{>\\\\g3\|@g\{M\\|\\\K\ҝ\7o\|\\:\\\\\"Q\ٳgkn_wpܭt\vI\\\>+i\/\X,t.\Z}ƍ\e7f_wc\O<\\O\\\ZN\"|\\\W\[\\/׭awÝ &Il \\"\/p*7n\\[n\#G\\\\.\\8}\g\Sw~\=}ҝ zD-tР\\jƔ\dbCϛ\\uh~4\zn1{\N\7\\6`Ȁz\\}\k\\\^zD\u \\؊)*+Xb\g*|I\\n$3g-\\\?uR\OΠ\??\\\r g \.\\\_u\M\ڛI-\,}^\>[\.ȵaRT@\ZbR \R\{m\\U\\_\\|\\;0n7.\\\\Zy \\8w\\\\w\ƁV7IgM\\:uc\wm\/kiV5\F\U!/V\ \\0\\\y}).C\G\D=\\Z\\,X\\\C\\\\\ѵT \\\\{_,\7D5\\'j\,ϟ?ޗ\D\\kM\=}.\ˀݨ\y}61\\U-ěe>g\\\}+Gc]{!\x)\\\\ny?\\Z\\x㍍^x\i\M\r\\=NPԿ\r \cU\n\TpT\\/\5\j;ѵe|r7}\6.Yb|U#]\\0\J\'\n\Z$\\\dž\ \\~I\n\\:R%sݣ\\r8t!K\E\\EPľ \\\\o\n\iՈA\\FD,#d荱*\0\H\"ynUh%k 0Ju\\Z\\\0Y\MJ\}\ݙW\w\\\ P\bQ%]\eRy`j)0\jP)\\d26Dc\\\kP\ʉi\"6F \ \\\\\\\@\\\W\\I&\\\2e 1 Hl\g뉎5$q\%eu:thv\\w\PX7چN\\ߞ\\[+#WS;#\F\*z\<ai0:}\t\4y %\x\n$R$ޕ&\\# k׮ @\G\'N..$x,fCXz\\r*0;\\==!\0͋\0P4:5:/\{ュ[\n\\F\\\/&\\ \\\޷`H5PcƔ\z\\\00|eHC\Nܨ&b\!vI\XY%I\'Hb\zx%^\Ν;wT*\r\tS\';@, \\\H\u\KWI\h\$`~AOS7N:Ůi\?\\\wEe\h2<\0lpwZ\\7*C!\09ވl=I\K.\rOpub\R$6\ \"\b\\\KU\'G\rǀ\eω\>TI\2ՕЊ] G`FWZN\\JD\XLv\\oȴOT\cý\"\\g\K- \\n |[%\rVul\2@U\gvT8;\>%Cnlo㳫\mq\"t\\tS\wu\-\wWHLj0}싙\*Uط\\"xiݑd|ƾ >t\Ғ Bn@\\\PIU\R%}(\P@\4zj\A%5,I\"hYr+\\m\Ϙ-\[$NI ]\#GfǏߣ\"t#]\Q@r,\R\`V\mUU\-q\Ē[vn q\\o.D@9sfw\0)[@nZʖm\'rKsմڛ\$8y\\\B[\}\\\\\x-\rlYM2C%\\\r)F&j[ƽ\`[2\"C)\0%/\s\7:\\eG\15\.ۘO \Q\\_\JS\\qU+\ƞ\n\\\r\L|*\\\siK\"vW0Ax;9hsc3\6Ʋ#@\EH,NR\#rK\\Z1:H\\Z I\tm\د#\\Zi>h]\Mj Bp\#\LF;̡|A:\0eh\e.oac@5nZX$8ǀ{>\4y$2\\(\nXwŎ\\\\n}ydßPKn1dSJa#&nBUz룞N\\ o7Z%]WO\2Y\:\\ .\;Hd\O\4\\k_ۥ<\r[s\26Է1\\Ph\\˗Wb\"JLz\Ս6FS\Q\\<\"4\!M6%\S\\ _7%Ƴ盧=\\нI\ƒSA\\?oW^\\0\V\\J\\.߮q_0P\\Ngd\{\ \S/\\\hңo\2x\?\čg71\}XQk#Js\`Ȍ\Zb \"\\\\0 \P}vH\\\\JR\{!P\\#\'G\*5\\d>`@\'r\]\r-4qR\r]NF_ :vP\^10) hh\\\G\N\\Q\寂t[3|\\р`bِ$P|\)>sJ>O]-\\%o%Eo}KӒBsBh \rh<\\W.\\'e]@\\3H 1x\|\\reO^6F\\u\\\\VޠY\\bl\}iA\Tk \\$zOW\&\a 1D{\n M\jR\B\R\n*D\ͱ¶\"X`%viS4\\%\\2A4݅Ա{\bRʒ\n\]\\ʑ\x\\ XC Ia:\Z\j\$\ \rҷ\jrc\I\n]N>ʺ\V\"49\[\1t_!Hq\"h@P\b \"6&71\\'\\\OA$kc\x*m1㹎E P\'>\\ \ۗG\\\\\ ֻ_wR\Jn\,x\Js#\MJjPPgߎci\\\\\{`\nj\\Z\\\nՖ\@n\\ aHC\R>)HO\3TV\ApuXุ\\>0QŤ\\\\\%\#GD f?a6>k\ހ\C\I_P99\lByۏ[\V[G\\vj\\ %\b\'R\cɆ\\\X\u:n%\0\n6 \a?\\Ԝ§\ WH7.\IwlPqb\c)^\06vT\\el\+\[p >en\ؗJrMGV gAP[ҩM$\ݏ\[*\6\\뱬j)c\OVR\6x#\\F}\'\\ࢬT)\3dh=FpՓ\\\\\}\ޢ\\"\\\يl\\}\rFb\V\ \\0Gd y]3X\\I\\0\\3\\u15.*\m IC\ra\\0i\\Z\^F0<>%tAJM\\+)\\>\IWf\%4NcכnKX_=:\xaD\O \ʷ\rb\2\1\\6UN:[\3\0Dfu ʱDn\A .ȍW^yeEоJ\\\›YwP\א\\Hx*1Sb*}\n\K\,\7о\DMވπ\H\y[G98d\'+\0\\>86`hŽ?~KDž\\\3\3$P\U<} \+\cKZt\]\>ݛ\J\]CU\\Q \0؂c\\6@\q1z$9K@\rzK\\)^Iz y7ԕ\\\\8\\r\Z˂\E\]\J\Q\i2Oa}\R\6\o\}\\nfbߣjߠW)3>\po\\u\\\-Y\\\\r\\Z}w֧ mb#HF\r\\Sk\SY\t\"\=%\Q6T\\m\\>[\`C\\\\An\J$\Ij.j|=4R){\\\\ Ͻj\b\r\T\\m+uS\+\ ,Nn\\\6ْ[M!B\\Յb?\\HE@\ x[-U\k۽\\&\0V]L\\Z\ \\\"&\̵\\\U7b2\OTES\\uGۢ\Dh599Ib4\UV\Kx\n\\F`\xջX\\.\ScK\Kp\'0Hd\Dt \@\WB?6/KJd]/U⌡2\d#T򒣫7b\py\\vq\\\0J\ZI\n@&K\\'{a[\n\0j\"\gIg\9ih\^%Eu-2\Z\\]\EI`ɀPdMc\@9\5J#IJ4o![\\ѹ\3\)6|\Zf\) \[Dn\$FN\\$\B\ؠ_2y,-\01]]\}\'TXn\\Q\^HHNG|r\FeR|\\\Q=V6yP\0\u]\}\D\cas6ΓZ\\\\\\䮊H\F\VHJbWwac3|\\\\rk 6y]I.z\\\JU\rӉ\\\"I,\I,y\X\n (\\\%b]\\ Wӏ\6 tSW\<\Z8! ^\\M]uWC_\Z\Qb\M. /\ZiG\\16\b_ \\*\Ca;2\\\k\2*M\!\Z:$r#\~x\\\_\%Lȁh\O2%4Eh-J\r3\$\ιc\\}`b[]sBR/\a\\8ݖ\\\\'\ļ\D\\ȎX&\@7V\:\}\4\\\%\\d)\ft=\/o\\\f677GWG`PRnQZt\0 $%SDMa J׃=\\n\+Dc\V\nFp\\V\'7>\\n\\ y0\\\W;d_#\r\\B\\k(B\\0e iCqӤ\K6~\0>\\ԄerS\\\0\d\S\rNpً%ٖn\\7\6mpCS\z?\ r6B%#>\n\A[\t $\ ŀBph\\O@@!i϶ͱ À\"d\Y .\\g\v\Y\[2~p\*A{hSD~זKٜPE\DH.\r\(\R\\\\%rQN)Yd\=\!J%\\\\>j\\\-UU\*Np\Lz\a\7\ιΝk5:/He=ztr_(\~b0\\ p\9Z(o\nQ\2)\\T\"A/U$\Y\V\ MlI͊.\R\B\\\1Hrn\r\ƫ͂Oa@w`\c(\\" \\v\X&@\\\\\ĭ}\+q\\\\\ti4\\Kx,(\\\ O<6ќ\>s\̆\PN{]q6U9@I\u#\\n\áqY:\~!}D\m)c\ZG*\j[8[Mg\'\=\IWȺ\\\\\\Z04I\r\m\\*ЅT\14ms\"Ћ\Z\];\n*<\\C\~\\\1If\Z=J|\:2$׮]\\[\n\\]\k0*:Ͷ\ oj\\|h-/\*`\,\L!uW\\Q\I\7ԆeCcRaDT\R9D\Z#\಺\n\ӶBӑ\eϵ#\>\ .1Vo.s\\\\Zl2sH*LVy\\On\\Aj\\ڤB\ \j\\P\:\\c}up/CQb8I\\\F[x_V\ս6F\췥@\nAn\\CpU]E_$a\PX\\\nש9v\؍1r\P\\;;T\\A\IG \"XG1|ṅ_R&l|(}s\\\\\C(;QJɺӐ/_^I\=\Ed\\O)Fp̈P+\䕄ꝊT\\+\\\\M\\36\ \f\%=\4\\%1B;\\Vu\\[\ ,*)\" 4\v K!N\R\\@\:!!\S+\rt&[H\F(_\\&77\\&2~ს%}<\Am*\\\Zۄka\>\\\6aDH0N\{!n5\l\'tq>\\l/ۀ\{bTJ!tv\>\hHK>\rV\r\E\.\E!\΂-\\\zx3O뚿J\7\"\En\-e\0Q\$F+l\"3\L\ܣI\ R5\ж/͵C%R\۳\\\\\\\\PTIΒ WJN\\$\u_Z_\gk\6,u3q\B\ƀB\\T(e]!6vlW\P\\\(\cmB π\\X؉\nH\n\ӑ*P\Q\\Rw\VJ%4\\\KJ8.\Ǐ: APE{\"\݈\RlTs\.]cľ\ȳ\\ni\\*^/\0\ Q\0Df\R \\\'ʞ\\\r\Cun\\hīV\2d~\Ҙ \;MyO:~JIrk \5`\h\\A\իWW\TĖԍ\\Rc \r:{%Jr$MƵE1\s\J>\2 a\\ܼ\\\wETZƳ9\\kbK\ͲQ,|G\\e=y}\ @$21~|o1Kb\Me(\Y\8\fK\\.K`CDJ\$3l\n@\Rۇ욎|O\\y\Z\Lظ\\;\lT\\ZD\X\Rh\J\I\]\k\U]@\\nݨ,\\\cWy\n\%\a@K\䮆.8`<%\\rğO|\:!BކJ\\\\e]hJ?H.+\0\\\\6oU\\G\\\'>\\xM\ٯp,+\\ \MN\EM\\\+J5a\EԽ (p\\N`+\Mh?Hlg!;L ]bo\\Aݙ\\\\:+\kȮn2 1Ҿ\\Df\\\D\ܮ \y *S\f 0DmYm0\{\Y\Q\dI&p\\'|\fk\g .\'–\'O\ӣ$e/ icԎp,*q@\ӖtG\\0a}2\}[\nc\HM ]V}Æ\QLbOX \"`?ڛ hYQ\ʑM*\2\\]V\X- K,\nҋ;)+מ\'\\3\4\\Ʃ%mp r\?uA\┿v\PEM\Dnݖ\)a\r\\P \\\\\*g?\\t[\n\l4;\~\~\pX\\\c\y0˩\n\0DfO\\OxOP+W⼉8\n$CIc\'\\貎l;@\ċ\/ Ss6X\+\Br\]\b_\|jlqi`Wև\\")Qi0;\\I\xFg06`ha\+Gu)FF\@\xNF\G\< Z<\Y\\8iiBAO%y$#\&\ɞ\z\Z#I\\}\GvUπvE%_\BO\yڗP<\U\PIEˈ\À\\J\4\x樝\H \ֽr\ĉ\})\,\]nh{0\A\G\\re7O҄jE\`h\s,껫\:\\&q\bg,^PPlKM4%5\'җЊAVwCLjX+\"?wIz^}+%W\[Ѯ!\>I!\rֱc\FYO\:@bM/<\-+\\~\`J\Y\r@ \\\V\Z-F\1A\>-l\֠\5\ 0\\$\@W·{;*PO\&\\+w eCM\"\\ԣ4\n\S0€ \\\\\k%\M[\;\|hEni\\H!\'\dfv-@?\*tDP (se\[b\jppP] Ó[H-4L XH{\\j2XS\\_\a\џ\҂,\b\\n,\\Z\Z%a;MFc n|:nc\R\\0%\\'wwgvPkp>\#hujK\\mt \\Uf_\tV\ږ\}$\\tE\J\"R\f5\Z\,\\Z2r\b\Q?\Zl\ۙ\\\D=\-\ޣi\(\x\\\\Bg\f\B*g\\l}[_\'E \ɛ;\ZWڙU (]Bn\oz\\\\~h \~ҽYnȭӧO\ƀƒF\eA`S \*o0]\ ņ\ņ\\Y7u\}=-9Cq\1e \06 bK\F\\`xti1 P $x9&/I;O\\\Ds\FZ\Q_+\zB\"\Z]\\.\іE\ \\N.Rt-- \c \m-\\\\Iqg \\ I/\\\L=\V\\\\\"\C^\\n\\%r\\!(_2\(U(c v2T?4 e$\wB\ \4n1w)Y\]mU\a(4&](ɰ\\\\\8\.P$^E\\\\[\-Br\\¥\\>\\\ <\r[R7ZH:8ТW .НѕruSc*BK\s\V\L,\b\@\u)yͶB*HȌܕۘ\xi\\\no+\n\{^=\T\0\gAު\B\F@Q\>6+4\[4\N\\\06\R \OGYrˎ9\D)lIH\H1a\'NdUSs _w \ڕ\Z@–\nϩ\n\\T\+i\\7\\1zCO\Eꍴ\a\$1}$ 4(t\C\Qtlnn΅]Hۤ\M hɠ\\Z`N< \ڧc\&7SP[\\P\DKAS*8\"t\$L\r{e:nܧDS^-h\\zϢh)1\'=X@\ԣ$\RުƓLO~\+CXS\Ȼl˵]\%\T8 DYf>\: fm\GEb-\巰2*\2K$IQ\T.Bp!\rlWf\0\9\\\_ˀjJ\&0Vc}\0\\\n\n5\\XB$\X\R]J[V*W6d\\OBc_\04\f$\X\RhEc`\qQȄ\ 0LJ\"W\#z\>D/\8\-\u(\.\\i\ZR\'mV\\ .6!iK! LQ\FkxЏ\->OztQHM\\\P&ADy(\/\'\S+@7FO\ي}(\cJԛЩ\w\ԩ\c=\0bceOj\5n|-eZS\\ K\\rkr+\Ɠ&7ր\\\\\W\0\nOȕX\~\\x\wqȂg\͒[6\_gwTO ω\\ZF吷*i\"^ 4w\k& .\'ªPXc\\D\n9Y\w {*\\r_t\n\\캱\\M*`Hھxh)a%i\\o\V\*\ WB\0r74.\Tr\To\\"n#}~\/!}T\#WS2ƽ7:\eC:\M\\q4\K>\c8G\rĝ\b7\\CD\%U\U\H&]+\\\\cQ2K\Ɋ\`L;{[U\c\T*/\J\ &\S$\_횗N@\\+\\\\\\\\Z\\\2k_Z_\\rBX\\\|ncD\\\W_]\%rCeJJ\Z8ɠhF6ncGC\vR+4ԧ>\&\4\\$1\v..mV3U\\C\fm\+[ V|0 ֹ(Q\=B\y -V+M}o΋\\A\W\&B jeJ4\\஖y\_#\= BZ\G\>N\iQ*\رc\\)\rIeHRtƯiQ\\Z\*\C\&=id\}~\>\V\ni\\R7\,1rG.eۘ ҽQ[\\6PnV\F\KTP-[m_rX\n6gE`/E Ξ=K\\\\6F+*^\oIz\S9T\\!5\\ϯƛ \. h$\"\0(4Ѕ\Q\`\g?\8 [\Y\%̂E[F;>8.\0\ԣd\";$!\{PI\\\'I\`Q\p\ZM=J\3Z\\0\*G\H\\JnR%&\\\k[\nM\ ]S*\l\N\H\{R7$F\\. \`صʝxe\j}o+oC }\w}A\w\Jh\\\p\)^\\΁HPjIJ@o\5S\0aHI\\,u\ҽS\rT.P\\\\p\^3\V@\\R\\(\\ZTކ\Oy(\x\\i\n\\5Cew.\\%Uw\W\\\Z;R9T\#or(E+*?=]8Q\.\\YN刯\\/$ }Q\\vG\@E\Đ\ԣd\+ŀRpEvPz6\-JpIE\'I\rO\.\Q\\\TX\7-X\Z\лD\\` cȪ&\\'yjK\$0\\\(\?\7>\ܖB\\}09m)r\Ơ\5K]\\\T\_DgAnٶ\䤸\9<\\\5n\=\\lҁm),E (dd埻.\;\\\\r\\%FQW\0-[OcGS\Pá;7/JԻf%qB\x\b-$IT|\P h\Q\j&Toa\2Sj\Cjq\!\\ \Ζ\i\\D\ԅb4\)y\^4\!\o\oV $M.I\r\G\WB>H.`դl8\\g!DDrԸ(\\\ҏP\@\|sM\\b \~Y\&\%:\\\\\n$\(\\\\\Z\r\, Tj\-P)\ZWmu\\?mKrm7 \K\\\c,\f\\\bc3O=\V\\bK\\zBOR\\2c=Nܧa?Ŏ\M\\\`Oݴv׹b_O찼\rm%\\rw4GR\\\AG\P\\t\U5R:%5\\?z.\=\R@\\\\\\6`\ )C\ԣ$*\>}z\\O\n/@U\s\EE\{Ub\\oLG\V\Ә#\\c\r\Z\\p\]%QFJ@\$\W吷*X !PRs۠fI \0A\>!V\`jG\F \!TlpQ2ƀ!R(;\~o}W5Y\\CD W\D1D\\\梕\9\A\'9T[Px-&Wm)0J\\'rAHH-m 4ד8\\GUX_y\\4עω\\\@\9m\"\ҮJN\Z\r\ȇlb@S@ћ\\Rd\=OR$\n\1\MNqB\$\O\&\Ȧ 8?-\R\(\\\ζ\Z\'Rr5Ѹ zO\\"9.\fxf\H\ \\!\uP9l\'\\Kbϝ; DҼ* VE֧= \9n\`ӟT\O\O\M^*I\\J \\\'ن\\ZH\Q\1\\ZD\\\M\-\٧hl\\\l\\\\\}iK1\n=f.\F!\ \25Ƴ\"?\\\n$\d\\\rA\(#Җ\\3<\\XDb\[=\\Pf\\~4\uRd\ \\w:F\6[9\\1\\'!\r\>O҃65 \\²\\\w-}wT\'hK/P\b,\Z\"\l I\I\(UMXb(\dcT\\j!3-ý(\~ = U`\ٷu\R\r$1RJS[O\l3%\uY\ M N&b?(+D\ sU\^ra1*\\ټU\\x\G\+o1D\\ӕY\\}e+] s\Z9Q\r$PXy\zM-Bl7\* tE<]\mb<\$Vc\T[&A>\k\YHuK\\Pl\A\\\ƒD\(\*\n\T@\;M%EP\%M3+H\rBp\E\t\\dV@B[ \&\' Mk\-m)JV\㭅J\ \\7\.\䯺\ ګ iˉĤSHZm\R\m\~!H\1\'JZT\$n-V5x\Wv\\ cyX=\rR!}.uM~j_TuP\Z t2\R؁w\n\\)൹9/\҂#&c]A18\\nr\"h\-\EJFUdW(\b#\\\01\\jL\4 qq\@N\b#=_P\xJ\"ȃA=\0\"z^_2\=\\0240f\r\0\\m*P!GDR7\"hr\\9\rFp5\3\5LV\(*`y]E\\n}nóCJc\q\(\\c\\}R9\~\\sDТ6Fj[ \\dX`\_-Lh\\006jic\02\0\w7\*K\\B\\ +.H\,z\\\\GOrk97\.Y\y\M̲\-3\& t\Jb\dA \|Z\\'?\*_V\\A.\\ly\\,\\\+N\"-\_K\\S/%1 \Vbn\\]JۻDh\$!lh_ v\țU&;1K3!3#!\HI\\\=\\q\뛷\Z3Pq%}jq\\uS\\\rnHol&\^\0`+\ނҕZ $r\w)R*`\R:j/cɯchܝU4Fge&\W!U\089xHbļ\A\``r\HdD\\\\ڧ3Wɢ4 \\ xTHlc^B\\lS\'!\\We;mIP-\#[~+\TP\ \\h]}k\\D(֢\ed#\5V\\NyL\\~vR\j~\!P@\Z}zP!~[_Qݗfdf+@m. B\d91\Ҷo?cmm\ \vGu\\+O\\O>\\PZ\K\+ \'\B\x\n 0~7E\\\Ɲ{^\j\l0Rs$A\{\\\_}=\'\\5\n[NE\[\XjE\\:\*l*g\\)\{a}B+\0}n˅\\\\N \0\\\׃~\\\9T)uBrcB \ZZp\\\oo-H\\{nnN<\"dסn`c\\\o@?2pK\\U0SŇaGG\\ƂQJ\3!p\\\0nAms\IùϥSUH.(\r7\RCE.fJ! \:r+hˁb\m[ZQ\K\R {@\\oM@\mT2֝#\bP, >%\^튭Tt\=\ێ\\0>\\S\\sτD\|P\\0\\VкF\M\[xnRH]U\ \}IU8\g\\rȎ368*\t=Z\֗To_d\͹ǮE\\j\zn©\Ȁ{\\AY\\\\V\N_J\S\\\!.\\\=JR\0@©\\ڟO>\y\\7P\ʁc\\Xwt0#\\ru\]\ws[N2,\\\0D`\9-᯲!lj\ƾ\wc-ؑ\I \'|\\>\){\JS3KgV\$!7\ڵk[\\\\\ܬtNe\Ȳ\ B.iXBzH#7\|Ih\\\\\Xo\\^5.<\\G;N\\i\:\DuCN23n|\=$ͮ\Dy\r].8\\HY\me)I#š8\0rU%\\\;.\\\Z\V$[л[޽q\\S\\&?6K7\\i\7bA2ܒ\l\\?\um畬haUuJ[/]\\rs\`r\\\8{vkH+p\R_;\;\.^\rePi\϶& V\݈!Tkp\}\\﾿\^\\^7h?r\\\\\\;?8\zぷ\~8\󬛠Gton\\\>ܢgxǁ\G}\\g?۔MA$T\=z\/\B\\_\\\'?ɿt\y\xGb\>gw7\$n \\]\zkQ{>?eie:!\znS\Qrϧ?\\|\מ׿~Hj\\I\H\o1\\rz\+_ʿ\7\\r\\ZZ\\\\SOmyB\'\r?\: j\z}\fw~=Ϝト\N\O<\Ͽ\o}ֺ\\Z;y\!\Zhv\/j\e)̻\׾\/\\\ZPdz\>\Fl\KM\>\n\\-\ZP19-\-[D\\\31\[[\19\_\2\k̫>|g`8\Φd\\\\\fM\Lɰ1ڭ\4*d\9\i{\yV\E\0\\&H\\g\\A${68K\ \\\\lym)l/\/ߗ!]V\\wVhw\Kn!\f,\Uе\:\\~\\Uf}S7rmE. \q\{\bj~-1(\\\\O\p\-&\d\g\\'M\bm={k\y\n D\Լ\^sI$ur\̙;c\:K\\\\8\g\\G\$yV1䪘y d0>\\عgy\\hX-{/ΓyŸ\Qn\\\c=v%\nqx駿\߫\0u_ U`c \\@\h:Z-7\\Ǐ?\.\_\\+\\n\Y\\\'OqE\"\{5%/6>#\F\\\\\\\(/\g\ܩ?x\\z,o\D\;5g\\\\ԟ\{\\l\WTLst\5 \М\\\\́\N /\\p\Ͻn\vf\0Nv \n\v;\\\wj\so\-pO8񞓺\\_\&\\\\r>@\sp\\\\\\Ү\ \\=5F,\\;|\N\\\\\8p\3\wϿ\ܫ\Gn\G \&\'7[,\;\\6j\cnQ=\\\n \\k,\@su7i2 \Yh1.(&A\0\\!`q_-!\n5\\ύ5$\\w\Ν\27꓿̍5\r\\~\w\s:,mԺ_cȁ\.\'!\rmL߭\'\\+U \0\\n\0\]ĸp+!REʖ»䚖jKQ\\C%W\\^\ɼݭ~I\\1\\r\O}NG\VlݢJ<\1\Zkrs\\@\T\%\0\0\0\0IENDB`'),(87,1,'Rack_42_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0D\0\0\0\\0\0\0z\9\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\0`\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IIDATx\͝˯$GV\+\V\~\\\v\x܌\^FBF \XlfW#\0\\ dX`W,K-\\v\/w\Q\Nō2T\[q\/\+N4\|\]w\\\\F .\\\\\\\\~ٞu\7\x<~\]cccb\v\t\W\\ϵ\\\ˇ=z\\?\f?6Bl={\\\\\\\\\rW_\S\q\Z1F\\\=\7\x\_\}\ݽ\ gϞ=i/5揬ï\y\ih\-u2 q\\\8Hٶ>=\\\\\x\V\ҥK\p\\\߷\\$7z1 Z¤\\'\\d\>Kfgggdk}xj}m\7\|\ww\\J\\\>\b\i\ѣGx\\ycű8G(\\F\\ũ_W\n\g~\8#&:&?\H.[\'߶ώJlt@S\;vlb\v k\ߺu\홧\\\\\U{ޥv:9\\\Z?}T͞|ox2\\ކH\eg&\\\0E\?^C\0j\\\ \h\\\\0D\"\F&ƍ^ġG\\A{SW\\9I\\Ћ\>\LQ@z\\Q \\]g$\ZI`O\\"6uU\%^p\'6\#v\\\UT\\O^O\\p\ c\OqE\0}Ϭ\,Sko\nTu\0\$)\,|\\\}gWq\rW\MX\rUH}Ws\n TQ\W5p֙ThU\&\x\bVy/TG\P\nXS~VM5\\0U\"#\֣\\}\\"9\Z\VPT\㘆(/%Y\MG\%\\"DIDT\\jڬ+}\l޻woQś\Q\\\EŔ\tÇ\'\>\\\')Pnܹs\;3\(\ 5\;9_R㽥+׆\\\m\"ӔT\\Z\\;@\\EeO\\\J9s\"U-2\K`\nMqO<;\n!h?+u\\BjIdVfQ\\\!\Z\0\0кQC8WaC&!\rb%0\N=\V̼cs\B(hUƝxGN\Z\"\\Lg.ۛbFgc`\aӮvVm\\nB\b>w^ekc.ֲs\Sۍ\2x\= N\r;\0R4S8X\FA\\N\\2\z܈\ Px\\\\\V\\\\\Fa\B%`0V] CTEsU\n\\ҪhTp\\\ \n\ccR\"NL(ph\\9)\7\"y^\٦OqѠ\56+rD\œb\J\!\Gn!iw\]hj{\fr\7=ګ\,)7\\(% aJX\\U\"Qˀg[a\\\\NC\J\d$\o\\21\\$ƍ\\T\N@U5\).\\䡠Ÿ́5\Ni5\'@ř\F8\Y&E \R13\0\\}i\\T\_?\!@w36zt!6m\U\'U\[k\6ѹ\\;ac\\\\*Ǚ\\m|2V\nQm,Iw\>\\\\ A-\\:q\Lgk\\\nnݸAz@S;iIr\{?*\Ej颭z`E[E\j\\nTE\\K\Q\PQc\y2ɽ2;-\?$/ O{eV\ z\nZ%2`7\@\*\AuOS(!n\o8\)~\\A\/[5\\U|X\\}˟t\\,ψ\v:]\0\\ $2+\Od\\n5Lk\\jX}\\ȭ\\Ĺ\R+0K^4Dp\\\BR\\\'bDq1Jaz@E^Ê^]21x\X\\b\\\x3\I\\74Pr\kh:\\\1\Q\.\p\\fLĈ3\3\\r-@2Jz\\T\Nfh\,qC\\"_\\\2>\AeO8\'c(\.\\0pB#@\\Z!\\\U<{\q#¶[\G]\\\Adˠ8\׻d\ \"\0 A\0g\\މ3\\\\y\0\0\n\\y\\" UIy87\"\\´E\׍!j\\%\tWOՍ!Zj\\\o\\8;\'&>2\F\eu\\\%O Ի\\'G\>\A\\sNsa\We-\\\>}\eẊ\jH\R1!\>\NjJl&NѬ\N/f\\Tm*f>Hb,\q\+֮cB\%\f\qo%w9\3 lX{P͉NCĿ\8ג;j%M\\U\n\BX\V\\nWKz!p W*\ܢVVTc\\n|Cr#]\k!gUn\0\RAVX\'7\A|p\n\ )S(\0\JM=d\\nL\\K^\o\ՅQn\\\'u\B\b所iD\\^]t\" 5 R\)oYkIg\\\"\\a\!\Zhq `wl@\2CZ,&Rꤺȥ_\jh\\vK\@Њ\ bܡ~j{5ID\\\^M\n\~\,\\F\fd\J)@\\),\˘\d\\yZz\{\з\\\no)elu\R\Sl\\~CJQ[s\\rlZu\'D\\a 5\\8Z5Ī;)f{\\v\\dÅӻd\a\_i\}\FfBH\\e$j\\2´\\\%\"x-U\Jubt\>R\vԤPN\^\!j\ݻw>VᅂVd\\Zj5wT\82tP\ n \\rЩ\\3gVgm8g#$F#0\:\oe\\\\ٯ+\P`-%wH\\\~I\\\\5؝t,\1K\1q\\0t\\\uAU \r\C\BCS6o\=\U\\\f%NFq\n\_j\v\'%\g\\ƧvXX:oh\]$ Q\n\Z\r1\j7n\\0\s\|Z\\eQ)>\\Y\\\ZI\\\6ڝf_\ \r\\q\0V\4VrX\r^R\\\\'yGKE\:.\GS\\q΋@\\L\uk\n!(\XyңˮH\c$7\-\~3;bMuKNv~_\\\\N1\qqD_N_گ\2\ZC~U*0z\n\0m\.\ \Z {-60\@w\Ќ(Y\U o\ZpNCk7b\%w7\N5_XLTk\\KcM=\Z\2Z\\& ,\r\\2)\"\~TQ]ש3(6 \Z\Kj X\2\>}JV\vz_B\60:ʋ8̊d(t\BD1\ŭ\BԀݺuk+\\ \zkW\n\%5\猬3.\`\\rr\W\\\0cĪ\p!j \\@H\)\\̅\"H_\U@&\d)e\W\\\:Ym\v\\ZUC =h\\)0V2b`-\"a \*8i\\~`}z\\n\s\'k\:r\\p\\/JjwJ\\\jkkk\\Q\Uԗ`^gj,]2\K9\ \v\\\w W)j\\%Q&\I\.ĺ\xYP\\\ۋQ\t29^H(\"Nd˥K{-QU^\-2\\\ܧ\nTsUb\"KG\߷\\WJy\\.FՃY)5\I\\YO{\\\K)\\\Rˬ,au\\\t\\//\"B8O.{CXA,\\H\Z5w&;;\T7vA\@\T:\Ν;ʨK3{niݬ |ӣ,\$\\b\rw\ \\(l*\\N;\\TB=\3E1]2%|\e7\\(\\"\*D`0\H\v$\vr!:O\9>]\\5z\-\PH!mUD{6]b\\\o\RR\.\\0D]BY\2\e\Zwח\\0Tk\-KpD\\\<M5\nb)cYQT\\<7\j%5?NLmoQ\Z>\ \D#Hь\\\\\UY\4_xIĶCR\48~WDy\\\\\\$6h? xِSC\q\\r֑*/W\0Us\Z\r\\~{jj.ijҟ\ߵܷ\7\\%Gs\ \e4K\>\nqPQpTyVW\Kt\T\o\\0oqqx\\v(Ԙ\0\eyEuOK\\]^O?\ BFA\\O\m\ufށ ~#C}:x\\rp\ҥe5xUkԝ\B\\0\I\^ AR5 gn\y\\Tjּy\f}Qq_j\JD\\'1hܤLv\nv\68߳*Im&\/\\%щ@֎\\0s\0ՙ\\\uf\3j!J G\\SRrGO-ŒI*\'5\@S^(9\ZC \\hVh\n?/\8B=I\Y\"2,켽,*kV\\nZ\"!Y}\T\\S\/?kWdg7AwA[\'\l‷|$\፭Ӊ F\\\"D[\Ĉ\f\\ȰeKֶ\mm}jSfJZ z饗F.\\\gMuQq-=RlF:u\Ȗ\O_^\t\\c\6mƉZu\\#ʮ}bx4\F$\*\l<\Q\#\\?\@ED<_-[\; i#\\\\G\\]W> \sv\T\\\\\rͫz\FfB\\\}\X;!\\\:Cֵ\\7\<)}\\g\L4f\\o|6^xa\\^;\\)Yt%>vt\v% D\Jp~\\\\\rE^_ZOxC\Z\\n:ugϜ9s\\o@02\\Ag\0dܳ\\\Ȯ㰡Bz\ϛn\u4\\Z7<\\nlkJ\v\'U\\U矟ꫯaOG^5b]ZyG\\\\;?裿\&>r\?\\{ir\߲[o\H]\p~/1*_\\\S*\~6\\\'\\\\\ jv{\\3h-WD\\\~{\>՛bE9i\%pi_|\"Jg\v\73\\\\Ҷ\$,r\\Z{6\\\\\\׮]k\O>Y\H0_\q\\\v\y\\CnuC\\n\\Ķ\ׯܸ唝m)\\'\窺 5\\\\C\wb\bUg1!\\O[_J\2Qٮ\\0\5кr\\(\8\\\sq\S\f\o¼㘉\'&\Z;U\\U;d\\=xY\\\F\_\wל%\CO\+o\Q\>_k\Vv\ Y(v\nd\?c\Z_LBع~x\\\MI~ۦ_>)\\\ro@\ t1⾃{\\ZxeX\c25\\ff\G{\ \\B\u\\h \\\! \\rN=Y\0Y!D\d>U~~{n;\"b4a\A\Y)5\h\0\\+\\0\i>\\m\0\0\0\0IENDB`'),(88,1,'Rack_42_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0e\0\0H\0\0\0I90\0\0\0sBIT|d\0\0\0 pHYs\0\0 \0\0 x2\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\03IDATx\\]\]\U\\;\\I\cǯ\\#nr@*j\n\n Q!\nQAD\o\o|\sEB|@-%J@4i>\\\\clc\\\x\=\\ݬ\\8\sou\瞳\^k\\\Qe\{G!GG\'\s &1N>\\'X\ZDžcB\Z\'\\\\\\r&\\㽾\\\6\\?u\Ԫ\F\\\\\9r\w->jF\\\\\\\\0\\p\Ey\"\#\z\7:MrȤMƋ\\Y!\\\\\`ss~Sch\؏\wC~w\\\\\\X\\zK\\M9\\\ٳ\[?(?\?_\\\\\#D\\r2&\^\M*B*Ι\\p8,峱ɽ~ \\\\\\~jD?~\B\\nU.l5\zu+\\Y,&5|\\"̛H\^xa\C8f\\}\\|\\G}Eq\}ȁ& {,,,x\|D\\\\\{{q y\\5\\\>\\*\w,\rKlM\\W^\%X)\\zE\_\\\o\\(RRs\A\8\8t\\\dBdq//&׍{9\ũ\ \eKzGQ8.1U \8\\ݻ\ pSnuh\7?\\\\c`s\\ \In\\\\>\Y7lL@\\}\Ν\ G\pc 5A5\ďӈ\\_sK\\"\\\\'Cb\^ADQ\f\K\DAy\\&\\EMBAi3\Kz\5n(zA\չ\{*\\%O \}\\|7(\ 1\\\[nM |\G&%\m\$\"^61F\R&o~̓: D}\\\߿2\-4ђ\"\',]6!?X\\\\\@B\ X0xGٰ/\sM\MX&!S!M8gp\V-~\'Q\/\\\bO\\\r>bTk%\դ+9\Va!3\=\ \80\7Ы}\\\E\\c=6%F\n\0P)l\3e\\)\P/3o8\\rV4\\ \\\\\?c\0(\*8\\\U`_-S!\\\\\+-UV J zkۨЋ~,\\?!,\\\b.(|s%W`A@b\0V\\VsB QVn\\Z \7\Z1\\AH\}h+(U\\A5ܻwo6@ ~\\#\\naW5x遼%^\m,8\$J\5,(\NI7o\\}ᇓ\\0(3 \0\\OYϋ\^zWEȋ\hH\\\\5裈\\X\'ܸqc\\\Z\ȑ#Ѧwuq\2@\\$⺢H \\\Z\\n-lو/\\A\\4H\\0 .A\\\'\n\\:\{\&\f \\\\\={ȉ6`8W\UH22+R\[f\kJ\%( 1\\\)N\euuu2\r\/N I\k\ Bk\<K\{\\@\n)P⺹B\p\"˥\\\*B\\,\\1w\`U\T++o@\\2\v\΢X\U!.[\`*i?XMPf\\0\n\Y \C~i\'{Kz*?\\\\\u`B\F\\MTe8>N_)\\A9\b${ \1İO\rG@c2F\9.a\l\\\\".\Axœi[׽@\+WL~\ԩ\չ\ST\\C DQe`x8\uo\ݻ\N>}\E\Z\hK\rX\E,<@b\\\\q\m\G{c\aBǥ\\\E\\\r%x\\"\Bl\\T\\z\!nnFT\^\ο\]\\\\0?h\D\\\<\\\Ե@G\1r/\A\\n=P\6m\㔬\K\\\0Tۄ p\ ٻ]6\Cw&d\S\\Dpme\\@\n\\\0|a vPRo\\\U\\\\\\#hTyDEN\\\N\\\G\\_\|hDC_\'orݓ\ܹs|b)D\\Fz->0wX\Mn߾=\\OG\GG\\0 s_o3QDу\lIs)\Q(<:\xCzW\\\K,\"8k26%Q+(\\4\ӝ\r\O\\si?\ZEzhw4$v9$]WK\-\\w\ԁ\u+\ qB\\\\\g9%\u\\7oBQ\0\̡=\$Q\>(F -\\[ei)\y:t\\M.\r\˾4XDY]\\8b<^xq|\ \f,׍CbKՒ\\w\3|b\n\D\i\OS\kmzǤFd%\7O1޳fztK \6\\\\\\F\\\.H \mGaZ\\5ů\-\rJ*]L41\ s\\PW̬Bb\\Ìr\\y䣜t/ 1\04r\ر\M\#5X\,8\01>vg\\0[pׇ*~WeoZY\\\\Mlr%U\\\uا\ \$}\\\GQ\r\\\r\\\Y-X6 {h3\\\%v}J,1H  gA\po\\C\d׽\x \\*\\0\ѣ.n\&\KC,\D ]y\"\\\\ć\1p\H;MCbm=eMWK,<6Hf\+\\g& $\)\SPyȩ\ޥc\v\"\ʩSHL840\D\k\'\x.V\gr!\\\'P%\Ư*nDP:7nv]\-\\!\aG)\\(\\\\\HL\<~\\X\\E\\H\h,@ \F\"ۼv\;R3*T`t\\{\\c\Q\UF\W\\0w}xb,1㈱M\"\u\\]Z\DL\ox^eCb\\\`QF4b\Upr1Q\r\^2\З\= +>():,<s Mf\\\0\6lI\r74\|}{\b}\*R\:h\>S\X\SX\5‡ĺ\m8Lݠ\'YGTm\'笠\\\ \\v\n5,7@\qh ^:\3b2\/6\]D29E#)0WVVv\t\ׇ\\'*c_\!qh\\v\\\6DT\X98Qe\ERd\cg\CET8\\\Z\\@\{mw@28\\\z-I\\rlĬ\;2@]\)vT mG\2{?\gaKe`fW\\X]^] u\7ɥ\Ć\ \yî#\_AD\\ P)- C\t=%+S\ +\O\0v\ sޅ6#ǿe\+\Zd\rV=YX6\g`q7q\2y+|x9]P-c\\4r\\FMC;\\E\]^^^\$\bFل\K\)1\\(ߕ\ր\쭅arjD\\\1\\ \6\,(y;ЛGQW\)\\C 간YA`m\i\u\Mv\\rh`w];A6Ǒkkum@bsW5\'55F\ɓm\\}\퀛e\0jF\\\\s8RWhN\\r6\)ºX\').\\.~UdK\ΣL^Tƣ\,\[\dU\uzD[\@\~IC[G \\B Bbyl1cu\ \2\e^\2d⫂\\\rb\!\[\% \\n+f\^n+\yC:\rCw\\\e!1\0\r/\\\v\V\qAq\4+ːb\"$f|j4K6$ֆ\\\pͺa sʅ\QtLc`7.\"6\\˵@\C1!nXN\v\\ԡ?z\\2ƺM\\Ӆo\g?f>|mv\ٿ1Q\r*m\\Þ\\{rg\&pb܄\Z\dr\'\b?j3r\\5q1jH\\u\D`]\\"]LV\\\"JgAqf=\\\\\\8E&$:\mR\7/\\CSI\Z\M>pv \\n ]6 Yr\Z\)&-w!\\2Kȋ#\nj\> \FQ\ \\\;rJ\\&\@ZzGe\nE\1K6Q(e\R6FhmO٪ \(eٗcU\@\:cA21o9ıޱ,\'\\bntA\C 1,,\\6\c(\a\T:A\n8 /1+\l7\Z\R\`+\&\,\\\Y A z\ 1\W>N]uX\16L\,10Q\%2eD`\r\̃}c3\Q-,cp:$V?*t`wL\\n1ah)h\eח\\Y\K\\>\OR\0j։P\t\4TO@S\,I0a5ӆjx\!-êM\W\\\]+WhN7 W\\DxΧI \8 \nz$֍߈ط7\\'\=;fVD[nݚp\\ې\"Z\zD\\'v[y\,\Ωja@In\ZУ\t\\\\y\W8Ox Z\K\q\%Ra0{ۻ\\\\E 9sėxn\\\n \̅\\<\\\'bM\\\@/P\m3QGkf3ÇO-\(L\k5V0\,OHk\.A7\9Am\X\nк,W.NEH\R o\g#7\rvҶ Wn\\\\>K\ G,N\"\\nIOS\n6\\\\hpNN\\Jl׽L&֦~s\\Yo)C\\\\a?Y( ~l銣A\Z\9lnҙF>35nDĄل\0r@ABδ(XḘm\@b:\:b\\\j`\m/pСC%c~c!\лmľ\\7nL:dl<\1ƒt\=W\07#(\`3mѨ\\.󵷍\ߗ鮷{\\ϓ\\\\"\@\\3\D2\\Ed\\"K\"1L ;\H\1q&\r A6\:,)%qn3i\b\Ţ\=ıh`\0i{l|\w\ \n˛]ļa\ZϺS>j ݄2\b\ b\r:&\n$O.w\D\~2 b\,\@ \ \p\Z}\xm\dW7YF\\W4X҂\\}Ǽ\\D\uHMy\s\\,LNe\Qc\\ne,\\t A,<Qt]U\rK\^^&\(\K\\r\{B\Bѱ\xb\\\RR\"\u]|\q\;F\"\\G\p+㉘\Oa9yAgeG\%Jh?2\\\Aˮ\@܊x\Ǧ! RLq2$-NH&$f_E\.x1c\!f5\؂:Y\\n]ܡl2\\.O8\\0iTHX\\Fs}u\d\y.ߖD6\Z!\n!1ѓ\rc\\ ꀋ \ \:؎bI9Olt`A:\8Fx\W\e0\`s/\r\E}b}L9]\)>\\qb:\$n{\y?cx\\O4$f\\\Jh!p9\ \Zh4i@c9\`\&㡪\Z͒\\؏\# \Y\Z\yt!dHΎ7\0Q\\\;S\\jɁċ\,\ˢ\F$Wr*\gl׽\rQl˾\\\w]\vK\&hdSr\Z8^tdBJ\Cb\R1D\\>\>&\'\ʐ]\vKAvC\%F\\:\U\0\\=Bb,\:Ҋ\b`\u\D kj(!+9{\}7Q F%efBwa@^ܭ\\\gX\`Ӯʀw,#0\,~,JmF@Թ*sd\Y{zgQIV@K\Ue\udZq\TS\01\U\ڪa\, 7%Z\nVAbFPV}\mČ\eΚM\\'%\rIbR\\\gk\_A|\\xX\)qĻֽ\\dM&\6\}\ј\rn tG1\PYlw=8\PYM\akkk\\a\\\\\T&\<ڬVf\T])\\!tz>\\TF\\:A\N[\bƆ\fa\\EE/22.\\\Z\\:\\.\x1\\%F\a}\\Z\\a\\\m/\V\Z\z\X^>,\sŠ1\:\\\'5C>o=+M@AW\`?z\ n\8\'%@^\n\8~\'NLŢءbq/~_\a\\&jr`\\'00\\954àrZYs\'Q\S=\\|-u\u\Qc;\4 \RW6}=ĺ7\0 \MY\\4rH%j\vH Ş#\\",\f]\7\Qɬ.F\Qױ\ \!4\2qS&\cAn`_*\w >׎E\Z\\NV:\TI\\5Z\ב\r6 q\d߮\\,H\\O<1< ݉\ղ\l\v.8 1ʞʴYR\~\n\\\\0\n{\x*M0-dIxkSG!\\\$\gŢw\&°Q&\\nN\\\\\]n)\'\\\TI4\rZ)pX;(\s-\С:\R\\L:eN9A\0\喂 \\\ٮ\3ѵ\r\uf\\:1j$JL\Rםyt`\/?Dh\\ѣ;H\Z+BE\% `ɼvʫWN$E#\Qc2;uA\t\<\cl9.\QdY` \vKJ!\\6O0\pOD\:@ yNت y\n \7l3Q`1-P7UH\0—\\Z\%s\Ć\n@\0\\fX4(Վ\՟$\r\ \lXbn\no\΁@) \MnB~2m$z\~!@@\\Xgr q\(Y\\&4/\ \\\,M0Z,\ n;\!$k hɩЭ\f\F_r\=\e_W%\"b[\n\ɩlpMA Ȼk\'X\d\\Y\\\@h\ʀ,s\}p\a\PVp\.@b]i\C>\%Og\<7\pS \_t .4!H#I&8T\=G\jG\l\\@*DZt:1+\,F\'\h\ \e:-\ap+Õ\Z3/ޝGv\&$f\s\]\0o^b\,ŐðYXn\>{\Q\\\"LH\PJ\\vdtr}`|!\'l \@\\ra\e±7FPr\^nx q]%պ r\\\Xw=ˉㆠw\]\Kb\Fc9\.SR1=\\\n$f\\nr\0F$n=:\ CG\3)\ܹs9`\KUrj#سo?͇\\\BZlw<4pF \ \cǎMm6 Y\c\Dr\\n\\2o\\0x\n\\\J8\\\:,ŬF)H\`1D;Eu\rT]vI,!tKA+m\&Z\n\:rQ)8ĘfGY+7\\\xu-s&\Z\% Cfe+>8(WogKA,0\0\!]q<Yu\ $f\,B\\ X\\ԩS‘@)*\⋻\Rg7P\YS\gƆAD#\҂\]鲭᙮S\@asļ\\"t\\dp\&&\VuՈ\)\ [\Hd\⹚Đ\1\l\= \\\\vVh=\<(\rۂ{F9 O= 1\w|`#Ki@\\\]o3QP,%\\xI8؍UFO1\]\5\nD\t0b\\\\ ?\rD\F\Sk\\.sp\0(!tq\F9%4p\\ƅ`ŀZDi)\H \T\FX^bBb\(\av\#\=3\t`\ÍBrBBbe\K:,\\\\\\1S\9U\|/1b\%f2 Z\uJ]KPS\\Q\e=\<\0! l}KA\ \\\/Sc,\dɄnu\\\8i\\6\\Jr7\\r\;#(O\Eۤju .<W\'\\Zfqb{\, Ϭv9CT1\gϞ^s_=\\\\%ذ3\逈w,B1\J\,\:\{Y+\\S<}\\Õ\\T][[\\̓S\'\g\\\HcZ\n/;9U\\cB\0A\=@-׵X@M4 lb\1:> 7W\\Y\Ֆ \El\-\݂\;tJ:ف@\\<\0݂U\=y\/[\n>\\ u\\'w\Z\f~8.\\\i\#\=\ӓE\\\\($f\)8ؗfW\7\p\ɓb,\M\G\ۣz \n|p\Y\FH4$\vy\\R\\\n)lY\fBs,Dc&\E\\]׊ԭs&@\\\)蔔\04M\!7\j1Z\nꠉE\h\"j]\)\B\Ab\mV\tKA,4a\7\g˲w\\\\[\0%G}VlC \=`T9sf 5b%O*\aBm\\,;\M03q`~9\3\LS\95 ,2˞خ\,\\0x\\mAfA$>l|&\"\\n\\0Aݟ8HI\\L@j\#\\)\\\w=\J~aSa\"qͬ\\ ad.ƪ(z%\A 4s\([\\6EW\ lXMSUNϮer\ƛu\'\\r8@\0-gAہ\ :\\'WLn\^z1h\ A\c\*\0c V\;}\X@ZUU\\Wy(pW\\\\?EW\Ӂް[\\f N{k\ \O\\\\{\MJ\\\O8\n:h}},\6\a \r-Ԩ\y\ڃ\윔\0Л{\;f\\\\wy&\'iaoFi\Œ\\0 5SB\G\0C\\8VWW\:V\y8%\r?-\BWpC,T\=\%L!$\.rWs\yV:hy \b\E\X\0]\ K\\1`rQ!\r[W`\'NL>\#\\W)/\A\'P$1(\0\z\r2ŇS\Db$N\ZQe1\\KN͆\\d\)~TN\괝 \n\\)UhRdws\R \6^\"[u\MMb\\y&_@L\\\\T·8(\\]dqvh/Pv \\\_\\n\Z\5!; \0Bq\\2=\'h\\YIC1uYX̄\Le/w\ĐS1}\X*jL\C\A5|g\\ \(sGd$h\ߨ\\`;A\A\0X5 [^Fx|:‰a\b} X羏&UbilJ\v@\"I{rf*\\r\"\\\\\%\\0Cr\,B\\E/(.$3].\\WObF?Ag9m8(\ .L懑9\t\I)X6]\&X\r:,:\\D\U<6\1D\{\wK\\n0-K\(5R\!uӯᔩh\m)\\0\\\P\L\׏AqN\"\'\X\\W%\6!,\\\XT\W\\\-]R&p-\"f\\Ou\\ԃS\0\w\K_3xF\X}rn[\\X\\3\{DJ \Ȗ\w\\\X,rP\\ x(\\6~5at`E?z/J?(}*sb%\H\\9 ;*z,l2$ \\ n`Mw@\;\\#\\XmRrH^#ҳ9\g\:,B$a\v\\@\u׽.äS\\0\lwNE~_\\\0&ǥ\#\c\f)s]\\\%Ƣ\\6\$Y(\\\r6Fc\\׭\0cpޗ\GLj\'3\.YoN|)\DtV 0_\Xdže딃.B4\o\s\\M\X\rT#\2\\1g1\\\\\0k[?\\\3\ -h\ ,W\\TI\2b\\|\rb\߿C.j(\\6w)=>g~̙\\\&!A\hteee\\b\\* F2Lx\žr\Q G;uJqCB\M!6\\b0-b&V^cE\\0x\21D\"\n3I= ?ޗk\\\\m\\" \T]\q\\(\\B\ } !N>lc<\I>Csy\\\\\1\\O\Z2|\\w7k2E\.]u\\ߕ_Ѵ}\̙%\\r\;q&^E \[:\Jx\\˰\?\\Ź>\\-u\-\u_\&jl2Y9\`\\[\G\0 >_rSq\\B\Zje cNRyz\ۢ\\\\'\~z{dq\#\\!JW\\\\ B\w^HZ\r\\\h\lG\\Z\qW]v\\'ʺ=\G\e\\0\\d\MZ`r\0e\KW\1.w\W\\+\ߐB` 7\\]\sP\\g\C^ y\\ۯ :XY.\-:`_\\8&\|D\<\\\\ȸa.a/.\\ϟ\sY\a?\\S\膔\w\/\\\\0\\\\7o\\7-_\0<\{\ic\\0_\\`\"Jc|M\\"妌{\\\n\_p\q}Q$DŽ\\\NBPAO~\_&<\\|\'?\_\BL\F\\qMW\1O\\\&qc\3K \ùg\\\$g}\+o旄;\r \Q,\G(_\"A\]\'ʥK~ߵU\"\\IBp\3\/[6BZ\\C ɸ2\\ Dd\O!N\_|\\\7n\x\\9cL\\\ݻ\sѸ$\s\\9t 7\\y\XdK!N헊X\YUf\@\\+X5\|0+D%Rr \.߻\\o\K!N\\\+\\˗\n\0z!\\tm\pDʂ\|A^cG~\\\ ]\0\\'\@\De_\\\d\\\\?s\\\i\\ų\".\R\-;\\OZog ’AK\\\r@!@%±\N1!1b\K\\I9Pt\y(4}a\'N,ǿ?F8)D\[\Z\>ǜc\\ٳv\\\_]\ǎ\\H.\-c\\\\\~\n\\1\\)m,(\8d\$\16,_\6g\|f\'\\^C4\Kx\\9~epp]z\V\\\0\0\0:\&\]lxO| f\D\\\#\ \\\\\y\TbA\ 9sh\\\\?z\\\r0D^vmSʌ\!y\\Pi @\߿_x A|xp\ 鐛T\ztc9BB-Rg*4j@,(uͽѧ \S\VOqS\|}b\\\Z\\$!;6Y)B\kL$.Uʶp&%֜+|\E\\\\z\\Wo)isU~\n\\{\\Y\0L\;!Q{\!\(qpY\~r\\-\\3\rP}ȚQm\e\M[2mT\I\ͯ\q\\cԠ\#\z\w~\_\'\Oդ?\q\ε\KKw=zx\\ׯy\\\;wnV\\08\0\F\0a\0\RQ\:ʤ\5u\7 \N3:W \Xbfk\\\\9\'\'\h2\\N`<~t\࣏R]ԖPמ\`~\n\-G;w\\wk\\\KK\]~XgA]\\/m#ppvh0MpZ\b6@\\\0a Ӳy\c&?q>\\p\\L)~݀\0>\Z<\hp\J\ \ u\\hwp\p\ \\\Y<kߝ\7Q\P]~e\%q^QRg\\ҭn~|\޽;P׮]vF%uվۏ9!xt)0N@ lvEo\.%P.&\ \\t\5%h\%\n\Xm\0P\R\f`YoCT\n\)j\Y\[\'O|\\R(ݸ\\wo)Ե \n4st\\fd3r\B*\0\\ڷo\\ȑ#L\\X9Inӄ.@RHu \\\\iK\JU\uqU]e\\` \\\\ン/\.\Ν[7o^9\\\?\?\?T)\ti\˗\\>y\d  .B\Z\ZPBj7z1c\Db,}u\u\\OyX\Hk\ukvTװi\ф\\~VM\^zi+L$E-e\\Ni\4xLP 8Dm|?:\\\7\\\Z\X yh=\Xˍ 0 \%PF̥\0dV$\S\a\\\\CB\\O\[b\ۜ:\S\u\?zѬ\gA 4R\\\\}\rG9U0j\v\1e\ԒUd\4\m899B\\r\0\?d1\0Bz\\\uJyZ\\y i\\#)t\\0 \S\'45 \\ \[.I =\wV:+\h+Z\j\>C\I\\N\"Db`\ \\g\\!RBE\\M\ \glN\S\As-\\\\6\\C\\\\"\6X#y\p\E\k\\uR=\M\4H(W@HeT1q\o$!\r\V\\n\ s\\:rx\g\ \\"%\"p\2K\\V\S);\D\\\\"\z\\1\,IM\"[8M#\@\\`D1\\"\\vB2\rJ-Zy\ʓJ\\3m\\xV\"բT\5zʡ\\\\Y;\\\D\]rW\\\n\ϥ\9\\iE`\sYN\\\\HBy<\Y\\\\ W\0\M## \U\n\$\Tn\:!w\{`)2U$1s\1ײK\m߳:\\Y\؀W 5\G\Z0lz,\01\\\e\*+!\\\\իW\L.$@/\\\\\ \ й2\\S\V4ٞg\"\U\Z\\\\Ybg-T94\\0 d\\\3}}Q\U)%zU֕Tx|\)a\"\^\\ö--\-\@\@0J]\ y\\:\\\@2D\\@~ Ce\F,\\\\r\\-hĐţ)im%\?/XTZV_\C>թ\%OxJc v\z\٦K\1F1ţ\W.=\\\l\GȻ\\hhLhd\hI\0 \*\ے5ˠ0&7,LrtF(\ y\r6-\ゔ\z5\\M\ bSLrV`\'>d&!\S\cţqa\M0LN/\\\a\P,>)2a$\$z\iS3\\lc }\r \%SeYTZr %\]1\WXCGz,=\X xűH!EF\9,RTP\(0wS*!7\\ZmEiqS@.\0tsj\\\l$=䶍\r7`N@u\"=>y\\vW\Th\\=.r%ZW+\,F\T\ZӱR#;9\kU\Z[Űy\[W+\r\\*\ר\t]9\\\w>6\\!-M\\D\vFOȋ\^*\0@ZU ]ƥz\\n\\'\n\|\S]\0L\/\\̔6zZ,\\$mSLƈx[Z \0 L 0\Bs>\"A\o9\".<\]&\6\ݺX \Z,2<\!\\c\]\0J\n\֫\Ȝr\a\!_\'9\IU \\;\@LlRQjTN\\n%2\\R[}8\Z$\6?\}WΜ93G qf.\0Tf\֭$IvS\r3@^p!\bihBnBZ+^r~,,s=L\\ZU:X\\\\\sT\H\\\\\M޻0#\\̑ON$6 Mv\\Z\M@1\ea0\\\p\0\n^T;T %\P͸kr}Nt\МHT\nT\\(9&{\Z\`\bi^G\C\CbJ~7\\0\\۪UC1lW\\ZI\\\\!7ߛ \\#9\0 \]d۞&K;\2r7ȡ\\=!\I\\H 7J0+\+\d\\~\nzʙS.[0dǀ\\\r\U`\'䑄\G\"m#Ѣ\yt9|ڶ\œQ\)M6\\\IIs#\\'\Y\#P\`XpR`1YSCOήr`F:>Pȶ\\\'\$[+\*\ff\ΰ^}=V\K8Bs\r\c\h| s ˃K\,UVR\\"抇\[%tB\cQhkx\e\8 3\Et\"f\\nuf1$\ɨf\\t]k\ZkRR\0\ \\K\0@S\c.@C\\JiB\\mGWnUh>\\Ѳ\NL\Pu\n @\$\\]\sĶ( mA#+Pla\"9H3*Z[2&61\Y\(ҍ\@Bn̨n(HL]*Y\nqVG\o߾\1E4\EP\ZKi\K\u\'\\ZΑ\C\Mf\\`E\$\)hR%\\|\.\Ġ &s0ʔ\\\\Z\\YdFM2m\\=ȃ \ڵkYz\QL=\\\\zQ&Lz\\\(A\\A\0\\T\B_L\\\\צAu\\\\a\\1\]/\fVگV5\T|\\={TrHgXrjzu\@ \Z&v\\ \k&L\\.\i\ \0gV\\\[\D\3\ϑ*\\unSf\*\/kݪD\9\UZL5\8X\B]EH\ˆ9\[r(N@爕\n&.\\\\>\"\v2\C\0l c=妹Ii\\\\\N>5Jִ -\֫&p\)g,=\@\\\\Iiɴ\\"ѤW}jl<7\?\0^\#9Z 7qm\Z5 yLD\\\\\qm{P\s6\k\r\\+\JUz\'`MB3\6P\\ \Kyo2NA\\ZV\\\\ʭ\x2 )؊Ge]\"&\%X \\o(qG\^n\\\\\\3.G˾65\Z\\nS\\HV_g04\\8it\C\\ȵ`JЇqzaaHK\7\#\yb8^}]z\M>.\3\C\n\$d\x/\\0%\\"EGB)n\b~lOu\4xT\\\\g]\5ehʠ1\r0\B\l\Z\+\v\r$\<1RV9\\^\PH0eF\޽{[\QP\\:`\խ\n=1ۦV\\\L>,í\D6% \n۠eep @J§-8m,\4\\ yČvJ &=1n1E]M\\\@J\Hp2EץV\' !\]\1\u\2\E (\?i9^\:\\\J\i\reH \/}!y\!\jUJdrC\P\\=`3pܽ{wR·^k\3\\\]j^»;;\64\\\\`\hy\ņ\\<״p1y\syԭ\:!7? \DX5xtFI=~M\3]z\m[\'\\N@5sW^83\dYc\\:(b73 \\\0P\0\\\\\\\r_Gͨ\\\TT+\'Ocu%NwƦ媍\\T+R!r\"\\~yl\\lgDvqO\ \\\\Z\\0m}zBƻREN@\0\J=`\\#^oc,_12\0**%x\\\\0 !\]Tnel\0F\RFR6\\n PRÀea\\רSp\\#{9G*\=\\\sq\\\\`\\JzNޯ\\0=9\hJi?P#u ^2\=rv_} V_Ta\x\nOy \m.9RzG\!\B\3.MD)\L9HM~\'=\\0 \n8\ZJ\\\y$G!?Xr\ţ1X<:\\\ժ\V\t\b\q1\|Bu자̵rM@}%X\0v%\m\~Yxɜr\0_]&\)i^\\n}HGϺT\' a6u%M0M1X6\'`W M2\0\ P\T?\b\\\n&s\Y\dƵ0\(Rz9\CZ$1\{)R_ؤ\n-ve\X\9\F!\\\n+ǎk:L\bmtX\h\\\0f`)A;\\DtE\z9~\ȓN6\T\'`+ ̸(V̙\Z\Jt\\Z\puv\nLRQTx4̓lF\0N@!8\̘\\\MN.qSg$Bn\"1\'-\F\a`#PO\j\L\\0\ܰ\'\b\\:\V\0s\!\\\:R\8s\†Tb\ŀR@&\TrCtۤEPQ7q\d/d^AN\ 6\\V.B\ϰy\c,R\\\Yz\\\HrC6y\'{J0E6\\5\0ժ\n[Ѫ\ V\@ؿ\\\H T\\\6E&\\]ʁx\*€8zlXa\tԴ6oI\0T;vCh\f\0ƮQW O\\t}9 \d\h\I\%N\ ״\>\ꖉ˫+a\1Ur8|gP;\^\X\'f-\\\\a6\]8b 0\\#\~2o]\$.\ ʹ\0 $ BJSlt0\5\\(r\H\\V<\"\9\nBǚ\\0K>|\\\Ke?\j&\tkH}ڢVIɝD\M^<\Z\\glk\ҜgcT\\Ç\\\\j苨vU]YrS\c\r\\\b;nfb\\pv\Z)EaS\n\0eU6Bn\Z&|>Fo% 6M//um\\{\"v@>\r*L3\#zc%({y8\\ (BO%i\s\{\VP\0\]\9\,\Y)qI\0`\z\\A\c%,\\x\z=P`tOm}U>\\@k\\\\\"=\\8\S\7\\n\\}.#J\ ̩I/\2䜹ʮӪ_fƁ @!X\i\\ܚ\5A\n`\;e<\V\' Ov֩ \:\iU&\\zZs\0@\ u#FU7uN@.G\\\\\)H\CO\+SZRNT\ @.\\8QH׶AΆ\\\r\n@\\n\0:\0\\\\)ROv\nkM\sZ)\0\7NUKP\\`OP\\ħ!\[=!/@az/\\\3읾>+\\\\z\j H\\\I^\TuERZ\nY\\rrY<\U/k\4nܸQJZD\,\0\r}@с\\ \\0W>l+`J\A.YLrD󺪯\Yo\+.7\9aR(U\TX YX OVt %\]Ywr`N@X$,U\'<7%?\*\"-%d~lQ\\tV\\\\0 ,^l аE\\#r\"9br\ux%&&\$\\l2YZXp\8P\Qw\\\\$\8ȘDKq\\HZ#9l^WuuE\ #p\\BҬ{IH\!-^y$yM̩g&@^.\τ?r۴@Llb4\0.z`st%d]\B+8 yjex\Rdahos,ypߺ50|\ӕ\Z\M[\]\\e\7ΔO>d\\@N9d\0\\Gݜ<`r]eҋG\da^J?(HE\\s(\;#Đ\.u\\k6H4%|\r~\0\\\\ 2Ϣ\GԦ\"I|\}&`\IBt\\*]\"r\0 PGY\?\\P\\\\\0\\.\V\6\t:\AJ\\"\\ĝ.P0\\\0`\\\0P@\\(_Do$G\\`=\zlJ?0\\_#H\0 Jp܂@\'\!D|\-L( \ȳ`@\dAq[$\>\3\H#;ʚt$\1N 8rMP `\" \0\\Xja[\$\=KkUS~\!\&P\\0\%\im<\*3\n V\\\\d\GbYQR\̃Aw\m\\\6!\&\ Bl*HϸGM(P)~Z6Oy(0|ܮI\x*d\\\g%g\\\^gg\e\sѩ.\36\/j\S\p@\?PN>]~-\ S%\=xh M\3\bǶ6wu5\Cr\C\<۬_u\nfUt\2J\x+U h\\\ =\\0P\)\3D?Ժ&K\\9\\^V#\zuff\Zp\\\ނ\\nekZ\ۏ#ׄ\ K%=`\rٖѣd\\\0K\LF\\\\\CŦvH_7\\D\"\y\n\bˬ[\\m*\ !\ \ B\\\r\I2aR qEU\\\\\s+0\\ q\\\!I_)NA\Lts\T\\sv\s\Y\НAd Ѷv\ŅNMX@\ \ \\q\t!\)4Q\P\ 2\$\K\\U\TXXU \4R]+r%\\"T&?2 `e~\v]V\O\\8q76\\\Zf\\\sTr\`v<\\*\S`}Ɏ\0\n#s\C8G7\n,\\\X\\\\X)r]\\(i\3Ҧ\\n$2bϨ\;9\Y6\(\#\\\G~\\ \&5˫VQ4\\\YUZ\|a\\"q03UC7Gr+ s,$4a\}n%\b\ϰ\\\\\b\r(U\0HBKV.]\n Yy\1sF:h@(\X\'\\qJ[\B\s\\$6\\Ŧ,ϰG9\\U+WOv\\=:\iNș`xߥVHQ ˑ\Z;\\\ P\<\ķ\ (\d\'O2cU\:&^)9fmWKx*F\\YFSǫU\RH:4t\3̝~:\h\0ppp\02\ &5y\M\ʎA13`` ()QNj;\"\"\QU/\\#h\\\R$LM6?\,G\nQ\\nNơ&aʺQ!\#11D•g\\\\n\\\@5P\'\矟&@D\\\rp,*1*i1\\EΓ2\)\"˲3Xؾxt\\A\†?3\n@ͧM\TYXE\\\ `z\*9\\e]\\\\:P׺\\y\飏>*-^\n$^}\գ\\\\\5\0ü\X/w>KMJD\k\\̲\ެDZ(YS`\…r\?{\\Ԗ`$ǰo\0#B\Z8x\|`Bnn \\A\\\Ѿƙ9\}?\\+C@0kv\ʕM-\?c\}40HS\Ec\\Xސ\)gx{\60+է\v0\nRr扄9\\pega\0O\Z\Ǔ\]|KWL\\\\ \\T0\^n`ߓu\?sY85qܰ2U6V\nyMF\Κ\(͵Õ]x\"\r /\ZeM\\\\|\\ee?zU+NM\\\w\"\\0T <\\w\Z_)\ZDltrJ\*a\pPd_⓳A.5U\q`\e=ӭ\i\\n\0:Hq9r<\Y+\\ \O>K}ȕ\؁L/\\'\rL@0\0\ٳ{h\`,\\pt\\\uR U{\ԩ\ Hɒ\\0L\}\r\-\bm\\Ei`\r()N@)E\\N\"\\0Ef^z\\VYoُqfW^T5\+S\0\\\N}\\i\\;|\o\\Q& QOҘc`jُD$-{\ \f\}LA\nb\\\l $, Y<\\sOJS\\O9$ @Ep9\\Z>kճ>\+\rc]\qFi`mKU-N@N 3P6IY\}7\\*(\\0p *@\0zZ1u\F\0\\\E%ג \ .\\{0=P\8)U\ A\?Л\\\zU<`U)D\ZN\JP-t8,&\Ъݩi8\q[t\0z\cº\5\Lhe\-\/48-\\-B7yJ\uyf\X,.Ҷj!pؐt\Wj\Fy\\(F\S\+\{h\LzT\\\9㴸\dja#p,\rGzɡ٤J_\\9Y\P{tn6e-\0\\'z\\\,\b>\\[C/\N/x\2?a<\0sH5Xd\Ģұq\\ Y_\\x\F XCmBR 9\87\g\M\0 .S\d12\&V\O;*(\ \\:Ti\\\ݿO͚4\Lc\V\T<\cF\'\02\Xh3Ls n Y\\\#\r|Z L\ق!\rf\\\\\l\\ZLl- ;A\R\"}`^w z\\\0d=U6t\2y)vGJ@\VU6\\"\*| YLz\%\v\f$\S^:(eD\\Ԫ\p]64\[V@8]\\\\ǁ!GC\%\ \\)c\".`X7-Sn%5q4  #R2\-8q8J\u\0\0\zWmP?YYgl.-Xf1\W\'\@O\sѨ4H\0S0(d\"\0l\r@\\\VKU\:\b Ħ$\\p \(S\\)\߫ΐu$M\"l\s% ѶA &\0\0^Y=\\\\a\Pd>H\–씥y\XMz+w?\\\cNpX\@ fv-W#&\\\dը[#\.bC|\\IlA`\9r\y:bY\`NǺzw%z\?\\\\{3HU&\H%G\\rt\/\\\xcZȉg,8[cY\`L(:}ty\0\F\)miS#\\Zˬ\\\\\\ɗ@U\\\:muZj3z‘p\S\tdafva*D#\\"sI\"4gB-\X&\V-!%\} 9ͻuG\V\T*\\\I4ا\\\\\uUZ~z\dFJ X$|_&O;\\6\\0L\\\~\z\?x>\0\n\n\\\A\ž\\Q.E4X\\\ $*_\W0!\7Ls_ h\] \\Ӕq9N\&T\\2TE\9\0f!\^r zƱ\Le-\>p` \"4\j @H8q\+\"\tGW\\\\6B-Jt8^oH\]cJ\\^Чa\e\ZN\L\\Mj^SMXL\KMjq\w3 @9\\\rì\J*`0hҡN\]`]}D CD\\\\!\=r\Ð\\xA \\n.\\\\\e-\m\n\f\\N@4.1h\L>0\\tYz\q:u<\0\~\$9b9G1\I\Z\㙀)o\gN@JK:\\0z\\\)G\\P UX ǿ^\ i0lLC\0aVŖɻ!\#vo9P-H\H˄\\A\Dc\w3R\A]u\\\\0njԽ\t\>\s:e9fLf#I\l5\&61rN\\`\K0H\x4\`\uL&3o\s5ju\\2+d\X+~̗\Z\\C\r\IuRj4U\6A\Z\\\bU2\!/Ѹ,<§\Ȝq\7\fAYɚ~w}\Fwp@h@\qH`n|;\\QyM\W \Խ\@4\A \\\!\\EeqJ2+z1¬cT6\8\X\\̮LZ\\ZX0gLţa##4K\ZH \ԭJ2\8G\ZE\\\2Zzƙ\\իW\'$\nRei}X\@\:m\5p皐t\I X\v ZKgţ!\N\g\1:\\3ҟ sː\'NL<\zQi\FKU&*\ H[\\Z(\\\H>\ )H\8\΢g*. 餬30ψ¡s\…رckr\uOy\\1\JgZS\ZDIX\\ì@\^\P;%0v0{\\\0TZ:i\0֮ )\rB\\ߵ܂`\0\f8HMţCMhF\nb]\)|r)U& ɂ\"\~)\\rq\"\r\d,d7YR(B\\\\\m\\3+i\n¤\4/&/\!K\3IY\0\m3*rȱ#A\`=\5*%TA\Fi \B\87@%P\s<ȕ3P\r\\\\dǼ2N\\(3fS\\>Rĺ\rJ\Grs@H\2816%Sk\ \l\"\n+̵슅\\'URʂڿ\pp)4D\ZX.\rb\sԬd\'0,\씊\\\ 6\\[cÅ*,\Eq4 䕅`_;&\k!7\pX|8\؊\IQ\ۺ\S\C\?r{X g|P̪4DZ\\>\&)]T\\nLe|*Bƙm. )\ <\)gH=\ \\\qa4 \mwf\\t\0=[HJͤ*5~!8\@\\\O\\V)\կԡκ-$y&@\\TU%lb\\`T\\ (|ϔ\4xۦBNBԇܧF\\+SdaGhLō(\9\I\\\BJЩ Rx1:\\\\0\\3I\5农Xz,>\\\\\n\LN\FcB\(z\\\'s˔*[w\~n*s.9\\TZ\ \ep±r[\Zg\t\a$&\"SeR\n0\\\bR\8\:2\͹\ |m[\!G\m\T9\0;Cl!Xk@7\咰3\@\\\Bq\!P\Zhx9GQ|\\rs[r\\m\\R!\0\\\D0\ U\Sؠ3\@PK\Z@\\\\\ \;\'\;\q\KdRJm6i\@$/ƥ\\$5IF\"\Ϥ4\0p\0E`%DB\\YI̽N\\r\{}l22h\\\m\\0\0\\\\\\e\\\A\0\\5bL\Y2}\\aq\'V\4GҋF \d\:1? I\ A\gO\Z\\Ahہ\e?N\CN)\ &\8\0NH\4UP\\\>_y:4Yp\PSmM\1 df\\̔>\L@\\\Y \vz>a \t\\`zy\\\r.\QWl\\Qă`\\'Ʌ[b\K\\\ux㺉e\C\!\*h\0\J\G]\Μr$5!\\\k<妹Mr\0\rI͚\"\r*\\ت`km1TEʸXƙ*\$>*\ß \\<ѧG_\9\\&\)I XxT&\L-l\Z\\\ \\U\_\i;wnҦ\0@J˖\Br\iC\@ߗ\\׳?GWbSr@˪\"!ţS\fl]xl\np@ ]\7\ F\T\YL 0\K\ ֙hcUk\0έ2Q:Ui^\mc&9 \:\\J}NO9 \M\\\4Ni`\\&M#&\"yTnh\E\\NV L!\\9p\S5PpذNn.Oya5@H\IniU ,`z\7\5q\3H\bs\\\>,\F@g\`\r\\\W\\\\"\r4\\: X띀R$\ \#\ێa4QBr=|\B͸hr@#\\šz\է#|\sRM1NW\ZD\uarJQ\'\) \2wuM\\\\\"\\CN\8~\p HX&e\\7_G\ܴzKq 8!DJD\&:3Gc㳋,{b\>l\ή%7Q\rVz\\(=\,Ś\9b\\ \(s\j\!\Y(d\0\LS\n͊ērHkd\ŕ\\0\0L+\r꬟\(Sr\H\8\\\\\mb`=\(\\\:\?\\s\73;\@\FAޔ>\\\\J)g`iIqy\\\\uHIv\Ss-@\0 \rP]o\ZA\Z\|K\n\媠.\\ZO`k4ZRP\2\nbN\0@a\ZV^\n\0aMdV)jWrĘl\\p \\n̩ބ\\0,w\\\n~\\|\\+ts0ɢ0\DߎG),\K\ڄŤ\\n3\\\,s\\=\0?=\( ?tŜ$x\\\o$\Fl\ \eiA OK~1\\0\nD$}uMq \D{\… \\ZF\J9\lS@ [5u\1E>\8\`%iY\e\\&>5Ά\(^w@*\K`NHm攣-JHjIz\k۫^ɡ s+t0\\\\\o5JW|V#\\}H_\0 .x\#UE\;9wJL©o6IO٠)h#\b\Ӏ\O9*\?\\\ L\ o Sr@%;6\dkF݆Z\l0n\gB&\i\\\H\=\\xi&z`\3\\t6&`& eHo\VE t\\\P\Y \\ZVl\`2A\\\?ӈ䈵@\NP\0[l p0\Q\\|c\#tc ,L\m\oLlbU\Fk\\8\$On0T\"L 0\iu7 Gpb2b\Չ(F\I&3 \x\q0\SY+-\R\ZФ9\F1NG\Z\G\g 0\F\}Rai\ ߇Oܧ!r\i\\\"\\0|mA٢\0\g\ ܁O<\\ a\M5NW\ZVd\X\qU\\0\a0\0 \NpX\U$.\B2Hk\!@\I( ^\'\0\,)Whz\%+V\1\\{\؊覹 2!IpT\\,?y\&AJ{ڒ\48\S*67HF\\nsJo~ @3\r\e#tkP\nINMGKV\-ZM\0By\\ t)͏G^:T\b\\n1\r~\?O`\}5=:4Q~\X\K)MRծ\\q\?\1H~%u..\̙3\0\ٻ\\҃\\\Z\2D\Z$)!N|`~SnC\jS\\Tr T\n)\&\\\ &\P\ <(|/ \0U \ae}*^\ѣͲڣP+G\C\U\\9E\|\{{T4u=z\\\Sx\\\ \cǮw\.\hG\Z\rik\\CD\Z\&EG8%զ\\"U\"nv^?_ӟ\1QL\\\\*(A\ Jl<\0n\\*i2½^|y\T}\P\\O\k$|.\\\\\o\\o>x\\\'N9p\\\\\n0\_VAX\0o1(,9lZ\RmRWR\v\\[{{\r\/P\:u\SN]߯\\kOW\\\\ѓ\"4\`\g\#$Ud\#u\\xi2\L\\[6\D#\0K.\O~rH\V\\\ǟS9pYq[\<ڶtn\S3ByUo\'Ћ\b>Uz\\\ٳz:\Fέl\\\34p0D3I:\k$\R\\\VXU\e T2oZe\`V\\\H;~^c(\\\ܷ\ݻ\\ݽ\_`[w懤|1S9V\ܹ\\\/~\A@OWLjRLI͔\j\f\%qJ\ȋ\I 5%G\o2KM\9J\n{\\w_\\\\C%Y\U࿠\\\nݺ\\]\_y\\{\?\%\de<,\\[\&N@>\\\uԪ\\C}z\0\ŋ , \gL\\w\T~;0r\+\\]`\W_*\u ߹^C\\\(Bޫ\6\~^\n߉֜\gܒ\&#\6H\\'\nLxm\F0R\'~\~\_Eb\08\ǫ\\\/\?x\\\\\\҃-\/*1Rb\9\+_\\?яe\ \|@\8s\"XN\/\GO\\O^S\'\\x\\V\\WdPK\&[c\su_/(\tR{\\\\ װ`\\5+2:\\Ic\_TO+U?yq}N]6\D\\D\p>\\H̊\/<\?~I\\\[uX\_z8W./\^\\\(}-\]=N\\O>7v\\uJIo߾_-.6 :j\l¡\\\wuo?\$Ċ\А4C5*U\\|.`.=\\g:aW(B \Q]R\\inF\"L]\\\O\\\)U\\ٲ\/\Ξ=\ܡZ{7?#\\" G8\CɡN\\\\7T[]2[1Ե\4\{gau\0\xoOkͽ}\ _\>\5u`lc_z\2\MJe5ׯ~\\8Wmlf &PP|\gJWs\\\\\\7\|\\Z4._|\s\G\n|E\\'$%\\+\?Ez!֔ d\"\P\'\55@\zfuI\3l\CbT\](\+v:|\ _ja\U*\saa\\ǯW\q\+=4V\ǣG3??onݺ\\'\so)5\߯\\`oh\T@\"\\{\\D\&IZ\zu\}\`y\bCaH3-*Pl3BnߪM\-GC\\_W\#aq\\+\dulQ\\ߞ?3<Z\Hq\*R~Q\0a\\Ey\\ YAT\\Jr\\jMVς\\\hfڲG j٧\e\\\PS\|\\ӧڵk\1\;v\\{\\@ ^\0\Y?\d\UTs~\ɓ\+j\v\G\Uo)\\-\\c_6\\$\\!u_\%K\<<\\Kl\nШ\aQ\v\\\JG7ďj׎\s{9rz\޽_P*\^\5X[|\\\\\c\\"ީ&?eS56\.?\\ߵk\5SksD](R\HI߿_ZZ?XV3\zmqs\\\\~#Qɲ\|ӁF\K\)s4[*t\\4\s?\TL\S1O\D\\w駺\s\9\\XlX\eלy-xl\\\Ԡ\8hLjs̉F,\@*v3ܩ\'zn\\\\\?ȍ\<\FKr\&_1\0\A\oIp\Fȋ \\\>nx)5\4 2g\0\3C HW4Nl2O\O5b\pnh\0iS\6Г\\\r0ÀׇӥeX|l\\SJі\/\r8\\0hh\Pd\\\pE\SM\r[Ur,ʸG?6\ZD6\0\r,\0F~fmv8O\d%[\\r\)40HMa\R\WV 2ꗷuc3\0?\?+\\%G\9\9 4pfM^\GtUC\n\\\h\0\0\0\0IENDB`'),(90,1,'Rack_42_with_door_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0d\0\0\0\\0\0\0M\'\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\0\d\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0+!IDATx\\]K\u\\\!3CR%Ye2li\Fx \\"k#l\>7,\\"E l\np8D?\w8\tW\yy\{{zʉ (\w\{\\{\Y%ӸR\\d\\ i\rWz\\%\\\˯\nM\\n6x\_ǞZּ<^N\\>h\-A._|noo\\\o~\\]\\\?\ɓW\ k\\\wq\\dvv6\\\\\\b~x\,A.]\,\\\ߐ\sB\;;;wAC {_k\#s\\D\2\w\\G\R\ʕ+/R,\NUv\d2\\\\\=X\Eҋ\3\1•%(+b*\'_8\ٳg\\\=ǖ<~\\\ݻw\_]\y饗2.o\\%!\nG$27޳7?,\q\{K8ML+\\\o\\gs\n\"+#\3[.~\7n\\%\\oݺ\Nt0h^\\\\~m\\\ӧ\{\\\91 0YL \v\8\\ǎߛø#sssɱc\\\s<\b\gK\K\}\\\\\EQy\"\\\#\\:Z\p\'\\AaW`\ ^ Gq\\\\\J\pܡ\\BihbZ\o\\|\ٹs\\"\\qń\0x\\ѣ3X\w#\aq8٘h\0zLnR\\\qP\EmL\Io>r\x\\wސ\\|\\ɛB巬\F)`м\ykmm-J\\\O8=\ \\\d0x\b.7W\%0\w ^\\\dL\\g#Ē\~Acw@\ژ`\v`\\҄0ew\'\\Zc\\8\\\\\\\\\\\V\\\\\\\\\̛\$D\||לּ~\\2\@ŏ[\=\|\r\"ݙY\pN\\\!*!xb\b}\\ez1\|u\K\-h\\w\\\ɓ\\ݝ\\\\G\=zxaks}Ipsi{{ \Z[c8]\Γ02DMy\!ԭhUi͊\"ALs\q\XL#\\d1Y,~حhM\\ٳ]\\z,/Xt\,<.\7x\̣G\/l?:q\\\\eڕ\eY\1\YZ\\0O\$\Cco5X|Dݵ i?MGp06ֲt<\\\\ӧo\\_,-maa>Y8>\\\zpzc5!؆p\\\\\l\p\1H킐\\۷o\\SN\r\\YIv\$*D(y\r\777i(\p1\R4\n?l\\\|x~\\\\>(<\\?>\\W}\\ \\\!#\N:\\\\\%\"R\"\68{;\v9\ \γ5\v\\ CrL\\\B\ \"A}\\N \9F\ v+ FњX.Yh\t\>\Z]\q$θ\\[.=Z\\\\bTMV+!\}?\!`7hSi\\8b\\'B\\\\i?\\HU\\!vLCZL`\Ν;s@\D(\\SŐ\\\0׌ϳl\"\GLC8!Ȣ\,--\r@=\|M\\\Jx,rl\\u\\*YZ\\2pX\\\'4c\\Α\/\!n\\0d4\0\x1\_ \,\\\+\\\\U{}!/L\v\ \0Mh [k\\i`\nA]/H\ \#ju@\\;x\\\`\i\5\a\RZ\u\BBG\\gG\8{R.P3,7\\.38j\^ ;\W,tM\eu ݯA\Ux\Zc\\eU/j/\7!\0x] Vu\Rn\\|F@;$\\p\_\0:\Z\^S7\ZGBNW\\K\"+\Ҳ䞹~>\\'O\ܓ:(1`\frjz~s\A`K={6w;\zH\ql6\V1\'-4\n\\\)\2\0\00P>\ä8|j#gŘ\\\\:9LJ+\\\\]*f=Rԕk\\ݻc0}\Ú=-r(\(d\u뎇hq\um\n\\\pa(\\\"^\R&3[;Tw \p\\qL\\U\n\\jgi\41\&94C|v\Ȅ!tܱ;\`uXNrC\\n%|{t\\#8\Zu\#䖨8V$\b[PC|\ŞE2ZcIhR\\\v\M\x \̂z]ZVx ~\\\\ (K*d\n]1\rĔ \\CջNJ\Cb\4t>\\{@\-Z\ \#G\\#vQZ/Xʐ\kE\N \\(W;,vY\E\\\|\#Ry<5\Z\\N ܱ\\J$˅쒺zL ^qS)0M\\\r\@\\e\!\\MRð v\\gNSAP\%\\\mN(-# \\\et\ U\us(t\s7\VG\aGA=µbM-oӲ\'= A\ b$ڏ\\\^-`\\\:+f\\.vNyV몟CZ\s{e\\\냤\Ǐ\;O\\K\\\'pTPtno]+(\@=dDeW\\(v!cv-v_\g\\! \f1 ע@-;%2o/\\ǷD\u6\\&\\koW\ i3\0O\.U\Ēn\\\Ϫ ǐxuX\\\k:\)x{Y[TĪo\\\,vv \upv5 G@l$;nָ\\㫱$&ΚfS|^=\e.\ZXX\q)e\J\"P5\\reB[;aI[F\"1@Jjy 1\Ʉ+ul$\M8\0\۫ v[|\ZY\\\w\t^\ :\D|\=1L\9$d\r@@\'Hژ/ /밸\P\3ynC\Ҁ\Ğ$\\\te\wG\!\rKrЋ)2y}tǟ\\\jy\\\SY\MK\\҉\\\\M\\#*@݅ \QV!ib\Z/w\\\\島ҭ_\5i\\\\φqkX\k\d3Q{{\5\\@b\i\bˊ\\\r1\@\0:wx\ʦF\'\PJN+\y{V˗5bqu\\`h*f\#~W{zc\ E+\ۭYR.ssR\ԧו\\S\\ ֺ\\\"W\\'\P\ZPȢe&Xkp\Uub #I\r\\C\3R/T{`GU/\$c\K\NVl\Qoo3@}%\M-\\k]]\J+3 !|n[`Gu\%i3@}\\\ԋLա\*\\\\"?\\"\pp(\R/\rA\h0\6\U]t~:wO\\1`\ZNr\\\P>V:9P\\!\\\\I]vfee, :\\ \>\Jڢ\`؟\[ې\.\05ݞ\gZָ;\v\\eeT\Ҁ\!\}MrHS:)Hp\gwI`\\pZ\Xz\@~\"V\\\e_a\ \\2\\\X{&Nb=\)^\-\0uM%\,\g\\`)Z1fo,vg;u\i\;\m\8%\B2y\w\Q5;R\nP\\NJpCb N\;`ʒg _df:-\q>-5~\Zu\\\N@\\N\xQAo5\nC^gR\]\.\:\\\<ќj*;9GG=\\_\ \h\ZcV[\\\"q\&V\\SڊB\r\lC(w~iKrE-;\mR\ \\\䂪\\fbiߛl\P\*At\ZP\\n\0ΪQ\\0\\fDx\yE5\y\,\N\J0WQԄ/\08 KWv..\/K\\\%GY1ۥev\0\Z\A[\M\Z۫\\aŒ]Rq{|\K;4ؐo\\\\\I\A/kЀ\F<\[,\d\0~\%>`\Hq\o؁.6\ZhSgtR\Gݮ-4\\@Gn[&]t}n\V %curH\\\\K޺[j\ c\N`+\b]`R\\RH=nŮ1y\u\LݾR\\\\Ev ˦ԱE/GK>z\\c%9\\i!T\\A_x]U,ֱS\~)\Z\ \l\dDY\^;8\ \ve㎫\;+|Vl\n`La\"\4CI2Y4Rm \i\Ti/i]\\Z؝w\SdIb\f\\;<X\\0ɂ>A;\H\\lҺ\Y\0\26 A? Vsr2F\׆v\\3\̙3U\ ;\Y\S\\\\푦uZ\v|T\\JѮxH\\oU.\Q{S\\t\J׀\$P/8D,v<2\N˵\HG \\\^yޡX*\,O* \b\tr\2\\Hk\\:)T{\d\t_?6\\\UE 3\\ Ga \si\8$\w\ \0ߪ\'Ƃ*KB\\\WR׉=8R\{?=jJ\'ka\\YEZV]5Až\\bڻ\\\2n\;\\\rá4VV\*\ o\qW\|K\\@\\Щ\\H\Z\ \N\R:ɁMCt?\ho:~\\jGg\M0뮏urz\0\\9lOp\N3\\AW|\\,-\pDA=\֗\\.\GO/D(-v}&\\&\n\Hr\2\9NH8/\og\\v<\\iP\\Z;\U\DXâ`Up`G7.(v\]M:D\XB@\9#x]C\b\Fs1\'HR\\zz\\!\\\™H\\r`\-\\!e\\t]\4\\\-v\\\ Ui\A\\,E\37\ \|\V`zM\"\wTE\0\\ pj`L<\0≛\ℭ(z\CjIr\\\4ϙjb[\ruAgW\ر\0.\Nr\\\υb\\w0czre\soM Y\:+\ES\@\-\;\jYHH;\L:\r訹\^6 vKv1^\\T\pLF\ޘ2]\GW&\:\; Bi[|ka(Lr\]I\n\Z\4wTc\ZŜo\x\u\\a|>\Ο={6v\\Z 1\,|\!n|a\Z\u\\OQÐ]\Z{e2\Z\]utt B\nn͵\V\&U A\PkUM\0\\V\r\\_E\`\\||-nE\\g\A߇8\9Y!<\\YY\\0J~\!\\Ta\\:в{\`o\${PX\\\9a\\ӥJ>\Oji\\C$Ts>s>ͺ,\+Iu-\\iLf\"F\GM!\L+\f7\{\R,]\q;\Rq\0\:E\\XŚhw S2\re\[i+OSW\@%\4kY$P\'A\\J\\0\3\+?a v$n\\\-\"@%D\\|^A\rQi\y.z~O5ɉ@ \\䬎\\\s e\)e\a\\je\4\\\r?\ýȆ\Z!H:tN*Ώ\4`gv\K\\\\f\ Yy{(RIP\"%>\\\\vt\PŔ͓`b\\\\i`+^Dm{Z杞Ǵ\ge#\\,\\d\\0C\m/\-:-z-9DZY_\&\ق-b!\\)$b:y\?l$Z\>.`\,(\nJ벅][\\tx\a\Zizǰv\?\/+\J\ \\o҄;\ . J\l\w.\\$\sb\̈́\\\W)-K\=f\}\Yݴ1`w\ޠ2Tb\%uF\1\\V> ,]QC$-\\RgpM\B\U\\M|;>\"39\:\\p+<\*\p:9d! PD1>* vp\nv)!`w. \3\ \^Q~\=*BV\\.\\^hX d\v\nva\\OJV\;\\$\#\;Z\\)\\\n\i\nC4\ƦaΝ;7\D8 \'\\RLö 2.\;8X8]\\(sѻ Az w \AVaXH@J\h\3i\¥W\\{Zv\\̊,\l\I⇈(3b\A4˝hEg\\LG\Yn@\Zv$N;Njv\\'iϓ!Ti \5*c쁀N.=\,p(\}\^Md`d;\RZ\nL##\\\\0A\c4}Y\\Ґ;\aMc!HErԦC.|jwaԇ\ w99&Xv/J\0Tv$@\\\03|o\bE\\H PҴ<\\ZahE\Z( \\ضkPł*6\;l^\)/\4Y`Gh\˻P\\e\8\0ʲix{.`G\ \•<_ Ҹ\\ˆy y@\^c) !\':\\ \\\\м4갋Ӗ\0z|*\8L=:G tC3\'t\\)\9Ɇ!\\K\ \\b=x\] =\^]\\\'z,\rȧee\\b~oՆ=aLJ3\Dv\!\\D\c~x\ xD\Ji@Ng\+\\.p0d\8 ^\O,\h\G)\\\\d>?H\\\fV?\\u4,L-,\\V\v\\ v]\YV\6c{\N\--\\~Džb\! =t#\\95(\\\L\\Pao+M^byu4\\%[ \"0`\\[葆gi\0][[\0;w\n#D\r e 9\yn&ќjOGءX\ b]\\UC\pKp\z{CO\\\G;ˈGǦ\HϢ5#\\EXt\L`/*p-ʇH\\ v\L:8DV\\N\}\1Ҙ/+\\r- \'AtK\0\\Z4\:\8:g\"\d1\\!ab?@狟z[哭Z|_[\1\q8\Gq\g\\xq\bgjKyj ?𥜏YV\u\"\]}z\_W\\_HF8\Zn?FK\\V\8\rOT\'B\\nv%[j\lir\Sa]L\rgf\\՟\\쏔 \\zw\\6\\"%^ Y\6\Jq=<\\4Hw`\\\a[\\6fsƫ\\I\I6т\waY4\=D\0\0}bq\w\\\\llzz^\\pm\\\\Xeό\MUp\5h-\$jU &\;w\\ϡ.--\r887}\Ç5dVz\}U\&*/\\n\U\'NM&+=\mB`GNC:\,\D\1IWd\F\ط\y\\>).8!\\\0~kN\ \\wm7\PE\J& \0K\0U_\\_jB@|ˊM\\^|7*;i\"AK0\\T{CF\`\\0;8\2\SY\wlM\BkWC*e\\J\.d6`c|>/֭[S:t!\eCQK1St\ v|\'\L\0bV~\{/\\?s8\0\O\\b-ˤ\d>\\Z\\yt=`Gꂝ\"a:KŨ\\!n\\\\I:q\ؑ\0s\ɝ7\U4fڂx\ne\\\0`Hp\\\,\0U )\[\DL+\ 9#,aB\g\(q \\=1_VcA9\18N]\ˆ\0\\,q`\<%Gz{G\0}\]_\{\s\ZgmM׹(˰hhGg\S\N)jQfAC@z¥$\\~\\z\\#Lc8ijȲ>(8\\!:(v!3Yl~b;E~\zƧ\=|,_\I\'\F\8\:\\ny{m\"s\\bw\o>\19D\"\CM\\&\\2\Z\-󦞦bh\#CM\\#\\Ϻ\\еZ`wV`zXz(\\\^(*1[38Ȝ|)y\\w8n4䭠\e\+)\ ց6-G`\\C4;\\Ў-줻~<)T&\Ɠ\ml$@pe\'\ʤB\^˝/6\\\o\"Ws1\u:B@( \\t\$\w\\\\v\\HD~-vmҟ\gZ\Q\US~u~oTP5)Џ`|  q \97\ZIr\0P\D\$*p>EE*~\ƍ\r\" 7M\r\\\n@\Z]⾝\ `ǞjAц:\"\\z0s5+ꋀ΃]x\a\20\w\e f),\\a5\\y\E\\ѫ:\\\Hۤ?U\\n.CX\} ؝Z\2`\&\q̑q]\_|q\>bZ@\eԗUƅ^\F)C\'ƅ\k\kcccf\fg\ZjUH\IЌc\!\n-C\i\\qtl\\38\H\H\\\\\2\`:>\#tyZtgD;%\"\u_O\\r\\Y\~T\A`q3\E>\u_[\U!\X\" ݉b\ɤ\\}Ɨ\\\!nx\g˕\eµ\\":2ƶ#V[ n\Yp\ ׌X33\CQԍ\}oS\ \\\bnO\\\\G\9 FeC\\\0sSќ D|\ \nȸ[+\'B_0/\].\\VW/}\\\\\W\/8\w$\\\\M\#H,mS`Svg_t\\\\\"UL0H>׾2\{\Do\ҥK^xa{\ڵDz\B汲!\\!j[\W?\\WO޹|\\'\\+\WV.\>~ymv\h RV\ \ \}\a>\"1bI0\\/@\\\Ov0-4W7BQ7+\W\%\\\Lں|xqsᨻg\-[\lgg\%ܗɿ\\D\f\\"\l#-c\\\Xh7\g\\NO?4\/\sȞ\I7[N\\ry\r\B.,ݻt\\\'Wn\;}\\f\\\}G\e1\c]\\\\\\g\\\\v_G\ \_V%\\ѓ\\\3;\\\Rn\\\{O\.T\6]p \Z\>41!\qᒳ\ \}\\7\En޼9\'jZ܊\y\\gpSӄS8\ ᠫ\+\/<\){e\Ǿ\\\\\2\\"\bŻ\\BߑE~U\s!(Jw\~%>+-QO\\۠\\\˗p\\ݳ/rNp\\\\\/\/vl+ꕏ?\+T{T\Z侽3\1\\\~w\>xO&2v/a\'\y?\_B\&q\Q\\m\\\ \\W3\\\\ƉM\'p\\{ \NN\(\|\=?{**;?㏿\Ν\_z5y\\r\D \\rgN\\7X\6AQƝ\\[Ԣ~SA\\e1a\\\\n.l7\r\'}\0XTʹd[v\;\}\[`\\%\rm\=\1VY\˯\\rx]ƾ\Y\\z]|\"\ʴ\\\\\S\W}Vp\\<)Y~[%ى7777.\0\n\I_(y^\\\rghY_\.\l\<=\\\'\N\\`=vs\\;\Z\E\{G삤n=39ga\'y\o\9wϺq\G\#;gDK\q \y\\\S%)\'\DL[+\m:\\\!\&H\\\#T\J~Q\\VP:w\3n,\u+\Y\zT GC4w%CREHν_~%\r\vk\"\0\0\0\0IENDB`'),(91,1,'Rack_42_with_door_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0I\0\0\0)o\0\0\0sBIT|d\0\0\0 pHYs\0\0 \\0\0 \8\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0F\IDATx\\}\oٝ^\\%)JTKje\\v۝3\8H y\?` \0 \\c1\3c\\\\\W-ZHQ\"y\\]xxֺu\:}ҽN}\|緔\\Q\(:8=<\ݘK\رcG>\\\\,:\߲>5550ίx\\÷\~{\puT\0\\\\g\\ g䘕c3\w\n-\\\Y?\\\\\\\2ʹ-s9\?\o\'\CPᦜ;w\\\\\"GrsN?z\h\ÇS\X\\~`Ԡ\ -fff\m\K\766\\\\\/\O 3FP={\ܔ \4 )Q ҿ\\\\3A\z\5o\s잀\G\,\]\\O`\T\ϟ?.-\?\'\\?~<%*e\0e1`H`\A0\k\\!\\\\\2U$ܟ\\K>T\">-\L0\ 2\\X c\4K\\xn>{Jl(\'bjmmm R\Z@[\\\wx\\_\ZvKOVݗ@\/D?\\K\\\WGSl&\ @>0ھ)\00hof&\0Eӆ\0do\\\\5\\C+c\"Ugy\ҥ\\\\ǯ}\\\\\\>\n=^3/+w}\\j@>\\HYK\\\0 1\q\c\\,~\׿\򫯾:%\b\g\)\\->+Z5\\ S\n\nlmwT`ͅ\\լYӿ H\q.w98_k\\2\{&Q6E\\\\0\\~\΃*tSc@!+XYY)Ķn >ՊClW\DI\\\!e\ \p-M\0m\\|sPJ\^\\\\|wo߾\YPl(}S\\\\|y\\ݻw\A\rZVWWw\V@\1Gj\Pp\vL\zô\B*L\H\I\sss\\d\=\R}C\\^]s\0\M\\*=\0ŝ;w*P\\\o@A>cz\\Q\$G\0 v\ \\߱٭mJ[\\f>\\>*Rz1dr\{\J\}\n8\\kbw\nϳk[R\\F\\0M{~+\ѭ[\X|\س\m\\}w^^[|\\@mΕ+w>xp\ʃ{gĨ>-@[-޹s)cC\tz7Mv\0뒼$h驄T\UFn\n+Q\nbH\6\0f\e\\Z\\Z\"\\\C+AlJ\"qr=\4\cؔ*\0*Vz\\\\'\%\%9z\\y\ܽ:\\.J\zQ\g+-=X eǼ\֞~O/\\Zw6Mbu+l |P`\" O-Bt7=A\Eƨ\\5u \R>[ 3\cM\~Ёku7@1\\D\J\7\YaO\L\\\$궅kr\\2L\N81\ϳ<܋\ r\Y\94!$WUZ p\\++drzH3:~\\T\x\\\|x \4\0P\!եORe\";.o\\0=b^_(*\'xJGcg\\F)\I崩bB}\\R<\3 vMű[pnU\*>\Q\\\\"T.ʜ&R \S\s̐dָ]\\DjG\\\e\\4,R\nLÂA\HGSJ\fۀ8_ږb_MQyI#\\S\Ċ\'$ RF)\$y6\\\aa^lQ\n\\m줤J&e\\\D0YY\R1\\'ˢ\H \ycƍ\\_\Xq\0Yv)R\n9l 9 v؛ T9m(\l\(K5\T><6Q4\'J@\0(\4\ڶ\L\\rT1\\\5?c@DƝxb\rRyXg N\$E~&K*\FR`\n\\\f\n\\:Z\5qo/h\ \\s\\T6 @V5\1\\\?\o\7q\0\ %)m;)Z\\_\,)D)@\"Qe\\\Va<Ï\\1_\w\g =\\rym\[XXRLOpRhPȋ\c\Q\nXh`\q~AzdR\\0H:\!Χk\6E\\\X6\@6QW1ffLxڻYmk:\ tIC\]_\\cV\k4n_R\ߋRB\\0VLnTq؂\0\М\\6cM} [tD1\ڤ\R\W\ e8y\\X:\\\r(YuYk7Q\3\(I\+ oD)e\\}\0\y\\Z#Oe\\T \\!^\nQ\nR\%>Lk\\b(\vI>\\ED?R\n7oެ\\\\\\\g. e\0\\0\F)RN\R\K\o\0\܌t/\\0J\nN\G \\\q ɡu\\5r\\Sm \\n\LngF&\\v,OJ!:q `D X瓻z\5\8\B+y DA\/D/`qP5\r5\]`gG\ѯϼI\,=1q\ ⑑\Y:ȕWU\\f l\0s\X\\\h\nI))k۶bR\It\̾5QK|(\NIUS\nӘ d\:\\:\&0JPY\\?O\\\#GFhe\֯;\푟{!\\\\`\$\]\ڗ/\\V\Z\ \\\)2\쓚P\4R`Y\h\"fȏaգ?h2FF\\f7\\f66S\M\n&6\\NdJ~\\YI/D\sRaѓZXX\t-|\@P\"uLh\7Չ\W\\}\\\\0\:\0\^_\3\g\ZQ\'m )-oO%!J\\q\R\6F\9\yz\T/16DJO\1K\r3\sQX pH0vs!\\\ ҋLic1\z E9|`L$\\:\04\Pc\M\\QAz.\\\"R\n\ѱ\>i1)==\" U+t?T\'\\T\'F\T\A8(\=J\qmA+°T6d\S\Չ<|\0@AܷQ\3 \!iRIII\j,jBouaa\Hu>a{@Et}1a\\p\)վT\:/\SK!?*fDS\nU^8tia՞c ݜ6M0\YD\E9\r¬3h\\תt5R\n1\[.d&\\g+\P*r/\\\n}I\@D1O\P9D)`\Tw9\\MB\\\\c9)95=C\\Z\tf\\%4\sNZXXb\\nI \$D~F\$ DܒЫ\\\'xǵE IQ\[s:\d;C_|\R\\(-\Hb\YI)@39Չ}F<#[\2_\̞4es\MJ\la.yF~\}iAz~ 2&)&\e\'\\uWBlf\r;f\`\nߌ|\3<[0\ىZ\n}\.!\sk\\0BC5.Q\n\%U^\Tt;؎1 ;cRR\%J?Y\\\l\\MCg\GD\n\W9XM\\\\i \IX3)\~vQAz!\uQWHQ8-\\\@)`m\\\y\4tH^}fz\yz\:u\\H1\$֪3ԅ.3\ZM\nx\\n\0\)E)\nS\\XSE)b\g~UN\4\\\\RCr}i:\pXP \D\\<z\P\cQD c!YP\n\)\rp\\\n \rR\nRߡ6\"6[.\З\\CI=NΠiR\\\Z4,e\\*\\\\\\T.g#JR&H:z9R }\8l5 \\]MB\CRyF\0 1\)u>\'}\\\ZH-\R[\Y\0tb̶D#\1FI)0mKr\3R\\'3r\\\iJ\R}C\5a\C\Չ[+Ϙ\n\"&>\`Z\ H|k$>\\c\}( &\˵:qpbhRx+]v.Ϙ[\I)4KO\lBsT)\bZ\\\@J\8\:b0\!N81\ԭI\n} ١\&u`堗\\I\\WR\\"ym#2)\Az44Yu>\ؤy>Uff\Ԕ+c\u3rQ6\ \'\/+ͩrĀhRy+AΖ1R\_a\0w$sRBJV\\ٳg\\M5\IO\nC_RB@)\oNT&\X\\\s7w\1\\ާN\Z\VO-\\8Q2k 2O3\\}\OA6E \\]\.l$\\\pq]uq3\\\,\\y\\\\^\f&\\!\rYӠgMji\.\P60I\\;\`bvJ+\>\ͮji\CP$\t\r\\Y\N\&(J\\\@T aI \ڻ6a\s\0?̐blDJA\v6)U\$/PTVn\m\ykR+[c$\Q\nO<\_\}oubVd\ͷQ\=\N\vwH)p9K)Rߗ\\rT>#=XI䂦F\6@)\=~\e̦M$iSi)I\\\PR@\"6`\~\\OmK \XO6flf6\u\\\(ON\POL\ \Z\uz\,``\\Z,l#\\ɓ\\H Fcl\V\S\@df\`@b\\\rdfր\u\H\r\5\\\\&TёΧh\:>5b\\@$\#c\\<`\r\0\n;\M\Ik)  \0j`g\7\\ʙ3g\]E9R(KDwR \ d.X\Ϥ\\S\\0*ʦJD\@oMpԔBgJ{zkHMuy2\-g e۲EH)\&R\1I\R\&1<>\=\"&Ƹ.n\\\vc=?J!=\CHBp\\`OP\n\\\n͉RE) &\OrS\ny\ZꍪV\2A\\\8R%˜R\0\0\t ֐\|O1\\3B\\M(\x\$Ix\0lqqq(\\\\M\\5\\9w\'Ołf\Z\NpA\\"`FrQ\nOi\ Qm\\%ѬJ\9u#) \/IH1,6뀣u)\ܓ0\j!q\.\\n*VO>#J!D9S\n >L\Rۚ\ć\\l*lɱ^I岩b(F)@Ԝװ`Pj\\gS\\_\\Tt\rh,\\!hɡ+\\L)`u\"4lħ\rh\'>\6\\\\Zp\nt\ d\$)n2(׮+\8%\\\ \*\";P\X\B.\r\X2&I)\zoܸQI0$=\ W\ʬq%>\#\;.\\\\\\a\ bi`nݺUE*R`0[\7`3ܝL\M)\\\\\o\\\Q\nSoӸ+\0\\\PV\a\TPL2;u/z{IG\M\\\\:dqnR\\\H)@\n\n$*\3x\\D\),3 \k?mF\ĨӦҚ˧Mi\\ \\(\\Zp]PeO-\\T\\\\\7]I\|NJjup#:b\Zw}` &b\0=\\\\\Ro\Ũ\GR\p\$\6,\ZH?\ }50\hJ?S\\\\\\K\kF\\S.\||\\\362k`\Crn+\MF}\\UXrܷ\\Bʥ\<\9\P\q\V\6S ۑ5u$\\={9Me9#ivH\d*`\u\ƲRz\ĉ&u>\Aon\nEB:y~\Po]\r\nO\f\0To!x\i9|\v_vU\^\<쑇\\\\(+r.FY(\l\vF}צ\\j\\\\Z z (U.\0\L,\&ԄkcٚLJ\VFnTA\\Z\{\e\uX#}\Cۺl*\r.\0W$$>8i\zS\0\,\\ńHؐ\XNIWwTo\\^\q\f b~Nǧw\\\+`~\ZAc\Gݞ\I)\\z\\ӤO\\\\\Xl\I\UYy\f\\]\u\NmB_Dg\:H)\0`āmӌjSm\G\\՗\3\\ZWg\CJz>\l\:V0\댚\6\A\0\K$f@bJMSic4Pm\&q`\1\0dަ I\6M\|\"(n\0\6\\B1\0\rפ)c\TOiF#9\\I\ה/jt%\&%>\p&NR\MC~H{րIkdi\h\\|*S\F1\0r\'@\O\r\}ͤ\I5N\k#gJf\H;\E)\;;>4\[ 7L\\Zݦ!/0Y/`?\rJ)dְX\SO=5,9[K 5^1O@\\"<\{\bH)\\?zF숃: [z>t\n\ \\k\2wćA)4*R>\\Wy;\0](\!jׇBmm}ƻtX`\I\\T\\:@)\}G\\ y㪷t\/\(\;EQvZ٦1\\n g&/{ty^\yC\\ΐ\E\'>)RJ0U!},!\eaq \\Z\nX\\4&48s5JA\\A1.\(Tw\lzžWwa\SxdcoPD\\@\3J\\$ BP\nX0\z9{\\b1\P\n\&ޜUyؓ\H\-ʡ1\Qb\$n,s\\V\3d\zQ]/\Y\\\0D) g\'eKH\\UP֤<\\h\%E90XZw$m\n\w\=\\3]~R\0\\\+5\92\\4%Ӧ\1S3\\n\l\xuQiE<\\I=\LsgfY\\իSxݖ8;W>\8\\Sx\0\Zc\S5J|UP&e>\ m@\nl͋bAf\\r\QJ -v$.@1Vɉ6PQ*U \\rRN\ bN)0\!&J!U\Vt\o\@#ԐhK\Xc\\m>\02\q\0hR\\\p:\i\z^3ҧ~IU`aF` Ѐ\d#+;:\n\\0MQ\nKKK\I*&\*\\ZC)l\L\ \\\<xK ު/Ǥ\Wac\I w\qM:J Q\n\X\ns\SM\\Z\\VO\ZڱMc+_ͶHي\dH)H\k׮\H\(aQ\U\~1\\.\6\OyRHc\;_u\\A\a \!4\0\@+Q/jJЃQ@\\\'>8A%\x?\P:\ZC\1`\\^(q\0M$m\Z\Z2\16UjXPv\͡\ʨ\R\oF)\\\A @*Q\*\\x\\B\v\JS™t\n\0p״B\5\\(\0\&,44 zcPBH\1\MkR3J\ޠN\ۃa\Ă&2q\MX8HOɬ1\o\qJX\9UPrpE\\.:yI3j>\\IlH\' \&I\\\_\W \)}l\q~ǒ\\\h\ѡ.R#Ub\\tn \(\\\vXj\\\ZMEZH\; >\A\Ġ:H\K\ZI\\ZɫWn+\)\\ʕ+S\m\Z\bޜQ{->Oʫ3 DX\u> j`l\R\{Pe$yf\r\:DV6\\v\6]AzЖ̤S6\fO.\8g\KY\,\󳕼~rSl󉺨\J\\\\5&JQ}t2mRL\BćT!9+\\ !@2?5m{ѓX\6f#\\\0\n%Aj)D3\\*n\ \\\\\ÁYےf?\)\\j{j\ \n\_+cO@\;xr2\\"\+JX ?\(c\q\TJf\:@)jcXo٘\_o++}b\WZ\6\:\}\)=\\0:TS\nP m%>V qT\0H\Sk[\3\Kj?[\\)\YK!\lQ:2 p4\\31`\U+5C)$\Tc>\\0\\NFݷT\\\\\fرo\"e\(\3\ma\\^x8֎\G94{D\\"Bh\\k\tz\T\{ waV.&\C\\.pX)\\\\\He\Д٥4-*\\3n\0ԟK\\n\<\\d)Fpb\&F{\_a\Xڤ|a0\$\e ҧ\oX\GmӘ7\X\Z\'Gզ\+C\ƹDf\rlKP\n)B))}RcV}IN|\'i\ȑ#\,\\`Q\'Z\n8\\E\\\u\mܷT\^\\'l7z&PRmC\In0\F+QT#vL\\uNJ\"o[ \+\0Pi3>\\\\\\Jڤ텛۔/$l\\tw-Ś\Z\\7\0*C\G(\Z?&E?x0\x\\\r\@\\u-ړR{|\p\BeR0XUeY%oOꋭN\\ˌ\d_dL8\Jg2\mOLJ\/}ҾC\Rɷ\\r}\"vst\64w\Aa:s\\\#E\0\rv\e[KJ9K >|x\\\\\T\"u= h\BCI `x\\gK\4id\2I%*C54M|\\l(\\:[\{ɚ\7V\@\\m+\\ 4==[\\_,q\ć(}VߌAX\'sT#K+\\veM\>\l\" ۂ}`\\db\e\ [\{!3\\ngIvJo6r{҇Y\0\ 47B\;#@# צ\n\W\Z4gR\0A \\Rba2Cҥ\\\0\d\$\P]Cb\Ӱ0\\\\\ć/{mC\\\\ \B\:|\\Z\K\IJG\\|l\`e\r$n,S\v\Q\"!|ZM$39+\ |\Q`lpV\Ba\\\P\K\B)!\\0V$\ڙT_\* &j)\=>6\0i;} ̢M@OB*\"Ka3Rh*U\B\~Ja\\XFV\!\ \\\*c\G)Du|\>\.5JJ\F\C,Hch\q\PcҐ\\qu,\ `\\\\\\l{ 6wrI)\Z*\ VM)\~KlI)\\00,\0\d\\A\W>\7\\#}\\ٷv\T>Ϊߤ\\'^g\\'\M)0cYu[6\l>`\ \Д\h\>\c\\\(!\5\I!Z}l\ð1tg\IϦy+\+\\\\"I)\=\0,VM\6U\ҧ&\\\IJ䦺@#\m\0j\Xϊ\?#z> \\0򩿘N\΢gCJwc\\vMI\,\H4hH\5\)r\sID\03*l\C٤R@df/R wV\\+\0)ڍxiK:}QZ\nɉ1\r\\\0D:vb$\4\I9j\\\W\y\<\\*\r\\00F\{{$}MU?\\! \.&A )\0 \N\\bj\aN`\Hze(lM0m\\U~-\\I\ZuO\O\բ\)M\\09\2\g\)\Z\}7\Vk\\\r\2\m{80\02kw%$>C,\օ 3 a\m\՝O2~WB\T\\\bR(\N4~(\n\\n*Ye밗lQ\nMn,\\rux0?\F\$\|P1\!JB\b6\nV\'\\\\\X3\C\T@[C\'>0\IyFM)T\\ \\)PˠNj\" !@Q\nćmTb2\\\(v`\/J\W{D:pek\̛b\L Rͬ]ސ` \o\O[IG),\ǘ\f\\Zە>\Z$EJ%̌laҡ.`ȳ\"7]!ñg\Xl[ #\t=]\+͈\e^\DJAeU#\0 %\)\\QKQ՟O\\lʢga\5Jx\+\j|\\ە>E\ͼ\\{\ԟ\\\\gɉɁ\n\]R\76ECaUG\/\\{ eC$\LZ\\"\ARҷp^R\0\#}\#}|\0r\'\\H6uM)\nh]\H)y) tͨMłp+\\\u>\\"}8}YL2I[YX\n\nݺu,:z\\\G6++{\.}B꫉\ \0kъMJ!\59z\\e\\қt񜏺ѢN\\ښG\\\0\5ES #\0{\\e\\\]JEz9oɏ~\\\?y\\c3gμs\g\~\\S8q\\\\{+k3kc>&x+:׍+\)!h7El\\\\"iݙSF1\\\j\z7y\0\9Pz\\Z\OTX\}\\"\E=\\\\Z[r<\7\\\ൺ{\s\߸p\»KKO}p\Yy:\\\2F q\z\MBv*6UY}u\9\_W):BmRJ\n\'\)S-Y*\M^ќ`f少>\5l)`+d\m\\.~\s?\O\usX=\\e\[\\\\\رS\ff߿`fy0~Pً\'\\r\)L5G)!HRn\4nC\r \u\re-Qz\\5\$Ϟ=[\M\\\o>}N\\m\\s[w\y\\/T|\\\ɓ\'/\\;j\>xEv(\V1\v\X\_\\0\Ě<\|\ nnۦ\\"\0j7DO| =\qDjoд\t\K\\_\#5|*@w\\#\\3dr\L\[\G\q\\pI\E8cr\o<L7\s\s\0j\^\'\k\7Q\_\k,EB\}V^T\\\8WMG@\\\\\>\0\8\q^|W\収;ycff\qb\\V\}\O\fyyy]\3.6@%j\\?\\r<%\yf\\K\nэ\\x\*mgd\\MW~Ad\Y\Ř{\\|\\RߤO@\q\ʤz\5ɽכZ\\WT_\W\g?ٿI\\#V!\"\0@%:\Ib\\\Ή{\\_mba\3\6\_\O~\*L\,`;Y\ \nh\F\î\7\kPo\V\0OC&+@\\+\0\\G\wTl_\L\'\\-y\X\}V+* \0\#كJ\\\/_v\i\\\/~\lf \t3>ͷӕ(]\!R1V\Am@ \M9\\\Z\\Hو4\W\\\%2J\Y\\\iȞG\);w\\\,;Xp\\oϭo\Z\4g\r\5\\\t\6\`А\f}|Gݫ\\\{>0\\\z\W\8u\\+W̻=~\ \ZbO\\\\\7/\\ږ#ò\\ *\0\\T+\06\ԇV\[\\®\\0\o}\{|\\}>\\|\uYCpnj\}ּU\ׯ_?j\\\o\\e\\jN\u`\8 \\˗\o\YS\\X@\Cޯ\\׊۴\gVjJst3Pn\hWc1-`:TK-\\\\>\޽{fee{_\{\\\/\\–x/!2\~\|/ssyii\+h.\7\\\7n\xS]7I\+E2u\-%+l>6M)\j\@C\g\r}ƉT\rp\S\\x\\ӧ\ ;\H\*{T?b\\~\\ě]F\(\\ϱI|\\\\\\\ω\H\yyT_7{Qa\)\'U_𽇵{QLn/fS\\jN\7\\\wS>\r\2)W:}`<}Mei J&7\\\Zx\\Z\\cO&\z\fSZ3KP\\\T\6\7Z@ƃ@\\\'\\\Qt}%֓084\9HOKC`\\CA\FLMO\h\edef\\v!P\\˯\\'Z~\\3\u\hǜՆ\j,Ɉ\\ޕo\o\\j}u\VA\#((N\\іb@U\L\n\\\\$\t:deea~~\\\<\%\K\333f%\bccf\\Zu9 q\ EbDEF,Vˉ<\"Dmm-rss\\\J\\>sUs TѢ\0l6\\RRRD\\*\n?:\s\rՂ\J@k\c\\\\\\ŋر\I.:]\z\XfuY\3F\g\Y\f\UGh6*\s)\rmۆ6H\\}\\\򏐃\mb\\!<2D\Hҁx\\\\rr\\\D{{\\ \={\0\\ը\' gggOH,/T\\\N\u[$ 466\\hϋL}P__/b\e\\\\\\\\@\\\\\ѣ(//\\ P\"QNN6\\\p\\q\R\\WV7o\D\Ν\=T{W\0Y%J6>.Hj\϶NBCɞMH=<\nnIWK\R\cbbRh\r{\\T*G*y\\\#8xt5\`spdgg\r\\\||\\b\\\\o·\wnʃ\n\\ h\\U\U1\wOꜜD\\˔b \<\\Ļ?H/\\hFOO&\̌\\\|\\\5\"##Zm4LRZ\RS\\t #wÃB=tD\\#w\h8(\6\"FԵ^8B\!+\\\9\\|My ^Mj!&\\\+$\\\0\\i \+\n\\\%}XZ\U\ƽ+\Q?[ľ ƙ\K !o\׻=\\\\\σ-!\޽\a\\WH1\@$ګbw?@\\iR\/\}\\\\ɓԃ\7\y&\\b\mܴ6\V\rMUp ;cw/\\Q32Ј!\X\\hc\n\Ȟ#{}W޵kx.F\.\\hii\49Q0\lg٫Ol/\IdZ\ܹs\E̹Ӟ[ &\n\ ޢЂs\6+Οo~}F\ܞ¥\K8|S\*\\"E.\\n=\}&\c]j\G\"\n\\\#\C``p[sx^ۏ\\)\\Z\=چ-/oꖚ\q-!^rl~~~\r\f\\Y\\g\rH\rcP V T6 \\A(I ٌ\\\\шENԤ$QW\BL8V\'o|\\V\1\H~ }ŷ\0WyQ\P`3\`\\HbMMML\0.Σ Jx(`.\\P\\n5-PŲ;Wt\p\\H}\nH\>\'\\\\\l\\0\D\~[\\0\0\0\0IENDB`'),(93,1,'Rackmountable_1U_server_2D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\0\0\0>9\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0TIDAT8OSMoQ=o6 PJlؘ\\??\\\a\Z\\ڮlH]Hb5P@Hva`\]\$o\\\{\\\\0>\r\'\Y\\"\@\0\"\W躎p8 ),\n\<:>\Z΅ $\]+0Me)G6d;hZ\b%\.hԞB \ _7%q\\X\'\\d\drjP9<<v\>S*a4\Z- \$\\\\xG\C[cJ c0tP*f\\\{~\{\\Um4\ZMң\\\olG\ZYX8\ĹRÒ!\-`\X,ڒ\ 1\'Q|x \\s\N]\\\\\*\n۶հ \q\\̵ڇqf@n\[UTNxӡG\\;2\"P~\9;ExH\_!8}RRR\;طo\ݲ;\\\!\>\\\B\nT*\5\n\n\nP+W@Ѣ]]]\\\\\yc\\\f\\bbbBh6#\?\Ex!,R\\\\ro%cddD䳶\\g\\S05;p\K Z4-\v\\)\\0\\Uٝhu8qREPoBo\И\SQY-xe(J|>444@.\\\D{{\;w\\R(Tǡ$\!8tvv\n^\h\\\LVFq\\9\\v \" 1 .lB\X]>X\b\fe\9\\\\Ŝ\5MmXmX[[\\\M,=zDűTj \rj\\\dB/P8pޱ\H\npػ(J\;\nU\\\\\***VX\0yUU\3\\\P\\\5!H\$ve&Ο?/g\\\`Z100 Tg&\'\'\\D/\C\\\'H--\\݃{\gΜə/H2\\\\k0Ī\h\\bp\\!W\3\dl._\\898 _ Drf+NO\\#b\TZ}#4:\5nI\j1T]F\\[B\\ih|\t:\-, ݻw*MMM\7[~\2\dR\\YD\"8\@\\\חDYl/FB\\}\>jjj\0򍍍att4\=6ezzZ\ ES*l\ZZq\\}ܸk\\\M\\)-`}}]Ν2?ON:c3\07\5\Tc$\\ \%={\4a\K,Cv\\NT*泍\\hYX[[ \$ͣ!L\\\8\Zvk8f\\ncZ\Ip=9r\nB@chh(\=& όB!8(o\s\\Z#T\rz(\h+\Pk9ˈ\5C-b4Tjm\i\i\Zvq\ZMI\H۶mL&c߲\0G\\9\k\"s*\)\\ᑑɩ\\0 \rP7l\:\i\\{\\\)hxx\GR\Dr\o[,d\\d| {+\\0\0\0\0IENDB`'),(95,1,'Rackmountable_1U_server_3D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0փ\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATh\\X]P\~v\~_Bm 4(2\i3Fol\Le:m3Iz\tls\/2Τ\ױ\jA@0BTXX~?AEvaw6JXb~P`<\\\o\{\\\\wu>OZt:]\"/QQSñ\ZILOmtO\n\0f9\\\\\\x\P\z\\rul{\00ˍ\\ч\\g\q\6\"\@U:Z\\\0HOO%_\gϨ\\ X-\:a\\\q@&E*Y^L5l\`=ۺ4v\\\r\\gyS\sss\=gwc[H|6\\kKKKU6\\@^^%,,\ \\߂@\R 3 Z[[\|\ G@IIIt\\\P\ioS/ xn\;\>u\?|Z \\+Z\PSSc \n\0j\ej\\}^MKKi^g\^x*\dfgg6Ğ\\͹O\nO0\Z\\\\x\0\#D#\\٩&9\}~m6\\'}3˅\l~nH\c˧\#%=}\\ëw6-\\Zof2ilwW;z{6눈{\ \\$q\tfT_R\\BCQ]\^\\h\\ך\Y^\\"444 %%eC\\\\PI!\KU\.\\e\\8\r/a|Ć|$$&YY\\\S\\\C\\z\\\\n\T\.lW\^$\`f/p\K ك\\\\B\xzeff\w\\\\ɔ$\0 \7D^|Qa%\ܬ\j\\\Q]]\\cǎ)\ikk[\\0\\\X\\\\Dee%9˗/ s\z_ׯ8\ʵ&?\\9獎wHg꾥e\5YSs%\\b``\0\\\(,,\\\]\\\G\&33S3X&3}\r8}o*\}\wp\\"q\\)e\\?\n\:q׭ P{zZ\n\phv\hLƭ\\Bj\%\0*I\\lQQe\Νz\\\X\\>`PN\\M4w\0`23\\*fS\\"֨lG+PB\B\\^E\\\\'r`?bq\Z*V\k6\\.q\.x9!\5\\nKa\l&\\Q\\n^d\\t\\ZB\5圯[S\Ţ@u\\\r\\)\\XW\O\ Y\^;\o\A\\ư\L\ևe\\a/1\^\\\.|\ѿT\oS&n\\\ě\6\\c?\\?a)ƍ_\"\ix\T\z \c\"캸\\O8(d8A6*a;\\}\q\M  H\0\+f\\2O0LF*53 l wjюg\\\\\bs֋\'@\\m\`?\\\\"a\\ǮS~\Zۺ}݋{\$\\\31\XU\v\ލ&O\0 :k\3\#n\t\Ai\5\n\ \\s\F\\p\D%\]l|\\\\0\<@\\ikb/jXºɴ \2\|\0Mu\<\\0\0\0\0IENDB`'),(96,1,'Rackmountable_1U_server_3D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0 \0\0\0>*z\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0$IDATH\\UKOQ=\N\-X\Zbh\r)j2\r \3\\ q/\\pA\P ϙ\sA4D×\N\\~\|\ܑ\\:\$]\0\@0\\1O\"\SC\\\Z\b\0[:;;`\\\`s\o5\\U&>pϼ@&ٸPBP{R\.?\_Y\ 0r]t0\\v\\^^ـH$2LB\C>\\\Z <\9*\Na2^/..\0\#@7z\\\\S\\\IB>\\4\K6-,}b65bS\moo#H`b\\ [K ̲\\`8y\'\\ \v;vS)LO@e\\r\5(b\TƜb\\'Io%INÈB\0\n\\\C*҂v73{X\\\Aլ\ +\\\\\\vww7ŭ\\\\vvv\ ̤\hwf2\fa\ L\\@!Gxt6&+\\n\\\\l U\r=8Z[q].\4퐫R*ahp.\f39i5TU\ȫ\C\.\`l,(.VR\A%r:\\xm yo_MbP\d2K\rFM.0@\4\\(A\ `ͨ2\\t\l=|\};\uG;@$-\njC\ϢZ\aB\僎\nB\\3\\[qo17\b\hr՛~:hn!K\<\g\h\Q:\\ vu\\Ed,E\g~\r%%Lh\)BF\+K\\n8m\Z\\\7\E\\vU\|_\֩!\$\\\4ij\p8\\b/\0_xAY\\0\0\0\0IENDB`'),(97,1,'Rackmountable_1U_server_3D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\0\0\0\f\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATX\\W[L\\U]\\ fw\@CyCIHD(\H\Z\\\\1~ߚ?\ĘIAiZ(XZ\ü`y\Ѧ\n\$ý\}\Yk\(\d;\E)a\\(\0̀;\i_\N\\\N/\5>J\AY\N@\_\\B9?qG@+\ka\?\\Mg\9\rJ@KK\\޻X\nt\\r\IJ_4\Z==\v[hll\t\R\ܻ \\G!#\\\\VlX\\5\HR\.9E2\"w\ٳ\[&N\\w\z*s\\\>\tḑ@=~Si\\x=\'\'\\\\$ \"Z^knv)\#łd\"8%;ymttvvbvvCCCrDU]=\h\\\Xl\.ij\\4*kj\PW+WqOk \ `n‰B\r`p[\\\\Շߝ㰕:a2\V\\=EUN\T\\!2K\.͚#]$ɉmldNNߵ9\\\b \\܅8X\xP\n\r-\}c||<%\\j\)\\\n\ ɆN\\F,\Zq׆P\p\nsss)~\\\YߡC\\f\{yy9 \\ۇ\n^,\n/z\K\j\\SO`)/GQ\rccc\ͦOy㉪Dn\r\p\0?\&xp\0~~g,U\|w\$-\\FTSvv67[rm)9QR$\ɘ%m\\GnnF^mm\\\\V\nn~d\U\\X,\\\Daaa\n\"M\\!MH;p\\0^X-\\O\#\ر_n\\\\\r\\((\bDW#\b1Sp\`Og)\Jb֒\\\qR1w$\n/\VU_\d4\"E\\w)\\D\"i l>k\\\\\t*$\\7V\%\'DkhhH\\l\\\rڢ)s$f\gffd\ػw\\\c\=x?2JM\\>Lyp\\1 0\\ס\\\C9\\0ne<\\\)ښk\\\3~qEDY\0\U!\\"\\+<+(pz-x!@\I\P 5`+\\n\7Q#iA<4\\\e\`FBwW\'\\|JD\w\dI%%%\Z\\\3봳L\\PS(33MPq&7d {M@\\n?.\5\H\qg+--\1-:{qqRT/\b\'ٜ\"=\ x\M\\\J2QJkr\\|\.]N\y_R\%\\\~\\JA}\0\0\0\0IENDB`'),(98,1,'Rackmountable_2U_server_2D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0-\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\n\IDATh\\Z[O[\^\W 8h 11dr! I 2$MԡӪR\?\C^\oUG}\[4R[:j_:\LGQ/ wk\`\\\\\mmN*\G>>{\^\[\Zk%(uD\ 577ߪ\\$\H_\\`0P(\nG\&\\6\\̘- \f\u3\._\\ \n \LC#Ysr\\\g>JI U\qqSѓR\u\\'\Jyv\\r./(\O#NYl\WRd :$|\h-\r\rO\\\ e|\\< >X,\J\\#\N\\\Mi*\\ˣ~\\V0HK>/9Ub\rc#={\L >\\\3$\\\\0\W.\O\I7^\yu\\&&&HeXa\\EߡC\\;$mX\s\\ ɿ4>ZSS\ζ>\0SKK uuu%_\0U\\"Q\\a\s\4B5554==qq(\r\\\G+++ǔPmm-y<1\\\\Ǐ\\‚X\TPP \q2\Z\4K=}*\\\\4\\\\Z\0\0cL\r\\\\\\\21m\n{{{\~\\,X^^.G\\67;AFk\.zS\HS\\FY*t\Z ,V\U:O8AAvlY\C \0\ҥK\\99 \M&\0@Ұ;VWW\0L\\C\gj\cq kdEmllP$Q\iA\GLF\z\h|K\\ )lȅ5m6\\hP\OWlr\X\Q|`Ο?ON\`\E\TYҎ\T\{E\99V\M\\@ Мǫa\0bP\[ߢ\\sS\\{\QCZ_MX\>a0%ndd: \B!I0\\\d\n\0\\\l(\0bԢm\pX\35 \\\'X WX7ꡀ\\0P\\"csmmm%XMg \\+Li\)\\}\|uI\MV\\\\r02\Y9\'\` -c(*կs\᪮ \mɿL\@k;\H\/w6\n\'B;(J0\\0 Z\\\\\Y\r\0鍑\1\"\\0 z\"h\0J “y2\C?r(\n\0\&\f/\\B<\"$ @i\\H\\vy:\Mf|fX\GـG]\:\$$q(/aC\\0`\n0\\\~\1\\_~͝M̉z\u \0)l. ,**^e\M0,7F\08.\0fhh(9f}}]U&\G&;\037\\\ {< >\gt\\K\\NH~\0P1\\\P! \9sF\Ν,%O\\\Y^r\f0\T\GU~n`}s\0i\%\afi|\\2ٱ\rr}L3\\~\\s\\\)\\\\\\*\\\5뭉zI(!\Oȅ\\0\|S)x;Lo\¹B\b\ Uţ\t\\\D\\\\\z\\<GhJ\\A\|\hc%zZ{F}J*\0\0\\S\0MPX@\\\RB\(u;\\$I\r\Q\Ekmm\n\9\0\tY\\\\+H\0 \Vx+Io[\H\\ޚh\'Ozc`h\l\\6}\04A\7Б:\\J\,e\\8M8R\ (Պ\n3O E\MoTL\\@\\0\9l :d0T6\\1H*2\\\KQo#!ԣ: \<[F.\\\$4\ ,R1Ee426N \"&#@.Y\g[^ \\~\\dS\q\7=3+, \uc\< d?)\\q\\KB\\\CzYT:\3#tO+UyN\3\\;oa\(=\*%\0\0n\Z\n\0 06 8L|?\t֏\x\=\J5 \0\r\\\cccɜ \;!JI``c8܀ܙ\0^\g\0\tP (1\0\qqx\F3\\\u\\\\\YjxnFz\5z\{(\F u~1yr\Xg\<2\ޕlpn\[\t\\7Kj\oRɃ2\)0䙆\Z\\|\0j<t\\5q*\!\0`(Q \\\+\"\@و\\\\x\'s\'\m\\֎\<æp\yJ}{0aAa\qM\t\\\~O\\'\UB\\9E\ \ ġ\O~3+t߽\Bm\\zI\~cVVV\\S\V\>5&:XĦ.~S@cno7q\U\*f{ǧN2]~]\scPܒC\L\P0\\g\B[ArVV%P̠c-\=\'\u\\\\\@8X\\\Ź@_VV&~k\xg\32n\\|\z7zU.\7_02+\\a[rh\\3}\\3o\[\0\0\0\0IENDB`'),(99,1,'Rackmountable_2U_server_2D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0 \0\0\0>*z\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\\IDATHVKo#E\\\;~\vHl\IެX0W\Ƒ \?8!8 \\n\\\\HeCbǯ\<1U\\d\)lI\鮮\\\V\0|@\t:\kw^\\r\eڣ\\P\\K\Z+}\W\Yڣ\\|0<\ ߥ^\\qG\!Ә@=j@\)u\\\H\0H X^Z\0$\\1\n) ]5e\M]\\'\ⱘ9LԀ9\|+ \~\\U,\lz0!;\%c z\9vDQiR6|;P\\\0\VT\9d\XE.\\{ʦ\\I@\\Ѧ,\\cDPIFsc\u\>\8\ۥ\9\0\rY\.uWV?\'GUjL Rɘ\\\FoN02\MڭB\\H4j\\?\<\׶\\\\g Qn\\\0\0\0\0IENDB`'),(100,1,'Rackmountable_2U_server_2D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\r\0\0\0V\k\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATX\\X\O\lm1`@\º`KJ\]zI\b7\]\'mm7*!kꊐ\0)C> )16\O{\\د?vҔI}G\\9\\\9\W\5Lܸq\=\e\rt\]\`0әīҙ˝j_\\\ǏoYV\̟~DЃ2GM&F#a21z\\'%\ֆo\\G&{f\8;; \Q466z\|\ײ56\&\\\$g\\\\b9=\\\\Q__:3I\\͛79X\4N\\\\\Z +\\\@O\".\0V(\"ϭjNLM\!@w:]-nr@<\Z\\QF\\\T\\ȻT*\B \LQ\\D2T2hc @(LUϟ~d\ZGG \r\\訴\b@\x\B\d2e\n\Ŷ6\\\\jooO\\\\\\\aۑH/i\0tF\(\S|O0 b\pԾ\n琽\\\*XFGG1>>sƒj~Ut\/\1\$B=\\s\/-\FcS\\\C*V\\\\rI=->Ii\x\\]$L\\\\Ek(\\@bK?\|HmyB\\\ r\yU@ΦX_rSSSU&1(NNNb``@T\ AIi&?4\\npx>W*\\\x\iU\E\cccQ\wV\\n\\$+\t:\\\oI\\{\\\ǯ~ ܻw\\G\\,Tr:\Z\L ;bG)\EGN\/\\$^g\\"\~9/k\Hϧ\nt\#\z<\!\\\g\;RKd\\eL}\FO\nic\'>6l/k1\\o)\ \\FV\\"3w\NB\\1\\$\"/p\\E\~r78\a -Oj\\\Fo\r%\x\rŸ́\\kX\+9rJPH 84:\V/r&j=YH{{{kv<0T+\L\0ʠC\JYċ\FH. 1\\ﯩhkw\x`\K\\\\>:\\\\)@vHPж\\$\Ӎ\\\n:\\LRH.\\\\f6\"\H\\a\<`XgrrLj\$\\\b\'\\\\\~ҁ\\0\\\ե)L0:ٷR )\dBlD˭-}ɋUQ$@H\T2|B\I\b[ByC\b4j\\͊iSr\\\]\Iw\8\\Vy}o/k\\\?(=:S(\ˏ־ \\\D)\\>\ \\\"$\Ǡz\\ozfA+]ya\Y\ Q9\'\/ׯ_\vJ\h\\2\\A.66\]a\dX,$ط>\<:T\0\0\0\0IENDB`'),(101,1,'Rackmountable_2U_server_3D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0K\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 sIDATh\\Z\oS\?\v\\g!;d#\XFl\Bꈶ}PQ>U*\\H}D \\\\\\\=\w~gqZ\!IR~\\Gx\Nx6\lbO\@|||e(l\}<\o\kЯ0B<;Y\^\077wwag\0`/7L|D6zj\\Z\\\Ⱥi0\Z-v\\^\0 ---=lpS׺\\̎_!l6[\\\n\0\<\r~6<\\>Q*\50 ׆|k\n\0l`}MM\>P\c*۲\y󆯞...@& 8\3h@\\r\ \)\h\d3\\\\Ӿ\\F\w\h\\qQnQ1\\\n\-4a\fgz)\'\'[\C\r\\>}\^y\>M%\<`\'͸\k\n\0ьsZ95 \đ\fs:\G\0@\\\\\422BW^%O\\㲃\\\ET]]F0>h\߰a\\Rb`lln\JS1?\:\0\0nܸ\ 2x\rI\SCSs\{&GhUӇedZ\g$\\bm۶QSS`u\g2\0 xk\e\0\[\.MOO @\\\݋?(\ԩSbkJJJz{\M\۷\\\\\ɓ433C6\rqrq F[GW\8\;]\昋13\\\I/  h3gΈ\\\?G=zT8\\ݻW\u\\ r\B. \=\ \̂E\`\\:\g\EMI?A\\\\\\\\\ϵ\SVefm\A=)3\Ҫ-[\\А\ rs\n Á2|A\0Oc%\x<\#{\\m\\5\\\Z)$$\\0^&X%\\\\CG2\\\\ E[\\0Pp^\KZ\0\Y\,Bi\4\ޝ\ :e\0\e==|P0/gg\g;=\0\\r\ne|̂\\0\nB\0\EEEHS>\\Zx9d\֭[T\\\\L=\+\0\pvR\"Õ\t\zr2Pnw\򵷷ФHކ֗Ɏg\0(mmm\}{zz\"\q\\E\KFiY\$r]\w}\e*#LQ%z\#Qbb\"Ԉ\%\Ǝ\\=66\Si φk\\\\YZJ\pIw\rRcLgc\99f\\ܳ/V W\U\\\\$\`\RZ\C\0\!ή8AM\\\1\0\0\\2b5E\`Ǻ6˼4q\\\"dQ㕯\\Cu\D\\Z\F\z\\\_8oZ. 2 ʉ6&džD\ +\%%0Z[:\Qjr%%no\F>\r\\R{)\\ l:B:Z\\0X?\\ԲY\\\%C\Z&(R\\>(;1Z[[i\\\\\cohub^~V\ZH@u׃\H|\\7q}[n\\\Zuuu(SS\/%%jkkERriӦM\=D4\9*\r\\ }\Sڹs\'ݾ}G\\\\X\\\L\\\\vC\\vE\r)*\\\\<\\d\ye_\0\;\S;/\\6\0\\*@6\02t\\\:d\Z\6BY\\ \A$NH(///\́Թ\T\\Q\5\VG\4֞\n%9K֪\xQ\\`#aeO4cYv\\\\E6ts\w\\D9\\J\\_ \\\Ru\".Cs4\ޞ4\\\\/g\0\M\0\b p} %@8u\0\8\ Am\H0\,\%9\*GJB\' <\\\leoT rA\kO$F\h\rv&UG&*\r|D\@\{Cw\0b0@ǎ\\3&;\NGb]\+4\pj\Ԯ#\\;KF~\1@\\0\S\,)\R3:`\a\G\r\J1\\ +\\0\0`\0b_%lD2\ OLYPiUJ|\cS:/\ (L\(\\\0\\&*/+}y\\\JݞqDK\D\yA\\\0\II&\\\ ejZ9f\+\\Pp\OI\x\'1n}J7,T\Js`X&\\'\U\0\02@;\ ԷG\n0O`^0@VVX\)\-˵K/\'WWW\?~\\\\\\Dž\"ᕨu I4\4\\\R\\-,\\̭\c{\\\\o.e%\h-xM\Z\0t]c\\0\\ƶ\*!\'\09keçs\*\"^s+!\\I\^K<,\\\ $N`\q\\'\x!Nt\\\\0\i2Ӥ\\0\0\0\0IENDB`'),(102,1,'Rackmountable_2U_server_3D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\r\0\0\0hl\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\L1J\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATHǽV\NW=U\]\\\rc\\raPԁ,đ(x]\H\\\rY%?vl,,\F\n0\<՝s_@_\^\\\sϽN\M\\\\s\u\e3R\ό!s\NB V\SsKࡓlv_\M\\0V\\\=\ۯw8\u Wi\\\\\'\\\l\+i\\\__OD\"a\r\r]eϾ!o\\}Q\+\fsummy\0Z[XX]ʏ.\\A-Vp\:\"\3o\`l.}{\\7J%n\\kz\ҕO\` \-D . R T(K\K%і\eI{UUӲ@L\\\I\Vo1\Z\2~T8FGGq\\\w\\\\ZB>\sc(\\Z Ĉ\\'\'Ѷm\\(\~:A0\t\"<1\ŋH\\bW\l4\\\CD\a_\H~4E\{=H(?rph/)~d ih\\k&\ժFP^\z04\D\]|\\I2vw^ L<\\rJJ\!\BVUu\\p8<\\6z͇G\X:\6ڭV?yOx\\Qڴ(@7t\'ܔ\ː\I\M+_\ \\J!?\k.7\i²L8\\iX_\"u~O\\wN/\Z\\\ \4\Po2lh\Ʊ! H\"\k\\\z\˔$ D*p8 dLƢR#]YR>\\\\\\sT\r y\\t\2Y\#/SAv\"\ 1P!U\Jdll\8We2L\\x\RJW\\P%\jH )\.fI\JT\\\$QS,g\k( ˺1ȸ:%ܯ\\\Mf2\\0b\iv\W!\\mE\auW+u.\_\ZT?\\\4ɋb\\\NM9\\ 3\\/\\G\\%`\[\0\^\⋥\)I\\n\&;\"OW/\'\P\\fҧ\q{8\&ϗZ$Q\Q\\Žw\\\\d(>}\\0aID\0\0\0\0IENDB`'),(103,1,'Rackmountable_2U_server_3D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\0\0\0r+8\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATX\\XiO\\\~\,\ \0lÎ\\\"\\ɋ)%?\\\$_ҪR\Te; KmCe6;D\6`\\3Ա {Ww\=\\=ϻ<\-\aM\\p\)\$Y\ޱy y8d׭RSSO\ t\^\\\WK\\\\\\\oa\\[逜\h\ \7\!:\\37ިjjj*}>ߧzy9 1Ñ*9\f\\ؘPp\\\\\H^Z|\;\Q\̠C0^Ο?o\\\A\\\\;\Qi:v\\\\j\\\\]vfgg\3\YSxdtDZs\`0tL\\\\]~i Mo9{\\\\\\UUo:e %%)IVٚdy\\-M\\\\䭌 3\\\&\})))\\n[\\\ جA6\O\r\`\\Xý)Rq\\̜SUHAY]ZkV2Z\\Z\a4 Fq\^X$&,)G\\0\줌i\\\L \,/H| Jooza˳)Oʋ\\>RlX\\\\-Z\"gu)CZ\;\hd\\1\\8\\% NHL\\.x<\e\UTTo\\\dyyYp\\r\\~y\LI\\ \\1?\oC\=\\/¾\sssAY\\逭\\b\\\T\r\Z0_\d팊h3,,,\\\S\'u0nZU\$s\\\\\Y676T\rc\҉tf\\\\\ק6\`x\b\\B#P+A\$|\\"PԂ\\\"G\\qv~A\\rsM\r\\̜ܽ\\rX\0VWW\!\0[L܇Tj$\'\'MXtqqQ\na(=Gb@0\\ 0{\\\d\0\\\Z,\e\\\*\"N:\\\\\(3:u 7ˌ\k\ߩ\\K~H\\,1t\\\\\ ]Yb\\rY\e\\{M]\a+\ R~&\\\\Mh\r\2\#\T\\0 \\'\=W\E A\GIyyx:Ȁ\\{4\t=z,g>h;bAd0cB\B=8 \\Ԕ\D\ Dg\{{a\%\'nJ+[\\k \\r\\\zdM홙&=Jz\l\nKDRJdXP\JD\'Ła_\DbH#Rbrȝ\ߴwk5i뗻ߵC\i\=h+,+\Ҝ +N\ҍ@!صП|&=Z|9r\\\ȉ\\ZUBt\~\Ez|Cg?\\ \ׇM?ήn9\i\yORP\+T\z\\l6a\\ yǵ8-\*0\\\drrR=\2g\eW{^!|\\)+\T\o\$w\a8h#\\1b\SSv\\rFAZ\$<%r\Q---\\\ga\\\\*uuu/^9\\r>\y\ؑ\\ć\a>ȓ\'O\\666*VV#C]{zzVqkr\n\\Ym\\e||B~\\\\\_\իQ\?\\R\"7\Œ!\\Uq\\\jEXgF٧s\01fc^1\\\g\0\\\&r\\\\\\\\ZEmn<%m\\K\ɓreH \I\y1[ǎ\P \Zf\5^d\]\U\/\\rq\":e~aQ\ZN6KJGN7g :yH[[3CX\ץ\\\}\\Iڂ/1\0c\'f6h0_\\\\\\" d!\\\qN*\n\Ds$_1\]\U\01;ub>>wEzvGL\dDͅ@\' \\ G\0<ץXr\6\\$\\\\2d\8\x\0XRW\\\9\\ȍ\~V,\#\r\\\%H#iFFMf<ϕ\,a34(v \rB\`Dy ,=k\\j7p>X[wKAf*m4\\xƃS\\ P\E>8\\\Ӻ\\"\QGtFi$\߿\\v_]GF~{64<\\o\ta\0\L.|%\Y\\\\3\$:\0[\\\_/\\p\\tn\P\0:H\yh- \%\\\\',\K\\\l6\\pz҂,\\[[\;\(\\0\0\0\0IENDB`'),(104,1,'Rackmountable_3U_server_2D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\Z\0\0\0\T\\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\4\5b\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0`IDATh\\[Yp\=3Zf4#\r 6$!\l 0\fSNϘ|\+?\_>RYpT\UηmlL9@Y@\}Cf$M\\o\#ML\|\ZuO\}߻瞻FDY|\#\#//6o\L?\\\\\\N&{\.uuu]$\AV\>8n0:\ع\-I\mmn6uS_\s%\\\qy\:**<\\\RLL uttt\ \Acccr\(\n\Z\kN\\%\/u9?ML{)y\\nJJW SvfM\:\CJX??H d\\\o񲷯\sru9\h\룉ɩ\\n\0-A\+}\n\0r\a߾}Bc\\\rN^\4Ő&\ǩ\\\(55\ڴ\l2\\\\n\799)\\\\huY33\\\'\0\1\\͡{\\ɸan\r\.˗/\\D\\\iYر]\\q\lnu\\A\@\H\0DS˘\ \n\n\\\\!\\;=|v\\A+\\Z7\\W^\'Nʈ\\Pw\}G۶m)z\\_^Z\\\E\5RuNQjnnY\\\\\\}뭷ۨ:\}\I\\\PRRB\'OҞ={d\ٚ:;;\#SҰ\mi\\4\n\\xE-4A>3\GM1\'&&\誏\\\Y-7\\4<\Z\ZiG\\\\l\ۖ-[\\\\\.^\9\0`n\bX\0;k֬?q\0)h||ܔ%\5orU蛩=Hq->\0\/@\S^\SdxO/q+\m\2\\'E_\\=A\ٌ\0p`0\L_\\97\r]\.@tD\D\f\\rss\ъ) \ֲo]M\\\(9{\\\)Y\n`r\\\\\\\\fJL\2\ŲWg19\O\%sK)ɉ\F9\\Zmw\?\{\\.\nu\0t\ߕ+dp\a\˼0rY4\\0\\>#$\\fT\ҥK4\TlÆ\rTZZ*a \@;Fa\0.]t\ i\¶{\nq\k\0\E1؝l߾]F6m\\XY\eZ\\>t{N>MUN}ן\W:\ޯe\?U|o\ pG&pˈ]s>V7&|\yf2\\\T@0@s ڬ/-\7\Tʪ؁\>h\h\\\r\rI0q\\TM@.[N!\e\\\C%\\0\/Ij)))\@\V)OɥQU]CǏ@C\\myn[{J\'\\\\. \դ8\5\a\˱>ZWM\#S\\P\\2\0u:հ\*H_\0Tme\P\*\VeeER3P\rT \\\&~{Xm]ehr\r!ٳmX*\\\h \n\\\]J\\>\lg3[\\W_T>|\L|\\h|\%\\\4}~U㗸T?%9\(\>@s/\3Ug\. Ngfc Еmd\0H\Q!(\Z[-\,x\\p0P,-!!!\Ң\"%\Ż\'&L\>Y\0\J\\Vr4\ʨG\N`%WXLR\\\\\kuU\\܁AC\\\,\\\\m|\~MM\\m`=\\\[\\\IΒ(l\\#c\e nm\Q\^`gA\ݰ:\`U\\v)\\?z1\AhSSSt3 1&\%v\\\dP,\,R{\r \:c\\~\\\\@\TN\0`O3 .@Y P\`o7\ʢ)]ar͐k@(\C\$H\\;;ȝK\\ZJ\\r\L\(ol\.a\0\OWux\RZDn\0Awr\\\H\Wp!\=> \N1O\J\\[qN&7{JFG1\ \fw,\\\\>O4\ء\\r\Z_\v\\nJjjjP2kh\l\\@Į\\\0&\Z5\\\\\[ZV.c\~SD\#\\@\\4jhh\\L\\ZV1\0D\\\pwx~\ȇ\0\\\06M\y0;w\\٘#\\0Q\^=\\\Zz\/ \&t\y`05#GH E,\\ZE2~\z\\dp;\\\\+FFF\*bXm:QzTЊ*`A~e\\\ͦ8O,\=\`Lݪ>e X|\`r)і\8Xb\\#c5k\\6u\\\\0FE\\\{\ Pw3x@\S\\c&0;;zPD\IZ\8TЉx~CGY酨{~u1OL\՛20\ס\0v`,\}ƭj\\'\BtS\e\_|!\r6l@σ\\\O:%k\n62\CToݺ%1\\\O-\2g4kN5\\0z\{\d7pR@Y\n\0\^)=\E\nYE\hVu\0`\\\AyƖƾ]m\de\\EETR^Ak\\JLp\\Vsm4!Y\0y@dG>\ZTt\\n)\,Pb(p䬾WPJ\\0\~\\5\>\q\Fy1=\R \0H[/\:\j\\n\\ zr\\\9d6n{%\Λ\|rΝ%\\իa\Cc@C\\!f7tF$(3#S&Yά`՞R\}nUU/)׮Kn;\f;\\\Z\q\e\\ሐ\˔KkV\,\c\U\0\0\h\\0e\4*~>J`\x\\g2UiK\Zie\yN^3+i\ʐ\_\ 0u9\\h1.\\0\0ຐaUa\2\0nhz@PȓӍJ\lS\AP\ڵk%jY\\ RWi\0\\ذT5G6m\q>0\0\0\0\0IENDB`'),(105,1,'Rackmountable_3U_server_2D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\r\0\0\0hl\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATH\\W\nE={\\\\\\I\ZTB*Z\\\Z\\%P-\PŁ\:8\/|g\٬D%ALY\\\\\wfj\0L\0Tjʻw\sm\D\"ch\[\\^\o\\v\7_\OE\f,{hH\|ܶm\\yls\iX˶a\Zp\0Q\\Q\tC\\\A6U\0-\\rԓk\?\\|A\'\\v[Eau-֐_\\\\n\\R1\e\n\\%\B2\0\8ոj|-L/J\nl\"Ry\l\0b$\taT}Fj\\\\GF 4\Z\ \^_\\\\) re#\\wL6ƶ\nA\\\'!\)\\\bD\\R\M.\\\Gꍶ\S\\nO)\[r \l/yv\[\d~\;Xgw,Y袀ohG}\\\'\XK\x\\… )%%l\B999?\FAA\C/\"TZ-?]\ *\㭠r \I\֛\gǟ8}F\ȉ\"E \\\\\1\\0<U>\~\~ض9d\\F\\q:\.53B5kdQr3;;c V3?G\\T\\&\Nv\ \ I =G\049\0\ϡޣLDLQ\\\0-\\bPi\T2|m4&2\}u\\l\nĊCݤ\#vR֥G\\"\\'-\^KMMe\E%\\A f|>\S2\x\\0<\\ 7Hk$W?B\)7owC=,e;)\!ANO*\"e..)\\4fnޤPK+\[t\\ER@\Z|l/,!\+\^1^-vS\\"\ƅ\W\BڵkAW\ \ƍT9Z\\R\\PT7\\h?gt6\tNMS\q\4T/\tU/e?@\/ #7\nRJPQ7gc\=4\A\\Ϗ\فA\d9Ig\\\(9\bUs%[i82\fhsϸ\Y.B\0+̇A#p\+\@\\H\\0*?(C\H%PccE*\ @[V\"c\Ez\t)\npE\\\@~4\AJ&\0\\n*U\\\\;t\\wihx|\\\w\ҍߍ\w\ηi#\о\` J4B\`>\\nfS\D\Y&%B\\\9\`I\$htzұn\=&h\0T&\~8+QY@~!(Q\v;8NMOS7bSS1\\ΦKJ\rM]L\\\qǂ\\":\6a m/^TPTF͡V\\]v޴s$\\sPk[\s\\ܧ3XL\'\0\-n\nT\v:d\']M\\'N\c$m߾OXvB+,Y\" ^@\Iz\a\0?\8:^6\IXZg}e\agU\j!`޼y\rO{\\E\!\a\׊+$c\\\W`@\X+\QJE?kFo珰\\"xIf\@iw8t \\~}Vxpq {o\bw\\\\!R\NH\lqu\h[,\Khy _ \ (Tp\fI[\0(̺u\$\Z \n\nܗy;\ X\ \\F KJ\Γq@Jr\ \:\ͱ\\\\\O\\\\\E %p ldpVLW\\\R\n\L\"O\9dž)T} m\06ц\Ƈy\oP8\aU \FV\Y\"1rg\rN\|\\\"p\n&\\\ \"\0c\N\\"\Ƅ;ؾ\n2!D\ř6m\"1NH1*CtZ,P\X\`QX >\h`\Yl\0q_7@9?q\!gy$J\0\Z apt40q\\\@\7T?\\hTA\\)77W\\E \xOY\\v2\  \B\X(<\\ \jf\َ\V[|X°F{b1\\hw\!H֟8_jN\\?d\\`\<\ T\ @U8!if\^jj\94\z7MK\倕\ \G,k%%%\\\\)\\W\spKf\0\0\0\0IENDB`'),(107,1,'Rackmountable_3U_server_3D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0#\0\0\0\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\4\5b\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0sIDATx\\[\OUW_\^\pA^\"\DPVkZ\\d&~\4\_0ɤ&\eI&ͤ餙\C\6\\b->\\nj\ \\r\\\{\\\\=m\&;\{\\g\\\\.z\EӴX>l\\s r-\z\,\{\aP\\@pppgQWrN\<\\\ؘ\@LLL8\=\\\g5!@C___\Kt>l⺅\Z\/ɂ=\r\%---C/\0233A\+ Z^\3Yg963\\ꪧ\0\\\\|\K{ATkd[n\r\\0(,,,0h\Mg\O\ s^CEEŭg7\x#\c÷xlz/v|Z\灁N\h\0lܸ1à\k\s[L#\\\*v(..\ \0O\\o\\lIv}m\\/e\n-\\\nl>\\\Z\\\\\LVɷ?a컹\\\aaa歍dez\\B\\j\\}tw\Z\Z\n\h^\\\pףG \߳\AAA@\\\P\C:x<ޜ\\\\*\?\Idpdk{\J!\0wvRS]-O\\ڪ\qA6tw\P=S\ǜc44䠞\i5\\\LEDD\\0U\r6\bÇ\5\1΂|6v \t\\XmX\\?\\\\\"9\ϟGq3f\ѓ%4/;GF\\hKoߦYf=5%,Pp\oIII+\,>q\\-\|\0 eE\\\_GTWW\' `Y\'\0cO-\"\\0Qti\rҕt\Rjii1K\ʕ+\믿6\+(++9BVӲe\ŶT\׋\x\ q\\% JOO7ݿ_~\\?~\\\\\\~\t;w\1=zn\J\\\S__\nRFF\\c%۳&\j\sM4+\!nF,9QBBBDA\\TS]xg\\<\qa\޾~{[[徒\ku\x\\\n\x\ꫯRuuX\rP\0\r1\Z\\Za\r(\0 \@\ EiQP\̄x*:q^+,ɝ,-X\H\\\7\06{\lk\̪2\z5\iީ\k&$\"2r2Kӗ\\|7\̥$\' CCD\\\E\\nD2,(\ԩS\XhU4ۤlE \\ / ,д\\Ի\Ƨϡhd\n;a\ \-m\T_smQ\\q)Jcc\\\\+yT[\H\-\\*\nZyz\̜9S38\\TBvr\c\E\\r cdFƜP)\VtC%\|A3 C\EDʱWT\:\4A:,v\I\\|P/P\[lL\!Ch\,&\\g\FuK\0.ULs*$S%mцޢ+W\, \" \9.ȥl:\N\\%\J\Jΰq҆\\$P}Vaf\')V|\\6\u-چ\\T\1\w\ݡ4\nb\/,\ބ46J%W\huo#}\Z\\O)\|\\ƽ\0\o3m\n\k\\AF\\\\Idb\0\=\رI!8W^\;@8PΝ;\'\\\d %$Yp!\oxH\0qūnWSc\#rPv=\ljl\ׯ}[x1?\t\M\W@o]xQ\c\V\ef\,\\ر~\Qe\e\?B\\\N|\\\ɧ\'Kt\\\Q\\Z\Z\\9HhsP\\\)xg\\a\0V\k\OW7nZ\"\0 4(Hy\hB͘Bi7A\sE999^B\\3 =~,\go\N\!\1&&FB@y~Ǝ\@\0z{\|\\lyn\"1\0`/_F\_tӍ[\\>[\\w\TZvAx15\\8~HH0D\q\\@\\э`\L/\\__E׮]cЌњ5A\\&f\٩\X|Y!\rILݯ۷2C\\\]\r%0X\\?D (3\),\0 [;Ȓ\g\Z\Ș`iy=2XFt\0`1\\B\ҥKFq/\n\\\cAs\\\B%H\0e\\\q\f !+& i\&dͤQOiv_%0W0\0oۅ\r>h1.QpO\\\q\/z\'5\&\n\\\\\w Ю\ \7\\06r::;i\ G\\p\T\c8\0Dc]\yo\n\\|h#!Kh5`6\r\\j[,N\\Q10\0\\;ESjJ2U߽\'\\\Ti ?\0}\' \͋>T\8o\0\\r@J-._\W\\\\\:\վ\|~\W{\\}\j\4ƈ \*d*po\\\\0P\nmjF\rO,\ޡa*zݟ\O[zQnƣJ\{nRXۏx+\횻RŦ\'?M\1:]Z\7FQ\\LQ\\jbF\\\\0\t+\$/\0Tz[%\0|2 \(\0\` \\\BL\jw\\sM!u>\\o\nV~BSS3EE\P,V9 \sX\,\\\G\!/\\\S^qOrj+U8\9ha?Pr\׮daN1O(\\'$$\\nL\[JxN%`&\~ \k8n\lfv\{A|\0e\\ Kh>\ʗZ@7\Py@)!\r2+h\\\%Aװ \C\Z\\x\)yYH{F:\fZFV\f҅&ݜ9sL\\nXg46L\`\\0w\\\=Ͷa1\_f\)o9Hoo\\/YD\\\/h\ڵ80I\ ,ó\ ugB\Bc\0\sT\k>\0p\\\'Ca\nWB\0jj\yݹsG켿\}\0ԙ3gh׮]b\.\0\0PyZvpol\I\SahpHqA\0\Ǭ\{fy\0\k˖-\cǎѶm\h߾}\\0\!\@\\gly\\7>ʳg\\|\7\|k\r\5hu\\\؛#\\Y\>o\.\\.\\`\0\\0\7`\ 2~ χ\\ \HU:Co\3BA_Ж\'B\\8gs\s(o<\dF\a! l–Ž \`@>P\\_\0\01\`⬲\\\Z\0\5\\r\rT2*Qm\%\  \\\/wyh\\\k\s\b\\rĂ-R\0@\dG\@(&8mԠ\0,A\ `J\bo\\\"\Z`\\p\\3\<\0AT3\\,):7F\f\o516a|{\6+\߳g, ~Y3~%v\8O?&(Tji+!\nѲgb\a\\;XB\"^Bj&H\ZR\I\ر\=g\\\όݦI{\\\\\9\s\H\\6Iqy\\\\\|ZG\\\C\}8 \0pXxE\˘\N\=n\Q@=L3\i 6m!˭+\0X̫i\%۷ч\\g\\ \hL&k\\v#\N\|^385w\]hZ?,--\\0Fz<ו+W\\\SUu\\:\|6Rl:28lK*J}eyyxI]\\S\?D\l\r2\Ʃ$\_t\?n?D\l.O-@\"\rX\9ALH;j\\0W\4|:O\\Z- p@m\'\"A1\r(\\"݁\\\\ }^:1gNc|\C>yR\\4\\š7S\\R7-0N\"\'\*MF4?? BNss1\\pjQȄW\S\\P\\vluv\^\08\3e\2e$5dN\Y\ZU4\\޻\'\ #bPq|> \0\Z\\ΧC*\n\k\__9e\qKlѵo\`F\\q\\\ -ԖJ\὎R\x2K{\U\\<\3\\z; u\\1(YL\'Ia\& \RwX0dT`0\\be悒QQ,?\0-ۺS\\=tU@U34Ԙut \\$\ \eSPGz\\u F\\r\e\d@>\\lW\&\nB\\\n\\rkA\\䀾99ڑyw3;b\3X\\.[\\\\\9\\\?wʰr}b\پ:첐W˳\-\\Z\Z\TM\\0\.0\\A\d\n\AQύn2\\r1\a\\\>\,h\\&\\\0$\"\=^\y]ِ\7&\\!K;Ϡ1;\\*\q~\}q\\\\\0\ \1\fg${z\Tё\<\h\0>ݙ\A\"I%\ Fq\@]y!#\0+0\ [E\/Zk\.` 2\r\N8|\$n!M\N\il\"!I\rl8\"K\\\\/qL\̼ t\wog\z{\\Y^S\Z\0\mBb++wX87\\\\l\v\{\\0\0\0\0IENDB`'),(109,1,'Rackmountable_3U_server_3D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\0\0\0}:\0\0\0sBIT|d\0\0\0 pHYs\0\0\nb\0\0\nbQukH\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 IDATh\\ZIs\~ՋzQk\цdЀ` \0\`v\\x\\\#L/\\Db\01l$%\RK\\ߗ]\tWa#dģJYU/\\\^fEQY˦iZ.CC~q\\A\B\AnȚ\\\\\\n/\gIJֆ_\\tC\bD\ {\4\0}E 8j-\0yFHhaӂA;ީ\\\s\\Ҏ\{R\H\\oa\΅\\\\57@}}&\X\5\rބF\i \rc\\\ɓ\\\ὤ=}\\n\'EU-Oo8q\"ceeЏ+\\ܷ78\\¥K \0\\IiipS|h+D}(\9\\\\ebb\"\\z..K;NQ6\lj/[V\ɧ1eá,èVWW{\\c\\IÙXI)h$򚐾1\\\˗tK6VVJ۽ηf\I\hoU\\풛\\\ߴ\y_T5r\\=\l\\\"w\\\q\\=1, oji%zAA\RRS,0oK\]\\\ ߐH ;\w\< \x\9# \\@+|nn\%\\ZNn\\\\)8SG\+s \r{\\\\V\\r@U\;N\\\NF\r\\ۛ\\\\\j\\Zikk={\\\k~z9s\\\+\++҇~\|hPJוHvv\sn߾]&\'\'\\\I\СC\Kss466\\\A\\f[%<)Z\uEv\U\\5r,,,\ѕn-0\,\"@Hn^\ F\\v풖i\|\S\\I.͑\P12\Zf^4=lii)eqTҘGm&-\ҍ\PU-#㲮X>\\5\'#\"%rQ\ݷR_\}\|F.uAU\'um\q\\df\\+ a\!Dv_*F^_ s\Ԕ<\\\Y$f^!e\0N@\\D`9ݑ&w\ܑ*:7+z\\\B\n\0 \r\r\nћ91a? \\\Q$F\\\ \\^ȟP~\9#x\{ǣ\dL,\\Z \k\n\ H᠌ \03\ON\ާ\\\I4\i1D\:p \r0\r\0*񇭧G-PESB\\FL\qt<\rI\I\Se \+\\\'\ \\ZKH|\\_\T.\U\\##\[\NO0ZZ?\fJQ\\'\4\ؚӕ\W\Zӊ\fOK**6n\H=\p(\r\#\0<2 ޲P\\\"@!\\r:\kkJ\J@\Zy\|7Ƹ\Oc\E\'%#3va\n6\ӒQC\YRJI\ۓc \ϯI,0\3%\㐬)#JVՋ}\\'$\n\~\\\0\b [̱#Qx>ߺ \O\\! \eޘ P\t\L.c0|u%p:&\E2\:[UQ”mn\\x\EqqJ\\innNQ\ J\x\׿k\*˗ y7*\:Xp*\hB[\#e\r\I\\HN_loIb`\]\J\b\n\l* `\\$\%\n4\Sc1J\\[n\'HFCoD\m\\Ee4\ cJï\əذa޶l٢\Z\=j\Q\0:\\|295-~\%\j9\\\*2\@\i(L\\tP=.3u\\Az\{W2{\{\\\\\-Ja\0{\\Z qX\0.0zbc\!\f&艥\f\7=35UM \\\moE\0A\\iXm`\\8\f\hHF\n\$M7VM)\wx\\#L߱C&`HR\ɓ?S*ǎ6!Ja\\\\?Y:;\\\lNUD2,Ժ\KT\Q\r(~\'pǒMOQr\'|6O\\*\\4\j\\ c@z$ |\L\nSW9:ik*Q1̴\{\~\\٩\\ٳgj\\\'[ \\\\n\I\^ņ\N!\"\\-\A~\wy\+z(҂tt?IgX1O\WQ.\0\\0uۈ^\Zqn\'i}bcTW\{|μeP1#Z\HJ\\RP\dC/\؀ů\0&\|Τ\\D\"\Vs?\HܝR\A<\t(GK\__V&tZ\0\\˜{\\EPs?zQcx\"\jMXQVM<\zX\\s\\\\\\\ե\\\>ϹkgN7n(\Y\>oB\r`?\r\ES\\Yv~6\0\'\n\\\\\\\\ҳ \\96+K\nd\M\-l\o<\Z\\y\4s?\QwypN\O t\"\*U\\\\PI\-<<$/\Z\Z\Z\\ٳR\\\˶m\Ժxƿo\>U\Tj\\}ԪUJ\\\07 ! 1v\\'mlx:C׷\^\\>&T\\׿\o?P(D\(,m\Νg\\@nn^m\\Ɔd\\twwWW\\\",\6\\\\\|g\\Y\9\4\\E \?)aNDP(42\\\8\;1\\\-\T)\{;P!\\)\ԟIc%th\n45塾ğ\\\\n\f\磺k䛙III.\\;44\;7\\Kh3\^\NN\\,\[o\>\\\\[\\W^\O\'}\\\\ש\u\^|=\g5\\+W(\'\'n\B\\\\\\G\^x\\\\\>7\|V\\I\/\\`&Ree%ݻwGF\瞣\\T[[K/\"MOO\\^9~\\\\7T\\\\D6Q}̙x\"odq\Ki\\(\r?\\\Qo~Wt\տ\"b2|\\\ܤ+׊胿\cp?9n\ώwD\ky\\xnd\\]\<\\c\n?\<\\\\SRR\Ss鬽\zj\19웝 V\\E\\Ivb0\ʳ\02!aJc\'&\\5\\ !k\\4\ZfAzgh\4:*\!\0\\zi~~^ޙ\NKGh{<1A~bn\ \\Z\2big(N\[_Rr2\Pi\n\*(Ezm\\\\TH~rsi\\}\\\(\\\ݔ!޼uڥϬo&J\v}p\\A\\ͥ\?\t\\\\\0 2\fY\Pٹy\g^&x\ΝTpZZZy\\\\t\OOO\F\\p;\}I×&\]\{#&rY\+W oV\\\\\"\[\\^\\\k׮{\r_}s\*=r<\kn\1Nw\}b.\FɁE\ZOHm\B,4Z\<5%\\J,\\"\宓imQq\.9->#ꚅH\ii\"IZSeE惵\\\\\!7ylQ\03`ma7\\\ n\\ˣݻvQk[ǹ~ڼYt\^ZJ\w\\.\\gyFỻ&V\\\r؊Q\\\\"\̮BBUVT\\\JH\P U\\\\w\Yf\rP\A\N\\0s<\6gllL\\ի\ͱq6#dmo\Beb]\?\\F\y\n{\Ғ( wD\!Ғ\\V x\0\)\7\\\Z\n1\\c>,.̉\Т\(\c\g\𹃏\\{\\'\\\\\\!33\> d\R\/c*\<%&yp\lUڏcܛa\\0\\\}Z\\Aplx\pƳl*\If!`Lx)XP\"cs\0=\\\I\\p\rKB?x\ a\3\\\\\&SWogh;1=BOo4\Vٹy1\r k1<\Çrg,Q\0m~\G\>$/?UЖ\L\\Xb<ѩiJ`\\KKi\\85\Zf\ԔļܬL\\Z\ȸs\Z}\ƍ\wp \p\(c\y>sX\\Φ\d\1\\g\D?\˽02`\$JlU\0}\^\\o*\ =\\\\ni+!$\ٳ.^hK\.huuu};&.vH-{zz@h\-YI@hz\\0EN=k뾥\!5|KU=~X\\c\\jP\\\۷eX\ri\&N\0֭[\'!q\\ާ$\s\2l=W2\[8M2=.] \4cuu-?k(];t萸mm\6z\\\r~a\>\na\\n`\|B3*AQ1 \ X\\I(\"\N \0\Pؘ H@X!\\1wн\6L\0]\l};VC\\]@_\\'8^PdG+9xRKR\r\\\\oh[\f\\1\^\"\1\r\𪘽]\\PKk*A\>X2\\: \p\aL\$Jp\r\\0VY\! `\\ވ\\\\\q\\Q3-&\.\vm`$\1\Z\\dN\N\g@._\BTz\\r\V\"4ˁVs[Z2&\'+\\|\}W\0\qhSl|b(\0\\\ \\&> >&c\i6\EJq\n2\\8vDHXVnh\ ʃ բ}\\\\\ӫ\^NM\B˭[d \ \kZ\\\Z0N\\ ,LW%[\\\γPx\\\0p\---T^^.\ƣ\r\̎g\b7< \=]˼h*\0E)\0!\\\\\qkg\r$ُxri\:hp\"\!f4D+\1!FѺ\ֵ|\\n\\\\cc\"[4֜x+\G \0@[n5C@g\}\'\1-5%<\n3\}\\\\+\AA \\\0\uiC\_\\v=w\ef!m9?紬\0*K;\"\ a\Zҹ\֘ɐ6\3SF*jEX\\Q\)\\\%\B\w\\ \\(L\\a\r\v\=_\BhZŘY@\\ZST\\nJ%$]z\k\\\\\^\=]\\0;WmW:{>E`#kb^g\r2@J\i\mVs\Sp% uuץ\%\Za\Z\\kCI\p_\\}f\\n\ܑ#TSS#\\j.\\b`\\\\RAZ[\g\x)ꏥ @Y\5\\r\\\S,\\xU\0XXcS3\7\\\"c5L\O?\֝\Zf={6\"mDЁt !G0@0<.!33f7\\1Z\\rN c5(\;\#砍&\>\\*hÊ\/(\a \%\"(\\!,LA)3\իW\z@tü\3qV+\z\-18qB\\0g\<3œ\D\\ew\,\( uB?\0\\n\0Y0\n\\ekn2]Jf֔\fuaW\\\\l(5ep\\0N.\\\ɳd&f;\\nXxY\\dQvfttىfN;v찭?gPx+\xF\\hP<1dg\U]U\0}%\ޏ\\02\Hp\2*\0\z](zaq\n2\\r\n!BQk\l\0\\wLEV{\T\Z\Ѕ~`\x}\2\ p\\0E!hp衄{\fPwavUT2>vu\\rE*ƴVRggx\Z0[\\'\R\\t\\!#%<@\\15\Z,\Vōu\\C\\ݻ\\@MfF`\bx\%RF\\^\0\\Xu\r}P\\.PQ\z\\Nr\{\SDq@(A\[PTLmwiD`0kW2֢\r\\\\Y_n0E\V\\ZĪ]<>p\2ϴ*\nHe~Q\Cz\\\\:M\\\hcP,\m\Z9C\\nEѭZ X\\\ c\*h\륛\Wh|\"*\"c\|~5XdvK\\\"\j\v\\i\\[:B\۹2\\\\7\Wʒ\\˱y\`Z\*˽\^\\\nc~y\<\ٱM\\_*B\\Z恵-\t)vBvѨ*pU\\Z|y\\e\P\\\"H\.\#YF x\0 q\0Jg(Y\;fɵW\S\\(  :\\-\0u\\\ A4`< F\\0[\;ib\+\0A)\NM҇~H\؁@K\0XT4\\Z6֠x\,\\0\\Z\Z*hfb\Tt۰\ZI+\4V\0,\)0֎\`\rb\\ݢ\\M 3+u\$\\\n޴Qv\\ܮ\\n\\\\\1\bt\Z*+YG\\0 \r\nnߴgxm\%UpPB\ es\Q\40\X\rs\\\yu \_7h\0T B\0\`]\k\\"T\8`\ \Nxh>^\\RK҇mpl\S#3 \ioDSF6^1iIBF\\'>d7++\\g)Bf\0Z\z6,~x\\no$u.\P~&\r>2vb\\n1v\\\^\[?GW\\\v7jWPЂ5+]d%\9\Za\i/\D\\\~\\iI c WW\\@y\E9 x,x(58Xʫ\\\.07X=U tE.c\':\Z\Gi.E!V\bA\R\\E\t چ\=0Xx.\\)@;\X.ܮ6T w2 6C\0\\Vz0*$z\(tthU\б@ \?\\۷o\ v\#pHnRs򨷽U\ގ\\n_8\\i\\DPeIz\\_Gť!\\2a*\@luHi\@O7\\t\eܧmӜ۸z\ޝz\}\Zb\޹\\"<@D<9|X랽!CP@\չ\fל\u\\\c\֮ǘP&\R^l[\ss\V`\02V\V\TvϭʋC\0MZ\\\έh\J*\>\xJ\^B\7\\\i\\}W\\\}\u;\Il\n\XN\\ܐBHḷ<.~\kj6\\\:\y\S.|\\NfA \j|\\ (\n$aܹ8?nv/\\*?|\rӖy`@T\cЖdlIe\\\\/ l\\\\?\Ą\ c\}%\y\ʱ0\\$\?m O\n\\0U|3?t\:ߣl;v\\d>\\r\1϶&&&]4]ނ\\rm\bkt2ӝ4]C$\\\\Of\p\"2M\\8\3A_\\0\0\0\0IENDB`'),(111,1,'Rackmountable_4U_server_2D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\0\0\0m\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0LIDATXGIo\\Y\ϫy\P\8\ǎ\;$/ 6DF\\r;VH[|\0Da[\Ďlj\$\x<\\\\խX-8\\\=\ \\4aSSS\\\ʇi ̂ FR\\NH$k!\Fma.Щڥ9\v\xAŮzаF_\\\\oD\` }`\\r\\E\Hh\\\F\\t: \\"\$\\j5w\>\mwg\\\\leuծ\\\\\\\\ښ\\ٙ\\\={\̮_nR\\n\\/\2---\\\'O\\UwgP\g\\_X\\ۿ\44,+1\\ݹs\...\\˗֨\\H%=Ŝ\\\wmgwצ\'\'2=Ukunw\oda\woS)OLh[LG\\]\\\ӟ\6^mZ&N\\'K\ɧZMFK>i_\\tf\'\\W\br\)/\\ё[\\\#~5+ٿ\\\7\\\\Q7[\=x\`peeŶm\΂Ţ\D{\\oe\\\\ S\\\"#p%)@<[5cV8\K\|\ZImh-\\ӭ-[[^g\\\׸ZmZ\k\v\Dx\r\۷o[\}}}zВ\<ذ\Y+˶%\w\\\\[gmݷbѮ^\d`\0\-M\\٩ݸa{{{-^\\Wy\" l\\W<\\퉻\\n8c\ݻwNP\&[/ \MPaɤ;0.-\ZXXp<?\F\\c@\0.KVVnT*N\7m``*\r\U\n\`\E\:v\m\.04~\\"^y#o\t$E^(?\@\\0g\\Ig>HIgR.\\'gR\Xk%,\G0\c{?Qij\nGG\Ε0`T\\\p\\\!waH\E.;99q\H% 9#!@V\\0\\"JVnݲ!x\Vɷ)@0\\>k^L^s0\±o\\Iu\\\;~q9Ae\zlx(.,N\^&\d\<][o@< u\\i(x(Fg8FlG%aP\\\1R\N\0\ %B\2\\\\p>D\³11\0%^j\nKgPx=/\9ێ0΃.K>@/,^D\8\\MѸ\*HH `ss3e\\\\\\\\vƒ\\\{\\ׯ_;>\Z\2m\'xѓ:g\Z\.<8@\EVb\4\J\\군b\\\ g8\\\\-\M(Ğ0\w?SB\>>>n\`N&\n\aA\ѫxQl%A\1\/Ex,\U\MZ\uC\\\Ԥ\\\]iQHPz\Sr^uw1Hfq;\ AM\\\E|\){ttTٱvR\:\\+W\\j\oF\*\EgIH\>|!F@7t\kDu)&{\rB\\E\+\\r\\+BXge@\\:\_ *\G\r^\\c\<\J\ O,|\7o\8\xB2\]\1\C\0o \A1`8L\\RqL(W\\ת5\cV (|\ZZ^ńƲ`掆ka\,~.$Ӫ\򼞪\\ PA&\BU4͊+):4>U \G=\! aB\"!ء|M5;\\v\Y ˕A\\{\\= A@\k6v\gn\W6\:\y^\4\"y^\\u\n \pW\D\ 0\\Fk\awUw{¬\_4\rxєpև\0ܽ\ww 9x3\ݿ̏\\= \20l\ ͒l9N,ۑb򔧼\\%/ .?&UqƏca-Ď\0`2\ \\9ߙC\].*f޾\޳|\9\%Hz+--\\\\\Ҳm\\222⚦O7wog\\geeaZ<3V%_w].q\D}\--/7\\~\\\4;;KO\\\\nA\pfJ)E\Zo)S\)qH\+\8=h\o\5\P0O;q$!s\\\:wf<O+{xxX(\;q.\\|o!y\\(;+\\\\loMܯY)pzB\\'=E\(\\\\L\\y\n!O!\0\\{cb\ZեEy\6\\'|\\\eT\0j j8{F~[6\LbA\\\q\]\\\\\y\\k\\ET\-\*a|GX\qPQQA\~Lg*>K\LD\\\0gsŃ)/?BGTT\<\ 1\r\Y*\!i\tB? \nD t\0pON\\"bEyd?{s™c]猦\{\=߸qC MN\'\2\Y\^V7Ι\" 8%\wޡA:=i%%Ʉ\޽{t\>sA[[0\\ե\'{t\\r\n\Q|@ݹs\SNX\w:\ݼyS\{9\n\\0\'\r8\H\Z(\\Z \\\+}!g(\ܠPxX\n\rV6/6=\n?b\\0\"WWW\d޺u+\\??fÖ́\lI_D*)NC8\\wTHq5J\JI54ə\\d3?{wk\\jꨌ5@\reH\\B \1R\\'\Z\!\\>\\\r\\\\\\[dȪr(e%#}\\Gq\i+RT!hUM\+Bz\Fd!4AP\|\㱛\9\\\rJ9\\7$ď߀HD\\\n\\\\NQ\١\㿑V6\n\F\*)酔LD\\-++|\ׯ#\\>x ~=rjLq\0\E\\\\S{\\ \\\0C E\ Un\\r\;|_zu\Bt\\\\\\9\!\\S\\\\\\7,\\qN0\0mp(+\\gh\\\#\\\^^\OAy`4\\\*:ԝ&aAɰh\t\0RQ*4cً\a\lZ\ؠC\\=mo3Y.\\0V\0\S<\9S$<\\\~ 3\F4 * \G\酝OE9\0rjO@+.(J\NV,H\ݻBn\FR\XR4lʇ\(\ocR\׮Pǣo\\\\\r> \ؤbyV}\(Y b\3@j\ s\\Ç$\iռX7d3$h\`\\Ȉ\\ht S\?6%$l\*x94\ZN5_;$3p\>A=*\Ng\#\0\\' \\q\n\n\ &ܵ8\)\ 0yAmx/9W\P.u5\E 㙹BT\i#\>dq\ B\f\}X;8 (\\\<ƙ ᵀ\\\(\q<\V{AT\\\<\\\\\\:@@ \\Y(\-\d(ZpS\n 0\s\\P \Ϟ=K \&@B\ \\q2\\rƳ:2AP H\nR_(/!\ 9RNTUZe0dP\\0\\\/#T,HA^(\\\OYa#aart\ \x\x3\\*V3ybP.hgyA\\P(L]}\rFQ\BUdyT&\x\\K\NbR\8^# +>C\\ #CÅ=*\M\ Vpl: \\\z\-9\Qc \n\8)C(l\n^mk\=\&\\\ŋ-H͛V\\U\\H\\@h 7]0ω΅}^z\r^\\\}\n˱?a!gWA\\#ȡ,\h\0\ɢYfqV>7`Y2&\\\f\\핈88\\'y\06zR\n\r\\\77QW ]\Nc\\S7\Ҩœ|OUjRS|H\kTrM\\16;$\fBl \ZZZR\\\׭~-\\̭\\\\\;\,ݖoxxX~\\\\\e\79W~|cH\i{t\\yf9`\\ECRR\d}y\k:\\\7\\\(þP(\\WG\o\\\3\ \Y\5\ \wuu\r\\n//;G\\0,:\:\p\Q}y\V\~z#JiCv\\\_|\\`\?Z\S\r.W\mMMM\3W\˗\\Oc\\s#V~Ge\S]]}\)ƍ \\Ў\\^4fǃz ñc\z~\>\-Z\ >\V!8p\S|>߇>\\\͛l\\\\\\\\n\Q:;:j9\\@ y\\ Tb\\\AԜ\\)[Z4ܕ\@b(y\ \\\K\p>\/>_\/\\dP?f`p@dh\\'A\>\Np1gdd944\\\\\ %\\^\C\\ꔮ\6\\,[T[Z긼}.2(;J~eL-gΜ\\\1)?}\=sω\'\k\9r\my\&\c4\\!\L8Q**+e\\\2k\,~\;\'\(\)S\\Ӧ\\r٨\Q[*cŒ\G\=\FZZ\G\s \>\*/\\~Eܜl\qH&M(ݏ\&{ሺ\/Z0OrʠʥUpQ\Z\oowuŠ/\\LJJʊR+V@\\ݻ\gߧL\r\4޿/.\\0\\P\թ\As\ml\.{W櫵\)*R z$Wjke52ZQyT֬^e~\\\^tuw\Z2\Z4\b\}N\:\\\U\\|\X,t\\a,LrŨzUUZ\\;w Rݮ F5(\\ٲr2y\W5֯]c\2gvd2\Rz횧\\fKfO:2\\N§ Eg\Z-\'0\\":צJnn\\h%\\3gLW\\4\bp3\n\ޝp\\EvEm\Q E A7,YD*#ݚ\3\\󟋦ҡ \\\Z]\mX^>WA\u\:$>x_:TinݮUVɊ\˥_\LJKKUȏU\ߖ;2L\\ Μ\==\gޏ0ava|\\\#\_V/^l\\UdTv\NIIM?\\\*\MU-6\\ٳSt\rh/:eR\\б`F\z\lWtlgL)\0ŪL^\F[/>\\^\\\\(\\\\r\r\r\\Q$\d\r|&)}*d4???O{\\ӫPHR}`h\M\U-3kR\\\[R\JO\Δm\r24(+N\I\\V\W>,\\cP\\R}\+\!EI\,\8\Q\m۶߱c\oSSS-+`\\65\0\Z/LŗNQ?\\WG|/\\V-#\s\\\h}\\{y\0\,_*m\KWkef#\I岾 _`\\\\4ѽ|WT4\G4A\Jɼ\\!)-Y(\5\\{\t=uW<{Z3\\5\Q\/t\\ \E\*@gGTTTzn\\\Ӟ\,Pa0jjj#e\\\}$\Z\5\P*~TAA\\\\\\FhnЁ{\\\\rB[\[1\0$iU\&\)6\pGe {- \⨩\r \h\\(\0t!\\j\g\\\\Z{\r\^\7Mlr\\…\o\\zp^\]r:\\0P&aH\ne\'\\\4\n 뇵Vn\ \f\>\F5\VI^ƽ׌32\\\WWA\"\"\0`\r2\\\K}\+rM\F\\Z^\5vO(0B̓z.`N\,Eb\\\^ZdCU=T\r\n/!\\g\^<\\(\0\=\\6lڈ+\%F~Mk>\7evW \=v޼y8\Zy@a75^g\7Ұp\\ZgMT9D^W6> %Ba\\ \Mt e\69\EE1.\0 \H\Z\EL\\;J\n\Z̚\\wn\k\Trj9~_21k\;͍N\={\&nj\%\rP\\\#%>6ާ:FP\\D\'2D\5F!\0KNI602\\h^A\qg]n\FǮ\ \Dt!\\"NJ) <\ڜ\nGJ#M\\"W\a\^&8\\4\.\\\մ\\Y=y\tM>{\' HqQ9/N1\\l,j\}\\whF\~F2Ң.r\\I*A\\Q֪‡\sM+\G\\Z>\\}m\L\nD\ڀ?Sf\r@\\uq\\ic\֬1H| \q^𡎴\\l}ż\(\\l\V1Ea\\ZH\˽{\ꎺ\\\\3\y>kn 9\hp\돉FA-\nUVVt\n\ \D`{r/\On m\nKJJL)\6b\q@\7\\8\b\\ThzF8\UA`X8G\c\',\rhf:; L\\\|G@\'LW\\R\ݸ>LByC>\\\\^ta\\\\rA2\=|W6\+9%\C1]^CN`aM\\nVlpa\'-c6% \YK2mbU):o(\\Z( C4k\։PA\$%\AP Ls8\0P,4-\'[fy\L,pnC\\p= \\x;l~\\\G5l0\'w1[}]o]\0\\(\0Aὗpm\f{zz\e\`ht0\v;py~\i>\\nl5C}IL\0kb\\y\&1`+KPiZ4,YT)*H0cfH\\r@ [m#ow{hֺysd\\%FQhXR\EI\\\\i%\AX\( x]L2\L{\X\G\\ B<\\:\0\\\\\\\0A\g\v5\\\\YQ\ކ:\Wf͝qO0\"\ \jyCaG\\p{/\<\\=3\x$?1hKD;k\|i\\\\(\Pj- Juu\\\P-h\N\i6\Ώ8\hze .\E\\z\Rs\w\\#F\b\rO\b{֒m3t\]8K\n\rsxfߑró\&\\\\lTqRL\Qyj#Q\'\\\\\\x\qNJAсЃ߶G\㍏?\ev\\\om\\Gnܸ\4]\,ZF\\0K5WMŁʓ\'MG\\ٳ@0^\ك\\\w\\k\-#&.>\s\\0\\nyH\V\'\\:e9WfK \0\/ 4=\K}\r~\\Y\6,\\\K%%\\\}t\\"G°\\\\"i\+в³\`\n.Ӟ(r+bٳf\Z F!\_^᳆\/[̳fPv[\'l\e{\' &\\(@k\\\\I\t\ϖRO\\Y!,\-_\\\lyt- \S*&\:U}\T\l\\@k{zmͫZ蕆.\C\?\Z\4\~w!\i\\\\^=\\"\x6զL,\⋾\^Q*H \^`i\sh8\r<|\rl5Ћc\3S,\ʕ+RXXh\\\\6ϝ\\\ɓ&\ɳ\LD\gm\\\0)VVyg\\C@\`iO˕|U\nR\\\\\~ \\\zn\"\-/)\\W\V\7\a]\8U\\\\Y\\t[ERcnUT8ϙ&cMss\J\ \/4ܦ\\.U\0\:ۂ7S=j\\-BXl\\9)*=nCE\bc\\t\)\z?\\U\7@ii\cզ!\rj|\p~6\\=tw5]\\!\\O\\'\\E( +1\|&\X\"OUin]\_\/z^XN\0\0\0\0IENDB`'),(114,1,'Rackmountable_4U_server_3D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\0\0\0p4\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 6IDATX\\XYoY>Uw{;\c;f @3&\F~\w\#\Z\\0\ag1\\n/\\[}\\ d\\oU\s\\\\l\Wa\s53\nǼ)l\\6`\\ۻ=\\m\x]K^\'\0\΀ONOO\\\zc5\Z\h4`o\\\wtm۟\_\7o\\\\aGe\>\\K.\\ݻvZ\ŝ;w~\ZO$0?+\\͒llm)`o\z~v\\{\ZNj \\h4*@ K\\\T\n\XեMMreB^|)\\YY~\Tz))\*\E8\1?\\Ʌ\\\wށ̚rr0\i\\gf\P$&\TPTIJl)L\'\4W$ \\\P9#(\\Ac\QaK~\.\"5\ \\)\;~\'dz\o\r\'\\Z%\\\Z^,UT{8,eӉ{\>\>>\\ \i$Q)\\\ p \A\\0T~vw\'\Qm:N;\ZAUN \"KY\\P\:\P===r Y~G\3[Oݴ\Oe1>8^\\\f\\\\" y k\0]4ٺh]tÀ\\̣+a*\\L\\'O\(\OM\qLhP\<3/\\n\\\SJj w*K\c\\0U*K\\\9\ODY ]歡\\0~^\d24zp?@!\S?\ZIz_Ia\dLF\7r1\ 2*\Ɖm \d4\V\ZNkJCe)ϗ]R\@1 e\~7[\ \{\PɱHt;=~U&5p\\\\{\\x\i*Ey \X\ͻheF\\\]ZV\ti\:`\\ R)_\\2@\\%DW~L&sVr9\\S(G\0\"z5\B\\`\\c\\\)G.b\\\aU\MG\2+\N2\\ \_yk&1\1\tk\h \a4]$\r\{8)\\\\Z*\\g cd7Pt\Zq\<\\H6x\p\HO\nwp5\\P^G\]>\\\w^\nnuּو\E_AD5\\!T;;%\}D:\\\B\\_\%A\~\Dݼ#[\X\\v\\@8N W5B={\2h=q0Y]Yg\\\g\\ \(\9 \rn~\؏\A«BmZQ\9y\r+\\ZF\0]ڮBDn\\͔RO-\\Jڲ8\ \D\ T4R0\0\Z\\\\Z q^\\&/\o_\k\\Z[T\\y͔,Հ\p/u~[XX\h}\O\>)Ii\rKd\Ct\C&`G\S}}\P8Ԅ3l\-=7njh\6\'\\¥Ɇ#ll㽅\WEݯ\x\\\rCM\.m\\nɲ&\g\\ \pp\v\\n;P\\\Hb\\(۔\^\V_KɢL\#\*l\\\|p\!t\E`~/[`\\}.\0\0\0\0IENDB`'),(115,1,'Rackmountable_4U_server_3D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0!\0\0\0&\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\09IDATh\\Z[oT\^\\m<\1\\f0`\5\4@JFRmj\\O\cVZ%Rܹ\\ a=c\\\35ggτ\$[dz\>{\.߷\>\\<\\\r\v\\Iry~\>A;\=S< \\\\eee2\i\\N\\Z\C|p\4\0\P阏J\ y\p\\\\7\\\-\ PSSS}\\\\ъ3e=kCΡ O\\n\\\ػwony\\\\e7dv,\\յ\\rp\\ɜc\cM\'\z\W\4cee\K.\r}c\\;ճX\\\\|%EWw\"0\m\{\\\\\i\\~\\o\\R5k\nD\x\n\nD\\\RK \9.999\{W\1\>)))\\i\r\`Zăxʡ***ey9,`S)2q ʤ\ X\ + /@,\\+F\ZrmqؔhJ\\\'&t..)-\\8횝!@a܈ P;?)˘s$x:\"\\+xYj6\(N7\U\\\\u\`8,AC\cSq\>Y\^裏ojr\׿E\ZcT\\0Ń*577\\JLrRZV*&u(^U^^.##\֛?u[\ x\\OHg\5\\nz: \P[+7\\s+}B\gk\\?\\Oހ1ƫ(H?\\\o7\8%WڮJYiz\\\69\kr|\gb\7\ٸW\nQ\Yx\r\mFYգ+i \ \nj\\Q+\`ֈ4\A?\S8<&\e\,.,&\r\\1\\q\SHh<7\0\\?\\!1 f \w\իW>z\Zz P\\כ\r\~o/\׮\e\nHpHگg\\˗O\\\\\r\\\\юh͖)\\\7$ {\D \'/Q(j\cogV\.*qO\\.\z㲴0/\7:d\\bC&2\!`-\03\r\^]\R`\c\aR\~YY\\\Ǐ˝;w]\}ÖQɓ\H\\2\\\4ή25>\\^\\\\\X[\kb\\V\LAq\\9.~Beq\\:\Zed8=zTv\ڥ\\H\\\ \".\\ٲV\\yyy*\N$l\\=\0[r\Z\\`\|BQn\U+y}\j\\ \\a\5Υ\j{,\\\ X\\0,b>\\"7\\N>\ror\\`0NLX\\+\5\E>x\=a\0\T<\\\w\\\\q\F\Ĉl۶M\\(^,Z=\\PY\\\uP:\\ \n)x\\VUU2\[TemݺU\c\2J\\\u\\ͮ.5vi\b\\edu\NQ|ŭa\Z\2ƊF\0n䨪K#3\"Z޵6\U\\n\)*`\E\\\헾\n\X2l>\򒴋w\\\\f\"!n\\5(;\\\\\ d\SQ¼\$\Dˊ\\jPDŽ \15i0M,\\\0cepႾc\n\\\_\nc.\\Ii \7!#ڈ<\4\\.;\:s\ ϝ\'؝F\bTR&\r\\ѡ\uk_\.\`K\?_9+sssH$Zd(\ xQ\ݻwU\P58䲹l\9\ B\9\\(@!o\\\\C˜hET:᭦a`ki07\"W bnF\1\ZBzV\Οw$\ \l\\嗧IxrjJ\rVYQBc\\n \\\\ͫS\޳Wr2e\QgCsrE\Z\ \:i\0\\9()\\_ !ȄS\\\Y4,=\y+Q\q\\֫Z\U\O\d*,\$N\\gTùm,\ \Y\xP\\" 6[\\`\FL\) \1\ԤA F@V\\+k8\0\@ <e,ŭ\=I\\sz4ﹹ\F\\l\\պ\Z%͛7\Q\Z3Ue\XWP\&\!YƦL\Mkסr5Y\\@i(\J[\\:d\X8\p\FV\1HZxO\c<\\{,\B\rdXt\* T\QeУv/ 1\r:c4eE0u#1\0\X, ε\\J`&A,Nx\y]\s\PϖJ\\\oXwe%#O,wIG\"Mʞ$3u\v\\8l-\\y\@v\Z\k\¼\\\\\Z\T}.\頊؋^\\"C\x߳s|uC:n\s \566j83\\"\'|\\\\\T#\@lot3/@>\sMMMr\Gtʴ\du4\\۷\]#S,\@\\"\xLo\Z\P\ƴ9]}\4<\eq9e\n\2O\ZLqE \=\H\͛d\\X\6\Y\NF-\0|˫!Y^Z\y&\̋\UϤ\ʼ\ݝ\8T.47\'(\\T2E&0U\\'\R\r`4wR3f\01;\v\E˳u\z 6A\D\\K?EƒM\\\C).*ԭ\\\\\z7{\iԠ\\O8dĈc1D\T,9\ZѩgE>_d5\\\#\\h\'hF\bd?\"e\"f\0UQ\8I\2\gA,\.\rx\\l٢f\"\ WU\\0&i^ʜNœ\y\E#ܙ\\}z\\K\/\\d2! #4\0w\\Ҏ\R `\\w%cg+\\\\\NWl\;L\aT*޹,(\'-Wڴ(:\ܢ^II\bwJMul\\J\+a\r\j\@tp\\;\n&F&\\\S#\Qw\\"=\C3\8FJ%\4<޿a\\0Wpa$Ĺ m\\\\k\򋇴.\\\S\6P\4<6ϪCF\#T\ݍk\vi\^/{\Z\Zge\i-˹Ϟ5u̬\70G\/hzcDB,MHT߾] 8E:T&\\28\<\hb\AD@TPԢ\Ai\r7\nu>v\(+s3s/*T }\QD5N(\\\\;:e\.sd4Q&?\\\ (\\ieۡlz\Z\034\n~`hZj\U$Az!\Q\\F~[>A`\\\ !\\6@\\Zf=\r% EO4u\0v~,\!\\r\\䉰\z9}=\\"\w;\L䡳\cbI\d.ޗ AK\08q\D\q*Uf@\\–Ee\\;w\\\\\4D ;Yk}\Gu\6\\\Hm4&\b\*\"!\PקP`b^N\\rPdzn\L+\\\\Zœ\\og\;.\rw\Z(C2)0\!8@#`T?FyZ \r?\\rsҘÿ \XZ\N89P$::\i\9t\V\ό\ps\⇛0)m&\\>(\ `H\\mBOjfG\N\\霉K\G\b{L:\負\y\X\\\\R2\\\r7\\V\`P3%g\\',\\\7\A9Qx d\\R8\:S\a\\3N Ad_8Nٍʻc\ZPk4\b\So*\x6>5\s/\\\I\i2\V\"\v\j\ zc]\240P \Ek@~\ѣ驩lk<\1^mۚ Y}}Y\\˕\\\\\\띝>\, Ԏ\\p_r3!!WU\0\0\0\0IENDB`'),(116,1,'Rackmountable_5U_server_2D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0,\0\0\0\^\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0RIDATx\\i]\u\\®IHh\}ߗ7o\ͪ\h\HBF\Z-hC2pb@a1dIlcqH\7\ʇ8_b$\**)DP\'\7\\\\\DS\\\}t\\t\I\ӑ#G74t\˃\+:tOCߚ6m\_7n?\3QJVVl޲E0o\\\\;wJIiܿk}\\-y \\/t\\\}r\\1ٽ{TUU\\yno\u\\\\[NL\e\\i6ɦ͛m\\u\L\{ϻ5uo\~9tɚ5k\}zi4\CdRU]#\HE+-s-XVV^g\\V\k%3R/{~ w?\\/_ʖw\Oe+:\A%Rm&]fCj\)8\A-\4W\+י\i\] \]\`[\Zں%\i\\ղ\9|A9t\\YB=RVU\'\`\\5RT\\*?}9s\9rT6mOΜ=+O=\C\\\\–\عK\"ј\Zۥ9\f\$646K\ܷKSs\\@Ν?/<\[H{\\\9Yz8-{\e\\%\\g%K:%g\\(}P7 \\'M?h+\Z\H\S>\mHΝ;/\\])?\\\\?\w\\zܖ=\\S\hf>j4w\\"y\\\\\ߗ]\ʣ\2m\\(x\y\\e՚~ X\N~\\\\e\y\K\-(\*(, a_l\I١z\yXj6G\\瞷J=b\0]t\y\%9BP⛿\-\wޓ/T\]|Y\_|Eο \_C\\~\\\H^\\\W^\r-_\\u\ju\-4M2\\&N\رc?5\|\\3o\\\KiY\\\KqI1\\s\'\\\H\n٤*^F1E\%\€*~_^Qi\a\k\\%7r[\5;\'\Cydy\5\Yբ\rk_;ܾ\pe\W\\ڲ\*\}\v+\Z,\74\\"\YM\\¾\n\\\\,ųe\\2Y\_j,aTzPy>bޏ^H\ZH%P奔\z5x(\{\_]۶}f\ E\\\Zs\VII\s\=b~XJKː \Z\\9s\Ȃ ,͟?\I\\\As\\um*m6>\0b\ʕ2{\\P\\\qRooo(\7яֶ6\b\~/a}#ؽlc4VV^}]A\5ˀU\]st2cƌ---3gʭޚ\0\q@\>i3\\n9`-W9t\\ \\0%`\5k\Xa\w\}235\U>`\ dӦM\rڅ߶m\Lp\\GM\0\>Sj\*Yb?\\ T\:l\0\;v\\Dq\ҥV :F\322\\߿h{8]\\\{姓 W\0OƷh\b\g]Vct\\}Jjj\ox0\\0:uS!7n\@\\\\ \"`\p\n \\\'O\6RS\%\'\'ǂ\\0:D v\֭\\~\6J! \êlذ\ \"\\\KuOmmmbEedfZ\0\]&o\\0;\\nr\#}&\2\\0]\7)\\\TVV&\\\\ j\I\iӦYduvv&PD\UΦg\M\\nٻwEEYKW\\0E \\\\\\\\~Z~}0\0\0\0, =#K\\;S\\Z\ jI\0\,] ~zE\\\Zc\Z I-R0YX\v\%l\v\\}\`M^\<23pƌcr\l\y~w-v}\P\8\\\0\ǵx\\\\oS\*\U]N\d\\r7\`\\\k]雫=\N\:L\gB[]\0c\\f\0p\]w%\0{\0\ ta\0JJJ\L\\Ѩ+\ZhE:B\\`\\ \r jr`\„O\pW9\\α\\0]u)W\\0\\Ǐ\)3+ێ܎.e\\#VBw\\\0@\\\'\0\\\V\\ht\0r\\%i\ƨ%V\\Z#~2[jlL܇i^oSRUuF\\\!W=\0\M\ZYc\A%:z)/>o Sk$N\r!\\\\myz]\\ï\L\I&%\0\5:\00~\\\eQ\R__\\Cߔ: \\ڵk-I(ǜQgxz k\\-//#A\hfW\\\\pMX\\G^\+2y\\\0@\\\c~\@(A/\0H\PRKK\\̖ 汢\YG(\-ׂ?&7M|\4Qsa>hDP!@]\\vd:\G0*W{d \*4\%\\>bf$n~a\\N+O\g\\j\\U\\\#\\\0rA\\\\'\0\0\Vh\0e#\0/Ԅ\":,Q\0*\04bE`\6-/ *\\\\I]\X\0V\!\\ؾ0\0_Y\\\ȕ6\7,1KVv\x㍶_J\&\U\0\0hh~\04\Z|\00f\w\0@1\ \Z:\*\A\0@\\ o\SX@| \\0 \\\\0?\0i(\Z\0\0ƨj\bk\0\'\\0`\=A :\ \0|\\ *{oH\xXG`\0\\\\f\ Ŝ@.k\\#M \r/g\\0\&\L \~\}\ݖ\'C4VA+s3~\BYr\\{\0\n\\jO4V\n\",n\r7aY\T\\,\0\\0\\\\?#p|\0&g2\b\0\h\"}93\F\D +> e9ۀ\Uuuu\\QYYe#oRhi\}\Z\\Iɣ-\ͱHkkZ[[D\wHKK7\\$R\ x\}ϖ8/O\aŽ.\0kt\\Vy3t„ W\00qM!XI!\~\z.Mc%\\\ZK,\0\\125bm\rඑ\$\0\1F\\\)\555\0\M@Fp\h* $\W]\A\l\\.Xڷo_b%Ӛjfi\RP\0I$\Y+\FD}N\D\\"\tC@Ќ;\\JL\\Xx\nkr\\*\\`V\\"\\"\0\\=\0ȪD^\0`.\jA\\Ǥo:(̵\01C07j\\\\Qn\0$\ BO\\\\"\3{\\u޽\0\Y\>}\\\E\\0\*\1\\0g!\:G\\0 \0\"dL \nB`A9>WW\\0JD0\N\MOϰi\e\V\UOo\nT&<-\\բ\0\0\0q eyU4>W{\0\\U\ \0ֺ\0\0st\09\\q\~\@jZk\m0Q$\0\\,Ob*Vb5\HLցZ\\'uC\\r\6&\"Ǣi,\0o1\\\\,&l|Nt\BC\0F\ ڣ\\\\"\\ \# UX_/\0]st\0J\\f`_\t\MO{@B~Q\\'s``0k=Ə\QL9\k\0y7\,\@X\u!\Jʉ٘aa2\-ʙ\CuPhخ)c\u7\Ud\2W9\0\]st\0*9lf\\cƌy\ \068R\\\>\"!\!\Lf-N\\\\\\9kAxJ\0`6\$\ljYj6ib>\"W !\+\\\\n\}R,?E}S\\"]KPs,0]ҍ\>\'\9_\\/\'\1 \0c\/\9\05\\+\\\c\E\0{נ@\v0zTW\WR_)fٌ\av`t\E\\*\\I\\c]X*z\\4g\\˝h\\r\/c]蛎>\\5MY!d\K7H\\ \\zE6\D\0\w.st\0\ZV\\\\0`\0f\rEǃH檃y\rZ\n&8҈\0\"|<)#\ӈ]\\" \p\r 7ccdž\A6\ai1I\R0`Wp9r\m\~\\\j\V\\\\;h/\0“\\04/\0?G\\ݧ\\!\ 33\F\tRO\H\\]\\\\ \\hAE0\\\j@Yʙ\ײĘu#\zn\0V\\n\k31x\5:G\\0\H\\ \w\0l\8\\\0\03\Hp\Bi_URQQ\\r\\1_abF\ɻO6B\Ē0\\ m\\ \0\H,DYd҅ u1\n\0t\x9:G\\0\9z\ \r\l\hma\]urs\\\ZW|\\=\-Ghl1f\\EO\\r\U\0\Dx\R\\r,/a!\\2rJ\ \0t-@O\\\0L\0\0_\\\#H\\<|4\G޺:2bb63\K&JAޣS\_J\6\GG04U,p7\*Y\5,L\\'ݟ\3\0NqkvL,› W,\\0\񇝢B\NbQN\c_)\0\-:F\\m\0h\0\71\0(\\D\\Z\\ [\n\0\<2\[\\gqa}V\ o\\'c\\0cm0\(\U\L\\0\b\\3|\76lAe9\08o\āt\01%\0to\\\\ɑ \F,\\]+o\*W\Z 3ۙaX\0`V\0\*\nE\ L-Q4<M\\\\r(\\]G\\\\_\\w\{`j3\0\dF?]u\03ǚ{3F\\ĭ\y\0xct\ѽ\0\A\y_Xb}\nVu\X@3\\|\Sǚ\;@\\\\\a9N\/\\5\/k\W\\\ex\ |F\\K\B\gסc\|j\\Xtm~|≅XMx{]#_A@\\\ <\0fz6t \( ?\\~L\ણ4\m\Qq5xg\xxeN\0\0\u\\0eJ{2e\\zw\5:G\)\ѱ\0SN\\zu!:\\\ݜ :\@)\Ϧ\0\W{\a\RS?\0g\0\0`%K\\\\0\\ff\ f*<\64 [\n\;\ B\b\"\0\t\!\*\068%K\\̔ʚFA\8\ZkJO\X\\o\\\~(=\6#|\Ý\BBU 4\\#\\O\ c ^\٣P\0 J|c \".\\\\Bc!\nѱ --\ݔiӦ\\"y8/ZU\Ȝܑ`\\J6,0a\p -\\\LD\a۽\6\K\O\\0\RN\\'ahj\\\\\\%dq\D[t\\\\s d ~m\\&\x̘1Y\{\\rǎ6\\J29\eӱ \\XM\} \\\6Yɗ\?Ȥ\O\_[t\9p#H\\0\0\0\0IENDB`'),(117,1,'Rackmountable_5U_server_2D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\0\0\0p4\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\n)IDATXG\O\\\Ǧr\\\/V\0f `\fvafa7\\q\\q\D\8v[)/*\;Z\\vUl\s\? Jt4\ݳ\\9\^\\\"\Ξ=\Fc/\\%3\溺gf\-/V\\\\lGg\\\\\ə=c=\Lftl|6\ޡ\\v\\\\ \μ\x|/\n\*?\Zfpp\\+\o\|<\\?\{6w\\\\cjhn\|\'yB\\\Xrş~W\\΄\\9/4\\\\\ \\C\޽;QS\$\\LΜ}G\K9?uAnNO˹wd|ܸqKF\&\ݫ?;ߕ\\\\Gr\9\\204\"\#r\\Q\\\c\O\O.\\\7nʧ\>S\\\G2\\|UN:#\'\\>dgU\Jwj@)@\"}1ɹ<)33?DO\Z[\21yT._)W>%W>%\^\o\{7n˽?J?\\ޟXMߕnߕ\W\\sOFF\M\6mt\\\\xV\\\"\rn&\\C\\Ij\Qj\\ZV\Zr\-RjU\\JMm\\5\֩|ꁰ.l+:\\\JWIf\tK{R\{}Ҭ߼1\j?ZF@p\;Z\Qik?\3rssa\ YY\\\\+\dR\"Qty\\ŋJd``@9A4hj%\\\ޞcǎ-\=*\σRQQaloX,͏CCC\\\䤼]Xhr4\\\)\'N0~\\}4\u/\UPP\\@ `y\Vijj2p_;t\4\fgg\޽{W\\qttt\\\\ehxXrrr\rÇX~Ϟ=F{$cê,\\\e6wO\\7WUW3S\\\Hq\|\LSCqFR\eu\\\RJEZ\u\\W.6\\˷ xN\;v\"gΜ\F_Z8 /̚=\\?a]Mɉ\'\\3\Ȓ7o\\"GӧO\R;/۶=\"\3\Z*\R^~T\6Ks\TYz\7\۹#䃌$m\)\\\%9rL^\\'\7\\Pm\`L\Z*]ˤs\2p\X\\f.Z!3YWJ\\\m\\e\~d\]\nyˠ2Zy\\99{\\ry\银&\6Y\}_\\V\\\lT9\\\iYr\\l߱K\;w^\\_$\\C?y\\v\ޫ\(ə/\\\\'dÆ\򦎭\kIiT\4I\\\\`\\i-\'\\ndM;\.O*\YЫ$YG={\?ctⅳr\\Z=\\K\K\卟-o\\\/\W乳\\\\\\\w%\\\[?\\^ \rbm\:\Ј#8p\:\efV\W%R^*)\\\\Z)))\Ҩ\WKZY,V%ee\R\\R*1+(,hEL\\+l<\Z3k\Z2L\\n\n\\\"OE?x`ѱ\*\\s\} +,*\\W \ZnPOm*\lɼxT\\uNwLVF\~&ill1kL\\oD\\\K\kT9\w` \`\cǾ.w\y\' w|D,X 4\\̝;7-[&\\\O\Zgꪳf\… e޼yi\&S\&O,]]]\?H\]xq\8d\\\;\\xMM̘1\\\c^www(O\\\ZǗ\ܹSUk֬1YSEް\!\\\\\eҤvQ\f+\`\322䮻\2 0\#G>(SNUVI<O\۷p8B\5H\0q\\\\kc0x\`J\={\Ȕ)S\\Ơ\0j׮]n\:\'\\\:\E~<\G\\\\\0x2!c\\n\`\\̼4\o\6>a=X?\\۷\ǂ:;;e\\v%6\\\O\He0l~f\\\5)n{\iӦi\5S23*\n\ע\0d\n{\\ݻm/|\ jr5=\n\\\%&\*X\r\$j;j!\\\I/\5\\R퍩.A}\k\ \\7zdjBM\\<\|\r_\Uty\\\r\r\r YٹL%U̙3\'i\\Xu>hq\\\IX8l\C\!0I|`8\ *w+\'7O{*\\x\0\{\\\IwuBZ\n]Bq\\%&\\ߟ]=\k?\Zf\.H\y\\ul\n\\\]Kh3z\h2d%( l\0M\"u<{x)j\k\%wP?\ٿ\\\A6\&\hդWQQ hʣɤ\&AѨ\\\\֤\`\?544jW^]pv\\a\ܗswTUUmsTӇZ*\yV%\J£^e\\\K\ \`\{\wڕ%&\\`ah7\ \q׈y\ \\\\\\\~0/#\;\k\'qD܄/!H\q\?\<܃\Y\\#l-\\8!\ȌW\}\\\\(`+B<\\C ÇB \X\߈\0(؇_?#\j\`#ƕ1Ɠ \\$\1sC6b\`Zq\VW]\\"\#Ķ\Zp\ \\0*Ul\X:</R & W\\ƃ\|*\"p\a\\}t|\J]\9 .))OM_<\9q֦X3ؿ\\\zaL3v\\4 K \\h\5K$!XµN0Ila\\\')%L\ \\\\r/\8\\3>\&T0f\bi\f\\%?kɍ\\\\Ku\\s\G\(\3ѝ8Lw\\[5\\"?uUH\\Mtl8,\/ՁK;:FK\\pΑ|K\0<\\ @\v\VV\$\0\k\n,\v +\\sO\.\\01\K\t\ɠA\rg\\{넵dq\p[:\\;\$p\\w_Jg\L\\b;~\hqD\e\rq\_\Z\\0\}cf?`P\05\z\n\\N؎PnV\R4&\'QHKMN\\;=ɍ$;\\'[#\\icU\\u28\$16z\A\\\\$Ƿ\\\:\R;\e^%{9%v\'>_\` \ \}ĚHBh\tD\\]\$L\>7K\\\\\$VY9\I-rB\!\\\_oo\\d\'W΍\\c\?L`>\7혔o.D\}>\\ls!>\W\tXI\\\L\p]K\(}`\\Z\9\W\n bڴi?*\\\^:u\\\\(W\\Yشi\;v\;;;\m\vٺu\U\\E\۷r\%22+[\ZgIs\\n4i+p\\Ν/9y2o\t3CTVN+Vɼy\5\ʗŋ\ʕX;͕\\7jX ˖-\\+`\oZoj\4),*v_t\\Ȣŋ]?\i\\\3$`,_\,\\\䎊@^{h_\\up,P\~{\D9Z6Z\\\H\s\RټE/\'G\\%\r\ٚ\\)mCa yq=\\Im\,w\\x\\J@n\\\iҼvշo\\SeLi\w\\u\_p\e\=\\{r\\Ν\_|If\5ȩS/\{\\%e\b\E8pࠜ?<\\\J\\k\[o\\\CG~e\\\GQ.3g\8,o^)\}\}\-\˧Oaɫ*\\lٲMz\\ӱc\d~\\\sx\\Rl%@ՔFf\\\\\$9R\'C\]\_\\Է\I\\ISgȪ\dզ\A\5`\NYkزKց\\\\N\\\'O8\\~ܱ}Æ`\Ɲ{\\O}BNzYz\%ٱ\\\'S\\Ze\޻.\0{\\p\\\2J p\\ \=|\\r\\yy\uFΔ\?\\v\\#\\\ʞ94͞\yŕmj\*<+;v\\?pH\8\\_X^\r9\۲ac9\+;z\P}Ioh\jټU~\#\F\\\晟ɛoQ/\\uԕQg\\͎x(y\,p<{\ܳk/F\*徺BYQ[%-$\pmJ\\ҼjYy\\\\\\\g\'\SOg_n\ko\\{\'\\\Yy\i5\V<\\\^<-^yC\~\Ky\\A?<\Hǽo߾ \0Ii{\W^v\\\Si`ddfIի\:\\\~\\zIVv\Zp\\QQҽ_hSu\wjԺ\fˤj\~ΜyZ/_RViyFYv\Pw30+c\ƒ%\d͚uR:\\9ݽ9I |\\\#^\åo߾Enդ^\\y\;\M\𖃻\ W$f\Ҭtvn{]d&j\\\4%JLl\+\\\̌\ckl\\\Ga4xpb~zG\0͜937n\Dc:tH>\4y-**r\n\\\\*\\\\\L(\Wh۔e\\\/w\}\R]E\|\\\X\\\G\8\ncǎݻw;;u S\\$99\\\D3c#Ӟ\>x\\;wF\0l\\\ѣL\\x\ȠAu)̹*:\3.@xSS\"@\S?B\rsڳ\\+\a\\>$@!\|\Ό\G]G\\؉1b\C\0NW---h\\"o{x\0\\ӗ0\H@fWƉ9OJMM>̝;W\\\g\nǽ:b\n\Z ߧۖ(-QG\Q.3,5-]n\&3f\u0֥xf93 \\\\0r\y\DŽ;\<@\\\n0իW;o\+ \\/ X6F1\[bkl\!\|\Ħ rG\IFFۗ2\\\\(eh\ݯ_?wq\(\D<\\ C\n\y請\#\nߨ>A\0Ƨ\ב8\KYG\\n&gN\튍\I+>w\d w\  ++Gg\\P\\Jh{jZΌ\8Kڡ(\n\%Ѓ\\cv;Yam ^VR\\\sqB;i\\\}O*/?l?nWl#Ɓϙ DKe2s̮ٕ\\1\ǫte;\t ؛\'[d\\ Q\K!-\nװr0Lsb\"m@f : \b(\\/ۤ%U rN@&On\QDQ\\\3f\\\g,#mO#@\ɩ.{\'Vs>\JL\\PYȜ8\\\z`\\6y\r\}@l\\\ѣ\\fh\\̸v\\\]\=3CX0\\\=B\*\ $HNq;d\\0\\[g\ oYb \m=KȢ\QQ\,\K]G\\C\/\4}aQ\QN\\\>\,̑\@|[0i\m\0\}\\!@zII\WaU\s11\kIHp-:t.\,\0\\\yd&Sf۸a |\WN: XLQd\y88 \ \< \N<9SQ\k\ɩ\40\,\0\"Pn\"9\0Yʆ\"\\ \Z\:\u\`KЎ\=(\\\ow\>\\92˹f%q\\jqE(wl\lgge+\/\\\7e\錃M[\[2s\@\I\YMx6\+!Hff#ᇥggȳƅ\32I\"\Q\\\-6\\\\C2uk\/1\"Źwr\0\I\€+\:\`9\ \@\U\z\o\D\s~v\0\0q\z\J\;\0(Gpw\/\Xg%n ۑ\ \0\l\dt\ \r\\()Cam\=\ɥ^\n; Bgy(3\bu\FL&s+\\\2\{\)\0B@\bclͱ=!\\"#%\\Rl\W=\O)r\P\w;\u\\w{Q\\\ +\\h\\8[v#But9\\\\n-t<[.\cdG\V?\ӑލ\0L\iHfe[\F\0l\9\\\6\$@~Ac\r_\MԥOsa\Ԩkc\dŮn_rq\ c\6qpq<njg\\_d[\x\ħ\0\0RAB_{3\k\;a&\Ɣ\\\A`cl\\\t]8Jtۣ\\@gdbޕ>*\P0z\UYZ\Zӊ\\kұ\nwk߶x.kov\,Ꚛ]{\$l\ŏHNueCh\\Ar<\\\0+.\d\ 1Ʀ\\% Ue~T\\\\\\r\n\\\n6IbT҆\\\K\!68w\\\Z\y\\WmҎKі\\\r7!fT\mI`\\Ğ} ^\o$h\\\iN\$*qFg%ߔC2\2Lj<\r3`[l\[;\{\Ad\\9F\\\}\ʞ\ \%\0bx\\5\t%.{ \0g l\"E]J$]O\Z@X\^Kň\\WάN$\0y#\'#\\=\06ƘhjG\0lL8ԕ8\j8\\\\j\v!\w\cGrSgw\Q}\ռwg\\0}F6lUu]\n\sV\R\ha?ڋbuM͖]A3@t\\kϼ=Yf9\v\0-1l\r-6f \\;\PbA\\<\*Y]]\]\\\\\\nT\\T\\'^3\排\Դ4\\\ǒ(n\\#Ju\ư\Q\"\Cd\45\v\\#\\\\jw\z3jQ\>\8HMˌSL\E\N&ʴs\\\sL\v!\bcl\\XŬ\Y\ա>L*\O y\\Zڮ\\յC\8`\\\\%6~\k\\ܔvF\\s&f\\x\\Z\|c\\@m/qa\s\S\d\v`ZDWS<KM#\0Ş\\"+u\\\0Y9y\eJu\\\\iWE\UQߒ9Cx8p \'\䨳wb;\\#k\o\\P<\\EBv* \\?*\0&}\0ƘY\\M\t\O\|\\+^k7)CG\0\\\'l\\0\~q`T~s],;\U/g\\u\f\\`\\l|v\\v\\\[0|u\\pK針RFΑ\\ >~\0\m\mcD\DF\Z8\\\\Zc{~\W| `\2첞ezg\-k\֪=\d/3`[\" |2@|\'%\\\\D\2/č {0QPv~\ \-\05 \\`sl\\0d+]\YZ1\z\\;asl\\$.\p\,O\ٳ\G&Hg\w\fSK\\\>\L\f\\UTNe \\\z \~7#u d\\7|Q\BgC\'\tV;m1\\\\0_\\c\r\0\0\0\0IENDB`'),(120,1,'Rackmountable_5U_server_3D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\Z\0\0\0|ZO\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\n%IDATXŘIL\\۶HVĶ\0\h0/\\\\rf3\,\\;\\`{DdK\\\[r{r4d4ωŁJ\\\\\xb˚ \_꽪z\><\"\y\\AE\\\\n\T\]E\o\Z\u=cǎ\?~\3 \֠k~b]\\}\\\Uů\B,t\KAFF\\\ϊ\)biii_\D\"***\\ߏ\*\\r孡\m\\#H\\\&`llfl|\i<>\|$>*/ \_\\\3\cxd\w/M\\\\\\\8\\\c.kRT\\\"|\+)\\\R\+\\G˵kò-7dzz\<\\\C3\"w̼O<ʪ\Z3L\:z-&?\M֮!9\\ǤQj\Z:hOb\\\r{PZ{elfAnmIo|B\X1\"\ʷ\{_\\u:u\ȑ#罹~TV^\ߕu\;24eY\\0\r˃G\?0l\\\\\7%\\{_P,y|\\q[M\\\#ݍA\ؼ-3:w\K8\\"> \\l@j;J\;S(?q\N\rcf^&Ni\SEY)k\\\L\/\\>\\\\\-\\\Ȟ\w\=\\\?\8p`H5\\\VF]]]\\ۛ\\\\\\\_ \KGG\\\\\\\А&\'.\pX:;;9\\\ѷ6 RU]c\w\\\'Z&\'\'edd\́\H xN\\\\\\\˗\z6%E\\\\\"LX 677%looKR9nܸ$\\\ָw\\\~]\n\n\nLB\z\\\Ic\f\̬l\Y\\qcqqь\|>`%v\\T;I@Jj\Z\n\ݣu\\\"-6P˾ܢ;9:6f2l\JK\\q\B\\\\Le\ ]\ZLMm46CoM\v\6\rd@˨\4\\\n;\\\r{{G\>\\^23{~\'\Vlݒ9v\]\P\]@\Z;\'q(LX;ʈyu}D\beX\rcmm͔H7nj\VcemK\0F---?\STT\L\ܼ܎ \2\իW͂u\r\\IC]\Zvn\\ԯ6\"Sn=\KLb\K\r{)O\\\l\lx\\\ fb\\\\z\n\4C~@JjgѼ BFn\qxIIaA( \#1p$x\im˔ʵu\\\?p\d|\\_֤|%jӐl>8$\3\3\]ib%fb߯1q&ѥ \Q얕;wlu\9h\T:\n\2\\0J2\֣tL\2\\S\0\@\0\r/ht\`{.%@p\n\^rz\01; \nc\TS\0=,Cۍ`EEr\Xsӏ\\2\q>\=}{~gj\0\6##\ɳգ\iA\l9\\5 ;{t~\\G\\)14\r\@R;r\QCs\+\.\\\i.Q\C 4?X&ʬ\\"[N .\\\9?\f\osz\'\\>s\P\ee@c\ `BNev#3ȥf=\8rzѾ\.ۆ\-pnnN\\`%i\`$s[5\Rc\\\3{\&\=a\0]˃f$\@+Y[[/z6\ \\ =Ο?os\\xgeJ$G0\5Ir\Z񅤻\ \_\\'3++q \'??LdnjP\NHy2\r\I,/0\K\h\\Ň\P\ $N\Z\N\wN!g\\\\**\zn;\&\\\ fb ~jp\l\\כَυJO\ %m tu\\jgv\q]\2\07`g`\\\\\1ievF ?H;n\`Ճ!\}\KX\e@\\?W\si&C/\\\y\n63g\$ud{a.L\\ $8q\J\Kg (<\^\\->\U\=ڼD\sؔ?4\uh\P{\g\\4k\\,[W\ U\:ޢ\>wqs9\n:\OQcg\\Ae愾 s\ 9S\\Ƀ\WNDyC\\\EL\\4Fb%fbCpC\"[\\0,[ 0\\ wˬcKcMSt\\Noe\N\/>\ =+s\nXF\/\^_& ^\kmm\\\\I\Zzܭ\\쌹\k\\\\M\z\\\\\\\\Bˉ;\Yc\U,\"gΜp]\\\\\U9s\\a3\\Kfm?~\\N8)=\\\[n\G\\ӧg\s\\\|\\\U\w*d<\#++G\*y.xHj\[\j \ˤ%a\i\7?(0\\\7߃ڦye\i7\\]O:A\\5Y\}㈼}\\\\\0hw\`u߰\\\O\\X\rA\+\1ѳO\\L\_นK>\\孷Ⱦ\\]=rAe8yJ\\i\6\/(Q\ o2\Z\'\ZB;\\"\\\\{\g3@uE6 kyr |xN\\\\\\r\\y9\·\\|$~\{\\ypI>4\>߻}\E>\s9{鲬\\\#\\?\nrm\}\\\\_N8\Km255\VvN.\xsvNJn^\\JzYvvy\9Oۋ\\G\\\H!ިx\i?ʶ\Kc\\\7sK(;\kV!_\ϟ]vɒ%K\׬Y#*C\ZJ\۷O$3e\]444\n3\<(%6y\ݻWl\bH㴊LQWW7\H\[__\\\\\\\c\ILJ6\\\|cC\8]}bо>il\\\\r8j`p\Ci\\ \\\\w,s\!G\\f\2a\bKU0\n4\n~1((,~\\\G;0O\Iad\w{ic\a|k b\X\3ʖSJSS\玅/kX\a7 v#\\\\0\52\>NIs\̉tHKϐ2-pEEEz¼3|\'**\R\\MWؕ*F\\\\8\9\W\\\`+4\kkúc ʿ\VOF\\\\\\[\'\Ӟn&\\NQ#\\(_vM\ GRm\3śza\.H\\rʨ x5:cCw\\X\i\m\)X?N\F6\`\r#\}\̙3\\Cjj\X\\2\\mk\`\5\\"B\˫b\\or1\\:\K?\\Z0b\ q\\z9\:\/V3\0\\\9\\\\\0鐜nJX/8L\L\x\f2\\&M2\'l\\-%\\'\!mD/\\0lb\\[\q\n\PvF\\Y?ޏݱ\q\\ITa\" \p\DQ\\0I)sE\\\ȁd 6^}P)5aK\v0 \\lE\Z\Z5\"Jǁ>\#}bb\n\i˹ \?@\\n\\sQ\0))ib]\\ؠL+\\\MLL2\0\c|\\v\\\69\ |}\:\\\\0\5}iC\W\}\X<\Gˆ\\2x\\\Ue\I.)G_\z\\0W\\\5\6at;/O\\n=d\\\aP\'Nljj6\KD\W!\Wy\\ND(,\'\J\\JG\!M\ׯ s/Q\5r\X\W\IYA\3\r%a\8\5\}\\0.\\\\6\w$\i\!j:e#>\\\\_:\x=\\s\ĉMqcᾱx+/\n\}!\\>c\0~P@dҎc\A6$\u\\\MHH2\McqLH\\G}G\U\\1\\;\G @q\\2M\\\U讦2\w\񔕏G^^TͯZ\(R\: sŕ\YPlѣDa:gh8s\j\tn#\wu-\\Փ\\oXWnȍl\\WF\\lp\h8\\#x\\64\\H<[ x\_r\\5&~ȱE\"\ \\7\\ׯ\njH)\09xp\\o \\>{#\^\\㲲\F ;\rM\r\n\\39\W\\\C\>ɕ+Bܾ>,ВǍ1I\A&gȢ\\"\*\,D\\\mQFD\TK\nqǒ\}E\\<\Yc\s\'|\|\O\\\+\\t{ g0\\$\r\"\0O<%\\}\B<\\ \\`fq\f\\\\c(\b oC֏c\O\rt\r\'BD\\M8\=\Es0Q\޽]P\\ev, \$G1<\\g&\\t\`\0;\'[_3%\\\,\"\nq%\96Wn;$Ҿ?@\q?90\\^Y\{ \\Ԍ &| \p\r\p\ut\ܹsPb\IP\j՚?i\\hm]|mKݸ,\\\zCO7n.Ze\M[d\қ\J\M=\@ʽm\\-=\\Z\\\00 4\[\0\0\0\0IENDB`'),(122,1,'Router_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0v\0\0\0\0\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0+dIDATx\\}x\\յ\\{z\,wӌ `\r)R/!pB JH1?\\O6\ؖe\\{/\4}%y$\3p;3sg\\u\Z{\s\\L\\{\`y\\ǿ\\֑\\\C]}\\.\d\0\70$M\0 @CK`W\0T2\0~oyaQ`\0\\\!\0\\?]R\0\Fem㾿\\0@\Z\K\0C\\p\Z\\0 @S[\\\K\0Q \\[UM41>\d+\0\:\008 PQ x<\0_)[Z^\\\p\\r.\&\=\\l,-9\<#\0\;O\0\0\\W\0x{xl\\\Ed\d2\\f!\\co\"|V\_\LK-\0в \\%a\T\7\{\\\\0mF\2|^\".\\@\\0؏@\0axn2\\\\l@\\0[B\0P(Gi\__\\\0]ݫ&}\o<\m \\\\\yJ:53\n\0x\\0`X\Z5_g\0\\\\'\LG0w!ѣ\>F\y:A1}\i\yLF3\r*TTY76\'-p\\%\0j4\rZ`ph8AA)gR0m|0\^\{}Ӻ\G\e\0(\\0PQ\ \0<T=mcAg\x\\!V\7\?V(\z\\\,\\L!LJ\'J*\\\\"j\\\HS)=>F\z:Q\\N\NUҐRIaA %\@ZNc0\\7\K+\֛\\fD;$\\ l\\݈-s:9\rMm\ɑ\rq<%>֯ȢH\\Tb d$\\\4\n Ξ~\\rN\\Hi 1L~\4PTT^ \q\H\Ie\\ &|\\3ߪ\ \x^#\\\=s@6=\0\\\\uݵ\y\\Ķ\Z.\\xQ)}t5\]\\\tZ2>W։\z\\+R\\rϭk!,%\\0/#2@.N\\\E_*\f\^^npD\bdrP )a\nsL=\0\\\\\\00Վk\\"\0w\ocflY:pە\d\ \\\>=\\@\ s߄YɁ\\ũ2:_@m]E\\Z\"2biDh\\PA1\ \2TJ\WRUGG \\%\"*\\x\\ ᔑMNT\ZV\H:HJ$\0-<?\Js\1+\\l\\س_׳=2\0\ \0( bpr7yv\8ڲi\rf^u\\(s\\\"\5x|Kɺ2\6a\ Fh\\\2 \\[ޟRz%\.\3`\i\xI_\"j1`U`\l?YZ-P.%!B5rh \Il#5>n4d&EaK\޿g%BBdCTQ\J>\0Cr,\H\\`\_\܇0\^\\X\_?\y^\0\S\뻆yo\-;)1.Z?O= *\O}V~^K0btznq7^A\1˄;V\\F L\+1\@F|>z\T?Rt\C\\\At̃y|7\\G @\a \\\ryٔ\:\g2\=gy\)\n\\(\ Ta#sx*\[D1=KG. )<\\\(3!YhWsi-э\rE7\җ\\C\}viDB\[rt-3_\"o&)\r\(6&~\x RD5Z2u~u1t\sta\J\\\.\GN_(tae%0@ \\XB\0M&\NU\,,s}\d$\\tEQ d\ZL\=}\r\k0%DѰZE%\*\"K\0\(13)\D6Q&\t\\A~Bb\\Zdɉ\f\\ƙ\z{Z\G~o\0\\oܸQ\j\\\\r\\~\\\\0{\r9\st>Iϴ\\1\z_sWR@{4mW\\\\\\Kݿ٪!=pkA\b;?E\nF\2?!\u?n\\D\x\J\E\\[ ?nl\|+-O\BP$\r *G D >\0\\sŰZ;{y\\\\@_\KOU\\&M\1\Y\\;(\\0—\\>qn/\yw\\a\\O\\0\\ommu4\Zk/޲-\o\\7\ST\zT\0\\ \\\w鱵II!y 0\]\Z\e\$ګ{\\9\.A\\%\Wd$#\\r\\ˈ/\3w\\t\n\n\\a\n3NI/PrUC+-,CD Y8\\,rȁwA\\40TSr\\$\Rx?@o\\ʤ\0\Mֶ\\\E`\`pZ\0j629\G\\\)\}x\\\J2ј)U[\@*κb\]{\e8\\d\̷\0\D\\EoZ\\0x\\\r69\'\Wѕ\Z`\N\"?\_-\j9c \j3%\ZA\Xo9H\\ܹ\\\?\~G\@6\B\"%e&G\\\G0$\F\nž\\\ǃ]\*uB\Zx0\Ĭ7!\|-c\@Q5tKA\0\\z#\0\\e\\ Zf >\4]N\\}B\{ <$<\\>p\\=u:]\K\\\v>\0\\\\\\~z\\q\0\\<\DO\EW\Z\Jr \\0`w\}/4t\%[~\\\\V\\\~\\\/\_;_ D/\0𭾻)[\%RT 9-\\\0VrAN*48@TH\{OP:>)\Yw\09-LB>o{/n\04\D3[p/\Ci\\0g\0e\0\n\\\(fLL\Ӂ\Z|~Ze\0 t\Z\Z\\\lq//\s\0@H\q\0\E\JG\0\we\\\Co}}\nO\\$%~?qz\\\\*jm>>da.|]^zA䠋\n!@@Ys\\Ś{{S^V2*5j\\3>);S\0~\\`\玡\\Cbfsꗉt\ 2\@#\\\E\\\~,?\Z \8\c\\n\\}C&p\刽\\'\2H$A9\\vF\F\9W\0\\F\:ҏ\n\\\0<\{R˔\0~L\\U\0\\(\"⣛4$\\t;\r\%/sg\\\\Iu-\\"h)\\[\"sF\ZSF6tU\r-B\\/\\ \ɩ_$?72(,\_*k;\\r+\\\\=\%\\\\"\\?\0)\\O?6\r\0x)w\\\\\\\\F\ـnQ\9+\\\r\,\m6\*$\\G\HJ\0?T\\nhm\\jrny\\\@\M\hF\Rr\\rc i^}r\rI;z^\\\FQ$\ZB M;\\|\<\S@\2o餣H\rYʸ\"=AP8\\\\ٻ:s\(bƒ1\fij\\l\/\07i/X \K\'L9P*\\0CN[`/PXX(\n\nr4 x3O\\7\"*&;5#\NO\\\0\1웜\\\\\WiH\/\0p{\C\\0Ӧ\\r}?\00JؠW(8?\}?N\:L.\´\\"Q7:r\&\\Md =%Vţ`\\r*1\b\KM$\'JO E\(rw\8_\\. UzB%EE^2\*^;\0\nG6\"\\`-v\h25 \0\hNJ\\\'\/Rj\\\Z\ \7g,_\؄\N\N~`L;R\H*\ʻ\0ӳF2\0x]\0?\n\0H\x\\\\ܦ_Cr|\\\ՓM{m*BϺ\L\r!W\09\]5C+r\ghD&\\\\\\Z\TXZ\(\\\\@\\\}tU\\"-Le\k\P\0\Z?i\\zD=F\5\\\,j\RHG\x\lP^^\\Epp\\\\\)\\n )X\ &lfz*\n^\b\3\0FiGw\0&*k\+\0\\y\\\0σ՞QViSO!_O?&22\K|ሇ \r)\PA\zv\>0b\\dE(\p:>{\\j\\\A:b\\\ek\0\P\0\\m\\9Fq\{Yw\6\ T\\\>ȇ6- ̋\\=\zd!ey^\w|[~kFqXG}\3\0R4t\c\0p\0\0\\8\(\0BƧ)2є\\(<\ZnǬ\NJ^1Iɱ4P\\\\PDM}\ ՋNjbMYm\\#C\\Al\!n\p\\\+D~hn\ )Y&z!\\\|#\\za\DY\A\99;;3,d\\mJM͸\\\5dj\\\ ؏\4ԧ3\\\)\0YIW\*\07zPE\\\0|`OԽ:Sωϓu/\ o3y\o8J/k_O\%J5ֵ^N\\GR~zzd 3ITj#`~=^\"\\ \G`OVԉ\hi8/H\\\\\#B9\\N\\ɔ/\\\\45|׿\dMWM.7\"[>xӥyOf iM\\\r\\5x\\0\\0P\02†_\uF\0\.n\kh_\\殜RY2;(\+\\\\抴2PDt/wZLѡb\\Eo\\z\_\hs\W<\ 9\\`z\0\\\|\+V\- ӵSeAPp\Е+\ZA@M\\Z\'W\C\z\Z\\0\|\\\0^n\t\ \0x\ \0T\O\\/|m\fcF+\M\aթ\G(ʕ>D\\ݡ\+3F+~pv]Fűe\ǝ/c\\\vt\{\л\̀.t\PQT\>2נ\\tT_Y7 G\'${(??`\\\DL^L:\l\r\u\\\o\$\a j \\T۹\\\U\0@!\0P\s\\$ \0|sp7mPl\0PʆE۹\\@_ɚ\4\\㔎\@*ϭ^^2}\\0\\\ihm\O#SC\\\;\\V[O3ƹ{QIdYHMM\;f7\# >))k\\\\0-\0\\߈\/QMǝ8\#\0P\\k\\08\\\\"\0j\]ORUU5u\\\em@\j0V68V75\qY?\Y \\WT\!\TOc\l r0\\\\ꆪ\\\Zm+\zf~\y\0ÜM\\\ؠUf))B0]z\e\ssopus\9\˅(\dF\=\ZYOp{ܷҵw\J\\\0\_\0 Ъ+zz\a>:;M\( \Km\n>MyE5u\\\l֦\ߧ[\@Ru\V}\\\S\aR5 Et`)) olzWbR򥘕\3\S0M#\|=Q \@\byW1!SȽr\hԺ;\\'\\\KO\0v&\ZkY5mS0%5Ϋ;Zw6}o\{w\"\]\\\yCC5\Hms`!0 \Blll\eWl\\Za\h3\b\b\L\@r^\Ku\\TZV\\MSb\Θs|\@wWIkC\g\V\|\{1\jZ\W \9\ts\dKI{^y\\\A\7n\\n A \0\y\Z\\\=R9~0\8QXD`Tj;[\f&6\ *;j\k\\z\ǾL\\\UC\Y?v\+ةFh399q?d\\\g\\|\\\\i&\-\`\x\`(ZGN6W \n>~\RQϡxc\c:\HWk\\}enN|^A\ؘ\Uc\Vo:뿲\\n\\%ekw\)66.W*I{\[\UQ\n\n\n8[|\Lg?URJE%L_\03\L!\ɑ\\㽝\G\\:\ &\A\X*Gp\X\\\ʘ\\ \0t\Z\!\VZr\\\\\ \0鄔S_\\Rf2KeNӱ@Um\;.\\Z2V\6/0KjȁT \\|ضr\\ٻ\`OuWW.<<\8۬\`k\fǎ+VYs\bQt\0\4R\\(\'\-\\\Oή\A.6\T#hMjUK_{ˁ\yA\\6\...Z\;`K/0088\]7^F&K3\0\n\\?:R]\\\\\r--rq\\\\\\ւ?L~\`\\ruwR \q\Y\9\\\\q33y\<\0l\4rIe!;{y\\\v\\\\\I 2\n]S^[\b[_ 9@&U\r\\\:\,}&DqC\V{\\\g9 \:`g\\x_m\ŗn޲\\\\k1Č=\oՔ\4Xj\ҙ\ -5\\\Zrk?f\،\ \n\0H\Zt\M\\K\n\0\:\\R#X:\7\\}m^ު\r\Ţ\\u j L_9\g\S\Ӷ+?\iT\\\́\\\jN\\\K\0v\Z\\w_\o\o]\\[5\u.g[\\Y\MFfF1X`z\\\禍RT[x111\F\d\\W\\\\k\\\\\-7\\0s\f&9 ^V\ \\\ʷ\\nw><\繐\:Ͽ5f\̋9\\0\\itrr\n\;\t\#N \\0ح)\0jӧfVSU\b\뛸|\T\}6x\n\r\M\h\_ \0\v\\nw\Z_\\\\޹#+;+s\P\\[ Zc6\Z\\Hg1xg[\V\0\\\\\\r6E\2W\\n\0kS\0ʬQ\k\\ k\s>kϦ\\\0`K/^\u\\{\l\z\\\\RD\0Wָ\tݽ\Ԑ f\<81\<\\{-:Ϩ\\\-\0f\4ap9[>\\\?{\ݶչr\l\?\0Dt\Œ\\Lz\ZQ~b6\ZBKݾ\ޢ\`+b\\\5\0+)s0\\E\\\\\G\D\\0 R~Cj6\I \rS>\<\W\\\0f\4\{W\r\\t\Mw\ڵ\\\\s\M\\b\r\Zt\I\G\\\X\\uF.\"q5\{\\z\%r\%\6\0`\"|\F\A\~3\\.\;\f\0\/+`F^ YH\\\{\:###~\9k\u\q\\\d\Mu8G;o42g|\b\\\\0X$Y\i\%i۶m[gϞ+|N3eqe\4\d6F\\;|6y\0l3\\"L;\0z X\4ID\0 aw\u\e[n] \p\yӞjoP\`֗b+[)f=p\999\rYĪa\pLFe˖\\[~\ť\ D\ĺ{^\\\\#璻``x\\-F.\"1+`f\\\ \8s|yUeIGU9v\0|\&t\Z\\\ހӸa=\o\ȹn\\\0#X:u\\]1\9kbbJ\r\ڼ\ij20\\\0xa\\^7ץ\v\0,AY\_PG\w\%2\n\\%\v\0\\F\\SK\\\r_\v\0\0\0\0IENDB`'),(123,1,'Router_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\}\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATH\mH\U\\\>\\\4C0{|9\Z\Ԉ\\\\h/\"7\\!\#d\֪;Tb+\N\\{\{\^脕Nyw~\s~\Á\\Z]~ٻí\\a\DSYM\UOO\\koum\y٦Ye\0\0\y\\\_^\\\\#PO\D>`\r\0\Wx!\dZp(qOQA\\\\\{\{Xu\0q\0\ih`T@.ȡ4^\`\s,//\\\O\?u\ ~m\LccG\08R*d<<\\ d$0ycm!^C,ρRVA\F$\x\|+rXaXw\0ƉW\TUe\\'\\Tj6~s\"%l\D.\yh@\C%QgAJ \\#8\n\l&}\.tttp\Z㕶׵\`{>\uk(~ <PJ\"\"p\"!\PJ!\\\@c#BK0A\k<̚<%e[\wLz`\L\(c\\Gk\\dJiDR X\\0\r\Pj R2 x\ _\D\"\=t\\\ Mq^d16e\\\\\0 `AC\d\-)DEi1lӄR\n< 1D6@!h\\r\0\\,,;m{ư`N\\2j\\nT`\ b(.đ\\p}l Ʌ$,˂m\p f禷\0+N\N:\\5\WUUJ+@dT\Ptk2\0\| ]? 8\Dfa{frP\"Xp{\Z\0\\;gN766-++]ׅ\\f\gwE]_k LǶom\0J%g_t\\\Z\*\͝\\nn\e[\Wa\\'Tz\tlT\\3?}\Z\ׂhO{{\Z\Z\Z\\ZCD \0H 7\ -\\"C\zZ:?GeϦM\x0Jc\ȍ \羺 `Rf$Y=n~|>V ҭ%⁀\kFV\Z|U F\\\ѿ X\\V\9\\o~wdϮdf\&!Zev\r.^ F :jN 9i008 /Fއd2SS y@a ;-5\ʀ\V<\d\tz\O\"\\W\=\\E\vl\X\\\\?S盠ס\h4p\\s \`VV:h#1 ހ@(A˜@<\AJ\kȲ\0\s`\k\(:3\TE\R\\t#͖z\r:i\_TXu0wn\G\"\]6@\U7hy\r\\d ~H2\\Xh\C͂ Аl\d$j`,\>J=4 :|0sR9 DQ\!\ܗđsC{5aٮ \\\\\Ip\\0Q \\`S{wWqKg;[\zhX $}H#\\xAdH\\ AU\n Ab\0QT\5$V\P\\\p Lk#\\\B)\\,Dz~g~~\`I\~-[f$>c\!tRTѩ\Z}G\9ooS\~HJҏ\0\`\C\0\BA-h -,\" 3gڒGH6\"H\\p?W~D\N\\Rm”*++\Idh\Z+ `-\0A\\ͻ\r \\X\aɬE\ZUNR#.\\\\\0Չ\X\\2lh/n\&8\Z-*\Q\\gϞ8s\o\\n:zh?\\YH\4\0\\J\\\šU\ A\\uVI \"p~Q(,\n\r\r\[CMzPnfgF\U/#J@\jY\| c\ːy׮] \\&i\d\\dր z\^0\HA_S^\ݓ\"տ\nfc3똃\\* \K28j\I)E\`\Ap\rDCͲ\\aV\PA$ÑO\TWZ/\\ŋ_\5 \8\\0ESy\f\Ν;IIKQ\\5o?\k,N\n^@\Z\BW\\\"Pȅd)ܜʥ%t\]@q~FuOT\\\vjl\r\\1x@\ݣwZ[\,((\\\|XQ)u~i\3ϬX\\yy\\\YV\pK,\ࣇЛ\n\\X4)\\K\48x=\k7[\\)lb?J *ng_c\7\\@4አ!D=\\"!K\̪\˿b-ݖ\Z\'A:\\\\\M\\v\ ˆ\"!zZn68A \?4\\\\8\\zO\"Βo}}4f)\ UkkQ\l\\%Km0 v՚\0)}+V p\X\HG\\\\Zo\\˴HU\y\\]k}\\rI\*\QBH@=b܇˛\GتL\g\\޽#O.@Dh*\\BDD z;+++p?L;VUU\:d\Xe˖m۶=33\DWW\-Y>M\Q\9sFRЦ\A7V)\rfXJ\\\\\\|8+8\>\r\\T\\X $\\n\CIh~\\ۧb\'B Z9N\f x|/\'\FqP&\0\0\0\0IENDB`'),(125,1,'Router_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0;\0\0\0ˌ\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATh\\[ p\~\=94Ǻ[dl\6\6K;\bSa\\M-\*v`wa+ e\b\'1,c\Be[FF\Z\\\h\>\uϡ\X6|uO\\\\\\\\\"oՍ\щ\'_z\7\\\t\0R\d\\JA\\]| \۔;21\\U\0yHO8\\{\\\[\.[qكY\0\n+\\\q,\\\\N(\̈́œ\ H|\\n>\\)µ(\hTTd\=\\򲳊\OF\9+|z,t\r Byq$\Ǣ\\<5#J>N.\\@?\\nJ&C\2>\\R\\\'\ۡҲ_8\G1?g\spP+13\a\D\y}\\EyY\0\R.eĔ\NՂd@#:\rɶ\\0c\j\eL\d-\G!2B4!N8\0 9 O Qr\M_H\M/[\\\J\Р9+bٕ,+v=\\\ćG?HjW\c\ \rFJF\а#\\RY`kM \\O\Z!Zʲ1F{GM\^#\Z`$d$AiԸ\0\}&\\\2S`S\to8\ K\ ^D\&2*8<4s ms VK\\Zytl\=2\\%\"\Z ]P\^ FY7\O\3_\%bM\ЭMI A\Z@\b\n)eTFbA 2R@^ 2\<=n%3\ʗU\0q疎\\\\\\\fz[\WE2N<ə\jJ.\+8^\\\\ \\\,DqjB\Lw\5G\'\G\ʃ\\w\RJ J\\\\\7\\\J豜\n zT@LAVq]^&\b Yj$$aI\\'FU\\\\~DQ)4\K-KC\Զ\{^[V#iMbbtLLZU%H\OK\+\1\;\̀\*x$\(\j1\\\\W}DFȝ9\\(\\t\#\t gQ 0/3:zMb+A\S0`B**regBp8`\\4 I_5\\Ҷ0^\\YɲV\\*jzpp\̟s?r:\C\&Ԑ&QAg?I\S8D&\#?\R1\,\\?H#\\|\-^\\;D 켾{t*\\Ĺ\\J\r\\\\I\F\2bZ\il8\:$O\~\ɐI`\oўw\\.6ݻ\'r\ \2(jr#]\^G\](L4񆫟7\>4#\?y?\\\5\\\;Lb7\~Z\VyW0\+\\\e歋Qc\' \0\pMT-Kd\:\{\5wd̨\\cG繏4W3s\=\9\)A\\=D\"\?/\wVV\\\\\s\ \>\\\0D\\\Y\D\\\ڎ\\0.Xz\0\)\T\e\0P\\L\'.\\0\^ &\0\Z[(\d\e\0P\\B\'\\C_vkj\\V\\\[R\0p\\%?\o\0u4NZکJ\\[\ʖ\V\=Yv\/\@#PV\\%^\F9 K6\\\A\'\\\Рh\݋\0@Y\\,-\0,\Y\\\0\:yXz\0\y9\'Kk\`\ן^Z\0X\@\/\G1\.%E\+K\r\0\F]\r\\ \t\\n.,\\a\A`\\+\\0y\\6\\?o7\\ֽx\\g\Ü\"_߇\\ &\2t\׏}\0o\6\0\\}\${\&\h\,\X\b˒\\?Dn.sxľG\Z\!@H7zd׮]\ ``h\3]0\0vضaۃ\F||q2۠:ʫ\\2\Z\Z\[\P\\82<2\\\\捶.D S\\Qr>\0 p z\\0X\\ۭ\|&w\8S\5|\\xA 垪 g\'GZD)\QTݠ`~b \\+\S|T\Qc^񦞧i\\\G`hD\#\\\ywքĬ\CLu:=<\=I\#jZo_D#j5CTՓܑV&ҊX\Tp nJ\p\TXQCNrJ#;\\cNzL\\'j( 9hg\y\]w\\\\S;\\wׯY\\ \!p9\\Mv/,%/wWڴ:\\c\+(,؟\gPLD@\q\\\rJK&6\+zE;:S:\ESs[#r\\\g\sFMƃ?\xo\T\0#Q*,ҽ\\྇\b1I\MjRb~\\R;ǹ\\hZ:_\\r?2:JWgp\#*.3V\ڴ\D>WDUu\nJu%\0\`BR\ci ]PZC\\8DJZB F:UYOu@_Z\\ ǐry2U\k̐\\\\ЈS\#\Q.A\=80I\$\]}U\ՙk\\\~\\\\:r}h\U0P U\\\\\}*̀$\EP1v$P­MO\?2FETJWg\K\j\hpd\\A7\CAy\ru\PBdv\"@MG\ƴ7 .\^p\]\\]\\\T\\\\Oy\4\0\rcmn- *?\/dCf\h5\\Օ\)\?\ncd\\k3ysu 4\ iE\ێ\B\ZZ:(&|>\'}G=J$S\ӂj\7&DR\ӦN*\y\\29*n\n \\0R\\\}dN\tBW}Qc2~J\\\SpONi\ <ܪw\!\\o\lݸ\\z\\q\m\o^\=\o\ ٗ(!& \K*xVA\\P%\U.4eu\n\IK$O7G3r\\A<\\护ER^?̖\nnj%O7JUc\Z\#%Ex£3ͭx\Ao>\Dբ\0<\\S\0 E4-$g@ 錃*\o^)zUT>\\#\\\v \\x|:\y(d)AN\?\\\\sG}K<;V% 6S\Z\F\n 𣕈7g.=\0~(4?Ey{pz G\\\\VȐ;/WYTQ\BrGJ %&<\8\\M&\\0\r\K\s`Ki\L C$SREaq\\'\\՝ 7T\\"\AԱRjJH\rjp6e\"\'\\G!?*$5Hʙ02(`_HBX@FrY\\\e\'el\0\ZD\Zy!C\n\^\\BR GC*)\R)-\T^\~\0\xD @ga\mJ)S\0a\\G^z\0\'&&\]3KgAzf\Ѱ^Ln\Pp\,\W\zǻX[]\w\rTT\ѣ\\\\Kˍ\}Gh:+9 +S\\T\Q\\nT3\㨻):\\\S!5-ݐ\ZȟGK\2*GU-\ϋ\`!\r. \Sh$z\4*\rpMBrDi\\-\O\^J\nn\\\{\\i\0񣢢\[o\\'\G4ԁ\Ξ\\eߣ{\R==_R>GGB>嚾\Ǵ\\_M\r\ذڸ*|\y\\'N=NIH5Y\Z\\r )Ws/ceih/\">$R\"IN0dj\\8O\mC\ʣ\G/ \\\?\\B\B\IL\S:{n=jDP\'0\Ʀ`\\͛%*\ \ps5\\"Gz0l\p̧aq?]7t;}\0T/Dg\-PGn\\\\_R\ w\\'\k\D\8 &I1\\yhƤvv|62\\HƅG(\\]*J\0\\y\0)\*#(*$!}U\dg\'ˤs\'\*)\\\0kpڏ;0/\\4\0\\t\0\Z\[\O\<\I\\ho\T*?A*\0]=\=~A8=\\n9hc\\~*PuÀJ\\ѐ4^N\aR\\\I\V$q#Ha\\>\Zbcrym3Vfr,d\K\!7f1\+\r9cFMι \Q,\r \8@e\r^lT\\@\N z6k\|\'m$DqM\\ŧk\Z ;D\j2B\|ngMzfVD\t\\\[\Zi\F൶Ct\5\: Oy=n\t-E5N/{k7_n`\PL\2ڀ\\r|\aT_/c9J^DkW#)\\z:\\\J\DH K\ L) L, 2\z\\\\\\@3߀Y[6q\n+Ht\q\'h4/<\\i9`\\ݒ\\ZT*\\nXK\\\\s\"‡jA &HK\\\E\ն\\^!LaO)9\93\\Tҟ|2\\[$H\\\\n\n\ހ(`ej6rCiM#ń-C$hDTP[W/<>w\JY\r\֡ZbՏ#\F9s\ Z\CQd\O\k\ Zڱ|c4\Zx\%\xAhƴ_|z\0V~<\\\+svvv7 ~\\+vFD\\d\3\O<^\\e\\\s\0Ap\ePH\\1E\\\U\]CviBD>\"\3h#\A\\\e0|lxE \\q\T#%\x6\re3DA` QPa\\^ǒp=:\\V촷\\\ߐ\\ a&_$\Zw\9\\'\Z\/=\\PѮ]\\\\\\"9B\\\\q\\\r\\@ϐ\$͠\F锬t\\\\B9`C$\buZj۟4{\.1\0Z@\ࡕTX\\k}VB:I\}j\\8\\ 0|%\\\\\\\j$97<+M[T\\\H\r/E]\\i\\\\%Q4\\ɂe\\$\_<\j#6$Z\\\ܽB\S\22\\\{uIbP^\~\8\\\\'\2\OT\\nP\\"y8R_\$JG&jo/\Fc8QPƻ`\#I\Ɋ)*ꛑKim\r\S\W|d\ 3(E\#\\\}uݧ$\BC(\r&\#&*ƟF\g\;\\d4\A\\\r\Z헚\\\Ĥ}NNN\\Z5\D\?k\\\\`\ϨL\\"P\\*y\@rH92\^~z\;~r%/Q\>m]\ZځW:l> \>\AYn\E\(#\y`hYt\<\>8\78@c\DܸE!V瞾[`\|k¬ACnGlj8T* ^eӝ\Q;\\\wzx\\\)\\O7y\\&\0\0I&UR\͔~lL8\}X8\C\ao7i>\#/7WڐLnnN\ P\4!\"DZ\nQ4u\r`\if\U0߄ʆ݃\?00!73 \0S\\\UVV\Z`{a\EIYbc\nwwwZ튞\7 q-\F\\%c&>4f>>\n\*Z\\0o\Q\0\\0p/9D=D\\1BG)R\\\@?x\\t\\\0\k\\}\24?Sg3k\\ZB^\\\4S\0X1WPF>,\\\8\\\'|[ʤ,R\t:9%\\Wddf\sus&{3u\_j\G\T\;\\\\r\Kk\J \\}\0?uk\Mpc6k[%\W7QvmEF\3S7:[\vw\`\\Z\%WEk;T\\\-&&0*{8Y\>L:\\TTd\\\}AS4oߝ\\\Wl\\\]2\R@\&39;>L\\_H*\\ \\}\lB#\h}\UWUգ\Z\:>*$/=F]ļ\\\4R\\\fSK uv\\a1-idk\0D4<4P\?44)o,\Z%YB\\ݰ\^u\\}a\p]ƐO:c \r\(!\g_IY*H\\\P\[t,;\ff.\"SqeY\'Ι\\\o޵8Znio\&\Z=E\`K\\j\ښ\\\\\{\\\n\Ծ\\l:{Cg\\\\\r)ii\6mrw\4\f2X`6\Ҙ.\ZP.F\r\Z\ݧ{ˡ\rk3I\#ب)9&T;\\,.\-\T^UM\mƳ㋊kk{:ZO+\Z\j1h4\Z5\#Kw\\\Lo,躛v\Z\Q\貐5\;Ӆ\>sUUN\\(c{Nߨ%\|iy5wu鳛3c4ԯj\\\\\\\ZF\JjѣGM„\\\\\S{777vw\0r\\[~Ibg\'\s[4d\ڃ!\@\h/\\H\\r:\UH\\NzC\\fTU\om\ 9J>Ӣ\4\\p\\\ \Zs%\;R\'\\\SR\Wn\ gBYh456\Z;;\;\R#5khVP\6\(\UňNOGIW);۾\\\\n&7k7}p,88X\JNo\\\\|`7N6xu7ܸaӦ,WWWga\. Q9\\YF\\\\\\\Q.`d0{o-!\a\\9\\\\5dF\\߉׬\d:hi\_\M\Raa\\\\\\z?TN\)iW )\\\\\7L}-.ڔ_W\ \\G\F);KM3\뜑  cᆾֿ\ZtZVV4\X}6--\h\\/$4\0\\\\rKHH\֬;\#\"\\\\\M\\\\0\;\ܢb[Y\\ zm\@O\ߴSM;\0(!7CTajh:w`S. x\\m\,O//\H\\\\ko\\v\\\VNNO_/&2\FO \\0z\y\A\\\(J?\\\_Ԟ9\@y\z\\@?\mk֮\n\i?뎌ynrێ\\.e\Z53\\rJgI.\\`h\yح\Z\\|\\Eަߔ9\pttt\'y\"\"\"p\\OHHb˔֥\: \\v\nmW&\F16\\A\y\\\9`{\BuWz\\%_\^v\\Wo\}kV\bg:oڥ\\镉82\nm\V5A3\\Zs\\\$e#\rȒi\\\ڷo\\[^-wrr/L\Z=\pC\\0L7\\\KȷzW\r\\y\|\E`\P,L\ǷX\"\r撞\0\{Tlu%Kd6\\\ῘƺI~s\K|ˡӲ\W\\\Gwޙ\Z`Mzh\\M-\'-vfcY;W/\e\⡡!mff\\\u0\r(%o\޽{oڹs\5nn3g&\0hir)\\"\[l\YYc\=؆\`B\͓k\\u^\\\H:\\ Fr6nܘ\\O\dR;\+|N\z :? dX\a,v\?v[.\\{\5:::x\0\r\08N f\נʾ\4sZ`.\\0\r(?\v\w\\gϞk)N\0F.!aP*\"\)fx68cIM+\r\B0\HQz`\1[n\\~s[&%C\تԤ\c\\kG_tRn.\0̷-$555e@Iim\s\68\օw\\\KcK\0`m9ϽPѰ\\\\E\\\GL\uu$\0Xi\|f2i\j6ohh`K6\;\03G\Z% OOO\\\5 `a\\/PH/\Ed\wN\0\0\0\0IENDB`'),(127,1,'Router_symbol_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0I\0\0\0\\.\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\\IDATx\\] U\鞞%%\d!  \ \E}\\= (`X\ b\ɢ! \$3\d23\\3Vޮ\u\Vu\dZ9w~\\\[IQgY\\>\\\5i\5ɵP\\lQlcc>;p݉@\\ O\~L\kKo-\[^(rYɺ|50쓓;M_\\\\*!:\6;$I\"m\`\7[Nr>Ӱ-T[hI\0a\\R+I5^l\r6\\&\0\\{\]S\~.\v\n\,l.[\0i\\"&J\\`vf?0\'\KO2\\6o\\Nlo\拸ß}_\0\\=ex\YŸv\ @\YZ1X\\D.^\փNO\w/H*Rk RBH\|\~p\?5\}UIi[͑\.) +\SD0\0̷SkwQ/J?\Z\̚\d[\ \\\߬^\07\\ZwT/\\\\8!!\\\pdE0s\\Z8\\\; ~\nl\0\" |C\!( \\m\\:*\n B\S\vSx4\nNJ‚\\(e儌D\;\상!Gp\\ \pf`&\s \톂<(a\f\\\\\\\֡!\z0\$\l}kp\|=\'%~|\\ecU\' \\#\\\%gCn \(\\8_Tb\\'v\ \\X ll֓d\up%\\rD\0\nRˮ(+Y3<wi\}pǨ\r\\"I0\7\}[\'\x\\J\Eq<!/\6 \\Rg\1\\0\O\\\{\H J֚e$\\\\0m;\\\ q8\]X\;xe\g3N\n\#}Fj \\l`}Ob\O\\\E8\\ @}]\lnBW\)b\ZOyb\\ xo\.\m\wt\0\ L5\u\\TOvt\\\\\\\.\e0.\~\\\ew5\\\0۬\\,?\\}Q\\pΕw\;\O\zl\\Ep2vX,.EG[\a:\Nә\\^A%fnEEϥ\O\\AQ\?Q\rl{\s{v]r\'\%\\X?\އW\;\\Rô\h`̴\~ 31DD\\\\\BYI,\\n5\eLl\ $m}\x\׿$`S:!R$!\Ü\ip\@Rzm\\\\0<\}A\\0\n\\s\\yԣ\~\*\\b28IbJ R@D\0hJx\Z\\'ߖVzvv\<\gc[Ú\0\\\G\4勗shCX\0V/\0i/$\\\Q|QO[{hޜ\\3\r\ꏁA\/®=G\S\}\a\`>zZRȌw\\o\\\x\f C`5p\_g&Y\( 0\\ji\\0\iAG\n\3ttv_M{V\!Ɋ \a\Yp\Y\Vg\g\\~\0\hB2%AXb\r\r\ =\\kޚt<\o\ \Y0~+2\ \'\\\-0\rE!I=n& \\Z|\\y\WH4%\\8\ PWU\z&~f3u\VKZKІGP=\7ف$q\P8\h\\\o\\1X\^<\0i\H1$\IE\\$}N\'j\'*\nlk\\NK<y\\yi\'p^{\]\<@\\\\(\0\B \b\\0QW(vD\GH\A\\ IV\rq]}\\_\4\?\\W֌큯+gȴVҹ\}R^\g\:бۭvvXB\Z\=V$\\\{\\\Iz\&q\^|\\\\\\\h|]@\Jf$`k\\{2\\\Ĩ =\~oX\"iK=\\;s\\h\f0^[r\\/;i}\O~Yg\<`xSB\5y bu\-5\\zXh>92\0ol\\n1 \&IHh4\ECD\E$R\t\3m\\c\E\\ZÃ\0Ɛ\\kl4\\[o\…\0\r66̙!CQ~s&8\rEH\\\w\0\~w<\ Ca\^@\W]~)\\Z\hzB\Q\!&\4\\\4\@ \0\ \044~\c-M#` \o֗\\'\0ҵO\O}A8*rբ\unSd9PtvIQ>\0і@#ֽ\\vx\\-p>\Ң\\uť\ڏu!׿ã\v{$l\"\DJR=\0C@\y\\w-]\@ B\-\\\\ck\\ZY C\@\r)\VRk\'@\,\# AݻěLZI\]:?%^P70\\0֠s\ \\\۾\\I#@\\\<\\nXt\\"\r\@5q\\\\v\\tMzk+J`႙tI6\\\嵷\rWI\UE7K{E>\y-\E &D޾= S\O\}`^8d!\C\\o2\x<7\\}\\P\\Rl\\\Lk\\J\\%\v8\ۡij5i_ݰ \ൡg\\y~>p٧\)]Dz\\77O\0\\0B\ l3\.Y\\oO.puÔ)S\k\c2\\\\e\<. >\\tR\D\\\wLW$0L\d\\ 79\9PQ^<)s(\ڼ\r{aFI/JA\C]\04_n<D\"P\AQ\\֞z\;?6\\\\ױ\z\p饗 \X̸1\1#fy\\x\\ Ͽ`ξ}\^\\\ٻV$-b\\\n\dc:l\n\n&N$\;`W[\'Bt\C7\ \\Ÿ)oy\\\O\0 d\1$\;q\\\pŕW@Uenh⅝)YxgpY\!//wGf\PK\z\K\\\r\0ńp\ H\*\\r\3>\977qő\[-L\n\\m\r\ؙv\\$CA(@:\<ԋǃ\ tM\`w\G_\\GWhnۍ$5`wjV6\\V7ͻ\\\_\r\[ZZ`ɅKL^ӔO\I+s\tƎ7UD΂ \\G#=ޫ;||\\\\]ÚgqY=\y\\d><\{\F,ۂ\\\Z\\l6pґ/L>\r\bhjjt\T\\\rSUL\n|Jf}7ُ\I5A$]A\D70\r\=\\MgK\\-#5\\t$HQ\\l%OA\\&TQ?\9Вl3I^/%i`.zf\\n-PWW陋\q} 2(_(\"A9F Y{)}mz\\8-\\K)\-\\.tT~xi$ڨ^@ \\ >b9d\`\l@\o<:i\"$ׁ\\Q\cx\\Z\`$(\ ϑ@D+AxF\!m@N\\0\m WI\_\qbH\~*4\C*Eئն|:W0h\kɐ|/st9Baa!}\n\E7f :eEg%\'\d632<\ B_\QF#T\\\:\e\\H2VS۟~\~TI`\0K\0M\{ԘO/V[ai\\ssCŧdQ>md`\\\ \:`\" :\L͋\ߒbM#u \h(\Ct\\Z\)M \'X3Q: &\\<\$Y&\xկ ~\n>\\0%\\\\n\̰\kz/G+2xtǓ\\0|><> R D\\\IǓ\T\|0*ql\w\X8hYSf\07!I\0S\e\o \\0`\O\Kf\^%\0k$\\Wc>\(SI@\@AIU\\`Ai k\\$H\dю\\nEZ\~+bʍy\.\Ɏ&\\\ds\tn_r~_]6\#t[\$x춒5 ^6+Xt\\ﻀ́!S)T/@\\k\O/g*lWX֐M[3o\f\d\\Aߩd2YD֬9/$w^\83\u\&~ Fz \F\{X,s\S\_\0a\\0K\07\Y\`WPR3V^@/Yd\$ \\\+^\\K]\@\\\ކ\'\\c\\#_U 0zV` \\"\0\\/*>;\kÚ}b2\'=\\hA5Z8\\C\X\χ˴P\#\Ͻ\\\t)\nU\\@BB\\\n\5\1<7) /\0y\\t\0y@3@x+3\'\"\<\\ 7ܓI0 ,A\\r\\K\y\\\@\ZB (VB\\@hJ}xmXY(yq\Z\e$\ \\X\si\0&&\0|+@6z?\\s.\\\3! b\\L\7\hru]\\u{|\S\7pg\~Q:(\\ gі!\s\%&\Ɍ Rä T\}\ƭ_}T\0Ԛ[k?Z\r@KK\쀼\\ն̰z\-\\\o,\Ǒm\Ǣmi\0 `Boafىtp\nO\0fHOך7\!&A|%\Ɍib|\0 zv\E 4P*\\}rH p!\2\"\7/\=)fd\@щR\]\F\~|\\"8Q@\nt\ J\bȱ\S[gs \L]\kk\0|\Z;;a\ri @oKb\o^g0\&̈E\\\k\\\0 @ .F j#ELZ8E%E\n0\W4N U퀘IYi5\0ܞd\/~\Slztcc#ly\ow\vw\e_7d2M\\\ڈ\P@/7a:+ \e`1̋Eތul\ %EQdF0+L R\ل\\}๷֯[-\ \rx\rqh>\0? \ǐ O|./XZ=}\\gg\.]d&\"\C\\\DߴR(r\\\`ֈF#}m\\6oVAUoqѴ0є0`\x8hC\\\z1|\\qeӳ6Rޙ ?\o\W^\ڟWb\\0/r\@f5p\gtf!*QH5чYBCqyMMN\m\'\ F\^\ \c;oJIHM \ݰ\\l\\ƀ>6\r\ۙ\d PIP2M#_%\\t\\4\W\4\r\0k5%@VZ\\\\23\ؑ\\\\6\\\Z\Z\\\0* H\00\2 Qr@P\\\P\\R\\\g\"\0[3tX\0Xl\\\\{{o{uv[aOOd\<\Zƒ@4\2\"\ϑ!\Xr~zMumcEAaa\{\0htH\;\\\rP\2k\_eH\bȐ6?\\\8\aH\\n49].\\S\̚3&2XZZDO\r\4-\ɷ\'s\?\Z \ :24\\\u`l\32<8Ⱥ\xk\>d `B^#Dp\n@\0\2\5K\0Nl\\\q765j\\Z\+C\%eyESB^oyC\\&\lč\\p8.tj.^}\\q9\?t\h$A\=\?\\H__O_O\ގ\=GGb\\f-ݖqw\\D-~\A#pr\Ł\l;-5p+[\`\N\'\jLK݁\\\W$!(]\tGul Y\E-\敉\B ^\N86t89qɃ\7 $ \\Sf\rh$ \@w\Y\}M\Z\Dž\0Y\\\\\ċH&\\8\\\\Q\( \ \'\\I0\0\O$oN-\0m\\%\<\˃!\ H\E 7P9QHd pZD$`\o\%\\L<,ؖ-޷:P\\Ȃ \\\rn\\\\ZL\\(AWNN?0b{ڑ%Eq>t\c!\\\\>\0gZZ\\\0\0\0\0IENDB`'),(128,1,'Router_symbol_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\05\~\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDAT8uTKlU=\\\Ncqb\6IQ%(j$TAH,+[T6\,X!@B\rA4|\)ҒiO<\x~o>\7)ţ3o<\\9\wg\\q\\\-\yf\\0\r\\m6\MPsj\f5A\eY\Dd\ןq/p>xow\\\\\Xϗa\u\bhOC)\?.@\K>陷\ܜtb|\l\N\\\\\^\ۃJu\\\\\`*fbb|B_~Vo\ \"H4\߾Λ/-\\\\^uIǥC\"!E\!C!(]op\\\\u M7 \C \n\"\@FYz\\\g\N)ٕ\\\t: \%\*\\\\FT<<}\\\"\\đ4^I>M~!!\\wX}h\d2\\\IĢрإ(1<;}8(N/.Ad4VogW7A\8n\\nX\(bQ.J\J\ t\n\\\bffO>5ME#C{qmu\F jC$+\+\*\\\.!\F2G(Uv\qn @\\\d\\~\\\\#\bj\ än\#\"\"\=Gh\\@m~ d\\w\JS,\lj\q e[\\݄Ce\jh|>EQ\rKR\E\B iE\z\0\4y\fM\'^EMoV\\$G>o3Y\\\\e!>];\ֻ\\\`\\lrOb\\\\g\\,1K?W\]\0\\xt+@;I\0\߾\pѦ\\\㹕+h+\$U\\gV|q\g\\v\\\j\\.X\|\ݪ\\<\n\M4\8aУ=46z \\F»bRHQt6T6\Zz\ү\\\'%\\\\_b<\^!Hmm\ϗGЎ\$\\\7\\\Lj\\0\0\0\0IENDB`'),(129,1,'Router_symbol_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0\0\0\0:i r\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATXW{lS\c;\3vB\\`j\AuZ٤)\R\'\QioEQT6i\{lR F\S%HBE-?\jESU*TE\rJUTS5JBV\\ \rI\\ \\=\0\?i$\[\\'\㪢x`TE(\6YZ.G\\qbNH \.\ \]9 Hv\k\A\i\?\\tdYG\n $2abq-\\\\n:\r\"\45jN=\\|\=\\\\v\}$\\N$\\\\\\\\Z\y=t|\F\a\\=(H\\Z\zXhDґp:FU\\\~\0t\\Z\KV\g~\\+{ϡOIk$Х{X\\\\\0\1p: < _(B(\#o4\\U.DxOw|\ pCމSCp\П1H:qt,\\\q\\\[\\1\-չ\\"\r~\r4\;O\\B4*\n\Lėw\G\BG[A\\\+\aI N]´%D,E\D\+{q\so/(\\\\\d@3i\$x%\\\0\&Y-`Y\ZiN\;\0H\8_\z\AkK\\\\'\{g.\{P\\&U`QGčZ\鶁}8\\Y\\'J\\0r\p\pQ\\4\"\DB>\c\\e\d=%4\"\\\\\s\8^S@\\p\\\'w\7V)5e\4\^䮇U=\6\\rV\Ցq)ryMMk!\(I$$S\\6\nSw\\4\ \#)\f7\\йfӗv\x\5\g&j\joJ|%0\B{ :\[\\"䑰\]\_\\h/\ ^7lyl5\\\n\\xnO%\\\/\\zGd8\Q,˱h#`oy.\\\йt\n\\& \\\~lD4u-]\n9\\\\qض`Y\*x;\ s<\YZ2\p%S\FjEn,\\\nᑛ\n\\33w\Te\\^x,w \"\\\]\Oia\Ҹ\\O\\U+# \\uZ`\"T\"\a\I͙\\n695\r\\\\(r=Q\P_ۿ\u\d\\!ˆH쫾P\M|>B\\l(\a/\8\\*\"\\t\\4V)\Y,+XA$ZBEQ\TĪSD\s4I O*\rit(Eavη9x\0 \\L\ <\r\\e8\y\kN\$3\Tir1\\! D0cW/>u\ѿ#QZ\f\+c\y\A\rP\\x\ysl\\V QX4z\8J2O\^D\'\un_CG\v)Q\rj\\[,?+SJ\\g\yiM#\n\0\"B61@\\YG\F7 m}_8ʢ슠(UEfysU%\|\\\+Ο~\\H#NV:\xm\9Z\~\J$~?nt\0ymsT.ݞ\\\\fS7\ \"f<Ȉф!\"zwl\\\kcm\`0$ԊFIB^\^ P,33g\?s|\č+\\,|$\\dw`ZB\j1рw#tig[gwky{Y? p \n d\E\\\dbzlzj\\\\\\Ο/SnB\ qHϻ\q\"\\Z,۽\߻qs{O|uςz\\Ó\\p86\j\\\JfsY1N\s\L.Ư9\L:ϒ\\\\sgNH\0Y\$]/(=*6:&\\P\\Rz̒w\\t \x\'\\Z(2Y\\"~_  \\\~\I:)\gO0\-\>\݆>=rU|3z`\\\:@L\\ \0\0\0\0IENDB`'),(130,1,'Router_symbol_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0%\0\0\0\P\7\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 \IDATh\\Zyp\V%[VdK\\\;\IdIC/δӡP S\n )\\@8\n%$ PRJKېȐ;1N\+\)li~o\\\[a\wv\~\6Eo\\R\)xE|,yAV|,{Q|\"{eI\y9_Q<$%\#$$A\|pf\\\7\\k\\"`-v\^\@/E\"0@\\\\y$\5dF\\d\l6?p\=Ov.\REVɊ\@\\E?\\z.]\b\/Rd`k\ZLBE\*|\\\\'Q\ڴ\#\z\\\\r&A| !\aDt\)Y\sJF\t]\^(+\\\tv\B%\DH15},X\^{\\wY5\=\|\@IQDW}m4׃\f%%K\\\޾ĦtPLYZ\hY\4\\\\B_ %>xj\T\\\\68\~sVkQ&\L^x6<\\J\0\UYR*&%I<^\/\CeyjL \G3\s\"w!\f\n\e%\\Q\S\\44Ï k\_\?V\\\\ y-i^\\Sw|%6my\v\\Cܬ(>;p8\͍\\#Pp T*Y\'e^\\S\Ž88\>~\xMsC\r\\b),lmʺD\" \>\rC\0Dhn!\ i\\Gn?yN\\~&CJ\zKȪ\+JaŲ`XU\0BL) G\+;o \u\/Q\\\IxO\t\ \+ab2\n??i?EN\0h\i1[W<\\Y\7+\a\U!X \A5%hATRЂ x\\\?4B8_q!\\u\wҰ\0|ж\:Z]\Mk%h\R.rOx\\r7pVl\\:9]\\K\s\,&\\\<\8oZUG;h&P]A rMh\\\\)8\1]\r4)\\0ih\AWT\\\L\o\,ǂ3:8ST\&\nU\ S\\\X@\Au)vNӻ`\\\=7#w\\P\ܹ\\\EKfp#׸y\\e[\ԙH&av\8\ \gUvV8񷉤(Bۤ(ZF$}?\e\'LcߌVxKH\\\X\{n\\3p\u\\5u\\\\QU\\_qq\u\`\\ӏE\b%\%42A+\\\adt\\\\ն k]\\_v\ڵ`E=`^\Ja%l1\Oюn\\'+JF.YBXfx/H\r\z;o\;w I\E5\'\n\\'-\¢tG 8K\6\\^\.2`\O3=hw1ʮw\Z\\i$ 0 Or\権hp\djHMШ}#)< <\g\\[D)\\n\\\\~\z1\ ;(\T<%\f|P\\ 9\"tB\0\崀,\\y\\ѭJ\'Mw K$\\\\(JD\n4̣]\\ \ntg2{ \\\0!`&\\&\Q\bN\"\]9wCϗ?A\Td\B2j jB\5\_\\j\\`6\v}V.`4}1\' 9\#v \|\?\n:K\B!R~\\Ǡ8/Pr\t.\0m\\ },\\\:\{\ޥ\P\"x\\\0#B\CP!\Ql؊k\Z\_P\\T[T\\+# \d\sm|nV\^\\\ة\S\_߷\\S\T\qj\2o #\Nb%I>\Ӫ\\\@]]Ka\W\'\\,\ \\\\_t޿wh\t/\ZS\\B\V\"\\4I\\c\\B\ւ\E\ -ߺanSf\c@F0Ǫpjdh\˾C\'\\hJ\ny\"\t9\q\QqPR\iU@\\\\{]\\KK\\n\n=|ۃ^\r:\]\<Ӂ\r7V݁xK,F\\~\#؆ca<\"\hxr|rbbl#Z{N\х9qN\ \nh[\ +\*\J\\\\3wDP[|α6Ae\n\ L\S\\L@2 !\2\fgH8\ZMü\\W&\,d0BH~ >;x!U\L\\\AfI\t6~q\)\|\"\yRG\\0\0\0\0IENDB`'),(131,1,'Router_symbol_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\07\0\0\0\Ow\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0LIDATx\\\\ \u}U\2\Ҍ\ b!F6^099 Y\\1\"\\\nad\`\BX2\h_4\H_\\\3bK\UWUW\\}↑NQ$-Wv\Bȍ,C+2q\W٧Ȋ_ůn%L\CQ\d\"\*\\຤(\\n<(\|n}j\\_\\\"\\\m\ɋ\\xsdYnIm@@E 3\&\6č-\u$q;\q|?\\1\]\\\%y\\6W>\"`>2\\{qNYpҥ\\"IV.\.Rd\n\Td@*V\\Αi\*`mXD\xۃ\\Tn]%#`\\5S~\\ؖ\)\HFL-,:\l\x\t=\d\\Oǟ)\\\:Ǔ~H\\\E\k\hK\0jk+uKF\\ȒL-9C\0núXVB\@+\\r\\\\/#\\\r\\-!\\cMZJDp\#x\\%TV%\y]PSUM\p\\\G`(6L%L056[\\\(+-J\ɸ1T\-o $J\\<ϭ\rrnذj\c!`嚍A\s7Z}$IP\\\zhmn\0>\\\Eqt8A$\\Ҳe \Bb\\D0e%\P`CUEt@MuE\nX\\r\\~\Z e\rTd`\J\Hғx2rd2 NZQgG+\\\ F\ \Go\0`V6[8$\|j;\7\UWA z \V4\z=9\\?~v\ٟ2t\\\ƌG0\-]\\Ju\\\b`\rZ\׌y(P\A1o\L\\\0^>^(y&\\D\\\>2$J\nГ\\8\\\\pF\Y@O\\j5TWp\?\\;p \=\,L&D\0Z\映ڦ\ͭ\\\\\\7F?p\\6GY-f\m\"1B]M\^ϧo=\3\"/\H\S_\xFf \\n_<_z9\ȹ\F8~\4x L\Z!\\\\\Z\ϕ\Iy\`C<ۖj\%Bug8\hA\0\BzB\\g$Pk\'\0Z\i\́W\\\v\c\>(,B&uv\\/&u\LDA\\M\b\΄\{\Uw\/\0L/@eo\3k\Z\?kˡq\\rׂ\\\\9<&$<_@$6b\nHO \W\\a\~\x\\vGZ\Zj\n4\ig\B\X\I]\\\\r&.u?y\~\\2l^Mؙ\\R\\\y\ \BHx\g/B=!\r<\Bz\Bw\̬\\rA߾\=\F\07=)\rvhm\\{\\\7m֭o7\]r:+-\oS.\d(d,\"8N\L\\(?D\'j\\T3׍\ >$\\rb\z\\To*\ \r΍c*Քr!\\\o۱\\=\0FI\C\\\\r l5;:r\7wL\rO|\)]\b\"d\XmK\iDLŐtx\B\Z(\p|T\r\i#\c \1Ĥt/\\ \X`zЙy\\\\-\\"\\^J\\܁ Vo\V\'Б`!${r8\\\d>S\\Ø}.\\&%;#\D>\ק\ʚo\\\"\\\\hjn^[j !v3V \™H\yᢙ\p\e Ԭ\\p\\I8}F\&ud\\\1˪ʼn\"{R!\\\3I\8\\N\4N\0+ \7D4\%\\xFS)1lx\@W\\\Wl\\\g55\p\_\\\Y cf\I1\\j$>\ } \M\Gѡo\"Bg\8I\eST>$1\PA?K\Z\\\w\ށ QI\\$Og.MQ6_\\pZ\jl\拖l\\7\\ro&Xx~”JIv+-\՗ε\nHj9nN\\1\\addF\\'\4OMjsm0Ņ,:\+/-J\\ZR\'~@=>\w\\\(JSW& f;h]8\\r}\\\ `\'\Oę\\'qRr\5\\\eYM\\Li]\Kg5RfM\"У2=/>:NRW\Zf X-e(\\׾hL9*J TW \հ\ 8z\,^#pIh,]Π\DM)8ͯ|\.7o&_O\c :?Yuٮ}\L\g?-A J\n\;x\6\>\8\\;2\Is\\HrT=84N\P\3D{b\\"s\,IJ\Zf^\NgIp\\\\\\\\s\hZ-X\W\2\\\1\\r\\nLΪdJ\\\j C{Fy}l*%O=\Cw0GN#A#\\bVE\\y{\F\!T\M\\0JJJ1\\[V0u2c\\:\0\3\/a\\\ZA8<\0\A$AL\3\3c$\;\̓\ d\0j@\b+\\`S hs\WМ\z6f@ד`\"$R 3kקe\%\\&LD1\54\\\\\\ \\(\\ ?99\\ETRԼ@#g_Om/i}\_X\H~͂l\\rfbR\\Wq\!82z\i\s@/\hL6A\8ONb\>\\V\'Um7%\xUY\\X?ҳLi,j\+k\Z;z\5\ O\\E\s2\ܼD^o\7l.,\j͟J\\"Gz\ĭK֞0\\sz\"S2\os៿\\\LMh\r^\\P\T׶\/(nΕ\\uoz{>D2S`e҈\рM%s\$HyWѤ\\ \0z\\\|!\0\rF\0AiCUc~.X@Y9F\\"9= zB(l\"ɚ9-?z\% \Ӡޠ0q%\ȁ]~\m\\rHF4Q\'TpP\ԹJ\|RP\\I\i}!৏at] \\\ŅL\$\_{aõ\\\\b1\\\'&\\\Ξ:Z>1\L L,R+)\tL)G\̎*Yu\\ۼ\\I\To\D\$46<2\띿{u\\&;#\!\\\b&G.*?/\H \\’PIuS\\t\k\\49<#\\\ߔᘂ\c\"=\]\db\ؾG\\~k \v\\\-\ 40S(\= 8\\U\rmա?\\\\\\\,8/K\9NA/L\|\W\\\\\XZ|Zk\\\D\E3#\"\n|)\Bֆf\7\h\n ]\.K\O~\NLG{Oj϶\_R\5\\)\I+\\\0=\\1J\\n)\"\\ΖPk]Um}\\\h \E)\=׵m\7^O$\čQ\\\'\e+\mߊ0>\PP\ (, y@pƬ93:\ZZ\~?I! !\ \W\)\Pd\\\~o\\\\A\n\t\\\;\\~/!\\+w\\G{/mn?\{q\և7AX\\}mg\Yb@Ǣg\\z\ݷ\\\y\\k֮\\SU{s\x-eu\\em^0-hw\\U\츨&8J\vm%4 9lH$&F\\H,:p6\s\Sǎڷ\$%\ei \ k\~ʿ#fC\kB<\\L\\s\ZuTV\Z\ڋ\Cʪ\\\\\¢Ⲡ\\\pF\\xcs;s`\"-bRJL&D\J0#ğƬ\83\ZFc\Hd02\;>s\D\\`x\\$m f\$ Ai*O\-\\rB#\ɼad\ƒ 0}t\\\zI}\\\\ZXA& Y˶\\[\_06DX@e\Nf\iϐ֫8Wx`u%Hh\0\d\\s\t`\ \H\ng\07=\HK\0X\\#٨\a \Z\ \2/}Z\䄷pvll\/\P,,5uD\\X\\Ce6\ʺ\,ΣؐaՊ$\(t3n\n\ؽk?e\?R\!9\0\\\0\0\0\0IENDB`'),(132,1,'SAN_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0k\0\0\0\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\04IDATx\\}|ו\\S\\r!* b em0qIxӼ\͗x\x\d\\~\o\[\xl8lcjDʹ\BBO\fF\'Y`c#Ų7o\̝;\Ϲs\w8I`$qgÏy-\mm\mn]\GD\\\0X,y_u_g⦹\2>\\S݋v\\\r l\x\\_|^m0\}\"=\\r\?\Q\0|8~\;\K\\x\\\!0.\1 \zp署~\U\#Ҟ(\\nڍ{j7}t=q\P9uv\,\L\\HI)Zۦ`H$\p8\\'m@\0`=n,\cKK|44t@O\ \hhd\rh?\nO\HX\0z\\Q\Vi\i`LeYniX<ض};Tfo\\\0\\\IWC\\\CP&\\\Α\r \5f\xᅟ\<\0Ȏ\@Q6oo/LFʹg\ 6rII <\tء\n\n\n\n`\ʃ\^\\\\@5,\ơp\;;a7\|PSS\6B\\`Z\\\5\\\aʔ)L\R6S\\Rn;N\8Ս\08q\"\Pj\C9222X[Q]n\ U -7a\\[F \0H \\\™3\\'? \jL\\>\.PQ\\\E8``\0\xi1\0\\\w-}\\wEY\\\\\s\\ZWWW\\\\P1aNX{\<\*\rԛ..I\<,\\c\0\0df3\0t\"\\nK!̚5kвhB\E\\\\s\U?~<%aa▵\G\0Hfs1<\\O\Ij\R\\LA\0j\\'\WTT^?n*++\\7\\\,\0=Z[\[:\nԲK/\v\0jxT\&_vvtF\[\\NP@b\RڣG\8F\&bS*`\\PfAKf/®/u@\JZIYYp\\%\\v3 @\0\:\a\i\ fc^^\?\i؀i\j\\4\\X^wo^) pt 45N7h?./\\dwt2\0\V77BV\\\0V3\\r F\+ /\\\8+x\0iii\\\ZM&\0q;#\0\\ZWz$CN\Xho?\0\̈5m\ƕhTI͍as ;\':%\Nc\:,\2\\Z\&J\\\n\BWW\';z8\\m5\zq`a\\6Añ(N1@Ș@ӣ2\bϕxȾK@i\8 YwV\\B$[c෿)̝;u\\\4ÏĨ\\p1$G\Pӈ\\!aľ.C\rkb$N!\\_Mk \C\?\Z-`\\\X\n;\\\+Qk(}.H \nHS\\\艐\\'N7\|ʭp[\Y\\d\I/s<\{p7\`͛#\06kbe3\.W\%\\H q\0Z*\\o\\H\"q8Xy$\0\/\\\c\BZ\\h\5@i.z@ss3\T$Pg7\"l\0L}gèG\0g\Z\\y\?\n\o 6(k$m\~W[\O}1杏>z\\"~\,/Y N\)\\'+/2 \?.\:ltI\bs -Ů\ -\>\\\}|uY^\b\sxc\8\\ @\bݺu\uCY*\\\cys?\{PH\\s+\\Hj\\5UL`99e~\nf^SЏ\h4II}R\d\}Ys\ح֨\\\\\\\\f\\V\\'\'3\\\e\_\r\H\\\\\>6\;)=\bWEeq\j`U\a\\\0\0I#K\0SwKj@)K RQ|d&`\H]\*\\@R%`\4\z=<Ձ\#I \K `F \\iSc\\8\\I}-ďT~-\LMN$ \"\nXx\%U՟ \?\R݌\\\#\Z  P\S9\2\A\08r0\\z\U^\0\\v\1L6!]\\Df\6ԈT$Gmex̬P \W\g\FNd\q\r\22\\\\X\;{iڷ w2svC7ꇂ\S\fXU\^{\rRyF \0\b hG듆L\\=-D3s  |\\0Ar/\H\3\Zس\OH`2\v I\\sI0df@#jW\\n½\\{R\*Y$\r\Aff&\\/\\ŋI. ܍ bAj\\؟G\T$0%= <\\ET[\\ZDǓV\G?6 Rc(\ۑ?\Z\(4\0A\\\\0@ڶb\a^\y\\2M=\\iaWCp \f ރ\{\ލp\\\)\O]\'\]ʯ5))+߽>\\:Q\(n\0`Ϟ=`\;\\0@u\\\\\\\n\\g\B\0I\k#\0T\\QW٘\w\\\#mi$s6\\\0\\F#p\\\RYgφk\\\bI\0\\\(\.ff{IO\\ >\\\9v\߿?E\0\\rvvVv#\0\sl>\j\\7(=zf\\0\RD?\Iˍ#H`׻.g 2 \ܹoT\0`\\\iQP͒\V\H\0cQ>㮺<\"Zm[E\rOL\{\؟Y C H#\P7.\Uɻ\pT-\=A,Olj,X\`L?$\YmT;vuLjΰ\]ka\ر貍\zf%@\݉k\0˗ \\\\\X\0W7˗1M\\F\h<;\,h\\ilR+K \?\\>8 \\\\%Y\Mp\fF/$-%-[Ӌ\\< z^uYd\"\O(\s\o\P\D\\\)%\\N5k\'|2H\\i8WP\\R~\fHb\A$\իAzz/I\\1S`;\\r\`\4c\0 \\p\0\}\W(\1\?f\r$\\ݻl\F\6\3+]҇\'Mڃa \+\0\"Տn\\0\\頮\\\SO}b$\gyy\"\\rN \+Wv$\\\4\'0++ Zn;ࡇb\Pg.J$N+SGx\\ @\̙3?1{\W6lߞ=˺q\\AӀ7ď@z\\2\odhAblJ\*\'9nvQ.N{\\z\\\s\M!,6\ X.Y\0Q0a\\93\k/}J몔!\d{V7l7;޳\\<No`\\\2\N)f]]\ n\Z\ \j!\qF\n45YGGJQ+Ҝ\Z,݇9K\\\\?x\\M\k`\\d4Vg#oݨ\nɊα+ˉl~\\(\,a1\\g#q#FX\n\,+~}\}q\r\Z¦Exr\\D2Tނ$~\7Q\W\`h`Z\0%R>\0M ٺ\m\\\'\M̻W+\0l\ 3@A\\+?馛`\F\\<\4§\\t=i5\ۍV\v\0eL\﭅JvO:X\'\A\ٟ0%߂$\UHcd\r\9d(KכFANU㪩d@s\7q\2\~O{;܍s\5\\\\\\)a$5k\Z\\7\|E2\dǑ l\0\:w\:8g4aΜ9L\\\\C؝PF\[uup?Ls?\C\/C)?4\Vr^Y\Z]\nՙ\:Qi4\\\\+\'0\0\׋\rN6)$\Đ\\{J cI\0\\U\ \lYj\0\n\6\(Ir-fb\&t\alf61\\U\r\.R߯D\06#܉Q\.~\Z8\\Xג,{W\\'\\N\\crZ8%*9VRR\\{Bs\\s+$\0\\9\0Qr/\\\\S\MJ3;\@HHCev0Y\O3;8YN৙̎!\0R3!$pħY\8$Z$@\S,tKXf(\A\LG!\Q?e/h^\ ,-\݉BLK\\\ hE@9\w\Xz\2ճM\r\G\ ۰nrijՋY\\1%+/\\\hkXO:F^@Fv\\n\)a=R\0/-*ܱp\n\ǧ\\\`\`}.m\\\.*,dZr\\\\\||\n\'\\0\&\0o\ h\\g #9ȡ\i\*\Vui*##-\^(\J9\\,$@I\Wk\01c;,|%\7h\\\\8Θu1h.\54~\"gxpL5\ :\\\\hQ\MdyӮ]Q4Hˆ \,\\0l\Q\\q3\\ \x\ĉ/\\0\ \\\\ BΥqTXG]*`@n\\\?\\\U6`\(\\km\\rܶm\\\ɳ˜&\\%\\+c\>\<\0\n(!\Ѻ!\i0J\\\gj\nc3)9\5lW\/C\Z\\\c\\\\:@\\f!e\\(.W\GRՏR\\M8vtuOAQ z;\uzV7Q\t\s*\\P\KA \խ_\\PB(o27\e\gްHjy\\n\\[\]\\fq\0%%\\\^\&RDQ=9t@\\{\\F\_/Oæx;-Qބ۽~%\H\M\\ae\\TtGO\EN>]Ì\XF\믿\\Qp[\n\\K\$gD70\D8$\\\\\ D\\6 QA?@Pe%ॗ\h \}\\"k֜\Ɗ=\\sE\G\SV\ٰd\Vxm\\5D\\\]{O\\@z40$\\ \'\'m K\Z\\\\\\\*J(m/\\"ԨTf\\\p$XR\n~\}hrX\: \)y\0Jyp;^M\:$\.U\(XSu-\‚ \ e\\n!\9h\^r (&R\X7ol\2E1a&\IY\vÝh8\UIdpź^#֛\<:)}\r\g\nL0tlq\R?z -|E\\gP@^\\L\}n⚑nӺ&UV0{v\#<\\:2C\g\Đ\-[G\H`>\0ͳ\aIfw\\SH.\\"ԛBi\D\8uu\6j{O\"\0(Va\m삅 ^11D21\Q@&?2|$q\ \\n\'O\8\r\Đd\R\84cٖ-\Ue0Hco/W3\\ Ѹxg֭{\\\\ȴ]niPB\aVPN\2\4(~ ,\\L@H^\\\BT_\ˠF8oki\0\0(} eB\\?z5\\aA)N\r\{\\\n!Tbi\|x\\0,AE\0Z e\\XFPYY«.nM:uǺ\DKzH_\\[\&\vfm\|\\O0AQ=`\Uuz\\"he~RZ8y\\"y\M\\K\}Zm\\r\\@?i1~\'\h\͉\T!uŊP\nBJ\Zn\4i%\\n\4F~NI/,\wч\\~|M\[уS殺\(B\`fY\υ\RwE9\\A:\\'-Әw\! K`\=UO$\\\\"_\n\s[\݅=\'\sx_\\nR22\\]#\0\R\s\Ot\JKMlx\\ؚ9dfh4$]7HH^#,\01mܷN\'NL\\l\\ذ\\\ʱ@\+;q\RY,\\e @A\7\eA\Z1\0\duz\ݓR\\\|\8:$\\_jl\e\ \\T\\\hiw킏$`(\\0@\0k\y\,&d%[\\\ \\\\\0y%]\2\O\m\\\0\\(e\u41\~dx7C=Fe\3R\\c\\\ }\L歨\|\]G\j\J:53\:o\\\!lJ\:?k \\o\0hnu\MiVӞ\\O\p\\\Zx\G(Ji\v\Z2\l\{}8\V0K7@QQ!Ӫs\+B0}\ST\\\Z\t0l\FV\\\ݐ\\B}S(\Ȓ\0\-c)\n\?\~-0\\1r\#\.)E-.\7\\\+.]b@\'3\'N>pﮭa[z\\|\ .\0\XǺ7㸉Sn\\L٘\\@9\~\x\wJNu:\rvFfisb\\H8x9\L\\'\e_-f\b}\8Ԃy ;\'\D+UuZ\r\5\\y@]\QY\ ]\[e \\0P&\SĔF}2d\08\c:\0\\ԟ\ aN\v[u\ߡȨol|\\\U\rr\'GMyyMYA7\\\\\\;/A胭N9\o\D\\\ .yߧpA\DP\xA\nn\2he\s @\Z \o&L\e\\\\2 @2\pX\O\h=\\u[x\\\= \\Jp\\5?( W\G\3\\\\XY\\n\\ˍ\\r\5\0 .k~Ŗ5\tKKW\%\5R\0\\{`\\YcB\=\\\om۶!I\\rrL\Z\\Bu2(\\\\\0\n\I\)\\\"[\0l0\ }\\̙w=Dv/ݹ\\\\^ \Z\cssm\N\\`\\nmF\Ϟ\&\\@\-A\zh\\n\0x\7\\00\\0\\0t\\s6\l@\\jk\GaUs\\s\\)LK>6n\\}\reC ɂ(\: \s @P\"06)L\\\'\\E}\\z˖T^ئ\\\¨\?D\o;~\\Z._e9\\\!\4 \\ZF|\;\0@r5 t-B\ʲ>\0\nB\IK%I\⩋#\n\0 \sW\y\\\\\7E5\z|\S\nx!\r}\…v\,>\7\\\\~\1|\\i\?&SE\Ah~l#lK%v\\\'F\0T H r\Ċ9s\' qܪ==\x5h\gv|<\Ñ5tvC\%\jH4\\̿暡\\\=|ҥŹ\\\\r\r!nĤ!\U\\ \nx\9}NAO\g9~>\(39L\nWuNaPhiZ\\\ۛ\M\\:s\\0\{Rgt8_a]\ 7j]v\/9JA#:I\r }{> \'\/+\Z5\F1\\t\q 0\'KAZ\x\\\\\\E\%\E/_>I׭q\\w%u~d\޽\ߨ§g:SM\_\m?\JC[0HN1\M}\"(`P\ \\+\"H \p2\\4GB\\@\)]\r4\D,ј\\\_\r ~+(MT\\\\\\wE5ܛ\k\\\i\0h$\޵U\w\q7\R\/336\\03\!\,&!\Z\ns}~\.)=\\\K\n5P\+n@~1YN:d \0M\b:4:}\zD\"\C\_:/l\0H\\\#\}`r\R4~0Pcv\K-:aE6UUMƇY J4z\ 7\\zH`p\"6\\\\\GN2\ŋa\ƍ\u\\\>\\\fZ,\W\\M\\H4q,_˞\ (^\\@o#^ڂ>\\h82Ƿ\/ =}\\\r.Wg\\g\$̋i\\9\\_\m\\'\u`\/\9\{#sٳgzzznF\{Wgw\\6f*Bp\\na=>0@Y\0\ۅPúV\0 6 ,eIy\ wЋ,\p8\ j$Q4\ބ\g\0&=\(\\5\5P!%I*\0,C\'Fߐn\\\O6\\n\\zwT\\l\=o\\lq^U \tu\!i$\\\zlQM\"H\\"\=\^q\r,Z-EoFp9\nj\h\!\y\\( \0.~:\0d\\1\"\*\%H9\'\AY\\wA!8qw \\\\>\\$\<\\x\r\5+\{k`\kf\\":\"^?4&\߅<\G\#Dlֵ̾b\\\\]-\U4\ů\ed\˓ kf>)d\0@\\\Z\\qύ \:::2\\;\\{ӳ3\\0\\ [k\\\\\tzz{\m\h:F壢dJ&pe\=o\\~갚\8p\\\0\VA\ę\"Dïak; tP\!\f ʝg\8E\A\yzmF7l;&\W\Ќ[\\v^\\C{ct5}KKKuV5AE4*\\\r\\\v--/\A\\\0\\ X\\.to9l1\\3\㱩A\hz) J=+B\赚f\y2\n?\o\䏭Nߋ\&VI&\m\\\d\o\\\gY\0\`|\"\\\^A/\`\pQ4\\[%y\F_\0A\nڨ\j\\&%X\\rD\ge\k\\?Z;v\\hon\\i[\\\\#3X\\^6\\d$O\\YƟ#x\ȑ#\\R\0\\\\\\\Lh\iL\3!K\6zbl\n\w\Ŧg h \n \|AÇ^\p8\xV\r-|c7 5\\\j}GӝF\چ\K#` TUU\X\\f̛W99ܽ(\0»ڵ`\Z[H {\"gM\\\\^:\_X\\\ q\0pP7c<\\h\c>D!\zB \w\)\Q`1a\\`?\\2\\$Y\0\W\T\~;![X1~\̌\\ve7^r\\j\S׫[КL&3QD\E\Gmϛ\ cԟ\>GQ\'W<씻<ά\~o\۶n\\ZJu+ \\'/h\5(\ b`$\2i<\n\Z.\pL\'i\hp\\\'գ3BP8+ -z>\T \|!\u\\3\>0 4rO(j8z\h49e L>\\\3ђ֠j- J\´\\\\\\q\r|~?\nM\b\f\\\Z^5\\B\@[q5ؘrl?}o$\Yx3\\nᘙbCW\\r\\tZ\`DU\\\ϥ^<\*(Ȟ\n\}B\]$\>NuX?@ӿo@\o\Z;vl\[oG\\\7\lA\ @8\kn+7\t\L#\cG@2\— k^vt444\0 \099\iA\{9I&\n ?jM\0oj4\\`<@่\b\\r\\'\"\7<\^\.dAN^/V,? ~=\n݄ZɅd1%%gݺuY P#\kB\n\0$0cWЪ#/\Z\Z\hFv,zBƸ\y\|hT4]U g\\%\\\K47\\:\\08\00mR%\n\M\'\\gvi\j\a\e& ݀YAQXY\\z\\\\\r\{$\j M\E6Z=.IAKG7VRD + ŏKZ\D\(E\\O\\dᣒhz@\o\S6\\5A\fB\p\K4t\\\Z^?\т\\;ܾ\*\KS\+ A\\G\\'au\\\tEJ\\\C\H\~\2\\\'\!V\R\\lv\\\" \ESn7i6\\!mj4\󇡧\\b3\\t:2\X\%%%\\~;<\Z\\F\ԛ<\\Yx:\H }R?\ D\&\\r\ P\\X#@4\ZA\P<縨\\ps\Z=8O5r\sf\,\N-L\ ;v\\X\r\F 4\ݻwG¬Kb(`0\\\j !D\F\O >\қe4:-kh\ T\7\LE\\Ul\0 h\ir\\m\'z-\r\rkn#\1D}\ɓ\'_\n:@튔MG\\`$\(5?ea\^\mA~A\mN\7ٲ\V\\_\+\B(+ \zg5tt\@gw\'D\=m\.d\G\\lBO\\s\0\A\\ζ\\$ҭl\Y\\r\\;3\ h\u\\z\Y\&Yu&\B0[ \ˁ-v@OOWI\o1j\XmЗZ@\@\\C[[[\'\\\\*\n*\U7z\E7\\/6\\g\\.O_v\9\q\N@<מ\\-٠ŗ_\0k@\"h \"<r\hK=d\\0x[Zj\nh6\LsBei!,Y—g\r \j=\C7\9u#\0\H\\EODAn#\-\"\0\-Z\ Yih<{\=]]:.I\s[ȭC\\h\j\0$D\s\"wG \(\W\0lV+88)\{u\\f\\Z\QQ\r\0\\Z\0&v \\%\_I<κ\0\0(\IZ-\?(ި$Rv \n6}\v4\\0NV\n\ 5ȟso\@\\r\6\\¨$MfF `8\eo@\rJjN\\Z\\\u\\I\H\\\0\\O?\oݺ6Cq?3R2\0\0\0\0IENDB`'),(133,1,'SAN_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDAT8˭OlUEƿ3w\\\륵-J[0\DPPBuC57ƨ LtE\\eDwƍc \BƄ4\n.A,XJ\z_\}\\\-M(~\\$7g\\23\\hV___=OD\0<\\mX_13\\\J)^|\\\]\\IԺ\V؊<)#cdm>\\hH=\e\|Gg\\\_u\\Ă_\0ZU@k;\"\nSԴ\\}\\@L\\0>Adȼ\\2\.\;C\\NTy痱\Y9\lKF\@e\󡵁i$\-\Ѯ_Nn͞j hokw׎Ҟ4g\\|\ 0\H\\\a@\v\\rwv\dA\0RB,byD +%\0 \\\28_Uo\r`- !\qK\(%\c\\Q$\f\\k]\:gDIQsʍA-\Z1\HeTd\\8,.F-Š\\ \y\nX A\W HG%\\w YD-\"M#Z\ri\Bk\ENU\\:!EUX7\1T[;\WOTo\\*\\R\\n\sr\'\$ښ\Z+SӀNd7o\\ \"`+\0yv\\m]a\\z\\)\n\3g~0\\\f\U\e R\0p\\}\o=\\^ѱ♙c\*/X! EB~J\\ֵ˗\\0zw\;\\:{\j39\\W\\\#WL\\as\\rIY\9\Dґ\nTpdGT*šu^f1\>e&5ѰF#\x\\\_G\\@6\\\\L7D<] bP\\\\\\B!x\c!R\'\uoSW\&\\\\9922\\]cO \r\\\*]lLgN\\Z8[w=\E\\\rɦ]pr\\\\~\67\38ܹׄ\\ڻ\Ac\ (\\-{Cr\\\\M\\'SLD\\}X}E\\\\?\Ce(\0\0\0\0IENDB`'),(134,1,'SAN_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0(\0\0\0yq\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 :IDATX\\Yil\>ϼy\}M\\\1u\0A\n\"R*?h%*ѪEUURˏVU*TPӪ(2\%$!dv\'\b\O3\NMJ\\\\\j\\;\\Y\ݱ!]nA6 c3w\\'\kP\\E\\mx\0\ױ\ke\\e\R\A|c^\m\\\xg\oB\?Z6y\=\|atMB@\ yCG=k\\ԴK\u\n抔\f)Y,\IߣT2gGk5K|b\rlj&\-RDI\"\\\9CYY \Lrhh()\\J\UUO\\5\TDṔ\t*IG3 Rd|ۢ<\C\t*A*ޢ*2XccIȃL$\2O\t\$@鴼lr%\nxe\%vXnC\~@y\ɊH6,\IlR!`T@\\\\Z\΀>(\\\X:\\j`T\5Q\ⰔYiAYdQȒ8\2U\\:<\\t# 4kdy;OI\\.Wnš\\QL\;P\Nc&CM\ 90N%.Fo\7\\W(¨ظN ^1\XJ]M-Ӎ1~s\\r\ \H{E3\"!=<\\ Tv׌EAK.aM\\x}\\}\>\^6>I\nT֣.^zQq\-\&\\#l\\\\4_qm g\\C|U+\_[Y\\\s \,+-\PwIY$\9̭E| j\褙#T۵8\@W!\u\\\nd6y\ɈQV;\Fm;>7/f\\"B\,\\"O\T,Q s\' $\'\,*x@6\\$\\(PȘ\n dA9\\Y)SK2`4n\U\r\q\"31\0dN0skOJ\'=>]\s$\&s,Tdf\\ux-ZEF:<0LOKS\:Xg=pv|T\1,(H>5&& \LuBUutz+z8I8qb\BL0$`q\u(\Ur(\\\ \+\̬,W\pl\\\Nn.JZ\*ZsԀ5gʌS,\s(99C>;|8!\,<ɉl\iN2\\.\r09\"\\\2\|tfUᣀ\Z\0\:λbD\\1Ti1\\Mr J3O.d\gNh\\'.E\Dy ԡ\w\+\uEYwcO\\\1t\ \\\+\\\B\\7\0\|\?]r;~}:\\\\(\h@W\\&\\n}(kY/\\\n\m+z\\\?42\\[}H\p\}\[\\ G(\b\\\ p?\'J\˸ya\\g\zD\O\}\\T\I\w\|s&\\rGQx\\n\tY\\/V\"d\|Z\\\CIya\\򗻊H7vt # \o{!9?3q\\\r6 \pv\\w^\͗\+w\twgN \V<Ђ\RY ?am [\R\\hk\\\ZW@\\! `\\\꺓4]\\\\e \mӦM-%zczr\l\\#\\s\\}\(;?;R\\e(G̪w7~\]]]%hwcp(\]:\ ,\\\\\<`g\Lf\xA\\\Vu}\Y\S7\\a:85Y\n\'m*X8E\3r\\\\\Px8\\\5[ \\\{\<\8b9+x+%g\;\\O\\\\f+l\\\\\\=~`\\T\x;ύ T\0\)%!&9q\oByjOj\.\w\"\P/\\-Q\u\\\e+ҿ[ݳgχ\\amZ<\[=C?xwԱ.\'gA\gN=\\9AP1\\\C3W1\::\\KI}3ȶ\\\ZSho\\拰ҧW#\]]N\\nDf5E)\\n \\\lq\5i3c\\\-rm=xĚ\Zz>b\޽\\\[ngs\\?vx\^X\|y\\rLkYE2R\\\\O\AP_\z\X\]M&\\=\\\\\\>}\<\n1Xۻ\߄T\JȒ\洕A\:ZV&\\W> \\k/\r\ry\%+dO\=(#Y3\Rs\\3\'GIS\\ó\i\6ܰ\\n\9@\J!\\Ť\q\\\k\\\?\<\n%\t`\0\0\0\0IENDB`'),(135,1,'SAN_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\05\0\0\0\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATh\\[ pev~}M\}\,!KB\ a\.IMjI**\"[vE%rT\\l*$\b \*0ŮY^lm0vd#c\:g$\=\\G\ό,\^D-M\\\\}\{\8\\!IR\r\\sF\\\\\=\,\5K\ۚ?:;;WB\ݘg>7\\),\,˯bWc؁w\}`\\\n\R\:pݕ\@^\U U\\Z+|\\\\8o[$\[_YPlܾsr綍a\\\W\\2E*\n\\\4\Z(\ƴ۶n\\Рa\r\\\0NZQ\\\IRYqS(r,S\X #!W4F]]\\PTUs\YZg=>N\rM\\YyO!7v.OѢ\\r|^7)0\\0Bc6MF\Ѣ\\r^ඩy&ct\G3\*(W.Ø\Zi0\\utvN~x \\0{M[[\`X\\0r>\pUFvW\Ϧ0#>YbW9\e-`pry(wg\ \\J$Ȁ\ːaJf\\nC\\si\\oC\-Im\y\ob\\0\s8Ym\\,ñˋ$Ԫ$ 7\\\Z\\y #U\\\\\`e94,\@4U#c\\YqĆƩ\Z[`\ \n.õנ\r--XX\&]e\n\:M\qɦh$0\0aF$x ww\n\nx\\\9\p;pB(Da/!F\4 /,n\~rI\z\G N@D %aw%˴$;lI/@\Z@gbjE\n5t\d\0u<>\\ \`Z\F\Rש\0jE?9t\υ Xb%\\)\\O\\!\f<\1oƵ25E\0\A;[6Ӿ}S\Z.\ \x\,T__?-\\\?~\\MMg1?\\Z[X\цPHSb=\\ƒ\V_8 ɒ\ W\\(CB\\`|k\x\,c\\G\e E\xg\Mr*`X\"\|iV\\sVg\ I\0TS\\\\r\g 67N`Ѻ\vXF\\r2C=\0J\\YF\r!%\$:<\r\rY\54 \\\g`@jt\0\\\R5@xa\ \ZK\V;˗-ŝ\m1n \J?\\b2!cw\RQ?,h`wdMT7\\mh(cحvp\\Ԥpif \\\/\z/v,I݌(3nQ\.\\\ԙ3\\s\f^M \\\\D \n\\P\'X2\ U螫\"w-ԧ¢u\a\J\~ t\\\HmV\?\I\\DXN\'\0nN&\\hp{\҉T\4\0Hև8|u=ۅuܬS\U\\\ކ§vloX\IcW\-ֱ$+\k\\\\7&\RS<\}\'˧HKXT!sɋ\jdcy&\\dz2\\\3[w>rs\"BU\\\F F\\0\ \r\\cV Ir\\_+[Vj\Z\\Y\\ڱz\bq\6.ag\-W\\/1~\\\03<\ܬ0r\)\~77o~(\\\7_%w\\mۉ\ξ3gno__\4\\\\\\3\\5\ \\1.\Z\lN7G\X\>J&\{w\/9+r\ʕl\w^}0œi\\\ \\.o(d8Z\bjwu\?K\_7\D2\\\\'\ \<\/\\\\\\\{Vet_0K{1t^$KE|\\'\:\.L\FPNŤv\-[<\t\\\\'(\cϝwF\\CC\S2m\\nW\ħ| ˓\\\\XX\c\&io1V0\o\\[{\\\\\0\\.)?\=պě:`t\,T\"+ۣP~RI\\A\\}\{=4U\\[ }v\ZFO32|\T\\}$˽p\\\ -\a\\Fn`419Ȗm+\\͢;vh\\\Z՜{K\e᷸`Oylt.+ukE\7\Q#m߱9F\\\\G\\\>|x>ǃ\\5\\\A\c\\;\\ժB\=_B\gxx\'_uGh\+}3\m\oh\r\;ӑy\l\}n\`0xb.1rhl\7`\0@V*\P%JrYO\2U\'{S\?Y\\\[wБC?Hv\;\']\7x \e<`͚5M=#}\A+a`u\\D \%z\ճ\U]\\;H\d\\\H!y,aȜ\\n+W\\\\\\')O9F\ѻ\k\\\ x\\\n/_\/i\\6$OHVcH\nER\L\˅\r\,\ϽfE)\\^\_\f{\\ϕؾ}\\x_~ٜM&\\ K~:\\0\0\0\0IENDB`'),(136,1,'SAN_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0P\0\0\0\\p\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0#)IDATx\\} xTו\y\իJJJh$a@,oM܎;JӉ\v:3o&_\'\tf2\\\$\\d;\r^\nllvVaAB\\ JeιU(b1\P߫w޽\{\\9UU\vqWcm6\u-aۋm#M\\"\ƒ[)\\L;2}ߕUͺ\\\0-1al\Z\@eee\rp\\\\\\w\U\\(.,o\nB;:;;\΁^N?\*Ͻ\̻\}\\\\\\۷%%0}\\2\\m6\fw¨T\\DEa-\<\\\|W6Mf1A00 į1t*^xT\a i6\\hI\vo\\\٬ \\0+ \5\GFM_\\\\rwL,R]u@s\p:Dp\Z\N`CDVlB ̟?^~\\\rl҉4t)V+ \\\\\\\\0YΙw\[\Y 5\n mrvl`ϩSp\\˃|l& z\5\\rVwrt,\>,\\\<\{6{6e0s\]\r5E\++mDV\\ >ﲶg\\rA Ғb0a~ַ\\q\\Zx~\x\\Yp\H0\\p\\>h\\\\~FO\\WG{!3 \n\nQ.(** \\!\I&]F\\z\\Pp\0cs3C\}Hj `Β{\Z\'\\OV\ˇ\Ə{\\n5N\n4\Y\\\\"I&a\\\\MvOmJ=b\@(b\ !##$I\\\AnI%X,ro\\GM C ?\Y\\L\\d+\\JA׏\XٰȧS(ƙW\0C^νmë#;Wjȴ\]\lY\\\\\#\\ؔ\1ڔ\Qd\ \n\\v`pPY\Z3B]ȗ݃a+; Ν\0SF2\\0f \ބ\DϮW8-\4|\0nv?\d\y\J\;^o\BX\/\.G!±c\\+bV\' \3Iz{PSwQ̘1^{m7L\\}q:ֆ.3N^|\r^S{?~\r\G9\\r9\\\\\!t\'@\f C\Z\n@\\'a\Zu\\\\\\yE\\\r(\\r$m(ȴ\WVTS>\\5\ǵ\Eh|M\\a0!\r\JuBҾ\\>x\\+ڀ_=ڎ\;;\rPp\P\0\-\\l@\"\kǩ\\S+Vw_xـB <ޖ?B8ـD\Zm\C(FASK WP\~\n\\\n(ʲ\O2vm#\;\\\Q\U\\\w\\\\"Xp!ڎa-\ 6\ՍG$\(!\Il,\o\"\\dd\\@c\`\X]EOD\'ziy\\4ԞaIpox5\\Zvc\]\7ΜiEAA5$1C\Z\\\wA\\n\s \tx =\M 8pᵧG0!\\SId~Eq 1!x\F\\Α\\\t tҥ\\x\l\D\;>:B\'zzZh8JM;\Z\Z\n\ 0r<\\B5\\\5w1@X\\\t[n \\0 \$LR\r-;>5G\ZkҹaeAi)mj\ZQq1S\\\\@\Q\@\N\\/ىr\z\;/\0TY[_QQ.g\9\irLr\ \i\0\^=\ts\\o< \/))a+Satm\0]]\+\\\=k\\Ґw0\\k\R\$\h`5~ƿ>ʹBν6P\\\\nM\Y\0MMdL\1 6I\n\#\nEy0{\l8t\Ni\\\\\\Za@\(\Z!\]\4lCr`}6[\,\\\.;\n3O1Dti\ռ)=\\r\\\\\\\w\\\w%Δ$\Tܪ\\u\+\<\ fAo<(,W8ע۲}v)e\\uuu\XF251|#}u\\6w?\\\\t\`YKE/\{\S0|#\RqN\$\\\lefV\}L\\0\'77f\~7pČ|\2ADZt\\\XFH>:2\\\\r\+Y6EtE\a\\\В;x.\'VWؐ Nf#\z\\0z2\,(J\\\O{nCO\Z\"P6\ľ-pƣ\Bjt\&xP7q\"n\N8C{T\\r\r\wch\\\n4\Rq@ \\ѳlZVP?؏h\\\s\̉OBs\ՠv\,XQ\0.CL:֬\\\[\Vr2y\χ\a\\r\\]@E\i\47\M<\'dv.\M]f2\T\Kk\ޏY\05\t)E\ʅ^H\\\e\6f\\\\\\,\\\\jep8fjp,\(3\0\CYjA\\\\\\D\Ix=rZ\LL\r ,AD-\@\&p5+\\H8F\Z\\r\r2H!Z\\0\ZC`Y,Kpr:ZKе\?[\\ ^xσ\r\Y\rۋm7NȂ/\ɵ԰69_ z\hn\fi\\\\tY(\#޽\re,A\tZ\nH\\\rF\\͉F\gO\g\\\\i#Rߴ, X:z\4f\X*3{\Z/^8m&\yzD\\qxO\JG=\\\p\]w]\R\&\\\BP\K\P2\ \,{tl\*_\0\.\8_Ll\F8\&O\\0N5AUUU\r\َA\r\i\\r-\>XjոUS\\r}\n\\\^|1#F\hژ\9mA\xUߵ\`\\\8^Қ\rQ\\JG/Xq\dwڀ\\9X\\\\A?[\7\rQ\p\\j\n3\l%&\EFF`2\8\\'\\S\\=\n7{\\0\&Z2-vSϢjim\'\n\*&N ڀJG\Z\%Y?u\"Cs\:\ bUZur2\p\ A^N6r\ \\`aJ\*\"\\Q\C\R\\hsЋXubX\\v\m\٪\ZpQ\\U8h<&M\\?|\\)\rMÈ\ˈRft\Rѷ:Cp?J/2{cWWׁl+\0\T\E ouzf\\\9l\&4\\\\ߙ3Z\_\<7Q\\\'\E\8Jov1qc?\\EKpTUKKR\VA\s FOY.B\\%\r3&\\ј l[15\F:\\͛[C\5\Z)\IE;He\n\\\^m5\ZݟQusCɅ\\\}GcBԇV\\\8Jz!SF\!=ն\\\ˆ\XaZE4\\>\+V\\8=_;Inh R4ZX\\0󙻧KHY?߻eRE\\\\\b{|P\N\\Q+\=L\\\g\8\\b憎W\8\g1/ȑ\~ `v\ʆ)\\H7DWRk8l\\==`\Z\8H\0T\⋛:-\\z<0\90\0Y6V\\`\\keR-x\\ZtuC?W\V~e7\s+\$\,i\nĀ\p\ \0\\S+Z{ת Xop\"v\Z:\\YQ+=\ Gp`[ч\\9U*8X\|a.\C\\W\\4à7\\ ]Ǯt-hJGXhVUEU\#|\\ZQb\(%\uz# \\ʆ\\\PCiNzv{!\\\\\\V\"\ZP\\Ϡ\n0?\fm\v\8\$i,\P#2\s\r\I9_;6RB5hDY8!\\:.\\\atU/iL\ G\Zx϶Xyz{\\VKmm,AY\\')X\Q\\GDAf|\ax\ kS\^\gf΄W\vw\\d?(\Q&q#\\\L+\\\0\Y\8z^NW\"B9\G4\xP\ȧ\8^ҀIapD)WN_7K\0\\w\\\\\\\8\\\\ZGb\̈]w\\V\\?e˪\D\,\\\\~[lAFR]\'p\Q8y\?,%\06&Z58w\\g岸\"2Zxex\KZ^19;\\ޝG!r\@\ӳ \ֺsWS(\\С}\EGZV h\\x\r\\p5;\v\}7G\nt\p\#CHHR\\\\p\1X[\:͠>\v\c\h3QS`\.`\ q\k\6\ 9\%O4\\_\8} 9\ĘO\h+X\\E\pC\\5%U\ \AȈq\j,+\œ1QrJqZ\"\Z\nDj *:Z\E3\}XV\LhS0^\\8\ӹ:^‰}\Y\WQ\G\Z_.\&ۍfMo\IÖ\pdP \.9\\\<ν✜iu~pp\\\\hq\\\l6뜪GLC\\ӧל\\<\xc\\I\q G5JQу\b\A1\–;\%MPIصhtKN_c\\f[K˾kդ2f/1cAY^ޓ\>\\\rMM\r^/\\\\nV(\0B\\\\~\\3inhL4!Xc+0y\\x\\ŋ\\?\\\\[Z^#g=\\\ܴg\(V}\\\\\\Wx\c\}\\"7c\n\$=&\0c\0\pn<\EQ\%٤\\\r\\;p5A%\o\\\Ydiqv\3Цu{\\w%%C_c-\$\\lp1cێ&\@׳z˲\=s\shT\\(\!*X\\el\\Z8q\s\ .\|\n.\\,\+!EO\ںu\\2\*\q׺\\uj;$˛q\\\\Hu2֨19a\Õ\n\?\u}^\cL_yYJ \\E\\\\n\=\\֭7XŠ^\X\\\\q9=\,3\AH2$14W҂\\\;>\:^֜?پ\ \z\/X\ ,\sߞ=\ʾM\\nA\\\aUVjqW]\e2MPb\\\ \\\\\\Z\5]\\ǿrd\\Ne\qP\'k\\Ş\\oVW\-V\8rA[u\\\}\\\r -^`\\Q\\`(6ު&\\\Ef`U\`Ӄ*\\~$]#F7N<\w\\t\Ⱥȣ>z\w\^U@^;:8\ܷ\\\\b\C6\y{\n5󫫫Y~\fwzN\$xc\G0Exo\4D\"P\U\1.\ZQhE|\\)\\\X$ް\ZzR\\\\p/j\F7[<\ϝY\]mm?\mxk-U\edd|= >\\/g\r~\3\04*~(\5O\ʙ\jPU5jTd\Z \ZF\nCY\{\\\\vA\rD:Z\ e\\_u\\\+Y@Um\A1踷Gn,^\\\x\Sa?#3+\c\\d\\Z\[\VMЄD\Z!F\ \\\2\p\z5\n\=]s[\0y\e3\\}9\(ѕ\Ы\\\\xX\5!\cNxX\q\\u\\t\\-|Fo4\%\ZsY\Z\``4^ơE\J;\R\0\P\\\\l\W䪎\3p\gGs\\We蹂#8\V\\\\2\t\hXy*;\'ja\#\6c%\`\O\E&\Tq>VB\\\[\^}\\bHw\\Z\iN\ \;\\Ex\Z\8b>=^Ƶ8,\6\"ѫl\<\t\\bK\\27<\\B<\r\С\pf̘a\\\V9\\N\XVNfޜ\ \|0\\\F\b\"\\Q\q\gF~8:<|c܍8 ~\r<\,9\˸[DQ_d\'\0n\\1L\\V\\\햡t^.\ῇ\\\\٧\;r03=\e\J$#\\ g\w[\\\\ro\ \'N\,E\\8\\vJSS\\ՠ%\2s\S9\|T\0̲ \h\Z\A\ŷn\A\Z\J Xեpwh2a\, Ս\\G\\\\p%\n\\8#C7\`7o\̙d\04[)#P+\#:\\\OP{g\pUUU\K4ȉ&xR .r\\EW<\n4b\|J_\\r\\\\sa\Zضu8\\Z\rX-7\l6[\Z\nY«\\6dgg\I\n|3\\IBsKKz\\RF!\\0nvi\gˆ\t\\\'\"+zI3]IL\bst\3sF\Q\}\\\\\pP8\pXlf\Z݉Zv]ύ\\Fd5\c֗\Z\E\r+2{v\P\O\\\/ |\KФ\ 6]\|}\\՛-\\>\ n\΂fB٩r\2JL\[f\4\~\\\\\H$^\mu4`\cg\\\CXTT\\\\.7+2Aq\\\'h4*\,L&\#|\@=\=.[&\ej C\|0DFiZ\0\\\Eu\Ŗi\L+EX\-a\n9{\}D&׶e\q/t=$Z[Yֺk\\\O>\\\\\4IJX*\u\\u-B\\"#\\V$ \dy\F*p\r|Ux≢MB!DD8 \0C\t:}Ϻu\\Z\_KEκ\0T\0r\2\LlUU\u\+F+pBc\t\h`qH\-\ Rb:ri\\\"7\YMcya\[n\\\oY?;nPWw\\>=_`\|(\\\KY\i\\'\\zذ\}}gy!\b߾}P̃\A\֯_u:/\L#hz@c E e3)\0dF\Q\\u+)=\=j\\;@Px\&5LފTʲ\ώy\ׯ<7.\Ir/?\Z.$6ndP\`y\r ։tE\0JhD馛\\\\whnn\\.TJ\\\޹7oγ ki+V~\{Y8\k뺠c[\Q\ݖd֥H\'A@I J$#ᖭ\\FL:!\\\狈\\\CB\\50̜y\jM\a \\\A 6N\~a[\:aT\t:r3PYSQ:\B\]ᨾ\ț\ Y-j%V# g1dōwh\\`ee\@ \\# @\Z3#\"\n@*t1m\ZS!%GJ\\H\"¢E\i&mO]+t\Zhy֦a\\+-\EO7\M)\0BJ!dMM`\\=~SӬ\\t+b\>xB\ZȯY8\D\ L#yD7_*9yM\z\\jbZ\@[\W\ǚȟ OڑQ/.xkF.g\08h \rIKm@\/-ĠҒ\_\ j\\Rbm\\w\NJɓ\' D b\޽\\G\C%\\zغu > 4Lǖ rhE(\\\0\KCg~-{\\<\߂\^Ex\@*1\\\\\\V\0@QtLIY\i\m\\[@X5\q l̤A{eiG[\\Hߠ?ߑ\4tQ̞\'?\f> \"K@CS2\|\\|J_MA\H%\\H\3\ȵk_キIp\ b\\բCJ`gaW^^.bx\hhH\\ \||F .W\\7/\|\\\\\}\xȕ$y\\\\\ApLP\vw\s\\PX\\e\6\kb\bF)\\r`z\h`F\tnX1\oX\\׳فb\\)\&|p\\\ONT \ۆ#q@2\su\)3Ĭ\n *%\+:u8\\S\\7\,%D6\>m:I\uvvJ\5 /\W\"6n|G:\n|\7=m\Μ\@0|ǯM\\\6\S^~\3\\c2Bڭ\|J^/gݐRen2\!LzTuH\rMɋW}$\ԝt\FDInoJ.\r\BP\\\3Wr\\0\Q#(ȱ?c\_\ӂ6\\\go2e\\\\gqX`t\\\\'U=\u \̛;K\\r\\_݀*#(\q\\'\KM݉\Y4\rG%CEK \k$\\ZaT\r`\L\vu=\y>\~˽\"&\n\nW\\\Z`\\$L@YK\'Li\>-\`2\^9\T\\\u\\j\i+.:\\jy08yMG\I\n$B,W|z\e;\\\[\?\\}Q[[+\\\ԳZ\06Z xdHP\\\e\\'{\\h]\h\\\\:\,1k\, \\\E\@({\n\ns?Kih,\H(\Ss뜙\(\Zql\P1\\A\\$ԡ4\0m\\B_vX]ye&\f{jlpm\U\_. >Iᐣ(\"vJL X,:I:z\sM\\p\`o\u+\\\U\ֲU\fh!W\`\0 \\P\Q1k\4H\\$Z\K\\_|\\\ .qX\f\I\3 T\\b\vn\4@\\\l%\nԸ\\]~[x2dA\wx&\+\Xem\дeJ7\\Z\\a;\toOW\둈\\0\>F8,CL\\pb{\8\\\\0nN\\\\\u\\`%\DŽ\">yDs \\r& ?j]6NQЇ\ z,\Z\֦=b\] \\\5ˌ3ĵ\^+5\n\o\\\\\x\Z\\Hfa\\\*\DOg\\\\\\\|n:\Đ\\\\T\r\H5y\rg\\!pօ\lK\%<\ \Ю\?9Ђ\'\\dC\Aeӕ1\\5\R@H#\c4hLK\H2\rSC sӖ\I+JwWW\35\'/ ñ \]\n\Ϧv\1j\n6z\\\bߎX\\\Wa\O\^>\ZX\P̮ x%K\^A4\%\;SӺaC4!)\\ \YoOw3|T[\ZpKS2uI\\rT\K+}]Aph\,q\%EӮ\cv,\\#Լ\ū=\w\\7sN:_sU\\\H\0\E \\ \fj\\0u3N&2\g\}Q/x\N\v\ ˀl,\QTax)4 <PRy\{\\Yp+\MEU\'\秜r\\'ӑchG\\̙3GUFn\̈W\54\\RvSH/~q5>l\糉>0\7\"\\\c\\ nU\o\\Z┞W\\wm\r^W\\1 R\\;Fzڪ\L\Cl_N\G#wߝ e,cG\\A&ϥ3 2\r[\xknRu\\^4%؍[\\5#\?\k\\,L\x{\\'\1x\,\e\\]l۞m]t4\i\\ \\0pAr\\\r;`<\\ΐ\/t\~r\l͹i\QByC\٘\ޟDC\(\\٦n\_#:\Zq|\'YM]TO=uE>\\wut2\c\X=\k\\y\0\\{\\0\R\k\yp\t\Q\\eee2j\DΖ-[$l7\\7bo+\Z}( }\O;\V\\ZJtu\s;a\/,A.+-==\\J\\\DA\A;u>\wg\j &o\U&I\&{ \7\\0cJ\ؼy\ۀ3W\qj\R\\\\r\e q}\\.A\/\"a|8$B\C+\~\\nRRCiѹ5QT4pWy\\\\ V)TW٪հ\כD\"\05\0\\e_7\;\\\\\ۋ\\v\\shɨ\W\}h/6<&T{\}%\[@\sYY\\\\\/CjDbhx3@W (\*-\@MM\r/\.jJsa:ZXgyk\\C$dg^SS\0:\n\ZjTq,\\L䍛\43m\FJE<^\rC\@O&3(Y\b|y<8z`盠\\\ߦ\"zK\!Am@<\y\i\T-|6ml4{U\'Ѓ?zXDpS0bؽGأtXM\\++\'ΎR;M\e啢}/\\\\\Us\8i\F\5#\\ \\ee{`EOggg\\0\π\0}X\\.\n&|PW>79l۩5\0\\pB2π=Y__?a>ц\{g\Bg\\a{\+\>\ilp Guv\\\AwGyc6\O\\\q\Z\~h\&\j\\Ea\'g9Z\r \5f\\\}\R7VU\=v\ojj2>\ \")\aCP\~\\\}tE\X\6$Xh{\n\p\\Lc&\rsEUSQ\U\V\\0\\c}\߿\A ;z\\)\'W˔錩c\\\a[Y& Yg29\E \u\'\ (Q$s\I6\A\';;P]\\@lAT\'M\0Ix\:|z\\@&Bh \\\q/IA^%l\*\\\P\s\\q\"t\fP\0-ԍpd`f\I<|\vw2\ڇϴsCԏ\ˬC<$q\ \\\Z\=\rN\\\pC\\8*p\\\fC\ߒ9z\1[\Gz}\0,5ˆ @0\\\5@\r\\dݑ֬y p\\J h?et\,Ն}~\n\\0wQT\\7\<\"\?\\r:~W;\0\0~C\0\]l!\r_ h$8Sg\W@wG\C̮\0\}\;wJ\ \7@+\\;h\nIF\r\\\saY;\cuᕿ\d5\RM\8̆\\ԩSs\0\<\\\P|\~;}\ L#q\n#*H|./\v7\\\"(޻\\,é]>\\n\\0,k\ZLO\0L\\\ZsQ]9\^\ZO\G{G\$\h+W=\\\\(:j}է\\p^\2\\0\\\\\@Za4\r@p\\\\0oA+\u4\a-\\'Ը Ba\\\ax\{~\\\0/\\^Ug\lFd{\@DhllΟ\\0\\T!|ķ\ }l\\\:JTW{I\0C>jpg~Y]]wypp\\\0\߇:\p#[ \@$T$?{ja&W\3\:\w\v<\07\p\\\CI}\ T\\V,Y$\\\2;u\8A$׽\߻\b[\\3\\VX6G\:RPu\\A/aO\D3PW#|v9x\0\k\\Z\<3\u\~\\>\?\\\\\\'\|\̣\e^(a.{8I\֗ { c]z\\" \Q\\(\0|E\ \Տh\\"|v\x0\\0_\O\eh\\"%\\!E\0z\X\_qh\555r\8M{\99C8~Xh$VFM)HP\. ٧qo4\X5\\0\\\sM1\P(t#wm4\3\42\0\X\\\\"\\\ \]$Bј\\XL\\s\%B\r6Q\\n)MYLk\r\i3\~@b,c\0T\]v\\P\A\"\\\e z\~\8>\w\0\f\\\Ҹ|Q@\Ӊ\\':sp$\\+t\p\RKX[@ȝ _\:M @\X\i,\\\\\W\\\\PB\}ή\w\6\˙\T\\\l_\<\"!x\yyU\\0m;nĤR$_89\?げװ\ \\\ҋИs\[\m\Ԉ^{q9[ɄȦ\Ulڄ\\HT,\\B?o\\\$PD8\ͳ\{0%P\bW\\eSLY-\R+\ \L;&О\ ;zzĎ\[\[<\N]8Z\"NXy\%%v\H\` \\Մ\=\8\\\4]m~]]]+$t=;vp\ ˁ\-\\\ZZ[ߦ~퍢O#xy,K\P/0\\W8\I\o9@\0\0,X\\-\\JUvNMW8Df\j4g< {\\\\\$\G\" \\r\͍\g\rp\oN\rs\\0^m\0}7,KoFLt}$܍\\k\\ Q~\DM#x_M\\R\sfQ\;qOqɒ%3\\DBx 0Zy\\\4j\gY\j\=\\na\TyN8\\\\r\\\k3\?G{vV\!\[$Ч74l]v\\%\Y\{@\:=\{\E\{\B\"x\\\\n C\}\ݹ[\h\\\YL\\Z\"%|\Qr\\ѷ\k\p\"\&sa\%6}\{Mץq\\\ \=\\\\)\\P\05\0G\0\\/d\f,Y\¦\}z\\ԁ\\ <\\\\Z 5\XqG\0@W\0¼\0 o :-\;\x5\"%\y\0t8I\_4DEi\\cW\U?\PE;o\`\]Nhlmmmp.\ | Byh\o\\pҥ3f\\\6m\$N9\w7/ \\?.\W\\C:p\0SX>\Q8{iB\4Ԝ?\qK\0._~\0Gym\?`\\ \֖f|Ա\0\nxvO;O\3t<\\#\<\@H}\8\cռ9O\1\-.\\n\0\\LK\"1t΍F/\\\'\0~No\7k\\A^z\-\!\\ʕ+ð\\@\\\\YH$N2m9g\i\\/t\ǜ\\\E8r~`Ǿ7dO\^9sՌ?.--6H\0|9\r\x\\(f\\Z\n\2\| \\u\\\~<\و\+l_b4\3$>7\G\oh\liin8\n,{\r\|\\\\\px<\\\\U\\8ɾ &\d2pȶ\!\\ҵ3F`&\\\\\0[Mh\Ȓ\>188h\|\thG\\0\_}͎;6\\n\\\\ /r\\\\L\@xo11\0-Dkq2\\p\0چw\}\z\r 1\_\\\\*-<\|\\h\"UW]uAww\P\\Am\@e/}\w\L`N\ΘdWWW\hr\&\Yn\\0H\es\'ľ\(rAJ1D $J.K,2#\%ض\\A._\\\\w%/E/DaD EB\dg_p\~:-JRFZQ\1^\\\\ i\"\b\Wa\Aӎ$b=b\y]\~1\"Qd3IZ$\\DO1M\$\Z\\ߐeiXF\AL \{.8\C`,F\s\:\as\*cD\'1\\R[\[\z}zy\\\\±\\<a\\07DQ\q#\4kD?;x\(\\r\\\\\7\otL0<<\\sh۩Z\\87Ї\\\6\'&&P\?t+DFD\gee\\\q\lAU6\\o\\^\1\\,\\F\r\?\rXADWg\0\0\0\0IENDB`'),(139,1,'Satellite_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0\0\0\0\0\o\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 \\IDATX\\X[l\\\3\^\\\\Oc;p\k\\ **\r\rm\G?Z)V?JZU\VUђ\nm\\"\"D`\kc0\\}\\t\c6\r\X;s\\Z{\+BzMQ\\\ZLUR_\VN\\\\1gNYYYPWW7\d\\\񽝝\?\\֦ON\Z-3u2L-s|\g\ĎW\ܔIg+P ,Kə\\o\\ё\ B\\x\"+\,\S\\4mfg^G\\]a䘪J\"MM\\,Y\";v>L;v\X,\0HTOLj\f\\OH6lh\\/-+(waVrml Ai\ZX \\ $G\\\c**\\%\zU5p$]s\q}UʤmR4L\+\\@|\nB\j\\\D}iϞ=\_Oq\ \%ѐ\ٴ\\kutt\6f\Qʺ0xR6L&+ \\\\$ւ\qN6ϋU\}I\\0\\\\ْ\\0g\0 tH!\`\lc:\"\i5\Q*FFF.?x\\d~~~-d\u\yrrr鷿\O\\\\\O..,D:Df\ \45J\\๊B\\CΎ\#sl2{|\;}}}\g9\#l\!655\kŶ\\ׯ\\\\,5[sss9*s[2\ӟ\\\Z(p\\"dL\li6|Oü71ﴮ+q]\\\'a !H\\iܲX\y\13\O\\L*lt*\rp): *\9\ N}\wz~\\Z\\\G\'in\\Լ\\ݻ\D&\t2hG\Z3B\\\1\n\\<\\H.\\T\Z\^qq\6@q\\\Z\Z(lׇ\/_NEEE\\l TdS8Nr-AӰF\I}g\$L*-`cB\ϟ\\0n\x/((>\AUÒ#rgE\>\v<<\P\\-O\L`n;t\\1pޙ\'IRkcVX.+\36BBޭ\3\\0(\"<\:࣏Uf\:\n$ݻweX\"(\=XO\gݻw\1hZ@\Z499)#\\\\0Z\'8\\\?zYx n\\\f\5O\\\R\iZa\:\m:~8k\\ghEe]t]6 \XTW\ɤx;:\_\\\\q\c\/J>R.;\7d.\\\Z\|R\"\UY\\0\\\k!&2\\\qoߥΎSd\\5܎\\M|#Ą\\o,\\D \)39 ,76o\L-͛мޑ6\\ ]\d%\\Jg\ZZZtLJ:I\ܰR\Yg\E}\\\rڷ\]_CX~0A_\\\Y\. K|#\2u>\5\M6\\I\V\^mx{\\706\qWl\ڵ\\a400\0\\\\3M\\\Ԑr\/7Nr\?G_H\\\Jhr\ʆں֯+.//ѯz\y\\r zÙ\\\nk:\\\ @E\v\\\Ō\\ʪ\ᨳ\\\\ \D\'\|\K H\#t\~D\\\?~z\\9H#ߘN\'n\\9\F\^ggI\Ν;\rp%\0.;\\\\f𽽽]\rl\Is1\\0ΰpw\\\0\0\0\0IENDB`'),(140,1,'Satellite_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\'\0\0\0N<\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0KIDATh\\ZilT\>o\cc;ް\'lv \@hC4]RBKE)Em\ZӨIC\6R.R?\"*\**Д4i\Z\$͂\\16`\/c{\\;\\ؔ>t޻o\;\ιw\\ץܶo\.7d\\{)\q֢\?{\\K\\\\raOR\\ן\wVW?\\J%e8[\ުdlԶ\\nǵK\\r\e\TM\r\ZfRu,S4\r=\~}⻤\\0`ΜT\\EQeYQ\\z?.75~ \\Jh555dYJ\\\\.Y\߿ߚ\\k~&N|\v \9#\\"DZ\\ML:E렍\g)Ml\$U\u{\׭N|Y \)ێ?\n\ E&\x}\kTpG| QQQѸ\ٶu\V:r\\رl\Bin!Nq$i\ޮ7u]C6̱I\x(\@#& \\6 \\!+\0 \jL\m\\jJ\r\'l}\\0Ls\2r軒$+^/;Yk^Ʉ\I/\rPiJf:B~O.\\OhѢE\\ӧ)NS0$fb4\Z}\e\-.\+=\Z`7\rx\Q5\r`9\J+9\\\t\V\&I\"m)\JcK\"IJ\\̎,s<\R\\0W\\w\"+U]#\i\\#~r0p\\\\\nM \twm\\iݺ\TWWG \\999g\,Y \)H\\\MUU#0V@\lX\\\Y#.{[W͔\"\umsl=\"_\bYيpI\}IvٱG*\\\r)\ \\0‡cC^I+WT*MTXX(\|r1c\0\СC\A\\ϣv*--P\r\<*W2`9G.F\r>dg\v\\'4m\\R)\U\"XZ\&\M׍-\$U\yYu\Oh\Ĺ\\\\Z׶-\\\t\k.͜9rss/\\@xB9A\\K==#q:p\(ut\=}ٽ\\Dlx\r\0\ɸ8f\۶9\ h)\kB \\la\T2\U\0-;@\.\'\O\x(-/\~\n\ZϷ\\Z>P⨪G5Ձ\d\Z\\:)\\/\Ŋy\fB\ӷxISlT\QW\\\\\\=4Ee!=\r\%ײpV8\n\\8\\Iۖ\0̃\\0\kK]\~\H\(*\*\\ bI\I\\tFoWkڵxq 5i8\q\d2㍍\zT[[K˖-Ҳ\n:\xDL\\h>R=!TU\E$\I\lm[(\\b{\F\"w\̙\M^\,Z\\\\\ \pOe\0B=2\G㣊\rm`C\\9\M3#\n;0\G.Bbȱ\%\](щX%/\|OO\0c\( \\5\FRKyx+U \N^\\G_W\ d4= \ \\+/l\Z2r QPlCC\\P\T߈\N\\̙34я}\\m\M爯3\\\C&\0ְwF\=\}\0cp\\Z_EHVf\]]]\5\0\\^U\nsj<\\\e-\U|_U\0{1fyIuu\\Z Y.]dD\"S\\\bw\\ xݱ.n\\?s\lz\WF\\gv(ӗ\k6ÌCQ\^D^\\YrhѺi\\bI#\\Hvߢ\fW r\,b:]7e(\P\\0Cƹ\\Z\\ϡ[\n@j@n \!\\\1\ZTV{G\\0:\ \\\1\s/=\[40\OgZ\0\\\B0Y{\.q\ŋTn\\\0u#\\0n \K`M\c\\\\?\ Q\5ЛxnƵf\nǴ6p\coB?C\\\|\:{\rkokw\\ \qQ} @w\\J2D\@H\{)\.h\\00v\,\u&B873\Q?\Tx $nH;\1ιw\\iӦ`\f\}\\`q\\\F\ O&^\B 0p9}\ro \0\C0d͚5d\0\\Zϭ\LUΫA\\dYm\\,q\n\/d<\Hda#O\j\\\r5@\raA}\ \ј\\\0 D\\r\r-TqJx\7\Wmh \rJ`~—?n:4o\o\h\dn*M\\0^W\d\?Q \\=IT) p\D\n\\~\X !\\n\^g\sSH=Q&\ZbBa5Q[\n\\p\{\|{2\0S\ \圛ӹHM\\YfˡK\7l¹s\k\r&n`\n\_qXn]\\\\^^0\\Y\!h\ü0r\\A[z+\\L\\+7L Q\t-|ƿ/ep\(\=4콘J\$b\j\\j(*\{TөSS\++\82J=BL\\'\0\e?q \=Q<\q\\w\(Ba\\\Ijin\\\xDIK4Y\\߃z~\,z<\Js?\0p\\\B,\'ڷo/XLM\r\\UTTE@\hv\?c\0 Uw6:\\ua\\Q\ϭ\y\\l%\\\\Pɹʼ\0@\~\\x՛\\\\0\\\\h\…\"\]\\\m\D\\իWJ0N_k\Z\hlA:\0\[x\a^d\n3 \0{\\\b(-VYl\\0\ \\\'VT5!\8۶\ٳgW@7 PV\\s[UU%\0a`\\k׮kc\g\pq\ wJ-P&\Jomm]˫AlhV`3&Ba$V}\@>ߓ\ap3ڢ\[&\_\o\\\\&\\\\ qU[\(^]\"Ϯ\r\T7;\aF0 \~H*Q3.͓\\\ԇќ\H\Bb3kT~x\@0\\݋\\w\\!Oz)q80+v\\ٍ!\b跛\0~J\mӦMA\\yHm%ee\+\\ \hN<\\\8\8\\`E7&>#Ǐ\)/,S\n\0 \\\y JDZ;\\\\\nW07u\�c^\86&\oM_cy\0*[LXL\0D8\06FL\͛\\º\'\\\/w\}\ڵK\Ν+\\\$\\\\\\\\TH\|l*\[ P@(,\\wYb?(1EBd\\\\\\h|Gr\\\\\\\Y\ll\Z\ \\0dUW\o[Ң^I= \\\ԆbI{O\H~\p\\rR\\\\,\\w\\;~Ŋ~E‘#G\=z\3ا\…7\'\?\=%낪\ޢ\hga\6wT]nDp\#\k;d\0\\]xY&m\\@_&\\"qL\0\\)\\-O|(f̸\MF\0&&iy`(Gf:c/ S\"E%2e\0|ˀZ\9o P\ry\\\ I&\n9\\3\\K\\\O\\\\e`\\\T\ܹ3\"gB\HBi\y\+m\ZLVc)\2\r3\\{\ >#N0jb\cql\r}rP$\\@k\Nn\r\z\ C2\\\n\s\\0\025njW`\* T\Ѯ\\%`\Ig\eJ\d7d\b\l 6A\xy \\d( WKv[oW/yCi\^_\96m\\\K]]TVV*\ᆬF\\%EA9\S\ՍoIA\\\kqoS\QgOW\r\];\\((\,Ъ\0* \\\\ym$\=V\\46/c\8\ \: ^gՎJ@E\ǯsө\k\:Z4%(w\[\\I\n\\~k\ئ\\H\΀\8@\\J1Be9\]Ţ 1.\a\dw\~:gۛoY\\޼]Vl+\\1@5\HA\0 \"Exת4i w\L( C !FD\:g\;\\\@\p6\X7\"\v\_\9\1i$%.\\'qZ!\%bh\\"դ\\nʀxܾ\\S\\B\_4N*\B{\ l%RiHQ\ji7DlxJkFJJJT\Xz]za\^$y0\\\\"\\u\q\h\_ 8\:Φ/H_u\\'dGKA\Ι9Ȁ !\\\\\pۆ\\n\ O&\Ҳuk:o\y\5;d5\\Bp\'\\\\u\rH%.\fve\Z(\`4hx\\0T†u\m\R\w1#\\Z\\nYu\\.\D\h\_\C8ě\\&\\\\0>J\'ʛ8\:ڴ\"H!r\\'n;\l:\ZѠ\\\u\\@x\IAif\2\\/bXJi:\\ H\a\nu\\\\w!\3\\F̓>j\Zg„ >\0D\\\&\\\C2\0\\\r\NS]];rrii\K@9i\@^\\xJ#<`/~@\j\\# \N}\\\ϮTAi\>\ݾ\t5Z\0\\M%:\*\*\B-\\ja\\r\\\\<\=E$\\\??H$\\|}\0\0:\P\0d~zF\\rK\\v \fC^\AM\r\; i d>7A\:\\{#[\r\\\*\\!{?0Hxj\/e?.\\G\\f{\\ 1OJ{{\\\ړp{3\<6\Lx\\`W,G\>s\\\&E ?g\"@?\\Kcc\#\'H!i\\#\i\#C\q?,G\L\.l \;\UB^\p\\xOB{!\\ͳ&RG$\R\0\~\\p\\D\sAnj$޿G<$D\0${H\3\\=\0 \p<I\x\0\\8\p\xǼ\l755ee\\%\A&䯫;\\\9\H\2o\\"Y\t9ΓAO@w<I#\\=\\(˱ߍ\\!s\\\ \Chq$\s\\ӻPF \eR\@\I\ҠS\>={nH\F|X\\\I_\{<-M\Kfwp\Zr$\dz\,eU I:)/?@7\0NO7\|S\%s\A\Zߊ{ŏW?rp\\6@6\\ZMXDZ B\J+\'\\[\w\ء\b\ \\?#Ku\]:\\Ҡ8,eJ U\ݘ~\IS\\!H2\8\\124\馛\ \0\MX8W\ `B\?v<\J\nz\\T>\r^D\\w\'\#I\0k\rh\hI\0\\--%\C&m8e˖< \\r\_\0b\{\\r;o Kn喧`\G|/ ]1E@}\$Y8gF\0Ap غu477\>#1\n\J\LEꐥ\P\Y2ɡjv\4GF9Y\uC${@bx-\\u\*\\0Mp\ܶm\\\W4| mV\\~Ldh\\\0\OB@\\\\PYG4\)\\))\\v\i2\\.\ܳ>&\f\Pm\\0zm\#Dކs\\\8.tB\0\\/**x9@\⢢vԢ<\#\0Tm\\2ir\TV\\O].R5 #r\}_@D4#C\Z80&pXw\ܹ\x<\ 3\0=Z5l͈\\NUH23_\\BAdPNH\0\3h5d\\gIWG\"O\"F\@\\\\ŏ\\=O@ЫG$\tZ:\pN{\]H\%68}LyCuUȹ\\$^;z$\5҆kn\#@~\X\ԣ)Stp\\\zO\\CI𨀫:\I/$iW\;\\z`\\\nΆ}\?+\ _L؊j\gaPe)$\ ?W\5%\Yy\/\k7\as\÷.}\lii\n\l\+\`\Â\s\'\\\\\=AͿ >ې\\ wZ?\\\􊍯5\SOl$V}w@R\M\ڷo_\ C\0@+d?k\gv\nG0\,&ǔ%\\_Cp׭\ ?[Z\M>]\\\۷\Du3AC U[\\r>i\Pꪫa[-\\߉\=\Z\XF\\;:t\~ڂp*\\\ojj:q\P\\ɓ[~1%)\p)\E-O\\'շ̐\\O\\\\7%m<\\\;۷$\\ǢKg\z.Fv\i\yԻ\\\L\m\\\NN8\'\p4\0-lA6TOtj=N/o\_KN!\\b.o\\\df\Z\\' \\K~~(r\O\\)zQ\X?\\\rr\Ū\\Ξ=\bVTr<\ҥJz\d !A/\\\0\b|\;\޻\\3\\mV/*I;\'OL(n\\H?3c\"b\m\\\jg\\Nqɒ\6\/e\ng\\z.Z=?\\!\+rlY\?֠\@j\v\\\7\\~\!\\Xv\3f̺a\\U姞r\n\`\\3c \\\g}\#iC\\\F\u\X\͸&\\W_}y\֭o͛7\\\\\/v\\^4m\\O*\kSV vbY\OOO\lK\\\\\\\ߎS}\yY\=Z\ܼy\ox\=zr8T\\r\W`A\$X\ 5\z_G\0\\0pX!\=PgO86lذ 23 \'(\[\\\ٗ$u\A:G+A5~<?. @ \I#] o\-\\^^\[n\\#u)2K^|\E\X\\n!\~]?\\G\0\z\=裿\p \$\ُ\Z㖀\|w\\$+d?\\ #s`\0\0\0\0IENDB`'),(142,1,'Satellite_antenna_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\\\0\0\0\0\0\0 \0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0:\IDATx\\]`TU\>\͛>$3Hh UB\" X buw\\_E\uWqW\u-ذ`\^C Bz\\kwJ&[Xw\\\y\\˼\{\w\m \2\\\y\\\r\0^\¥\Z)\.\ߺ\j\Y{$fl/\\0\0\MZ\\{1.\cZ\\%/@\\tce\Zh\\\1͟s\\{\\z~7\\?tv;\b :\\Vu\P\Kw\t\\\0\'\\L;|/ CBr*$&@BR*$%\A\XU<h\tBc[745A{k4\ՈfEvٲe$\\R}\Y6\\\a?\d\\\nq`\"TRZ n\\0&=4\\\\\*XNT8|񑿿X9\M\3g-y\\t\,=q\\Y\v95\\r8ʖ.T)@\\6t\\ ~f\˞\UJYY\ \s \\0S S22RZ~\yl\پ\\r\\"I75\>eI&\\H@\]{v\4\\\~\@\ Z\ZJ\\z\_$\s\"n\i4\ wc\\\ɯc%>\\\\\"}\y\}\G\\\\\\\i\j%nHvV6S\\.: ߴiJZUX\9Uu\^٩\@,\\\QQ(> ?D\\\ywJ\\tfFZ\\ʪ,\\,^;!\kj\\%F*$y \S\"\]RV~\] Ə[\\<Scc\؊\ӯ}\ɛ(\\\9^\n #\o\\YC\'ʸOրII)Rc\Ue hTS$$ɃJ\jAdQ|R\\O-\g\\\kR\z\\jZ|v T:tF\Fiڴ\\cZI^\\\z\ҕ\}?`U\M7]\uAG\\|<\Y >2EB٣\p\Y\D\\'cNI%\!\\.]Q׶ = \ۖla\\^\>WT(\,y\}S\-\ҿ^Ukߒe\z\\̝}T\9{>*+vneT̏|\>pd~6\ZU\\/\\\\aJ?\rx\nCRO2#Ib9JQ_%\\W?q\\0\lY\o4ʉA\\\Z]\Y\5Ns 0\\\\y\| DžJ\ױA\v|/(\J%w=\2\}\%Ӂ\?\|1~P\%Q\\2[\C,(~_\\dmѢ\\\\\Z\%3\}S\y5`A W4u,Zb\\`g\\WO\k ՚4l_C\ 9M*(\\1sp\rl9L\{\;@\\ \b\\p\\+1\n8M[R/iGy\\n*\ rRD\\ \\\,wr2w`jkc4\q,vIlB\@\*%\i\\r\n=#@d\\]\'vD\ĥ\0g\otFc\hO\\\'\ϿOU\\\%Y @\0\e\'up\J\\\x\\nlݼ\\\QS\|Eo\1 *e\n(+\\Mu`$Crv.LfptC\\T\gpĘ-*ZY\ݩ\\6 \\\\\\\\\\J\\/3LV|y\\QQy\y\\\8K\9NY\\\G:\`(\"\Zxe\\ \A9l2\\\Ae\q4\\Z\r;REC\ g\h0\\@L\ \h\uZchH \\=\_>Y\\\QoK4 $ᔬ0 7W\\7v:9g\<\Ta\j\\t0h\`\gh:*h%O\Ɋk\6\\\"q \B\#\3\(g\[b2\"5XR0\g\\\-)`kd;~w\\\{\?\A%\\7\\gv>~\\r^b)iw\>dѣ7,&\\?\wt. \GfCn\\=\ \\իVC\\J4O/\0sl\\\b\x\0\\\Jr\\2 ~t\ZI\.z\\\|c+}\\\ΘEKI=\u\\`\Z:\9W)_uosK\'\\n!ғ\s҄q.J^ Lx̊)).W_Y\n(\`-`\\=z]Q\+2\Zcth\\u\Z%fUjT/TŜ\nT?\Z!U\G?{\q\d)SQ^T(Z\rb !\(\"\;\ZhATJ.T ! W\ T|\;5닏\\\%q\]\0b8\G]\"Rەu\\\s&\o8T*axgKk3\\O\~\m\DU\\֮}{\\\o޴Y-<f #F\u.\y=ct\\r\n\NT؁\\x(x*T/=.$^\3K!zD҅PЊ\&^~u\\R _F\df3\c\\WRr\"E\Ɨf^\9\\r &C1\UNr]U\' @#bps!\ȅ\\f\\\pάr߰\\\\\\\\6} \u\\xԀϏ>\0@P<5UGfsZ|&\\\P͐ŗ> s9\h,K!J\i%?x\\\\x\\k3\ӊsgΌ\P\\u\}6?\"\{:+?y\Xm1/\am\U>_B\\\\إM3%h\\\W[[SÑkG~\~\z} \Th\P\P\"/\~?V\\%܈rz\`\E+,xL*EɑgI\\\\)=\\\rY|.|\\atPP]m{\\z\\pF\\r[sN=M\\0ӕʭD⼪\ۼ\\:\\(\\⴦SUo̞3,x\0J\7_.}\ʏJ鰄p7uB\w\(\n87S(0Eh$Ðajj V\"|&e<\\\6D)\}R|\r\ZeB\\D\:J \Z 8V94\\\qA\r]v\"\n\C鹿\\j\\\]Riٺl\\q9\s\ɓ\\rJ\1|G˛\ZoԿ\c\\\}l\\\\\\+\~\\^ZAT< I0t\h^<A\Ya\F؃\\ʱ\lThP+:%{]=H$\\`GnɊ~@R\r\\b!\\Zpht\\!\"$\VA[ 1+t\l5*m0\@\I%8;\r\\1໷\=\ۺp\\>\\>j{\\\$>\iw5$ę$3\G\\Z\<\5_\u5z3\\&ci^\}h\Xy)\ZB% \Z<\\.\'twu\`\\A\\R(=rvn\\\\Bc+g8]\!\PIfل\\¿\1ujPi\\\nK\Z-J0pgۻ%RQe\F|P_[\HS9߯g\\}GO]1z\\\\r8IFٸ0/T[ż\\啍\\'\z=\\\^_Xhf23 \h\e)\\5N:E\k\\@c\*i\\nCh*\Zm\I\\\uQϗ\x[\r1A\\\n޶l\\ݥ\'\\^4eLή G=\\\Vx>\\\\\\h\\:_?+\6s\ZLON\@\\\'\x.HH\h\\\V\< y \\&ؽk\'\0jƆ\F>m\\8*^\I$\\tSi\'͆\0%X\\8>\\0.\6\h\\\\&Κ[.\\ɢ\rWC*\,;\+7\{Nn\Z];P\f(\5\\\[Ф}:òWN+%\'3 tf\{u@\V\\\\Yi \H\!HJN\Z\\\4\4  _v\(lۺ\r)\(RtG-EE\3\ \wu9\󸨡4p\ChLTJQ\h\ͱ\p ۨ~`\#CA\wU2\nv\΃\i\0n\\\\0\'i\\a\\[\\\z\P\_0\\\r\Q=QRU$$$&J ?<\\\q\H\ G\'=A\\Dr^jOG\\0\\rv\Y\\N\\\a\\\х\\\n\\%=]$\"ۏً\\h%rzz0uvt \-֫GW\\\>UQ ;RPq?\^Xy\e:\p\G\H^B}9s\ l*B\ޙ\\yy$ B\)|5\VB\x\Gb13 \d\NQQ!lߺ\7 Sh쥷\\\(\ \4\F\z j\"AP wP\t<\n\\ZNZ_V_\C- \O\ϔ^,Fib\\#\\$}~\:Ibb%N߿}\\F} \nRiy\\&yiGJ|]}-}9;ZgK\%%%Czz:D6ػg7\\\bN\r\\\Qy;ϥ< I%\\5P\\\\\ &4jd\ZO\g\W\H\[\\OWD=.¤`\AL\A\UAN\\\j\:nxvw+\'>_}\_xΨSw\\'M4\M~Jթ\\Dp\Ę!!)\r\rZQH\Z\Z`ҤITmh\\ːw#c߾=ُ\qBˬXq\Ѹ\ڱRS\!\\\\^9Z؍\NT\\aYA%\!(Q\C\'e\Ht\x\\i\i\֜\ \τ;ң$93G\1\\eI9m|\\k6;dQ̰\\\ 9\Z\g\@Wg+\2;;Z)\\!\\\'\\'C}]\rzP]S\rv~4pP\\>(<\\֭T>X\"wm\ \\OGJ`FA\ \n;o͛6A=V*\u\EswAb3\\Q\ࡪ\nb\f0\ZMA^\\cC\’\2fH\\ p>i\g6 fc2\F\\\N.zLN\K\\\X*&\0zcx\\\\6\\\\rܟ\^׽\(P@r \\\\Z}\P\\\"\\\1ڛ\\%\$]?\\\>[[\;:\j\6ˀ߃?XLEK%\\n\\FCj\Bg\0D吡\a]u#\\\ GKG~ \\a\[h̾\%\M\v\Z X\',\gU9\Z?|tp^\\y\.\\q\d\nSD\( 3ZuvR>rh*4\A\Q\n?$%8J\"\J\.c\]\\rЅL\\\B3\c\\0b\Af31\d\\\\i+2#0~h\"\013\m` *\y O\#8t\9\>\_~\"U=\..ɧ\'*\\'%\1-9e\\\]\q\\\Oyw&QlF\\ @3kC\\p)#0\ā\\\riii\e\' @\J8,%Τl\'\'wP\\C]MͭPW]A?5=h(Ԣ\9^V%: w@&\;P[ t1&\\1:eĠ\St RC \\E:Y+>\Ȑ\^?&N\nK^|:o=3\'X\45=#R\2$AZ\\[NNn/j\\ݩ\ гcbbh\䯑&\Zks\4\Z\" CLU\\X#=\7k\0%#_>zԴy\d\\I\'G)\8\w\"v \!RU[G\ˑs7Ckk3dg¼_G\jXvc\\\h\\l\-7\T\OW\(*:Ա\\;i\7\x퐣m\\|}n\\b\\|x\_\z\\\\j`;\͝8\\a\\A\ѐ*\E\r#Qzj2\I }\\\8 1\]>(G5`1Q \A\Rّ\[\BE\^a\ǏUЁ\&G\nHVl\Z\\n+\Z\\ў(Ct\\r 78\>\\\˻4slJ9\+?\?-\ \>ae.kS\\nݒ(\npo/\\8.b\\o\\w\S<_|4,k\Ϟ~v\\۹\\.Yִ1 \\\dz`Q\\y2dB]N->xņ/ʎ\H%T\$@(\"\n\q\&\k^U\7\!\%\\\+1\9Ӓ-\v/s<\\\\k\+ñn \\,[\f\"k&K\\3\S\T {\+*\]~\U\wp&S98Оgꡣ\I{\\H\\\t\jxg7e }[\i\%Ls\n\\Uwe\wN?ٿ_W\\ZA4u\cwQ\p d\\\gX\b}^\d\-l\ 6\-~\°E@S\U2Lr\]\Z\\n\#oH\I*zPgd[8($GUF\M&\J `ـ,!\\V\\0bbA\\\F\в+V\r:rB[w\R>\\@\=eiZ#TZéȰ\\\0Q@Ʉ.\Dž;\0\\P\˰\Aװ*(e\\UJԩn7r\\1c\&sTZZVa\\C\Z-Q\=hZ\P\"U2|X\񳣡\\\&\\c\GJOOOF\\\<\\€?qxd\3\\n2~\q\;;R *R)\\\\\\\00>wFsu\\\"(*Tz\rg\pszF4ab~\[$\\o -%\"J~\8o+LI 6uCsK\ڵ\57\w2DR>51QnngD\\^/:s\\Z\W\~uLRR0\ET*U\*\\\\\\@tO\\}\ًa\\\\qe\\Zi\\\e|z\\\\\\\QڟONN&MG ݡ{B\g\)\na |PQq|@ƉcWBj\N\\lC\0aV\\\_%Ӳ\Ai~u\TbQؗ\\;C\THWLQ\V\\ xD Hw\8\Z\"\7<\Ԣ\\\5\w0>8\{U\\+FD?\0\\\\q|姨z\\"\{\'H\\\{I\#jey8Rώ9\\\r4VT\u(X\jRu}Mp\Z?$\h\\D\IH#\\\\JVU|I\C\\\\q9F\_qxw0\U\&2\\\\Kx\\\\\\\"ҍNQD\Tq\/Z^#pǏ\nŤ\\o\\\F\ZE\,\U\n<m\\w\؄\\l5\ZO\0\+dd?EK|s+QF/e\.\\\r\\p0V|<2tw\\\C\\\\ց#\'\I\'KwnA@oXF\\\L\i\P4XȜwUp:2:\.J!i玭ֈSr\5\y(0GMܜ5d⇌ E\\P)yʘ\qy}L\"n\\\\\ZsO\\]h=n\\V1\F>\\5}\իjP\d {\#Z\n\k\ B\*U8|`;l\]Kb:\M.8f\녽\?kj\IVК\\\U\\*\\\^nW[?\tVG!;\F(\?\\^l\\\T8Y&U3\\ \V\\6HFX9Ή\aU>?/~1\\NnK\e<\n6\9\\3\$I-*xb\T/\~d\`!>\,\k\\Lp^w}\\t\,\Z\zQ4x_|w{#\5&:=dH\o\3\W$,_\\k3Q@eZB*cӽ㔯μ\\dd \O\r.\\KӮ\s\\\\rv|\\\d\\!\\1\\"\䒄G\`e\Rj\\\6v\懗Z-\Y5>!U\!\\'\'%\\'\k\'\rqݼ\GM|7;g\o]Y\|\\d4#\dF}b\\!`Ͽ\\Iɩ\ZL\T\c߸\K\^XroCiֈ\"\!pk\\DQ\\+^<\\(C4vgVȃ^[\\sRR_OHJ-e\֍\M\:\\Co۽dQ\'\\!}R\'\"\Ͼɼ\쑓$lC6SwlE\E0y\\ R\[~\#\^N,\n))\r\\yw=\_x!A^1=\K\,\\\\ZM\\M&\1FsQ\\r\3R\\̼\Y\\\ǘc\g\<B5JKޞ\\A\_o\{\\^T\lxckQfHGp\Pwӽ@\}\xb%\=\\@\<\\2C%Í\\7Ús/@ɒG4\Z\=J\n ?|]OH k\\N\\tiuzAR=gЩF\rA\B\\"cU\8\\~a|ž5\\{D%Ū\?T\"нt^\oFk<λ\\'/\%\\\څ\0?+\ma\snA6\ 9k\ğ \oAH\nc7\\\\w\\ZmR\Wps˺-K} \fe\rh\T*5# \o%>@6fh\'^?f\n pY}W\\|??\'\\[ jok\{pqD\%i-\|\J5\'\Rx\\0\U\}9Ȯ\ϟmf\pjH\\8@CH?\\7g\s(ſ\r\~\OJwoP)Uw\U(\\`c\\?T]Y\*U+Kʀ8\ \o\\u; UWWV\ 6필?c~\\^7H(\\'%%\\\\\J]\\:Zd8I\6\'\\rl\\\?\u+\r7VS\U\5)\ąZ\Ʌ\tƜ5Z\D\'\4\ZM\Z˲\tޤT믈 w\>\Z\\\\3&\n%N6\竪8\r\Z,\nL$ +\`7ñ]\β{KBڸ \\#8\\f/\$\RA\\\v\5\\\?\\\܏\H&\0\Yl)#\'=* UӮ\\\\\Y\d\a@\ \p\\Hᾇl@ΰ>lKs3t9=\pz\N\v}]cPǰ\pHY\\\ -\e\Z\_)\[\\DE5PȆ\\8MA;sCS\]mD\\ Y ,\\ Pw\\\zc\p\ #ǂ51\r\H/\K\2&)\r\Z1\\}}\[\+{`.\H\\b\@swGt7\\Asy0;\\\\nd^`T\\N\٩9vVGM\nbLt\.;^*iA\Zx\8 jwC\\\\S֤\M\ruLjf\7Zfp&jO!\d\(ϿC\\y\\V?\Jh<\ۀ-V \\Y\\ \0O lޏ x$\\\Qu=.\\ݽ\\\8\G^\'$%&4\\\[3T:^\\\jV-\\nT\5ZZզ\n3\\DC6xEn\rFv\\FO\d\)\\E>j\X\ڱN\'\a\;\ؚ\S\\\`Q,Tj=]=Q \3\" {;\^\mp)_\\dwlhq\GL&+0?\()^\\E1^ϓ\\8\ft# !Tٴ\%\He\^Q]\\'Q$\\\\\V}\\D\׭Z \\QX9\j@5GI\a\\!\\s(*hkU#R\x\#;\X KiDjhh1\\a\\c\X\\;2R\0A\\\\\]@\7>\ػ;9̪\\HTG9*\n\lC\'\\\qj#\p\*bP 4 P,#j2.VJh!X~&Tjr\ C\?\\y}\\c\\y\|\\u#\t!@\#Y\F&d\9 m5\л_N\5 ˅2\\\Ե0\PVGeM(\\H5*.^\\k\cF)\\t.\\txx\]\\0Y\Z9\b>>\'vl9ZrO`9tg\&S\Yg\i}\IΊ\PDKi&t=\r\BK\,ʡ\r\=\YʳI{\\roq|\3\'GWJ8\ZH)J\(V\\_?k/\\\w\Jo ~}\\fz\\0\0\0\0IENDB`'),(143,1,'Satellite_antenna_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0b2\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDAT8\yLT\0pǍƈa\e\"W7\`\aqA c\2^+p--\іcЖrvhe2\R0A\\\P0.6\Zgd\\g5ф\\\\}n\0\\B<\F\"=+\# gZL Ŭ\2-\\2\l\\\$ZM9\F{\ q=\'3\\\\\\\n\vD \\Xf\x\\\Ҿ=<<\I\c\nR \\`6 ihՎ\ay\*\VתԶ\%|a9]Vk\\p8\\⏔yzz\S\dsHH\\\\\\\\\\\Z\P\G}\"\\\\\\\3ɞx>\\\Z;\'s \\\6`/_\Z \TPy\\B0_̂ ;\th3 \R]B\"\>ڗū^Y;lB2\S#>1~AQS#SJ@\\Y\$Q}\wҙ\D\/$:\7$ZOb\nH T{\T\0W9Iͫ\'grya3\'Nϙ\J|?\>\=*>\\攬~\[K\\M\lM\9\8\\\M\c;\s\~\\\p\U\(c\\G\Q_~\ \\\w\ #\Ѱi4\0\0\0\0IENDB`'),(144,1,'Satellite_antenna_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\"\0\0\00\0\0\0tYR\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 nIDATX\Ř PSwǭGuw;ӺA9\ZC\+ B\\r\\A\0\nr\UbE\]\'\v\ZS\\\e\{\}\?\0`\J\޿-\(o\U[j\;*\ck\r \W\\\j\r\n\\50\w\m#4]\\S\\$ٸb\\P\t\xvM>-BkK\(\\)L\ OH̯\~00>eM=\\\S\gW\Zd\\ȴWS>00I*/o\,9]}c`\1o40k_1\m\C--b?Q\wy9y}MVVVaÆ\r\%\C\:.:9H$^\:\*\?\r\Z(9\}dVu 1, ȱ\\\\^^&ȫkbª޶rWת,=CS|z\_\ WSw\j %Bs.Blzĥ<\\g CI\\8jܯ-\B\\:!}Y X2\# 5P\6|du\A\/\r\\B\\0O͇H\Zr\!Y\$\"<0:\+7uoZ<\\ӯ\fJV\\\>\\\޳-\n\pI<m=6:c74F\b(䋥\J) \ QM\\\?]< \\7\\\\Z\Ç\\n\o\\\\r*[ӝ}\\\Ip:ds/@|j\ \@\\,\^\\4ţ \rÅ\!xM*cFy\2j@/\\r\"g۠\0]\Z\Z\X>\e\p\[Aõ^QRT\\\\#gF \)ɛ 0lhrzG \IHW\i(9\r@Jr\fI@$V\8+1\tg\.a)4Xh\zdt\1\0\\\`~\>ܘcS\\Z\y\khB\Zұ\\e \\n\\𴢸\U\P\\J\iTʫ\Vr\rTz\\7,Ny\0 I\[05-y\Ý\alrǑM\B?<0-Ǡ>zA@ra \g\.bRZ^m_%\5\\\{؄\"||&\\`f\.>8)P\ձ%\\\0s7o݁ѯ\\ t#لWƠ\\\:P))\l^?1\\ʊS\Ĥ\P\hJ].D\'s+8\PW7JZ{lN\Z3s\#/}`\'\\\; \9\I(mJU\,mvY4ɬ,\\\@h\\\뻏$ss \I\K8\r\9;\P\+Hipb\g`r\6LؙuW\n986 E堡s*2U\IMDz\Go\5.!\4lJvœL\0\)NNH\n X\\(hJZ1`cd;&\'\\|$\rx1\\k(\\\p\+JNC{ϤNՠB\m\n9<^\e\\^Q\q_\'H@\\0 \\T\Cσc^˄Hj.n g\\s`y\rm\0.]E6q\9(\o@{老X6vHaJ{Qt\ _tf\1=\nh<BoCυ\\$`q`nsؕQ0;\\n&Vk\'@y\A8j\\T\ \w A\zT %Y%I\\b%\\ڈ]Bsqq\\TV)9@\(\x0 \\ ¢\\\0\w\"@AM\g\\Ap1H\\<\\n\\:{X\\G$\\n!!\n!!U\-l]\K?\s\\\Z lN->_,N\G\!s\b[\-=c{H\\ξ\zl,[\\'Ugp\\X\Lsx]\^X$U\!e$RJ]= \nBbU\TV1sLͨTUq9&\aټ\veMhk׮%zG\'P#|. .\*_F\lܰp\\#ण9\&6}\89\"\\'%\rA\'\S\\\c\ZچD\"^ȦMEE\\\Zzq!\\\\:\X悅+\~\OT\cN\8\x4\Zc\\ \\䬊F\\F{/b\^cñN\ ɇ\X\\d7n\Ir\Z\"\06PyRQQyWv2Me\\1\\#6Z_ةsTA\\?\\\>]g-[f澽EAUGn\v\>dg^ɭc>uWiBAs[\TH.&ǔl\\-(=\<`\>S\A\K@\\\y \˚FTuUuTt\ZVe-\\28\Z4W\#%%\n4k\\3\Ex)1y5it|MCL\n \d/:\SFÓ_\v\\exUsH\n\JJcAaD_\\Q-H&\y\\1Rţ\ʌATT\zEI\EP9\Ѹ\\Gc\~+IJ@${YI?\\\\\\*\Zt\ro\)*=Pܮ%T۽__C\xϊ.ZA&u.*\P{Kwn\\=..\+\nVʎ\6\\uXtmع\'\" \"QҚ\ \\ZA\P\1w\r$\y\hhʆ\N/7JĠ^\ry5\\m} rkfYVN!J6n\Ӭ\\6r|&!\R1\H\BAMyc;NP!\\ʫ\\OL\\\\)Jc+\\#1̪\4\7MZZʫ\\Y\\\\\K˭ȥobcjw\>\\\*Įp\n(YET\q\ ő\g\Uu;\Uurѱ\\\\\E=#L\'6\9\\'+\\UYAEF^E\\O=}.\;H]]/O\\=de\[lͲA$\\\\\h\\h\|q\b\>\jh\QV\Y9e\73>\\\\\O?a\\\'2[?[~\Z\r^ڢyu\\@\/jbW\m0-}g\r\r\\w\\`\ _\\\K\\\\A -j0\\\c2ed\ >xV\\J\Z\[7S^G\\3.#\v\=V\Bc\\\3\T\\ITخ۴E\}|=[\"\qd\7Ԏwbf\rKZ콥\K\\-]_t\k[d\\Yb\ZsJļ\0\0\0\0IENDB`'),(145,1,'Satellite_antenna_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0.\0\0\0@\0\0\0eGE\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATh\\Z |Tչf\ܙ;}\CքEB\T\\@\N\U\j\\M\\\'`\j\V\ڪ\'P%a! $! \\̾\u\\L.B\'\;\N\\\?\ D\"\\\L\yN WEGi\y\?\\5dyx\\_\\oڴu\3\}x|Ck̕w|g\+\Z\gg-\\dN+L7\E,Y\)\s[\ۃ\ mٺ\\\J\x?S1N/צU;+=gd*\g&VA]\a9,\mM\lx\\u_\رC\3|V\\Y\\\1\k\\R\\&0\٘Sgh\[xǏ?<\|4\\\[\ޏF\㋾\Z\X<\lo3\s\z\\֫\\55\EeDI\:\,\\\i] \\TBJJʧ覕q9S\\ZF}\h-f\\\+\\\{W\Z\r\\F\"\\r^p\dz}ƌ\\\e\n\\\\r\Wp]Q^\YA\T\\\\\S,YL)q\o(G\KS\nK.Y\\,6Kt0Or\j<\7\\ _ ښ̢gƵ\S\\؅\Z\f\\۷W,]Z\}\\=\\+tz`m\JQc3e06) aI\^\ֿ\%|66\|e\bWܵ\\K\\r\\-8\ J\\_,Uc6Y\\:tZ5\\Z0\h\\rZ\Zu`5\j6\bN\\0\P3%>wwXc)\\u\Y \%\\rjd\@m\E=ZiX= jZZ\r\r:F\r `62\\Z\\VHJ\\ ԜJ-v\f\jK\Zx\\\\ oT>\ث\\\A\|@lj:{ɡe P\u\oj\鴎 RR\rA:x\0\\'@ɤ\n#QSԘuJ\06 xA\P)\n|N\{~\\D}G\'\\\v\b4oa¹\\^ic׾\\\r_~u\\\\\\'P\HW$\n\֥`2\\0c\Bh\?j\06yxҸ\7\n\\\/\\\;f\\ LZv)%}ca\N\7:?\9s8nUe\\\"H<̫(A\π\\*\hT\jR\C5nц\\j\"1\xVR}:i\-ʧ\δLY,#\]7u\\)x\\\\L2\7+Ee8\ns\`zN\x\!NҲR#\1h\"3̌\\0T`~jѣM\iO@i\tZ\\\\5S\c\N\r;=l\\\%\\^R\GG7ٌ\\\Cݽۋ&M|\|ksA[[+\l6X|\\rͨGU*%P$IT0̕Ğhx: \\a\\b\\y\\0\01\s]ߋ/toq\\+\\\.n\:\Vw\K#3%.\\\*=RIHh1h\ $\m\ۡbc\\jI:)\\R\A\\:\Czz\\h?\Rݬ7x\m!vN\NL\\\=_\n0|\Hݧ\\aװ\Y^r{z\aQ\ԀI{\_\\F\rT*\\b5ijAE\n\A0䇑HfB\G\0Eר!j\\Uxm\\q\hu \PpS?{뒴\\>X\1\\N8G\VNr(bcY\|\\~ >ɌR\SS!\`F{5\\.\?\\H0\C\!s!#\p\nCC\qH\,^E\FyKD\\W^oh\OO(ݹ\S{h0O\ܚ_<Ƥ\@G{ $@\\AEEL.LCG\nQvKP\0| \\@D\n%I\\%6C^aEYћF\#\=̷o{oB\\W\\[\$\s!Nɔ\y87gg\i\\5rNo\s`\` CbiN*C4$6oHA\"(%Ig\r\'\n(Qb$\'|\0XmVd%\rFLzާ$\\\\쩹}lɴJFvF\]\n\{zxp M\nz\ˆt\(7&\\Сj\YQf:9\={|A\ ʑ\\"\p\r\\\u#\\I\\w>j\*\\\x\z5\\\\0^Q\\yB=\cBJ \ \\\ر8\Brj:\\r\0 JK\`\\8\Ѥ$rblS\k k\\\\'a:\ Rű\\qԈ1:=\\*^7-ݺe\\'sPP(\\}^7p *j2\Đ\\*\\/cGBLL zՎޔ \\F)\=46dar+`(*T\Z\Z!##sl\\'LuAȐFt\p:\\-\_V w\\\9.\cLf+\D\\988M@\\j\-q\\'_ \|\\{J\2}=\v\\|\\\aBAA\'*\\U(Nˆ \\PJ#\(.\\\\\q\ZlY\\M[?\܋qZ-C\\ZH\0 \\\0]`;\T)`\\oi%|穠R3\\Ձ Ju\ ԁ\\#PE\\ZAB\\'BNNġ\}KZs^b\H\\\\L+[u\X\\\\\<\\ &d\\rz\ҳJJ&CMm\r6\#}&/7\C6@\n%:\!T\\\Z\\\^\by\\\\u\I RS\o\mm-ȁ\{!//+=ݐ-\\Z wB \\~& RcAg0\|sĉa\"CJr\D-mذacT\iia\\X\_\*ߔ\s\ҷ\\i5.*,Ą\\GB\Z;Ґi\\'\\t\p\q0+\\_\0B  S55P_W \\!\_sJXoIɤg\IL\+`Jq\_Y\x<\\Y\\e\\\\\\\)\\3\\a\t\\SLj\\n\"((\kP\Jt]3w@WG[T\ZY\\ʆ &^Z:\!\Ҟ~ס)\\1\\\\aO\\=>O\n\x\BX\\<\\h\\\qBP|\"}n&\B(@\cY}gch\\(g\ f\"bkoos\\\o\z\\\ߓ,{\|;\ff޵\ߡ\?2\\XÙ\ɺ\\ /\\"\r1\rWB\\h=I\q|\\\\(XX@t5ERP9JȣG9c\\v/\\;!1r߾G_x\n\\;YIII/\Zƛ|\8|aO|}ȵs&לF!QOOO\\\\\\\ZZ\Y\\'̞S\;jEA`%I\-xb>=-]mj_\\٫S\C>\\\O\E\}7\;D#yߟ\?\\R\E\\uB`pǎf$\'\'Bew\ƍ\`HrpL\\l\St͏\g?\\\+\@\6o>\\O~tv=\@k\茞\\\Z\?333\P;1\n՝OG\Z\\\E\ w\\Nj\ҙ\\}\X\n\)._\\\\ᬬJ\k\>,(\X\qjI~hh\r[L\\㭬WY%\ P\\-u\Z\$\f5Yڣ\\|\A\ch\|\L^^^\m\ ڇQI1~[cN_\JȽj&\)\\'\\8y}\(ۖ\!!\KSwT*U\\$v\}W\c\\Ϸ\#K\ʦgdU \S(m\UEP7\Z\I|U*f{\\G\2\\'߿\9n_\%\r\\r>l^\JDžwn{\}I\)\I\\|}t֡N(i\Z\QH\\\x*p,*mט L9 (\p\A]k\\\"G|Jc0\ru\\\ߥb\\\NQ\sUwww\\\\pzi-\\䌂t-#C\e0}\~U\:.\ț\fjO!˒5\"\وU\:(\q1/\esoX\\_ \\\s\\G@8VL<\\\ӧJ./\U_{ꏯ\\\=&{bL $\y\\\]}\%sļ\jw>&.)e\]\]Xm5pQ\\\\\R`\X\r\Z}<7\ǫ\r_5:̙8AWXvOɴ\'MӮU\:A-limMj⫒or&S\\9F&߈s՞dʛfƤ췎TP8\\׉\=s\^\D1l\AI\Z%\\\\\rR\\%\w*\\\sYyμsd\\'Oe\\n1U4\\\M\\\\\\Z\k[\\\f\n<׋t>ϱgT\-\\#\6,mZ|9u\X\\\0L)sLJwTj\>nĐ1\<\k=\\\ J\\>\vp\;\\H1j-)!\y^Оb\y\\?~\ܒmo\,\0soYñl\g>6Ul\\A A\\\^ o\\\\? \rv\H_0,86\0\lHHJGL \N)w%ʑg,\f\\?*\eM˟R6\"\u\r\P/\\Z\\d\D6\s?\j9\+|^\ZO\WGF4\CF\(\\ꈁ\\\8xP(񸝂\5\"\nN\7\\<T*(c\"J\\"@\$9\0Dž\pȘ\B\\rS|O)p^s>~c޿lx\'^Xl;\\ &at6V(6*\nP\nƼ^\\KJ2h\\(\\@B\0K&.K>Ċ\\( \<\'lHx\IB?wKh1jk\\0\\\L܈FgH\H\L\\\\\\:#n\I~č\ c޼]\D\ qp_I\)r]lXt\dt\=\_Uҋ\N k_\0\0\0\0IENDB`'),(146,1,'Satellite_antenna_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0E\0\0\0`\0\0\0K쿬\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0&)IDATx\\| |T\\\sٗ$}\a VQˢHw+V\"]|ժVV_mmqi\V[\\E\Y \d}\\33h}P\\g{\\;(poEE3\\v\\^\\ť\N^\\AQ\숚k Jp\z\\xPX\>\\r\np˫:\6\y\6\>\Z_ww\eJ\> .T\\_]\v»\[\>|\7K<JcIt\U\8cR J\\=\'\pW\0\\]\`\ώl붟\ohj\DB\z\]e\̛Oᴟ#\"\\n\)\1KK$\\Z\|1찴ؔAбh]\\\nN3\߽9˽R~xLl\")`p#1\Ka?\\N\9\Iz\j\\w>^̲lyBB\)\c6\jAрA\,iAF\ϸ\B\=g\1e\]\]\\Yi?bU_ \U[_D\mN7Edh(\\7\\n+2\\A\c\\<Д*\)\\\\t=\\\ӿ`5\\\ȋ\#c\JRd\.\' \\BOwtuIo߷cM\Juu\ Q\;\\\\ ,\U\pާn\\\lrr\\,o\x&*!\=W9\\>\2LgTTd\뮋~\\\_\\K8o^\j\\,\sdȠɨ(\c#3\\q\;n{\vT\Ћ n?\\\G\Z[\Z\Mx\+Nh7n\{\ϟTd\dǞ:]W \\(\ՅY[\\:;;O-AS36\G\\n0q\^pk&/Xx\\]\\W\0\)fsX\d\rij\Zmz\Zt\pT\\`\c ׂ\f\0ވ\\\7&\.i#\\, \"C\^\"-\޽F\\\n\}))\\W\\Ď>U]\rӦ_\rJ\?V@9\8gV25I)`\rBg\)\\*J\\0ᡭ\8$@\\J6ws$\~\\׊\-R\\\ns\^#4`ǩ\Q,^j\\C2p\\_`\0\%2\\,e\YP\ 02\,k\\\\\\'\\^E\`\`6!oT1\#`4\ \\Ǻ\_ݻӂ\\\ŋ\\u10!XL\\3\@e\\涎\\s\Z\O\(\s}xFò1 `D3tkmm];wB~ڙq\f\F\rLKt,H \i%PsH^\8dF>\\GOI\\nA>^\*\\%P([U\0@`T\4\\8@\x\Ou\\\_\\r{vZu\ƍ:Ę1c) \0\/\۶m\\'a\\\(\\r9\$iЦ\\0h\<K @\nh\?̒O\n\(y/Տ[/\\z2ʔy\fu\\l\'S<pn;΁fsx֌dXn\\.U\iir@X3u|r\9\{\=03ڈ\^6 \5\R\# }G\\\\\-4+\o\{FKU6V}\\a=\Ξ\U*wee\ڜa\m/\\\\\B\\ee\\%H@pd4C\\'恃\'\\n\\z@mhЄ\15.F>d CpX;^Ov,;U`1\\\_5yܖlE\S\\;Rotz}\2cpWsG\K\nRҳ\ﱲ2pt&,\p \\Ьb/(gs&2lKu0n\\\x|> \\X\jB\\n;\\5[>|\\X~ >s֮\^>}rQPwV{hwKu\\wf\'\>bx΢};F\h\\\tA_0r\h]\\tF\Z \r\g\\*>q\n\",QC L$e\lj@\ˆR\H\ɋ:T_\\4\\"\B\Z\\(l5\kb\\ٵbb⁔\젃\tӦM\\\fbjȅA8Nol\ Vn|^n\n\\ \eL\0l3t\\8cu\~t\\\\&\e\\z\\\:+7>ױ}u\\]A\:jiXyCSSK\\x\\\)3Gd\\\r\\'\$UVNX:`Xv&ªU\2\jG2\c\ni2\p8\0\d)\\\g\\,OMG 2KIR6\"D\/5d\~\\'a_;\6h\hy Y \"pZQ0\\8\\\A\\J9Q\ra2p\\\\D8IL\rmNH\ \ZZڡpd \\J(\8^~G\?&\~\\\*\\rxnZ 65=\:\"\rzz\k\"[0c\LB\LҀ\\j̓\BZZ \\\\\}P4a\"9t\\kh\F|H?(k@m\=,`\I\\\#\a\\)TC\N\k\?g\_\Zb\ d3Fǣͺ\JtA_huz\\M\E\5q\\7\CzF\ރ\\ä2\\|\.F\I--Mp|?=\Z&L(\XC\\@\Љ&k\\\]\0P5B\=z\\׾\ !\|\_sԥ\?$^xsX86\\\\\c\a4\ Ï.\\\\\NJ%Dpo\d\1\\\\,\9Py\}\{˖\\㋋!)1!`Nj\vR\0HT\'\"(jPA1\ ֘op\o\X\\\}.\\Ϝ\^n\!\b%\\R1›QC\P;\J\\0x\FMMHp\d5\H\a\\#Fw\\\@||T=\L,\\"\|WY\9P_wE\C\\w\\.L\4\!@\\\泥* jA\Z/\r\n\\-X|A||Q\\v`SDc:\\\$exQpG)\A\\\8@σ_&\`6\\\ZΠgL:BHnif\v4{\L+ Ub&H?\PFs8&8a\\i뼙sQB\(\tMu\Wl7ϹvևuY{FkP\n\-\8\@H\2A l 9Knn=}(V\Z;\\\P`\Mz=_W-\"\\\NX[[ sJ\PQ:l;_\CCL#\s\/&\\A\C~!\<\\A!ۭsg\p\zh\hӪ8\,\\h4z\Γ\6)Fա 80\0\"\+\̓\I[[3\C3\\l\\8a\ɐ5\\Za\B4*\\kL \$1=T^v\\hJhV\o\S.\\Q \nL $$S߾m?zkOs\\\կ\d11Q\,\ \>؍a$eissMY\\\U(\a0j\hok\&~\ ذa-\\\\#1\\e\\\#\9iC45\?%C&`x4 {0ڎBS\4\8Q\\۠dҰ\\nY#\?$3R4d\0ESr @v\08v\J]s\'tA \WA\/\\\\\]\\\ Y\8.ۃAqK>\\\\DL!$\'\2)#\ɼӧk\0 .|]]v\L j`\\\\$xL0kLl|\Op\%Y\\y\߃w\ݘ(\l tb\1\M\\\bPlq\t#8z\A\c\07\n\\\u\n5U)Y#1\WAkK-X\"\i\s\ȑ\:U`G\vd4\.4\v\L\_v\\-\}7\n>G}\0\\0\9\\\^%K\Ĵ\ \ y\\\r]7ް\\\\$ ]\\\YN\:>\C\\\@fz5\p=\zԋl8V] gd#ǡYQL\#¡\m\"\>\(hMH\\\hjiC\Lt\:̞w:ZQAl\"gYar]c\G[6Yu\\fDG\<\i\ht5*ΊGė-}\\՜__\vx\\k\_\\]%\)\ߟ\\\+\\|\t`^dp96Q%\\d#9͗0$\0eE*dh\I\gP0jlX\)\rIRIFD\ Ӯ\VG\U\\\ou\lv\yɉo i\\\\\\v֔\~\i\@e\x\\\\0H^GDαɫzן%#Ձ\\\RSG9\ISkHXz\Os\'P@M0- \E\rN08hց\7n\$\5\ΌD\\\z뛏h\3￿EM4n\\\piylLJ-:\5߳f,^\\\7b\%_)1\\\K\ꍱh\\0J\n\ J0^B\w\\u\6\s5\nڤIG\$P@\<\hnۿc\\\ssrj\\kTʩw>\~\"6ђla`K%\\M~2#3+:#s\\r\\\~\\n\s\-\Ƽ$\A\\\\cV\/y\O\)&\HEX\\\Z\]\ E\@)j8z!q N[H\\ \\b\\H/ۺ{\ɓFέ\\x\6%\nӊ\C&v\t+\"*\\\\\(\n߱ӗYTuY\\&%%GM8~\\\o/\[~9SUy?;;[9\\oy\\_\z;0yt,Q\\\.cxlN\\`\{\/S0PINIq\\\\$A\\n\ς4:\C\0\\eʤ\yÆ\\)-\s9]螝sDVWVw{ \y;\rd\nG\eݲd粬E`}\,{KKO7\Y\)1a]ZN\TGȒ+\>\e \gNt\9T\u\\nVEn_\w{%Ec\oeɆ\\T\>I9:\\)%pߊ\\t}\\?v\۳\\\744Иg\_|mY̑\j\\\\\\\B;\\\+\ :::\jNԜ\rˊd0L%Vu\\\G#KPF\._U\\Ҵ\05u2[񺰜W\g\Z_.&fE%&&N\ccU\831i^\\\ql7DLAcO9Պ0\Zuuw%\\\\Q\#eN1\yha\\zE\0\\'F}u\>h&8yE\\$\\1w\\n\qV!FZ\|\2\FdګZC\t<ޥ vYˮXPО/ڽ#\j\f\\^kk\\3\\C\]\;!Ѓ\{<\O\\`\\\{\\\S==ݴ>7z~\\)w\%\\Ea?a9s\U\\ɉxA\\Z\c?\juh\"\\\\Nc\\\;\\q\Z\Ŭ©od\PU i1߆rJt\\\\\? \m\c1/|C\%7mݼAKOyʼ[n\\HaET3 xQLg\[q\\\%cQV\,˟\=x&6\~Ey(\\\\nFSNb\Zz\ɡAG\"\\\dگt/8޹m\Pi\\[owY\\/a[C 1}S\\0`}\\IWϜC_[;LQm\\t\6\f\9\NdcXӐSدhP\\X675 \t]4F1\rf\Qd\dwXђ)W\9R3r,\\\'/\7g>\-\>\)\\\̩9\\\!\\MԜZ\\F\0kR\=\re[6b\`0\YgOq\m$\QSz4:c\'\t\\\ZC(\"\\\*٤\蜜Z/\) \@,O\\1\[\t\J\ ]\r?2\ǁ\鄲/VB\\\p\\h\0]DxD)\\Al\a\J#.˺\R߲p\G\\r_<\ʰ|\\~<\\M=Sé#Rc\1 A\" 孍\v4%S?\~9\r?\\\0\%5\c^\\g,ԡRz\-QQ1ϜwW0KviWGK\Ŧ\8\F\Yd\\'\^\\r\q\\\dNo4\T9 *kom~*`\^Wc0y^̨\\ݶ ﵿ~ҌrvBFƤ\Sg`f\m\\c\>t\\̬\_߹\W\\'$g<\0\\\~\;\i;=\'ѻ\tG\=JK[\G+%\қk\|GV!ɏLTf伜4%-K8r\J`I\\|>Ϯ9 vH\"gcI8$]VŭO/(+)\" %%=+5c؊\\O3224qޔ\c\\>\{\\t\;w\#26Sb\bEacϿuŁB~V$`\2RD\\\Ĕ_e\Z\_Kbr\\Ĵ\c\;nw?4ojh\mok\/\\"eȒ؋\ӁL\vd]\O1\eĈꌚΕ\qw9,|DBr\&DeRZJ\\\éE)\cbRZ;\\\|\\۴e\\"_lB\y YS@\Q\Ȳ7#\A\m\\'\\}\AI4I\e#֢܌(\\&OHqJ)-5j~3>&6\\\ ɐL\VZ\҄ft\\qmZ\HDLĖ\'J\\ZI%H\ܿ\r[\\\y?}:\[ JvvY\\\O\FRi΍^\CQm0t\\,\\\\Abl\\g~\$q3\r\H(jQn\Abx\G>e\N&\H[ouaط NE\*0\{ Ώ\\#j\\\izQ`Ó\\X\O\\\\\\"\"\F[Lc\\&\8\w\n\2\XɆF\_غ>8\"߆,zУw?\RמDqSm`\9]0>YPK\\\N0\&MjuzY7bRJ\\ʿ\6{\\\k\\\j4\y:\r\۽\DYc`u%\">9oRKMJQ\X\ZǍ\#IFە&Vǿ\__Z- \}(\EnҤ[ɏS01P\0ؑ)wK\+hG>\nW \tF+\*>s疵m\\M?/8\\\y\M+kA\\\\\}m\\Q\xN\hX;z ֮ʊ}.bB>\;ׯedQǿ\\?ms\m 0W\DDd\Z54l|\/[Bf\\\"lmibzz\rΒK\"w= \q ]}u8zTH\U*.\6\Z3w\\\\\\\憐3\\ASFYֈ)@t\c\rzsbUE;\\\P4y\tB\i\F~7UҤs]Y#c\$\k\\L\96S>,J\`\zħd-ҧ\^\ɂ=\-\|.s\\n\ZJIӲ^V\\\SZQ5\Z^\ʄd:\\8\^4S\DG\О,\n\\Cmut_E~6@G\\\n\_.P\\Ų{\uw\Zm\`\i\rFJcԪ\\rj)\\A@׵\1ϫA#m\8]\\\\\#a\n\\S?}-\G\B\5\E`\\q(\0Cz/(B\\(2b. %4![[[\Nld\;SP\h \f\j\\*6cy\rm0\@Y\"-MAч\k\\\(+>\\\!Z\47\!\\?\\v=^=\/o ,\M鸬E&F q>ظ 8\}]\K^O(\\us,,:?7R|\\p\4-\'\X\\`;\C\{bI&tmDp,\X\mHL q\L$nh Z\N%_\+C^K|\+\+Y\\V\\L\\87\i\\-%\&N]P\\0\0\0\0IENDB`'),(147,1,'Server_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\0\0\0\\l\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0&\rIDATx\\}\$\q_\csggO\0 H,((B iXI9\0\@\_}\a\g;a\EI%CmZb\kvwf\\\\\9^Ucw\0NouvuO\{<^\Z\\\\\ySﺳ_SJ\K`\\\\xJ5TS)\\/\6\\%!M\WX )W|\\\\\afը\\T\"ahf\\~& ̵|G\gfD\Y\\28X|\C\\z\\X0@\oW\TJ]x\)\j,RB!RZ!\s%&\Z\cVJ\\(dB\b%\DV*B1tEK\l6\\\\z\\[\Ta\]v=\Ɍ\XS \U\\'\W\Y\ė\\\m\Y\_^Е?໮\ !X<Ц\'镗_v\D* >Fm?nG.bԥIO\ׅ\\}-aK;\"D%.TVĪS\|0/̪2\-=\: \j\`\i3\rz\q\)d\I\k\Cc\0curZ\\\e \,ZX\ \+%!F X%̣Z[\`qU*\\\2+\9!\\\}V\ \\wi\9pZ\\\\*\U0\= L\%\\\\1DAzxt:]z\\"\\N\f.+\ר\ʶɲ}Q\r\\L\D +\L\yk`xV\\Zk[\7Z\)+\nppF \ x\5-\/k}\Db@JQ\++#N +,RcEc\ZgFt\2\B<\S}\\\\\*!FJt8*(KHz2R9\ZӞ@МT\\gE,\\\}A\\kE\믽*2 /\r@H\paH\V\DJ}pITehsl, ^\aĞl\\\r\\r06lMq\3@\%\Y\\~\)\3 b?\G\\"V\r \>\\\\:JW\eM3 [wv;4`{h{݁XǃA\*LExˢ!E\0v\\,]J؈+YMʑeQz\R\S;G\bv~\0H\mwY\\\(jcR1d\0\X\ӗW\/\mc\\Ub\<.V\\\4ݾs\PR{0 n\\\gOɷ\cz\\)=Zeu\o\c\\\\8\' 1f֔\\\'dPV \\\\\}<&\"2\@x\\=\\C\yqɾ\>2/_ebxͰng\\\_ۻ㩄A+\\)zQ.JJ`J襒؁r\\zhbuh;Ԣ%\U\\nz\X`\\\?pr:\ v.v Ik\\T\' s8r\FʫT\a\\*\^‡h\\Q\\\\)G/#x={l 7\@\\\\\瞈\.[΃A_\\9Y\m\y\f\~Zk7%[47G\/e^\\,\\bfHY\\X\0 )\\\۞x=D\\M6\Z\"wvvY\6;˜zTG1\\\\v\\\rv6\~Ip;\\\\"{\PT\pf<\\<\RW\\[n\'D\h\\\\=EJŒ(\(H\\\\v~=!7Y \\2n\\\OZ8y67ؿsg\Z,>\'\\\̔sx\-̟{&cV\\~:Vt\\*=\\iž?{Zۻ G\\G@PU8\0\Z \Z]6zJi\\\\o\'\7Ip$?`Ӕ\BO<\7n\.\ X\\\\ O!\C1R\"\\ձAAu\\tx_;9=4ߓޓ1r\\3\\!ԳDZ\'_\\i\\wߑBPK\!r<\r.\@\nrefDC\=Cp o|o\@RX\\\\þIz\~ڌ`mӡ\jC/\^\T\/~^\ D8\X \[o:m2&\'E uYo\\\]zz?\\pC\F\q8x\FaZlL\\\ (\\&\\\09 (u ad3졧\\\\\"9[W\J~\Z7h\ZNKY[ۤygt\IZ_\\\\w$g\w\\H^81G\\\\b\\)N޿J\\\]z\'\0\\\'\\\'|\Z\\0X>PN\\1@Tb\8WR;r_dhp\nD<\\\P\t!\\0\Zk; v)\'\\\[O\P\׍\g<\\e\\\{cT\%\\-ܙ \D\s{28_94TIL9\0T\{@\\Ɇx\`g\\\\\%\x>\0\+_P\g\E\\ź}\\_P!_y 7\\\`HT\iѤ\M\\\r\\ij\\\Nqpa\\n\\%\(\\|_\$\(y\\-\{o\-=\SPC6-`(>u\YYYtP\Ҽn,cº`6Q\\)\6(pQt\'\\\\V-ѹ\󴲼IV\\0\Bt.YtȍM\K\0wу\3@LX\(e-JΆQ\+k\\\SD\\u\=%1^uP\2X1vC<.\N\ 8-1}dg\i1[x}gE \m,\(;xT-\U\IY\r\ Ek5⦡Ĉ\T\ꕹ٩\3#.<\@K|D\ n>S\\\\\;BLR6$Jp\\\JQ\,ٮ\^\p 7\cu7\Ɠ O\\mϳ8_%˃<yVYb\5t4T\*ݽB\T \sC<\h*\\(\r\ˋ{~.~cP\#\|H\?9[W>\)\?{\\,\Z\0\ ЇqC<.\Є\r\\3 \\K\\\D+\& ?\D`gmmMa~1,\Rg\Ɯ\qC\cܼ}\\\W\\ |Ǎ;kt\>3FTM\\(H\C\\\8:\\3@\\Ύ\{#A\˒LgmcK\WH(.ֹC\+\PJ8WVGC6i4Yk\ o\LgN?LKwW\\\x74;\\l \\\\\?3X\\uaM\+\\E\\_\oRRa\/Ћ(\\/]|E\_\H(4\"I\JMԏPw\r\\g3:;G}\s\g?o\Ku\0RU\\Pӡ\N\ \c\x\2\}\g2\޻t\\\e{M\\hym\\gI\I%\\8n\\\ 1!.\3zƵ\3\H\?+\Է\lA\)@-j;CP\\s45\\0QphLK\r ^\\rnBMhF᪢ϙ\,уֶ\\\ڡ\,^NAq~ #\XA@\o\\H&L\6\b\dM%z\ \\>ϿY\0\`\\ FXu>&l\\\#aO\kSú%b ǡlJfD\\J\=kS #\Mc0e\\g\UXywn\]HU\\0\/#.S\wX!\\rj\t4EHqmn,$\\KŃD:-eSmoS\\si\yh*\}\%\\0\\beu\T?ב#tHX;9\͞GI\\\\,\\޷ﮊ?ʉ$Dl\\\.]\\6<꩸}oMdKIM8Ϧ+ k\\"?߬D>C\\\\h\\pS\`n\6 74\Z\WiՒ24\d\\&\09m7;3M \'\\SdV\\ㆠq])/\'Mz\st\\n)\\\փ+ĢmTO\\eU%\"a\+\.\\\GS7\DyDf,&J\':qu\\=d⑝qq<(\g/\\yB1\@B\1\"\Q\n44Z\\(C\zF\'\\h ά\S#g@\׋yepFV(Y5\9Z^/;\\BFmb\h\0/X\\\,9\\sB\ h\'Cz~gJ\\1Ad\ \'\\ejM\K]`ʒ\O\;)\'\"`p\UX\*U*U$V2\\(fdࡧb\\1A.ݻ\\\r6\\\2ɛC\\# 8\Ų` 3 \G.(\AC\\K\c!▶SS\E\p5\u(\nI&Dg\\!zM,81#-s\ҼR\R\n\\Z(nk\{\Tkz\Y)C \n\\G \0\Ƕ\r\\(ili\!H Q❚\i\v\mp]R>\"\\\2#\ԭ\@aDv\\\}\141\eJ\ĩ ~쎎[JX\1(\g_8\ndPֶ;qȲ6BIn\GX\y0z\U\x\\D\1\n1>\\I\󶩃6NP\\\tS\L5SoQ&oV\V-#g\\Ap\…RR94\\\\ϼ\\yj#0TG\\\ \\8\vwviۖ}\rC\#\|t(ݵI\ \p\r/gS@y , \\ ȶ3U)\~H \D\4\\$\vk\\7v[\<\l\j\r_333 \yl\\\T\\\8\"@#\!2Q2*J\\\=\\`\0\eQ&m$;Q\ \\Ls\U5v\\ ĵ0\\\\\|\\\\Lp?}6^r=^pn\\ #ޏaT\Z𫷼\\\ֻr\\\0\0 ]2$~8\_\L\7\\X\AsN\\\Ξ-\*\P}\B\V]\4YiC\6.^s.0E\\'213Z\RZ\)\)\\Z\\a\\] `\.DV\&vx\\Z?I\N\:\\\c(\"ԅ\ ȍ^[x%e+=jԪ43=M\ CKY]!˵Ny8\ǒ2\Ӂ?\1N\n\EIނN.l\#5U]\G^? fxEÏ@ Q%Rˡ\duu\"Ň\\\@>h\\[\Z!3\8P&@\c \\T\n;\f.\/aA?\\H{{f\nT.\<\0#>\\\ |i8\\\\W\\\۷o룛\uz=ZZK[\\&cEX\H\BKR>6g\dFx\X\6<H\\$]cT<^J\nPn\\\?W`\\p\\'0\\\'%<\\ضy\\h\vx\\\\\U\\PB\\cGF8\o1Z\`̈́\\511^v-s\vG1\0KE\k\ƨaFV{\tɛ$\uJg8Ż\K\0Mܬ-\IE\6iB\\"J\\Pb3e\ۋ\\P\\2\1\e\\\e&\\F\g; ĈgyYf\0\\_\?T\\\PPމ\0,B咄+IAL(|8Kq\i\=\\Ny\t;1j\Ό\\\'[>Āp1A\ҭ\K\\Z\axb1YݷF`+f\{&\\,Z}\\\\jtu\\eR*_V\M]\\\\q5+U/ɐ\\r̫\\\ʏ֖o_\H\\\Q\"f@\\3ށb\j\"fxXF\\ߏ\̡y\\\vvv<L:/\Z,c|\o]{\yN\x/\L\mp\[-fa\\\\\3\`\\\K[k\\j+ұ몈Q\F\W\\\\\\wTn \\\Y\ݻ\+\ŀ.\\n޼Y*\\\mV.U$\1\0\\nzv4vN\\\xhflE[ ~be\Z\l6KKKa,f\\bō^\gO\`\׬REQuA\w #h\m\\\@L \h/¨t\\X\\Z‡\y(\\"Ʉy@,Z\X1a(V0\[\b,]Z\t9(\x\`\\\s\\f<\\Y:Dy\a\\6\0LmR([By\\(a~Y_㵕ۗ-3<\E\`;lCYe\_X\\0уmTP\r23\\%Ae\"vߗ[\7[¬YN4\\w\\KLA\T\\.\\Vya\w\\ų\\\ \Yg\\\\\`H\\hˆ\\w#!f\\\\I \\\01\\\H\y:\T*&F\\\\#\$\\(?6\c&9^p\r̴q\\~P\\f\\+:3\i\N2eu6\xMF\z~?\9\w0\!z\\\Ȑ \ \AP !\?NA,\f¨\\I9\\\\" [VXp\0\2\\3KX C\ sf.C\}4\\1ҳAp:o\޲``\\\\g>t\2 g墬!W(b\̐}\ C\ cQV\\'\<@\xf\\\\r \Ϭ\\2EYe7\\!f,\۱jŌCd,\=B\C\"Y`NYx[&)ˈdf\3`f1\&\'\2ʳ?3B⇷x#\\vĉ}X|?Rꡏ,\Aɬ\3+`dgVb\\ju\\ab\Cg0j?f\rYL|d h;ڏ9 \0)1?~G\\0\0\0\0IENDB`'),(148,1,'Server_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\U1\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDAT8˕Moc5cߛ4\0\cϒ\\\Ű\ \6 fk$4BUD\f \\\aP@\6\ʒ\G\Ȳ+w\\\~`\\tHh\Ͼx\?\\}\\z\yH\9I\\\\\\\7_<99\n\R1\0\' jBW\\ܚ(ruqٲj\9z\bt]\M\\Z5.˃\g#M\\0A^ڧDĜi\!@۶L&W3 N#!_\\QVO`R\\U\"HDX\ \\\UMUG\\\DT\ķU+FJ-\c\D:\\n\"~]\\D%)Z\nYK{5A\%\1Wq\\\\} ҬeC;E5erD9\0̜\r3g\\%dj\:KFK\\ \sFX$&\l \\?\\\}dl\\A\\\P\\ׅ \92W\\ 0t_II j\\r?ST3EG\\PMנRҤЫ#^H) \\"\'n\r\\4MFw\\\\#J i!%s$\\\0ж\\\0m[\\|7\]~?bAh\9gST\]r\ߺ\\ߙٓg=*\\\\\>\`1\\\\\r4\"\¯.~\cj<_Ǒ\\\\\\\\\h{znM\vzzz\\'\\tmp\0\0\0\0IENDB`'),(149,1,'Server_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0$\0\0\00\0\0\0yG\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATXõˏ\U\\\\\`\l\XyD$@\" Nq\߁ !\PD\6\ٝ\\\\\=&F&;fvM\7_}\գ%\"8~|\\f\\DK4D\nEJILD Q-ER2Q)EP\3,\>\\=\_!\+\/Y|v;b|pH];n\n\Z˕\e؝L&_ʧ|\מm2\܏q*@a\\`4\H%I*i&)[\;9,-W V$\z\og;zˀ,sp&\\r\\D8n\"9f-ŭ\L\1cED:\'J[ow\\\. UAYDt\xƫL&)w \\.\iBƔ!̃I]\CԽ1\npA\\\Z\q7<w\\өh%Of\;\\+\"\QP\\Kɵk78L\̘\9װ\x\gg8$M;nۖ!\)ih\'.]$\M\~n\\P?\;._B\\ež;;֓z-\;Q걛KDD:\:\\Ӱ1\\r3ey\DgdiFUe i\\\"RU{{\~y045F\\DI\ U\\\0n\Zʪm\\y2d #Ҭ\&뛲4K\I3;\nY\G{+~S \\F$dY\\#g\\Z+vn-Cܻ\&фK?6k$Xk,-\m,Te\\ptԠݗ\aȃ\5\_g\ϬX]YfO$<\\L\Z\}\\\\\\\\\@<\\\?_P\|Օ\\#>ɏ\r\\\`<\_=ln\j==}~\_\\)\~ta%.Ӵqb\\c\\ZE\3v\\rBUq\\׺8Y\W-\\F\ UUI\Ƹ;\%+J.c\(\\a;v \\ \tP\\?n`n}\2l:j\\Colns\\&wYX Z8\\#g9\Q{9\n22\ک_8 \"dY\;\\r\\f\} \͇^=\\\\0+Y\\u͜Dlt\3\yFeݐXQe02X&\\ )\\0u)\`iiiݴL&5\\\1kTYxOԲ9LӰ5\ 7\\\4\r\\Z\oGT4\\n\\\3!hA\\0Z̺fmZ:\"\FۋoO\\F\ȣ \tU\Y\'V70sڶ\[;j\mЬiq\' w̍\P2,\,~vZ;\\\\Aж-\\2\\JE$o\\g\,\\i̐\見 Ea\\22ӗY .Yn]\\___\\E$\\Z3\8\"\2\'/R\\k[\^KI\r8&]cg\\E\Zk\\\\\0 M\8FH\(#\ٳg\聀\0tX0k\>D*2\ܭY1S_?!jI\\\\4Mŵ\\tq?fp\\H۶\x\\l\\ۯ\[\\\\\T\\<\\\ܹ3y\ȅ ϻH\D!U[\MS\}\\_D\^Dl\<\o \\\\\1\\ 3\"b!\󥃃EU-JD\,˖ӼZ˪\*\9* V \`y\\\\MU\\45G\\\;{\8X\D^I]\\4m&13uwͲ,iRD*U-\=7D\_i\mllL\\\\_:o+W\\uf&kkk\K/Լ\\SƠ^pQG]\0\0\0\0IENDB`'),(150,1,'Server_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0@\0\0\0\\ \F\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\rIDATh޽ۏd\U\k\ϩ[\{z\\a.˖\%\(D \"HyRH\\\?W$\B\0/\B\nR(!@\̌\җ\\\N\9{\\\9u\\t͑fj\oEU9{}\ߺZ\K\\lf\H8&\6DlXR#&!dFLf\ĘL\\Z\K(\\\\\_\x%Ӭ\Oݼ\\"T P ץ\(J\\A=Y$\\\׼\\\O\\\\$\_\\9\0\nӓ.!x\\cU\9\\$!Xh\>\KK \0I_P\\\+7\\_\@q\3O_fṛXkI\\Z1,Mk\",I\\U\nY\\9\ZY(ʗ\\\\\\\\\" |x\\\PbD\*}\H$\"\1* %F% V\0ŧP \ݟޡ\ω!R%i\1 $!u |\0@\ \\\\\\\\W5T=\q~5\,\nK,\BXk֠\nF ($2>H\5 b\\@J\>q\e@!IB \q\P.IKQ(He?|\n5)?\n\\`@Sȹ#$֒8G\\n\9\\x׫;/SE K|\t{=\\\\J\ T#\"@s\\\\њ1\?i\Z Bbâ1\rx\\O֐.ĠI\T(\m\\\\\\\"ֱD\N؋F!\\\.\\\flAE\\\9R#t\\U\nj yE`{eI(q\aD\\K\RG\\\\\\}\JBZ%unRb\H\\\nQ#\X@!b\XCAHKu1\PtzڧӆF1ĩ\"|\+,/c$I\s M1B,K sl\\\pF!ˈQG\\?\W0Zb\<\q.!MS>bŅy`iyK뫕q\nj\rq00Jk\FQbjJ*S2\/=]\#)\\/1\\Zb \nIa4\ O\;y;\\\Zh\\\2?)\\\\L\!*֪J^r\XFL\jf\#&\\\c$xϰ(ic ~UY\\\Q`aC\\aia\nE\XFLG`\\|Ph×6.9WAg5BF\\*|\\*\\t\Zhscťp>PU\ZYJYU\8\R\\\n߅)d\8y>r5.A\ȴ\WUTPTZ)1\\"\\L|H\/\Wo|4MqI\st:-sV:\\+kq\*wlax-2ݛ=ưB$$\bK\d\KXk9<:Dݜ\n:\\\ܙ\\\g^\\Tʈ\\ST\RD#\f\Yb\Zm42\\o\sZ\r\V\Ҕ`4u\|\2\+8 :##h0\nj\\\\Z\`e,-/`jmo8\U(4ӑ\ \$O\T\0Az\\\\\RUǚ\^>5\\\\r8s\D!k\wy\\fן%u\=D MS~\S<<\\\\\l?pFFȓ)\\>\\\\bT\+K U)%r\\&a1U\\\xa>*bt9\oDdQZVw܈\\y\\\:\Zw2\\y\\\~\\g~\\\\\+`4\\\\篓\?IMd\uDQ\iEP\?\\ZIS\/~\n\nXw\\\\ufS˔\\'ĝv\\~\\f\r$.\٫ﻷ\ejkÅ\-,\Rhc}ݽS/ܼ­\wWU!qeQ\DM\sJ\\\\W\\"<::?\\~U\ShF͌o\ߝ\\67V8:\\\?ʌ9rͭ\T\n*\\A*FT\SBRh\\\uo2i^\ \n\oQ1\{;|\k_Xk^0\]ԑLV\"ZO\)17@l<\"\\'\']\r\]>\"\6F1\\Bkt3~\ҳ$\|,e矻^SQK/\uQN\\Rvg+}*\L\Ld\-\/p\\\\vŻ\\\舢\e\r֒\\%]}\ZD\'L^kI\\̨q\\e\\\\nk fi0bV0\b\g(\O*C\\GGL\x@E\*G\\\pIH3G\\\* \jt\ctL\\\{\\my^\CC#654\\\\\\\"],w]\\n\n\\|^)\n*4lrXd\\\dDuDG\\@THS\է7A_5GdZM:\iݽ \n\\\ B\\pok\SB\1G\&$I\\b͍I\=\PDQ\\s\\n$iB*Č\4\\N\\1\rk D\ڬ\5ݮ{N{uR|\Z\E8\\(E\)\\rJꪻ\\2V\2\n~0ԋzՉ\"QA:7\;\_\\\숈N9\\ZQQcCB\E$W\p\Zxtx\\\}Őu5 5+\pt|\卵_Qf\w\\ĥ7\瀾\\V!(\"Ek}\\\n\ĀV3\h\!\0X^\0\11h\\\H%\o\\Tuh9T\\9w\y^坣EX_]\8I8\R% Gb\\Y\\\X\\\\j6\\\\UCc\01SUC\KgW\`\U\\!lYkC\\Z\\;wi4\Z4ܦ\Hq.%j$H Z{vB(6ƈʈ\"Q!D\\r\S{\cc1\ι\F\{\\\\q@&]\\?\I#^^sJu@p$#\"!\\\\{\?E$\\G1\k\c\~\\'׮]\\~\0\\"b^MUmbzQbKo­\?\0\'\"r\0l\bƘӭz0\\ڠw|\n\Њ&\")d!\4u#9(\uȱ\\1fGUeYֻs\NY\'Χ\\4\D\0hHB\D!\"i!3Ƥ\l4۫i\\\1I\4DL#4\\P$\t a8}\\'o\Ƙ㎪n{\f\\l\\\?\\v\l\rܼy\3m\N\\{oC6\2c!$\:\}jIG\ǯc$Z\Cc\\`08\\\\a\ٹ߇=77o\4~\Ea;-\Ҟu6\h1F\\%M~.~9c\G\D\\\CY\0\0\0\0IENDB`'),(151,1,'Server_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0H\0\0\0`\0\0\04\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDATx\\][o\qӷ\*%Qֻ,^\Fu\A\?8yHl A\Fe\\\\w+H\>\s\>\9\=\/Z=\=>\U_\WU\Hi\4~\\FR\zIŧ^\#xZ*^Ny\M\\\WR^\)?\|y\\EG\9~\{{3V\*\\\7\\8\\\o\'ƿ\ x \ T\\"G\>,~\I\_\y\"{9.=--\w\GuBRq=\ny\\ \[o\F|\\n{C\{\\sAݧeljKS\'\]\&tS76\z\MMM\\\|J\2v3\\\8x}+\;\n\?}\\\Wy`i}}b\Q\Kx-(\\'nC]< *B\0q\J>\iw)+hjbGL\\n\6ǻ^r\/}/~\oM:\QkձJ\j7\6m\jbNĜ\na!3-65P\\€7\+>\#/\\\=J\r\\'*\dr\\nG^\^\\\\\?]\4BX\rn^_?\\sOɗ`\r\y\'am\\\0\\b\G|7\P\ \a4>VVr\`x&F\Ĵ\\b.c`\y\38\'={N\R `~\V\(4z\\0HY07\B\\vy?VP\ b#ڻ\pq\jP䝞\XmƠ&`3Jp\i\\<\+/DcNƪ\\Q\0\=\ĠE؛l\i/?Z\ד\z\\\\Rvhv\\r R \`\\\{\\\2/\6,:/ŀ̠B?\\Z!.\\+1=f+\9rȬ\)1\JLcT,r|٤\Pb\\~\\4G¬\\\\\0XO<\e\\ȣj\}\\#1aQ9ߕ\5NK\rC |\q\sb0I.P\x\\\\\\\ oω \\\ \ZfE;\{\1\\z4H\L@\\\\}VF`\e H\Z\q߃4o\\\\\\\\" +:;\\F\wQ0$MH,@\I0\O!q>\2sޘ\\ \'\ =N6J\ܼ ӓ\" \L\#ANOj\mB\\\R2Lx@!\H\'M[/\Ǹ\S\Q\"q\=+vkX.\\\\\\\"1fѓ!\ش\\=\0\D\ 7#B a>z̀\3Z\@$C#|cN\f SVG$P\[\\uKe &\\y\\\`\\eY\r\LR\$\9\<\\\\VG\\=o4L,\\r`e\)\Xh}\"\te\[01ȫy\'\K^ߦ\_3ҹ\J~ztm\\0\\ni⒃\q^ \

Ќ>F\P6_Sۥ_\\r\zB/\0.(\-`\r@\Zt\\r`c\䉮],\Y\\\\\\u\0ϙ\\a?\En9\zۧ \r%а\o62\+rZ\4\1\]hM\"3G\nkUQ\\A@S\r\\\\\0:#7v7\j\Zң~\Iw4X\@\|&\{\gH\nIwbzV\\rq_\p\i\\L\@\^\'\ZPG\$a\\r|<\qi\_H\B\r\i٪\\\vD#*\zVRT8\\I!#iɫ \L\8\\q=dU=f]\7h㖕A{N\7UU Q\\X(47;%\\"ovez\Pg\\'jHg\zBo\\0\\0Y\07\HǢR:V-\\0\~H\\\\\iucv\\"97\Q4#\\Q\b\:\\nݺ`\g?\ \3Kdymaa\1=]_۷n\6n˹\\\sři\\ܢǫ\<ܠE|\*e ɓi.ǎxΒf<D\հ@\$\Aw?vlPZ\ \2ܨX>B\\\\h\\\>i\\9&k[iQU}$?k\q\~\\o\\ \\NP0Y6.\\;ύAЭ,\\~fg..m\\\\\Ȁt\?\B\\\\\\Ɩ4`\X٠vzɬ#|i*\4#>J MZZ\\\y\/͚\]2hJ{$\[\Mqd\gv:-\\HM\\\\q\Q\O S,\\70F\\\k\$SϗfO~\'V\dUV%|樾đ\ (\\\\eA-1\'v8م\X\Neh%+ḍ;\nkP\?o\O\\\\\09\|Jl|Bw>~[\ɪtvy\%,Xz}h\p@`0jBS\\2hF\\(z\_=+=Bu1Ѧ$\\\>11F\(tГ\\\n\\\n>\̻Bt\7)?\rӦeb:5\ZT%`|\h6eN{\\z(XP͘8G W糹\\<=h:\G3NA\\$&JhzjL+z276-\\1s\ݎ\P eY\n\VUsmIޱ4CR\0?\0\:->^k\cxvkѶ\&\LG\͢\'a\s4KM}m\\\Ќ\0 j^ݸ@\L=\f3\u\ln=\pM\8\0ҬA\1U47K\Bܼy 常h\>h\\\\ʊx.7\n\\0*a\4\9(.^\d|q{oF@ccFrud\\\h\(y@B\\0@\_\'+\Dax4\+E/\ Ad\\43=M\\\\#\\\>\Nl\\\\ i\)A\ \0w`Mף\ \Z7]\R0ި\\аZ~9\r}Y\C^\qL5-h]\\\'\\\'m3HS~`Gb\0\\y\=\ 4\\\ ].T`艝{b`V#|+\hvf\N̄-nkuX{M a[03\ZU\r.ɏ\W+80KgT\$4\oR\r\%Up\^5Ӕ\\>7z&f\\+W.*\<, \`$\\*\U\BY\v/MV^(\7\Z+:\v\Sq+\%V}\st!Y*\\\\\`x,K\Ζ\1H׶6&766:A\猉\\\\T\l9VaqZmWL:VI}\懌fi;\n;7kȶy\\r6\qwy9!\ ,D7p {~\f\\r\?X#,\\|q<\'L~\w\r\;\`3UVP&/\I\Y\i\8\=\武hme\m=\b\\b3J%\\\\/\`E\ ~z,1\VJ\\\m֠|?̲\\0\ր!:6j\5DVfd݅B`Dòa\0m&ق-Qۨ(m\n\\0\\\Ѣ:-zk`\\\`P`:|\\Z|IAs\…\}\9ܼ\\\e\\f\+wky\L_I&EOL\\\$\r\#\)\-\X[\\j(Ô\xX4\'(\ \0\\e\\]>\\6hͬ\\Um6\sG33S\L\jw\b\0\.\N\LP\"3O,bޅ\\Py\P\\ \\e\LGy\cI{C*:SF\catxk\s\\\u\B0lV\\\΃zI\Z@O7c\3\AR-\\Mi<Ҥcujyv8\!Y\\ŜL,ia0,\\\خ͓ \əQ\i p\\9`sj95(c䂯\\WP\.Ul.\0ג5ĝ&1\@˂5H+4-I\\:f\<\v8x\\CP\01^\z]h\nïk1{7 &kkk1\"\\߿\mmmf:\Ѡ46zAϦ$\`\k\\\\\߮\ֶr\Zj\ai꼇\\1f\\\Y(\\\\6QL\D\SD\\̌\nܸ\\ߔ\\\\cY-\r \?h7~\ޏ\\1\0.◆s\ \fM\\\\g\4gggŌ}\u\x/^,0h\L*\{cn\ \\\=֑\ˋ&Lʚ\e1ЎŘ6!怷\\\\n\(>ΌNA=z\f3`\$К2߅b\iFxQ\^\ߊX\E\6> ̰C\\d8\\mK\r߹\\\6V߷ި\T9|S\1\\\b\4ft\C\\#@GWX5 |\S9\Z\>=\c!N\N\Re,\n c^\4\KӞ\nƵ\\\FFhj\\!Iȶ\j\1M\A\"G\:o-\#nA 3\߇7\o\E#~\eOĞ,nNLLt᦭`H WJ0\\\\~\\Yj고|+~ė\\\\|d\6P\9\\\\Yp\}m_\^DBi, jT(N[\\\ֆl\\nFL\\\|ox\kT;|\;XP!bga\{JB\ \B\!L\\"\\ /Z\]\yh\r\:\~ftbSoq\\„ !D\L$aB`xa\\\=\G -\\\rvsQ\G\9ԋ)Lh&b`\\MTftf\rɎ˅?E$\2I\\0\0\0\0IENDB`'),(152,1,'Switch_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0P\0\0\0\\0}\\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0+lIDATx\\}`\\\l˶\\ۉ\Y$h@a\nZ(в-t}\E!\UVi\8\\\[\\ǖc;\$Z $\u\=\\<\n\\\\ \0\'<\}\\\\o\m\ q1+\`\"\N>\䦛Q&];\v\f\'S\n/91l%̟\0826E\"\\$qǃn\O>^\\R,߇\/f&3\n\`Dr=Pl\6lG\9ض\O}x\?\}x\\\\\\\\nڮF\n@7\U2\ك\ ;\@؇\\\egYV\0\)y\*K_7 X\U5Գ|:\/:b\\UPeMU\\~*%9\\\\n\0>ǰna[7t.\U\ fǙ\]==TRZFk\\:##(59$\\\);\L%\'\\I\XBzH^AZ\\\K;t~F9\\\\0aLo\\Zē37\ߏ\~~\1u\b?\a\\\\\\\wR\FJ\\\Sbw\\TP\t#\\\C\0\\\\\\G%B\"\\]\\iuF\0DOo?\\\0dU\\\Fk2m 8uX3\\\<\y\D߀g\l?\Zl\`pF\=QdX\!{X\\\\GJhJ(\ҺSrR\FE\\\&3E\\\T\\0-\\\KY\i/\0\0<\\ZEQ\Z:r<\0\Ԥ˖M^\\\\ƺ\7~\g\0\y\Dз\)\\s}\\\0rVqZ輋ڙb\\9X\k\wccc\}O҃%8>\\U@`XK\0\~\0 q1DRUT\`g EEQ&\\\\ՔWPD]]\\r\03H޾0\tX*JKMի8\\S\\\mڱ\\\\V\\\\#5\0H\'}\D\]\\:X3~\\\ۛb\")0qC\\\\"q\9P}TھNl=,\Zg\ݽquA\(L\*CQde\RP*I\/>A#Q\Zo\ /PJ\\0j\\թd@\y\X`\":r!TXr\n\\)f\\-\j?\\4 k\"\<\滜\۰9\dt(t32<48H\la&@&v %NH@\\F mnmm8\m(\T* :`R\\\dhxXH0p\KP9&\C\*3# \/\ZX\Z}AQ&s\\\LYX&\K\%\'I\\0 8`N~tnY\\{\m\Sx\\nr\ɏYΊ\'\r\$\tm=܆\M5<A\84\\r\'\'\\#E0Y\\c)<4\\SPM\" \ \\\mtpG㪡DQ  /\83)\񤃼/(F\UL\0\\r\r\nu9Yb\\nJ\)7k5\\.58 K~a\bv$? 3w\a\p\ڝ$N\Ȉ\#_qO\R0\\0\|\J-TS[\'hkt,\\4o0\N;.*\n\ZGPS\\\n\n \U7ءSw*b\3HBzz\\χҒD\\\\/ \>03\\\\`\v<=:],\F\\ba\"\n\r6EXvMJ\9`\"\iB\X>\&\nƾg\\\~\{{\Z||\\\\"\0\\0$A\9!\'\;\{٢X\}iY9Nb3\7?\y\;PW\\\"(\(\b-^Z-\jY]\qI\0l\\ʫU=\"\1L\8;\\JO odjM}\:!)n1\0\ijm\\ BX\yy\r\0t\X>uv\\"$\sֈcaO\}\n*Q\B\1X\ \||ܵ,c\9cPrei;UVu\I\\\/\\+\0\\v#\0WZ\\Vw͕W \\>\,u;\)%g(\+X\\\\FWX`2bdt\\\\㢅0ҏ˿\\1\\\Js2\(H$Q\2\\\\O\t4IH\QFmC~\zB6X\$&\H\ۥ\p\9\\\K<gO\-\\0\cONF:Dn|^. |ZG\.\n\#\(bV\\\M%\k\\?jh&ظq Y\L\\\E#(\x \4\|y\"KdL\\<\"a\sn&\0R\0T)P!`KN˙\M\J|!w\\v\|=&\ʼ\\\0w\'\#yddA3\SIϬs)\\\3\`P2H!-I\%i) \\-gz\,\\_\\\0ǜ{\0:\r\0^zd㻴\V\'\kBw[D*\,fa~\p\0(\\&%\k~v\\w``Z\\;_H\0@\\tf8/dMU\;=G\\\\vɵ\0\rD&l4Z\"\,\\Uf\0q\ń\r\\1\?\\}Rhy7#ھz0B(3\\)`wҏ\\\\_ԃ\\6~T\\\x\rt]njĺ`\\ \\e$e\\\\\\p^Hf\4nBe2\\uW_\r\0\\\\\\Qo\\0>J]]gJO`\ \i\5\\\l\NQ\\\V\0!\5|)\`pP皛3[^0q\\\>\0~\0>\x.۸\\ 4\#<7mQ \lHL]\BXIq\,2g\۬!<\\npkDE/kn\\\\ŞW\H@\9\\\9/C\b\/\j5\\C\yL\\s8>\*b=t^T*5\T2f\3_<\\T  \\$C\\\yT~\N\\\0 \\\U\UZ\\\.\7;x\\$\029kܡR\\^5 \0w[}%\M\0*\ɤ➦MW\z\\e#~cXm\\nq\\TR\\\\\\0yRe˃4Q\ QqfxzQFz\nN?[8\\V!Y\\\\"\!܆f\Ǚ\\\&8\"^#\"h}n6yi8|P$r:-i\\\\\\aߢ:.\0g\0@3+\0V^\gw|D\"}\\08\0\0 V5\Zj{\\rYR\"\&\j\0d\\\PW2\4\@dM)1194(К&Sh\_bC{\)\c\\60\u\]=b$\Z\<\Z\Z±\\n@ݯqsl.\`\n-;\\u\_sۂ \ۯ\\\05ud@#;ĊM&)2ڐ\\Mp\8NpxXU*\p\ZJ\\[\KJ:\hvV ^2\\1sU$$$Dʒ>:6F\բI\=>\n\2n5$ \"4TU*\sa\Z-^47ϦMb]C\0\Nr{w\\l\#Mr \\_*uX\a\O\|\0\`6n\..\\\D\b5\=H\a芝\\A{z/=\[\Km0GܖMʉ\r\ih\S\0\]v\Ga\\\F88ΰqzd9Xw\#\\J9>\#FaO\\$J\q\\\0\ rU;C\3E빭 u?$M0\u9\oؾ\B%\btaY\\\`\0|\\\[n\|Ĵm!\w\@Gǯt\\\S*\$\\@\\z\\P 4t\#\'86)\e~\yuoߜC\E\\l`6p5\G5Hs\\0<\S\)\ML\y\O1@!H\P.w\P\1q]!W\.\r I\\\Ƒ`)\{<\\3ؘ~\\k\PRR\"swwWa3\P(\o\\rV&A\\J;\f\\\02yx\\\\\\=\0NtVIUZD\#\Z\j\I*W#a\.{\\l\|6Hx\0e\Z\~E\F\l}.y\'z\P.\(\\f8/\U{30^o0޸*킝@B\lV@TV\;\\nN\Xu\d\d\ԩ7\~GЫ\Z\CCY\ݐ+\;jw E~E9\]\\靔4\(ݞV(\٦ǐ/\\\\\̫9ȯO1\NY\ki\'\\\\r\ii*B`.\y\؀\d&\\'N&\\(\9x.8\\\jr\pR\O \zzAntD\\a\_\3\\\6r\\ g\\?20 FCM{\O \8n\\ޠŁTβ8׺\nbG\e15\\0^\\( ޔ \\\g8?\0\{\՗^~e2h6YX,\\0¸,$&feZ\\rW7xG\gdTOM\\bB/C4>A\w\̕ӕ_Fk&ߑ^w)K\հ$QW\&#L)Mpqu~Ų\9\i\\\R*\\Tj\\@ \\\<\ZT[[\\D Xҥa $JQ\X\\.;\\­G\\߂\Z[\p5\­Rn\\\\0\\>2E\\^?݇N9\ӫU!!^\ \A9\\f\\\\aR1\\S\sKt7y. OCH%g({6_d\\b\3\)\\n_ED|\6ƦF\/\,C_\&aR\\M\cwSY\2@\r\\ZRʼn\nOO\\\*ϥ,\mf0~g \\di?\\%}=5G\\\\\Pmw\\\\\!0񨏏\Q\nD͔h\\\\=@G^6o \'g\\\Z7 \&oo+hln\\Jrv\p)E\\Аv^z/yL0PG\\7zkΟ薾\\kğ\!x\\\\\rFYRe srB\\\_LS\m\\\9\\)@\H߉\\׊\\\\T,\\k;!:\\\׻\\' l\\U\\\\'!)yB!w:__x-))\&)`QҪQTd\$\0*)\$hq#\M\ў\\\Lh\Gى\& _`WTT\Z\*Dr\Z@zA\>\\d\L ,\̬\Ã\ln\\vcp\\Sbbuj\?\& \1G\+$$$\+v~5,,l\x3Q\"\o}@\\Y\\j3uvkh}\\;>[\\aqi\\dv\c\ٺ]\Ӷ\i]\\I\08dC7v\ٹ*s\ujZ3^6J\\[ں~EM^\E1\\QTD\\\P\\7}\"J\\hG\*!s\\\$ʣ&\W)h\N[n-\tQ\陜?ް\RT|śjߔoi2\Z\\\\%s;:\~s`\=g=\S?$t\\\2\|Y@\\\\\O@q\\nYj\\K6l\pF\9̉ ?jl\$T I}\C6;!SQ \҃w?7mA\)ۯ\i\\]MW#\.w:rZ\\B\1UU\*\u\$n]\M\\Ev\\\|~@7<\[RnSC]1\=g=<\\\\بoYJ\\0Y\0\yyxy\|\\7^\":\0x߇\`1 F^aLf:?zz\\'{\\EI>C# n\F7Z.!\6:Q%\\\`Ӿpn\\\\Xb4\U\lc\3)\\1&Q_]^~\Ti\A\Gg=\=3\0m^\"\pJDW\\'W \8\D\P6 6S\M\\O\0\\Sm`\Z\{a\0\\\\\p\\\[Pt\:Rwѱ\`o?\*+Α\\ϔ\n?\\憺\\\7\Z\͜\H,\\raF5\Zq&\3\\\W\ܼ\7{h\rֶ\\ʳ\\\Acz\ &\Ww\0w\\\vb20\\\nyU\0,\0\\[>1 9i\\=9\<\z\\\9&t|\\\nT\N\' cm\\\\\/*J\\\\`\\\ܦ}\\܁\{H\r\6\\J\\b\\~\[\n\0 c\0\;V\\\Ғ\M\u%X\:\\\ñc_\\s\\0,$ |W \\\[\\\c\\Ѯ+.X{p:\>~\MaA;\7\9\r\0\Kz@.7?X\0\TW]u\T\a\03kNG ?\3.\`>Y)Ұ,\ώ;\^kח}||%\,={VCk3[E%\h`~\\[Ө \0X\86מ,*8d\\Y\\\\\r\\[[[\ݲM\\\0sɂN\HZ`6\\;\r\\\;\\.S\IՔ\BZw=2P-u\ oOI\0<8\0fagzB\E\Ot\jɣv\\\}\\00,.Ee]hhhĝ_Miii\R\ay\r\9\\Am/\\u~gR)\\\5\'\\\01\0h\!\YmO\a\Tac]m\\3\\$\rd_^^n=W&\s \4\$ɇ&e\\{\E\M7\阛\)\쥓(.\O\\O\\\0x\1\Q\\\\\e m6\t\|\S#L\\)w\y\\\\\ o>\0ˤsހaf\X_SU\\Pǵ&\\\\k\I\Z\N/\09I\Z+\08O`\ULZ{\[ou˵\^\\5ߺ\~\Q\0\ ̼\\n\ښ\+J-&\xn\Nq\2Ic\0\$:dAP\ULB*gdc\\?{\\\۸0+\0\ \6Z\\\\[[q\\\\h\\0-͡\I\Z+\08l0\\RF|RRR\\o}))))}\\\u#@\\.\h}e\i\\r8\}6|\-g\\n\0> \=[p\{p\~w\^w\\7_\\\\? o?jʥrs \r\5\91\\\(\z\\\\&o\0 :nòwJ}\ܾ}P\Z `H򞎶\ڪZ\̃4=S\\\\Q;Ki\h\0,F&\7222\n@wybD74\\\w4tY\\\B֯\0`Yz+ld0pS <\8g<\'\Q\Y\\0,RV8\\6N\&\?\\Yn\\Xg1\W\0Y\L\0T>\\ԢT*\l\>\\0稉&J\%:<\`X>Y%\\޽{\\\/At2 NPF\\Z:+\08\@p|\\4\99qاM\\0\0\0\0IENDB`'),(153,1,'Switch_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0nIDAT8˕khTGs\n\\jIu7QZM@K!?j\r\"\ x#\BP#4\K\nAb)((ZѸF#\f\MbI\m\̹8dK\4g8\y\}\\p\{Lfv# \\ظu1\!\ra5>-! \\R\:c\|v\Jg\\\\XO>\tŀd:\r\\a\`ib\q\:\c\\utt\\\\\\\yNt<L&\l\iWULdP!*NEt*mA\kߒR\\\8ͷJ +7z\mر\na\!75E\Z\& \uC/X硬<$?\&\CD\\\\@W\S\q\\\MT-0_QFd\k\\,d8\Q9\Ƞn\Waux\\\"/Be\\Z*\n2/\n8\<{\\\2FJ%i\ѭ\]\j\n*T9\ZeePc`\T\\B(H+7k\6mkk\Ek{^ϧ;\V\Z \Fn ,)ݤEh$$fe\1\7unhu$\\\\r\ n[ \b\rΣv\\g\l\0eM챿}\D{Ž\$غ/ݴ\\/Wj\"\PD\\*g擡\\`\\X2>|\\@\[\0s\*&\\ɓN\wQ0VO\Kq䧧\#\/;_\CyΒW\bB]]]l\X\ y\6\}dbƫC\\x|\[\[oo\~L\n\#3ݿI\.\\\\b1?]\-x\%~w\\\0\0\0\0IENDB`'),(154,1,'Switch_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0\0\0\0j\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 \IDATX\\X pT\\>7\6$\LBҀAPp\neRc䔩\X:CV\RH\'H\@6\'\\޷\\\YؐA2\\~\}\,\\\EQJ\:\g/ᅫMM>bj$R\\S_K>,oH\\')j9|\\r\l٠\Z3~I`0A\js&Ī\\rc\\\\"cE1\i\\\\@@O_?w@,\O\\\0J\\n\fu@X\n.WZ}\л{\\8\X1 \ FKe`A\\8\'\\r8\N\$(dR;] \pr\\FEE^5Yl&M}r\e\?@w_߬\Z\zCx\[\A\"n-m\\rA\"h\A38\@2LF3\b`܄DBH\t\g!x8\\J0[\( &\\0!`;ƃb\1H\Ϳ\\\Gx\\=\\0 \\\i)\r\[A\jvVKĒܰ\P-\>y\\\"Y^\d\HY D\\=\2\'!NrBd]+0q\\\\\\-\\ϊ\>\\\\0.=\\LG\b`\̱?\kM`ƌ\i3ιܮHNg߀_:_F:xa\c~\9\\\IiiS\22\IdP\g\|\o_AL\\\}\g)\gpF\$q\j\ı\@Mԇ;1\\K@Q*o`\0B\J|IV\(Ov\`\sɃ\^\>8\a4[j\\ \\\0-3iaRr\6D\BօzMz2(ס*\2G\\\\"\DdefJ\rh\\"p\\\\K\H\q @\0\\\*!Sr_\Eg\RՕeC*1\d \$L/.ծj\ f\n.^LX:I,(+С\a\N/-=Mk F\\H\V\\s B:x\\r\O7[S6b/h\\"QWWWV:ᩂ=ıEu\:\rW\2C>J\C\\I\\c\\\C\b\pɠ9`\\N\\0\\n/\\\}\ՉM6s706p=qԔ3i\S;.}rsI2|r\(_W\\ҩ+ n\e^OW$\\\0\\\+@#Y6p,ۄp6\\\\\\\,\\N#!nJd/,ܐ5>{\\CaA\BY\\lk#\-\\=\+e,\\nUݏ 1YfTЃg|?\\\z\\\n~-55\ZYYI\\~UGG*)))s\\y;5c\Ϊ\G0\\K>M\[!.!\Z\kyՁ\1\c84YQ1*\ǃ\\. ?vVY\\gn>E\00\r\\hI>;CA4\J\ȥL\\\\.\H\n\ F]\'+S ss \0_&@:m\Z\\\5U*%6\\dE\,?kǖ\\)\0<\\oc1LmxE \\\ G\))\}$t\\\\"-5Ja\nH~\ _\LJ&J$%&\LF\\ \kG\\\Z2\6\\t\\!\"\0c#y }\\}\Db.?7\M\NU) \\0UʘT*J5==J\n\biV\\\\\ʂ\G\0\9)IJ$|HLHZBq\Z5\1046\0\ ƒ.a\\ZMש7\Z\HXM\\n~\\)51\\\\\\0A*&&f\\*\\1\\u\re܏S\\sK3P@d%,T Ti}/Q\Өz$b. Y\\\\嵁Ѣ\0й|u\\t=)/X\lq\\\n\\\\\\SKtPoOCEX\w9 \%Lfn\@\0`g.Ԁ]Q\܆\a\w&\@UJi{\\wH QU\"[\aں:(\\X\\\)z\&X`>B\k40x,yو\:8[ȕŅ/i\\\0\]{B\g%G_Cyg\\D\"!e2\]u\2 )x0mw\\\HK\3\\xy\\T Vn;\*H\M퐵̒\^\'\\!L:ϸX,!\2PKH!L)$\^\j\§\n\;\\\~ŋ\vz\\~.]\<5쳛\\K\H\\ʉHDB\\+d\nBx`6@\\\|AnN}d/r \r\6d:\\76{\d\4+$\||\4C|ݖ|~+\$VZ \0[JKKUr\\uuY\S HQVS#q\\\\\\K(\"\ȕ.\(\ *)*\`aڔ)\\^SLt\fW\$U\\g:3\\~\ruj|\!\qkX!@XVVH$3{\#! C%_\0VT#e=(螁\n\\;9X:\ \`L\M¨lP](.,(c^O_\\\(mf\Ϋ@&~\\?0\\\ҹj\0\\U\_@@\\y\IJMY\\\J|P7H\$Nn\ޞE3-A̋߃AY\\\\rqB||>Llib\#ۅ\\I@\H\X\,\\2R\T\Ȱ5\~p!HA.\&d\0\\\0\ @\K\Z}QѬ\/\\'&\ji7P\\a׋\{\\ān܀\r\\ Q\z}rpy?=/|\1q\\\R+e L+-\Kv \d\WƐ\"os$h \ٚc\07De*..G\De \?%hIl\DU \"!!I/+\\\5inXJ:\0Ā,\$$$dιm\V.\a`@nn;F\W\\\/~\_+/&&\ZQ\'\_g\OV|>oN\\A\?\\`\WF0f\0\w\&\BB\)\jMvv\?H\\X\\x\0rd@BP\J 6!\{{\"X\\'\\\Fwg75-]J>_t#o=f\\B\(l,\\@0\n\{5I\w\\ \YQ3...\1\\5Tb<_\#?%w5c1\H]N \\S\\\첓v\\D\0E\\O *npeM\\{\Wq\\QZ\ Vw/\[E\S6wU;]2 \߇\w?h_\:d\eC*\Cݾ ΂\\v\Hi\`hR̗\]\"j=0˹ӧ^n0ֽOU\U]]\L\-\Ν+#}\hڒ\YlN~\\\\\c\O_B^Ă,D:aP)x?\\/E\\BT̞=gɂŋVp\\Q%%םon|o:i\25a\W[ 414ᰌ*|T(٠48\\\1-\ܞ\0\@ 6M\\:\\Z\>q\\VAZBЮzp\cf?.I\\?\\Z9>1ܴ>CV\8lF,*]\ 6nAoܣ&\9%,\cΦ\=\DF\G\0tvϞ<~G\\ovX\o\k\hZ>\S\+|\\G6\A\\ҷ\HBiir)\O\ y f\Jl\\\%\\\5\\.s{<\l@0(\\\{\\w;\Z\\\\\x9\M\j\"ժIb\\\\䔾\8zpHgzh6&?\[P;&<%\\o\\\ݫ\\\\\)^\\Q\\\\u\j:iߠ`F& \kh!VTT\\u\ׯ]\\'\M&\\}\\k\O\r>8\\ş\'\|\\\\\0\m\(\\v4 *\hip\\\\Y(s\\1\n\>-4\ZO<\Ԝ9s\s\rZ\Zl\\Gml/\ذ\k|{\0ƮI\==u5\~?8\+g$w\\M\"7\\\\QZx^%\\\ُn\tIIi9vt}D Rb\\\\޶nb\.{hh\R}\\(\ \Rw\'5\"\0-\5kZf\\\\\\io\0|]|o\\\o[pMI1\f1\ZL\rG\\\\\rUPxƶ[\n\j`+6*K\x\n*o\\\Zt\\P[h\]>c-]V\U\-_\\\\n2\}\OӾ\Z\ڈbf9Y`\3QkeK ^/*\\\l\ݛ6mMW\j\\\rxfs\aw\\ZP\\\fK` -}\ \\\;69򩧳\\\Gn\@\wx\\ \r\t/\~K\0M ʬM2ϧ\\\'3-T\C\34_Y\0iCWQ\ӜQC\` -XEi\ \\\bؠ\\0\0\0\0IENDB`'),(156,1,'Switch_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0<\0\0\0Կ\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0EIDATx\\\\t\\յ=\4iԛ\˨zq7\Sb \r؄@\r8 \â\$@H>!!$\v`IL\ؖl\2\[}T\UjSL\\Z\Ӽv\9{\sޓv}}/\0/\\GɃB\l6[]HcT\+\\\0|I\֑HM(l\mNvX\6;{o\\؄t )6\{\0Wcc[PD\\k`?d<\r/\\w\\K\n? ^MOOoy\r&\v0\n(\;1\\>E\\ga\\\\\\)\\\Ũ\"(6:Z\OSn~u\\PBl,\\D\h\ʳį\\ X,+0\v5\2efϖ\TZVARĤ !YPH`\0\{\\\8\n \:WLv_\_\m \n` ވ\fT2u\\\i*\\ˋ\1$ʨ\\ۇ\c\Y\\b*,.%ww7JW \ͧR\\pԤrqv.\rxoik\"d{[{\'S*TX\\vRPlL\\\:PGA\0CM\\ۆ\*0LK\]O!!c\'sMF\/^@FF+\#Am\V}0Jw4S\\Tʶ3\TS\@\n2\F!T[\HE\b\@ёFM\0({(&RE1QQ\\\L9\ӫ%ut$\\F6B\\\ION$OOO\:C\\nlIIqT]]kmZt{{Ϟ= \0)˰lyN}\g \\\uT^YM5tv&*Jg*+2Ќ\\.GT\\\˩\043F)8SQ( \%cP T\0\@\\\\9\\D\[@Oq\\\Qar\)(=:Q9E&u\_\!c\\0Hgd/\>N=Cz);\5\ҒN\%o/^%\\\n\0\\KUeU\ʾ_)\0Ͻ|\\[7?)\b溓d\f\\`92}s\\\v\Z\\\'\\9e 0 Z8_\ra\t\Pq\:W\QZb<9+t2;ʫ)>&\Z)@UQfN.\"V%\MC_\\JJ+=2\"\hN^t\C\7}\\0\\D\[7_[5+\f`\\7\\\Z\Z$5$W7㴂S5TmO\\˩WHTE\Zs8ځ~}0Qf1\388\+ ,(JP%,{=<<(51;\\I jh\na[AO\A\TTTc?E \KAU\\de9aU5TT\\\CI }zar\0\BpP($TA\\r۶\\"\\\f\)&!\n\r\n&vʪ\Z\0\\0*qBC`1=!\\2. PUm\r XL\0?m!@\\+\ꎎkA@`@/,dV;\0 \QA FE\\J\ 3$\ <{5\U2b\\\\_?JMӝ\~\\&cCC\ʚ:_\\o\Bއ\\"\E`\\\ɼ\a.J\\?=\7 h\\"JĊ*tu0W\@8\|\\55\\\γ\ >\7 s8\"\f^jhCSk \cf\\'\|\'&*[\#Vͭ<N(\i%\r%\\BPK9\2p\%e.]΁\X\\\\@\:I]=<\~>^\Xă\X\k\\\\\l\\ï\\I靗\\1\\ \0cަ\@z\|)œ\[\\\/Y\'N\\F\\rצ>Q=َ\.\\\\"c7[\0nY\hB\f7%FG 1\0\@\==}h\\\2\**&2[RFCLY?ta\Z\rZ{\8\M\/&O:ySZzJ*+/\x5=Ѽ\\Z\\Cd\f\1\0F܎Q,\/xc\BS\J\\T\ hc\Oh\\\m79xzxf 4eʠ.\Jr\1\\\r`\Rg.*\\\R&:l\h͋a?\*x \By2K\\\'ǎS;dْ\\xS@ML_4>\apJ$:\)\,\Si5\\\\\\3\0`\\\\\\JaL~7\\\\\\' pu\d3\h\fx\d$PZm\.J㦍W\\\"`\\~\n1\"X\!U \q\iA\\aC-hNA!?y\\]\\\\8?W\3G\k\\Z\2\[1E\\\,,LK%Eq\\ JKOM\z\S.v\0;\m\l0g\X_\4 N\x\\M3\0xᇅY,ek.ޫtq\\0x\Z+7w%VB \0W2_4WH@be962ܶl\\\\':nIics+\\M21&ր1#J\A8b^~\yg ע\9\\2:u\nnFG\%e\\\/^@\\\\,;\it Nk18c\e\BW\mZo0\r@ZZ\Z3t\C>>W3\0\|\m%DBNȦ\(\\":M7\\O\\BƽC+[7RC<G78`h\Qppd\\9ǿ\\\$9\ Lb\\\&8S\.J\\\ȄbMNS\y\ى,\pw|\\0}\q@sV,Y\\\\W\\\\n׌\\2G\2|\0\6or8\R\h MY\Ao\W 5\\GH\\ 1\\C$7w#G\ )\\\\\\}V.l\\n\֭]%U(3\|VA\\A\\\\-\'\9%%7Q6O:^V\i\\\;\t29p\} \\\\g\3<\=\&=1!\'\՛\"nPWr,\c\0\rmr<V^-\\\s\\0\x\  \SP\ p\,\"\hh@%\\=ql\ض68 .2}\l2Y\2\\KY\Zg\hB\ZE=\mirR\<\v\\Z4\\p1anl\O\Ϡѡ\[vi\jZ ]RB\-\Uv\d2F)յy$S\Amh\q!Dq2Co[)t$\-rֻ\n9Ml\\:\nXcbdS\>݉GWxc52;\ZY`sx~jg|>]\<\O{Kr9%\d\.KV\\\\Q$K,VWG\n.$\B\0\O\\~BU6V ]CR}!;n%zLJpmON̵js/\\~ l. >\et \\2\\H \ V\(-A\0Jx\{x\\עӬ-/\\0<\\|{!NT\\B\\DѲ\\\ՔM魎(\+֋6\\*h\\\\\9\Ycs1\\0{g^8Eiz \Zzg=?\Sbo\Ss\"В\@*qb^KV,Vw\\\\;L/\\??\\"oܒ\\\'ED r@ \\\H~^::>\\(|\.;o-\7Ӷ\ghDVk\\j%ٹ\Ҁ\[\\*qWWW\Z\NRX,99\2U\%\0LGKX\\\KL۸i\\\\})4\\LfP\\\\\wzO\\"` V?Iwҍ\/\\khh4kJ \\\Z,\\\ ČY<_˩\\ud:\\PDZ[pnAhM\b\\ܯ\$Gii``͖X\U~Wm\|\\5korqq\dY\ޑO\i!\\"ptbz\\Qk2&\\\:\Я\[J\w\\G3\\O>\\D\\ \r ]Ei\QMQZį ܁\\\"{\00-\=d\ͻnLIM\\S2P\^\\_w\\\\?\XOE\\M\p\M\2\oK\\\L\\p\"ֆ\"wa+@\r\Z\"h]@@i6\\\\}۶[#\"TiLZ!\\\0<\xsi\Hz\\{Iy\(4d>\\[S0\'~a` u5\e\\\U}ׁj\v\"f\  @[\QZb#\r\\\ƍ\\\\\n X0\Ry`b\0\'#&ҍ,$I\w?O\n^c3bƼ\\n>\i\\Ж\mmj`~e=&}h\nus\ \Z\n\0\0)*\ \\v\\]\V\*4v\S\\\\'N:\L \\n\O膌}\Z\BDc~p.͕\d6\TTŹ0[ɳ\l63tww7BdY\\o\.2@C>aaѷ\egbR\RH$`\"\=$v(\"i!\Vn\\\oJ\xF#͍\e\G\rz}\z\P!F\Y\|tsA0-!\\0e\aÆ\۶o\\*^y\QR(z\r\x\3\0 \ \0^~m\"\04\vuuk\n3\\Zl^3\\\d-\\0L%WWW):J\`Sw\\|饗e(JgĿ\;@/\=\#I\0\CٜA\W66`\\?h\0\l~=k`2-eggK\n%??;\\eKH$\"\\\\R\ \0^\iE\jZ\kj+\s\\Xx\ci=C\j-5\0Lɴu~˗/O\\vT\\\1\0^}c\n&\\\|N\\\,\\\8:4V0-!`^\0\ǎmٲ\Z7\*@Sjz\\?\\WWh=ݕfXCe4\Z{fZ~\\\M\\w\}ףRց>$\ /x\\\'\hjnon*g\Z!Ԏ܉mQ]Ư*\\\0LEK\\\bNK w\u\Obq\/nnoR2Kɸe=\{xx\\\0-(VZuQNnL7\Ϛ!\\g ^\f\\03\0\L,뿈\; dZ\\\`+\n\\0\\k\$A\@ͦ}lVY˯%\u\0L6i\;\l\\4\Ή9ݗ\P}\\nБxhhHL&\\!\9\0&1a\\\EX\0\0\0\0IENDB`'),(157,1,'UPS_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0c\0\0\0\0\0\0\׹\0\0\0sBIT|d\0\0\0 pHYs\0\0\n\0\0\n}H3\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0%\IDATx\\} U\\\\\oO\<B$(\͘ 82\\0#\}0n0\ \0pW\a\\rFQA@EL\"A \\^\\\\\\\\nm\U\/\\\U\շJ)q;96\\"#\B6\\-[L\uun>Cr\]*H] NB\.HP\\0 @\r\7\\j\ZW\{~\Z„\\' \\'(S0\\\\\cOi\\\\fB\\\ZH\[Ag\\\D\uQB\\\\r\r\MyGw#x\.2߸o+\0\AR⦁CP`5+:/Rm\r\\+Jf-H\Ŏ\*\H\V\*~\0\<[M\޾\0\<\\ϹX\hk$I^vyٮ\\:\R\\D A\\rzuyB\"Rn\/-=im5wM[G\\ZIV\,=s[%I\\\ujE\e- 0&$\y.\ \\\;\\9v\涄\\"\\\/\9!P^\F.\jn,\\]\'\^|Z\Y)\\>F\hs\\ZYV\Z<:~\ǪAAF\0bl: \0wC>\fڈ(\x\#)\\Λ:\?\\[\wQ{[~k.[~&o\u\r\hk\yo\\5ۭ\рd\(ϨvH^WJ.m>\'\\\i2j{*\qm\\\'\\k\׬8{\\T5$\X*@Z3\G\\\\W{8 C54\Bi\65i\\v#DVN\ܛN8\\\,\=]|\-{A\0\ \d`Jَ\`\?\\J\FAM\xSϱ\\/ \+2\"s\ \rsN\\/\\mkV\.\_J\jf\n߼05T瀠f@Gg\'\\F\ KaJ:?fח\OڠzɨUv\ℤCV^$\1©\+\:o훩\-\\a.1O\'c(\\A5Pдgfo \c\:$ܙaPH\LI0\w\. $#37_%˫a..r8\5N9maG\r@G_3*qo\pZޏ\\\'Rft2z\rX\\L\\lRD?9b\ʕjeC\w=Tk\˩<\j`\\n\\mX\au\\m\96`˥&b\\@#f5<#X^\`Դ޾Y34?WTD7fj啱H]\r\\k\\0\k\}\jiReH\ MJK\TW,W9\3\a{ofv\L 8i\nt0\\;\\nT9e5J\L)Te\ǺӍb\T(\ذY\9Ew\1\4@]F65\nqi\D˝$_I,\W\R7*/Ê̪^ \MF.FUA\'(D\\\\.ݕj}I&\6-ݓR+\A@X \0q@;H@\i Pst\Ԫ\>\F<Jjք\r%\h hCMĩ\BE|\,I!\\/ֵ\[\  H\W\(3)Įh\V\\\I\^8\\\0A»TuY841 v2\P\o\k\ i5\\\n\`;!\OsMxc\H\j(\%ߡ\S\ OmsUٱ\\(m)ݰm$ k,lI?Aפ4`Q+D@\`?H\m\rK\VB\b шFba\\wMh\ъx54\t!ŶVP\\ō\E=<9t\5j\RēF\+zlQ%\\`f\5)Q0WBi\" \jrb\"FH\"M%vH\F\i\_ul\"X\\vj\0\-!(V۱Od\"Yi\nq\tvπ\"K\}s\S\0-KSL͈h\k\uo\0\"\'\skE\\"ti*܈3!\_4\\,C+\"+@p\[I\\y\'vM\{/}7<\\\:N\C;$R6\\\[4\z$\Z\qY\½^A\n\nպ?+{\'KA$PObĉ\f4v4H\rR$e\\'}Z\"\ h\H\WU\l}D&F*\n4\n\@YЊNDM%\\#µbYV4Ќ5A\_9f\\\\}\n\m7\\\\-vtT\W^\n^\\UX\1w)\|k\\h*T+\\<\\3\\(w\\\(Գ\נ\0z\\O&\l.m\ <i\˳\\K\\U щBJG\ T\0\\&\Z\"\"\i2O`H\Z$\\\HA\\ 8@\[\\r#\roϠ\j6.Ԙn|\D0\\ (.p)*g\!H&l(\+\=#\\r\\WF\\'g\9l{3j\(\Z\C\\n\F\Йm(Q\\r\nźh\ ׄLT\\Hi؉Bo\\xSTtR\n4LԍK$̔CfD8ϗ\n\>\\CSȡ\gX\\\]\r\7\ֈ$$rd>S\M%\"]|\.I-%\n\\Gtm\rb#^\ZתeUy(\Zї\m{q\8\\;F,J+\VCg\"M\"wxJc{5ش\\\+,\kβ\YfЛr\"|\\jG#3\,\,\I\"\r\\Z &)oظČbٌ2ڌI\'cOͨP\\n\\r1\'\6^w;?\\\\\,\S}! Kр#r2M\̋\XI\\\">\\\ ˆ7\\'>BHja7h2\(kt\ȵ\taJh9\*\r\qk !\\ \r\!J\(\D\\IVăö\o B\{\G\ZZum\p\vú$Y4E\Z@fVH&4Al\\\n)\ \r>\Z]ܶQ|\\~ɾ\$\\wR)RCH(4\>r\\<\\\a-u\ruv47 N\ڰ 6\6\xm5\_ϟ\\#\\79h\0E\gZt\\\eȧq4ChW\\\$ŽFa߉%$\"\J\F}(wmY\rS\\V@\\\\#W7\j\7.%v\8`\0g\\bV\\[W\\f\{\T \hIJ\jjE\ўy)\3\\Pۗ< 7\\4\w\2|v`t>A.i\7\G\j\My\0! e\Z(\\!\m\k \\ΑH# \Wi{{g\eq\nP.\\ʕ2T\\\\"TJ\\\-zߙ\i\ g^?P(\UbfCK3B/i\i\\\"B\\A+\\\\]M\r\\!aQZ\\k:T1V\^\\ZT*U\\ζH\"!\A.a a4ͬ\h\O_a\nT\\j\rsY\\n1#X\KG\\\D(\`\\\Z\llQT\Z\|<̈\ZҒ]K($\$\̙p \\buD#^\\\Q y O\"\2Z2DSMB\͖Mt_ yĬkxj Ž\\WS$\3_\-^S4@\\\\M\qx\ǡ\rVZlO\\ꆗ\o~S\z4\\$\3C\\\r\S5\_7us[\K1\6\\<|\_K݉,/\\\U\ LN\?\CU\o\"!C\\"m(ib_\M4Y\D\x/\n\\\gw\\z\\P\\*|\S\\qػg7\\\\\v\\\ \!Z\\Z\b1o͖\Z\4Y]s@\\Z[\\S\[V\r\ׯ\\;N=\T~\\\-\0\e\)\аox\\\oKd\\h(ң\ni\lU\MS\Rj\ \]\SaӦM \N\\G@\s@kfz\\ ՛?Ǐy-f\\nU\\nI\CGe[oː\Z\\i)\(n\yc\8\\Lx\Y\\|9m\\ztؤ \d\\؁\-\'\Qlw9\\Z/<ә($M\r|4$c0k\,8r\,ZK\.& \ec\؈&k \\\\\\\\hL:ЂsLB|F*\\|Ь5ճA\\\zS\\\\\7\0=\\ =\Yot\\n sf\듓EI\Zo4Ԃ\\v9,a\'s\\\0#z\\q\\\\,V/\Bx\\\\\{\\rҲP\\'|\_=xԿ\\\\\n\>\\\r!\b\=a\N\=O#\'oAߋ\\02\\|\\p\=\\0d5P?1\\w \\C\\ \3\ʓO> Ї\\3kR\#izڠE ۈ)lw\\\@\r8MM\GYa\[p\Wip\\\֭[\mDοǠ\2цTWWIg\h\A\^B\0T\\K\\sV\y\\)زm\'\\^z5F;2u0\Z4`\a\Ze\n\\rY,\\\#{/722H8\xF<\\%g\Z(&\{\6\OU*9s&^\ZnOS\\{\!>&#ň*d5 ò\\Z5ز&„QzR;r\(u\r\TTA=Qe\\Po\M\瞁\ .r׿\}a\\\N\\\\\\\Me7\nB\Z409h00 \"K+\\Z$\sh\%>\h0\e׿V+\o\\z^\\J>7\XCI\M\G\n\\?\\׾\5裏C\Ս\h+>w3\/|\\^Nc\1\Z\\0\ZϨf35$:yA!ܓ\ˣ^\H\\ ȴ\\ݣ#C?ūcHSSHuǎ )NP\j\n9u\V\\hX\Z9$*!3z\\ѣ\\\ \>,\>[z\y\'?\K}Ȭ=\\!Ev\֟BF\oKT4-\{E \l\\-\ZjZlkk1r\J,:4f{Gs8\\=Ȼt6\w\\:F0 K\Ҋ {sp\\\\\\(\~\'\P\ .Q1\Eu滦eap\!x \\\Zm!4K\ݦ\s9\r\*\\߷g\\\\\GqC\(vww\M\i20\ \\6\梞}\9{\nؼyy\\zՕν\\G?Qx\\I|4]O\\%J\rⱎYH\\Z[8e \\r?\?b\weS5.Ѱh\YاEMB\#C\\\\\~\p\M7?\\\\S^,F }\|\\{ \k?3}y\\mM\\\\\ZJov/\\aSqtvu\͛~W(6Y`#:Rڥ$6#X$\\ďC1vN\/\?{g\+CD\7n\y*\\yσ0:6;IbA\8d\ns{P\\+4Y4ރ;v\\\!h\ al\"͈L|P_O/\\\\\\կ\\r02S~\p\eAT\Km\@´\\\\۝s\r`F{rb\۶ny/f]\E\\\Ԋx4E#p\\Kŏ5xw\\G \W*\O_,Z;v¿~\?aëRr\%\ F00j\\n\uc#CfF\r6K{1\0 ueA#\1OП$\\#\a\O\ \\n1\'Y\'\`\>\\h\@(HԨjDe\\ݢad\ZVŠUSMx4E}tD}Fz:Qm\AK\\=\wJ{\d\w=Y67ڳgϮ#\T`<\b\rz\^._d٥\˗ I@z\\߼r\\\Q\G\\r\?n/Mj\q\>ǀ_:\\'4\\%#Հ\\޲ys}㆗d@0@ \"\Om0c\\n\uu\\эJ,\1\\\̓s\8\S8\\')Cx\\\i:&4toL\\G\Wk߸`n\'- \\\b5\|n\JJ]o*i\cz֯ٮ\\\\i\O-\QA\!@x\eI\^\4 8\i+p\\\,7,­\u(WRb \1M@\Y4jF-\\\\Un\\/~4\"M)=!-y~ʡ\"\ʷ6\ij9PW\8#pa\X#Sg\*R\\\0L@O*F\\!m5[[\g\:<56ʀ\8\\!xTTe\\E\@\5\\\\\0\ĿԿڍ\\4!O\vÓ?z\\{7Z@\?%\ \1;Ͱ4e\րwp\u\'۲N\\Y\ \0;\\|^fތP\8\И~ܺںgyi\Xi\Zwe[1ڑA̍5댪\vb\ qLHS|\z\{\\Oky;3NPg*.\Ci`\\\\w\.\\\emC\bi\rl\z*\"\\KWvaA\R\q\#Ԛ\\X865LH\ػen \r5\\/m\𾗭஥SS0[={\d\5\\r\a\r7\fhc|\pxjgp2EqP\\\\\T\V>\+:e\\'h\i:h̙3G\/\2 \edf\EcM 1ADC.R[ Z\kOqk\ a\i\.\^3F\\\Za埆Z\?š)t\RUO\g\1\\\dê6A \n\\4,#a F\\)\e|MA\\,J#\Yt\Z\]Eٕ񡽻\ !+\n)\ ۅ-\A`#/3l&V8/.dWt\r&\\qVeVFӈޞ\Z%QS\+\0\,\D =7n3)J<\=aqV\ScC{V\O(X͵eÚ*NQC\nP\0իmu\\\e \Yd#6m\\֣nt萬jlesm\n!b\ZkCwnRp\00/AR?M5\\@e:>\5+\\\XS\t0L;\,\\b\ <\1\v6f\#9\*z\vRRQ\Q\`L\TYVz\\#f\\l6i\b\ XE \L-Cl\{r\\ᄋgi\\\DC\\\\flm\Zq`?\\ѱ\0l\r6߫)\n{Ex3 \ ZU $f\\\R\\Dƺ\y\\H\\-g;UESլDzk?LQq\&\P]\\\Ⱦ\rvX\\\\W\\YAQG@J\\\2\`0u)ɰWM \y\`\0\ P\0iU\\\"n\>\XL\c\\֊cF\\.f\6h\\0 =\Z\(\\,tyx垦8HO\N{T`/\a\b3\c6\\*\\"\*\\\\DxqRq<\ HKf\Q6=\\0\\n\!FJ\+\0\0\0\0IENDB`'),(158,1,'UPS_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\U1\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\0\0\0~~\\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\IDAT8}\oU\=3s?ZZ\n\-JP51a&nt\NL\\1&\M\ďc\nQ*\n\ZJ\Μ9s^3\R0\Lfqf\>\9bf\8\3\\\n\Z\nP\v\CY\\Z\Vn^|[\=r\\և{;\P}V\\ ,\s/\n\\ebhU\[Zw9$/w;\Nv\'gB\*\h1SU4\9 PvfES\NL\0H\\\LLmg Y͠(\\(Ѱs\lu\_kǶ\&Y\0 P8UD{6MRM#lO4e)\" @DpΡ\\\ d\\\C\(\e 4ֳTU!\\5\ט:\)s\08\ȲV\\2,%\Z䤆(u|4\9b\lh`\rh8\\dXj duFZ;~q<\\:-M !\n!2lLHGa+\n_\\m\\\*f\\iVU\N\PQfO\\\T\%>\ST\t\Z-^<*5|6\lQajrS]*\ \*23\',ٰ\h8\q\\_\tQ+*\ZA Ïņ\o\Ͼ\'ϋa*B/kk\\ \wx\8:\\_\\\:T\\rܜ3#xOY \g\\0f\\\\;i\rr~\ȍΕBL\R]\Z\r\{Ki\\_\\lXPE#TS]R\Μ\\ld-\Fp\s̟(\Z\\\x\\\38j*cd0\314M\0!Z\m`<\\\\/,,\Z~KjI#e~\\4c\;z\.\\\\45p\\\\g~8\P\r@233\q \p۬\\Y]qsI\&\HUUZgh`~\wnm+V_\\\:ι3\iz3ig\\Lv㾬\_j\S@\\n\;tjj\NcW\\ \ТHh\0\0\0\0IENDB`'),(159,1,'UPS_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0%\0\0\00\0\0\0+\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\0\0\0#k\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 \IDATX\\Y[GNU\e.\ݵc;\Ʒ\\\`ca)\'$O(yH^\$\HC\8\ƛ]/k׻ko\6\sx螞\\NxQ\\\T}\\|Do_;V`Tp ]\@\!39dP\s\I<\\\%my\\\\\\ROLx\\\Ig\4)p΁ᜃs\\\\\ZXs>\F\6׿u\\\b\\'\<4\r\\׾\\/+cv3\\\A \0V@\ R k^\6i\w\ر\Z\Z|:\/=ȁ\7Z)\0̰\<&; ;8&(R9\6\'E8\^i/\=45:::n\C/jmƃ+ <\\j\!A\"L\9r,\\\\"m +R\\\eD\<\"ac\m\L\\\`*\Uu\\RTN\0\\\\"6\v7.*׍\kZ&i%6^-5\5\6E\\ %b\}J%T+\6}$\\x䅻\Ǩ\+\&\\-P^/PDR\"R\n@\3Z)U\0\J;&t*\0\\r\\EP\EPN\\JPw\\nT)\"P\ZBd\\\],\M]\nd;݅\ÄTr̶X\"\{}—ϛ&/}m\`Zl3\߼\r7\+ˋxl߾R-(M\nF\M\\TPJg`\\",;7\6i\\\r\rl\\Z/\\B)0\Eա)\E\}\|u_\P\0!^\0\[ ,m* M\\>\ﭩDW\* \_kk\0&~\n\0icp\Z*EI)*\J)U\Tޛ\Y؛0El*\\d+[IX\[Q^\mMe\i^Z\!7t\n\*+q~(2\\ZN4\\\\(\90(\\,fm\"4Ep\\jj\qJR\+겆~\K Lzll Ou\\"\\!&\\JMO\\J\\ҩ%Q_k\Yfxۧ[XX\\\YX\W\i\0X\:hUk\EyP\c\r}v\{>oA\s\\e\r䟵<\_mZ ưex\X\ r\RZ+ \\n^\)F\\p\\í\\\E\H\mV\e[C\3>\\',\݅J \mێcS3صk\'\x\ԑڧu–\\N\&mX΄\\c\μ(fj\,k_\t\%\W\=>\\ގ\5y\*&o\̱\$Ɵ\$m\\͡\\8{a\n\Q\\0Wg\λ\pϥOfX\\\\\'9*D\%\_\Ξ\0:s\Ql&DK\z\08\'Υ\*\͔\u\e\n\rْ%\JUnk+w\r2\\s箧\Ɓ]Z\3Y\!kZ_\\e4\CG\\˦\S;2#O\\5DQ\\Ⱦ \V;\G\"٨^\>|S\\l\\\#\\\\KS\=\}x\ܠB!.u.sr\\GEJO\^ﶙ\"\}\af\0&Gv`\\|-K \7!\3 tfff]Dr8K\\1+fo\\\}<~k\\WV\\\\"Tx/d_&x\\m`\S翣\m \ә\fobu\6\\,ߞǛoe2\0\ݹo0\_GQ\\\\R\8\1\O~\[\?\[\\?z~Ow=##;pibb\\\/\r\r\Y\\\\d\3\6[\\\ĥ)\\\\eK\+\[+8r ,-,sg\] ;V+\0ʀ\\\\y\Q.\\\\\\T)\\ϿU\޼y\抈pOP\\g<5\\\\ݘ^=\\/EQ4\'\\e٫S886\\fF3BԌEhF1shm\xe45y\?&6\wdMy@jJ$)+\\ .\\i\0\آVc\\\\1A:\*^\w\I)\BH/,Y/\١+3(\\>N\'ta\9`\\\\\\\\\7n\h\S\"\"\Z\Ü1ř0\'bf0\X\m{03\\Q\\\\\;u\\\~,9u\:}\@\'\\\\Ul\\r{AXq\\]DX\n\rꗪ\JUf*\\\\.ب\F7.^\\\hϞ=\\ƐRA\\UfRJUE*\"D4h3(ۃ\MV6e\&T\zX\b\\(FԌ`k+\R\\\^mLIbF\r\"\\C\\e\\l6\8\\q.\\\snR\0\0*\"2ٮCkY\ιFQt~\\ Q\\a@\\3Axkkk^E\Zk|\7\9c\\0s\\0\DNDsssw便\\\0:y򤚞\*Y[[ssss\a \0 \T\4\\\0\0\0\0IENDB`'),(160,1,'UPS_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\01\0\0\0@\0\0\0\x\0\0\0sBIT|d\0\0\0 pHYs\0\0U\0\0U%˽\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATh\\[Y\u=\ں{z6n\M\"EEd\h1 18\Ŀ\|ȇ \ ĉ,ZT\Z9%\!g\43$g\l{\QU\U\\\\0j\UWO\\{νސ\a*lxx\\rðNT\w]Wk]D !F\\n\Lo۶\ڻ\m\s\SNٖ\\\{Z># \0.D%v:p\ij\\a\ض\Y|VX%\\\:a2\0aaa\J#&\\nh\((0#C`YN+<3a̱\ey\Œ\#]6i\r!\r(\r\r\\/uӚ\\40Nˌ-ë\d}Ekm6\ZdK}9\n?\v0\\"\\n;ܩ@\K\0\0z\ n\\Dј>\\\ж)\\Z\FNJN\\|\0@\0p\*EA)#\)6uF#c \cDH\J (B>ËFt\ T\\\S)rH E \0c:\*E\nJ+bP\@\3rN\0Em8FS1)\nת(KR4Z>\*pqV\< \\?\?M|%Qf/R\}FT\\r\\dz\9\'TuN \\=R8`\\0\8s/\\C\`muE\g\-\*IlU{JcN&\<\A\\\\\\Mu\\\jxރ\0ăض\iU\)ˉ\*5:¸KbJZ\a$\np9\[\Q\y1,8\Z\'v(4p|\Z$M\\՝bU\v\?D0\[3I\^\\H\!B\ۜNHHY0\\"AYBFD/\\Ɗ] i\\\sHbȠ\{\>\"Xa\x@$_~ʟ&vK)\tS\D+\*\\ˉB$*ocDU\\׉\nPm\L\ZRW\n᭪@?h\o\>\\i?Q\vbP\DNy\\e\\ 86w\21\bf\".H(\\\\\\=*P\\\qI Hc\\x\Nˆpau9WfiEa:U%KInuuB尗\C\8|d?~l \(B\B\]YAtgQ`qX\\\n.J].ͻ\D^\\\\\ 6?hQibd\\\4\n-h\E9u\\ig-\"\)r+vw\̄\'N\eѳ6҉堕AkG!wE9KnJ&U\\JvC\\ _?mHx\}ؽk]\\\t\~T\\[Q\0z+xs3QH\\;\m,/\\\\N?v\\>\D\Ҩjr4\/ŻT\\nݫ\j\\<\[\\'/N>\?N8pu\\\v[+\&-!\Jq],\+K\\&;W2 \\> <\K?Y\\B߾ؽ{7\\/tDGǘ+\N\1\\\ZHP\Z#\\\ܽP\nz03cǎa\\u\\@N.DʮuG?\rA>}xX[\\\݃K.opGJ\"\Z\\nZ\J(\?ȗ\]7*o\;u\~ao..6<6̉vF\+\tE\\3ќ\\dU=f#[D?}m\̯ah\\\\C\\#\)\ \04\u\)8\wO\\,]\\x\\k,\JpDT\\nI\\0\\\+R\\K:\*_Z-*\"F(DZ+\NVrc\\\]1\uP!邲\:\$RT\f\}>\S?p\KDUe\\b\w\\\\kuH$\̢\r :Ũ\o\!(j\0 Np\Q\=$v\ _C\\.\\cA\>!c(cLs9Q~6$\Pn}>\\Z\Ԋ\\\oQEg|\ێ\\>N?zO<\H\Bq\g\\Z(G&c*FG`6\\\h^\W\\\\\98*y\\3\h4\{\\\O c\7k,_-a\ڈl $1z\0\\\?WJ\NMMݦ\"\'\0`Y\ZWGp\\I\\y\}r\\n<.\N)\\Hg\֌\ZE\"\Z\j\Y\D Nqlw\~,,,\׮\\\#\©0\<\fR\U^\\/c\4{jX^\\bj\\ΎFRئ\"Q\sX9\\\qg~ccc\W]ƄF\}\60ys\GEDׯ__\^vd$\h\_Ͽ\\\v_/ܘ\{u\v\JrPѷl\c\\\ ccW\\}RE\\\r$ۑȨM]{{h^}\}O\Hꚭ>(\ꞍG@^\g~z\\gmE\7o\\\R\ءFBҒ2\\ko1>9kc`\ \\EB\уر}\\w}˲FRKU`Ub\\{\X>?\\\\7\\_LMMRa*\0%\MrO%a+\}\f\h\\S\\\8\V͇*\XF\\n\]p߅\:\aǶA\x\#\0#7?\X@ª2\0\8\\cP \\_\\A\" \"A\0\\\\\r:碷^}u\\\\D49::\\r`\(\\\?aYVzj\)\K\nl\\}`mm\s-X]\\y~},\_|gq/)+() I*Ԫ\Eגf])JOZlK\yh6{\\\ \\]\)A\\\]6\L\\\r*s\\ɓD\L\nN\,-G2m?_hzg\K\\A{KK\{\7>\|V\麫\رc\\\\\0\lɄ.\L\xIwI\,s$\\"\\\0\np\n\nח\>\y\0Wl۞e\E-\0477\xS\\\hF8\r\žu\\vd  \rrrXR\rZ \3c\\\ݬ\X\20s(\MrIDz׀:\ZޥwH \rMض\6\\V]\:\z\\zl\q(\„@V%\=,|\2Rj\\\l,ܴk}\KKK3KKKw,\Tk\\ql[e)Ev\\EGk=\0j;\[A\haH\\'\\"\Jhߑ \LP;e); M\\'\y$0\|mL 38b!@z^\[\*\bw\^o\[~qxd\\xGo8pV\\\Ơ^\\b80N\x\%\Z\\\ @&e\sb,\\0Y\\k\\\y\\\\uow\\\wmnx3A\\0AMf״\&\h?:cHO6\ 2A˶r~A\e\\uƒ\nmW\N\\\\=7\Wy\*B\nf\:(\)q\0\"@[w|%݄#\rJ\Ř\im\\G\ov\?h;ŷ{­ny-lGki4 #\Z+JE(f1 \\U@\\\\\r\LNmq1\},ؖ\r\\\M:\0h\\\Z\G|\u&P{\\s\\\؎M\ 1V\a\ \Pp=\s\"`=\G\$_È\"\D!kEEZ֡k[\\р\\\hԣ\(\\0\H%tKņ_7\\\\#(wiv\\ \P\`f0+0J\ /ccH0\0;K\"dYm9.F\\\Za\0AP_fvW\rYo;;\\􈚢H5Ǣױ\6(3B#á\Fc+0\+6]\Οe3@]X}I`4/pM7B\\\\f\Z`Fp0H d\\nm\\Zncn\2ɷ~XeE\m\:F)\𼯈YrRf@c\ wI\cT[/\j3 P\ℂ\R\r\(n}Ŵ\"!\\@\\\E\gxbښ\\\}-Z\:%\o\\"啫Ĩ\ِUD`8K:s*xE|hx$\;\\;JCx~ڪ\\;&\S(b\@$_/ \Z \\l\:hbKxP\0\Bԫ\0%\\˳]?UfB\H2Ud\/\\\Ĕ,\\`Q\\҄~ s\\:>~\8\\\\5\,|\\\_?\]\" #3@OVtcqK^ \\ֆn*\M{T^\؞W\&\A͘$=3d\\"]BQ\\n9:gD\qI#c\\ak2\\\&sg[\n\R\\Y\6NhO\!J\C\N\D\O\l\OaOQ\I%g\nݲ\\z\\K2\m<2G7zVR\\9a1TQ2Y,{\Ep&h`J\\`\OZR&EH‘*\Zul&\\r\rW\aBQB~V\\:b\ @CP Y/VRлu\TP\ ]Eq\\\TĹ\/]g)|2Z[*Գ݉\(\QxB+\0\sJiQQ2AO C\\\"Q K3Y\H\\╌\Cnȼ}fk\\\hG+\c\c\m^Ơ.\0 ZcAk4gg#A&8G\\F\L/Nx\\\*\ \\2\v7k+ |L\Dɤ8&tF$\\9+ v\\]\n3e\\y7\\*\Z\\\:\Z\sVC\\\\G\\\\\Z>:՚d{!IA\"\\DUztf\\u4%\قZÀUr 呦*fvU)bXJ5O\l\\7\\8R%\\s\\7QY\o]Ybiy\JӜaR-vI\u \^iv\=Obܣ3c\\z\ߋՀ3#\\[pZR,\\{.L\\\9ez\\\\\ҭ2\\\S\1O\\rĆݚj\Y\k7Y6$f47#2mP\U\6s\gW;i\qP7A)Q9\{\\\\^@\\\\sBZ1\\\\\z~v>\0D\\{F#\kԳUx\$ƹ \A4*\\\\\{\>\-a˖-x\\"lق/<\i<\\~J2(Ϊ.E3?惛\\IdV8\\\ǎ\7\\+\\9Y\\MQ\U\\fQg&1ƭ85\*\3(q\\rm\\\\\0\;\\=8q\<\\b!nQ\p\\"{366\,*y=\\"as\\\}wsW\\q03ָ\]=\Fy\vR(1\/w5\ \\,!\\\\Zm\\c37~Ӎ(095~\.FQz:;\`J\X\|vH*vvbZ\r(گ\\\0\oн\'ġC\\'~pF\\G \cښ\\z.Iv\R/?\x\Gy> _\ l\"=03;\\M<\\صk\\\q\\Yˏ\O|\ -J z{o#\uyF2H%#H\r׊Q=\\  \\1e\]?\N\\>\j>ƴ(9&UN1EI\\x\O$\\ta\\ \\\\\\T\\\D \\\nb\t\OR̳rl(\|ze^J\e4\"\6 n\\X\Ӕ(ӗ?P*F\\\kU\L\,]Z\B!j\\\MD\d\ͯזv\n\\\0\J\\n\vV\'\R\K0a\0@Z͈#+ɰ\\\m\yL\\rz!}\׫ˋX[[6\Z\ZuV9j\\9\`T\\\\(\'M/ X\􌨎\/\\z:h`qqƈa\^__wR];\\\3;Ry\'^\cXY[\mzT1Q8ד\"uLeee^\\Z\\\jk\?\0\uX\rCi@?\\2}\`ll ;v\\\g`_\\>\Y\\$\'-i16 6\\\ZX)\\<,\O?ND\B\ \EcL㩧2 \/\nU&ڷ>\n5h1\\ōʼnO\0\.NIyl\\"bhRO\\gR Xڶm[c~~^$\67֨\\D$\{\\'P(0;; *[\ *xMZǏ\\Ç\ʫgn4G\'d`lJ\.\\8w\\k\ \y\ɓa\8\I[\%s\b\W\\x\\\>\9Tb\\ \i<\ض\g\\_\T\9kYĝ8?[)\ؾmC\\\,N_8ߕR-\ZٱcG\\\&\&]\\%\}:kk\\\.?=3m۶ajj\nJ\\O}O\a\lQ\s߽\r5~ݼ\\\Z\T B\ĉZ2֐lpL/.\o /O}\?\>\i/F` \E\\8\ϔ\pî-\\\N>RV͌\޽;\nw4=I{\\\<~\ 0F`\j\RZ\U\\g۱uw\\޸0\\1\\z@\"\ TR\Zj\hRF\U\n>\&JE\Z(/ޗy2YY?s\Lяr]\\/B\\ \":\0J\\"\\ /X\\pg1k\~{\k9O{*\vX%x\oX\P.P\\\*! Q.\[,P(8\;O|\A\0\\ڱcG+_HN\rz_\\:E\_*\PJ5\\\檄V}(ut\0ii !|?\0a잚\2 i@X\ַ|\}SD \\r νhNb\X4m\\i5\0lKR\n\vcD\60FCkPk,\\c\r&N\E\xC\q,LMMo~\ `R)5MD\۶m\gffr)\\D %RX*\2Kw\tB\\\\\\^%\v1~ =\"\݄D\:j\\\'\S\0.\\\\0\'\a\\H1(\rD7}0L1Z\ēBؚ\\$N\1\\\\\7\0LIw7T:x\`AD,HA\-\\3c^`@l\'o\\L\\}3/\\\n[i\\\ko|\\'DdJD\\Z/0s\p H(,..\ bҞ΅\\Y\~.\0$\Ni\0bHw{gfNg&^^\\\\\0&\0\/۸\Ν;af\BB\fa\\\a;.ݾuH\\;\/\?imifnmi\Y\0SeM[\'\\\9‹61ramV+{++5lYv1e9n+:\\֞t\;qo\.\\"\^.qSOȳg\:hK3\0\j|.wx\n\0JX{᯿\\e\0x\0_kјk+?hԂ幉/ы\"\bg\\\\\Ą\N \(\"2\\\={\\Zfc\nÐ֖mێR\af\c1eD\\"6J1ƭ\k\7\\eZ@k\\.[\h\+ێW]dYNQ)U\bï\\k+\NޏM2_hY_}1SD\\\&&&8\\nJJؿJ\z\ZUU5::ʍF}\W\2ư֚\\q+ CG)\(l1VMD.\0\0\\\`\0lf.Y3]f\)\"*UA<v\F}m\k\"\R\ \mٲe\\ɓᕲ)TF\٫\J\0p\\w\\\*@^\\u\}T!c( C%\"DZى\0َX163;\0ܖcܴw LHk\\\\0\Z0;33S\Sk\4Pk=\eԾ8+ \r\-\\\e۶\2\P\D\2\\-\(gq\"GT5\\`Y\\֭[\N8\U0^@z\ /\\\*\Z\ZRar3\K;\"\J)?5˲V*\\\2k\nԵ\hP^\8\0`YV\\\h\*\U<9ig\rIY}6\'\0 a{\\0\0\0\0IENDB`'),(162,1,'UPS_rackmountable_2D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\Z\0\0\0\T\\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\rJIDATh\\[{p\\U\\&\n6m43H\ ¨taT\8\#\\ ?fGQeBېRڴ4iMMv\}gws\{\-x&\'\\\s\\{s\\ZFc\\r\\rP$V,VQ\j\\ܹ\\Rb\K\\v9\\D\"\d@\߲eK\d1`Լnm\FP*\(S_7R.\=\r\oxx8l$JO6H$\]̤}W\>9\\$46e\\Jj\\r\\Y֪s\fشik&j\\iab⬲NbI\\\\$\i2\\z=\G\^6\\r>\"SJRp\\%H&J],ńV @d.?\s\VAd\ &{w\b\\\녝;wؔ/Ǽ7J\\\sP($\\¶bDzFي5B\0\ĥbX\\\[\\R<G\bt\\p8\t\\\f\NN\x\\\Zp \! {\\{,\\o\x\T\0\$.\qtz\x幗!\ZK3IKi\HxѵY\o\̙3O\\\\\\\צ\i\\'{zz*/K/.i]ϯ7J׫۴|\'qnX߷\\$ :\\T0\Z\j\\[f^\C•Ztk ^.}Ss?8k\rDc\] \\n\A!/N...\1cc۾q\\ɓ\\\D!\\\2\̤r`\Z`p\2\ 099Yۈ\L,\\z\қG4`\\)H,V3\d0a}\\{#fr+Fe2y-\\\\\\1\n\\\;::lZfU\C\aC|j1\\\Bв#GtMwX\F]\\dO\\\~-088Xanpi1$\gok\\n\\TNdU\\O\\n@-z\f,\QZL\s\Y\\7\\$\1\"\n&\\ Bݵ6h6*Žm\\\7:\\ ̷r\a\\\\{E\W3\ a\,\-5>t\\\@\\\D\n\G\-\~\ݲ }|6/\kz\A2֧Pw\ԟ`\\'Q\\q\(@`n/Pk4O0#!<{ ^=\>\w&\\[1v5cN8\ڇ&$\%A\VJ\"zY>\\C|S\r^y/,\p\0\_\tv-/57Tɇ/hR?-Fba\w\D\??b\\\\|\xb+\6bxCB՚\\|2\\)s\\O̼]\馛\.\\y0gVR\cS)_\\y\\H%\\hզ+\dl!|1[\uY\\]\+\0ع\\\4 HZ\\!t[ᅿCg\ ?OF?8:;;\o\\\\~fq6!b\n!;;;uo\\ƈP4\z֞9G\nwXj\*\\K6M\WiT֛\\\R\ \\8#ݍ\HR\0\rCr, \2F\l\r$:\,hn\\\Zav>\n\\B\&ҳ\"Oi\\n\0\PCG @Z\\J\W+ \u|z*\".\\7nd7{\\/x$„\\ٳ \\\rz P<\\h}\wK1pK\'-e\,\w= \'d\\Bo#HI\2c%fK\/1,c}\\61E_/ݧXRJ\^\\Kk\n\07#\L\\N\??7 Ow \φa>?`{\\]᳏f/\D\SC@1\\|7\0Q)B\@I\,\\\OKB\Cz>U)cvk\\$\%\&\;Pp<{Oc\`BH\5C.\\w*C\\ \\\\ƾ\Ǫ\0;\\\\ \0\cg\Z.V Fx\t\آ7\{ ~\c\HS_k\\\?\\6p\b\ rGh\\\\\\4\5\\\o:ƵZ&E&\0t2X*\ JB)S \Vy\!\\AfQf0]\1/&P8LL2]\%\R6 \\)g\\Z|mBebb\(`R\0;\Dw(\07\8\\\9fZ{%\OQ\\\w3h!\{\\˥\;٤ބ1;G\2g\թ,\\\ܲ ΂\\\˜_,Ȍ.a,z\n:!Z\\\i\HA]\F\X\c೴@89k_dBPdV\ \ٜ\0\a]o۶-t\С?\܉\X\\u\:*If\\?YkŃ!2\fI\v\\Q@`=z1;xͅG\Z\\^\\\33sk\1;c*\\S }\ceƗJ8^7\Ak\Db}0[Sv>22\\xm:\P?)\\nX522\W\K3.ģ}}}Aͨ4\رcWl\r~\\\\@[\0\ca=S\\\O\\/A-zٶ&;8\nr _|\\\l\Y\W>c*o&y0\9\l\ߎ!\0\\͂\ng\\CB\=h \n\H\[n\\t-`צ\/\ ֢\j\ⳋu1\o\A\\9\\\'\\>>\| W\7dU㡤\\ε$V*dX\ZU#\\\\\a\\In곀*\! 055\{\\0N\Z-O#\\\jL@\YI\OE\\1\0\\<%^BE\\綝w\\\\+\Eнp?*H}o\jDEP3\\3V\c\\\u4\_kD3\\jk\9\\ڵ\\ȁ=_߬\s\Q\ [:}\ `\K=\w\\\'\\\\q\}`rf: 6\n\o ?$k}Т\-a29\N? \.\G\Z\+\J\\\J*$a\㹝fc\0\0\0\0IENDB`'),(163,1,'UPS_rackmountable_2D_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0_?,\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0]IDATWUQJA=3;\H\$\\"h|D$ N\\Ə\\\OmDdY\>;3\ysϽ\^7\\\u]xg@1\q\1L`Y9\q )m\Ɉd4UU,Kr}\}I~<\B\'Sa&p\\4Մ\ B\yn\m\6ɘN\ZZZ\({\'\pxk\\q\)9\\\\\j\)c\HTJibb[\\\X\fsk,,#\\Z\֮\\'Ir.\0\\ş\\\'\Ū(*>UA-\B%$[k\\:s\mlr2s\̙3%\-\rGu]BH8\ \|\06\3\g<\C\\u\\rߌ\\}_,qGЛ\\wP\t:|VT\Zid29†\e4MaioF\\'/۶Qױ*\\\˷h\\u\|_C؈AUBػw7J\9\\\]\\\ZEQ\Z*̘AQM.vy/ed\?7\\Y\\r[ѧ\\q\\U\\dN\`\ \\\\\\\\ԕt:H$\լH\\ \t/:\A\'\rTM\\5d Eq&Ka\\'\c,\w8ph>\\p\~xAhW\Qaû\"t\"\"x\Ae\\\1 e2H\5L4\$?Ei\\p,9\\gQ\^W\J\\_>\\YsKG-ܛ\d^\\\\",\\\P`Y&ҩIuC\\Z\FaDUģT]˄f\{:zr\\\,ěrqr:\\\\m\\n/%K\ְ\Nae\' \RA\`:]FF\'q\ZEha\r=\\0\ \ \\\Ff\S|y\\\\O\rNݢ\\X\΂\>H_j[\\r\3LtBbCq\H\Z\:&d*\*\6c\\7{\\?l1\^>?HuP=\"/X{(V\<>hO{9\o\;\=\麰\@~uR\\N?%\n\3󟅔\\\Oļ3uZ_γDs@ 2bFd\oo\xr\r\\\\Ç1;L#\Z)bPQ:\7-\\<RW`GR蓮\Z͗oDI56 \0\0\0\0IENDB`'),(165,1,'UPS_rackmountable_2D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\r\0\0\0hl\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATHW\ke\\\\\2{\^6inIF)\\łZ/ ->\"(\((7\/\AZD\"B\bkQ[MB[jvs\\\\\z\7M\'\&\o9|\9\]\U2\B:A$*8xM4g\4M\$\\8\t:}\~\\v/:\v\]tƢVW\\:444\,\cssS A\n\ \~EJL\b1\޽\lB~\jO}\Z\\\Q\\j\:@Gh\\8.\ w\iD]cHb\\\r\l\~CmJ\ \=\\,\"߉F\Kxag\\,|y\,F\ \"hKyo/[^\\1t\\\Z\\\}\KG\\\8A\x|||\pX0\ޠ\\Z]!bZZ\\n۫0&{?]۶\\s<:\͝Cm \\\\[\\FG̥Rm\SR#L&\S>ed8\8?\bY\\Bj\?\5[Q\\n` \\b\\ w}\ \Pat\>A\ZAK\TP9\cQ^@T_\\\\wVWW?TyY\\\\K \\P0:<23l* WoR :\)%㾗\1 Ҋ\\< \\3 5a \\*7;)s\\k\\Q\}:v*.Bu\&\r\\Çp\\B)\$\\'V\Z\u`?-J:?\\+Kx\\}x\H\~U@b #,&3/=/0\tg\;^!@8l\ZZRG]m騩1\0\0\0\0IENDB`'),(166,1,'UPS_rackmountable_2D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\0\0\0r+8\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 \IDATXíYkl\\G\\\\\^\\qc%i(\&@yThRE%~\E\Ox?oU[**4jJ&\;\}{\r\\;wgw\Vȵf\\ܹ3\|\1z0\\H&\rM\\\x%QȔm\ʓu\\qtS1M\)%\\\ǹ4 \ݾ\\su\ר\*\W\\}\\\u]\\\\v7\\\\8.Y n\h4vӎ@\ͧ*\N\o7:\֖ j%\\\7\NǕ+W\G\\R\\\-&w;H_\\0*\nn߾\\\Ɔ(ժ\\ɓ\'q8w\\ݚX)\~L\zh&Y\KU`\=0\m{\\ͩJ\f\\\s\\.X\\6a \\8\\%]ty̫\\a,Xs\"9\nam}/*\\snA\K\X\[\\0xMP\SO~uMT*M#W\WQW \fvV\0ab+` (\n-\ \g ?h\>\GprsƂ3w\F^!p~?ꋠT/\8=??\2\\0t̠uY~vll\\t:d\\Z\ZjA,u&oXN\Ԗ\"^\͒\F\\M\\w`LKP\\0<:\UZr4q/\lCu\'P\"wV\m\=\s?M}:\&\M$^\\\ԥ\\\O\&\#\$ \=\7RTj\Z:\0 g\x\LIPw\\5*-\N\n;pX ALF(X,\nԳ%0q\,\;q\\O\$\\\\K\\\X\\k\n\6\Dt?&\P]N\m\$ hߝyp\Q:eOO}\(-҃\\_Dt\\\\\z{{Kd\U Pǹ\C5\@ \0\/,.\\B\:[\ʲ\"h$ǏH,ޢH$Yp/ D\<{ \>ZrfCi \rB\{\\\n}\\\[-X\\wau6qX)|\\x\wEc8\ \,..\n+P\z5\\vp\\\\*] +\"J62 \\;܈\[9kD\1\K:@\@D(|G\\|IX[\ jZ\:Ic1`uu\&\¶,B̙rU\,#\`)|\\O\\?8a\͹ 8cr#\\R;7uKĨ\\o\Rd6\\X\\\\\"仼>Ӷd2bH)씯}\0\*z}I\\MM)\~/YQU\>Rx4Lq\re\~x_\rU\+5\W\\\p\\x\\\d\\]_85\6\Z }\\‚b\[\\t\\$˂ӻCL,t@Z2_\A8p}Un\&\FQR\؄\^h)EM{Q\\Zk\X\$A\A$# TCA\\9\U OG \\ͩ\+#\\\\\b\٥u}r p_l?\M\n̦-\n][\\\\`j\'xId^+[Ϗ̌x\0˪L\4\4Kg\\\P\cf͹\\"ҡrk\m%,\ꥌJm\y\%\\x˷_\a\^+\V4opp\>5\I\\ǎR\Z\%\\\u\\\#c\4V6z{\\'\nS\N\9\r+[\\Z\0<Ѩx\&\^9rd\\ŋ/\\iܻw\ܴ<0Tj~\\n(պ\\i\Nnl0{zzb\\\2.ԃ`Tԧ\\\\\H\\r\tD\\'!`}s+N\'選˧\!\|!dZ\\Kx\\\\XKp\:orr\9VOIF_GK݇vifq9KEe\(\\G\ALc\,\\/⽩y\Z:\\u[\$ܺ\aG\\4R\u\o:צ\\\\xjZJ9?7uQ\\`۩\\Ow_9\\\aNm;^%\)\CZ\t`p@9gb\z\*\}q\\(V\\\oy\p.C\\.iS`\\\"\\v\\:Ε\\Ƿ]Eee\G{\\_\\0غu#\Z҂[\\ F0$0$_y\3W\0z衅8\6\A4ߎE\WR\3Ly\Z*PP^x\Ќ\0]\\\\\k\ಗ\\d\D\`$ʎP\\\/l\0ؽ{\T*\ ~&\\\uW \\tCQQ\\O?\i\0\Z܃,\.\kUF\ ]\\{\\\ \0\\\\\\\{].\7Vk\Z\r+y&n:X,\><<|\\\\\,\0w\\Ă\q&Ix%V\\\<]\zB2J2B\\\F\\\\\K&\R?+T/\ZJ\B! \f\\z,4:\HY:k˙2*\F\Wӻڲ Ký\\\(AWWa\5\\S \nCII 81O2 Fg5\]\aժU\\a,Q\K\+:l\"m8yM\ˬ\rچhFV\\ œ)cC^\\&x2\\\#\Y(&GИ,``\|[\Z.\\\\k?E?\K \x\/\}Ϭ5v!-Y$+ҝ\kC\%!\b\OQ\rK\\\d|\,.\\\\\m\\Zg\\K\Ų\\Q\n/ r\n\G\XfM^\+\yH L6\3R\#p!AKDhV\\63c`\؋A\P\0\h\-\/\\V\\H#\olZU\eY͋n\-ľX@H&\\>\L\\\ƈ\ɚ\B>cij:5>)%$`\wn\\\;;\g\/w &\s\\C\" }\Z҈ѷҝ@@\/_Ғ\۷3;\.W .\M\e:Ƨ\Z\ȼ\9P\YAk\P䮄s\\gt/^jU\Zvx_(\z>  \ԃ\ ;\>q(Ֆ\\\Nsd\'t&aÆdP ԾG86%;%\vn?!D]mm-lܸ\\\z\sUD~W0׊ \0-FYXgy>=\с_M\\\\-Cl\?RX\"1i\$\`#2 cd|\\ \0\Z\0FCP@nZ0\ǎP\\\\\\>\rfg\0h62\\Օ\\~p\U[h0~miB &\l\ ,m\*2G1/\\\So\\\ҳg\\$sF\:FrHS6B\0 dc>#}\LyV]Z~}f C2\!n$1\rÑ\?\(W\^0D0\tR4(\̇ 5Θ\2\Q\\0<\^i-@0\\J\\[\\0`FT̛s\jj\kw[UKtݺBl|h, \}:\n\V \%2\bF$\#\'~&\X\\\> D\Y\nfE2 \\P[Y *\0\Yբ\\]\4E/>\9 \e\=܇\b_0%%\0\\`/#\\n o|\f=\RѣG\\0҉\#;|?!WI\?F\?\ |\n\ۤ\\\\\}!\I4B\6\)\\amhV\]\9͵` \\\ԑ\EF\7$\R;\b\9/YEA~A5=KMp!1!\\\?>\r]?!\\\\˫\\\^BۼjƂ-4606mG4V\{ d\<d\<\c\H\Ν;U\ȑs\\\őA$Ur-\H:D\+S9.ou[pHvBjl^(& \\'\vt2\\\)\A\/l>B/^\\q\\\f$\NDE\\\\\d-3Jk*ء\ԏ扥vT}\\\\\am%OKFLg\9n\&&P\jĬ3fF\\\\`\\O%Q\\o\:\ \\\\?\>q \\Aʜ\$\0uttLi\\*\t%]A@:\nF\Iƈ\\\r6mR\\"再[\1r_߇\Hɔ\@s\DPcx\l\a!Ce\ښ\,!߶0Ϧ0\j׳3\"I\s\\\v\Jx\\{\\<_>L;t*\žCޯ\3> \\\0N\qmL\1\u.\\\L}\\N\\'\0FF#\m̻r\\υ\s\\\T\\\\\&\ oDt JiA\?Q19\np\0\0\0\0IENDB`'),(168,1,'UPS_rackmountable_3D_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDAT(S}RAk\@}\$7-XiP^Ń/\U\gS\\\A<\Qii$\\Ƅ&k7;\H>\\d\i\\Z\L&vQhm\~{\?xD\\r\\t:-[N\\p\u\۶\r\05M\<\rCXU\l\\\\4M\(z-\\q\\\\\$N\OPY, \a>\\5D \*PՊZ\0N<\:\\BwG\rǷo\\n<vyu\\0 a\\p\\3\;).G\nGfx<\\ E5,{\\ޭ\\xn\(E\ߑ(U\o \چ\ñ\rt\;\{\ I|0|\%T($?4]\"4\\0) }a`\N\NaV&w{H\\\\%\RFاδ\\P\r&\u\\I䧪Dn\]я\ \J\y| =A\\\0\0\0\0IENDB`'),(169,1,'UPS_rackmountable_3D_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0\r\0\0\0\\\\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\01IDATHǥU[kcU\-3ͭͥI퐡 NQA \)ڗjAd\y>\O\ -\\raftuډ&MM2INNk\tӘ\gk\\^\[{]\8N2\\撖e\'q\eA\\\gϭ{ض\jQ= .\8\\\=@`N\\\<^\\"\\ė\\O:0\\t@H \\ӕI\\奥\C\\\gPH \)M\\ )\82.~JipDf\\R\^{\v\l6\\\\W&&&^R G8)\H$DP.#88{v7nZ\ne\6\a.\pXOL7t/T(ǃ(noP(\\Zv~8# \qC$UU\J,\|{\r]\\\\bo\Owk\\z\ ]X\UC\\\\▀\NH\n\ υ௛h/lj.R\n[F\~SDc}\\u#8\d\\Wt\ kd\\V\\)DruJ!*[\\s\YZc\\+\s\vMWhg \\\̥=E\iހ5Lx\>\SE:9~\\ߗ\\\\L\w@\GGt1\Fcb\\\pw\v\,\\#\ǡt\![\\ \0š\1\0\0\0\0IENDB`'),(170,1,'UPS_rackmountable_3D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\0\0\0\/\\"\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATXýW\kTWe\e\%1{B,!DK5j-\*6--\rmAՂ\?bK\$\"Ҡ-\%QɘL2If{\zΝ\\elvyp\\wιOm\\\\\Uo\9U\\]\\Hu\>%\[YYx\\\\Aَei\ bl&\v\\\\Z|\:Lj~ \GFFJN>\mY{=}\?*\\\]\XPޖΜ9c|#(Ú~a3! C\\q\or0e\+CCC5\_\\.\C_,q>j\$bv\\[\q_\n#r\\\כ\\l\'P\包+GD\\\5\\\\\v$7QQLU\1\~\Xc6FTp+\X \4EX,5\h֩\V v\\\^ˣu֚ygkaq1\\.\'x?~;!ÔL&A1I!\w\\gzAfhhh@$\\2 (\\\r|\ߜg\(\\,8\n*yܯ\\L\> \! ^Ex\G\\;\r\P(\0\\z\}|*\@\e4\߷\q3\\\rE\F\7\"G0zv\t\n\|>\\\0\Fz{{mmm\%\\Zj2D&&&-T{_\" R0:CR\\rmh\w󀧬O\'7\Z۰ \wBU\JONN\$#G}\\577ǥXW n d\f>{c\\`Zc8)\`0:#\\1#Q\_\\E {YU]\\j16@W1ݣ\\Z,o5w ;e\S5?лBwm\Sțh\\\\\ܚ\Z\T\\Z/\\ٗS]\\\nb\z\"nc1D(g\ѐ臉\u\4\\}\DϼƊ\E_\>’-\\\\\\UX^L^\J\\> \Fo#\\\\(\~x;_M/a\\oll}}I^\׵\P*Z\'B\"h)=\8VD\*\\\ZqX.\"w\@8\GKs}yRAت\\\\ E\p\D.6S\\\\Ӹx7W)9V*ʗ\2,w*\\\2)\r`\f\\ \O&EZO\\14)|\\&H\ѯ\0EX/!\B!\T]C#NgVs\08Gho\'\=% @\\v!d\ N\]\\"1\\.\">\\Z\\MZ\\"3\9\\X\ZC\ñΕ\\ EL\/ 9Y\s\,J ג7(4sȚ9\0p\q6#@CW1>sBccs\^ h\\0T~\rz\}O\'\\\\2\«\\P$D\,,\'\ZI:\:\0g\"\$\\gq\\" -`u\`- #)yM\V_KlX$e}DPv\\\£I<%\x\:gf\e\,2\=\\\9~\i\ \Ã\\.0cGv\ @\p\Sm\"C1/\E\d\;=zm\&&n\O\0\\\\Z95:\sq&2Y\6zmDי\0e\9\<\\'3 \zp\\\\\Z\U\zg 5r<\ ~FOoX\rs)/B\34A\^U0JuW?fjŴ\;^N!q\g+\뵞\\ی\<\q~)f+7\\\\\Y\0\0\0\0IENDB`'),(171,1,'UPS_rackmountable_3D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\Z\0\0\0H!Y\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0\n\IDATh\\YklW>\YϮvB\xm\'!M\Z\AR)P@!DDTAA E\!R?\P8Jh\\'c\޷w\ι3w|w<\\8\c\{\{g\\\K\r>v\ڈ\Y>\ϩd \Y\\ uIԝNv\ԩ\r\#-\0\\\S\\w\+}\oO\w\\4\\\\\%\p\׍73\'zI]&ጢe\\\.W\ѣG>\۷/Fnevv\Y\P\'j]B\\u@~_>Y\ݻף\hL\q\&Z\C\#A\\СCg+qW%56~?w1\\\\\vw\/dY\\d\Xr\F\\Ia9E/\/ǫt\xw\=~333\T*5099ك\r\C\\\o5#\@°Z޷\E8vWj\\'!\Ɩ ;\\C\7Z\\\\\\\thN\d\ݻ\@!\;:\"qlW \|ijB#EQP(@.L&\\l6ˈ|Mkk+47@:Y\Ar\o\J\n\1\\yɣ?qs4Ɲ7\dR0xg\\rt\dD\.G\u]\ ZihE\\\5\݉\)\\m<\r]D%&a!Ɨ\0DeǍ\Z3KMB \I$(\\Snll\ _eko\\ײ|M,5\c\,h?ᇁ\\\lt!h\\ŧr΀_u Μh%\\\\NܥK[\Q\BCCCvs<O_\`N\r\x+jS\GD\A\\0\'›8sE\\kp]c\\x\q\j9 \HN\0\\\\pm2\'\\/tsl\\\è(q\\g.\\\\M\ \\n\4!rÍq^1\\\\n(Y,\]\=\uuu0``S\\"ͧ\0zn݊1\\k ݘ*j_d\?\\1\j\\,\\Q\Z\' \ar\ʕ[__\s/>\\\v\q;\0\c\4|\V \[^\[\ZZZ\\\}QpN\\\5g\\ZjiLNԊ^$afET\`\1}\0Q@ \z\DE\n$\,4*QЎ^\!\0s\xatt\t\X p\"M\E\!\r{\<\??\\@p\\9ǼA\r6\\(4662\Nx555e)\Ogg\']\á\n!hI\5)A\\bC\t8\1J.l\ZCQ\\v\\u#؛J>\\ߗ\vY8~\ Z%Oן{\n^\ x\{\\\\u,\\=mذ\\ Ů\\\.`ϡŌFh\\%-0c3V![\rT hE\2$_׋VRչ!T.rz1e\\{Kn[T\\\CK&\Gߎá7_\ތZRv}\c3._̬\\\Z/4\)-c\0Y\0j\[\\u۶m5-\\Uc\M\\S\\\j!\\\\\ZQ\$\.\Ě\r@PWUN\\[V癳2\wFļH\0\l\\5\f 6\\8{q\\\_~\\gE\\\\)r\\\xڦ2 \\X½ډgAexS\IRLV\\\'HN\ Kc7\UH\:\\'\|TYc&\'c<1a\!ad\>K\\\\P\ZHf\ʏ\wOw\\\'\\\\\|<\\^\'޿9\n###pu\{_\{ \IIjjjXjI-P$\=\\G Z\C`\ 鱴\jRz\n\bH$jTI) K0\9])\$/@~f]\Z\Y\\mZdŀ\\\*ϣ \-h\oZ\nd?\GK7\AU\0\n\~\\\\~\5\\\pśn%|~/_\\@\OB \6\!\\n\nΪB\0\Z ICfdP(\1?\4w(d\v\P\c)\vx\>l\\\?\5-θ\1[T1=bV\'Ԁ\ 4ir>9x{\\J\a\ߝ5\[(U[\ߜ\\mzOZ\~\^ ) \#wG@&\b-\`\b6Uj xo\0\\T=\:\ѹ\\|I\\x@<\LP\2\!\\íHL\\4:ߖ-[Ì\\ލ\Z\\\\\r^\\\n \?2X\\\\c;ؼߋ\e\ɩ\I\M\\_\_\"(\V,cB W%FM\3U\,\^dM#[\Gaxp\ڿs~f\\͛zzz\F\\\^\$J\J\J\\\\\BE<\\4\]i7\h\T\'\" \\Uq?|\MO\\\-t&ЈQ{}!,\A\n\kcq嘅Nz\3\L|O\\<\\\\gk\\+}\D\\}\Nѻw\ K\/5מ}/4֒\0(\R)b\Z\RטbU*_\Ke\\\9\ \\\\IS\\:.f^Ne\\;\d\\jH2\\"FkHXuu\\\_6f\53\tͪ\[.H\\\\o\\8\\jfYkX\\\.r\wI|TITwb p*\-T^\o:}J>Tݡ\Ą\ߖ?Z\0\0\0\0IENDB`'),(172,1,'Video_terminal_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0{\0\0\0\0\0\0+\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0?IDATx\\} eϹ\ɝ@B9 BG AtQp=X\\\\\+\\\ꮸ( 7B\H \\$\\\\\W\\=3!c;8\鮮~\~\{i\ZT\v\m9Zm\\rTge\*gy(Z\\_\v\\P`\\\u\5\[]]y.\\4О\d\nǼ@scc\wW\\Om\4\\\J\r6 bAl=σZ?)\\\]\̗\\<>\\k[\?T[\t(J\nXmV \c\0ϗ;vW}o\\X9\r\Iv\\w\\5X,\VYm\\\Vt.m{`\\m\\?\n{\׌3׬\/\>\Z\\nέm\PZ߭V \\NX|b\|\߄Ώ\\a\\=\qhnnd\\\N\Z\`kj\j$!\\0w\(\?/k\\/\\\\0k\L\l\:c\uk׮uLC;qT\M]m\ig\\C@\K&š5k`\\p߶\އv/Y3\#(xW]\ɏ\e5\ro\^kw8}$Bp\Rne \3$tv\G}m\]P\\N<~i+l\v902:(}*\ l2\`׎`}^vlNkց\08\rm\\sW=\#6йۼOH<\o@\\a\ٗ\L\\UUU\\:a\\\C,LC[`\'ҙ\Ѿ\\n8ۼ-\ZҞ\`\\\1q;mzꧡP1\\3\nhu\U @dӾ}\fh\\0w\,h\j3Si|!\\\4\ُ?p\C;-\E \\\jHz@9ZUU+r\\ih+iK\\\\ld\0l(\\\ \x<\f8\5\0V\\>p:\\\޽뿦\\H_\]\dbA+@ \ke+\2؄ \J[\~<Apݤ\\\ܹ30\rmu\\\H\l6*9\\6\z\D$\$x^%)(ʅӰV8ش\\p\\'3L\\0ꚙe\\3\bIZ-?\\Ƨa|~\;\]\\u\\8Q\\Lc_\\\`\\W\nkی\1\v\c\Ҷg 9ATM\Ot:\r\1\\Nj\oۺF-T@1)\BTA8GL\9i]\<%\\ἢ\y\yep|#\r $\鍭]ֲt\yh1\\Y\\\D\Dw(\G\Z껯\Ⱦ;\ޞi(\\}|oODM\]f\Z\\'Mk\C# \\Z&\A$c\\0C \\rTW55*H |0䏢\\76:|\0\ \F\"Q\o\s\q\^\P`x[Mm\\q\4\'\Oau\ hns\H3K:\\\h,MN*{O\%M՜oEKV\\n6|\5 \\~C~\)$ԿE\rHe\\\\#G{k\}fkkk\0 $=\r\qr\c\\I+{9\Zg/\0I\A.d<\nxד\f\s9*W\"\\'%EE6\r6 v&UB>bWM)\0<\bʊR}]8\Z@wem% ;ʀMC04.nUns1\\Z z\}\\0\:+Db(\\8:؈{Eh\g(7DCi\"\@9Je ˎy9\rH¡1l9l\"\\0i\l\Ag\\Ԑnq\ZQ:@\{\Z? J\"2NlxH8ң\\\o}\\\\\łm\\\P \>\r܂\``\\%O\@\Ii4Ȓ\\/)\`\ :.\\\\=H(ETL\rR9\\H\0dIH?\\\+*{\HvUB%Ǩ\|BĎYFL*(!\rA(D\"OF0MH\\\P5֒l`\[o`wV].F\y\,Ի\\G\\n\ <\\*ckC\NE\nA\A\O`\\\\ \.\5\y*\\Z_C[}\P$*?j\#$*J`\\Zx&L7 \0ZX\)*$2Hy.T.Hzd\n\\#\Z\H\\\r\\.\\\h\\qOqV\[`\\es\\\\_\g\N!g\t& \qZ\y]D\J׸$QGK\ED\"B$\\dm\\\ h}3\z9#B \%TxCL;fR~]d\YN!RY\;\C\QU+Ҧ*bE#g\\.\*5p\6\\\\\\*Zg^ F dѠy*\\"uCF\E\?\o\\m\"\i<\l(D \4r\\\'E\ Ha\B\\ !\Pܣ]\pF.e\\0G\ I\0g\6ӄD]u\ p#UW1$\ukrvF\n\\t\c\\rN\;Yϊ\ 4֊sqK\0\4\\pΦk(H09\tI\x\\8(.W%#THk\n%Gv_V\iPbX\?)t\h4)M\\G#-\rC,\\ Vz*H(ND\*N\\\\LO3WD,)>NR0 \5(\Z\*pg\\_9\|\Ga鳷BK{;PFK\9i\V\"*.(\\t\8q(\9\Z\}_ɇ\\\\K\\`\\Z\?\}Ƈ\r\ts$^/9@^\J\7\\3){\3\\A\|\ϡ\i:|6 \ \v߿1\U\\j\\[*=\\nJ\\nw\\0 a[ހB:@(\Ba]U4,\k\\\\x1NL I\2`(SA3#m\\ \\/\\mP\p`gw\a\:\\ Z,0,r͈{ EZy@ĤNt]\4\uB(r8m ȿ\M\NTܯ6$@&:a\lzv\\\\l=\"\ YיƓ\\ \*H\\ R\{a\ @\\)\h\(\'v=8H\wK-q\4/n+VITO\rÍ6\\\"x\\P\b8\S߀\nw\0IRWt\\\\Z8[[[!\xJ6˲Z)2sCz[\Bn\'♱\<۾r ,.\YPăF\Z{\GY>X\\\Bсf\\I \UQw\t׬\\\=܊Q\`ѩ15mv\.8{E\W\\5\\\\+t?\0\r>\d\h\x=nŊq\Dŋ\,aJ\Pߒ\'{r\\&p\\\\\•p \\\8 ?usNeYB\Ҥ\"4\R\\\*D\$}%(\\1ь\\\n$GQ\.X\Z\gA24\\K\'s\d\"uu5tO|Ÿ\\`m\0R-/Z nM\H\!\|^F\5âc>p5U^]\s\p\f\x\"\ \bϣOrHeym\ъ^@a\U\\\B囹\$\\ \tҾ\}>x`\6\\bI\ZaR\~\j\\t2-\iD֊K\$\\N\h8.!9\3\\#\\Q>pptvu@\]\\\᪵g\\79\\"(\Yn\fhiбu\\8\0#H\,AgT󵂵N ULY&:i8TyKWV\d1\\\'óo\@pr\TA\Z_.AP~$A\BUC-ngTEq<CT+*\T8\ 5[\!\\ 9 \N\rgm\\\\nh;\S\l~\w\q9a݆+`\%ث\\7\[`\ᆦ\੭r\/u=.\f\\Z\:\\A\V\r?՗{\|\$2T|HFC`so\z\\[b-7K1dCe\pP\\ܮ4<\\#\\+7B\\]TSe`;k*>\\jX4%ټ-*`\ LʢfO~\\!\(MTݱ.ܕ\'cHܧ3\ ނȂ\h8\\~\\q\@[:BW\!\?}>r\\s\QM#wN\^\\qr I\sM:\jy\.:%\,ލL M\kni1 ڢդ\z0\\y\`:%\\J\+T\%\dk\\0\\bpƴ\O\\ob9 @\F\zcs\\2w5H\\й/\[|kQh_\4/ZZ\iN\\rnxq\HM!Se\\\Cz`\*NR\#\fE}*^j\irF\ VFXb4\#„P׆ɖ\0\܎\`*j\nP\r\Nk8\\Kt1cC-ɌIU=,٘˃:=\"~ߞ=\\\W!\ZV\!XpʩP\PvW\\SMsI\՞~l\/e\|S\d\#\z2q( \0ټ\vCYMɷ\O\=\DɄ\\ W\\qj\\PߠP\nP\\ź7A(ˡ\F߹\\\{\-Kh\\\\\w\\\\\\\IP \87\MA\\IV\\O\\S\Cc]5\jk\\kx\w\\\wYܕ\J-R7\\\;K6\ooe\C\MfaiNKesT\\(9E}{ar\w_yn+\j|wx$_\]p\\>N0X\\SwM\\+_ʤn\\\꫏[|^A\K\'OsW*g\'%n i\sfr\\@ dž\\\H\\\hKS\TadxX\LȬ;\n\===\P\0\\r?\v\\Űo\>x\\'u \6\*Z evt\FMю\6hwhM J\\Cn\[=A:48\>\\\Ì\F8ml\\\ݪkj 2:46Z\\"[`q\%\$ٛO\$\9i\\n A\p\0\Sk%*w\tl2e ֩J7+k\C\\\JB3l\\\Z]{\R8\; .\ \fz`\~6h%\\mٲb ׬/\\\muvv =\\\A\P\\\¿[+Y\'%\%\ࠤ,9\\cZ\?t\%\3] 7\[\Z\πmM\\\R)6\\x\T:fb|\k\\.\\q\9\\%33Z\0,Bf\;\'\\cA\"۬\qpH*;\3r\ָy*]U]g\+zK<\\\Xly3cXIlR?fw۳g.zN+pc\lK\Ґ\\\6jfި#2v\\Dw%b\u\\X&iv7Db\\'\\\6D&\w\\qşik5 9\W\Z\z;=m:&/\$\ɥ\H^\}`\9!\~ \0-Zt|ףi@v*S_P`[J8\(ELJ\\\\\e\5k\#|ntU\\\\%X\۩ߊ$҈%aQ2/{M\\\+\),:c\ Z\o\\= I\1\\>V*\\\xm\BL\٪(*Z;X\\T\G\hTFS}\\\\ILAh|`\>\Wf\\]\ʑ\!Cu%MZffkS\h4\\D\躴,Ts\\\^0\\\uAm\\r\J\ײ\ $(\\\)\iXPP ָLԪ\R5r\T~D`tt\\G \\\\wo;[\v\\%\\W_W_\\r\9Vu446AMmx^Y\ Nb\\\\\m6\\6<rë\0jQwH:0}\ \\\!V[ B{;xЅfB!}&H\rHN(UwJ \\'\\D=$25WӠG\"a\\都o\m[\Ýl:0m@\0\h\0\^x!\\\\Xd\\ax\vZ\g9ZZZ\\Җg?Q{,NÐ}uؿ_2ȱ!LB4\\\۠ڐpm\\C-˖\\T\ gs\n)\ڈY/jÚ\9\ pE\\]\?7\\ \H\]wÕ(&\21Y\9\\\C\ß\\\\N\7N(\'\NG-\YQ\\D\\F\f\\ @Oe\TNyq8kQHX\"\\hk\4AS\)3-s\Y,\\)Lt\\mppp\\\민 \\c\XyT\\vb\|7V\s΁O_t\q\_7G~8\\qI}š\he\l*\'NZP\\\Ѩ F|l\j\'\\L\r»Q cՂ \ڴQMY8\^\\l\ Y9\Z^N\\\DF}\HO\'\tC0o4ԣ\\\Ԇ_\\5hH\ao#.U\\j\\rP\S\\ \U\\j\ \\\\b\\҇\\]\n=^]/ +\04\\]\85tN`sj{IC^?\\m`a\YBC\M\U\ WせlpDԙ\x= ^\\\\uVc_{\ZKr\\ʪ[EP\\*b\\\\\\BV\+`ɟgr(bG\q\)#\Z6uJ)b\D\hmmuKV&\6[Ҝ\\Zm8+7\?Y,zP\ }\vjD\S@8{@)^ `n\8 \И~C\\\k\\4\[\{\a-\\Ϭ\\薽\\T\(\VK\yg:ZaKCd\q\66X\&Zn\nzi\{1u2ƛO\%f\KOs\ \Կ\&\z\4N$8 V*$\n\LM\\\>*ծKD\\QH%\%ʼn\Π\n\l\ny5ݻ`D\",^X\ʌ\)\.\\cP\Z\\yS&To9]݂6(g\|vަ\B\ U=X`\.d-qe9~m,\\\Z66@b\T\/\rmѭPB\\=\' 8C@0ef\Ɯ+/P\e\\Z\$R\4\\Գ\Qg}ɩ:\\?M G*\\\E7j\\\QB\f\\J;Y&rɼP\Z0Ը^O+Zh\\\&b\uDd\B(N-t>0i\\0фra\\$Z>\,h|ʓ\\0Ax,\\\\LF.%DXr\rt\\\\\/W@RMA&\"[RCjX\r\nS̤\\n Bq&:\=g4j\\K,w8߹ፀ`)\r\W2\A:X|-tT,-X{5א˔T\\ \X\"/\HW<\a%Շ.qDò\"d]|\\rA\<\i\0\ \r\ \_\\\\rv4\h\H\\ \\53\Qt\j0Ẃ\+Ȍ~2U 8?\4\@\$  \96\\\\'ZW&rP d\Z\K\\*0r:ʏ\͓L\R)j\\CMoC]\\M\-\\\\\\PSWǾ[USSWٜmU\\'c0}I\'\#\dqp\i\pBC01\nQ\\\V\\/\$%6 \\0-5l%r\\D\_Ây e\\\Xyև摣\ \H8coT4gg\c\Vm7Z\|\'\\dxRtA7sd\\ӷ\:#ukJ\9s\n\P\\x\\\OEs6+\'6O1V14&U\6tĻŽ<YXA)´FX]=[_6hE.\\CFG0\Z\\\C}{;\=288zEK)\ɴr@1.p\)2YwyLTaB>6\n%}*\#*?{M\VDQ,pi[MEY\\\\h$\:z󩡾胓h+\\\*]\/\\Ha\^\b}^i\\\4^\$}66\oۅ*q \\-qQ\E}\ eqXŇBACx<\\"\㣁\\-ȱpoen-\EB0դ=voa›ȍc»(`>Ɗ@\klڬ\5A-\M_hU*X\bD&\J>3}\9[$DbMhtF\f32>O:IG\\X$\Z:<>x,A\r\t3\'\No1!\\`&\x@$\0]$5@\\\\qO\\&%\Bd\\Z$Z\9Y\\r*ݘ,g\r63N&R\\>ȥ\dktlf[bU\h\C\[2Mes\\܆0Tǣ#[Kf\*\\\\ºF_1ݫ\;\q7BѪ\'&\\xc9AQM6\\FFV\\̙^t:\_u\0M*\:_~\+[p|t\\W^8M+\L\ن\\\\c8LCRq\o޺\*\"\=ĊB\\'I\҃z\\ֲ4t\\Z\|(\6 e\ZY84i\\/L\EG д\\N\R\0Rd1#Ga\\g\\Q8k\5}GΦ\b9eٺCo<{ \M6\&}qltX\dR@\\в\Ja fEOĨ*B \f\-6g\i\/\\&<>46\\4\\\\$\hQ\\\G~\\y\\}\\k\\\n;ak]\\k\\r;\%Nv8l=N\N\\"\\]v5k&kKETàջ\\٪\XhM2Z\>]\K7\Y)\:\tcߎ\\y\e\\q\\J\&\2P\ \\$\[ZZX<\ٵkW\d+54\fs*<-g\\\4QZ\\C~L\rZ[\^Bt9ry\}\\Zۻu\?\v+Mv _\Z5\\\ZFUH(7399A$ p\0\d\l\\\ډc\n\f?\:r\\nZ$\iߚ d37\\nf+\\->\|\ʼhx\n\nrj\ʿ\#DcQO%W\4B\KN_*\Um\#<\i\\j\\\N\&=Z2\Ӵ6;44\W\bR!w\\c\z`lh,\0}݌Y\\\#ý.?\'㡗G%\Z~Oi6n\yY\H\\Y$\V8eu..}]>A]{\\\"Hv2\\\톜\:^z\s-\8\\iI&Sl\Ҕ~]lf:\\^x?C}\k\\faH\#LDP/K\'8lc\\rK-m3Y\cva,tj\K\J5>*tu\\!F\I\v;;<@>\x -wj\@1\\\˚EA\â\\"\lDdrN\S پ-\\M2pг-r4\\9j\\\禶%*VX\ \ju\\\\C=^\l\jA\\\\z\ݞͩ䲐JF x $Í\n\\\f6\xQqh\n S\|_G\W(\\cOq|\ju1C\v68\$\{%^nŌ@K˵q\\\h\Ev\k#c\0}TUs\o?\w\%si\\ xg\j\140(#\&>\y_ؕ\W*(\\<\\c}\%\PݴY\\05ͳ\\U5.\)6\Z\K\D\S0IG4ˢiXHlP\\yYN\sx^\\t\{0\Zz3\ZN\|\Vc\v\Ek\t­\\\'\\qll.\\\֛{\GLm\\f%Z2<\\S\\:00`I\@4e)@M-[Mg\<\mǠN\צ\n\\\.\\n9M\4E\\]7\Z\\ \r* \|.;K\'\D8\\0\NVYe#J\9m9\\sŲ\dLd\F\ Zk_y\hgK#\6>^\n\ơտrŲgz\\/L\tNioosOy\\\\\\\)h-&*\\ba\NXZ!\VTs|WLƌ\?/Y\\x\-\\pn&\rXD7CN=\\'xr&\&#$l3\ʜq\9\\ծ \?wKoo\\$2\\ϗ/_I\5=\`.\\+y#=#\\\\@6TQC}\\\)]nIq|IShĈ8˥SG\\ é\?u\\_׫W\'j#\-\n\rM\\s\n&]0rqcϾ\\@\썺z\\\\;o߸Q\ʠT\&\?\\rʬ!\\\\S\\\\\֞\z|̳\V pf\b\\ oC\\\D[\ڎOcZZZ4An}\W_7*W[I\i\Iӹ\\7556)6VP)@fͨgÆ\r\\`c|\rqs箛f̘7\y[\m N \\^c\\\M\X=\t*??\=\n<\g\#\߿ \r\\\j/\\ \iZ1\"W㯽\C -\Zr#\\4aġ\U\,Xpʰh\\\O3}\rv\\n\\X\\\?~GKk[ZIaT7S?Hxx_N\ZK #Նz1\Om\\`\S.B6]\eh \\\T\\nW?ؾ}\QN82:ƏwR$\O\\g\Vȵ⧻\;\PE~\4\\\n_,\\[;;;qRi2\*\\\W͚5kݡͷXDU\d,rc\\)8@\\"ph\\\)\\\:8x\\0xx?i\<\lc\O)%Ι3iŊ\\\䅱x\\\ u<,\V.\p:rN{P\\w>U8rKccc\H`d&Káf>#g)G.ˍ7(\sQ\\WO<\Įw\Yx\a5\t\-7\kc\\'_NdIZ>\n\\\j\\\r~ӣ>\Z\E\w\tw_v\ia`pCf̜n\\\h}\Z\\\\0|\̛tn\n2\\rP\\.yS\*D\\\9\\\\g!-\\\s\\hhÈ\kJ\en\ K\\V\Iȉ\\2J1RC\n4‘0݃P[]\rM@},9#ԩ\ZZ\\_\/p\"\\n \\÷\"\\\0rs\"gEF\\5NG\\\}sGG\mN\\\Z\.\naD9c/z{~\\\\\<coF;S8\\TuC$$ډh\i:\輸\\Z?466 \!ow\Zо\~֮]\\x\\h\i\\D\"\\'\º;R^N7Խ/,8u\_<\?p6rҧKk8]]]V HӉ\\3Jށn G\\A̗u{$](\\ciA$!y8\FQ]\`\ \r\n55\(%f\%i\F\\\\\6]{C<t\\\HxqkK\T\3NE\v{\5y\B?t֩s9]4(\X\l\k(g\\cm<SS)!Z͗u+r\\\\*HΝ72\\)*\%n\\"l\ 7r\\\!OU\A\ |H8S@ÎR%X\"qqf\"\\򥭷.\'U\POR\'zt4\55ux\\\\16>\W n5\Q\!B\ò`ڙ3gވ\xN5^\^\Q\\\.475C \L\}\(\I\\H$¬\Pp-EiG-Y\FDC\"\\\e\n.d<\l\0\˦\DHz_u0E\\ZЗ\\0J\7evU\\A\"gߥ$S\y\Go\Į} j\r>\\w\\\688(q2%̥>V\ҙg\S8WQH\Ny\\\#`Ah\\r僙l\r\"ttPd\\"4Ԍ\Lh,S\ \ϛ&ri\]r\bc\\Z殊hu\WUpzjࣱ87\0K7*~_\bo9\s\K/\A\az\s66u\Z֛b\J\\n\\Z\Z\Zgq\\\ş\<ǡ[\޷o\o\\Z\\\\p_{\%\?r_Igb1ͅ[͖u\"p O[\<\=Cb\(y&W\j\=a\-\B3\\ct\c\^Կ\\ZF$\\A\'Kl`d\Ww\4N9=\Zl\W^y\jԝo\g1Dvy=~\\\+TWk\&4B\\(dݲe\OP\oY|\(k\"JUzPR?\\:&Xgiq\\nkyMnS\\i\\@\\W\_F܎\( \(0d\l\L&\X\\\h?lٲ*|o\b9\0n\?\{\\\\x!gfd;;;8g_q\e\Z\\384\z}~\KME\A.V7ղ\Ɍ\,j\g\Z\"ۘk\\\\'W\d,\\ ʁT*Ӄ%\(;\\&# \d6@ \\T\VgW[9,}Oȋ!x<\t:\Z\\';P\<?\\ھ\\\̵O\\y\Ǹ\0 u4\\#rCS\\f\\\Ȃpa?\3N\\\s\/\\.\nʲe̩1M\r\\\H]!\Y]ț=Ǿ\N^~\MWkj\'xq!PV> ?\ IS\rƵb&YTK,!@]\\3\c ,u\Z\"ac~&\\:\\n\0ϳ\K:er\e\n\'+VTazp9\ZQu˼Fks,>{ VS\\\T\W\8\D\\M-\`\}2Q\\ \4M.E>C]\\'F&aPm \0ap\W\\ޗ\0J!\"(\\+ifZv!5\lE\CL@X\\(u6\"aȤR AeY[\X\\\9*\\`J\n8K\\\8a<\.y\0?\A\4*fѫH c\h= /A\\9\M\6\p\\\\{K\s\ \0.O^%30T\g5`׎f\cp)@)\\qmj\ގ!\0@\[\j@\K\EbjWn!x55\0\\\h +\8D\a|\pBOdK8>8\q\\\\MT\\@Gmr\\\\I*8EӁ\W0vw8˖\nJ/\(\'vuL\ٛ\53\R!\:T\\\\Dx\9\\\rlˆ \D(AH\\@\\)н>\ \v/\\\\7:\`mٹsg\\\\\Y\nʖ5%).s/\y\D\il\آ|\A\0\\\\ߦ\\\\Q\k=(Ie(\=:\0\\\BeU\4Z-\\ J\1\r \r\ +zYXV\wJBAEcc\\\\X\\\ߚ*_0BBU\`E\nP& \\\rS/\\\%\Zooo\\Y\0\\R?u \\\z\$Y\[,6?JUUU\r>J) mڸ~\4\\Z\^`]]]Km۶v\\\eYV/@I#6\\\\@GG.RH\5\\;;;;z{{\cX\\\بeY A \Q;\ <_ɤ^\ZO8!\b!8c\so-\\u[L \Di$L\\\x\\\\9z\\+W\n./T\\ˇ6\\)rt\\0\0\0\0IENDB`'),(174,1,'Video_terminal_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0.\0\0\00\0\0\0neH\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATh\͙yE\?\\53\Ifr 9Hb49HJĠuw\R\\(u\\rwt]JwOɊ*`4Q0$`Ify\y\\\c&!`d6\y\yy\GwBk\^+W\ixxĒR\5d\\~j\2\\\\W\\y\l\qJ\܉g\\\\ł\p㻮n\\t&M{{;+W\\\\ƥ.B\\ p\|_`u\"N3g\l18E\>l\\\\\)\\\\8\8xˉ\G\@:WV\j\_\߿\;IWM\\4M@t\8a\'n\>pQ?ϟ\?12PXD֐khƦm\\~\b9\ROa\\wlj2M[\Z\ZP]R\n\FT\W\dg\xq\m\-\\6\˶n?t\ٻ~.n{\带n[Lc#\Q@it\0Bk@pي\\\u\u\SzT]O=>j\Q`H%?(\\Ş\\^w\߇v\V\\\\qmRMʵH9\$c%P%).`ql\\n\\H2~q\A|\GR$2 3I|\\\+)a!c\'C.ir\BFP&fl)m`8)i\yRCHD%(ı$a\X )WaL\\PI$#S\Qj߼\ S\\A-S\ \.ai \=vs.mt\0G\ILH\"CRϤƏ\\"DԬ P15!JP%9M~\\)\Q\\!/%Z\(Ai\\\'\;\\\|\\;\uISX\\0efOoE)T\Z4h\L\ZST\o\ Z\M9J\05\{\% 9\"f\zt\'Rlh(Q(\ZB  \\\\I\\\B\ \)\\G\ \nC0Bi\nԙ\..\H2:\x QZ#1L\"R-&j`l\4{>{#ees\w\/|eF \\2\\r-\ BРxya\6o!A\rA]K+JM(h\\"T\n\'DC^\?\Y*\'&;gFri\4\SWZZH\Dq|ޯ\(\v\6AAL͚\aQ$db jrę@ӌ\ \\:>eM@O\g\)l\ms\ZfVHE-C\`/\/}\\p\\Z?\\W\d_{vǶi\\8e\l.;U=\>\ʵ\R\ӌ̄*/\n8\W\(\^Ŏ;|\\\su\r#$~phm\ed\sfNmƌW\0sv\\ɓ\t\lx˕x\\\\Ww\\Z)g2Q\4\ILڊR\Xo߽\!?\ɞn? \'?c6֯gӇ\J\2ƋE\j\\͙3g\V\BFTd\"LX0\ǎ\O\~\CA\d\\\-\c\~EG\\n\JD57.[Nc\\|+\r9G\\IpL}cs\\¡jY:\n\ن\\{\8\\\(x\=M\Bq\3W!FiMed\\Y=w>@&H\t\\\-\2i5\>opE\4M\JWDJSI4\K\\}\\";J3f;x\Ķ\6Sm!cM\\"\>\\o&cdm:[ӪcR$qBV\h\n\\\5)n\a\ZƨUϘaiRI4X&b\\19\\\'LpOŸ2V*\" ħhF\\068H\\!c֮={C& ٺ::f\kxEͶmƇ L\= \\AUP\ne\\>\1M\\p\\\qp۶q\V\g\\"[\;\u-\S\u)kOUMӤN~8<2\ds9\\\oh1\Dcc#&\Z\Z\\(JR)UO\Z諔\\]?߱m\q1`u\r5% ˷8Za;\\\\.\\y\\\.kc\m\"\$\\Z)ҾR$dd\Tc_<\'\w x 5\?z\\`!B˴|i\FA \"u\V-]\Çp\\\hg\\\Om\p\\s2DZ\\}p\M7s\UZn\z\ς\H\f\b\\Z`ڷ\\?\>{\\O\\\>իVp\\\l\^Y)\Ći\\0\\Z\}\;Z\\L7\qR#\"\͹l\eG\G\ \\v\\Z\\r.hl\X\`WI\\\\J\%^J©# ((\348@R.ߊ\\\sk[o\R\XX\\ZEńaD\'tv^2\\\$qB\\*1ò\\Յ\,[\l\? .-\\\U\ش8\\0$&\\\\D\\Nڦ\\\q\\?t\\ۋiٸ^7-Ax\O|h\ڵiȒL\"E1a\\&])\Z\Z\\\-l n\\ޓ_\2L]]^z\76wl\5M\\8\2)aǶ-;J\\0,P@i5\\)=a\ѠV=<\\\@Yk]~\\\\?Q9 C|y\\\ ?\2 2t\\Ym?800VZ\wmHhǀ\N_֌rJFgZ/ASSc\z\\Z|!Y|\\\\\\\\套\\\.!\ys\\<^V^Lֶ\\\\\dpw\\ժ\TkU\\\(\g̮yE\\ZxNj܏O<\T\c\JFBw\\k\\;/\_~k\\;w>\Z\0\r\/[R-DL68ٖ}\\]og͚\\Y3\!\BjYֿ !~\Z\[laٲ\{N\\\-8v\Jg2\ֽem\\w\6l\0m͚5Ah\Rt\)q\ƜR\3{\R\Z\\mߴ\_\9\\с8&\ \(\\rMk!d6ېq]\go1A\  P.Yd\ rcPxR\iX\^{\\t:}뚛fϙM&\\\$BA.#~~\\͔\\J\\׃\r\S)ʥJ\O\ \r>{\\{h3g\|\WH):tWP`\\4o6,S\Q\\\0r5L\smT*EsK 0\Z\\8\R>\'\\?Gk/\͛\\K)9W\\\\\;\C\ֺuko\ZaJJ,ˢ\\.\\\\Z \\\\g<\Z\\Y\a\o\Z۞\=r\}\UԳ .\xV+uZkq);\\m۶\=\E㯕暥a\Ƀz@y~ԁk\0\0\0\0IENDB`'),(175,1,'Video_terminal_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0>\0\0\0@\0\0\0B\\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATh\\[ TՕ>oW{U\\4\M \\J\D% Q\\A3\$\L4N\g2\\\1gԨ\\LԘh$EE$Y\"\"BwCw\\RTuUu-\\[ ͖)2|>}\{\\\=\?˽pmC\.\k:-W&I\9\\\_\\\o\>\\j\LFH&b_kJџG\K\\\p\ת6\\r XR\Τ\\\\ogs\x\\\l.\!\5\ Nl~V\L(-\r\{\mGʆS!Mx\c_pa\ |R$\reϟ7\_\\\[{5s G\W\\9\c\4M\\(\p8Il\CCе\`J\+\t\h4l\ݻ7\\\o\್\\\?j*\!H\0\}\?6\Zy\y\8XO\\r\N\>\u\\rc`\\\\NJ\\\\Q<6\r\\y D.NA\\f\\ugs~\\\'Cˀ\Rpqm\a \M39s$%\\ڲ%D{]y啞틿[\ԲqZS,;{h\":~\ჟ{饗\\n\/dz3\t/kea \\qޢᄪh\\ Q$\\NkjFlj\\Ý\\\q{W\\w\M7hY\0x\\7@4t\-8SC\4\\c1\4 \0(/|\\2|>\\\\\\o\\hX\xN\y1\_$\\(ްacb \\@2\D{\\pF\\ܒ\'&\9@j22%df\'\Rw:\9ypq8mg(5B\\^\0\-\\0\\J%\u\ 0d\#C \(@F\>p\& I\ \³)CSx\\\\7rÙy9a@&\,gӁ\\B\\2eCbr:QbV$\\4L0\>ð&26dt\{S\@a\\ \\0K\@QdN\Z49\rJ: \D t9\[鸔I&\Ѐ/<\Z6\qsX6!؛\osY #\\r CA\\n6I\sY\Q\0\6$/p\\ O\$>\'B6/.\\0\g1n\O\z\\\U\A5Pqv\\n7y\\w\x/@r\nQ\e%Ɍ)Y7@u &Nl U\rc/+\Z5IK\ӦM 3\0qUhqX|cvy {댪\w|tu1Mh3n\1`\9\ d\턒\R г\n\\\0s\'_\_nکB\Дb\L٠\&f\\Afsk=66\n\r \WM\\ G`\[r\\=f\7\\3m!\0q\Lq>[h^\nB\\\ WU\5r×\D8Dnv|\\\8_RC\\CϞ\ ,#6 !\5&0bv\Ue`\0: \\\/f&<\\[Aͤs,\\\wK\"x%t-N,k33\f`m8\;]^T\R\ 8(\#Y\\\o\Y!\6\,\vJ\"pB0<\\\\E*t\4ly\\\lg\r3\F\B\\\n%\n\\M1Wul\\rS\@knd\Ҫ\I\g)HV\\\"\nz\9\\rMsΙ7\\\4\r\\haڻ%j\\Zo\n\\rF x\"2RȺ\pUlk\0\\`ZΤճ棯6 \\+\fMtaMo\0~f-\ =pޢK 69γ\Z\\8\ \\EA@$#@+\?6<\jq;\\\UP\җ`ɂ\pd\N Am_3s\memC\v,N<6\N,֝ }\\0\Z9N\sJ¢FNj䊪\\\Ѽ* \&RibN A \v\\saz\B\k>̘{.̚5n\\7ζs\\\y\\\\J%\\G\2\XS\\Z\\d)#6r\rAD+\r\\ aJ\\8lޟE\Z=t>1<\ڜ},Q\05U\>\9Ttd(`\a\!OL\\+75lۺ币\F`\k\\+yr#\$^ E%QJq8s̗b\1>5sZ L\cDei{;\zE՘Y %\N1gNi\\\Q芏^H\\\_ŋ>,\i\3\xo\N\'\\\$\ bYcu;M\2,\ T\M\)\\+I\\0w\\^ve\P`\BU\"U\ǽ\\^\z\n^m\\\\\ֆ&2f\“R\ȑX\Կf\\'5-lgB\kI\v\祈[2\\^ԘR$\u\\UN\\qLY\\|\q~\\|\\\\\ϾSO&+QMݞ\\Z\\0i*G?o\_k׮=\~nږ!\\\B-\'W|\Chhn) Pc]5x\. N\\\\LCtx\oB$\\`׍Y\ zw\҂(f\rSe\qe\\\\\\ѥ\d4 tJ\\\8[kS-,\y컜6\ԩ\\\._}\\\΁^y2a:\\\\ς,\\t&.H}S3\\QW4\S\\|\\5Hk\IM\Kzs\נ\\U\\W7WV^\?S&\\\E&\5p\n a ww\\\LL\[^ћT4f)# \'F\'f99w\'Ke\\\8V\n\Š\!s\"㑁!ظc7~(\Z:eq\\Z\G@s3\\Bs3\\0\nF@m\%ten?% \+0(\?>*sk&K5\r2 \6\r4 LJ\ 8l\"1\\?\\\\p<\ʔZb\rqZ a`\\\\\Xn\\ߓJձ@CSUtL(m\|}=UsEJ@Aq@_N\4\n(\YA\c\'\,d@e\\\\235b\\ep&\00B\Y\r94T * (fqQ\G 2:LY]P(2p\BV-\\\Y\4}gbؤ#\8\0l<;\\ٱ\\\;w(nZC\d\\VB\H5;\'\ngi\Lhv*)\Y\Ie%GAYC\ ;\҂\~# EQ[UKW5uh/vcё\+\\i__\\2锖\nq<[\#h \\xަ\\l\n\bN(|*533rڊ\\"\\;\ȎHdtgggg\u}<K喆\(lXo{\\d\h\"\\_zsgl\\<]\0\Z\Z\u\9\f@ϡ\%ݼI\.\Q\\Y\\\n\]w\t\M\\?{\\\\n\C/s`W\\\$\\\\x\\8펻xn۹n\\\^h\3X{\\G=\\6%ipnߣf\\o\8\'\\/\\\/GX\=\i\\25\\\b\b 4~?rVedy\4~\\QU].AE\\\ڦ\04\ ,\\\u}n%\;##`r_VV&Qq}\\5.܋\oG\r[ꚇ\\\8:\Ѻe\\\\r\7@ǂ\RȲx\\|>\\\\\\\\>\<}\\\\#\8M\\WI.\9]\jC>\\P\n\\#G\6OAM(\\\r&b\\X\2x|\\5\Fc\9w_v\eN\1SF\6\TMxe\\r61\rW\vK\\52\\\݇Q j\\\ȴ\\r?aM\>\~#\T\nRX@\{\<Pƪ\0A+*js8#k\\K.s78\^0\k$Cp,\\K&\۸\\EVӍ\\缋\rp\@\/\\ZQ\\\\y\Ch($PezZY=\\ /8=~\5@\R\3ӏR1\"qP躜\%\l`Qc\f\\d*=lz?䈪+r\\p\>|n\Tf;ShLY\4\mS9M$\\P(D\Ȝ*L2]MA7o\\Рd \̚\\eD\\\tOF\\sU\r!@\\=\\G\\ ɏ\\Kו\\pIl[;\\\\S\ZWo\<5I#\KIըC\|i\"puv\ܶY\\(x\\8,/!^Cm\Ɓ)J\F\W\`\'\\\/\ /\\dMr>&\91%\]\lyǠ \7;g\\\q\\\YG\\h\_߾}\\'ׁڙAl\\Sj\y.]\Z\oR\\'Gm\%,M\7\\@\Hۂ] |Ӧ\Ѷ0?)cWI\466\'\İZ%\kEEE\S|\^ES栭ls\aw|\\_\\I\.xѾp$\\.`X\\\\_ UW]u\\\7\\+?1\\ʕW\j\ZHRl{~o \"aV\S>\?\w/[U\[\3m\0}\\K8\'M$\9\\<ȍ7\\u|\"\`(4؀\\|#ºW;:}ɒEiӖ{,\ )D\/2\W\\q\\0\\z\\8Tj\m\\\޻ё\!N3Ma/lrT# :0#,`\{}6>bŊ\Z\x=/\".\5Ųc2\\\6Ԟqऺ8g֯_{\\&r͞\\q饗\\x\\ɩ\_)C (8ET \\l\|&ډ 1l\Z%aȊ-dRLϣd<%\_\\\\3\W\\0\I\\`\K\\vנ\\&~YUU\2^tC\Z\(\\\l\\PY!n\2B\\\\\lF)m\[\])gH\'Ә\PHCtO[\ۛI\\8pT\\\?SJ\Yh\<̠.\yo],¶m\(\t\,_|\놮\\\+0\O\\h!\\X̀BT\ `tw\ُFcH(\\'b \fWW\S\\\\y;NY\F\A[mC\\\Ql ȵ\\\ҥ\\\iM\ä\Z\\\\hnUU(\\1!\FwEю\皙m>r!\#\?!\\=5\\K/\\f\\p9\\#\#\"+KmQ9m\r\ٍ7n>\\6اxV0\\˖-]W,\\5\gTMM\\k\f\G\gc^gd \(\T\h\0\0\0\0IENDB`'),(176,1,'Video_terminal_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\\\0\0\0`\0\0\0W\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0)IDATx\\} Tՙ\wuuU\{\4\&\n&EP 0&ą\$F\'y\\2\L\\\I\d1.\5`T\\\"\";M7\W\z\:\w\U`7\xn\\\w\zNqi\xo?:XX]\\iٓ\fTI\\0.\wכqS\q\lW\\qEn\\\'5\f2L&!J\>$.\\\~\\\w^0Ώׅ\\Hi\\'\\n9\AQeپ^y\\3\-x~\\>/\\n\&<\\T|$I@-*\\\nP}v\'x#\ܹr\\\\۫?\\\=P$\n\Yp/\\\]B\\BYYyݜs}\#OE\U7JW\"\\\up\\k\\w\@-a\3\E!SZ^#\m\x\\\+yϷl\{X\x,zD\"p^ع\MسkT\Nڳoڭs\oؖ-[V L\A\ ^e l{}3Lh<`q6߭,\\ݏ` v]{`\\\\PXw+\߀PdA\\hlV1>}n\\x\Ƴ&<\4 x\\\W<4MM͚\h\#\\\\\\KOb:g\\H3tj<\{\> ~\!S5=\\ӏD?}n?r\xl\1\\7\0^/J\;\\|q:\\=Yx\nJ1\\\,w2)e{\\\\\\Y\ \_\%\\]w]pɒ%\\\}wo;rh\5\D\0vZye5WOL&\\\*\c\jۑ\(a\iȬ\Zrk\H\Op&М2LmHͪ}avnl\\\Pwkkk\\\\\n\4\u_\'kDA\o{w\\}\\w\0ҍ\Wo\{<\r\\V3A\_g\\ǒx,\\rmP\\^E\zҩԁ\ft\\\i\5\ބ\!\u\{|\\\Cq\\t\\\\#E\8\s\\'\qOKL;;\s \o|WY @\0\\Y)\z;;\4vH:-=]3d\"+=q9q86ۯirwOO\އ\\ofLʳ\Az6p\!`\\\^C\OE&ѳ\ :\ø\\x\#Gr$K\s r \r\~\, \\Ħ\{\8ԨFHa\Ǒ\nx\A]QҙdO*\P\LK:>N\޵\!K`]E\աH ~\q̡c\8\&\rx\SDQ\"\\Ex\ZdjcL]\X\e-m\\\N\\Ct\sČHqx$ Ҳ\F3\h\\¾6D\G;I\\[E7AJ NC\8:\g42sM\\\\dP\4d30 OM&\ЦFf\P\\\K\g>\\RH\\"a #JtSl\u)\xƄXFCQ\\8\ =`!G<\\WA|\\\\Z\_\C\P\\AEy\N@8\k\V^q=8\>NԠ!5 ,\\Z!WS\9\nB\*ц^d\fS\HzS}]P\U5T|O{\U\ DeR\0 .zq\Q\h\i\'\ٞJGnGq|L\^?Ned/%]kU3i\@Hу\zMݤ\i\j?\\1T\fͅY\\aV\HyWG\Y̥g`\' u`\\3M 4:F.?Z,\Om8Z4)T\Zv\OA/P\9r\n`g\Z~uѶ\\\y\\Qʒ>EC\dz\@q\0F\\\1]W`\\\p߃İ\\(\\'ዷ-h\4Fԋ\\N;7\\1/YO#Nj\ela`8\\Ǐ\\耻ֿ\\6 pf9\\\Q!4 fo\` \z4\\S\9AXT9%0v\~\\9A\m\g\,\8ݴ\G\\<)\샜\8n\\=\K\PH\\61.\R8\8i;2\Z\8%M\)\\)\"9Z2\>\_u\nfAH(--*b\\奒w %\L ZײFig~\\^7-\i\s(\[Sz&p4\H#\\\{*j}r#\QA^\h\(\PF%G\R>\\)f\\0\i7gsm\Tg\\\c\І\\\\\\ \\\\}\j(\\0svx¹U }9T\u\Ή+eA\80\\ZsM\0\\C-oz\\":0\) Bj2\|2\8M\\\yu\M9\\f:\9\uÝkB\0[\o}/<\n{\S\f\\\`wpI9gB\0\'aK\1\\r36\$\\\p\G/\\ &^\\\*Zd\\0No\r\q\ }9ug{9]!0.\\{_ J\\"\\\\\\\waQ3.G\\( <\+(\4I\{\:\\l\mV p3\ֽd?{\q) c\9\0\Y\n^#KNP\\Lj\sN\\~O\TS^˯ \70sy\EE\\\t\\2BtO#\ɥ\CEyS\\\f\r,, 8p:?\0g\aT2-8r\ԼDc\X:Q?\2\V<\gͅ†\P`\ .{\R\\\,w?\\=\Є\0\np\\S){!EF\\\It:z;\Ainяޢ \Ev2#]m̒ 2\\\y\r\\\(\\\\r鳠nBvfJ\\\\\\Hsqt/\A:X`G\p7S\Znr\)dA\L:#мk3Q\K\[\nZdP\k\7V\Qؽ\r(N\4b\tӶ\\NarmcHerE3/Z\\\3\\kcΜ=˹vu\2U\\Ց\\"ȹ\n\WS\r&@$tB f~viMM0\ph~X|\PUU\r\r084n{\Z\)\ 礰An>Xa!@f\nzRL3g+ ]}o3<\}p\\: oC\B<Pa\ry].Kt\yOs<\L L\!\8Ѝd(-i0F>6Ο?瘓͝;\\0\\Ja\\e\!؆VD])[ζ\8\)\\Q\0 \LGQ\W^O; {\}-9g\\'\) \0:`\v\\5\\E\G\4\<\\\Z\<l;\\\Nx洩,NMQCí(]\\NYJ.A]\\o]eؽkUA\~~/Y}9:p\\\\p\\c\~\ E\k^t`&\&*\\材\y^u2*r\l_ye\FV,dYfJ=k7\n!%D\\YrxMV:?*:n߸\\\_rf\\WXH\J\dP#qm\b\Hu\\\AI{2D\\mn\Z[[\\\6\+P@\C=SL9d\Ft^M\q\\\V\:MDKH\x57\HL\ <\\\&\\}\o\\l\\Zը\y\\ݯO*k׮] O=\\\\\Aځ6\n\)%dL@\G{&\\@|x|\0?\PP[3<\\GZ\r\\Ӈs\??PGJs>ڛ9\'\\aǎ\ا7\æ\\\?+V8S\\b\ p\\\΃Fcq\\*dFS\n7\nqnٖQ9yYI%4H\"\\\\%\\'={Foj\O߄\\\\\~\\>oܦ91\bʑ.%[`QSkl7\-dwsO3;8oV#\on\^˛%\\l\D\lG\ D\)\~\4eʤ\Zx\\\ ZJ\\4\\L\\ʐGK\qx\VP^] e\P[e\\\r\\,r\\\\a7\\\1 \\;oz\\8 b\ڷxZ;\ZOC)~ λ\\AV̄1A\"W}Ct8Ŗ/!\/=\rm\\\+]\/7\":ym߾}l\\'߁\ϙ;>\>qA A0zp$%8\\:\hI\U@\i\Zp>\O\8t\X1ӧ3{x$\\\\\|oI,X\0*Z#\T\52th\K\\\\'W/R :c\\^o0NeÊ-\TV Ƿm\ZxC\?$T\A 96\\\Ȗ\ g\\Z&pc\|OJ)\\\\{\1xb\6SSR)zmCF3\\\\lm2\r|\/#J555\\\\x>\\QY\Z\a5\~L\;6Naܡhm>THPW\a?Q\\C\eˡGA&\0\$\Bgh<}\\\@il\rd #_7w.9mBEE=p\0g3 x<A(D;gxgY\N%a!ݔF\A\\\\WYv\'`\\֠3\ \۰퇍\\\.+Y \r\\ϙ)\Μlx7\\H+o\ix+[]E\\ fWDkk?G1{wS\ PG\,C]\+\& +EC<\ґ\]\m\x\_0g\َ9\Q\GoϛhC\u\?j\&\5\\\!w/,=\, fѢQB\\zv֬\\$O)^C\4V\CËv\ӆWpSlZ>\J/\XL\)\1KUꔛ\FV%jI8f\o,)X9F\9\y\ozv,\I8xu<|M`V \'D\E!49&\np\B6]\-TK5FvI\3S\\#e\5 \Q\\\tӞ\\\\3]Ja`#k˙M_1\\rh(,+\a\J> *l@\eS)\\ȓ HN\,UK6;Z\s\ \e\d\\\w\\-\ \~5+\tEV\{ȟT0U(Y9DJ\i\nxtZS`Ҋ :ռ\)\2)H.\\O \\iS`8nTք.QQ]|1S\\#z\JS\0e\\\?=[կ\VM7ީ\qTG&C\8@ <\ A\\VA \tD{\rQk<\ < p<[\Y\ٖ^z)\\=?c;\%eh6A2>cx8\\vo=\Gt]ٲ{\n H\"hz<#2.N\+Ol\a\\`[,@EY\3p#aXm#=)<8zc\Xm\}\<\\Ҳ\LY{͊\ يϮ@58Qm\\f\u\QXx\"+\!%LA*\J$\P\TBA9FK)ZMtQ8\Et\n27*\"k\\p2<\\\\#\>\\\9\0g\欮\}ev\,93Ɩ\`\J@q$\\@fM[eg4VWL]gJ$Z5ۑJ&˩\[j6;\;/\\\G\\ʑ\#?H\!r\=$k%\{[\rM3h\\'XR8\E\nֲ\^4$yh\ż\\`\\^&\\"\\s\fRu\\5ιh\\][\\\\E\"\\ف\*u6YuA\Y\nVV\#x44\ZLiI{\;\yGlh&jY k7\\|\1,-kO\áLӺ)((QЛ\i\\\]\\i\Y\b\_~,%ڭh\XR\ڍ\I͛_Y`K7#\\\LG\\0y\\U7>\\DM3mE[.9g\u\\\\P E*/+\"* \f3IyJ\rL\\\)D\nRî[N`k\ C\mD%4\'@\|NuelJ\\'\u\j[(Q|\._\\\㱁\ m\\.p\\}g2^}\.V\N\r9oUVgW\M4!t]fΜ\g\!`\h,j\\׉oG\\>,?gl\W1y\\h$5UY6)\ Z#x7N\\nzʶ\\\\\]\c^ό\\$\F\CCC,\z?u\T\ uK֭[\/Rl\7I\r\\f\\\Gviߌ\>v\!v\Y\my\A#\ Y<\$\8 \\"멨(\\Աεl\\-\\L -M|\g\]|\-|M!aj;\յ\\g\Z\\\\\<\4]Ϸr\e[48l\\\OJ\*ۦ7N0\+\;[\/de[=H\4{\\\\'H>t\\汛ag;M\\u5\#TITUW\on\3lyr*\ȑ#{q#\!B>\QnmiL\).c¨\y\Օв\\PTZ\\0$i ;\\BA^\$}\\\$!@@b\(\\\#N\"0\\HyF\d>虽l[۟\\',_\Xl\\b\v҂\ܑ\"\1k!53\c8gşCCQM\\Z\>+χ}\0ӂ_V LAdžg+i$\ZJE\~7\=y\Z=\o&\\nX\.~w\7\0\^q޼y\uUU<\}(YEVqhZfX\nBAL%>H\i\\\\"\* \gQTD½\ieO\U\A4)ĢVB\Ш\2R\0E\\{\MR,g\VZ\\\-[\m٠\6֒\`3fT\\\}\\qn\\()\n *** \Zb& K30\)Je\4e\\Jt\"$T\dJ \\VK&c){e\bE2N&\\ .*@aa)K4%o\7\b\\\H Դ+R(\6.F\ŋo! >\ztdVm߾m\Yzս\p\RZ\)\t:ɖ`RU2YrTE4\\Q\\\:\$\\J\ZM\\$p{z\\ḍT)\l߱\\\\\\3\J!\E ?\\ںj\\\vl\t»hO\\z+\\W\r|\{\\y\\GHO-Z袪ʲ`u4i\ZV|ܰ\'\̼UM\8V\|\ TPȨ@\\\'+DS\>\pD\\t\\l\\\\u\ΝQ_|\ťP{\\\\\y\2\˱Qش\d2\͛3\'\J/]v\\!\\ B\䡮`J8 \\bV(-\@sJcx_] Z\d0~\ Jp Jb4Wl\+{F~饗 \'\\ҽ)\\^`Mw\qq2Ŧ%\K.x\.SZZ\h~5˚\#\0Y{\셪\j\\\{\&Pc$\nH\H)\\{\"$\\kH!O<䓃zN\'Ct\ҵhO{{\\UUl\ZaUe\\iTtL\)%>\\\EZnݱ\08\\|:h܇\\'+C3+.=:8wCbFN3^ōBB,\9iR\w\\СCӕ$(\\Ŧ\ȯ\0SoBa#H\G7cs\i\\\'\u:h\D\*\\NBl\0\0\0\0IENDB`'),(177,1,'Workstation_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0u\0\0\0a\a\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0NLIDATx\\]\u&x\ޗ_\Fw0 &P Hm\ڱ>w=;{fv=I\{\Gy\\\m\\<$R\"EQ$EQ\#2s|9\{k\9Uuo\&\Z\\/\{\\W\\'TR\\w{\g:b\\ Ľxb8\\\\\\uJPR*-\\\(\\?\\B\I\{|)F\'ɝtf{ހb{v\z^m\\\\\\F\\Zȗ\?\\\n\Kt{\gRJ#\\HGtt\8z\\\\ \0J\c\߿\q\\S8\B~ r\G\' \\_\\}\g<\\\_?\\8\ۃ>\[;o W X\9HR\\\?Ɵ\@\d*\r>4\5\\YT+%hm뀶.ȴzz^k\\yR\0׉m\o}~\\\X\J^D\"\\\T*)\r ]FJ<\pEw\z\x\\\\\+n2\JW\\W\ƙ)\o~\\\\W*\>$,U\\\nf#\'\{<8\8Ѩ\?y| }X\\\\.c\ ŽN nD+um \\/Q}}\\\Wa\\= p\\ 8qܷ\AX\"\\]\\n!m8*J[GwRP\\›>^\|b=Ͻ!\K\FpD\4}H\yrr\n\\l\1Զ\\>\~͇HנT*X)? \\'}T\0TX h\\vFNJ19qy\a\W|V\+rY \q\\l#!Q \\^\E\H4 O!J\\d2̶U\\G|:B2\DA\\k\6\\#B~1\yTs6\~\\"\\e\.\{~\\ !\f +^|OJ --p \\{\'\q\<^K HX1\8f.\\Ǝ\\<\;yG\'Sp\\\E?M(\S׏\\$R\\$t\'|-pR\[\O/碂x\e5eKB{W/t9}J\ߌJ\n\\P_P\H\h4f\)\\\QD\\h\gm85\ar{\\\d\i$N?{RK4him\\"%2-hխ %?&\VJ\Rwv iu:*\a\4\Zȣr; Lf\'\N|Р;B\\\Fh\\nU\n\~\\{ǫ\s<\Z\r\\`)_6\N\0?\\6F@FNxt) )MI\p\\8^_#q\֑yID\\x܍\\\q\ZK\\щGd[ƸY\\\!\CCC\\\j\r`b|P^\\\@Q4.\xaW+*\)O\{2Ё\\\\yR\\\\\\0F~\0ŢC\b\'c}Páw\-8\\\c\\>\@&ЅB]\'r2d\r(\\nAƋ?\oT\\<عXZZ\n] mRIA.G寇Ȥ^O8N\\y ~W,ƌڍc\\0\D>I\H8\\4\\]\m\҂\ \w-h@T\\\\\\\R Z\r\\\a~v8dh\rcG\ \wPnvH[`vf2\H.5Q@a\ 5\p\]F\ZX1( :TRR/,\\\\n\M=_\$$a!j?Q\\\xU:\\a\@^y<Pyh\"MaH=\\-\Q(L\d\梢d\i\q\\\\g\\"\J%(JhRl\\\0 t_\q\\ s\0\\rT\r\b\EiB-(Uj(|e$tslg|\ڈEl\t4\@\\/\\o\\Z *V<0l؅\\\c\'PoxxJ\\󁯣5|\\+_5\\8\\\\n!m˄k+ Am\~MzC>\+ϊ\o!\\\P.twB\\0tu\@K[R+\\\\\)(PVT(B\\'`-\\0W\\CYF\"-|ɂF\Wυ$\P܋j—ZILi4\\r9(Et\'\r tVx 5\\0\x\)}{B\.KOJhSQ.@\\Z)b&a\ZC\\TNoa\D \)ϊR1\\:ʅ\n9سo_\%\3@D\?BCbF1\a\LOEl\05%Bf\ZK&b\0,xBz/ \\r >K\\!+/)D\{]Bq~(}zG)? \\HF \u\B9x\ZPJV\\<pJ**A ,[\>\K؄\R\\y\h *\_URE\2\\\|?DX()\Ht_.\Z*a\Z\@ VJљ\,N,fvIN%G\'L\d%\H -|P\o\x\"K\\=I#\0}\0\e\10+Y\)R_JL\#Vg \D1G\>V`m+pP6\x\\Z=軤\a \pKX$\\\'\\6\6ut;䟉8SH!#kBd:\\CF\rG.\\\\\\yXceaRn8I\A:]AWB\ \F ~!t K\d\\\\\~]s\.|%Qh_ȐlF\r@XX\'xl\U\s\\\P\u\r=JBEW]G TOHeM\kt^(\"\nҕ\\Ŏ\6\({׆ty\/4H\?,A_0\A\J0\\֣)\0\nR\\.r\Bnm\?}\\}\cu \f\h\\~-\$\\L\n\PI%I!\J BetHHB\%\\\1\ /g`GFG\#\\=RL0n\*\P\XVwD\Q|W2\"\a!\(+\\\\r\'ƎC\yi\ #K\{Zт>g9C\\?{pXh94ьR\\\n2\n\|d\R>y/0\\<^\\\\cA\0\#]Z%)\&\r(_!\0\h\EO28\nO)T%sT>1\\Z߫\|\^\_?ĖH1\\@ZG(9R7D\\K}0|&\0#\`\ZD`K \r\\-/\{ <iBb箲`\\k\sϓ\݀(J\s%Ԙpȣz\=\nΥ!1#WЯJ)\"h\W\p:\KB\\\ҢrUKE\$\}\\\s6:0k \Y!%h+hFș@&[t/\77^\4\N\Yx|!W`ᳯW~\i5b&\nQ\\A\r&MFkV.\:#\%Z\\P(`05J\hW \\\>])1\ V\Fd[\-c\\nuj!a\a^\؅\n j\}\#jHN}L78\lB\ \9=\"qJ1\rZ8\ytr(о^xpz<&\ūx0I9<_?-t\ BA43@PP.@*D\av\aCW\1R\\\좣\\\0 A!K\($*rs(h\l\6\ #R\c.+X,@>E \\b&\'f8\/:˅HgB\c\/LrP\xMy\0E\0\\.\"aC0N\.@s5d G\|\d9YDCF\\ \<\hHj ;UVU ,K&DȜN4 \\,FD潠B@1xQ\^Yƕ\(\ c\Z+\"\\z\eӸx\rDT&\|B\\,di>\rΎRiݹ\0\X˚IAF⿊\n,b? jRެ\b\\좴rR\ѕA\JiqY.d\\nlbe0t \j7\$zR׉\'\\܄V\0JJhPh]KktvvsOJDmb\:\W9\6\Z\>ޝ8[!\\rX\#Y^c\.\\*!\\B)!\"(_C?!\\`_p\\'y4#/ZThGڎ!4k\ck\\P@\\:AΤi#M4!^?\&T H\Od\\nk\\\\E {<(H:\'U\\rc~rh2CE2R\`Ir\\n@cS$\g\\10d3N\4V$,PP\o:m\H]+Й[\1\$B~\!2HJ\\$A\\\:G -\\\\;g 5yT\a\ר\: \0\YaԱ}ܟ\\}:D)re\:o\r;[\T\e`Pa-.u\`\s\.P*\;Rφ\y\\/M\n\IE\VJ$\wһ1\ с\@\r4AC\\\\\\uTd\\NBH_n\\"b\y&\nR#8\0!\\{F4\\:\M\EYxN+\-\\4 \nH|(c >\^3 \\\ZtnO`ţd\naN\\\LPT%4_9##K\}tz\A\SQ\.4[=\nu2~:\\'b \\\8\!΂FAE,\@#G\Z\",@\M2\nYhL\?\\c\K\3)^?L\y>73 \\šʎtR\8\H \0&\S=!42r\"Ԑf 4G\Cs\B=\,\ \Z8ĜS\)DM8):\{4tB\a\L\'BÔ\\thJNv\r,|7J7\rM4\Z++\\0te3\\\r ZY 94Lm\\yd`\(L+\0 зJ>ay\\"~\Zld\0K\%\0l\CN>e0)Z 4\WN\\@M@g,C\U!L:\$Ld\",;\mp\\0\.aUt\\PeM(`\\\@c \ :HxBXF\F\\\"R,\!v\5(@%NK\5a\Tai \.ƚ~LkjU9f Ҋ\\Pk87|Sݫԯ\\0a\F\\I\n\=\H\\\bH!\\\PG2Tj\Av\nɷ9V0ɤj\y2\jo+~3hM\[!_[$\^Jj/\n\A\Cks p\\>\\\ \\\~\\¿AW!!Dtg\\u\wQ\-(tn \\\7E!FQ\\;Q2\w(de\&\\lVW80V\\\իQ*8ݒ\8\0ł\"v,<\jʂB\]l\\צ\$\Z\0S\\n^az\\\\ \g\Z8t )z\q\\ ~;nڀ02\\\<\\sHd*\>Ӕ[ʔVC*-$A7\\t8\nu~\':\!B  \ \\Jamj\1\l)!\Iύ _\$Vx\"QpT;M\4#HZB@(te\\@o~-`\,R\\'K\r_E\p\\d\Ѓ\\TAE \;-@Kv Zn(\ .\\N jLA\>5JSJ\\\\\\B4\0KP\k+!E#_omFa\PC\\Au b9\+ý;n>\{\\蹝Ѽ\YvM\"Yt\ i!Ф\@+\{\\@6]rd\\\`\(\<ND 0\e|\u\\ASQ)rꁪG\9]\nWqj ut^ \\\@5y|Iу](F+?\ jX.\\"3\\\?\.u\n@BT \Eb) \ fa\A\\^(\UC\X-\{\ (˿չm\x\g1/0T\0\ӭ\n\8\lɰW\\̬\rJ\\`QG\$8DZ\\-RSM@D\e\f!\"\C+-0\k@\ \d010&+\`*M=4L\;V\rLS\·\;a~\zo\B\E#@O`\'2]|\enh\\\!hA\|`Y\\B5\\nJ\\M\.\n^t%\06\[sUۋ,?\U\Mʞ9PuO\\\b\r\ߤ\X \\\\A_+\y6F\㾎\\\\ը\\\\Z\+\\R\\\\s-{\Gȍ2\m\& !Tb\\8\iLT#tn&\4\\'#\#p\u;`\Ƴ\n\t-\@\$VL\n\? MG-IBg\\˰J\b bCu t8D\`Z\LJ9\m\\RDͨ{h\UװV\"ЖB9W+S7M\\\\n\s+\3\rB\ \pe\\z[m\^z)i\"(z\<)\~\_kx/-+CV\}\"|։!t++\ v^\\y)\\0H\\gJ\ljE 8\Q!Z8Pc M\Ln\}3!ED\4\|-xYzDr8Rٻ#b8\Zu/\n\\QǤ\\!t*z4ل+e+\\\\x7|a~n术b!k\0\iORX\f \$|k) Cz\OF\ջ\\\ZIM\\Td`T/ \p\ё\[`$̽A\ngIJiЂ\^FyyM! E!4\(Tٿ\\"b+\b=.l\\\\rt:;;`zf\<*5Z\0\ZřQt`\1n:\x8u6-xP\5\#z\'Jk-~\\TF\\H@/\\1j=kA(e!R(B&H\ DEI\"GrG\\I*B\0W\\y6\&$#\0M8^\\|(@[&7hZ&C::\D!\\"lŌjWʒ\Z\.+G\0D\\L`WD\W~\O\8\pjY\:N$|\\9z\nV\nT50\L$iB]x2, 3S7ֺj\5\hq6T\0\j\<h%`54klOiu@s\ed\ri**kƥmx\ZEdTs0h\Q3Py}GM\rBې\\\%:T]NdB507\:i7s\Zz<\4p\"4XKV\y\qs\(^\ tF\ˉ_\5-y\Zh87\\r\OrsG>atX=\\\)_pjT\nc+&7U8\\YiY\o\R8n\Ӽy8-S\}\N\\4\\\2l_\ZBsKp\4$pɥ7eΥ. \\y\id\ͯ[\XVHZ4[M \r\tX(\\ò33\Ξh\\F\ TJ\M\\ \~,d\'h\6k\sc1NRkv7,\ȵq\y8>9 \+ \\\\B(\\<$r\0:]\\\BI[՗\\\n\f\ښ\pβl\"uj\r`Y{`{jX3\Kˢ5\hyu\ 97\\B\\i97ju\\rNa\r\Ep\\m\s800x]Uaa2nM&\\z=T\_รמ(z\Lfθ Mzz\<|lnr\2r\n!U\:\/\\4\\F\Vun;Y\4#*\Dy|F+!JAOW @\\\\\N\H\\0G\3i1{ [\5;_2\\Esl*3\!eg?\0\C\\0Q :||KyL0\b\kJ\fzz(|>~# >h\\\\\\BNMNÁ\c<3hiaDeU>%.r\\P:8\|\\".t\&)O\0\\ {\n\& \BV1cgȠ\@\\\\DnZ.\! \JxS̮43dg.T\\\Tttpd9\nb9\gX#\8: o\9\擢\\\L:?a`\\6@\0oA5ݭBP_\h^XO\z1\" H\",Ҙp\^΍\\#$L\1<\"\"t#i3\OĐWA L1X|\\02\ZH5ua:\˵k\\\Z\v\f^\hh:\Ѡ΋t.\^QQ\ʟV\G\Z~\'E\ \y\ׂ4JcE \"Z$6qaϻ5y]>:XVo\"\\B5\r+.8\'|^&r\\ZmL^!|\XUa+\\ĥL(\@J\"\k\f3)<2?3Y\\ L\:/l\XeeV,ib͗M\Q)t!Bꡝ54\xbk$I)\Eئ.\%m\U\\s\2*V\t\q\\#\\I0\ۃ\0\ZE!maHl%x\Bpn\aH`%\Ha@w [\~+\ \Qh\n}M.#D\BZɤhf\oN;\\B+f\ZV\$XњF\tSM\"P/$B|B?: \\ZE\}\"\\ Aywװ)\0\\rH&RU4X)\Ň\&~\G27\\4 Ѕ\D[\X\\"XK\r*\)Zƒ\r\P\V\p%an\M\\A0\\Y?(\#\(zOgyjn\㋺z/Ti\W7\ςƪa_\m\"\\\H$j^3Se3\?ix\ZYD6\\Ʀ\7ϰ e}\4|\2VG(40hAM!\r7}͓6tz*\\Z\oXϬ1\r\n]Pͩ\\Q]ZȨ\XX  0\n\nZZ\\@6e\ZDv\\.!zn\fg\Kuzw\\i Q\\\8/\X\K$\\\\\a#4h~~\\I6b\'\n+5FZ\\]J%pj\r\u^Mb\\5Y\p\b\P\\|@Bn\Ns]_\l\\|\\^_\~ɓX̘5\\W\E1]\ ֶV\\\\&\X[oD>#\԰,;\\Ҟb|`\n 9\\r\0cHe\yKNB\\\Z9Bg]~n\\\NUH\\"\\\\\C=?\\\T\\\0\a}\r\Z\0s\\\jӅ}ˣ\0{*4Xe){\|*\"0\\e\"aN\LO**\gAe#}x><\\j\\\{2G\nJ\j9T\(--\\\\\\A.׋H\a`\ZЂT4]&\\\y(\P)W8\\\֠T\CZ\\\\\~\M͝\ \0;\;\\bxvX\D\Es\\nj0 _h@7לBkjo\0*s\jzS*h1DP(\0 \\\:\\p\ y=\\'\J2%_vEz#x\\\"NOhѹ%_XB\"\nXdę\"\n>\p\\ib;qL* )zT54\=|\0 k\-\4\u=7/\V~3\^xr@YـvY6m@ \Rs\n.mZը0+ h{d\DA\prj\n\sڕCO\6\\R\\v\\/K\\w\1\?\'y_J]j^ԑVrtQr/\\/\?N\9\\径ވe\U]\4)}\{\\ZJ4}\\"]k>+\X\Y\r\rZ\\\"|h(D_\\AB$@BY\u$\nS0E\,\\\w\"zwV?\'v\\ \#$;Me\\\'d\Z!\x\\\Z\\L_\]$ zN5uC006\\\ʋ|b\\p\\a\5cab|\n!Nn,+Zul6\8\\!lq\V+h\\'HmG ! ~E\= ^\{Y-B|\\4\ϫ͝\\Me\\\ZP\E$xR)V\\PvϤo\\]\=\\ce\UnzxWW\\n\喔f7`V#\\\n@O\p\"+]_L+3};-\\\Rf`R\sбdzx+\\03X3\~Cp|ה\\\\n\rnj^Z\r\\"\\\ )jF h\;:^|wwo\\[h\ߛa\7P \\]ULH .\T2\ \\+\r\}\}v\o܂!\c\D83\FeWuc<\Z/I\7\\\d\W(-\"|\\E\h.sЂI;|\fL(\\ڻ:p\i, \98\{\~}\=x\ϖV\\\\\ZQP+\l \\\\\n\m\m,t&\A\\'\\jU5U̞\ZFyj*Z(!\\0Vhp yZ\\\oŃ\\\\;w\\vzҙth\6\7[\ZB.\{\\Ԭ9\\4ol\\\N\\\kW މ\\"\T4\nN%\\P­\W\\re{\\{b {r9\N\b\=TS\ByJ\Jn+B|ҙ܏1\2\\}BoJB֛mi64 X\䙍\2h-ڄ\*a[\\Ņ\\ G}\"Z:\ɺ H\T+OE\?%\\\U6\[\eDib$i\\E2M \}rE(\[\:76\$>\'x4Ӹ%\\0\\\ZfUA.Wf\AU$\0\\;rA\\u\\BI\~\oĨ\X\}g@\1%\\\ޤުU\\D~\1nSǮv1\kj]/\.i?wK\.\\n\sߑL;ͱ#Rg0\sD\\84\x\\neFҼ\\\\8opI\\\\CE\\\stwvA\'\"YR\ %\6Pᯒ%|\V\4)B`+\0EJlgx\\(\eX\\$d\\[\Y&cg[(\e\\nL\\nJ2TJ:\\\z-Wk^QcRE K%5\&3\(\&4*4+k<\\Z\|\oZnV\\\qF4\e\"P_D\|u u[Z\K\glZ\圐\)\A\$\\\\Z/\\g\J\<\X\,<\\0[ lxn\\k\N\P-Iy\$x!^4ʾ\\9zR4\n\\ZF2\o|\[\\{w\\\r2ªRBi&r騀Ʊ\ɽ̣\\!\\`5\\\\\\\\\J\w~\\\\Q\{v\\J&\6tu\ohi\؄ÞY3\Z\ h\Z}U\\&-<V\Skjs\*\#\N\9R0^A4\v9\]\*.xP̒A\\ij\\.\\\U\bT\B%\3\ҨAX\-K\\4%P9P7S\S,\{d\\\"9\[.-\\7TB,\jS\\>G\\\C#\]H\n\ ܣ\Z+\\88#\Z6;l}|:Z3\C\'b \\\R\%X\R˅\\\yׁ};X߷:\\\0\"\n\\\֋\x\*7ލŮEۀ?\\+\\\ZBD\Z%\H\\OݸQmRw\R8xx\ K$RJ&e,X\\\V\nsOת\1YHB\\\\\\\\~\֎u\C\s Ǥًi̶hZi54Xtc{\\5(\\e\=0\/ܽw\\o-,\\k\W\\e써ov% <\Ю-`9\\\q\B\l\TOaJ\\D\\M\NM\vOD$+\\q̲\QD@g&\\\BVZΟ\S\gOy^ ?zK\\\>Jnz/\\\\\\fO\8ߟ\\Y\\׿~}wP6MSB\\\3\\Tzݎ,e\&n⽎m^+\\\8?\\0W\vEe\\j\v\\9W\0-xvro{\ɍ\\r\K\\-0=\ZMJIgZ!\\\I\n;\o<\'O B#ZR,9bs8G= h9\\qs\Lj`V!\rB\\,\)\F}\ȥq\ԩ\cG8:>~|Bݢze\Q\X\.pz Z:z?J|5\e\"ZYON2+\\?|.ڼ֭[\\!\)#\c[\.\ѬVd\'N\ΘJ\pC\\$\$h=P\T\n#6ho\0\n[;9mGk\*\\'wvsa(WY\]`7]{-?^\\\ij\m\\p\\\\\{\vs\|;Z\O\3\S3Ǐ8z\\\]\8\vI \2Ko[j~\\2\}\ ơn<\\uda\TB\\ru\\h]2BtBb,9U-%OЖjl\G&\s\\@lʊ\u{&e\- \# \n\\1؁M\\ȴ\(ؗ^}\r*ib\\\\\\\'\\\cp\U\axh=m\\=|D\M\\|Z\\B\#\ukVcǎL:p`bϞ\oƩ\Z\&h } L\+\\j\L\Z)\\\0\\k,ý{\\n0u\\'&&\\\8%{\駇\#_\\\\[6k\?2\\\I\12z1\\I\f\\DK>\$ \x\֖,d)k\o97_w-*B w\P\\O=T۔\в^uЊ\nCp\\Q\\\\8Y\n{\>\Cײ+\"\\"*H~\\/gy\ͷn\J\"NMN\\'}\ɣZ\|\\\7|(g\\\\_}ub\\7 0m|uIC|y\_\\\XF\IZuggL&X\\,DM\\ZBfVE\b-\\\\\\+R^j)\\\vtu@G;\[W\Z\r:\\}\n}9-@V\\gQ\\K/fM\<\\ಋ/bX7|T̢i\dT<\"\=yFн\k\v\\I\\m\\8\܎C\\gatxqJ*#\@?t;\"\񚫣v\%x\\\\o\\}j\\a\nqGQ }5^yk\\\\Z\9\ ؎\X1ߚj5V\;`|F\F؎l\\\\\׏\חL1\?\\02\lK&\\:\HV\'$SP,Y\d}D\FIX\ry\\p\\\1\\RF.qrrʩ--Б#\{\2a(\>0|SlJ5S\\+PD wjb}\%\\\j斖`\"B:h%pTȓ~f~\\kÆ!\ZTy+r/\ r\\\n7Qar\\\\\\=\>?7=5٨Ֆ7FEY\Un\l\^ލ\O\0d\\wCCk6\r_s\\/ \\ZB@c\Cc\F!vcxց^مp?<8Kp\\tv@\\\zU\\Et z\G=\\DO\\\\n\ӇڑQ\n>\^\ogrg\\8\0\'O\h\Z!\7/\k\|zM\\*+bP\\8\\]\ˆB\W_\sUT\_뮾\\\\g/W\.\\rBWMD)\\n6ꅝ\Nv\AE\U\\\\c?x\R0ט\k*\*\\K\\2\.߭\G\nܙ\\\;>Gݝ]\I\(.#K\\"\qx\_E`޽bgvvgfx\rk\r\n\\r3,\\AY\[p\\ç\y\0߃¯~\\<\KD\\\>\qh\Z\2M\Z\\0ژ/k7\"H \\R\K\n\\ \\\\\\\\\\\\\1>f\2\\|\x=sֳ/ \\\Zq;SSp\\\\R\ӨX/\&G.(\\\o\g/>\\\k\\*@FQ\\'u@_ y\\9l\XU\\\\ h\hk2\n\\ 63d-\\0\юb=\\'x@C\m5983 cȠ җߨ\g~\}\+g\~A%\repj|\q\\A..l_Km|\\I^\]O\\\\\ \\\~#, a\\\ny\F\Z)\ad\\Cw\\a||\\#a{?z {zX)h8t(|\0\\\|\rCc\'\\\\\Ǐ9Ԑ2_\JXD {o\\ZW\Z{n\^A4ؽ(`\_\C=r\|c\Ϟ{.EF\TGA>s\\\\0/ٝ@i\b\8pu\\^|>\\{WhY\h7n\\\\Z\"?8B\eئ\ DS4\\\b&g\\\ce\\=xuǍ\udnP \zGGC\n6F\rx\\\sTS7\i\v\eaރ\칗^[n#:\*ϓ/LE\/w\P~9^*Ր({e>\@\\*\0q|\+:bs{*upc\\\KnͿ۷s\'|\iOHl\\W\\\U.\\42\\n<ȣJ©T\\tuu2\{$\\\k\J\\<\\g?u0S3BM\nY\g\\a\ᶛw4 G\Z\P\\\qN\Z\#b!\\\bʽ\N[%vKy 9Q\\~izz\gg\\\\A1\\VI\\\A\\*i\@vZkG\6n\"K_K\W?y\\/n4X\\wP\m\J\\q\"ʔ\\\\\w\\6d=̴Y\\"Ht,\\ȎP8[x;q)8\\\ϯ@ iOY\"(\\\n\'{^@H9 \\Lܲ%$q\\~\\MnZa\\"\VPqGz8\3\\\W @-s\8q\"ݒNw%/\\?\7\\b\C\\/>˙;_Ɨ~FH\xrrn:\B\@M!b\WPZr\)O{ЗӬ\kdK8x-\\/Z\VA.Y\O1X׋\\;.`\V\1Ļd\f\C+o\\\k\0PTC\n\erj i\@4 \Nc\\or8x\E5)\\{\\(\N/\ZvJ8fS_\òVC>Pٺu\կ~58o\n`P\D$Tj\\\\F7v\\\\'տ\=1\\\ݧ\Pn}\V\@߿`5I3l\ރ\Z\kY\o\\0R\mG`\5N\\\z\Nj\0$޻nUOhڰɓH\ZAHw#3\'\ZEF.m~>\\\\ %\\\^y\5\\\ ɰ\ \\\)*x\ɟrJ\C\R\\\\\ o\p1\n\_\\\ \ο\n܎(\;3J\\]N\K6\\w\\\^\m\/O),D\zv\o@\Z\R;Pb޻\7|,\\\F\E75\\L1d0&z8~\hW\"\\>C\\_b<< 4E\0\E!&2^?P\"hd\kpΰ WP>\c\Ͱ~]BQ\\\\^FG`\Z\ )e9Y\\=%\x(J\7S\vc\\ޝ;jX)8\\n`@o\\\\\?\o^q\:\c\~i\\0Q\ lߙ\\\\\q\\i\\"1֧\Z\0Vy~b\t! Q\\?\L\s\ۋxIa\n\\n&\'\\(\"$\"\\Es\>54\\bRa\ ̢!*\w\%-F\ 50\\'k\\T\\9\;33\\Bneѫ\E\Z\}\\0@ @g\8#GG>\ۚi\|\\4Nw)\o5|\Q\\@\^(]\S?{@6\߷\|D\GTvPC\R.\ž_\!#c$Z\\\\'e=Ӎ\n:g^ \n\\\\\\]\JqSq\1!\\nV\ \|\VCX,[\\1\\\t\\w?ox~\}~\w~\\"\H\ODN0E\l+ύ##]@+\c\\+[ug \=\q\7h\c\K/q8\C\?x\'XR\btS\\\'ٺI\ZQ/Ɠ7!\\PS̩\\\8\n \=ӓ{kƒ~\APϩƤ9X\n4\C\\\\\o?\\0C\b1\j\\GFG\e\-J\ \p\\1G\\\\0\\V4\b\N|\\.O^X~̓Ox߯j\_5\\2W,\\\crւ`!_\ \i2gsS-@7=D\LDZ\4qWIA\\+ʱb\\SSoK)$\@xeG\*4\\\u \rb,\C2\=/\\\"\\Z\g\0a \v\dK=\G\\\o]|\Eu\@8\U۶q\u|\ގcX{\v-TT\Z;~fgx\|ڟ, \C\\\\c\7^w\Y}\'qR^\\\"ʺ(\ gN7\Z\R|X(ퟞ\=;?sD\"\PeԈt\yup|QAB R\\\wNLH#p&.+\\\\9GR)ѓ퀺Y?8[?|\T18r\\0\'b\퍒.6\n\\TG7\\0,\n]5^0\{?qfI\_D+$.\n\H\(\^*\yMR3\4\U!aզ\\\Bzjz\R~q\\hMBǫ` *FU6^\sK;\\R{\\\ߕ\e\xOO6\R\\rіK.\B\\E\_g\91\#b˦\?\N\\\{\\9\\m_\\\\R\\+|\h\>!iJ\瑏P\\\"\\uR\\;V\h\ \xw.ozrrWZ5\IC\F%R=2\\S^li\Gw\gɲCc\'\\\g\0F\\ٙ\d\\>r-yh/\\hN\?žð\{ _v\%+[\\g\߃/}\\N\F\Z(\"\@M!*\ T\\\T\dZ\lѮ\\\| |a \\zճ[BnJ!]\\\~ }x}8\"D!\`9\n \\\;n?^\*8Hپ\\"K\Ц\Q^\\ I \n\boJ\kO\u\io\H\\\B\%\2\4S\h8\,@˸F\jq)\\\cH\J\ {&&\#HlM\}:\6m\G\(\\\06\n\B axu\Go\ww\\K\\wSH\\\"<6 _\ﵝ0k\iR.ѱ\0>\i\\\dJE&m\$RZI\W-\/KB\\ٹ]SsSGbonB\\ۅ.\\\0\3\A\\H\oۖ7P!V7\xF\\\\pf2\\"\\\a\\Ŭڲ(]j~-\煭<^>V\OΙ2e\\3ӻs\3a,p \hA\r߯ tؙ\V$lE\F\9a @Q]\bC\=7\u\wwgCM#\\}\\P̷\\_SύM\_{ÿ޾\[g\\CЏ\\#\zF!x\`\\z\\쳻zz9\f\$Wgt\i\_T\QhM\\\ZőA%A!@\\r F\\\l\\;P{㺻\\Ozzc$z\[\\r\A8p\0\.,pu%!\r\!I\xm:[9[!\;m|zb!l>¹l9aKf2^^\~\ ۅ\0<\+\Zʱ-\W].BZ>\_\&P꣣\\}\+c澁~^y\j *6\,đߞ_\===ő5~ K,h6$M\۲٫\\/~Zmݓe\\+fg\4\\\r\w.,\N d\D\@\'\\[$l%\R2Nz^OÕ\n\bϮ)\/@+n+\h\VQ\Bn\\\\\b4Ԯn\&lFC \\\>=66VW\\|{``\m-\'hS\Ν(\\O\\j\b\\Ő\!HG\\ׄ\\\p5\y\Z\\a\a\dd\c+He>g0(@\r333bۿ\\\>\\\\+4\\dG\OM\\\ZA|\[ \\\C\qb` \6\Z\u;\0IZ\\=%c55Y0$ӄ-ͤT? l\nQ@셽1\M\\#0J*\\d?`\\\\ C\\0\0\0\0IENDB`'),(178,1,'Workstation_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0\}\\\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATH_]W\>\\ޙI2\DS5m\@@%H| \"\"}(P𵏙\}%I@TTF\\P;m&Lf\\{ι\\}\\>$\r$\]\\\Y\\\{\:~\ܱ>x\\\\ǍfTdYVUUVz,OO\\-~ՔXE\<\ȞťݟUh\!n O<][\\d\\\Z_ƓO\{\Ds37\ގZ o%V(i`jZP%e9e%/x\+\i̷$_xaη:m\R3c\'\ш\x\0@\Z\:yLml7hu\Z,v\ҐM\r)aA6)(\\"\ѦFWnvv\Z4EFQ\r\\\\Z\\\j,aeQĘڣ\Z3\IO@@P4*\Fo\\\\\[[@eYQ;k\\:d\ *rY\A %Ē\-\M\\`vHg䓌 @w5ځ:\ڢ CU8\ I\0\w$ߢ4q\znd}\\5BJ w\Zvei\\6剌-\4&$w~\0ӴE3\\3/6M\;9/\0(\Jx A@-t0,M#ю\\\\:`\$D\6M>\\E;\;\%\ FNf@T\Y Fƣ\\T\QjGajrc\ \V+!IS[a}o\&\B)p5^JjFHh\z\\15B[\\N$͘2\Z \}\%PR\g\\"\H 4\t\8\\r:B\*W\f8k7Y]d\\\Zk\^nY\zױe\&\\\\8b\\v/}ZiJwv\ ޹|\"E\9r\\}\>NbGoR>uHEQ\ӴU\h4i{\r;i\8nwgp\Zk\\\{3B@\7B\\\ޯ2:k\Үo?Tr\\_x`\\'\2\f\ ;O\\\\o߾6{\\Ơi\:<~6\7Fׯ\\*\\W\W\Vx\9w\\\\x\\\N7\bfC \0$\nRB @[\м\K\\\\\\M \\ @腟\\G) \0c \\15AR\0c-\v \{F\++W?\\\\kM\\\Z ]\\$NH\8NT@E\0$I\L;e\BL]3Lȧ\|\O\{\!8q\/\}sqaF#!\ *c0Zӝe\\c}\\p\`<\'Yv}Z*\\f4z}yy\{N\}\\\\ѯ>Q,\ܩ\\Ax\\\~kyy\s{zP<1\\|\0\\0\Zz\\\r\0\0\0\0IENDB`'),(179,1,'Workstation_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0,\0\0\0#;g\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0YIDATh\\Yi\Y~ڙ=Rv%K\&\*\*6E\\E\\\&Ge⇜r\7U\2\l\\FV\-Y\jϙ\ݙyޯ{uZ1I誯=\y߷G\nW^鐤HxP\pر _}\ߜkHH>\\?+0Z\n?Se\_\_?\\u]2\-\n(%\\Y\3vG\\\ڵӸ\\ӿ\=LM\\:Q0\n\\rhڶ)\q\\k3\\\\\Oc\_~W \\dRWT\,gaMߛI\\\O\\|K\r\XVH\'#~&5\ ɿ\?x+W蘝\'p99U(\n\\\y\0_\\s-{jZGQ\,˺\"+K$\uYj~\W}ϟql{j`pv\]\\\\)ݕI}\"D%P$I\u\0 R.RWnd\\6U\fV\ \\#ۉD\\\b\CR>Q\S7Q@<\p\\9\Y2\\\YKoM\\"}qjssd&YgNs\'\FZt|\\\0H\\\,@®(>\*q9 \2\S\0;)I\rϢ\iv\Q9v]\\S1Dl\\. m\ \0R\|*\4\fp[\2H\]2%E\\H\\X\]8$G3\N\\^\\=\q\rIQ=U\\0\#E\\N\3\Hμ\!\l4\ٳ\'H\\R{z(ΐ\P͎I\n\X\\D݁r\rŋ2\0\'DWa\ \"ʰ$\\PhR7R(4z\`\]wvdB(@>՛:\Io7\D\=\\@hȴ\\zw\06\+Am\\(ܔ6> ,DH\Źę\7p9E#XiF*\;6Di\)jW \'\\\b8K%2\9juFK\\\q<9\\\X\@̵\\g\\@\! 0|B@\\)\rkGW)#\"\GY\ p&\J D9\\0<<\rmr\yE\\xuXnT1ƘdRɸ#‚T\bh<.\atJ\\ \I0л\\\J&\rp_o9h (\t4(#p˶\P~\\ZPr\P|\$\-\\*5;\Z\]\#nX*SDx‰e\h<3 \\#`\q\18\f\6g2p\,+h&[v˾Xp*#XDgH\`YYa\\5DvDVBhżu\BBR\RTb/?^\nM\s\f\\\Z;\\; ImV\w\\^2_#Lf\\udɘrA,XX\\\Y>}9LWJO\\D$F\nzzz;9ԁJFks+s\\Qէt:Iw\\\\XQ[L\" $^Vƍϻ$\n@niRHf_febXšL6vV\9\/_\;ㅵ \\\)5 ,J7\\nn\\JF{\T\m\\r9\--\eȲ\\"ʹ\\\ns\Ct\hO8@:#\1nU\0^0eQ$8\ƣT7\\)o\[\nHɱn ȳ\p\Q\\r_TO\DŽ2\\\~\\6{%U \k\rZ \ܪnt\; I\\rd_\*S;p\FeXqF\)#\BgVV\O9^\*˘c*\,\"$#EIS\]7\r\n\/gx0\B&pΰ\\$IP\]ǽ\i\ZBjL6\vĀB;4\j\9\I\ (\w( NBrb荒h\Te\\\\60\\v\ˠ\7\\\GRevFuh\\ 2\D$VyO>G\r \f\\\}NK\%z\\ut_\\\{*ܶ ,b,\ I\\j~\XщI敋\y\\0\"v`X\j\ \yz\Gi\\A{T\.\\o&Fž\PB!G2ӮB\\\&N\'\\\n\\\in R)7.Pnt\M+VP_\J\FC\\\\BLp0\wJY0\\p\j5\\nO\0g~%^K}2Sit\T6T\n+ib\8ba\J\\\\wyƀd\u\\c\޻\\ncѺny1\p\4\xk\D\P_ZBꈇ<\\*Zj\rR\q#POݹs\\\ȴϓg$OSwR˕U#\(\S\]\.\ [m\r7ӸXzPIR\ֳ_`yg\/KBi8L\c%OV8W(=6\_ڂ\\6pTcqdq%@&m\\\X58\?\\߽\\GI\%\XkL<_|\7\\O\?p\\Jױt\\\\k =\{祽{\\./\@\\\XBs\rZEk\\rQQ\lq\\)\mq\fE\ܕϋm`)\\)p@&\\\|t\ѱK^_0\P\?(,O28\G/xaŗ\\bJ0;\0Bm-{(M&\q?J\D2Ɋ\\"UjU\Zް.^@/S\\H\\\nZXSX@7\\<\ y s\\\\g\\\ٳ\LǙD\n\\Fm+\^n.\\ju$6yw_)\dDu<9I\bP$.\\\\\o\\䔈2h&\\\h_oM\\_d\ϸP\s9\\>\\t\;F\\\\\s\]Z\fqs+×p\\6P̴\/\os3\2\\\g8\\Xӊ>\\)ɢHPe~^\km}2\\W*9\e|\\?8 \ԗ\_\z\po۲čӱ\'h\\\\\\e6i{\\\rè[\#-\vezno\4k\鎢i\2\x?\>\o\\lذ\\5`|\;p\\4\"\;+\ 忏\.\vu5ݨ/j,\ߞ~\s:mБecSOOg׮]G\g\\\Gk\\G\\\k\={\ׯE\2qA:Ln\\RcQ\\бwzj\`-\Ѭ׭ݻw\Jw\\:n?\o}\k]\֭[\b\\X,^/\xZt$\0ٚh\hj\(\-9g~\\b؀lw\j\_ \\U}\\wԕ h%M6\<j<\!i\0\0\0\0IENDB`'),(180,1,'Workstation_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0;\0\0\0ˌ\\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0^IDATh\\[Y\q>\ٝ\\{OQ/qIQRJdٰ9,9p\0\dJ `\/ \q\1@bYe\\E\\\=;\\gg2\\א?\￾\\^\\}}\\Kq_N\#F\Œ\R\\\s\Nu\d8֏|\ \F\\~x\\\\\Ú=`Dn\\by\[\\E\"a/\ZO\w\ٞ\{\W\0:tȈ2G4qh\j\1\0/?Co3\4\"\8\\\raF\\\\\ȓ\8df=\:n\x\O?De\\\旟\\'ƷQ\10_Y#\0X\\-=\:\tޘ(-\OT\\\ϟo~rB\E\\1\O\^]񱐏ضM-,\Ӆ\\h9#O\hR]j>\Λ\>\\\\\0he9!\\l瑇\\\u\u]\nŢ\rw\tmS7\Za\tChV\4_[\M\Y\iv|N^5yc~j\(\I-M0YFm\t/\o\\?\FB\a\nGxD)P$\ZG)LRww7uttR(d\\桝;\\\$u\\Z}\9\[\jJ\23;K\'OLz(YS\r\`[)W(W+\@\\\\\0\z7K5\@\\\l\\x\[ hlNN \)\Z\\q\e\\\c\\|y\ľ\ 6&5 U\'Ǫ}Y!\̞=JǏaq5\0\\\\\:s*\n5۲6C;\\wo?-,\!\dbB\\mr\  \4֪N6\0\=760Ǡ`@i\\Z/,\I|7x\\\Uc{:U0\M\Z\\0\ȡ0f8\0 @1R.m軉j0Ăh\޽T\\rz h~n*\\Kgq\#t\r\0Hk`6c\7\ٽ 7d ``p\r \rL c\\\0lv>luX8.*`\\܆K\Lj\ x\;\\\"b\.1$\2p_fzO@\\Z\' \\+44~\\\0`\:js\L3R\\1\Z0H ԣTׄ8:0\ѫ b 2\\ \\nP]\0,\I\41O, V0!56\0DL\PB\z\r\7\\0Сa:/ c\٤Dp_ /h\7m @!=n(߇5i\\nw\ZT,K\\8s\\ԨW\5ۆ\J,ǖ\V\m\\c\WV.\`u^\0\0 \_wE\"֖C\\EX\W[\nMVVd@\\L\0_@\ p \\r$hFj&\ψR(\@<ת\0`T9v,\;x[H\;*k\BTQBn!\<\nz`m _\\\TD\"q-\0W\\L7E`%Z\9\\Z\\ \(\\[MDq\\\m\H\qmD \\9@׫\_D\-w\\ E\Oe\"d\\\<ԙ\BpeCJk9/\h^f`\\0\0\c `0oEbRĢ!D^\_EPF^–nC4j\\0\H^*HPCC\\\\gND\\VqCpL8A\ʈ$ah͔\\ ?]cR4$\a@p-Z8A\\\|X\f|]\\ZspQ\8b(\n\3\s@,!g\\Z.Yo |\b\\]*\*LfVhE \03t\0=|\4\/-\Jmw&L`5-QkF\K4\'\bc\M9\ x\rD2\Җ%J\h]% J\$:\\9\\\?5T$J\@\lg\\\\241\sLW\0hB#I%\0:\E F\7\a5`\̙\"\+uxM3NF*\\\0G\\\\(\>azZ+ۆ\"K\\0a\\}\\&q0V±x\\\\\&>;p q`\0u@P$(KY\0\\kpp.^\n\T#D\\*<\\\rkp\7ޒ\9\l\%\\Q\9\T6I\\\+w\rԂHa\웘$\@[1C\,\\\r H\n)\@%u\'\~2\M\J\n\\\O\>ӤW.\ɾ\\j\Z?\\\ \J6mB4\\h\"\S͐\Z`\\\\\\\\*$\n\l\ _Y\\q`狻p>D2UR\n\B E$:\`z\rz\\\CU_Xr.\'C\r\G7\jҙǫ\'B\\/HH\R[SnX(X\ r W-*PVa\\! C\0\B\jOy=\ت>\'S\\0xΕ\e\.a\\\D۷m%kjb\\n\Oh%BQ5 \\\`@\e+\\\=SHD\X\s\\^A!.\pãvB\\\\\\\fB\յ>7fڻj\\\8V\\I\es\, e\0< *\O}-\\\\wՖ7\\\\h\\\\[.\ҌQ\r\LXG\>\j\Ƨf~G(\\\0&K,?\Uth 3 h\\k\nrT \\0\"\\'w%DMC1;(K\qaE)%n6\\LN\Э[wP\\S\'Or\0@`b|C\ 8 \!D҃Cs\Z5\\;a \0\$\H)\\ s89\0bmAx4\\\&[k%\\q\7x>{Ua‘tȏ\oa\v8\O::.՘\9/HZ/\0/(q ?\3T\W6\ 8xڕM_)L\ :װ>Xff\\l \j Hi\j\l^` |S\ᵄ\J\.\0@\b+\tYW \nk\"QݵIл@]\\{w}$x\\A\'g!\Vi\^|\ Z/_ފ\Z3\\M\\r 5T%D gܸu\\\<\H\o-\W@Յm(կ\4\ G\\TvW(\\n/^+\vU#E\HapW:Sn\0\\\ŋ\RJg!N\\\Z\ZDӾN9J\R \\\D\\}is#\ia\\h\je\奸aFe\\is\\Ąݯ\%˶\ZA\'h+\_\ nE_\0B\\\Wζ\0ҘTd\E\J\5\dA\\\4P\F,\rj\E,J˹<\\\ wĊ\W\\?w\"--\/hÍkHp\r Ѱx\\riXMiXV/ũ\\\8--\'@Ba\?oE*~n~<\>0\\\\eT{\=}\\׏ܿ} D\vn\\o\sgen~T&[Lg*\?\ 0&\\s4ga\Jrӓ4(\>ܛgm\\0\sX@F\롾Ah\\\\a6uZN\c;\Q~c\<H\\\+\(jIg)\\I]ٞ\0Sg\>\xџćL|g:Mh#\R#teY\\.S~9G\\\\_\\# (ʲ\c\\C\wl\\n0\\\\\\`~>\\\\o\59j\"\00o=\IC*\0n)M\*\5mi1d*\!O|\Z\\opCJ[\!sX\4 x1_\!\*\Zp$`\\5\'`\\\8\*P\Z@`0 8\HdJ\0<,o*R\\%q\I\\>(2|7|\bx:\n\\}SǾ \\(i\&V.r\ݥ\\\3=k\\HgoO&;7cHK\m\\\Ho n(tW\\\\c\'\҅>92%I\$-n^Ԗ[nkF=\rC\0\\:=O_UL\\\ /pK\\\9\Z\X\\\\u\\[Ж-\\\:\/\'}E\Cݽkvv\\m\\d7F\".^r+\gb6ڏ\\}qX\".\\\E\\K\6Z\"!86YR=F&>w\$F7\\^ED.a-I\r\\\[o\pT\\\<#A\ \F\\ܩ\\8\\\n\\܌\MɎ\!IJ Ն\VX\\Tx\\t\M\HRWj\\ZG\0T\O,.Ο*\\\^Ch;L\/\ n+\MAs\Z;iJw\\\\\\WX=R\Qv#~@\oPw\\%.z\R\"\\鏬^?\-\rdO\T$\D?ו\J\\n\\ɳ4qy\\\\\0\a0\\/s4ܘF\sqb\\\K\5\\F!M\\c\q~\=\\B\y˪\y\VIg<-#\\OTR4][CD#F1\s\\ e]B\0\\, 3\m.\0__\C3ˋŎlW\\i\\\L\\\\ѓSǎxn\\@\E\`W;y&\\s\I\FblL\F,3\kK\K\'fNw!d\Z F\\\CٞnI4\ (ߙJs rJ}\\\\9[X\\˳D\g8\\\~r?\ZD4\b\)kXP*)Ill*JԍųeT 7<\\\\_B a\\~\3\Y\\&inivm\*~}nkMN!Hɵl\\1?z \\w\\35\\\K\ж]/J>\\\-\?x\\\\N\\\Rpf\ZL5\p+؝\,\n4mX`\\S\\r!\D\ё5\00ӳstמ\\"\Q~\gp&\HK\\\ctuvR7\\\\\KtǮ\\\ȱB,Q\ST\\:\\m\\|>_G\v\\Ϫ\R_\Ra飛7mJ\kUy\&\I\\\Eg\]\ll|Y\2\\\I\\'7\/ѝnp`@\\N\`\3\\*jTOM\E\\;<<IQR;w\Ue@9\\\\\켐WMX\~:k۽c\ sv˦[7ߺ\\5k\\\̓\\\c\0\\b}{nEnmaaA\"\\\KL\M%\oٴn\r3~\W\\\Nʣj~ks \\Y\\\{|>C\OVgӦ8\[\\Z1!\\\\42lXM\\\2gw\ \` uO\n\O\\\\\\O>d8\ӳs\\\7Gv\\w\~{%Yh{ ]{\vs\0L%Ua\0\\\[\7*׽{\T\\0f.&S\\\G/_\\@~^O<\\=Z72\\\\\8\n |C/\.\\h4=;K\O^wT\7?\(\v\\wbtz`ꜦN\̈\9\n\\\\^\}P\oM}8 \\\0s#UW\rUժ\*՗\'_t\<\\\0\WBv\}\}{\m*Ax\yt\\9̱U0)r\~\\ƅ\\8\ܾM9Sg`K c,,G\\\nbzF\6n\S\VÞ;ǎU\\g+\ʑ\\\[ gm\+Q\E6g5\uJ/V\T.L\ݏ?\\%3 \"d\r\8^C{/W+?\\T\|\{]͘\\\辻\g3P\\0E\"\*<\ZVsZ)Fxpnn\\|07*m \\43ժ\x[n\^w\p\L\\\\\w\gg\=\\\\'\s\\׺iJ\p\f P\ZeV4[\ѓ\'\\"|LfS^V`\\\B\\:YVޟz֨O(9\r\G\"\PlC\\~\WÇU\JE\\RZ3؏\dsa\0\\\\\y\]\w?8B\׮\r/斩¯/1ʫ+\v\\\\R彩\\w\ZK/xr-QOX\f\cA`k\\ ͱᑽ{{\\sca\\\\\J\\\?￿Gܰ\3;\k\"p\m5~\Ăv\˕\B>xn~=H\F\ԴJ\u\ð\\f\SN\_㟵\\\0/}\KIf#\W*r\\0\\\\\9\a!HvNd\JŋZ\h>\⨧;ŰkUR\ظ\F2\Jy\\cAKmw\\\_, _(N##;2\VxI\͒\8`\(Z\\\_.-\\ݾ\\\F%/A `vf\R:IJ^(Tn\jbVa\0\\ny\p\\\nE\"\o\4׭\\d5Q\wO<\\dtA\oYY܎\A\0\0\0\0IENDB`'),(181,1,'Workstation_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0X\0\0\0\n\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\03hIDATx\\}ie\u\\\;\w\\3=n\n Ė-[\n 8aHVJT9N;q%+\r,\ ;  Z \4\\r\<\<;Og\\'kϹ\=\Zc\\\\gX÷\\ \\\g\\ /d\h\\V\ܞJ\!\\r\\[==\\\s:\-~V\\oU\ ߗO\[Qz߲\"\SԶ8\arr\\\\{o@<|ͭ7\o\Sx<\\D&w?\\\\\վ(\\~\+\vCU\u\\'~_=\FGΜ,yC+$ni+~\I\g\p !\:K?.I\\<ϙm:\o;f\x7\\\\)\o|\;Y3\=j\"\-<\\Q\DOe|0\0}\0\V(Wj\_DZ8}4M y\\\Co\ZY\׿/=\١u\\WW\0j\2- Ť=JM\@e\\:B\\0 )\\\O>7g,Ӑ\\4\r\6\r%Q\\U}e~\\\\՚j5j\\1V \\\? \\"*\\H<Z\T \Հ\\0D8Tr=\\? \ne\l4aaq\n 0v\"n\0I/7E᝷߀\'\m\o,\ \\\lK\*Up\\\n\Z\"EHTm\4mÓM />\\rmUꉺH, k7A\*\\\\\B\\Ii\me<`\\\t\Bw.\ް~\\\|ϚT*\r\hRJȆҀR`\\Y1f-\\5 \\\}p])\]ydJX\&\PQ-\\=r\$,.\^\ T\L҅\\? \GoB,j@&\"`\\ =!{TNmn |/\n\jۨBq~fg+:0\A\FZi\\rZHJA \\䉓h&\A\Z],\ZX,\nQ\\\q\\\ɤ!\{7(#\n\0L%\7q_,afz\Z\\c|߱1>xL 2Ț\R nrU\h\Zl) \\\>0\pQe3Vj\\ T\7AQ!ܠZ1~\s\oCK\, F{\i\E㍸(]\i\\QwUp\U 0?9Kn\\\Ċ#Z7E7\6,c\\?\Z@\5\\Y08\\ _\@\ V\\$\>X?40IV \\rc\bJk\0\cC\"Ԡ\\U{r\ro*F\3$Y%}\\0p@AgEE-\x\&cԱ\ at.\Gbu9<a\\\-G\m¤lTC\-\L\\\8%LYO\\[6\x\}088\cb\n:o><\ŊD @oe2]\U \&6\'ޖE(\"+\Pt,,t\\Z\0 c;P\\J z\IC+\\'A\d\[#\ͰpC\\rS<:rRRgQ\5\ER\ JIRE{tB\\\X\܀\n\07I8\no|\\p\\\k\~\ݻaێO,\\qL\\n\\\\\KM~\n46Q,G8\}8X\R@<^e!\F\\OW\\B !\\\\ur\sV) grR}!kU\)ˉ.*\\ b\-\d,\ \sj-\=I\yj腞\(H\13\0qS?\ΟAPdc[ɔI\D|H$`x\Z\`r\3\\pOPXŹ9T\R|)^\衂b\r\\=\[\XD@.`kGQ/\ %l%\]fd\Sq3\\ʛ *4C—\nBk\gw\0u`\$\w:\nݥ\tᦡUD\0\l\\!*g\\\r\\"kh\+Thϟi\\na!7\W&\wpbk9\K# WU@,(q\\'NK\n@/hQ%@_] \[>J\\\|. ,hwh{)\ \\I\\\\0ɫ|\6)\Ekw\\n5\r\gϴL/;\ \d$z\\zw\\r\~ b\R\Y)a\{lDlk* \Z(C 5!*BEе\3  eA\\%:_{[ Jy\\E\B\"haOeHM}\\p\\),3\\0= \€,;b;WGQqu$\0\\M&t<\29Q}\D\r,\8IE%l`\r\rF\n\ē\\\r\xԕu\t\<\\~/\"G m\L)sepßz\"~%h 7$ZC2y\\\\\/f\`\\\tC0T\Z\g6 4*\U\0\\r%\dRc\ \\1^>\s\r~\7\M=ֺ\M\l4\/@*IS\d\\\/k \xC\\u(@8\ќZD1!urv:GW\)\i\\\T#\Z1\r`\qU%\ \DEBM\01\\!vD\\u&d: \%53%Ӝ3\vI;\$@!,͎D;y~HC8 ;&=\Z^Q.\\\n\0\]\BVC L@A\\\n:!c.-&WCR\7\\.K\\҂aP\T`b9~ \2<\r5`\A\ESI.\\\Jh\\\Ŭ\"f#˲\\W\C\"mԩ6㸶\R\\\\\\4T\\\ 2׀8XTmNҥ7(K\\ocxe.7\鵓)b\0\`G\\ E(\:A0\RˌXRՀK\\n!WH=\\\n1Ƞ\\ ?*\F4\\r\\NI\}\*UyЮ\u&e”lQm\#`8pEP/7\\@֔J BL\\<-TkH@2 \R\^-8F$j\RI[\l\w1\w\\\*\@a\2 l6+Oí\\'40&\fK\H\\\\\\ecT\\ֲB6\b<(i#Hؘ\ru54N\()3\\\)NiO:;6D;(\{\\\}\a\H_]=՞\\J\.;qlK\J o.&`v#u\!|%\\U~~\\\\\\{F\\\rB92SX\2(\ :\x-5 Te5HИ{$tv\-\TP\'LutC\'j\}\|T\0Z*{:{\\:?\S4\\\Z\8\Z_?F\f9dh|\ \\0\ry\\ʶ`\\\rЪ\t\`﻾Q\r\\\\r)Ch,}K<\kb\BU\Ѡb{:0&m\"(i\W\\\~ϓ+^\ޤ\{^\\ sխgj\\z\0}\\\?0n=8-G\LE\'i=\h4ὓ#03_\{nLd\P%4\\nΆX\g~\iW\U\V\ZѶD\%(!k 5ý\s-pt${fR6L.K\t\{\C2\\4\Pl\'՝WÇ\{\ˣ\y\VxZס2obD.ZATI\j\r\?p@ !\\0BeM\\ԙ1uK\Xt5U\h T¬Zԯ}\s+\r\Z+SدŽ\ro2 (\HaE\\3T|\\\0\*7\{C\"ܘ\h\\\ٕJ a\.?>\r8CwAs\P-kL9 #\騧\a(]s\Ӄ7)QE6\;\LX4\RP\F:\\`\!\6n0Ǔerch\l\5\ert\/45u_\3]h\Β\w=@\Pb>!I\n\"EO\nľ&\ܐdjX%3J̌ v \\'jެFGGo,и[\dDͬmک\a3d7=-\\`P\J.p\z\\AɓR|!F\m\*\R\)\\ (\0rN\"\@m\\\'h\b\0\j\j\ǂR\8z\\n\\T:K:{琢htS^8xS*\scE8\51;\X9F(\z@q\nx)\a]5t\ZQ6\kI$\hJQ4(7]\D\%ՠ]C\a\Ɂ7h?ׂxtP s@BWW\\\\\̆\\r<ͪ\\zdJw\\M\;\h\Y\>P{ >oԫ\\ >~ \\nÊ\Jg(lzmy/\\ bD@_B0\'/kr\rg,\X\\gϊR\r\\r\\9*{M$Vѯ3(\\<&\w\LGY\Ѽ>\ DnjӬ\rG\\A\4ў3&;m(8\H\3\\A\\'\oPr\AYh\o3 o0}\F \V\\\r@Pv,=\dDt}\I\\F]߇ _\붮`jg\A۷ߎ ˆC_ 0 \\T\)ۓ\\\0߃ӂ]\V(h\\ ;\4 \ZW_Z*\\\u{onF\A얶V۹5\d\ hw47L \\\t\hO \ ?\\;\-\Yzn m,\U \\iH\\\%k5iֹw\ҪT^.A\\XJ\\\\rK0\\\r\\F \T(ATj \JE5\l^\nʯËF \Z\keI\nf \L(%#\\8t\8Zb\DV\!$@0\\ v M\r4\nӮ87 \RN^\]\K\\\3\\\T;IeҔV\\d\7T\"_Xw\=B \$B7t6ߝRċz\'\5\'f,\\0\\TK7IJt{q\٬\@\oImm$@\A\6QS(LtuR*VZJ \I8>7j\\0)˲,L3UG\{\&\7(vÆ\r\\x\i_ o6\o\Z\F2r\(\\\<\J\&R]]@*K-b\d?;=\\0u\ .\ƅ\ \O\P\\\0(\\\ \Ϣ5ViP\"7.=\\!Exx&y \  ؄\]]9y\\Y\\u\3\\ \\\n\dXLW7[?y\-W\0.\\\T\dsEu(l͠Tχ?Ȁ \\ e\#\'O\OL\[?G*xˊh\J\\\ m`q\'ЄPsӰ0?ť PXZ\^]ӝku^\\\RbW\c\M\k\1M\\c\bY\@KB%=\ղ1\@\d3\&Bsh\'\\\"\F\B 96\rN!n/\BK4\S/\\4-P\nI\\nР\\t\N\Z\\\rz\F;vKڭllѲF\\r|j8;Ĕb(\E+H\7\\+4F{\޲>Ƹ\!B׌bP,za\r\n\r\{$\\\ O\00ɋ\c\1\i=:*>}V\>뜻<}\Թt uh`R%c\T\\\\>u \\\T/ &\S:?p@/\F,7\Ŧ6\M[6񥧞\rV\Z7Zj,\\\3\\K&ۊ\\Z<\UyjL\\\u(\p\\\- \\㓼[\Z \CO\$e\Ru]\K\D,l߾#x\\\#=U\r#XXY8x\ M\:1\_o\\\\&\'arj\niem\\\1\\r\6k\ CW:U \ԯ/\8\\؅˸{>\\?=\ݜHT\'\\Z Z:\jްM\@\\TIG;ȑ\)k֮e.A(\r8w\t\Zu]Go 4Cw\\h\\X&\\#İG\l#{\\ck̺[\\\\\_\u|]FE\7d`\ng[\ \\\\,nGh$̮^Sw~`ck#\j47X\\r+\\o4\\\\\\M\"L6\\+$]\θU D`p\\"6\GXD0PDN&sE\{\H\>\M\\XXP5vݺxo>&\\bI\$3\Jx\ꕥ\5\Z1\i\N\\9{n }k\\Y\\7\"\\\\&\C\\\noX[7C\NG+b\ckUY %],F\҉G9x\Z\p+kO\V-\sC\0\S{T9,;Nq\ 1\8-d& b\Z\S\v=&1\*(y2\\f\\\i%tOO\\\\<\q\.V޶y379xC9ƻ\=\\g\+y\\\B\\ 3\Ν:q\\\\\\\.b\5-\Zc=Z\"H\\\N\;w}\\Ԕ(\nbppP\X\\+\B\\\}>\\\\"EA\EIU@\{xѼ5k\a\F!Ǚ‘c(l\nni\h..)\|7LBw\\yi: [\"\y\\Y\r\M,dzG\ܾs#\;\\\\Ә(U`Ƕyx\\ۘծ\6ER\Zd]T\rBw\\\W^\\Zr\\\\\\'P\\Ԗ( \a\״\z󂞴ΤkU\^ٗeo\7\#H\1 \Z^ 4oZ!Ltm_\t\SI\JK+\\nK\\nG!]2\nvlGNON+W ߣZ\h\gQ\\\\\^\\B?y\\\\,\ \\\\5 \\nԪp~\2 \r\A,\p\\u䉩\ݬ\g\A\nϳqzb\\{\` )\\\\\\^|\\\cǮ]=oQ CV]1Wv5k\\z\\\ݻ\\\\ˈ\\,3҇l/oY\|>\|X%=\\ffӦd\w\k\\>\\\\1\^A\ 9\hd\v\\\"\COiؠ\ /\) \\"D:\߂\Ӌ0\ߏZ僟\\F`\z$Y|\r4(\BZKqa\\e\{\]\\䮅[nkLW\\\2\xR2\r\\G7c\\n\?\ bͪ\pa\\ZD㻈\VB:L\\??{\\\\õ\(8z\?\\/GbSSy ;>\\mۖ\c\\\O\:\\\\\\\\l\ŞCA\:it\5C0\X\CHH\<wk\L\^~\\0\A\QA74\,\\rj1\\\\EލOAХ\{\\"\ZD8(pW_jjj`e\7gޚ\酅Ki\\/Xo\C>\G۷\\\etg\nøbt8\\\e\4\j\y\1\\"\ݻ\xd\\>O/\y\\Q\?\zPi}\q^u\\ jc\\\j`HZ\}ǶgkJrrvz\\b<2+\"\i`g!\,,\L&)-kM~\>`P\?__\\$:450\\iG\ZA \r\:r\Ix\\/z\0s\<Z\\\}5ګ=(o\ \fDB̄ 5Ez\:)I@ xZY*ޙ:k\ZF\7tE=\nh\\Yc.,xy{BA\ܹ\\' X\HAv|ZMx=O\\c\L\8t\ \_5\mj\\\.ӘF7\n{ӆuH2 M%0ZotNn:\S\\=\A2T.)-L\HyN_\1\\\[ͅF>R.O/\/]\\\\\ZT\60\"ߍl\͵r.\*\\V\0y\>k9X\-{\\w\\AZs\r#\ô=E5}\l\Di\Ud@O\\W=\Iӝ\by\wޅZV!\غ)QsUBn\'W-\~^AuZŀ\$SXV\w\\"u\6y\:\r\>tz\\P:\\?人ͅ\طwϪA\<\SSS˪\/\ %jFX\\\搕\\\\b\'j\y\TOLNͼӬ\\|n [v\p\"g\Z\v\":u\IR@\L+\ln\\\\]=JgT\}d\\\W^6oXp>%^\rͣ\Z)4K:\m\n!~a>[*ON\:\czHPN\\J\O?:+i\\=?\c#\96/\2/@bxiR\|\\_!N\\h5k\z22KKw\\\\'\r\+ 4\l ;b;\PR\P(`>\\}- \\'J4#,Jr\\;\;o\Qv֏~\c4K-4 p8-\W`SqN(d1bZ9S\\*393sΔ8\\\N\"Ml\\'\9>\w{\}AF$I\\n\"ʣx[f͏\f \aOt:)XQa̳r\\tѩ\\Z:::t]]]\ݻw?\Z\F2 |btt\}e\\\5 &: cO\:\_\?oR#~\_=zRZQw!\- ^UJ^ET3MK&t\\]f\nݸ._?\\K\n\\tDL&\\\%\N6d}\\\"\Jw\\<:e\\ce.Iì&>x@ёr9+?~ ˘\0e.\\xq\mX\@f/\n✼Y#/^,\ҟe\\r$cÆ\rb/\X?X\ 566Rsss\\\p$s\"\l\J\0\\\$PG}}G\bB(\\\\.]Jׯ_k555T^^N\\\,=zDeee\\\\\z<Zn \\\7\|www\\a&&&\޽{l\21^]]\r 1g^^\\/HdKڟ\G)\g)tR\\rM)&\\N\!J\0jiinB(\0w\\Vf\w\\\Νlk/\cB!qhkf-X@SFq\\0j\\ar\+VPQQ\0C\00\'Z2\0\ \\\\ڵkV^-HR0\QFNWm(I\Z\\&\b,6\\\\r\\$=\@\6oq;\3i\\M\0}\!UWWS0b\A)ŕ\E \\~\\"NO^}&\\\ <\\C\0 \sڰ &6\\\\`m\0w\0\\\n%\0\C\\ӳb`B.I*ݳv\9X\\\\(\\nPz=*\ %\d0\Z(\\+u\T @a\֤5c>c\'^g#_/\[ \v\KgP79\\I\Zx\\Z=v,q\\\\իWRJ D\a\Z2\n1\\1s:\\\/V\\`1&\Y`藉` \0\$ƼX\]¡O1s\\RG1`QT)m\*U\\z4r_T\@\0}~>U55\\g\\r\\lbF +RK\X 61.`)\\'K,\\`a\\0W \\>P\wEc\<\0k@.4\G\\\\r\mn\ \\>\\\\\k\xS^\̼TZB2s?Qy\O\'\\_\\\3\0\*\\\$!\,v#+\鬠^^/ևg(\jD\\\OPꑥz)\с\+ESO%W\r\|\BB\0%\a|\ݻ\q\ =ںB\r1[3rLUc|\0+\\l`(TL\Zg\\Ú\Vy~(9Ӽ8\)((ѨL$M2y1\'\3n5\Z^\\\\\\Z\\MfOpI\K2\\ l[\\\\_w\7z9\p\i\\\C)ser\\R!(\+pS\Eb$&\ŏ>>=\W\\\\g8\h\\c=\\$r_#c̻7x\\4F\0wD\\Ӧ\\\x\Z\Z\Z>\N\-^c\1\K?p#Ve `c\\\ѣG\XĪ\F\5bk:guXυYeN4Y t0ļ\\ża\rE9MEg\w}ƫ؃\39UE%g f_\X\\\/,\Q\B\8\8\\\\7)2\e\8q\sf.))Yl6yy\Zk\\\0\\&VϚSg۷o\\%y9:[9\zq\\G\\\fW|\0\0\0\0IENDB`'),(183,1,'Zabbix_server_2D_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0 \0\0\0>*z\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0qIDATHǥVKoUf<\\N\GƏ\\;Ϋ A\nBR\\nMŮ\+]tIW]T\cQ\%HHEUMDVJBT8N\\\{8\\Z6\qs\̽\\\k {4^w\\\7\W>\?I,-)n\@N;\$\\&`?SV\:\zӷƜQ,\\\5mkk\\\\r\r}Ǯ\\bR\c\%o߾q\@7N\\@mow?fQP\ UUEZ%_\r1(b\j\MC<\\\sh\\u\f\rAa\l\' \\^\!.;b.㘞\\\2LBa Ӊ3r8u\Z7{L\md\݃=4T*0`DQtpba\i \F\"\\rnZ\rw\0\*\nfgg]\;<ň? \XL\\N@P\p|\2^{u \\\\Ym\M\!e\\nk\lС~gnL\\\\sss\"˖p8k(FC\k9=b#\\E\uf*\{\\9\\\]_hQF4>Ф6\0B\r\\\|W-aԫ\\J\\#2\0OhH\9k\\|\\\u񬐵`8\Q;[(>Gt6\e}O3\'\neʴ\\3\b%\tf\\\I\Z^*gq^\\YҲ^*J2\i֪\\/\\luψӡB\j\\ZȠcvB!z\0?P0С;\\\`P}.\6BeR$`v\p\\"\Z\RÏuɣ#r\\\'BO6\' W\\[d\n \0\9;5 \\\nW>g4CS0jAp\3Ӟ{ϓTF\x}\\\\\0-\nb\\Ԕ( fJ\\JɈQ9zQib\\\8\1oN\\0\(2\r\\#Tt\pce\\w!Vp] 6\\K\Go\\/3\\]}EYݚșf`\\E}V\9ٻ\3\\\\]\\ Թ\ Z_\)\%\Fg\>fT%Ls\lC\i2d\\7A^\\\\4תj}wyy>9\'\r\Л%l\Z/\\œ$\\&gSs\o\oU\z\e~RG\\\~4A7Sk\b .\Z8\\0\0\0\0IENDB`'),(184,1,'Zabbix_server_2D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\r\0\0\0V\k\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0mIDATX\\XYL\\U\00,lB-Ъ]ښV\\\>\\hb|1Fc|\K|\ɇ\\胉Q_6\ \\"R\\B( \ \\\\\\0w\b1p˝\9h\06HG&\\u\f\bѱ\\o\\hY+((В7sd2_~\\\\\W d\'Z\V!\ZH\\u\\pRQ\\'ff\\=\\'0[Q\\rL\3~&\rѐDu\rDO\\\b\\\\ڵka\P\\\\ ]\\_9rW\\AOO\'ľQ㦋65Aw\BB\fXf\rN\'`\zsӬ\! (//\\\\"(khh\>Csssjm\n$ˎ\BTH\\,\x\III \I\\\_066)\\C4Cڍ\B,oߎ\n\.\A҃h<>R=YŦ\'1*\}>\LOOUUU)\ \\\+\n݊\\^\ݻWL׫\r\\sÈϵs %nOb9d.\b`\\w(\n堚\ vX,ZkR3\"0\y˦TȾ\w?\N~B!e1LқDǣD\\u\@a\6~)&Et``Yb `aaA\\\6*\\;\\,P 566\A 091%H$_prp(\\=wmz\n\Z\pm[f\\"2 \n\d\\v9mM:뭛Z\\\Amܸ\x<~\:E]!T \\"7\\\*\4|!Ǐc\\\nw\\ݻ\E!\\\F\\\n\'*X\\ڹu\0R\oA\S\\\\U|ʻ 9\\r\2}Yoȓ\t9U$K\3 \mXlaxx\"Q\s\\V曈?\\\I\RZ\\\\dY-\җSoR\\\\"\E\JI\\T>J\\[T\o=̅\Z\\'\\`\"\'= \$\PY\"瞃E\\3Ϙn\T \p\ sul\\^\u\\$i$\P\\5Kۘ\\\\"*l\;\n\nQW\"ofu :)qUTc\Z7\\Y\\\\L]3~M\#g\0£\:7=\0׃\y0h\𐄑Zu/\}s\NH\ri\\={\\\\\\\\s\\\ڪ\\nW\"\5$\l;\\Օ\m\THt钪ЌG2#\(~!\\\zO=uJ\\\x\\\\\h\=\bQ15\2\cA\G\]KlCrMreUXyK\= kK8\/\ڽ\B\V$s\XQ\0S޺u\T<6S)\j \ӛ.s\\rL\\S\\\\\*\\3\`\+BDޑQ|\\\\aLJhW)?v\\k^ \\\hY\0/\\h\@\sO|\ډgb\\\\\\n= .\8_*\IFs3\ZO.J\\t3\\\o!}}}JYfQߛ}Ge.g)I\_\l\\\\ʊ\\J\ t,G $k\K/Cs/\\<075#P\+Sy\\Y)G 4 RUL3\j\\\\0\3+\F Ȝ\\Zބ\dk+.5\;=g\nT~lٲgΜ\\\%nngg\.Ҫ\[\i.GV\\\\\`\"_ \H4t3\\\`z\j\\\[Ov ֗\\_\nCT\\0\0\0\0IENDB`'),(185,1,'Zabbix_server_3D_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\0K\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 xIDATh\\ZilT\>oVo7lclB\e#D\n,mTU(I\I\ZUQ$\DʏTj~4?FJQ\@\8(@ 1b\\f\՞\\ݙ7ٝb \\{\ޝ{\=\;\9玵P($\\4M+\e.\m\\\\Z\\[A(m\0`\W\o@7߈yo@\EL\Ӑ\l6\y{\0ܒ\8\"F{^4kr\A7u6\\\\\\\\\x\y-\6|^s\\0q\\*&p\"\Z}3\~4\-%[\;|\駟_\0zj]\i\?\Zⶑ+~̀\\\ f2U\0{\\ݙ}  پ`\nAه\\oudrr\8l@B.;\\\\\\'\^{`~\r7@\f\7999e)\{<>c((\%Xm\߽/\宮/\\\\.\\Ԥ=\LN1fVk\\o\\\ \ Շm6iv[++\\s[\\']}\\\+[[%ϑg$CGl\-${Óޞ)(>_+fMK\\Z\\\\\/9e|bj\\q墌\-˖-S \[o\'\0*\M>\\3\\\\׋.d\\\\b\ϟ\\}*oE\f|^ټy466JUU\\r\*!%\r@e\q:d/uo\>^J!wee\\r\\\J/T$ק2\\˥X=;|X\wu\'A\\\0w\\y\}\\a\H{CO×>R)\\\r\bAA+Ά\=+\o YŊ~\\U\~\…200 \\\KW\Zi\֭~\IǬ[NV^-e\n\%;vL}\\\() D#\ѣGSʾg\ꫯ%\{Cy\ejjJs\Ny\\ԕ\

Yd5\.\\ BӢׄg \\WQm099%>\Dg\%\~m\j\:84\"\M2\\\:Yv\\r\y\0(--\\ac8 \\\bnvtT\\/}lYYY\8\[`A\)\\?,\\\I\pds\\)$\\[\ w\fY\\[ҽcShZ7\盚h֨/>!\!2R\gH&]-`qa\\SwY~\5\S1\ߺt#M7 S%\\[\Z\q2|y*\\\"in\R\Dtv{X}F\9\Vr\\*$?X!K\\/\\ɓ)\(*-?\\>uHx\\p}C!6§Bb\a7\8J\8W(v֐J*r2\\\s(e[6\`\\\0&ZINX=I͌$\\!}\{\ݴBXᥛ\$/_\\:Mx\X&rl\'|R:;;cf\\VOn\>,ԥ?0 D(:USr{<\ٸeN)*\\\"Z8\?o\\XCJڿ`c} `\\"^)\,\1N7\q\=ߋ\\k\.R \ZkP!Uc)\\Β*Yc\9$Ұ+Ws\\\\߯\v\Z\\\\\<\T\\5d\<I\H\>2$\XQ\Z]]-((/\Wҍq\\{kP:T϶l٬\/N\{V\(U\\\ N?\2\QsAAX\&Y\\nr2ꬑܞ+\n`F\Ҿ4̶\\#.\!\n_\\0qU@\o J\Fb%s\jr\O\5U\\Un=\\'`\\\\\PB\7ݺKL5:@g\\7\\C3D\\:\B\ U1\\lo1\\rNǽJ\]\d\h\\W]\|q\^8\\bqń\0\ZMs/\CuEE\^2\0\ߨ\0*\LLh|\\W^\ۥt\YV,Ө<\Z0]EER٩\x2\%j\,\ҭ\yӍ\\\ϵtJ\\"Y;\nb\JP\\g`\/?۽SJJKE{V(kk$[<\u1GG:Ů\g\\\ rM@\Iɒ+P,\z\\0bd\nY\\\[Z_\\5\F\H\\\Z*9U-\\Lc\IúΒ\h$2\= 9\0 亜/ݺ|\yxI`\Jg\\Q#Mf%\Ҫ\֧N\xσ\\)_T.Ab\F廫W{\"\ܹ9r\\\\\>\\#:\`\W.I\-J.KZ*L\ã\\0\\ri= $m۶M\S*3\f\w\\\c\\Ϧ8\\86]\\wa\M5\f\n݆b\T\\.\֥l:0A\ڮ&C_$\2t}\?\\\\#G\\\~)\nh:\aCY9\ۦ\Uv|\\fsX \+u\\(\2>6,\\0\5k\(3E\4\YNPl\\\r0\`!\0\\b\\\>?E *3\\ҵ\\L\\'3;|D8\4>11Qm\r\\\\n\oY\\ÿ\`wUJ\\\Z.-\\¶\b(z,\09J\V+\{4`m\\\b ?%!\\7ς\\EXi\Zд$,\ø|~_,\\n\\*~`X d\/ҵGO8xٲ谼\hT\n\\\n \\c\A,\\!\'I\,ZW\Y\lt8bQR\f\p\:J\T\Z|\Z9\.\\SC8A(\ZV\b0uC\JPG(\eY)9M\>\\\\\\@R}\N \\\at\|Ga۫\jP,\; 9J=[Y \t\F\Zmk\0N:\\wc^Y\h\z7\h<\cXcl=Pr\\}dd\(\\\Yn\0\n \8|G`u\m\ag0BdE\KÃyEڮ\}\;asŕJN\0UU(\x>\8S\S/\G{-\\\\l 3€z# o&?{\J3\ z\PcJ\aBz:p\SI\:B8a[\ZS\\\\^\7\J>\f\Dr/\<\\\Q\˅e $q\\\/Ӵ\ߗgOƗ~y\д.&\\`?_\˯m\\}} }Zs jkN\'I,,,`\f\e p~\\0{KkvxLczzZ%ٹyt\\1\Zbu ?d0\\dg\X\>L>R\j*\L oyn]\0:\Y[C\\% ڵvH\D*J\⤩Qޯ\nfh\@uϞ=S]w%y輹\G\!=Drز\.u>m\0u\\\E6idyd09\~+\a`d\ \"\\uʿDb`\!\\\7\\<\$\u\5\\\6=\uͅ_.\WFE\\\& \jN\l\\\1\\܋YH&\\\0\0\0\0IENDB`'),(187,1,'Zabbix_server_3D_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0`\0\0\0\0\0\0r+8\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATX\\X[L\\\\w\1\0``\\خ\VyԲKm\4\J\J\|X\g\EUTAc[?c\\\r\k\c1\\ZaB\\G\\\\{\\{\j`P6rh\./CA~Igw \3[\rv\ׇ\\riiiM\\\\h2|1 9[κ\\A\g\\\\KRR\\\r\< !m\0CE\\\\\\'\|C\\ 1=#zZ >$ȅdžp\ȑ=\B\oN\4\\Aij3\lWWם\'=\/\t+H\s줧9\\Br\ҥK \\\ѣu^\U@ߵ\?\s\Pبd\\:^\h4`:u3\0\O!B\\H?`XC\'\L \\H6$\;\\\,\_k\:!\\\\\\\ې\\TINNyZ\70!7W7wtT>yt\;\d2\\r\\n\ r\\MSzr=\x7\\\r\ڵ=w\ء\\\TŘ-̓\\W\\裿ȱc\׿T\044\\\?/1\GgIe\0\dSjė\'s\[\1\n\2 5\T\n> P\lt$o-C--\\\0\a\old.name then set new.name_upper=upper(new.name); end if; end */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `items_update` AFTER UPDATE ON `items` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (3,old.itemid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `items_delete` BEFORE DELETE ON `items` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (3,old.itemid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `lld_macro_path` -- DROP TABLE IF EXISTS `lld_macro_path`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_macro_path` ( `lld_macro_pathid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `lld_macro` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`lld_macro_pathid`), UNIQUE KEY `lld_macro_path_1` (`itemid`,`lld_macro`), CONSTRAINT `c_lld_macro_path_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_macro_path` -- LOCK TABLES `lld_macro_path` WRITE; /*!40000 ALTER TABLE `lld_macro_path` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_macro_path` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override` -- DROP TABLE IF EXISTS `lld_override`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override` ( `lld_overrideid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `step` int NOT NULL DEFAULT '0', `evaltype` int NOT NULL DEFAULT '0', `formula` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `stop` int NOT NULL DEFAULT '0', PRIMARY KEY (`lld_overrideid`), UNIQUE KEY `lld_override_1` (`itemid`,`name`), CONSTRAINT `c_lld_override_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override` -- LOCK TABLES `lld_override` WRITE; /*!40000 ALTER TABLE `lld_override` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_condition` -- DROP TABLE IF EXISTS `lld_override_condition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_condition` ( `lld_override_conditionid` bigint unsigned NOT NULL, `lld_overrideid` bigint unsigned NOT NULL, `operator` int NOT NULL DEFAULT '8', `macro` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`lld_override_conditionid`), KEY `lld_override_condition_1` (`lld_overrideid`), CONSTRAINT `c_lld_override_condition_1` FOREIGN KEY (`lld_overrideid`) REFERENCES `lld_override` (`lld_overrideid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_condition` -- LOCK TABLES `lld_override_condition` WRITE; /*!40000 ALTER TABLE `lld_override_condition` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_condition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_opdiscover` -- DROP TABLE IF EXISTS `lld_override_opdiscover`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_opdiscover` ( `lld_override_operationid` bigint unsigned NOT NULL, `discover` int NOT NULL DEFAULT '0', PRIMARY KEY (`lld_override_operationid`), CONSTRAINT `c_lld_override_opdiscover_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_opdiscover` -- LOCK TABLES `lld_override_opdiscover` WRITE; /*!40000 ALTER TABLE `lld_override_opdiscover` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_opdiscover` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_operation` -- DROP TABLE IF EXISTS `lld_override_operation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_operation` ( `lld_override_operationid` bigint unsigned NOT NULL, `lld_overrideid` bigint unsigned NOT NULL, `operationobject` int NOT NULL DEFAULT '0', `operator` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`lld_override_operationid`), KEY `lld_override_operation_1` (`lld_overrideid`), CONSTRAINT `c_lld_override_operation_1` FOREIGN KEY (`lld_overrideid`) REFERENCES `lld_override` (`lld_overrideid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_operation` -- LOCK TABLES `lld_override_operation` WRITE; /*!40000 ALTER TABLE `lld_override_operation` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_operation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_ophistory` -- DROP TABLE IF EXISTS `lld_override_ophistory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_ophistory` ( `lld_override_operationid` bigint unsigned NOT NULL, `history` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '90d', PRIMARY KEY (`lld_override_operationid`), CONSTRAINT `c_lld_override_ophistory_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_ophistory` -- LOCK TABLES `lld_override_ophistory` WRITE; /*!40000 ALTER TABLE `lld_override_ophistory` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_ophistory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_opinventory` -- DROP TABLE IF EXISTS `lld_override_opinventory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_opinventory` ( `lld_override_operationid` bigint unsigned NOT NULL, `inventory_mode` int NOT NULL DEFAULT '0', PRIMARY KEY (`lld_override_operationid`), CONSTRAINT `c_lld_override_opinventory_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_opinventory` -- LOCK TABLES `lld_override_opinventory` WRITE; /*!40000 ALTER TABLE `lld_override_opinventory` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_opinventory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_opperiod` -- DROP TABLE IF EXISTS `lld_override_opperiod`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_opperiod` ( `lld_override_operationid` bigint unsigned NOT NULL, `delay` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0', PRIMARY KEY (`lld_override_operationid`), CONSTRAINT `c_lld_override_opperiod_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_opperiod` -- LOCK TABLES `lld_override_opperiod` WRITE; /*!40000 ALTER TABLE `lld_override_opperiod` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_opperiod` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_opseverity` -- DROP TABLE IF EXISTS `lld_override_opseverity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_opseverity` ( `lld_override_operationid` bigint unsigned NOT NULL, `severity` int NOT NULL DEFAULT '0', PRIMARY KEY (`lld_override_operationid`), CONSTRAINT `c_lld_override_opseverity_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_opseverity` -- LOCK TABLES `lld_override_opseverity` WRITE; /*!40000 ALTER TABLE `lld_override_opseverity` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_opseverity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_opstatus` -- DROP TABLE IF EXISTS `lld_override_opstatus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_opstatus` ( `lld_override_operationid` bigint unsigned NOT NULL, `status` int NOT NULL DEFAULT '0', PRIMARY KEY (`lld_override_operationid`), CONSTRAINT `c_lld_override_opstatus_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_opstatus` -- LOCK TABLES `lld_override_opstatus` WRITE; /*!40000 ALTER TABLE `lld_override_opstatus` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_opstatus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_optag` -- DROP TABLE IF EXISTS `lld_override_optag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_optag` ( `lld_override_optagid` bigint unsigned NOT NULL, `lld_override_operationid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`lld_override_optagid`), KEY `lld_override_optag_1` (`lld_override_operationid`), CONSTRAINT `c_lld_override_optag_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_optag` -- LOCK TABLES `lld_override_optag` WRITE; /*!40000 ALTER TABLE `lld_override_optag` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_optag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_optemplate` -- DROP TABLE IF EXISTS `lld_override_optemplate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_optemplate` ( `lld_override_optemplateid` bigint unsigned NOT NULL, `lld_override_operationid` bigint unsigned NOT NULL, `templateid` bigint unsigned NOT NULL, PRIMARY KEY (`lld_override_optemplateid`), UNIQUE KEY `lld_override_optemplate_1` (`lld_override_operationid`,`templateid`), KEY `lld_override_optemplate_2` (`templateid`), CONSTRAINT `c_lld_override_optemplate_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE, CONSTRAINT `c_lld_override_optemplate_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_optemplate` -- LOCK TABLES `lld_override_optemplate` WRITE; /*!40000 ALTER TABLE `lld_override_optemplate` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_optemplate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lld_override_optrends` -- DROP TABLE IF EXISTS `lld_override_optrends`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `lld_override_optrends` ( `lld_override_operationid` bigint unsigned NOT NULL, `trends` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', PRIMARY KEY (`lld_override_operationid`), CONSTRAINT `c_lld_override_optrends_1` FOREIGN KEY (`lld_override_operationid`) REFERENCES `lld_override_operation` (`lld_override_operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lld_override_optrends` -- LOCK TABLES `lld_override_optrends` WRITE; /*!40000 ALTER TABLE `lld_override_optrends` DISABLE KEYS */; /*!40000 ALTER TABLE `lld_override_optrends` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `maintenance_tag` -- DROP TABLE IF EXISTS `maintenance_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `maintenance_tag` ( `maintenancetagid` bigint unsigned NOT NULL, `maintenanceid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `operator` int NOT NULL DEFAULT '2', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`maintenancetagid`), KEY `maintenance_tag_1` (`maintenanceid`), CONSTRAINT `c_maintenance_tag_1` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `maintenance_tag` -- LOCK TABLES `maintenance_tag` WRITE; /*!40000 ALTER TABLE `maintenance_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `maintenance_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `maintenances` -- DROP TABLE IF EXISTS `maintenances`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `maintenances` ( `maintenanceid` bigint unsigned NOT NULL, `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `maintenance_type` int NOT NULL DEFAULT '0', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `active_since` int NOT NULL DEFAULT '0', `active_till` int NOT NULL DEFAULT '0', `tags_evaltype` int NOT NULL DEFAULT '0', PRIMARY KEY (`maintenanceid`), UNIQUE KEY `maintenances_2` (`name`), KEY `maintenances_1` (`active_since`,`active_till`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `maintenances` -- LOCK TABLES `maintenances` WRITE; /*!40000 ALTER TABLE `maintenances` DISABLE KEYS */; /*!40000 ALTER TABLE `maintenances` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `maintenances_groups` -- DROP TABLE IF EXISTS `maintenances_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `maintenances_groups` ( `maintenance_groupid` bigint unsigned NOT NULL, `maintenanceid` bigint unsigned NOT NULL, `groupid` bigint unsigned NOT NULL, PRIMARY KEY (`maintenance_groupid`), UNIQUE KEY `maintenances_groups_1` (`maintenanceid`,`groupid`), KEY `maintenances_groups_2` (`groupid`), CONSTRAINT `c_maintenances_groups_1` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE, CONSTRAINT `c_maintenances_groups_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `maintenances_groups` -- LOCK TABLES `maintenances_groups` WRITE; /*!40000 ALTER TABLE `maintenances_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `maintenances_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `maintenances_hosts` -- DROP TABLE IF EXISTS `maintenances_hosts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `maintenances_hosts` ( `maintenance_hostid` bigint unsigned NOT NULL, `maintenanceid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, PRIMARY KEY (`maintenance_hostid`), UNIQUE KEY `maintenances_hosts_1` (`maintenanceid`,`hostid`), KEY `maintenances_hosts_2` (`hostid`), CONSTRAINT `c_maintenances_hosts_1` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE, CONSTRAINT `c_maintenances_hosts_2` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `maintenances_hosts` -- LOCK TABLES `maintenances_hosts` WRITE; /*!40000 ALTER TABLE `maintenances_hosts` DISABLE KEYS */; /*!40000 ALTER TABLE `maintenances_hosts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `maintenances_windows` -- DROP TABLE IF EXISTS `maintenances_windows`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `maintenances_windows` ( `maintenance_timeperiodid` bigint unsigned NOT NULL, `maintenanceid` bigint unsigned NOT NULL, `timeperiodid` bigint unsigned NOT NULL, PRIMARY KEY (`maintenance_timeperiodid`), UNIQUE KEY `maintenances_windows_1` (`maintenanceid`,`timeperiodid`), KEY `maintenances_windows_2` (`timeperiodid`), CONSTRAINT `c_maintenances_windows_1` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE, CONSTRAINT `c_maintenances_windows_2` FOREIGN KEY (`timeperiodid`) REFERENCES `timeperiods` (`timeperiodid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `maintenances_windows` -- LOCK TABLES `maintenances_windows` WRITE; /*!40000 ALTER TABLE `maintenances_windows` DISABLE KEYS */; /*!40000 ALTER TABLE `maintenances_windows` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media` -- DROP TABLE IF EXISTS `media`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media` ( `mediaid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `mediatypeid` bigint unsigned NOT NULL, `sendto` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `active` int NOT NULL DEFAULT '0', `severity` int NOT NULL DEFAULT '63', `period` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1-7,00:00-24:00', PRIMARY KEY (`mediaid`), KEY `media_1` (`userid`), KEY `media_2` (`mediatypeid`), CONSTRAINT `c_media_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_media_2` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media` -- LOCK TABLES `media` WRITE; /*!40000 ALTER TABLE `media` DISABLE KEYS */; /*!40000 ALTER TABLE `media` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_type` -- DROP TABLE IF EXISTS `media_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_type` ( `mediatypeid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `smtp_server` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `smtp_helo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `smtp_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `exec_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `gsm_modem` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `passwd` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '1', `smtp_port` int NOT NULL DEFAULT '25', `smtp_security` int NOT NULL DEFAULT '0', `smtp_verify_peer` int NOT NULL DEFAULT '0', `smtp_verify_host` int NOT NULL DEFAULT '0', `smtp_authentication` int NOT NULL DEFAULT '0', `exec_params` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `maxsessions` int NOT NULL DEFAULT '1', `maxattempts` int NOT NULL DEFAULT '3', `attempt_interval` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '10s', `content_type` int NOT NULL DEFAULT '1', `script` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '30s', `process_tags` int NOT NULL DEFAULT '0', `show_event_menu` int NOT NULL DEFAULT '0', `event_menu_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `event_menu_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `provider` int NOT NULL DEFAULT '0', PRIMARY KEY (`mediatypeid`), UNIQUE KEY `media_type_1` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_type` -- LOCK TABLES `media_type` WRITE; /*!40000 ALTER TABLE `media_type` DISABLE KEYS */; INSERT INTO `media_type` VALUES (1,0,'Email','mail.example.com','example.com','zabbix@example.com','','','','',1,25,0,0,0,0,'',1,3,'10s',0,'','30s',0,0,'','','',0),(3,2,'SMS','','','','','/dev/ttyS0','','',1,25,0,0,0,0,'',1,3,'10s',1,'','30s',0,0,'','','',0),(4,0,'Email (HTML)','mail.example.com','example.com','zabbix@example.com','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'','30s',0,0,'','','',0),(5,4,'Mattermost','','','','','','','',1,25,0,0,0,0,'',1,1,'10s',1,'var SEVERITY_COLORS = [\r\n \'#97AAB3\', \'#7499FF\', \'#FFC859\',\r\n \'#FFA059\', \'#E97659\', \'#E45959\'\r\n];\r\n\r\nvar RESOLVE_COLOR = \'#009900\';\r\n\r\nvar SEND_MODE_HANDLERS = {\r\n alarm: handlerAlarm,\r\n event: handlerEvent\r\n};\r\n\r\nif (!String.prototype.format) {\r\n String.prototype.format = function() {\r\n var args = arguments;\r\n\r\n return this.replace(/{(\\d+)}/g, function(match, number) {\r\n return number in args\r\n ? args[number]\r\n : match\r\n ;\r\n });\r\n };\r\n}\r\n\r\nfunction isEventProblem(params) {\r\n return params.event_value == 1\r\n && params.event_update_status == 0\r\n ;\r\n}\r\n\r\nfunction isEventUpdate(params) {\r\n return params.event_value == 1\r\n && params.event_update_status == 1\r\n ;\r\n}\r\n\r\nfunction isEventResolve(params) {\r\n return params.event_value == 0;\r\n}\r\n\r\nfunction getPermalink(mattermost_url, team_name, postid) {\r\n return \'{0}/{1}/pl/{2}\'.format(\r\n mattermost_url.replace(/\\/+$/, \'\'),\r\n team_name,\r\n postid\r\n );\r\n}\r\n\r\nfunction getChannel(send_to) {\r\n switch (true) {\r\n case /.+\\/#.+/.test(send_to):\r\n return getChannelByName(send_to);\r\n\r\n case /@.+/.test(send_to):\r\n return getDirectChannel(send_to);\r\n\r\n default:\r\n return getChannelByID(send_to);\r\n }\r\n}\r\n\r\nfunction getChannelByName(send_to) {\r\n var team_chan = send_to\r\n .trim()\r\n .split(\'/#\');\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.channel_byname.format(team_chan[0], team_chan[1]),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction getDirectChannel(send_to) {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var teamUser = send_to\r\n .trim()\r\n .split(\'/@\'),\r\n bot = getBotUser(),\r\n user = getUserByName(teamUser[1]);\r\n\r\n var resp = JSON.parse(req.post(\r\n Mattermost.direct_channel,\r\n JSON.stringify([bot.id, user.id])\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n resp.team_name = teamUser[0];\r\n\r\n return resp;\r\n}\r\n\r\nfunction getChannelByID(channelID) {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.get_channel.format(channelID),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction getBotUser() {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.bot_user,\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction getUserByName(userName) {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.user_byname.format(userName),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction getTeamByID(teamID) {\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Call {0}({1})\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(arguments)\r\n ));\r\n\r\n var resp = JSON.parse(req.get(\r\n Mattermost.get_team.format(teamID),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n Zabbix.log(5, \'[ Mattermost Webhook ] Result {0}: {1}\'.format(\r\n arguments.callee.name,\r\n JSON.stringify(resp)\r\n ));\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n return resp;\r\n}\r\n\r\nfunction createProblemURL(zabbix_url, triggerid, eventid, event_source) {\r\n var problem_url = \'\';\r\n if (event_source === \'0\') {\r\n problem_url = \'{0}/tr_events.php?triggerid={1}&eventid={2}\'\r\n .format(\r\n zabbix_url,\r\n triggerid,\r\n eventid\r\n );\r\n }\r\n else {\r\n problem_url = zabbix_url;\r\n }\r\n\r\n return problem_url;\r\n}\r\n\r\nfunction getTagValue(event_tags, key) {\r\n var pattern = new RegExp(\'(\' + key + \':.+)\');\r\n var tagValue = event_tags\r\n .split(\',\')\r\n .filter(function (v) {\r\n return v.match(pattern);\r\n })\r\n .map(function (v) {\r\n return v.split(\':\')[1];\r\n })[0]\r\n || 0;\r\n\r\n return tagValue;\r\n}\r\n\r\nfunction handlerAlarm(req, params) {\r\n var channel = getChannel(params.send_to);\r\n var fields = {\r\n channel_id: channel.id,\r\n props: {}\r\n };\r\n\r\n if (isEventProblem(params)) {\r\n var team_name = channel.team_name\r\n ? channel.team_name\r\n : getTeamByID(channel.team_id).name;\r\n\r\n fields.props.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var resp = JSON.parse(req.post(\r\n Mattermost.post_message,\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n result.tags.__mattermost_post_id = resp.id;\r\n result.tags.__mattermost_channel_id = channel.id;\r\n result.tags.__mattermost_channel_name = channel.name;\r\n result.tags.__mattermost_message_link = getPermalink(\r\n params.mattermost_url,\r\n team_name,\r\n resp.id\r\n );\r\n\r\n }\r\n else if (isEventUpdate(params)) {\r\n fields.root_id = getTagValue(params.event_tags, \'mattermost_post_id\');\r\n\r\n if (params.event_source === \'0\') {}\r\n fields.props.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_update_date,\r\n params.event_update_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),\r\n true\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(\r\n Mattermost.post_message, JSON.stringify(fields)\r\n )\r\n );\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n }\r\n else if (isEventResolve(params)) {\r\n fields.channel_id = getTagValue(params.event_tags, \'mattermost_channel_id\');\r\n fields.id = getTagValue(params.event_tags, \'mattermost_post_id\');\r\n fields.props.attachments = [\r\n createMessage(\r\n RESOLVE_COLOR,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var post_id = getTagValue(params.event_tags, \'mattermost_post_id\');\r\n\r\n resp = JSON.parse(req.put(\r\n Mattermost.chat_update.format(post_id),\r\n JSON.stringify(fields)\r\n )\r\n );\r\n\r\n if (req.getStatus() != 200) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n }\r\n}\r\n\r\nfunction handlerEvent(req, params) {\r\n var channel = getChannel(params.send_to);\r\n var fields = {\r\n channel_id: channel.id,\r\n props: {}\r\n };\r\n\r\n if (isEventProblem(params)) {\r\n var team_name = channel.team_name\r\n ? channel.team_name\r\n : getTeamByID(channel.team_id).name;\r\n\r\n fields.props.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n result.tags.__mattermost_channel_name = channel.name;\r\n result.tags.__mattermost_message_link = getPermalink(\r\n params.mattermost_url,\r\n team_name,\r\n resp.id\r\n );\r\n\r\n }\r\n else if (isEventUpdate(params)) {\r\n fields.props.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_update_date,\r\n params.event_update_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),\r\n false\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n\r\n }\r\n else if (isEventResolve(params)) {\r\n fields.props.attachments = [\r\n createMessage(\r\n RESOLVE_COLOR,\r\n params.event_recovery_date,\r\n params.event_recovery_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Mattermost.post_message, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 201) {\r\n throw \'[{0}] {1}\'.format(resp.status_code, resp.message);\r\n }\r\n }\r\n}\r\n\r\nfunction createMessage(\r\n event_severity_color,\r\n event_date,\r\n event_time,\r\n problem_url,\r\n isShort\r\n) {\r\n var message = {\r\n fallbac: params.alert_subject,\r\n title: params.alert_subject,\r\n color: event_severity_color,\r\n title_link: problem_url,\r\n footer: problem_url,\r\n\r\n fields: [\r\n {\r\n title: \'Host\',\r\n value: \'{0} [{1}]\'.format(params.host_name, params.host_ip),\r\n short: true\r\n },\r\n {\r\n title: \'Event time\',\r\n value: \'{0} {1}\'.format(event_date, event_time),\r\n short: true\r\n }\r\n ],\r\n };\r\n\r\n \r\n if (params.event_source === \'0\') {\r\n message.fields.push(\r\n {\r\n title: \'Severity\',\r\n value: params.event_severity,\r\n short: true\r\n },\r\n {\r\n title: \'Opdata\',\r\n value: params.event_opdata,\r\n short: true\r\n }\r\n );\r\n }\r\n\r\n if (!isShort && params.event_source === \'0\') {\r\n message.fields.push(\r\n {\r\n title: \'Event tags\',\r\n value: \'`{0}`\'.format(params.event_tags.replace(/__.+?:(.+?,|.+)/g, \'\') || \'None\'),\r\n short: true\r\n },\r\n {\r\n title: \'Trigger description\',\r\n value: params.trigger_description,\r\n short: true\r\n }\r\n );\r\n }\r\n\r\n if (params.event_source !== \'0\' || params.event_update_status === \'1\') {\r\n message.fields.push(\r\n {\r\n title: \'Details\',\r\n value: params.alert_message,\r\n short: false\r\n }\r\n );\r\n }\r\n\r\n return message;\r\n}\r\n\r\nfunction validateParams(params) {\r\n if (typeof params.bot_token !== \'string\' || params.bot_token.trim() === \'\') {\r\n throw \'Field \"bot_token\" cannot be empty\';\r\n }\r\n\r\n if (isNaN(params.event_id)) {\r\n throw \'Field \"event_id\" is not a number\';\r\n }\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \"\' + params.event_source + \'\".\\nMust be 0-3.\';\r\n }\r\n\r\n if (params.event_source !== \'0\') {\r\n params.event_nseverity = \'0\';\r\n params.event_severity = \'Not classified\';\r\n params.event_update_status = \'0\';\r\n params.send_mode = \'event\';\r\n }\r\n\r\n if (params.event_source === \'1\' || params.event_source === \'2\') {\r\n params.event_value = \'1\';\r\n }\r\n\r\n if (params.event_source === \'1\') {\r\n params.host_name = params.discovery_host_dns;\r\n params.host_ip = params.discovery_host_ip;\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n throw \'Incorrect \"event_nseverity\" parameter given: \' + params.event_nseverity + \'\\nMust be 0-5.\';\r\n }\r\n\r\n if (typeof params.event_severity !== \'string\' || params.event_severity.trim() === \'\') {\r\n throw \'Field \"event_severity\" cannot be empty\';\r\n }\r\n\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\') {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (typeof params.host_ip !== \'string\' || params.host_ip.trim() === \'\') {\r\n throw \'Field \"host_ip\" cannot be empty\';\r\n }\r\n\r\n if (typeof params.host_name !== \'string\' || params.host_name.trim() === \'\') {\r\n throw \'Field \"host_name\" cannot be empty\';\r\n }\r\n\r\n if (typeof params.mattermost_url !== \'string\' || params.mattermost_url.trim() === \'\') {\r\n throw \'Field \"mattermost_url\" cannot be empty\';\r\n }\r\n\r\n if (!/^(http|https):\\/\\/.+/.test(params.mattermost_url)) {\r\n throw \'Field \"mattermost_url\" must contain a schema\';\r\n }\r\n\r\n if ([\'alarm\', \'event\'].indexOf(params.send_mode) === -1) {\r\n throw \'Incorrect \"send_mode\" parameter given: \' + params.send_mode + \'\\nMust be \"alarm\" or \"event\".\';\r\n }\r\n\r\n if (typeof params.send_to !== \'string\' || params.send_to.trim() === \'\') {\r\n throw \'Field \"send_to\" cannot be empty\';\r\n }\r\n\r\n if (isNaN(params.trigger_id) && params.event_source === \'0\') {\r\n throw \'field \"trigger_id\" is not a number\';\r\n }\r\n\r\n if (typeof params.zabbix_url !== \'string\' || params.zabbix_url.trim() === \'\') {\r\n throw \'Field \"zabbix_url\" cannot be empty\';\r\n }\r\n\r\n if (!/^(http|https):\\/\\/.+/.test(params.zabbix_url)) {\r\n throw \'Field \"zabbix_url\" must contain a schema\';\r\n }\r\n\r\n}\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n validateParams(params);\r\n\r\n var req = new HttpRequest(),\r\n fields = {},\r\n result = {tags: {}};\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n req.addHeader(\'Content-Type: application/json; charset=utf-8\');\r\n req.addHeader(\'Authorization: Bearer \' + params.bot_token);\r\n\r\n params.mattermost_url = params.mattermost_url.replace(/\\/+$/, \'\');\r\n params.zabbix_url = params.zabbix_url.replace(/\\/+$/, \'\');\r\n\r\n var APIEndpoint = params.mattermost_url + \'/api/v4/\';\r\n\r\n var Mattermost = {\r\n post_message: APIEndpoint + \'posts\',\r\n get_channel: APIEndpoint + \'channels/{0}\',\r\n get_team: APIEndpoint + \'teams/{0}\',\r\n chat_update: APIEndpoint + \'posts/{0}\',\r\n direct_channel: APIEndpoint + \'channels/direct\',\r\n channel_byname: APIEndpoint + \'teams/name/{0}/channels/name/{1}\',\r\n user_byname: APIEndpoint + \'users/username/{0}\',\r\n bot_user: APIEndpoint + \'users/me\'\r\n\r\n };\r\n\r\n params.send_mode = params.send_mode.toLowerCase();\r\n params.send_mode = params.send_mode in SEND_MODE_HANDLERS\r\n ? params.send_mode\r\n : \'alarm\';\r\n\r\n SEND_MODE_HANDLERS[params.send_mode](req, params);\r\n\r\n if (params.event_source === \'0\') {\r\n return JSON.stringify(result);\r\n }\r\n else {\r\n return \'OK\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ Mattermost Webhook ] Mattermost notification failed: \' + error);\r\n throw \'Mattermost notification failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__mattermost_message_link}','Open in Mattermost: {EVENT.TAGS.__mattermost_channel_name}','',0),(6,4,'Opsgenie','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var method,\r\n Media = {\r\n params: {},\r\n name: \'\',\r\n labels: [],\r\n HTTPProxy: \'\',\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Media.params = params;\r\n Media.params.api += Media.params.api.endsWith(\'/\') ? \'\' : \'/\';\r\n Media.params.web += Media.params.web.endsWith(\'/\') ? \'\' : \'/\';\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n if (typeof HTTPProxy !== \'undefined\' && HTTPProxy.trim() !== \'\') {\r\n Media.HTTPProxy = HTTPProxy;\r\n }\r\n },\r\n\r\n setTags: function(event_tags_json) {\r\n if (typeof event_tags_json !== \'undefined\' && event_tags_json !== \'\'\r\n && event_tags_json !== \'{EVENT.TAGSJSON}\') {\r\n\r\n try {\r\n var tags = JSON.parse(event_tags_json),\r\n label;\r\n\r\n tags.forEach(function (tag) {\r\n if (typeof tag.tag === \'string\') {\r\n label = (tag.tag + (typeof tag.value !== \'undefined\'\r\n && tag.value !== \'\' ? (\':\' + tag.value) : \'\')).replace(/\\s/g, \'_\');\r\n Media.labels.push(label);\r\n }\r\n });\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Failed to parse \"event_tags_json\" param\');\r\n }\r\n }\r\n },\r\n\r\n request: function (method, query, data, allow_404) {\r\n if (typeof(allow_404) === \'undefined\') {\r\n allow_404 = false;\r\n }\r\n\r\n [\'api\', \'token\'].forEach(function (field) {\r\n if (typeof Media.params !== \'object\' || typeof Media.params[field] === \'undefined\'\r\n || Media.params[field] === \'\') {\r\n throw \'Required \' + Media.name + \' param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Media.params.api + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: \' + Media.params.token);\r\n request.setProxy(Media.HTTPProxy);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Failed to parse response.\');\r\n response = null;\r\n }\r\n }\r\n\r\n if ((request.getStatus() < 200 || request.getStatus() >= 300)\r\n && (!allow_404 || request.getStatus() !== 404)) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null) {\r\n if (typeof response.errors === \'object\' && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (typeof response.errorMessages === \'object\' && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n else if (typeof response.message === \'string\') {\r\n message += \': \' + response.message;\r\n }\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getAlertId: function (requestId) {\r\n status_counter = params.status_counter || 25; \r\n do {\r\n resp = Media.request(\'get\', \'requests/\' + requestId, undefined, true);\r\n status_counter -= 1; \r\n }\r\n while ( status_counter > 0 && \r\n ( \r\n typeof resp.response !== \'object\' || \r\n typeof resp.response.data === \'undefined\' ||\r\n resp.response.data.success === false &&\r\n !resp.response.data.status.includes(\"There is no open alert\") &&\r\n !resp.response.data.status.includes(\"Alert is already\")\r\n ) \r\n );\r\n\r\n if (typeof resp.response !== \'object\' || typeof resp.response.data === \'undefined\') {\r\n throw \'Cannot get \' + Media.name + \' issue ID. Check debug log for more information.\';\r\n }\r\n else if (resp.response.data.success === false ) {\r\n throw Media.name + \': Operation status (\' + resp.response.data.status + \')\';\r\n }\r\n\r\n return resp;\r\n }\r\n};\r\n\r\ntry {\r\n var result = {tags: {}},\r\n params = JSON.parse(value),\r\n media = {},\r\n fields = {},\r\n resp = {},\r\n responders = [],\r\n tags = [],\r\n required_params = [\r\n \'alert_subject\',\r\n \'alert_message\',\r\n \'event_id\',\r\n \'event_source\',\r\n \'event_value\',\r\n \'event_update_status\',\r\n \'opsgenie_api\',\r\n \'opsgenie_web\',\r\n \'opsgenie_token\'\r\n ],\r\n severities = [\r\n \'not_classified\',\r\n \'information\',\r\n \'warning\',\r\n \'average\',\r\n \'high\',\r\n \'disaster\',\r\n \'resolved\',\r\n \'default\'\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \"\' + key + \'\" cannot be empty.\';\r\n }\r\n if (key.startsWith(\'opsgenie_\')) {\r\n media[key.substring(9)] = params[key];\r\n }\r\n });\r\n\r\n // Possible values of event_source:\r\n // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \"\' + params.event_source + \'\".\\nMust be 0-3.\';\r\n }\r\n\r\n // Check event_value for trigger-based and internal events.\r\n // Possible values: 1 for problem, 0 for recovering\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check event_update_status only for trigger-based events.\r\n // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check event_id for a numeric value.\r\n if (isNaN(parseInt(params.event_id)) || params.event_id < 1) {\r\n throw \'Incorrect \"event_id\" parameter given: \' + params.event_id + \'\\nMust be a positive number.\';\r\n }\r\n\r\n if ((params.event_source === \'1\' || params.event_source === \'2\') && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for Trigger and Internal actions.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity]];\r\n params.zbxurl = params.zbxurl + (params.zbxurl.endsWith(\'/\') ? \'\' : \'/\');\r\n\r\n Media.name = \'Opsgenie\';\r\n Media.setParams(media);\r\n Media.params.token = \'GenieKey \' + Media.params.token;\r\n Media.setProxy(params.HTTPProxy);\r\n Media.setTags(params.event_tags_json); // Set Media.labels\r\n\r\n // Create an issue.\r\n // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).\r\n // Numeric value of the problem update status. Possible values:\r\n // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)\r\n || (params.event_source == 3 && params.event_value == 1)\r\n || params.event_source == 1 || params.event_source == 2) {\r\n fields.message = params.alert_subject;\r\n fields.alias = params.event_id;\r\n fields.description = params.alert_message;\r\n fields.priority = priority;\r\n fields.source = \'Zabbix\';\r\n\r\n if (params.event_source === \'0\') {\r\n fields.details = {\r\n \'Zabbix server\': params.zbxurl,\r\n Problem: params.zbxurl + \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id\r\n };\r\n }\r\n else {\r\n fields.details = {\'Zabbix server\': params.zbxurl};\r\n }\r\n\r\n if (typeof params.opsgenie_teams === \'string\') {\r\n responders = params.opsgenie_teams.split(\',\');\r\n fields.responders = responders.map(function(team) {\r\n return {type: \'team\', name: team.trim()};\r\n });\r\n }\r\n\r\n fields.tags = Media.labels;\r\n if (typeof params.opsgenie_tags === \'string\') {\r\n tags = params.opsgenie_tags.split(\',\');\r\n tags.forEach(function(item) {\r\n fields.tags.push(item.trim());\r\n });\r\n }\r\n\r\n resp = Media.request(\'post\', \'\', fields);\r\n if (typeof resp.response !== \'object\' || typeof resp.response.result === \'undefined\') {\r\n throw \'Cannot create \' + Media.name + \' issue. Check debug log for more information.\';\r\n }\r\n\r\n if (resp.status === 202) {\r\n resp = Media.getAlertId(resp.response.requestId);\r\n if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {\r\n result.tags.__zbx_ops_issuekey = resp.response.data.alertId;\r\n result.tags.__zbx_ops_issuelink = Media.params.web + \'alert/detail/\' + resp.response.data.alertId;\r\n }\r\n }\r\n else {\r\n throw Media.name + \' response code is unexpected. Check debug log for more information.\';\r\n }\r\n }\r\n // Update or close the created issue.\r\n else {\r\n fields.user = (params.event_value != 0) ? params.zbxuser : \'\';\r\n fields.note = params.alert_message;\r\n if ( [0, 3].indexOf(parseInt(params.event_source)) > -1 && params.event_value == 0 ) {\r\n // skip sending of close request from update operation(mandatory when both update & recovery operations are defined in action) \r\n method = params.event_update_status == 0 ? \"close\" : \"skip\";\r\n }\r\n else if ( params.event_source == 0 && params.event_value == 1 && params.event_update_status == 1 && params.event_update_action.includes(\'acknowledged\')) {\r\n method = params.event_update_action.includes(\'unacknowledged\') ? \"unacknowledge\" : \"acknowledge\";\r\n }\r\n else {\r\n method = \"notes\";\r\n }\r\n\r\n if (method !== \"skip\") {\r\n resp = Media.request(\'post\', params.event_id + \'/\' + method +\'?identifierType=alias\', fields);\r\n\r\n if (typeof resp.response !== \'object\' || typeof resp.response.result === \'undefined\') {\r\n throw \'Cannot update \' + Media.name + \' issue. Check debug log for more information.\';\r\n }\r\n\r\n if (resp.status === 202) {\r\n resp = Media.getAlertId(resp.response.requestId);\r\n }\r\n else {\r\n throw Media.name + \' response code is unexpected. Check debug log for more information.\';\r\n }\r\n }\r\n }\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ \' + Media.name + \' Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','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/6.2/manual/config/notifications/media/webhook#example_scripts.\r\n \r\nSet global macro {$ZABBIX.URL} with your Zabbix server URL.\r\nAdd dedicated user with media type \"Opsgenie\".\r\nChange the values of the variables opsgenie_api (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),\r\nopsgenie_web (for example, https://myzabbix.app.opsgenie.com), opsgenie_token.',0),(7,4,'PagerDuty','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'try {\r\n\r\n var params = JSON.parse(value),\r\n req = new HttpRequest(),\r\n fields = {},\r\n resp = \'\';\r\n\r\n // Correspondence between the PagerDuty and Zabbix severity level\r\n var severityMapping = [\r\n \'info\', // Not classified\r\n \'info\', // Information\r\n \'warning\', // Warning\r\n \'warning\', // Average\r\n \'error\', // High\r\n \'critical\' // Disaster\r\n ];\r\n\r\n if (!severityMapping[params.severity]) {\r\n params.severity = \'0\';\r\n }\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n if (isNaN(parseInt(params.eventid)) || params.eventid < 1) {\r\n throw \'incorrect value for variable \"eventid\". The value must be a positive number.\';\r\n }\r\n if (params.eventname.length < 1) {\r\n throw \'incorrect value for variable \"eventname\". The value must be a non-empty string.\';\r\n }\r\n if (isNaN(parseInt(params.severity)) || (params.severity < 0 && params.severity > 5)) {\r\n throw \'incorrect value for variable \"severity\". The value must be a number 0..5.\';\r\n }\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \"\' + params.event_source + \'\".\\nMust be 0-3.\';\r\n }\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.eventvalue !== \'0\' && params.eventvalue !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"eventvalue\" parameter given: \"\' + params.eventvalue + \'\".\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source === \'0\') {\r\n if (params.hostname.length < 1) {\r\n throw \'incorrect value for variable \"hostname\". The value must be a non-empty string.\';\r\n }\r\n if (isNaN(parseInt(params.triggerid)) || params.triggerid < 1) {\r\n throw \'incorrect value for variable \"triggerid\". The value must be a positive number.\';\r\n }\r\n if (params.eventack != \'Yes\' && params.eventack != \'No\') {\r\n throw \'incorrect value for variable \"eventack\". The value must be Yes or No.\';\r\n }\r\n if (isNaN(parseInt(params.eventupdate)) || (params.eventupdate < 0 || params.eventupdate > 1)) {\r\n throw \'incorrect value for variable \"eventupdate\". The value must be 0 or 1.\';\r\n }\r\n }\r\n\r\n\r\n\r\n req.addHeader(\'Content-Type: application/json\');\r\n\r\n fields.routing_key = params.token;\r\n fields.dedup_key = params.eventid;\r\n\r\n if (((params.eventvalue == 1) && (params.eventupdate == 0)) || params.event_source !== \'0\') {\r\n fields.event_action = \'trigger\';\r\n fields.payload = {\r\n summary: params.eventname,\r\n source: (params.event_source === \'1\') ? \'Discovery\' : params.hostname + \' : \' + params.hostip,\r\n severity: severityMapping[params.severity],\r\n };\r\n \r\n if (params.event_source === \'0\') {\r\n fields.payload.custom_details = {\r\n \'Event date\': params.eventdate,\r\n \'Event time\': params.eventtime,\r\n \'Trigger description\': params.triggerdesc,\r\n \'Trigger opdata\': params.triggeropdata,\r\n \'Event tags\': params.eventtags,\r\n \'Event host\': params.hostname,\r\n \'Event host ip\': params.hostip\r\n };\r\n fields.links = [{\r\n href: params.url + \'/tr_events.php?triggerid=\' + params.triggerid + \'&eventid=\' + params.eventid,\r\n text: \'Event link\'\r\n }];\r\n }\r\n else {\r\n fields.payload.custom_details = {\r\n \'Alert message\': params.alert_message\r\n };\r\n }\r\n\r\n fields.client = \'Zabbix\';\r\n fields.client_url = params.url;\r\n }\r\n else if ((params.eventvalue == 1) && (params.eventupdate == 1) && (params.eventack == \'Yes\'))\r\n fields.event_action = \'acknowledge\';\r\n else if (params.eventvalue == 0)\r\n fields.event_action = \'resolve\';\r\n else\r\n throw \'incorrect values. Update message without ack will not be sent.\';\r\n\r\n Zabbix.log(4, \'[PagerDuty Webhook] Sending request:\' + JSON.stringify(fields));\r\n resp = req.post(\'https://events.pagerduty.com/v2/enqueue\',\r\n JSON.stringify(fields)\r\n );\r\n Zabbix.log(4, \'[PagerDuty Webhook] Receiving response:\' + resp);\r\n\r\n try {\r\n resp = JSON.parse(resp);\r\n }\r\n catch (error) {\r\n throw \'incorrect response. PagerDuty returned a non-JSON object.\';\r\n }\r\n\r\n if (req.getStatus() != 202) {\r\n if (typeof resp === \'object\' && typeof resp.errors === \'object\' && typeof resp.errors[0] === \'string\') {\r\n throw resp.errors[0];\r\n }\r\n else {\r\n throw \'Unknown error.\';\r\n }\r\n }\r\n\r\n if (resp.status != \'success\') {\r\n throw \'Unknown error.\';\r\n }\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[PagerDuty Webhook] Notification failed : \' + error);\r\n throw \'PagerDuty notification failed : \' + error;\r\n}','30s',0,0,'','','Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/6.2/manual/config/notifications/media/webhook#example_scripts.\r\n \r\nSet global macro {$ZABBIX.URL} with your Zabbix server URL.\r\nAdd a dedicated user with the media type \"PagerDuty\" and place the integration key in the \"token\" parameter to integrate into the service.',0),(8,4,'Pushover','','','','','','','',1,25,0,0,0,0,'',0,3,'10s',1,'try {\r\n var params = JSON.parse(value),\r\n request = new HttpRequest(),\r\n data,\r\n response,\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(params.HTTPProxy);\r\n }\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \"\' + params.event_source + \'\".\\nMust be 0-3.\';\r\n }\r\n\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'priority_\' + severities[params.event_nseverity].name] || params.priority_default;\r\n\r\n if (isNaN(priority) || priority < -2 || priority > 2) {\r\n throw \'\"priority\" should be -2..2\';\r\n }\r\n\r\n if (params.event_source === \'0\' && isNaN(params.triggerid)) {\r\n throw \'field \"triggerid\" is not a number\';\r\n }\r\n\r\n if (isNaN(params.eventid)) {\r\n throw \'field \"eventid\" is not a number\';\r\n }\r\n\r\n if (typeof params.message !== \'string\' || params.message.trim() === \'\') {\r\n throw \'field \"message\" cannot be empty\';\r\n }\r\n\r\n data = {\r\n token: params.token,\r\n user: params.user,\r\n title: params.title,\r\n message: params.message,\r\n url: (params.event_source === \'0\') \r\n ? params.url + \'/tr_events.php?triggerid=\' + params.triggerid + \'&eventid=\' + params.eventid\r\n : params.url,\r\n url_title: params.url_title,\r\n priority: priority\r\n };\r\n\r\n if (priority == 2) {\r\n if (isNaN(params.retry) || params.retry < 30) {\r\n throw \'field \"retry\" should be a number with value of at least 30 if \"priority\" is set to 2\';\r\n }\r\n\r\n if (isNaN(params.expire) || params.expire > 10800) {\r\n throw \'field \"expire\" should be a number with value of at most 10800 if \"priority\" is set to 2\';\r\n }\r\n\r\n data.retry = params.retry;\r\n data.expire = params.expire;\r\n }\r\n\r\n data = JSON.stringify(data);\r\n Zabbix.log(4, \'[ Pushover Webhook ] Sending request: \' + params.endpoint + \'\\n\' + data);\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n response = request.post(params.endpoint, data);\r\n\r\n Zabbix.log(4, \'[ Pushover Webhook ] Received response with status code \' + request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Pushover Webhook ] Failed to parse response received from Pushover\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() != 200 || response === null || typeof response !== \'object\' || response.status !== 1) {\r\n if (response !== null && typeof response === \'object\' && typeof response.errors === \'object\'\r\n && typeof response.errors[0] === \'string\') {\r\n throw response.errors[0];\r\n }\r\n else {\r\n throw \'Unknown error. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ Pushover Webhook ] Pushover notification failed: \' + error);\r\n throw \'Pushover notification failed: \' + error;\r\n}','30s',0,0,'','','Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover\r\n\r\nSet token parameter with to your Pushover application key.\r\nWhen assigning Pushover media to the Zabbix user - add user key into send to field.',0),(9,4,'Slack','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var SEVERITY_COLORS = [\r\n \'#97AAB3\', \'#7499FF\', \'#FFC859\',\r\n \'#FFA059\', \'#E97659\', \'#E45959\'\r\n];\r\n\r\nvar RESOLVE_COLOR = \'#009900\';\r\n\r\nvar SLACK_MODE_HANDLERS = {\r\n alarm: handlerAlarm,\r\n event: handlerEvent\r\n};\r\n\r\n\r\nif (!String.prototype.format) {\r\n String.prototype.format = function() {\r\n var args = arguments;\r\n\r\n return this.replace(/{(\\d+)}/g, function(match, number) {\r\n return number in args\r\n ? args[number]\r\n : match\r\n ;\r\n });\r\n };\r\n}\r\n\r\nfunction isEventProblem(params) {\r\n return params.event_value == 1\r\n && params.event_update_status == 0\r\n ;\r\n}\r\n\r\nfunction isEventUpdate(params) {\r\n return params.event_value == 1\r\n && params.event_update_status == 1\r\n ;\r\n}\r\n\r\nfunction isEventResolve(params) {\r\n return params.event_value == 0;\r\n}\r\n\r\nfunction getPermalink(channelId, messageTimestamp) {\r\n var req = new HttpRequest();\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n req.addHeader(\'Content-Type: application/x-www-form-urlencoded; charset=utf-8\');\r\n req.addHeader(\'Authorization: Bearer \' + params.bot_token);\r\n\r\n var query = \'{0}?channel={1}&message_ts={2}\'.format(\r\n Slack.getPermalink,\r\n encodeURIComponent(channelId),\r\n encodeURIComponent(messageTimestamp)),\r\n resp = JSON.parse(req.get(query));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw \'message was created, but getting message link was failed with reason \"\' + resp.error + \'\"\';\r\n }\r\n\r\n return resp.permalink;\r\n}\r\n\r\nfunction createProblemURL(zabbix_url, triggerid, eventid, event_source) {\r\n var problem_url = \'\';\r\n if (event_source === \'0\') {\r\n problem_url = \'{0}/tr_events.php?triggerid={1}&eventid={2}\'\r\n .format(\r\n zabbix_url,\r\n triggerid,\r\n eventid\r\n );\r\n }\r\n else {\r\n problem_url = zabbix_url;\r\n }\r\n\r\n return problem_url;\r\n}\r\n\r\nfunction handlerAlarm(params) {\r\n var fields = {\r\n channel: params.channel,\r\n as_user: params.slack_as_user,\r\n };\r\n\r\n if (isEventProblem(params)) {\r\n fields.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n\r\n result.tags = {\r\n [\'__message_ts_\' + params.channel]: resp.ts,\r\n [\'__channel_id_\' + params.channel]: resp.channel,\r\n [\'__message_link_\' + params.channel]: getPermalink(resp.channel, resp.ts),\r\n };\r\n\r\n }\r\n else if (isEventUpdate(params)) {\r\n try {\r\n var channel_event_tags = JSON.parse(params.event_tags);\r\n } catch (error) {\r\n throw \'Cannot process event tags: \' + error;\r\n }\r\n\r\n if (Array.isArray(channel_event_tags)) {\r\n for (i in channel_event_tags) {\r\n if (channel_event_tags[i].tag.includes(\'__message_ts_\' + params.channel)) {\r\n fields.thread_ts = channel_event_tags[i].value;\r\n break;\r\n }\r\n }\r\n }\r\n\r\n fields.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_update_date,\r\n params.event_update_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),\r\n true\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n\r\n }\r\n else if (isEventResolve(params)) {\r\n\r\n fields.text = \'\';\r\n\r\n try {\r\n var channel_event_tags = JSON.parse(params.event_tags);\r\n } catch (error) {\r\n throw \'Cannot process event tags: \' + error;\r\n }\r\n\r\n if (Array.isArray(channel_event_tags)) {\r\n for (i in channel_event_tags) {\r\n if (channel_event_tags[i].tag.includes(\'__channel_id_\' + params.channel)) {\r\n fields.channel = channel_event_tags[i].value;\r\n continue;\r\n }\r\n if (channel_event_tags[i].tag.includes(\'__message_ts_\' + params.channel)) {\r\n fields.ts = channel_event_tags[i].value;\r\n }\r\n }\r\n }\r\n\r\n fields.attachments = [\r\n createMessage(\r\n RESOLVE_COLOR,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Slack.chatUpdate, JSON.stringify(fields)));\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n }\r\n}\r\n\r\nfunction handlerEvent(params) {\r\n var fields = {\r\n channel: params.channel,\r\n as_user: params.slack_as_user\r\n };\r\n\r\n if (isEventProblem(params)) {\r\n fields.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_date,\r\n params.event_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n\r\n result.tags = {\r\n [\'__message_link_\' + params.channel]: getPermalink(resp.channel, resp.ts)\r\n }\r\n\r\n }\r\n else if (isEventUpdate(params)) {\r\n fields.attachments = [\r\n createMessage(\r\n SEVERITY_COLORS[params.event_nseverity] || 0,\r\n params.event_update_date,\r\n params.event_update_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),\r\n false\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n\r\n }\r\n else if (isEventResolve(params)) {\r\n fields.attachments = [\r\n createMessage(\r\n RESOLVE_COLOR,\r\n params.event_recovery_date,\r\n params.event_recovery_time,\r\n createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)\r\n )\r\n ];\r\n\r\n resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));\r\n\r\n if (req.getStatus() != 200 || !resp.ok || resp.ok === \'false\') {\r\n throw resp.error;\r\n }\r\n }\r\n}\r\n\r\nfunction createMessage(\r\n event_severity_color,\r\n event_date,\r\n event_time,\r\n problem_url,\r\n isShort,\r\n messageText\r\n) {\r\n var message = {\r\n fallback: params.alert_subject,\r\n title: params.alert_subject,\r\n color: event_severity_color,\r\n title_link: problem_url,\r\n pretext: messageText || \'\',\r\n\r\n fields: [\r\n {\r\n title: \'Host\',\r\n value: \'{0} [{1}]\'.format(params.host_name, params.host_conn),\r\n short: true\r\n },\r\n {\r\n title: \'Event time\',\r\n value: \'{0} {1}\'.format(event_date, event_time),\r\n short: true\r\n }\r\n ],\r\n };\r\n\r\n if (params.event_source === \'0\') {\r\n message.fields.push(\r\n {\r\n title: \'Severity\',\r\n value: params.event_severity,\r\n short: true\r\n },\r\n {\r\n title: \'Opdata\',\r\n value: params.event_opdata,\r\n short: true\r\n }\r\n );\r\n }\r\n\r\n if (!isShort && params.event_source === \'0\') {\r\n message[\'actions\'] = [\r\n {\r\n type: \'button\',\r\n text: \'Open in Zabbix\',\r\n url: problem_url\r\n }\r\n ];\r\n\r\n message.fields.push(\r\n {\r\n title: \'Event tags\',\r\n value: JSON.parse(params.event_tags).filter(function (e) { return !e.tag.includes(\'__\') }).map(function (e) { return e.tag + \': \' + e.value }).join(\'\\n\') || \'None\',\r\n short: true\r\n },\r\n {\r\n title: \'Trigger description\',\r\n value: params.trigger_description,\r\n short: true\r\n }\r\n );\r\n }\r\n\r\n if (params.event_source !== \'0\' || params.event_update_status === \'1\') {\r\n message.fields.push(\r\n {\r\n title: \'Details\',\r\n value: params.alert_message,\r\n short: false\r\n }\r\n );\r\n }\r\n\r\n return message;\r\n}\r\n\r\nfunction validateParams(params) {\r\n if (typeof params.bot_token !== \'string\' || params.bot_token.trim() === \'\') {\r\n throw \'Field \"bot_token\" cannot be empty\';\r\n }\r\n\r\n if (typeof params.channel !== \'string\' || params.channel.trim() === \'\') {\r\n throw \'Field \"channel\" cannot be empty\';\r\n }\r\n\r\n if (isNaN(params.event_id)) {\r\n throw \'Field \"event_id\" is not a number\';\r\n }\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \"\' + params.event_source + \'\".\\nMust be 0-3.\';\r\n }\r\n\r\n if (params.event_source !== \'0\') {\r\n params.event_nseverity = \'0\';\r\n params.event_severity = \'Not classified\';\r\n params.event_update_status = \'0\';\r\n params.slack_mode = \'event\';\r\n }\r\n\r\n if (params.event_source === \'1\' || params.event_source === \'2\') {\r\n params.event_value = \'1\';\r\n }\r\n\r\n if (params.event_source === \'1\') {\r\n params.host_name = params.discovery_host_dns;\r\n params.host_ip = params.discovery_host_ip;\r\n }\r\n\r\n if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {\r\n throw \'Incorrect \"event_nseverity\" parameter given: \' + params.event_nseverity + \'\\nMust be 0-5.\';\r\n }\r\n\r\n if (typeof params.event_severity !== \'string\' || params.event_severity.trim() === \'\') {\r\n throw \'Field \"event_severity\" cannot be empty\';\r\n }\r\n\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\') {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (typeof params.host_conn !== \'string\' || params.host_conn.trim() === \'\') {\r\n throw \'Field \"host_conn\" cannot be empty\';\r\n }\r\n\r\n if (typeof params.host_name !== \'string\' || params.host_name.trim() === \'\') {\r\n throw \'Field \"host_name\" cannot be empty\';\r\n }\r\n\r\n if (!~[\'true\', \'false\'].indexOf(params.slack_as_user.toLowerCase())) {\r\n throw \'Incorrect \"slack_as_user\" parameter given: \' + params.slack_as_user + \'\\nMust be \"true\" or \"false\".\';\r\n }\r\n\r\n if (!~[\'alarm\', \'event\'].indexOf(params.slack_mode)) {\r\n throw \'Incorrect \"slack_mode\" parameter given: \' + params.slack_mode + \'\\nMust be \"alarm\" or \"event\".\';\r\n }\r\n\r\n if (isNaN(params.trigger_id) && params.event_source === \'0\') {\r\n throw \'field \"trigger_id\" is not a number\';\r\n }\r\n\r\n if (typeof params.zabbix_url !== \'string\' || params.zabbix_url.trim() === \'\') {\r\n throw \'Field \"zabbix_url\" cannot be empty\';\r\n }\r\n\r\n if (!/^(http|https):\\/\\/.+/.test(params.zabbix_url)) {\r\n throw \'Field \"zabbix_url\" must contain a schema\';\r\n }\r\n}\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n validateParams(params);\r\n\r\n var req = new HttpRequest(),\r\n result = {tags: {}};\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n req.addHeader(\'Content-Type: application/json; charset=utf-8\');\r\n req.addHeader(\'Authorization: Bearer \' + params.bot_token);\r\n\r\n var slack_endpoint = \'https://slack.com/api/\';\r\n\r\n var Slack = {\r\n postMessage: slack_endpoint + \'chat.postMessage\',\r\n getPermalink: slack_endpoint + \'chat.getPermalink\',\r\n chatUpdate: slack_endpoint + \'chat.update\'\r\n };\r\n\r\n params.slack_mode = params.slack_mode.toLowerCase();\r\n params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS\r\n ? params.slack_mode\r\n : \'alarm\';\r\n\r\n SLACK_MODE_HANDLERS[params.slack_mode](params);\r\n\r\n if (params.event_source === \'0\') {\r\n return JSON.stringify(result);\r\n }\r\n else {\r\n return \'OK\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ Slack Webhook ] Slack notification failed : \' + error);\r\n throw \'Slack notification failed : \' + error;\r\n}','30s',1,0,'','','',0),(10,4,'Discord','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var SEVERITY_COLORS = [\r\n \'#97AAB3\', // Not classified.\r\n \'#7499FF\', // Information.\r\n \'#FFC859\', // Warning.\r\n \'#FFA059\', // Average.\r\n \'#E97659\', // High.\r\n \'#E45959\', // Disaster.\r\n \'#009900\' // Resolved.\r\n];\r\n\r\nfunction stringTruncate(str, len) {\r\n return str.length > len ? str.substring(0, len - 3) + \'...\' : str;\r\n}\r\n\r\ntry {\r\n Zabbix.log(4, \'[ Discord Webhook ] Executed with params: \' + value);\r\n\r\n var params = JSON.parse(value);\r\n\r\n if (!params.discord_endpoint) {\r\n throw \'Cannot get discord_endpoint\';\r\n }\r\n else {\r\n params.discord_endpoint = params.discord_endpoint.replace(\'/api/\', \'/api/v7/\') + \'?wait=True\';\r\n }\r\n\r\n params.zabbix_url = (params.zabbix_url.endsWith(\'/\'))\r\n ? params.zabbix_url.slice(0, -1) : params.zabbix_url;\r\n\r\n if ([0, 1, 2, 3, 4].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \"\' + params.event_source + \'\".\\nMust be 0-4.\';\r\n }\r\n\r\n // Set params to true for non trigger-based events.\r\n if (params.event_source !== \'0\') {\r\n params.use_default_message = \'true\';\r\n params.event_nseverity = \'0\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \"\' + params.event_value + \'\".\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \"\' + params.event_update_status + \'\".\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_value == 0) {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n if (!SEVERITY_COLORS[params.event_nseverity]) {\r\n throw \'Incorrect \"event_nseverity\" parameter given: \' + params.event_nseverity + \'\\nMust be 0-5.\';\r\n }\r\n\r\n var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace(\'#\', \'\'), 16),\r\n fields = [],\r\n body = {\r\n embeds: [\r\n {\r\n color: color || 0,\r\n url: (params.event_source === \'0\')\r\n ? params.zabbix_url + \'/tr_events.php?triggerid=\' + params.trigger_id +\r\n \'&eventid=\' + params.event_id\r\n : params.zabbix_url\r\n }\r\n ]\r\n };\r\n\r\n // Default message from {ALERT.MESSAGE}.\r\n if (params.use_default_message.toLowerCase() == \'true\') {\r\n body.embeds[0].title = stringTruncate(params.alert_subject, 256);\r\n body.embeds[0].description = stringTruncate(params.alert_message, 2048);\r\n }\r\n else {\r\n fields.push(\r\n {\r\n name: \'Host\',\r\n value: params.host_name + \' [\' + params.host_ip + \']\'\r\n }\r\n );\r\n\r\n // Resolved message.\r\n if (params.event_value == 0 && params.event_update_status == 0) {\r\n body.embeds[0].title = stringTruncate(\'OK: \' + params.event_name, 256);\r\n fields.push(\r\n {\r\n name: \'Recovery time\',\r\n value: params.event_recovery_time + \' \' + params.event_recovery_date,\r\n inline: \'True\'\r\n }\r\n );\r\n }\r\n\r\n // Problem message.\r\n else if (params.event_value == 1 && params.event_update_status == 0) {\r\n body.embeds[0].title = stringTruncate(\'PROBLEM: \' + params.event_name, 256);\r\n fields.push(\r\n {\r\n name: \'Event time\',\r\n value: params.event_time + \' \' + params.event_date,\r\n inline: \'True\'\r\n }\r\n );\r\n }\r\n\r\n // Update message.\r\n else if (params.event_update_status == 1) {\r\n body.embeds[0].title = stringTruncate(\'UPDATE: \' + params.event_name, 256);\r\n body.embeds[0].description = params.event_update_user + \' \' + params.event_update_action + \'.\';\r\n\r\n if (params.event_update_message) {\r\n body.embeds[0].description += \' Comment:\\n>>> \' + params.event_update_message;\r\n }\r\n\r\n body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);\r\n\r\n fields.push(\r\n {\r\n name: \'Event update time\',\r\n value: params.event_update_time + \' \' + params.event_update_date,\r\n inline: \'True\'\r\n }\r\n );\r\n }\r\n\r\n fields.push(\r\n {\r\n name: \'Severity\',\r\n value: params.event_severity,\r\n inline: \'True\'\r\n }\r\n );\r\n\r\n if (params.event_opdata) {\r\n fields.push(\r\n {\r\n name: \'Operational data\',\r\n value: stringTruncate(params.event_opdata, 1024),\r\n inline: \'True\'\r\n }\r\n );\r\n }\r\n\r\n if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {\r\n fields.push(\r\n {\r\n name: \'Trigger description\',\r\n value: stringTruncate(params.trigger_description, 1024)\r\n }\r\n );\r\n }\r\n\r\n body.embeds[0].footer = {\r\n text: \'Event ID: \' + params.event_id\r\n };\r\n\r\n if (params.event_tags) {\r\n body.embeds[0].footer.text += \'\\nEvent tags: \' + params.event_tags;\r\n }\r\n body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);\r\n }\r\n\r\n if (fields.length > 0) {\r\n body.embeds[0].fields = fields;\r\n }\r\n\r\n var req = new HttpRequest();\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n\r\n req.addHeader(\'Content-Type: application/json\');\r\n\r\n var resp = req.post(params.discord_endpoint, JSON.stringify(body)),\r\n data = JSON.parse(resp);\r\n\r\n Zabbix.log(4, \'[ Discord Webhook ] JSON: \' + JSON.stringify(body));\r\n Zabbix.log(4, \'[ Discord Webhook ] Response: \' + resp);\r\n\r\n if (data.id) {\r\n return resp;\r\n }\r\n else {\r\n var message = ((typeof data.message === \'string\') ? data.message : \'Unknown error\');\r\n\r\n Zabbix.log(3, \'[ Discord Webhook ] FAILED with response: \' + resp);\r\n throw message + \'. For more details check zabbix server log.\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Discord Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',0,0,'','','',0),(11,4,'SIGNL4','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'// SIGNL4 Webhook\r\ntry {\r\n var response,\r\n payload,\r\n params = JSON.parse(value),\r\n endpoint = \'https://connect.signl4.com/webhook/\',\r\n request = new HttpRequest();\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(params.HTTPProxy);\r\n }\r\n\r\n if (typeof params.teamsecret === \'string\' && params.teamsecret.trim() !== \'\') {\r\n endpoint += params.teamsecret;\r\n delete params.teamsecret;\r\n }\r\n else {\r\n throw \'The team secret of your SIGNL4 team cannot be empty.\';\r\n }\r\n\r\n if (typeof params.Severity === \'string\' && params.Severity === \'{EVENT.SEVERITY}\') {\r\n params.Severity = \'Not classified\';\r\n }\r\n\r\nif (typeof params.User === \'string\' && params.User === \'{USER.FULLNAME}\') {\r\n params.User = \'\';\r\n }\r\n\r\nif (typeof params.Event_Update_Action === \'string\' && params.Event_Update_Action === \'{EVENT.UPDATE.ACTION}\') {\r\n params.Event_Update_Action = \'\';\r\n }\r\n\r\n// Assemble X-S4-ExternalID for two-way integration\r\n// Format: \"ZabbixEventID: 222 ZabbixURL: https://your-zabbix-server/zabbix/\"\r\nparams[\'X-S4-ExternalID\'] = \'ZabbixEventID: \' + params.Event_ID;\r\nif (typeof params.Zabbix_URL === \'string\' && params.Zabbix_URL.indexOf(\'http\') == 0) {\r\n// Make sure the URL ends with \'/\'\r\nif (params.Zabbix_URL.charAt(params.Zabbix_URL.length - 1) != \'/\') {\r\nparams.Zabbix_URL = params.Zabbix_URL + \'/\';\r\n}\r\n\r\nparams[\'X-S4-ExternalID\'] = params[\'X-S4-ExternalID\'] + \' ZabbixURL: \' + params.Zabbix_URL;\r\n\r\n// Add Link parameter\r\nparams[\'Link\'] = params.Zabbix_URL + \"tr_events.php?triggerid=\"+params.Trigger_ID + \"&eventid=\" + params.Event_ID;\r\n}\r\n\r\n// Check if this is a new problem or a recovery\r\nif (params.Trigger_Status == \'OK\') {\r\nparams[\'X-S4-Status\'] = \'resolved\';\r\n}\r\nelse {\r\nparams[\'X-S4-Status\'] = \'new\';\r\n}\r\n\r\n payload = JSON.stringify(params);\r\n Zabbix.log(4, \'[ SIGNL4 Webhook ] Sending request: \' + payload);\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n response = request.post(endpoint, \'payload=\' + payload);\r\n\r\n Zabbix.log(4, \'[ SIGNL4 Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response\r\n );\r\n\r\n if (request.getStatus() !== 201) {\r\n throw \'Request failed with status code \' + request.getStatus() +\r\n \'. Check debug log for more information.\';\r\n }\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ SIGNL4 Webhook ] ERROR: \' + error);\r\n\r\n throw \'Sending failed: \' + error;\r\n}','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.\r\n\r\nGet the app at https://www.signl4.com.\r\n\r\nFind out more including an integration video here: https://www.signl4.com/blog/portfolio_item/zabbix-mobile-alert-notification-duty-schedule-escalation/',0),(12,4,'Jira','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Jira = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Jira.params = params;\r\n if (typeof Jira.params.url === \'string\') {\r\n if (!Jira.params.url.endsWith(\'/\')) {\r\n Jira.params.url += \'/\';\r\n }\r\n\r\n Jira.params.url += \'rest/api/latest/\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Jira.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setTags: function(event_tags_json) {\r\n if (typeof event_tags_json !== \'undefined\' && event_tags_json !== \'\'\r\n && event_tags_json !== \'{EVENT.TAGSJSON}\') {\r\n try {\r\n var tags = JSON.parse(event_tags_json),\r\n label;\r\n\r\n Jira.labels = [];\r\n\r\n tags.forEach(function (tag) {\r\n if (typeof tag.tag !== \'undefined\' && typeof tag.value !== \'undefined\'\r\n && !tag.tag.startsWith(\'__zbx\')) {\r\n label = (tag.tag + (tag.value ? (\':\' + tag.value) : \'\')).replace(/\\s/g, \'_\');\r\n if (label.length < 256) {\r\n Jira.labels.push(label);\r\n }\r\n }\r\n });\r\n }\r\n catch (error) {\r\n // Code is not missing here.\r\n }\r\n }\r\n },\r\n\r\n escapeMarkup: function (str) {\r\n var length = str.length,\r\n result = \'\',\r\n markup = [\'{\', \'|\', \'}\', \'~\', \'_\', \'\\\\\', \'[\', \']\', \'^\', \'<\', \'>\', \'?\', \'!\', \'#\', \'+\', \'*\', \'&\'];\r\n\r\n for (var i = 0; i < length; i++) {\r\n var char = str[i];\r\n\r\n result += (markup.indexOf(char) !== -1) ? (\'&#\' + str[i].charCodeAt() + \';\') : char;\r\n }\r\n\r\n return result;\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n var schema = Jira.getSchema(),\r\n path = [\'projects\', 0, \'issuetypes\', 0, \'fields\'],\r\n field;\r\n\r\n while ((field = path.shift()) !== undefined) {\r\n schema = schema[field];\r\n if (typeof schema === \'undefined\') {\r\n schema = null;\r\n break;\r\n }\r\n }\r\n\r\n if (schema) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (typeof schema[field] === \'object\' && typeof schema[field].schema === \'object\') {\r\n switch (schema[field].schema.type) {\r\n case \'number\':\r\n data.fields[field] = parseInt(fields[field]);\r\n break;\r\n\r\n case \'datetime\':\r\n if (fields[field].match(/\\d+[.-]\\d+[.-]\\d+T\\d+:\\d+:\\d+/) !== null) {\r\n data.fields[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n break;\r\n\r\n case \'option\':\r\n data.fields[field] = {value: fields[field]};\r\n break;\r\n\r\n case \'array\':\r\n if (schema[field].schema.items === \'option\') {\r\n data.fields[field] = [{value: fields[field]}];\r\n }\r\n else {\r\n data.fields[field] = [fields[field]];\r\n }\r\n break;\r\n\r\n default:\r\n data.fields[field] = fields[field];\r\n }\r\n }\r\n });\r\n }\r\n else {\r\n Zabbix.log(4, \'[ Jira Webhook ] Failed to retrieve field schema.\');\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'user\', \'password\', \'project_key\', \'issue_type\'].forEach(function (field) {\r\n if (typeof Jira.params !== \'object\' || typeof Jira.params[field] === \'undefined\'\r\n || Jira.params[field] === \'\' ) {\r\n throw \'Required Jira param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Jira.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Jira.params.user + \':\' + Jira.params.password));\r\n\r\n if (typeof Jira.HTTPProxy !== \'undefined\' && Jira.HTTPProxy !== \'\') {\r\n request.setProxy(Jira.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Webhook ] Sending request: \' + url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Webhook ] Received response with status code \' + request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Jira Webhook ] Failed to parse response received from Jira\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessages !== \'undefined\'\r\n && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getSchema: function() {\r\n var result = Jira.request(\'get\', \'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=\' +\r\n encodeURIComponent(Jira.params.project_key) + \'&issuetypeNames=\' +\r\n encodeURIComponent(Jira.params.issue_type));\r\n\r\n return result.response;\r\n },\r\n\r\n createIssue: function(summary, description, fields) {\r\n var data = {\r\n fields: {\r\n project: {\r\n key: Jira.params.project_key\r\n },\r\n issuetype: {\r\n name: Jira.params.issue_type\r\n },\r\n summary: summary,\r\n description: description\r\n }\r\n };\r\n\r\n if (Jira.labels && Jira.labels.length > 0) {\r\n data.fields.labels = Jira.labels;\r\n }\r\n var result = Jira.request(\'post\', \'issue\', Jira.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.key === \'undefined\') {\r\n throw \'Cannot create Jira issue. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.key;\r\n },\r\n\r\n updateIssue: function(summary, fields, update) {\r\n var data = {fields: {}};\r\n\r\n if (summary) {\r\n data.fields.summary = summary;\r\n }\r\n\r\n Jira.request(\'put\', \'issue/\' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));\r\n Jira.commentIssue(update);\r\n },\r\n\r\n commentIssue: function(update) {\r\n var data = {};\r\n\r\n if (typeof update === \'string\') {\r\n data.body = update;\r\n Jira.request(\'post\', \'issue/\' + encodeURIComponent(Jira.params.issue_key) + \'/comment\', data);\r\n }\r\n else if (update.status === \'1\') {\r\n data.body = update.user + \' \' + update.action + \'.\';\r\n\r\n if (update.message) {\r\n data.body += \'\\nMessage: {quote}\' + Jira.escapeMarkup(update.message) + \'{quote}\';\r\n }\r\n\r\n Jira.request(\'post\', \'issue/\' + encodeURIComponent(Jira.params.issue_key) + \'/comment\', data);\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n jira = {},\r\n update = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'summary\', \'event_recovery_value\', \'event_source\', \'event_value\'];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'jira_\')) {\r\n jira[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n fields[key] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n Jira.setParams(jira);\r\n Jira.setProxy(params.HTTPProxy);\r\n Jira.setTags(params.event_tags_json);\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n Jira.createIssue(params.alert_subject, params.alert_message);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && update.status === \'0\' && !jira.issue_key.startsWith(jira.project_key)) {\r\n var key = Jira.createIssue(params.alert_subject,\r\n (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);\r\n\r\n\r\n result.tags.__zbx_jira_issuekey = key;\r\n result.tags.__zbx_jira_issuelink = params.jira_url +\r\n (params.jira_url.endsWith(\'/\') ? \'\' : \'/\') + \'browse/\' + key;\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n if (!jira.issue_key.startsWith(jira.project_key)) {\r\n throw \'Incorrect Issue key given: \' + jira.issue_key;\r\n }\r\n Jira.updateIssue(params.alert_subject, fields,\r\n ((params.event_value === \'0\' && !Object.keys(fields).length)\r\n ? params.alert_message : update));\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Jira Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_jira_issuelink}','Jira: {EVENT.TAGS.__zbx_jira_issuekey}','',0),(13,4,'Jira with CustomFields','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Jira = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Jira.params = params;\r\n if (typeof Jira.params.url === \'string\') {\r\n if (!Jira.params.url.endsWith(\'/\')) {\r\n Jira.params.url += \'/\';\r\n }\r\n\r\n Jira.params.url += \'rest/api/latest/\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Jira.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setTags: function(event_tags_json) {\r\n if (typeof event_tags_json !== \'undefined\' && event_tags_json !== \'\'\r\n && event_tags_json !== \'{EVENT.TAGSJSON}\') {\r\n try {\r\n var tags = JSON.parse(event_tags_json),\r\n label;\r\n\r\n Jira.labels = [];\r\n\r\n tags.forEach(function (tag) {\r\n if (typeof tag.tag !== \'undefined\' && typeof tag.value !== \'undefined\' ) {\r\n label = (tag.tag + (tag.value ? (\':\' + tag.value) : \'\')).replace(/\\s/g, \'_\');\r\n if (label.length < 256) {\r\n Jira.labels.push(label);\r\n }\r\n }\r\n });\r\n }\r\n catch (error) {\r\n // Code is not missing here.\r\n }\r\n }\r\n },\r\n\r\n escapeMarkup: function (str) {\r\n var length = str.length,\r\n result = \'\',\r\n markup = [\'{\', \'|\', \'}\', \'~\', \'_\', \'\\\\\', \'[\', \']\', \'^\', \'<\', \'>\', \'?\', \'!\', \'#\', \'+\', \'*\', \'&\'];\r\n\r\n for (var i = 0; i < length; i++) {\r\n var char = str[i];\r\n\r\n result += (markup.indexOf(char) !== -1) ? (\'&#\' + str[i].charCodeAt() + \';\') : char;\r\n }\r\n\r\n return result;\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n var schema = Jira.getSchema(),\r\n path = [\'projects\', 0, \'issuetypes\', 0, \'fields\'],\r\n field;\r\n\r\n while ((field = path.shift()) !== undefined) {\r\n schema = schema[field];\r\n if (typeof schema === \'undefined\') {\r\n schema = null;\r\n break;\r\n }\r\n }\r\n\r\n if (schema) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n data.fields[field] = fields[field];\r\n\r\n if (typeof schema[field] === \'object\' && typeof schema[field].schema === \'object\'\r\n && (schema[field].schema.type === \'number\' || schema[field].schema.type === \'datetime\')) {\r\n switch (schema[field].schema.type) {\r\n case \'number\':\r\n data.fields[field] = parseInt(fields[field]);\r\n break;\r\n\r\n case \'datetime\':\r\n if (fields[field].match(/\\d+[.-]\\d+[.-]\\d+T\\d+:\\d+:\\d+/) !== null) {\r\n data.fields[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n else {\r\n delete data.fields[field];\r\n }\r\n break;\r\n }\r\n }\r\n });\r\n }\r\n else {\r\n Zabbix.log(4, \'[ Jira Webhook ] Failed to retrieve field schema.\');\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'user\', \'password\', \'project_key\', \'issue_type\'].forEach(function (field) {\r\n if (typeof Jira.params !== \'object\' || typeof Jira.params[field] === \'undefined\'\r\n || Jira.params[field] === \'\' ) {\r\n throw \'Required Jira param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Jira.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Jira.params.user + \':\' + Jira.params.password));\r\n\r\n if (typeof Jira.HTTPProxy !== \'undefined\' && Jira.HTTPProxy !== \'\') {\r\n request.setProxy(Jira.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Webhook ] Sending request: \' + url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Webhook ] Received response with status code \' + request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Jira Webhook ] Failed to parse response received from Jira\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessages !== \'undefined\'\r\n && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getSchema: function() {\r\n var result = Jira.request(\'get\', \'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=\' +\r\n Jira.params.project_key + \'&issuetypeNames=\' + Jira.params.issue_type);\r\n\r\n return result.response;\r\n },\r\n\r\n createIssue: function(summary, description, fields) {\r\n var data = {\r\n fields: {\r\n project: {\r\n key: Jira.params.project_key\r\n },\r\n issuetype: {\r\n name: Jira.params.issue_type\r\n },\r\n summary: summary,\r\n description: description\r\n }\r\n };\r\n\r\n if (Jira.labels && Jira.labels.length > 0) {\r\n data.fields.labels = Jira.labels;\r\n }\r\n var result = Jira.request(\'post\', \'issue\', Jira.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.key === \'undefined\') {\r\n throw \'Cannot create Jira issue. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.key;\r\n },\r\n\r\n updateIssue: function(summary, fields, update) {\r\n var data = {fields: {}};\r\n\r\n if (summary) {\r\n data.fields.summary = summary;\r\n }\r\n\r\n Jira.request(\'put\', \'issue/\' + Jira.params.issue_key, Jira.addCustomFields(data, fields));\r\n Jira.commentIssue(update);\r\n },\r\n\r\n commentIssue: function(update) {\r\n var data = {};\r\n\r\n if (typeof update === \'string\') {\r\n data.body = update;\r\n Jira.request(\'post\', \'issue/\' + Jira.params.issue_key + \'/comment\', data);\r\n }\r\n else if (update.status === \'1\') {\r\n data.body = update.user + \' \' + update.action + \'.\';\r\n\r\n if (update.message) {\r\n data.body += \'\\nMessage: {quote}\' + Jira.escapeMarkup(update.message) + \'{quote}\';\r\n }\r\n\r\n Jira.request(\'post\', \'issue/\' + Jira.params.issue_key + \'/comment\', data);\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n jira = {},\r\n update = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'summary\', \'event_recovery_value\', \'event_source\', \'event_value\'];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'jira_\')) {\r\n jira[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n fields[key] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n Jira.setParams(jira);\r\n Jira.setProxy(params.HTTPProxy);\r\n Jira.setTags(params.event_tags_json);\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n Jira.createIssue(params.alert_subject, params.alert_message);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && update.status === \'0\' && !jira.issue_key.startsWith(jira.project_key)) {\r\n var key = Jira.createIssue(params.alert_subject,\r\n (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);\r\n\r\n\r\n result.tags.__zbx_jira_issuekey = key;\r\n result.tags.__zbx_jira_issuelink = params.jira_url +\r\n (params.jira_url.endsWith(\'/\') ? \'\' : \'/\') + \'browse/\' + key;\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n if (!jira.issue_key.startsWith(jira.project_key)) {\r\n throw \'Incorrect Issue key given: \' + jira.issue_key;\r\n }\r\n Jira.updateIssue(params.alert_subject, fields,\r\n ((params.event_value === \'0\' && !Object.keys(fields).length)\r\n ? params.alert_message : update));\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Jira Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_jira_issuelink}','Jira: {EVENT.TAGS.__zbx_jira_issuekey}','',0),(14,4,'MS Teams','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var SEVERITY_COLORS = [\r\n \'#97AAB3\', // Not classified.\r\n \'#7499FF\', // Information.\r\n \'#FFC859\', // Warning.\r\n \'#FFA059\', // Average.\r\n \'#E97659\', // High.\r\n \'#E45959\', // Disaster.\r\n \'#009900\', // Resolved.\r\n \'#000000\' // Default.\r\n];\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n if (typeof params.teams_endpoint !== \'string\' || params.teams_endpoint.trim() === \'\') {\r\n throw \'Cannot get teams_endpoint\';\r\n }\r\n else if (!params.teams_endpoint.startsWith(\'http\')) {\r\n throw \'Invalid MS Teams webhook URL: \' + params.teams_endpoint;\r\n }\r\n\r\n params.zabbix_url = (params.zabbix_url.endsWith(\'/\'))\r\n ? params.zabbix_url.slice(0, -1) : params.zabbix_url;\r\n\r\n if ([0, 1, 2, 3, 4].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \"\' + params.event_source + \'\".\\nMust be 0-4.\';\r\n }\r\n\r\n // Set \"use_default_message\" to true for non trigger-based events.\r\n if (params.event_source !== \'0\') {\r\n params.use_default_message = \'true\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \"\' + params.event_value + \'\".\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \"\' + params.event_update_status + \'\".\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_value == 0) {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n if (!SEVERITY_COLORS[params.event_nseverity]) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n var request = new HttpRequest(),\r\n facts = [],\r\n body = {\r\n themeColor: SEVERITY_COLORS[params.event_nseverity].replace(\'#\', \'\'),\r\n summary: params.alert_subject,\r\n sections: [\r\n {\r\n markdown: \'false\',\r\n activityTitle: params.alert_subject,\r\n text: (params.use_default_message.toLowerCase() == \'true\')\r\n ? params.alert_message\r\n : params.trigger_description\r\n }\r\n ],\r\n potentialAction: [\r\n {\r\n \'@type\': \'OpenUri\',\r\n name: (params.event_source === \'0\')\r\n ? \'Event Info\'\r\n : \'Zabbix Home\',\r\n targets: [\r\n {\r\n os: \'default\',\r\n uri: (params.event_source === \'0\')\r\n ? params.zabbix_url + \'/tr_events.php?triggerid=\' +\r\n params.trigger_id + \'&eventid=\' + params.event_id\r\n : params.zabbix_url\r\n }\r\n ]\r\n }\r\n ]\r\n };\r\n\r\n if (params.use_default_message.toLowerCase() !== \'true\') {\r\n // Problem message.\r\n if (params.event_value === \'1\' && params.event_update_status === \'0\') {\r\n facts.push({\r\n name: \'Event time\',\r\n value: params.event_time + \' \' + params.event_date\r\n });\r\n facts.push({\r\n name: \'Host\',\r\n value: params.host_name + \' [\' + params.host_ip + \']\'\r\n });\r\n\r\n }\r\n // Update message.\r\n else if (params.event_update_status === \'1\') {\r\n body.sections[0].text = params.event_update_user + \' \' + params.event_update_action + \'.\';\r\n\r\n if (params.event_update_message) {\r\n body.sections[0].text += \'
Message:
\' + params.event_update_message;\r\n }\r\n\r\n facts.push({\r\n name: \'Event update time\',\r\n value: params.event_update_time + \' \' + params.event_update_date\r\n });\r\n facts.push({\r\n name: \'Host\',\r\n value: params.host_name + \' [\' + params.host_ip + \']\'\r\n });\r\n\r\n }\r\n // Resolved message.\r\n else {\r\n facts.push({\r\n name: \'Recovery time\',\r\n value: params.event_recovery_time + \' \' + params.event_recovery_date\r\n });\r\n facts.push({\r\n name: \'Host\',\r\n value: params.host_name + \' [\' + params.host_ip + \']\'\r\n });\r\n }\r\n\r\n if (params.event_severity && params.event_severity !== \'{EVENT.SEVERITY}\') {\r\n facts.push({\r\n name: \'Severity\',\r\n value: params.event_severity\r\n });\r\n }\r\n\r\n\r\n if (params.event_opdata && params.event_opdata !== \'{EVENT.OPDATA}\') {\r\n facts.push({\r\n name: \'Operational data\',\r\n value: params.event_opdata\r\n });\r\n }\r\n\r\n if (params.event_tags && params.event_tags !== \'{EVENT.TAGS}\') {\r\n facts.push({\r\n name: \'Event tags\',\r\n value: params.event_tags\r\n });\r\n }\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'fact_\') && params[key] !== \'\') {\r\n facts.push({\r\n name: key.substring(5),\r\n value: params[key]\r\n });\r\n }\r\n else if (key.startsWith(\'openUri_\') && params[key] !== \'\' && !params[key].startsWith(\'{\')) {\r\n body.potentialAction.push({\r\n \'@type\': \'OpenUri\',\r\n name: key.substring(8),\r\n targets: [\r\n {\r\n os: \'default\',\r\n uri: params[key]\r\n }\r\n ]\r\n });\r\n }\r\n });\r\n body.sections[0].facts = facts;\r\n }\r\n\r\n body.sections[0].text = body.sections[0].text.replace(/(?:\\r\\n|\\r|\\n)/g, \'
\');\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy !== \'\') {\r\n request.setProxy(params.HTTPProxy);\r\n }\r\n\r\n Zabbix.log(4, \'[ MS Teams Webhook ] JSON: \' + JSON.stringify(body));\r\n\r\n var response = request.post(params.teams_endpoint, JSON.stringify(body));\r\n\r\n Zabbix.log(4, \'[ MS Teams Webhook ] Response: \' + response);\r\n\r\n if (response === \'1\') {\r\n return \'OK\';\r\n }\r\n else {\r\n Zabbix.log(4, \'[ MS Teams Webhook ] FAILED with response: \' + response);\r\n throw response;\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ MS Teams Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',0,0,'','','',0),(15,4,'Redmine','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Redmine = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Redmine.params = params;\r\n if (typeof Redmine.params.url === \'string\') {\r\n if (!Redmine.params.url.endsWith(\'/\')) {\r\n Redmine.params.url += \'/\';\r\n }\r\n }\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n\r\n data.issue.custom_fields = [];\r\n Object.keys(fields)\r\n .forEach(function (field) {\r\n var field_value = fields[field];\r\n\r\n if (field_value !== undefined) {\r\n data.issue.custom_fields.push({ id: field, value: field_value });\r\n }\r\n });\r\n\r\n }\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'access_key\'].forEach(function (field) {\r\n if (typeof Redmine.params !== \'object\' || typeof Redmine.params[field] === \'undefined\'\r\n || Redmine.params[field] === \'\' ) {\r\n throw \'Required param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Redmine.params.url + query,\r\n request = new HttpRequest();\r\n\r\n if (typeof Redmine.HTTPProxy === \'string\' && Redmine.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(Redmine.HTTPProxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-Redmine-API-Key: \' + Redmine.params.access_key);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Redmine Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Redmine Webhook ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Redmine Webhook ] Failed to parse response received from Redmine\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessages !== \'undefined\'\r\n && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getProjectID: function(name) {\r\n var result = Redmine.request(\'get\', \'projects.json\'),\r\n project_id;\r\n\r\n if (result.response) {\r\n var projects = result.response.projects || [];\r\n\r\n for (var i in projects) {\r\n if (projects[i].name === name) {\r\n project_id = projects[i].id;\r\n break;\r\n }\r\n }\r\n }\r\n else {\r\n Zabbix.log(4, \'[ Redmine Webhook ] Failed to retrieve project data.\');\r\n }\r\n\r\n if (typeof project_id === \'undefined\') {\r\n throw \'Cannot find project with name: \' + name;\r\n }\r\n\r\n return project_id;\r\n },\r\n\r\n createIssue: function(subject, description, priority, fields) {\r\n var project_id = /^\\d+$/.test(Redmine.params.project)\r\n ? Redmine.params.project\r\n : Redmine.getProjectID(Redmine.params.project),\r\n data = {\r\n issue: {\r\n project_id: project_id,\r\n tracker_id: Redmine.params.tracker_id,\r\n subject: subject,\r\n description: description\r\n }\r\n },\r\n result;\r\n\r\n if (priority) {\r\n data.issue.priority_id = priority;\r\n }\r\n\r\n result = Redmine.request(\'post\', \'issues.json\', Redmine.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.issue.id === \'undefined\'\r\n || result.status != 201) {\r\n throw \'Cannot create Redmine issue. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.issue.id;\r\n },\r\n\r\n updateIssue: function (note, fields, status) {\r\n var data = {\r\n issue: {\r\n notes: note || \'\'\r\n }\r\n };\r\n\r\n if (status) {\r\n data.issue.status_id = status;\r\n }\r\n\r\n Redmine.request(\'put\', \'issues/\' + Redmine.params.issue_key + \'.json\', Redmine.addCustomFields(data, fields));\r\n }\r\n\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n params_redmine = {},\r\n params_fields = {},\r\n params_update = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'tracker_id\', \'project\',\r\n \'event_source\', \'event_value\', \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: null, color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'redmine_\')) {\r\n params_redmine[key.substring(8)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n params_fields[key.substring(12)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n params_update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \"\' + key + \'\" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n\r\n if (typeof params_redmine.close_status_id === \'string\' && params_redmine.close_status_id.trim() !== \'\' && !parseInt(params_redmine.close_status_id, 10)) {\r\n throw \'Incorrect \"redmine_close_status_id\" parameter given! Must be an integer.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (params.event_source === \'0\'\r\n && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\'\r\n && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.redmine_issue_key)) || parseInt(params.redmine_issue_key) < 1 )) {\r\n throw \'Incorrect \"redmine_issue_key\" parameter given: \' + params.redmine_issue_key +\r\n \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name];\r\n priority = priority && priority.trim() || severities[7].name;\r\n\r\n Redmine.setParams(params_redmine);\r\n Redmine.HTTPProxy = params.HTTPProxy;\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\'\r\n && params.event_value !== \'0\') {\r\n Redmine.createIssue(params.alert_subject, params.alert_message, priority);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && params_update.status === \'0\') {\r\n var issue_id = Redmine.createIssue(params.alert_subject,\r\n params.alert_subject + \'\\n\' + params.alert_message + \'\\n\' +\r\n params.zabbix_url + (params.zabbix_url.endsWith(\'/\') ? \'\' : \'/\') +\r\n \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\',\r\n priority,\r\n params_fields);\r\n\r\n result.tags.__zbx_redmine_issue_id = issue_id;\r\n result.tags.__zbx_redmine_issuelink = params.redmine_url +\r\n (params.redmine_url.endsWith(\'/\') ? \'\' : \'/\') + \'issues/\' + issue_id;\r\n }\r\n // Close issue if parameter close_status_id is set and it is a recovery operation\r\n else if (params.event_value === \'0\' && typeof params_redmine.close_status_id === \'string\' && params_redmine.close_status_id.trim() !== \'\') {\r\n Redmine.updateIssue(params.alert_subject + \'\\n\' + params.alert_message, params_fields, params_redmine.close_status_id);\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n Redmine.updateIssue(params.alert_subject + \'\\n\' + params.alert_message, params_fields);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Redmine Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_redmine_issuelink}','Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id}','',0),(16,4,'Telegram','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Telegram = {\r\n token: null,\r\n to: null,\r\n message: null,\r\n proxy: null,\r\n parse_mode: null,\r\n\r\n escapeMarkup: function (str, mode) {\r\n switch (mode) {\r\n case \'markdown\':\r\n return str.replace(/([_*\\[`])/g, \'\\\\$&\');\r\n\r\n case \'markdownv2\':\r\n return str.replace(/([_*\\[\\]()~`>#+\\-=|{}.!])/g, \'\\\\$&\');\r\n\r\n default:\r\n return str;\r\n }\r\n },\r\n\r\n sendMessage: function () {\r\n var params = {\r\n chat_id: Telegram.to,\r\n text: Telegram.message,\r\n disable_web_page_preview: true,\r\n disable_notification: false\r\n },\r\n data,\r\n response,\r\n request = new HttpRequest(),\r\n url = \'https://api.telegram.org/bot\' + Telegram.token + \'/sendMessage\';\r\n\r\n if (Telegram.parse_mode !== null) {\r\n params[\'parse_mode\'] = Telegram.parse_mode;\r\n }\r\n\r\n if (Telegram.proxy) {\r\n request.setProxy(Telegram.proxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n data = JSON.stringify(params);\r\n\r\n // Remove replace() function if you want to see the exposed token in the log file.\r\n Zabbix.log(4, \'[Telegram Webhook] URL: \' + url.replace(Telegram.token, \'\'));\r\n Zabbix.log(4, \'[Telegram Webhook] params: \' + data);\r\n response = request.post(url, data);\r\n Zabbix.log(4, \'[Telegram Webhook] HTTP code: \' + request.getStatus());\r\n\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n response = null;\r\n }\r\n\r\n if (request.getStatus() !== 200 || typeof response.ok !== \'boolean\' || response.ok !== true) {\r\n if (typeof response.description === \'string\') {\r\n throw response.description;\r\n }\r\n else {\r\n throw \'Unknown error. Check debug log for more information.\';\r\n }\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n if (typeof params.Token === \'undefined\') {\r\n throw \'Incorrect value is given for parameter \"Token\": parameter is missing\';\r\n }\r\n\r\n Telegram.token = params.Token;\r\n\r\n if (params.HTTPProxy) {\r\n Telegram.proxy = params.HTTPProxy;\r\n } \r\n\r\n params.ParseMode = params.ParseMode.toLowerCase();\r\n \r\n if ([\'markdown\', \'html\', \'markdownv2\'].indexOf(params.ParseMode) !== -1) {\r\n Telegram.parse_mode = params.ParseMode;\r\n }\r\n\r\n Telegram.to = params.To;\r\n Telegram.message = params.Subject + \'\\n\' + params.Message;\r\n\r\n if ([\'markdown\', \'markdownv2\'].indexOf(params.ParseMode) !== -1) {\r\n Telegram.message = Telegram.escapeMarkup(Telegram.message, params.ParseMode);\r\n }\r\n\r\n Telegram.sendMessage();\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[Telegram Webhook] notification failed: \' + error);\r\n throw \'Sending failed: \' + error + \'.\';\r\n}','10s',0,0,'','','https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram\r\n\r\n1. Register bot: send \"/newbot\" to @BotFather and follow instructions\r\n2. Copy and paste the obtained token into the \"Token\" field above\r\n3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:\r\n 3.1. Send \"/getid\" to \"@myidbot\" in Telegram messenger\r\n 3.2. Copy returned chat id and save it in the \"Telegram Webhook\" media for the user\r\n 3.3. Ask the user to send \"/start\" to your bot (Telegram bot won\'t send anything to the user without it)\r\n4. If you want to send group notifications, you need to get group id of the group you want to send messages to:\r\n 4.1. Add \"@myidbot\" to your group\r\n 4.2. Send \"/getgroupid@myidbot\" in your group\r\n 4.3. Copy returned group id save it in the \"Telegram Webhook\" media for the user you created for group notifications\r\n 4.4. Send \"/start@your_bot_name_here\" in your group (Telegram bot won\'t send anything to the group without it)',0),(17,4,'Zendesk','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Zendesk = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Zendesk.params = params;\r\n if (typeof Zendesk.params.url === \'string\') {\r\n if (!Zendesk.params.url.endsWith(\'/\')) {\r\n Zendesk.params.url += \'/\';\r\n }\r\n Zendesk.params.url += \'api/v2/\';\r\n }\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n var schema = Zendesk.getSchema(),\r\n arr = [],\r\n i,\r\n n;\r\n\r\n if (schema) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n for (i = 0, n = schema.ticket_fields.length; i < n; i++) {\r\n if (schema.ticket_fields[i].id == field\r\n && [\'text\', \'integer\', \'date\'].indexOf(schema.ticket_fields[i].type) !== -1){\r\n\r\n switch (schema.ticket_fields[i].type) {\r\n case \'integer\':\r\n fields[field] = parseInt(fields[field]);\r\n break;\r\n case \'date\':\r\n if (fields[field].match(/^\\d{4}[.-]\\d{2}[.-]\\d{2}$/) !== null) {\r\n fields[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n else {\r\n fields[field] = \'\';\r\n }\r\n break;\r\n }\r\n\r\n arr.push({id: field, value: fields[field]});\r\n break;\r\n }\r\n }\r\n });\r\n\r\n if (arr.length) {\r\n data.ticket[\'custom_fields\'] = arr;\r\n }\r\n }\r\n else {\r\n Zabbix.log(4, \'[Zendesk Webhook] Failed to retrieve field schema.\');\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'token\', \'type\'].forEach(function (field) {\r\n if (typeof Zendesk.params !== \'object\' || typeof Zendesk.params[field] === \'undefined\') {\r\n throw \'Required Zendesk param is not set: \' + field + \'\\n\' + Zendesk.params[field];\r\n }\r\n });\r\n\r\n var response,\r\n url = Zendesk.params.url + query,\r\n request = new HttpRequest();\r\n\r\n if (typeof Zendesk.HTTPProxy === \'string\' && Zendesk.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(Zendesk.HTTPProxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Zendesk.params.token));\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[Zendesk Webhook] Sending request: \' + url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[Zendesk Webhook] Received response with status code \' + request.getStatus() + \'. \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[Zendesk Webhook] Failed to parse response received from Zendesk.\');\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.error !== \'undefined\'\r\n && Object.keys(response.error).length > 0) {\r\n message += \': \' + JSON.stringify(response.error);\r\n }\r\n else if (response !== null && typeof response.description !== \'undefined\'\r\n && Object.keys(response.description).length > 0) {\r\n message += \': \' + JSON.stringify(response.description);\r\n }\r\n else {\r\n message += \'. \' + response;\r\n }\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getSchema: function() {\r\n var result = Zendesk.request(\'get\', \'ticket_fields.json\');\r\n\r\n return result.response;\r\n },\r\n\r\n createIssue: function(data, fields) {\r\n var result = Zendesk.request(\'post\', \'tickets.json\', Zendesk.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.ticket.id === \'undefined\'\r\n || result.status != 201) {\r\n throw \'Cannot create Zendesk issue. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.ticket.id;\r\n },\r\n\r\n updateIssue: function(data, fields) {\r\n Zendesk.request(\'put\', \'tickets/\' + Zendesk.params.issue_key + \'.json\', Zendesk.addCustomFields(data, fields));\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n zendesk = {},\r\n update = {},\r\n data = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\',\r\n \'alert_message\',\r\n \'event_id\',\r\n \'event_source\',\r\n \'event_value\',\r\n \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'zendesk_\')) {\r\n zendesk[key.substring(8)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n fields[key.substring(12)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \' + key + \' cannot be empty.\';\r\n }\r\n });\r\n\r\n // Possible values: question, incident, problems, task\r\n if ([\'question\', \'incident\', \'problem\', \'task\'].indexOf(params.zendesk_type) === -1) {\r\n throw \'Incorrect \"zendesk_type\" parameter given: \' + params.zendesk_type +\r\n \'\\nMust be one of question, incident, problem, task.\';\r\n }\r\n\r\n // Possible values: 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n // Possible values: 1 for problem, 0 for recovering\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n // Zendesk_issue_key must be a positive integer if an update action is being performed.\r\n if (params.event_source === \'0\' && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\' && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.zendesk_issue_key)) || parseInt(params.zendesk_issue_key) < 1 )) {\r\n throw \'Incorrect \"zendesk_issue_key\" parameter given: \' + params.zendesk_issue_key +\r\n \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name] || severities[7].name;\r\n\r\n Zendesk.setParams(zendesk);\r\n Zendesk.HTTPProxy = params.HTTPProxy;\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_value !== \'0\') {\r\n data = {\r\n ticket: {\r\n external_id: params.event_id,\r\n type: Zendesk.params.type,\r\n status: \'new\',\r\n subject: params.alert_subject,\r\n comment: {\r\n body: params.alert_message,\r\n public: \'false\'\r\n },\r\n priority: priority,\r\n tags: params.event_tags\r\n }\r\n };\r\n\r\n Zendesk.createIssue(data, fields);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && update.status === \'0\') {\r\n data = {\r\n ticket: {\r\n external_id: params.event_id,\r\n type: Zendesk.params.type,\r\n status: \'new\',\r\n subject: params.alert_subject,\r\n comment: {\r\n body: params.zbxurl + (params.zbxurl.endsWith(\'/\') ? \'\' : \'/\') + \'tr_events.php?triggerid=\' +\r\n params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\' + params.alert_message,\r\n public: \'false\'\r\n },\r\n priority: priority,\r\n tags: params.event_tags\r\n }\r\n };\r\n var key = Zendesk.createIssue(data, fields);\r\n\r\n result.tags.__zbx_zdk_issuekey = key;\r\n result.tags.__zbx_zdk_issuelink = params.zendesk_url +\r\n (params.zendesk_url.endsWith(\'/\') ? \'\' : \'/\') + \'agent/tickets/\' + key;\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n data = {\r\n ticket: {\r\n type: Zendesk.params.type,\r\n subject: params.alert_subject,\r\n comment: {\r\n body: params.alert_message,\r\n public: \'false\'\r\n }\r\n }\r\n };\r\n\r\n Zendesk.updateIssue(data, fields);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[Zendesk Webhook] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_zdk_issuelink}','Zendesk: {EVENT.TAGS.__zbx_zdk_issuekey}','',0),(18,4,'ServiceNow','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var ServiceNow = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n ServiceNow.params = params;\r\n if (typeof ServiceNow.params.url === \'string\') {\r\n if (!ServiceNow.params.url.endsWith(\'/\')) {\r\n ServiceNow.params.url += \'/\';\r\n }\r\n\r\n ServiceNow.params.url += \'api/now/table/incident\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n ServiceNow.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n data[field] = (fields[field].match(/^\\d{4}\\.\\d{2}\\.\\d{2}$/) !== null)\r\n ? fields[field].replace(/\\./g, \'-\')\r\n : fields[field];\r\n });\r\n }\r\n },\r\n\r\n request: function (method, data) {\r\n [\'url\', \'user\', \'password\'].forEach(function (field) {\r\n if (typeof ServiceNow.params !== \'object\' || typeof ServiceNow.params[field] === \'undefined\'\r\n || ServiceNow.params[field] === \'\' ) {\r\n throw \'Required ServiceNow param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = ServiceNow.params.url,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(ServiceNow.params.user + \':\' + ServiceNow.params.password));\r\n\r\n if (typeof ServiceNow.HTTPProxy !== \'undefined\' && ServiceNow.HTTPProxy !== \'\') {\r\n request.setProxy(ServiceNow.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ ServiceNow Webhook ] Sending request: \' + url + ((typeof data === \'string\')\r\n ? (\'\\n\' + data)\r\n : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ ServiceNow Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ ServiceNow Webhook ] Failed to parse response received from ServiceNow\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.error.message !== \'undefined\'\r\n && Object.keys(response.error).length > 0) {\r\n message += \': \' + JSON.stringify(response.error.message);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n else if (typeof response.result !== \'object\' || typeof response.result.sys_id === \'undefined\') {\r\n throw \'Cannot create ServiceNow incident. Check debug log for more information.\';\r\n }\r\n\r\n return response.result;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n servicenow = {},\r\n data = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'alert_message\', \'event_source\', \'event_value\',\r\n \'event_update_status\', \'event_recovery_value\', \'event_nseverity\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ],\r\n method = \'post\',\r\n process_tags = true;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'servicenow_\')) {\r\n servicenow[key.substring(11)] = params[key];\r\n }\r\n else if (key.startsWith(\'u_\')) {\r\n fields[key] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n data.short_description = params.alert_subject;\r\n data.description = params.alert_message;\r\n data.comments = params.alert_message;\r\n\r\n if (typeof params[\'urgency_for_\' + severities[params.event_nseverity].name] !== \'undefined\') {\r\n data.urgency = params[\'urgency_for_\' + severities[params.event_nseverity].name];\r\n }\r\n\r\n ServiceNow.setParams(servicenow);\r\n ServiceNow.setProxy(params.HTTPProxy);\r\n ServiceNow.setFields(data, fields);\r\n\r\n if (params.event_source === \'0\' && (params.event_value === \'0\' || params.event_update_status === \'1\')) {\r\n process_tags = false;\r\n method = \'put\';\r\n delete data.description;\r\n delete data.urgency;\r\n ServiceNow.params.url += \'/\' + params.servicenow_sys_id;\r\n }\r\n\r\n var response = ServiceNow.request(method, data);\r\n\r\n if (process_tags) {\r\n result.tags.__zbx_servicenow_sys_id = response.sys_id;\r\n result.tags.__zbx_servicenow_link = params.servicenow_url +\r\n (params.servicenow_url.endsWith(\'/\') ? \'\' : \'/\') + \'incident.do?sys_id=\' + response.sys_id;\r\n result.tags.__zbx_servicenow_number = response.number;\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ ServiceNow Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_servicenow_link}','ServiceNow: {EVENT.TAGS.__zbx_servicenow_number}','',0),(19,4,'Zammad','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Zammad = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Zammad.params = params;\r\n if (typeof Zammad.params.url === \'string\') {\r\n if (!Zammad.params.url.endsWith(\'/\')) {\r\n Zammad.params.url += \'/\';\r\n }\r\n }\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'access_token\'].forEach(function (field) {\r\n if (typeof Zammad.params !== \'object\' || typeof Zammad.params[field] === \'undefined\'\r\n || Zammad.params[field] === \'\' ) {\r\n throw \'Required param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Zammad.params.url + query,\r\n request = new HttpRequest();\r\n\r\n if (typeof Zammad.HTTPProxy === \'string\' && Zammad.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(Zammad.HTTPProxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Token token=\' + Zammad.params.access_token);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Zammad Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Zammad Webhook ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Zammad Webhook ] Failed to parse response received from Zammad\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessages !== \'undefined\'\r\n && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n setTicketTags: function (tags, ticket_id) {\r\n var data = {\r\n item: \'\',\r\n object: \'Ticket\',\r\n o_id: ticket_id\r\n };\r\n\r\n try {\r\n var tags_json = JSON.parse(tags),\r\n result;\r\n\r\n for (var i in tags_json) {\r\n\r\n if (tags_json[i].value) {\r\n data.item = tags_json[i].tag + \": \" + tags_json[i].value;\r\n } else {\r\n data.item = tags_json[i].tag;\r\n }\r\n result = Zammad.request(\'post\', \'api/v1/tags/add\', data);\r\n\r\n if (typeof result.response !== \'object\' || result.status != 200) {\r\n Zabbix.log(4, \'[ Zammad Webhook ] Cannot add ticket tag:\' + tags_json[i].tag);\r\n }\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Zammad Webhook ] Failed to add ticket tags:\' + error);\r\n }\r\n\r\n return;\r\n },\r\n\r\n createTicket: function(subject, message, priority) {\r\n var data = {\r\n title: subject,\r\n group: \'Users\',\r\n article: {\r\n subject: subject,\r\n body: message,\r\n type: \'note\',\r\n internal: false\r\n },\r\n customer: Zammad.params.customer\r\n },\r\n result;\r\n\r\n if (priority) {\r\n data.priority_id = priority;\r\n }\r\n\r\n result = Zammad.request(\'post\', \'api/v1/tickets\', data);\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.id === \'undefined\'\r\n || result.status != 201) {\r\n throw \'Cannot create Zammad ticket. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.id;\r\n },\r\n\r\n updateTicket: function(subject, message) {\r\n var data = {\r\n ticket_id: Zammad.params.ticket_id,\r\n subject: subject,\r\n body: message || \'\',\r\n type: \'note\',\r\n internal: false\r\n };\r\n\r\n result = Zammad.request(\'post\', \'api/v1/ticket_articles\', data);\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.id === \'undefined\'\r\n || result.status != 201) {\r\n throw \'Cannot update Zammad ticket. Check debug log for more information.\';\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n params_zammad = {},\r\n params_update = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'customer\',\r\n \'event_source\', \'event_value\',\r\n \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: null, color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'zammad_\')) {\r\n params_zammad[key.substring(7)] = params[key].trim();\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n params_update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \"\' + key + \'\" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (params.event_source === \'0\'\r\n && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\'\r\n && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.zammad_ticket_id)) || parseInt(params.zammad_ticket_id) < 1 )) {\r\n throw \'Incorrect \"zammad_ticket_id\" parameter given: \' + params.zammad_ticket_id +\r\n \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name];\r\n priority = priority && priority.trim() || severities[7].name;\r\n\r\n Zammad.setParams(params_zammad);\r\n Zammad.HTTPProxy = params.HTTPProxy;\r\n\r\n // Create ticket for non trigger-based events.\r\n if (params.event_source !== \'0\'\r\n && params.event_value !== \'0\') {\r\n Zammad.createTicket(params.alert_subject, params.alert_message, priority, params.event_tags);\r\n }\r\n // Create ticket for trigger-based events.\r\n else if (params.event_value === \'1\' && params_update.status === \'0\') {\r\n var ticket_id = Zammad.createTicket(params.alert_subject,\r\n params.alert_subject + \'\\n\' + params.alert_message + \'\\n\' +\r\n params.zabbix_url + (params.zabbix_url.endsWith(\'/\') ? \'\' : \'/\') +\r\n \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\',\r\n priority);\r\n\r\n result.tags.__zbx_zammad_ticket_id = ticket_id;\r\n result.tags.__zbx_zammad_ticketlink = params.zammad_url +\r\n (params.zammad_url.endsWith(\'/\') ? \'\' : \'/\') + \'#ticket/zoom/\' + ticket_id;\r\n\r\n if (Zammad.params.enable_tags.toLowerCase() === \'true\') {\r\n Zammad.setTicketTags(params.event_tags, ticket_id);\r\n }\r\n }\r\n // Update created ticket for trigger-based event.\r\n else {\r\n Zammad.updateTicket(params.alert_subject, params.alert_message);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Zammad Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_zammad_ticketlink}','Zammad: ticket #{EVENT.TAGS.__zbx_zammad_ticket_id}','',0),(20,4,'Jira ServiceDesk','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Jira = {\r\n params: {},\r\n schema: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Jira.params = params;\r\n if (typeof Jira.params.url === \'string\') {\r\n if (!Jira.params.url.endsWith(\'/\')) {\r\n Jira.params.url += \'/\';\r\n }\r\n\r\n Jira.params.url += \'rest/servicedeskapi/\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Jira.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setTags: function(event_tags_json) {\r\n if (!Jira.schema) {\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Cannot add labels because failed to retrieve field schema.\');\r\n\r\n return;\r\n }\r\n\r\n var block = Jira.schema.requestTypeFields.filter(function(object) {\r\n return object.fieldId == \'labels\';\r\n });\r\n\r\n if (block[0] && typeof event_tags_json !== \'undefined\' && event_tags_json !== \'\'\r\n && event_tags_json !== \'{EVENT.TAGSJSON}\') {\r\n try {\r\n var tags = JSON.parse(event_tags_json),\r\n label;\r\n\r\n Jira.labels = [];\r\n\r\n tags.forEach(function (tag) {\r\n if (typeof tag.tag !== \'undefined\' && typeof tag.value !== \'undefined\' ) {\r\n label = (tag.tag + (tag.value ? (\':\' + tag.value) : \'\')).replace(/\\s/g, \'_\');\r\n if (label.length < 255) {\r\n Jira.labels.push(label);\r\n }\r\n }\r\n });\r\n }\r\n catch (error) {\r\n // Code is not missing here.\r\n }\r\n }\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n if (Jira.schema) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n data.requestFieldValues[field] = fields[field];\r\n\r\n var block = Jira.schema.requestTypeFields.filter(function(object) {\r\n return object.fieldId == field;\r\n });\r\n\r\n if (typeof block[0] === \'object\' && typeof block[0].jiraSchema === \'object\'\r\n && (block[0].jiraSchema.type === \'number\' || block[0].jiraSchema.type === \'datetime\')) {\r\n switch (block[0].jiraSchema.type) {\r\n case \'number\':\r\n data.requestFieldValues[field] = parseInt(fields[field]);\r\n break;\r\n\r\n case \'datetime\':\r\n if (fields[field].match(/\\d+[.-]\\d+[.-]\\d+T\\d+:\\d+:\\d+/) !== null) {\r\n data.requestFieldValues[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n else {\r\n delete data.requestFieldValues[field];\r\n }\r\n break;\r\n }\r\n }\r\n });\r\n }\r\n else {\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Cannot add custom fields\' +\r\n \'because failed to retrieve field schema.\');\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'user\', \'password\', \'servicedesk_id\', \'request_type_id\'].forEach(function (field) {\r\n if (typeof Jira.params !== \'object\' || typeof Jira.params[field] === \'undefined\'\r\n || Jira.params[field] === \'\' ) {\r\n throw \'Required Jira param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Jira.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Jira.params.user + \':\' + Jira.params.password));\r\n request.addHeader(\'X-ExperimentalApi: opt-in\');\r\n\r\n if (typeof Jira.HTTPProxy !== \'undefined\' && Jira.HTTPProxy !== \'\') {\r\n request.setProxy(Jira.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Sending request: \' + url +\r\n ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Jira Service Desk Webhook ] Failed to parse response received from Jira\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.errors !== \'undefined\'\r\n && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (response !== null && typeof response.errorMessage !== \'undefined\'\r\n && Object.keys(response.errorMessage).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessage);\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n getSchema: function() {\r\n var result = Jira.request(\'get\', \'servicedesk/\' + Jira.params.servicedesk_id + \'/requesttype/\' +\r\n Jira.params.request_type_id + \'/field\');\r\n\r\n if (typeof Jira.schema !== \'object\' && typeof Jira.schema.requestTypeFields !== \'object\') {\r\n Jira.schema = null;\r\n }\r\n else {\r\n Jira.schema = result.response;\r\n }\r\n },\r\n\r\n createRequest: function(summary, description, fields) {\r\n var data = {\r\n serviceDeskId: Jira.params.servicedesk_id,\r\n requestTypeId: Jira.params.request_type_id,\r\n requestFieldValues: {\r\n summary: summary,\r\n description: description\r\n }\r\n };\r\n\r\n if (Jira.labels && Jira.labels.length > 0) {\r\n data.requestFieldValues.labels = Jira.labels;\r\n }\r\n var result = Jira.request(\'post\', \'request\', Jira.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.issueKey === \'undefined\') {\r\n throw \'Cannot create Jira request. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.issueKey;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n jira = {},\r\n comment = {public: true},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'alert_message\', \'event_source\', \'event_value\',\r\n \'event_update_status\', \'event_recovery_value\'\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'jira_\')) {\r\n jira[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'customfield_\')) {\r\n fields[key] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n Jira.setParams(jira);\r\n Jira.setProxy(params.HTTPProxy);\r\n Jira.getSchema();\r\n Jira.setTags(params.event_tags_json);\r\n\r\n // Create request for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n Jira.createRequest(params.alert_subject, params.alert_message);\r\n }\r\n // Create request for trigger-based events.\r\n else if (params.event_value === \'1\' && params.event_update_status === \'0\'\r\n && jira.request_key === \'{EVENT.TAGS.__zbx_jira_requestkey}\') {\r\n var key = Jira.createRequest(params.alert_subject, params.alert_message, fields);\r\n\r\n result.tags.__zbx_jira_requestkey = key;\r\n result.tags.__zbx_jira_requestlink = params.jira_url +\r\n (params.jira_url.endsWith(\'/\') ? \'\' : \'/\') + \'browse/\' + key;\r\n }\r\n // Comment created request for trigger-based event.\r\n else {\r\n if (jira.request_key === \'{EVENT.TAGS.__zbx_jira_requestkey}\' || jira.request_key.trim() === \'\') {\r\n throw \'Incorrect Request key given: \' + jira.request_key;\r\n }\r\n comment.body = params.alert_message;\r\n Jira.request(\'post\', \'request/\' + Jira.params.request_key + \'/comment\', comment);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Jira Service Desk Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_jira_requestlink}','Jira ServiceDesk: {EVENT.TAGS.__zbx_jira_requestkey}','',0),(21,4,'OTRS','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var OTRS = {\r\n params: {},\r\n entrypoint: \'nph-genericinterface.pl/Webservice/ZabbixTicketConnector/Ticket\',\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n OTRS.params = params;\r\n if (typeof OTRS.params.url === \'string\') {\r\n if (!OTRS.params.url.endsWith(\'/\')) {\r\n OTRS.params.url += \'/\';\r\n }\r\n }\r\n },\r\n\r\n addDynamicFields: function (data, fields) {\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n data.DynamicField = [];\r\n\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (field !== undefined) {\r\n if (fields[field].match(/^\\d{4}[.-]\\d{2}[.-]\\d{2}$/)) {\r\n fields[field] = fields[field].replace(/\\./g, \'-\');\r\n }\r\n\r\n data.DynamicField.push({Name: field, Value: fields[field]});\r\n }\r\n });\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'auth_user\', \'auth_password\', \'queue\',\r\n \'customer\', \'ticket_state\', \'default_priority_id\', \'time_unit\'].forEach(function (field) {\r\n if (typeof OTRS.params !== \'object\' || typeof OTRS.params[field] === \'undefined\'\r\n || OTRS.params[field] === \'\' ) {\r\n throw \'Required param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n request = new HttpRequest(),\r\n url = OTRS.params.url + query +\r\n \'?UserLogin=\' + encodeURIComponent(OTRS.params.auth_user) +\r\n \'&Password=\' + encodeURIComponent(OTRS.params.auth_password);\r\n\r\n if (typeof OTRS.HTTPProxy !== \'undefined\' && OTRS.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(OTRS.HTTPProxy);\r\n }\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ OTRS Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ OTRS Webhook ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n message += \': \' + response;\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ OTRS Webhook ] Failed to parse response received from OTRS\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (typeof response.Error !== \'undefined\'\r\n && Object.keys(response.Error).length > 0) {\r\n message = \'Request failed: \' + JSON.stringify(response.Error);\r\n }\r\n\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n createTicket: function(subject, message, priority, fields) {\r\n var result,\r\n data = {\r\n Ticket: {\r\n Title: subject,\r\n Queue: OTRS.params.queue,\r\n State: OTRS.params.ticket_state,\r\n PriorityID: priority || OTRS.params.default_priority_id,\r\n CustomerUser: OTRS.params.customer\r\n },\r\n Article: {\r\n Subject: subject,\r\n Body: message,\r\n TimeUnit: OTRS.params.time_unit,\r\n ContentType: \'text/plain; charset=utf8\'\r\n }\r\n };\r\n\r\n result = OTRS.request(\'post\', OTRS.entrypoint, OTRS.addDynamicFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.TicketID === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot create OTRS ticket. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.TicketID;\r\n },\r\n\r\n updateTicket: function(subject, message) {\r\n var result,\r\n data = {\r\n Article: {\r\n Subject: subject,\r\n Body: message || \'\',\r\n TimeUnit: OTRS.params.time_unit,\r\n ContentType: \'text/plain; charset=utf8\'\r\n }\r\n };\r\n\r\n result = OTRS.request(\'put\', OTRS.entrypoint + \'/\' + encodeURIComponent(OTRS.params.ticket_id), data);\r\n\r\n if (typeof result.response !== \'object\'\r\n || typeof result.response.TicketID === \'undefined\'\r\n || result.status != 200) {\r\n throw \'Cannot update OTRS ticket. Check debug log for more information.\';\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n params_otrs = {},\r\n params_fields = {},\r\n params_update = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'event_source\',\r\n \'event_value\', \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: null, color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'otrs_\')) {\r\n params_otrs[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'dynamicfield_\')) {\r\n params_fields[key.substring(13)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n params_update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \"\' + key + \'\" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (params.event_source === \'0\'\r\n && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\'\r\n && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.otrs_ticket_id)) || parseInt(params.otrs_ticket_id) < 1 )) {\r\n throw \'Incorrect \"otrs_ticket_id\" parameter given: \' + params.otrs_ticket_id +\r\n \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name];\r\n priority = priority && priority.trim() || severities[7].name;\r\n\r\n OTRS.setParams(params_otrs);\r\n OTRS.HTTPProxy = params.HTTPProxy;\r\n\r\n // Create ticket for non trigger-based events.\r\n if (params.event_source !== \'0\'\r\n && params.event_value !== \'0\') {\r\n OTRS.createTicket(params.alert_subject, params.alert_message, priority);\r\n }\r\n // Create ticket for trigger-based events.\r\n else if (params.event_value === \'1\' && params_update.status === \'0\') {\r\n var ticket_id = OTRS.createTicket(params.alert_subject,\r\n params.alert_subject + \'\\n\' + params.alert_message + \'\\n\' +\r\n params.zabbix_url + (params.zabbix_url.endsWith(\'/\') ? \'\' : \'/\') +\r\n \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\',\r\n priority,\r\n params_fields);\r\n\r\n result.tags.__zbx_otrs_ticket_id = ticket_id;\r\n result.tags.__zbx_otrs_ticketlink = params.otrs_url +\r\n (params.otrs_url.endsWith(\'/\') ? \'\' : \'/\') + \'index.pl?Action=AgentTicketZoom;TicketID=\' + ticket_id;\r\n }\r\n // Update created ticket for trigger-based event.\r\n else {\r\n OTRS.updateTicket(params.alert_subject, params.alert_message);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ OTRS Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_otrs_ticketlink}','OTRS: ticket #{EVENT.TAGS.__zbx_otrs_ticket_id}','',0),(22,4,'iLert','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'try {\r\n var result = { tags: {} },\r\n params = JSON.parse(value),\r\n req = new HttpRequest(),\r\n resp = \'\';\r\n\r\n if (typeof params.HTTPProxy === \'string\' && params.HTTPProxy.trim() !== \'\') {\r\n req.setProxy(params.HTTPProxy);\r\n }\r\n var alertSourceKey = params[\'.ILERT.ALERT.SOURCE.KEY\'];\r\n if (!alertSourceKey || (typeof alertSourceKey === \'string\' && alertSourceKey.trim() === \'\')) {\r\n throw \'incorrect value for variable \"ILERT.ALERT.SOURCE.KEY\". The value must be a non-empty string.\';\r\n }\r\n delete params[\'.ILERT.ALERT.SOURCE.KEY\'];\r\n \r\n var ilertApiBaseURL = \"https://api.ilert.com\";\r\n var reqURL = encodeURI(ilertApiBaseURL + \"/api/v1/events/zabbix-mt/\" + alertSourceKey)\r\n\r\n var incidentKey = \"zabbix-\" + params[\'EVENT.ID\'];\r\n var incidentViewURL = ilertApiBaseURL + \"/api/v1/incidents/resolve-ik/\" + alertSourceKey + \"/\" + incidentKey;\r\n\r\n req.addHeader(\'Accept: application/json\');\r\n req.addHeader(\'Content-Type: application/json\');\r\n\r\n Zabbix.log(4, \'[iLert Webhook] Sending request:\' + JSON.stringify(params));\r\n resp = req.post(reqURL, JSON.stringify(params));\r\n Zabbix.log(4, \'[iLert Webhook] Receiving response:\' + resp);\r\n\r\n try {\r\n resp = JSON.parse(resp);\r\n }\r\n catch (error) {\r\n throw \'incorrect response. iLert returned a non-JSON object.\';\r\n }\r\n\r\n if (req.getStatus() == 200) {\r\n result.tags.__ilert_incident_url = incidentViewURL;\r\n return JSON.stringify(result);\r\n }\r\n\r\n if (req.getStatus() == 400 && typeof resp === \'object\' && typeof resp.code === \'string\') {\r\n if (resp.code === \'NO_OPEN_INCIDENT_WITH_KEY\') {\r\n return JSON.stringify(result);\r\n }\r\n if (resp.code === \'INCIDENT_ALREADY_ACCEPTED\') {\r\n result.tags.__ilert_incident_url = incidentViewURL;\r\n return JSON.stringify(result);\r\n }\r\n }\r\n\r\n if (typeof resp === \'object\' && typeof resp.message === \'string\') {\r\n throw resp.message;\r\n }\r\n else {\r\n throw \'Unknown error.\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[iLert Webhook] Notification failed : \' + error);\r\n throw \'iLert notification failed : \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__ilert_incident_url}','iLert incident','Please refer to https://docs.ilert.com/integrations/zabbix/native \r\n \r\nSet global macro {$ZABBIX.URL} with your Zabbix server URL.\r\nAdd a dedicated user with the media type \"iLert\". You can also rewrite the incident summary via \".ILERT.INCIDENT.SUMMARY\" parameter or leave it empty to use the standard pattern.',0),(23,4,'SolarWinds Service Desk','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var SolarWinds = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n SolarWinds.params = params;\r\n SolarWinds.params.endpoint = \'https://api.samanage.com/\';\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n SolarWinds.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n addCustomFields: function (data, fields) {\r\n if (typeof data.incident === \'object\' && typeof fields === \'object\' && Object.keys(fields).length) {\r\n if (typeof fields.sw_fields === \'object\' && Object.keys(fields.sw_fields).length) {\r\n Object.keys(fields.sw_fields)\r\n .forEach(function(field) {\r\n try {\r\n data.incident[field] = JSON.parse(fields.sw_fields[field]);\r\n }\r\n catch (error) {\r\n data.incident[field] = fields.sw_fields[field];\r\n }\r\n });\r\n }\r\n\r\n if (typeof fields.sw_customfields === \'object\' && Object.keys(fields.sw_customfields).length) {\r\n data.incident.custom_fields_values = {custom_fields_value: []};\r\n Object.keys(fields.sw_customfields)\r\n .forEach(function(field) {\r\n data.incident.custom_fields_values.custom_fields_value.push({\r\n name: field,\r\n value: fields.sw_customfields[field]\r\n });\r\n });\r\n }\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'token\'].forEach(function (field) {\r\n if (typeof SolarWinds.params !== \'object\' || typeof SolarWinds.params[field] === \'undefined\'\r\n || SolarWinds.params[field] === \'\' ) {\r\n throw \'Required SolarWinds param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = SolarWinds.params.endpoint + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-Samanage-Authorization: Bearer \' + SolarWinds.params.token);\r\n request.addHeader(\'Accept: application/vnd.samanage.v2.1+json\');\r\n\r\n if (typeof SolarWinds.HTTPProxy !== \'undefined\' && SolarWinds.HTTPProxy !== \'\') {\r\n request.setProxy(SolarWinds.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ SolarWinds SD Webhook ] Sending request: \' + url + ((typeof data === \'string\')\r\n ? (\'\\n\' + data)\r\n : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ SolarWinds SD Webhook ] Received response with status code \' + request.getStatus() +\r\n \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ SolarWinds SD Webhook ] Failed to parse response received from SolarWinds\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.error !== \'undefined\'\r\n && Object.keys(response.error).length > 0) {\r\n message += \': \' + JSON.stringify(response.error);\r\n }\r\n else if (response !== null && typeof response === \'object\'\r\n && Object.keys(response).length > 0) {\r\n Object.keys(response)\r\n .forEach(function(field) {\r\n message += \'\\n\' + field + \': \' + response[field][0];\r\n });\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n createIncident: function(name, description, fields) {\r\n var data = {\r\n incident: {\r\n name: name,\r\n description: description,\r\n priority: SolarWinds.params.priority\r\n }\r\n };\r\n\r\n var result = SolarWinds.request(\'post\', \'incidents.json\', SolarWinds.addCustomFields(data, fields));\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.id === \'undefined\') {\r\n throw \'Cannot create SolarWinds incident. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.id;\r\n },\r\n\r\n updateIncident: function(name, fields, message) {\r\n var data = {\r\n incident: {\r\n name: name,\r\n priority: SolarWinds.params.priority\r\n }\r\n };\r\n\r\n SolarWinds.request(\r\n \'put\',\r\n \'incidents/\' + SolarWinds.params.incident_id + \'.json\',\r\n SolarWinds.addCustomFields(data, fields));\r\n\r\n SolarWinds.commenIncident(message);\r\n },\r\n\r\n commenIncident: function(message) {\r\n var data = {\r\n comment: {\r\n body: message\r\n }\r\n };\r\n\r\n SolarWinds.request(\'post\', \'incidents/\' + SolarWinds.params.incident_id + \'/comments.json\', data);\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n samanage = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'event_recovery_value\', \'event_source\', \'event_value\', \'priority_default\'],\r\n severities = [\r\n {name: \'not_classified\'},\r\n {name: \'information\'},\r\n {name: \'warning\'},\r\n {name: \'average\'},\r\n {name: \'high\'},\r\n {name: \'disaster\'},\r\n {name: \'resolved\'},\r\n {name: \'default\'}\r\n ];\r\n\r\n fields.sw_fields = {};\r\n fields.sw_customfields = {};\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'samanage_\')) {\r\n samanage[key.substring(9)] = params[key];\r\n }\r\n else if (key.startsWith(\'sw_field_\')) {\r\n fields.sw_fields[key.substring(9)] = params[key];\r\n }\r\n else if (key.startsWith(\'sw_customfield_\')) {\r\n fields.sw_customfields[key.substring(15)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n samanage.priority = params[\'priority_\' + severities[params.event_nseverity].name] || params.priority_default;\r\n\r\n SolarWinds.setParams(samanage);\r\n SolarWinds.setProxy(params.HTTPProxy);\r\n\r\n // Create incident for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n SolarWinds.createIncident(params.alert_subject, params.alert_message);\r\n }\r\n // Create incident for trigger-based events.\r\n else if (params.event_value === \'1\' && params.event_update_status === \'0\'\r\n && samanage.incident_id === \'{EVENT.TAGS.__zbx_solarwinds_inc_id}\') {\r\n var key = SolarWinds.createIncident(params.alert_subject, params.alert_message, fields);\r\n\r\n\r\n result.tags.__zbx_solarwinds_inc_id = key;\r\n result.tags.__zbx_solarwinds_inc_link = params.samanage_url +\r\n (params.samanage_url.endsWith(\'/\') ? \'\' : \'/\') + \'incidents/\' + key;\r\n }\r\n // Update created incident for trigger-based event.\r\n else {\r\n if (samanage.incident_id === \'{EVENT.TAGS.__zbx_solarwinds_inc_id}\' || samanage.incident_id === \'\') {\r\n throw \'Incorrect incident key given: \' + samanage.incident_id;\r\n }\r\n if (!params.alert_message) {\r\n throw \'Parameter \"alert_message\" can\\\'t be empty.\';\r\n }\r\n SolarWinds.updateIncident(params.alert_subject, fields, params.alert_message);\r\n }\r\n\r\n if (params.event_source === \'0\') {\r\n return JSON.stringify(result);\r\n }\r\n else {\r\n return \'OK\';\r\n }\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ SolarWinds SD Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_solarwinds_inc_link}','SolarWinds incident ID: {EVENT.TAGS.__zbx_solarwinds_inc_id}','',0),(24,4,'SysAid','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var SysAid = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n var required = [\'url\', \'auth_user\', \'auth_password\', \'category_level_1\', \'category_level_2\',\r\n \'category_level_3\', \'incident_id\', \'template_id\', \'urgency_id\', \'incident_state\',\r\n \'default_priority_id\'\r\n ];\r\n\r\n required.forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\' || params[field] === \'\') {\r\n throw \'Required param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n SysAid.params = params;\r\n if (typeof SysAid.params.url === \'string\' && !SysAid.params.url.endsWith(\'/\')) {\r\n SysAid.params.url += \'/\';\r\n }\r\n },\r\n\r\n login: function () {\r\n var result = SysAid.request(\'post\', \'api/v1/login\', {\r\n user_name: SysAid.params.auth_user,\r\n password: SysAid.params.auth_password\r\n });\r\n\r\n return result.response.user.id;\r\n },\r\n\r\n request: function (method, query, data) {\r\n var response,\r\n request = SysAid.req || (SysAid.req = new HttpRequest()),\r\n url = SysAid.params.url + query;\r\n\r\n if (typeof SysAid.HTTPProxy !== \'undefined\' && SysAid.HTTPProxy.trim() !== \'\') {\r\n request.setProxy(SysAid.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ SysAid Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\' \' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ SysAid Webhook ] Received response with status code \' + request.getStatus() + \': \' + response);\r\n\r\n if (request.getStatus() !== 200) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n message += \': \' + response;\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ SysAid Webhook ] Failed to parse response received from SysAid\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (response === null || (typeof response.Error !== \'undefined\' && Object.keys(response.Error).length > 0)) {\r\n throw \'Request failed: \' + JSON.stringify(response.Error);\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n createIncident: function(subject, message, priority) {\r\n var result = SysAid.request(\'post\', \'api/v1/sr/?template=\' + encodeURIComponent(SysAid.params.template_id), {\r\n info: [\r\n {\r\n key: \'problem_type\',\r\n value: [\r\n SysAid.params.category_level_1,\r\n SysAid.params.category_level_2,\r\n SysAid.params.category_level_3\r\n ].join(\'_\')\r\n },\r\n {\r\n key: \'title\',\r\n value: subject\r\n },\r\n {\r\n key: \'description\',\r\n value: message\r\n },\r\n {\r\n key: \'status\',\r\n value: \'1\'\r\n },\r\n {\r\n key: \'urgency\',\r\n value: SysAid.params.urgency_id\r\n },\r\n {\r\n key: \'priority\',\r\n value: priority || SysAid.params.default_priority_id,\r\n }\r\n ]\r\n });\r\n\r\n if (result.response.id === \'undefined\') {\r\n throw \'Cannot create SysAid incident. Check debug log for more information.\';\r\n }\r\n\r\n return result.response.id;\r\n },\r\n\r\n updateTicket: function(note) {\r\n var date = new Date().getTime();\r\n\r\n SysAid.request(\'put\', \'api/v1/sr/\' + encodeURIComponent(SysAid.params.incident_id), {\r\n id: SysAid.params.incident_id,\r\n info: [\r\n {\r\n key: \'update_time\',\r\n value: date\r\n },\r\n {\r\n key: \'notes\',\r\n value: [\r\n {\r\n userName: \'Zabbix\',\r\n createDate: date,\r\n text: note\r\n }\r\n ]\r\n }\r\n ]\r\n });\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n params_sysaid = {},\r\n params_update = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'event_source\', \'event_value\', \'event_update_status\'],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: null, color: \'#000000\'}\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'sysaid_\')) {\r\n params_sysaid[key.substring(7)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n params_update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \"\' + key + \'\" cannot be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (params.event_source === \'0\' && ((params.event_value === \'1\' && params.event_update_status === \'1\')\r\n || (params.event_value === \'0\' && (params.event_update_status === \'0\' || params.event_update_status === \'1\')))\r\n && (isNaN(parseInt(params.sysaid_incident_id)) || parseInt(params.sysaid_incident_id) < 1 )) {\r\n throw \'Incorrect \"sysaid_incident_id\" parameter given: \' + params.sysaid_incident_id + \'\\nMust be positive integer.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity].name];\r\n priority = priority && priority.trim() || severities[7].name;\r\n\r\n SysAid.setParams(params_sysaid);\r\n SysAid.HTTPProxy = params.HTTPProxy;\r\n SysAid.login();\r\n\r\n if (params.event_source !== \'0\' && params.event_value !== \'0\') {\r\n // Create ticket for non trigger-based events.\r\n SysAid.createIncident(params.alert_subject, params.alert_message, priority);\r\n }\r\n else if (params.event_value === \'1\' && params_update.status === \'0\') {\r\n // Create ticket for trigger-based events.\r\n var incident_id = SysAid.createIncident(params.alert_subject, params.alert_subject + \'\\n\' + params.alert_message +\r\n \'\\n\' + params.zabbix_url + (params.zabbix_url.endsWith(\'/\') ? \'\' : \'/\') + \'tr_events.php?triggerid=\' +\r\n params.trigger_id + \'&eventid=\' + params.event_id + \'\\n\', priority\r\n );\r\n\r\n result.tags.__zbx_sysaid_incident_id = incident_id;\r\n result.tags.__zbx_sysaid_incidentlink = params.sysaid_url +\r\n (params.sysaid_url.endsWith(\'/\') ? \'\' : \'/\') + \'SREdit.jsp?id=\' + incident_id + \'&fromId=IncidentsList\';\r\n }\r\n else {\r\n // Update created ticket for trigger-based event.\r\n SysAid.updateTicket(params.alert_subject + \'\\n\' + params.alert_message);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ SysAid Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_sysaid_incidentlink}','SysAid: incident #{EVENT.TAGS.__zbx_sysaid_incident_id}','',0),(25,4,'TOPdesk','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Media = {\r\n params: {},\r\n name: \'\',\r\n labels: [],\r\n HTTPProxy: \'\',\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Media.params = params;\r\n Media.params.api += Media.params.api.endsWith(\'/\') ? \'\' : \'/\';\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n if (typeof HTTPProxy !== \'undefined\' && HTTPProxy.trim() !== \'\') {\r\n Media.HTTPProxy = HTTPProxy;\r\n }\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'api\', \'token\'].forEach(function (field) {\r\n if (typeof Media.params !== \'object\' || typeof Media.params[field] === \'undefined\'\r\n || Media.params[field] === \'\') {\r\n throw \'Required \' + Media.name + \' param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Media.params.api + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Accept: application/json\');\r\n request.addHeader(\'Authorization: \' + Media.params.token);\r\n request.setProxy(Media.HTTPProxy);\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Sending request: \' +\r\n url + ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Failed to parse response.\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null) {\r\n if (typeof response.errors === \'object\' && Object.keys(response.errors).length > 0) {\r\n message += \': \' + JSON.stringify(response.errors);\r\n }\r\n else if (typeof response.errorMessages === \'object\' && Object.keys(response.errorMessages).length > 0) {\r\n message += \': \' + JSON.stringify(response.errorMessages);\r\n }\r\n else if (typeof response.message === \'string\') {\r\n message += \': \' + response.message;\r\n }\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n }\r\n};\r\n\r\ntry {\r\n var result = {tags: {}},\r\n params = JSON.parse(value),\r\n media = {},\r\n fields = {},\r\n resp = {},\r\n required_params = [\r\n \'alert_subject\',\r\n \'alert_message\',\r\n \'event_id\',\r\n \'event_source\',\r\n \'event_value\',\r\n \'event_update_status\',\r\n \'topdesk_api\',\r\n \'topdesk_user\',\r\n \'topdesk_password\'\r\n ],\r\n severities = [\r\n \'not_classified\',\r\n \'information\',\r\n \'warning\',\r\n \'average\',\r\n \'high\',\r\n \'disaster\',\r\n \'resolved\',\r\n \'default\'\r\n ],\r\n priority;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \"\' + key + \'\" cannot be empty.\';\r\n }\r\n if (key.startsWith(\'topdesk_\')) {\r\n media[key.substring(8)] = params[key];\r\n }\r\n });\r\n\r\n // Possible values of event_source:\r\n // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \"\' + params.event_source + \'\".\\nMust be 0-3.\';\r\n }\r\n\r\n // Check event_value for trigger-based and internal events.\r\n // Possible values: 1 for problem, 0 for recovering\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check event_update_status only for trigger-based events.\r\n // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if (params.event_source === \'0\' && params.event_update_status !== \'0\' && params.event_update_status !== \'1\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check event_id for a numeric value.\r\n if (isNaN(parseInt(params.event_id)) || params.event_id < 1) {\r\n throw \'Incorrect \"event_id\" parameter given: \' + params.event_id + \'\\nMust be a positive number.\';\r\n }\r\n\r\n if ((params.event_source === \'1\' || params.event_source === \'2\') && params.event_value === \'0\') {\r\n throw \'Recovery operations are supported only for Trigger and Internal actions.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n priority = params[\'severity_\' + severities[params.event_nseverity]];\r\n params.zbxurl = params.zbxurl + (params.zbxurl.endsWith(\'/\') ? \'\' : \'/\');\r\n\r\n Media.name = \'TOPdesk\';\r\n Media.setParams(media);\r\n Media.params.token = \'Basic \' + btoa(Media.params.user + \':\' + Media.params.password);\r\n Media.setProxy(params.HTTPProxy);\r\n\r\n // Create an issue.\r\n // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).\r\n // Numeric value of the problem update status. Possible values:\r\n // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.\r\n if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)\r\n || (params.event_source == 3 && params.event_value == 1)\r\n || params.event_source == 1 || params.event_source == 2) {\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Request of the ticket creating.\');\r\n fields.caller = {dynamicName: \'Zabbix\'};\r\n fields.briefDescription = params.alert_subject;\r\n fields.request = params.alert_message.replace(/\\n/g, \'
\');\r\n fields.priority = {name: priority};\r\n fields.processingStatus = {name: Media.params.status};\r\n fields.externalNumber = params.event_id;\r\n fields.request += \'
\' + params.zbxurl;\r\n\r\n if (params.event_source === \'0\') {\r\n fields.request += \'tr_events.php?triggerid=\' + params.trigger_id + \'&eventid=\' + params.event_id;\r\n }\r\n\r\n resp = Media.request(\'post\', \'tas/api/incidents\', fields);\r\n if (typeof resp.response !== \'object\' || typeof resp.response.id === \'undefined\') {\r\n throw \'Cannot create \' + Media.name + \' issue. Check debug log for more information.\';\r\n }\r\n\r\n if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {\r\n result.tags.__zbx_tpd_issuekey = resp.response.number;\r\n result.tags.__zbx_tpd_issuelink = Media.params.api +\r\n \'tas/secure/incident?action=show&unid=\' + resp.response.id;\r\n }\r\n }\r\n // Update a created issue.\r\n else {\r\n if (params.event_source == 3 && params.event_value == 0) {\r\n throw \'Internal event recovery actions are not supported.\';\r\n }\r\n\r\n Zabbix.log(4, \'[ \' + Media.name + \' Webhook ] Request of the ticket updating.\');\r\n fields.action = params.alert_message.replace(/\\n/g, \'
\');\r\n\r\n resp = Media.request(\'put\', \'tas/api/incidents/number/\' + Media.params.issue_key, fields);\r\n if (typeof resp.response !== \'object\' || typeof resp.response.id === \'undefined\'\r\n || resp.response.number !== Media.params.issue_key) {\r\n throw \'Cannot update \' + Media.name + \' issue. Check debug log for more information.\';\r\n }\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ \' + Media.name + \' Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_tpd_issuelink}','TOPdesk: {EVENT.TAGS.__zbx_tpd_issuekey}','Please refer to https://developers.topdesk.com/documentation/index.html and https://www.zabbix.com/documentation/6.2/manual/config/notifications/media/webhook#example_scripts.\r\n \r\nSet global macro {$ZABBIX.URL} with your Zabbix server URL.\r\nAdd a dedicated user with the media type \"TOPdesk\".\r\nChange the values of the variables topdesk_api (URL), topdesk_password, topdesk_user. The topdesk_status is the default status for creating a new TOPdesk ticket.',0),(26,4,'iTop','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Itop = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n if (params.log !== \'private_log\' && params.log !== \'public_log\') {\r\n throw \'Incorrect \"itop_log\" parameter given: \' + params.log + \'\\nMust be \"private_log\" or \"public_log\".\';\r\n }\r\n\r\n Itop.params = params;\r\n if (typeof Itop.params.url === \'string\') {\r\n if (!Itop.params.url.endsWith(\'/\')) {\r\n Itop.params.url += \'/\';\r\n }\r\n\r\n Itop.params.url += \'webservices/rest.php?version=\' + encodeURIComponent(Itop.params.api_version);\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Itop.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setCreatePayload: function () {\r\n json_data.operation = \'core/create\';\r\n json_data.fields.org_id = Itop.params.organization_id;\r\n json_data.fields.title = params.alert_subject;\r\n json_data.fields.description = params.alert_message.replace(\'<\', \'<\')\r\n .replace(\'>\', \'>\')\r\n .replace(/(?:\\r\\n|\\r|\\n)/g, \'
\');\r\n },\r\n\r\n setUpdatePayload: function () {\r\n json_data.operation = \'core/update\';\r\n json_data.key = Itop.params.id;\r\n json_data.fields.title = params.alert_subject;\r\n json_data.fields[Itop.params.log] = {\r\n add_item: {\r\n message: params.alert_subject + \'\\n\' + params.alert_message,\r\n format: \'text\'\r\n }\r\n };\r\n },\r\n\r\n request: function (data) {\r\n [\'url\', \'user\', \'password\', \'organization_id\', \'class\', \'api_version\', \'id\'].forEach(function (field) {\r\n if (typeof Itop.params !== \'object\' || typeof Itop.params[field] === \'undefined\'\r\n || Itop.params[field] === \'\' ) {\r\n throw \'Required Itop param is not set: \"itop_\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = Itop.params.url,\r\n request = new HttpRequest(),\r\n object;\r\n\r\n request.addHeader(\'Content-Type: multipart/form-data\');\r\n request.addHeader(\'Authorization: Basic \' + btoa(Itop.params.user + \':\' + Itop.params.password));\r\n\r\n if (Itop.HTTPProxy) {\r\n request.setProxy(Itop.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ iTop Webhook ] Sending request: \' + url + \'&json_data=\' + data);\r\n\r\n response = request.post(url + \'&json_data=\' + encodeURIComponent(data));\r\n\r\n Zabbix.log(4, \'[ iTop Webhook ] Received response with status code \' + request.getStatus() + \'\\n\' + response);\r\n\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ iTop Webhook ] Failed to parse response received from iTop\');\r\n throw \'Failed to parse response received from iTop.\\nRequest status code \' +\r\n request.getStatus() + \'. Check debug log for more information.\';\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n throw \'Request failed with status code \' + request.getStatus() + \'. Check debug log for more information.\';\r\n }\r\n else if (typeof response.code !== \'undefined\' && response.code !== 0) {\r\n throw \'Request failed with iTop code \' + response.code + \': \' +\r\n JSON.stringify(response.message) + \'. Check debug log for more information.\';\r\n }\r\n else {\r\n Object.keys(response.objects)\r\n .forEach(function (key) {\r\n object = response.objects[key];\r\n });\r\n \r\n return {\r\n status: request.getStatus(),\r\n response: object.fields\r\n };\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n json_data = {},\r\n itop_params = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'alert_subject\', \'summary\', \'event_recovery_value\',\r\n \'event_source\', \'event_value\', \'action_name\'\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'itop_\')) {\r\n itop_params[key.substring(5)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n Itop.setParams(itop_params);\r\n Itop.setProxy(params.HTTPProxy);\r\n\r\n json_data.operation = \'\';\r\n json_data.class = Itop.params.class;\r\n json_data.comment = Itop.params.comment;\r\n json_data.output_fields = \'id, friendlyname\';\r\n json_data.fields = {};\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n Itop.setCreatePayload();\r\n Itop.request(json_data);\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && params.event_update_status === \'0\'\r\n && Itop.params.id === \'{EVENT.TAGS.__zbx_itop_id}\') {\r\n Itop.setCreatePayload();\r\n\r\n var response = Itop.request(json_data);\r\n\r\n result.tags.__zbx_itop_id = response.response.id;\r\n result.tags.__zbx_itop_key = response.response.friendlyname;\r\n result.tags.__zbx_itop_link = params.itop_url + (params.itop_url.endsWith(\'/\') ? \'\' : \'/\') +\r\n \'pages/UI.php?operation=details&class=\' + encodeURIComponent(Itop.params.class) + \'&id=\' +\r\n encodeURIComponent(response.response.id);\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n if (Itop.params.id === \'{EVENT.TAGS.__zbx_itop_id}\') {\r\n throw \'Incorrect iTop ticket ID given: \' + Itop.params.id;\r\n }\r\n Itop.setUpdatePayload();\r\n Itop.request(json_data);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ iTop Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_itop_link}','iTop: {EVENT.TAGS.__zbx_itop_key}','',0),(27,4,'Rocket.Chat','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var RocketChat = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n RocketChat.params = params;\r\n if (RocketChat.params.url && RocketChat.params.api_url) {\r\n if (!RocketChat.params.url.endsWith(\'/\')) {\r\n RocketChat.params.url += \'/\';\r\n }\r\n if (!RocketChat.params.api_url.endsWith(\'/\')) {\r\n RocketChat.params.api_url += \'/\';\r\n }\r\n if (RocketChat.params.api_url.startsWith(\'/\')) {\r\n RocketChat.params.api_url = RocketChat.params.api_url.substring(1);\r\n }\r\n\r\n RocketChat.params.url += RocketChat.params.api_url;\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n RocketChat.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n addFields: function (fields) {\r\n var data = [];\r\n\r\n if (typeof fields === \'object\' && Object.keys(fields).length) {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (fields[field] === \'\') {\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Field \"\' + field +\r\n \'\" can\\\'t be empty. The field ignored.\');\r\n }\r\n else {\r\n try {\r\n var parts = field.split(\':\'),\r\n prefix = parts[0].split(\'_\');\r\n\r\n if (typeof prefix[2] === \'undefined\'\r\n || (prefix[2] === \'p\' && params.event_value === \'1\')\r\n || (prefix[2] === \'r\' && params.event_value === \'0\')) {\r\n data.push({\r\n title: field.substring(field.indexOf(\':\') + 1),\r\n value: fields[field],\r\n short: prefix[1] === \'short\'\r\n });\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Can\\\'t parse field \"\' + field +\r\n \'\". The field ignored.\');\r\n }\r\n }\r\n });\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (method, query, data) {\r\n [\'url\', \'api_url\', \'user_id\', \'user_token\', \'send_to\'].forEach(function (field) {\r\n if (typeof RocketChat.params !== \'object\' || typeof RocketChat.params[field] === \'undefined\'\r\n || RocketChat.params[field] === \'\' ) {\r\n throw \'Required parameter is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n url = RocketChat.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'X-Auth-Token:\' + RocketChat.params.user_token);\r\n request.addHeader(\'X-User-Id:\' + RocketChat.params.user_id);\r\n\r\n if (typeof RocketChat.HTTPProxy !== \'undefined\' && RocketChat.HTTPProxy !== \'\') {\r\n request.setProxy(RocketChat.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Sending request: \' + url +\r\n ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n switch (method) {\r\n case \'get\':\r\n response = request.get(url, data);\r\n break;\r\n\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Failed to parse response received from RocketChat\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.message !== \'undefined\') {\r\n message += \': \' + JSON.stringify(response.message);\r\n }\r\n else if (response !== null && typeof response.error !== \'undefined\') {\r\n message += \': \' + JSON.stringify(response.error);\r\n }\r\n\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n status: request.getStatus(),\r\n response: response\r\n };\r\n },\r\n\r\n postMessage: function(use_default_message, message, fields) {\r\n var data = {\r\n channel: RocketChat.params.send_to,\r\n attachments: [{\r\n collapsed: false,\r\n color: RocketChat.params.color,\r\n title: params.alert_subject\r\n }]\r\n };\r\n\r\n if (RocketChat.params.title_link) {\r\n data.attachments[0].title_link = RocketChat.params.title_link;\r\n }\r\n\r\n if (use_default_message) {\r\n data.attachments[0].text = message;\r\n }\r\n else {\r\n data.attachments[0].fields = RocketChat.addFields(fields);\r\n }\r\n\r\n var result = RocketChat.request(\'post\', \'chat.postMessage\', data);\r\n\r\n if (typeof result.response !== \'object\' || typeof result.response.message._id === \'undefined\') {\r\n throw \'Cannot send RocketChat message. Check debug log for more information.\';\r\n }\r\n\r\n return {\r\n id: result.response.message._id,\r\n rid: result.response.message.rid,\r\n channel: result.response.channel\r\n };\r\n },\r\n\r\n sendMessage: function(update, fields) {\r\n\r\n var data = {\r\n message: {\r\n rid: RocketChat.params.room_id,\r\n tmid: RocketChat.params.msg_id,\r\n tshow: true\r\n }\r\n };\r\n\r\n if (update.status === \'0\') {\r\n data.message.attachments = [{\r\n collapsed: false,\r\n color: RocketChat.params.color,\r\n title: params.alert_subject,\r\n title_link: RocketChat.params.title_link,\r\n fields: RocketChat.addFields(fields)\r\n }];\r\n }\r\n else {\r\n data.message.alias = update.user;\r\n data.message.msg = update.action;\r\n if (update.message) {\r\n data.message.attachments = [{\r\n color: RocketChat.params.color,\r\n text: update.message\r\n }];\r\n }\r\n }\r\n\r\n RocketChat.request(\'post\', \'chat.sendMessage\', data);\r\n },\r\n\r\n getMessageLink: function(rid, id) {\r\n var room = RocketChat.request(\'get\', \'rooms.info?roomId=\' + encodeURIComponent(rid)),\r\n link = params.rc_url +\r\n (params.rc_url.endsWith(\'/\') ? \'\' : \'/\');\r\n\r\n switch (room.response.room.t) {\r\n case \'c\':\r\n link += \'channel/\' + room.response.room.name + \'?msg=\' + id;\r\n break;\r\n\r\n case \'p\':\r\n link += \'group/\' + room.response.room.name + \'?msg=\' + id;\r\n break;\r\n\r\n case \'d\':\r\n link += \'direct/\' + rid + \'?msg=\' + id;\r\n break;\r\n\r\n default:\r\n Zabbix.log(4, \'[ RocketChat Webhook ] Can\\\'t get room type. Link to message will not be added.\');\r\n }\r\n\r\n return link;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n response,\r\n fields = {},\r\n rc = {},\r\n update = {},\r\n result = {tags: {}},\r\n required_params = [\'alert_subject\', \'alert_message\', \'event_source\', \'event_value\'],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'rc_\')) {\r\n rc[key.substring(3)] = params[key];\r\n }\r\n else if (key.startsWith(\'field_\')) {\r\n fields[key.substring(6)] = params[key];\r\n }\r\n else if (key.startsWith(\'event_update_\')) {\r\n update[key.substring(13)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Forcing parameters for non trigger-based events.\r\n if (params.event_source !== \'0\') {\r\n params.use_default_message = \'true\';\r\n params.event_nseverity = \'0\';\r\n params.rc_title_link = false;\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n RocketChat.setParams(rc);\r\n RocketChat.setProxy(params.HTTPProxy);\r\n RocketChat.params.color = severities[params.event_nseverity].color;\r\n\r\n // Send default message if use_default_message === true.\r\n if (params.use_default_message.toLowerCase() === \'true\') {\r\n response = RocketChat.postMessage(true, params.alert_message);\r\n result.tags.__zbx_rc_id = response.id;\r\n result.tags.__zbx_rc_rid = response.rid;\r\n result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);\r\n }\r\n // Send message for trigger-based events.\r\n else if (params.event_value === \'1\' && update.status === \'0\') {\r\n response = RocketChat.postMessage(false, params.alert_message, fields);\r\n result.tags.__zbx_rc_id = response.id;\r\n result.tags.__zbx_rc_rid = response.rid;\r\n result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);\r\n }\r\n // Send thread message for trigger-based event.\r\n else {\r\n RocketChat.sendMessage(update, fields);\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ RocketChat Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_rc_msg_url}','Rocket.Chat','',0),(28,4,'VictorOps','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var VictorOps = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n VictorOps.params = params;\r\n if (VictorOps.params.endpoint) {\r\n if (!VictorOps.params.endpoint.endsWith(\'/\')) {\r\n VictorOps.params.endpoint += \'/\';\r\n }\r\n\r\n if (typeof VictorOps.params.routing_key !== \'undefined\'\r\n && VictorOps.params.routing_key !== \'{ALERT.SENDTO}\'\r\n && VictorOps.params.routing_key !== \'Default\') {\r\n VictorOps.params.endpoint += VictorOps.params.routing_key;\r\n }\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n VictorOps.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n addFields: function (fields) {\r\n var data = {};\r\n\r\n if (typeof fields === \'object\') {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (fields[field] === \'\') {\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Field \"\' + field +\r\n \'\" can\\\'t be empty. The field ignored.\');\r\n }\r\n else {\r\n try {\r\n var parts = field.split(\':\'),\r\n prefix = parts[0].split(\'_\');\r\n\r\n if (typeof prefix[1] === \'undefined\'\r\n || (prefix[1] === \'p\' && params.event_value === \'1\'\r\n && (params.event_update_status === \'0\'\r\n || params.event_update_status === \'{EVENT.UPDATE.STATUS}\'))\r\n || (prefix[1] === \'r\' && params.event_value === \'0\'\r\n && (params.event_update_status === \'0\'\r\n || params.event_update_status === \'{EVENT.UPDATE.STATUS}\'))\r\n || (prefix[1] === \'u\' && params.event_update_status === \'1\')) {\r\n data[field.substring(field.indexOf(\':\') + 1)] = fields[field];\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Can\\\'t parse field \"\' + field +\r\n \'\". The field ignored.\');\r\n }\r\n }\r\n });\r\n }\r\n\r\n return data;\r\n },\r\n\r\n request: function (data) {\r\n if (typeof VictorOps.params !== \'object\' || typeof VictorOps.params.endpoint === \'undefined\'\r\n || VictorOps.params.endpoint === \'\' ) {\r\n throw \'Required parameter is not set: \"vops_endpoint\".\';\r\n }\r\n\r\n var response,\r\n url = VictorOps.params.endpoint,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n\r\n if (typeof VictorOps.HTTPProxy !== \'undefined\' && VictorOps.HTTPProxy !== \'\') {\r\n request.setProxy(VictorOps.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Sending request: \' + url +\r\n ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n response = request.post(url, data);\r\n\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ VictorOps Webhook ] Failed to parse response received from VictorOps\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response !== null && typeof response.messages !== \'undefined\') {\r\n message += \': \' + JSON.stringify(response.messages);\r\n }\r\n\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n\r\n return response;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n vops = {},\r\n required_params = [\'event_source\', \'event_value\', \'priority_update\'],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'resolved\', color: \'#009900\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'vops_\')) {\r\n vops[key.substring(5)] = params[key];\r\n }\r\n else if (key.startsWith(\'field\')) {\r\n fields[key.substring(5)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'7\';\r\n }\r\n\r\n if (params.event_value === \'0\') {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n if (params.event_update_status === \'1\') {\r\n fields[\':message_type\'] = params.priority_update;\r\n }\r\n else {\r\n fields[\':message_type\'] = params[\'priority_\' + severities[params.event_nseverity].name]\r\n || \'INFO\';\r\n }\r\n\r\n if (params.event_info && params.event_source === \'0\') {\r\n fields[\':event_info\'] = params.event_info;\r\n }\r\n\r\n VictorOps.setParams(vops);\r\n VictorOps.setProxy(params.HTTPProxy);\r\n VictorOps.request(VictorOps.addFields(fields));\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ VictorOps Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',0,0,'','','',0),(29,4,'Brevis.one','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var BrevisOne = {\r\n params: [],\r\n\r\n addParam: function (name, value) {\r\n BrevisOne.params.push(name + \'=\' + encodeURIComponent(value));\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n BrevisOne.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n setPayload: function (params) {\r\n var parts = params.send_to.split(\':\'),\r\n defaultValues = {\r\n ring: \'true\',\r\n flash: \'true\',\r\n telauto: \'false\'\r\n };\r\n\r\n BrevisOne.addParam(\'username\', params.username);\r\n BrevisOne.addParam(\'password\', params.password);\r\n BrevisOne.addParam(\'text\', params.text);\r\n\r\n if (parts.length > 1) {\r\n BrevisOne.addParam(\'mode\', parts[0]);\r\n BrevisOne.addParam(\'to\', parts[1]);\r\n }\r\n else {\r\n BrevisOne.addParam(\'to\', parts[0]);\r\n }\r\n\r\n Object.keys(defaultValues)\r\n .forEach(function (key) {\r\n if (params[key] && params[key].trim() && params[key].toLowerCase() === defaultValues[key]) {\r\n BrevisOne.addParam(key, defaultValues[key]);\r\n }\r\n });\r\n },\r\n\r\n request: function () {\r\n var response,\r\n request = new HttpRequest(),\r\n data = \'?\' + BrevisOne.params.join(\'&\');\r\n\r\n request.addHeader(\'Content-Type: multipart/form-data\');\r\n\r\n if (typeof BrevisOne.HTTPProxy !== \'undefined\' && BrevisOne.HTTPProxy !== \'\') {\r\n request.setProxy(BrevisOne.HTTPProxy);\r\n }\r\n\r\n Zabbix.log(4, \'[ BrevisOne Webhook ] Sending request.\');\r\n\r\n response = request.post(params.endpoint + data);\r\n\r\n Zabbix.log(4, \'[ BrevisOne Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response) {\r\n message += \': \' + response;\r\n }\r\n\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value);\r\n\r\n [\'endpoint\', \'password\', \'username\', \'text\', \'send_to\'].forEach(function (field) {\r\n if (typeof params !== \'object\' || typeof params[field] === \'undefined\'\r\n || !params[field].trim()) {\r\n throw \'Required parameter is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n if (params.send_to === \'{ALERT.SENDTO}\') {\r\n throw \'Required parameter is not set: \"send_to\".\';\r\n }\r\n\r\n BrevisOne.setProxy(params.HTTPProxy);\r\n BrevisOne.setPayload(params);\r\n BrevisOne.request();\r\n\r\n return \'OK\';\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ BrevisOne Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',0,0,'','','',0),(30,4,'Express.ms','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Express = {\r\n params: [],\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n Express.params = params;\r\n\r\n if (typeof Express.params.url === \'string\' && !Express.params.url.endsWith(\'/\')) {\r\n Express.params.url += \'/\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Express.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n request: function (query, data) {\r\n var response,\r\n url = Express.params.url + query,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: Bearer \' + Express.params.token);\r\n\r\n if (typeof Express.HTTPProxy !== \'undefined\' && Express.HTTPProxy !== \'\') {\r\n request.setProxy(Express.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Express Webhook ] Sending request: \' + url +\r\n ((typeof data === \'string\') ? (\'\\n\' + data) : \'\'));\r\n\r\n response = request.post(url, data);\r\n\r\n Zabbix.log(4, \'[ Express Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Express Webhook ] Failed to parse response received from Express\');\r\n response = {};\r\n }\r\n }\r\n\r\n if (response.status !== \'ok\') {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (typeof response.reason !== \'undefined\') {\r\n message += \': \' + JSON.stringify(response.reason);\r\n }\r\n\r\n throw message + \'. Check debug log for more information.\';\r\n }\r\n\r\n return response.result;\r\n },\r\n\r\n postMessage: function (is_problem) {\r\n var data,\r\n url,\r\n result = {tags: {}},\r\n response;\r\n\r\n if (is_problem) {\r\n data = {\r\n group_chat_id: Express.params.send_to,\r\n notification: {\r\n status: \'ok\',\r\n body: Express.params.message\r\n }\r\n };\r\n url = \'api/v4/botx/notifications/direct\';\r\n }\r\n else {\r\n data = {\r\n reply: {\r\n status: \'ok\',\r\n body: Express.params.message\r\n }\r\n };\r\n url = \'api/v3/botx/events/reply_event\';\r\n\r\n try {\r\n var tags = JSON.parse(Express.params.tags);\r\n }\r\n catch (error) {\r\n throw \'Value of \"express_tags\" is not JSON. Value: \' + Express.params.tags + \'.\';\r\n }\r\n\r\n tags.forEach(function(tag) {\r\n if (tag.tag === \'__zbx_ex_sync_id_\' + Express.params.send_to) {\r\n data.source_sync_id = tag.value;\r\n }\r\n });\r\n\r\n if (!data.source_sync_id) {\r\n throw \'Cannot update data. sync_id for the provided sender is unknown.\';\r\n }\r\n }\r\n\r\n response = Express.request(url, data);\r\n\r\n if (is_problem && response.sync_id) {\r\n result.tags[\'__zbx_ex_sync_id_\' + Express.params.send_to] = response.sync_id;\r\n\r\n return JSON.stringify(result);\r\n }\r\n else {\r\n return \'OK\';\r\n }\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n express = {},\r\n required_params = [\r\n \'express_url\', \'express_send_to\', \'express_message\', \'express_tags\', \'express_token\',\r\n \'event_source\', \'event_value\', \'event_update_status\'\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'express_\')) {\r\n express[key.substring(8)] = params[key];\r\n }\r\n\r\n if (required_params.indexOf(key) !== -1\r\n && (params[key].trim() === \'\' || params[key] === \'{ALERT.SENDTO}\')) {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Forcing event_value and event_update_status for non trigger-based events.\r\n if (params.event_source !== \'0\' ) {\r\n params.event_value = \'1\';\r\n params.event_update_status = \'0\';\r\n }\r\n\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\') {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n Express.setParams(express);\r\n Express.setProxy(params.HTTPProxy);\r\n\r\n return Express.postMessage(params.event_value === \'1\' && params.event_update_status === \'0\');\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ Express Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,0,'','','',0),(31,4,'ManageEngine ServiceDesk','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var MEngine = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n\r\n MEngine.params = params;\r\n if (typeof MEngine.params.url === \'string\') {\r\n if (!MEngine.params.url.endsWith(\'/\')) {\r\n MEngine.params.url += \'/\';\r\n }\r\n\r\n MEngine.params.url += \'api/v3/\';\r\n }\r\n\r\n if (MEngine.params.on_premise.toLowerCase() !== \'true\'\r\n && typeof MEngine.params.on_demand_url_auth === \'string\') {\r\n if (!MEngine.params.on_demand_url_auth.endsWith(\'/\')) {\r\n MEngine.params.on_demand_url_auth += \'/\';\r\n }\r\n\r\n MEngine.params.on_demand_url_auth += \'oauth/v2/token?\';\r\n }\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n MEngine.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n createLink: function (id, url) {\r\n return url + (url.endsWith(\'/\') ? \'\' : \'/\') +\r\n ((MEngine.params.on_premise.toLowerCase() === \'true\')\r\n ? (\'WorkOrder.do?woMode=viewWO&woID=\' + id)\r\n : (\'app/itdesk/ui/requests/\' + id + \'/details\')\r\n );\r\n },\r\n\r\n refreshAccessToken: function () {\r\n [\r\n \'on_demand_url_auth\',\r\n \'on_demand_refresh_token\',\r\n \'on_demand_client_id\',\r\n \'on_demand_client_secret\'\r\n ].forEach(function (field) {\r\n if (typeof MEngine.params !== \'object\' || typeof MEngine.params[field] === \'undefined\'\r\n || MEngine.params[field].trim() === \'\' ) {\r\n throw \'Required MEngine param is not set: \"sd_\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n request = new HttpRequest(),\r\n url = MEngine.params.on_demand_url_auth +\r\n \'refresh_token=\' + encodeURIComponent(MEngine.params.on_demand_refresh_token) +\r\n \'&grant_type=refresh_token&client_id=\' + encodeURIComponent(MEngine.params.on_demand_client_id) +\r\n \'&client_secret=\' + encodeURIComponent(MEngine.params.on_demand_client_secret) +\r\n \'&redirect_uri=https://www.zoho.com&scope=SDPOnDemand.requests.ALL\';\r\n\r\n if (MEngine.HTTPProxy) {\r\n request.setProxy(MEngine.HTTPProxy);\r\n }\r\n\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Refreshing access token. Request: \' + url);\r\n\r\n response = request.post(url);\r\n\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Failed to parse response received from Zoho Accounts\');\r\n }\r\n\r\n if ((request.getStatus() < 200 || request.getStatus() >= 300) && !response.access_token) {\r\n throw \'Access token refresh failed with HTTP status code \' + request.getStatus() +\r\n \'. Check debug log for more information.\';\r\n }\r\n else {\r\n MEngine.params.on_demand_auth_token = response.access_token;\r\n }\r\n },\r\n\r\n request: function (method, query, data) {\r\n var response,\r\n url = MEngine.params.url + query,\r\n input,\r\n request = new HttpRequest(),\r\n message;\r\n\r\n if (MEngine.params.on_premise.toLowerCase() === \'true\') {\r\n request.addHeader(\'TECHNICIAN_KEY: \' + MEngine.params.on_premise_auth_token);\r\n }\r\n else {\r\n request.addHeader(\'Authorization: Zoho-oauthtoken \' + MEngine.params.on_demand_auth_token);\r\n request.addHeader(\'Accept: application/v3+json\');\r\n }\r\n\r\n if (MEngine.HTTPProxy) {\r\n request.setProxy(MEngine.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n input = \'input_data=\' + encodeURIComponent(data);\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Sending request: \' + url + \'?\' + input);\r\n\r\n switch (method) {\r\n case \'post\':\r\n response = request.post(url, input);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, input);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Failed to parse response received from ManageEngine\');\r\n }\r\n\r\n if ((request.getStatus() < 200 || request.getStatus() >= 300)\r\n && typeof response.response_status !== \'object\') {\r\n throw \'Request failed with HTTP status code \' + request.getStatus() +\r\n \'. Check debug log for more information.\';\r\n }\r\n else if (typeof response.response_status === \'object\' && response.response_status.status === \'failed\') {\r\n message = \'Request failed with status_code \';\r\n\r\n if (typeof response.response_status.messages === \'object\'\r\n && response.response_status.messages[0]\r\n && response.response_status.messages[0].message) {\r\n message += response.response_status.messages[0].status_code +\r\n \'. Message: \' + response.response_status.messages[0].message;\r\n }\r\n else {\r\n message += response.response_status.status_code;\r\n }\r\n\r\n message += \'. Check debug log for more information.\';\r\n throw message;\r\n }\r\n else if (response.request) {\r\n return response.request.id;\r\n }\r\n },\r\n\r\n createPaylaod: function (fields, isNote) {\r\n var data = {},\r\n result;\r\n\r\n if (isNote) {\r\n data.description = fields[\'field_string:description\'].replace(/(?:\\r\\n|\\r|\\n)/g, \'
\');\r\n result = {request_note: data};\r\n }\r\n else {\r\n Object.keys(fields)\r\n .forEach(function(field) {\r\n if (fields[field].trim() === \'\') {\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Field \"\' + field +\r\n \'\" can\\\'t be empty. The field ignored.\');\r\n }\r\n else {\r\n try {\r\n var prefix = field.split(\':\')[0],\r\n root;\r\n\r\n if (prefix.startsWith(\'udf_\') && !data.udf_fields) {\r\n data.udf_fields = {};\r\n root = data.udf_fields;\r\n }\r\n else if (prefix.startsWith(\'udf_\')) {\r\n root = data.udf_fields;\r\n }\r\n else {\r\n root = data;\r\n }\r\n\r\n if (prefix.endsWith(\'string\')) {\r\n root[field.substring(field.indexOf(\':\') + 1)\r\n .toLowerCase()] = fields[field];\r\n }\r\n else {\r\n root[field.substring(field.indexOf(\':\') + 1)\r\n .toLowerCase()] = {\r\n name: fields[field]\r\n };\r\n }\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ ManageEngine Webhook ] Can\\\'t parse field \"\' + field +\r\n \'\". The field ignored.\');\r\n }\r\n }\r\n });\r\n if (data.description) {\r\n data.description = data.description.replace(/(?:\\r\\n|\\r|\\n)/g, \'
\');\r\n }\r\n\r\n result = {request: data};\r\n }\r\n\r\n return result;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n fields = {},\r\n sd = {},\r\n result = {tags: {}},\r\n required_params = [\r\n \'sd_on_premise\', \'field_string:subject\', \'field_string:description\',\r\n \'event_recovery_value\', \'event_source\', \'event_value\', \'event_update_status\'\r\n ],\r\n severities = [\r\n {name: \'not_classified\', color: \'#97AAB3\'},\r\n {name: \'information\', color: \'#7499FF\'},\r\n {name: \'warning\', color: \'#FFC859\'},\r\n {name: \'average\', color: \'#FFA059\'},\r\n {name: \'high\', color: \'#E97659\'},\r\n {name: \'disaster\', color: \'#E45959\'},\r\n {name: \'default\', color: \'#000000\'}\r\n ];\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'sd_\')) {\r\n sd[key.substring(3)] = params[key];\r\n }\r\n else if (key.startsWith(\'field_\') || key.startsWith(\'udf_field_\')) {\r\n fields[key] = params[key];\r\n }\r\n\r\n if (required_params.indexOf(key) !== -1 && params[key].trim() === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {\r\n params.event_nseverity = \'6\';\r\n }\r\n\r\n if (params.event_update_status === \'1\' && (typeof params.sd_request_id === \'undefined\'\r\n || params.sd_request_id.trim() === \'\'\r\n || params.sd_request_id === \'{EVENT.TAGS.__zbx_sd_request_id}\')) {\r\n throw \'Parameter \"sd_request_id\" can\\\'t be empty for update operation.\';\r\n }\r\n\r\n MEngine.setParams(sd);\r\n MEngine.setProxy(params.HTTPProxy);\r\n\r\n if (MEngine.params.on_premise.toLowerCase() !== \'true\') {\r\n MEngine.refreshAccessToken();\r\n }\r\n\r\n // Create issue for non trigger-based events.\r\n if (params.event_source !== \'0\' && params.event_recovery_value !== \'0\') {\r\n fields[\'field_object:priority\'] = params[\'priority_\' + severities[params.event_nseverity].name]\r\n || \'Normal\';\r\n\r\n MEngine.request(\'post\', \'requests\', MEngine.createPaylaod(fields));\r\n }\r\n // Create issue for trigger-based events.\r\n else if (params.event_value === \'1\' && params.event_update_status === \'0\') {\r\n fields[\'field_object:priority\'] = params[\'priority_\' + severities[params.event_nseverity].name]\r\n || \'Normal\';\r\n\r\n var id = MEngine.request(\'post\', \'requests\', MEngine.createPaylaod(fields));\r\n\r\n result.tags.__zbx_sd_request_id = id;\r\n result.tags.__zbx_sd_request_link = MEngine.createLink(id, params.sd_url);\r\n }\r\n // Update created issue for trigger-based event.\r\n else {\r\n if (params.event_update_status === \'1\') {\r\n MEngine.request(\'post\', \'requests/\' + params.sd_request_id + \'/notes\',\r\n MEngine.createPaylaod(fields, true)\r\n );\r\n }\r\n delete fields[\'field_string:description\'];\r\n MEngine.request(\'put\', \'requests/\' + params.sd_request_id, MEngine.createPaylaod(fields));\r\n }\r\n\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(3, \'[ ManageEngine Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_sd_request_link}','ManageEngine: {EVENT.TAGS.__zbx_sd_request_id}','',0),(32,4,'Github','','','','','','','',1,25,0,0,0,0,'',1,3,'10s',1,'var Github = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n Github.params = params;\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n Github.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n urlCheckFormat: function (url) {\r\n\r\n if (typeof url === \'string\' && !url.endsWith(\'/\')) {\r\n url += \'/\';\r\n }\r\n\r\n if (url.indexOf(\'http://\') === -1 && url.indexOf(\'https://\') === -1) {\r\n url = \'https://\' + url;\r\n }\r\n\r\n return url;\r\n },\r\n\r\n createProblemURL: function (zabbix_url, triggerid, eventid, event_source) {\r\n var problem_url = zabbix_url;\r\n\r\n if (event_source === \'0\') {\r\n problem_url += \'tr_events.php?triggerid=\' + triggerid + \'&eventid=\' + eventid;\r\n }\r\n\r\n return problem_url;\r\n },\r\n\r\n request: function (method, url, data) {\r\n [\'token\', \'user_agent\'].forEach(function (field) {\r\n if (typeof Github.params !== \'object\' || typeof Github.params[field] === \'undefined\' || Github.params[field] === \'\') {\r\n throw \'Required Github param is not set: \"\' + field + \'\".\';\r\n }\r\n });\r\n\r\n var response,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'User-Agent: \' + Github.params.user_agent);\r\n request.addHeader(\'Accept: application/vnd.github.v3+json\');\r\n request.addHeader(\'Authorization: token \' + Github.params.token);\r\n\r\n if (typeof Github.HTTPProxy !== \'undefined\' && Github.HTTPProxy !== \'\') {\r\n request.setProxy(Github.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ Github Webhook ] Sending request: \' + url + ((typeof data === \'string\')\r\n ? (\'\\n\' + data)\r\n : \'\'));\r\n\r\n switch (method) {\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'patch\':\r\n response = request.patch(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ Github Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ Github Webhook ] Failed to parse response received from Github\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (typeof response !== \'object\') {\r\n throw \'Failed to process response received from Github. Check debug log for more information.\';\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response.message) {\r\n message += \': \' + response.message;\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return response;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n github = {},\r\n url = \'\',\r\n data = {},\r\n comment_data,\r\n result = { tags: {} },\r\n required_params = [\r\n \'alert_subject\', \'alert_message\', \'event_source\', \'event_value\',\r\n \'event_update_status\', \'event_recovery_value\', \'event_severity\',\r\n \'event_id\', \'trigger_id\', \'zabbix_url\',\r\n \'github_token\', \'github_url\', \'github_user_agent\'\r\n ],\r\n method = \'post\',\r\n process_tags = true;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'github_\')) {\r\n github[key.substring(7)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (typeof params.zabbix_url !== \'string\' || params.zabbix_url.trim() === \'\' || params.zabbix_url === \'{$ZABBIX.URL}\') {\r\n throw \'Field \"zabbix_url\" cannot be empty.\';\r\n }\r\n\r\n // Check for backslash in the end of url and schema.\r\n github.url = Github.urlCheckFormat(github.url);\r\n params.zabbix_url = Github.urlCheckFormat(params.zabbix_url);\r\n\r\n // Default url for creating issue\r\n url = github.url + \'repos/\' + github.repo + \'/issues\';\r\n\r\n data.title = params.alert_subject;\r\n data.body = params.alert_message;\r\n data.labels = [\r\n { name: \"Zabbix\" }\r\n ];\r\n\r\n // Adding label corresponding to trigger severity in Zabbix.\r\n if (params.event_severity !== \'undefined\' && params.event_source === \'0\') {\r\n data.labels.push({ name: params.event_severity });\r\n }\r\n\r\n // In case of update or resolve event.\r\n if (params.event_source === \'0\' && (params.event_value === \'0\' || params.event_update_status === \'1\')) {\r\n process_tags = false;\r\n method = \'patch\';\r\n url = github.url + \'repos/\' + github.repo + \'/issues/\' + github.issue_number;\r\n comment_data = Object.assign({}, data);\r\n delete data.body;\r\n } else {\r\n problem_url = Github.createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source);\r\n data.body += \'\\nEvent details in Zabbix: [\' + problem_url + \'](\' + problem_url + \')\';\r\n }\r\n\r\n Github.setParams(github);\r\n Github.setProxy(params.HTTPProxy);\r\n\r\n var response = Github.request(method, url, data);\r\n\r\n // Leave a comment if comment_data present.\r\n if (typeof comment_data === \'object\') {\r\n url = github.url + \'repos/\' + github.repo + \'/issues/\' + github.issue_number + \'/comments\';\r\n Github.request(\"post\", url, comment_data);\r\n }\r\n\r\n if (process_tags) {\r\n result.tags.__zbx_github_issue_number = response.number;\r\n result.tags.__zbx_github_repo = github.repo;\r\n result.tags.__zbx_github_link = response.html_url;\r\n }\r\n\r\n Zabbix.log(4, \'[ Github Webhook ] Result: \' + JSON.stringify(result));\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ Github Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_github_link}','Github: Issue {EVENT.TAGS.__zbx_github_issue_number}','',0),(33,4,'GLPi','','','','','','','',1,25,0,0,0,0,'',1,1,'10s',1,'var GLPi = {\r\n params: {},\r\n\r\n setParams: function (params) {\r\n if (typeof params !== \'object\') {\r\n return;\r\n }\r\n GLPi.params = params;\r\n },\r\n\r\n setProxy: function (HTTPProxy) {\r\n GLPi.HTTPProxy = HTTPProxy;\r\n },\r\n\r\n urlCheckFormat: function (url) {\r\n if (typeof url === \'string\' && !url.endsWith(\'/\')) {\r\n url += \'/\';\r\n }\r\n\r\n if (url.indexOf(\'http://\') === -1 && url.indexOf(\'https://\') === -1) {\r\n url = \'https://\' + url;\r\n }\r\n\r\n return url;\r\n },\r\n\r\n getAuthToken: function (url, token) {\r\n var response,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Authorization: user_token \' + token);\r\n\r\n response = request.get(url + \"apirest.php/initSession\");\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ GLPi Webhook ] Failed to receive authentication token from GLPi.\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (Array.isArray(response)) {\r\n if (response[1]) {\r\n throw \'Error received from GLPi: \' + response[1];\r\n } else {\r\n throw \'Failed to receive authentication token from GLPi.\';\r\n }\r\n }\r\n\r\n if (typeof response !== \'object\' || !response.session_token) {\r\n throw \'Failed to process response received from getting GLPi authentication token. Check debug log for more information.\';\r\n }\r\n\r\n return response.session_token;\r\n },\r\n\r\n getProblemUrl: function (zabbix_url, triggerid, eventid, event_source) {\r\n var problem_url = zabbix_url;\r\n\r\n if (event_source === \'0\') {\r\n problem_url += \'tr_events.php?triggerid=\' + triggerid + \'&eventid=\' + eventid;\r\n }\r\n\r\n return problem_url;\r\n },\r\n\r\n request: function (method, url, data) {\r\n if (typeof GLPi.params !== \'object\' || typeof GLPi.params.authToken === \'undefined\' || GLPi.params.authToken === \'\') {\r\n throw \'Required GLPi param authToken is not set.\';\r\n }\r\n\r\n var response,\r\n request = new HttpRequest();\r\n\r\n request.addHeader(\'Content-Type: application/json\');\r\n request.addHeader(\'Session-Token:\' + GLPi.params.authToken);\r\n\r\n if (typeof GLPi.HTTPProxy !== \'undefined\' && GLPi.HTTPProxy !== \'\') {\r\n request.setProxy(GLPi.HTTPProxy);\r\n }\r\n\r\n if (typeof data !== \'undefined\') {\r\n data = JSON.stringify(data);\r\n }\r\n\r\n Zabbix.log(4, \'[ GLPi Webhook ] Sending request: \' + url + ((typeof data === \'string\')\r\n ? (\'\\n\' + data)\r\n : \'\'));\r\n\r\n switch (method) {\r\n case \'post\':\r\n response = request.post(url, data);\r\n break;\r\n\r\n case \'put\':\r\n response = request.put(url, data);\r\n break;\r\n\r\n default:\r\n throw \'Unsupported HTTP request method: \' + method;\r\n }\r\n\r\n Zabbix.log(4, \'[ GLPi Webhook ] Received response with status code \' +\r\n request.getStatus() + \'\\n\' + response);\r\n\r\n if (response !== null) {\r\n try {\r\n response = JSON.parse(response);\r\n }\r\n catch (error) {\r\n Zabbix.log(4, \'[ GLPi Webhook ] Failed to parse response received from GLPi\');\r\n response = null;\r\n }\r\n }\r\n\r\n if (typeof response !== \'object\' || typeof response === \'undefined\' || response === null) {\r\n throw \'Failed to process response received from GLPi. Check debug log for more information.\';\r\n }\r\n\r\n if (request.getStatus() < 200 || request.getStatus() >= 300) {\r\n var message = \'Request failed with status code \' + request.getStatus();\r\n\r\n if (response.message) {\r\n message += \': \' + response.message;\r\n }\r\n\r\n throw message + \' Check debug log for more information.\';\r\n }\r\n\r\n return response;\r\n }\r\n};\r\n\r\ntry {\r\n var params = JSON.parse(value),\r\n glpi = {},\r\n url = \'\',\r\n data = {},\r\n comment_data,\r\n result = { tags: {} },\r\n required_params = [\r\n \'alert_subject\', \'alert_message\', \'event_source\', \'event_value\',\r\n \'event_update_status\', \'event_recovery_value\',\r\n \'event_id\', \'trigger_id\', \'zabbix_url\',\r\n \'glpi_token\', \'glpi_url\'\r\n ],\r\n method = \'post\',\r\n process_tags = true,\r\n response;\r\n\r\n Object.keys(params)\r\n .forEach(function (key) {\r\n if (key.startsWith(\'glpi_\')) {\r\n glpi[key.substring(5)] = params[key];\r\n }\r\n else if (required_params.indexOf(key) !== -1 && params[key] === \'\') {\r\n throw \'Parameter \"\' + key + \'\" can\\\'t be empty.\';\r\n }\r\n });\r\n\r\n if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {\r\n throw \'Incorrect \"event_source\" parameter given: \' + params.event_source + \'\\nMust be 0-3.\';\r\n }\r\n\r\n // Check {EVENT.VALUE} for trigger-based and internal events.\r\n if (params.event_value !== \'0\' && params.event_value !== \'1\'\r\n && (params.event_source === \'0\' || params.event_source === \'3\')) {\r\n throw \'Incorrect \"event_value\" parameter given: \' + params.event_value + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n // Check {EVENT.UPDATE.STATUS} only for trigger-based events.\r\n if (params.event_update_status !== \'0\' && params.event_update_status !== \'1\' && params.event_source === \'0\') {\r\n throw \'Incorrect \"event_update_status\" parameter given: \' + params.event_update_status + \'\\nMust be 0 or 1.\';\r\n }\r\n\r\n if (params.event_source !== \'0\' && params.event_recovery_value === \'0\') {\r\n throw \'Recovery operations are supported only for trigger-based actions.\';\r\n }\r\n\r\n if (typeof params.zabbix_url !== \'string\' || params.zabbix_url.trim() === \'\' || params.zabbix_url === \'{$ZABBIX.URL}\') {\r\n throw \'Field \"zabbix_url\" cannot be empty.\';\r\n }\r\n\r\n // Check for backslash in the end of url and schema.\r\n glpi.url = GLPi.urlCheckFormat(glpi.url);\r\n params.zabbix_url = GLPi.urlCheckFormat(params.zabbix_url);\r\n\r\n glpi.authToken = GLPi.getAuthToken(glpi.url, glpi.token);\r\n GLPi.setParams(glpi);\r\n\r\n data = {\r\n \'input\': {\r\n \'name\': params.alert_subject,\r\n \'content\': params.alert_message + \'\\nLink to problem in Zabbix\',\r\n \'status\': 1, // Set status \"New\"\r\n \'urgency\': params.event_nseverity\r\n }\r\n };\r\n\r\n // In case of resolve\r\n if (params.event_source === \'0\' && params.event_value === \'0\') {\r\n process_tags = false;\r\n dataFollowup = {\r\n \'input\': {\r\n \'items_id\': glpi.problem_id,\r\n \'itemtype\': \'Problem\',\r\n \'content\': params.alert_message + \'\\nLink to problem in Zabbix\'\r\n }\r\n };\r\n dataProblem = {\r\n \'id\': glpi.problem_id,\r\n \'input\': {\r\n \'name\': params.alert_subject,\r\n \'status\': 5, // Set status \"Solved\"\r\n \'urgency\': params.event_nseverity\r\n }\r\n };\r\n\r\n GLPi.request(\'put\', glpi.url + \'apirest.php/Problem/\' + glpi.problem_id, dataProblem);\r\n GLPi.request(\'post\', glpi.url + \'apirest.php/Problem/\' + glpi.problem_id + \'/ITILFollowup\', dataFollowup);\r\n }\r\n\r\n // In case of update\r\n else if (params.event_source === \'0\' && params.event_update_status === \'1\') {\r\n process_tags = false;\r\n dataFollowup = {\r\n \'input\': {\r\n \'items_id\': glpi.problem_id,\r\n \'itemtype\': \'Problem\',\r\n \'content\': params.alert_message + \'\\nLink to problem in Zabbix\'\r\n }\r\n };\r\n dataProblem = {\r\n \'id\': glpi.problem_id,\r\n \'input\': {\r\n \'name\': params.alert_subject,\r\n \'urgency\': params.event_nseverity\r\n }\r\n };\r\n\r\n GLPi.request(\'put\', glpi.url + \'apirest.php/Problem/\' + glpi.problem_id, dataProblem);\r\n GLPi.request(\'post\', glpi.url + \'apirest.php/Problem/\' + glpi.problem_id + \'/ITILFollowup\', dataFollowup);\r\n }\r\n\r\n // In case of problem\r\n else {\r\n response = GLPi.request(\'post\', glpi.url + \'apirest.php/Problem/\', data);\r\n }\r\n\r\n if (process_tags) {\r\n result.tags.__zbx_glpi_problem_id = response.id;\r\n result.tags.__zbx_glpi_link = glpi.url + \'front/problem.form.php?id=\' + response.id;\r\n }\r\n\r\n Zabbix.log(4, \'[ GLPi Webhook ] Result: \' + JSON.stringify(result));\r\n return JSON.stringify(result);\r\n}\r\ncatch (error) {\r\n Zabbix.log(4, \'[ GLPi Webhook ] ERROR: \' + error);\r\n throw \'Sending failed: \' + error;\r\n}','30s',1,1,'{EVENT.TAGS.__zbx_glpi_link}','GLPi: Problem {EVENT.TAGS.__zbx_glpi_problem_id}','',0),(34,0,'Gmail','smtp.gmail.com','example.com','zabbix@example.com','','','','',1,587,1,0,0,1,'',1,3,'10s',1,'','30s',0,0,'','','',1),(35,0,'Gmail relay','smtp-relay.gmail.com','example.com','zabbix@example.com','','','','',1,587,1,0,0,0,'',1,3,'10s',1,'','30s',0,0,'','','',2),(36,0,'Office365','smtp.office365.com','example.com','zabbix@example.com','','','','',1,587,1,0,0,1,'',1,3,'10s',1,'','30s',0,0,'','','',3),(37,0,'Office365 relay','example-com.mail.protection.outlook.com','example.com','zabbix@example.com','','','','',1,25,1,0,0,0,'',1,3,'10s',1,'','30s',0,0,'','','',4); /*!40000 ALTER TABLE `media_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_type_message` -- DROP TABLE IF EXISTS `media_type_message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_type_message` ( `mediatype_messageid` bigint unsigned NOT NULL, `mediatypeid` bigint unsigned NOT NULL, `eventsource` int NOT NULL, `recovery` int NOT NULL, `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`mediatype_messageid`), UNIQUE KEY `media_type_message_1` (`mediatypeid`,`eventsource`,`recovery`), CONSTRAINT `c_media_type_message_1` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_type_message` -- LOCK TABLES `media_type_message` WRITE; /*!40000 ALTER TABLE `media_type_message` DISABLE KEYS */; INSERT INTO `media_type_message` VALUES (1,1,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(2,1,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(3,1,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'),(4,1,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(5,1,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(6,3,0,0,'','{EVENT.SEVERITY}: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\n{EVENT.DATE} {EVENT.TIME}'),(7,3,0,1,'','Resolved in {EVENT.DURATION}: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\n{EVENT.DATE} {EVENT.TIME}'),(8,3,0,2,'','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem in {EVENT.AGE} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}'),(9,3,1,0,'','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}'),(10,3,2,0,'','Autoregistration: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(11,4,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Operational data: {EVENT.OPDATA}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(12,4,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Problem duration: {EVENT.DURATION}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(13,4,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.
{EVENT.UPDATE.MESSAGE}

Current problem status: {EVENT.STATUS}
Age: {EVENT.AGE}
Acknowledged: {EVENT.ACK.STATUS}.'),(14,4,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}

Device IP: {DISCOVERY.DEVICE.IPADDRESS}
Device DNS: {DISCOVERY.DEVICE.DNS}
Device status: {DISCOVERY.DEVICE.STATUS}
Device uptime: {DISCOVERY.DEVICE.UPTIME}

Device service name: {DISCOVERY.SERVICE.NAME}
Device service port: {DISCOVERY.SERVICE.PORT}
Device service status: {DISCOVERY.SERVICE.STATUS}
Device service uptime: {DISCOVERY.SERVICE.UPTIME}'),(15,4,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}
Host IP: {HOST.IP}
Agent port: {HOST.PORT}'),(16,11,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(17,11,0,1,'Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(18,11,0,2,'Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(19,11,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(20,11,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(21,12,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(22,12,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(23,12,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(24,12,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(25,12,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(26,13,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(27,13,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(28,13,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(29,13,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(30,13,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(31,14,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(32,14,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(33,14,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(34,14,0,1,'Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(35,14,0,2,'Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(36,15,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(37,15,0,1,'Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(38,15,0,2,'Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(39,15,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(40,15,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(41,16,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(42,16,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(43,16,0,2,'Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(44,16,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(45,16,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(46,17,0,0,'{EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(47,17,0,1,'{EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(48,17,0,2,'{EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(49,17,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(50,17,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(51,17,3,0,'Internal problem: {EVENT.NAME}','Internal problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}'),(52,18,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(53,18,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(54,18,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(55,18,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(56,18,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(57,19,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(58,19,0,1,'Resolved: {EVENT.RECOVERY.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.RECOVERY.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(59,19,0,2,'Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(60,19,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(61,19,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(62,20,0,0,'{EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(63,20,0,1,'{EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(64,20,0,2,'{EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(65,20,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(66,20,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(67,21,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(68,21,0,1,'Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(69,21,0,2,'Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(70,21,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(71,21,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(72,10,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(73,10,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(74,10,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(75,10,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(76,10,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(77,22,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(78,22,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'),(79,22,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(80,5,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(81,5,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(82,5,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'),(83,5,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(84,5,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(85,6,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(86,6,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'),(87,6,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(88,6,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(89,6,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(90,7,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(91,7,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(92,7,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'),(93,7,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(94,7,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(95,8,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(96,8,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(97,8,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'),(98,8,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(99,8,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(100,9,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(101,9,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(102,9,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'),(103,9,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(104,9,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(105,23,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n\r\nTrigger description: {TRIGGER.DESCRIPTION}'),(106,23,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(107,23,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(108,23,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(109,23,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(110,24,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(111,24,0,1,'Resolved: {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(112,24,0,2,'Updated problem: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(113,24,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(114,24,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(115,25,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(116,25,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(117,25,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}.'),(118,25,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(119,25,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(120,26,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(121,26,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(122,26,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(123,26,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(124,26,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(125,27,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(126,27,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(127,27,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(128,27,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(129,27,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(130,28,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(131,28,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(132,28,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(133,28,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(134,28,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(135,29,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\nStarted at {EVENT.TIME} on {EVENT.DATE}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nEvent info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'),(136,29,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\nResolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nEvent info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'),(137,29,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\n\r\n{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}'),(138,29,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}\r\nDiscovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(139,29,2,0,'Autoregistration: {HOST.HOST}','Autoregistration: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(140,30,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\nStarted at {EVENT.TIME} on {EVENT.DATE}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nEvent info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'),(141,30,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\nResolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nEvent info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'),(142,30,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','[{EVENT.STATUS}] {EVENT.NAME}\r\n\r\n{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}'),(143,30,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}\r\nDiscovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(144,30,2,0,'Autoregistration: {HOST.HOST}','Autoregistration: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(145,31,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(146,31,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(147,31,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(148,31,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(149,31,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(150,32,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(151,32,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(152,32,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(153,32,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(154,32,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(155,33,0,0,'[{EVENT.STATUS}] {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOperational data: {EVENT.OPDATA}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(156,33,0,1,'[{EVENT.STATUS}] {EVENT.NAME}','Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nHost: {HOST.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\n{TRIGGER.URL}'),(157,33,0,2,'[{EVENT.STATUS}] {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\n{EVENT.UPDATE.MESSAGE}\r\n\r\nCurrent problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}.'),(158,33,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}\r\n\r\nDevice IP: {DISCOVERY.DEVICE.IPADDRESS}\r\nDevice DNS: {DISCOVERY.DEVICE.DNS}\r\nDevice status: {DISCOVERY.DEVICE.STATUS}\r\nDevice uptime: {DISCOVERY.DEVICE.UPTIME}\r\n\r\nDevice service name: {DISCOVERY.SERVICE.NAME}\r\nDevice service port: {DISCOVERY.SERVICE.PORT}\r\nDevice service status: {DISCOVERY.SERVICE.STATUS}\r\nDevice service uptime: {DISCOVERY.SERVICE.UPTIME}'),(159,33,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}\r\nHost IP: {HOST.IP}\r\nAgent port: {HOST.PORT}'),(160,34,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Operational data: {EVENT.OPDATA}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(161,34,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Problem duration: {EVENT.DURATION}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(162,34,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.
{EVENT.UPDATE.MESSAGE}

Current problem status: {EVENT.STATUS}
Age: {EVENT.AGE}
Acknowledged: {EVENT.ACK.STATUS}.'),(163,34,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}

Device IP: {DISCOVERY.DEVICE.IPADDRESS}
Device DNS: {DISCOVERY.DEVICE.DNS}
Device status: {DISCOVERY.DEVICE.STATUS}
Device uptime: {DISCOVERY.DEVICE.UPTIME}

Device service name: {DISCOVERY.SERVICE.NAME}
Device service port: {DISCOVERY.SERVICE.PORT}
Device service status: {DISCOVERY.SERVICE.STATUS}
Device service uptime: {DISCOVERY.SERVICE.UPTIME}'),(164,34,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}
Host IP: {HOST.IP}
Agent port: {HOST.PORT}'),(165,35,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Operational data: {EVENT.OPDATA}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(166,35,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Problem duration: {EVENT.DURATION}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(167,35,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.
{EVENT.UPDATE.MESSAGE}

Current problem status: {EVENT.STATUS}
Age: {EVENT.AGE}
Acknowledged: {EVENT.ACK.STATUS}.'),(168,35,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}

Device IP: {DISCOVERY.DEVICE.IPADDRESS}
Device DNS: {DISCOVERY.DEVICE.DNS}
Device status: {DISCOVERY.DEVICE.STATUS}
Device uptime: {DISCOVERY.DEVICE.UPTIME}

Device service name: {DISCOVERY.SERVICE.NAME}
Device service port: {DISCOVERY.SERVICE.PORT}
Device service status: {DISCOVERY.SERVICE.STATUS}
Device service uptime: {DISCOVERY.SERVICE.UPTIME}'),(169,35,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}
Host IP: {HOST.IP}
Agent port: {HOST.PORT}'),(170,36,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Operational data: {EVENT.OPDATA}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(171,36,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Problem duration: {EVENT.DURATION}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(172,36,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.
{EVENT.UPDATE.MESSAGE}

Current problem status: {EVENT.STATUS}
Age: {EVENT.AGE}
Acknowledged: {EVENT.ACK.STATUS}.'),(173,36,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}

Device IP: {DISCOVERY.DEVICE.IPADDRESS}
Device DNS: {DISCOVERY.DEVICE.DNS}
Device status: {DISCOVERY.DEVICE.STATUS}
Device uptime: {DISCOVERY.DEVICE.UPTIME}

Device service name: {DISCOVERY.SERVICE.NAME}
Device service port: {DISCOVERY.SERVICE.PORT}
Device service status: {DISCOVERY.SERVICE.STATUS}
Device service uptime: {DISCOVERY.SERVICE.UPTIME}'),(174,36,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}
Host IP: {HOST.IP}
Agent port: {HOST.PORT}'),(175,37,0,0,'Problem: {EVENT.NAME}','Problem started at {EVENT.TIME} on {EVENT.DATE}
Problem name: {EVENT.NAME}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Operational data: {EVENT.OPDATA}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(176,37,0,1,'Resolved in {EVENT.DURATION}: {EVENT.NAME}','Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}
Problem name: {EVENT.NAME}
Problem duration: {EVENT.DURATION}
Host: {HOST.NAME}
Severity: {EVENT.SEVERITY}
Original problem ID: {EVENT.ID}
{TRIGGER.URL}'),(177,37,0,2,'Updated problem in {EVENT.AGE}: {EVENT.NAME}','{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.
{EVENT.UPDATE.MESSAGE}

Current problem status: {EVENT.STATUS}
Age: {EVENT.AGE}
Acknowledged: {EVENT.ACK.STATUS}.'),(178,37,1,0,'Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}','Discovery rule: {DISCOVERY.RULE.NAME}

Device IP: {DISCOVERY.DEVICE.IPADDRESS}
Device DNS: {DISCOVERY.DEVICE.DNS}
Device status: {DISCOVERY.DEVICE.STATUS}
Device uptime: {DISCOVERY.DEVICE.UPTIME}

Device service name: {DISCOVERY.SERVICE.NAME}
Device service port: {DISCOVERY.SERVICE.PORT}
Device service status: {DISCOVERY.SERVICE.STATUS}
Device service uptime: {DISCOVERY.SERVICE.UPTIME}'),(179,37,2,0,'Autoregistration: {HOST.HOST}','Host name: {HOST.HOST}
Host IP: {HOST.IP}
Agent port: {HOST.PORT}'),(180,10,4,0,'Service \"{SERVICE.NAME}\" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE}\r\nService problem name: {EVENT.NAME}\r\nService: {SERVICE.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\nService description: {SERVICE.DESCRIPTION}\r\n\r\n{SERVICE.ROOTCAUSE}'),(181,10,4,1,'Service \"{SERVICE.NAME}\" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service \"{SERVICE.NAME}\" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\nService description: {SERVICE.DESCRIPTION}'),(182,10,4,2,'Changed \"{SERVICE.NAME}\" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed \"{SERVICE.NAME}\" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\nCurrent problem age is {EVENT.AGE}.\r\nService description: {SERVICE.DESCRIPTION}\r\n\r\n{SERVICE.ROOTCAUSE}'),(183,14,4,0,'Service \"{SERVICE.NAME}\" problem: {EVENT.NAME}','Service problem started at {EVENT.TIME} on {EVENT.DATE}\r\nService problem name: {EVENT.NAME}\r\nService: {SERVICE.NAME}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\nService description: {SERVICE.DESCRIPTION}\r\n\r\n{SERVICE.ROOTCAUSE}'),(184,14,4,1,'Service \"{SERVICE.NAME}\" resolved in {EVENT.DURATION}: {EVENT.NAME}','Service \"{SERVICE.NAME}\" has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}\r\nProblem name: {EVENT.NAME}\r\nProblem duration: {EVENT.DURATION}\r\nSeverity: {EVENT.SEVERITY}\r\nOriginal problem ID: {EVENT.ID}\r\nService description: {SERVICE.DESCRIPTION}'),(185,14,4,2,'Changed \"{SERVICE.NAME}\" service status to {EVENT.UPDATE.SEVERITY} in {EVENT.AGE}','Changed \"{SERVICE.NAME}\" service status to {EVENT.UPDATE.SEVERITY} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.\r\nCurrent problem age is {EVENT.AGE}.\r\nService description: {SERVICE.DESCRIPTION}\r\n\r\n{SERVICE.ROOTCAUSE}'); /*!40000 ALTER TABLE `media_type_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_type_param` -- DROP TABLE IF EXISTS `media_type_param`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_type_param` ( `mediatype_paramid` bigint unsigned NOT NULL, `mediatypeid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`mediatype_paramid`), KEY `media_type_param_1` (`mediatypeid`), CONSTRAINT `c_media_type_param_1` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_type_param` -- LOCK TABLES `media_type_param` WRITE; /*!40000 ALTER TABLE `media_type_param` DISABLE KEYS */; INSERT INTO `media_type_param` VALUES (1,5,'zabbix_url','{$ZABBIX.URL}'),(2,5,'bot_token',''),(3,5,'mattermost_url',''),(4,5,'send_mode','alarm'),(5,5,'send_to','{ALERT.SENDTO}'),(6,5,'event_tags','{EVENT.TAGS}'),(8,5,'event_nseverity','{EVENT.NSEVERITY}'),(10,5,'event_value','{EVENT.VALUE}'),(11,5,'event_update_status','{EVENT.UPDATE.STATUS}'),(12,5,'event_date','{EVENT.DATE}'),(13,5,'event_time','{EVENT.TIME}'),(14,5,'event_severity','{EVENT.SEVERITY}'),(15,5,'event_opdata','{EVENT.OPDATA}'),(16,5,'event_id','{EVENT.ID}'),(18,5,'trigger_id','{TRIGGER.ID}'),(19,5,'trigger_description','{TRIGGER.DESCRIPTION}'),(20,5,'host_name','{HOST.HOST}'),(21,5,'host_ip','{HOST.IP}'),(22,5,'event_update_date','{EVENT.UPDATE.DATE}'),(23,5,'event_update_time','{EVENT.UPDATE.TIME}'),(24,5,'event_recovery_date','{EVENT.RECOVERY.DATE}'),(25,5,'event_recovery_time','{EVENT.RECOVERY.TIME}'),(37,6,'zbxurl','{$ZABBIX.URL}'),(39,7,'token',''),(40,7,'eventid','{EVENT.ID}'),(41,7,'eventname','{ALERT.SUBJECT}'),(42,7,'hostname','{HOST.NAME}'),(43,7,'hostip','{HOST.IP}'),(44,7,'severity','{EVENT.NSEVERITY}'),(45,7,'triggerdesc','{TRIGGER.DESCRIPTION}'),(46,7,'triggeropdata','{EVENT.OPDATA}'),(47,7,'eventtags','{EVENT.TAGS}'),(48,7,'triggerid','{TRIGGER.ID}'),(49,7,'eventdate','{EVENT.DATE}'),(50,7,'eventtime','{EVENT.TIME}'),(52,7,'eventack','{EVENT.ACK.STATUS}'),(53,7,'eventupdate','{EVENT.UPDATE.STATUS}'),(54,7,'eventvalue','{EVENT.VALUE}'),(55,7,'url','{$ZABBIX.URL}'),(56,8,'token',''),(57,8,'user','{ALERT.SENDTO}'),(58,8,'message','{ALERT.MESSAGE}'),(59,8,'title','{ALERT.SUBJECT}'),(60,8,'url','{$ZABBIX.URL}'),(61,8,'url_title','Zabbix'),(63,8,'eventid','{EVENT.ID}'),(64,8,'triggerid','{TRIGGER.ID}'),(65,9,'zabbix_url','{$ZABBIX.URL}'),(66,9,'bot_token',''),(67,9,'channel','{ALERT.SENDTO}'),(68,9,'slack_mode','alarm'),(69,9,'slack_as_user','true'),(71,9,'event_tags','{EVENT.TAGSJSON}'),(73,9,'event_nseverity','{EVENT.NSEVERITY}'),(75,9,'event_value','{EVENT.VALUE}'),(76,9,'event_update_status','{EVENT.UPDATE.STATUS}'),(77,9,'event_date','{EVENT.DATE}'),(78,9,'event_time','{EVENT.TIME}'),(79,9,'event_severity','{EVENT.SEVERITY}'),(80,9,'event_opdata','{EVENT.OPDATA}'),(81,9,'event_id','{EVENT.ID}'),(83,9,'trigger_id','{TRIGGER.ID}'),(84,9,'trigger_description','{TRIGGER.DESCRIPTION}'),(85,9,'host_name','{HOST.NAME}'),(87,9,'event_update_date','{EVENT.UPDATE.DATE}'),(88,9,'event_update_time','{EVENT.UPDATE.TIME}'),(89,9,'event_recovery_date','{EVENT.RECOVERY.DATE}'),(90,9,'event_recovery_time','{EVENT.RECOVERY.TIME}'),(91,10,'zabbix_url','{$ZABBIX.URL}'),(92,10,'discord_endpoint','{ALERT.SENDTO}'),(93,10,'use_default_message','false'),(94,10,'alert_message','{ALERT.MESSAGE}'),(95,10,'alert_subject','{ALERT.SUBJECT}'),(96,10,'event_name','{EVENT.NAME}'),(97,10,'event_id','{EVENT.ID}'),(98,10,'event_severity','{EVENT.SEVERITY}'),(99,10,'event_nseverity','{EVENT.NSEVERITY}'),(100,10,'event_opdata','{EVENT.OPDATA}'),(101,10,'event_tags','{EVENT.TAGS}'),(102,10,'event_time','{EVENT.TIME}'),(103,10,'event_date','{EVENT.DATE}'),(104,10,'event_recovery_date','{EVENT.RECOVERY.DATE}'),(105,10,'event_recovery_time','{EVENT.RECOVERY.TIME}'),(106,10,'event_update_date','{EVENT.UPDATE.DATE}'),(107,10,'event_update_time','{EVENT.UPDATE.TIME}'),(108,10,'event_update_action','{EVENT.UPDATE.ACTION}'),(109,10,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(110,10,'event_update_status','{EVENT.UPDATE.STATUS}'),(111,10,'event_update_user','{USER.FULLNAME}'),(112,10,'event_value','{EVENT.VALUE}'),(113,10,'host_ip','{HOST.IP}'),(114,10,'host_name','{HOST.NAME}'),(115,10,'trigger_description','{TRIGGER.DESCRIPTION}'),(116,10,'trigger_id','{TRIGGER.ID}'),(117,8,'endpoint','https://api.pushover.net/1/messages.json'),(118,8,'retry','60'),(119,8,'expire','1200'),(120,11,'teamsecret','{ALERT.SENDTO}'),(121,11,'Subject','{ALERT.SUBJECT}'),(122,11,'Message','{ALERT.MESSAGE}'),(123,11,'Severity','{EVENT.SEVERITY}'),(125,11,'Hostname','{HOST.NAME}'),(127,12,'alert_message','{ALERT.MESSAGE}'),(128,12,'alert_subject','{ALERT.SUBJECT}'),(129,12,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(130,12,'event_source','{EVENT.SOURCE}'),(131,12,'event_tags_json','{EVENT.TAGSJSON}'),(132,12,'event_update_action','{EVENT.UPDATE.ACTION}'),(133,12,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(134,12,'event_update_status','{EVENT.UPDATE.STATUS}'),(135,12,'event_update_user','{USER.FULLNAME}'),(136,12,'event_value','{EVENT.VALUE}'),(137,12,'jira_issue_key','{EVENT.TAGS.__zbx_jira_issuekey}'),(138,12,'jira_issue_type',''),(139,12,'jira_password',''),(140,12,'jira_project_key',''),(141,12,'jira_url',''),(142,12,'jira_user',''),(143,12,'trigger_description','{TRIGGER.DESCRIPTION}'),(144,13,'<\'DATETIME\' CUSTOMFIELD FOR EVENT RECOVERY TIME>','{EVENT.RECOVERY.DATE}T{EVENT.RECOVERY.TIME}'),(145,13,'<\'DATETIME\' CUSTOMFIELD FOR EVENT TIME>','{EVENT.DATE}T{EVENT.TIME}'),(146,13,'<\'NUMBER\' CUSTOMFIELD FOR EVENT.ID>','{EVENT.ID}'),(147,13,'<\'NUMBER\' CUSTOMFIELD FOR TRIGGER.ID>','{TRIGGER.ID}'),(148,13,'<\'STRING\' CUSTOMFIELD FOR HOST\\IP>','{HOST.HOST} [{HOST.IP}]'),(149,13,'<\'STRING\' CUSTOMFIELD FOR OPERATIONAL DATA>','{EVENT.OPDATA}'),(150,13,'<\'STRING\' CUSTOMFIELD FOR SEVERITY>','{EVENT.SEVERITY}'),(151,13,'<\'URL\' CUSTOMFIELD FOR EVENT URL>','{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'),(152,13,'alert_message','{ALERT.MESSAGE}'),(153,13,'alert_subject','{ALERT.SUBJECT}'),(154,13,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(155,13,'event_source','{EVENT.SOURCE}'),(156,13,'event_tags_json','{EVENT.TAGSJSON}'),(157,13,'event_update_action','{EVENT.UPDATE.ACTION}'),(158,13,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(159,13,'event_update_status','{EVENT.UPDATE.STATUS}'),(160,13,'event_update_user','{USER.FULLNAME}'),(161,13,'event_value','{EVENT.VALUE}'),(162,13,'jira_issue_key','{EVENT.TAGS.__zbx_jira_issuekey}'),(163,13,'jira_issue_type',''),(164,13,'jira_password',''),(165,13,'jira_project_key',''),(166,13,'jira_url',''),(167,13,'jira_user',''),(168,13,'trigger_description','{TRIGGER.DESCRIPTION}'),(169,14,'alert_message','{ALERT.MESSAGE}'),(170,14,'alert_subject','{ALERT.SUBJECT}'),(171,14,'event_date','{EVENT.DATE}'),(172,14,'event_id','{EVENT.ID}'),(173,14,'event_nseverity','{EVENT.NSEVERITY}'),(174,14,'event_opdata','{EVENT.OPDATA}'),(175,14,'event_recovery_date','{EVENT.RECOVERY.DATE}'),(176,14,'event_recovery_time','{EVENT.RECOVERY.TIME}'),(177,14,'event_severity','{EVENT.SEVERITY}'),(178,14,'event_source','{EVENT.SOURCE}'),(179,14,'event_status','{EVENT.STATUS}'),(180,14,'event_tags','{EVENT.TAGS}'),(181,14,'event_time','{EVENT.TIME}'),(182,14,'event_update_action','{EVENT.UPDATE.ACTION}'),(183,14,'event_update_date','{EVENT.UPDATE.DATE}'),(184,14,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(185,14,'event_update_status','{EVENT.UPDATE.STATUS}'),(186,14,'event_update_time','{EVENT.UPDATE.TIME}'),(187,14,'event_update_user','{USER.FULLNAME}'),(188,14,'event_value','{EVENT.VALUE}'),(189,14,'host_ip','{HOST.IP}'),(190,14,'host_name','{HOST.NAME}'),(191,14,'teams_endpoint',''),(192,14,'trigger_description','{TRIGGER.DESCRIPTION}'),(193,14,'trigger_id','{TRIGGER.ID}'),(194,14,'use_default_message','false'),(195,14,'zabbix_url','{$ZABBIX.URL}'),(196,15,'alert_message','{ALERT.MESSAGE}'),(197,15,'alert_subject','{ALERT.SUBJECT}'),(198,15,'event_id','{EVENT.ID}'),(199,15,'event_nseverity','{EVENT.NSEVERITY}'),(200,15,'event_source','{EVENT.SOURCE}'),(201,15,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(202,15,'event_update_status','{EVENT.UPDATE.STATUS}'),(203,15,'event_value','{EVENT.VALUE}'),(204,15,'redmine_access_key',''),(205,15,'redmine_issue_key','{EVENT.TAGS.__zbx_redmine_issue_id}'),(206,15,'redmine_project',''),(207,15,'redmine_tracker_id',''),(208,15,'redmine_url',''),(209,15,'trigger_id','{TRIGGER.ID}'),(210,15,'zabbix_url','{$ZABBIX.URL}'),(211,16,'Message','{ALERT.MESSAGE}'),(212,16,'ParseMode',''),(213,16,'Subject','{ALERT.SUBJECT}'),(214,16,'To','{ALERT.SENDTO}'),(215,16,'Token',''),(216,17,'alert_message','{ALERT.MESSAGE}'),(217,17,'alert_subject','{ALERT.SUBJECT}'),(218,17,'event_id','{EVENT.ID}'),(219,17,'event_nseverity','{EVENT.NSEVERITY}'),(220,17,'event_source','{EVENT.SOURCE}'),(221,17,'event_tags','{EVENT.TAGS}'),(222,17,'event_update_status','{EVENT.UPDATE.STATUS}'),(223,17,'event_value','{EVENT.VALUE}'),(224,17,'severity_average','normal'),(225,17,'severity_default','-'),(226,17,'severity_disaster','urgent'),(227,17,'severity_high','high'),(228,17,'severity_information','low'),(229,17,'severity_not_classified','low'),(230,17,'severity_warning','normal'),(231,17,'trigger_id','{TRIGGER.ID}'),(232,17,'zbxurl','{$ZABBIX.URL}'),(233,17,'zendesk_issue_key','{EVENT.TAGS.__zbx_zdk_issuekey}'),(234,17,'zendesk_token',''),(235,17,'zendesk_type','incident'),(236,17,'zendesk_url',''),(237,18,'alert_message','{ALERT.MESSAGE}'),(238,18,'alert_subject','{ALERT.SUBJECT}'),(239,18,'event_nseverity','{EVENT.NSEVERITY}'),(240,18,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(241,18,'event_source','{EVENT.SOURCE}'),(242,18,'event_update_status','{EVENT.UPDATE.STATUS}'),(243,18,'event_value','{EVENT.VALUE}'),(244,18,'servicenow_password',''),(245,18,'servicenow_sys_id','{EVENT.TAGS.__zbx_servicenow_sys_id}'),(246,18,'servicenow_url','{ALERT.SENDTO}'),(247,18,'servicenow_user',''),(248,18,'urgency_for_average','2'),(249,18,'urgency_for_disaster','1'),(250,18,'urgency_for_high','2'),(251,18,'urgency_for_information','3'),(252,18,'urgency_for_not_classified','3'),(253,18,'urgency_for_warning','3'),(254,19,'alert_message','{ALERT.MESSAGE}'),(255,19,'alert_subject','{ALERT.SUBJECT}'),(256,19,'event_id','{EVENT.ID}'),(257,19,'event_nseverity','{EVENT.NSEVERITY}'),(258,19,'event_source','{EVENT.SOURCE}'),(259,19,'event_tags','{EVENT.TAGSJSON}'),(260,19,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(261,19,'event_update_status','{EVENT.UPDATE.STATUS}'),(262,19,'event_value','{EVENT.VALUE}'),(263,19,'trigger_id','{TRIGGER.ID}'),(264,19,'zabbix_url','{$ZABBIX.URL}'),(265,19,'zammad_access_token',''),(266,19,'zammad_customer',''),(267,19,'zammad_enable_tags','true'),(268,19,'zammad_ticket_id','{EVENT.TAGS.__zbx_zammad_ticket_id}'),(269,19,'zammad_url',''),(270,20,'alert_message','{ALERT.MESSAGE}'),(271,20,'alert_subject','{ALERT.SUBJECT}'),(272,20,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(273,20,'event_source','{EVENT.SOURCE}'),(274,20,'event_tags_json','{EVENT.TAGSJSON}'),(275,20,'event_update_status','{EVENT.UPDATE.STATUS}'),(276,20,'event_value','{EVENT.VALUE}'),(277,20,'jira_password',''),(278,20,'jira_request_key','{EVENT.TAGS.__zbx_jira_requestkey}'),(279,20,'jira_request_type_id',''),(280,20,'jira_servicedesk_id',''),(281,20,'jira_url',''),(282,20,'jira_user',''),(283,21,'alert_message','{ALERT.MESSAGE}'),(284,21,'alert_subject','{ALERT.SUBJECT}'),(285,21,'event_id','{EVENT.ID}'),(286,21,'event_nseverity','{EVENT.NSEVERITY}'),(287,21,'event_source','{EVENT.SOURCE}'),(288,21,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(289,21,'event_update_status','{EVENT.UPDATE.STATUS}'),(290,21,'event_value','{EVENT.VALUE}'),(291,21,'otrs_auth_password',''),(292,21,'otrs_auth_user',''),(293,21,'otrs_customer',''),(294,21,'otrs_default_priority_id','3'),(295,21,'otrs_queue',''),(296,21,'otrs_ticket_id','{EVENT.TAGS.__zbx_otrs_ticket_id}'),(297,21,'otrs_ticket_state','new'),(298,21,'otrs_time_unit','0'),(299,21,'otrs_url',''),(300,21,'trigger_id','{TRIGGER.ID}'),(301,21,'zabbix_url','{$ZABBIX.URL}'),(302,11,'Event_Ack_Status','{EVENT.ACK.STATUS}'),(303,11,'Event_Date_Time','{EVENT.DATE} {EVENT.TIME}'),(304,11,'Event_ID','{EVENT.ID}'),(305,11,'Event_Update_Action','{EVENT.UPDATE.ACTION}'),(306,11,'Event_Update_Status','{EVENT.UPDATE.STATUS}'),(307,11,'Host_IP','{HOST.IP}'),(308,11,'Trigger_ID','{TRIGGER.ID}'),(309,11,'Trigger_Status','{TRIGGER.STATUS}'),(310,11,'User','{USER.FULLNAME}'),(311,11,'Zabbix_URL','{$ZABBIX.URL}'),(312,10,'event_source','{EVENT.SOURCE}'),(313,22,'.ILERT.ALERT.SOURCE.KEY','{ALERT.SENDTO}'),(314,22,'.ILERT.INCIDENT.SUMMARY',''),(315,22,'ALERT.MESSAGE','{ALERT.MESSAGE}'),(316,22,'ALERT.SUBJECT','{ALERT.SUBJECT}'),(317,22,'EVENT.ACK.STATUS','{EVENT.ACK.STATUS}'),(318,22,'EVENT.DATE','{EVENT.DATE}'),(319,22,'EVENT.ID','{EVENT.ID}'),(320,22,'EVENT.NAME','{EVENT.NAME}'),(321,22,'EVENT.NSEVERITY','{EVENT.NSEVERITY}'),(322,22,'EVENT.OPDATA','{EVENT.OPDATA}'),(323,22,'EVENT.RECOVERY.DATE','{EVENT.RECOVERY.DATE}'),(324,22,'EVENT.RECOVERY.TIME','{EVENT.RECOVERY.TIME}'),(325,22,'EVENT.RECOVERY.VALUE','{EVENT.RECOVERY.VALUE}'),(326,22,'EVENT.SEVERITY','{EVENT.SEVERITY}'),(327,22,'EVENT.TAGS','{EVENT.TAGS}'),(328,22,'EVENT.TIME','{EVENT.TIME}'),(329,22,'EVENT.UPDATE.ACTION','{EVENT.UPDATE.ACTION}'),(330,22,'EVENT.UPDATE.DATE','{EVENT.UPDATE.DATE}'),(331,22,'EVENT.UPDATE.MESSAGE','{EVENT.UPDATE.MESSAGE}'),(332,22,'EVENT.UPDATE.STATUS','{EVENT.UPDATE.STATUS}'),(333,22,'EVENT.UPDATE.TIME','{EVENT.UPDATE.TIME}'),(334,22,'EVENT.VALUE','{EVENT.VALUE}'),(335,22,'HOST.HOST','{HOST.HOST}'),(336,22,'HOST.IP','{HOST.IP}'),(337,22,'HOST.NAME','{HOST.NAME}'),(338,22,'ITEM.ID1','{ITEM.ID1}'),(339,22,'ITEM.ID2','{ITEM.ID2}'),(340,22,'ITEM.ID3','{ITEM.ID3}'),(341,22,'ITEM.ID4','{ITEM.ID4}'),(342,22,'ITEM.ID5','{ITEM.ID5}'),(343,22,'ITEM.NAME1','{ITEM.NAME1}'),(344,22,'ITEM.NAME2','{ITEM.NAME2}'),(345,22,'ITEM.NAME3','{ITEM.NAME3}'),(346,22,'ITEM.NAME4','{ITEM.NAME4}'),(347,22,'ITEM.NAME5','{ITEM.NAME5}'),(348,22,'TRIGGER.DESCRIPTION','{TRIGGER.DESCRIPTION}'),(349,22,'TRIGGER.ID','{TRIGGER.ID}'),(350,22,'TRIGGER.NAME','{TRIGGER.NAME}'),(351,22,'TRIGGER.SEVERITY','{TRIGGER.SEVERITY}'),(352,22,'TRIGGER.STATUS','{TRIGGER.STATUS}'),(353,22,'TRIGGER.URL','{TRIGGER.URL}'),(354,22,'TRIGGER.VALUE','{TRIGGER.VALUE}'),(355,22,'USER.FULLNAME','{USER.FULLNAME}'),(356,22,'ZABBIX.URL','{$ZABBIX.URL}'),(357,5,'alert_message','{ALERT.MESSAGE}'),(358,5,'alert_subject','{ALERT.SUBJECT}'),(359,5,'discovery_host_dns','{DISCOVERY.DEVICE.DNS}'),(360,5,'discovery_host_ip','{DISCOVERY.DEVICE.IPADDRESS}'),(361,5,'event_source','{EVENT.SOURCE}'),(362,6,'alert_message','{ALERT.MESSAGE}'),(363,6,'alert_subject','{ALERT.SUBJECT}'),(364,6,'event_id','{EVENT.ID}'),(365,6,'event_nseverity','{EVENT.NSEVERITY}'),(366,6,'event_source','{EVENT.SOURCE}'),(367,6,'event_tags_json','{EVENT.TAGSJSON}'),(368,6,'event_update_status','{EVENT.UPDATE.STATUS}'),(369,6,'event_value','{EVENT.VALUE}'),(370,6,'opsgenie_api',''),(371,6,'opsgenie_tags',''),(372,6,'opsgenie_teams',''),(373,6,'opsgenie_token',''),(374,6,'opsgenie_web',''),(375,6,'severity_average','P3'),(376,6,'severity_default','P5'),(377,6,'severity_disaster','P1'),(378,6,'severity_high','P2'),(379,6,'severity_information','P5'),(380,6,'severity_not_classified','P5'),(381,6,'severity_warning','P4'),(382,6,'trigger_id','{TRIGGER.ID}'),(383,6,'zbxuser','{USER.FULLNAME}'),(384,7,'alert_message','{ALERT.MESSAGE}'),(385,7,'event_source','{EVENT.SOURCE}'),(386,8,'event_nseverity','{EVENT.NSEVERITY}'),(387,8,'event_source','{EVENT.SOURCE}'),(388,8,'event_value','{EVENT.VALUE}'),(389,8,'priority_average','0'),(390,8,'priority_default','0'),(391,8,'priority_disaster','0'),(392,8,'priority_high','0'),(393,8,'priority_information','0'),(394,8,'priority_not_classified','0'),(395,8,'priority_warning','0'),(396,9,'alert_message','{ALERT.MESSAGE}'),(397,9,'alert_subject','{ALERT.SUBJECT}'),(398,9,'discovery_host_dns','{DISCOVERY.DEVICE.DNS}'),(399,9,'discovery_host_ip','{DISCOVERY.DEVICE.IPADDRESS}'),(400,9,'event_source','{EVENT.SOURCE}'),(401,9,'host_conn','{HOST.CONN}'),(402,23,'alert_message','{ALERT.MESSAGE}'),(403,23,'alert_subject','{ALERT.SUBJECT}'),(404,23,'event_nseverity','{EVENT.NSEVERITY}'),(405,23,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(406,23,'event_source','{EVENT.SOURCE}'),(407,23,'event_update_status','{EVENT.UPDATE.STATUS}'),(408,23,'event_value','{EVENT.VALUE}'),(409,23,'priority_average','Medium'),(410,23,'priority_default','Low'),(411,23,'priority_disaster','Critical'),(412,23,'priority_high','High'),(413,23,'samanage_incident_id','{EVENT.TAGS.__zbx_solarwinds_inc_id}'),(414,23,'samanage_token',''),(415,23,'samanage_url',''),(416,24,'alert_message','{ALERT.MESSAGE}'),(417,24,'alert_subject','{ALERT.SUBJECT}'),(418,24,'event_id','{EVENT.ID}'),(419,24,'event_nseverity','{EVENT.NSEVERITY}'),(420,24,'event_source','{EVENT.SOURCE}'),(421,24,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(422,24,'event_update_status','{EVENT.UPDATE.STATUS}'),(423,24,'event_value','{EVENT.VALUE}'),(424,24,'sysaid_auth_password',''),(425,24,'sysaid_auth_user',''),(426,24,'sysaid_category_level_1',''),(427,24,'sysaid_category_level_2',''),(428,24,'sysaid_category_level_3',''),(429,24,'sysaid_default_priority_id','1'),(430,24,'sysaid_incident_id','{EVENT.TAGS.__zbx_sysaid_incident_id}'),(431,24,'sysaid_incident_state','1'),(432,24,'sysaid_template_id',''),(433,24,'sysaid_urgency_id',''),(434,24,'sysaid_url',''),(435,24,'trigger_id','{TRIGGER.ID}'),(436,24,'zabbix_url','{$ZABBIX.URL}'),(437,25,'alert_message','{ALERT.MESSAGE}'),(438,25,'alert_subject','{ALERT.SUBJECT}'),(439,25,'event_id','{EVENT.ID}'),(440,25,'event_nseverity','{EVENT.NSEVERITY}'),(441,25,'event_source','{EVENT.SOURCE}'),(442,25,'event_update_status','{EVENT.UPDATE.STATUS}'),(443,25,'event_value','{EVENT.VALUE}'),(444,25,'severity_average','P3'),(445,25,'severity_default','P5'),(446,25,'severity_disaster','P1'),(447,25,'severity_high','P2'),(448,25,'severity_information','P5'),(449,25,'severity_not_classified','P5'),(450,25,'severity_warning','P4'),(451,25,'topdesk_api',''),(452,25,'topdesk_issue_key','{EVENT.TAGS.__zbx_tpd_issuekey}'),(453,25,'topdesk_password',''),(454,25,'topdesk_status',''),(455,25,'topdesk_user',''),(456,25,'trigger_id','{TRIGGER.ID}'),(457,25,'zbxurl','{$ZABBIX.URL}'),(458,26,'alert_message','{ALERT.MESSAGE}'),(459,26,'alert_subject','{ALERT.SUBJECT}'),(460,26,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(461,26,'event_source','{EVENT.SOURCE}'),(462,26,'event_update_status','{EVENT.UPDATE.STATUS}'),(463,26,'event_value','{EVENT.VALUE}'),(464,26,'itop_api_version','1.3'),(465,26,'itop_class','UserRequest'),(466,26,'itop_comment','Created by Zabbix action {ACTION.NAME}'),(467,26,'itop_id','{EVENT.TAGS.__zbx_itop_id}'),(468,26,'itop_log','private_log'),(469,26,'itop_organization_id',''),(470,26,'itop_password',''),(471,26,'itop_url',''),(472,26,'itop_user',''),(473,27,'alert_message','{ALERT.MESSAGE}'),(474,27,'alert_subject','{ALERT.SUBJECT}'),(475,27,'event_nseverity','{EVENT.NSEVERITY}'),(476,27,'event_source','{EVENT.SOURCE}'),(477,27,'event_update_action','{EVENT.UPDATE.ACTION}'),(478,27,'event_update_message','{EVENT.UPDATE.MESSAGE}'),(479,27,'event_update_status','{EVENT.UPDATE.STATUS}'),(480,27,'event_update_user','{USER.FULLNAME}'),(481,27,'event_value','{EVENT.VALUE}'),(482,27,'field_1_full:Host','{HOST.NAME} [{HOST.IP}]'),(483,27,'field_2_short:Severity','{EVENT.SEVERITY}'),(484,27,'field_3_short:Event time','{EVENT.DATE} {EVENT.TIME}'),(485,27,'field_3_short_r:Recovery time','{EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}'),(486,27,'field_4_short_r:Event duration','{EVENT.DURATION}'),(487,27,'field_5_short:Operational data','{EVENT.OPDATA}'),(488,27,'field_999_full_p:Trigger description','{TRIGGER.DESCRIPTION}'),(489,27,'rc_api_url','api/v1/'),(490,27,'rc_msg_id','{EVENT.TAGS.__zbx_rc_id}'),(491,27,'rc_room_id','{EVENT.TAGS.__zbx_rc_rid}'),(492,27,'rc_send_to','{ALERT.SENDTO}'),(493,27,'rc_title_link','{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'),(494,27,'rc_url',''),(495,27,'rc_user_id',''),(496,27,'rc_user_token',''),(497,27,'use_default_message','false'),(498,28,'event_info','{$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID}'),(499,28,'event_nseverity','{EVENT.NSEVERITY}'),(500,28,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(501,28,'event_source','{EVENT.SOURCE}'),(502,28,'event_update_status','{EVENT.UPDATE.STATUS}'),(503,28,'event_value','{EVENT.VALUE}'),(504,28,'field:entity_display_name','{ALERT.SUBJECT}'),(505,28,'field:entity_id','{EVENT.ID}'),(506,28,'field:hostname','{HOST.NAME}'),(507,28,'field:monitoring_tool','Zabbix'),(508,28,'field:operational_data','{EVENT.OPDATA}'),(509,28,'field:severity','{EVENT.SEVERITY}'),(510,28,'field:state_message','{ALERT.MESSAGE}'),(511,28,'field_p:trigger_description','{TRIGGER.DESCRIPTION}'),(512,28,'field_r:event_duration','{EVENT.DURATION}'),(513,28,'field_r:recovery time','{EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}'),(514,28,'priority_average','WARNING'),(515,28,'priority_default','INFO'),(516,28,'priority_disaster','CRITICAL'),(517,28,'priority_high','WARNING'),(518,28,'priority_information','INFO'),(519,28,'priority_not_classified','INFO'),(520,28,'priority_resolved','OK'),(521,28,'priority_update','INFO'),(522,28,'priority_warning','INFO'),(523,28,'vops_endpoint',''),(524,28,'vops_routing_key','{ALERT.SENDTO}'),(525,29,'endpoint',''),(526,29,'flash','false'),(527,29,'password',''),(528,29,'ring','false'),(529,29,'send_to','{ALERT.SENDTO}'),(530,29,'telauto','true'),(531,29,'text','{ALERT.MESSAGE}'),(532,29,'username',''),(535,30,'event_source','{EVENT.SOURCE}'),(536,30,'event_update_status','{EVENT.UPDATE.STATUS}'),(537,30,'event_value','{EVENT.VALUE}'),(538,30,'express_message','{ALERT.MESSAGE}'),(539,30,'express_send_to','{ALERT.SENDTO}'),(540,30,'express_tags','{EVENT.TAGSJSON}'),(541,30,'express_token',''),(542,30,'express_url',''),(543,31,'event_nseverity','{EVENT.NSEVERITY}'),(544,31,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(545,31,'event_source','{EVENT.SOURCE}'),(546,31,'event_update_status','{EVENT.UPDATE.STATUS}'),(547,31,'event_value','{EVENT.VALUE}'),(548,31,'field_ref:requester',''),(549,31,'field_string:description','{ALERT.MESSAGE}'),(550,31,'field_string:subject','{ALERT.SUBJECT}'),(551,31,'priority_average','Normal'),(552,31,'priority_default','Normal'),(553,31,'priority_disaster','High'),(554,31,'priority_high','High'),(555,31,'priority_information','Low'),(556,31,'priority_not_classified','Low'),(557,31,'priority_warning','Medium'),(558,31,'sd_on_demand_client_id',''),(559,31,'sd_on_demand_client_secret',''),(560,31,'sd_on_demand_refresh_token',''),(561,31,'sd_on_demand_url_auth',''),(562,31,'sd_on_premise','true'),(563,31,'sd_on_premise_auth_token',''),(564,31,'sd_request_id','{EVENT.TAGS.__zbx_sd_request_id}'),(565,31,'sd_url',''),(566,31,'trigger_description','{TRIGGER.DESCRIPTION}'),(567,32,'alert_message','{ALERT.MESSAGE}'),(568,32,'alert_subject','{ALERT.SUBJECT}'),(569,32,'event_id','{EVENT.ID}'),(570,32,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(571,32,'event_severity','{EVENT.SEVERITY}'),(572,32,'event_source','{EVENT.SOURCE}'),(573,32,'event_update_status','{EVENT.UPDATE.STATUS}'),(574,32,'event_value','{EVENT.VALUE}'),(575,32,'github_issue_number','{EVENT.TAGS.__zbx_github_issue_number}'),(576,32,'github_repo','{ALERT.SENDTO}'),(577,32,'github_token',''),(578,32,'github_url','https://api.github.com'),(579,32,'github_user_agent','Zabbix/6.0'),(580,32,'trigger_id','{TRIGGER.ID}'),(581,32,'zabbix_url','{$ZABBIX.URL}'),(582,33,'alert_message','{ALERT.MESSAGE}'),(583,33,'alert_subject','{ALERT.SUBJECT}'),(584,33,'event_id','{EVENT.ID}'),(585,33,'event_nseverity','{EVENT.NSEVERITY}'),(586,33,'event_recovery_value','{EVENT.RECOVERY.VALUE}'),(587,33,'event_source','{EVENT.SOURCE}'),(588,33,'event_update_status','{EVENT.UPDATE.STATUS}'),(589,33,'event_value','{EVENT.VALUE}'),(590,33,'glpi_problem_id','{EVENT.TAGS.__zbx_glpi_problem_id}'),(591,33,'glpi_token',''),(592,33,'glpi_url',''),(593,33,'trigger_id','{TRIGGER.ID}'),(594,33,'zabbix_url','{$ZABBIX.URL}'),(595,6,'event_update_action','{EVENT.UPDATE.ACTION}'),(596,6,'status_counter','25'); /*!40000 ALTER TABLE `media_type_param` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `module` -- DROP TABLE IF EXISTS `module`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `module` ( `moduleid` bigint unsigned NOT NULL, `id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `relative_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '0', `config` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`moduleid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `module` -- LOCK TABLES `module` WRITE; /*!40000 ALTER TABLE `module` DISABLE KEYS */; INSERT INTO `module` VALUES (1,'actionlog','widgets/actionlog',1,'[]'),(2,'clock','widgets/clock',1,'[]'),(3,'dataover','widgets/dataover',1,'[]'),(4,'discovery','widgets/discovery',1,'[]'),(5,'favgraphs','widgets/favgraphs',1,'[]'),(6,'favmaps','widgets/favmaps',1,'[]'),(7,'geomap','widgets/geomap',1,'[]'),(8,'graph','widgets/graph',1,'[]'),(9,'graphprototype','widgets/graphprototype',1,'[]'),(10,'hostavail','widgets/hostavail',1,'[]'),(11,'item','widgets/item',1,'[]'),(12,'map','widgets/map',1,'[]'),(13,'navtree','widgets/navtree',1,'[]'),(14,'plaintext','widgets/plaintext',1,'[]'),(15,'problemhosts','widgets/problemhosts',1,'[]'),(16,'problems','widgets/problems',1,'[]'),(17,'problemsbysv','widgets/problemsbysv',1,'[]'),(18,'slareport','widgets/slareport',1,'[]'),(19,'svggraph','widgets/svggraph',1,'[]'),(20,'systeminfo','widgets/systeminfo',1,'[]'),(21,'tophosts','widgets/tophosts',1,'[]'),(22,'trigover','widgets/trigover',1,'[]'),(23,'url','widgets/url',1,'[]'),(24,'web','widgets/web',1,'[]'); /*!40000 ALTER TABLE `module` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opcommand` -- DROP TABLE IF EXISTS `opcommand`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opcommand` ( `operationid` bigint unsigned NOT NULL, `scriptid` bigint unsigned NOT NULL, PRIMARY KEY (`operationid`), KEY `opcommand_1` (`scriptid`), CONSTRAINT `c_opcommand_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE, CONSTRAINT `c_opcommand_2` FOREIGN KEY (`scriptid`) REFERENCES `scripts` (`scriptid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opcommand` -- LOCK TABLES `opcommand` WRITE; /*!40000 ALTER TABLE `opcommand` DISABLE KEYS */; /*!40000 ALTER TABLE `opcommand` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opcommand_grp` -- DROP TABLE IF EXISTS `opcommand_grp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opcommand_grp` ( `opcommand_grpid` bigint unsigned NOT NULL, `operationid` bigint unsigned NOT NULL, `groupid` bigint unsigned NOT NULL, PRIMARY KEY (`opcommand_grpid`), KEY `opcommand_grp_1` (`operationid`), KEY `opcommand_grp_2` (`groupid`), CONSTRAINT `c_opcommand_grp_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE, CONSTRAINT `c_opcommand_grp_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opcommand_grp` -- LOCK TABLES `opcommand_grp` WRITE; /*!40000 ALTER TABLE `opcommand_grp` DISABLE KEYS */; /*!40000 ALTER TABLE `opcommand_grp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opcommand_hst` -- DROP TABLE IF EXISTS `opcommand_hst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opcommand_hst` ( `opcommand_hstid` bigint unsigned NOT NULL, `operationid` bigint unsigned NOT NULL, `hostid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`opcommand_hstid`), KEY `opcommand_hst_1` (`operationid`), KEY `opcommand_hst_2` (`hostid`), CONSTRAINT `c_opcommand_hst_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE, CONSTRAINT `c_opcommand_hst_2` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opcommand_hst` -- LOCK TABLES `opcommand_hst` WRITE; /*!40000 ALTER TABLE `opcommand_hst` DISABLE KEYS */; /*!40000 ALTER TABLE `opcommand_hst` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opconditions` -- DROP TABLE IF EXISTS `opconditions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opconditions` ( `opconditionid` bigint unsigned NOT NULL, `operationid` bigint unsigned NOT NULL, `conditiontype` int NOT NULL DEFAULT '0', `operator` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`opconditionid`), KEY `opconditions_1` (`operationid`), CONSTRAINT `c_opconditions_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opconditions` -- LOCK TABLES `opconditions` WRITE; /*!40000 ALTER TABLE `opconditions` DISABLE KEYS */; /*!40000 ALTER TABLE `opconditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `operations` -- DROP TABLE IF EXISTS `operations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `operations` ( `operationid` bigint unsigned NOT NULL, `actionid` bigint unsigned NOT NULL, `operationtype` int NOT NULL DEFAULT '0', `esc_period` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0', `esc_step_from` int NOT NULL DEFAULT '1', `esc_step_to` int NOT NULL DEFAULT '1', `evaltype` int NOT NULL DEFAULT '0', `recovery` int NOT NULL DEFAULT '0', PRIMARY KEY (`operationid`), KEY `operations_1` (`actionid`), CONSTRAINT `c_operations_1` FOREIGN KEY (`actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `operations` -- LOCK TABLES `operations` WRITE; /*!40000 ALTER TABLE `operations` DISABLE KEYS */; INSERT INTO `operations` VALUES (2,2,4,'0',1,1,0,0),(3,3,0,'0',1,1,0,0),(4,4,0,'0',1,1,0,0),(5,5,0,'0',1,1,0,0),(6,6,0,'0',1,1,0,0),(7,3,11,'0',1,1,0,1),(8,4,11,'0',1,1,0,1),(9,5,11,'0',1,1,0,1),(10,6,11,'0',1,1,0,1); /*!40000 ALTER TABLE `operations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opgroup` -- DROP TABLE IF EXISTS `opgroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opgroup` ( `opgroupid` bigint unsigned NOT NULL, `operationid` bigint unsigned NOT NULL, `groupid` bigint unsigned NOT NULL, PRIMARY KEY (`opgroupid`), UNIQUE KEY `opgroup_1` (`operationid`,`groupid`), KEY `opgroup_2` (`groupid`), CONSTRAINT `c_opgroup_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE, CONSTRAINT `c_opgroup_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opgroup` -- LOCK TABLES `opgroup` WRITE; /*!40000 ALTER TABLE `opgroup` DISABLE KEYS */; INSERT INTO `opgroup` VALUES (1,2,2); /*!40000 ALTER TABLE `opgroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opinventory` -- DROP TABLE IF EXISTS `opinventory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opinventory` ( `operationid` bigint unsigned NOT NULL, `inventory_mode` int NOT NULL DEFAULT '0', PRIMARY KEY (`operationid`), CONSTRAINT `c_opinventory_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opinventory` -- LOCK TABLES `opinventory` WRITE; /*!40000 ALTER TABLE `opinventory` DISABLE KEYS */; /*!40000 ALTER TABLE `opinventory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opmessage` -- DROP TABLE IF EXISTS `opmessage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opmessage` ( `operationid` bigint unsigned NOT NULL, `default_msg` int NOT NULL DEFAULT '1', `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `mediatypeid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`operationid`), KEY `opmessage_1` (`mediatypeid`), CONSTRAINT `c_opmessage_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE, CONSTRAINT `c_opmessage_2` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opmessage` -- LOCK TABLES `opmessage` WRITE; /*!40000 ALTER TABLE `opmessage` DISABLE KEYS */; INSERT INTO `opmessage` VALUES (3,1,'','',NULL),(4,1,'','',NULL),(5,1,'','',NULL),(6,1,'','',NULL),(7,1,'','',NULL),(8,1,'','',NULL),(9,1,'','',NULL),(10,1,'','',NULL); /*!40000 ALTER TABLE `opmessage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opmessage_grp` -- DROP TABLE IF EXISTS `opmessage_grp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opmessage_grp` ( `opmessage_grpid` bigint unsigned NOT NULL, `operationid` bigint unsigned NOT NULL, `usrgrpid` bigint unsigned NOT NULL, PRIMARY KEY (`opmessage_grpid`), UNIQUE KEY `opmessage_grp_1` (`operationid`,`usrgrpid`), KEY `opmessage_grp_2` (`usrgrpid`), CONSTRAINT `c_opmessage_grp_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE, CONSTRAINT `c_opmessage_grp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opmessage_grp` -- LOCK TABLES `opmessage_grp` WRITE; /*!40000 ALTER TABLE `opmessage_grp` DISABLE KEYS */; INSERT INTO `opmessage_grp` VALUES (1,3,7),(2,4,7),(3,5,7),(4,6,7); /*!40000 ALTER TABLE `opmessage_grp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `opmessage_usr` -- DROP TABLE IF EXISTS `opmessage_usr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `opmessage_usr` ( `opmessage_usrid` bigint unsigned NOT NULL, `operationid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, PRIMARY KEY (`opmessage_usrid`), UNIQUE KEY `opmessage_usr_1` (`operationid`,`userid`), KEY `opmessage_usr_2` (`userid`), CONSTRAINT `c_opmessage_usr_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE, CONSTRAINT `c_opmessage_usr_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `opmessage_usr` -- LOCK TABLES `opmessage_usr` WRITE; /*!40000 ALTER TABLE `opmessage_usr` DISABLE KEYS */; /*!40000 ALTER TABLE `opmessage_usr` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `optemplate` -- DROP TABLE IF EXISTS `optemplate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `optemplate` ( `optemplateid` bigint unsigned NOT NULL, `operationid` bigint unsigned NOT NULL, `templateid` bigint unsigned NOT NULL, PRIMARY KEY (`optemplateid`), UNIQUE KEY `optemplate_1` (`operationid`,`templateid`), KEY `optemplate_2` (`templateid`), CONSTRAINT `c_optemplate_1` FOREIGN KEY (`operationid`) REFERENCES `operations` (`operationid`) ON DELETE CASCADE, CONSTRAINT `c_optemplate_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `optemplate` -- LOCK TABLES `optemplate` WRITE; /*!40000 ALTER TABLE `optemplate` DISABLE KEYS */; /*!40000 ALTER TABLE `optemplate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `problem` -- DROP TABLE IF EXISTS `problem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `problem` ( `eventid` bigint unsigned NOT NULL, `source` int NOT NULL DEFAULT '0', `object` int NOT NULL DEFAULT '0', `objectid` bigint unsigned NOT NULL DEFAULT '0', `clock` int NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', `r_eventid` bigint unsigned DEFAULT NULL, `r_clock` int NOT NULL DEFAULT '0', `r_ns` int NOT NULL DEFAULT '0', `correlationid` bigint unsigned DEFAULT NULL, `userid` bigint unsigned DEFAULT NULL, `name` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `acknowledged` int NOT NULL DEFAULT '0', `severity` int NOT NULL DEFAULT '0', `cause_eventid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`eventid`), KEY `problem_1` (`source`,`object`,`objectid`), KEY `problem_2` (`r_clock`), KEY `problem_3` (`r_eventid`), KEY `c_problem_3` (`cause_eventid`), CONSTRAINT `c_problem_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_problem_2` FOREIGN KEY (`r_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_problem_3` FOREIGN KEY (`cause_eventid`) REFERENCES `events` (`eventid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `problem` -- LOCK TABLES `problem` WRITE; /*!40000 ALTER TABLE `problem` DISABLE KEYS */; /*!40000 ALTER TABLE `problem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `problem_tag` -- DROP TABLE IF EXISTS `problem_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `problem_tag` ( `problemtagid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`problemtagid`), KEY `problem_tag_1` (`eventid`,`tag`,`value`), CONSTRAINT `c_problem_tag_1` FOREIGN KEY (`eventid`) REFERENCES `problem` (`eventid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `problem_tag` -- LOCK TABLES `problem_tag` WRITE; /*!40000 ALTER TABLE `problem_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `problem_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `profiles` -- DROP TABLE IF EXISTS `profiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `profiles` ( `profileid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `idx` varchar(96) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `idx2` bigint unsigned NOT NULL DEFAULT '0', `value_id` bigint unsigned NOT NULL DEFAULT '0', `value_int` int NOT NULL DEFAULT '0', `value_str` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `source` varchar(96) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`profileid`), KEY `profiles_1` (`userid`,`idx`,`idx2`), KEY `profiles_2` (`userid`,`profileid`), CONSTRAINT `c_profiles_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `profiles` -- LOCK TABLES `profiles` WRITE; /*!40000 ALTER TABLE `profiles` DISABLE KEYS */; INSERT INTO `profiles` VALUES (1,1,'web.templates.php.sort',0,0,0,'name','',3),(2,1,'web.templates.php.sortorder',0,0,0,'ASC','',3),(3,1,'web.pager.entity',0,0,0,'templates.php','',3),(4,1,'web.pager.page',0,0,1,'','',2),(5,1,'web.paging.lastpage',0,0,0,'templates.php','',3),(6,1,'web.hosts.sort',0,0,0,'name','',3),(7,1,'web.hosts.sortorder',0,0,0,'ASC','',3),(8,1,'web.hostgroups.sort',0,0,0,'name','',3),(9,1,'web.hostgroups.sortorder',0,0,0,'ASC','',3),(10,1,'web.popup.generic.filter_templategroupid',0,1,0,'','',1),(11,1,'web.hosts.items.filter_hostids',0,1,0,'','',1),(12,1,'web.hosts.items.filter_name',0,0,0,'','',3),(13,1,'web.hosts.items.filter_type',0,0,-1,'','',2),(14,1,'web.hosts.items.filter_key',0,0,0,'','',3),(15,1,'web.hosts.items.filter_snmp_oid',0,0,0,'','',3),(16,1,'web.hosts.items.filter_value_type',0,0,-1,'','',2),(17,1,'web.hosts.items.filter_delay',0,0,0,'','',3),(18,1,'web.hosts.items.filter_history',0,0,0,'','',3),(19,1,'web.hosts.items.filter_trends',0,0,0,'','',3),(20,1,'web.hosts.items.filter_status',0,0,-1,'','',2),(21,1,'web.hosts.items.filter_state',0,0,-1,'','',2),(22,1,'web.hosts.items.filter_inherited',0,0,-1,'','',2),(23,1,'web.hosts.items.filter_with_triggers',0,0,-1,'','',2),(24,1,'web.hosts.items.filter_discovered',0,0,-1,'','',2),(25,1,'web.hosts.items.filter.evaltype',0,0,0,'','',2),(26,1,'web.hosts.items.subfilter_types',0,0,0,'','',3),(27,1,'web.hosts.items.subfilter_value_types',0,0,0,'','',3),(28,1,'web.hosts.items.subfilter_status',0,0,0,'','',3),(29,1,'web.hosts.items.subfilter_state',0,0,0,'','',3),(30,1,'web.hosts.items.subfilter_inherited',0,0,0,'','',3),(31,1,'web.hosts.items.subfilter_with_triggers',0,0,0,'','',3),(32,1,'web.hosts.items.subfilter_hosts',0,0,0,'','',3),(33,1,'web.hosts.items.subfilter_interval',0,0,0,'','',3),(34,1,'web.hosts.items.subfilter_history',0,0,0,'','',3),(35,1,'web.hosts.items.subfilter_trends',0,0,0,'','',3),(36,1,'web.hosts.items.subfilter_discovered',0,0,0,'','',3),(37,1,'web.hosts.items.php.sort',0,0,0,'name','',3),(38,1,'web.hosts.items.php.sortorder',0,0,0,'ASC','',3),(39,1,'web.hosts.triggers.php.sort',0,0,0,'description','',3),(40,1,'web.hosts.triggers.php.sortorder',0,0,0,'ASC','',3),(41,1,'web.hosts.triggers.filter_inherited',0,0,-1,'','',2),(42,1,'web.hosts.triggers.filter_discovered',0,0,-1,'','',2),(43,1,'web.hosts.triggers.filter_dependent',0,0,-1,'','',2),(44,1,'web.hosts.triggers.filter_name',0,0,0,'','',3),(45,1,'web.hosts.triggers.filter_hostids',0,1,0,'','',1),(46,1,'web.hosts.triggers.filter_state',0,0,-1,'','',2),(47,1,'web.hosts.triggers.filter_status',0,0,-1,'','',2),(48,1,'web.hosts.triggers.filter.evaltype',0,0,0,'','',2),(49,1,'web.popup.generic.filter_hostid',0,8,0,'','',1),(50,1,'web.templates.items.filter_hostids',0,10,0,'','',1),(51,1,'web.templates.items.filter_name',0,0,0,'','',3),(52,1,'web.templates.items.filter_type',0,0,-1,'','',2),(53,1,'web.templates.items.filter_key',0,0,0,'','',3),(54,1,'web.templates.items.filter_snmp_oid',0,0,0,'','',3),(55,1,'web.templates.items.filter_value_type',0,0,-1,'','',2),(56,1,'web.templates.items.filter_delay',0,0,0,'','',3),(57,1,'web.templates.items.filter_history',0,0,0,'','',3),(58,1,'web.templates.items.filter_trends',0,0,0,'','',3),(59,1,'web.templates.items.filter_status',0,0,-1,'','',2),(60,1,'web.templates.items.filter_state',0,0,-1,'','',2),(61,1,'web.templates.items.filter_inherited',0,0,-1,'','',2),(62,1,'web.templates.items.filter_with_triggers',0,0,-1,'','',2),(63,1,'web.templates.items.filter_discovered',0,0,-1,'','',2),(64,1,'web.templates.items.filter.evaltype',0,0,0,'','',2),(65,1,'web.templates.items.subfilter_types',0,0,0,'','',3),(66,1,'web.templates.items.subfilter_value_types',0,0,0,'','',3),(67,1,'web.templates.items.subfilter_status',0,0,0,'','',3),(68,1,'web.templates.items.subfilter_state',0,0,0,'','',3),(69,1,'web.templates.items.subfilter_inherited',0,0,0,'','',3),(70,1,'web.templates.items.subfilter_with_triggers',0,0,0,'','',3),(71,1,'web.templates.items.subfilter_hosts',0,0,0,'','',3),(72,1,'web.templates.items.subfilter_interval',0,0,0,'','',3),(73,1,'web.templates.items.subfilter_history',0,0,0,'','',3),(74,1,'web.templates.items.subfilter_trends',0,0,0,'','',3),(75,1,'web.templates.items.subfilter_discovered',0,0,0,'','',3),(76,1,'web.templates.items.php.sort',0,0,0,'name','',3),(77,1,'web.templates.items.php.sortorder',0,0,0,'ASC','',3),(78,1,'web.templates.triggers.php.sort',0,0,0,'description','',3),(79,1,'web.templates.triggers.php.sortorder',0,0,0,'ASC','',3),(80,1,'web.templates.triggers.filter_inherited',0,0,-1,'','',2),(81,1,'web.templates.triggers.filter_discovered',0,0,-1,'','',2),(82,1,'web.templates.triggers.filter_dependent',0,0,-1,'','',2),(83,1,'web.templates.triggers.filter_name',0,0,0,'','',3),(84,1,'web.templates.triggers.filter_hostids',0,6,0,'','',1),(85,1,'web.templates.triggers.filter_state',0,0,-1,'','',2),(86,1,'web.templates.triggers.filter_status',0,0,-1,'','',2),(87,1,'web.templates.triggers.filter.evaltype',0,0,0,'','',2),(88,1,'web.popup.generic.filter_templateid',0,7,0,'','',1),(89,1,'web.templates.graphs.php.sort',0,0,0,'name','',3),(90,1,'web.templates.graphs.php.sortorder',0,0,0,'ASC','',3),(91,1,'web.templates.graphs.filter_hostids',0,6,0,'','',1),(92,1,'web.dashboard.dashboardid',0,1,0,'','',1),(93,1,'web.templates.dashboard.list.sort',0,0,0,'name','',3),(94,1,'web.templates.dashboard.list.sortorder',0,0,0,'ASC','',3),(95,1,'web.dashboard.last_widget_type',0,0,0,'item','',3); /*!40000 ALTER TABLE `profiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proxy_autoreg_host` -- DROP TABLE IF EXISTS `proxy_autoreg_host`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `proxy_autoreg_host` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `clock` int NOT NULL DEFAULT '0', `host` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `listen_ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `listen_port` int NOT NULL DEFAULT '0', `listen_dns` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_metadata` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `flags` int NOT NULL DEFAULT '0', `tls_accepted` int NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `proxy_autoreg_host_1` (`clock`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proxy_autoreg_host` -- LOCK TABLES `proxy_autoreg_host` WRITE; /*!40000 ALTER TABLE `proxy_autoreg_host` DISABLE KEYS */; /*!40000 ALTER TABLE `proxy_autoreg_host` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proxy_dhistory` -- DROP TABLE IF EXISTS `proxy_dhistory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `proxy_dhistory` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `clock` int NOT NULL DEFAULT '0', `druleid` bigint unsigned NOT NULL, `ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `port` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '0', `dcheckid` bigint unsigned DEFAULT NULL, `dns` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `proxy_dhistory_1` (`clock`), KEY `proxy_dhistory_2` (`druleid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proxy_dhistory` -- LOCK TABLES `proxy_dhistory` WRITE; /*!40000 ALTER TABLE `proxy_dhistory` DISABLE KEYS */; /*!40000 ALTER TABLE `proxy_dhistory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proxy_history` -- DROP TABLE IF EXISTS `proxy_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `proxy_history` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `timestamp` int NOT NULL DEFAULT '0', `source` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `severity` int NOT NULL DEFAULT '0', `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `logeventid` int NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', `state` int NOT NULL DEFAULT '0', `lastlogsize` bigint unsigned NOT NULL DEFAULT '0', `mtime` int NOT NULL DEFAULT '0', `flags` int NOT NULL DEFAULT '0', `write_clock` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `proxy_history_1` (`clock`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proxy_history` -- LOCK TABLES `proxy_history` WRITE; /*!40000 ALTER TABLE `proxy_history` DISABLE KEYS */; /*!40000 ALTER TABLE `proxy_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `regexps` -- DROP TABLE IF EXISTS `regexps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `regexps` ( `regexpid` bigint unsigned NOT NULL, `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `test_string` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`regexpid`), UNIQUE KEY `regexps_1` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `regexps` -- LOCK TABLES `regexps` WRITE; /*!40000 ALTER TABLE `regexps` DISABLE KEYS */; INSERT INTO `regexps` VALUES (1,'File systems for discovery','ext3'),(2,'Network interfaces for discovery','eth0'),(3,'Storage devices for SNMP discovery','/boot'),(4,'Windows service names for discovery','SysmonLog'),(5,'Windows service startup states for discovery','automatic'); /*!40000 ALTER TABLE `regexps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report` -- DROP TABLE IF EXISTS `report`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report` ( `reportid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '0', `dashboardid` bigint unsigned NOT NULL, `period` int NOT NULL DEFAULT '0', `cycle` int NOT NULL DEFAULT '0', `weekdays` int NOT NULL DEFAULT '0', `start_time` int NOT NULL DEFAULT '0', `active_since` int NOT NULL DEFAULT '0', `active_till` int NOT NULL DEFAULT '0', `state` int NOT NULL DEFAULT '0', `lastsent` int NOT NULL DEFAULT '0', `info` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`reportid`), UNIQUE KEY `report_1` (`name`), KEY `c_report_1` (`userid`), KEY `c_report_2` (`dashboardid`), CONSTRAINT `c_report_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_report_2` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report` -- LOCK TABLES `report` WRITE; /*!40000 ALTER TABLE `report` DISABLE KEYS */; /*!40000 ALTER TABLE `report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_param` -- DROP TABLE IF EXISTS `report_param`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_param` ( `reportparamid` bigint unsigned NOT NULL, `reportid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`reportparamid`), KEY `report_param_1` (`reportid`), CONSTRAINT `c_report_param_1` FOREIGN KEY (`reportid`) REFERENCES `report` (`reportid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_param` -- LOCK TABLES `report_param` WRITE; /*!40000 ALTER TABLE `report_param` DISABLE KEYS */; /*!40000 ALTER TABLE `report_param` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_user` -- DROP TABLE IF EXISTS `report_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_user` ( `reportuserid` bigint unsigned NOT NULL, `reportid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `exclude` int NOT NULL DEFAULT '0', `access_userid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`reportuserid`), KEY `report_user_1` (`reportid`), KEY `c_report_user_2` (`userid`), KEY `c_report_user_3` (`access_userid`), CONSTRAINT `c_report_user_1` FOREIGN KEY (`reportid`) REFERENCES `report` (`reportid`) ON DELETE CASCADE, CONSTRAINT `c_report_user_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_report_user_3` FOREIGN KEY (`access_userid`) REFERENCES `users` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_user` -- LOCK TABLES `report_user` WRITE; /*!40000 ALTER TABLE `report_user` DISABLE KEYS */; /*!40000 ALTER TABLE `report_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_usrgrp` -- DROP TABLE IF EXISTS `report_usrgrp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `report_usrgrp` ( `reportusrgrpid` bigint unsigned NOT NULL, `reportid` bigint unsigned NOT NULL, `usrgrpid` bigint unsigned NOT NULL, `access_userid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`reportusrgrpid`), KEY `report_usrgrp_1` (`reportid`), KEY `c_report_usrgrp_2` (`usrgrpid`), KEY `c_report_usrgrp_3` (`access_userid`), CONSTRAINT `c_report_usrgrp_1` FOREIGN KEY (`reportid`) REFERENCES `report` (`reportid`) ON DELETE CASCADE, CONSTRAINT `c_report_usrgrp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE, CONSTRAINT `c_report_usrgrp_3` FOREIGN KEY (`access_userid`) REFERENCES `users` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report_usrgrp` -- LOCK TABLES `report_usrgrp` WRITE; /*!40000 ALTER TABLE `report_usrgrp` DISABLE KEYS */; /*!40000 ALTER TABLE `report_usrgrp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rights` -- DROP TABLE IF EXISTS `rights`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rights` ( `rightid` bigint unsigned NOT NULL, `groupid` bigint unsigned NOT NULL, `permission` int NOT NULL DEFAULT '0', `id` bigint unsigned NOT NULL, PRIMARY KEY (`rightid`), KEY `rights_1` (`groupid`), KEY `rights_2` (`id`), CONSTRAINT `c_rights_1` FOREIGN KEY (`groupid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE, CONSTRAINT `c_rights_2` FOREIGN KEY (`id`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rights` -- LOCK TABLES `rights` WRITE; /*!40000 ALTER TABLE `rights` DISABLE KEYS */; /*!40000 ALTER TABLE `rights` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role` -- DROP TABLE IF EXISTS `role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `role` ( `roleid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `type` int NOT NULL DEFAULT '0', `readonly` int NOT NULL DEFAULT '0', PRIMARY KEY (`roleid`), UNIQUE KEY `role_1` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `role` -- LOCK TABLES `role` WRITE; /*!40000 ALTER TABLE `role` DISABLE KEYS */; INSERT INTO `role` VALUES (1,'User role',1,0),(2,'Admin role',2,0),(3,'Super admin role',3,1),(4,'Guest role',1,0); /*!40000 ALTER TABLE `role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role_rule` -- DROP TABLE IF EXISTS `role_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `role_rule` ( `role_ruleid` bigint unsigned NOT NULL, `roleid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value_int` int NOT NULL DEFAULT '0', `value_str` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value_moduleid` bigint unsigned DEFAULT NULL, `value_serviceid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`role_ruleid`), KEY `role_rule_1` (`roleid`), KEY `role_rule_2` (`value_moduleid`), KEY `role_rule_3` (`value_serviceid`), CONSTRAINT `c_role_rule_1` FOREIGN KEY (`roleid`) REFERENCES `role` (`roleid`) ON DELETE CASCADE, CONSTRAINT `c_role_rule_2` FOREIGN KEY (`value_moduleid`) REFERENCES `module` (`moduleid`) ON DELETE CASCADE, CONSTRAINT `c_role_rule_3` FOREIGN KEY (`value_serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `role_rule` -- LOCK TABLES `role_rule` WRITE; /*!40000 ALTER TABLE `role_rule` DISABLE KEYS */; INSERT INTO `role_rule` VALUES (1,1,0,'ui.default_access',1,'',NULL,NULL),(2,1,0,'services.read',1,'',NULL,NULL),(3,1,0,'services.write',0,'',NULL,NULL),(4,1,0,'modules.default_access',1,'',NULL,NULL),(5,1,0,'api.access',1,'',NULL,NULL),(6,1,0,'api.mode',0,'',NULL,NULL),(7,1,0,'actions.default_access',1,'',NULL,NULL),(8,2,0,'ui.default_access',1,'',NULL,NULL),(9,2,0,'services.read',1,'',NULL,NULL),(10,2,0,'services.write',1,'',NULL,NULL),(11,2,0,'modules.default_access',1,'',NULL,NULL),(12,2,0,'api.access',1,'',NULL,NULL),(13,2,0,'api.mode',0,'',NULL,NULL),(14,2,0,'actions.default_access',1,'',NULL,NULL),(15,3,0,'ui.default_access',1,'',NULL,NULL),(16,3,0,'services.read',1,'',NULL,NULL),(17,3,0,'services.write',1,'',NULL,NULL),(18,3,0,'modules.default_access',1,'',NULL,NULL),(19,3,0,'api.access',1,'',NULL,NULL),(20,3,0,'api.mode',0,'',NULL,NULL),(21,3,0,'actions.default_access',1,'',NULL,NULL),(22,4,0,'ui.default_access',1,'',NULL,NULL),(23,4,0,'services.read',1,'',NULL,NULL),(24,4,0,'services.write',0,'',NULL,NULL),(25,4,0,'modules.default_access',1,'',NULL,NULL),(26,4,0,'api.access',0,'',NULL,NULL),(27,4,0,'actions.default_access',0,'',NULL,NULL); /*!40000 ALTER TABLE `role_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `scim_group` -- DROP TABLE IF EXISTS `scim_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `scim_group` ( `scim_groupid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`scim_groupid`), UNIQUE KEY `scim_group_1` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `scim_group` -- LOCK TABLES `scim_group` WRITE; /*!40000 ALTER TABLE `scim_group` DISABLE KEYS */; /*!40000 ALTER TABLE `scim_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `script_param` -- DROP TABLE IF EXISTS `script_param`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `script_param` ( `script_paramid` bigint unsigned NOT NULL, `scriptid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`script_paramid`), UNIQUE KEY `script_param_1` (`scriptid`,`name`), CONSTRAINT `c_script_param_1` FOREIGN KEY (`scriptid`) REFERENCES `scripts` (`scriptid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `script_param` -- LOCK TABLES `script_param` WRITE; /*!40000 ALTER TABLE `script_param` DISABLE KEYS */; /*!40000 ALTER TABLE `script_param` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `scripts` -- DROP TABLE IF EXISTS `scripts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `scripts` ( `scriptid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `command` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `host_access` int NOT NULL DEFAULT '2', `usrgrpid` bigint unsigned DEFAULT NULL, `groupid` bigint unsigned DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `confirmation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `type` int NOT NULL DEFAULT '5', `execute_on` int NOT NULL DEFAULT '2', `timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '30s', `scope` int NOT NULL DEFAULT '1', `port` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `authtype` int NOT NULL DEFAULT '0', `username` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `publickey` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `privatekey` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `menu_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `new_window` int NOT NULL DEFAULT '1', PRIMARY KEY (`scriptid`), UNIQUE KEY `scripts_3` (`name`), KEY `scripts_1` (`usrgrpid`), KEY `scripts_2` (`groupid`), CONSTRAINT `c_scripts_1` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`), CONSTRAINT `c_scripts_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `scripts` -- LOCK TABLES `scripts` WRITE; /*!40000 ALTER TABLE `scripts` DISABLE KEYS */; INSERT INTO `scripts` VALUES (1,'Ping','ping -c 3 {HOST.CONN}; case $? in [01]) true;; *) false;; esac',2,NULL,NULL,'','',0,2,'30s',2,'',0,'','','','','','',1),(2,'Traceroute','/usr/bin/traceroute {HOST.CONN}',2,NULL,NULL,'','',0,2,'30s',2,'',0,'','','','','','',1),(3,'Detect operating system','sudo /usr/bin/nmap -O {HOST.CONN}',2,7,NULL,'','',0,2,'30s',2,'',0,'','','','','','',1); /*!40000 ALTER TABLE `scripts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `service_alarms` -- DROP TABLE IF EXISTS `service_alarms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `service_alarms` ( `servicealarmid` bigint unsigned NOT NULL, `serviceid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` int NOT NULL DEFAULT '-1', PRIMARY KEY (`servicealarmid`), KEY `service_alarms_1` (`serviceid`,`clock`), KEY `service_alarms_2` (`clock`), CONSTRAINT `c_service_alarms_1` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `service_alarms` -- LOCK TABLES `service_alarms` WRITE; /*!40000 ALTER TABLE `service_alarms` DISABLE KEYS */; /*!40000 ALTER TABLE `service_alarms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `service_problem` -- DROP TABLE IF EXISTS `service_problem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `service_problem` ( `service_problemid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `serviceid` bigint unsigned NOT NULL, `severity` int NOT NULL DEFAULT '0', PRIMARY KEY (`service_problemid`), KEY `service_problem_1` (`eventid`), KEY `service_problem_2` (`serviceid`), CONSTRAINT `c_service_problem_1` FOREIGN KEY (`eventid`) REFERENCES `problem` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_service_problem_2` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `service_problem` -- LOCK TABLES `service_problem` WRITE; /*!40000 ALTER TABLE `service_problem` DISABLE KEYS */; /*!40000 ALTER TABLE `service_problem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `service_problem_tag` -- DROP TABLE IF EXISTS `service_problem_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `service_problem_tag` ( `service_problem_tagid` bigint unsigned NOT NULL, `serviceid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `operator` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`service_problem_tagid`), KEY `service_problem_tag_1` (`serviceid`), CONSTRAINT `c_service_problem_tag_1` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `service_problem_tag` -- LOCK TABLES `service_problem_tag` WRITE; /*!40000 ALTER TABLE `service_problem_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `service_problem_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `service_status_rule` -- DROP TABLE IF EXISTS `service_status_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `service_status_rule` ( `service_status_ruleid` bigint unsigned NOT NULL, `serviceid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `limit_value` int NOT NULL DEFAULT '0', `limit_status` int NOT NULL DEFAULT '0', `new_status` int NOT NULL DEFAULT '0', PRIMARY KEY (`service_status_ruleid`), KEY `service_status_rule_1` (`serviceid`), CONSTRAINT `c_service_status_rule_1` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `service_status_rule` -- LOCK TABLES `service_status_rule` WRITE; /*!40000 ALTER TABLE `service_status_rule` DISABLE KEYS */; /*!40000 ALTER TABLE `service_status_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `service_tag` -- DROP TABLE IF EXISTS `service_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `service_tag` ( `servicetagid` bigint unsigned NOT NULL, `serviceid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`servicetagid`), KEY `service_tag_1` (`serviceid`), CONSTRAINT `c_service_tag_1` FOREIGN KEY (`serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `service_tag` -- LOCK TABLES `service_tag` WRITE; /*!40000 ALTER TABLE `service_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `service_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `services` -- DROP TABLE IF EXISTS `services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `services` ( `serviceid` bigint unsigned NOT NULL, `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '-1', `algorithm` int NOT NULL DEFAULT '0', `sortorder` int NOT NULL DEFAULT '0', `weight` int NOT NULL DEFAULT '0', `propagation_rule` int NOT NULL DEFAULT '0', `propagation_value` int NOT NULL DEFAULT '0', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `created_at` int NOT NULL DEFAULT '0', PRIMARY KEY (`serviceid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `services` -- LOCK TABLES `services` WRITE; /*!40000 ALTER TABLE `services` DISABLE KEYS */; /*!40000 ALTER TABLE `services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `services_links` -- DROP TABLE IF EXISTS `services_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `services_links` ( `linkid` bigint unsigned NOT NULL, `serviceupid` bigint unsigned NOT NULL, `servicedownid` bigint unsigned NOT NULL, PRIMARY KEY (`linkid`), UNIQUE KEY `services_links_2` (`serviceupid`,`servicedownid`), KEY `services_links_1` (`servicedownid`), CONSTRAINT `c_services_links_1` FOREIGN KEY (`serviceupid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE, CONSTRAINT `c_services_links_2` FOREIGN KEY (`servicedownid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `services_links` -- LOCK TABLES `services_links` WRITE; /*!40000 ALTER TABLE `services_links` DISABLE KEYS */; /*!40000 ALTER TABLE `services_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sessions` ( `sessionid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `userid` bigint unsigned NOT NULL, `lastaccess` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', PRIMARY KEY (`sessionid`), KEY `sessions_1` (`userid`,`status`,`lastaccess`), CONSTRAINT `c_sessions_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; INSERT INTO `sessions` VALUES ('91da40d8c8734fb5555516758929a4a3',1,1672319439,0),('32f89338f480d7a376412d485356bd9c',1,1672389969,0),('c8645cac883e901ade729527a8de6abe',1,1672647541,0); /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sla` -- DROP TABLE IF EXISTS `sla`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sla` ( `slaid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `period` int NOT NULL DEFAULT '0', `slo` double NOT NULL DEFAULT '99.9', `effective_date` int NOT NULL DEFAULT '0', `timezone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'UTC', `status` int NOT NULL DEFAULT '1', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`slaid`), UNIQUE KEY `sla_1` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sla` -- LOCK TABLES `sla` WRITE; /*!40000 ALTER TABLE `sla` DISABLE KEYS */; /*!40000 ALTER TABLE `sla` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sla_excluded_downtime` -- DROP TABLE IF EXISTS `sla_excluded_downtime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sla_excluded_downtime` ( `sla_excluded_downtimeid` bigint unsigned NOT NULL, `slaid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `period_from` int NOT NULL DEFAULT '0', `period_to` int NOT NULL DEFAULT '0', PRIMARY KEY (`sla_excluded_downtimeid`), KEY `sla_excluded_downtime_1` (`slaid`), CONSTRAINT `c_sla_excluded_downtime_1` FOREIGN KEY (`slaid`) REFERENCES `sla` (`slaid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sla_excluded_downtime` -- LOCK TABLES `sla_excluded_downtime` WRITE; /*!40000 ALTER TABLE `sla_excluded_downtime` DISABLE KEYS */; /*!40000 ALTER TABLE `sla_excluded_downtime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sla_schedule` -- DROP TABLE IF EXISTS `sla_schedule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sla_schedule` ( `sla_scheduleid` bigint unsigned NOT NULL, `slaid` bigint unsigned NOT NULL, `period_from` int NOT NULL DEFAULT '0', `period_to` int NOT NULL DEFAULT '0', PRIMARY KEY (`sla_scheduleid`), KEY `sla_schedule_1` (`slaid`), CONSTRAINT `c_sla_schedule_1` FOREIGN KEY (`slaid`) REFERENCES `sla` (`slaid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sla_schedule` -- LOCK TABLES `sla_schedule` WRITE; /*!40000 ALTER TABLE `sla_schedule` DISABLE KEYS */; /*!40000 ALTER TABLE `sla_schedule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sla_service_tag` -- DROP TABLE IF EXISTS `sla_service_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sla_service_tag` ( `sla_service_tagid` bigint unsigned NOT NULL, `slaid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `operator` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`sla_service_tagid`), KEY `sla_service_tag_1` (`slaid`), CONSTRAINT `c_sla_service_tag_1` FOREIGN KEY (`slaid`) REFERENCES `sla` (`slaid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sla_service_tag` -- LOCK TABLES `sla_service_tag` WRITE; /*!40000 ALTER TABLE `sla_service_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `sla_service_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmap_element_trigger` -- DROP TABLE IF EXISTS `sysmap_element_trigger`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmap_element_trigger` ( `selement_triggerid` bigint unsigned NOT NULL, `selementid` bigint unsigned NOT NULL, `triggerid` bigint unsigned NOT NULL, PRIMARY KEY (`selement_triggerid`), UNIQUE KEY `sysmap_element_trigger_1` (`selementid`,`triggerid`), KEY `c_sysmap_element_trigger_2` (`triggerid`), CONSTRAINT `c_sysmap_element_trigger_1` FOREIGN KEY (`selementid`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE, CONSTRAINT `c_sysmap_element_trigger_2` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmap_element_trigger` -- LOCK TABLES `sysmap_element_trigger` WRITE; /*!40000 ALTER TABLE `sysmap_element_trigger` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmap_element_trigger` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmap_element_url` -- DROP TABLE IF EXISTS `sysmap_element_url`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmap_element_url` ( `sysmapelementurlid` bigint unsigned NOT NULL, `selementid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`sysmapelementurlid`), UNIQUE KEY `sysmap_element_url_1` (`selementid`,`name`), CONSTRAINT `c_sysmap_element_url_1` FOREIGN KEY (`selementid`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmap_element_url` -- LOCK TABLES `sysmap_element_url` WRITE; /*!40000 ALTER TABLE `sysmap_element_url` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmap_element_url` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmap_shape` -- DROP TABLE IF EXISTS `sysmap_shape`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmap_shape` ( `sysmap_shapeid` bigint unsigned NOT NULL, `sysmapid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `x` int NOT NULL DEFAULT '0', `y` int NOT NULL DEFAULT '0', `width` int NOT NULL DEFAULT '200', `height` int NOT NULL DEFAULT '200', `text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `font` int NOT NULL DEFAULT '9', `font_size` int NOT NULL DEFAULT '11', `font_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '000000', `text_halign` int NOT NULL DEFAULT '0', `text_valign` int NOT NULL DEFAULT '0', `border_type` int NOT NULL DEFAULT '0', `border_width` int NOT NULL DEFAULT '1', `border_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '000000', `background_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `zindex` int NOT NULL DEFAULT '0', PRIMARY KEY (`sysmap_shapeid`), KEY `sysmap_shape_1` (`sysmapid`), CONSTRAINT `c_sysmap_shape_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmap_shape` -- LOCK TABLES `sysmap_shape` WRITE; /*!40000 ALTER TABLE `sysmap_shape` DISABLE KEYS */; INSERT INTO `sysmap_shape` VALUES (1,1,0,0,0,680,15,'{MAP.NAME}',9,11,'000000',0,0,0,0,'000000','',0); /*!40000 ALTER TABLE `sysmap_shape` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmap_url` -- DROP TABLE IF EXISTS `sysmap_url`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmap_url` ( `sysmapurlid` bigint unsigned NOT NULL, `sysmapid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `elementtype` int NOT NULL DEFAULT '0', PRIMARY KEY (`sysmapurlid`), UNIQUE KEY `sysmap_url_1` (`sysmapid`,`name`), CONSTRAINT `c_sysmap_url_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmap_url` -- LOCK TABLES `sysmap_url` WRITE; /*!40000 ALTER TABLE `sysmap_url` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmap_url` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmap_user` -- DROP TABLE IF EXISTS `sysmap_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmap_user` ( `sysmapuserid` bigint unsigned NOT NULL, `sysmapid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `permission` int NOT NULL DEFAULT '2', PRIMARY KEY (`sysmapuserid`), UNIQUE KEY `sysmap_user_1` (`sysmapid`,`userid`), KEY `c_sysmap_user_2` (`userid`), CONSTRAINT `c_sysmap_user_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE, CONSTRAINT `c_sysmap_user_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmap_user` -- LOCK TABLES `sysmap_user` WRITE; /*!40000 ALTER TABLE `sysmap_user` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmap_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmap_usrgrp` -- DROP TABLE IF EXISTS `sysmap_usrgrp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmap_usrgrp` ( `sysmapusrgrpid` bigint unsigned NOT NULL, `sysmapid` bigint unsigned NOT NULL, `usrgrpid` bigint unsigned NOT NULL, `permission` int NOT NULL DEFAULT '2', PRIMARY KEY (`sysmapusrgrpid`), UNIQUE KEY `sysmap_usrgrp_1` (`sysmapid`,`usrgrpid`), KEY `c_sysmap_usrgrp_2` (`usrgrpid`), CONSTRAINT `c_sysmap_usrgrp_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE, CONSTRAINT `c_sysmap_usrgrp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmap_usrgrp` -- LOCK TABLES `sysmap_usrgrp` WRITE; /*!40000 ALTER TABLE `sysmap_usrgrp` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmap_usrgrp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmaps` -- DROP TABLE IF EXISTS `sysmaps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmaps` ( `sysmapid` bigint unsigned NOT NULL, `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `width` int NOT NULL DEFAULT '600', `height` int NOT NULL DEFAULT '400', `backgroundid` bigint unsigned DEFAULT NULL, `label_type` int NOT NULL DEFAULT '2', `label_location` int NOT NULL DEFAULT '0', `highlight` int NOT NULL DEFAULT '1', `expandproblem` int NOT NULL DEFAULT '1', `markelements` int NOT NULL DEFAULT '0', `show_unack` int NOT NULL DEFAULT '0', `grid_size` int NOT NULL DEFAULT '50', `grid_show` int NOT NULL DEFAULT '1', `grid_align` int NOT NULL DEFAULT '1', `label_format` int NOT NULL DEFAULT '0', `label_type_host` int NOT NULL DEFAULT '2', `label_type_hostgroup` int NOT NULL DEFAULT '2', `label_type_trigger` int NOT NULL DEFAULT '2', `label_type_map` int NOT NULL DEFAULT '2', `label_type_image` int NOT NULL DEFAULT '2', `label_string_host` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `label_string_hostgroup` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `label_string_trigger` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `label_string_map` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `label_string_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `iconmapid` bigint unsigned DEFAULT NULL, `expand_macros` int NOT NULL DEFAULT '0', `severity_min` int NOT NULL DEFAULT '0', `userid` bigint unsigned NOT NULL, `private` int NOT NULL DEFAULT '1', `show_suppressed` int NOT NULL DEFAULT '0', PRIMARY KEY (`sysmapid`), UNIQUE KEY `sysmaps_1` (`name`), KEY `sysmaps_2` (`backgroundid`), KEY `sysmaps_3` (`iconmapid`), KEY `c_sysmaps_3` (`userid`), CONSTRAINT `c_sysmaps_1` FOREIGN KEY (`backgroundid`) REFERENCES `images` (`imageid`), CONSTRAINT `c_sysmaps_2` FOREIGN KEY (`iconmapid`) REFERENCES `icon_map` (`iconmapid`), CONSTRAINT `c_sysmaps_3` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmaps` -- LOCK TABLES `sysmaps` WRITE; /*!40000 ALTER TABLE `sysmaps` DISABLE KEYS */; INSERT INTO `sysmaps` VALUES (1,'Local network',680,200,NULL,0,0,1,1,1,0,50,1,1,0,2,2,2,2,2,'','','','','',NULL,1,0,1,0,0); /*!40000 ALTER TABLE `sysmaps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmaps_element_tag` -- DROP TABLE IF EXISTS `sysmaps_element_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmaps_element_tag` ( `selementtagid` bigint unsigned NOT NULL, `selementid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `operator` int NOT NULL DEFAULT '0', PRIMARY KEY (`selementtagid`), KEY `sysmaps_element_tag_1` (`selementid`), CONSTRAINT `c_sysmaps_element_tag_1` FOREIGN KEY (`selementid`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmaps_element_tag` -- LOCK TABLES `sysmaps_element_tag` WRITE; /*!40000 ALTER TABLE `sysmaps_element_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmaps_element_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmaps_elements` -- DROP TABLE IF EXISTS `sysmaps_elements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmaps_elements` ( `selementid` bigint unsigned NOT NULL, `sysmapid` bigint unsigned NOT NULL, `elementid` bigint unsigned NOT NULL DEFAULT '0', `elementtype` int NOT NULL DEFAULT '0', `iconid_off` bigint unsigned DEFAULT NULL, `iconid_on` bigint unsigned DEFAULT NULL, `label` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `label_location` int NOT NULL DEFAULT '-1', `x` int NOT NULL DEFAULT '0', `y` int NOT NULL DEFAULT '0', `iconid_disabled` bigint unsigned DEFAULT NULL, `iconid_maintenance` bigint unsigned DEFAULT NULL, `elementsubtype` int NOT NULL DEFAULT '0', `areatype` int NOT NULL DEFAULT '0', `width` int NOT NULL DEFAULT '200', `height` int NOT NULL DEFAULT '200', `viewtype` int NOT NULL DEFAULT '0', `use_iconmap` int NOT NULL DEFAULT '1', `evaltype` int NOT NULL DEFAULT '0', PRIMARY KEY (`selementid`), KEY `sysmaps_elements_1` (`sysmapid`), KEY `sysmaps_elements_2` (`iconid_off`), KEY `sysmaps_elements_3` (`iconid_on`), KEY `sysmaps_elements_4` (`iconid_disabled`), KEY `sysmaps_elements_5` (`iconid_maintenance`), CONSTRAINT `c_sysmaps_elements_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE, CONSTRAINT `c_sysmaps_elements_2` FOREIGN KEY (`iconid_off`) REFERENCES `images` (`imageid`), CONSTRAINT `c_sysmaps_elements_3` FOREIGN KEY (`iconid_on`) REFERENCES `images` (`imageid`), CONSTRAINT `c_sysmaps_elements_4` FOREIGN KEY (`iconid_disabled`) REFERENCES `images` (`imageid`), CONSTRAINT `c_sysmaps_elements_5` FOREIGN KEY (`iconid_maintenance`) REFERENCES `images` (`imageid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmaps_elements` -- LOCK TABLES `sysmaps_elements` WRITE; /*!40000 ALTER TABLE `sysmaps_elements` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmaps_elements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmaps_link_triggers` -- DROP TABLE IF EXISTS `sysmaps_link_triggers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmaps_link_triggers` ( `linktriggerid` bigint unsigned NOT NULL, `linkid` bigint unsigned NOT NULL, `triggerid` bigint unsigned NOT NULL, `drawtype` int NOT NULL DEFAULT '0', `color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '000000', PRIMARY KEY (`linktriggerid`), UNIQUE KEY `sysmaps_link_triggers_1` (`linkid`,`triggerid`), KEY `sysmaps_link_triggers_2` (`triggerid`), CONSTRAINT `c_sysmaps_link_triggers_1` FOREIGN KEY (`linkid`) REFERENCES `sysmaps_links` (`linkid`) ON DELETE CASCADE, CONSTRAINT `c_sysmaps_link_triggers_2` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmaps_link_triggers` -- LOCK TABLES `sysmaps_link_triggers` WRITE; /*!40000 ALTER TABLE `sysmaps_link_triggers` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmaps_link_triggers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sysmaps_links` -- DROP TABLE IF EXISTS `sysmaps_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sysmaps_links` ( `linkid` bigint unsigned NOT NULL, `sysmapid` bigint unsigned NOT NULL, `selementid1` bigint unsigned NOT NULL, `selementid2` bigint unsigned NOT NULL, `drawtype` int NOT NULL DEFAULT '0', `color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '000000', `label` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`linkid`), KEY `sysmaps_links_1` (`sysmapid`), KEY `sysmaps_links_2` (`selementid1`), KEY `sysmaps_links_3` (`selementid2`), CONSTRAINT `c_sysmaps_links_1` FOREIGN KEY (`sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE, CONSTRAINT `c_sysmaps_links_2` FOREIGN KEY (`selementid1`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE, CONSTRAINT `c_sysmaps_links_3` FOREIGN KEY (`selementid2`) REFERENCES `sysmaps_elements` (`selementid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sysmaps_links` -- LOCK TABLES `sysmaps_links` WRITE; /*!40000 ALTER TABLE `sysmaps_links` DISABLE KEYS */; /*!40000 ALTER TABLE `sysmaps_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag_filter` -- DROP TABLE IF EXISTS `tag_filter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tag_filter` ( `tag_filterid` bigint unsigned NOT NULL, `usrgrpid` bigint unsigned NOT NULL, `groupid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`tag_filterid`), KEY `c_tag_filter_1` (`usrgrpid`), KEY `c_tag_filter_2` (`groupid`), CONSTRAINT `c_tag_filter_1` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE, CONSTRAINT `c_tag_filter_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tag_filter` -- LOCK TABLES `tag_filter` WRITE; /*!40000 ALTER TABLE `tag_filter` DISABLE KEYS */; /*!40000 ALTER TABLE `tag_filter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `task` -- DROP TABLE IF EXISTS `task`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `task` ( `taskid` bigint unsigned NOT NULL, `type` int NOT NULL, `status` int NOT NULL DEFAULT '0', `clock` int NOT NULL DEFAULT '0', `ttl` int NOT NULL DEFAULT '0', `proxy_hostid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`taskid`), KEY `task_1` (`status`,`proxy_hostid`), KEY `c_task_1` (`proxy_hostid`), CONSTRAINT `c_task_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `task` -- LOCK TABLES `task` WRITE; /*!40000 ALTER TABLE `task` DISABLE KEYS */; /*!40000 ALTER TABLE `task` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `task_acknowledge` -- DROP TABLE IF EXISTS `task_acknowledge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `task_acknowledge` ( `taskid` bigint unsigned NOT NULL, `acknowledgeid` bigint unsigned NOT NULL, PRIMARY KEY (`taskid`), CONSTRAINT `c_task_acknowledge_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `task_acknowledge` -- LOCK TABLES `task_acknowledge` WRITE; /*!40000 ALTER TABLE `task_acknowledge` DISABLE KEYS */; /*!40000 ALTER TABLE `task_acknowledge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `task_check_now` -- DROP TABLE IF EXISTS `task_check_now`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `task_check_now` ( `taskid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, PRIMARY KEY (`taskid`), CONSTRAINT `c_task_check_now_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `task_check_now` -- LOCK TABLES `task_check_now` WRITE; /*!40000 ALTER TABLE `task_check_now` DISABLE KEYS */; /*!40000 ALTER TABLE `task_check_now` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `task_close_problem` -- DROP TABLE IF EXISTS `task_close_problem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `task_close_problem` ( `taskid` bigint unsigned NOT NULL, `acknowledgeid` bigint unsigned NOT NULL, PRIMARY KEY (`taskid`), CONSTRAINT `c_task_close_problem_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `task_close_problem` -- LOCK TABLES `task_close_problem` WRITE; /*!40000 ALTER TABLE `task_close_problem` DISABLE KEYS */; /*!40000 ALTER TABLE `task_close_problem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `task_data` -- DROP TABLE IF EXISTS `task_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `task_data` ( `taskid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `parent_taskid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`taskid`), CONSTRAINT `c_task_data_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `task_data` -- LOCK TABLES `task_data` WRITE; /*!40000 ALTER TABLE `task_data` DISABLE KEYS */; /*!40000 ALTER TABLE `task_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `task_remote_command` -- DROP TABLE IF EXISTS `task_remote_command`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `task_remote_command` ( `taskid` bigint unsigned NOT NULL, `command_type` int NOT NULL DEFAULT '0', `execute_on` int NOT NULL DEFAULT '0', `port` int NOT NULL DEFAULT '0', `authtype` int NOT NULL DEFAULT '0', `username` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `publickey` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `privatekey` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `command` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `alertid` bigint unsigned DEFAULT NULL, `parent_taskid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, PRIMARY KEY (`taskid`), CONSTRAINT `c_task_remote_command_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `task_remote_command` -- LOCK TABLES `task_remote_command` WRITE; /*!40000 ALTER TABLE `task_remote_command` DISABLE KEYS */; /*!40000 ALTER TABLE `task_remote_command` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `task_remote_command_result` -- DROP TABLE IF EXISTS `task_remote_command_result`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `task_remote_command_result` ( `taskid` bigint unsigned NOT NULL, `status` int NOT NULL DEFAULT '0', `parent_taskid` bigint unsigned NOT NULL, `info` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`taskid`), CONSTRAINT `c_task_remote_command_result_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `task_remote_command_result` -- LOCK TABLES `task_remote_command_result` WRITE; /*!40000 ALTER TABLE `task_remote_command_result` DISABLE KEYS */; /*!40000 ALTER TABLE `task_remote_command_result` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `task_result` -- DROP TABLE IF EXISTS `task_result`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `task_result` ( `taskid` bigint unsigned NOT NULL, `status` int NOT NULL DEFAULT '0', `parent_taskid` bigint unsigned NOT NULL, `info` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`taskid`), KEY `task_result_1` (`parent_taskid`), CONSTRAINT `c_task_result_1` FOREIGN KEY (`taskid`) REFERENCES `task` (`taskid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `task_result` -- LOCK TABLES `task_result` WRITE; /*!40000 ALTER TABLE `task_result` DISABLE KEYS */; /*!40000 ALTER TABLE `task_result` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `timeperiods` -- DROP TABLE IF EXISTS `timeperiods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `timeperiods` ( `timeperiodid` bigint unsigned NOT NULL, `timeperiod_type` int NOT NULL DEFAULT '0', `every` int NOT NULL DEFAULT '1', `month` int NOT NULL DEFAULT '0', `dayofweek` int NOT NULL DEFAULT '0', `day` int NOT NULL DEFAULT '0', `start_time` int NOT NULL DEFAULT '0', `period` int NOT NULL DEFAULT '0', `start_date` int NOT NULL DEFAULT '0', PRIMARY KEY (`timeperiodid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `timeperiods` -- LOCK TABLES `timeperiods` WRITE; /*!40000 ALTER TABLE `timeperiods` DISABLE KEYS */; /*!40000 ALTER TABLE `timeperiods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `token` -- DROP TABLE IF EXISTS `token`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `token` ( `tokenid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `userid` bigint unsigned NOT NULL, `token` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `lastaccess` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `expires_at` int NOT NULL DEFAULT '0', `created_at` int NOT NULL DEFAULT '0', `creator_userid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`tokenid`), UNIQUE KEY `token_2` (`userid`,`name`), UNIQUE KEY `token_3` (`token`), KEY `token_1` (`name`), KEY `token_4` (`creator_userid`), CONSTRAINT `c_token_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_token_2` FOREIGN KEY (`creator_userid`) REFERENCES `users` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `token` -- LOCK TABLES `token` WRITE; /*!40000 ALTER TABLE `token` DISABLE KEYS */; /*!40000 ALTER TABLE `token` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trends` -- DROP TABLE IF EXISTS `trends`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `trends` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `num` int NOT NULL DEFAULT '0', `value_min` double NOT NULL DEFAULT '0', `value_avg` double NOT NULL DEFAULT '0', `value_max` double NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trends` -- LOCK TABLES `trends` WRITE; /*!40000 ALTER TABLE `trends` DISABLE KEYS */; /*!40000 ALTER TABLE `trends` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trends_uint` -- DROP TABLE IF EXISTS `trends_uint`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `trends_uint` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `num` int NOT NULL DEFAULT '0', `value_min` bigint unsigned NOT NULL DEFAULT '0', `value_avg` bigint unsigned NOT NULL DEFAULT '0', `value_max` bigint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trends_uint` -- LOCK TABLES `trends_uint` WRITE; /*!40000 ALTER TABLE `trends_uint` DISABLE KEYS */; /*!40000 ALTER TABLE `trends_uint` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trigger_depends` -- DROP TABLE IF EXISTS `trigger_depends`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `trigger_depends` ( `triggerdepid` bigint unsigned NOT NULL, `triggerid_down` bigint unsigned NOT NULL, `triggerid_up` bigint unsigned NOT NULL, PRIMARY KEY (`triggerdepid`), UNIQUE KEY `trigger_depends_1` (`triggerid_down`,`triggerid_up`), KEY `trigger_depends_2` (`triggerid_up`), CONSTRAINT `c_trigger_depends_1` FOREIGN KEY (`triggerid_down`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE, CONSTRAINT `c_trigger_depends_2` FOREIGN KEY (`triggerid_up`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trigger_depends` -- LOCK TABLES `trigger_depends` WRITE; /*!40000 ALTER TABLE `trigger_depends` DISABLE KEYS */; INSERT INTO `trigger_depends` VALUES (49127,14252,14251),(49129,14253,14251),(49128,14253,14252),(49207,14318,14319),(49255,14372,14373),(49261,14380,14381),(49370,14460,14461),(49381,14476,14477),(49390,14495,14496),(49394,14511,17574),(49420,14551,14552),(49437,14589,14590),(49458,14624,14625),(50126,14664,14665),(49431,14914,14915),(49369,15332,15331),(49365,15334,15333),(49450,15338,15337),(49118,15345,15344),(49117,15347,15346),(49426,15374,15373),(49430,15376,15375),(49253,15380,15379),(49249,15382,15381),(49260,15384,15383),(49256,15386,15385),(49237,15392,15391),(49233,15394,15393),(49133,15671,16841),(49130,15695,16863),(49136,15698,16866),(49230,15721,15720),(50463,15729,15728),(50464,15730,15728),(50465,15730,15729),(50478,15740,15739),(50472,15742,15741),(50477,15744,15743),(50476,15746,15743),(50481,15748,15747),(50473,15750,15749),(50475,15751,15749),(50474,15751,15750),(50469,15752,15754),(50471,15753,15752),(50470,15753,15754),(50544,15782,15781),(50541,15784,15783),(50540,15786,15785),(50543,15793,15792),(50542,15794,15792),(50545,15797,15796),(50549,15825,15824),(50550,15826,15824),(50551,15826,15825),(50554,15828,15829),(50555,15831,15832),(50556,15834,15835),(50601,15845,15846),(48959,15948,15949),(48960,15950,15949),(49007,15961,15960),(49008,15962,15960),(49168,16009,16008),(49169,16011,16010),(49139,16031,16563),(49140,16039,16040),(49142,16041,16042),(49143,16041,16579),(49141,16042,16579),(49147,16070,16069),(49148,16072,16071),(49149,16076,17024),(50244,16141,16142),(50246,16143,16584),(50245,16146,16573),(50250,16152,16883),(50251,16153,16883),(50254,16156,16155),(50255,16158,16157),(49172,16161,16160),(49174,16162,16160),(49173,16162,16161),(49175,16166,18162),(49176,16167,18162),(49179,16183,16182),(49036,16265,16269),(49034,16270,16269),(49123,16287,16289),(49124,16289,21270),(50533,16440,16439),(49035,16448,16269),(50360,16459,16460),(50361,16462,16463),(50362,16465,16466),(50359,16468,16469),(50358,16471,16472),(50357,16475,16474),(50363,16477,16476),(50355,16480,16479),(50356,16482,16481),(50352,16485,16484),(50353,16486,16484),(50354,16486,16485),(50351,16488,16487),(49201,16492,21546),(49254,16504,16505),(49371,16523,21669),(49375,16525,21680),(49395,16530,21701),(49416,16532,21723),(49438,16538,21745),(49455,16540,21766),(50123,16543,22317),(50131,16547,16546),(50172,16549,22327),(50182,16551,16552),(50183,16555,22337),(50466,16577,22536),(49126,16631,16630),(48980,16646,16647),(49009,16679,15960),(49116,16683,16687),(49091,16719,16721),(49093,16729,16728),(49094,16730,16728),(49099,16734,16736),(49101,16741,16740),(49102,16742,16740),(48967,16743,16744),(48999,16752,16753),(49095,16756,16758),(49097,16765,16764),(49098,16766,16764),(50329,16768,16769),(50330,16768,16770),(50328,16769,16770),(50326,16771,16772),(50327,16771,16773),(50325,16772,16773),(48968,16784,16785),(48969,16790,16791),(48982,16809,16810),(49068,16833,16920),(48970,16892,16900),(48971,16894,16900),(48984,16902,16904),(48985,16904,16905),(48986,16906,16904),(48987,16909,16906),(48988,16910,16912),(48989,16912,16913),(48990,16914,16912),(48991,16917,16914),(49069,16920,16921),(49086,16929,16928),(49087,16940,17084),(49092,16975,16723),(49096,16979,16759),(49100,16983,16732),(49108,16997,16984),(49109,17002,17003),(49110,17006,17005),(49111,17011,17010),(49177,17035,16160),(49183,17043,17912),(49184,17043,17913),(50127,17085,17086),(49026,17101,17098),(50557,17141,17151),(50558,17142,17141),(50559,17142,17151),(50560,17143,17151),(50561,17144,17143),(50562,17144,17151),(50563,17146,17145),(50564,17147,17151),(50565,17148,17147),(50566,17148,17151),(50567,17150,17149),(50568,17152,17168),(50569,17153,17152),(50570,17153,17168),(50571,17154,17168),(50572,17155,17154),(50573,17155,17168),(50574,17156,17168),(50575,17157,17156),(50576,17157,17168),(50577,17158,17168),(50578,17159,17158),(50579,17159,17168),(50580,17160,17168),(50581,17161,17160),(50582,17161,17168),(50583,17163,17162),(50584,17164,17168),(50585,17165,17164),(50586,17165,17168),(50587,17166,17168),(50588,17167,17166),(50589,17167,17168),(50590,17169,17168),(50591,17170,17168),(50592,17170,17169),(50593,17171,17168),(50594,17172,17168),(50595,17172,17171),(49103,17192,17191),(49104,17194,17195),(49105,17199,17198),(50602,17223,17227),(50603,17226,17227),(49152,17244,17243),(49153,17246,17240),(49154,17249,17247),(49156,17251,17247),(49155,17251,17249),(49160,17268,17267),(49161,17270,17269),(49162,17271,17273),(49190,17283,17287),(49185,17285,17287),(49186,17286,17285),(49187,17286,17287),(49188,17291,18170),(49189,17292,18170),(49192,17306,17305),(49196,17311,17918),(49197,17311,17919),(49238,17322,14339),(49451,17333,17332),(48964,17355,17354),(48965,17358,17357),(49114,17391,17396),(49115,17395,17396),(48951,17412,17411),(48952,17414,17413),(48953,17416,17415),(48961,17429,17428),(48962,17431,17430),(48963,17433,17432),(48972,17459,17458),(48973,17463,17458),(48974,17471,17480),(48975,17476,17481),(48976,17478,17480),(48977,17479,17481),(48978,17483,17482),(48979,17486,17485),(49051,17503,17505),(49052,17512,17511),(49053,17513,17505),(49059,17519,17518),(49067,17540,17541),(49106,17546,17545),(49107,17547,17548),(49112,17550,17549),(49113,17551,17552),(49213,17554,15717),(49214,17555,15717),(49215,17555,17554),(49216,17556,15717),(49217,17557,15717),(49218,17557,17556),(49222,17559,17558),(49223,17561,17560),(49225,17563,17562),(49226,17565,17564),(49119,17567,17566),(50132,17576,17575),(50133,17578,17577),(50134,17628,17626),(50135,17629,17627),(50136,17632,17630),(50137,17633,17631),(50138,17635,17634),(50139,17637,17636),(50140,17686,17684),(50141,17687,17685),(50142,17690,17688),(50143,17691,17689),(50144,17693,17692),(50145,17695,17694),(50146,17730,17728),(50147,17731,17729),(50148,17734,17732),(50149,17735,17733),(50150,17737,17736),(50151,17754,17752),(50152,17755,17753),(50153,17757,17756),(50154,17819,17817),(50155,17820,17818),(50156,17823,17821),(50157,17824,17822),(50158,17826,17825),(50159,17860,17858),(50160,17861,17859),(50161,17864,17862),(50162,17865,17863),(50163,17899,17897),(50164,17900,17898),(50165,17903,17901),(50166,17904,17902),(50167,17906,17905),(50168,17908,17907),(50178,17910,17909),(49180,17911,17042),(49193,17917,17310),(50479,17946,17945),(50480,17948,17947),(48993,17962,17958),(48992,17962,17963),(49065,17973,17965),(49066,17974,17966),(49079,17978,17977),(49080,17980,17979),(49081,17984,17983),(49082,17985,17983),(49083,18000,18001),(50536,18003,15790),(50537,18004,15787),(50538,18005,15787),(50539,18005,18004),(49145,18130,18132),(49146,18130,18452),(49144,18132,18452),(49158,18142,18144),(49159,18142,18458),(49157,18144,18458),(50248,18150,18152),(50249,18150,18462),(50247,18152,18462),(49167,18155,18156),(49166,18155,18157),(49165,18157,18156),(49178,18161,18162),(49191,18169,18170),(49084,18225,18224),(49085,18237,18236),(49131,18242,16863),(49132,18243,16863),(49134,18250,16841),(49135,18251,16841),(49137,18294,16866),(49138,18295,16866),(49262,18299,18298),(49264,18300,18298),(49263,18300,18299),(49265,18303,18302),(49266,18309,18308),(49267,18311,18316),(49268,18312,18316),(49269,18313,18316),(49270,18314,18316),(49271,18315,18316),(49272,18319,18318),(49273,18321,18320),(49274,18323,18322),(49275,18326,18325),(49277,18327,18325),(49276,18327,18326),(49278,18330,18329),(49279,18336,18335),(49280,18338,18343),(49281,18339,18343),(49282,18340,18343),(49283,18341,18343),(49284,18342,18343),(49285,18346,18345),(49286,18348,18347),(49287,18350,18349),(49288,18353,18352),(49290,18354,18352),(49289,18354,18353),(49291,18357,18356),(49292,18363,18362),(49293,18365,18370),(49294,18366,18370),(49295,18367,18370),(49296,18368,18370),(49297,18369,18370),(49298,18373,18372),(49299,18375,18374),(49300,18377,18376),(49301,18380,18379),(49303,18381,18379),(49302,18381,18380),(49304,18384,18383),(49305,18390,18389),(49306,18392,18397),(49307,18393,18397),(49308,18394,18397),(49309,18395,18397),(49310,18396,18397),(49311,18400,18399),(49312,18402,18401),(49313,18404,18403),(49314,18407,18406),(49316,18408,18406),(49315,18408,18407),(49317,18411,18410),(49318,18417,18416),(49319,18419,18424),(49320,18420,18424),(49321,18421,18424),(49322,18422,18424),(49323,18423,18424),(49324,18427,18426),(49325,18429,18428),(49326,18431,18430),(49462,18434,18433),(49464,18435,18433),(49463,18435,18434),(49465,18438,18439),(49466,18439,18433),(49467,18441,18444),(49468,18442,18444),(49469,18443,18444),(49470,18446,18447),(49471,18450,18449),(49151,18455,17024),(49164,18460,17273),(50252,18463,16883),(50253,18464,16883),(49181,18465,17042),(49182,18466,17042),(49194,18469,17310),(49195,18470,17310),(50311,18495,18496),(49088,18537,18536),(49089,18539,18538),(49090,18541,18540),(50304,18596,18597),(50305,18629,18630),(50306,18662,18663),(50307,18695,18696),(50308,18728,18729),(50310,18794,18795),(50312,18831,18832),(50313,18864,18865),(50314,18897,18898),(49064,18918,18917),(50309,18947,18948),(48966,18960,18962),(48981,18965,16660),(48983,18966,16677),(49074,18987,18986),(49075,18989,18988),(49076,18993,18992),(49077,18994,18992),(49078,19009,19010),(50331,19230,19231),(50332,19233,19232),(50333,19235,19234),(50334,19236,19234),(50335,19236,19235),(50336,19238,19237),(50337,19239,19240),(50338,19242,19243),(50339,19245,19244),(50340,19247,19246),(50341,19249,19248),(50342,19251,19250),(50343,19253,19252),(50344,19255,19254),(50345,19258,19257),(50364,19263,19262),(50365,19266,19265),(50366,19268,19267),(50367,19270,19269),(50368,19272,19271),(50369,19276,19275),(50370,19278,19277),(50371,19280,19279),(50372,19282,19281),(50373,19288,19287),(50374,19293,19292),(50375,19294,19292),(50376,19294,19293),(50377,19295,19296),(50378,19297,19295),(50379,19297,19296),(50380,19299,19298),(50381,19301,19302),(50382,19303,19302),(50383,19305,19304),(50384,19307,19306),(50385,19308,19306),(50386,19308,19307),(50387,19310,19309),(50388,19314,19313),(50389,19317,19316),(50390,19319,19318),(50391,19321,19320),(50392,19323,19322),(50393,19327,19326),(50394,19329,19328),(50395,19331,19330),(50396,19333,19332),(50397,19339,19338),(50398,19344,19343),(50399,19345,19343),(50400,19345,19344),(50401,19346,19347),(50402,19348,19346),(50403,19348,19347),(50404,19350,19349),(50405,19352,19353),(50406,19354,19353),(50407,19356,19355),(50408,19358,19357),(50409,19359,19357),(50410,19359,19358),(50411,19361,19360),(50412,19365,19364),(50413,19368,19367),(50414,19370,19369),(50415,19372,19371),(50416,19374,19373),(50417,19378,19377),(50418,19380,19379),(50419,19382,19381),(50420,19384,19383),(50421,19390,19389),(50422,19395,19394),(50423,19396,19394),(50424,19396,19395),(50425,19397,19398),(50426,19399,19397),(50427,19399,19398),(50428,19401,19400),(50429,19403,19404),(50430,19405,19404),(50431,19407,19406),(50432,19409,19408),(50433,19410,19408),(50434,19410,19409),(50435,19412,19411),(50436,19416,19415),(50437,19419,19418),(50438,19421,19420),(50439,19423,19422),(50440,19425,19424),(50441,19429,19428),(50442,19431,19430),(50443,19433,19432),(50444,19435,19434),(50445,19441,19440),(50446,19446,19445),(50447,19447,19445),(50448,19447,19446),(50449,19448,19449),(50450,19450,19448),(50451,19450,19449),(50452,19452,19451),(50453,19454,19455),(50454,19456,19455),(50455,19458,19457),(50456,19460,19459),(50457,19461,19459),(50458,19461,19460),(50459,19463,19462),(50482,19467,19466),(50483,19471,19470),(50484,19473,19472),(50485,19474,19472),(50486,19474,19473),(50487,19476,19475),(50488,19478,19477),(50489,19480,19479),(50490,19482,19483),(50491,19484,19483),(50492,19486,19485),(50493,19509,19508),(50494,19513,19512),(50495,19517,19516),(50496,19519,19518),(50497,19520,19518),(50498,19520,19519),(50499,19522,19521),(50500,19524,19523),(50501,19526,19525),(50502,19528,19529),(50503,19530,19529),(50504,19532,19531),(50505,19555,19554),(50506,19559,19558),(50507,19563,19562),(50508,19565,19564),(50509,19566,19564),(50510,19566,19565),(50511,19568,19567),(50512,19570,19569),(50513,19572,19571),(50514,19574,19575),(50515,19576,19575),(50516,19578,19577),(50517,19601,19600),(50518,19605,19604),(50519,19609,19608),(50520,19611,19610),(50521,19612,19610),(50522,19612,19611),(50523,19614,19613),(50524,19616,19615),(50525,19618,19617),(50526,19620,19621),(50527,19622,19621),(50528,19624,19623),(50529,19647,19646),(49401,19666,19665),(49402,19667,19668),(49475,19681,21777),(49478,19685,19684),(49479,19688,19687),(49483,19696,19695),(49487,19709,21787),(49490,19713,19712),(49491,19716,19715),(49495,19724,19723),(49499,19737,21797),(49502,19741,19740),(49503,19744,19743),(49507,19752,19751),(49511,19765,21807),(49514,19769,19768),(49515,19772,19771),(49519,19780,19779),(49523,19793,21817),(49526,19797,19796),(49527,19800,19799),(49531,19808,19807),(49535,19821,21827),(49538,19825,19824),(49539,19828,19827),(49543,19836,19835),(49547,19849,21837),(49550,19853,19852),(49551,19856,19855),(49555,19864,19863),(49559,19877,21847),(49562,19881,19880),(49563,19884,19883),(49567,19892,19891),(49571,19905,21857),(49574,19909,19908),(49575,19912,19911),(49579,19920,19919),(49583,19933,21867),(49586,19937,19936),(49587,19940,19939),(49591,19948,19947),(49595,19961,21877),(49598,19965,19964),(49599,19968,19967),(49603,19976,19975),(49607,19989,21887),(49610,19993,19992),(49611,19996,19995),(49615,20004,20003),(49619,20017,21897),(49622,20021,20020),(49623,20024,20023),(49627,20032,20031),(49631,20045,21907),(49634,20049,20048),(49635,20052,20051),(49639,20060,20059),(49643,20073,21917),(49646,20077,20076),(49647,20080,20079),(49651,20088,20087),(49655,20101,21927),(49658,20105,20104),(49659,20108,20107),(49663,20116,20115),(49667,20129,21937),(49670,20133,20132),(49671,20136,20135),(49675,20144,20143),(49679,20157,21947),(49682,20161,20160),(49683,20164,20163),(49687,20172,20171),(49691,20185,21957),(49694,20189,20188),(49695,20192,20191),(49699,20200,20199),(49703,20213,21967),(49706,20217,20216),(49707,20220,20219),(49711,20228,20227),(49715,20241,21977),(49718,20245,20244),(49719,20248,20247),(49723,20256,20255),(49727,20269,21987),(49730,20273,20272),(49731,20276,20275),(49735,20284,20283),(49739,20297,21997),(49742,20301,20300),(49743,20304,20303),(49747,20312,20311),(49751,20325,22007),(49754,20329,20328),(49755,20332,20331),(49759,20340,20339),(49763,20353,22017),(49766,20357,20356),(49767,20360,20359),(49771,20368,20367),(49775,20381,22027),(49778,20385,20384),(49779,20388,20387),(49783,20396,20395),(49787,20409,22037),(49790,20413,20412),(49791,20416,20415),(49795,20424,20423),(49799,20437,22047),(49802,20441,20440),(49803,20444,20443),(49807,20452,20451),(49811,20465,22057),(49814,20469,20468),(49815,20472,20471),(49819,20480,20479),(49823,20493,22067),(49826,20497,20496),(49827,20500,20499),(49831,20508,20507),(49835,20521,22077),(49838,20525,20524),(49839,20528,20527),(49843,20536,20535),(49847,20549,22087),(49850,20553,20552),(49851,20556,20555),(49855,20564,20563),(49859,20577,22097),(49862,20581,20580),(49863,20584,20583),(49867,20592,20591),(49871,20605,22107),(49874,20609,20608),(49875,20612,20611),(49879,20620,20619),(49883,20633,22117),(49886,20637,20636),(49887,20640,20639),(49891,20648,20647),(49895,20661,22127),(49898,20665,20664),(49899,20668,20667),(49903,20676,20675),(49907,20689,22137),(49910,20693,20692),(49911,20696,20695),(49915,20704,20703),(49919,20717,22147),(49922,20721,20720),(49923,20724,20723),(49927,20732,20731),(49931,20745,22157),(49934,20749,20748),(49935,20752,20751),(49939,20760,20759),(49943,20773,22167),(49946,20777,20776),(49947,20780,20779),(49951,20788,20787),(49955,20801,22177),(49958,20805,20804),(49959,20808,20807),(49963,20816,20815),(49967,20829,22187),(49970,20833,20832),(49971,20836,20835),(49975,20844,20843),(49979,20857,22197),(49982,20861,20860),(49983,20864,20863),(49987,20872,20871),(49991,20885,22207),(49994,20889,20888),(49995,20892,20891),(49999,20900,20899),(50003,20913,22217),(50006,20917,20916),(50007,20920,20919),(50011,20928,20927),(50015,20941,22227),(50018,20945,20944),(50019,20948,20947),(50023,20956,20955),(50027,20969,22237),(50030,20973,20972),(50031,20976,20975),(50035,20984,20983),(50039,20997,22247),(50042,21001,21000),(50043,21004,21003),(50047,21012,21011),(50051,21025,22257),(50054,21029,21028),(50055,21032,21031),(50059,21040,21039),(50063,21053,22267),(50066,21057,21056),(50067,21060,21059),(50071,21068,21067),(50075,21081,22277),(50078,21085,21084),(50079,21088,21087),(50083,21096,21095),(50087,21109,22287),(50090,21113,21112),(50091,21116,21115),(50095,21124,21123),(50099,21137,22297),(50102,21141,21140),(50103,21144,21143),(50107,21152,21151),(50111,21165,22307),(50114,21169,21168),(50115,21172,21171),(50119,21180,21179),(48995,21208,21209),(48996,21210,21211),(48997,21212,21213),(48998,21214,21215),(49017,21255,21260),(49018,21256,21260),(49019,21257,21260),(49020,21258,21260),(49021,21259,21260),(49120,21271,21270),(49122,21272,21270),(49121,21272,21271),(49125,21535,21534),(49198,21544,21543),(49200,21545,21543),(49199,21545,21544),(49202,21547,21548),(49203,21548,21543),(49204,21549,21552),(49205,21550,21552),(49206,21551,21552),(49208,21555,21554),(49210,21556,21554),(49209,21556,21555),(49211,21559,21560),(49212,21560,21554),(49219,21561,21564),(49220,21562,21564),(49221,21563,21564),(49224,21567,21566),(49227,21570,21569),(49229,21571,21569),(49228,21571,21570),(49231,21573,21574),(49232,21574,21569),(49234,21575,21578),(49235,21576,21578),(49236,21577,21578),(49239,21580,21579),(49241,21581,21579),(49240,21581,21580),(49242,21584,21586),(49243,21586,21579),(49244,21588,21587),(49246,21589,21587),(49245,21589,21588),(49247,21592,21594),(49248,21594,21587),(49250,21595,21598),(49251,21596,21598),(49252,21597,21598),(49257,21599,21602),(49258,21600,21602),(49259,21601,21602),(49327,21604,21603),(49329,21605,21603),(49328,21605,21604),(49330,21609,21608),(49331,21610,21611),(49332,21611,21603),(49333,21613,21612),(49335,21614,21612),(49334,21614,21613),(49336,21617,21616),(49337,21618,21619),(49338,21619,21612),(49339,21621,21620),(49341,21622,21620),(49340,21622,21621),(49342,21625,21624),(49343,21626,21627),(49344,21627,21620),(49345,21630,21629),(49346,21633,21632),(49347,21635,21634),(49348,21640,21639),(49349,21642,21645),(49350,21643,21645),(49351,21644,21645),(49352,21648,21647),(49353,21650,21649),(49354,21655,21654),(49355,21657,21660),(49356,21658,21660),(49357,21659,21660),(49358,21662,21661),(49359,21664,21663),(49360,21667,21666),(49362,21668,21666),(49361,21668,21667),(49363,21670,21671),(49364,21671,21666),(49366,21672,21675),(49367,21673,21675),(49368,21674,21675),(49372,21678,21677),(49374,21679,21677),(49373,21679,21678),(49376,21681,21682),(49377,21682,21677),(49378,21683,21686),(49379,21684,21686),(49380,21685,21686),(49382,21688,21687),(49384,21689,21687),(49383,21689,21688),(49385,21691,21692),(49386,21692,21687),(49387,21693,21696),(49388,21694,21696),(49389,21695,21696),(49391,21699,21698),(49393,21700,21698),(49392,21700,21699),(49396,21702,21703),(49397,21703,21698),(49398,21704,21707),(49399,21705,21707),(49400,21706,21707),(49403,21710,21709),(49405,21711,21709),(49404,21711,21710),(49406,21713,21714),(49407,21714,21709),(49408,21715,21718),(49409,21716,21718),(49410,21717,21718),(49411,21721,21720),(49413,21722,21720),(49412,21722,21721),(49414,21724,21725),(49415,21725,21720),(49417,21726,21729),(49418,21727,21729),(49419,21728,21729),(49421,21732,21731),(49423,21733,21731),(49422,21733,21732),(49424,21735,21736),(49425,21736,21731),(49427,21737,21740),(49428,21738,21740),(49429,21739,21740),(49432,21743,21742),(49434,21744,21742),(49433,21744,21743),(49435,21746,21747),(49436,21747,21742),(49439,21748,21751),(49440,21749,21751),(49441,21750,21751),(49442,21754,21753),(49444,21755,21753),(49443,21755,21754),(49445,21757,21758),(49446,21758,21753),(49447,21759,21762),(49448,21760,21762),(49449,21761,21762),(49452,21764,21763),(49454,21765,21763),(49453,21765,21764),(49456,21767,21768),(49457,21768,21763),(49459,21769,21772),(49460,21770,21772),(49461,21771,21772),(49472,21775,21774),(49474,21776,21774),(49473,21776,21775),(49476,21778,21779),(49477,21779,21774),(49480,21780,21783),(49481,21781,21783),(49482,21782,21783),(49484,21785,21784),(49486,21786,21784),(49485,21786,21785),(49488,21788,21789),(49489,21789,21784),(49492,21790,21793),(49493,21791,21793),(49494,21792,21793),(49496,21795,21794),(49498,21796,21794),(49497,21796,21795),(49500,21798,21799),(49501,21799,21794),(49504,21800,21803),(49505,21801,21803),(49506,21802,21803),(49508,21805,21804),(49510,21806,21804),(49509,21806,21805),(49512,21808,21809),(49513,21809,21804),(49516,21810,21813),(49517,21811,21813),(49518,21812,21813),(49520,21815,21814),(49522,21816,21814),(49521,21816,21815),(49524,21818,21819),(49525,21819,21814),(49528,21820,21823),(49529,21821,21823),(49530,21822,21823),(49532,21825,21824),(49534,21826,21824),(49533,21826,21825),(49536,21828,21829),(49537,21829,21824),(49540,21830,21833),(49541,21831,21833),(49542,21832,21833),(49544,21835,21834),(49546,21836,21834),(49545,21836,21835),(49548,21838,21839),(49549,21839,21834),(49552,21840,21843),(49553,21841,21843),(49554,21842,21843),(49556,21845,21844),(49558,21846,21844),(49557,21846,21845),(49560,21848,21849),(49561,21849,21844),(49564,21850,21853),(49565,21851,21853),(49566,21852,21853),(49568,21855,21854),(49570,21856,21854),(49569,21856,21855),(49572,21858,21859),(49573,21859,21854),(49576,21860,21863),(49577,21861,21863),(49578,21862,21863),(49580,21865,21864),(49582,21866,21864),(49581,21866,21865),(49584,21868,21869),(49585,21869,21864),(49588,21870,21873),(49589,21871,21873),(49590,21872,21873),(49592,21875,21874),(49594,21876,21874),(49593,21876,21875),(49596,21878,21879),(49597,21879,21874),(49600,21880,21883),(49601,21881,21883),(49602,21882,21883),(49604,21885,21884),(49606,21886,21884),(49605,21886,21885),(49608,21888,21889),(49609,21889,21884),(49612,21890,21893),(49613,21891,21893),(49614,21892,21893),(49616,21895,21894),(49618,21896,21894),(49617,21896,21895),(49620,21898,21899),(49621,21899,21894),(49624,21900,21903),(49625,21901,21903),(49626,21902,21903),(49628,21905,21904),(49630,21906,21904),(49629,21906,21905),(49632,21908,21909),(49633,21909,21904),(49636,21910,21913),(49637,21911,21913),(49638,21912,21913),(49640,21915,21914),(49642,21916,21914),(49641,21916,21915),(49644,21918,21919),(49645,21919,21914),(49648,21920,21923),(49649,21921,21923),(49650,21922,21923),(49652,21925,21924),(49654,21926,21924),(49653,21926,21925),(49656,21928,21929),(49657,21929,21924),(49660,21930,21933),(49661,21931,21933),(49662,21932,21933),(49664,21935,21934),(49666,21936,21934),(49665,21936,21935),(49668,21938,21939),(49669,21939,21934),(49672,21940,21943),(49673,21941,21943),(49674,21942,21943),(49676,21945,21944),(49678,21946,21944),(49677,21946,21945),(49680,21948,21949),(49681,21949,21944),(49684,21950,21953),(49685,21951,21953),(49686,21952,21953),(49688,21955,21954),(49690,21956,21954),(49689,21956,21955),(49692,21958,21959),(49693,21959,21954),(49696,21960,21963),(49697,21961,21963),(49698,21962,21963),(49700,21965,21964),(49702,21966,21964),(49701,21966,21965),(49704,21968,21969),(49705,21969,21964),(49708,21970,21973),(49709,21971,21973),(49710,21972,21973),(49712,21975,21974),(49714,21976,21974),(49713,21976,21975),(49716,21978,21979),(49717,21979,21974),(49720,21980,21983),(49721,21981,21983),(49722,21982,21983),(49724,21985,21984),(49726,21986,21984),(49725,21986,21985),(49728,21988,21989),(49729,21989,21984),(49732,21990,21993),(49733,21991,21993),(49734,21992,21993),(49736,21995,21994),(49738,21996,21994),(49737,21996,21995),(49740,21998,21999),(49741,21999,21994),(49744,22000,22003),(49745,22001,22003),(49746,22002,22003),(49748,22005,22004),(49750,22006,22004),(49749,22006,22005),(49752,22008,22009),(49753,22009,22004),(49756,22010,22013),(49757,22011,22013),(49758,22012,22013),(49760,22015,22014),(49762,22016,22014),(49761,22016,22015),(49764,22018,22019),(49765,22019,22014),(49768,22020,22023),(49769,22021,22023),(49770,22022,22023),(49772,22025,22024),(49774,22026,22024),(49773,22026,22025),(49776,22028,22029),(49777,22029,22024),(49780,22030,22033),(49781,22031,22033),(49782,22032,22033),(49784,22035,22034),(49786,22036,22034),(49785,22036,22035),(49788,22038,22039),(49789,22039,22034),(49792,22040,22043),(49793,22041,22043),(49794,22042,22043),(49796,22045,22044),(49798,22046,22044),(49797,22046,22045),(49800,22048,22049),(49801,22049,22044),(49804,22050,22053),(49805,22051,22053),(49806,22052,22053),(49808,22055,22054),(49810,22056,22054),(49809,22056,22055),(49812,22058,22059),(49813,22059,22054),(49816,22060,22063),(49817,22061,22063),(49818,22062,22063),(49820,22065,22064),(49822,22066,22064),(49821,22066,22065),(49824,22068,22069),(49825,22069,22064),(49828,22070,22073),(49829,22071,22073),(49830,22072,22073),(49832,22075,22074),(49834,22076,22074),(49833,22076,22075),(49836,22078,22079),(49837,22079,22074),(49840,22080,22083),(49841,22081,22083),(49842,22082,22083),(49844,22085,22084),(49846,22086,22084),(49845,22086,22085),(49848,22088,22089),(49849,22089,22084),(49852,22090,22093),(49853,22091,22093),(49854,22092,22093),(49856,22095,22094),(49858,22096,22094),(49857,22096,22095),(49860,22098,22099),(49861,22099,22094),(49864,22100,22103),(49865,22101,22103),(49866,22102,22103),(49868,22105,22104),(49870,22106,22104),(49869,22106,22105),(49872,22108,22109),(49873,22109,22104),(49876,22110,22113),(49877,22111,22113),(49878,22112,22113),(49880,22115,22114),(49882,22116,22114),(49881,22116,22115),(49884,22118,22119),(49885,22119,22114),(49888,22120,22123),(49889,22121,22123),(49890,22122,22123),(49892,22125,22124),(49894,22126,22124),(49893,22126,22125),(49896,22128,22129),(49897,22129,22124),(49900,22130,22133),(49901,22131,22133),(49902,22132,22133),(49904,22135,22134),(49906,22136,22134),(49905,22136,22135),(49908,22138,22139),(49909,22139,22134),(49912,22140,22143),(49913,22141,22143),(49914,22142,22143),(49916,22145,22144),(49918,22146,22144),(49917,22146,22145),(49920,22148,22149),(49921,22149,22144),(49924,22150,22153),(49925,22151,22153),(49926,22152,22153),(49928,22155,22154),(49930,22156,22154),(49929,22156,22155),(49932,22158,22159),(49933,22159,22154),(49936,22160,22163),(49937,22161,22163),(49938,22162,22163),(49940,22165,22164),(49942,22166,22164),(49941,22166,22165),(49944,22168,22169),(49945,22169,22164),(49948,22170,22173),(49949,22171,22173),(49950,22172,22173),(49952,22175,22174),(49954,22176,22174),(49953,22176,22175),(49956,22178,22179),(49957,22179,22174),(49960,22180,22183),(49961,22181,22183),(49962,22182,22183),(49964,22185,22184),(49966,22186,22184),(49965,22186,22185),(49968,22188,22189),(49969,22189,22184),(49972,22190,22193),(49973,22191,22193),(49974,22192,22193),(49976,22195,22194),(49978,22196,22194),(49977,22196,22195),(49980,22198,22199),(49981,22199,22194),(49984,22200,22203),(49985,22201,22203),(49986,22202,22203),(49988,22205,22204),(49990,22206,22204),(49989,22206,22205),(49992,22208,22209),(49993,22209,22204),(49996,22210,22213),(49997,22211,22213),(49998,22212,22213),(50000,22215,22214),(50002,22216,22214),(50001,22216,22215),(50004,22218,22219),(50005,22219,22214),(50008,22220,22223),(50009,22221,22223),(50010,22222,22223),(50012,22225,22224),(50014,22226,22224),(50013,22226,22225),(50016,22228,22229),(50017,22229,22224),(50020,22230,22233),(50021,22231,22233),(50022,22232,22233),(50024,22235,22234),(50026,22236,22234),(50025,22236,22235),(50028,22238,22239),(50029,22239,22234),(50032,22240,22243),(50033,22241,22243),(50034,22242,22243),(50036,22245,22244),(50038,22246,22244),(50037,22246,22245),(50040,22248,22249),(50041,22249,22244),(50044,22250,22253),(50045,22251,22253),(50046,22252,22253),(50048,22255,22254),(50050,22256,22254),(50049,22256,22255),(50052,22258,22259),(50053,22259,22254),(50056,22260,22263),(50057,22261,22263),(50058,22262,22263),(50060,22265,22264),(50062,22266,22264),(50061,22266,22265),(50064,22268,22269),(50065,22269,22264),(50068,22270,22273),(50069,22271,22273),(50070,22272,22273),(50072,22275,22274),(50074,22276,22274),(50073,22276,22275),(50076,22278,22279),(50077,22279,22274),(50080,22280,22283),(50081,22281,22283),(50082,22282,22283),(50084,22285,22284),(50086,22286,22284),(50085,22286,22285),(50088,22288,22289),(50089,22289,22284),(50092,22290,22293),(50093,22291,22293),(50094,22292,22293),(50096,22295,22294),(50098,22296,22294),(50097,22296,22295),(50100,22298,22299),(50101,22299,22294),(50104,22300,22303),(50105,22301,22303),(50106,22302,22303),(50108,22305,22304),(50110,22306,22304),(50109,22306,22305),(50112,22308,22309),(50113,22309,22304),(50116,22310,22313),(50117,22311,22313),(50118,22312,22313),(50120,22315,22314),(50122,22316,22314),(50121,22316,22315),(50124,22318,22319),(50125,22319,22314),(50128,22320,22323),(50129,22321,22323),(50130,22322,22323),(50169,22325,22324),(50171,22326,22324),(50170,22326,22325),(50173,22328,22329),(50174,22329,22324),(50175,22330,22333),(50176,22331,22333),(50177,22332,22333),(50179,22335,22334),(50181,22336,22334),(50180,22336,22335),(50184,22338,22339),(50185,22339,22334),(50186,22340,22343),(50187,22341,22343),(50188,22342,22343),(50189,22346,22345),(50191,22347,22345),(50190,22347,22346),(50192,22349,22350),(50193,22350,22345),(50194,22351,22354),(50195,22352,22354),(50196,22353,22354),(50197,22356,22355),(50199,22357,22355),(50198,22357,22356),(50200,22359,22360),(50201,22360,22355),(50202,22361,22364),(50203,22362,22364),(50204,22363,22364),(50205,22369,22378),(50207,22370,22381),(50209,22373,22371),(50213,22375,22371),(50211,22375,22373),(50215,22376,22380),(50217,22379,22376),(50219,22379,22380),(50221,22396,22398),(50223,22397,22398),(50224,22401,22400),(50225,22403,22402),(50231,22414,22422),(50232,22415,22425),(50233,22418,22416),(50235,22420,22416),(50234,22420,22418),(50236,22421,22424),(50237,22423,22421),(50238,22423,22424),(50239,22426,22428),(50241,22427,22428),(50242,22431,22430),(50243,22433,22432),(50256,22435,22434),(50258,22436,22434),(50257,22436,22435),(50259,22438,22440),(50260,22439,22442),(50261,22440,22434),(50262,22441,22439),(50263,22441,22442),(50264,22445,22448),(50265,22446,22448),(50266,22447,22448),(50267,22451,22450),(50268,22453,22452),(50269,22457,22465),(50270,22458,22465),(50271,22459,22461),(50272,22460,22459),(50273,22460,22461),(50274,22467,22461),(50275,22468,22465),(50276,22469,22472),(50277,22470,22472),(50278,22471,22472),(50279,22473,22474),(50280,22473,22475),(50281,22478,22477),(50282,22480,22488),(50283,22481,22488),(50284,22482,22484),(50285,22483,22482),(50286,22483,22484),(50287,22489,22484),(50288,22490,22488),(50289,22491,22494),(50290,22492,22494),(50291,22493,22494),(50292,22495,22496),(50293,22495,22497),(50294,22500,22499),(50295,22502,22501),(50297,22503,22501),(50296,22503,22502),(50298,22506,22507),(50299,22507,22501),(50300,22508,22511),(50301,22509,22511),(50302,22510,22511),(50303,22513,22512),(50315,22516,22515),(50317,22517,22515),(50316,22517,22516),(50318,22519,22520),(50319,22520,22515),(50320,22522,22521),(50322,22523,22521),(50321,22523,22522),(50323,22525,22526),(50324,22526,22521),(50346,22528,22527),(50348,22529,22527),(50347,22529,22528),(50349,22531,22532),(50350,22532,22527),(50460,22534,22533),(50462,22535,22533),(50461,22535,22534),(50467,22537,22538),(50468,22538,22533),(50530,22540,22539),(50532,22541,22539),(50531,22541,22540),(50534,22543,22544),(50535,22544,22539),(50546,22546,22545),(50548,22547,22545),(50547,22547,22546),(50552,22549,22550),(50553,22550,22545),(50596,22552,22551),(50598,22553,22551),(50597,22553,22552),(50599,22555,22556),(50600,22556,22551),(50222,22558,22398),(49150,22559,17024),(50240,22561,22428),(49163,22562,17273),(48994,22565,22564),(50623,22573,22574),(50624,22582,22580),(50625,22585,22586),(49037,22589,22588),(49038,22590,22588),(49039,22593,22596),(49040,22594,22588),(49041,22595,22593),(49042,22595,22596),(49043,22598,22597),(49044,22599,22604),(49045,22600,22604),(49046,22601,22604),(49047,22602,22604),(49048,22603,22604),(49049,22607,22608),(49050,22609,22610),(49060,22612,17518),(49062,22613,17518),(49063,22613,17519),(49061,22613,22612),(49170,22626,22625),(49171,22639,22638),(49070,22644,22649),(49071,22646,22649),(49072,22652,22649),(49073,22654,22653),(50604,22666,22665),(50605,22677,22681),(50606,22683,22686),(50607,22684,22686),(50608,22685,22686),(50609,22695,22694),(50610,22726,22725),(50611,22742,22746),(50612,22748,22751),(50613,22749,22751),(50614,22750,22751),(50615,22760,22759),(50616,22791,22790),(50617,22807,22808),(50618,22846,22851),(50619,22847,22851),(50620,22848,22851),(50621,22849,22851),(50622,22850,22851),(50626,22876,22877),(50627,22985,22987),(50628,22986,22987),(50631,22991,22993),(50632,22992,22993),(50633,23039,23040),(50634,23041,23040),(50635,23043,23045),(50636,23044,23045),(50637,23046,23045),(50638,23051,23055),(50639,23052,23053),(50640,23054,23053),(50641,23059,23058),(50643,23060,23058),(50642,23060,23059),(50644,23063,23062),(50645,23069,23068),(50646,23070,23068),(50647,23072,23077),(50648,23073,23077),(50649,23074,23077),(50650,23075,23077),(50651,23076,23077),(50652,23080,23079),(50653,23081,23079),(50654,23085,23084); /*!40000 ALTER TABLE `trigger_depends` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trigger_discovery` -- DROP TABLE IF EXISTS `trigger_discovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `trigger_discovery` ( `triggerid` bigint unsigned NOT NULL, `parent_triggerid` bigint unsigned NOT NULL, `lastcheck` int NOT NULL DEFAULT '0', `ts_delete` int NOT NULL DEFAULT '0', PRIMARY KEY (`triggerid`), KEY `trigger_discovery_1` (`parent_triggerid`), CONSTRAINT `c_trigger_discovery_1` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ON DELETE CASCADE, CONSTRAINT `c_trigger_discovery_2` FOREIGN KEY (`parent_triggerid`) REFERENCES `triggers` (`triggerid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trigger_discovery` -- LOCK TABLES `trigger_discovery` WRITE; /*!40000 ALTER TABLE `trigger_discovery` DISABLE KEYS */; /*!40000 ALTER TABLE `trigger_discovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trigger_queue` -- DROP TABLE IF EXISTS `trigger_queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `trigger_queue` ( `trigger_queueid` bigint unsigned NOT NULL, `objectid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `clock` int NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`trigger_queueid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trigger_queue` -- LOCK TABLES `trigger_queue` WRITE; /*!40000 ALTER TABLE `trigger_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `trigger_queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trigger_tag` -- DROP TABLE IF EXISTS `trigger_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `trigger_tag` ( `triggertagid` bigint unsigned NOT NULL, `triggerid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`triggertagid`), KEY `trigger_tag_1` (`triggerid`), CONSTRAINT `c_trigger_tag_1` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `trigger_tag` -- LOCK TABLES `trigger_tag` WRITE; /*!40000 ALTER TABLE `trigger_tag` DISABLE KEYS */; INSERT INTO `trigger_tag` VALUES (1,21202,'scope','availability'),(4,21205,'scope','availability'),(5,21206,'scope','availability'),(6,21207,'scope','availability'),(7,21208,'scope','performance'),(8,21210,'scope','performance'),(9,21212,'scope','performance'),(10,21214,'scope','performance'),(11,21216,'scope','performance'),(12,21217,'scope','performance'),(13,21218,'scope','performance'),(14,21219,'scope','availability'),(15,21220,'scope','performance'),(16,21221,'scope','availability'),(17,21222,'scope','notice'),(18,21223,'scope','availability'),(19,21224,'scope','availability'),(20,21225,'scope','availability'),(21,21226,'scope','performance'),(22,21227,'scope','performance'),(23,21228,'scope','availability'),(24,21229,'scope','availability'),(25,21230,'scope','availability'),(26,21231,'scope','availability'),(27,21232,'scope','availability'),(28,21233,'scope','availability'),(29,21234,'scope','availability'),(30,21235,'scope','availability'),(31,21236,'scope','availability'),(32,21237,'scope','availability'),(33,17410,'scope','notice'),(34,17411,'scope','performance'),(35,17412,'scope','performance'),(36,17413,'scope','capacity'),(37,17414,'scope','capacity'),(38,17415,'scope','capacity'),(39,17416,'scope','capacity'),(40,17417,'scope','notice'),(41,18522,'scope','performance'),(42,17419,'scope','notice'),(43,17420,'scope','notice'),(44,17421,'scope','notice'),(45,18523,'scope','notice'),(46,17423,'scope','notice'),(47,18524,'scope','performance'),(48,17425,'scope','performance'),(49,17426,'scope','performance'),(50,18525,'scope','performance'),(51,16886,'scope','notice'),(52,16887,'scope','notice'),(57,15948,'scope','availability'),(58,15951,'scope','notice'),(59,15952,'scope','notice'),(60,15950,'scope','performance'),(61,15949,'scope','availability'),(62,17428,'scope','capacity'),(63,17429,'scope','capacity'),(64,17430,'scope','notice'),(65,17431,'scope','notice'),(66,17432,'scope','notice'),(67,17433,'scope','notice'),(68,17434,'scope','availability'),(69,17353,'scope','notice'),(70,17354,'scope','availability'),(71,17355,'scope','availability'),(72,17356,'scope','availability'),(73,17358,'scope','capacity'),(74,17357,'scope','capacity'),(75,17359,'scope','availability'),(76,18960,'scope','notice'),(77,18961,'scope','notice'),(78,18962,'scope','security'),(79,18963,'scope','performance'),(80,18964,'scope','performance'),(81,16743,'scope','availability'),(82,16744,'scope','availability'),(83,16745,'scope','notice'),(84,16746,'scope','availability'),(85,16747,'scope','notice'),(86,16775,'scope','notice'),(87,16776,'scope','notice'),(88,16777,'scope','notice'),(89,16779,'scope','availability'),(90,16780,'scope','availability'),(91,16778,'scope','availability'),(92,16781,'scope','notice'),(93,16782,'scope','notice'),(94,16783,'scope','notice'),(95,16784,'scope','performance'),(96,16785,'scope','availability'),(97,16774,'scope','capacity'),(98,16786,'scope','notice'),(99,16787,'scope','notice'),(100,16788,'scope','notice'),(101,16789,'scope','notice'),(102,16791,'scope','performance'),(103,16790,'scope','performance'),(104,16792,'scope','notice'),(105,16793,'scope','notice'),(106,16794,'scope','notice'),(107,16795,'scope','notice'),(108,16890,'scope','notice'),(109,16891,'scope','availability'),(110,16892,'scope','availability'),(111,16893,'scope','availability'),(112,16894,'scope','notice'),(113,16895,'scope','availability'),(114,16896,'scope','performance'),(115,16897,'scope','performance'),(116,16898,'scope','notice'),(117,16899,'scope','notice'),(118,16900,'scope','availability'),(119,16889,'scope','capacity'),(120,16901,'scope','availability'),(121,17435,'scope','performance'),(122,17436,'scope','notice'),(123,17437,'scope','notice'),(124,17438,'scope','performance'),(125,17439,'scope','performance'),(126,17440,'scope','performance'),(127,17441,'scope','performance'),(128,17442,'scope','performance'),(129,17443,'scope','performance'),(130,17444,'scope','performance'),(131,17445,'scope','performance'),(132,17446,'scope','notice'),(133,17447,'scope','notice'),(134,17448,'scope','performance'),(135,17449,'scope','performance'),(136,17450,'scope','performance'),(137,17451,'scope','performance'),(138,17452,'scope','performance'),(139,17453,'scope','performance'),(140,17454,'scope','performance'),(141,13544,'scope','availability'),(142,17076,'scope','notice'),(143,17077,'scope','capacity'),(144,17078,'scope','availability'),(145,17079,'scope','notice'),(149,17066,'scope','capacity'),(150,17067,'scope','capacity'),(158,17075,'scope','capacity'),(159,17456,'scope','notice'),(160,17457,'scope','availability'),(161,17458,'scope','availability'),(162,17459,'scope','availability'),(163,17460,'scope','availability'),(164,17461,'scope','availability'),(165,17462,'scope','availability'),(166,17463,'scope','availability'),(167,17455,'scope','capacity'),(168,18526,'scope','capacity'),(170,17466,'scope','capacity'),(172,17468,'scope','notice'),(173,17469,'scope','notice'),(174,17470,'scope','capacity'),(175,17471,'scope','availability'),(176,17472,'scope','notice'),(177,17473,'scope','notice'),(178,17474,'scope','notice'),(179,17475,'scope','notice'),(180,17476,'scope','availability'),(181,17477,'scope','notice'),(182,17478,'scope','performance'),(183,17479,'scope','performance'),(184,17480,'scope','availability'),(185,17481,'scope','availability'),(186,17482,'scope','notice'),(187,17483,'scope','availability'),(188,17484,'scope','notice'),(189,17485,'scope','notice'),(190,17486,'scope','availability'),(191,17487,'scope','notice'),(192,16644,'scope','notice'),(193,16645,'scope','notice'),(194,16646,'scope','performance'),(195,16647,'scope','availability'),(196,16648,'scope','notice'),(197,16649,'scope','notice'),(198,16650,'scope','performance'),(199,16651,'scope','performance'),(200,16652,'scope','availability'),(201,16653,'scope','notice'),(202,16654,'scope','notice'),(203,16655,'scope','performance'),(204,18965,'scope','notice'),(205,16656,'scope','notice'),(206,16657,'scope','notice'),(207,16658,'scope','performance'),(208,16659,'scope','performance'),(209,16660,'scope','avialability'),(210,16661,'scope','notice'),(211,16662,'scope','notice'),(212,16809,'scope','performance'),(213,16810,'scope','availability'),(214,16665,'scope','notice'),(215,16666,'scope','notice'),(216,16667,'scope','performance'),(217,16668,'scope','performance'),(218,16669,'scope','availability'),(219,16670,'scope','notice'),(220,16671,'scope','notice'),(221,16672,'scope','performance'),(222,18966,'scope','notice'),(223,16673,'scope','notice'),(224,16674,'scope','notice'),(225,16675,'scope','performance'),(226,16676,'scope','performance'),(227,16677,'scope','avialability'),(228,13546,'scope','availability'),(229,16902,'scope','availability'),(230,16903,'scope','notice'),(231,16904,'scope','availability'),(232,16905,'scope','availability'),(233,16906,'scope','availability'),(234,16907,'scope','notice'),(235,16908,'scope','notice'),(236,16909,'scope','performance'),(237,16910,'scope','availability'),(238,16911,'scope','notice'),(239,16912,'scope','availability'),(240,16913,'scope','availability'),(241,16914,'scope','availability'),(242,16915,'scope','notice'),(243,16916,'scope','notice'),(244,16917,'scope','performance'),(245,13547,'scope','availability'),(246,17957,'scope','capacity'),(247,17958,'scope','availability'),(248,17959,'scope','availability'),(249,17960,'scope','notice'),(250,17961,'scope','notice'),(251,17953,'scope','capacity'),(252,17954,'scope','notice'),(253,17955,'scope','capacity'),(254,17956,'scope','performance'),(255,17962,'scope','availability'),(256,17963,'scope','availability'),(257,17964,'scope','performance'),(258,17488,'scope','notice'),(259,17489,'scope','notice'),(260,17490,'scope','notice'),(261,17491,'scope','availability'),(262,17492,'scope','notice'),(263,17493,'scope','notice'),(264,17494,'scope','notice'),(265,17495,'scope','notice'),(266,17496,'scope','notice'),(267,17497,'scope','notice'),(268,17498,'scope','availability'),(269,21209,'scope','performance'),(270,21211,'scope','performance'),(271,21213,'scope','performance'),(272,21215,'scope','performance'),(273,13548,'scope','availability'),(274,16750,'scope','capacity'),(275,16751,'scope','performance'),(276,16752,'scope','notice'),(277,16753,'scope','availability'),(278,16754,'scope','notice'),(279,16755,'scope','notice'),(280,16748,'scope','capacity'),(281,16749,'scope','capacity'),(285,15958,'scope','notice'),(288,15961,'scope','performance'),(289,15960,'scope','availability'),(290,15962,'scope','performance'),(291,16679,'scope','availability'),(292,15963,'scope','notice'),(293,18967,'scope','performance'),(294,18968,'scope','availability'),(295,18969,'scope','availability'),(296,18970,'scope','notice'),(297,18971,'scope','notice'),(298,18972,'scope','performance'),(299,18973,'scope','performance'),(300,18974,'scope','availability'),(301,18975,'scope','availability'),(302,13549,'scope','availability'),(303,13550,'scope','availability'),(309,21241,'scope','availability'),(310,21242,'scope','availability'),(311,21243,'scope','availability'),(312,21244,'scope','availability'),(313,21245,'scope','capacity'),(314,21246,'scope','capacity'),(320,21250,'scope','availability'),(327,21255,'scope','capacity'),(328,21256,'scope','performance'),(329,21257,'scope','performance'),(330,21258,'scope','availability'),(331,21259,'scope','availability'),(332,21260,'scope','availability'),(339,17089,'scope','capacity'),(341,17091,'scope','notice'),(344,17094,'scope','notice'),(345,17095,'scope','notice'),(348,17098,'scope','availability'),(349,17099,'scope','notice'),(351,17101,'scope','notice'),(352,17102,'scope','notice'),(353,17103,'scope','notice'),(354,13551,'scope','availability'),(355,16442,'scope','availability'),(359,16447,'scope','performance'),(360,16446,'scope','performance'),(361,16445,'scope','notice'),(362,16250,'scope','performance'),(364,16254,'scope','notice'),(366,18207,'scope','notice'),(367,18208,'scope','availability'),(368,18209,'scope','notice'),(369,18210,'scope','notice'),(370,18211,'scope','notice'),(371,18212,'scope','notice'),(372,18213,'scope','notice'),(373,16258,'scope','performance'),(374,16259,'scope','availability'),(375,16270,'scope','performance'),(376,16269,'scope','availability'),(377,16448,'scope','availability'),(378,16452,'scope','performance'),(379,16451,'scope','performance'),(380,16450,'scope','notice'),(381,16264,'scope','performance'),(382,16265,'scope','availability'),(383,16268,'scope','notice'),(384,18214,'scope','notice'),(385,18215,'scope','availability'),(386,18216,'scope','notice'),(387,18217,'scope','notice'),(388,18218,'scope','notice'),(389,18219,'scope','notice'),(390,18220,'scope','notice'),(391,16271,'scope','performance'),(392,18027,'scope','availability'),(393,18028,'scope','performance'),(394,18029,'scope','performance'),(395,18030,'scope','notice'),(396,13552,'scope','availability'),(397,17370,'scope','availability'),(398,17371,'scope','performance'),(399,17372,'scope','notice'),(400,17373,'scope','notice'),(401,18527,'scope','performance'),(402,17368,'scope','capacity'),(403,17368,'scope','performance'),(404,17369,'scope','capacity'),(405,17369,'scope','performance'),(406,13553,'scope','availability'),(407,18976,'scope','availability'),(408,18977,'scope','notice'),(409,13285,'scope','availability'),(410,17499,'scope','notice'),(411,17500,'scope','notice'),(412,17501,'scope','notice'),(413,19651,'scope','availability'),(414,19652,'scope','availability'),(415,19653,'scope','performance'),(416,19654,'scope','performance'),(417,17503,'scope','availability'),(418,17504,'scope','availability'),(419,17505,'scope','availability'),(420,17506,'scope','notice'),(421,17507,'scope','performance'),(422,17508,'scope','performance'),(423,17509,'scope','performance'),(424,17510,'scope','notice'),(425,17502,'scope','capacity'),(426,17511,'scope','security'),(427,17512,'scope','security'),(428,17513,'scope','availability'),(429,18031,'scope','notice'),(430,17515,'scope','availability'),(435,17518,'scope','availability'),(436,17518,'scope','performance'),(437,17519,'scope','availability'),(438,17519,'scope','performance'),(439,17520,'scope','notice'),(440,18032,'scope','notice'),(441,18910,'scope','notice'),(442,18911,'scope','notice'),(443,18912,'scope','notice'),(444,18913,'scope','notice'),(445,18914,'scope','availability'),(446,18915,'scope','notice'),(447,18916,'scope','notice'),(448,18917,'scope','notice'),(449,18918,'scope','availability'),(450,18919,'scope','notice'),(451,18920,'scope','capacity'),(452,18921,'scope','capacity'),(453,18922,'scope','notice'),(454,18923,'scope','notice'),(457,18926,'scope','availability'),(458,17533,'scope','performance'),(459,13521,'scope','performance'),(460,13534,'scope','performance'),(461,13522,'scope','performance'),(463,17534,'scope','performance'),(464,13523,'scope','performance'),(465,13524,'scope','performance'),(466,13525,'scope','performance'),(467,13526,'scope','performance'),(468,13564,'scope','performance'),(469,13527,'scope','performance'),(470,13528,'scope','performance'),(471,21201,'scope','performance'),(472,13529,'scope','performance'),(473,15913,'scope','performance'),(474,15914,'scope','performance'),(475,13530,'scope','performance'),(476,13531,'scope','performance'),(477,13565,'scope','performance'),(478,13532,'scope','performance'),(479,13533,'scope','performance'),(480,15641,'scope','performance'),(481,13520,'scope','performance'),(482,13517,'scope','capacity'),(483,13517,'scope','performance'),(484,21265,'scope','notice'),(485,21266,'scope','notice'),(486,15640,'scope','capacity'),(487,15640,'scope','performance'),(488,13518,'scope','capacity'),(489,13518,'scope','performance'),(490,13519,'scope','capacity'),(491,13519,'scope','performance'),(526,13080,'scope','performance'),(527,13566,'scope','performance'),(528,16273,'scope','performance'),(529,17535,'scope','performance'),(530,13081,'scope','performance'),(531,13083,'scope','performance'),(532,13084,'scope','performance'),(533,17536,'scope','performance'),(534,13085,'scope','performance'),(535,13086,'scope','performance'),(536,13087,'scope','performance'),(537,13088,'scope','performance'),(538,13562,'scope','performance'),(539,13089,'scope','performance'),(540,13275,'scope','performance'),(541,15853,'scope','performance'),(542,15855,'scope','performance'),(543,21197,'scope','performance'),(544,13091,'scope','performance'),(545,13568,'scope','performance'),(546,13569,'scope','performance'),(547,13092,'scope','performance'),(548,18530,'scope','performance'),(549,18531,'scope','performance'),(550,13093,'scope','performance'),(551,18978,'scope','performance'),(552,13441,'scope','performance'),(553,13559,'scope','performance'),(554,13094,'scope','performance'),(555,13095,'scope','performance'),(556,18979,'scope','performance'),(557,13096,'scope','performance'),(558,13097,'scope','performance'),(559,13023,'scope','performance'),(560,13015,'scope','capacity'),(561,13015,'scope','performance'),(562,13074,'scope','capacity'),(563,13074,'scope','performance'),(564,13557,'scope','capacity'),(565,13557,'scope','performance'),(566,18980,'scope','notice'),(567,13536,'scope','capacity'),(568,13536,'scope','performance'),(569,13073,'scope','capacity'),(570,13073,'scope','performance'),(571,13017,'scope','capacity'),(572,13017,'scope','performance'),(573,13019,'scope','capacity'),(574,13019,'scope','performance'),(624,21194,'scope','availability'),(626,15864,'scope','performance'),(627,15865,'scope','performance'),(628,16272,'scope','performance'),(629,17531,'scope','performance'),(630,15866,'scope','performance'),(631,15867,'scope','performance'),(632,15868,'scope','performance'),(633,17532,'scope','performance'),(634,15869,'scope','performance'),(635,15870,'scope','performance'),(636,15871,'scope','performance'),(637,15872,'scope','performance'),(638,15873,'scope','performance'),(639,15874,'scope','performance'),(640,15875,'scope','performance'),(641,15888,'scope','performance'),(642,15889,'scope','performance'),(643,21199,'scope','performance'),(644,15876,'scope','performance'),(645,15877,'scope','performance'),(646,15878,'scope','performance'),(647,15879,'scope','performance'),(648,18528,'scope','performance'),(649,18529,'scope','performance'),(650,15880,'scope','performance'),(651,18984,'scope','performance'),(652,15881,'scope','performance'),(653,15882,'scope','performance'),(654,15883,'scope','performance'),(655,15884,'scope','performance'),(656,18985,'scope','performance'),(657,15885,'scope','performance'),(658,15887,'scope','performance'),(659,15857,'scope','capacity'),(660,15857,'scope','performance'),(661,15862,'scope','capacity'),(662,15862,'scope','performance'),(663,15886,'scope','capacity'),(664,15886,'scope','performance'),(665,16919,'scope','notice'),(666,15861,'scope','capacity'),(667,15861,'scope','performance'),(668,15858,'scope','capacity'),(669,15858,'scope','performance'),(670,15859,'scope','capacity'),(671,15859,'scope','performance'),(672,15860,'scope','capacity'),(673,15860,'scope','performance'),(674,15863,'scope','performance'),(675,21196,'scope','availability'),(676,17522,'scope','performance'),(677,17523,'scope','notice'),(678,17524,'scope','availability'),(680,17526,'scope','notice'),(681,17521,'scope','capacity'),(682,17527,'scope','availability'),(683,17528,'scope','performance'),(684,17967,'scope','performance'),(685,17968,'scope','notice'),(686,18033,'scope','performance'),(687,17970,'scope','notice'),(688,17971,'scope','notice'),(689,17965,'scope','notice'),(690,17966,'scope','notice'),(691,17972,'scope','notice'),(692,17973,'scope','notice'),(693,17974,'scope','notice'),(694,17975,'scope','notice'),(695,17976,'scope','notice'),(696,17539,'scope','notice'),(697,17540,'scope','performance'),(698,17541,'scope','performance'),(699,17542,'scope','performance'),(700,17543,'scope','availability'),(701,17544,'scope','availability'),(702,16824,'scope','capacity'),(703,16825,'scope','performance'),(704,16826,'scope','performance'),(705,16827,'scope','availability'),(706,16829,'scope','performance'),(707,16830,'scope','performance'),(708,16831,'scope','notice'),(709,16833,'scope','notice'),(710,16832,'scope','notice'),(711,16834,'scope','notice'),(712,16835,'scope','performance'),(713,16921,'scope','availability'),(714,16920,'scope','availability'),(715,16836,'scope','availability'),(716,16837,'scope','availability'),(717,16838,'scope','performance'),(718,16839,'scope','availability'),(719,16840,'scope','performance'),(720,18986,'scope','performance'),(721,18987,'scope','performance'),(722,18988,'scope','performance'),(723,18989,'scope','performance'),(724,18990,'scope','performance'),(725,18991,'scope','performance'),(726,18992,'scope','performance'),(727,18993,'scope','performance'),(728,18994,'scope','performance'),(729,18995,'scope','performance'),(730,18996,'scope','capacity'),(731,18997,'scope','capacity'),(732,18998,'scope','capacity'),(733,18999,'scope','notice'),(734,19000,'scope','availability'),(735,19001,'scope','notice'),(736,19002,'scope','notice'),(737,19003,'scope','capacity'),(738,19004,'scope','notice'),(739,19005,'scope','notice'),(740,19006,'scope','capacity'),(741,19007,'scope','performance'),(742,19008,'scope','notice'),(743,19009,'scope','performance'),(744,19010,'scope','performance'),(745,17977,'scope','capacity'),(746,17978,'scope','capacity'),(747,17979,'scope','capacity'),(748,17980,'scope','capacity'),(749,17981,'scope','capacity'),(750,17982,'scope','capacity'),(751,17982,'scope','performance'),(752,17983,'scope','performance'),(753,17984,'scope','performance'),(754,17985,'scope','performance'),(755,17986,'scope','performance'),(756,17987,'scope','availability'),(757,17987,'scope','notice'),(758,17988,'scope','availability'),(759,17988,'scope','notice'),(760,17989,'scope','availability'),(761,17989,'scope','notice'),(762,17990,'scope','notice'),(763,17991,'scope','availability'),(764,17992,'scope','notice'),(765,17993,'scope','notice'),(766,18034,'scope','availability'),(767,17995,'scope','notice'),(768,17996,'scope','notice'),(769,17997,'scope','notice'),(770,17998,'scope','performance'),(771,17999,'scope','notice'),(772,18000,'scope','notice'),(773,18001,'scope','notice'),(774,19655,'scope','availability'),(775,19656,'scope','performance'),(776,19657,'scope','notice'),(777,19658,'scope','notice'),(778,19659,'scope','performance'),(779,18222,'scope','capacity'),(780,18223,'scope','performance'),(781,18224,'scope','availability'),(782,18225,'scope','availability'),(783,18226,'scope','notice'),(784,18227,'scope','notice'),(785,18221,'scope','capacity'),(786,18228,'scope','availability'),(787,18229,'scope','performance'),(788,19011,'scope','notice'),(789,18231,'scope','capacity'),(790,18232,'scope','capacity'),(791,18233,'scope','capacity'),(792,18234,'scope','capacity'),(794,18236,'scope','availability'),(795,18237,'scope','notice'),(796,18238,'scope','notice'),(797,18239,'scope','notice'),(798,16927,'scope','performance'),(799,16928,'scope','performance'),(800,16929,'scope','performance'),(801,16930,'scope','performance'),(802,16931,'scope','performance'),(803,16932,'scope','performance'),(804,16933,'scope','performance'),(805,16934,'scope','performance'),(806,16935,'scope','performance'),(807,16936,'scope','performance'),(808,16937,'scope','performance'),(809,16938,'scope','performance'),(810,17081,'scope','performance'),(811,17082,'scope','performance'),(812,17083,'scope','performance'),(813,16940,'scope','availability'),(814,16939,'scope','notice'),(815,16941,'scope','notice'),(816,18534,'scope','performance'),(817,18535,'scope','performance'),(818,16944,'scope','performance'),(819,17084,'scope','availability'),(820,16925,'scope','performance'),(821,17080,'scope','performance'),(822,16946,'availability-group','{#GROUP_NAME}'),(823,16946,'scope','notice'),(824,16947,'availability-group','{#GROUP_NAME}'),(825,16947,'scope','notice'),(826,16948,'availability-group','{#GROUP_NAME}'),(827,16948,'scope','availability'),(828,16949,'availability-group','{#GROUP_NAME}'),(829,16949,'scope','availability'),(830,18536,'database','{#DBNAME}'),(831,18536,'scope','availability'),(832,18537,'database','{#DBNAME}'),(833,18537,'scope','availability'),(834,18538,'database','{#DBNAME}'),(835,18538,'scope','availability'),(836,18539,'scope','availability'),(837,18540,'database','{#DBNAME}'),(838,18540,'scope','availability'),(839,18541,'database','{#DBNAME}'),(840,18541,'scope','availability'),(841,16951,'database','{#DBNAME}'),(842,16951,'scope','performance'),(843,16950,'database','{#DBNAME}'),(844,16950,'scope','performance'),(845,16954,'database','{#DBNAME}'),(846,16954,'scope','performance'),(847,16955,'database','{#DBNAME}'),(848,16955,'scope','availability'),(849,18542,'mssql-job','{#JOBNAME}'),(850,18542,'scope','performance'),(851,18543,'mssql-job','{#JOBNAME}'),(852,18543,'scope','performance'),(853,16956,'availability-group','{#GROUP_NAME}'),(854,16956,'local-db','{#DBNAME}'),(855,16956,'scope','availability'),(856,16957,'availability-group','{#GROUP_NAME}'),(857,16957,'local-db','{#DBNAME}'),(858,16957,'scope','availability'),(859,16958,'availability-group','{#GROUP_NAME}'),(860,16958,'local-db','{#DBNAME}'),(861,16958,'scope','availability'),(862,16960,'mssql-mirroring','{#DBNAME}'),(863,16960,'scope','availability'),(864,16961,'mssql-mirroring','{#DBNAME}'),(865,16961,'scope','availability'),(866,16959,'mssql-mirroring','{#DBNAME}'),(867,16959,'scope','availability'),(868,16962,'mssql-mirroring','{#DBNAME}'),(869,16962,'scope','availability'),(870,18240,'availability-group','{#GROUP_NAME}'),(871,18240,'non-local-db','{#DBNAME}'),(872,18240,'scope','capacity'),(873,18241,'availability-group','{#GROUP_NAME}'),(874,18241,'non-local-db','{#DBNAME}'),(875,18241,'scope','capacity'),(876,16965,'availability-group','{#GROUP_NAME}'),(877,16965,'replica','{#REPLICA_NAME}'),(878,16965,'scope','availability'),(879,16966,'availability-group','{#GROUP_NAME}'),(880,16966,'replica','{#REPLICA_NAME}'),(881,16966,'scope','availability'),(882,16967,'availability-group','{#GROUP_NAME}'),(883,16967,'replica','{#REPLICA_NAME}'),(884,16967,'scope','availability'),(885,16968,'availability-group','{#GROUP_NAME}'),(886,16968,'replica','{#REPLICA_NAME}'),(887,16968,'scope','availability'),(888,16969,'availability-group','{#GROUP_NAME}'),(889,16969,'replica','{#REPLICA_NAME}'),(890,16969,'scope','notice'),(891,16970,'availability-group','{#GROUP_NAME}'),(892,16970,'replica','{#REPLICA_NAME}'),(893,16970,'scope','availability'),(894,16971,'availability-group','{#GROUP_NAME}'),(895,16971,'replica','{#REPLICA_NAME}'),(896,16971,'scope','availability'),(897,16719,'scope','availability'),(898,18544,'scope','notice'),(899,16721,'scope','availability'),(900,16972,'scope','performance'),(901,16973,'scope','performance'),(902,16974,'scope','performance'),(903,16723,'scope','availability'),(904,16724,'scope','performance'),(905,16975,'scope','availability'),(906,16725,'scope','notice'),(907,16726,'scope','notice'),(908,16727,'scope','notice'),(909,16729,'scope','availability'),(910,16728,'scope','notice'),(911,16730,'scope','notice'),(912,16756,'scope','availability'),(913,18545,'scope','notice'),(914,16758,'scope','availability'),(915,16976,'scope','performance'),(916,16977,'scope','performance'),(917,16978,'scope','performance'),(918,16759,'scope','availability'),(919,16760,'scope','performance'),(920,16979,'scope','availability'),(921,16761,'scope','notice'),(922,16762,'scope','notice'),(923,16763,'scope','notice'),(924,16765,'scope','availability'),(925,16764,'scope','notice'),(926,16766,'scope','notice'),(927,16732,'scope','availability'),(928,16733,'scope','notice'),(929,16734,'scope','availability'),(930,18546,'scope','notice'),(931,16736,'scope','availability'),(932,16980,'scope','performance'),(933,16981,'scope','performance'),(934,16982,'scope','performance'),(935,16737,'scope','performance'),(936,16983,'scope','availability'),(937,16738,'scope','notice'),(938,16739,'scope','notice'),(939,16741,'scope','availability'),(940,16740,'scope','notice'),(941,16742,'scope','notice'),(942,17177,'scope','notice'),(943,17178,'scope','notice'),(944,17179,'scope','availability'),(945,17180,'scope','capacity'),(946,18547,'scope','performance'),(947,17182,'scope','performance'),(948,17183,'scope','performance'),(949,17184,'scope','capacity'),(950,17185,'scope','availability'),(951,17186,'scope','notice'),(952,17187,'scope','notice'),(953,17188,'scope','notice'),(954,17173,'scope','capacity'),(955,17174,'scope','capacity'),(956,17175,'scope','capacity'),(957,17176,'scope','capacity'),(958,17189,'scope','availability'),(959,17190,'scope','performance'),(960,17192,'scope','notice'),(961,17191,'scope','notice'),(962,17193,'scope','notice'),(963,17195,'scope','capacity'),(964,17194,'scope','capacity'),(965,17197,'scope','notice'),(966,17196,'scope','notice'),(967,17198,'scope','availability'),(968,17199,'scope','notice'),(969,17545,'scope','capacity'),(970,17546,'scope','capacity'),(971,17547,'scope','capacity'),(972,17548,'scope','capacity'),(973,16989,'scope','notice'),(974,16990,'scope','notice'),(975,16991,'scope','capacity'),(976,18548,'scope','performance'),(977,16993,'scope','performance'),(978,16994,'scope','performance'),(979,16995,'scope','capacity'),(980,16997,'scope','availability'),(981,16996,'scope','notice'),(982,16998,'scope','notice'),(983,16999,'scope','notice'),(984,17000,'scope','availability'),(985,16984,'scope','availability'),(986,16985,'scope','capacity'),(987,16986,'scope','capacity'),(988,16987,'scope','capacity'),(989,16988,'scope','capacity'),(990,17001,'scope','availability'),(991,17003,'scope','capacity'),(992,17002,'scope','capacity'),(993,17004,'scope','performance'),(994,17006,'scope','notice'),(995,17005,'scope','notice'),(996,17007,'scope','notice'),(997,17009,'scope','notice'),(998,17008,'scope','notice'),(999,17010,'scope','availability'),(1000,17011,'scope','capacity'),(1001,17549,'scope','capacity'),(1002,17550,'scope','capacity'),(1003,17551,'scope','capacity'),(1004,17552,'scope','capacity'),(1005,17390,'scope','performance'),(1006,17391,'scope','availability'),(1007,17392,'scope','performance'),(1008,17393,'scope','notice'),(1009,17394,'scope','performance'),(1010,17395,'scope','availability'),(1011,17395,'scope','performance'),(1012,17396,'scope','availability'),(1013,17397,'scope','availability'),(1014,17397,'scope','performance'),(1015,17398,'scope','availability'),(1016,17399,'scope','notice'),(1017,17400,'scope','notice'),(1018,17401,'scope','performance'),(1019,17402,'scope','availability'),(1020,17403,'scope','availability'),(1021,17404,'scope','availability'),(1022,17405,'scope','performance'),(1023,17014,'scope','performance'),(1024,17553,'scope','availability'),(1025,17016,'scope','availability'),(1026,17017,'scope','notice'),(1027,17018,'scope','performance'),(1028,17019,'scope','availability'),(1029,16682,'scope','notice'),(1030,16683,'scope','availability'),(1031,16684,'scope','performance'),(1032,16685,'scope','notice'),(1033,16686,'scope','notice'),(1034,16687,'scope','availability'),(1035,16688,'scope','notice'),(1036,16689,'scope','notice'),(1037,16690,'scope','notice'),(1038,16691,'scope','notice'),(1039,16692,'scope','performance'),(1040,16693,'scope','availability'),(1041,16681,'scope','performance'),(1042,16694,'scope','availability'),(1043,18002,'scope','capacity'),(1044,18002,'scope','performance'),(1045,16696,'scope','availability'),(1046,18549,'scope','availability'),(1047,18550,'scope','notice'),(1048,18551,'scope','notice'),(1049,18552,'scope','capacity'),(1050,18553,'scope','availability'),(1051,18554,'scope','availability'),(1052,18555,'scope','capacity'),(1053,18556,'scope','availability'),(1054,18557,'scope','availability'),(1055,18559,'scope','performance'),(1056,18560,'scope','availability'),(1057,18561,'scope','capacity'),(1058,18562,'scope','availability'),(1059,18563,'scope','performance'),(1060,18564,'scope','availability'),(1061,18565,'scope','availability'),(1062,18566,'scope','availability'),(1063,18567,'scope','performance'),(1064,18568,'scope','notice'),(1065,18569,'scope','notice'),(1066,18558,'scope','capacity'),(1067,18570,'scope','performance'),(1068,18571,'scope','performance'),(1069,18574,'scope','notice'),(1070,18573,'scope','performance'),(1071,22557,'scope','performance'),(1072,18575,'scope','availability'),(1073,14941,'scope','performance'),(1074,21270,'scope','availability'),(1075,21271,'scope','availability'),(1076,21271,'scope','performance'),(1077,21272,'scope','availability'),(1078,21272,'scope','performance'),(1079,16593,'scope','notice'),(1080,16593,'scope','security'),(1081,16287,'scope','notice'),(1082,16289,'scope','availability'),(1083,16624,'scope','performance'),(1084,21531,'scope','performance'),(1085,18035,'scope','capacity'),(1086,18035,'scope','performance'),(1087,21534,'scope','availability'),(1088,21534,'scope','capacity'),(1089,21535,'scope','availability'),(1090,21535,'scope','capacity'),(1091,21536,'scope','capacity'),(1092,21536,'scope','performance'),(1093,16630,'scope','availability'),(1094,16630,'scope','capacity'),(1095,16631,'scope','availability'),(1096,16631,'scope','capacity'),(1097,14251,'scope','availability'),(1098,14252,'scope','availability'),(1099,14252,'scope','performance'),(1100,14253,'scope','availability'),(1101,14253,'scope','performance'),(1102,15695,'scope','performance'),(1103,18242,'scope','performance'),(1104,18243,'scope','performance'),(1105,16863,'scope','availability'),(1106,15671,'scope','performance'),(1107,18250,'scope','performance'),(1108,18251,'scope','availability'),(1109,18251,'scope','performance'),(1110,16841,'scope','availability'),(1111,15698,'scope','performance'),(1112,18294,'scope','performance'),(1113,18295,'scope','performance'),(1114,16866,'scope','availability'),(1127,16196,'scope','availability'),(1128,16197,'scope','availability'),(1129,21543,'scope','availability'),(1130,21544,'scope','availability'),(1131,21544,'scope','performance'),(1132,21545,'scope','availability'),(1133,21545,'scope','performance'),(1134,16491,'scope','performance'),(1135,21546,'scope','notice'),(1136,21546,'scope','security'),(1137,16492,'scope','notice'),(1138,21547,'scope','notice'),(1139,18108,'scope','capacity'),(1140,18108,'scope','performance'),(1141,21548,'scope','availability'),(1142,14322,'scope','notice'),(1143,15330,'scope','availability'),(1144,15330,'scope','performance'),(1145,21549,'scope','performance'),(1146,21550,'scope','performance'),(1147,21551,'scope','availability'),(1148,21551,'scope','performance'),(1149,21552,'scope','availability'),(1150,21553,'scope','performance'),(1151,16494,'scope','availability'),(1152,16494,'scope','performance'),(1153,16495,'scope','availability'),(1154,16495,'scope','performance'),(1155,14319,'scope','availability'),(1156,14319,'scope','performance'),(1157,14318,'scope','availability'),(1158,14318,'scope','performance'),(1159,14320,'scope','availability'),(1160,14320,'scope','performance'),(1161,21554,'scope','availability'),(1162,21555,'scope','availability'),(1163,21555,'scope','performance'),(1164,21556,'scope','availability'),(1165,21556,'scope','performance'),(1166,21557,'scope','performance'),(1167,21558,'scope','notice'),(1168,21558,'scope','security'),(1169,21559,'scope','notice'),(1170,21560,'scope','availability'),(1171,15718,'scope','notice'),(1172,17554,'scope','notice'),(1173,17555,'scope','notice'),(1174,17556,'scope','notice'),(1175,17557,'scope','notice'),(1176,15717,'scope','availability'),(1177,15717,'scope','performance'),(1178,21561,'scope','performance'),(1179,21562,'scope','performance'),(1180,21563,'scope','availability'),(1181,21563,'scope','performance'),(1182,21564,'scope','availability'),(1183,21565,'scope','performance'),(1184,15719,'scope','availability'),(1185,15719,'scope','performance'),(1186,17558,'scope','notice'),(1187,17559,'scope','notice'),(1188,17560,'scope','notice'),(1189,17561,'scope','notice'),(1190,21566,'scope','availability'),(1191,21566,'scope','capacity'),(1192,21567,'scope','availability'),(1193,21567,'scope','capacity'),(1194,21568,'scope','capacity'),(1195,21568,'scope','performance'),(1196,17562,'scope','notice'),(1197,17563,'scope','notice'),(1198,17564,'scope','notice'),(1199,17565,'scope','notice'),(1200,21569,'scope','availability'),(1201,21570,'scope','availability'),(1202,21570,'scope','performance'),(1203,21571,'scope','availability'),(1204,21571,'scope','performance'),(1205,16496,'scope','performance'),(1206,14337,'scope','notice'),(1207,14336,'scope','notice'),(1208,21572,'scope','notice'),(1209,21572,'scope','security'),(1210,15720,'scope','availability'),(1211,15720,'scope','performance'),(1212,15721,'scope','availability'),(1213,15721,'scope','performance'),(1214,21573,'scope','notice'),(1215,18109,'scope','capacity'),(1216,18109,'scope','performance'),(1217,21574,'scope','availability'),(1218,15393,'scope','availability'),(1219,15393,'scope','performance'),(1220,15394,'scope','notice'),(1221,21575,'scope','performance'),(1222,21576,'scope','performance'),(1223,21577,'scope','availability'),(1224,21577,'scope','performance'),(1225,21578,'scope','availability'),(1226,15391,'scope','availability'),(1227,15391,'scope','performance'),(1228,15392,'scope','notice'),(1229,17322,'scope','availability'),(1230,17322,'scope','performance'),(1231,14339,'scope','availability'),(1232,14339,'scope','performance'),(1233,14340,'scope','availability'),(1234,14340,'scope','performance'),(1235,21579,'scope','availability'),(1236,21580,'scope','availability'),(1237,21580,'scope','performance'),(1238,21581,'scope','availability'),(1239,21581,'scope','performance'),(1240,21582,'scope','performance'),(1241,14364,'scope','notice'),(1242,14363,'scope','notice'),(1243,21583,'scope','notice'),(1244,21583,'scope','security'),(1245,21584,'scope','notice'),(1246,21585,'scope','capacity'),(1247,21585,'scope','performance'),(1248,21586,'scope','availability'),(1249,16498,'scope','performance'),(1250,18110,'scope','capacity'),(1251,18110,'scope','performance'),(1252,21587,'scope','availability'),(1253,21588,'scope','availability'),(1254,21588,'scope','performance'),(1255,21589,'scope','availability'),(1256,21589,'scope','performance'),(1257,21590,'scope','performance'),(1258,14365,'scope','notice'),(1259,21591,'scope','notice'),(1260,21591,'scope','security'),(1261,21592,'scope','notice'),(1262,21593,'scope','capacity'),(1263,21593,'scope','performance'),(1264,21594,'scope','availability'),(1265,15381,'scope','availability'),(1266,15381,'scope','performance'),(1267,15382,'scope','notice'),(1268,21595,'scope','performance'),(1269,21596,'scope','performance'),(1270,21597,'scope','availability'),(1271,21597,'scope','performance'),(1272,21598,'scope','availability'),(1273,15379,'scope','availability'),(1274,15379,'scope','performance'),(1275,15380,'scope','notice'),(1276,16505,'scope','availability'),(1277,16505,'scope','performance'),(1278,16504,'scope','availability'),(1279,16504,'scope','performance'),(1280,16506,'scope','availability'),(1281,16506,'scope','performance'),(1282,14373,'scope','availability'),(1283,14373,'scope','performance'),(1284,14372,'scope','availability'),(1285,14372,'scope','performance'),(1286,14374,'scope','availability'),(1287,14374,'scope','performance'),(1288,14383,'scope','notice'),(1289,15385,'scope','availability'),(1290,15385,'scope','performance'),(1291,15386,'scope','notice'),(1292,21599,'scope','performance'),(1293,21600,'scope','performance'),(1294,21601,'scope','availability'),(1295,21601,'scope','performance'),(1296,21602,'scope','availability'),(1297,15383,'scope','availability'),(1298,15383,'scope','performance'),(1299,15384,'scope','notice'),(1300,14381,'scope','availability'),(1301,14381,'scope','performance'),(1302,14380,'scope','availability'),(1303,14380,'scope','performance'),(1304,14382,'scope','availability'),(1305,14382,'scope','performance'),(1306,19012,'scope','notice'),(1307,19013,'scope','availability'),(1308,19014,'scope','performance'),(1309,19015,'scope','capacity'),(1310,19015,'scope','performance'),(1311,19016,'scope','availability'),(1312,19017,'scope','notice'),(1313,18298,'scope','availability'),(1314,18299,'scope','availability'),(1315,18299,'scope','performance'),(1316,18300,'scope','availability'),(1317,18300,'scope','performance'),(1318,18301,'scope','notice'),(1319,18302,'scope','notice'),(1320,18303,'scope','notice'),(1321,18304,'scope','notice'),(1322,18305,'scope','availability'),(1323,18306,'scope','capacity'),(1324,18306,'scope','performance'),(1325,18307,'scope','notice'),(1326,18308,'scope','availability'),(1327,18308,'scope','performance'),(1328,18309,'scope','availability'),(1329,18309,'scope','performance'),(1330,18310,'scope','capacity'),(1331,18310,'scope','performance'),(1332,18311,'scope','notice'),(1333,18312,'scope','performance'),(1334,18313,'scope','performance'),(1335,18314,'scope','performance'),(1336,18315,'scope','performance'),(1337,18316,'scope','availability'),(1338,18317,'scope','performance'),(1339,18318,'scope','availability'),(1340,18319,'scope','availability'),(1341,18320,'scope','availability'),(1342,18320,'scope','performance'),(1343,18321,'scope','availability'),(1344,18321,'scope','performance'),(1345,18322,'scope','availability'),(1346,18322,'scope','performance'),(1347,18323,'scope','availability'),(1348,18323,'scope','performance'),(1349,18324,'scope','availability'),(1350,18324,'scope','performance'),(1351,18325,'scope','availability'),(1352,18326,'scope','availability'),(1353,18326,'scope','performance'),(1354,18327,'scope','availability'),(1355,18327,'scope','performance'),(1356,18328,'scope','notice'),(1357,18329,'scope','notice'),(1358,18330,'scope','notice'),(1359,18331,'scope','notice'),(1360,18332,'scope','availability'),(1361,18333,'scope','capacity'),(1362,18333,'scope','performance'),(1363,18334,'scope','notice'),(1364,18335,'scope','availability'),(1365,18335,'scope','performance'),(1366,18336,'scope','availability'),(1367,18336,'scope','performance'),(1368,18337,'scope','capacity'),(1369,18337,'scope','performance'),(1370,18338,'scope','notice'),(1371,18339,'scope','performance'),(1372,18340,'scope','performance'),(1373,18341,'scope','performance'),(1374,18342,'scope','performance'),(1375,18343,'scope','availability'),(1376,18344,'scope','performance'),(1377,18345,'scope','availability'),(1378,18346,'scope','availability'),(1379,18347,'scope','availability'),(1380,18347,'scope','performance'),(1381,18348,'scope','availability'),(1382,18348,'scope','performance'),(1383,18349,'scope','availability'),(1384,18349,'scope','performance'),(1385,18350,'scope','availability'),(1386,18350,'scope','performance'),(1387,18351,'scope','availability'),(1388,18351,'scope','performance'),(1389,18352,'scope','availability'),(1390,18353,'scope','availability'),(1391,18353,'scope','performance'),(1392,18354,'scope','availability'),(1393,18354,'scope','performance'),(1394,18355,'scope','notice'),(1395,18356,'scope','notice'),(1396,18357,'scope','notice'),(1397,18358,'scope','notice'),(1398,18359,'scope','availability'),(1399,18360,'scope','capacity'),(1400,18360,'scope','performance'),(1401,18361,'scope','notice'),(1402,18362,'scope','availability'),(1403,18362,'scope','performance'),(1404,18363,'scope','availability'),(1405,18363,'scope','performance'),(1406,18364,'scope','capacity'),(1407,18364,'scope','performance'),(1408,18365,'scope','notice'),(1409,18366,'scope','performance'),(1410,18367,'scope','performance'),(1411,18368,'scope','performance'),(1412,18369,'scope','performance'),(1413,18370,'scope','availability'),(1414,18371,'scope','performance'),(1415,18372,'scope','availability'),(1416,18373,'scope','availability'),(1417,18374,'scope','availability'),(1418,18374,'scope','performance'),(1419,18375,'scope','availability'),(1420,18375,'scope','performance'),(1421,18376,'scope','availability'),(1422,18376,'scope','performance'),(1423,18377,'scope','availability'),(1424,18377,'scope','performance'),(1425,18378,'scope','availability'),(1426,18378,'scope','performance'),(1427,18379,'scope','availability'),(1428,18380,'scope','availability'),(1429,18380,'scope','performance'),(1430,18381,'scope','availability'),(1431,18381,'scope','performance'),(1432,18382,'scope','notice'),(1433,18383,'scope','notice'),(1434,18384,'scope','notice'),(1435,18385,'scope','notice'),(1436,18386,'scope','availability'),(1437,18387,'scope','capacity'),(1438,18387,'scope','performance'),(1439,18388,'scope','notice'),(1440,18389,'scope','availability'),(1441,18389,'scope','performance'),(1442,18390,'scope','availability'),(1443,18390,'scope','performance'),(1444,18391,'scope','capacity'),(1445,18391,'scope','performance'),(1446,18392,'scope','notice'),(1447,18393,'scope','performance'),(1448,18394,'scope','performance'),(1449,18395,'scope','performance'),(1450,18396,'scope','performance'),(1451,18397,'scope','availability'),(1452,18398,'scope','performance'),(1453,18399,'scope','availability'),(1454,18400,'scope','availability'),(1455,18401,'scope','availability'),(1456,18401,'scope','performance'),(1457,18402,'scope','availability'),(1458,18402,'scope','performance'),(1459,18403,'scope','availability'),(1460,18403,'scope','performance'),(1461,18404,'scope','availability'),(1462,18404,'scope','performance'),(1463,18405,'scope','availability'),(1464,18405,'scope','performance'),(1465,18406,'scope','availability'),(1466,18407,'scope','availability'),(1467,18407,'scope','performance'),(1468,18408,'scope','availability'),(1469,18408,'scope','performance'),(1470,18409,'scope','notice'),(1471,18410,'scope','notice'),(1472,18411,'scope','notice'),(1473,18412,'scope','notice'),(1474,18413,'scope','availability'),(1475,18414,'scope','capacity'),(1476,18414,'scope','performance'),(1477,18415,'scope','notice'),(1478,18416,'scope','availability'),(1479,18416,'scope','performance'),(1480,18417,'scope','availability'),(1481,18417,'scope','performance'),(1482,18418,'scope','capacity'),(1483,18418,'scope','performance'),(1484,18419,'scope','notice'),(1485,18420,'scope','performance'),(1486,18421,'scope','performance'),(1487,18422,'scope','performance'),(1488,18423,'scope','performance'),(1489,18424,'scope','availability'),(1490,18425,'scope','performance'),(1491,18426,'scope','availability'),(1492,18427,'scope','availability'),(1493,18428,'scope','availability'),(1494,18428,'scope','performance'),(1495,18429,'scope','availability'),(1496,18429,'scope','performance'),(1497,18430,'scope','availability'),(1498,18430,'scope','performance'),(1499,18431,'scope','availability'),(1500,18431,'scope','performance'),(1501,18432,'scope','availability'),(1502,18432,'scope','performance'),(1503,14409,'scope','notice'),(1504,16507,'scope','notice'),(1505,21603,'scope','availability'),(1506,21604,'scope','availability'),(1507,21604,'scope','performance'),(1508,21605,'scope','availability'),(1509,21605,'scope','performance'),(1510,21606,'scope','performance'),(1511,21607,'scope','notice'),(1512,21608,'scope','notice'),(1513,21608,'scope','security'),(1514,21609,'scope','notice'),(1515,21610,'scope','notice'),(1516,21611,'scope','availability'),(1517,21612,'scope','availability'),(1518,21613,'scope','availability'),(1519,21613,'scope','performance'),(1520,21614,'scope','availability'),(1521,21614,'scope','performance'),(1522,21615,'scope','notice'),(1523,21616,'scope','notice'),(1524,21616,'scope','security'),(1525,21617,'scope','notice'),(1526,21618,'scope','notice'),(1527,21619,'scope','availability'),(1528,21620,'scope','availability'),(1529,21621,'scope','availability'),(1530,21621,'scope','performance'),(1531,21622,'scope','availability'),(1532,21622,'scope','performance'),(1533,21623,'scope','notice'),(1534,21624,'scope','notice'),(1535,21624,'scope','security'),(1536,21625,'scope','notice'),(1537,21626,'scope','notice'),(1538,21627,'scope','availability'),(1539,16508,'scope','performance'),(1540,15346,'scope','availability'),(1541,15346,'scope','performance'),(1542,15347,'scope','availability'),(1543,15347,'scope','performance'),(1544,15344,'scope','availability'),(1545,15344,'scope','performance'),(1546,15345,'scope','availability'),(1547,15345,'scope','performance'),(1548,17566,'scope','availability'),(1549,17566,'scope','performance'),(1550,17567,'scope','availability'),(1551,17567,'scope','performance'),(1552,16871,'scope','availability'),(1553,16871,'scope','performance'),(1554,18113,'scope','capacity'),(1555,18113,'scope','performance'),(1556,16514,'scope','performance'),(1557,16515,'scope','performance'),(1558,14417,'scope','notice'),(1559,21628,'scope','notice'),(1560,21629,'scope','availability'),(1561,21629,'scope','performance'),(1562,21630,'scope','availability'),(1563,21630,'scope','performance'),(1564,21631,'scope','capacity'),(1565,21631,'scope','performance'),(1566,21632,'scope','availability'),(1567,21632,'scope','performance'),(1568,21633,'scope','availability'),(1569,21633,'scope','performance'),(1570,21634,'scope','availability'),(1571,21634,'scope','performance'),(1572,21635,'scope','availability'),(1573,21635,'scope','performance'),(1574,21636,'scope','availability'),(1575,21636,'scope','performance'),(1576,21637,'scope','performance'),(1577,21638,'scope','notice'),(1578,21639,'scope','availability'),(1579,21639,'scope','performance'),(1580,21640,'scope','availability'),(1581,21640,'scope','performance'),(1582,21641,'scope','capacity'),(1583,21641,'scope','performance'),(1584,21642,'scope','performance'),(1585,21643,'scope','performance'),(1586,21644,'scope','availability'),(1587,21644,'scope','performance'),(1588,21645,'scope','availability'),(1589,21646,'scope','performance'),(1590,21647,'scope','availability'),(1591,21647,'scope','performance'),(1592,21648,'scope','availability'),(1593,21648,'scope','performance'),(1594,21649,'scope','availability'),(1595,21649,'scope','performance'),(1596,21650,'scope','availability'),(1597,21650,'scope','performance'),(1598,21651,'scope','availability'),(1599,21651,'scope','performance'),(1600,21652,'scope','performance'),(1601,21653,'scope','notice'),(1602,21654,'scope','availability'),(1603,21654,'scope','performance'),(1604,21655,'scope','availability'),(1605,21655,'scope','performance'),(1606,21656,'scope','capacity'),(1607,21656,'scope','performance'),(1608,21657,'scope','performance'),(1609,21658,'scope','performance'),(1610,21659,'scope','availability'),(1611,21659,'scope','performance'),(1612,21660,'scope','availability'),(1613,21661,'scope','availability'),(1614,21661,'scope','performance'),(1615,21662,'scope','availability'),(1616,21662,'scope','performance'),(1617,21663,'scope','availability'),(1618,21663,'scope','performance'),(1619,21664,'scope','availability'),(1620,21664,'scope','performance'),(1621,21665,'scope','availability'),(1622,21665,'scope','performance'),(1623,21666,'scope','availability'),(1624,21667,'scope','availability'),(1625,21667,'scope','performance'),(1626,21668,'scope','availability'),(1627,21668,'scope','performance'),(1628,21669,'scope','notice'),(1629,21669,'scope','security'),(1630,21670,'scope','notice'),(1631,21671,'scope','availability'),(1632,15333,'scope','availability'),(1633,15333,'scope','performance'),(1634,15334,'scope','notice'),(1635,16521,'scope','performance'),(1636,18117,'scope','capacity'),(1637,18117,'scope','performance'),(1638,21672,'scope','performance'),(1639,21673,'scope','performance'),(1640,21674,'scope','availability'),(1641,21674,'scope','performance'),(1642,21675,'scope','availability'),(1643,21676,'scope','performance'),(1644,15331,'scope','availability'),(1645,15331,'scope','performance'),(1646,15332,'scope','notice'),(1647,14461,'scope','availability'),(1648,14461,'scope','performance'),(1649,14460,'scope','availability'),(1650,14460,'scope','performance'),(1651,14462,'scope','availability'),(1652,14462,'scope','performance'),(1653,14463,'scope','notice'),(1654,16523,'scope','notice'),(1655,21677,'scope','availability'),(1656,21678,'scope','availability'),(1657,21678,'scope','performance'),(1658,21679,'scope','availability'),(1659,21679,'scope','performance'),(1660,16524,'scope','performance'),(1661,14474,'scope','notice'),(1662,21680,'scope','notice'),(1663,21680,'scope','security'),(1664,16525,'scope','notice'),(1665,21681,'scope','notice'),(1666,21682,'scope','availability'),(1667,15367,'scope','availability'),(1668,15367,'scope','performance'),(1669,18118,'scope','capacity'),(1670,18118,'scope','performance'),(1671,21683,'scope','performance'),(1672,21684,'scope','performance'),(1673,21685,'scope','availability'),(1674,21685,'scope','performance'),(1675,21686,'scope','availability'),(1676,15366,'scope','availability'),(1677,15366,'scope','performance'),(1678,14477,'scope','availability'),(1679,14477,'scope','performance'),(1680,14476,'scope','availability'),(1681,14476,'scope','performance'),(1682,14478,'scope','availability'),(1683,14478,'scope','performance'),(1684,21687,'scope','availability'),(1685,21688,'scope','availability'),(1686,21688,'scope','performance'),(1687,21689,'scope','availability'),(1688,21689,'scope','performance'),(1689,16527,'scope','performance'),(1690,14493,'scope','notice'),(1691,14492,'scope','notice'),(1692,21690,'scope','notice'),(1693,21690,'scope','security'),(1694,21691,'scope','notice'),(1695,21692,'scope','availability'),(1696,15341,'scope','availability'),(1697,15341,'scope','performance'),(1698,18119,'scope','capacity'),(1699,18119,'scope','performance'),(1700,21693,'scope','performance'),(1701,21694,'scope','performance'),(1702,21695,'scope','availability'),(1703,21695,'scope','performance'),(1704,21696,'scope','availability'),(1705,21697,'scope','performance'),(1706,15340,'scope','availability'),(1707,15340,'scope','performance'),(1708,14496,'scope','availability'),(1709,14496,'scope','performance'),(1710,14495,'scope','availability'),(1711,14495,'scope','performance'),(1712,14497,'scope','availability'),(1713,14497,'scope','performance'),(1714,21698,'scope','availability'),(1715,21699,'scope','availability'),(1716,21699,'scope','performance'),(1717,21700,'scope','availability'),(1718,21700,'scope','performance'),(1719,14511,'scope','availability'),(1720,14511,'scope','performance'),(1721,14513,'scope','availability'),(1722,14513,'scope','performance'),(1723,16529,'scope','performance'),(1724,14515,'scope','notice'),(1725,14514,'scope','notice'),(1726,21701,'scope','notice'),(1727,21701,'scope','security'),(1728,16530,'scope','notice'),(1729,21702,'scope','notice'),(1730,21703,'scope','availability'),(1731,17574,'scope','availability'),(1732,17574,'scope','performance'),(1733,15370,'scope','availability'),(1734,15370,'scope','performance'),(1735,18120,'scope','capacity'),(1736,18120,'scope','performance'),(1737,21704,'scope','performance'),(1738,21705,'scope','performance'),(1739,21706,'scope','availability'),(1740,21706,'scope','performance'),(1741,21707,'scope','availability'),(1742,21708,'scope','performance'),(1743,15369,'scope','availability'),(1744,15369,'scope','performance'),(1745,19660,'scope','notice'),(1746,19018,'scope','notice'),(1747,19661,'scope','notice'),(1748,19662,'scope','notice'),(1749,19019,'scope','notice'),(1750,19020,'scope','availability'),(1751,19021,'scope','security'),(1752,19022,'scope','notice'),(1753,19663,'scope','notice'),(1754,19023,'scope','notice'),(1755,19664,'scope','notice'),(1756,19665,'scope','notice'),(1757,19666,'scope','notice'),(1758,19024,'scope','performance'),(1759,19025,'scope','capacity'),(1760,19026,'scope','performance'),(1761,19027,'scope','capacity'),(1762,19028,'scope','notice'),(1763,19667,'scope','capacity'),(1764,19668,'scope','capacity'),(1765,21709,'scope','availability'),(1766,21710,'scope','availability'),(1767,21710,'scope','performance'),(1768,21711,'scope','availability'),(1769,21711,'scope','performance'),(1770,21712,'scope','notice'),(1771,21712,'scope','security'),(1772,21713,'scope','notice'),(1773,21714,'scope','availability'),(1774,21715,'scope','performance'),(1775,21716,'scope','performance'),(1776,21717,'scope','performance'),(1777,21718,'scope','availability'),(1778,21719,'scope','performance'),(1779,21720,'scope','availability'),(1780,21721,'scope','availability'),(1781,21721,'scope','performance'),(1782,21722,'scope','availability'),(1783,21722,'scope','performance'),(1784,21723,'scope','notice'),(1785,21723,'scope','security'),(1786,21724,'scope','notice'),(1787,21725,'scope','availability'),(1788,14557,'scope','notice'),(1789,14556,'scope','notice'),(1790,16532,'scope','notice'),(1791,15371,'scope','availability'),(1792,15371,'scope','performance'),(1793,16533,'scope','performance'),(1794,18121,'scope','capacity'),(1795,18121,'scope','performance'),(1796,21726,'scope','performance'),(1797,21727,'scope','performance'),(1798,21728,'scope','availability'),(1799,21728,'scope','performance'),(1800,21729,'scope','availability'),(1801,21730,'scope','performance'),(1802,15372,'scope','availability'),(1803,15372,'scope','performance'),(1804,14552,'scope','availability'),(1805,14552,'scope','performance'),(1806,14551,'scope','availability'),(1807,14551,'scope','performance'),(1808,14553,'scope','availability'),(1809,14553,'scope','performance'),(1810,21731,'scope','availability'),(1811,21732,'scope','availability'),(1812,21732,'scope','performance'),(1813,21733,'scope','availability'),(1814,21733,'scope','performance'),(1815,16535,'scope','performance'),(1816,14913,'scope','notice'),(1817,14912,'scope','notice'),(1818,21734,'scope','notice'),(1819,21734,'scope','security'),(1820,21735,'scope','notice'),(1821,21736,'scope','availability'),(1822,15373,'scope','availability'),(1823,15373,'scope','performance'),(1824,15374,'scope','availability'),(1825,15374,'scope','performance'),(1826,18122,'scope','capacity'),(1827,18122,'scope','performance'),(1828,21737,'scope','performance'),(1829,21738,'scope','performance'),(1830,21739,'scope','availability'),(1831,21739,'scope','performance'),(1832,21740,'scope','availability'),(1833,21741,'scope','performance'),(1834,15375,'scope','availability'),(1835,15375,'scope','performance'),(1836,15376,'scope','availability'),(1837,15376,'scope','performance'),(1838,14915,'scope','availability'),(1839,14915,'scope','performance'),(1840,14914,'scope','availability'),(1841,14914,'scope','performance'),(1842,14916,'scope','availability'),(1843,14916,'scope','performance'),(1844,21742,'scope','availability'),(1845,21743,'scope','availability'),(1846,21743,'scope','performance'),(1847,21744,'scope','availability'),(1848,21744,'scope','performance'),(1849,21745,'scope','notice'),(1850,21745,'scope','security'),(1851,21746,'scope','notice'),(1852,21747,'scope','availability'),(1853,15395,'scope','availability'),(1854,15395,'scope','performance'),(1855,14590,'scope','availability'),(1856,14590,'scope','performance'),(1857,14589,'scope','availability'),(1858,14589,'scope','performance'),(1859,14591,'scope','availability'),(1860,14591,'scope','performance'),(1861,16537,'scope','performance'),(1862,14592,'scope','notice'),(1863,16538,'scope','notice'),(1864,18123,'scope','capacity'),(1865,18123,'scope','performance'),(1866,21748,'scope','performance'),(1867,21749,'scope','performance'),(1868,21750,'scope','availability'),(1869,21750,'scope','performance'),(1870,21751,'scope','availability'),(1871,21752,'scope','performance'),(1872,21753,'scope','availability'),(1873,21754,'scope','availability'),(1874,21754,'scope','performance'),(1875,21755,'scope','availability'),(1876,21755,'scope','performance'),(1877,14603,'scope','notice'),(1878,21756,'scope','notice'),(1879,21756,'scope','security'),(1880,21757,'scope','notice'),(1881,21758,'scope','availability'),(1882,15339,'scope','availability'),(1883,15339,'scope','performance'),(1884,21759,'scope','performance'),(1885,21760,'scope','performance'),(1886,21761,'scope','availability'),(1887,21761,'scope','performance'),(1888,21762,'scope','availability'),(1889,15337,'scope','availability'),(1890,15337,'scope','performance'),(1891,15338,'scope','availability'),(1892,15338,'scope','performance'),(1893,17332,'scope','availability'),(1894,17332,'scope','performance'),(1895,17333,'scope','availability'),(1896,17333,'scope','performance'),(1897,14606,'scope','availability'),(1898,14606,'scope','performance'),(1899,14607,'scope','notice'),(1900,21763,'scope','availability'),(1901,21764,'scope','availability'),(1902,21764,'scope','performance'),(1903,21765,'scope','availability'),(1904,21765,'scope','performance'),(1905,14621,'scope','notice'),(1906,21766,'scope','notice'),(1907,21766,'scope','security'),(1908,15722,'scope','availability'),(1909,15722,'scope','performance'),(1910,16540,'scope','notice'),(1911,21767,'scope','notice'),(1912,21768,'scope','availability'),(1913,16541,'scope','performance'),(1914,18124,'scope','capacity'),(1915,18124,'scope','performance'),(1916,15377,'scope','availability'),(1917,15377,'scope','performance'),(1918,15378,'scope','availability'),(1919,15378,'scope','performance'),(1920,14625,'scope','availability'),(1921,14625,'scope','performance'),(1922,14624,'scope','availability'),(1923,14624,'scope','performance'),(1924,14626,'scope','availability'),(1925,14626,'scope','performance'),(1926,21769,'scope','performance'),(1927,21770,'scope','performance'),(1928,21771,'scope','availability'),(1929,21771,'scope','performance'),(1930,21772,'scope','availability'),(1931,21773,'scope','performance'),(1932,18433,'scope','availability'),(1933,18434,'scope','availability'),(1934,18434,'scope','performance'),(1935,18435,'scope','availability'),(1936,18435,'scope','performance'),(1937,18436,'scope','performance'),(1938,18437,'scope','notice'),(1939,18437,'scope','security'),(1940,18438,'scope','notice'),(1941,18439,'scope','availability'),(1942,14937,'scope','notice'),(1943,18440,'scope','availability'),(1944,18440,'scope','performance'),(1945,18441,'scope','performance'),(1946,18442,'scope','performance'),(1947,18443,'scope','availability'),(1948,18443,'scope','performance'),(1949,18444,'scope','availability'),(1950,18445,'scope','availability'),(1951,18445,'scope','performance'),(1952,18446,'scope','availability'),(1953,18446,'scope','performance'),(1954,18447,'scope','availability'),(1955,18447,'scope','performance'),(1956,18448,'scope','availability'),(1957,18448,'scope','performance'),(1958,18449,'scope','availability'),(1959,18449,'scope','capacity'),(1960,18450,'scope','availability'),(1961,18450,'scope','capacity'),(1962,18451,'scope','capacity'),(1963,18451,'scope','performance'),(1964,21774,'scope','availability'),(1965,21775,'scope','availability'),(1966,21775,'scope','performance'),(1967,21776,'scope','availability'),(1968,21776,'scope','performance'),(1969,19679,'scope','notice'),(1970,19680,'scope','notice'),(1971,21777,'scope','notice'),(1972,21777,'scope','security'),(1973,19681,'scope','notice'),(1974,21778,'scope','notice'),(1975,19682,'scope','capacity'),(1976,19682,'scope','performance'),(1977,21779,'scope','availability'),(1978,19683,'scope','performance'),(1979,19684,'scope','availability'),(1980,19684,'scope','performance'),(1981,19685,'scope','availability'),(1982,19685,'scope','performance'),(1983,19686,'scope','availability'),(1984,19686,'scope','performance'),(1985,19687,'scope','availability'),(1986,19687,'scope','performance'),(1987,19688,'scope','availability'),(1988,19688,'scope','performance'),(1989,19689,'scope','availability'),(1990,19689,'scope','performance'),(1991,19690,'scope','availability'),(1992,19690,'scope','performance'),(1993,19691,'scope','availability'),(1994,19691,'scope','performance'),(1995,19692,'scope','availability'),(1996,19692,'scope','performance'),(1997,19693,'scope','availability'),(1998,19693,'scope','performance'),(1999,19694,'scope','availability'),(2000,19694,'scope','performance'),(2001,21780,'scope','performance'),(2002,21781,'scope','performance'),(2003,21782,'scope','availability'),(2004,21782,'scope','performance'),(2005,21783,'scope','availability'),(2006,19695,'scope','availability'),(2007,19695,'scope','capacity'),(2008,19696,'scope','availability'),(2009,19696,'scope','capacity'),(2010,21784,'scope','availability'),(2011,21785,'scope','availability'),(2012,21785,'scope','performance'),(2013,21786,'scope','availability'),(2014,21786,'scope','performance'),(2015,19707,'scope','notice'),(2016,19708,'scope','notice'),(2017,21787,'scope','notice'),(2018,21787,'scope','security'),(2019,19709,'scope','notice'),(2020,21788,'scope','notice'),(2021,19710,'scope','capacity'),(2022,19710,'scope','performance'),(2023,21789,'scope','availability'),(2024,19711,'scope','performance'),(2025,19712,'scope','availability'),(2026,19712,'scope','performance'),(2027,19713,'scope','availability'),(2028,19713,'scope','performance'),(2029,19714,'scope','availability'),(2030,19714,'scope','performance'),(2031,19715,'scope','availability'),(2032,19715,'scope','performance'),(2033,19716,'scope','availability'),(2034,19716,'scope','performance'),(2035,19717,'scope','availability'),(2036,19717,'scope','performance'),(2037,19718,'scope','availability'),(2038,19718,'scope','performance'),(2039,19719,'scope','availability'),(2040,19719,'scope','performance'),(2041,19720,'scope','availability'),(2042,19720,'scope','performance'),(2043,19721,'scope','availability'),(2044,19721,'scope','performance'),(2045,19722,'scope','availability'),(2046,19722,'scope','performance'),(2047,21790,'scope','performance'),(2048,21791,'scope','performance'),(2049,21792,'scope','availability'),(2050,21792,'scope','performance'),(2051,21793,'scope','availability'),(2052,19723,'scope','availability'),(2053,19723,'scope','capacity'),(2054,19724,'scope','availability'),(2055,19724,'scope','capacity'),(2056,21794,'scope','availability'),(2057,21795,'scope','availability'),(2058,21795,'scope','performance'),(2059,21796,'scope','availability'),(2060,21796,'scope','performance'),(2061,19735,'scope','notice'),(2062,19736,'scope','notice'),(2063,21797,'scope','notice'),(2064,21797,'scope','security'),(2065,19737,'scope','notice'),(2066,21798,'scope','notice'),(2067,19738,'scope','capacity'),(2068,19738,'scope','performance'),(2069,21799,'scope','availability'),(2070,19739,'scope','performance'),(2071,19740,'scope','availability'),(2072,19740,'scope','performance'),(2073,19741,'scope','availability'),(2074,19741,'scope','performance'),(2075,19742,'scope','availability'),(2076,19742,'scope','performance'),(2077,19743,'scope','availability'),(2078,19743,'scope','performance'),(2079,19744,'scope','availability'),(2080,19744,'scope','performance'),(2081,19745,'scope','availability'),(2082,19745,'scope','performance'),(2083,19746,'scope','availability'),(2084,19746,'scope','performance'),(2085,19747,'scope','availability'),(2086,19747,'scope','performance'),(2087,19748,'scope','availability'),(2088,19748,'scope','performance'),(2089,19749,'scope','availability'),(2090,19749,'scope','performance'),(2091,19750,'scope','availability'),(2092,19750,'scope','performance'),(2093,21800,'scope','performance'),(2094,21801,'scope','performance'),(2095,21802,'scope','availability'),(2096,21802,'scope','performance'),(2097,21803,'scope','availability'),(2098,19751,'scope','availability'),(2099,19751,'scope','capacity'),(2100,19752,'scope','availability'),(2101,19752,'scope','capacity'),(2102,21804,'scope','availability'),(2103,21805,'scope','availability'),(2104,21805,'scope','performance'),(2105,21806,'scope','availability'),(2106,21806,'scope','performance'),(2107,19763,'scope','notice'),(2108,19764,'scope','notice'),(2109,21807,'scope','notice'),(2110,21807,'scope','security'),(2111,19765,'scope','notice'),(2112,21808,'scope','notice'),(2113,19766,'scope','capacity'),(2114,19766,'scope','performance'),(2115,21809,'scope','availability'),(2116,19767,'scope','performance'),(2117,19768,'scope','availability'),(2118,19768,'scope','performance'),(2119,19769,'scope','availability'),(2120,19769,'scope','performance'),(2121,19770,'scope','availability'),(2122,19770,'scope','performance'),(2123,19771,'scope','availability'),(2124,19771,'scope','performance'),(2125,19772,'scope','availability'),(2126,19772,'scope','performance'),(2127,19773,'scope','availability'),(2128,19773,'scope','performance'),(2129,19774,'scope','availability'),(2130,19774,'scope','performance'),(2131,19775,'scope','availability'),(2132,19775,'scope','performance'),(2133,19776,'scope','availability'),(2134,19776,'scope','performance'),(2135,19777,'scope','availability'),(2136,19777,'scope','performance'),(2137,19778,'scope','availability'),(2138,19778,'scope','performance'),(2139,21810,'scope','performance'),(2140,21811,'scope','performance'),(2141,21812,'scope','availability'),(2142,21812,'scope','performance'),(2143,21813,'scope','availability'),(2144,19779,'scope','availability'),(2145,19779,'scope','capacity'),(2146,19780,'scope','availability'),(2147,19780,'scope','capacity'),(2148,21814,'scope','availability'),(2149,21815,'scope','availability'),(2150,21815,'scope','performance'),(2151,21816,'scope','availability'),(2152,21816,'scope','performance'),(2153,19791,'scope','notice'),(2154,19792,'scope','notice'),(2155,21817,'scope','notice'),(2156,21817,'scope','security'),(2157,19793,'scope','notice'),(2158,21818,'scope','notice'),(2159,19794,'scope','capacity'),(2160,19794,'scope','performance'),(2161,21819,'scope','availability'),(2162,19795,'scope','performance'),(2163,19796,'scope','availability'),(2164,19796,'scope','performance'),(2165,19797,'scope','availability'),(2166,19797,'scope','performance'),(2167,19798,'scope','availability'),(2168,19798,'scope','performance'),(2169,19799,'scope','availability'),(2170,19799,'scope','performance'),(2171,19800,'scope','availability'),(2172,19800,'scope','performance'),(2173,19801,'scope','availability'),(2174,19801,'scope','performance'),(2175,19802,'scope','availability'),(2176,19802,'scope','performance'),(2177,19803,'scope','availability'),(2178,19803,'scope','performance'),(2179,19804,'scope','availability'),(2180,19804,'scope','performance'),(2181,19805,'scope','availability'),(2182,19805,'scope','performance'),(2183,19806,'scope','availability'),(2184,19806,'scope','performance'),(2185,21820,'scope','performance'),(2186,21821,'scope','performance'),(2187,21822,'scope','availability'),(2188,21822,'scope','performance'),(2189,21823,'scope','availability'),(2190,19807,'scope','availability'),(2191,19807,'scope','capacity'),(2192,19808,'scope','availability'),(2193,19808,'scope','capacity'),(2194,21824,'scope','availability'),(2195,21825,'scope','availability'),(2196,21825,'scope','performance'),(2197,21826,'scope','availability'),(2198,21826,'scope','performance'),(2199,19819,'scope','notice'),(2200,19820,'scope','notice'),(2201,21827,'scope','notice'),(2202,21827,'scope','security'),(2203,19821,'scope','notice'),(2204,21828,'scope','notice'),(2205,19822,'scope','capacity'),(2206,19822,'scope','performance'),(2207,21829,'scope','availability'),(2208,19823,'scope','performance'),(2209,19824,'scope','availability'),(2210,19824,'scope','performance'),(2211,19825,'scope','availability'),(2212,19825,'scope','performance'),(2213,19826,'scope','availability'),(2214,19826,'scope','performance'),(2215,19827,'scope','availability'),(2216,19827,'scope','performance'),(2217,19828,'scope','availability'),(2218,19828,'scope','performance'),(2219,19829,'scope','availability'),(2220,19829,'scope','performance'),(2221,19830,'scope','availability'),(2222,19830,'scope','performance'),(2223,19831,'scope','availability'),(2224,19831,'scope','performance'),(2225,19832,'scope','availability'),(2226,19832,'scope','performance'),(2227,19833,'scope','availability'),(2228,19833,'scope','performance'),(2229,19834,'scope','availability'),(2230,19834,'scope','performance'),(2231,21830,'scope','performance'),(2232,21831,'scope','performance'),(2233,21832,'scope','availability'),(2234,21832,'scope','performance'),(2235,21833,'scope','availability'),(2236,19835,'scope','availability'),(2237,19835,'scope','capacity'),(2238,19836,'scope','availability'),(2239,19836,'scope','capacity'),(2240,21834,'scope','availability'),(2241,21835,'scope','availability'),(2242,21835,'scope','performance'),(2243,21836,'scope','availability'),(2244,21836,'scope','performance'),(2245,19847,'scope','notice'),(2246,19848,'scope','notice'),(2247,21837,'scope','notice'),(2248,21837,'scope','security'),(2249,19849,'scope','notice'),(2250,21838,'scope','notice'),(2251,19850,'scope','capacity'),(2252,19850,'scope','performance'),(2253,21839,'scope','availability'),(2254,19851,'scope','performance'),(2255,19852,'scope','availability'),(2256,19852,'scope','performance'),(2257,19853,'scope','availability'),(2258,19853,'scope','performance'),(2259,19854,'scope','availability'),(2260,19854,'scope','performance'),(2261,19855,'scope','availability'),(2262,19855,'scope','performance'),(2263,19856,'scope','availability'),(2264,19856,'scope','performance'),(2265,19857,'scope','availability'),(2266,19857,'scope','performance'),(2267,19858,'scope','availability'),(2268,19858,'scope','performance'),(2269,19859,'scope','availability'),(2270,19859,'scope','performance'),(2271,19860,'scope','availability'),(2272,19860,'scope','performance'),(2273,19861,'scope','availability'),(2274,19861,'scope','performance'),(2275,19862,'scope','availability'),(2276,19862,'scope','performance'),(2277,21840,'scope','performance'),(2278,21841,'scope','performance'),(2279,21842,'scope','availability'),(2280,21842,'scope','performance'),(2281,21843,'scope','availability'),(2282,19863,'scope','availability'),(2283,19863,'scope','capacity'),(2284,19864,'scope','availability'),(2285,19864,'scope','capacity'),(2286,21844,'scope','availability'),(2287,21845,'scope','availability'),(2288,21845,'scope','performance'),(2289,21846,'scope','availability'),(2290,21846,'scope','performance'),(2291,19875,'scope','notice'),(2292,19876,'scope','notice'),(2293,21847,'scope','notice'),(2294,21847,'scope','security'),(2295,19877,'scope','notice'),(2296,21848,'scope','notice'),(2297,19878,'scope','capacity'),(2298,19878,'scope','performance'),(2299,21849,'scope','availability'),(2300,19879,'scope','performance'),(2301,19880,'scope','availability'),(2302,19880,'scope','performance'),(2303,19881,'scope','availability'),(2304,19881,'scope','performance'),(2305,19882,'scope','availability'),(2306,19882,'scope','performance'),(2307,19883,'scope','availability'),(2308,19883,'scope','performance'),(2309,19884,'scope','availability'),(2310,19884,'scope','performance'),(2311,19885,'scope','availability'),(2312,19885,'scope','performance'),(2313,19886,'scope','availability'),(2314,19886,'scope','performance'),(2315,19887,'scope','availability'),(2316,19887,'scope','performance'),(2317,19888,'scope','availability'),(2318,19888,'scope','performance'),(2319,19889,'scope','availability'),(2320,19889,'scope','performance'),(2321,19890,'scope','availability'),(2322,19890,'scope','performance'),(2323,21850,'scope','performance'),(2324,21851,'scope','performance'),(2325,21852,'scope','availability'),(2326,21852,'scope','performance'),(2327,21853,'scope','availability'),(2328,19891,'scope','availability'),(2329,19891,'scope','capacity'),(2330,19892,'scope','availability'),(2331,19892,'scope','capacity'),(2332,21854,'scope','availability'),(2333,21855,'scope','availability'),(2334,21855,'scope','performance'),(2335,21856,'scope','availability'),(2336,21856,'scope','performance'),(2337,19903,'scope','notice'),(2338,19904,'scope','notice'),(2339,21857,'scope','notice'),(2340,21857,'scope','security'),(2341,19905,'scope','notice'),(2342,21858,'scope','notice'),(2343,19906,'scope','capacity'),(2344,19906,'scope','performance'),(2345,21859,'scope','availability'),(2346,19907,'scope','performance'),(2347,19908,'scope','availability'),(2348,19908,'scope','performance'),(2349,19909,'scope','availability'),(2350,19909,'scope','performance'),(2351,19910,'scope','availability'),(2352,19910,'scope','performance'),(2353,19911,'scope','availability'),(2354,19911,'scope','performance'),(2355,19912,'scope','availability'),(2356,19912,'scope','performance'),(2357,19913,'scope','availability'),(2358,19913,'scope','performance'),(2359,19914,'scope','availability'),(2360,19914,'scope','performance'),(2361,19915,'scope','availability'),(2362,19915,'scope','performance'),(2363,19916,'scope','availability'),(2364,19916,'scope','performance'),(2365,19917,'scope','availability'),(2366,19917,'scope','performance'),(2367,19918,'scope','availability'),(2368,19918,'scope','performance'),(2369,21860,'scope','performance'),(2370,21861,'scope','performance'),(2371,21862,'scope','availability'),(2372,21862,'scope','performance'),(2373,21863,'scope','availability'),(2374,19919,'scope','availability'),(2375,19919,'scope','capacity'),(2376,19920,'scope','availability'),(2377,19920,'scope','capacity'),(2378,21864,'scope','availability'),(2379,21865,'scope','availability'),(2380,21865,'scope','performance'),(2381,21866,'scope','availability'),(2382,21866,'scope','performance'),(2383,19931,'scope','notice'),(2384,19932,'scope','notice'),(2385,21867,'scope','notice'),(2386,21867,'scope','security'),(2387,19933,'scope','notice'),(2388,21868,'scope','notice'),(2389,19934,'scope','capacity'),(2390,19934,'scope','performance'),(2391,21869,'scope','availability'),(2392,19935,'scope','performance'),(2393,19936,'scope','availability'),(2394,19936,'scope','performance'),(2395,19937,'scope','availability'),(2396,19937,'scope','performance'),(2397,19938,'scope','availability'),(2398,19938,'scope','performance'),(2399,19939,'scope','availability'),(2400,19939,'scope','performance'),(2401,19940,'scope','availability'),(2402,19940,'scope','performance'),(2403,19941,'scope','availability'),(2404,19941,'scope','performance'),(2405,19942,'scope','availability'),(2406,19942,'scope','performance'),(2407,19943,'scope','availability'),(2408,19943,'scope','performance'),(2409,19944,'scope','availability'),(2410,19944,'scope','performance'),(2411,19945,'scope','availability'),(2412,19945,'scope','performance'),(2413,19946,'scope','availability'),(2414,19946,'scope','performance'),(2415,21870,'scope','performance'),(2416,21871,'scope','performance'),(2417,21872,'scope','availability'),(2418,21872,'scope','performance'),(2419,21873,'scope','availability'),(2420,19947,'scope','availability'),(2421,19947,'scope','capacity'),(2422,19948,'scope','availability'),(2423,19948,'scope','capacity'),(2424,21874,'scope','availability'),(2425,21875,'scope','availability'),(2426,21875,'scope','performance'),(2427,21876,'scope','availability'),(2428,21876,'scope','performance'),(2429,19959,'scope','notice'),(2430,19960,'scope','notice'),(2431,21877,'scope','notice'),(2432,21877,'scope','security'),(2433,19961,'scope','notice'),(2434,21878,'scope','notice'),(2435,19962,'scope','capacity'),(2436,19962,'scope','performance'),(2437,21879,'scope','availability'),(2438,19963,'scope','performance'),(2439,19964,'scope','availability'),(2440,19964,'scope','performance'),(2441,19965,'scope','availability'),(2442,19965,'scope','performance'),(2443,19966,'scope','availability'),(2444,19966,'scope','performance'),(2445,19967,'scope','availability'),(2446,19967,'scope','performance'),(2447,19968,'scope','availability'),(2448,19968,'scope','performance'),(2449,19969,'scope','availability'),(2450,19969,'scope','performance'),(2451,19970,'scope','availability'),(2452,19970,'scope','performance'),(2453,19971,'scope','availability'),(2454,19971,'scope','performance'),(2455,19972,'scope','availability'),(2456,19972,'scope','performance'),(2457,19973,'scope','availability'),(2458,19973,'scope','performance'),(2459,19974,'scope','availability'),(2460,19974,'scope','performance'),(2461,21880,'scope','performance'),(2462,21881,'scope','performance'),(2463,21882,'scope','availability'),(2464,21882,'scope','performance'),(2465,21883,'scope','availability'),(2466,19975,'scope','availability'),(2467,19975,'scope','capacity'),(2468,19976,'scope','availability'),(2469,19976,'scope','capacity'),(2470,21884,'scope','availability'),(2471,21885,'scope','availability'),(2472,21885,'scope','performance'),(2473,21886,'scope','availability'),(2474,21886,'scope','performance'),(2475,19987,'scope','notice'),(2476,19988,'scope','notice'),(2477,21887,'scope','notice'),(2478,21887,'scope','security'),(2479,19989,'scope','notice'),(2480,21888,'scope','notice'),(2481,19990,'scope','capacity'),(2482,19990,'scope','performance'),(2483,21889,'scope','availability'),(2484,19991,'scope','performance'),(2485,19992,'scope','availability'),(2486,19992,'scope','performance'),(2487,19993,'scope','availability'),(2488,19993,'scope','performance'),(2489,19994,'scope','availability'),(2490,19994,'scope','performance'),(2491,19995,'scope','availability'),(2492,19995,'scope','performance'),(2493,19996,'scope','availability'),(2494,19996,'scope','performance'),(2495,19997,'scope','availability'),(2496,19997,'scope','performance'),(2497,19998,'scope','availability'),(2498,19998,'scope','performance'),(2499,19999,'scope','availability'),(2500,19999,'scope','performance'),(2501,20000,'scope','availability'),(2502,20000,'scope','performance'),(2503,20001,'scope','availability'),(2504,20001,'scope','performance'),(2505,20002,'scope','availability'),(2506,20002,'scope','performance'),(2507,21890,'scope','performance'),(2508,21891,'scope','performance'),(2509,21892,'scope','availability'),(2510,21892,'scope','performance'),(2511,21893,'scope','availability'),(2512,20003,'scope','availability'),(2513,20003,'scope','capacity'),(2514,20004,'scope','availability'),(2515,20004,'scope','capacity'),(2516,21894,'scope','availability'),(2517,21895,'scope','availability'),(2518,21895,'scope','performance'),(2519,21896,'scope','availability'),(2520,21896,'scope','performance'),(2521,20015,'scope','notice'),(2522,20016,'scope','notice'),(2523,21897,'scope','notice'),(2524,21897,'scope','security'),(2525,20017,'scope','notice'),(2526,21898,'scope','notice'),(2527,20018,'scope','capacity'),(2528,20018,'scope','performance'),(2529,21899,'scope','availability'),(2530,20019,'scope','performance'),(2531,20020,'scope','availability'),(2532,20020,'scope','performance'),(2533,20021,'scope','availability'),(2534,20021,'scope','performance'),(2535,20022,'scope','availability'),(2536,20022,'scope','performance'),(2537,20023,'scope','availability'),(2538,20023,'scope','performance'),(2539,20024,'scope','availability'),(2540,20024,'scope','performance'),(2541,20025,'scope','availability'),(2542,20025,'scope','performance'),(2543,20026,'scope','availability'),(2544,20026,'scope','performance'),(2545,20027,'scope','availability'),(2546,20027,'scope','performance'),(2547,20028,'scope','availability'),(2548,20028,'scope','performance'),(2549,20029,'scope','availability'),(2550,20029,'scope','performance'),(2551,20030,'scope','availability'),(2552,20030,'scope','performance'),(2553,21900,'scope','performance'),(2554,21901,'scope','performance'),(2555,21902,'scope','availability'),(2556,21902,'scope','performance'),(2557,21903,'scope','availability'),(2558,20031,'scope','availability'),(2559,20031,'scope','capacity'),(2560,20032,'scope','availability'),(2561,20032,'scope','capacity'),(2562,21904,'scope','availability'),(2563,21905,'scope','availability'),(2564,21905,'scope','performance'),(2565,21906,'scope','availability'),(2566,21906,'scope','performance'),(2567,20043,'scope','notice'),(2568,20044,'scope','notice'),(2569,21907,'scope','notice'),(2570,21907,'scope','security'),(2571,20045,'scope','notice'),(2572,21908,'scope','notice'),(2573,20046,'scope','capacity'),(2574,20046,'scope','performance'),(2575,21909,'scope','availability'),(2576,20047,'scope','performance'),(2577,20048,'scope','availability'),(2578,20048,'scope','performance'),(2579,20049,'scope','availability'),(2580,20049,'scope','performance'),(2581,20050,'scope','availability'),(2582,20050,'scope','performance'),(2583,20051,'scope','availability'),(2584,20051,'scope','performance'),(2585,20052,'scope','availability'),(2586,20052,'scope','performance'),(2587,20053,'scope','availability'),(2588,20053,'scope','performance'),(2589,20054,'scope','availability'),(2590,20054,'scope','performance'),(2591,20055,'scope','availability'),(2592,20055,'scope','performance'),(2593,20056,'scope','availability'),(2594,20056,'scope','performance'),(2595,20057,'scope','availability'),(2596,20057,'scope','performance'),(2597,20058,'scope','availability'),(2598,20058,'scope','performance'),(2599,21910,'scope','performance'),(2600,21911,'scope','performance'),(2601,21912,'scope','availability'),(2602,21912,'scope','performance'),(2603,21913,'scope','availability'),(2604,20059,'scope','availability'),(2605,20059,'scope','capacity'),(2606,20060,'scope','availability'),(2607,20060,'scope','capacity'),(2608,21914,'scope','availability'),(2609,21915,'scope','availability'),(2610,21915,'scope','performance'),(2611,21916,'scope','availability'),(2612,21916,'scope','performance'),(2613,20071,'scope','notice'),(2614,20072,'scope','notice'),(2615,21917,'scope','notice'),(2616,21917,'scope','security'),(2617,20073,'scope','notice'),(2618,21918,'scope','notice'),(2619,20074,'scope','capacity'),(2620,20074,'scope','performance'),(2621,21919,'scope','availability'),(2622,20075,'scope','performance'),(2623,20076,'scope','availability'),(2624,20076,'scope','performance'),(2625,20077,'scope','availability'),(2626,20077,'scope','performance'),(2627,20078,'scope','availability'),(2628,20078,'scope','performance'),(2629,20079,'scope','availability'),(2630,20079,'scope','performance'),(2631,20080,'scope','availability'),(2632,20080,'scope','performance'),(2633,20081,'scope','availability'),(2634,20081,'scope','performance'),(2635,20082,'scope','availability'),(2636,20082,'scope','performance'),(2637,20083,'scope','availability'),(2638,20083,'scope','performance'),(2639,20084,'scope','availability'),(2640,20084,'scope','performance'),(2641,20085,'scope','availability'),(2642,20085,'scope','performance'),(2643,20086,'scope','availability'),(2644,20086,'scope','performance'),(2645,21920,'scope','performance'),(2646,21921,'scope','performance'),(2647,21922,'scope','availability'),(2648,21922,'scope','performance'),(2649,21923,'scope','availability'),(2650,20087,'scope','availability'),(2651,20087,'scope','capacity'),(2652,20088,'scope','availability'),(2653,20088,'scope','capacity'),(2654,21924,'scope','availability'),(2655,21925,'scope','availability'),(2656,21925,'scope','performance'),(2657,21926,'scope','availability'),(2658,21926,'scope','performance'),(2659,20099,'scope','notice'),(2660,20100,'scope','notice'),(2661,21927,'scope','notice'),(2662,21927,'scope','security'),(2663,20101,'scope','notice'),(2664,21928,'scope','notice'),(2665,20102,'scope','capacity'),(2666,20102,'scope','performance'),(2667,21929,'scope','availability'),(2668,20103,'scope','performance'),(2669,20104,'scope','availability'),(2670,20104,'scope','performance'),(2671,20105,'scope','availability'),(2672,20105,'scope','performance'),(2673,20106,'scope','availability'),(2674,20106,'scope','performance'),(2675,20107,'scope','availability'),(2676,20107,'scope','performance'),(2677,20108,'scope','availability'),(2678,20108,'scope','performance'),(2679,20109,'scope','availability'),(2680,20109,'scope','performance'),(2681,20110,'scope','availability'),(2682,20110,'scope','performance'),(2683,20111,'scope','availability'),(2684,20111,'scope','performance'),(2685,20112,'scope','availability'),(2686,20112,'scope','performance'),(2687,20113,'scope','availability'),(2688,20113,'scope','performance'),(2689,20114,'scope','availability'),(2690,20114,'scope','performance'),(2691,21930,'scope','performance'),(2692,21931,'scope','performance'),(2693,21932,'scope','availability'),(2694,21932,'scope','performance'),(2695,21933,'scope','availability'),(2696,20115,'scope','availability'),(2697,20115,'scope','capacity'),(2698,20116,'scope','availability'),(2699,20116,'scope','capacity'),(2700,21934,'scope','availability'),(2701,21935,'scope','availability'),(2702,21935,'scope','performance'),(2703,21936,'scope','availability'),(2704,21936,'scope','performance'),(2705,20127,'scope','notice'),(2706,20128,'scope','notice'),(2707,21937,'scope','notice'),(2708,21937,'scope','security'),(2709,20129,'scope','notice'),(2710,21938,'scope','notice'),(2711,20130,'scope','capacity'),(2712,20130,'scope','performance'),(2713,21939,'scope','availability'),(2714,20131,'scope','performance'),(2715,20132,'scope','availability'),(2716,20132,'scope','performance'),(2717,20133,'scope','availability'),(2718,20133,'scope','performance'),(2719,20134,'scope','availability'),(2720,20134,'scope','performance'),(2721,20135,'scope','availability'),(2722,20135,'scope','performance'),(2723,20136,'scope','availability'),(2724,20136,'scope','performance'),(2725,20137,'scope','availability'),(2726,20137,'scope','performance'),(2727,20138,'scope','availability'),(2728,20138,'scope','performance'),(2729,20139,'scope','availability'),(2730,20139,'scope','performance'),(2731,20140,'scope','availability'),(2732,20140,'scope','performance'),(2733,20141,'scope','availability'),(2734,20141,'scope','performance'),(2735,20142,'scope','availability'),(2736,20142,'scope','performance'),(2737,21940,'scope','performance'),(2738,21941,'scope','performance'),(2739,21942,'scope','availability'),(2740,21942,'scope','performance'),(2741,21943,'scope','availability'),(2742,20143,'scope','availability'),(2743,20143,'scope','capacity'),(2744,20144,'scope','availability'),(2745,20144,'scope','capacity'),(2746,21944,'scope','availability'),(2747,21945,'scope','availability'),(2748,21945,'scope','performance'),(2749,21946,'scope','availability'),(2750,21946,'scope','performance'),(2751,20155,'scope','notice'),(2752,20156,'scope','notice'),(2753,21947,'scope','notice'),(2754,21947,'scope','security'),(2755,20157,'scope','notice'),(2756,21948,'scope','notice'),(2757,20158,'scope','capacity'),(2758,20158,'scope','performance'),(2759,21949,'scope','availability'),(2760,20159,'scope','performance'),(2761,20160,'scope','availability'),(2762,20160,'scope','performance'),(2763,20161,'scope','availability'),(2764,20161,'scope','performance'),(2765,20162,'scope','availability'),(2766,20162,'scope','performance'),(2767,20163,'scope','availability'),(2768,20163,'scope','performance'),(2769,20164,'scope','availability'),(2770,20164,'scope','performance'),(2771,20165,'scope','availability'),(2772,20165,'scope','performance'),(2773,20166,'scope','availability'),(2774,20166,'scope','performance'),(2775,20167,'scope','availability'),(2776,20167,'scope','performance'),(2777,20168,'scope','availability'),(2778,20168,'scope','performance'),(2779,20169,'scope','availability'),(2780,20169,'scope','performance'),(2781,20170,'scope','availability'),(2782,20170,'scope','performance'),(2783,21950,'scope','performance'),(2784,21951,'scope','performance'),(2785,21952,'scope','availability'),(2786,21952,'scope','performance'),(2787,21953,'scope','availability'),(2788,20171,'scope','availability'),(2789,20171,'scope','capacity'),(2790,20172,'scope','availability'),(2791,20172,'scope','capacity'),(2792,21954,'scope','availability'),(2793,21955,'scope','availability'),(2794,21955,'scope','performance'),(2795,21956,'scope','availability'),(2796,21956,'scope','performance'),(2797,20183,'scope','notice'),(2798,20184,'scope','notice'),(2799,21957,'scope','notice'),(2800,21957,'scope','security'),(2801,20185,'scope','notice'),(2802,21958,'scope','notice'),(2803,20186,'scope','capacity'),(2804,20186,'scope','performance'),(2805,21959,'scope','availability'),(2806,20187,'scope','performance'),(2807,20188,'scope','availability'),(2808,20188,'scope','performance'),(2809,20189,'scope','availability'),(2810,20189,'scope','performance'),(2811,20190,'scope','availability'),(2812,20190,'scope','performance'),(2813,20191,'scope','availability'),(2814,20191,'scope','performance'),(2815,20192,'scope','availability'),(2816,20192,'scope','performance'),(2817,20193,'scope','availability'),(2818,20193,'scope','performance'),(2819,20194,'scope','availability'),(2820,20194,'scope','performance'),(2821,20195,'scope','availability'),(2822,20195,'scope','performance'),(2823,20196,'scope','availability'),(2824,20196,'scope','performance'),(2825,20197,'scope','availability'),(2826,20197,'scope','performance'),(2827,20198,'scope','availability'),(2828,20198,'scope','performance'),(2829,21960,'scope','performance'),(2830,21961,'scope','performance'),(2831,21962,'scope','availability'),(2832,21962,'scope','performance'),(2833,21963,'scope','availability'),(2834,20199,'scope','availability'),(2835,20199,'scope','capacity'),(2836,20200,'scope','availability'),(2837,20200,'scope','capacity'),(2838,21964,'scope','availability'),(2839,21965,'scope','availability'),(2840,21965,'scope','performance'),(2841,21966,'scope','availability'),(2842,21966,'scope','performance'),(2843,20211,'scope','notice'),(2844,20212,'scope','notice'),(2845,21967,'scope','notice'),(2846,21967,'scope','security'),(2847,20213,'scope','notice'),(2848,21968,'scope','notice'),(2849,20214,'scope','capacity'),(2850,20214,'scope','performance'),(2851,21969,'scope','availability'),(2852,20215,'scope','performance'),(2853,20216,'scope','availability'),(2854,20216,'scope','performance'),(2855,20217,'scope','availability'),(2856,20217,'scope','performance'),(2857,20218,'scope','availability'),(2858,20218,'scope','performance'),(2859,20219,'scope','availability'),(2860,20219,'scope','performance'),(2861,20220,'scope','availability'),(2862,20220,'scope','performance'),(2863,20221,'scope','availability'),(2864,20221,'scope','performance'),(2865,20222,'scope','availability'),(2866,20222,'scope','performance'),(2867,20223,'scope','availability'),(2868,20223,'scope','performance'),(2869,20224,'scope','availability'),(2870,20224,'scope','performance'),(2871,20225,'scope','availability'),(2872,20225,'scope','performance'),(2873,20226,'scope','availability'),(2874,20226,'scope','performance'),(2875,21970,'scope','performance'),(2876,21971,'scope','performance'),(2877,21972,'scope','availability'),(2878,21972,'scope','performance'),(2879,21973,'scope','availability'),(2880,20227,'scope','availability'),(2881,20227,'scope','capacity'),(2882,20228,'scope','availability'),(2883,20228,'scope','capacity'),(2884,21974,'scope','availability'),(2885,21975,'scope','availability'),(2886,21975,'scope','performance'),(2887,21976,'scope','availability'),(2888,21976,'scope','performance'),(2889,20239,'scope','notice'),(2890,20240,'scope','notice'),(2891,21977,'scope','notice'),(2892,21977,'scope','security'),(2893,20241,'scope','notice'),(2894,21978,'scope','notice'),(2895,20242,'scope','capacity'),(2896,20242,'scope','performance'),(2897,21979,'scope','availability'),(2898,20243,'scope','performance'),(2899,20244,'scope','availability'),(2900,20244,'scope','performance'),(2901,20245,'scope','availability'),(2902,20245,'scope','performance'),(2903,20246,'scope','availability'),(2904,20246,'scope','performance'),(2905,20247,'scope','availability'),(2906,20247,'scope','performance'),(2907,20248,'scope','availability'),(2908,20248,'scope','performance'),(2909,20249,'scope','availability'),(2910,20249,'scope','performance'),(2911,20250,'scope','availability'),(2912,20250,'scope','performance'),(2913,20251,'scope','availability'),(2914,20251,'scope','performance'),(2915,20252,'scope','availability'),(2916,20252,'scope','performance'),(2917,20253,'scope','availability'),(2918,20253,'scope','performance'),(2919,20254,'scope','availability'),(2920,20254,'scope','performance'),(2921,21980,'scope','performance'),(2922,21981,'scope','performance'),(2923,21982,'scope','availability'),(2924,21982,'scope','performance'),(2925,21983,'scope','availability'),(2926,20255,'scope','availability'),(2927,20255,'scope','capacity'),(2928,20256,'scope','availability'),(2929,20256,'scope','capacity'),(2930,21984,'scope','availability'),(2931,21985,'scope','availability'),(2932,21985,'scope','performance'),(2933,21986,'scope','availability'),(2934,21986,'scope','performance'),(2935,20267,'scope','notice'),(2936,20268,'scope','notice'),(2937,21987,'scope','notice'),(2938,21987,'scope','security'),(2939,20269,'scope','notice'),(2940,21988,'scope','notice'),(2941,20270,'scope','capacity'),(2942,20270,'scope','performance'),(2943,21989,'scope','availability'),(2944,20271,'scope','performance'),(2945,20272,'scope','availability'),(2946,20272,'scope','performance'),(2947,20273,'scope','availability'),(2948,20273,'scope','performance'),(2949,20274,'scope','availability'),(2950,20274,'scope','performance'),(2951,20275,'scope','availability'),(2952,20275,'scope','performance'),(2953,20276,'scope','availability'),(2954,20276,'scope','performance'),(2955,20277,'scope','availability'),(2956,20277,'scope','performance'),(2957,20278,'scope','availability'),(2958,20278,'scope','performance'),(2959,20279,'scope','availability'),(2960,20279,'scope','performance'),(2961,20280,'scope','availability'),(2962,20280,'scope','performance'),(2963,20281,'scope','availability'),(2964,20281,'scope','performance'),(2965,20282,'scope','availability'),(2966,20282,'scope','performance'),(2967,21990,'scope','performance'),(2968,21991,'scope','performance'),(2969,21992,'scope','availability'),(2970,21992,'scope','performance'),(2971,21993,'scope','availability'),(2972,20283,'scope','availability'),(2973,20283,'scope','capacity'),(2974,20284,'scope','availability'),(2975,20284,'scope','capacity'),(2976,21994,'scope','availability'),(2977,21995,'scope','availability'),(2978,21995,'scope','performance'),(2979,21996,'scope','availability'),(2980,21996,'scope','performance'),(2981,20295,'scope','notice'),(2982,20296,'scope','notice'),(2983,21997,'scope','notice'),(2984,21997,'scope','security'),(2985,20297,'scope','notice'),(2986,21998,'scope','notice'),(2987,20298,'scope','capacity'),(2988,20298,'scope','performance'),(2989,21999,'scope','availability'),(2990,20299,'scope','performance'),(2991,20300,'scope','availability'),(2992,20300,'scope','performance'),(2993,20301,'scope','availability'),(2994,20301,'scope','performance'),(2995,20302,'scope','availability'),(2996,20302,'scope','performance'),(2997,20303,'scope','availability'),(2998,20303,'scope','performance'),(2999,20304,'scope','availability'),(3000,20304,'scope','performance'),(3001,20305,'scope','availability'),(3002,20305,'scope','performance'),(3003,20306,'scope','availability'),(3004,20306,'scope','performance'),(3005,20307,'scope','availability'),(3006,20307,'scope','performance'),(3007,20308,'scope','availability'),(3008,20308,'scope','performance'),(3009,20309,'scope','availability'),(3010,20309,'scope','performance'),(3011,20310,'scope','availability'),(3012,20310,'scope','performance'),(3013,22000,'scope','performance'),(3014,22001,'scope','performance'),(3015,22002,'scope','availability'),(3016,22002,'scope','performance'),(3017,22003,'scope','availability'),(3018,20311,'scope','availability'),(3019,20311,'scope','capacity'),(3020,20312,'scope','availability'),(3021,20312,'scope','capacity'),(3022,22004,'scope','availability'),(3023,22005,'scope','availability'),(3024,22005,'scope','performance'),(3025,22006,'scope','availability'),(3026,22006,'scope','performance'),(3027,20323,'scope','notice'),(3028,20324,'scope','notice'),(3029,22007,'scope','notice'),(3030,22007,'scope','security'),(3031,20325,'scope','notice'),(3032,22008,'scope','notice'),(3033,20326,'scope','capacity'),(3034,20326,'scope','performance'),(3035,22009,'scope','availability'),(3036,20327,'scope','performance'),(3037,20328,'scope','availability'),(3038,20328,'scope','performance'),(3039,20329,'scope','availability'),(3040,20329,'scope','performance'),(3041,20330,'scope','availability'),(3042,20330,'scope','performance'),(3043,20331,'scope','availability'),(3044,20331,'scope','performance'),(3045,20332,'scope','availability'),(3046,20332,'scope','performance'),(3047,20333,'scope','availability'),(3048,20333,'scope','performance'),(3049,20334,'scope','availability'),(3050,20334,'scope','performance'),(3051,20335,'scope','availability'),(3052,20335,'scope','performance'),(3053,20336,'scope','availability'),(3054,20336,'scope','performance'),(3055,20337,'scope','availability'),(3056,20337,'scope','performance'),(3057,20338,'scope','availability'),(3058,20338,'scope','performance'),(3059,22010,'scope','performance'),(3060,22011,'scope','performance'),(3061,22012,'scope','availability'),(3062,22012,'scope','performance'),(3063,22013,'scope','availability'),(3064,20339,'scope','availability'),(3065,20339,'scope','capacity'),(3066,20340,'scope','availability'),(3067,20340,'scope','capacity'),(3068,22014,'scope','availability'),(3069,22015,'scope','availability'),(3070,22015,'scope','performance'),(3071,22016,'scope','availability'),(3072,22016,'scope','performance'),(3073,20351,'scope','notice'),(3074,20352,'scope','notice'),(3075,22017,'scope','notice'),(3076,22017,'scope','security'),(3077,20353,'scope','notice'),(3078,22018,'scope','notice'),(3079,20354,'scope','capacity'),(3080,20354,'scope','performance'),(3081,22019,'scope','availability'),(3082,20355,'scope','performance'),(3083,20356,'scope','availability'),(3084,20356,'scope','performance'),(3085,20357,'scope','availability'),(3086,20357,'scope','performance'),(3087,20358,'scope','availability'),(3088,20358,'scope','performance'),(3089,20359,'scope','availability'),(3090,20359,'scope','performance'),(3091,20360,'scope','availability'),(3092,20360,'scope','performance'),(3093,20361,'scope','availability'),(3094,20361,'scope','performance'),(3095,20362,'scope','availability'),(3096,20362,'scope','performance'),(3097,20363,'scope','availability'),(3098,20363,'scope','performance'),(3099,20364,'scope','availability'),(3100,20364,'scope','performance'),(3101,20365,'scope','availability'),(3102,20365,'scope','performance'),(3103,20366,'scope','availability'),(3104,20366,'scope','performance'),(3105,22020,'scope','performance'),(3106,22021,'scope','performance'),(3107,22022,'scope','availability'),(3108,22022,'scope','performance'),(3109,22023,'scope','availability'),(3110,20367,'scope','availability'),(3111,20367,'scope','capacity'),(3112,20368,'scope','availability'),(3113,20368,'scope','capacity'),(3114,22024,'scope','availability'),(3115,22025,'scope','availability'),(3116,22025,'scope','performance'),(3117,22026,'scope','availability'),(3118,22026,'scope','performance'),(3119,20379,'scope','notice'),(3120,20380,'scope','notice'),(3121,22027,'scope','notice'),(3122,22027,'scope','security'),(3123,20381,'scope','notice'),(3124,22028,'scope','notice'),(3125,20382,'scope','capacity'),(3126,20382,'scope','performance'),(3127,22029,'scope','availability'),(3128,20383,'scope','performance'),(3129,20384,'scope','availability'),(3130,20384,'scope','performance'),(3131,20385,'scope','availability'),(3132,20385,'scope','performance'),(3133,20386,'scope','availability'),(3134,20386,'scope','performance'),(3135,20387,'scope','availability'),(3136,20387,'scope','performance'),(3137,20388,'scope','availability'),(3138,20388,'scope','performance'),(3139,20389,'scope','availability'),(3140,20389,'scope','performance'),(3141,20390,'scope','availability'),(3142,20390,'scope','performance'),(3143,20391,'scope','availability'),(3144,20391,'scope','performance'),(3145,20392,'scope','availability'),(3146,20392,'scope','performance'),(3147,20393,'scope','availability'),(3148,20393,'scope','performance'),(3149,20394,'scope','availability'),(3150,20394,'scope','performance'),(3151,22030,'scope','performance'),(3152,22031,'scope','performance'),(3153,22032,'scope','availability'),(3154,22032,'scope','performance'),(3155,22033,'scope','availability'),(3156,20395,'scope','availability'),(3157,20395,'scope','capacity'),(3158,20396,'scope','availability'),(3159,20396,'scope','capacity'),(3160,22034,'scope','availability'),(3161,22035,'scope','availability'),(3162,22035,'scope','performance'),(3163,22036,'scope','availability'),(3164,22036,'scope','performance'),(3165,20407,'scope','notice'),(3166,20408,'scope','notice'),(3167,22037,'scope','notice'),(3168,22037,'scope','security'),(3169,20409,'scope','notice'),(3170,22038,'scope','notice'),(3171,20410,'scope','capacity'),(3172,20410,'scope','performance'),(3173,22039,'scope','availability'),(3174,20411,'scope','performance'),(3175,20412,'scope','availability'),(3176,20412,'scope','performance'),(3177,20413,'scope','availability'),(3178,20413,'scope','performance'),(3179,20414,'scope','availability'),(3180,20414,'scope','performance'),(3181,20415,'scope','availability'),(3182,20415,'scope','performance'),(3183,20416,'scope','availability'),(3184,20416,'scope','performance'),(3185,20417,'scope','availability'),(3186,20417,'scope','performance'),(3187,20418,'scope','availability'),(3188,20418,'scope','performance'),(3189,20419,'scope','availability'),(3190,20419,'scope','performance'),(3191,20420,'scope','availability'),(3192,20420,'scope','performance'),(3193,20421,'scope','availability'),(3194,20421,'scope','performance'),(3195,20422,'scope','availability'),(3196,20422,'scope','performance'),(3197,22040,'scope','performance'),(3198,22041,'scope','performance'),(3199,22042,'scope','availability'),(3200,22042,'scope','performance'),(3201,22043,'scope','availability'),(3202,20423,'scope','availability'),(3203,20423,'scope','capacity'),(3204,20424,'scope','availability'),(3205,20424,'scope','capacity'),(3206,22044,'scope','availability'),(3207,22045,'scope','availability'),(3208,22045,'scope','performance'),(3209,22046,'scope','availability'),(3210,22046,'scope','performance'),(3211,20435,'scope','notice'),(3212,20436,'scope','notice'),(3213,22047,'scope','notice'),(3214,22047,'scope','security'),(3215,20437,'scope','notice'),(3216,22048,'scope','notice'),(3217,20438,'scope','capacity'),(3218,20438,'scope','performance'),(3219,22049,'scope','availability'),(3220,20439,'scope','performance'),(3221,20440,'scope','availability'),(3222,20440,'scope','performance'),(3223,20441,'scope','availability'),(3224,20441,'scope','performance'),(3225,20442,'scope','availability'),(3226,20442,'scope','performance'),(3227,20443,'scope','availability'),(3228,20443,'scope','performance'),(3229,20444,'scope','availability'),(3230,20444,'scope','performance'),(3231,20445,'scope','availability'),(3232,20445,'scope','performance'),(3233,20446,'scope','availability'),(3234,20446,'scope','performance'),(3235,20447,'scope','availability'),(3236,20447,'scope','performance'),(3237,20448,'scope','availability'),(3238,20448,'scope','performance'),(3239,20449,'scope','availability'),(3240,20449,'scope','performance'),(3241,20450,'scope','availability'),(3242,20450,'scope','performance'),(3243,22050,'scope','performance'),(3244,22051,'scope','performance'),(3245,22052,'scope','availability'),(3246,22052,'scope','performance'),(3247,22053,'scope','availability'),(3248,20451,'scope','availability'),(3249,20451,'scope','capacity'),(3250,20452,'scope','availability'),(3251,20452,'scope','capacity'),(3252,22054,'scope','availability'),(3253,22055,'scope','availability'),(3254,22055,'scope','performance'),(3255,22056,'scope','availability'),(3256,22056,'scope','performance'),(3257,20463,'scope','notice'),(3258,20464,'scope','notice'),(3259,22057,'scope','notice'),(3260,22057,'scope','security'),(3261,20465,'scope','notice'),(3262,22058,'scope','notice'),(3263,20466,'scope','capacity'),(3264,20466,'scope','performance'),(3265,22059,'scope','availability'),(3266,20467,'scope','performance'),(3267,20468,'scope','availability'),(3268,20468,'scope','performance'),(3269,20469,'scope','availability'),(3270,20469,'scope','performance'),(3271,20470,'scope','availability'),(3272,20470,'scope','performance'),(3273,20471,'scope','availability'),(3274,20471,'scope','performance'),(3275,20472,'scope','availability'),(3276,20472,'scope','performance'),(3277,20473,'scope','availability'),(3278,20473,'scope','performance'),(3279,20474,'scope','availability'),(3280,20474,'scope','performance'),(3281,20475,'scope','availability'),(3282,20475,'scope','performance'),(3283,20476,'scope','availability'),(3284,20476,'scope','performance'),(3285,20477,'scope','availability'),(3286,20477,'scope','performance'),(3287,20478,'scope','availability'),(3288,20478,'scope','performance'),(3289,22060,'scope','performance'),(3290,22061,'scope','performance'),(3291,22062,'scope','availability'),(3292,22062,'scope','performance'),(3293,22063,'scope','availability'),(3294,20479,'scope','availability'),(3295,20479,'scope','capacity'),(3296,20480,'scope','availability'),(3297,20480,'scope','capacity'),(3298,22064,'scope','availability'),(3299,22065,'scope','availability'),(3300,22065,'scope','performance'),(3301,22066,'scope','availability'),(3302,22066,'scope','performance'),(3303,20491,'scope','notice'),(3304,20492,'scope','notice'),(3305,22067,'scope','notice'),(3306,22067,'scope','security'),(3307,20493,'scope','notice'),(3308,22068,'scope','notice'),(3309,20494,'scope','capacity'),(3310,20494,'scope','performance'),(3311,22069,'scope','availability'),(3312,20495,'scope','performance'),(3313,20496,'scope','availability'),(3314,20496,'scope','performance'),(3315,20497,'scope','availability'),(3316,20497,'scope','performance'),(3317,20498,'scope','availability'),(3318,20498,'scope','performance'),(3319,20499,'scope','availability'),(3320,20499,'scope','performance'),(3321,20500,'scope','availability'),(3322,20500,'scope','performance'),(3323,20501,'scope','availability'),(3324,20501,'scope','performance'),(3325,20502,'scope','availability'),(3326,20502,'scope','performance'),(3327,20503,'scope','availability'),(3328,20503,'scope','performance'),(3329,20504,'scope','availability'),(3330,20504,'scope','performance'),(3331,20505,'scope','availability'),(3332,20505,'scope','performance'),(3333,20506,'scope','availability'),(3334,20506,'scope','performance'),(3335,22070,'scope','performance'),(3336,22071,'scope','performance'),(3337,22072,'scope','availability'),(3338,22072,'scope','performance'),(3339,22073,'scope','availability'),(3340,20507,'scope','availability'),(3341,20507,'scope','capacity'),(3342,20508,'scope','availability'),(3343,20508,'scope','capacity'),(3344,22074,'scope','availability'),(3345,22075,'scope','availability'),(3346,22075,'scope','performance'),(3347,22076,'scope','availability'),(3348,22076,'scope','performance'),(3349,20519,'scope','notice'),(3350,20520,'scope','notice'),(3351,22077,'scope','notice'),(3352,22077,'scope','security'),(3353,20521,'scope','notice'),(3354,22078,'scope','notice'),(3355,20522,'scope','capacity'),(3356,20522,'scope','performance'),(3357,22079,'scope','availability'),(3358,20523,'scope','performance'),(3359,20524,'scope','availability'),(3360,20524,'scope','performance'),(3361,20525,'scope','availability'),(3362,20525,'scope','performance'),(3363,20526,'scope','availability'),(3364,20526,'scope','performance'),(3365,20527,'scope','availability'),(3366,20527,'scope','performance'),(3367,20528,'scope','availability'),(3368,20528,'scope','performance'),(3369,20529,'scope','availability'),(3370,20529,'scope','performance'),(3371,20530,'scope','availability'),(3372,20530,'scope','performance'),(3373,20531,'scope','availability'),(3374,20531,'scope','performance'),(3375,20532,'scope','availability'),(3376,20532,'scope','performance'),(3377,20533,'scope','availability'),(3378,20533,'scope','performance'),(3379,20534,'scope','availability'),(3380,20534,'scope','performance'),(3381,22080,'scope','performance'),(3382,22081,'scope','performance'),(3383,22082,'scope','availability'),(3384,22082,'scope','performance'),(3385,22083,'scope','availability'),(3386,20535,'scope','availability'),(3387,20535,'scope','capacity'),(3388,20536,'scope','availability'),(3389,20536,'scope','capacity'),(3390,22084,'scope','availability'),(3391,22085,'scope','availability'),(3392,22085,'scope','performance'),(3393,22086,'scope','availability'),(3394,22086,'scope','performance'),(3395,20547,'scope','notice'),(3396,20548,'scope','notice'),(3397,22087,'scope','notice'),(3398,22087,'scope','security'),(3399,20549,'scope','notice'),(3400,22088,'scope','notice'),(3401,20550,'scope','capacity'),(3402,20550,'scope','performance'),(3403,22089,'scope','availability'),(3404,20551,'scope','performance'),(3405,20552,'scope','availability'),(3406,20552,'scope','performance'),(3407,20553,'scope','availability'),(3408,20553,'scope','performance'),(3409,20554,'scope','availability'),(3410,20554,'scope','performance'),(3411,20555,'scope','availability'),(3412,20555,'scope','performance'),(3413,20556,'scope','availability'),(3414,20556,'scope','performance'),(3415,20557,'scope','availability'),(3416,20557,'scope','performance'),(3417,20558,'scope','availability'),(3418,20558,'scope','performance'),(3419,20559,'scope','availability'),(3420,20559,'scope','performance'),(3421,20560,'scope','availability'),(3422,20560,'scope','performance'),(3423,20561,'scope','availability'),(3424,20561,'scope','performance'),(3425,20562,'scope','availability'),(3426,20562,'scope','performance'),(3427,22090,'scope','performance'),(3428,22091,'scope','performance'),(3429,22092,'scope','availability'),(3430,22092,'scope','performance'),(3431,22093,'scope','availability'),(3432,20563,'scope','availability'),(3433,20563,'scope','capacity'),(3434,20564,'scope','availability'),(3435,20564,'scope','capacity'),(3436,22094,'scope','availability'),(3437,22095,'scope','availability'),(3438,22095,'scope','performance'),(3439,22096,'scope','availability'),(3440,22096,'scope','performance'),(3441,20575,'scope','notice'),(3442,20576,'scope','notice'),(3443,22097,'scope','notice'),(3444,22097,'scope','security'),(3445,20577,'scope','notice'),(3446,22098,'scope','notice'),(3447,20578,'scope','capacity'),(3448,20578,'scope','performance'),(3449,22099,'scope','availability'),(3450,20579,'scope','performance'),(3451,20580,'scope','availability'),(3452,20580,'scope','performance'),(3453,20581,'scope','availability'),(3454,20581,'scope','performance'),(3455,20582,'scope','availability'),(3456,20582,'scope','performance'),(3457,20583,'scope','availability'),(3458,20583,'scope','performance'),(3459,20584,'scope','availability'),(3460,20584,'scope','performance'),(3461,20585,'scope','availability'),(3462,20585,'scope','performance'),(3463,20586,'scope','availability'),(3464,20586,'scope','performance'),(3465,20587,'scope','availability'),(3466,20587,'scope','performance'),(3467,20588,'scope','availability'),(3468,20588,'scope','performance'),(3469,20589,'scope','availability'),(3470,20589,'scope','performance'),(3471,20590,'scope','availability'),(3472,20590,'scope','performance'),(3473,22100,'scope','performance'),(3474,22101,'scope','performance'),(3475,22102,'scope','availability'),(3476,22102,'scope','performance'),(3477,22103,'scope','availability'),(3478,20591,'scope','availability'),(3479,20591,'scope','capacity'),(3480,20592,'scope','availability'),(3481,20592,'scope','capacity'),(3482,22104,'scope','availability'),(3483,22105,'scope','availability'),(3484,22105,'scope','performance'),(3485,22106,'scope','availability'),(3486,22106,'scope','performance'),(3487,20603,'scope','notice'),(3488,20604,'scope','notice'),(3489,22107,'scope','notice'),(3490,22107,'scope','security'),(3491,20605,'scope','notice'),(3492,22108,'scope','notice'),(3493,20606,'scope','capacity'),(3494,20606,'scope','performance'),(3495,22109,'scope','availability'),(3496,20607,'scope','performance'),(3497,20608,'scope','availability'),(3498,20608,'scope','performance'),(3499,20609,'scope','availability'),(3500,20609,'scope','performance'),(3501,20610,'scope','availability'),(3502,20610,'scope','performance'),(3503,20611,'scope','availability'),(3504,20611,'scope','performance'),(3505,20612,'scope','availability'),(3506,20612,'scope','performance'),(3507,20613,'scope','availability'),(3508,20613,'scope','performance'),(3509,20614,'scope','availability'),(3510,20614,'scope','performance'),(3511,20615,'scope','availability'),(3512,20615,'scope','performance'),(3513,20616,'scope','availability'),(3514,20616,'scope','performance'),(3515,20617,'scope','availability'),(3516,20617,'scope','performance'),(3517,20618,'scope','availability'),(3518,20618,'scope','performance'),(3519,22110,'scope','performance'),(3520,22111,'scope','performance'),(3521,22112,'scope','availability'),(3522,22112,'scope','performance'),(3523,22113,'scope','availability'),(3524,20619,'scope','availability'),(3525,20619,'scope','capacity'),(3526,20620,'scope','availability'),(3527,20620,'scope','capacity'),(3528,22114,'scope','availability'),(3529,22115,'scope','availability'),(3530,22115,'scope','performance'),(3531,22116,'scope','availability'),(3532,22116,'scope','performance'),(3533,20631,'scope','notice'),(3534,20632,'scope','notice'),(3535,22117,'scope','notice'),(3536,22117,'scope','security'),(3537,20633,'scope','notice'),(3538,22118,'scope','notice'),(3539,20634,'scope','capacity'),(3540,20634,'scope','performance'),(3541,22119,'scope','availability'),(3542,20635,'scope','performance'),(3543,20636,'scope','availability'),(3544,20636,'scope','performance'),(3545,20637,'scope','availability'),(3546,20637,'scope','performance'),(3547,20638,'scope','availability'),(3548,20638,'scope','performance'),(3549,20639,'scope','availability'),(3550,20639,'scope','performance'),(3551,20640,'scope','availability'),(3552,20640,'scope','performance'),(3553,20641,'scope','availability'),(3554,20641,'scope','performance'),(3555,20642,'scope','availability'),(3556,20642,'scope','performance'),(3557,20643,'scope','availability'),(3558,20643,'scope','performance'),(3559,20644,'scope','availability'),(3560,20644,'scope','performance'),(3561,20645,'scope','availability'),(3562,20645,'scope','performance'),(3563,20646,'scope','availability'),(3564,20646,'scope','performance'),(3565,22120,'scope','performance'),(3566,22121,'scope','performance'),(3567,22122,'scope','availability'),(3568,22122,'scope','performance'),(3569,22123,'scope','availability'),(3570,20647,'scope','availability'),(3571,20647,'scope','capacity'),(3572,20648,'scope','availability'),(3573,20648,'scope','capacity'),(3574,22124,'scope','availability'),(3575,22125,'scope','availability'),(3576,22125,'scope','performance'),(3577,22126,'scope','availability'),(3578,22126,'scope','performance'),(3579,20659,'scope','notice'),(3580,20660,'scope','notice'),(3581,22127,'scope','notice'),(3582,22127,'scope','security'),(3583,20661,'scope','notice'),(3584,22128,'scope','notice'),(3585,20662,'scope','capacity'),(3586,20662,'scope','performance'),(3587,22129,'scope','availability'),(3588,20663,'scope','performance'),(3589,20664,'scope','availability'),(3590,20664,'scope','performance'),(3591,20665,'scope','availability'),(3592,20665,'scope','performance'),(3593,20666,'scope','availability'),(3594,20666,'scope','performance'),(3595,20667,'scope','availability'),(3596,20667,'scope','performance'),(3597,20668,'scope','availability'),(3598,20668,'scope','performance'),(3599,20669,'scope','availability'),(3600,20669,'scope','performance'),(3601,20670,'scope','availability'),(3602,20670,'scope','performance'),(3603,20671,'scope','availability'),(3604,20671,'scope','performance'),(3605,20672,'scope','availability'),(3606,20672,'scope','performance'),(3607,20673,'scope','availability'),(3608,20673,'scope','performance'),(3609,20674,'scope','availability'),(3610,20674,'scope','performance'),(3611,22130,'scope','performance'),(3612,22131,'scope','performance'),(3613,22132,'scope','availability'),(3614,22132,'scope','performance'),(3615,22133,'scope','availability'),(3616,20675,'scope','availability'),(3617,20675,'scope','capacity'),(3618,20676,'scope','availability'),(3619,20676,'scope','capacity'),(3620,22134,'scope','availability'),(3621,22135,'scope','availability'),(3622,22135,'scope','performance'),(3623,22136,'scope','availability'),(3624,22136,'scope','performance'),(3625,20687,'scope','notice'),(3626,20688,'scope','notice'),(3627,22137,'scope','notice'),(3628,22137,'scope','security'),(3629,20689,'scope','notice'),(3630,22138,'scope','notice'),(3631,20690,'scope','capacity'),(3632,20690,'scope','performance'),(3633,22139,'scope','availability'),(3634,20691,'scope','performance'),(3635,20692,'scope','availability'),(3636,20692,'scope','performance'),(3637,20693,'scope','availability'),(3638,20693,'scope','performance'),(3639,20694,'scope','availability'),(3640,20694,'scope','performance'),(3641,20695,'scope','availability'),(3642,20695,'scope','performance'),(3643,20696,'scope','availability'),(3644,20696,'scope','performance'),(3645,20697,'scope','availability'),(3646,20697,'scope','performance'),(3647,20698,'scope','availability'),(3648,20698,'scope','performance'),(3649,20699,'scope','availability'),(3650,20699,'scope','performance'),(3651,20700,'scope','availability'),(3652,20700,'scope','performance'),(3653,20701,'scope','availability'),(3654,20701,'scope','performance'),(3655,20702,'scope','availability'),(3656,20702,'scope','performance'),(3657,22140,'scope','performance'),(3658,22141,'scope','performance'),(3659,22142,'scope','availability'),(3660,22142,'scope','performance'),(3661,22143,'scope','availability'),(3662,20703,'scope','availability'),(3663,20703,'scope','capacity'),(3664,20704,'scope','availability'),(3665,20704,'scope','capacity'),(3666,22144,'scope','availability'),(3667,22145,'scope','availability'),(3668,22145,'scope','performance'),(3669,22146,'scope','availability'),(3670,22146,'scope','performance'),(3671,20715,'scope','notice'),(3672,20716,'scope','notice'),(3673,22147,'scope','notice'),(3674,22147,'scope','security'),(3675,20717,'scope','notice'),(3676,22148,'scope','notice'),(3677,20718,'scope','capacity'),(3678,20718,'scope','performance'),(3679,22149,'scope','availability'),(3680,20719,'scope','performance'),(3681,20720,'scope','availability'),(3682,20720,'scope','performance'),(3683,20721,'scope','availability'),(3684,20721,'scope','performance'),(3685,20722,'scope','availability'),(3686,20722,'scope','performance'),(3687,20723,'scope','availability'),(3688,20723,'scope','performance'),(3689,20724,'scope','availability'),(3690,20724,'scope','performance'),(3691,20725,'scope','availability'),(3692,20725,'scope','performance'),(3693,20726,'scope','availability'),(3694,20726,'scope','performance'),(3695,20727,'scope','availability'),(3696,20727,'scope','performance'),(3697,20728,'scope','availability'),(3698,20728,'scope','performance'),(3699,20729,'scope','availability'),(3700,20729,'scope','performance'),(3701,20730,'scope','availability'),(3702,20730,'scope','performance'),(3703,22150,'scope','performance'),(3704,22151,'scope','performance'),(3705,22152,'scope','availability'),(3706,22152,'scope','performance'),(3707,22153,'scope','availability'),(3708,20731,'scope','availability'),(3709,20731,'scope','capacity'),(3710,20732,'scope','availability'),(3711,20732,'scope','capacity'),(3712,22154,'scope','availability'),(3713,22155,'scope','availability'),(3714,22155,'scope','performance'),(3715,22156,'scope','availability'),(3716,22156,'scope','performance'),(3717,20743,'scope','notice'),(3718,20744,'scope','notice'),(3719,22157,'scope','notice'),(3720,22157,'scope','security'),(3721,20745,'scope','notice'),(3722,22158,'scope','notice'),(3723,20746,'scope','capacity'),(3724,20746,'scope','performance'),(3725,22159,'scope','availability'),(3726,20747,'scope','performance'),(3727,20748,'scope','availability'),(3728,20748,'scope','performance'),(3729,20749,'scope','availability'),(3730,20749,'scope','performance'),(3731,20750,'scope','availability'),(3732,20750,'scope','performance'),(3733,20751,'scope','availability'),(3734,20751,'scope','performance'),(3735,20752,'scope','availability'),(3736,20752,'scope','performance'),(3737,20753,'scope','availability'),(3738,20753,'scope','performance'),(3739,20754,'scope','availability'),(3740,20754,'scope','performance'),(3741,20755,'scope','availability'),(3742,20755,'scope','performance'),(3743,20756,'scope','availability'),(3744,20756,'scope','performance'),(3745,20757,'scope','availability'),(3746,20757,'scope','performance'),(3747,20758,'scope','availability'),(3748,20758,'scope','performance'),(3749,22160,'scope','performance'),(3750,22161,'scope','performance'),(3751,22162,'scope','availability'),(3752,22162,'scope','performance'),(3753,22163,'scope','availability'),(3754,20759,'scope','availability'),(3755,20759,'scope','capacity'),(3756,20760,'scope','availability'),(3757,20760,'scope','capacity'),(3758,22164,'scope','availability'),(3759,22165,'scope','availability'),(3760,22165,'scope','performance'),(3761,22166,'scope','availability'),(3762,22166,'scope','performance'),(3763,20771,'scope','notice'),(3764,20772,'scope','notice'),(3765,22167,'scope','notice'),(3766,22167,'scope','security'),(3767,20773,'scope','notice'),(3768,22168,'scope','notice'),(3769,20774,'scope','capacity'),(3770,20774,'scope','performance'),(3771,22169,'scope','availability'),(3772,20775,'scope','performance'),(3773,20776,'scope','availability'),(3774,20776,'scope','performance'),(3775,20777,'scope','availability'),(3776,20777,'scope','performance'),(3777,20778,'scope','availability'),(3778,20778,'scope','performance'),(3779,20779,'scope','availability'),(3780,20779,'scope','performance'),(3781,20780,'scope','availability'),(3782,20780,'scope','performance'),(3783,20781,'scope','availability'),(3784,20781,'scope','performance'),(3785,20782,'scope','availability'),(3786,20782,'scope','performance'),(3787,20783,'scope','availability'),(3788,20783,'scope','performance'),(3789,20784,'scope','availability'),(3790,20784,'scope','performance'),(3791,20785,'scope','availability'),(3792,20785,'scope','performance'),(3793,20786,'scope','availability'),(3794,20786,'scope','performance'),(3795,22170,'scope','performance'),(3796,22171,'scope','performance'),(3797,22172,'scope','availability'),(3798,22172,'scope','performance'),(3799,22173,'scope','availability'),(3800,20787,'scope','availability'),(3801,20787,'scope','capacity'),(3802,20788,'scope','availability'),(3803,20788,'scope','capacity'),(3804,22174,'scope','availability'),(3805,22175,'scope','availability'),(3806,22175,'scope','performance'),(3807,22176,'scope','availability'),(3808,22176,'scope','performance'),(3809,20799,'scope','notice'),(3810,20800,'scope','notice'),(3811,22177,'scope','notice'),(3812,22177,'scope','security'),(3813,20801,'scope','notice'),(3814,22178,'scope','notice'),(3815,20802,'scope','capacity'),(3816,20802,'scope','performance'),(3817,22179,'scope','availability'),(3818,20803,'scope','performance'),(3819,20804,'scope','availability'),(3820,20804,'scope','performance'),(3821,20805,'scope','availability'),(3822,20805,'scope','performance'),(3823,20806,'scope','availability'),(3824,20806,'scope','performance'),(3825,20807,'scope','availability'),(3826,20807,'scope','performance'),(3827,20808,'scope','availability'),(3828,20808,'scope','performance'),(3829,20809,'scope','availability'),(3830,20809,'scope','performance'),(3831,20810,'scope','availability'),(3832,20810,'scope','performance'),(3833,20811,'scope','availability'),(3834,20811,'scope','performance'),(3835,20812,'scope','availability'),(3836,20812,'scope','performance'),(3837,20813,'scope','availability'),(3838,20813,'scope','performance'),(3839,20814,'scope','availability'),(3840,20814,'scope','performance'),(3841,22180,'scope','performance'),(3842,22181,'scope','performance'),(3843,22182,'scope','availability'),(3844,22182,'scope','performance'),(3845,22183,'scope','availability'),(3846,20815,'scope','availability'),(3847,20815,'scope','capacity'),(3848,20816,'scope','availability'),(3849,20816,'scope','capacity'),(3850,22184,'scope','availability'),(3851,22185,'scope','availability'),(3852,22185,'scope','performance'),(3853,22186,'scope','availability'),(3854,22186,'scope','performance'),(3855,20827,'scope','notice'),(3856,20828,'scope','notice'),(3857,22187,'scope','notice'),(3858,22187,'scope','security'),(3859,20829,'scope','notice'),(3860,22188,'scope','notice'),(3861,20830,'scope','capacity'),(3862,20830,'scope','performance'),(3863,22189,'scope','availability'),(3864,20831,'scope','performance'),(3865,20832,'scope','availability'),(3866,20832,'scope','performance'),(3867,20833,'scope','availability'),(3868,20833,'scope','performance'),(3869,20834,'scope','availability'),(3870,20834,'scope','performance'),(3871,20835,'scope','availability'),(3872,20835,'scope','performance'),(3873,20836,'scope','availability'),(3874,20836,'scope','performance'),(3875,20837,'scope','availability'),(3876,20837,'scope','performance'),(3877,20838,'scope','availability'),(3878,20838,'scope','performance'),(3879,20839,'scope','availability'),(3880,20839,'scope','performance'),(3881,20840,'scope','availability'),(3882,20840,'scope','performance'),(3883,20841,'scope','availability'),(3884,20841,'scope','performance'),(3885,20842,'scope','availability'),(3886,20842,'scope','performance'),(3887,22190,'scope','performance'),(3888,22191,'scope','performance'),(3889,22192,'scope','availability'),(3890,22192,'scope','performance'),(3891,22193,'scope','availability'),(3892,20843,'scope','availability'),(3893,20843,'scope','capacity'),(3894,20844,'scope','availability'),(3895,20844,'scope','capacity'),(3896,22194,'scope','availability'),(3897,22195,'scope','availability'),(3898,22195,'scope','performance'),(3899,22196,'scope','availability'),(3900,22196,'scope','performance'),(3901,20855,'scope','notice'),(3902,20856,'scope','notice'),(3903,22197,'scope','notice'),(3904,22197,'scope','security'),(3905,20857,'scope','notice'),(3906,22198,'scope','notice'),(3907,20858,'scope','capacity'),(3908,20858,'scope','performance'),(3909,22199,'scope','availability'),(3910,20859,'scope','performance'),(3911,20860,'scope','availability'),(3912,20860,'scope','performance'),(3913,20861,'scope','availability'),(3914,20861,'scope','performance'),(3915,20862,'scope','availability'),(3916,20862,'scope','performance'),(3917,20863,'scope','availability'),(3918,20863,'scope','performance'),(3919,20864,'scope','availability'),(3920,20864,'scope','performance'),(3921,20865,'scope','availability'),(3922,20865,'scope','performance'),(3923,20866,'scope','availability'),(3924,20866,'scope','performance'),(3925,20867,'scope','availability'),(3926,20867,'scope','performance'),(3927,20868,'scope','availability'),(3928,20868,'scope','performance'),(3929,20869,'scope','availability'),(3930,20869,'scope','performance'),(3931,20870,'scope','availability'),(3932,20870,'scope','performance'),(3933,22200,'scope','performance'),(3934,22201,'scope','performance'),(3935,22202,'scope','availability'),(3936,22202,'scope','performance'),(3937,22203,'scope','availability'),(3938,20871,'scope','availability'),(3939,20871,'scope','capacity'),(3940,20872,'scope','availability'),(3941,20872,'scope','capacity'),(3942,22204,'scope','availability'),(3943,22205,'scope','availability'),(3944,22205,'scope','performance'),(3945,22206,'scope','availability'),(3946,22206,'scope','performance'),(3947,20883,'scope','notice'),(3948,20884,'scope','notice'),(3949,22207,'scope','notice'),(3950,22207,'scope','security'),(3951,20885,'scope','notice'),(3952,22208,'scope','notice'),(3953,20886,'scope','capacity'),(3954,20886,'scope','performance'),(3955,22209,'scope','availability'),(3956,20887,'scope','performance'),(3957,20888,'scope','availability'),(3958,20888,'scope','performance'),(3959,20889,'scope','availability'),(3960,20889,'scope','performance'),(3961,20890,'scope','availability'),(3962,20890,'scope','performance'),(3963,20891,'scope','availability'),(3964,20891,'scope','performance'),(3965,20892,'scope','availability'),(3966,20892,'scope','performance'),(3967,20893,'scope','availability'),(3968,20893,'scope','performance'),(3969,20894,'scope','availability'),(3970,20894,'scope','performance'),(3971,20895,'scope','availability'),(3972,20895,'scope','performance'),(3973,20896,'scope','availability'),(3974,20896,'scope','performance'),(3975,20897,'scope','availability'),(3976,20897,'scope','performance'),(3977,20898,'scope','availability'),(3978,20898,'scope','performance'),(3979,22210,'scope','performance'),(3980,22211,'scope','performance'),(3981,22212,'scope','availability'),(3982,22212,'scope','performance'),(3983,22213,'scope','availability'),(3984,20899,'scope','availability'),(3985,20899,'scope','capacity'),(3986,20900,'scope','availability'),(3987,20900,'scope','capacity'),(3988,22214,'scope','availability'),(3989,22215,'scope','availability'),(3990,22215,'scope','performance'),(3991,22216,'scope','availability'),(3992,22216,'scope','performance'),(3993,20911,'scope','notice'),(3994,20912,'scope','notice'),(3995,22217,'scope','notice'),(3996,22217,'scope','security'),(3997,20913,'scope','notice'),(3998,22218,'scope','notice'),(3999,20914,'scope','capacity'),(4000,20914,'scope','performance'),(4001,22219,'scope','availability'),(4002,20915,'scope','performance'),(4003,20916,'scope','availability'),(4004,20916,'scope','performance'),(4005,20917,'scope','availability'),(4006,20917,'scope','performance'),(4007,20918,'scope','availability'),(4008,20918,'scope','performance'),(4009,20919,'scope','availability'),(4010,20919,'scope','performance'),(4011,20920,'scope','availability'),(4012,20920,'scope','performance'),(4013,20921,'scope','availability'),(4014,20921,'scope','performance'),(4015,20922,'scope','availability'),(4016,20922,'scope','performance'),(4017,20923,'scope','availability'),(4018,20923,'scope','performance'),(4019,20924,'scope','availability'),(4020,20924,'scope','performance'),(4021,20925,'scope','availability'),(4022,20925,'scope','performance'),(4023,20926,'scope','availability'),(4024,20926,'scope','performance'),(4025,22220,'scope','performance'),(4026,22221,'scope','performance'),(4027,22222,'scope','availability'),(4028,22222,'scope','performance'),(4029,22223,'scope','availability'),(4030,20927,'scope','availability'),(4031,20927,'scope','capacity'),(4032,20928,'scope','availability'),(4033,20928,'scope','capacity'),(4034,22224,'scope','availability'),(4035,22225,'scope','availability'),(4036,22225,'scope','performance'),(4037,22226,'scope','availability'),(4038,22226,'scope','performance'),(4039,20939,'scope','notice'),(4040,20940,'scope','notice'),(4041,22227,'scope','notice'),(4042,22227,'scope','security'),(4043,20941,'scope','notice'),(4044,22228,'scope','notice'),(4045,20942,'scope','capacity'),(4046,20942,'scope','performance'),(4047,22229,'scope','availability'),(4048,20943,'scope','performance'),(4049,20944,'scope','availability'),(4050,20944,'scope','performance'),(4051,20945,'scope','availability'),(4052,20945,'scope','performance'),(4053,20946,'scope','availability'),(4054,20946,'scope','performance'),(4055,20947,'scope','availability'),(4056,20947,'scope','performance'),(4057,20948,'scope','availability'),(4058,20948,'scope','performance'),(4059,20949,'scope','availability'),(4060,20949,'scope','performance'),(4061,20950,'scope','availability'),(4062,20950,'scope','performance'),(4063,20951,'scope','availability'),(4064,20951,'scope','performance'),(4065,20952,'scope','availability'),(4066,20952,'scope','performance'),(4067,20953,'scope','availability'),(4068,20953,'scope','performance'),(4069,20954,'scope','availability'),(4070,20954,'scope','performance'),(4071,22230,'scope','performance'),(4072,22231,'scope','performance'),(4073,22232,'scope','availability'),(4074,22232,'scope','performance'),(4075,22233,'scope','availability'),(4076,20955,'scope','availability'),(4077,20955,'scope','capacity'),(4078,20956,'scope','availability'),(4079,20956,'scope','capacity'),(4080,22234,'scope','availability'),(4081,22235,'scope','availability'),(4082,22235,'scope','performance'),(4083,22236,'scope','availability'),(4084,22236,'scope','performance'),(4085,20967,'scope','notice'),(4086,20968,'scope','notice'),(4087,22237,'scope','notice'),(4088,22237,'scope','security'),(4089,20969,'scope','notice'),(4090,22238,'scope','notice'),(4091,20970,'scope','capacity'),(4092,20970,'scope','performance'),(4093,22239,'scope','availability'),(4094,20971,'scope','performance'),(4095,20972,'scope','availability'),(4096,20972,'scope','performance'),(4097,20973,'scope','availability'),(4098,20973,'scope','performance'),(4099,20974,'scope','availability'),(4100,20974,'scope','performance'),(4101,20975,'scope','availability'),(4102,20975,'scope','performance'),(4103,20976,'scope','availability'),(4104,20976,'scope','performance'),(4105,20977,'scope','availability'),(4106,20977,'scope','performance'),(4107,20978,'scope','availability'),(4108,20978,'scope','performance'),(4109,20979,'scope','availability'),(4110,20979,'scope','performance'),(4111,20980,'scope','availability'),(4112,20980,'scope','performance'),(4113,20981,'scope','availability'),(4114,20981,'scope','performance'),(4115,20982,'scope','availability'),(4116,20982,'scope','performance'),(4117,22240,'scope','performance'),(4118,22241,'scope','performance'),(4119,22242,'scope','availability'),(4120,22242,'scope','performance'),(4121,22243,'scope','availability'),(4122,20983,'scope','availability'),(4123,20983,'scope','capacity'),(4124,20984,'scope','availability'),(4125,20984,'scope','capacity'),(4126,22244,'scope','availability'),(4127,22245,'scope','availability'),(4128,22245,'scope','performance'),(4129,22246,'scope','availability'),(4130,22246,'scope','performance'),(4131,20995,'scope','notice'),(4132,20996,'scope','notice'),(4133,22247,'scope','notice'),(4134,22247,'scope','security'),(4135,20997,'scope','notice'),(4136,22248,'scope','notice'),(4137,20998,'scope','capacity'),(4138,20998,'scope','performance'),(4139,22249,'scope','availability'),(4140,20999,'scope','performance'),(4141,21000,'scope','availability'),(4142,21000,'scope','performance'),(4143,21001,'scope','availability'),(4144,21001,'scope','performance'),(4145,21002,'scope','availability'),(4146,21002,'scope','performance'),(4147,21003,'scope','availability'),(4148,21003,'scope','performance'),(4149,21004,'scope','availability'),(4150,21004,'scope','performance'),(4151,21005,'scope','availability'),(4152,21005,'scope','performance'),(4153,21006,'scope','availability'),(4154,21006,'scope','performance'),(4155,21007,'scope','availability'),(4156,21007,'scope','performance'),(4157,21008,'scope','availability'),(4158,21008,'scope','performance'),(4159,21009,'scope','availability'),(4160,21009,'scope','performance'),(4161,21010,'scope','availability'),(4162,21010,'scope','performance'),(4163,22250,'scope','performance'),(4164,22251,'scope','performance'),(4165,22252,'scope','availability'),(4166,22252,'scope','performance'),(4167,22253,'scope','availability'),(4168,21011,'scope','availability'),(4169,21011,'scope','capacity'),(4170,21012,'scope','availability'),(4171,21012,'scope','capacity'),(4172,22254,'scope','availability'),(4173,22255,'scope','availability'),(4174,22255,'scope','performance'),(4175,22256,'scope','availability'),(4176,22256,'scope','performance'),(4177,21023,'scope','notice'),(4178,21024,'scope','notice'),(4179,22257,'scope','notice'),(4180,22257,'scope','security'),(4181,21025,'scope','notice'),(4182,22258,'scope','notice'),(4183,21026,'scope','capacity'),(4184,21026,'scope','performance'),(4185,22259,'scope','availability'),(4186,21027,'scope','performance'),(4187,21028,'scope','availability'),(4188,21028,'scope','performance'),(4189,21029,'scope','availability'),(4190,21029,'scope','performance'),(4191,21030,'scope','availability'),(4192,21030,'scope','performance'),(4193,21031,'scope','availability'),(4194,21031,'scope','performance'),(4195,21032,'scope','availability'),(4196,21032,'scope','performance'),(4197,21033,'scope','availability'),(4198,21033,'scope','performance'),(4199,21034,'scope','availability'),(4200,21034,'scope','performance'),(4201,21035,'scope','availability'),(4202,21035,'scope','performance'),(4203,21036,'scope','availability'),(4204,21036,'scope','performance'),(4205,21037,'scope','availability'),(4206,21037,'scope','performance'),(4207,21038,'scope','availability'),(4208,21038,'scope','performance'),(4209,22260,'scope','performance'),(4210,22261,'scope','performance'),(4211,22262,'scope','availability'),(4212,22262,'scope','performance'),(4213,22263,'scope','availability'),(4214,21039,'scope','availability'),(4215,21039,'scope','capacity'),(4216,21040,'scope','availability'),(4217,21040,'scope','capacity'),(4218,22264,'scope','availability'),(4219,22265,'scope','availability'),(4220,22265,'scope','performance'),(4221,22266,'scope','availability'),(4222,22266,'scope','performance'),(4223,21051,'scope','notice'),(4224,21052,'scope','notice'),(4225,22267,'scope','notice'),(4226,22267,'scope','security'),(4227,21053,'scope','notice'),(4228,22268,'scope','notice'),(4229,21054,'scope','capacity'),(4230,21054,'scope','performance'),(4231,22269,'scope','availability'),(4232,21055,'scope','performance'),(4233,21056,'scope','availability'),(4234,21056,'scope','performance'),(4235,21057,'scope','availability'),(4236,21057,'scope','performance'),(4237,21058,'scope','availability'),(4238,21058,'scope','performance'),(4239,21059,'scope','availability'),(4240,21059,'scope','performance'),(4241,21060,'scope','availability'),(4242,21060,'scope','performance'),(4243,21061,'scope','availability'),(4244,21061,'scope','performance'),(4245,21062,'scope','availability'),(4246,21062,'scope','performance'),(4247,21063,'scope','availability'),(4248,21063,'scope','performance'),(4249,21064,'scope','availability'),(4250,21064,'scope','performance'),(4251,21065,'scope','availability'),(4252,21065,'scope','performance'),(4253,21066,'scope','availability'),(4254,21066,'scope','performance'),(4255,22270,'scope','performance'),(4256,22271,'scope','performance'),(4257,22272,'scope','availability'),(4258,22272,'scope','performance'),(4259,22273,'scope','availability'),(4260,21067,'scope','availability'),(4261,21067,'scope','capacity'),(4262,21068,'scope','availability'),(4263,21068,'scope','capacity'),(4264,22274,'scope','availability'),(4265,22275,'scope','availability'),(4266,22275,'scope','performance'),(4267,22276,'scope','availability'),(4268,22276,'scope','performance'),(4269,21079,'scope','notice'),(4270,21080,'scope','notice'),(4271,22277,'scope','notice'),(4272,22277,'scope','security'),(4273,21081,'scope','notice'),(4274,22278,'scope','notice'),(4275,21082,'scope','capacity'),(4276,21082,'scope','performance'),(4277,22279,'scope','availability'),(4278,21083,'scope','performance'),(4279,21084,'scope','availability'),(4280,21084,'scope','performance'),(4281,21085,'scope','availability'),(4282,21085,'scope','performance'),(4283,21086,'scope','availability'),(4284,21086,'scope','performance'),(4285,21087,'scope','availability'),(4286,21087,'scope','performance'),(4287,21088,'scope','availability'),(4288,21088,'scope','performance'),(4289,21089,'scope','availability'),(4290,21089,'scope','performance'),(4291,21090,'scope','availability'),(4292,21090,'scope','performance'),(4293,21091,'scope','availability'),(4294,21091,'scope','performance'),(4295,21092,'scope','availability'),(4296,21092,'scope','performance'),(4297,21093,'scope','availability'),(4298,21093,'scope','performance'),(4299,21094,'scope','availability'),(4300,21094,'scope','performance'),(4301,22280,'scope','performance'),(4302,22281,'scope','performance'),(4303,22282,'scope','availability'),(4304,22282,'scope','performance'),(4305,22283,'scope','availability'),(4306,21095,'scope','availability'),(4307,21095,'scope','capacity'),(4308,21096,'scope','availability'),(4309,21096,'scope','capacity'),(4310,22284,'scope','availability'),(4311,22285,'scope','availability'),(4312,22285,'scope','performance'),(4313,22286,'scope','availability'),(4314,22286,'scope','performance'),(4315,21107,'scope','notice'),(4316,21108,'scope','notice'),(4317,22287,'scope','notice'),(4318,22287,'scope','security'),(4319,21109,'scope','notice'),(4320,22288,'scope','notice'),(4321,21110,'scope','capacity'),(4322,21110,'scope','performance'),(4323,22289,'scope','availability'),(4324,21111,'scope','performance'),(4325,21112,'scope','availability'),(4326,21112,'scope','performance'),(4327,21113,'scope','availability'),(4328,21113,'scope','performance'),(4329,21114,'scope','availability'),(4330,21114,'scope','performance'),(4331,21115,'scope','availability'),(4332,21115,'scope','performance'),(4333,21116,'scope','availability'),(4334,21116,'scope','performance'),(4335,21117,'scope','availability'),(4336,21117,'scope','performance'),(4337,21118,'scope','availability'),(4338,21118,'scope','performance'),(4339,21119,'scope','availability'),(4340,21119,'scope','performance'),(4341,21120,'scope','availability'),(4342,21120,'scope','performance'),(4343,21121,'scope','availability'),(4344,21121,'scope','performance'),(4345,21122,'scope','availability'),(4346,21122,'scope','performance'),(4347,22290,'scope','performance'),(4348,22291,'scope','performance'),(4349,22292,'scope','availability'),(4350,22292,'scope','performance'),(4351,22293,'scope','availability'),(4352,21123,'scope','availability'),(4353,21123,'scope','capacity'),(4354,21124,'scope','availability'),(4355,21124,'scope','capacity'),(4356,22294,'scope','availability'),(4357,22295,'scope','availability'),(4358,22295,'scope','performance'),(4359,22296,'scope','availability'),(4360,22296,'scope','performance'),(4361,21135,'scope','notice'),(4362,21136,'scope','notice'),(4363,22297,'scope','notice'),(4364,22297,'scope','security'),(4365,21137,'scope','notice'),(4366,22298,'scope','notice'),(4367,21138,'scope','capacity'),(4368,21138,'scope','performance'),(4369,22299,'scope','availability'),(4370,21139,'scope','performance'),(4371,21140,'scope','availability'),(4372,21140,'scope','performance'),(4373,21141,'scope','availability'),(4374,21141,'scope','performance'),(4375,21142,'scope','availability'),(4376,21142,'scope','performance'),(4377,21143,'scope','availability'),(4378,21143,'scope','performance'),(4379,21144,'scope','availability'),(4380,21144,'scope','performance'),(4381,21145,'scope','availability'),(4382,21145,'scope','performance'),(4383,21146,'scope','availability'),(4384,21146,'scope','performance'),(4385,21147,'scope','availability'),(4386,21147,'scope','performance'),(4387,21148,'scope','availability'),(4388,21148,'scope','performance'),(4389,21149,'scope','availability'),(4390,21149,'scope','performance'),(4391,21150,'scope','availability'),(4392,21150,'scope','performance'),(4393,22300,'scope','performance'),(4394,22301,'scope','performance'),(4395,22302,'scope','availability'),(4396,22302,'scope','performance'),(4397,22303,'scope','availability'),(4398,21151,'scope','availability'),(4399,21151,'scope','capacity'),(4400,21152,'scope','availability'),(4401,21152,'scope','capacity'),(4402,22304,'scope','availability'),(4403,22305,'scope','availability'),(4404,22305,'scope','performance'),(4405,22306,'scope','availability'),(4406,22306,'scope','performance'),(4407,21163,'scope','notice'),(4408,21164,'scope','notice'),(4409,22307,'scope','notice'),(4410,22307,'scope','security'),(4411,21165,'scope','notice'),(4412,22308,'scope','notice'),(4413,21166,'scope','capacity'),(4414,21166,'scope','performance'),(4415,22309,'scope','availability'),(4416,21167,'scope','performance'),(4417,21168,'scope','availability'),(4418,21168,'scope','performance'),(4419,21169,'scope','availability'),(4420,21169,'scope','performance'),(4421,21170,'scope','availability'),(4422,21170,'scope','performance'),(4423,21171,'scope','availability'),(4424,21171,'scope','performance'),(4425,21172,'scope','availability'),(4426,21172,'scope','performance'),(4427,21173,'scope','availability'),(4428,21173,'scope','performance'),(4429,21174,'scope','availability'),(4430,21174,'scope','performance'),(4431,21175,'scope','availability'),(4432,21175,'scope','performance'),(4433,21176,'scope','availability'),(4434,21176,'scope','performance'),(4435,21177,'scope','availability'),(4436,21177,'scope','performance'),(4437,21178,'scope','availability'),(4438,21178,'scope','performance'),(4439,22310,'scope','performance'),(4440,22311,'scope','performance'),(4441,22312,'scope','availability'),(4442,22312,'scope','performance'),(4443,22313,'scope','availability'),(4444,21179,'scope','availability'),(4445,21179,'scope','capacity'),(4446,21180,'scope','availability'),(4447,21180,'scope','capacity'),(4448,22314,'scope','availability'),(4449,22315,'scope','availability'),(4450,22315,'scope','performance'),(4451,22316,'scope','availability'),(4452,22316,'scope','performance'),(4453,14662,'scope','notice'),(4454,14661,'scope','notice'),(4455,22317,'scope','notice'),(4456,22317,'scope','security'),(4457,16543,'scope','notice'),(4458,22318,'scope','notice'),(4459,18125,'scope','capacity'),(4460,18125,'scope','performance'),(4461,22319,'scope','availability'),(4462,16545,'scope','performance'),(4463,14665,'scope','availability'),(4464,14665,'scope','performance'),(4465,14664,'scope','availability'),(4466,14664,'scope','performance'),(4467,14666,'scope','availability'),(4468,14666,'scope','performance'),(4469,17086,'scope','availability'),(4470,17086,'scope','performance'),(4471,17085,'scope','availability'),(4472,17085,'scope','performance'),(4473,17087,'scope','availability'),(4474,17087,'scope','performance'),(4475,17406,'scope','availability'),(4476,17406,'scope','performance'),(4477,17407,'scope','availability'),(4478,17407,'scope','performance'),(4479,17408,'scope','availability'),(4480,17408,'scope','performance'),(4481,17409,'scope','availability'),(4482,17409,'scope','performance'),(4483,17088,'scope','availability'),(4484,17088,'scope','performance'),(4485,22320,'scope','performance'),(4486,22321,'scope','performance'),(4487,22322,'scope','availability'),(4488,22322,'scope','performance'),(4489,22323,'scope','availability'),(4490,16546,'scope','availability'),(4491,16546,'scope','capacity'),(4492,16547,'scope','availability'),(4493,16547,'scope','capacity'),(4494,17575,'scope','notice'),(4495,17576,'scope','notice'),(4496,17577,'scope','notice'),(4497,17578,'scope','notice'),(4498,17579,'scope','notice'),(4499,17580,'scope','notice'),(4500,17581,'scope','notice'),(4501,17582,'scope','notice'),(4502,17583,'scope','notice'),(4503,17584,'scope','notice'),(4504,17585,'scope','notice'),(4505,17586,'scope','notice'),(4506,17587,'scope','notice'),(4507,17588,'scope','notice'),(4508,17589,'scope','notice'),(4509,17590,'scope','notice'),(4510,17591,'scope','notice'),(4511,17592,'scope','notice'),(4512,17593,'scope','notice'),(4513,17594,'scope','notice'),(4514,17595,'scope','notice'),(4515,17596,'scope','notice'),(4516,17597,'scope','notice'),(4517,17598,'scope','notice'),(4518,17599,'scope','notice'),(4519,17600,'scope','notice'),(4520,17601,'scope','notice'),(4521,17602,'scope','notice'),(4522,17603,'scope','notice'),(4523,17604,'scope','notice'),(4524,17605,'scope','notice'),(4525,17606,'scope','notice'),(4526,17607,'scope','notice'),(4527,17608,'scope','notice'),(4528,17609,'scope','notice'),(4529,17610,'scope','notice'),(4530,17611,'scope','notice'),(4531,17612,'scope','notice'),(4532,17613,'scope','notice'),(4533,17614,'scope','notice'),(4534,17615,'scope','notice'),(4535,17616,'scope','notice'),(4536,17617,'scope','notice'),(4537,17618,'scope','notice'),(4538,17619,'scope','notice'),(4539,17620,'scope','notice'),(4540,17621,'scope','notice'),(4541,17622,'scope','notice'),(4542,17623,'scope','notice'),(4543,17624,'scope','notice'),(4544,17625,'scope','availability'),(4545,17626,'scope','notice'),(4546,17627,'scope','notice'),(4547,17628,'scope','notice'),(4548,17629,'scope','notice'),(4549,17630,'scope','capacity'),(4550,17631,'scope','capacity'),(4551,17632,'scope','capacity'),(4552,17633,'scope','capacity'),(4553,17634,'scope','notice'),(4554,17635,'scope','notice'),(4555,17636,'scope','notice'),(4556,17637,'scope','notice'),(4557,17638,'scope','notice'),(4558,17639,'scope','notice'),(4559,17640,'scope','notice'),(4560,17641,'scope','notice'),(4561,17642,'scope','notice'),(4562,17643,'scope','notice'),(4563,17644,'scope','notice'),(4564,17645,'scope','notice'),(4565,17646,'scope','notice'),(4566,17647,'scope','notice'),(4567,17648,'scope','notice'),(4568,17649,'scope','notice'),(4569,17650,'scope','notice'),(4570,17651,'scope','notice'),(4571,17652,'scope','notice'),(4572,17653,'scope','notice'),(4573,17654,'scope','notice'),(4574,17655,'scope','notice'),(4575,17656,'scope','notice'),(4576,17657,'scope','notice'),(4577,17658,'scope','notice'),(4578,17659,'scope','notice'),(4579,17660,'scope','notice'),(4580,17661,'scope','notice'),(4581,17662,'scope','notice'),(4582,17663,'scope','notice'),(4583,17664,'scope','notice'),(4584,17665,'scope','notice'),(4585,17666,'scope','notice'),(4586,17667,'scope','notice'),(4587,17668,'scope','notice'),(4588,17669,'scope','notice'),(4589,17670,'scope','notice'),(4590,17671,'scope','notice'),(4591,17672,'scope','notice'),(4592,17673,'scope','notice'),(4593,17674,'scope','notice'),(4594,17675,'scope','notice'),(4595,17676,'scope','notice'),(4596,17677,'scope','notice'),(4597,17678,'scope','notice'),(4598,17679,'scope','notice'),(4599,17680,'scope','notice'),(4600,17681,'scope','notice'),(4601,17682,'scope','notice'),(4602,17683,'scope','availability'),(4603,17684,'scope','notice'),(4604,17685,'scope','notice'),(4605,17686,'scope','notice'),(4606,17687,'scope','notice'),(4607,17688,'scope','capacity'),(4608,17689,'scope','capacity'),(4609,17690,'scope','capacity'),(4610,17691,'scope','capacity'),(4611,17692,'scope','notice'),(4612,17693,'scope','notice'),(4613,17694,'scope','notice'),(4614,17695,'scope','notice'),(4615,17696,'scope','notice'),(4616,17697,'scope','notice'),(4617,17698,'scope','notice'),(4618,17699,'scope','notice'),(4619,17700,'scope','notice'),(4620,17701,'scope','notice'),(4621,17702,'scope','notice'),(4622,17703,'scope','notice'),(4623,17704,'scope','notice'),(4624,17705,'scope','notice'),(4625,17706,'scope','notice'),(4626,17707,'scope','notice'),(4627,17708,'scope','notice'),(4628,17709,'scope','notice'),(4629,17710,'scope','notice'),(4630,17711,'scope','notice'),(4631,17712,'scope','notice'),(4632,17713,'scope','notice'),(4633,17714,'scope','notice'),(4634,17715,'scope','notice'),(4635,17716,'scope','notice'),(4636,17717,'scope','notice'),(4637,17718,'scope','notice'),(4638,17719,'scope','notice'),(4639,17720,'scope','notice'),(4640,17721,'scope','notice'),(4641,17722,'scope','notice'),(4642,17723,'scope','notice'),(4643,17724,'scope','notice'),(4644,17725,'scope','notice'),(4645,17726,'scope','notice'),(4646,17727,'scope','availability'),(4647,17728,'scope','notice'),(4648,17729,'scope','notice'),(4649,17730,'scope','notice'),(4650,17731,'scope','notice'),(4651,17732,'scope','capacity'),(4652,17733,'scope','capacity'),(4653,17734,'scope','capacity'),(4654,17735,'scope','capacity'),(4655,17736,'scope','notice'),(4656,17737,'scope','notice'),(4657,17738,'scope','notice'),(4658,17739,'scope','notice'),(4659,17740,'scope','notice'),(4660,17741,'scope','notice'),(4661,17742,'scope','notice'),(4662,17743,'scope','notice'),(4663,17744,'scope','notice'),(4664,17745,'scope','notice'),(4665,17746,'scope','notice'),(4666,17747,'scope','notice'),(4667,17748,'scope','notice'),(4668,17749,'scope','notice'),(4669,17750,'scope','notice'),(4670,17751,'scope','availability'),(4671,17752,'scope','capacity'),(4672,17753,'scope','capacity'),(4673,17754,'scope','capacity'),(4674,17755,'scope','capacity'),(4675,17756,'scope','notice'),(4676,17757,'scope','notice'),(4677,17758,'scope','notice'),(4678,17759,'scope','notice'),(4679,17760,'scope','notice'),(4680,17761,'scope','notice'),(4681,17762,'scope','notice'),(4682,17763,'scope','notice'),(4683,17764,'scope','notice'),(4684,17765,'scope','notice'),(4685,17766,'scope','notice'),(4686,17767,'scope','notice'),(4687,17768,'scope','notice'),(4688,17769,'scope','notice'),(4689,17770,'scope','notice'),(4690,17771,'scope','notice'),(4691,17772,'scope','notice'),(4692,17773,'scope','notice'),(4693,17774,'scope','notice'),(4694,17775,'scope','notice'),(4695,17776,'scope','notice'),(4696,17777,'scope','notice'),(4697,17778,'scope','notice'),(4698,17779,'scope','notice'),(4699,17780,'scope','notice'),(4700,17781,'scope','notice'),(4701,17782,'scope','notice'),(4702,17783,'scope','notice'),(4703,17784,'scope','notice'),(4704,17785,'scope','notice'),(4705,17786,'scope','notice'),(4706,17787,'scope','notice'),(4707,17788,'scope','notice'),(4708,17789,'scope','notice'),(4709,17790,'scope','notice'),(4710,17791,'scope','notice'),(4711,17792,'scope','notice'),(4712,17793,'scope','notice'),(4713,17794,'scope','notice'),(4714,17795,'scope','notice'),(4715,17796,'scope','notice'),(4716,17797,'scope','notice'),(4717,17798,'scope','notice'),(4718,17799,'scope','notice'),(4719,17800,'scope','notice'),(4720,17801,'scope','notice'),(4721,17802,'scope','notice'),(4722,17803,'scope','notice'),(4723,17804,'scope','notice'),(4724,17805,'scope','notice'),(4725,17806,'scope','notice'),(4726,17807,'scope','notice'),(4727,17808,'scope','notice'),(4728,17809,'scope','notice'),(4729,17810,'scope','notice'),(4730,17811,'scope','notice'),(4731,17812,'scope','notice'),(4732,17813,'scope','notice'),(4733,17814,'scope','notice'),(4734,17815,'scope','notice'),(4735,17816,'scope','availability'),(4736,17817,'scope','notice'),(4737,17818,'scope','notice'),(4738,17819,'scope','notice'),(4739,17820,'scope','notice'),(4740,17821,'scope','capacity'),(4741,17822,'scope','capacity'),(4742,17823,'scope','capacity'),(4743,17824,'scope','capacity'),(4744,17825,'scope','notice'),(4745,17826,'scope','notice'),(4746,17827,'scope','notice'),(4747,17828,'scope','notice'),(4748,17829,'scope','notice'),(4749,17830,'scope','notice'),(4750,17831,'scope','notice'),(4751,17832,'scope','notice'),(4752,17833,'scope','notice'),(4753,17834,'scope','notice'),(4754,17835,'scope','notice'),(4755,17836,'scope','notice'),(4756,17837,'scope','notice'),(4757,17838,'scope','notice'),(4758,17839,'scope','notice'),(4759,17840,'scope','notice'),(4760,17841,'scope','notice'),(4761,17842,'scope','notice'),(4762,17843,'scope','notice'),(4763,17844,'scope','notice'),(4764,17845,'scope','notice'),(4765,17846,'scope','notice'),(4766,17847,'scope','notice'),(4767,17848,'scope','notice'),(4768,17849,'scope','notice'),(4769,17850,'scope','notice'),(4770,17851,'scope','notice'),(4771,17852,'scope','notice'),(4772,17853,'scope','notice'),(4773,17854,'scope','notice'),(4774,17855,'scope','notice'),(4775,17856,'scope','notice'),(4776,17857,'scope','availability'),(4777,17858,'scope','notice'),(4778,17859,'scope','notice'),(4779,17860,'scope','notice'),(4780,17861,'scope','notice'),(4781,17862,'scope','capacity'),(4782,17863,'scope','capacity'),(4783,17864,'scope','capacity'),(4784,17865,'scope','capacity'),(4785,17866,'scope','notice'),(4786,17867,'scope','notice'),(4787,17868,'scope','notice'),(4788,17869,'scope','notice'),(4789,17870,'scope','notice'),(4790,17871,'scope','notice'),(4791,17872,'scope','notice'),(4792,17873,'scope','notice'),(4793,17874,'scope','notice'),(4794,17875,'scope','notice'),(4795,17876,'scope','notice'),(4796,17877,'scope','notice'),(4797,17878,'scope','notice'),(4798,17879,'scope','notice'),(4799,17880,'scope','notice'),(4800,17881,'scope','notice'),(4801,17882,'scope','notice'),(4802,17883,'scope','notice'),(4803,17884,'scope','notice'),(4804,17885,'scope','notice'),(4805,17886,'scope','notice'),(4806,17887,'scope','notice'),(4807,17888,'scope','notice'),(4808,17889,'scope','notice'),(4809,17890,'scope','notice'),(4810,17891,'scope','notice'),(4811,17892,'scope','notice'),(4812,17893,'scope','notice'),(4813,17894,'scope','notice'),(4814,17895,'scope','notice'),(4815,17896,'scope','availability'),(4816,17897,'scope','notice'),(4817,17898,'scope','notice'),(4818,17899,'scope','notice'),(4819,17900,'scope','notice'),(4820,17901,'scope','capacity'),(4821,17902,'scope','capacity'),(4822,17903,'scope','capacity'),(4823,17904,'scope','capacity'),(4824,17905,'scope','notice'),(4825,17906,'scope','notice'),(4826,17907,'scope','notice'),(4827,17908,'scope','notice'),(4828,22324,'scope','availability'),(4829,22325,'scope','availability'),(4830,22325,'scope','performance'),(4831,22326,'scope','availability'),(4832,22326,'scope','performance'),(4833,16548,'scope','performance'),(4834,14680,'scope','notice'),(4835,22327,'scope','notice'),(4836,22327,'scope','security'),(4837,16549,'scope','notice'),(4838,22328,'scope','notice'),(4839,18126,'scope','capacity'),(4840,18126,'scope','performance'),(4841,22329,'scope','availability'),(4842,15398,'scope','availability'),(4843,15398,'scope','performance'),(4844,22330,'scope','performance'),(4845,22331,'scope','performance'),(4846,22332,'scope','availability'),(4847,22332,'scope','performance'),(4848,22333,'scope','availability'),(4849,15399,'scope','availability'),(4850,15399,'scope','performance'),(4851,17909,'scope','availability'),(4852,17909,'scope','performance'),(4853,17910,'scope','availability'),(4854,17910,'scope','performance'),(4855,14683,'scope','availability'),(4856,14683,'scope','performance'),(4857,22334,'scope','availability'),(4858,22335,'scope','availability'),(4859,22335,'scope','performance'),(4860,22336,'scope','availability'),(4861,22336,'scope','performance'),(4862,16552,'scope','availability'),(4863,16552,'scope','performance'),(4864,16551,'scope','availability'),(4865,16551,'scope','performance'),(4866,16553,'scope','availability'),(4867,16553,'scope','performance'),(4868,16554,'scope','performance'),(4869,14699,'scope','notice'),(4870,14698,'scope','notice'),(4871,22337,'scope','notice'),(4872,22337,'scope','security'),(4873,16555,'scope','notice'),(4874,22338,'scope','notice'),(4875,18127,'scope','capacity'),(4876,18127,'scope','performance'),(4877,22339,'scope','availability'),(4878,16557,'scope','availability'),(4879,16557,'scope','performance'),(4880,22340,'scope','performance'),(4881,22341,'scope','performance'),(4882,22342,'scope','availability'),(4883,22342,'scope','performance'),(4884,22343,'scope','availability'),(4885,22344,'scope','performance'),(4886,16558,'scope','availability'),(4887,16558,'scope','performance'),(4888,22345,'scope','availability'),(4889,22346,'scope','availability'),(4890,22346,'scope','performance'),(4891,22347,'scope','availability'),(4892,22347,'scope','performance'),(4893,14710,'scope','notice'),(4894,14709,'scope','notice'),(4895,22348,'scope','notice'),(4896,22348,'scope','security'),(4897,22349,'scope','notice'),(4898,22350,'scope','availability'),(4899,16559,'scope','performance'),(4900,18128,'scope','capacity'),(4901,18128,'scope','performance'),(4902,22351,'scope','performance'),(4903,22352,'scope','performance'),(4904,22353,'scope','performance'),(4905,22354,'scope','availability'),(4906,22355,'scope','availability'),(4907,22356,'scope','availability'),(4908,22356,'scope','performance'),(4909,22357,'scope','availability'),(4910,22357,'scope','performance'),(4911,16561,'scope','performance'),(4912,14724,'scope','notice'),(4913,22358,'scope','notice'),(4914,22358,'scope','security'),(4915,22359,'scope','notice'),(4916,18129,'scope','capacity'),(4917,18129,'scope','performance'),(4918,22360,'scope','availability'),(4919,22361,'scope','performance'),(4920,22362,'scope','performance'),(4921,22363,'scope','performance'),(4922,22364,'scope','availability'),(4923,21181,'scope','notice'),(4924,21182,'scope','availability'),(4925,21183,'scope','notice'),(4926,21184,'scope','notice'),(4927,21185,'scope','notice'),(4928,21186,'scope','availability'),(4929,21187,'scope','availability'),(4930,21188,'scope','notice'),(4931,21189,'scope','notice'),(4932,21190,'scope','notice'),(4933,21191,'scope','availability'),(4934,19029,'scope','availability'),(4935,19030,'scope','notice'),(4936,19031,'scope','notice'),(4937,19032,'scope','notice'),(4938,19033,'scope','notice'),(4939,19034,'scope','notice'),(4940,19035,'scope','capacity'),(4941,19036,'scope','capacity'),(4942,19037,'scope','capacity'),(4943,19038,'scope','capacity'),(4944,19039,'scope','notice'),(4945,19040,'scope','notice'),(4946,19041,'scope','notice'),(4947,19042,'scope','notice'),(4948,19043,'scope','availability'),(4949,19044,'scope','performance'),(4950,19045,'scope','notice'),(4951,19046,'scope','notice'),(4952,19047,'scope','notice'),(4953,19048,'scope','notice'),(4954,19049,'scope','performance'),(4955,19050,'scope','notice'),(4956,19051,'scope','notice'),(4957,19052,'scope','notice'),(4958,19053,'scope','notice'),(4959,19054,'scope','notice'),(4960,19055,'scope','notice'),(4961,19056,'scope','availability'),(4962,19057,'scope','performance'),(4963,19058,'scope','notice'),(4964,19059,'scope','notice'),(4965,19060,'scope','notice'),(4966,19061,'scope','notice'),(4967,19062,'scope','notice'),(4968,19063,'scope','notice'),(4969,19064,'scope','notice'),(4970,19065,'scope','notice'),(4971,19066,'scope','availability'),(4972,19067,'scope','notice'),(4973,19068,'scope','notice'),(4974,19069,'scope','performance'),(4975,19070,'scope','performance'),(4976,19071,'scope','notice'),(4977,19072,'scope','performance'),(4978,19073,'scope','capacity'),(4979,19074,'scope','capacity'),(4980,19075,'scope','capacity'),(4981,19076,'scope','capacity'),(4982,19077,'scope','notice'),(4983,19078,'scope','notice'),(4984,19079,'scope','notice'),(4985,19080,'scope','notice'),(4986,19081,'scope','notice'),(4987,19082,'scope','notice'),(4988,19083,'scope','notice'),(4989,19084,'scope','notice'),(4990,19085,'scope','notice'),(4991,19086,'scope','notice'),(4992,19087,'scope','notice'),(4993,19088,'scope','availability'),(4994,19089,'scope','notice'),(4995,19090,'scope','notice'),(4996,19091,'scope','performance'),(4997,19092,'scope','performance'),(4998,19093,'scope','notice'),(4999,19094,'scope','performance'),(5000,19095,'scope','capacity'),(5001,19096,'scope','capacity'),(5002,19097,'scope','capacity'),(5003,19098,'scope','capacity'),(5004,19099,'scope','notice'),(5005,19100,'scope','notice'),(5006,19101,'scope','notice'),(5007,19102,'scope','notice'),(5008,19103,'scope','notice'),(5009,19104,'scope','notice'),(5010,19105,'scope','notice'),(5011,19106,'scope','notice'),(5012,19107,'scope','notice'),(5013,19108,'scope','notice'),(5014,19109,'scope','notice'),(5015,19110,'scope','availability'),(5016,19111,'scope','notice'),(5017,19112,'scope','notice'),(5018,19113,'scope','notice'),(5019,19114,'scope','notice'),(5020,19115,'scope','notice'),(5021,19116,'scope','notice'),(5022,19117,'scope','capacity'),(5023,19118,'scope','capacity'),(5024,19119,'scope','capacity'),(5025,19120,'scope','capacity'),(5026,19121,'scope','notice'),(5027,19122,'scope','notice'),(5028,19123,'scope','notice'),(5029,19124,'scope','notice'),(5030,19125,'scope','availability'),(5031,19126,'scope','performance'),(5032,19127,'scope','notice'),(5033,19128,'scope','notice'),(5034,19129,'scope','notice'),(5035,19130,'scope','notice'),(5036,19131,'scope','notice'),(5037,19132,'scope','notice'),(5038,19133,'scope','notice'),(5039,19134,'scope','notice'),(5040,19135,'scope','availability'),(5041,19136,'scope','performance'),(5042,19137,'scope','notice'),(5043,19138,'scope','notice'),(5044,19139,'scope','notice'),(5045,19140,'scope','notice'),(5046,19141,'scope','performance'),(5047,19142,'scope','notice'),(5048,19143,'scope','notice'),(5049,19144,'scope','notice'),(5050,19145,'scope','notice'),(5051,19146,'scope','notice'),(5052,19147,'scope','notice'),(5053,19148,'scope','availability'),(5054,19149,'scope','performance'),(5055,19150,'scope','notice'),(5056,19151,'scope','notice'),(5057,19152,'scope','notice'),(5058,19153,'scope','notice'),(5059,19154,'scope','performance'),(5060,19155,'scope','notice'),(5061,19156,'scope','notice'),(5062,19157,'scope','notice'),(5063,19158,'scope','notice'),(5064,19159,'scope','notice'),(5065,19160,'scope','notice'),(5066,19161,'scope','availability'),(5067,19162,'scope','performance'),(5068,19163,'scope','notice'),(5069,19164,'scope','notice'),(5070,19165,'scope','notice'),(5071,19166,'scope','notice'),(5072,19167,'scope','notice'),(5073,19168,'scope','notice'),(5074,19169,'scope','notice'),(5075,19170,'scope','notice'),(5076,19171,'scope','notice'),(5077,19172,'scope','notice'),(5078,19173,'scope','notice'),(5079,19174,'scope','availability'),(5080,19175,'scope','performance'),(5081,19176,'scope','notice'),(5082,19177,'scope','notice'),(5083,19178,'scope','notice'),(5084,19179,'scope','notice'),(5085,19180,'scope','notice'),(5086,19181,'scope','notice'),(5087,19182,'scope','notice'),(5088,19183,'scope','notice'),(5089,19184,'scope','notice'),(5090,19185,'scope','notice'),(5091,19186,'scope','notice'),(5092,19187,'scope','availability'),(5093,19188,'scope','performance'),(5094,19189,'scope','notice'),(5095,19190,'scope','capacity'),(5096,19190,'scope','performance'),(5097,19191,'scope','notice'),(5098,19192,'scope','notice'),(5099,19193,'scope','notice'),(5100,19194,'scope','notice'),(5101,19195,'scope','notice'),(5102,19196,'scope','notice'),(5103,19197,'scope','notice'),(5104,19198,'scope','notice'),(5105,19199,'scope','notice'),(5106,19200,'scope','notice'),(5107,19201,'scope','availability'),(5108,19202,'scope','performance'),(5109,19203,'scope','notice'),(5110,19204,'scope','capacity'),(5111,19204,'scope','performance'),(5112,19205,'scope','notice'),(5113,19206,'scope','notice'),(5114,19207,'scope','notice'),(5115,19208,'scope','notice'),(5116,19209,'scope','notice'),(5117,19210,'scope','notice'),(5118,19211,'scope','notice'),(5119,19212,'scope','notice'),(5120,19213,'scope','notice'),(5121,19214,'scope','notice'),(5122,19215,'scope','availability'),(5123,19216,'scope','performance'),(5124,19217,'scope','notice'),(5125,19218,'scope','notice'),(5126,19219,'scope','notice'),(5127,19220,'scope','notice'),(5128,19221,'scope','notice'),(5129,19222,'scope','performance'),(5130,19223,'scope','notice'),(5131,19224,'scope','notice'),(5132,19225,'scope','notice'),(5133,19226,'scope','notice'),(5134,19227,'scope','notice'),(5135,19228,'scope','notice'),(5136,13364,'scope','performance'),(5137,13365,'scope','performance'),(5138,13366,'scope','performance'),(5139,13368,'scope','notice'),(5140,13367,'scope','performance'),(5141,13370,'scope','notice'),(5142,13371,'scope','notice'),(5143,13372,'scope','security'),(5144,17113,'scope','capacity'),(5145,17113,'scope','performance'),(5146,22365,'scope','availability'),(5147,17115,'scope','capacity'),(5148,17115,'scope','performance'),(5149,17114,'scope','capacity'),(5150,17114,'scope','performance'),(5151,17116,'scope','notice'),(5152,17116,'scope','performance'),(5153,17117,'scope','notice'),(5154,17117,'scope','performance'),(5155,13348,'scope','notice'),(5156,13348,'scope','performance'),(5157,13349,'scope','notice'),(5158,13349,'scope','performance'),(5159,13350,'scope','availability'),(5160,13350,'scope','performance'),(5161,13352,'scope','notice'),(5162,17119,'scope','capacity'),(5163,17119,'scope','performance'),(5164,13354,'scope','notice'),(5165,13355,'scope','notice'),(5166,13356,'scope','security'),(5167,17118,'scope','capacity'),(5168,17118,'scope','performance'),(5169,22366,'scope','availability'),(5170,17121,'scope','capacity'),(5171,17121,'scope','performance'),(5172,17120,'scope','capacity'),(5173,17120,'scope','performance'),(5174,13382,'scope','capacity'),(5175,13382,'scope','performance'),(5176,13384,'scope','notice'),(5177,13386,'scope','notice'),(5178,13388,'scope','security'),(5179,17122,'scope','capacity'),(5180,17122,'scope','performance'),(5181,22367,'scope','availability'),(5182,17124,'scope','capacity'),(5183,17124,'scope','performance'),(5184,17123,'scope','capacity'),(5185,17123,'scope','performance'),(5186,22368,'scope','performance'),(5187,22369,'scope','performance'),(5188,22370,'scope','performance'),(5189,22371,'scope','notice'),(5190,22371,'scope','security'),(5191,22372,'scope','availability'),(5192,22372,'scope','performance'),(5193,22373,'scope','notice'),(5194,22374,'scope','notice'),(5195,22375,'scope','security'),(5196,22376,'scope','capacity'),(5197,22376,'scope','performance'),(5198,22377,'scope','availability'),(5199,16031,'scope','performance'),(5200,16038,'scope','performance'),(5201,16039,'scope','performance'),(5202,16579,'scope','notice'),(5203,16579,'scope','security'),(5204,16036,'scope','availability'),(5205,16036,'scope','performance'),(5206,16042,'scope','notice'),(5207,16035,'scope','notice'),(5208,16041,'scope','security'),(5209,18132,'scope','capacity'),(5210,18132,'scope','performance'),(5211,22378,'scope','performance'),(5212,16040,'scope','performance'),(5213,22379,'scope','capacity'),(5214,18130,'scope','capacity'),(5215,22380,'scope','capacity'),(5216,22380,'scope','performance'),(5217,18452,'scope','capacity'),(5218,18452,'scope','performance'),(5219,22381,'scope','capacity'),(5220,22381,'scope','performance'),(5221,16563,'scope','capacity'),(5222,16563,'scope','performance'),(5242,17023,'scope','performance'),(5243,22396,'scope','performance'),(5244,22397,'scope','availability'),(5245,22397,'scope','performance'),(5246,22398,'scope','availability'),(5247,22399,'scope','performance'),(5248,22400,'scope','availability'),(5249,22400,'scope','capacity'),(5250,22401,'scope','availability'),(5251,22401,'scope','capacity'),(5252,22402,'scope','capacity'),(5253,22402,'scope','performance'),(5254,22403,'scope','capacity'),(5255,22403,'scope','performance'),(5256,16069,'scope','availability'),(5257,16069,'scope','capacity'),(5258,16070,'scope','availability'),(5259,16070,'scope','capacity'),(5260,16071,'scope','capacity'),(5261,16071,'scope','performance'),(5262,16072,'scope','capacity'),(5263,16072,'scope','performance'),(5264,16076,'scope','performance'),(5265,18455,'scope','availability'),(5266,18455,'scope','performance'),(5267,17024,'scope','availability'),(5281,22412,'scope','availability'),(5282,22413,'scope','performance'),(5283,22414,'scope','performance'),(5284,22415,'scope','performance'),(5285,22416,'scope','notice'),(5286,22416,'scope','security'),(5287,22417,'scope','availability'),(5288,22417,'scope','performance'),(5289,22418,'scope','notice'),(5290,22419,'scope','notice'),(5291,22420,'scope','security'),(5292,22421,'scope','capacity'),(5293,22421,'scope','performance'),(5294,17244,'scope','performance'),(5295,17245,'scope','performance'),(5296,17246,'scope','performance'),(5297,17247,'scope','notice'),(5298,17247,'scope','security'),(5299,17248,'scope','availability'),(5300,17248,'scope','performance'),(5301,17249,'scope','notice'),(5302,17250,'scope','notice'),(5303,17251,'scope','security'),(5304,18144,'scope','capacity'),(5305,18144,'scope','performance'),(5306,22422,'scope','performance'),(5307,17240,'scope','performance'),(5308,22423,'scope','capacity'),(5309,18142,'scope','capacity'),(5310,22424,'scope','capacity'),(5311,22424,'scope','performance'),(5312,18458,'scope','capacity'),(5313,18458,'scope','performance'),(5314,22425,'scope','capacity'),(5315,22425,'scope','performance'),(5316,17243,'scope','capacity'),(5317,17243,'scope','performance'),(5318,17266,'scope','performance'),(5319,22426,'scope','performance'),(5320,22427,'scope','availability'),(5321,22427,'scope','performance'),(5322,22428,'scope','availability'),(5323,22429,'scope','performance'),(5324,22430,'scope','availability'),(5325,22430,'scope','capacity'),(5326,22431,'scope','availability'),(5327,22431,'scope','capacity'),(5328,22432,'scope','capacity'),(5329,22432,'scope','performance'),(5330,22433,'scope','capacity'),(5331,22433,'scope','performance'),(5332,17267,'scope','availability'),(5333,17267,'scope','capacity'),(5334,17268,'scope','availability'),(5335,17268,'scope','capacity'),(5336,17269,'scope','capacity'),(5337,17269,'scope','performance'),(5338,17270,'scope','capacity'),(5339,17270,'scope','performance'),(5340,17271,'scope','performance'),(5341,18460,'scope','availability'),(5342,18460,'scope','performance'),(5343,17273,'scope','availability'),(5344,16141,'scope','performance'),(5345,16138,'scope','availability'),(5346,16146,'scope','performance'),(5347,16139,'scope','availability'),(5348,16139,'scope','performance'),(5349,16584,'scope','notice'),(5350,16584,'scope','security'),(5351,16143,'scope','notice'),(5352,16144,'scope','notice'),(5353,18152,'scope','capacity'),(5354,18152,'scope','performance'),(5355,18150,'scope','capacity'),(5356,18462,'scope','capacity'),(5357,18462,'scope','performance'),(5358,16573,'scope','capacity'),(5359,16573,'scope','performance'),(5360,16142,'scope','performance'),(5361,16152,'scope','performance'),(5362,16153,'scope','performance'),(5363,18463,'scope','performance'),(5364,18464,'scope','availability'),(5365,18464,'scope','performance'),(5366,16883,'scope','availability'),(5367,16710,'scope','performance'),(5368,16155,'scope','availability'),(5369,16155,'scope','capacity'),(5370,16156,'scope','availability'),(5371,16156,'scope','capacity'),(5372,16157,'scope','capacity'),(5373,16157,'scope','performance'),(5374,16158,'scope','capacity'),(5375,16158,'scope','performance'),(5376,18157,'scope','capacity'),(5377,18157,'scope','performance'),(5378,22434,'scope','availability'),(5379,22435,'scope','availability'),(5380,22435,'scope','performance'),(5381,22436,'scope','availability'),(5382,22436,'scope','performance'),(5383,22437,'scope','notice'),(5384,22437,'scope','security'),(5385,22438,'scope','notice'),(5386,22439,'scope','capacity'),(5387,22439,'scope','performance'),(5388,22440,'scope','availability'),(5389,18155,'scope','capacity'),(5390,22441,'scope','capacity'),(5391,18156,'scope','capacity'),(5392,18156,'scope','performance'),(5393,22442,'scope','capacity'),(5394,22442,'scope','performance'),(5395,16575,'scope','capacity'),(5396,16575,'scope','performance'),(5397,22443,'scope','capacity'),(5398,22443,'scope','performance'),(5399,16007,'scope','performance'),(5400,16008,'scope','availability'),(5401,16008,'scope','capacity'),(5402,16009,'scope','availability'),(5403,16009,'scope','capacity'),(5404,16010,'scope','capacity'),(5405,16010,'scope','performance'),(5406,16011,'scope','capacity'),(5407,16011,'scope','performance'),(5408,22444,'scope','performance'),(5409,22445,'scope','performance'),(5410,22446,'scope','performance'),(5411,22447,'scope','availability'),(5412,22447,'scope','performance'),(5413,22448,'scope','availability'),(5414,22449,'scope','performance'),(5415,22450,'scope','availability'),(5416,22450,'scope','capacity'),(5417,22451,'scope','availability'),(5418,22451,'scope','capacity'),(5419,22452,'scope','capacity'),(5420,22452,'scope','performance'),(5421,22453,'scope','capacity'),(5422,22453,'scope','performance'),(5423,17125,'scope','notice'),(5424,17125,'scope','performance'),(5425,17126,'scope','notice'),(5426,17126,'scope','performance'),(5427,13414,'scope','availability'),(5428,13414,'scope','performance'),(5429,13416,'scope','notice'),(5430,13418,'scope','notice'),(5431,13419,'scope','notice'),(5432,13420,'scope','security'),(5433,17127,'scope','capacity'),(5434,17127,'scope','performance'),(5435,22454,'scope','availability'),(5436,17129,'scope','capacity'),(5437,17129,'scope','performance'),(5438,17128,'scope','capacity'),(5439,17128,'scope','performance'),(5440,17130,'scope','notice'),(5441,17130,'scope','performance'),(5442,17131,'scope','notice'),(5443,17131,'scope','performance'),(5444,13332,'scope','performance'),(5445,13333,'scope','performance'),(5446,13334,'scope','performance'),(5447,13336,'scope','notice'),(5448,17133,'scope','capacity'),(5449,17133,'scope','performance'),(5450,13338,'scope','notice'),(5451,13339,'scope','notice'),(5452,13340,'scope','security'),(5453,17132,'scope','capacity'),(5454,17132,'scope','performance'),(5455,22455,'scope','availability'),(5456,17135,'scope','capacity'),(5457,17135,'scope','performance'),(5458,17134,'scope','capacity'),(5459,17134,'scope','performance'),(5460,17136,'scope','notice'),(5461,17136,'scope','performance'),(5462,13396,'scope','notice'),(5463,13396,'scope','performance'),(5464,13397,'scope','notice'),(5465,13397,'scope','performance'),(5466,13398,'scope','performance'),(5467,13399,'scope','performance'),(5468,13400,'scope','notice'),(5469,17138,'scope','capacity'),(5470,17138,'scope','performance'),(5471,13402,'scope','notice'),(5472,13403,'scope','notice'),(5473,13404,'scope','security'),(5474,17137,'scope','capacity'),(5475,17137,'scope','performance'),(5476,22456,'scope','availability'),(5477,17140,'scope','capacity'),(5478,17140,'scope','performance'),(5479,17139,'scope','capacity'),(5480,17139,'scope','performance'),(5481,22457,'scope','capacity'),(5482,22458,'scope','capacity'),(5483,22459,'scope','performance'),(5484,22460,'scope','performance'),(5485,22461,'scope','performance'),(5486,22462,'scope','notice'),(5487,22463,'scope','notice'),(5488,22464,'scope','notice'),(5489,22465,'scope','capacity'),(5490,22465,'scope','performance'),(5491,22466,'scope','availability'),(5492,16161,'scope','performance'),(5493,16162,'scope','performance'),(5494,16160,'scope','performance'),(5495,16585,'scope','notice'),(5496,16169,'scope','notice'),(5497,16168,'scope','notice'),(5498,16166,'scope','capacity'),(5499,16167,'scope','capacity'),(5500,18162,'scope','capacity'),(5501,18162,'scope','performance'),(5502,22467,'scope','performance'),(5503,17035,'scope','performance'),(5504,22468,'scope','performance'),(5505,18161,'scope','performance'),(5506,22469,'scope','capacity'),(5507,22470,'scope','performance'),(5508,22471,'scope','availability'),(5509,22472,'scope','availability'),(5510,22473,'scope','performance'),(5511,22474,'scope','performance'),(5512,22475,'scope','performance'),(5513,22476,'scope','notice'),(5514,22477,'scope','capacity'),(5515,22478,'scope','capacity'),(5516,16182,'scope','capacity'),(5517,16183,'scope','capacity'),(5518,17911,'scope','capacity'),(5519,18465,'scope','performance'),(5520,18466,'scope','availability'),(5521,17042,'scope','availability'),(5522,17043,'scope','performance'),(5523,17912,'scope','performance'),(5524,17913,'scope','performance'),(5525,16713,'scope','notice'),(5526,22479,'scope','availability'),(5527,22480,'scope','capacity'),(5528,22481,'scope','capacity'),(5529,22482,'scope','performance'),(5530,22483,'scope','performance'),(5531,22484,'scope','performance'),(5532,22485,'scope','notice'),(5533,22486,'scope','notice'),(5534,22487,'scope','notice'),(5535,22488,'scope','capacity'),(5536,22488,'scope','performance'),(5537,17285,'scope','performance'),(5538,17286,'scope','performance'),(5539,17287,'scope','performance'),(5540,17288,'scope','notice'),(5541,17289,'scope','notice'),(5542,17290,'scope','notice'),(5543,17291,'scope','capacity'),(5544,17292,'scope','capacity'),(5545,18170,'scope','capacity'),(5546,18170,'scope','performance'),(5547,22489,'scope','performance'),(5548,17283,'scope','performance'),(5549,22490,'scope','performance'),(5550,18169,'scope','performance'),(5551,22491,'scope','capacity'),(5552,22492,'scope','performance'),(5553,22493,'scope','availability'),(5554,22494,'scope','availability'),(5555,22495,'scope','performance'),(5556,22496,'scope','performance'),(5557,22497,'scope','performance'),(5558,22498,'scope','notice'),(5559,22499,'scope','capacity'),(5560,22500,'scope','capacity'),(5561,17305,'scope','capacity'),(5562,17306,'scope','capacity'),(5563,17917,'scope','capacity'),(5564,18469,'scope','performance'),(5565,18470,'scope','availability'),(5566,17310,'scope','availability'),(5567,17311,'scope','performance'),(5568,17918,'scope','performance'),(5569,17919,'scope','performance'),(5570,17312,'scope','notice'),(5571,22501,'scope','availability'),(5572,22502,'scope','availability'),(5573,22502,'scope','performance'),(5574,22503,'scope','availability'),(5575,22503,'scope','performance'),(5576,22504,'scope','performance'),(5577,22505,'scope','notice'),(5578,22505,'scope','security'),(5579,22506,'scope','notice'),(5580,22507,'scope','availability'),(5581,22508,'scope','performance'),(5582,22509,'scope','performance'),(5583,22510,'scope','performance'),(5584,22511,'scope','availability'),(5585,22512,'scope','availability'),(5586,22512,'scope','capacity'),(5587,22513,'scope','availability'),(5588,22513,'scope','capacity'),(5589,22514,'scope','capacity'),(5590,22514,'scope','performance'),(5591,18576,'scope','capacity'),(5592,18577,'scope','notice'),(5593,18578,'scope','notice'),(5594,18579,'scope','capacity'),(5595,18580,'scope','notice'),(5596,18581,'scope','notice'),(5597,18582,'scope','notice'),(5598,18583,'scope','notice'),(5599,18584,'scope','notice'),(5600,18585,'scope','notice'),(5601,18586,'scope','notice'),(5602,18587,'scope','notice'),(5603,18588,'scope','notice'),(5604,18589,'scope','notice'),(5605,18590,'scope','notice'),(5606,18591,'scope','notice'),(5607,18592,'scope','notice'),(5608,18593,'scope','notice'),(5609,18594,'scope','notice'),(5610,18595,'scope','notice'),(5611,18595,'scope','security'),(5612,18596,'scope','notice'),(5613,18597,'scope','availability'),(5614,18598,'scope','notice'),(5615,18599,'scope','notice'),(5616,18600,'scope','notice'),(5617,18601,'scope','notice'),(5618,18602,'scope','notice'),(5619,18603,'scope','notice'),(5620,18604,'scope','notice'),(5621,18605,'scope','notice'),(5622,18606,'scope','notice'),(5623,18607,'scope','notice'),(5624,18608,'scope','notice'),(5625,18609,'scope','capacity'),(5626,18610,'scope','notice'),(5627,18611,'scope','notice'),(5628,18612,'scope','capacity'),(5629,18613,'scope','notice'),(5630,18614,'scope','notice'),(5631,18615,'scope','notice'),(5632,18616,'scope','notice'),(5633,18617,'scope','notice'),(5634,18618,'scope','notice'),(5635,18619,'scope','notice'),(5636,18620,'scope','notice'),(5637,18621,'scope','notice'),(5638,18622,'scope','notice'),(5639,18623,'scope','notice'),(5640,18624,'scope','notice'),(5641,18625,'scope','notice'),(5642,18626,'scope','notice'),(5643,18627,'scope','notice'),(5644,18628,'scope','notice'),(5645,18628,'scope','security'),(5646,18629,'scope','notice'),(5647,18630,'scope','availability'),(5648,18631,'scope','notice'),(5649,18632,'scope','notice'),(5650,18633,'scope','notice'),(5651,18634,'scope','notice'),(5652,18635,'scope','notice'),(5653,18636,'scope','notice'),(5654,18637,'scope','notice'),(5655,18638,'scope','notice'),(5656,18639,'scope','notice'),(5657,18640,'scope','notice'),(5658,18641,'scope','notice'),(5659,18642,'scope','capacity'),(5660,18643,'scope','notice'),(5661,18644,'scope','notice'),(5662,18645,'scope','capacity'),(5663,18646,'scope','notice'),(5664,18647,'scope','notice'),(5665,18648,'scope','notice'),(5666,18649,'scope','notice'),(5667,18650,'scope','notice'),(5668,18651,'scope','notice'),(5669,18652,'scope','notice'),(5670,18653,'scope','notice'),(5671,18654,'scope','notice'),(5672,18655,'scope','notice'),(5673,18656,'scope','notice'),(5674,18657,'scope','notice'),(5675,18658,'scope','notice'),(5676,18659,'scope','notice'),(5677,18660,'scope','notice'),(5678,18661,'scope','notice'),(5679,18661,'scope','security'),(5680,18662,'scope','notice'),(5681,18663,'scope','availability'),(5682,18664,'scope','notice'),(5683,18665,'scope','notice'),(5684,18666,'scope','notice'),(5685,18667,'scope','notice'),(5686,18668,'scope','notice'),(5687,18669,'scope','notice'),(5688,18670,'scope','notice'),(5689,18671,'scope','notice'),(5690,18672,'scope','notice'),(5691,18673,'scope','notice'),(5692,18674,'scope','notice'),(5693,18675,'scope','capacity'),(5694,18676,'scope','notice'),(5695,18677,'scope','notice'),(5696,18678,'scope','capacity'),(5697,18679,'scope','notice'),(5698,18680,'scope','notice'),(5699,18681,'scope','notice'),(5700,18682,'scope','notice'),(5701,18683,'scope','notice'),(5702,18684,'scope','notice'),(5703,18685,'scope','notice'),(5704,18686,'scope','notice'),(5705,18687,'scope','notice'),(5706,18688,'scope','notice'),(5707,18689,'scope','notice'),(5708,18690,'scope','notice'),(5709,18691,'scope','notice'),(5710,18692,'scope','notice'),(5711,18693,'scope','notice'),(5712,18694,'scope','notice'),(5713,18694,'scope','security'),(5714,18695,'scope','notice'),(5715,18696,'scope','availability'),(5716,18697,'scope','notice'),(5717,18698,'scope','notice'),(5718,18699,'scope','notice'),(5719,18700,'scope','notice'),(5720,18701,'scope','notice'),(5721,18702,'scope','notice'),(5722,18703,'scope','notice'),(5723,18704,'scope','notice'),(5724,18705,'scope','notice'),(5725,18706,'scope','notice'),(5726,18707,'scope','notice'),(5727,18708,'scope','capacity'),(5728,18709,'scope','notice'),(5729,18710,'scope','notice'),(5730,18711,'scope','capacity'),(5731,18712,'scope','notice'),(5732,18713,'scope','notice'),(5733,18714,'scope','notice'),(5734,18715,'scope','notice'),(5735,18716,'scope','notice'),(5736,18717,'scope','notice'),(5737,18718,'scope','notice'),(5738,18719,'scope','notice'),(5739,18720,'scope','notice'),(5740,18721,'scope','notice'),(5741,18722,'scope','notice'),(5742,18723,'scope','notice'),(5743,18724,'scope','notice'),(5744,18725,'scope','notice'),(5745,18726,'scope','notice'),(5746,18727,'scope','notice'),(5747,18727,'scope','security'),(5748,18728,'scope','notice'),(5749,18729,'scope','availability'),(5750,18730,'scope','notice'),(5751,18731,'scope','notice'),(5752,18732,'scope','notice'),(5753,18733,'scope','notice'),(5754,18734,'scope','notice'),(5755,18735,'scope','notice'),(5756,18736,'scope','notice'),(5757,18737,'scope','notice'),(5758,18738,'scope','notice'),(5759,18739,'scope','notice'),(5760,18740,'scope','notice'),(5761,18927,'scope','capacity'),(5762,18928,'scope','notice'),(5763,18929,'scope','notice'),(5764,18930,'scope','capacity'),(5765,18931,'scope','notice'),(5766,18932,'scope','notice'),(5767,18933,'scope','notice'),(5768,18934,'scope','notice'),(5769,18935,'scope','notice'),(5770,18936,'scope','notice'),(5771,18937,'scope','notice'),(5772,18938,'scope','notice'),(5773,18939,'scope','notice'),(5774,18940,'scope','notice'),(5775,18941,'scope','notice'),(5776,18942,'scope','notice'),(5777,18943,'scope','notice'),(5778,18944,'scope','notice'),(5779,18945,'scope','notice'),(5780,18946,'scope','notice'),(5781,18946,'scope','security'),(5782,18947,'scope','notice'),(5783,18948,'scope','availability'),(5784,18949,'scope','notice'),(5785,18950,'scope','notice'),(5786,18951,'scope','notice'),(5787,18952,'scope','notice'),(5788,18953,'scope','notice'),(5789,18954,'scope','notice'),(5790,18955,'scope','notice'),(5791,18956,'scope','notice'),(5792,18957,'scope','notice'),(5793,18958,'scope','notice'),(5794,18959,'scope','notice'),(5795,18774,'scope','capacity'),(5796,18775,'scope','notice'),(5797,18776,'scope','notice'),(5798,18777,'scope','capacity'),(5799,18778,'scope','notice'),(5800,18779,'scope','notice'),(5801,18780,'scope','notice'),(5802,18781,'scope','notice'),(5803,18782,'scope','notice'),(5804,18783,'scope','notice'),(5805,18784,'scope','notice'),(5806,18785,'scope','notice'),(5807,18786,'scope','notice'),(5808,18787,'scope','notice'),(5809,18788,'scope','notice'),(5810,18789,'scope','notice'),(5811,18790,'scope','notice'),(5812,18791,'scope','notice'),(5813,18792,'scope','notice'),(5814,18793,'scope','notice'),(5815,18793,'scope','security'),(5816,18794,'scope','notice'),(5817,18795,'scope','availability'),(5818,18796,'scope','notice'),(5819,18797,'scope','notice'),(5820,18798,'scope','notice'),(5821,18799,'scope','notice'),(5822,18800,'scope','notice'),(5823,18801,'scope','notice'),(5824,18802,'scope','notice'),(5825,18803,'scope','notice'),(5826,18804,'scope','notice'),(5827,18805,'scope','notice'),(5828,18806,'scope','notice'),(5829,18807,'scope','capacity'),(5830,18473,'scope','notice'),(5831,18474,'scope','notice'),(5832,18475,'scope','capacity'),(5833,18476,'scope','notice'),(5834,18480,'scope','notice'),(5835,18481,'scope','notice'),(5836,18482,'scope','notice'),(5837,18483,'scope','notice'),(5838,18484,'scope','notice'),(5839,18485,'scope','notice'),(5840,18486,'scope','notice'),(5841,18487,'scope','notice'),(5842,18488,'scope','notice'),(5843,18489,'scope','notice'),(5844,18490,'scope','notice'),(5845,18491,'scope','notice'),(5846,18492,'scope','notice'),(5847,18493,'scope','notice'),(5848,18808,'scope','notice'),(5849,18808,'scope','security'),(5850,18495,'scope','notice'),(5851,18496,'scope','availability'),(5852,18497,'scope','notice'),(5853,18809,'scope','notice'),(5854,18499,'scope','notice'),(5855,18500,'scope','notice'),(5856,18501,'scope','notice'),(5857,18502,'scope','notice'),(5858,18503,'scope','notice'),(5859,18504,'scope','notice'),(5860,18505,'scope','notice'),(5861,18506,'scope','notice'),(5862,18810,'scope','notice'),(5863,18811,'scope','capacity'),(5864,18812,'scope','notice'),(5865,18813,'scope','notice'),(5866,18814,'scope','capacity'),(5867,18815,'scope','notice'),(5868,18816,'scope','notice'),(5869,18817,'scope','notice'),(5870,18818,'scope','notice'),(5871,18819,'scope','notice'),(5872,18820,'scope','notice'),(5873,18821,'scope','notice'),(5874,18822,'scope','notice'),(5875,18823,'scope','notice'),(5876,18824,'scope','notice'),(5877,18825,'scope','notice'),(5878,18826,'scope','notice'),(5879,18827,'scope','notice'),(5880,18828,'scope','notice'),(5881,18829,'scope','notice'),(5882,18830,'scope','notice'),(5883,18830,'scope','security'),(5884,18831,'scope','notice'),(5885,18832,'scope','availability'),(5886,18833,'scope','notice'),(5887,18834,'scope','notice'),(5888,18835,'scope','notice'),(5889,18836,'scope','notice'),(5890,18837,'scope','notice'),(5891,18838,'scope','notice'),(5892,18839,'scope','notice'),(5893,18840,'scope','notice'),(5894,18841,'scope','notice'),(5895,18842,'scope','notice'),(5896,18843,'scope','notice'),(5897,18844,'scope','capacity'),(5898,18845,'scope','notice'),(5899,18846,'scope','notice'),(5900,18847,'scope','capacity'),(5901,18848,'scope','notice'),(5902,18849,'scope','notice'),(5903,18850,'scope','notice'),(5904,18851,'scope','notice'),(5905,18852,'scope','notice'),(5906,18853,'scope','notice'),(5907,18854,'scope','notice'),(5908,18855,'scope','notice'),(5909,18856,'scope','notice'),(5910,18857,'scope','notice'),(5911,18858,'scope','notice'),(5912,18859,'scope','notice'),(5913,18860,'scope','notice'),(5914,18861,'scope','notice'),(5915,18862,'scope','notice'),(5916,18863,'scope','notice'),(5917,18863,'scope','security'),(5918,18864,'scope','notice'),(5919,18865,'scope','availability'),(5920,18866,'scope','notice'),(5921,18867,'scope','notice'),(5922,18868,'scope','notice'),(5923,18869,'scope','notice'),(5924,18870,'scope','notice'),(5925,18871,'scope','notice'),(5926,18872,'scope','notice'),(5927,18873,'scope','notice'),(5928,18874,'scope','notice'),(5929,18875,'scope','notice'),(5930,18876,'scope','notice'),(5931,18877,'scope','capacity'),(5932,18878,'scope','notice'),(5933,18879,'scope','notice'),(5934,18880,'scope','capacity'),(5935,18881,'scope','notice'),(5936,18882,'scope','notice'),(5937,18883,'scope','notice'),(5938,18884,'scope','notice'),(5939,18885,'scope','notice'),(5940,18886,'scope','notice'),(5941,18887,'scope','notice'),(5942,18888,'scope','notice'),(5943,18889,'scope','notice'),(5944,18890,'scope','notice'),(5945,18891,'scope','notice'),(5946,18892,'scope','notice'),(5947,18893,'scope','notice'),(5948,18894,'scope','notice'),(5949,18895,'scope','notice'),(5950,18896,'scope','notice'),(5951,18896,'scope','security'),(5952,18897,'scope','notice'),(5953,18898,'scope','availability'),(5954,18899,'scope','notice'),(5955,18900,'scope','notice'),(5956,18901,'scope','notice'),(5957,18902,'scope','notice'),(5958,18903,'scope','notice'),(5959,18904,'scope','notice'),(5960,18905,'scope','notice'),(5961,18906,'scope','notice'),(5962,18907,'scope','notice'),(5963,18908,'scope','notice'),(5964,18909,'scope','notice'),(5965,18183,'scope','notice'),(5966,22515,'scope','availability'),(5967,22516,'scope','availability'),(5968,22516,'scope','performance'),(5969,22517,'scope','availability'),(5970,22517,'scope','performance'),(5971,22518,'scope','notice'),(5972,22518,'scope','security'),(5973,22519,'scope','notice'),(5974,22520,'scope','availability'),(5975,18184,'scope','availability'),(5976,18185,'scope','availability'),(5977,18186,'scope','performance'),(5978,18187,'scope','availability'),(5979,18188,'scope','performance'),(5980,18189,'scope','notice'),(5981,18190,'scope','availability'),(5982,18191,'scope','availability'),(5983,18192,'scope','availability'),(5984,18193,'scope','availability'),(5985,18193,'scope','notice'),(5986,18194,'scope','availability'),(5987,18195,'scope','availability'),(5988,18196,'scope','availability'),(5989,18196,'scope','notice'),(5990,18197,'scope','availability'),(5991,18198,'scope','availability'),(5992,18199,'scope','performance'),(5993,18200,'scope','availability'),(5994,18201,'scope','performance'),(5995,18202,'scope','performance'),(5996,18203,'scope','capacity'),(5997,18204,'scope','availability'),(5998,18205,'scope','availability'),(5999,18507,'scope','availability'),(6000,18507,'scope','performance'),(6001,18508,'scope','notice'),(6002,18509,'scope','performance'),(6003,18510,'scope','performance'),(6004,18511,'scope','availability'),(6005,18511,'scope','performance'),(6006,18512,'scope','performance'),(6007,18513,'scope','performance'),(6008,18514,'scope','notice'),(6009,18515,'scope','availability'),(6010,18515,'scope','performance'),(6011,18516,'scope','availability'),(6012,18516,'scope','performance'),(6013,18517,'scope','notice'),(6014,18518,'scope','availability'),(6015,18519,'scope','availability'),(6016,18519,'scope','performance'),(6017,18520,'scope','availability'),(6018,18520,'scope','performance'),(6019,18521,'scope','performance'),(6020,22521,'scope','availability'),(6021,22522,'scope','availability'),(6022,22522,'scope','performance'),(6023,22523,'scope','availability'),(6024,22523,'scope','performance'),(6025,22524,'scope','notice'),(6026,22524,'scope','security'),(6027,22525,'scope','notice'),(6028,22526,'scope','availability'),(6029,17929,'scope','availability'),(6030,17929,'scope','performance'),(6031,17930,'scope','availability'),(6032,17931,'scope','availability'),(6033,17931,'scope','performance'),(6034,17932,'scope','availability'),(6035,17933,'scope','availability'),(6036,17933,'scope','performance'),(6037,17934,'scope','availability'),(6038,17935,'scope','notice'),(6039,17936,'scope','capacity'),(6040,17936,'scope','performance'),(6041,17937,'scope','capacity'),(6042,17937,'scope','performance'),(6043,17938,'scope','capacity'),(6044,17938,'scope','performance'),(6045,17939,'scope','availability'),(6046,17939,'scope','performance'),(6047,17940,'scope','availability'),(6048,17940,'scope','performance'),(6049,17941,'scope','availability'),(6050,17941,'scope','performance'),(6051,18206,'scope','performance'),(6052,17943,'scope','availability'),(6053,17943,'scope','performance'),(6054,17944,'scope','availability'),(6055,17944,'scope','performance'),(6056,16767,'scope','availability'),(6057,16772,'scope','notice'),(6058,16771,'scope','notice'),(6059,16773,'scope','notice'),(6060,16769,'scope','notice'),(6061,16768,'scope','notice'),(6062,16770,'scope','notice'),(6063,19229,'scope','notice'),(6064,19230,'scope','notice'),(6065,19231,'scope','availability'),(6066,19232,'scope','availability'),(6067,19232,'scope','performance'),(6068,19233,'scope','availability'),(6069,19233,'scope','performance'),(6070,19234,'scope','availability'),(6071,19234,'scope','performance'),(6072,19235,'scope','availability'),(6073,19235,'scope','performance'),(6074,19236,'scope','availability'),(6075,19236,'scope','performance'),(6076,19237,'scope','availability'),(6077,19237,'scope','performance'),(6078,19238,'scope','availability'),(6079,19238,'scope','performance'),(6080,19239,'scope','performance'),(6081,19240,'scope','availability'),(6082,19241,'scope','notice'),(6083,19242,'scope','availability'),(6084,19242,'scope','performance'),(6085,19243,'scope','availability'),(6086,19243,'scope','performance'),(6087,19244,'scope','availability'),(6088,19244,'scope','performance'),(6089,19245,'scope','availability'),(6090,19245,'scope','performance'),(6091,19246,'scope','availability'),(6092,19246,'scope','performance'),(6093,19247,'scope','availability'),(6094,19247,'scope','performance'),(6095,19248,'scope','availability'),(6096,19248,'scope','performance'),(6097,19249,'scope','availability'),(6098,19249,'scope','performance'),(6099,19250,'scope','availability'),(6100,19250,'scope','performance'),(6101,19251,'scope','availability'),(6102,19251,'scope','performance'),(6103,19252,'scope','availability'),(6104,19252,'scope','performance'),(6105,19253,'scope','availability'),(6106,19253,'scope','performance'),(6107,19254,'scope','availability'),(6108,19254,'scope','performance'),(6109,19255,'scope','availability'),(6110,19255,'scope','performance'),(6111,19256,'scope','notice'),(6112,19257,'scope','availability'),(6113,19257,'scope','performance'),(6114,19258,'scope','availability'),(6115,19258,'scope','performance'),(6116,19259,'scope','availability'),(6117,19259,'scope','performance'),(6118,22527,'scope','availability'),(6119,22528,'scope','availability'),(6120,22528,'scope','performance'),(6121,22529,'scope','availability'),(6122,22529,'scope','performance'),(6123,22530,'scope','notice'),(6124,22530,'scope','security'),(6125,22531,'scope','notice'),(6126,22532,'scope','availability'),(6127,16487,'scope','availability'),(6128,16487,'scope','performance'),(6129,16488,'scope','availability'),(6130,16488,'scope','performance'),(6131,16484,'scope','availability'),(6132,16484,'scope','performance'),(6133,16485,'scope','availability'),(6134,16485,'scope','performance'),(6135,16486,'scope','availability'),(6136,16486,'scope','performance'),(6137,16479,'scope','availability'),(6138,16479,'scope','performance'),(6139,16480,'scope','availability'),(6140,16480,'scope','performance'),(6141,16482,'scope','availability'),(6142,16482,'scope','performance'),(6143,16481,'scope','availability'),(6144,16481,'scope','performance'),(6145,16474,'scope','availability'),(6146,16474,'scope','performance'),(6147,16475,'scope','availability'),(6148,16475,'scope','performance'),(6149,16472,'scope','availability'),(6150,16472,'scope','performance'),(6151,16471,'scope','availability'),(6152,16471,'scope','performance'),(6153,16473,'scope','availability'),(6154,16473,'scope','performance'),(6155,16469,'scope','availability'),(6156,16469,'scope','performance'),(6157,16468,'scope','availability'),(6158,16468,'scope','performance'),(6159,16470,'scope','availability'),(6160,16470,'scope','performance'),(6161,16460,'scope','availability'),(6162,16460,'scope','performance'),(6163,16459,'scope','availability'),(6164,16459,'scope','performance'),(6165,16461,'scope','availability'),(6166,16461,'scope','performance'),(6167,16463,'scope','availability'),(6168,16463,'scope','performance'),(6169,16462,'scope','availability'),(6170,16462,'scope','performance'),(6171,16464,'scope','availability'),(6172,16464,'scope','performance'),(6173,16466,'scope','availability'),(6174,16466,'scope','performance'),(6175,16465,'scope','availability'),(6176,16465,'scope','performance'),(6177,16467,'scope','availability'),(6178,16467,'scope','performance'),(6179,16478,'scope','notice'),(6180,16476,'scope','availability'),(6181,16476,'scope','performance'),(6182,16477,'scope','availability'),(6183,16477,'scope','performance'),(6184,16483,'scope','availability'),(6185,16483,'scope','performance'),(6186,19260,'scope','notice'),(6187,19261,'scope','notice'),(6188,19262,'scope','availability'),(6189,19263,'scope','availability'),(6190,19264,'scope','availability'),(6191,19265,'scope','availability'),(6192,19266,'scope','availability'),(6193,19267,'scope','availability'),(6194,19268,'scope','availability'),(6195,19269,'scope','availability'),(6196,19270,'scope','availability'),(6197,19271,'scope','availability'),(6198,19272,'scope','availability'),(6199,19273,'scope','availability'),(6200,19274,'scope','notice'),(6201,19275,'scope','availability'),(6202,19276,'scope','availability'),(6203,19277,'scope','availability'),(6204,19278,'scope','availability'),(6205,19279,'scope','availability'),(6206,19280,'scope','availability'),(6207,19281,'scope','availability'),(6208,19282,'scope','availability'),(6209,19283,'scope','notice'),(6210,19284,'scope','notice'),(6211,19285,'scope','notice'),(6212,19286,'scope','availability'),(6213,19287,'scope','availability'),(6214,19288,'scope','availability'),(6215,19289,'scope','notice'),(6216,19290,'scope','notice'),(6217,19291,'scope','availability'),(6218,19292,'scope','availability'),(6219,19293,'scope','availability'),(6220,19294,'scope','availability'),(6221,19295,'scope','availability'),(6222,19296,'scope','availability'),(6223,19297,'scope','availability'),(6224,19298,'scope','availability'),(6225,19299,'scope','availability'),(6226,19300,'scope','notice'),(6227,19301,'scope','availability'),(6228,19302,'scope','availability'),(6229,19303,'scope','availability'),(6230,19304,'scope','availability'),(6231,19305,'scope','availability'),(6232,19306,'scope','availability'),(6233,19307,'scope','availability'),(6234,19308,'scope','notice'),(6235,19309,'scope','availability'),(6236,19310,'scope','availability'),(6237,19311,'scope','notice'),(6238,19312,'scope','notice'),(6239,19313,'scope','availability'),(6240,19314,'scope','availability'),(6241,19315,'scope','availability'),(6242,19316,'scope','availability'),(6243,19317,'scope','availability'),(6244,19318,'scope','availability'),(6245,19319,'scope','availability'),(6246,19320,'scope','availability'),(6247,19321,'scope','availability'),(6248,19322,'scope','availability'),(6249,19323,'scope','availability'),(6250,19324,'scope','availability'),(6251,19325,'scope','notice'),(6252,19326,'scope','availability'),(6253,19327,'scope','availability'),(6254,19328,'scope','availability'),(6255,19329,'scope','availability'),(6256,19330,'scope','availability'),(6257,19331,'scope','availability'),(6258,19332,'scope','availability'),(6259,19333,'scope','availability'),(6260,19334,'scope','notice'),(6261,19335,'scope','notice'),(6262,19336,'scope','notice'),(6263,19337,'scope','availability'),(6264,19338,'scope','availability'),(6265,19339,'scope','availability'),(6266,19340,'scope','notice'),(6267,19341,'scope','notice'),(6268,19342,'scope','availability'),(6269,19343,'scope','availability'),(6270,19344,'scope','availability'),(6271,19345,'scope','availability'),(6272,19346,'scope','availability'),(6273,19347,'scope','availability'),(6274,19348,'scope','availability'),(6275,19349,'scope','availability'),(6276,19350,'scope','availability'),(6277,19351,'scope','notice'),(6278,19352,'scope','availability'),(6279,19353,'scope','availability'),(6280,19354,'scope','availability'),(6281,19355,'scope','availability'),(6282,19356,'scope','availability'),(6283,19357,'scope','availability'),(6284,19358,'scope','availability'),(6285,19359,'scope','notice'),(6286,19360,'scope','availability'),(6287,19361,'scope','availability'),(6288,19362,'scope','notice'),(6289,19363,'scope','notice'),(6290,19364,'scope','availability'),(6291,19365,'scope','availability'),(6292,19366,'scope','availability'),(6293,19367,'scope','availability'),(6294,19368,'scope','availability'),(6295,19369,'scope','availability'),(6296,19370,'scope','availability'),(6297,19371,'scope','availability'),(6298,19372,'scope','availability'),(6299,19373,'scope','availability'),(6300,19374,'scope','availability'),(6301,19375,'scope','availability'),(6302,19376,'scope','notice'),(6303,19377,'scope','availability'),(6304,19378,'scope','availability'),(6305,19379,'scope','availability'),(6306,19380,'scope','availability'),(6307,19381,'scope','availability'),(6308,19382,'scope','availability'),(6309,19383,'scope','availability'),(6310,19384,'scope','availability'),(6311,19385,'scope','notice'),(6312,19386,'scope','notice'),(6313,19387,'scope','notice'),(6314,19388,'scope','availability'),(6315,19389,'scope','availability'),(6316,19390,'scope','availability'),(6317,19391,'scope','notice'),(6318,19392,'scope','notice'),(6319,19393,'scope','availability'),(6320,19394,'scope','availability'),(6321,19395,'scope','availability'),(6322,19396,'scope','availability'),(6323,19397,'scope','availability'),(6324,19398,'scope','availability'),(6325,19399,'scope','availability'),(6326,19400,'scope','availability'),(6327,19401,'scope','availability'),(6328,19402,'scope','notice'),(6329,19403,'scope','availability'),(6330,19404,'scope','availability'),(6331,19405,'scope','availability'),(6332,19406,'scope','availability'),(6333,19407,'scope','availability'),(6334,19408,'scope','availability'),(6335,19409,'scope','availability'),(6336,19410,'scope','notice'),(6337,19411,'scope','availability'),(6338,19412,'scope','availability'),(6339,19413,'scope','notice'),(6340,19414,'scope','notice'),(6341,19415,'scope','availability'),(6342,19416,'scope','availability'),(6343,19417,'scope','availability'),(6344,19418,'scope','availability'),(6345,19419,'scope','availability'),(6346,19420,'scope','availability'),(6347,19421,'scope','availability'),(6348,19422,'scope','availability'),(6349,19423,'scope','availability'),(6350,19424,'scope','availability'),(6351,19425,'scope','availability'),(6352,19426,'scope','availability'),(6353,19427,'scope','notice'),(6354,19428,'scope','availability'),(6355,19429,'scope','availability'),(6356,19430,'scope','availability'),(6357,19431,'scope','availability'),(6358,19432,'scope','availability'),(6359,19433,'scope','availability'),(6360,19434,'scope','availability'),(6361,19435,'scope','availability'),(6362,19436,'scope','notice'),(6363,19437,'scope','notice'),(6364,19438,'scope','notice'),(6365,19439,'scope','availability'),(6366,19440,'scope','availability'),(6367,19441,'scope','availability'),(6368,19442,'scope','notice'),(6369,19443,'scope','notice'),(6370,19444,'scope','availability'),(6371,19445,'scope','availability'),(6372,19446,'scope','availability'),(6373,19447,'scope','availability'),(6374,19448,'scope','availability'),(6375,19449,'scope','availability'),(6376,19450,'scope','availability'),(6377,19451,'scope','availability'),(6378,19452,'scope','availability'),(6379,19453,'scope','notice'),(6380,19454,'scope','availability'),(6381,19455,'scope','availability'),(6382,19456,'scope','availability'),(6383,19457,'scope','availability'),(6384,19458,'scope','availability'),(6385,19459,'scope','availability'),(6386,19460,'scope','availability'),(6387,19461,'scope','notice'),(6388,19462,'scope','availability'),(6389,19463,'scope','availability'),(6390,22533,'scope','availability'),(6391,22534,'scope','availability'),(6392,22534,'scope','performance'),(6393,22535,'scope','availability'),(6394,22535,'scope','performance'),(6395,15732,'scope','notice'),(6396,15731,'scope','notice'),(6397,22536,'scope','notice'),(6398,22536,'scope','security'),(6399,15728,'scope','availability'),(6400,15728,'scope','performance'),(6401,15729,'scope','availability'),(6402,15729,'scope','performance'),(6403,15730,'scope','availability'),(6404,15730,'scope','performance'),(6405,16577,'scope','notice'),(6406,22537,'scope','notice'),(6407,22538,'scope','availability'),(6408,15754,'scope','availability'),(6409,15754,'scope','performance'),(6410,15752,'scope','availability'),(6411,15752,'scope','performance'),(6412,15753,'scope','availability'),(6413,15753,'scope','performance'),(6414,15741,'scope','availability'),(6415,15741,'scope','performance'),(6416,15742,'scope','availability'),(6417,15742,'scope','performance'),(6418,15750,'scope','availability'),(6419,15750,'scope','performance'),(6420,15749,'scope','availability'),(6421,15749,'scope','performance'),(6422,15751,'scope','availability'),(6423,15751,'scope','performance'),(6424,15745,'scope','notice'),(6425,15746,'scope','availability'),(6426,15746,'scope','performance'),(6427,15743,'scope','availability'),(6428,15743,'scope','performance'),(6429,15744,'scope','availability'),(6430,15744,'scope','performance'),(6431,15739,'scope','availability'),(6432,15739,'scope','performance'),(6433,15740,'scope','availability'),(6434,15740,'scope','performance'),(6435,17945,'scope','availability'),(6436,17945,'scope','performance'),(6437,17946,'scope','availability'),(6438,17946,'scope','performance'),(6439,15738,'scope','availability'),(6440,15738,'scope','performance'),(6441,17947,'scope','availability'),(6442,17947,'scope','performance'),(6443,17948,'scope','availability'),(6444,17948,'scope','performance'),(6445,15735,'scope','availability'),(6446,15735,'scope','performance'),(6447,15747,'scope','availability'),(6448,15747,'scope','performance'),(6449,15748,'scope','availability'),(6450,15748,'scope','performance'),(6451,19464,'scope','notice'),(6452,19465,'scope','notice'),(6453,19466,'scope','available'),(6454,19467,'scope','available'),(6455,19468,'scope','notice'),(6456,19469,'scope','available'),(6457,19470,'scope','available'),(6458,19471,'scope','available'),(6459,19472,'scope','available'),(6460,19473,'scope','available'),(6461,19474,'scope','available'),(6462,19475,'scope','available'),(6463,19476,'scope','available'),(6464,19477,'scope','available'),(6465,19478,'scope','available'),(6466,19479,'scope','available'),(6467,19480,'scope','available'),(6468,19481,'scope','notice'),(6469,19482,'scope','available'),(6470,19483,'scope','available'),(6471,19484,'scope','available'),(6472,19485,'scope','available'),(6473,19486,'scope','available'),(6474,19487,'scope','notice'),(6475,19488,'scope','available'),(6476,19489,'scope','available'),(6477,19490,'scope','notice'),(6478,19491,'scope','available'),(6479,19492,'scope','available'),(6480,19493,'scope','notice'),(6481,19494,'scope','available'),(6482,19495,'scope','available'),(6483,19496,'scope','notice'),(6484,19497,'scope','available'),(6485,19498,'scope','available'),(6486,19499,'scope','notice'),(6487,19500,'scope','available'),(6488,19501,'scope','available'),(6489,19502,'scope','notice'),(6490,19503,'scope','available'),(6491,19504,'scope','available'),(6492,19505,'scope','notice'),(6493,19506,'scope','available'),(6494,19507,'scope','available'),(6495,19508,'scope','available'),(6496,19509,'scope','available'),(6497,19510,'scope','notice'),(6498,19511,'scope','notice'),(6499,19512,'scope','available'),(6500,19513,'scope','available'),(6501,19514,'scope','notice'),(6502,19515,'scope','available'),(6503,19516,'scope','available'),(6504,19517,'scope','available'),(6505,19518,'scope','available'),(6506,19519,'scope','available'),(6507,19520,'scope','available'),(6508,19521,'scope','available'),(6509,19522,'scope','available'),(6510,19523,'scope','available'),(6511,19524,'scope','available'),(6512,19525,'scope','available'),(6513,19526,'scope','available'),(6514,19527,'scope','notice'),(6515,19528,'scope','available'),(6516,19529,'scope','available'),(6517,19530,'scope','available'),(6518,19531,'scope','available'),(6519,19532,'scope','available'),(6520,19533,'scope','notice'),(6521,19534,'scope','available'),(6522,19535,'scope','available'),(6523,19536,'scope','notice'),(6524,19537,'scope','available'),(6525,19538,'scope','available'),(6526,19539,'scope','notice'),(6527,19540,'scope','available'),(6528,19541,'scope','available'),(6529,19542,'scope','notice'),(6530,19543,'scope','available'),(6531,19544,'scope','available'),(6532,19545,'scope','notice'),(6533,19546,'scope','available'),(6534,19547,'scope','available'),(6535,19548,'scope','notice'),(6536,19549,'scope','available'),(6537,19550,'scope','available'),(6538,19551,'scope','notice'),(6539,19552,'scope','available'),(6540,19553,'scope','available'),(6541,19554,'scope','available'),(6542,19555,'scope','available'),(6543,19556,'scope','notice'),(6544,19557,'scope','notice'),(6545,19558,'scope','available'),(6546,19559,'scope','available'),(6547,19560,'scope','notice'),(6548,19561,'scope','available'),(6549,19562,'scope','available'),(6550,19563,'scope','available'),(6551,19564,'scope','available'),(6552,19565,'scope','available'),(6553,19566,'scope','available'),(6554,19567,'scope','available'),(6555,19568,'scope','available'),(6556,19569,'scope','available'),(6557,19570,'scope','available'),(6558,19571,'scope','available'),(6559,19572,'scope','available'),(6560,19573,'scope','notice'),(6561,19574,'scope','available'),(6562,19575,'scope','available'),(6563,19576,'scope','available'),(6564,19577,'scope','available'),(6565,19578,'scope','available'),(6566,19579,'scope','notice'),(6567,19580,'scope','available'),(6568,19581,'scope','available'),(6569,19582,'scope','notice'),(6570,19583,'scope','available'),(6571,19584,'scope','available'),(6572,19585,'scope','notice'),(6573,19586,'scope','available'),(6574,19587,'scope','available'),(6575,19588,'scope','notice'),(6576,19589,'scope','available'),(6577,19590,'scope','available'),(6578,19591,'scope','notice'),(6579,19592,'scope','available'),(6580,19593,'scope','available'),(6581,19594,'scope','notice'),(6582,19595,'scope','available'),(6583,19596,'scope','available'),(6584,19597,'scope','notice'),(6585,19598,'scope','available'),(6586,19599,'scope','available'),(6587,19600,'scope','available'),(6588,19601,'scope','available'),(6589,19602,'scope','notice'),(6590,19603,'scope','notice'),(6591,19604,'scope','available'),(6592,19605,'scope','available'),(6593,19606,'scope','notice'),(6594,19607,'scope','available'),(6595,19608,'scope','available'),(6596,19609,'scope','available'),(6597,19610,'scope','available'),(6598,19611,'scope','available'),(6599,19612,'scope','available'),(6600,19613,'scope','available'),(6601,19614,'scope','available'),(6602,19615,'scope','available'),(6603,19616,'scope','available'),(6604,19617,'scope','available'),(6605,19618,'scope','available'),(6606,19619,'scope','notice'),(6607,19620,'scope','available'),(6608,19621,'scope','available'),(6609,19622,'scope','available'),(6610,19623,'scope','available'),(6611,19624,'scope','available'),(6612,19625,'scope','notice'),(6613,19626,'scope','available'),(6614,19627,'scope','available'),(6615,19628,'scope','notice'),(6616,19629,'scope','available'),(6617,19630,'scope','available'),(6618,19631,'scope','notice'),(6619,19632,'scope','available'),(6620,19633,'scope','available'),(6621,19634,'scope','notice'),(6622,19635,'scope','available'),(6623,19636,'scope','available'),(6624,19637,'scope','notice'),(6625,19638,'scope','available'),(6626,19639,'scope','available'),(6627,19640,'scope','notice'),(6628,19641,'scope','available'),(6629,19642,'scope','available'),(6630,19643,'scope','notice'),(6631,19644,'scope','available'),(6632,19645,'scope','available'),(6633,19646,'scope','available'),(6634,19647,'scope','available'),(6635,22539,'scope','availability'),(6636,22540,'scope','availability'),(6637,22540,'scope','performance'),(6638,22541,'scope','availability'),(6639,22541,'scope','performance'),(6640,15762,'scope','notice'),(6641,22542,'scope','notice'),(6642,22542,'scope','security'),(6643,16439,'scope','availability'),(6644,16439,'scope','performance'),(6645,16440,'scope','availability'),(6646,16440,'scope','performance'),(6647,22543,'scope','notice'),(6648,22544,'scope','availability'),(6649,15790,'scope','availability'),(6650,15790,'scope','performance'),(6651,18003,'scope','availability'),(6652,18003,'scope','performance'),(6653,15787,'component','array'),(6654,15787,'scope','availability'),(6655,15787,'scope','performance'),(6656,18004,'scope','availability'),(6657,18004,'scope','performance'),(6658,18005,'scope','availability'),(6659,18005,'scope','performance'),(6660,15785,'scope','availability'),(6661,15785,'scope','performance'),(6662,15786,'scope','availability'),(6663,15786,'scope','performance'),(6664,15783,'scope','availability'),(6665,15783,'scope','performance'),(6666,15784,'scope','availability'),(6667,15784,'scope','performance'),(6668,15795,'scope','notice'),(6669,15794,'scope','availability'),(6670,15794,'scope','performance'),(6671,15792,'scope','availability'),(6672,15792,'scope','performance'),(6673,15793,'scope','availability'),(6674,15793,'scope','performance'),(6675,15781,'scope','availability'),(6676,15781,'scope','performance'),(6677,15782,'scope','availability'),(6678,15782,'scope','performance'),(6679,18006,'scope','notice'),(6680,18007,'scope','notice'),(6681,18008,'scope','notice'),(6682,18009,'scope','notice'),(6683,18010,'scope','notice'),(6684,18011,'scope','notice'),(6685,18012,'scope','notice'),(6686,18013,'scope','notice'),(6687,18014,'scope','notice'),(6688,18015,'scope','notice'),(6689,18016,'scope','notice'),(6690,18017,'scope','notice'),(6691,18018,'scope','notice'),(6692,18019,'scope','notice'),(6693,18020,'scope','notice'),(6694,18021,'scope','notice'),(6695,18022,'scope','notice'),(6696,18023,'scope','notice'),(6697,18024,'scope','notice'),(6698,18025,'scope','notice'),(6699,18026,'scope','notice'),(6700,15796,'scope','availability'),(6701,15796,'scope','performance'),(6702,15797,'scope','availability'),(6703,15797,'scope','performance'),(6704,22545,'scope','availability'),(6705,22546,'scope','availability'),(6706,22546,'scope','performance'),(6707,22547,'scope','availability'),(6708,22547,'scope','performance'),(6709,15827,'scope','notice'),(6710,22548,'scope','notice'),(6711,22548,'scope','security'),(6712,15824,'scope','availability'),(6713,15824,'scope','performance'),(6714,15825,'scope','availability'),(6715,15825,'scope','performance'),(6716,15826,'scope','availability'),(6717,15826,'scope','performance'),(6718,22549,'scope','notice'),(6719,22550,'scope','availability'),(6720,15838,'scope','notice'),(6721,15839,'scope','availability'),(6722,15839,'scope','performance'),(6723,15837,'scope','notice'),(6724,15829,'scope','availability'),(6725,15829,'scope','performance'),(6726,15828,'scope','availability'),(6727,15828,'scope','performance'),(6728,15830,'scope','availability'),(6729,15830,'scope','performance'),(6730,15832,'scope','availability'),(6731,15832,'scope','performance'),(6732,15831,'scope','availability'),(6733,15831,'scope','performance'),(6734,15833,'scope','availability'),(6735,15833,'scope','performance'),(6736,15835,'scope','availability'),(6737,15835,'scope','performance'),(6738,15834,'scope','availability'),(6739,15834,'scope','performance'),(6740,15836,'scope','availability'),(6741,15836,'scope','performance'),(6742,17141,'scope','availability'),(6743,17142,'scope','availability'),(6744,17143,'scope','availability'),(6745,17144,'scope','availability'),(6746,17145,'scope','availability'),(6747,17146,'scope','availability'),(6748,17147,'scope','availability'),(6749,17148,'scope','availability'),(6750,17149,'scope','availability'),(6751,17149,'scope','performance'),(6752,17150,'scope','availability'),(6753,17150,'scope','performance'),(6754,17151,'scope','availability'),(6755,17152,'scope','availability'),(6756,17152,'scope','performance'),(6757,17153,'scope','availability'),(6758,17153,'scope','performance'),(6759,17154,'scope','availability'),(6760,17155,'scope','availability'),(6761,17156,'scope','availability'),(6762,17157,'scope','availability'),(6763,17158,'scope','availability'),(6764,17159,'scope','availability'),(6765,17160,'scope','availability'),(6766,17161,'scope','availability'),(6767,17162,'scope','availability'),(6768,17163,'scope','availability'),(6769,17164,'scope','availability'),(6770,17165,'scope','availability'),(6771,17166,'scope','availability'),(6772,17166,'scope','performance'),(6773,17167,'scope','availability'),(6774,17167,'scope','performance'),(6775,17168,'scope','availability'),(6776,17169,'scope','availability'),(6777,17169,'scope','performance'),(6778,17170,'scope','availability'),(6779,17170,'scope','performance'),(6780,17171,'scope','availability'),(6781,17171,'scope','performance'),(6782,17172,'scope','availability'),(6783,17172,'scope','performance'),(6784,22551,'scope','availability'),(6785,22552,'scope','availability'),(6786,22552,'scope','performance'),(6787,22553,'scope','availability'),(6788,22553,'scope','performance'),(6789,22554,'scope','notice'),(6790,22554,'scope','security'),(6791,22555,'scope','notice'),(6792,22556,'scope','availability'),(6793,15846,'scope','availability'),(6794,15846,'scope','performance'),(6795,15845,'scope','availability'),(6796,15845,'scope','performance'),(6797,15847,'scope','availability'),(6798,15847,'scope','performance'),(6799,19648,'scope','performance'),(6800,19649,'scope','performance'),(6801,19650,'scope','performance'),(6802,17223,'scope','availability'),(6803,17222,'scope','notice'),(6804,17224,'scope','notice'),(6805,17225,'scope','notice'),(6806,17226,'scope','performance'),(6807,17227,'scope','availability'),(6808,17949,'scope','performance'),(6809,17229,'scope','availability'),(6810,17950,'scope','performance'),(6811,17231,'scope','availability'),(6812,17951,'scope','performance'),(6813,17952,'scope','performance'),(6814,17234,'scope','availability'),(6815,17529,'scope','performance'),(6816,15895,'scope','performance'),(6817,15896,'scope','performance'),(6818,15897,'scope','performance'),(6820,17530,'scope','performance'),(6821,15899,'scope','performance'),(6822,15900,'scope','performance'),(6823,15901,'scope','performance'),(6824,15902,'scope','performance'),(6825,15903,'scope','performance'),(6826,15904,'scope','performance'),(6827,15905,'scope','performance'),(6828,21200,'scope','performance'),(6829,15906,'scope','performance'),(6830,21267,'scope','performance'),(6831,21268,'scope','performance'),(6832,15907,'scope','performance'),(6833,15908,'scope','performance'),(6834,15909,'scope','performance'),(6835,15910,'scope','performance'),(6836,15911,'scope','performance'),(6837,15912,'scope','performance'),(6838,15890,'scope','capacity'),(6839,15890,'scope','performance'),(6840,21269,'scope','notice'),(6841,16918,'scope','notice'),(6842,15893,'scope','capacity'),(6843,15893,'scope','performance'),(6844,15891,'scope','capacity'),(6845,15891,'scope','performance'),(6846,15892,'scope','capacity'),(6847,15892,'scope','performance'),(6848,15894,'scope','performance'),(6849,22558,'scope','performance'),(6850,22559,'scope','performance'),(6852,22561,'scope','performance'),(6853,22562,'scope','performance'),(6854,22563,'scope','capacity'),(6855,17465,'scope','performance'),(6856,17467,'scope','performance'),(6857,22564,'scope','availability'),(6858,22565,'scope','availability'),(6859,22566,'scope','availability'),(6860,22567,'scope','notice'),(6861,22568,'scope','notice'),(6862,17092,'scope','performance'),(6863,17097,'scope','performance'),(6864,17100,'scope','performance'),(6865,22569,'scope','availability'),(6866,22570,'scope','availability'),(6867,22571,'scope','performance'),(6868,22572,'scope','performance'),(6869,22573,'scope','notice'),(6870,22574,'scope','notice'),(6871,22575,'scope','performance'),(6872,22576,'scope','capacity'),(6873,22577,'scope','capacity'),(6874,22578,'scope','performance'),(6875,22579,'scope','notice'),(6876,22580,'scope','availability'),(6877,22581,'scope','notice'),(6878,22582,'scope','notice'),(6879,22583,'scope','performance'),(6880,22584,'scope','performance'),(6881,22585,'scope','notice'),(6882,22586,'scope','notice'),(6883,22587,'scope','capacity'),(6884,22588,'scope','availability'),(6885,22589,'scope','availability'),(6886,22589,'scope','performance'),(6887,22590,'scope','availability'),(6888,22590,'scope','performance'),(6889,22591,'scope','notice'),(6890,22591,'scope','security'),(6891,22592,'scope','notice'),(6892,22593,'scope','capacity'),(6893,22593,'scope','performance'),(6894,22594,'scope','availability'),(6895,22595,'scope','capacity'),(6896,22595,'scope','performance'),(6897,22596,'scope','capacity'),(6898,22596,'scope','performance'),(6899,22597,'scope','performance'),(6900,22598,'scope','performance'),(6901,22599,'scope','capacity'),(6902,22600,'scope','performance'),(6903,22601,'scope','performance'),(6904,22602,'scope','availability'),(6905,22603,'scope','availability'),(6906,22604,'scope','availability'),(6907,22605,'scope','notice'),(6908,22606,'scope','notice'),(6909,22607,'scope','capacity'),(6910,22607,'scope','performance'),(6911,22608,'scope','capacity'),(6912,22608,'scope','performance'),(6913,22609,'scope','capacity'),(6914,22609,'scope','performance'),(6915,22610,'scope','capacity'),(6916,22610,'scope','performance'),(6917,22611,'scope','availability'),(6918,22612,'scope','availability'),(6919,22612,'scope','performance'),(6920,22613,'scope','availability'),(6921,22613,'scope','performance'),(6922,18924,'scope','performance'),(6923,18925,'scope','performance'),(6924,18235,'scope','performance'),(6925,22614,'scope','performance'),(6926,22615,'scope','notice'),(6927,22616,'scope','notice'),(6928,22617,'scope','notice'),(6929,22618,'scope','notice'),(6930,22619,'scope','notice'),(6931,22620,'scope','notice'),(6932,22621,'scope','notice'),(6933,22622,'scope','notice'),(6934,22623,'scope','notice'),(6935,22624,'scope','notice'),(6936,22625,'scope','notice'),(6937,22626,'scope','notice'),(6938,22627,'scope','notice'),(6939,22628,'scope','notice'),(6940,22629,'scope','notice'),(6941,22630,'scope','notice'),(6942,22631,'scope','notice'),(6943,22632,'scope','notice'),(6944,22633,'scope','notice'),(6945,22634,'scope','notice'),(6946,22635,'scope','notice'),(6947,22636,'scope','notice'),(6948,22637,'scope','notice'),(6949,22638,'scope','notice'),(6950,22639,'scope','notice'),(6951,22640,'scope','notice'),(6952,22641,'scope','notice'),(6953,22642,'scope','notice'),(6954,22643,'scope','health'),(6955,22644,'scope','health'),(6956,22645,'scope','health'),(6957,22646,'scope','availability'),(6958,22647,'scope','notice'),(6959,22648,'scope','notice'),(6960,22649,'scope','availability'),(6961,22651,'scope','notice'),(6962,22652,'scope','health'),(6963,22653,'scope','capacity'),(6964,22654,'scope','capacity'),(6965,22655,'scope','security'),(6966,22656,'scope','availability'),(6967,22657,'scope','availability'),(6968,22658,'scope','notice'),(6969,22659,'scope','availability'),(6970,22664,'scope','availability'),(6971,22665,'scope','availability'),(6972,22666,'scope','availability'),(6973,22667,'scope','notice'),(6974,22668,'scope','capacity'),(6975,22669,'scope','availability'),(6976,22670,'scope','availability'),(6977,22671,'scope','notice'),(6978,22672,'scope','availability'),(6979,22673,'scope','availability'),(6980,22674,'scope','availability'),(6981,22660,'scope','availability'),(6982,22675,'scope','availability'),(6983,22661,'scope','availability'),(6984,22676,'scope','availability'),(6985,22662,'scope','availability'),(6986,22663,'scope','availability'),(6987,22677,'scope','availability'),(6988,22678,'scope','performance'),(6989,22679,'scope','availability'),(6990,22680,'scope','notice'),(6991,22681,'scope','availability'),(6992,22682,'scope','performance'),(6993,22683,'scope','performance'),(6994,22684,'scope','availability'),(6995,22685,'scope','notice'),(6996,22686,'scope','availability'),(6997,22687,'scope','availability'),(6998,22688,'scope','performance'),(6999,22689,'scope','availability'),(7000,22690,'scope','notice'),(7001,22691,'scope','performance'),(7002,22692,'scope','performance'),(7003,22693,'scope','notice'),(7004,22694,'scope','performance'),(7005,22695,'scope','performance'),(7006,22696,'scope','performance'),(7007,22697,'scope','availability'),(7008,22698,'scope','notice'),(7009,22699,'scope','performance'),(7010,22700,'scope','performance'),(7011,22701,'scope','performance'),(7012,22702,'scope','availability'),(7013,22703,'scope','performance'),(7014,22704,'scope','availability'),(7015,22705,'scope','performance'),(7016,22706,'scope','performance'),(7017,22707,'scope','availability'),(7018,22708,'scope','performance'),(7019,22709,'scope','performance'),(7020,22710,'scope','availability'),(7021,22711,'scope','notice'),(7022,22712,'scope','availability'),(7023,22713,'scope','notice'),(7024,22714,'scope','performance'),(7025,22715,'scope','availability'),(7026,22716,'scope','availability'),(7027,22717,'scope','performance'),(7028,22718,'scope','availability'),(7029,22719,'scope','notice'),(7030,22720,'scope','availability'),(7031,22721,'scope','notice'),(7032,22722,'scope','availability'),(7033,22723,'scope','performance'),(7034,22724,'scope','availability'),(7035,22725,'scope','performance'),(7036,22726,'scope','performance'),(7037,22727,'scope','performance'),(7038,22728,'scope','availability'),(7039,22729,'scope','notice'),(7040,22730,'scope','performance'),(7041,22731,'scope','availability'),(7042,22732,'scope','notice'),(7043,22733,'scope','availability'),(7044,22734,'scope','notice'),(7045,22735,'scope','performance'),(7046,22736,'scope','performance'),(7047,22737,'scope','availability'),(7048,22738,'scope','notice'),(7049,22739,'scope','availability'),(7050,22740,'scope','notice'),(7051,22741,'scope','performance'),(7052,22742,'scope','availability'),(7053,22743,'scope','performance'),(7054,22744,'scope','availability'),(7055,22745,'scope','notice'),(7056,22746,'scope','availability'),(7057,22747,'scope','performance'),(7058,22748,'scope','performance'),(7059,22749,'scope','availability'),(7060,22750,'scope','notice'),(7061,22751,'scope','availability'),(7062,22752,'scope','availability'),(7063,22753,'scope','performance'),(7064,22754,'scope','availability'),(7065,22755,'scope','notice'),(7066,22756,'scope','performance'),(7067,22757,'scope','performance'),(7068,22758,'scope','notice'),(7069,22759,'scope','performance'),(7070,22760,'scope','performance'),(7071,22761,'scope','performance'),(7072,22762,'scope','availability'),(7073,22763,'scope','notice'),(7074,22764,'scope','performance'),(7075,22765,'scope','performance'),(7076,22766,'scope','performance'),(7077,22767,'scope','availability'),(7078,22768,'scope','performance'),(7079,22769,'scope','availability'),(7080,22770,'scope','performance'),(7081,22771,'scope','performance'),(7082,22772,'scope','availability'),(7083,22773,'scope','performance'),(7084,22774,'scope','performance'),(7085,22775,'scope','availability'),(7086,22776,'scope','notice'),(7087,22777,'scope','availability'),(7088,22778,'scope','notice'),(7089,22779,'scope','performance'),(7090,22780,'scope','availability'),(7091,22781,'scope','availability'),(7092,22782,'scope','performance'),(7093,22783,'scope','availability'),(7094,22784,'scope','notice'),(7095,22785,'scope','availability'),(7096,22786,'scope','notice'),(7097,22787,'scope','availability'),(7098,22788,'scope','performance'),(7099,22789,'scope','availability'),(7100,22790,'scope','performance'),(7101,22791,'scope','performance'),(7102,22792,'scope','performance'),(7103,22793,'scope','availability'),(7104,22794,'scope','notice'),(7105,22795,'scope','performance'),(7106,22796,'scope','availability'),(7107,22797,'scope','notice'),(7108,22798,'scope','availability'),(7109,22799,'scope','notice'),(7110,22800,'scope','performance'),(7111,22801,'scope','performance'),(7112,22802,'scope','availability'),(7113,22803,'scope','notice'),(7114,22804,'scope','availability'),(7115,22805,'scope','notice'),(7116,22806,'scope','performance'),(7117,22807,'scope','availability'),(7118,22808,'scope','availability'),(7119,22809,'scope','availability'),(7120,22809,'scope','capacity'),(7121,22810,'scope','availability'),(7122,22810,'scope','capacity'),(7123,22811,'scope','availability'),(7124,22812,'scope','availability'),(7125,22813,'scope','availability'),(7126,22814,'scope','availability'),(7127,22815,'scope','availability'),(7128,22815,'scope','capacity'),(7129,22816,'scope','availability'),(7130,22816,'scope','capacity'),(7131,22817,'scope','availability'),(7132,22817,'scope','capacity'),(7133,22818,'scope','availability'),(7134,22818,'scope','capacity'),(7135,22819,'scope','availability'),(7136,22819,'scope','capacity'),(7137,22820,'scope','availability'),(7138,22820,'scope','capacity'),(7139,22821,'scope','notice'),(7140,22822,'scope','notice'),(7141,22823,'scope','availability'),(7142,22823,'scope','capacity'),(7143,22824,'scope','availability'),(7144,22824,'scope','capacity'),(7145,22825,'scope','availability'),(7146,22826,'scope','capacity'),(7147,22827,'scope','capacity'),(7148,22828,'scope','capacity'),(7149,22828,'scope','performance'),(7150,22829,'scope','capacity'),(7151,22830,'scope','capacity'),(7152,22831,'scope','availability'),(7153,22832,'scope','availability'),(7154,22833,'scope','availability'),(7155,22834,'scope','availability'),(7156,22835,'scope','availability'),(7157,22836,'scope','notice'),(7158,22837,'scope','availability'),(7159,22838,'scope','capacity'),(7160,22839,'scope','availability'),(7161,22840,'scope','availability'),(7162,22841,'scope','availability'),(7163,22842,'scope','availability'),(7164,22843,'scope','capacity'),(7165,22844,'scope','capacity'),(7166,22845,'scope','availability'),(7167,22846,'scope','capacity'),(7168,22847,'scope','performance'),(7169,22848,'scope','performance'),(7170,22849,'scope','availability'),(7171,22850,'scope','availability'),(7172,22851,'scope','availability'),(7173,22852,'scope','availability'),(7174,22853,'scope','capacity'),(7175,22854,'scope','capacity'),(7176,22855,'scope','capacity'),(7177,22855,'scope','performance'),(7178,22856,'scope','capacity'),(7179,22857,'scope','capacity'),(7180,22858,'scope','availability'),(7181,22859,'scope','availability'),(7182,22860,'scope','availability'),(7183,22861,'scope','availability'),(7184,22862,'scope','availability'),(7185,22863,'scope','notice'),(7186,22864,'scope','availability'),(7187,22865,'scope','availability'),(7188,22866,'scope','availability'),(7189,22867,'scope','notice'),(7190,22868,'scope','availability'),(7191,22869,'scope','availability'),(7192,22870,'scope','availability'),(7193,22871,'scope','availability'),(7194,22872,'scope','performance'),(7195,22873,'scope','availability'),(7196,22874,'scope','availability'),(7197,22875,'scope','availability'),(7198,22876,'scope','availability'),(7199,22877,'scope','availability'),(7200,22878,'scope','availability'),(7201,22879,'scope','availability'),(7202,22880,'scope','availability'),(7203,22881,'scope','notice'),(7204,22882,'scope','availability'),(7205,22883,'scope','availability'),(7206,22884,'scope','availability'),(7207,22885,'scope','notice'),(7208,22886,'scope','notice'),(7209,22887,'scope','availability'),(7210,22888,'scope','notice'),(7211,22889,'scope','availability'),(7212,22890,'scope','availability'),(7213,22891,'scope','availability'),(7214,22892,'scope','notice'),(7215,22893,'scope','notice'),(7216,22894,'scope','availability'),(7217,22895,'scope','notice'),(7218,22896,'scope','availability'),(7219,22897,'scope','availability'),(7220,22898,'scope','availability'),(7221,22899,'scope','availability'),(7222,22900,'scope','availability'),(7223,22901,'scope','availability'),(7224,22902,'scope','availability'),(7225,22903,'scope','availability'),(7226,22904,'scope','availability'),(7227,22905,'scope','availability'),(7228,22906,'scope','availability'),(7229,22907,'scope','availability'),(7230,22908,'scope','availability'),(7231,22909,'scope','availability'),(7232,22910,'scope','availability'),(7233,22911,'scope','availability'),(7234,22912,'scope','availability'),(7235,22913,'scope','availability'),(7236,22914,'scope','availability'),(7237,22915,'scope','availability'),(7238,22916,'scope','availability'),(7239,22917,'scope','availability'),(7240,22917,'scope','capacity'),(7241,22918,'scope','availability'),(7242,22918,'scope','capacity'),(7243,22919,'scope','capacity'),(7244,22920,'scope','availability'),(7245,22921,'scope','availability'),(7246,22922,'scope','notice'),(7247,22923,'scope','notice'),(7248,22924,'scope','availability'),(7249,22925,'scope','availability'),(7250,22926,'scope','notice'),(7251,22927,'scope','availability'),(7252,22928,'scope','availability'),(7253,22929,'scope','availability'),(7254,22930,'scope','availability'),(7255,22931,'scope','availability'),(7256,22932,'scope','availability'),(7257,22933,'scope','availability'),(7258,22934,'scope','availability'),(7259,22935,'scope','availability'),(7260,22936,'scope','availability'),(7261,22937,'scope','availability'),(7262,22938,'scope','availability'),(7263,22939,'scope','availability'),(7264,22940,'scope','availability'),(7265,22941,'scope','availability'),(7266,22942,'scope','availability'),(7267,22943,'scope','availability'),(7268,22944,'scope','availability'),(7269,22945,'scope','capacity'),(7270,22945,'scope','notice'),(7271,22946,'scope','notice'),(7272,22947,'scope','availability'),(7273,22948,'scope','notice'),(7274,22949,'scope','availability'),(7275,22950,'scope','availability'),(7276,22951,'scope','availability'),(7277,22952,'scope','notice'),(7278,22953,'scope','notice'),(7279,22954,'scope','notice'),(7280,22955,'scope','availability'),(7281,22956,'scope','availability'),(7282,22957,'scope','notice'),(7283,22958,'scope','availability'),(7284,22959,'scope','availability'),(7285,22960,'scope','availability'),(7286,22961,'scope','capacity'),(7287,22961,'scope','notice'),(7288,22962,'scope','capacity'),(7289,22962,'scope','notice'),(7290,22963,'scope','notice'),(7291,22964,'scope','notice'),(7292,22965,'scope','availability'),(7293,22965,'scope','capacity'),(7294,22966,'scope','availability'),(7295,22966,'scope','capacity'),(7296,22967,'scope','capacity'),(7297,22968,'scope','capacity'),(7298,22968,'scope','notice'),(7299,22969,'scope','capacity'),(7300,22969,'scope','notice'),(7301,22970,'scope','notice'),(7302,22971,'scope','notice'),(7303,22972,'scope','availability'),(7304,22972,'scope','capacity'),(7305,22973,'scope','availability'),(7306,22973,'scope','capacity'),(7307,22974,'scope','capacity'),(7308,22975,'scope','capacity'),(7309,22975,'scope','notice'),(7310,22976,'scope','capacity'),(7311,22976,'scope','notice'),(7312,22977,'scope','notice'),(7313,22978,'scope','notice'),(7314,22979,'scope','availability'),(7315,22979,'scope','capacity'),(7316,22980,'scope','availability'),(7317,22980,'scope','capacity'),(7318,22981,'scope','availability'),(7319,22981,'scope','capacity'),(7320,22982,'scope','availability'),(7321,22983,'scope','availability'),(7322,22984,'scope','availability'),(7323,22985,'scope','availability'),(7324,22986,'scope','availability'),(7325,22987,'scope','availability'),(7329,22991,'scope','availability'),(7330,22992,'scope','availability'),(7331,22993,'scope','availability'),(7332,22994,'scope','availability'),(7333,22995,'scope','availability'),(7334,22996,'scope','availability'),(7335,22997,'scope','availability'),(7336,22998,'scope','performance'),(7337,22999,'scope','availability'),(7338,23000,'scope','capacity'),(7339,23001,'scope','capacity'),(7340,23002,'scope','availability'),(7341,23003,'scope','availability'),(7342,23004,'scope','availability'),(7343,23005,'scope','availability'),(7344,23006,'scope','performance'),(7345,23007,'scope','availability'),(7346,23008,'scope','performance'),(7347,23009,'scope','capacity'),(7348,23010,'scope','capacity'),(7349,23011,'scope','availability'),(7350,23012,'scope','availability'),(7351,23013,'scope','availability'),(7352,23014,'scope','availability'),(7353,23015,'scope','performance'),(7354,23016,'scope','availability'),(7355,23017,'scope','performance'),(7356,23018,'scope','capacity'),(7357,23019,'scope','capacity'),(7358,23020,'scope','availability'),(7359,23021,'scope','availability'),(7360,23022,'scope','availability'),(7361,23023,'scope','performance'),(7362,23024,'scope','availability'),(7363,23025,'scope','performance'),(7364,23026,'scope','capacity'),(7365,23027,'scope','capacity'),(7366,23028,'scope','availability'),(7367,23029,'scope','availability'),(7368,23030,'scope','availability'),(7369,23031,'scope','security'),(7370,23032,'scope','availability'),(7371,23033,'scope','availability'),(7372,23034,'scope','availability'),(7373,23035,'scope','availability'),(7374,23036,'scope','performance'),(7375,23037,'scope','performance'),(7376,23038,'scope','availability'),(7377,23039,'scope','availability'),(7378,23040,'scope','availability'),(7379,23041,'scope','performance'),(7380,23042,'scope','availability'),(7381,23043,'scope','availability'),(7382,23044,'scope','performance'),(7383,23045,'scope','availability'),(7384,23046,'scope','performance'),(7385,23047,'scope','availability'),(7386,23048,'scope','notice'),(7387,23049,'scope','availability'),(7388,23050,'scope','availability'),(7389,23051,'scope','availability'),(7390,23052,'scope','availability'),(7391,23053,'scope','availability'),(7392,23054,'scope','performance'),(7393,23055,'scope','availability'),(7394,23056,'scope','availability'),(7395,23056,'scope','performance'),(7396,23057,'scope','availability'),(7397,23057,'scope','performance'),(7398,23058,'scope','availability'),(7399,23059,'scope','availability'),(7400,23059,'scope','performance'),(7401,23060,'scope','availability'),(7402,23060,'scope','performance'),(7403,23061,'scope','notice'),(7404,23062,'scope','notice'),(7405,23063,'scope','notice'),(7406,23064,'scope','notice'),(7407,23065,'scope','availability'),(7408,23066,'scope','capacity'),(7409,23066,'scope','performance'),(7410,23067,'scope','notice'),(7411,23068,'scope','availability'),(7412,23068,'scope','performance'),(7413,23069,'scope','availability'),(7414,23069,'scope','performance'),(7415,23070,'scope','availability'),(7416,23070,'scope','performance'),(7417,23071,'scope','capacity'),(7418,23071,'scope','performance'),(7419,23072,'scope','performance'),(7420,23073,'scope','performance'),(7421,23074,'scope','performance'),(7422,23075,'scope','performance'),(7423,23076,'scope','performance'),(7424,23077,'scope','availability'),(7425,23078,'scope','performance'),(7426,23079,'scope','availability'),(7427,23080,'scope','availability'),(7428,23081,'scope','availability'),(7429,23082,'scope','availability'),(7430,23082,'scope','performance'),(7431,23083,'scope','availability'),(7432,23083,'scope','performance'),(7433,23084,'scope','availability'),(7434,23084,'scope','performance'),(7435,23085,'scope','availability'),(7436,23085,'scope','performance'),(7437,23086,'scope','availability'),(7438,23086,'scope','performance'),(7439,23087,'scope','availability'),(7440,23087,'scope','performance'),(7441,23088,'scope','availability'),(7442,23088,'scope','performance'),(7443,23089,'scope','availability'),(7444,23089,'scope','performance'),(7445,23090,'scope','availability'),(7446,23090,'scope','performance'),(7449,23092,'scope','availability'),(7450,23092,'scope','performance'),(7451,23093,'scope','availability'),(7452,23093,'scope','performance'),(7453,23094,'scope','availability'),(7454,23094,'scope','performance'); /*!40000 ALTER TABLE `trigger_tag` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `trigger_tag_insert` AFTER INSERT ON `trigger_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (6,new.triggertagid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `trigger_tag_update` AFTER UPDATE ON `trigger_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (6,old.triggertagid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `trigger_tag_delete` BEFORE DELETE ON `trigger_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (6,old.triggertagid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `triggers` -- DROP TABLE IF EXISTS `triggers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `triggers` ( `triggerid` bigint unsigned NOT NULL, `expression` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '0', `value` int NOT NULL DEFAULT '0', `priority` int NOT NULL DEFAULT '0', `lastchange` int NOT NULL DEFAULT '0', `comments` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `error` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `templateid` bigint unsigned DEFAULT NULL, `type` int NOT NULL DEFAULT '0', `state` int NOT NULL DEFAULT '0', `flags` int NOT NULL DEFAULT '0', `recovery_mode` int NOT NULL DEFAULT '0', `recovery_expression` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `correlation_mode` int NOT NULL DEFAULT '0', `correlation_tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `manual_close` int NOT NULL DEFAULT '0', `opdata` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `discover` int NOT NULL DEFAULT '0', `event_name` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`triggerid`), KEY `triggers_1` (`status`), KEY `triggers_2` (`value`,`lastchange`), KEY `triggers_3` (`templateid`), CONSTRAINT `c_triggers_1` FOREIGN KEY (`templateid`) REFERENCES `triggers` (`triggerid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `triggers` -- LOCK TABLES `triggers` WRITE; /*!40000 ALTER TABLE `triggers` DISABLE KEYS */; INSERT INTO `triggers` VALUES (13015,'{12641}>75','Zabbix server: More than 75% used in the configuration cache','',0,0,3,0,'Consider increasing CacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','088a0e0ac64442a29de4d86f11c87438',''),(13017,'{12651}>75','Zabbix server: More than 75% used in the history index cache','',0,0,3,0,'Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','24245fbc55b743319162dd1edb37c5a0',''),(13019,'{12649}>75','Zabbix server: More than 75% used in the trends cache','',0,0,3,0,'Consider increasing TrendCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','34426156de6b4690918117a23ccc1138',''),(13023,'{12653}>100','Zabbix server: More than 100 items having missing data for more than 10 minutes','',0,0,2,0,'zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'','53883a57e663421ca5fa794067a267b4',''),(13073,'{12645}>75','Zabbix server: More than 75% used in the history cache','',0,0,3,0,'Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','5d63483588964e49b1f870dfb770bf04',''),(13074,'{12646}>95','Zabbix server: More than 95% used in the value cache','',0,0,3,0,'Consider increasing ValueCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','cdca16919f6648ebbe6119e7c23a98c7',''),(13080,'{13164}>75','Zabbix server: Utilization of alerter processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13164}<65',0,'',0,'',0,'Zabbix server: Utilization of alerter processes over 75%','20963ffd33864196ab909b60d7acdc0a',''),(13081,'{13170}>75','Zabbix server: Utilization of configuration syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13170}<65',0,'',0,'',0,'Zabbix server: Utilization of configuration syncer processes over 75%','63d681dba0b94487886a1d9b3360d1d1',''),(13083,'{13172}>75','Zabbix server: Utilization of discoverer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13172}<65',0,'',0,'',0,'Zabbix server: Utilization of discoverer processes over 75%','5c470ddbda674fe0a789447dd120c36d',''),(13084,'{13174}>75','Zabbix server: Utilization of escalator processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13174}<65',0,'',0,'',0,'Zabbix server: Utilization of escalator processes over 75%','9895b4318f50487d9c7f25abd48bb1a1',''),(13085,'{13176}>75','Zabbix server: Utilization of history syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13176}<65',0,'',0,'',0,'Zabbix server: Utilization of history syncer processes over 75%','a99ffd43a05e40f7abee83aa8c6c3ce5',''),(13086,'{23299}>75','Zabbix server: Utilization of housekeeper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{23299}<65',0,'',0,'',0,'Zabbix server: Utilization of housekeeper processes over 75%','faa349f84dc043658fe51294ad87f766',''),(13087,'{13180}>75','Zabbix server: Utilization of http poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13180}<65',0,'',0,'',0,'Zabbix server: Utilization of http poller processes over 75%','c296c1ecdba44bd5b826ab4a86bbc300',''),(13088,'{13182}>75','Zabbix server: Utilization of icmp pinger processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13182}<65',0,'',0,'',0,'Zabbix server: Utilization of icmp pinger processes over 75%','d5c6ea5711594a9587ab8d7094f1f481',''),(13089,'{13184}>75','Zabbix server: Utilization of ipmi poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13184}<65',0,'',0,'',0,'Zabbix server: Utilization of ipmi poller processes over 75%','5a4f841292fd4bb5bec2e28340c9e4c2',''),(13091,'{13188}>75','Zabbix server: Utilization of poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13188}<65',0,'',0,'',0,'Zabbix server: Utilization of poller processes over 75%','bb50da4052134ef1a478bface291b50a',''),(13092,'{13190}>75','Zabbix server: Utilization of proxy poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13190}<65',0,'',0,'',0,'Zabbix server: Utilization of proxy poller processes over 75%','6a884c1fbf254637bb74b68571ee2ffa',''),(13093,'{23300}>75','Zabbix server: Utilization of self-monitoring processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{23300}<65',0,'',0,'',0,'Zabbix server: Utilization of self-monitoring processes over 75%','bf730ed3313f45248f483289c704f5e9',''),(13094,'{13198}>75','Zabbix server: Utilization of timer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13198}<65',0,'',0,'',0,'Zabbix server: Utilization of timer processes over 75%','0c7715df608f4736a7077ff2f6098adc',''),(13095,'{13200}>75','Zabbix server: Utilization of trapper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13200}<65',0,'',0,'',0,'Zabbix server: Utilization of trapper processes over 75%','197c04bbf5204ce7ac80630f2948b6b0',''),(13096,'{13202}>75','Zabbix server: Utilization of unreachable poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13202}<65',0,'',0,'',0,'Zabbix server: Utilization of unreachable poller processes over 75%','b0168864ef6849f185deb6ef22a056fa',''),(13097,'{13204}>75','Zabbix server: Utilization of vmware collector processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13204}<65',0,'',0,'',0,'Zabbix server: Utilization of vmware collector processes over 75%','7e0881bb1b384deba18439ae098a7fbd',''),(13275,'{13186}>75','Zabbix server: Utilization of java poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13186}<65',0,'',0,'',0,'Zabbix server: Utilization of java poller processes over 75%','d7705ba9c3f74554ac21c59c9a0dcc11',''),(13285,'{13159}=0','Telnet service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','7135280c598548e6bf17fd1909d4281a',''),(13332,'{13089}>30','Too many processes running on {HOST.NAME}','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d67740bc103348ab8ab11df2bdb0ad8f',''),(13333,'{13088}>300','Too many processes on {HOST.NAME}','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','dd1b0c14e6dd439ea8f7323cdcc607de',''),(13334,'{13087}>5','Processor load is too high on {HOST.NAME}','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','1128bfb41f5f420c81feffb1d395cf9f',''),(13336,'{23374}<>{23375}','Hostname was changed on {HOST.NAME}','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d6927a9b74eb4cb8b15400baf784fc36',''),(13338,'{23376}<>{23377}','Host information was changed on {HOST.NAME}','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3d3bcd54f24448c1a11746a4e75ea736',''),(13339,'{12726}<0','{HOST.NAME} has just been restarted','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','de874b9d875a4298ab39888c9e9cb747',''),(13340,'{23378}<>{23379}','/etc/passwd has been changed on {HOST.NAME}','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9db4055df94d414d86938066ed05dbc5',''),(13348,'{13074}>30','Too many processes running on {HOST.NAME}','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','837fdc71174246d987a6f7f277d65f6c',''),(13349,'{13073}>300','Too many processes on {HOST.NAME}','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0d5ac85120734fa98d3eef01b6f4033b',''),(13350,'{13072}>5','Processor load is too high on {HOST.NAME}','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','8c339065ecc54b7d8c2e4405f2149f27',''),(13352,'{23356}<>{23357}','Hostname was changed on {HOST.NAME}','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f48fb8ce1229492dae62de362c8c9539',''),(13354,'{23358}<>{23359}','Host information was changed on {HOST.NAME}','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ea2f9c186798420da781bd835fa0eaed',''),(13355,'{12742}<0','{HOST.NAME} has just been restarted','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','809e57eb897b43fb8538e76ec7dd6602',''),(13356,'{23360}<>{23361}','/etc/passwd has been changed on {HOST.NAME}','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','27b4e5de411949a4befa7171a2af6441',''),(13364,'{13071}>30','Too many processes running','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','458180bc0f14468386429964f877cce7',''),(13365,'{13070}>300','Too many processes','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','874ef8fe4a6445ff971800d2d9a50541',''),(13366,'{13069}>5','Processor load is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','fdbedf15fe474fd18c045c62cf8cc7d6',''),(13367,'{13068}>20','Disk I/O is overloaded','',0,0,2,0,'The OS spends significant time waiting for the I/O (input/output) operations. It could be an indicator of performance issues with the storage system.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c030cc99975d4fe3911789e58bbd5050',''),(13368,'{23350}<>{23351}','Hostname was changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d1e70b7f465447a3ab575b3fd28755a1',''),(13370,'{23352}<>{23353}','Host information was changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3a736e64211744aea480a60b2c48a036',''),(13371,'{12758}<0','Server has just been restarted','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','03a2cd88b6a64d3ea4c9bb2abbc4ae2d',''),(13372,'{23354}<>{23355}','/etc/passwd has been changed','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c75ee957fd6c43b2aba9919d5e1af4a1',''),(13382,'{13075}>5','Processor load is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6721e8fbe5ee45aa9d06b698210a268a',''),(13384,'{23362}<>{23363}','Hostname was changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','07215ae05345423d8625962b85d9d4ec',''),(13386,'{23364}<>{23365}','Host information was changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','34f76014b2d3434a8d1f1f0657b5605f',''),(13388,'{23366}<>{23367}','/etc/passwd has been changed','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f65c254d50e2454d9840784ff979f5d3',''),(13396,'{13093}>30','Too many processes running','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6504ba0f7fa445ea9083af008d52c525',''),(13397,'{13092}>300','Too many processes','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','cc2731add899436ca2c12fff13c838fb',''),(13398,'{13091}>5','Processor load is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e7ef1c2b702440a3a7a20a544446a068',''),(13399,'{13090}>20','Disk I/O is overloaded','',0,0,2,0,'The OS spends significant time waiting for the I/O (input/output) operations. It could be an indicator of performance issues with the storage system.','',NULL,0,0,0,0,'',0,'',0,'',0,'','280634a65c9d4702a4913c9c2cd5869c',''),(13400,'{23380}<>{23381}','Hostname was changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','cc5a9c97827f4091b83af8be33d58560',''),(13402,'{23382}<>{23383}','Host information was changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','dc293e688ac54ac0aee61e398d8bc5c5',''),(13403,'{12790}<0','Server has just been restarted','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','56284beb4a464017b3aa2f4c00bc271f',''),(13404,'{23384}<>{23385}','/etc/passwd has been changed','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','50e5be0acabb41658ec82772d9ec234e',''),(13414,'{13086}>5','Processor load is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3cf40421e61b41bab7697bbf9a2649d6',''),(13416,'{23368}<>{23369}','Hostname was changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ffb713a281a543879e4196e4207bdd62',''),(13418,'{23370}<>{23371}','Host information was changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','55d8650af70d4aeea56345985e454df9',''),(13419,'{12806}<0','Server has just been restarted','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','1f0cc03186cc4bb98483927f425df8e9',''),(13420,'{23372}<>{23373}','/etc/passwd has been changed','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','39cfe50a3d2a46ad9a53b9ec7443ec18',''),(13441,'{13194}>75','Zabbix server: Utilization of snmp trapper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13194}<65',0,'',0,'',0,'Zabbix server: Utilization of snmp trapper processes over 75%','821611786e5e49bf941cbca370d6ed6b',''),(13517,'{28385}>{$ZABBIX.PROXY.UTIL.MAX}','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the configuration cache','',0,0,3,0,'Consider increasing CacheSize in the zabbix_proxy.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','98ae52367f69476dbeb9c50e5f28b429',''),(13518,'{28387}>{$ZABBIX.PROXY.UTIL.MAX}','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the history cache','',0,0,3,0,'Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','dc5a87f6c62d47b08ddd4578aa5f293f',''),(13519,'{28388}>{$ZABBIX.PROXY.UTIL.MAX}','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the history index cache','',0,0,3,0,'Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','92b94edb126d48af9e5e959357e2107b',''),(13520,'{12949}>100','Zabbix proxy: More than 100 items having missing data for more than 10 minutes','',0,0,2,0,'zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'','f28d8231e0f2486bb68963719359789c',''),(13521,'{28363}>{$ZABBIX.PROXY.UTIL.MAX:\"configuration syncer\"}','Zabbix proxy: Utilization of configuration syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28363}<{$ZABBIX.PROXY.UTIL.MIN:\"configuration syncer\"}',0,'',0,'',0,'Zabbix proxy: Utilization of configuration syncer processes over {$ZABBIX.PROXY.UTIL.MAX:\"configuration syncer\"}%','27eb861e2e6f43f69f17b8ba65bfedcc',''),(13522,'{28365}>{$ZABBIX.PROXY.UTIL.MAX:\"discoverer\"}','Zabbix proxy: Utilization of discoverer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28365}<{$ZABBIX.PROXY.UTIL.MIN:\"discoverer\"}',0,'',0,'',0,'Zabbix proxy: Utilization of discoverer processes over {$ZABBIX.PROXY.UTIL.MAX:\"discoverer\"}%','080bd8d98f204d8580cbb1088f07d57b',''),(13523,'{28368}>{$ZABBIX.PROXY.UTIL.MAX:\"history syncer\"}','Zabbix proxy: Utilization of history syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28368}<{$ZABBIX.PROXY.UTIL.MIN:\"history syncer\"}',0,'',0,'',0,'Zabbix proxy: Utilization of history syncer processes over {$ZABBIX.PROXY.UTIL.MAX:\"history syncer\"}%','52fb303ec9164aa28821117f3a559fe3',''),(13524,'{28369}>{$ZABBIX.PROXY.UTIL.MAX:\"housekeeper\"}','Zabbix proxy: Utilization of housekeeper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28369}<{$ZABBIX.PROXY.UTIL.MIN:\"housekeeper\"}',0,'',0,'',0,'Zabbix proxy: Utilization of housekeeper processes over {$ZABBIX.PROXY.UTIL.MAX:\"housekeeper\"}%','b6cbede80a4847ed94a0ba818b7ca261',''),(13525,'{28370}>{$ZABBIX.PROXY.UTIL.MAX:\"http poller\"}','Zabbix proxy: Utilization of http poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28370}<{$ZABBIX.PROXY.UTIL.MIN:\"http poller\"}',0,'',0,'',0,'Zabbix proxy: Utilization of http poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"http poller\"}%','e93e5a3dd27f4d378bbfe2c8e5b009e7',''),(13526,'{28371}>{$ZABBIX.PROXY.UTIL.MAX:\"icmp pinger\"}','Zabbix proxy: Utilization of icmp pinger processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28371}<{$ZABBIX.PROXY.UTIL.MIN:\"icmp pinger\"}',0,'',0,'',0,'Zabbix proxy: Utilization of icmp pinger processes over {$ZABBIX.PROXY.UTIL.MAX:\"icmp pinger\"}%','d514f4a08bcd4fe2b696015a74ffafcf',''),(13527,'{28373}>{$ZABBIX.PROXY.UTIL.MAX:\"ipmi poller\"}','Zabbix proxy: Utilization of ipmi poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28373}<{$ZABBIX.PROXY.UTIL.MIN:\"ipmi poller\"}',0,'',0,'',0,'Zabbix proxy: Utilization of ipmi poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"ipmi poller\"}%','99ce9f0ed6204860b7b943e9e3a5fbc0',''),(13528,'{28374}>{$ZABBIX.PROXY.UTIL.MAX:\"java poller\"}','Zabbix proxy: Utilization of java poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28374}<{$ZABBIX.PROXY.UTIL.MIN:\"java poller\"}',0,'',0,'',0,'Zabbix proxy: Utilization of java poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"java poller\"}%','5b8cc59c21b145739e346479124c48f5',''),(13529,'{28376}>{$ZABBIX.PROXY.UTIL.MAX:\"poller\"}','Zabbix proxy: Utilization of poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28376}<{$ZABBIX.PROXY.UTIL.MIN:\"poller\"}',0,'',0,'',0,'Zabbix proxy: Utilization of poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"poller\"}%','3f93b378367e48f89abe304ccb624047',''),(13530,'{28379}>{$ZABBIX.PROXY.UTIL.MAX:\"self-monitoring\"}','Zabbix proxy: Utilization of self-monitoring processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28379}<{$ZABBIX.PROXY.UTIL.MIN:\"self-monitoring\"}',0,'',0,'',0,'Zabbix proxy: Utilization of self-monitoring processes over {$ZABBIX.PROXY.UTIL.MAX:\"self-monitoring\"}%','cc9569f75bd44b5cbce4a4c556cd2949',''),(13531,'{28380}>{$ZABBIX.PROXY.UTIL.MAX:\"snmp trapper\"}','Zabbix proxy: Utilization of snmp trapper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28380}<{$ZABBIX.PROXY.UTIL.MIN:\"snmp trapper\"}',0,'',0,'',0,'Zabbix proxy: Utilization of snmp trapper processes over {$ZABBIX.PROXY.UTIL.MAX:\"snmp trapper\"}%','bb0a46beffbc457faea9362d4325c676',''),(13532,'{28382}>{$ZABBIX.PROXY.UTIL.MAX:\"trapper\"}','Zabbix proxy: Utilization of trapper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28382}<{$ZABBIX.PROXY.UTIL.MIN:\"trapper\"}',0,'',0,'',0,'Zabbix proxy: Utilization of trapper processes over {$ZABBIX.PROXY.UTIL.MAX:\"trapper\"}%','95ad6d80dc9c4f46a4e255d13f1b01a3',''),(13533,'{28383}>{$ZABBIX.PROXY.UTIL.MAX:\"unreachable poller\"}','Zabbix proxy: Utilization of unreachable poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28383}<{$ZABBIX.PROXY.UTIL.MIN:\"unreachable poller\"}',0,'',0,'',0,'Zabbix proxy: Utilization of unreachable poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"unreachable poller\"}%','a28abd3f43f843af9646a1f8b1ca056a',''),(13534,'{28364}>{$ZABBIX.PROXY.UTIL.MAX:\"data sender\"}','Zabbix proxy: Utilization of data sender processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28364}<{$ZABBIX.PROXY.UTIL.MIN:\"data sender\"}',0,'',0,'',0,'Zabbix proxy: Utilization of data sender processes over {$ZABBIX.PROXY.UTIL.MAX:\"data sender\"}%','e8fd57784b9e4289aa4515cfa7c6c4ad',''),(13536,'{12965}>75','Zabbix server: More than 75% used in the vmware cache','',0,0,3,0,'Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2df2ed6520c44ee880f35912f869583e',''),(13544,'{31466}=0','HTTP service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b299d73cebcd430c8bfc54cf9b84e853',''),(13546,'{12996}=0','HTTPS service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6aa24949292e406b9bb917f641f3da79',''),(13547,'{12997}=0','IMAP service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','075e6217564d45fdb713f810a9eef87c',''),(13548,'{12998}=0','LDAP service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ea88df0a4c87424c891ac2197e5b6966',''),(13549,'{13154}=0','NNTP service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f549234088cb4d1981c72eae82665f56',''),(13550,'{13156}=0','NTP service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6c7f4d7e2719401d8fd8f99ae8fc2d34',''),(13551,'{13152}=0','POP service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','72ad7fa260144095bdc41eddf09bbb08',''),(13552,'{13157}=0','SMTP service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b90e7dafca6c4b92b318f74bb07e8ac4',''),(13553,'{13158}=0','SSH service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','8f6ce4930afd48f0acc229bad5092c79',''),(13557,'{13160}=1','Zabbix server: Zabbix value cache working in low memory mode','',0,0,4,0,'Once the low memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ee3db7e7bc104f1598ca36e735bce53f',''),(13559,'{13196}>75','Zabbix server: Utilization of task manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13196}<65',0,'',0,'',0,'Zabbix server: Utilization of task manager processes over 75%','37c1c6ec07474a8a95b06c3c28e4bf96',''),(13562,'{13222}>75','Zabbix server: Utilization of ipmi manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13222}<65',0,'',0,'',0,'Zabbix server: Utilization of ipmi manager processes over 75%','9ce0c874e5924b308827e8be5a9bf0eb',''),(13564,'{28372}>{$ZABBIX.PROXY.UTIL.MAX:\"ipmi manager\"}','Zabbix proxy: Utilization of ipmi manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28372}<{$ZABBIX.PROXY.UTIL.MIN:\"ipmi manager\"}',0,'',0,'',0,'Zabbix proxy: Utilization of ipmi manager processes over {$ZABBIX.PROXY.UTIL.MAX:\"ipmi manager\"}%','751e3000367f42d9af0d4418f3472a91',''),(13565,'{28381}>{$ZABBIX.PROXY.UTIL.MAX:\"task manager\"}','Zabbix proxy: Utilization of task manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28381}<{$ZABBIX.PROXY.UTIL.MIN:\"task manager\"}',0,'',0,'',0,'Zabbix proxy: Utilization of task manager processes over {$ZABBIX.PROXY.UTIL.MAX:\"task manager\"}%','9a42dad8cef04138944f3a1b8c797f4e',''),(13566,'{13226}>75','Zabbix server: Utilization of alert manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13226}<65',0,'',0,'',0,'Zabbix server: Utilization of alert manager processes over 75%','c7f8ac54e4d3409788b8a456046ee461',''),(13568,'{13228}>75','Zabbix server: Utilization of preprocessing manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13228}<65',0,'',0,'',0,'Zabbix server: Utilization of preprocessing manager processes over 75%','6e7a117afa7e41e2a783f8afc42434fa',''),(13569,'{13229}>75','Zabbix server: Utilization of preprocessing worker processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{13229}<65',0,'',0,'',0,'Zabbix server: Utilization of preprocessing worker processes over 75%','e2cbdcc8b4844943a67d1f51587e599c',''),(14251,'{14378}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b030876299434f3ba43e11c584104a81',''),(14252,'{14379}>{$ICMP_LOSS_WARN} and {14379}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','42c4b0310aaf4b9c8cb502542b7dea90',''),(14253,'{14380}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','32b4d8f3eba34bd380803410111d4b7f',''),(14318,'{31249}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31250}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','90ba726922f74d1d971b3f07781fc035',''),(14319,'{31247}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31248}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','8f478386378349e7a4e4586c5ba74c78',''),(14320,'{31251}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31252}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','6035fc6733614ae1b4ed22c7d73466b0',''),(14322,'{23710}<>{23711} and length({23712})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','ccdcfdbe1a6243949857c764aed9c9ea',''),(14336,'{23719}<>{23720} and length({23721})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','9939f98da99c435a9b5505e55e8abb5f',''),(14337,'{23716}<>{23717} and length({23718})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','9c5ae10dbafb45658f25f0279a8a1934',''),(14339,'{31264}>{$TEMP_CRIT:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31265}<{$TEMP_CRIT:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SENSOR_INFO}\"}','5ee4c1931e244d638b58f945f8a7565c',''),(14340,'{31266}<{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31267}>{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}','fc68b3a0ea6643f988c26e3e735d7491',''),(14363,'{23725}<>{23726} and length({23727})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','2bb9d8927e464842a55b89be412adcc4',''),(14364,'{23722}<>{23723} and length({23724})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','fbe1f9d9286046bbb15fe89ec1dcc87d',''),(14365,'{23728}<>{23729} and length({23730})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','891b6945b3ae4625bf77a16985219015',''),(14372,'{31270}>{$TEMP_WARN:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31271}<{$TEMP_WARN:\"{#SENSOR_DESCR}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SENSOR_DESCR}\"}','3687c8a7e88949fb9953049fb0f5e54d',''),(14373,'{31268}>{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31269}<{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}','bace15be86774bb4a46ca491b3b53516',''),(14374,'{31272}<{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31273}>{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}','fbe5f29b241248b4b4bff5d55fcc2180',''),(14380,'{31276}>{$TEMP_WARN:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31277}<{$TEMP_WARN:\"{#SENSOR_DESCR}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SENSOR_DESCR}\"}','c1e348e8a5f24100a5b29a840a43dca9',''),(14381,'{31274}>{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31275}<{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}','e1a63b2ebef549ebbd95b307feee8b8d',''),(14382,'{31278}<{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31279}>{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}','722ee93a637643e9b3cff31e5ea5151d',''),(14383,'{23731}<>{23732} and length({23733})>0','Unit {#SNMPVALUE}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Unit {#SNMPVALUE}: Device has been replaced (new serial number received)','0144f409ccfd421cb382031cbed8a037',''),(14409,'{23804}<>{23805} and length({23806})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','4100a7125272484c81c4f599eff82793',''),(14417,'{23828}<>{23829} and length({23830})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','ff15aaac7c4947b6a07a38dec4d1466d',''),(14460,'{31282}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','Device {#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31283}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','f4d0a2c0b1a9468990e1f6dbfef1ab75',''),(14461,'{31280}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','Device {#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31281}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','dc1064de6a6b4533be812e590b96927b',''),(14462,'{31284}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','Device {#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31285}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','f1bbf02af05041ef95ff80ff18fc02a7',''),(14463,'{23840}<>{23841} and length({23842})>0','#{#SNMPVALUE}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'#{#SNMPVALUE}: Device has been replaced (new serial number received)','6f02e903dab24bf294015f43e0b52504',''),(14474,'{23846}<>{23847} and length({23848})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','7d8f92f3c5df4b5091f49e07e50fae44',''),(14476,'{31288}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31289}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','8486ed430ee24b13b65786e5b4857684',''),(14477,'{31286}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31287}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','b675df20392d458f9a53dace6bde978a',''),(14478,'{31290}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31291}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','ef5a9113e96d4cc095d384cbeeef9bc5',''),(14492,'{23855}<>{23856} and length({23857})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','3aa2e47f4b8145b8a5e4f67b0987ca2b',''),(14493,'{23852}<>{23853} and length({23854})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','40a2ad291ded4bf9bc72adc2b8653b98',''),(14495,'{31294}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','#{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31295}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','bc0c87dbf83e49dab264e9f2bf1bb418',''),(14496,'{31292}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','#{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31293}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','0cbd0c61e07245af863a19f296f38195',''),(14497,'{31296}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','#{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31297}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','8d93aea3774d4a3bbd98127273c648d1',''),(14511,'{31298}>{$TEMP_WARN}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,0,1,'{31299}<{$TEMP_WARN}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN}','54362c94be0243ffb907905def0ad06a',''),(14513,'{31300}<{$TEMP_CRIT_LOW}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,0,1,'{31301}>{$TEMP_CRIT_LOW}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW}','91a10b28c7a14dd09110448a28a328f9',''),(14514,'{23861}<>{23862} and length({23863})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','db1760a34c884b1aa36e4fc4639791dd',''),(14515,'{23858}<>{23859} and length({23860})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','dd9fbc501f9047fd8fae9dfd741e3778',''),(14551,'{31307}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31308}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','cda6a4e305fe41239462d2f85acc5590',''),(14552,'{31305}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31306}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','bbad03018e8e408c952cca2615b4eab3',''),(14553,'{31309}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31310}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','340a9c397bff4ac5a37a2ada9d0c1e69',''),(14556,'{23889}<>{23890} and length({23891})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','d3633f4584344570a1c0570f0b082590',''),(14557,'{23886}<>{23887} and length({23888})>0','{#ENT_NAME}: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','17e0f72418f4432d852b5c39ddf675bd',''),(14589,'{31319}>{$TEMP_WARN:\"{#ENT_NAME}\"}','{#ENT_NAME}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31320}<{$TEMP_WARN:\"{#ENT_NAME}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#ENT_NAME}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#ENT_NAME}\"}','c54c36491adf4a488d11f2538b337129',''),(14590,'{31317}>{$TEMP_CRIT:\"{#ENT_NAME}\"}','{#ENT_NAME}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31318}<{$TEMP_CRIT:\"{#ENT_NAME}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#ENT_NAME}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#ENT_NAME}\"}','d28db9267b9d488f8f359dd7d14d2ac1',''),(14591,'{31321}<{$TEMP_CRIT_LOW:\"{#ENT_NAME}\"}','{#ENT_NAME}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31322}>{$TEMP_CRIT_LOW:\"{#ENT_NAME}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#ENT_NAME}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#ENT_NAME}\"}','7b2cffb3ad47440d8b79b39958794ed9',''),(14592,'{23901}<>{23902} and length({23903})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','e379ca4d50a3434e82841e8884a84656',''),(14603,'{23907}<>{23908} and length({23909})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','1ca7574040da41a3bf416daa8172d952',''),(14606,'{31329}<{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31330}>{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}','03e351b056504735b02da8c37dad6bf0',''),(14607,'{23910}<>{23911} and length({23912})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','90778aeb97244258a830e89eeb263e54',''),(14621,'{23913}<>{23914} and length({23915})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','9f1f3316ed6f4d50a4c9f71a15f35d50',''),(14624,'{31333}>{$TEMP_WARN:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31334}<{$TEMP_WARN:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SENSOR_INFO}\"}','51113c80e4bd46de8ea247e0bd3b19dd',''),(14625,'{31331}>{$TEMP_CRIT:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31332}<{$TEMP_CRIT:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SENSOR_INFO}\"}','c82ca2b550f540b7a4c8f9548e15cfb0',''),(14626,'{31335}<{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31336}>{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}','35b56753b2424f0989ca09cb67f7d9a3',''),(14661,'{23931}<>{23932} and length({23933})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','6c1dcb2e8e76405887af69a6a08e53df',''),(14662,'{23928}<>{23929} and length({23930})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','62a9cd04a4dc4f5a9b59a01e54fb983f',''),(14664,'{15111}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{15112}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','1c380934165343a68345c761de9cbdb5',''),(14665,'{15113}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{15114}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','edcc83694dc847f8a8dcb7e192f96404',''),(14666,'{15115}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{15116}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','47a89879a7db47e9bf598e27f7c084e7',''),(14680,'{23937}<>{23938} and length({23939})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','eba057a7ef5743ecb2c037476c97fc38',''),(14683,'{31351}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','#{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31352}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','222b4523c61144d1a91bb1b5cbd63caf',''),(14698,'{23946}<>{23947} and length({23948})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','83db3bd248994482a92ba86e5d3ae5ab',''),(14699,'{23943}<>{23944} and length({23945})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','e4682afd0cc547eea9605452b7df79f4',''),(14709,'{23955}<>{23956} and length({23957})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','57a906ac8f994ebaa2543a5eb4949db7',''),(14710,'{23952}<>{23953} and length({23954})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','ee797ebfc568468d8a3e9a8b388afb6d',''),(14724,'{23958}<>{23959} and length({23960})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','ab4a91cf3c2a4305a59727558c00a1f8',''),(14912,'{23898}<>{23899} and length({23900})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','6b9b9b0d1ff24074bb344d04efe53444',''),(14913,'{23895}<>{23896} and length({23897})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','a9dcdf4129d041eca8dadc8bfbc455ee',''),(14914,'{31313}>{$TEMP_WARN:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31314}<{$TEMP_WARN:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SENSOR_INFO}\"}','b549cc5016884818bf416c415618171f',''),(14915,'{31311}>{$TEMP_CRIT:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31312}<{$TEMP_CRIT:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SENSOR_INFO}\"}','5d0d743c7f5449f4a429845ab3894d19',''),(14916,'{31315}<{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31316}>{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SENSOR_INFO}\"}','a4294d3ad024438aaba4234811d65582',''),(14937,'{23922}<>{23923} and length({23924})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','585db2b2a42b4eb09770ca2241a557d0',''),(14941,'{15731}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','e6ae9fc7d4454d389d066450af3a3066',''),(15330,'{16818}=1','#{#SNMPINDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','10f9f5cd2f1b4d09abba3ae48b482eb8',''),(15331,'{16819}=1','PSU {#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','764f08ab7a29481fa73a63ae256ff154',''),(15332,'{16820}=1','PSU {#SNMPVALUE}: Power supply is not in normal state','',0,0,1,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a7d4ac882ec24cce9839c6012c7fa562',''),(15333,'{16821}=1','Fan {#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','aecc6fdd58404347b3074b0c1db63f09',''),(15334,'{16822}=1','Fan {#SNMPVALUE}: Fan is not in normal state','',0,0,1,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a53271304dcf418aa5afdaa145436b70',''),(15337,'{16829}=1','{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1d0c9610cd984124bb7fed812e9edb16',''),(15338,'{16830}=1','{#SNMPVALUE}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7ae4943842ea491c899ce0f84210e202',''),(15339,'{16831}=1','{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7ceeb8d2ec314fc1b8dbe9746e9a667a',''),(15340,'{16832}=1','#{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','aabaa197e62649cd929353f131c3fa00',''),(15341,'{16833}=1','#{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e8cb2d8bc3ee44c58c5111d3ead41d1b',''),(15344,'{16840}=1 or {16841}=1','{#SENSOR_INFO}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5796e1e85ea949d0b86ce83f5daae958',''),(15345,'{16842}=1 or {16843}=1','{#SENSOR_INFO}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','93892fed243f4f0b8c26ab67fa6e1800',''),(15346,'{16844}=1 or {16845}=1','{#SENSOR_INFO}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a9f5e9e2a65143298910e354e832bf2f',''),(15347,'{16846}=1 or {16847}=1','{#SENSOR_INFO}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','58cf2c24afd74e5cb048557e8e52138e',''),(15366,'{16890}=1','{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4cc6f58430374fc4b2f1bced4e2097f6',''),(15367,'{16891}=1','{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a5cb052573394829877fdc6bf3d501c0',''),(15369,'{16895}=1','PSU {#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','710f1bf31381470f9a13c45f887bda4e',''),(15370,'{16896}=1','Fan {#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bd0c753f33c441a0bf4567f8b81186d6',''),(15371,'{16897}=1 or {16898}=1','{#ENT_NAME}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b0821c8e75e14e53906c3a3f209a2785',''),(15372,'{16899}=1 or {16900}=1 or {16901}=1','{#ENT_NAME}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0c3cb88352e2417fb2b80bb78448fb35',''),(15373,'{16902}=1','{#ENT_DESCR}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4fba6383ed4c4cd89b349a5dfccb7909',''),(15374,'{16903}=1','{#ENT_DESCR}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6cf626561b33468cb1e2c9e590334c4b',''),(15375,'{16904}=1','{#ENT_DESCR}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','81553d4157ce4c938c25b9403c5e572a',''),(15376,'{16905}=1','{#ENT_DESCR}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','aeb31d4c3958433c9a0105f79156094a',''),(15377,'{16906}=1','{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f8f1dee0b0ff465d98c6f6bcdfaff17f',''),(15378,'{16907}=1','{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e577226331f6483fbd1e414bb7d365f7',''),(15379,'{16908}=1','PSU {#PSU_INDEX}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fbe256ab504b4cb98fec650972d5c41a',''),(15380,'{16909}=1','PSU {#PSU_INDEX}: Power supply is not in normal state','',0,0,1,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6163e41576734f469146bc818b2856a2',''),(15381,'{16910}=1','Fan {#FAN_INDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','dfb8d67a8b0c4128aff9d1643e40afc0',''),(15382,'{16911}=1','Fan {#FAN_INDEX}: Fan is not in normal state','',0,0,1,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','74ef51062e194213bbf61f747624313c',''),(15383,'{16912}=1','Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b2b78ace5fc748129fd73ae4283802a6',''),(15384,'{16913}=1','Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is not in normal state','',0,0,1,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d7d0b3a51e2d4737938d310ba6c4a9c9',''),(15385,'{16914}=1','Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','10f683ff42054948bad36cc52f9c968e',''),(15386,'{16915}=1','Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is not in normal state','',0,0,1,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','821381a387194c7ca4e4ddd1cf734a4c',''),(15391,'{16924}=1','{#SENSOR_INFO}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','649e7344411242738d9824f861b3c49a',''),(15392,'{16925}=1','{#SENSOR_INFO}: Power supply is not in normal state','',0,0,1,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bfe2f4085f6840da9e8d30f37bb29fdb',''),(15393,'{16926}=1','{#SENSOR_INFO}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','75003433a8304644a20d11b82dcbae14',''),(15394,'{16927}=1','{#SENSOR_INFO}: Fan is not in normal state','',0,0,1,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','83e8182fd7034edca8317fa91776b6d2',''),(15395,'{16928}=1','#{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ba459f7ce17a4f71a46fa1a0337f0f89',''),(15398,'{16935}=1','#{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ce48c2b0a07d4528b95668c853b6b4e0',''),(15399,'{16936}=1','#{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','78d4bcad8d7d4694ad492b37003fa0b0',''),(15640,'{28386}>{$ZABBIX.PROXY.UTIL.MAX}','Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the vmware cache','',0,0,3,0,'Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','69707cc61b7d408f8683dae435183d4f',''),(15641,'{28384}>{$ZABBIX.PROXY.UTIL.MAX:\"vmware collector\"}','Zabbix proxy: Utilization of vmware collector processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28384}<{$ZABBIX.PROXY.UTIL.MIN:\"vmware collector\"}',0,'',0,'',0,'Zabbix proxy: Utilization of vmware collector processes over {$ZABBIX.PROXY.UTIL.MAX:\"vmware collector\"}%','a1051b5ac8334125a40cb36a95605284',''),(15671,'{17692}<0 and {17693}>0\r\nand (\r\n{17694}=6 or\r\n{17694}=7 or\r\n{17694}=11 or\r\n{17694}=62 or\r\n{17694}=69 or\r\n{17694}=117\r\n)\r\nand\r\n({17695}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({17692}>0 and {17696}>0) or\r\n({17695}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','9f1f6cff58454b469f588af8624f9078',''),(15695,'{17812}<0 and {17813}>0\r\nand (\r\n{17814}=6 or\r\n{17814}=7 or\r\n{17814}=11 or\r\n{17814}=62 or\r\n{17814}=69 or\r\n{17814}=117\r\n)\r\nand\r\n({17815}<>2)','Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({17812}>0 and {17816}>0) or\r\n({17815}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','13c523ffdf154e6fb1ab7628e3a2010a',''),(15698,'{17827}<0 and {17828}>0\r\nand (\r\n{17829}=6 or\r\n{17829}=7 or\r\n{17829}=11 or\r\n{17829}=62 or\r\n{17829}=69 or\r\n{17829}=117\r\n)\r\nand\r\n({17830}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({17827}>0 and {17831}>0) or\r\n({17830}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','31393aeac3b44062b98267fc1f594c52',''),(15717,'{17866}=1','{#SENSOR_INFO}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','11dddf9f12a0423bb886808759cd429d',''),(15718,'{23713}<>{23714} and length({23715})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','218209a40ec54a489738345c4485be83',''),(15719,'{17869}=1','{#ENT_NAME}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4faa99278cd94abaace8b09529a6efaa',''),(15720,'{17870}=1','System status is in critical state','',0,0,4,0,'Please check the device for errors','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b91af8b94e2047538376be9911beadee',''),(15721,'{17871}=1 or {17872}=1','System status is in warning state','',0,0,2,0,'Please check the device for warnings','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b17d4a2bae804c968984b763fa4562fc',''),(15722,'{17873}=1','System status is in critical state','',0,0,4,0,'Please check the device for errors','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1190bb9c05424ac5a0052bd191c274f2',''),(15728,'{17879}=1','System is in unrecoverable state!','',0,0,4,0,'Please check the device for faults','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6d07848a4ded4e4fb0383ff12234ed25',''),(15729,'{17880}=1','System status is in critical state','',0,0,4,0,'Please check the device for errors','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b47601a02003409896d79e3c99093aca',''),(15730,'{17881}=1','System status is in warning state','',0,0,2,0,'Please check the device for warnings','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a323c8f5ca8d4517b0451677bd43c4db',''),(15731,'{24779}<>{24780} and length({24781})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','6f5b00a889804fbeb41c4246b29bd5f1',''),(15732,'{24776}<>{24777} and length({24778})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','e816b86474e6471eb48cbda563dfddd6',''),(15735,'{17892}<{$TEMP_CRIT_LOW:\"CPU\"}','{#SENSOR_LOCALE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{17893}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','edb89d83ecc144cdbccdb41f8842d572',''),(15738,'{17900}<{$TEMP_CRIT_LOW:\"Ambient\"}','{#SENSOR_LOCALE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{17901}>{$TEMP_CRIT_LOW:\"Ambient\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"Ambient\"}','992e0a871cef40f6b859e251fd5d75fd',''),(15739,'{17902}=1 or {17903}=1','{#PSU_DESCR}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9f57b49984864af188b178dc2da85b71',''),(15740,'{17904}=1','{#PSU_DESCR}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d7d1b3d889254ae288348cd6b77bad5f',''),(15741,'{17905}=1 or {17906}=1 or {17907}=1 or {17908}=1 or {17909}=1','{#FAN_DESCR}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a1bca91682e84a7b8866ce443cfcbd44',''),(15742,'{17910}=1 or {17911}=1','{#FAN_DESCR}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','981f52ec4ba44b558bdbc5775622bc0c',''),(15743,'{17912}=1 or {17913}=1','{#DISK_NAME}: Physical disk failed','',0,0,4,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','5eedc39db9a348df8e547be6401c0814',''),(15744,'{17914}=1','{#DISK_NAME}: Physical disk is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6defa44f91ee4fb5b11b92ba64f07b48',''),(15745,'{24785}<>{24786} and length({24787})>0','{#DISK_NAME}: Disk has been replaced','',0,0,1,0,'Disk serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DISK_NAME}: Disk has been replaced (new serial number received)','eb26b6915b9f4ce6983566df9ee4db96',''),(15746,'{17917}=1','{#DISK_NAME}: Physical disk S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7dc1a088ebd74702b0fb4e0a20edbed2',''),(15747,'{17918}=1','Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk failed','',0,0,4,0,'Please check virtual disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','457783fb014a4cae9d47a1cb17d8d31e',''),(15748,'{17919}=1','Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk is in warning state','',0,0,3,0,'Please check virtual disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d0c6dbaa042f40559d855acb1b61977a',''),(15749,'{17920}=1','{#CNTLR_NAME}: Disk array controller is in unrecoverable state!','',0,0,5,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','55a0631d0ab24bc6ad5a6c4ef7d1be30',''),(15750,'{17921}=1','{#CNTLR_NAME}: Disk array controller is in critical state','',0,0,4,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b037fad011764721a030bdde50f6ede3',''),(15751,'{17922}=1','{#CNTLR_NAME}: Disk array controller is in warning state','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','226ab2efc25d46c9adda8f763fe4a65f',''),(15752,'{17923}=1','Battery {#BATTERY_NUM}: Disk array cache controller battery is in warning state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fc2eeac871464a65930bbbb2341c803f',''),(15753,'{17924}=1','Battery {#BATTERY_NUM}: Disk array cache controller battery is not in optimal state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d36acb231d99493b9a760bf231001b4d',''),(15754,'{17925}=1','Battery {#BATTERY_NUM}: Disk array cache controller battery is in critical state!','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7b9a7b970ac049589912d8e208baf2e2',''),(15762,'{24996}<>{24997} and length({24998})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','7e8d377e1b49469a8b19b94e6dad97ce',''),(15781,'{17971}=1','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7a34714fcbb74294af97bc4f39c21413',''),(15782,'{17972}=1','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','db7679204aa544cb8ffe38df5c68b7ce',''),(15783,'{17973}=1','Fan {#SNMPINDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0731e25040504428acb466b0d4e2803a',''),(15784,'{17974}=1','Fan {#SNMPINDEX}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c8c9ea062fa849b0b550ad4dd1d2cec7',''),(15785,'{17975}=1','{#CNTLR_LOCATION}: Disk array controller is in critical state','',0,0,4,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a318564fe4eb488eba251f3cba3d31b6',''),(15786,'{17976}=1','{#CNTLR_LOCATION}: Disk array controller is in warning state','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6b65d2b2477c4567953fcec31b1ab9a3',''),(15787,'{17977}=1','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a4c81fb1ef6140199bbde241691183cd',''),(15790,'{17983}=1 or {17984}=1','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state!','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b3049aa19e5d45d28937c1af262aba3e',''),(15792,'{17987}=1','{#DISK_LOCATION}: Physical disk failed','',0,0,4,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','95e887baa0b9480a8a59848b07418c6b',''),(15793,'{17988}=1','{#DISK_LOCATION}: Physical disk is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','857540089794495799eb1a04b172c70c',''),(15794,'{17989}=1 or {17990}=1','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','180f8f9124a041d0bf1c350d0226c3d3',''),(15795,'{24999}<>{25000} and length({25001})>0','{#DISK_LOCATION}: Disk has been replaced','',0,0,1,0,'Disk serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DISK_LOCATION}: Disk has been replaced (new serial number received)','87bcd812474b44729da19f49344ba976',''),(15796,'{17993}=1','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','',0,0,4,0,'Please check virtual disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3f809df0d34f47a2bc1addbf2f4387ac',''),(15797,'{17994}=1','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','',0,0,2,0,'Please check virtual disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','439b8dfa246f42d190d8f4deeebfeb53',''),(15824,'{18031}=1','System is in unrecoverable state!','',0,0,4,0,'Please check the device for faults','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ea8fbc9446d34033b60a8214b8199ea1',''),(15825,'{18032}=1','System status is in critical state','',0,0,4,0,'Please check the device for errors','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a76c198aeb7d452a8c710ddde21aa12e',''),(15826,'{18033}=1','System status is in warning state','',0,0,2,0,'Please check the device for warnings','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','acd147a3d41b49478410f4d49562cde2',''),(15827,'{25002}<>{25003} and length({25004})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','b2bf06198d5840c6905ea6cf6d9e443c',''),(15828,'{31425}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31426}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','ecb8ac5828e44a94a32164dce9811fbc',''),(15829,'{31423}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31424}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','958eebe18bd94670b2b9029064a84bc9',''),(15830,'{31427}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31428}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','8ff82421c9f74d509766e7dc139ab2c8',''),(15831,'{18042}>{$TEMP_WARN:\"Ambient\"}','Ambient: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{18043}<{$TEMP_WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Ambient: Temperature is above warning threshold: >{$TEMP_WARN:\"Ambient\"}','e6bcdf201e304471aa84cc8d34b290ec',''),(15832,'{18044}>{$TEMP_CRIT:\"Ambient\"}','Ambient: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{18045}<{$TEMP_CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:\"Ambient\"}','615967071d6b40f6b02e386c9586a66e',''),(15833,'{18046}<{$TEMP_CRIT_LOW:\"Ambient\"}','Ambient: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{18047}>{$TEMP_CRIT_LOW:\"Ambient\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:\"Ambient\"}','dd773e52746840e4b6f7517740873102',''),(15834,'{18048}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{18049}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','3b7396311de1487e90416aa2c42cb03d',''),(15835,'{18050}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{18051}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','e994d3d8398147c49062bc712dc4c204',''),(15836,'{18052}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{18053}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','e39d0e009efb4216ac7cbbe544ad4bc0',''),(15837,'{18054}=1','{#PSU_DESCR}: Power supply is not in normal state','',0,0,1,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4e7767484cff49b098e73b068ef04160',''),(15838,'{18055}=1','{#FAN_DESCR}: Fan is not in normal state','',0,0,1,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b2d4ae5922174af6b0ef274accc8ae21',''),(15839,'{18056}=1','{#SNMPINDEX}: Physical disk is not in OK state','',0,0,2,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','45eb3fe3369a41b199179e2eca725027',''),(15845,'{31431}>{$TEMP_WARN:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31432}<{$TEMP_WARN:\"{#SENSOR_DESCR}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SENSOR_DESCR}\"}','2c2914d1c8c846d180ee308fa861540e',''),(15846,'{31429}>{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31430}<{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SENSOR_DESCR}\"}','1a48aee477d54d34bdea47fc6027968c',''),(15847,'{31433}<{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}','{#SENSOR_DESCR}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{31434}>{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SENSOR_DESCR}\"}','1439e7a34bbf4046836890f208f99a48',''),(15853,'{18076}>75','Zabbix server: Utilization of lld manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18076}<65',0,'',0,'',0,'Zabbix server: Utilization of lld manager processes over 75%','39109dabd9454844996864834292c0c4',''),(15855,'{18078}>75','Zabbix server: Utilization of lld worker processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18078}<65',0,'',0,'',0,'Zabbix server: Utilization of lld worker processes over 75%','8eca01d6e0e64f5795d3a5b5e4aa593d',''),(15857,'{18080}>75','Remote Zabbix server: More than 75% used in the configuration cache','',0,0,3,0,'Consider increasing CacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','9d5f36b486ab4781a5f58210143785e9',''),(15858,'{18081}>75','Remote Zabbix server: More than 75% used in the history cache','',0,0,3,0,'Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a66914bd7f2e4442a8b555deacebb4c9',''),(15859,'{18082}>75','Remote Zabbix server: More than 75% used in the history index cache','',0,0,3,0,'Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','6aedbc1768ed4f949890248af98fdaa2',''),(15860,'{18083}>75','Remote Zabbix server: More than 75% used in the trends cache','',0,0,3,0,'Consider increasing TrendCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','742a4938fdd24026921b375a67cea921',''),(15861,'{18084}>75','Remote Zabbix server: More than 75% used in the vmware cache','',0,0,3,0,'Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','08e6c62dd52b4a0694be910c4f4fa997',''),(15862,'{18085}>95','Remote Zabbix server: More than 95% used in the value cache','',0,0,3,0,'Consider increasing ValueCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d35671cd02034aeba3c7c71ed618f4ee',''),(15863,'{18086}>100','Remote Zabbix server: More than 100 items having missing data for more than 10 minutes','',0,0,2,0,'zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about\r\nhow many items are missing data for more than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c8eddec1bb9740bb8ca05f74bd023fcc',''),(15864,'{18087}>75','Remote Zabbix server: Utilization of alerter processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18087}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of alerter processes over 75%','d4aae59fe9294da5b1c724b051af1683',''),(15865,'{18088}>75','Remote Zabbix server: Utilization of alert manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18088}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of alert manager processes over 75%','310f33d488ae4f5faa245c96f8dc583c',''),(15866,'{18089}>75','Remote Zabbix server: Utilization of configuration syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18089}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of configuration syncer processes over 75%','f1caa410beea429eb91daaec8f027eb3',''),(15867,'{18090}>75','Remote Zabbix server: Utilization of discoverer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18090}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of discoverer processes over 75%','2ed92415c6c542639a8b8d1f0a4646f4',''),(15868,'{18091}>75','Remote Zabbix server: Utilization of escalator processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18091}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of escalator processes over 75%','de07be1b10d9446abed4a387dd4980dd',''),(15869,'{18092}>75','Remote Zabbix server: Utilization of history syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18092}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of history syncer processes over 75%','b8e6a6ce3667459bad05afa850e99bc0',''),(15870,'{23313}>75','Remote Zabbix server: Utilization of housekeeper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{23313}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of housekeeper processes over 75%','b879623a755e4b79972c2ad3189886a2',''),(15871,'{18094}>75','Remote Zabbix server: Utilization of http poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18094}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of http poller processes over 75%','f7b4217cdd4b46b1949a5e6ac5fc3d02',''),(15872,'{18095}>75','Remote Zabbix server: Utilization of icmp pinger processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18095}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of icmp pinger processes over 75%','312d404ff20740f38385ebe7c3e36d8f',''),(15873,'{18096}>75','Remote Zabbix server: Utilization of ipmi manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18096}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of ipmi manager processes over 75%','3fe728ab8de9447c899b2a919b885cec',''),(15874,'{18097}>75','Remote Zabbix server: Utilization of ipmi poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18097}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of ipmi poller processes over 75%','dbf27d6a629a4a2cb75e04849b93ac0f',''),(15875,'{18098}>75','Remote Zabbix server: Utilization of java poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18098}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of java poller processes over 75%','304a2dcf77c8494fb18f52cc6bae73a9',''),(15876,'{18099}>75','Remote Zabbix server: Utilization of poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18099}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of poller processes over 75%','689ed5dd9bbd4873a825dfa675378d50',''),(15877,'{18100}>75','Remote Zabbix server: Utilization of preprocessing manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18100}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of preprocessing manager processes over 75%','b43f04a35e17415bb81bfb59357d45ac',''),(15878,'{18101}>75','Remote Zabbix server: Utilization of preprocessing worker processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18101}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of preprocessing worker processes over 75%','1c28310eb72047449437ee94854029fa',''),(15879,'{18102}>75','Remote Zabbix server: Utilization of proxy poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18102}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of proxy poller processes over 75%','c0d2c7c008cb45ee8b032b7c83018ae1',''),(15880,'{18103}>75','Remote Zabbix server: Utilization of self-monitoring processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18103}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of self-monitoring processes over 75%','0d9b8d1f2d7d454ab472320ac172252c',''),(15881,'{18104}>75','Remote Zabbix server: Utilization of snmp trapper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18104}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of snmp trapper processes over 75%','4726331c52284261aa3f347448c1c3c5',''),(15882,'{18105}>75','Remote Zabbix server: Utilization of task manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18105}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of task manager processes over 75%','07d29e82b74a4cc5b0d701458af302b7',''),(15883,'{18106}>75','Remote Zabbix server: Utilization of timer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18106}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of timer processes over 75%','72f3b3f143a94f5a9b4b2c509425954e',''),(15884,'{18107}>75','Remote Zabbix server: Utilization of trapper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18107}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of trapper processes over 75%','d31285f177224c4cb570373f6a730019',''),(15885,'{18108}>75','Remote Zabbix server: Utilization of unreachable poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18108}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of unreachable poller processes over 75%','d254ccddc7dd4e1ebf1eaa5113270e85',''),(15886,'{18109}=1','Remote Zabbix server: Zabbix value cache working in low memory mode','',0,0,4,0,'Once the low memory mode has been switched on, the value cache will remain in this state for 24 hours, even if the problem that triggered this mode is resolved sooner.','',NULL,0,0,0,0,'',0,'',0,'',0,'','95e8823159fc4baeb13d656be176ac16',''),(15887,'{18110}>75','Remote Zabbix server: Utilization of vmware collector processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18110}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of vmware collector processes over 75%','5929cfbe23494a41a20a4c05854f9578',''),(15888,'{18111}>75','Remote Zabbix server: Utilization of lld manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18111}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of lld manager processes over 75%','4027f813da2549cfb99e1bb5e04e1d28',''),(15889,'{18112}>75','Remote Zabbix server: Utilization of lld worker processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18112}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of lld worker processes over 75%','ef1e836e906e4cf79b9fc8a11818c0a6',''),(15890,'{28414}>{$ZABBIX.PROXY.UTIL.MAX}','Remote Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the configuration cache','',0,0,3,0,'Consider increasing CacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','6aaad09f92f3419c9aa7164f2191a45a',''),(15891,'{28416}>{$ZABBIX.PROXY.UTIL.MAX}','Remote Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the history cache','',0,0,3,0,'Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c14095c38d17486fa8fde22bd5a9d737',''),(15892,'{28417}>{$ZABBIX.PROXY.UTIL.MAX}','Remote Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the history index cache','',0,0,3,0,'Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','43f9a4fc049e45e5b8bbb0980b518dd0',''),(15893,'{28415}>{$ZABBIX.PROXY.UTIL.MAX}','Remote Zabbix proxy: More than {$ZABBIX.PROXY.UTIL.MAX}% used in the vmware cache','',0,0,3,0,'Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ac2a42046de340e1968802d92678947c',''),(15894,'{18117}>100','Remote Zabbix proxy: More than 100 items having missing data for more than 10 minutes','',0,0,2,0,'zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'','71cd927153ef4b8480a8f13fc6b4def8',''),(15895,'{28394}>{$ZABBIX.PROXY.UTIL.MAX:\"configuration syncer\"}','Remote Zabbix proxy: Utilization of configuration syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28394}<{$ZABBIX.PROXY.UTIL.MIN:\"configuration syncer\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of configuration syncer processes over {$ZABBIX.PROXY.UTIL.MAX:\"configuration syncer\"}%','67089f59f77641c8ab487e2c44d563a2',''),(15896,'{28395}>{$ZABBIX.PROXY.UTIL.MAX:\"data sender\"}','Remote Zabbix proxy: Utilization of data sender processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28395}<{$ZABBIX.PROXY.UTIL.MIN:\"data sender\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of data sender processes over {$ZABBIX.PROXY.UTIL.MAX:\"data sender\"}%','f2208ef37274449fb2b61f5f55e615f1',''),(15897,'{28396}>{$ZABBIX.PROXY.UTIL.MAX:\"discoverer\"}','Remote Zabbix proxy: Utilization of discoverer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28396}<{$ZABBIX.PROXY.UTIL.MIN:\"discoverer\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of discoverer processes over {$ZABBIX.PROXY.UTIL.MAX:\"discoverer\"}%','c5a739eef8cb43f099ee902c9eb23d6e',''),(15899,'{28399}>{$ZABBIX.PROXY.UTIL.MAX:\"history syncer\"}','Remote Zabbix proxy: Utilization of history syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28399}<{$ZABBIX.PROXY.UTIL.MIN:\"history syncer\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of history syncer processes over {$ZABBIX.PROXY.UTIL.MAX:\"history syncer\"}%','872ca8a02ff948d0ab4f5000249bbf5b',''),(15900,'{28400}>{$ZABBIX.PROXY.UTIL.MAX:\"housekeeper\"}','Remote Zabbix proxy: Utilization of housekeeper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28400}<{$ZABBIX.PROXY.UTIL.MIN:\"housekeeper\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of housekeeper processes over {$ZABBIX.PROXY.UTIL.MAX:\"housekeeper\"}%','43d8ef15170e4edd80eea85ad9990d73',''),(15901,'{28401}>{$ZABBIX.PROXY.UTIL.MAX:\"http poller\"}','Remote Zabbix proxy: Utilization of http poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28401}<{$ZABBIX.PROXY.UTIL.MIN:\"http poller\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of http poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"http poller\"}%','9c391ba5350d401b9ca56f7cd29cd457',''),(15902,'{28402}>{$ZABBIX.PROXY.UTIL.MAX:\"icmp pinger\"}','Remote Zabbix proxy: Utilization of icmp pinger processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28402}<{$ZABBIX.PROXY.UTIL.MIN:\"icmp pinger\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of icmp pinger processes over {$ZABBIX.PROXY.UTIL.MAX:\"icmp pinger\"}%','8a0abc8ff0dd42b0926b5840fe5b0e2f',''),(15903,'{28403}>{$ZABBIX.PROXY.UTIL.MAX:\"ipmi manager\"}','Remote Zabbix proxy: Utilization of ipmi manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28403}<{$ZABBIX.PROXY.UTIL.MIN:\"ipmi manager\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of ipmi manager processes over {$ZABBIX.PROXY.UTIL.MAX:\"ipmi manager\"}%','a2aed809416b46beba8ed63554d9b7d5',''),(15904,'{28404}>{$ZABBIX.PROXY.UTIL.MAX:\"ipmi poller\"}','Remote Zabbix proxy: Utilization of ipmi poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28404}<{$ZABBIX.PROXY.UTIL.MIN:\"ipmi poller\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of ipmi poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"ipmi poller\"}%','e7c748c36e5740d684a5c4c68682f321',''),(15905,'{28405}>{$ZABBIX.PROXY.UTIL.MAX:\"java poller\"}','Remote Zabbix proxy: Utilization of java poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28405}<{$ZABBIX.PROXY.UTIL.MIN:\"java poller\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of java poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"java poller\"}%','ef46070fc30b46c7be1ce3574e578449',''),(15906,'{28407}>{$ZABBIX.PROXY.UTIL.MAX:\"poller\"}','Remote Zabbix proxy: Utilization of poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28407}<{$ZABBIX.PROXY.UTIL.MIN:\"poller\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"poller\"}%','6afb9db9e11842c28c059abd31c7a134',''),(15907,'{28408}>{$ZABBIX.PROXY.UTIL.MAX:\"self-monitoring\"}','Remote Zabbix proxy: Utilization of self-monitoring processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28408}<{$ZABBIX.PROXY.UTIL.MIN:\"self-monitoring\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of self-monitoring processes over {$ZABBIX.PROXY.UTIL.MAX:\"self-monitoring\"}%','fee719ea91524972897c19ce4b17bd54',''),(15908,'{28409}>{$ZABBIX.PROXY.UTIL.MAX:\"snmp trapper\"}','Remote Zabbix proxy: Utilization of snmp trapper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28409}<{$ZABBIX.PROXY.UTIL.MIN:\"snmp trapper\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of snmp trapper processes over {$ZABBIX.PROXY.UTIL.MAX:\"snmp trapper\"}%','9ca70574386f4b968bcda64a5d267d58',''),(15909,'{28410}>{$ZABBIX.PROXY.UTIL.MAX:\"task manager\"}','Remote Zabbix proxy: Utilization of task manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28410}<{$ZABBIX.PROXY.UTIL.MIN:\"task manager\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of task manager processes over {$ZABBIX.PROXY.UTIL.MAX:\"task manager\"}%','9d7d15a747484530a61102175cbc4478',''),(15910,'{28411}>{$ZABBIX.PROXY.UTIL.MAX:\"trapper\"}','Remote Zabbix proxy: Utilization of trapper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28411}<{$ZABBIX.PROXY.UTIL.MIN:\"trapper\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of trapper processes over {$ZABBIX.PROXY.UTIL.MAX:\"trapper\"}%','49a9e3e1b17146f7861daf6994956d4f',''),(15911,'{28412}>{$ZABBIX.PROXY.UTIL.MAX:\"unreachable poller\"}','Remote Zabbix proxy: Utilization of unreachable poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28412}<{$ZABBIX.PROXY.UTIL.MIN:\"unreachable poller\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of unreachable poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"unreachable poller\"}%','e446ec803eaf4ace9b7d1fdc7a89cba6',''),(15912,'{28413}>{$ZABBIX.PROXY.UTIL.MAX:\"vmware collector\"}','Remote Zabbix proxy: Utilization of vmware collector processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28413}<{$ZABBIX.PROXY.UTIL.MIN:\"vmware collector\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of vmware collector processes over {$ZABBIX.PROXY.UTIL.MAX:\"vmware collector\"}%','30147687074f45e7ab0dce81a1b7cf07',''),(15913,'{28377}>{$ZABBIX.PROXY.UTIL.MAX:\"preprocessing manager\"}','Zabbix proxy: Utilization of preprocessing manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28377}<{$ZABBIX.PROXY.UTIL.MIN:\"preprocessing manager\"}',0,'',0,'',0,'Zabbix proxy: Utilization of preprocessing manager processes over {$ZABBIX.PROXY.UTIL.MAX:\"preprocessing manager\"}%','1ed29eb53708417a827adbdf4d8f145b',''),(15914,'{28378}>{$ZABBIX.PROXY.UTIL.MAX:\"preprocessing worker\"}','Zabbix proxy: Utilization of preprocessing worker processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28378}<{$ZABBIX.PROXY.UTIL.MIN:\"preprocessing worker\"}',0,'',0,'',0,'Zabbix proxy: Utilization of preprocessing worker processes over {$ZABBIX.PROXY.UTIL.MAX:\"preprocessing worker\"}%','22831f081149400a86cb18930de0cc20',''),(15948,'{18175}=1','Apache: Failed to fetch status page','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Apache: Failed to fetch status page (or no data for 30m)','db396445cc5042f89f31dc12cb99c32e',''),(15949,'{18176}=0','Apache: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','afe2fde35d054333adc8369a0f9af778',''),(15950,'{18177}>{$APACHE.RESPONSE_TIME.MAX.WARN}','Apache: Service response time is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m)','ffbb564032c7462eb0bb9b4c2f700559',''),(15951,'{18178}<10m','Apache: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Apache: has been restarted (uptime < 10m)','76cfa6ebf39f4c8fbd8fde9e0f36d3ed',''),(15952,'{23179}<>{23180} and length({23181})>0','Apache: Version has changed','',0,0,1,0,'Apache version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Apache: Version has changed (new version: {ITEM.VALUE})','5296d69af0704d0e8a07398f0b4c9685',''),(15958,'{23231}<>{23232} and length({23233})>0','Nginx: Version has changed','',0,0,1,0,'The Nginx version has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'Nginx: Version has changed (new version: {ITEM.VALUE})','7ad80c508f2f48b59f7659c673db9f36',''),(15960,'{18191}=0','Nginx: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','7b3de87ba0ea425280d42235bb626b8b',''),(15961,'{18192}>{$NGINX.RESPONSE_TIME.MAX.WARN}','Nginx: Service response time is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m)','fc1f7927b8864996986c1da44df57279',''),(15962,'{18193} > {$NGINX.DROP_RATE.MAX.WARN}','Nginx: High connections drop rate','',0,0,2,0,'The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'Current rate: {ITEM.LASTVALUE1}',0,'Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','79767fbc18594069a1fc0cbec832f8ff',''),(15963,'{23234}<>{23235} and length({23236})>0','Nginx: Version has changed','',0,0,1,0,'Nginx version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Nginx: Version has changed (new version: {ITEM.VALUE})','0f2689d4967a446e98a107b933179817',''),(16007,'{18255}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','305450aac4ce4170a3a7942f6b092593',''),(16008,'{31161}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31162}-{31163})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31164}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match:\r\n 1. The first condition - utilization of space should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"};\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','ae3535ef3f674dccb6c809dc7d01172c',''),(16009,'{31165}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31166}-{31167})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31168}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match:\r\n 1. The first condition - utilization of space should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"};\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','3bef4897bcd549288203241c5ca9f017',''),(16010,'{18264}<{$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,3,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nFollowing error messages may be returned as symptoms, even though the free space is available:\r\n - \'No space left on device\';\r\n - \'Disk is full\'.','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}%)','377f4ffa529f4b0690a11228f4021294',''),(16011,'{18265}<{$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,2,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nFollowing error messages may be returned as symptoms, even though the free space is available:\r\n - \'No space left on device\';\r\n - \'Disk is full\'.','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}%)','5f80199affa44ed7a6b875c49ca00aa7',''),(16031,'{18300}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d6099dae0c3a4252ab2af61104768170',''),(16035,'{18306}<10m','has been restarted','',0,0,2,0,'The host uptime is less than 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','2b612f4d65f4444c8a0609362c48463b',''),(16036,'{18307}=0','System time is out of sync','',0,0,2,0,'The host\'s system time is different from Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','cffb7209ce2a45bd868ac41c0680be56',''),(16038,'{18310}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','abf2e035f1e54971a0795152f922271b',''),(16039,'{18311}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','079c2be2b0a44965a8e83cedba222b8d',''),(16040,'{18312}/{18313}*100>80','Getting closer to process limit','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.',0,'Getting closer to process limit (over 80% used)','613c30a98cf044b1b46a3d1d50f90eb8',''),(16041,'{24289}<>{24290}','/etc/passwd has been changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','a07bba3d320c4979b68ac0bbfad900dc',''),(16042,'{24286}<>{24287} and length({24288})>0','Operating system description has changed','',0,0,1,0,'The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Ack to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'','2f043de71d2940d184aa02200e33c28a',''),(16069,'{31145}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31146}-{31147})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31148}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match:\r\n 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}`.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than `{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}`;\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','fb410c10bd59476dbe58e1ee179cd25f',''),(16070,'{31149}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31150}-{31151})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31152}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match:\r\n 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}`.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than `{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}`;\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','d66583735eb04973ac30d923533c4b0f',''),(16071,'{18363}<{$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,3,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nThe following error messages may be returned as symptoms, even though the free space is available:\r\n - \"No space left on device\";\r\n - \"Disk is full\".','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}%)','26adf86d6dd741b48007577091d5902c',''),(16072,'{18364}<{$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,2,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nThe following error messages may be returned as symptoms, even though the free space is available:\r\n - \"No space left on device\";\r\n - \"Disk is full\".','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}%)','756b0126cc004f8d97f10384a4dc8587',''),(16076,'{30990}<0 and {30991}>0\r\nand\r\n({30992}=6 or {30992}=1)\r\nand\r\n({30993}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge (Ack) to close the problem manually.','',NULL,0,0,2,1,'({30990}>0 and {30994}>0) or\r\n({30993}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','42ba7cc36b734d4a933ed4f7ceb8f3a4',''),(16138,'{18501}=1','node_exporter is not available','',0,0,2,0,'Failed to fetch system metrics from node_exporter in time.','',NULL,0,0,0,0,'',0,'',1,'',0,'node_exporter is not available (or no data for 30m)','e33fafc8476e404aa4150d0d491f4c83',''),(16139,'{18502}=0','System time is out of sync','',0,0,2,0,'The host\'s system time is different from Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','e91c10be1c4a4c3fadfe06aec6c1e4e4',''),(16141,'{18505}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','c0002ad071d7497ab32633c93624e0c2',''),(16142,'{18506}/{18507}*100>80','Running out of file descriptors','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1} of {ITEM.LASTVALUE2} file descriptors are in use.',0,'Running out of file descriptors (less than < 20% free)','7effa63c9c994a6786279802aa7328ad',''),(16143,'{24341}<>{24342} and length({24343})>0','Operating system description has changed','',0,0,1,0,'The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Ack to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'','00974d5b128c4b1db64ca100770fb11b',''),(16144,'{18510}<10m','has been restarted','',0,0,2,0,'The device uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','83311a7c73c441d39d88fe0fc7b55af9',''),(16146,'{18513}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4c924f8243a7431886a2d69368cb7142',''),(16152,'{18526}<0 and {18527}>0\r\nand (\r\n{18528}=6 or\r\n{18528}=7 or\r\n{18528}=11 or\r\n{18528}=62 or\r\n{18528}=69 or\r\n{18528}=117\r\n)\r\nand\r\n({18529}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge (Ack) to close the problem manually.','',NULL,0,0,2,1,'({18526}>0 and {18530}>0) or\r\n({18529}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','96bbb9726ef149a5b97f96d54502593a',''),(16153,'{18531}<0 and {18532}>0\r\nand\r\n({18532}=6\r\nor {18532}=1)\r\nand\r\n({18533}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge (Ack) to close the problem manually.','',NULL,0,0,2,1,'({18531}>0 and {18534}>0) or\r\n({18533}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','08d5857e474042b5906288156c8c5d52',''),(16155,'{31383}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31384}-{31385})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31386}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match:\r\n 1. The first condition - utilization of space should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"};\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','d5687d7aa0484b389f0bd168d50ee1e6',''),(16156,'{31387}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31388}-{31389})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31390}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match:\r\n 1. The first condition - utilization of space should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"};\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','8f765148cfd64d5ebda93f39d0b20e36',''),(16157,'{18545}<{$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,3,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nFollowing error messages may be returned as symptoms, even though the free space is available:\r\n - \'No space left on device\';\r\n - \'Disk is full\'.','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}%)','27cabcc9d9644ba6b7bd8c92a740e3cc',''),(16158,'{18546}<{$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,2,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nFollowing error messages may be returned as symptoms, even though the free space is available:\r\n - \'No space left on device\';\r\n - \'Disk is full\'.','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}%)','c639215f6dd94c71aebf97265a282a0d',''),(16160,'{18548}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','afd1711dca1542a5bec9091cbae2bcf0',''),(16161,'{18549}>{$CPU.INTERRUPT.CRIT.MAX}','CPU interrupt time is too high','',0,0,2,0,'\"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%.\"\r\nThe Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','3f6cca07bc6c48f0b21fee3aeb89bf6b',''),(16162,'{18550}>{$CPU.PRIV.CRIT.MAX}','CPU privileged time is too high','',0,0,2,0,'The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','999464a5a73540d3b7b7cd86efa5488e',''),(16166,'{18555}<{$MEM.PAGE_TABLE_CRIT.MIN}','Number of free system page table entries is too low','',0,0,2,0,'The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak.','',NULL,0,0,0,0,'',0,'',0,'',0,'Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','5055a8fdc127479cbe97fdfd849831ea',''),(16167,'{18556}>{$MEM.PAGE_SEC.CRIT.MAX}','The Memory Pages/sec is too high','',0,0,2,0,'The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','',NULL,0,0,0,0,'',0,'',0,'',0,'The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','045574e4dd814b7e97d292b134f0a755',''),(16168,'{18557}<10m','Host has been restarted','',0,0,2,0,'The device uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Host has been restarted (uptime < 10m)','d24a0366e99c4e31815bbbaa3af71ac6',''),(16169,'{18558}=0','System time is out of sync','',0,0,2,0,'The host system time is different from the Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','3144a1b15227479e9ea4ce858faea74b',''),(16182,'{31231}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31232}-{31233})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31234}<1d)','{#FSLABEL}({#FSNAME}): Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSLABEL}({#FSNAME}): Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','68544e02e3cc4d389269448f34ca66e1',''),(16183,'{31235}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31236}-{31237})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31238}<1d)','{#FSLABEL}({#FSNAME}): Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSLABEL}({#FSNAME}): Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','ba0e859e58c34107a792098cfe9d31a4',''),(16196,'{18620}=0','Zabbix agent is not available','',0,0,3,0,'For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','6767f9c764bb42dfa961baacf879f45c',''),(16197,'{18621}=1','Zabbix agent is not available','',0,0,3,0,'For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','6bbb74c522d44baea8c6ceb666423da2',''),(16250,'{18711}>0','RabbitMQ: Number of network partitions is too high','',0,0,2,0,'For more details see [Detecting Network Partitions](https://www.rabbitmq.com/partitions.html#detecting).','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'RabbitMQ: Number of network partitions is too high (more than 0 for 5m)','5bed266725e94000804b0ecc7bce6209',''),(16254,'{18715}<10m','RabbitMQ: Host has been restarted','',0,0,1,0,'The host uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'RabbitMQ: {HOST.NAME} has been restarted (uptime < 10m)','729c448ebabb417bb7ce17b1634c4484',''),(16258,'{18719}>{$RABBITMQ.MESSAGES.MAX.WARN:\"{#QUEUE}\"}','RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}]','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}] (over {$RABBITMQ.MESSAGES.MAX.WARN:\"{#QUEUE}\"} for 5m)','58986cee2b4846b3b7bd3caf772d7ac6',''),(16259,'{18720}=1','RabbitMQ: Failed to fetch overview data','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'RabbitMQ: Failed to fetch overview data (or no data for 30m)','ae7f1953f9b94c9c907d7bd7627d389d',''),(16264,'{18726}>0','RabbitMQ: Number of network partitions is too high','',0,0,2,0,'https://www.rabbitmq.com/partitions.html#detecting','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'RabbitMQ: Number of network partitions is too high (more than 0 for 5m)','943d239a9fa5443dac3205c65a4da033',''),(16265,'{18727}=0','RabbitMQ: Node is not running','',0,0,3,0,'RabbitMQ node is not running','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4b15e72e2133458ebac9c72c5fcb90e6',''),(16268,'{18730}<10m','RabbitMQ: Host has been restarted','',0,0,1,0,'The host uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'RabbitMQ: {HOST.NAME} has been restarted (uptime < 10m)','6edfa365704f480da4b35b51b6ed84f4',''),(16269,'{18731}=0','RabbitMQ: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','636356e5255d49d992df4b7a0c7d222d',''),(16270,'{18732}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN}','RabbitMQ: Service response time is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m)','220eedd4f69b43fabe233b5127e09c50',''),(16271,'{18733}>{$RABBITMQ.MESSAGES.MAX.WARN:\"{#QUEUE}\"}','RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}]','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}] (over {$RABBITMQ.MESSAGES.MAX.WARN:\"{#QUEUE}\"} for 5m)','b6f52153a22144338e6d002287446ac1',''),(16272,'{18734}>75','Remote Zabbix server: Utilization of alert syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18734}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of alert syncer processes over 75%','0eb23de05fac4aeab4ee4aa337545b16',''),(16273,'{18735}>75','Zabbix server: Utilization of alert syncer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{18735}<65',0,'',0,'',0,'Zabbix server: Utilization of alert syncer processes over 75%','e2a487335f2748a6b26d867290c9cfe4',''),(16287,'({32142}>0 and {32142}<10m) or ({32142}=0 and {32143}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','6f00359af55f45909bdecbad234c7654',''),(16289,'{18756}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d3aba975ec574b258c7f971152c5d4cd',''),(16439,'{19090}=1','System status is in critical state','',0,0,4,0,'Please check the device for errors','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6d0d0554e1c945dc90701aebd531f9cb',''),(16440,'{19091}=1','System status is in warning state','',0,0,2,0,'Please check the device for warnings','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','273c27c7929649f1a45ddc92c09ab982',''),(16442,'{19093}=1','RabbitMQ: Failed to fetch overview data','',0,0,2,0,'Zabbix has not received any data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'RabbitMQ: Failed to fetch overview data (or no data for 30m)','000d3e773f6e4ebf89f16daa2ce8c168',''),(16445,'{23262}<>{23263} and length({23264})>0','RabbitMQ: Version has changed','',0,0,1,0,'The RabbitMQ version has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'RabbitMQ: Version has changed (new version: {ITEM.VALUE})','daf98bb4593d4697bc51423b2f65ba41',''),(16446,'{19098}=1','RabbitMQ: Memory alarm','',0,0,3,0,'For more details see [Memory Alarms](https://www.rabbitmq.com/memory.html).','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'RabbitMQ: Memory alarm (Memory usage threshold has been reached)','ec6ae727fe774b0fa56bb4d9ad773e35',''),(16447,'{19099}=1','RabbitMQ: Free disk space alarm','',0,0,3,0,'For more details see [Free Disk Space Alarms](https://www.rabbitmq.com/disk-alarms.html).','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'RabbitMQ: Free disk space alarm (Free space threshold has been reached)','b68cb12ecd4046fd80a717fb557f04e8',''),(16448,'{19100}=1','RabbitMQ: Failed to fetch nodes data','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'RabbitMQ: Failed to fetch nodes data (or no data for 30m)','d4452f05d08343c7a374da412c0f1de6',''),(16450,'{23265}<>{23266} and length({23267})>0','RabbitMQ: Version has changed','',0,0,1,0,'The RabbitMQ version has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'RabbitMQ: Version has changed (new version: {ITEM.VALUE})','19989038dfe84fcdb12262ee3782ab41',''),(16451,'{19104}=1','RabbitMQ: Memory alarm','',0,0,3,0,'https://www.rabbitmq.com/memory.html','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'RabbitMQ: Memory alarm (Memory usage threshold has been reached)','843be64cfdcd4df5b3fea4726da69c7e',''),(16452,'{19105}=1','RabbitMQ: Free disk space alarm','',0,0,3,0,'https://www.rabbitmq.com/disk-alarms.html','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'RabbitMQ: Free disk space alarm (Free space threshold has been reached)','093eec2fd9264f158087509d8364dc09',''),(16459,'{19113}>{$TEMP_WARN:\"Ambient\"}','{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19114}<{$TEMP_WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP_WARN:\"Ambient\"}','cf21a0259b6e4402815651357cdcce76',''),(16460,'{19115}>{$TEMP_CRIT:\"Ambient\"}','{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19116}<{$TEMP_CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:\"Ambient\"}','4e293138ca374c96a18e4dbca8e45c72',''),(16461,'{19117}<{$TEMP_CRIT_LOW:\"Ambient\"}','{#SENSOR_LOCATION}.Ambient: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{19118}>{$TEMP_CRIT_LOW:\"Ambient\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:\"Ambient\"}','5139f8dd56094561a573a0b7b15a5ef0',''),(16462,'{19119}>{$TEMP_WARN:\"Ambient\"}','{#SENSOR_LOCATION}.Front: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19120}<{$TEMP_WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP_WARN:\"Ambient\"}','068f42b490ad41eb97a65dbc718ae566',''),(16463,'{19121}>{$TEMP_CRIT:\"Ambient\"}','{#SENSOR_LOCATION}.Front: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19122}<{$TEMP_CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP_CRIT:\"Ambient\"}','98b9a6bd22e648e1bce3e5ee3ed5f6b4',''),(16464,'{19123}<{$TEMP_CRIT_LOW:\"Ambient\"}','{#SENSOR_LOCATION}.Front: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{19124}>{$TEMP_CRIT_LOW:\"Ambient\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Front: Temperature is too low: <{$TEMP_CRIT_LOW:\"Ambient\"}','f208cad426cf45338b6487cf87588220',''),(16465,'{19125}>{$TEMP_WARN:\"Ambient\"}','{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19126}<{$TEMP_WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP_WARN:\"Ambient\"}','ed302fd9bdbe47cda2456aa7cdc6ce66',''),(16466,'{19127}>{$TEMP_CRIT:\"Ambient\"}','{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19128}<{$TEMP_CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP_CRIT:\"Ambient\"}','ef03cd1e2356409ea2651fab589c9d19',''),(16467,'{19129}<{$TEMP_CRIT_LOW:\"Ambient\"}','{#SENSOR_LOCATION}.Rear: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{19130}>{$TEMP_CRIT_LOW:\"Ambient\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Rear: Temperature is too low: <{$TEMP_CRIT_LOW:\"Ambient\"}','bb81b628d804411480d3b4066d626f82',''),(16468,'{19131}>{$TEMP_WARN:\"Ambient\"}','{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19132}<{$TEMP_WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP_WARN:\"Ambient\"}','da5d63d3411a4d2299d50cc21beae1c4',''),(16469,'{19133}>{$TEMP_CRIT:\"Ambient\"}','{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19134}<{$TEMP_CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP_CRIT:\"Ambient\"}','a43eb91c4ae044729f4312466fcbd5da',''),(16470,'{19135}<{$TEMP_CRIT_LOW:\"Ambient\"}','{#SENSOR_LOCATION}.IOH: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{19136}>{$TEMP_CRIT_LOW:\"Ambient\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.IOH: Temperature is too low: <{$TEMP_CRIT_LOW:\"Ambient\"}','ce811e4247d5484caf4b095e829f162e',''),(16471,'{19137}>{$TEMP_WARN:\"CPU\"}','{#SENSOR_LOCATION}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19138}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','eaadcea2dc0d468d886654c3ec380390',''),(16472,'{19139}>{$TEMP_CRIT:\"CPU\"}','{#SENSOR_LOCATION}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19140}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','35549eb00faf48ff8fdb7769b8a13895',''),(16473,'{19141}<{$TEMP_CRIT_LOW:\"CPU\"}','{#SENSOR_LOCATION}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{19142}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','ccb9b9edd7ba4a62b33e34ebf3647825',''),(16474,'{19143}=1','{#PSU_LOCATION}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','480d51d19be74b6e95f702b31baa5666',''),(16475,'{19144}=1','{#PSU_LOCATION}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','07fa90b5296b48d9b45cc6a76e72ceeb',''),(16476,'{19145}=1 or {19146}=1 or {19147}=1 or {19148}=1','{#UNIT_LOCATION}: System status is in critical state','',0,0,4,0,'Please check the device for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','70fbf187bc474aa88a26fb5a8d862694',''),(16477,'{19149}=1 or {19150}=1 or {19151}=1 or {19152}=1 or {19153}=1','{#UNIT_LOCATION}: System status is in warning state','',0,0,2,0,'Please check the device for warnings','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b69f6876b7de4e1c89934281696249c8',''),(16478,'{24497}<>{24498} and length({24499})>0','{#UNIT_LOCATION}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#UNIT_LOCATION}: Device has been replaced (new serial number received)','b9667c535fe542eeb21dea7aaf2bbf80',''),(16479,'{19156}=1','{#FAN_LOCATION}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5135b24c775f448c8998cadea3042e5b',''),(16480,'{19157}=1','{#FAN_LOCATION}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','895df7f89587441fa61223d5b2e442a2',''),(16481,'{19158}=1','{#DISK_LOCATION}: Physical disk failed','',0,0,4,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','77ce5c74eefd4a9b818c11c8c1581cd8',''),(16482,'{19159}=1 or {19160}=1','{#DISK_LOCATION}: Physical disk error','',0,0,3,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','445919e1ec414fd888f8911abc65650b',''),(16483,'{19161}=1','{#VDISK_LOCATION}: Virtual disk is not in OK state','',0,0,2,0,'Please check virtual disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','97b0c8177dca421f9535cb6f0abea7aa',''),(16484,'{19162}=1','{#DISKARRAY_LOCATION}: Disk array controller is in critical state','',0,0,4,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','44ec209460fb4010a087e971427b2fde',''),(16485,'{19163}=1','{#DISKARRAY_LOCATION}: Disk array controller is in warning state','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b419e0d296614f4285645954f8a7a970',''),(16486,'{19164}=1','{#DISKARRAY_LOCATION}: Disk array controller is not in optimal state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a83202bb105d481c93464650272c14eb',''),(16487,'{19165}=1','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is in critical state!','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0b09b93602c94821ae1126e4f9550436',''),(16488,'{19166}=1','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is not in optimal state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d2af6de00e57412d8a2efcb20b1524a4',''),(16491,'{19171}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4167b064eb19478da13531f629082ef1',''),(16492,'{23707}<>{23708} and length({23709})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','dd5dc3541a3d402c98a60b25d9e48dd6',''),(16494,'{19175}=1','#{#SNMPINDEX}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','afbc2020a9f74d6abe52469ac663e057',''),(16495,'{19176}=1','#{#SNMPINDEX}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fcbc0ef8f55146daaed6be4ccbd324e7',''),(16496,'{19177}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','68a50684095941cb90f22fbc8d632e7a',''),(16498,'{19179}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','7b068eb5d43846d987148f38f66b1f1a',''),(16504,'{19185}>{$TEMP_WARN:\"Chassis\"}','Chassis #{#SNMPINDEX}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19186}<{$TEMP_WARN:\"Chassis\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Chassis #{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:\"Chassis\"}','66c4f9fd59f043a782dd8fea11b90451',''),(16505,'{19187}>{$TEMP_CRIT:\"Chassis\"}','Chassis #{#SNMPINDEX}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{19188}<{$TEMP_CRIT:\"Chassis\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Chassis #{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:\"Chassis\"}','cae73cf7a78f4963ab1718446ceeb6f4',''),(16506,'{19189}<{$TEMP_CRIT_LOW:\"Chassis\"}','Chassis #{#SNMPINDEX}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{19190}>{$TEMP_CRIT_LOW:\"Chassis\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Chassis #{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:\"Chassis\"}','2895da8297fc457da88ea136e61fb8d9',''),(16507,'{23807}<>{23808} and length({23809})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','e417e0edd4eb417d99816dd9cf4f20e9',''),(16508,'{19193}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0833b9a8f2ba4c009ca038cc409236d8',''),(16514,'{19202}>{$CPU.UTIL.CRIT}','{#SNMPVALUE}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','be863abc1e3440a9bd35c4db77f83961',''),(16515,'{19203}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','52d3b9d4d52e4f289221f4b5ade177d7',''),(16521,'{19209}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','002c0f19cfe54fe08da2183654752470',''),(16523,'{23843}<>{23844} and length({23845})>0','#{#SNMPVALUE}: Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','66049aa1d7cb45ebac1fe5292c309ba2',''),(16524,'{19213}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6e12ba6b60b94ec6bf531b4bb234dc80',''),(16525,'{23849}<>{23850} and length({23851})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','01ca34ebe7a94ed3b3e5ee8320ebce73',''),(16527,'{19217}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','621c4933fd9c4b78aae1eedada7ffedf',''),(16529,'{19219}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a77bbfe0755f4901b67a7957805bc566',''),(16530,'{23864}<>{23865} and length({23866})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','af6a823b8f2d4fddae970828d0a3a9c9',''),(16532,'{23892}<>{23893} and length({23894})>0','{#ENT_NAME}: Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','9e6cccf7daec4405ac3bb1a27670fcee',''),(16533,'{19225}>{$CPU.UTIL.CRIT}','{#MODULE_NAME}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'{#MODULE_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','37a4a248c89240fe82c5fd6622123aa0',''),(16535,'{19227}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','883e49e933bd4cfda0e7dde774604a0a',''),(16537,'{19229}>{$CPU.UTIL.CRIT}','{#ENT_NAME}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'{#ENT_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','66bfe7805cae4447a32a6e5877e1231b',''),(16538,'{23904}<>{23905} and length({23906})>0','{#ENT_NAME}: Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','698067d647424c96addeb3c9f960dd07',''),(16540,'{23916}<>{23917} and length({23918})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','9249511ecf4a4a2d952aa0c4fe55a5d0',''),(16541,'{19235}>{$CPU.UTIL.CRIT}','{#SNMPVALUE}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','248c49bc4f47437b9b91e20b57da197d',''),(16543,'{23934}<>{23935} and length({23936})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','739f60e0862d4fe88cc2a5fe626211a8',''),(16545,'{19240}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','7843aa49df2b4f218bf633bee4f01df6',''),(16546,'{31924}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31925}-{31926})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31927}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','c866ac0197ee401ab0c5cc6ec0757985',''),(16547,'{31928}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31929}-{31930})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31931}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','9adb977fde7345d8950265a9127cde57',''),(16548,'{19249}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1e47f984c5514205aad2be5db1157fd2',''),(16549,'{23940}<>{23941} and length({23942})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','bf0a6ff122a14f4c9baa640d27c8f982',''),(16551,'{31355}>{$TEMP_WARN}','Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,0,1,'{31356}<{$TEMP_WARN}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature is above warning threshold: >{$TEMP_WARN}','b9122f253bf440ccb413d577790e46a0',''),(16552,'{31353}>{$TEMP_CRIT}','Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,0,1,'{31354}<{$TEMP_CRIT}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature is above critical threshold: >{$TEMP_CRIT}','8ca8b9dfed0e4af898d9182150bb1ad0',''),(16553,'{31357}<{$TEMP_CRIT_LOW}','Temperature is too low','',0,0,3,0,'','',NULL,0,0,0,1,'{31358}>{$TEMP_CRIT_LOW}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature is too low: <{$TEMP_CRIT_LOW}','d7607e97e2f549caaefa184c9fee8220',''),(16554,'{19259}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','57bf78318ded4574bde08adfafe94454',''),(16555,'{23949}<>{23950} and length({23951})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','6431f9a46fcb4a42ab3e04c8289bd07d',''),(16557,'{19263}=1','{#SNMPINDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9961328558a74e45a3154559ed582e41',''),(16558,'{19264}=1','{#SNMPINDEX}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d047cf0b9e9f4e169e4a62c60358178d',''),(16559,'{19265}>{$CPU.UTIL.CRIT}','#{#SNMPVALUE}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','667a09c4f1c04a1a84c7c79adb9cbc70',''),(16561,'{19267}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0a779320c2ba4494b8c55aef969e7c9d',''),(16563,'{19269}/{19270}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {19271}>0\r\nand {19272}>0','Load average is too high','',0,0,3,0,'The load average per CPU is too high. The system may be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}',0,'Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','0d6fc27f8a884510b2f31a5a0e653f70',''),(16573,'{19299}/{19300}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {19301}>0\r\nand {19302}>0','Load average is too high','',0,0,3,0,'The load average per CPU is too high. The system may be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}',0,'Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','e5897641e5594bf6b7b18ae4e107bd50',''),(16575,'{19305}/{19306}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {19307}>0\r\nand {19308}>0','Load average is too high','',0,0,3,0,'The load average per CPU is too high. The system may be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}',0,'Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','4e08b6e41268476292ac92da123bd8d7',''),(16577,'{24782}<>{24783} and length({24784})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','fba72cbc4f12495b9f35d0f77a9330b8',''),(16579,'{24283}<>{24284} and length({24285})>0','System name has changed','',0,0,1,0,'The name of the system has changed. `Ack` to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','eda29f0c8c55495ab93820caa26338bf',''),(16584,'{24338}<>{24339} and length({24340})>0','System name has changed','',0,0,1,0,'The name of the system has changed. Ack to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','e827e944568b46e284820630482317bd',''),(16585,'{24347}<>{24348} and length({24349})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','13c5f9c0f7f645cc9dde522ff20a1860',''),(16593,'{23521}<>{23522} and length({23523})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','072bf35ea9d04c559ada5cb13d4b6802',''),(16624,'{19406}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bb8b2193ed4c437284d569a38f500367',''),(16630,'{31137}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31138}-{31139})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31140}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','9fbb4a0ceeba4c9e935f54610d5f1afb',''),(16631,'{31141}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31142}-{31143})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31144}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','5db5f43d1c3b4b1f91bef16ec1090945',''),(16644,'{19456}<10m','HAProxy: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'HAProxy: has been restarted (uptime < 10m)','e76d5b82b0ad421ea62cd1dc069e036b',''),(16645,'{23206}<>{23207} and length({23208})>0','HAProxy: Version has changed','',0,0,1,0,'HAProxy version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'HAProxy: Version has changed (new version: {ITEM.VALUE})','db6ef8f306f64f0f81a590e4b45b370c',''),(16646,'{19459}>{$HAPROXY.RESPONSE_TIME.MAX.WARN}','HAProxy: Service response time is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m)','4e881047bbd54c5984922d1189567ece',''),(16647,'{19460}=0','HAProxy: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','8d5c7940e5924b469b3e7804043ea7b6',''),(16648,'{19461}>{$HAPROXY.BACK_ERESP.MAX.WARN}','HAProxy backend {#PXNAME}: Number of responses with error is high','',0,0,2,0,'Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m','892d6f67eeff4520aadbf4f3841f8174',''),(16649,'{19462}>{$HAPROXY.BACK_QCUR.MAX.WARN}','HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is high','',0,0,2,0,'Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m','89ccc4b4a55349c7869c2202881dcb2a',''),(16650,'{19463}>{$HAPROXY.BACK_QTIME.MAX.WARN}','HAProxy backend {#PXNAME}: Average time spent in queue is high','',0,0,2,0,'Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m','1aff4be13f0f4aee8a512d4b962215a6',''),(16651,'{19464}>{$HAPROXY.BACK_RTIME.MAX.WARN}','HAProxy backend {#PXNAME}: Average response time is high','',0,0,2,0,'Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m','e0dd27ac272a4fbf9495c09f3291db8f',''),(16652,'{23209}=5','HAProxy backend {#PXNAME}: Server is DOWN','',0,0,3,0,'Backend is not available.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','51452fd94c12448fab0703e867f69fd2',''),(16653,'{19466}>{$HAPROXY.FRONT_DREQ.MAX.WARN}','HAProxy frontend {#PXNAME}: Number of requests denied is high','',0,0,2,0,'Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m','269d5e491e3d41b6be5257c8a8a85efb',''),(16654,'{19467}>{$HAPROXY.FRONT_EREQ.MAX.WARN}','HAProxy frontend {#PXNAME}: Number of request errors is high','',0,0,2,0,'Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m','8361fb028aed4bd9bf3356249699d424',''),(16655,'{19468}>{$HAPROXY.FRONT_SUTIL.MAX.WARN}','HAProxy frontend {#PXNAME}: Session utilization is high','',0,0,2,0,'Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy\'s configuration to allow more sessions, or migrate your HAProxy server to a bigger box.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m','9af44a07b1a347979492063ee756b025',''),(16656,'{19469}>{$HAPROXY.SERVER_ERESP.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is high','',0,0,2,0,'Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m','5a982a97f812468eb8e7163f06f0ee77',''),(16657,'{19470}>{$HAPROXY.SERVER_QCUR.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is high','',0,0,2,0,'Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m','b88e0b4baa2e4738a161a7fc437d6e1c',''),(16658,'{19471}>{$HAPROXY.SERVER_QTIME.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is high','',0,0,2,0,'Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m','abf3d9e3f6fa43d8bf722bcc58c37388',''),(16659,'{19472}>{$HAPROXY.SERVER_RTIME.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Average response time is high','',0,0,2,0,'Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m','51ae2aca459b453cb433c5cc0f043a25',''),(16660,'{23210}=5','HAProxy {#PXNAME} {#SVNAME}: Server is DOWN','',0,0,2,0,'Server is not available.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','ec64ec00aa164ac09faf90794264907a',''),(16661,'{19474}<10m','HAProxy: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'HAProxy: has been restarted (uptime < 10m)','ff606f3c571340389562fabc9e814463',''),(16662,'{23212}<>{23213} and length({23214})>0','HAProxy: Version has changed','',0,0,1,0,'HAProxy version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'HAProxy: Version has changed (new version: {ITEM.VALUE})','c4b8346311a34cd19ebc8fbab53737fe',''),(16665,'{19479}>{$HAPROXY.BACK_ERESP.MAX.WARN}','HAProxy backend {#PXNAME}: Number of responses with error is high','',0,0,2,0,'Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m','efe5a794bd47419398aa3aa35a177f08',''),(16666,'{19480}>{$HAPROXY.BACK_QCUR.MAX.WARN}','HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is high','',0,0,2,0,'Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m','be428614e0874726b63d79150813542d',''),(16667,'{19481}>{$HAPROXY.BACK_QTIME.MAX.WARN}','HAProxy backend {#PXNAME}: Average time spent in queue is high','',0,0,2,0,'Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m','fa8211069df846a1b2ee8afcdd52f4a0',''),(16668,'{19482}>{$HAPROXY.BACK_RTIME.MAX.WARN}','HAProxy backend {#PXNAME}: Average response time is high','',0,0,2,0,'Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m','90c0bd8c280246b7903ac90c32553fd5',''),(16669,'{23215}=5','HAProxy backend {#PXNAME}: Server is DOWN','',0,0,3,0,'Backend is not available.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5ea80b42a6be4df48f048a5aa253c923',''),(16670,'{19484}>{$HAPROXY.FRONT_DREQ.MAX.WARN}','HAProxy frontend {#PXNAME}: Number of requests denied is high','',0,0,2,0,'Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m','4d8ac22673944752979263b34521af65',''),(16671,'{19485}>{$HAPROXY.FRONT_EREQ.MAX.WARN}','HAProxy frontend {#PXNAME}: Number of request errors is high','',0,0,2,0,'Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m','c51ac95f4d4a46e1ac1df1d057197f6e',''),(16672,'{19486}>{$HAPROXY.FRONT_SUTIL.MAX.WARN}','HAProxy frontend {#PXNAME}: Session utilization is high','',0,0,2,0,'Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy\'s configuration to allow more sessions, or migrate your HAProxy server to a bigger box.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m','ad33db7c356342e78ee19e904c981f1f',''),(16673,'{19487}>{$HAPROXY.SERVER_ERESP.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is high','',0,0,2,0,'Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m','bf952df23dac4b059d0219b204449830',''),(16674,'{19488}>{$HAPROXY.SERVER_QCUR.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is high','',0,0,2,0,'Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m','24e803eab76244d38ff90f2fce396b7f',''),(16675,'{19489}>{$HAPROXY.SERVER_QTIME.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is high','',0,0,2,0,'Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m','f6d92dc0d2334ca4a7a4c0c81f60c44c',''),(16676,'{19490}>{$HAPROXY.SERVER_RTIME.MAX.WARN}','HAProxy {#PXNAME} {#SVNAME}: Average response time is high','',0,0,2,0,'Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m','5a0444417ebf47cab0218e8407f04354',''),(16677,'{23216}=5','HAProxy {#PXNAME} {#SVNAME}: Server is DOWN','',0,0,2,0,'Server is not available.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','ccf6dbe8970f4f9f9223027e676aa57e',''),(16679,'{19494}=0 or\r\n {19495}=1','Nginx: Failed to fetch stub status page','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Nginx: Failed to fetch stub status page (or no data for 30m)','78e0a6322a1941469a0e108a9367c420',''),(16681,'{19497}/{19498}*100>{$REDIS.CLIENTS.PRC.MAX.WARN}','Redis: Total number of connected clients is too high','',0,0,2,0,'When the number of clients reaches the value of the \"maxclients\" parameter, new connections will be rejected.\r\n\r\nhttps://redis.io/topics/clients#maximum-number-of-clients','',NULL,0,0,0,0,'',0,'',0,'',0,'Redis: Total number of connected clients is too high (over {$REDIS.CLIENTS.PRC.MAX.WARN}% in 5m)','65e4652dbebe47c4b46e47bb8a17aac6',''),(16682,'{23504}<>{23505} and length({23506})>0','Redis: Configuration has changed','',0,0,1,0,'Redis configuration has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Redis: Version has changed (new version: {ITEM.VALUE})','819b379b51c34616820f86d21c703b27',''),(16683,'{19501}=1','Redis: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'Redis: Failed to fetch info data (or no data for 30m)','0a5176877ba24df8b5d38c8cc544f0a8',''),(16684,'{19502}>{$REDIS.MEM.FRAG_RATIO.MAX.WARN}','Redis: Memory fragmentation ratio is too high','',0,0,2,0,'This ratio is an indication of memory mapping efficiency:\r\n — Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5.\r\n — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.\r\n\r\nNote: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.\r\n\r\nhttps://redis.io/topics/memory-optimization','',NULL,0,0,0,0,'',0,'',0,'',0,'Redis: Memory fragmentation ratio is too high (over {$REDIS.MEM.FRAG_RATIO.MAX.WARN} in 15m)','629531ff1ebc4bdbb1f277848c436230',''),(16685,'{19503}=0','Redis: Last AOF write operation failed','',0,0,2,0,'Detailed information about persistence: https://redis.io/topics/persistence','',NULL,0,0,0,0,'',0,'',0,'',0,'','324e0e8fac514ba99d67aea7eb0ddf7c',''),(16686,'{19504}=0','Redis: Last RDB save operation failed','',0,0,2,0,'Detailed information about persistence: https://redis.io/topics/persistence','',NULL,0,0,0,0,'',0,'',0,'',0,'','44e427ae3ce7419dbac3059be11e31ef',''),(16687,'{19505}=0','Redis: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','62353f9ed6204b70ba270827c3922244',''),(16688,'{23507}<>{23508}','Redis: Number of slaves has changed','',0,0,1,0,'Redis number of slaves has changed. Ack to close.','',NULL,0,0,0,2,'',0,'',1,'',0,'','6d213088211a4bb38ff97b59113dccd9',''),(16689,'{23509}<>{23510} and length({23511})>0','Redis: Replication role has changed','',0,0,2,0,'Redis replication role has changed. Ack to close.','',NULL,0,0,0,2,'',0,'',1,'',0,'Redis: Replication role has changed (new role: {ITEM.VALUE})','d24f7aabefb345e791b3bb276f30ac8c',''),(16690,'{23512}<>{23513} and length({23514})>0','Redis: Version has changed','',0,0,1,0,'Redis version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Redis: Version has changed (new version: {ITEM.VALUE})','6e307546b26344deb83f2295c90e9a33',''),(16691,'{19511}<10m','Redis: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Redis: has been restarted (uptime < 10m)','4961e91eed2a4e83899d135315748b0e',''),(16692,'{19512}>{$REDIS.SLOWLOG.COUNT.MAX.WARN}','Redis: Too many entries in the slowlog','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Redis: Too many entries in the slowlog (over {$REDIS.SLOWLOG.COUNT.MAX.WARN} per second in 5m)','37fb0255e49c42c8913e56fe4aaa1d14',''),(16693,'{19513}>0','Redis: Connections are rejected','',0,0,4,0,'The number of connections has reached the value of \"maxclients\".\r\n\r\nhttps://redis.io/topics/clients','',NULL,0,0,0,0,'',0,'',0,'',0,'','5bf0680529ce496b8fe419e2732c69d1',''),(16694,'{19514}=0','Redis: Process is not running','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','590bd23c52b74dd7951dcf74903ac2ed',''),(16696,'{19517}>{$REDIS.REPL.LAG.MAX.WARN}','Redis: Replication lag with master is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Redis: Replication lag with master is too high (over {$REDIS.REPL.LAG.MAX.WARN} in 5m)','292f477d970d4a138d2d1b2c45d965dd',''),(16710,'{19548} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} or {19549} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read/write request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m)','412381f71bba441b955898839f81d51c',''),(16713,'{19552}<>0','\"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME}) is not running','',0,0,3,0,'The service has a state other than \"Running\" for the last three times.','',NULL,0,0,2,0,'',0,'',0,'',0,'\"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','9fab20eab61d48c09682fe5c142cc917',''),(16719,'{19558}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','',0,0,3,0,'The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','e51c9ee3061c4e3889be1666afe6959d',''),(16721,'{19560}>0','MySQL: Refused connections','',0,0,3,0,'Number of refused connections due to the max_connections limit being reached.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Refused connections (max_connections limit reached)','2ff2d0f399df4cb08b7196d3a4690567',''),(16723,'{19562}=0','MySQL: Service is down','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e78f07e3e507461f8fe33a31b1bc4eb9',''),(16724,'{19563}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','',0,0,2,0,'The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','113509b7a7b54a108c1c63346a52bbf2',''),(16725,'{19564}<10m','MySQL: Service has been restarted','',0,0,1,0,'MySQL uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Service has been restarted (uptime < 10m)','f02f51c764934cf394c5ad3f9c4e70d2',''),(16726,'{23455}<>{23456} and length({23457})>0','MySQL: Version has changed','',0,0,1,0,'MySQL version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'MySQL: Version has changed (new version value received: {ITEM.VALUE})','7eab3a7337904ad1b2061d209371543b',''),(16727,'{19567}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','a5c91da088414d279f5ea3cd59093ce9',''),(16728,'{19568}=1','MySQL: The slave I/O thread is not running','',0,0,3,0,'Whether the I/O thread for reading the master\'s binary log is running.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4c8ca45f26254d9a9a1c9248f1fa1537',''),(16729,'{19569}=1','MySQL: The slave I/O thread is not connected to a replication master','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','8ee45932311443cb906306b1d2c99b19',''),(16730,'{19570}=1','MySQL: The SQL thread is not running','',0,0,2,0,'Whether the SQL thread for executing events in the relay log is running.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bd0d20c05e3b46b6a7c341e5d122208b',''),(16732,'{19572}=0','MySQL: Service is down','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e664e41d7b4f4336a3e5ef4720f6ee41',''),(16733,'{23461}<>{23462} and length({23463})>0','MySQL: Version has changed','',0,0,1,0,'MySQL version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'MySQL: Version has changed (new version value received: {ITEM.VALUE})','4090a1d3d82d47ac85964baeae121b2b',''),(16734,'{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','',0,0,3,0,'The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','5934cb80f9c3442d978c63780b1ebc9f',''),(16736,'{19577}>0','MySQL: Refused connections','',0,0,3,0,'Number of refused connections due to the max_connections limit being reached.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Refused connections (max_connections limit reached)','ac781c951ac0453a9c1008b2cf801518',''),(16737,'{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','',0,0,2,0,'The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','b981c7a2ffed4eddbc9f1d6913c2e4b0',''),(16738,'{19579}<10m','MySQL: Service has been restarted','',0,0,1,0,'MySQL uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Service has been restarted (uptime < 10m)','cd8f5996bd85434998595e041d6b0908',''),(16739,'{19580}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','f2188a73bbf34ffcb95b3e11e2824feb',''),(16740,'{19581}=1','MySQL: The slave I/O thread is not running','',0,0,3,0,'Whether the I/O thread for reading the master\'s binary log is running.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ba08061a61df4bbb8bac516ecec91b70',''),(16741,'{19582}=1','MySQL: The slave I/O thread is not connected to a replication master','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','6f216036f4f14ae7adc8c70126bb315a',''),(16742,'{19583}=1','MySQL: The SQL thread is not running','',0,0,2,0,'Whether the SQL thread for executing events in the relay log is running.','',NULL,0,0,2,0,'',0,'',0,'',0,'','39d229e5e3f34e8b828b4a0e2eaa0026',''),(16743,'{19584}=1','Docker: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'Docker: Failed to fetch info data (or no data for 30m)','2c62bb4d95684e6984447027d117ff4d',''),(16744,'{19585}=0','Docker: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','a4f00b4d25b54acfa61475c94651d8a5',''),(16745,'{23191}<>{23192} and length({23193})>0','Docker: Version has changed','',0,0,1,0,'Docker version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Docker: Version has changed (new version: {ITEM.VALUE})','f5f4fb1337264ac2bec6b6505dfe180b',''),(16746,'{19588}>0 and {19589}=0','Container {#NAME}: Container has been stopped with error code','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',1,'Exit code: {ITEM.LASTVALUE1}',0,'','db675ff608a14b12bcc02e6b500c557f',''),(16747,'{23194}<>{23195} and length({23196})>0','Container {#NAME}: An error has occurred in the container','',0,0,2,0,'Container {#NAME} has an error. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'Container {#NAME}: Version has changed (new version: {ITEM.VALUE})','ee70b91196494eccb54772b22051a456',''),(16748,'{19592}/{19593}*100>{$MEMCACHED.MEM.PUSED.MAX.WARN}','Memcached: Memory usage is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Memcached: Memory usage is too high (over {$MEMCACHED.MEM.PUSED.MAX.WARN} in 5m)','e6129a8ace1945fa9020c6c0008cb19c',''),(16749,'{19594}/{19595}*100>{$MEMCACHED.CONN.PRC.MAX.WARN}','Memcached: Total number of connected clients is too high','',0,0,2,0,'When the number of connections reaches the value of the \"max_connections\" parameter, new connections will be rejected.','',NULL,0,0,0,0,'',0,'',0,'',0,'Memcached: Total number of connected clients is too high (over {$MEMCACHED.CONN.PRC.MAX.WARN}% in 5m)','61021d383c9f41b990292bab2738356d',''),(16750,'{19596}>{$MEMCACHED.CONN.QUEUED.MAX.WARN}','Memcached: Too many queued connections','',0,0,2,0,'The max number of connections is reached and a new connection had to wait in the queue as a result.','',NULL,0,0,0,0,'',0,'',0,'',0,'Memcached: Too many queued connections (over {$MEMCACHED.CONN.QUEUED.MAX.WARN} in 5m)','922a59008cd94e0688db8528be296f89',''),(16751,'{19597}>{$MEMCACHED.CONN.THROTTLED.MAX.WARN}','Memcached: Too many throttled connections','',0,0,2,0,'Number of times a client connection was throttled is too high.\r\nWhen sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation.','',NULL,0,0,0,0,'',0,'',0,'',0,'Memcached: Too many throttled connections (over {$MEMCACHED.CONN.THROTTLED.MAX.WARN} in 5m)','33c9b918d21343dea3bcd2c3e3505fc5',''),(16752,'{19598}=1','Memcached: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'Memcached: Failed to fetch info data (or no data for 30m)','a30bb4344e714b7f984e86046797b9b1',''),(16753,'{19599}=0','Memcached: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','c6184e4c3cc54e199244dc8efb3cacf8',''),(16754,'{19600}<10m','Memcached: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Memcached: has been restarted (uptime < 10m)','c53a2d7b861b41458976bfa03ab1a105',''),(16755,'{23228}<>{23229} and length({23230})>0','Memcached: Version has changed','',0,0,1,0,'Memcached version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Memcached: Version has changed (new version: {ITEM.VALUE})','086e757b4a2048eabd5e91b4a0ccc07b',''),(16756,'{19603}>{$MYSQL.ABORTED_CONN.MAX.WARN}','MySQL: Server has aborted connections','',0,0,3,0,'The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m)','0f984c4458ae4a7f9388b1edb42090bf',''),(16758,'{19605}>0','MySQL: Refused connections','',0,0,3,0,'Number of refused connections due to the max_connections limit being reached.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Refused connections (max_connections limit reached)','15cd0177e955459ba0862425755583a0',''),(16759,'{19606}=0','MySQL: Service is down','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','907a105ecee24eef9dd89598a42b6974',''),(16760,'{19607}>{$MYSQL.SLOW_QUERIES.MAX.WARN}','MySQL: Server has slow queries','',0,0,2,0,'The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m)','8ffcb17b0a644c5e8a2842b34d5713a8',''),(16761,'{19608}<10m','MySQL: Service has been restarted','',0,0,1,0,'MySQL uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Service has been restarted (uptime < 10m)','db5159889cb94f27840e6f4974ee5c0e',''),(16762,'{23458}<>{23459} and length({23460})>0','MySQL: Version has changed','',0,0,1,0,'MySQL version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'MySQL: Version has changed (new version value received: {ITEM.VALUE})','e22c2e2213d74df98d344a95c8a96b6d',''),(16763,'{19611}>{$MYSQL.REPL_LAG.MAX.WARN}','MySQL: Replication lag is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m)','373e215000a64e05b0379f186141067f',''),(16764,'{19612}=1','MySQL: The slave I/O thread is not running','',0,0,3,0,'Whether the I/O thread for reading the master\'s binary log is running.','',NULL,0,0,2,0,'',0,'',0,'',0,'','369f7ade45cd4ca39f5aa47d638e5e00',''),(16765,'{19613}=1','MySQL: The slave I/O thread is not connected to a replication master','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','efe46a25a1fd48e1a7504a9b06c26aee',''),(16766,'{19614}=1','MySQL: The SQL thread is not running','',0,0,2,0,'Whether the SQL thread for executing events in the relay log is running.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9099f769af4c4008a69098f9e9f63673',''),(16767,'{24445}<>{24446}','IPMI: {#SENSOR_ID} value has changed','',0,0,1,0,'The trigger is informing about changes in a state of the discrete IPMI sensor. A problem generated by this trigger can be manually closed.','',NULL,0,0,2,0,'',0,'',1,'',0,'','efe107571d704895bbb43c95407e6689',''),(16768,'{19616}<{#SENSOR_LO_WARN}','IPMI: {#SENSOR_ID} value is below non-critical low','',0,0,2,0,'The trigger is informing that a value less than the lower non-critical threshold has been reached.','',NULL,0,0,2,0,'',0,'',0,'',0,'IPMI: {#SENSOR_ID} value is below non-critical low (less than {#SENSOR_LO_WARN} for 5m)','7b712e7b11a34635948517467f77ad9d',''),(16769,'{19617}<{#SENSOR_LO_CRIT}','IPMI: {#SENSOR_ID} value is below critical low','',0,0,4,0,'The trigger is informing that a value less than the lower critical threshold has been reached.','',NULL,0,0,2,0,'',0,'',0,'',0,'IPMI: {#SENSOR_ID} value is below critical low (less than {#SENSOR_LO_CRIT} for 5m)','adbb7e20a46d42329e4744548aa9d5f6',''),(16770,'{19618}<{#SENSOR_LO_DISAST}','IPMI: {#SENSOR_ID} value is below non-recoverable low','',0,0,5,0,'The trigger is informing that a value less than the lower non-recoverable threshold has been reached.','',NULL,0,0,2,0,'',0,'',0,'',0,'IPMI: {#SENSOR_ID} value is below non-recoverable low (less than {#SENSOR_LO_DISAST} for 5m)','b078ee6b820f44f2871c2e3fcd0ce4cf',''),(16771,'{19619}>{#SENSOR_HI_WARN}','IPMI: {#SENSOR_ID} value is above non-critical high','',0,0,2,0,'The trigger is informing that a value higher than the upper non-critical threshold has been reached.','',NULL,0,0,2,0,'',0,'',0,'',0,'IPMI: {#SENSOR_ID} value is above non-critical high (greater than {#SENSOR_HI_WARN} for 5m)','0fc9d9baa3dd4d3db841e2153b6c39b2',''),(16772,'{19620}>{#SENSOR_HI_CRIT}','IPMI: {#SENSOR_ID} value is above critical high','',0,0,4,0,'The trigger is informing that a value higher than the upper critical threshold has been reached.','',NULL,0,0,2,0,'',0,'',0,'',0,'IPMI: {#SENSOR_ID} value is above critical high (greater than {#SENSOR_HI_CRIT} for 5m)','e9c37c1847d64920b80a20cc764b6c81',''),(16773,'{19621}>{#SENSOR_HI_DISAST}','IPMI: {#SENSOR_ID} value is above non-recoverable high','',0,0,5,0,'The trigger is informing that a value higher than the upper non-recoverable threshold has been reached.','',NULL,0,0,2,0,'',0,'',0,'',0,'IPMI: {#SENSOR_ID} value is above non-recoverable high (greater than {#SENSOR_HI_DISAST} for 5m)','2c3dbc3f68db44f1924682a8241e0086',''),(16774,'({19622}-{19623})/({19624}-1)>{19623}','ES: Cluster does not have enough space for resharding','',0,0,4,0,'There is not enough disk space for index resharding.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a2f33888d2774325b7955b633a7aae81',''),(16775,'{19625}>0','ES: Cluster has the initializing shards','',0,0,3,0,'The cluster has the initializing shards longer than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ee59684bb2044540ad0306a5b6deb408',''),(16776,'{19626}<0','ES: The number of nodes within the cluster has decreased','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','5be4cb40e72442aca18ea014adbead23',''),(16777,'{19627}>0','ES: The number of nodes within the cluster has increased','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','2fba2b29425b4ff9a4008db9bde49d7f',''),(16778,'{19628}=1','ES: Health is YELLOW','',0,0,3,0,'All primary shards are assigned, but one or more replica shards are unassigned.\r\nIf a node in the cluster fails, some data could be unavailable until that node is repaired.','',NULL,0,0,0,0,'',0,'',0,'',0,'','99f36c2aa5d64248b96d1fc97c3b3065',''),(16779,'{19629}=2','ES: Health is RED','',0,0,4,0,'One or more primary shards are unassigned, so some data is unavailable.\r\nThis can occur briefly during cluster startup as primary shards are assigned.','',NULL,0,0,0,0,'',0,'',0,'',0,'','f3bb7e96f6074063bad76521e1dce24f',''),(16780,'{19630}=255','ES: Health is UNKNOWN','',0,0,4,0,'The health status of the cluster is unknown or cannot be obtained.','',NULL,0,0,0,0,'',0,'',0,'',0,'','33a6ef13f7b240768841919482709411',''),(16781,'{19631}>0','ES: Cluster has the unassigned shards','',0,0,3,0,'The cluster has the unassigned shards longer than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'','35bdd54f27a64009b96a06a12508f99c',''),(16782,'{19632}=2','ES: Cluster has only two master nodes','',0,0,5,0,'The cluster has only two nodes with a master role and will be unavailable if one of them breaks.','',NULL,0,0,0,0,'',0,'',0,'',0,'','8011883baef04aa0bed343d1bb0df288',''),(16783,'{19633}<10m','ES: Cluster has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ES: Cluster has been restarted (uptime < 10m)','d28aa18c85cb4f48a9e7b8ba55d65400',''),(16784,'{19634}>{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN}','ES: Service response time is too high','',0,0,2,0,'The performance of the TCP service is very low.','',NULL,0,0,0,0,'',0,'',1,'',0,'ES: Service response time is too high (over {$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} for 5m)','2a3f3b96e5dd47de998ccc17f109e149',''),(16785,'{19635}=0','ES: Service is down','',0,0,3,0,'The service is unavailable or does not accept TCP connections.','',NULL,0,0,0,0,'',0,'',1,'',0,'','b4d76f68ce94492f96bbfbb778d1f144',''),(16786,'{19636}>{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}','ES {#ES.NODE}: Flush latency is too high','',0,0,2,0,'If you see this metric increasing steadily, it may indicate a problem with slow disks; this problem may escalate\r\nand eventually prevent you from being able to add new information to your index.','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Flush latency is too high (over {$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}ms for 5m)','6c2ea291374b4de1ab06ddeccba635b1',''),(16787,'{19637}>{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}','ES {#ES.NODE}: Indexing latency is too high','',0,0,2,0,'If the latency is increasing, it may indicate that you are indexing too many documents at the same time (Elasticsearch\'s documentation\r\nrecommends starting with a bulk indexing size of 5 to 15 megabytes and increasing slowly from there).','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Indexing latency is too high (over {$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}ms for 5m)','2755b3f8811a45fba7c48347707ceaf8',''),(16788,'{19638}>{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}','ES {#ES.NODE}: Fetch latency is too high','',0,0,2,0,'The fetch phase should typically take much less time than the query phase. If you notice this metric consistently increasing,\r\nthis could indicate a problem with slow disks, enriching of documents (highlighting the relevant text in search results, etc.),\r\nor requesting too many results.','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Fetch latency is too high (over {$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}ms for 5m)','6edd6851f31842659a57e29c444a9b32',''),(16789,'{19639}>{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}','ES {#ES.NODE}: Query latency is too high','',0,0,2,0,'If latency exceeds a threshold, look for potential resource bottlenecks, or investigate whether you need to optimize your queries.','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Query latency is too high (over {$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}ms for 5m)','1892000290c843e887d128bf9f97c869',''),(16790,'{19640}>{$ELASTICSEARCH.HEAP_USED.MAX.WARN}','ES {#ES.NODE}: Percent of JVM heap in use is high','',0,0,2,0,'This indicates that the rate of garbage collection isn\'t keeping up with the rate of garbage creation.\r\nTo address this problem, you can either increase your heap size (as long as it remains below the recommended\r\nguidelines stated above), or scale out the cluster by adding more nodes.','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Percent of JVM heap in use is high (over {$ELASTICSEARCH.HEAP_USED.MAX.WARN}% for 1h)','bbba4a577a2c4328b2392fdeb1ff9bb4',''),(16791,'{19641}>{$ELASTICSEARCH.HEAP_USED.MAX.CRIT}','ES {#ES.NODE}: Percent of JVM heap in use is critical','',0,0,4,0,'This indicates that the rate of garbage collection isn\'t keeping up with the rate of garbage creation.\r\nTo address this problem, you can either increase your heap size (as long as it remains below the recommended\r\nguidelines stated above), or scale out the cluster by adding more nodes.','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Percent of JVM heap in use is critical (over {$ELASTICSEARCH.HEAP_USED.MAX.CRIT}% for 1h)','9d199607ddda48eebe9f93cae6d6575d',''),(16792,'{19642}<10m','ES {#ES.NODE}: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'ES {#ES.NODE}: has been restarted (uptime < 10m)','580ae8aadf994fbcb34c9c8ad7cd5fad',''),(16793,'{19643}>0','ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks','',0,0,2,0,'The number of tasks rejected by the refresh thread pool executor is over 0 for 5m.','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks (for 5m)','b416941e8e0141c6af27c62f052ac860',''),(16794,'{19644}>0','ES {#ES.NODE}: Search thread pool executor has the rejected tasks','',0,0,2,0,'The number of tasks rejected by the search thread pool executor is over 0 for 5m.','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Search thread pool executor has the rejected tasks (for 5m)','5cfd3f9924614a4283f1255752b672f0',''),(16795,'{19645}>0','ES {#ES.NODE}: Write thread pool executor has the rejected tasks','',0,0,2,0,'The number of tasks rejected by the write thread pool executor is over 0 for 5m.','',NULL,0,0,2,0,'',0,'',0,'',0,'ES {#ES.NODE}: Write thread pool executor has the rejected tasks (for 5m)','1f5e30a34bb84cef831670974ec7c3e8',''),(16809,'{19659}>{$HAPROXY.RESPONSE_TIME.MAX.WARN}','HAProxy: Service response time is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m)','1fed5fffc6414e0babe362c0ad742e43',''),(16810,'{19660}=0','HAProxy: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','b346943ac4d04a96bcef42f3c43fc555',''),(16824,'{19674}>{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN}','ClickHouse: Too many distributed files to insert','',0,0,2,0,'\"Clickhouse servers and in config.xml\r\nhttps://clickhouse.tech/docs/en/operations/table_engines/distributed/\"','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: Too many distributed files to insert (over {$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} for 5 min)','4ecadb993aa74126a807df3af4b892ed',''),(16825,'{19675}>{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN}','ClickHouse: Too many throttled insert queries','',0,0,2,0,'Clickhouse have INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree, please decrease INSERT frequency','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: Too many throttled insert queries (over {$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN) for 5 min)','164dc9841cdd4b77a650792cf1bac701',''),(16826,'{19676}>{$CLICKHOUSE.PARTS.PER.PARTITION.WARN} * 0.9','ClickHouse: Too many MergeTree parts','',0,0,2,0,'Descease INSERT queries frequency.\r\nClickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression)\r\nand add one or more PARTS per INSERT inside each partition,\r\nafter that background merge process run, and when you have too much unmerged parts inside partition,\r\nSELECT queries performance can significate degrade, so clickhouse try delay insert, or abort it.','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: Too many MergeTree parts (over 90% of {$CLICKHOUSE.PARTS.PER.PARTITION.WARN})','21e6d3c6047145c59cbd00032699ee99',''),(16827,'{19677}>{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN}','ClickHouse: Too many network errors','',0,0,2,0,'Number of errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update is too high.','',NULL,0,0,0,0,'',0,'',0,'',0,'ClickHouse: Too many network errors (over {$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} in 5m)','d49b9e8978bd416f81ea01b935879d81',''),(16829,'{19679}>{$CLICKHOUSE.QUERY_TIME.MAX.WARN}','ClickHouse: There are queries running is long','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: There are queries running more than {$CLICKHOUSE.QUERY_TIME.MAX.WARN} seconds','2410e7b63c8340b6b08ec729d7093be6',''),(16830,'{19680}>{$CLICKHOUSE.REPLICA.MAX.WARN}','ClickHouse: Replication lag is too high','',0,0,2,0,'When replica have too much lag, it can be skipped from Distributed SELECT Queries without errors\r\nand you will have wrong query results.','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: Replication lag is too high (over {$CLICKHOUSE.REPLICA.MAX.WARN} sec for 5min)','fc47a407b15744e79b70088ec249951a',''),(16831,'{23389}<>{23390} and length({23391})>0','ClickHouse: Configuration has been changed','',0,0,1,0,'ClickHouse configuration has been changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: Version has changed (new version: {ITEM.VALUE})','dfd9500636824ebf9d51d93650d62613',''),(16832,'{19683}<10m','ClickHouse: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: has been restarted (uptime < 10m)','e1316d3a83174cc49ab96ad90c46150b',''),(16833,'{19684}=1','ClickHouse: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: Failed to fetch info data (or no data for 30m)','975cebc1b4324f83b5a8853fd666a179',''),(16834,'{23392}<>{23393} and length({23394})>0','ClickHouse: Version has changed','',0,0,1,0,'ClickHouse version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'ClickHouse: Version has changed (new version: {ITEM.VALUE})','244dcf8dc8584e1686585160c261ef85',''),(16835,'{19687}>1','ClickHouse: Too many ZooKeeper sessions opened','',0,0,2,0,'Number of sessions (connections) to ZooKeeper.\r\nShould be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows.','',NULL,0,0,0,0,'',0,'',0,'',0,'','655622aa6c5c48c8b38d5a519602ef05',''),(16836,'{19688} < {19689}','ClickHouse: {#DB}.{#TABLE}: Number of active replicas less than number of total replicas','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','f46f1b8d75c54129b6e2ff9ede2501b5',''),(16837,'{19690}=1','ClickHouse: {#DB}.{#TABLE} Replica is readonly','',0,0,2,0,'This mode is turned on if the config doesn\'t have sections with ZooKeeper, if an unknown error occurred when re-initializing sessions in ZooKeeper, and during session re-initialization in ZooKeeper.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7cfd2342d3654407a941cb56fde5c6bf',''),(16838,'{19691}=1','ClickHouse: {#DB}.{#TABLE} Replica session is expired','',0,0,2,0,'This mode is turned on if the config doesn\'t have sections with ZooKeeper, if an unknown error occurred when re-initializing sessions in ZooKeeper, and during session re-initialization in ZooKeeper.','',NULL,0,0,2,0,'',0,'',0,'',0,'','765475cc0be84ce1b85d1f026d08c326',''),(16839,'{19692} > {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN}','ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high (More than {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} for 5m)','0b06b448c0ad433c94c2a3788ca53e1a',''),(16840,'{19693}>{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN:\"{#TABLE}\"}','ClickHouse: {#DB}.{#TABLE}: Too many operations in queue','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'ClickHouse: {#DB}.{#TABLE}: Too many operations in queue (over {$CLICKHOUSE.QUEUE.SIZE.MAX.WARN} for 5m)','6fe0a15168db4abfa1cd2a2ee45d62ad',''),(16841,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {23632}=2 and ({23633}<>{23634})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{23632}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','35d62eb5323141a3a3f3afc4c9250243',''),(16863,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {23620}=2 and ({23621}<>{23622})','Interface {#IFDESCR}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{23620}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','94097ac2b53748aea45fed2f3014c1b6',''),(16866,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {23695}=2 and ({23696}<>{23697})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{23695}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','efe4c7dbbd804e41bc1bcd0630afcf09',''),(16871,'{19756}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{19757}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','2bb01154728b47c69514f7399f3bfabc',''),(16883,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {24344}=2 and ({24345}<>{24346})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. It can be triggered if the operations status is down.\r\n2. {$IFCONTROL:\"{#IFNAME}\"}=1 - a 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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - it will not fire again on the next poll, because of .diff.','',NULL,0,0,2,1,'{24344}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','e35b59dc09754451a721793831edc3d4',''),(16886,'{19792}<10m','Apache: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Apache: {HOST.NAME} has been restarted (uptime < 10m)','7872d9665c234f45941ca26206e0255c',''),(16887,'{23176}<>{23177} and length({23178})>0','Apache: Version has changed','',0,0,1,0,'The Apache version has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'Apache: Version has changed (new version: {ITEM.VALUE})','5124b17918f545758ca5c936332f51cd',''),(16889,'{19796}/{19797}*100>{$ETCD.OPEN.FDS.MAX.WARN}','Etcd: Current number of open files is too high','',0,0,2,0,'Heavy file descriptor usage (i.e., near the process\'s file descriptor limit) indicates a potential file descriptor exhaustion issue.\r\nIf the file descriptors are exhausted, etcd may panic because it cannot create new WAL files.','',NULL,0,0,0,0,'',0,'',0,'',0,'Etcd: Current number of open files is too high (over {$ETCD.OPEN.FDS.MAX.WARN}% for 5m)','c45583928d204c04ad8884115e1e35c5',''),(16890,'{23197}<>{23198} and length({23199})>0','Etcd: Cluster version has changed','',0,0,1,0,'Etcd version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Etcd: Cluster version has changed (new version: {ITEM.VALUE})','7c87424c4fb34c56bc9b976755b4ec02',''),(16891,'{19800}=0','Etcd: Member has no leader','',0,0,3,0,'If a member does not have a leader, it is totally unavailable.','',NULL,0,0,0,0,'',0,'',0,'',0,'','20165719d521453bb239d818ac57805c',''),(16892,'{19801}=0','Etcd: Node healthcheck failed','',0,0,3,0,'https://etcd.io/docs/v3.4.0/op-guide/monitoring/#health-check','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6acda7bdc9df4a4ab5b7cca76c6369f0',''),(16893,'{19802}>{$ETCD.HTTP.FAIL.MAX.WARN}','Etcd: Too many HTTP requests failures','',0,0,2,0,'Too many requests failed on etcd instance with 5xx HTTP code.','',NULL,0,0,0,0,'',0,'',0,'',0,'Etcd: Too many HTTP requests failures (over {$ETCD.HTTP.FAIL.MAX.WARN} for 5m)','0302957e0f6b43389546e1cfb958ed9c',''),(16894,'{19803}=1','Etcd: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Etcd: Failed to fetch info data (or no data for 30m)','44d66eb1a332418daf4c3a1110db5458',''),(16895,'({19804}-{22977})>{$ETCD.LEADER.CHANGES.MAX.WARN}','Etcd: Instance has seen too many leader changes','',0,0,2,0,'Rapid leadership changes impact the performance of etcd significantly. It also signals that the leader is unstable, perhaps due to network connectivity issues or excessive load hitting the etcd cluster.','',NULL,0,0,0,0,'',0,'',0,'',0,'Etcd: Instance has seen too many leader changes (over {$ETCD.LEADER.CHANGES.MAX.WARN} for 15m)\'','1ea623927179489890a5a73eeb8177f7',''),(16896,'{19805}>{$ETCD.PROPOSAL.FAIL.MAX.WARN}','Etcd: Too many proposal failures','',0,0,2,0,'Normally related to two issues: temporary failures related to a leader election or longer downtime caused by a loss of quorum in the cluster.','',NULL,0,0,0,0,'',0,'',0,'',0,'Etcd: Too many proposal failures (over {$ETCD.PROPOSAL.FAIL.MAX.WARN} for 5m)\'','432cea8bddd742ca98528be2fbc7e35e',''),(16897,'{19806}>{$ETCD.PROPOSAL.PENDING.MAX.WARN}','Etcd: Too many proposals are queued to commit','',0,0,2,0,'Rising pending proposals suggests there is a high client load or the member cannot commit proposals.','',NULL,0,0,0,0,'',0,'',0,'',0,'Etcd: Too many proposals are queued to commit (over {$ETCD.PROPOSAL.PENDING.MAX.WARN} for 5m)\'','5feefc4dd5d14fe2b56dd63029b57026',''),(16898,'{23200}<>{23201} and length({23202})>0','Etcd: Server version has changed','',0,0,1,0,'Etcd version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Etcd: Server version has changed (new version: {ITEM.VALUE})','cfb2fc467b224ef694d59b5c081ed965',''),(16899,'{19809}<10m','Etcd: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Etcd: {HOST.NAME} has been restarted (uptime < 10m)','6843369969f5410a840494104d71fe1f',''),(16900,'{19810}=0','Etcd: Service is unavailable','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','74164f0783ae4227ba44f3e865fee3bd',''),(16901,'{19811}>{$ETCD.GRPC.ERRORS.MAX.WARN}','Etcd: Too many failed gRPC requests with code: {#GRPC.CODE}','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Etcd: Too many failed gRPC requests with code: {#GRPC.CODE} (over {$ETCD.GRPC.ERRORS.MAX.WARN} in 5m)','459b6ee5735047d597a6a4ab41b76e21',''),(16902,'{19812}=0','IIS: Port {$IIS.PORT} is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','da7d9c749f884c179a105b0c9475e6bd',''),(16903,'{19813}<10m','IIS: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'IIS: has been restarted (uptime < 10m)','7bbf8a836c66422abd4469d28afbcc00',''),(16904,'{19814}<>0','IIS: The World Wide Web Publishing Service (W3SVC) is not running','',0,0,4,0,'The World Wide Web Publishing Service (W3SVC) is not in the running state. IIS cannot start.','',NULL,0,0,0,0,'',0,'',0,'',0,'','cac6bbb13ce84772a976275da0805179',''),(16905,'{19815}<>0','IIS: Windows process Activation Service (WAS) is not running','',0,0,4,0,'Windows Process Activation Service (WAS) is not in the running state. IIS cannot start.','',NULL,0,0,0,0,'',0,'',0,'',0,'','98fc8e403ac0405e84bf533336c4102c',''),(16906,'{19816}<>3 and {$IIS.APPPOOL.MONITORED:\"{#APPPOOL}\"}=1','IIS: Application pool {#APPPOOL} is not in Running state','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','56c6df39f3d1419ca4ce67c70f464ab7',''),(16907,'{19817}<10m','IIS: {#APPPOOL} has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'IIS: {#APPPOOL} has been restarted (uptime < 10m)','53afe8614ac542feaed1d656152bafd2',''),(16908,'{23218}<>{23219} and {$IIS.APPPOOL.MONITORED:\"{#APPPOOL}\"}=1','IIS: Application pool {#APPPOOL} has been recycled','',0,0,1,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','665d5fbd0b9247e890a9cfa1b39fa415',''),(16909,'{19819}>{$IIS.QUEUE.MAX.WARN}','IIS: Request queue of {#APPPOOL} is too large','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN})','8cebd49164154999903dab2c03fd4be9',''),(16910,'{19820}=0','IIS: Port {$IIS.PORT} is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','2b73bb4c09404d748e019ef2257a9e20',''),(16911,'{19821}<10m','IIS: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'IIS: has been restarted (uptime < 10m)','f68768567f334d369d52797309f95c41',''),(16912,'{19822}<>0','IIS: The World Wide Web Publishing Service (W3SVC) is not running','',0,0,4,0,'The World Wide Web Publishing Service (W3SVC) is not in the running state. IIS cannot start.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ca139b8b27c44f7fb22938fd3419cff5',''),(16913,'{19823}<>0','IIS: Windows process Activation Service (WAS) is not running','',0,0,4,0,'Windows Process Activation Service (WAS) is not in the running state. IIS cannot start.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d7a16291f196424ca9c39af4271ab78f',''),(16914,'{19824}<>3 and {$IIS.APPPOOL.MONITORED:\"{#APPPOOL}\"}=1','IIS: Application pool {#APPPOOL} is not in Running state','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','a7184495eb684293ada387292c812b0f',''),(16915,'{19825}<10m','IIS: {#APPPOOL} has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'IIS: {#APPPOOL} has been restarted (uptime < 10m)','d2a9854722a44253a39c8eaab67f7677',''),(16916,'{23220}<>{23221} and {$IIS.APPPOOL.MONITORED:\"{#APPPOOL}\"}=1','IIS: Application pool {#APPPOOL} has been recycled','',0,0,1,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','27a93967a29849f3aef833db136e1b8e',''),(16917,'{19827}>{$IIS.QUEUE.MAX.WARN}','IIS: Request queue of {#APPPOOL} is too large','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN})','68499a4737d24ee6846aaea2a37b7b4f',''),(16918,'{23347}<>{23348} and length({23349})>0','Remote Zabbix proxy: Version has changed','',0,0,1,0,'Remote Zabbix proxy version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Remote Zabbix proxy: Version has changed (new version: {ITEM.VALUE})','224ec99fda0d443cba8a6c75da5a27cb',''),(16919,'{23314}<>{23315} and length({23316})>0','Remote Zabbix server: Version has changed','',0,0,1,0,'Remote Zabbix server version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Remote Zabbix server: Version has changed (new version: {ITEM.VALUE})','93a52f22c79b40539fcd3a26183daad9',''),(16920,'{19832}=0 or {19833} = 0','ClickHouse: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','803947a6de9340ed8596510dcbbeacac',''),(16921,'{19834}=0','ClickHouse: Port {$CLICKHOUSE.PORT} is unavailable','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','1d4b9842b66b4da9ab3750944b2fa050',''),(16925,'{19841} * 100 > 10 * {19842}','MSSQL: Too frequently using pointers','',0,0,2,0,'Rows with varchar columns can experience expansion when varchar values are updated with a longer string. In the case where the row cannot fit in the existing page, the row migrates and access to the row will traverse a pointer. This only happens on heaps (tables without clustered indexes). Evaluate clustered index for heap tables. In cases where clustered indexes cannot be used, drop non-clustered indexes, build a clustered index to reorg pages and rows, drop the clustered index, then recreate non-clustered indexes.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a1397bd4e9334a24a34dba0687b263e6',''),(16927,'{19845}>{$MSSQL.AVERAGE_WAIT_TIME.MAX}','MSSQL: Total average wait time for locks is high','',0,0,2,0,'An average wait time longer than 500ms may indicate excessive blocking. This value should generally correlate to \'Lock Waits/sec\' and move up or down with it accordingly.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Total average wait time for locks is high (over {$MSSQL.AVERAGE_WAIT_TIME.MAX}ms for 5m)','fad2c1e9d0ba45bcbb47ccbb327f0b98',''),(16928,'{19846}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}','MSSQL: Percentage of the buffer cache efficiency is low','',0,0,4,0,'Too low buffer cache hit ratio.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}% for 5m)','f84fa297023a4aee903e4d32bbad9360',''),(16929,'{19847}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}','MSSQL: Percentage of the buffer cache efficiency is low','',0,0,2,0,'Low buffer cache hit ratio.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}% for 5m)','42e5bf05da06425282134d3cf806d023',''),(16930,'{19848}>{$MSSQL.FREE_LIST_STALLS.MAX}','MSSQL: Number of rps waiting for a free page is high','',0,0,2,0,'Some requests have to wait for a free page.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Number of rps waiting for a free page is high (over {$MSSQL.FREE_LIST_STALLS.MAX} for 5m)','f055a294ef3b43dd8958e77c303a5fee',''),(16931,'{19849}>{$MSSQL.LAZY_WRITES.MAX}','MSSQL: Number of buffers written per second by the lazy writer is high','',0,0,2,0,'The number of buffers written per second by the buffer manager\'s lazy writer exceeds the threshold.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Number of buffers written per second by the lazy writer is high (over {$MSSQL.LAZY_WRITES.MAX} for 5m)','8aa547cda82f4dfcaef5ca0467590f64',''),(16932,'{19850}>{$MSSQL.LOCK_REQUESTS.MAX}','MSSQL: Total number of locks per second is high','',0,0,2,0,'Number of new locks and lock conversions per second requested from the lock manager is high.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m)','be4e0b1aec8d494b984be248424d69cf',''),(16933,'{19851}>{$MSSQL.LOCK_TIMEOUTS.MAX}','MSSQL: Total lock requests per second that timed out is high','',0,0,2,0,'The total number of timed out lock requests per second, including requests for NOWAIT locks, is high.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Total lock requests per second that timed out is high (over {$MSSQL.LOCK_TIMEOUTS.MAX} for 5m)','9b62d84b8d9c4209b894151f59c42b27',''),(16934,'{19852}>0','MSSQL: Some blocking is occurring for 5m','',0,0,3,0,'Values greater than zero indicate at least some blocking is occurring, while a value of zero can quickly eliminate blocking as a potential root-cause problem.','',NULL,0,0,0,0,'',0,'',0,'',0,'','879748a03c89495398b41fc1dbeba9ed',''),(16935,'{19853}>{$MSSQL.DEADLOCKS.MAX}','MSSQL: Number of deadlock is high','',0,0,3,0,'Too many deadlocks are occurring currently.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Number of deadlock is high (over {$MSSQL.DEADLOCKS.MAX} for 5m)','a8f77c32a7194af9b2674f0931c25212',''),(16936,'{19854}<{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}','MSSQL: Page life expectancy is low','',0,0,4,0,'The page stays in the buffer pool without references of less time than the threshold value.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Page life expectancy is low (less {$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}min for 15m)','4eb155a86f8b4441a6707e8a3816a068',''),(16937,'{19855}>{$MSSQL.PAGE_READS.MAX}','MSSQL: Number of physical database page reads per second is high','',0,0,2,0,'The physical database page reads are issued too frequently.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Number of physical database page reads per second is high (over {$MSSQL.PAGE_READS.MAX} for 5m)','c0b765b22b264d7c9086edc5cda35592',''),(16938,'{19856}>{$MSSQL.PAGE_WRITES.MAX}','MSSQL: Number of physical database page writes per second is high','',0,0,2,0,'The physical database page writes are issued too frequently.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Number of physical database page writes per second is high (over {$MSSQL.PAGE_WRITES.MAX} for 5m)','548941f4a7cc4cadba64d8efd46655da',''),(16939,'{19857}<10m','MSSQL: Service has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'MSSQL: Service has been restarted (uptime < 10m)','aa10f863608a494281f41e12f0d2b1a5',''),(16940,'{19858}=1','MSSQL: Failed to fetch info data','',0,0,1,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Failed to fetch info data (or no data for 30m)','0321c9f671394cb180fdce53b4033cf4',''),(16941,'{23452}<>{23453} and length({23454})>0','MSSQL: Version has changed','',0,0,1,0,'MSSQL version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'MSSQL: Version has changed (new version value received: {ITEM.VALUE})','4ece2c9172714c68b8345834cc37d927',''),(16944,'{19863}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}','MSSQL: Percentage of work tables available from the work table cache is low','',0,0,4,0,'A value less than 90% may indicate insufficient memory, since execution plans are being dropped, or on 32-bit systems, may indicate the need for an upgrade to a 64-bit system','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m)','98dee2bc42484988b208e100cc25ae05',''),(16946,'{19865}=0','MSSQL AG \'{#GROUP_NAME}\': Primary replica recovery health in progress','',0,0,2,0,'The primary replica is in the synchronization process.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c472a4f8400e451db529d5e12b863216',''),(16947,'{19866}=0','MSSQL AG \'{#GROUP_NAME}\': Secondary replica recovery health in progress','',0,0,2,0,'The secondary replica is in the synchronization process.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1fbf51eb9f8b432c8e0d9ec3af1cab44',''),(16948,'{19867}=0','MSSQL AG \'{#GROUP_NAME}\': All replicas unhealthy','',0,0,5,0,'None of the availability replicas have a healthy synchronization.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2ee92e5ea41744ac9e27ffaa4313bdec',''),(16949,'{19868}=1','MSSQL AG \'{#GROUP_NAME}\': Some replicas unhealthy','',0,0,4,0,'The synchronization health of some, but not all, availability replicas is healthy.','',NULL,0,0,2,0,'',0,'',0,'',0,'','fd24c78f1db24186932d17d1145b6e92',''),(16950,'{19869}>{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Total wait time to flush the log is high','',0,0,2,0,'The wait time to flush the log is too long.','',NULL,0,0,2,0,'',0,'',0,'',0,'MSSQL DB \'{#DBNAME}\': Total wait time to flush the log is high (over {$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:\"{#DBNAME}\"}ms for 5m)','80351c56215148b8ab75d95dc81ff0d0',''),(16951,'{19870}>{$MSSQL.LOG_FLUSH_WAITS.MAX:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Number of commits waiting for the log flush is high','',0,0,2,0,'Too many commits are waiting for the log flush.','',NULL,0,0,2,0,'',0,'',0,'',0,'MSSQL DB \'{#DBNAME}\': Number of commits waiting for the log flush is high (over {$MSSQL.LOG_FLUSH_WAITS.MAX:\"{#DBNAME}\"}/sec for 5m)','b351fc1128c24faf88d36717d0a0d1a5',''),(16954,'{19873}>{$MSSQL.PERCENT_LOG_USED.MAX:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Percent of log using is high','',0,0,2,0,'There\'s not enough space left in the log.','',NULL,0,0,2,0,'',0,'',0,'',0,'MSSQL DB \'{#DBNAME}\': Percent of log using is high (over {$MSSQL.PERCENT_LOG_USED.MAX:\"{#DBNAME}\"}% for 5m)','f02958e3ee174c6dbe900e3dd92cacdc',''),(16955,'{19874}>1','MSSQL DB \'{#DBNAME}\': State is {ITEM.VALUE}','',0,0,4,0,'The DB has a non-working state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6b8c8cf8e0d24b7f8d9aa7469a0facd4',''),(16956,'{19875}>0','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': \"{#DBNAME}\" is {ITEM.VALUE}','',0,0,2,0,'The local availability database has a non-working state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','78923c9c52e74c80a77d418afe9e438d',''),(16957,'{19876}=0','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': \"{#DBNAME}\" is Not healthy','',0,0,4,0,'The synchronization state of the local availability database is NOT SYNCHRONIZING.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e51c10f9d86d458da9fdb7e21b4e0102',''),(16958,'{19877}=1','MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': \"{#DBNAME}\" is Partially healthy','',0,0,3,0,'A database on a synchronous-commit availability replica is considered partially healthy if synchronization state is SYNCHRONIZING.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dc636f10f12c4f1ead597eca778561ec',''),(16959,'{19878}>=0 and {19878}<=2','MSSQL Mirroring \'{#DBNAME}\': \"{#DBNAME}\" is {ITEM.VALUE}','',0,0,1,0,'The state of the mirror database and of the database mirroring session is \"Suspended\", \"Disconnected from the other partner\", or \"Synchronizing\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','c673a7c4820840528a4aa1771a5a56d4',''),(16960,'{19879}=3','MSSQL Mirroring \'{#DBNAME}\': \"{#DBNAME}\" is {ITEM.VALUE}','',0,0,2,0,'The state of the mirror database and of the database mirroring session is \"Pending Failover\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','323543b0df0e474abf9190a9630242b1',''),(16961,'{19880}=5','MSSQL Mirroring \'{#DBNAME}\': \"{#DBNAME}\" is {ITEM.VALUE}','',0,0,4,0,'The state of the mirror database and of the database mirroring session is \"Not synchronized\". The partners are not synchronized. A failover is not possible now.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9a2bcdfb32654a55b8a75c8bf4331950',''),(16962,'{19881}=2','MSSQL Mirroring \'{#DBNAME}\': \"{#DBNAME}\" Witness is disconnected','',0,0,2,0,'The state of the witness in the database mirroring session of the database is \"Disconnected\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','ec374424b79346c99f1d815e0815c799',''),(16965,'{19888}=0 and {19889}=2','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is disconnected','',0,0,2,0,'The response of an availability replica to the DISCONNECTED state depends on its role:\r\nOn the primary replica, if a secondary replica is disconnected, its secondary databases are marked as NOT SYNCHRONIZED on the primary replica, which waits for the secondary to reconnect; On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7c6afc5596e94af0979bd20d5ef542ea',''),(16966,'{19890}=0 or {19890}=1 or {19890}=3','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is {ITEM.VALUE}','',0,0,2,0,'The operational state of the replica in a given availability group is \"Pending\" or \"Offline\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','0192e9d5795a4d46acb8de29f710edcd',''),(16967,'{19891}=4','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is {ITEM.VALUE}','',0,0,3,0,'The operational state of the replica in a given availability group is \"Failed\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','3f2006b9ae114e01b442b34fec9373d3',''),(16968,'{19892}=5','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is {ITEM.VALUE}','',0,0,4,0,'The operational state of the replica in a given availability group is \"Failed, no quorum\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','94ea79848a5048d8ae417df709b8d612',''),(16969,'{19893}=0','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} Recovery in progress','',0,0,1,0,'At least one joined database has a database state other than ONLINE.','',NULL,0,0,2,0,'',0,'',0,'',0,'','58f508b855364d769e2be977793a03c8',''),(16970,'{19894}=0','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is Not healthy','',0,0,3,0,'At least one joined database is in the NOT SYNCHRONIZING state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f2f4d198ad2242088d867abe6fac4ecd',''),(16971,'{19895}=1','MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': {#REPLICA_NAME} is Partially healthy','',0,0,2,0,'Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.','',NULL,0,0,2,0,'',0,'',0,'',0,'','070af612aa7248588fc058d8f9fb9929',''),(16972,'{19896}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','1b8761292e89476e91834f8e567a1dbe',''),(16973,'{19897}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','9845d8dc676f4702ae34b626f39d21ac',''),(16974,'{19898}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','c647a51864e04bc69a1f610b1dec56fe',''),(16975,'{19899}=1','MySQL: Failed to fetch info data','',0,0,1,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Failed to fetch info data (or no data for 30m)','d3c80c770355464fb5a6be0357d0edca',''),(16976,'{19900}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','8c4e0c429c8241e28b930bfce7e29be8',''),(16977,'{19901}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','322b61acd92e46f787e96486d2553886',''),(16978,'{19902}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','86ed19d4ddc84f0da4a77c1dcbdf8c60',''),(16979,'{19903}=1','MySQL: Failed to fetch info data','',0,0,1,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Failed to fetch info data (or no data for 30m)','6f4edf8bfca0477b8b28a8ff811476b3',''),(16980,'{19904}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN}','MySQL: Number of on-disk temporary tables created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m)','8aec6a51fa3e4320b3c7c40858ac7f96',''),(16981,'{19905}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN}','MySQL: Number of temporary files created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m)','c1dbcf829bdf43fda3b4c2add576c8f0',''),(16982,'{19906}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN}','MySQL: Number of internal temporary tables created per second is high','',0,0,2,0,'Possibly the application using the database is in need of query optimization.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m)','d65c3ec6cacd41c58f5e2b209ca5a810',''),(16983,'{19907}=1','MySQL: Failed to fetch info data','',0,0,1,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Failed to fetch info data (or no data for 30m)','ba9eb4fc244b41a6a30237e7a382fa54',''),(16984,'{19908}=0 and {19909}>0','Oracle: Port {$ORACLE.PORT} is unavailable','',0,0,5,0,'The TCP port of the Oracle Server service is currently unavailable.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7b0bde98c6c54e67b0aa8b3339fe464d',''),(16985,'{19910} * 100 / {19911} > {$ORACLE.PROCESSES.MAX.WARN}','Oracle: Too many active processes','',0,0,2,0,'Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min)','38471058988c46f4b81af9f77637914a',''),(16986,'{19912} * 100 / {19913} > {$ORACLE.SESSIONS.MAX.WARN}','Oracle: Too many active sessions','',0,0,2,0,'Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min)','4a055da31f09489ea0f03e4582ee4333',''),(16987,'{19914} * 100 / {19915} > {$ORACLE.DB.FILE.MAX.WARN}','Oracle: Too many database files','',0,0,2,0,'The number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafiles limit.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min)','5752d92063f84aaa818bc85b135cd4fd',''),(16988,'{19916} * 100 / {19917} > {$ORACLE.PGA.USE.MAX.WARN}','Oracle: Total PGA inuse is too high','',0,0,2,0,'The total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min)','476001f0f52a45f59942d73c643371c1',''),(16989,'{23481}<>{23482} and length({23483})>0','Oracle: Instance hostname has changed','',0,0,1,0,'Oracle DB Instance hostname has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE})','618a3e3c82dc4ccba82477afdd100a98',''),(16990,'{23484}<>{23485} and length({23486})>0','Oracle: Instance name has changed','',0,0,1,0,'The Oracle DB instance has changed. Ack to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'Oracle: Instance name has changed (new name received: {ITEM.VALUE})','2fe53d1d931e4eb38fef10a3171c1665',''),(16991,'{19922} < {$ORACLE.REDO.MIN.WARN}','Oracle: Number of REDO logs available for switching is too low','',0,0,2,0,'The number of inactive/unused REDOs available for log switching is low (database down risk).','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min)','1348b1e854e64d34b6b00be118f045c3',''),(16993,'{19924} > {$ORACLE.SESSIONS.LOCK.MAX.WARN}','Oracle: Too many locked sessions','',0,0,2,0,'The number of locked sessions exceeds {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min)','9a75f3a039094ca89c2ba7e3fa93b1a8',''),(16994,'{19925} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','Oracle: Too many sessions locked','',0,0,2,0,'The number of locked sessions exceeding {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect the database performance. Therefore, if they are detected, you should first find the most difficult queries from the database point of view and then analyze possible resource leaks.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min)','a8f5ec966f5e4c72baad1380eda4d0a2',''),(16995,'{19926}<{$ORACLE.SHARED.FREE.MIN.WARN}','Oracle: Shared pool free is too low','',0,0,2,0,'The free memory percent of the shared pool has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m)','8facfa98bcd3447ea53d0a3d09ada933',''),(16996,'{19927}<10m','Oracle: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Oracle: {HOST.NAME} has been restarted (uptime < 10m)','431201a1ce0d47948751c7e4e6bbeb92',''),(16997,'{19928}=1','Oracle: Failed to fetch info data','',0,0,2,0,'Zabbix has not received any data for the items for the last 5 minutes. The database might be unavailable for connecting.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Failed to fetch info data (or no data for 5m)','03a4fb1d6e684c9b82c1317699c71468',''),(16998,'{19929} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','Oracle: Zabbix account will expire soon','',0,0,2,0,'The password for Zabbix user in the database expires soon.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days)','a909d8cccacf4470a3e2da88b4e5c3d5',''),(16999,'{23487}<>{23488} and length({23489})>0','Oracle: Version has changed','',0,0,1,0,'The Oracle DB version has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'Oracle: Version has changed (new version value received: {ITEM.VALUE})','a5dd4fe627c44afebdfe7beeefc4ec3d',''),(17000,'{19932}=0','Oracle: LISTENER process is not running','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','eb5e531eb3f142569775349a126d1ab0',''),(17001,'{19933}<2','Archivelog \'{#DEST_NAME}\': Log Archive is not valid','',0,0,4,0,'The trigger will launch if the archive log destination is not in one of these states:\r\n2 - \'DEFERRED\';\r\n3 - \'VALID\'.\"','',NULL,0,0,2,0,'',0,'',0,'',0,'','1202e75015304115a4ccdab027617816',''),(17002,'{19934}>{$ORACLE.ASM.USED.PCT.MAX.WARN}','ASM \'{#DG_NAME}\': Disk group usage is too high','',0,0,2,0,'The usage of the ASM disk group expressed in % exceeds {$ORACLE.ASM.USED.PCT.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'ASM \'{#DG_NAME}\': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m)','d65971e0f3994dfcbcbde145c9866678',''),(17003,'{19935}>{$ORACLE.ASM.USED.PCT.MAX.HIGH}','ASM \'{#DG_NAME}\': Disk group usage is too high','',0,0,4,0,'The usage of the ASM disk group expressed in % exceeds {$ORACLE.ASM.USED.PCT.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'ASM \'{#DG_NAME}\': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m)','756a8b4b04bc4aadab6b4b4cc856ad32',''),(17004,'{19936} = 0 and {19937} = 1','Oracle Database \'{#DBNAME}\': Force logging is deactivated for DB with active Archivelog','',0,0,2,0,'Force Logging mode - it is very important metric for Databases in \'ARCHIVELOG\'. This feature allows to forcibly write all the transactions to the REDO.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9c17e0fdd6fe409e8f298433e58b7445',''),(17005,'{19938}=1','Oracle Database \'{#DBNAME}\': Open status in mount mode','',0,0,2,0,'The Oracle DB is in a mounted state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3620ac4e75644789a2f0245dbb948771',''),(17006,'{23490}<>{23491}','Oracle Database \'{#DBNAME}\': Open status has changed','',0,0,1,0,'The Oracle DB open status has changed. Ack to close manually.','',NULL,0,0,2,0,'',0,'',1,'',0,'Oracle Database \'{#DBNAME}\': Open status has changed (new value received: {ITEM.VALUE})','9bf80a9372ef4b3898fd5a4f0c3cec7c',''),(17007,'{23492}<>{23493}','Oracle Database \'{#DBNAME}\': Role has changed','',0,0,1,0,'The Oracle DB role has changed. Ack to close manually.','',NULL,0,0,2,0,'',0,'',1,'',0,'Oracle Database \'{#DBNAME}\': Role has changed (new value received: {ITEM.VALUE})','fb5ccc917a8344d7945b8867a1982d6b',''),(17008,'{19941}=1','Oracle Database \'{#DBNAME}\': Open status in mount mode','',0,0,2,0,'The Oracle DB is in a mounted state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5f8ed69b2c074a29b9975baf10a2a2f8',''),(17009,'{23494}<>{23495}','Oracle Database \'{#DBNAME}\': Open status has changed','',0,0,1,0,'The Oracle DB open status has changed. Ack to close manually.','',NULL,0,0,2,0,'',0,'',1,'',0,'Oracle Database \'{#DBNAME}\': Open status has changed (new value received: {ITEM.VALUE})','3dbb9379f8024924b197037acfbbdac4',''),(17010,'{19943}=2','Oracle TBS \'{#TABLESPACE}\': Tablespace is OFFLINE','',0,0,2,0,'The tablespace is in the offline state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3c5f54f41f95440aa18ca5316aeb50f6',''),(17011,'{23496}<>{23497}','Oracle TBS \'{#TABLESPACE}\': Tablespace status has changed','',0,0,1,0,'Oracle tablespace status has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace status has changed (new value received: {ITEM.VALUE})','05c2af5a765842a1a70f2f67355db1b3',''),(17014,'{19947} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','Connections sum: Total number of connections is too high','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Connections sum: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m)','1d0903401af64d93ac16761808d672ca',''),(17016,'{19949}=0','PostgreSQL: Service is down','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','48a24a78519d47349200f0b41ceec56a',''),(17017,'{19950} < 600','PostgreSQL: Service has been restarted','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Service has been restarted (uptime={ITEM.LASTVALUE})','5fbabc5f60b74a369a13a260d25cce3c',''),(17018,'{19951} > {$PG.CONFLICTS.MAX.WARN:\"{#DBNAME}\"}','DB {#DBNAME}: Too many recovery conflicts','',0,0,3,0,'The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them.\r\nhttps://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT','',NULL,0,0,2,0,'',0,'',0,'',0,'DB {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:\"{#DBNAME}\"} in 5m)','05ac4216e1a941df8880224ffd38b806',''),(17019,'{19952} > {$PG.DEADLOCKS.MAX.WARN:\"{#DBNAME}\"}','DB {#DBNAME}: Deadlock occurred','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'DB {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:\"{#DBNAME}\"} in 5m)','dd948e3ec19c419e8c9a62ace8d1695f',''),(17023,'{19956} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} or {19957} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read/write request responses are too high','',0,0,2,0,'This trigger might indicate the disk `{#DEVNAME}` saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m)','3ac02c78c65f49bdae63669652236b7b',''),(17024,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {24307}=2 and ({24308}<>{24309})','Interface {#IFNAME}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. It can be triggered if the operations status is down.\r\n2. `{$IFCONTROL:\"{#IFNAME}\"}=1` - a 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.\r\n3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the \'eternal off\' interfaces.)\r\n\r\nWARNING: if closed manually - it will not fire again on the next poll, because of .diff.','',NULL,0,0,2,1,'{24307}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','4b06b63814d34a90abe971abcd97cf83',''),(17035,'{19978} - {19979} * 2 > {$CPU.QUEUE.CRIT.MAX}','CPU queue length is too high','',0,0,2,0,'The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','cc301d844a7b42e79756d1bc74adf307',''),(17042,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {24353}<>2 and ({24354}<>{24355})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:\\\"{#IFNAME}\\\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.\r\n No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24353}=2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','36effba3975c408aba50096464719479',''),(17043,'{20000}>{$VFS.DEV.UTIL.MAX.WARN}','{#DEVNAME}: Disk is overloaded','',0,0,2,0,'The disk appears to be under heavy load','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','c194f813f0c5417aaac56875b955637a',''),(17066,'{31026}>({31027}*{$JMX.HEAP.MEM.USAGE.MAX}/100) and {31027}>0','Memory: Heap memory usage is high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Memory: Heap memory usage more than {$JMX.HEAP.USAGE.MAX}% for {$JMX.HEAP.MEM.USAGE.TIME}','69fda060b5004d12b6af0ba5f73cec6d',''),(17067,'{31028}>({31029}*{$JMX.NONHEAP.MEM.USAGE.MAX}/100) and {31029}>0','Memory: Non-Heap memory usage is high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Memory: Non-Heap memory usage more than {$JMX.NONHEAP.MEM.USAGE.MAX}% for {$JMX.NONHEAP.MEM.USAGE.TIME}','2b4dfda1100d4feeaa66218e57786f38',''),(17075,'{20078}>({20079}*{$JMX.FILE.DESCRIPTORS.MAX}/100)','OperatingSystem: Opened file descriptor count is high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'OperatingSystem: Opened file descriptor count more than {$JMX.FILE.DESCRIPTORS.MAX}% of maximum','726a3b8a6209451b9a6cca63a3195a0c',''),(17076,'{20080}=1','Compilation: {HOST.NAME} uses suboptimal JIT compiler','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','691f051584d74995b757b4be5e3824fe',''),(17077,'{20081}>{$JMX.CPU.LOAD.MAX}','OperatingSystem: Process CPU Load is high','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'OperatingSystem: Process CPU Load more than {$JMX.CPU.LOAD.MAX}% for {$JMX.CPU.LOAD.TIME}','cc6cc7942e434b8589ff28a0b3112fc7',''),(17078,'{20082}=1','Runtime: JVM is not reachable','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','c82c23dc5be34bb68ec8b152b3be367b',''),(17079,'{20083}<>1','Runtime: {HOST.NAME} runs suboptimal VM type','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','560edfbeb7654f1eb7315389f08ef1b3',''),(17080,'{20084} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20085}','MSSQL: Too many physical reads occurring','',0,0,2,0,'If this value makes up even a sizeable minority of the total Page Reads/sec (say, greater than 20% of the total page reads), you may have too many physical reads occurring.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2a58729eb605461b853ec4e855878226',''),(17081,'{20086} > {$MSSQL.PERCENT_COMPILATIONS.MAX}','MSSQL: Percent of adhoc queries running is high','',0,0,2,0,'The lower this value is the better. High values often indicate excessive adhoc querying and should be as low as possible. If excessive adhoc querying is happening, try rewriting the queries as procedures or invoke the queries using sp_executeSQL. When rewriting isn\'t possible, consider using a plan guide or setting the database to parameterization forced mode.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Percent of adhoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% for 15m','c5c1840220cd44fcaa7b47e0d52309bb',''),(17082,'{20087} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX}','MSSQL: Percent of times statement recompiles is high','',0,0,2,0,'This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter\'s value should follow in proportion to “Batch Requests/sec” and “SQL Compilations/sec”.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m','d5bad8ead8704e00bf332032e22ebfdd',''),(17083,'{20088} > 0.001','MSSQL: Number of index and table scans exceeds index searches in the last 15m','',0,0,2,0,'Index searches are preferable to index and table scans. For OLTP applications, optimize for more index searches and less scans (preferably, 1 full scan for every 1000 index searches). Index and table scans are expensive I/O operations.','',NULL,0,0,0,0,'',0,'',0,'',0,'','3c22a74a94d641389b57a6013ddd10cb',''),(17084,'{20089}=0','MSSQL: Service is unavailable','',0,0,5,0,'The TCP port of the MS SQL Server service is currently unavailable.','',NULL,0,0,0,0,'',0,'',0,'',0,'','152af5cc3ce04d4aa8ab255c37aed6c6',''),(17085,'{20090}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{20091}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','0ba64ff53885473ca8dcd333a770a7ed',''),(17086,'{20092}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{20093}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','21afb343688c4c0e8189a7dbc4f441e1',''),(17087,'{20094}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{20095}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','cdbfc8fabf9f45fc95dedba327e30a1d',''),(17088,'{20096}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e4aedbd5e0c64cf48831bf08192e19bf',''),(17089,'{28360} > {$PHP_FPM.QUEUE.WARN.MAX}','PHP-FPM: Queue utilization is high','',0,0,2,0,'The queue for this pool has reached `{$PHP_FPM.QUEUE.WARN.MAX}%` of its maximum capacity. Items in the queue represent the current number of connections that have been initiated on this pool but not yet accepted.','',NULL,0,0,0,0,'',0,'',0,'',0,'PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m)','a11264f0e1174b7fb81b457dad1a745f',''),(17091,'{23252}<>{23253}','PHP-FPM: Manager changed','',0,0,1,0,'The PHP-FPM manager has changed. `Ack` to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'PHP-FPM: Manager changed (new value received: {ITEM.VALUE})','231e0fbfb6e94f34b790576766244602',''),(17092,'{20101}>0','PHP-FPM: Detected slow requests','',0,0,2,0,'The PHP-FPM has detected a slow request. The slow request means that it took more time to execute than expected (defined in the configuration of your pool).','',NULL,0,0,0,0,'',0,'',0,'',0,'','f30147d8e92f48aa8fedc2d28b8d7c70',''),(17094,'{20103}<10m','PHP-FPM: Pool has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'PHP-FPM: Pool has been restarted (uptime < 10m)','c6966a6c3ff0452ab4fd112c9299e624',''),(17095,'{23254}<>{23255} and length({23256})>0','PHP-FPM: Version has changed','',0,0,1,0,'The PHP-FPM version has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'PHP-FPM: Version has changed (new version: {ITEM.VALUE})','fb110a37f0fc4a62b51df72e33bc3448',''),(17097,'{28361} > {$PHP_FPM.QUEUE.WARN.MAX}','PHP-FPM: Queue utilization is high','',0,0,2,0,'The queue for this pool reached {$PHP_FPM.QUEUE.WARN.MAX}% of its maximum capacity. Items in queue represent the current number of connections that have been initiated on this pool, but not yet accepted.','',NULL,0,0,0,0,'',0,'',0,'',0,'PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m)','1ad5018fb19d4a9cb9e627f964bfd627',''),(17098,'{20108}=0 or {20109}=1','PHP-FPM: Service is down','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','5dcc607026d24e63b2f099540a5d8e9b',''),(17099,'{23257}<>{23258}','PHP-FPM: Manager changed','',0,0,1,0,'PHP-FPM manager changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'PHP-FPM: Manager changed (new value received: {ITEM.VALUE})','8cfa50bcea744075954d0a9c8a132330',''),(17100,'{20111}>0','PHP-FPM: Detected slow requests','',0,0,2,0,'PHP-FPM detected slow request. A slow request means that it took more time to execute than expected (defined in the configuration of your pool).','',NULL,0,0,0,0,'',0,'',0,'',0,'','63bd00ee25af4b42a37dad1d742c66c0',''),(17101,'{20112}=1','PHP-FPM: Failed to fetch info data','',0,0,1,0,'Zabbix has not received data for items for the last 30 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'PHP-FPM: Failed to fetch info data (or no data for 30m)','b44815446b3b464f883f4d0e799b020e',''),(17102,'{20113}<10m','PHP-FPM: Pool has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'PHP-FPM: Pool has been restarted (uptime < 10m)','9ed4047bdcd74e649814c5d004ba78c7',''),(17103,'{23259}<>{23260} and length({23261})>0','PHP-FPM: Version has changed','',0,0,1,0,'PHP-FPM version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'PHP-FPM: Version has changed (new version: {ITEM.VALUE})','d6c891de92c34bdba80a2ba88f975271',''),(17113,'{20128}<20M','Lack of available memory on server','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','80b6406fb8474fa9801e9dffb2ccd368',''),(17114,'{20129}<20','{#FSNAME}: Free disk space is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','74a1fc62bfe24b7eabe4e244c70dc384',''),(17115,'{20130}<20','{#FSNAME}: Free inodes is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','6ce467d05e8745409a177799bed34bb3',''),(17116,'{20131}<1024','Configured max number of opened files is too low on {HOST.NAME}','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','00f035b7890d4227a84a942ba5730df3',''),(17117,'{20132}<256','Configured max number of processes is too low on {HOST.NAME}','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0d2417112c1e4ef38a4b763872cbb18b',''),(17118,'{20133}<20M','Lack of available memory on server {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f8fcce1904ab46088fa80433b85f2e83',''),(17119,'{20134}<50','Lack of free swap space on {HOST.NAME}','',0,0,2,0,'It probably means that the systems requires more physical memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a125b6786d55426eb19afe284cee1f76',''),(17120,'{20135}<20','{#FSNAME}: Free disk space is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','01ea8e7f30564586af3b48adb3c930c1',''),(17121,'{20136}<20','{#FSNAME}: Free inodes is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','2b87c38f49b146f1b801319d03a19dc3',''),(17122,'{20137}<20M','Lack of available memory on server','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','005730efb6a94c4a83c4265f42aa8dff',''),(17123,'{20138}<20','{#FSNAME}: Free disk space is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','07153df58e1a4a2bad7bf27a1ddf24a0',''),(17124,'{20139}<20','{#FSNAME}: Free inodes is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','9d7587a6cae149d69e90cdefa024d254',''),(17125,'{20140}<1024','Configured max number of opened files is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','933b14ead0974a9c96d36c833da90ebb',''),(17126,'{20141}<256','Configured max number of processes is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0e89b2e0cad948c0b81bc223d2ed673c',''),(17127,'{20142}<20M','Lack of available memory on server','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c38dfc1b95d1463585d378f60d6a689a',''),(17128,'{20143}<20','{#FSNAME}: Free disk space is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','673dbc5aec474abda3a3b392d31b6c11',''),(17129,'{20144}<20','{#FSNAME}: Free inodes is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','91cccd7935854a47bf4ca184b1d4d09a',''),(17130,'{20145}<1024','Configured max number of opened files is too low on {HOST.NAME}','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','aab96e16dd194d72b9b049ffa8b41b02',''),(17131,'{20146}<256','Configured max number of processes is too low on {HOST.NAME}','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','149b9b77d17543fba253666ccbd6a607',''),(17132,'{20147}<20M','Lack of available memory on server {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','bdf3c729b8bc4a9481c9041e4c1ea624',''),(17133,'{20148}<50','Lack of free swap space on {HOST.NAME}','',0,0,2,0,'It probably means that the systems requires more physical memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'','0efa45d2c8884bc6b4090afc6408198b',''),(17134,'{20149}<20','{#FSNAME}: Free disk space is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','9741c9425c984804ac8fb9a52ef22221',''),(17135,'{20150}<20','{#FSNAME}: Free inodes is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','7802203fd5ba471db2be4f35eda44a0b',''),(17136,'{20151}<256','Configured max number of processes is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2a567bc9d5584dfea986b5b70c89fc65',''),(17137,'{20152}<20M','Lack of available memory on server','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','a0769befcb4e4c649557926824d7dbf3',''),(17138,'{20153}<50','Lack of free swap space','',0,0,2,0,'It probably means that the systems requires more physical memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7be6856162ca445388b13e524f01a3c2',''),(17139,'{20154}<20','{#FSNAME}: Free disk space is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','e93165ebd8d94064836405c8c377bf62',''),(17140,'{20155}<20','{#FSNAME}: Free inodes is less than 20%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','a56d85c866814b5e9273815beafba98c',''),(17141,'{20156}<1.597 or {20156}>2.019','BB +1.8V SM Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','55cc8ccf46954499a9c274ab301dd857',''),(17142,'{20157}<1.646 or {20157}>1.960','BB +1.8V SM Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','55e3dc7d5bd34da0862d724ab5d18bb7',''),(17143,'{20158}<2.876 or {20158}>3.729','BB +3.3V Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','35a0dedd6fb244759a4feca2c1aff961',''),(17144,'{20159}<2.970 or {20159}>3.618','BB +3.3V Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','bd2472feb90f40429fbbcd0bddbdd455',''),(17145,'{20160}<2.876 or {20160}>3.729','BB +3.3V STBY Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c0f82f508d38405d978c746f5c95a178',''),(17146,'{20161}<2.970 or {20161}>3.618','BB +3.3V STBY Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','8f957e674af84229aa2e1ee78bf941a0',''),(17147,'{20162}<4.362 or {20162}>5.663','BB +5.0V Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','dec3da3d68b04f3c9ea16fabe17b8faa',''),(17148,'{20163}<4.483 or {20163}>5.495','BB +5.0V Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e2683b71d36b4ab4ad8a98c964b19118',''),(17149,'{20164}<5 or {20164}>66','BB Ambient Temp Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0adcefe86a99468d9d7f0db2021ec8c9',''),(17150,'{20165}<10 or {20165}>61','BB Ambient Temp Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6630637c02224bacbe3456a388233775',''),(17151,'{20166}=0','Power','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','85722b8734df45d589afd69262a498a4',''),(17152,'{20167}<5 or {20167}>90','Baseboard Temp Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2e1ee68913a34cb78f31d5001f10793d',''),(17153,'{20168}<10 or {20168}>83','Baseboard Temp Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c51b207bcbd041039a1f5a1a7973e262',''),(17154,'{20169}<0.953 or {20169}>1.149','BB +1.05V PCH Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ec813e0d4ccb48d2af680281034a901f',''),(17155,'{20170}<0.985 or {20170}>1.117','BB +1.05V PCH Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2b0db1b054f842a4891162fbe33e50e8',''),(17156,'{20171}<0.683 or {20171}>1.543','BB +1.1V P1 Vccp Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2e18cf768c2b468eae5549a326325c61',''),(17157,'{20172}<0.708 or {20172}>1.501','BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','465d51e2a260431dbc7e8e7d39994274',''),(17158,'{20173}<1.362 or {20173}>1.635','BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','cb2aa635a08c495f9a540c60ce5d1333',''),(17159,'{20174}<1.401 or {20174}>1.589','BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','db42f9fd43f04849a07048f5b5a38a4c',''),(17160,'{20175}<2.982 or {20175}>3.625','BB +3.3V Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9eea7fcd8b574f35aee3e3acb4267f4a',''),(17161,'{20176}<3.067 or {20176}>3.525','BB +3.3V Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','93fd529afb20436f94f9184bb2213335',''),(17162,'{20177}<2.982 or {20177}>3.625','BB +3.3V STBY Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3f5aa41308714b73ab555e36ecbe889e',''),(17163,'{20178}<3.067 or {20178}>3.525','BB +3.3V STBY Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e631b683ce8f4d0ca5f22adb8ae791c7',''),(17164,'{20179}<4.471 or {20179}>5.538','BB +5.0V Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','54f7b55a71b544bf877b283593a2ca32',''),(17165,'{20180}<4.630 or {20180}>5.380','BB +5.0V Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','a1e9f3ba84c54a39a255c682e43e793b',''),(17166,'{20181}<0 or {20181}>48','Front Panel Temp Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b4b5e024b8b44e9eb3238405a0b1d223',''),(17167,'{20182}<5 or {20182}>44','Front Panel Temp Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b7125d20d8664530a78c9b3b56b2f479',''),(17168,'{20183}=0','Power','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','dea67d2c71804d369e9b948922a4e86b',''),(17169,'{20184}<324','System Fan 2 Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','95653ec3aa484822888818ea0fd6261b',''),(17170,'{20185}<378','System Fan 2 Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0a6c1831607a4f059e5325fcc11e34cf',''),(17171,'{20186}<324','System Fan 3 Critical [{ITEM.VALUE}]','',0,0,5,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','dc2255a797ef424ea22f553f8de53061',''),(17172,'{20187}<378','System Fan 3 Non-Critical [{ITEM.VALUE}]','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f1c938c42c6a4933b108da70cb2daf5d',''),(17173,'{20188} * 100 / {20189} > {$ORACLE.PROCESSES.MAX.WARN}','Oracle: Too many active processes','',0,0,2,0,'Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min)','3f265c15b3d042d79b1aa598f7249738',''),(17174,'{20190} * 100 / {20191} > {$ORACLE.SESSIONS.MAX.WARN}','Oracle: Too many active sessions','',0,0,2,0,'Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min)','d9977c48c6e7435eafde4cabc43bb5fc',''),(17175,'{20192} * 100 / {20193} > {$ORACLE.DB.FILE.MAX.WARN}','Oracle: Too many database files','',0,0,2,0,'The number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafiles limit.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min)','362882973d0b45d1a09a687353734032',''),(17176,'{20194} * 100 / {20195} > {$ORACLE.PGA.USE.MAX.WARN}','Oracle: Total PGA inuse is too high','',0,0,2,0,'The total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min)','aecb78fc9a7549f2b8e68325530bcd99',''),(17177,'{23464}<>{23465} and length({23466})>0','Oracle: Instance hostname has changed','',0,0,1,0,'Oracle DB Instance hostname has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE})','346ef7cacf534988892970d699ef4028',''),(17178,'{23467}<>{23468} and length({23469})>0','Oracle: Instance name has changed','',0,0,1,0,'Oracle DB Instance name has changed. Ack to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'Oracle: Instance name has changed (new name received: {ITEM.VALUE})','ed394860378642d5b9f220327ead6766',''),(17179,'{20200}=0','Oracle: Connection to database is unavailable','',0,0,5,0,'Connection to Oracle Database is currently unavailable.','',NULL,0,0,0,0,'',0,'',0,'',0,'','df6b0f5dd50848cc8c2e67947df0a5e1',''),(17180,'{20201} < {$ORACLE.REDO.MIN.WARN}','Oracle: Number of REDO logs available for switching is too low','',0,0,2,0,'The number of inactive/unused REDOs available for log switching is low (database down risk).','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min)','18dba6067a254bdd99a363c3d7b9bdb2',''),(17182,'{20203} > {$ORACLE.SESSIONS.LOCK.MAX.WARN}','Oracle: Too many locked sessions','',0,0,2,0,'The number of locked sessions exceeds {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min)','504e5d964de645679ce448165dadd027',''),(17183,'{20204} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN}','Oracle: Too many sessions locked','',0,0,2,0,'The number of locked sessions exceeding {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect the database performance. Therefore, if they are detected, you should first find the most difficult queries from the database point of view and then analyze possible resource leaks.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min)','5abc07cd48514a0dac90ce946ce6bc3a',''),(17184,'{20205}<{$ORACLE.SHARED.FREE.MIN.WARN}','Oracle: Shared pool free is too low','',0,0,2,0,'The free memory percent of the shared pool has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m)','80dbf89c86764cf09d2c5ec834e8940c',''),(17185,'{20206}=1','Oracle: Failed to fetch info data','',0,0,1,0,'Zabbix has not received any data for the items for the last 5 minutes. The database might be unavailable for connecting.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Failed to fetch info data (or no data for 30m)','bcdaf519783f453e81d7064207f8bd30',''),(17186,'{20207}<10m','Oracle: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Oracle: {HOST.NAME} has been restarted (uptime < 10m)','5eae478e85834eee91b94680d529dcdb',''),(17187,'{20208} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN}','Oracle: Zabbix account will expire soon','',0,0,2,0,'The password for Zabbix user in the database expires soon.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days)','5eaa700c3bb74399ad2d26c382397415',''),(17188,'{23470}<>{23471} and length({23472})>0','Oracle: Version has changed','',0,0,1,0,'The Oracle DB version has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'Oracle: Version has changed (new version value received: {ITEM.VALUE})','4a68bcb6149c4c839e263c949343add8',''),(17189,'{20211}<2','Archivelog \'{#DEST_NAME}\': Log Archive is not valid','',0,0,4,0,'The trigger will launch if the archive log destination is not in one of these states:\r\n2 - \'DEFERRED\';\r\n3 - \'VALID\'.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e2d393c0ff2f420097e19890bcbe215c',''),(17190,'{20212} = 0 and {20213} = 1','Oracle Database \'{#DBNAME}\': Force logging is deactivated for DB with active Archivelog','',0,0,2,0,'Force Logging mode - it is very important metric for Databases in \'ARCHIVELOG\'. This feature allows to forcibly write all the transactions to the REDO.','',NULL,0,0,2,0,'',0,'',0,'',0,'','049473f763d84700b62abf5c914390fe',''),(17191,'{20214}=1','Oracle Database \'{#DBNAME}\': Open status in mount mode','',0,0,2,0,'The Oracle DB is in a mounted state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ef1c57d8f7d34c02bf0b7347d9fddf54',''),(17192,'{23473}<>{23474}','Oracle Database \'{#DBNAME}\': Open status has changed','',0,0,1,0,'The Oracle DB open status has changed. Ack to close manually.','',NULL,0,0,2,0,'',0,'',1,'',0,'Oracle Database \'{#DBNAME}\': Open status has changed (new value received: {ITEM.VALUE})','fb642c2cfeb142409c67a7755d1047cc',''),(17193,'{23475}<>{23476}','Oracle Database \'{#DBNAME}\': Role has changed','',0,0,1,0,'The Oracle DB role has changed. Ack to close manually.','',NULL,0,0,2,0,'',0,'',1,'',0,'Oracle Database \'{#DBNAME}\': Role has changed (new value received: {ITEM.VALUE})','24fef0b751fd4d089eced3c210954b4f',''),(17194,'{20217}>{$ORACLE.ASM.USED.PCT.MAX.WARN}','ASM \'{#DG_NAME}\': Disk group usage is too high','',0,0,2,0,'The usage of the ASM disk group expressed in % exceeds {$ORACLE.ASM.USED.PCT.MAX.WARN}','',NULL,0,0,2,0,'',0,'',0,'',0,'ASM \'{#DG_NAME}\': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m)','af6ff1d099524209b2806b1257e9a8e3',''),(17195,'{20218}>{$ORACLE.ASM.USED.PCT.MAX.HIGH}','ASM \'{#DG_NAME}\': Disk group usage is too high','',0,0,4,0,'The usage of the ASM disk group expressed in % exceeds {$ORACLE.ASM.USED.PCT.MAX.HIGH}','',NULL,0,0,2,0,'',0,'',0,'',0,'ASM \'{#DG_NAME}\': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m)','b8aa1b00e2574e35bf71554cabfffcfc',''),(17196,'{20219}=1','Oracle Database \'{#DBNAME}\': Open status in mount mode','',0,0,2,0,'The Oracle DB is in a mounted state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a6921cc3b42843dcb5624b3bb172f996',''),(17197,'{23477}<>{23478}','Oracle Database \'{#DBNAME}\': Open status has changed','',0,0,1,0,'The Oracle DB open status has changed. Ack to close manually.','',NULL,0,0,2,0,'',0,'',1,'',0,'Oracle Database \'{#DBNAME}\': Open status has changed (new value received: {ITEM.VALUE})','61f48e1d858f4e95a603b32ee1c409dc',''),(17198,'{20221}=2','Oracle TBS \'{#TABLESPACE}\': Tablespace is OFFLINE','',0,0,2,0,'The tablespace is in the offline state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','832f908ca3b84a3c9a030b5d33b96016',''),(17199,'{23479}<>{23480}','Oracle TBS \'{#TABLESPACE}\': Tablespace status has changed','',0,0,1,0,'Oracle tablespace status has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace status has changed (new value received: {ITEM.VALUE})','2e84836974b340b5b916eed08e1fcdf4',''),(17222,'{20285}<10m','Asterisk: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Asterisk: has been restarted (uptime < 10m)','100d38b62c1d4ce298a9fadfbab19e4c',''),(17223,'{20286}=1','Asterisk: Failed to fetch AMI page','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Asterisk: Failed to fetch AMI page (or no data for 30m)','35ca01e504a548db9d4db8be1390d6b9',''),(17224,'{20287}<10m','Asterisk: has been reloaded','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Asterisk: has been reloaded (uptime < 10m)','4e99b65188264ba1aa80e24662f9b3cd',''),(17225,'{25005}<>{25006} and length({25007})>0','Asterisk: Version has changed','',0,0,1,0,'Asterisk version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Asterisk: Version has changed (new version: {ITEM.VALUE})','f1a260626ae6446d89e1e725e14c1098',''),(17226,'{20290}>{$AMI.RESPONSE_TIME.MAX.WARN}','Asterisk: Service response time is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'Asterisk: Service response time is too high (over {$AMI.RESPONSE_TIME.MAX.WARN} for 5m)','dbc74502be01498194003dc1a3d90014',''),(17227,'{20291}=0','Asterisk: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','1fa3370fa93f4d07a2c470f993096554',''),(17229,'{20293}=\"UNKNOWN\" or {20293}=\"UNREACHABLE\"','IAX trunk \"{#OBJECTNAME}\": IAX trunk {#OBJECTNAME} has a state {ITEM.VALUE}','',0,0,3,0,'The IAX trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.','',NULL,0,0,2,0,'',0,'',0,'',0,'','db595245acef4ec9b771c266c14100d2',''),(17231,'{20295}=\"Unavailable\"','PJSIP trunk \"{#OBJECTNAME}\": PJSIP trunk {#OBJECTNAME} has a state Unavailable','',0,0,3,0,'The PJSIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6f31d886d6954b82874d38646b233689',''),(17234,'{20298}=\"UNKNOWN\" or {20298}=\"UNREACHABLE\"','SIP trunk \"{#OBJECTNAME}\": SIP trunk {#OBJECTNAME} has a state {ITEM.VALUE}','',0,0,3,0,'The SIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration.','',NULL,0,0,2,0,'',0,'',0,'',0,'','39cac88e9263470da6e4b1a08f806c58',''),(17240,'{20312}/{20313}*100>80','Getting closer to process limit','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.',0,'Getting closer to process limit (over 80% used)','e15f1c71f77b4c86b8ae71469b2f297e',''),(17243,'{20318}/{20319}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {20320}>0\r\nand {20321}>0','Load average is too high','',0,0,3,0,'The load average per CPU is too high. The system may be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}',0,'Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','813c4c7139a3497dbb6b9b977eb51842',''),(17244,'{20322}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','685db9802cc74b5aab4d9744ca3ee32e',''),(17245,'{20323}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','fd194c5435c74dbdbefb396550497580',''),(17246,'{20324}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','1ddbc55594d540f7b30239a4e87a3b97',''),(17247,'{24316}<>{24317} and length({24318})>0','System name has changed','',0,0,1,0,'The name of the system has changed. `Ack` to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','071532526e8842f8935bf9373a85b7da',''),(17248,'{20327}=0','System time is out of sync','',0,0,2,0,'The host\'s system time is different from Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','350ceb73bee84b21b1f5c559e6697879',''),(17249,'{24319}<>{24320} and length({24321})>0','Operating system description has changed','',0,0,1,0,'The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Ack to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'','fc45ac0cfc7641f2a52b95830df3e880',''),(17250,'{20330}<10m','has been restarted','',0,0,2,0,'The host uptime is less than 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','7b13d56caa094a8d95c0f4e948078366',''),(17251,'{24322}<>{24323}','/etc/passwd has been changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','a49d7ca808c345ec8ef516fdc3b0d5ff',''),(17266,'{20354} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} or {20355} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read/write request responses are too high','',0,0,2,0,'This trigger might indicate the disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m)','af9c4b7070f94999a2a1569de0948822',''),(17267,'{31153}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31154}-{31155})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31156}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match:\r\n 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}`.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than `{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}`;\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','6f3a431ce1774d7e9cec073197f088ca',''),(17268,'{31157}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31158}-{31159})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31160}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match:\r\n 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}`.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than `{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}`;\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','fd163fa0d1b0419797957d80222218bd',''),(17269,'{20364}<{$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,3,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nThe following error messages may be returned as symptoms, even though the free space is available:\r\n - \"No space left on device\";\r\n - \"Disk is full\".','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}%)','6785dec80d674c79a6b4c84a04165e25',''),(17270,'{20365}<{$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,2,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nThe following error messages may be returned as symptoms, even though the free space is available:\r\n - \"No space left on device\";\r\n - \"Disk is full\".','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}%)','8a453a00627c4f1bbf0724dbdf4e760a',''),(17271,'{31014}<0 and {31015}>0\r\nand\r\n({31016}=6 or {31016}=1)\r\nand\r\n({31017}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge (Ack) to close the problem manually.','',NULL,0,0,2,1,'({31014}>0 and {31018}>0) or\r\n({31017}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','6ce7c1f3b54641bb87684f9c5336d1da',''),(17273,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {24332}=2 and ({24333}<>{24334})','Interface {#IFNAME}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. It can be triggered if the operations status is down.\r\n2. `{$IFCONTROL:\"{#IFNAME}\"}=1` - a 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.\r\n3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the \'eternal off\' interfaces.)\r\n\r\nWARNING: if closed manually - it will not fire again on the next poll, because of .diff.','',NULL,0,0,2,1,'{24332}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','acaf449feee44624995b9c3d0673cedc',''),(17283,'{20399} - {20400} * 2 > {$CPU.QUEUE.CRIT.MAX}','CPU queue length is too high','',0,0,2,0,'The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','dfba6b17ab94449181584c8a4410f50f',''),(17285,'{20403}>{$CPU.INTERRUPT.CRIT.MAX}','CPU interrupt time is too high','',0,0,2,0,'\"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%.\"\r\nThe Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','cbcd8d6c2eab4f18be5a40c2128e1b76',''),(17286,'{20404}>{$CPU.PRIV.CRIT.MAX}','CPU privileged time is too high','',0,0,2,0,'The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','150f35f3b43c48eb995a1e8f1211e9b3',''),(17287,'{20405}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','5f1bdb9eb4c44e8a8f33afee709b0667',''),(17288,'{24359}<>{24360} and length({24361})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','2f5aa644755c4d18a3eafc74bde2d3ad',''),(17289,'{20408}=0','System time is out of sync','',0,0,2,0,'The host system time is different from the Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','ed8075fd5332427ca0f9b56d55f4912b',''),(17290,'{20409}<10m','Host has been restarted','',0,0,2,0,'The device uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Host has been restarted (uptime < 10m)','13f9c722d9664d988a97a1c8123ad17a',''),(17291,'{20410}<{$MEM.PAGE_TABLE_CRIT.MIN}','Number of free system page table entries is too low','',0,0,2,0,'The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak.','',NULL,0,0,0,0,'',0,'',0,'',0,'Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','24fd9695799846b3ba812f8ec6148972',''),(17292,'{20411}>{$MEM.PAGE_SEC.CRIT.MAX}','The Memory Pages/sec is too high','',0,0,2,0,'The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','',NULL,0,0,0,0,'',0,'',0,'',0,'The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','655191afccad4673a641808be5500b46',''),(17305,'{31239}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31240}-{31241})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31242}<1d)','{#FSLABEL}({#FSNAME}): Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\nSecond condition should be one of the following:\r\n- The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n- The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSLABEL}({#FSNAME}): Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','d09b152f2b53451b9daec16eadeaa0ee',''),(17306,'{31243}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31244}-{31245})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31246}<1d)','{#FSLABEL}({#FSNAME}): Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\nSecond condition should be one of the following:\r\n- The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n- The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSLABEL}({#FSNAME}): Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','c3e9ee6d771d4047b4351e5870b8ca01',''),(17310,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {24365}<>2 and ({24366}<>{24367})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:\\\"{#IFNAME}\\\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.\r\n No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24365}=2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','d2af1fae64c940f2b2b923e159b836e6',''),(17311,'{20449}>{$VFS.DEV.UTIL.MAX.WARN}','{#DEVNAME}: Disk is overloaded','',0,0,2,0,'The disk appears to be under heavy load','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','6baacd2fab15466ab3b12dcfb7e2980a',''),(17312,'{20450}<>0','\"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME}) is not running','',0,0,3,0,'The service has a state other than \"Running\" for the last three times.','',NULL,0,0,2,0,'',0,'',0,'',0,'\"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','df3247515e2e4b48b2decd8401c11736',''),(17322,'{31261}>{$TEMP_WARN:\"{#SENSOR_INFO}\"}\r\nor\r\n{31262}={$TEMP_WARN_STATUS}','{#SENSOR_INFO}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31263}<{$TEMP_WARN:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SENSOR_INFO}\"}','726afdedb08848bd86ab4161cef29f42',''),(17332,'{31323}>{$TEMP_CRIT:\"{#SENSOR_INFO}\"}\r\nor\r\n{31324}={$TEMP_CRIT_STATUS}','{#SENSOR_INFO}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31325}<{$TEMP_CRIT:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SENSOR_INFO}\"}','61c220a2ae9a4074baf4051214679e77',''),(17333,'{31326}>{$TEMP_WARN:\"{#SENSOR_INFO}\"}\r\nor\r\n{31327}={$TEMP_WARN_STATUS}','{#SENSOR_INFO}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31328}<{$TEMP_WARN:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SENSOR_INFO}\"}','d6f38aebdcde46e688350b40d5cbe85b',''),(17353,'{23182}<>{23183} and length({23184})>0','Ceph: Minimum monitor release version has changed','',0,0,1,0,'A Ceph version has changed. Perform Ack to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'Ceph: Minimum monitor release version has changed (new version: {ITEM.VALUE})','716f166b3943443aba70a4faed882ffb',''),(17354,'{20543}=2','Ceph: Cluster in ERROR state','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','6ab06350bd8b426681f1b8bddde76a13',''),(17355,'{20544}=1','Ceph: Cluster in WARNING state','',0,0,2,0,'','',NULL,0,0,0,1,'{20544}=0',0,'',1,'',0,'','8b6ba1a7ae014e80a5287ffd13b5d8aa',''),(17356,'{20545}=0','Ceph: Can not connect to cluster','',0,0,3,0,'The connection to the Ceph RESTful module is broken (if there is any error presented including *AUTH* and the configuration issues).','',NULL,0,0,0,0,'',0,'',0,'',0,'','9ffc9a5c3d1c47d288c665c8be7d2fbb',''),(17357,'{20546} > {20547}*100','Ceph: OSD osd.{#OSDNAME} is full','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','5d7a028166584c29b959914ce904a713',''),(17358,'{20548} > {20549}*100','Ceph: Ceph OSD osd.{#OSDNAME} is near full','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','cd04e8d542a04bdf89abad7ee4719e75',''),(17359,'{20550} = 0','Ceph: OSD osd.{#OSDNAME} is down','',0,0,3,0,'OSD osd.{#OSDNAME} is marked \"down\" in the *osdmap*.\r\nThe OSD daemon may have been stopped, or peer OSDs may be unable to reach the OSD over the network.','',NULL,0,0,2,0,'',0,'',0,'',0,'','21535bb935b44b3aa073542db3cc7827',''),(17368,'{20566}>{20567}*{20568}/100','Squid: Swap usage is more than high watermark','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Used: {ITEM.LASTVALUE1}',0,'Squid: Swap usage is more than high watermark (>{ITEM.VALUE2}%)','5676f1e02dc7413fb1a34543ccaf1384',''),(17369,'{20569}>{20570}*{20571}/100','Squid: Swap usage is more than low watermark','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Used: {ITEM.LASTVALUE1}',0,'Squid: Swap usage is more than low watermark (>{ITEM.VALUE2}%)','2cf87472ebf74239bb782580448f696c',''),(17370,'{20572}=0','Squid: Port {$SQUID.HTTP.PORT} is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','7e0f0a9e8a9d4f6193946e4f8cd4a2e3',''),(17371,'{20573}<{$SQUID.FILE.DESC.WARN.MIN}','Squid: Squid is running out of file descriptors','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Squid: Squid is running out of file descriptors (<{$SQUID.FILE.DESC.WARN.MIN})','40c41c87e46443f886506da5e580657e',''),(17372,'{20574}<10m','Squid: Squid has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Squid: Squid has been restarted (uptime < 10m)','89efc9400197427fa718395286dd3583',''),(17373,'{23270}<>{23271} and length({23272})>0','Squid: Squid version has been changed','',0,0,1,0,'Squid version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Squid: Version has changed (new version: {ITEM.VALUE})','c5991152d2da4df7ae0d978233c5a859',''),(17390,'{20595} > {$PG.CHECKPOINTS_REQ.MAX.WARN}','PostgreSQL: Required checkpoints occurs too frequently','',0,0,3,0,'Checkpoints are points in the sequence of transactions at which it is guaranteed that the heap and index data files have been updated with all information written before that checkpoint. At checkpoint time, all dirty data pages are flushed to disk and a special checkpoint record is written to the log file.\r\nhttps://www.postgresql.org/docs/current/wal-configuration.html','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Required checkpoints occurs too frequently (over {$PG.CHECKPOINTS_REQ.MAX.WARN})','65e7954489854ad3ad1698dead7c4c02',''),(17391,'{20596} = 1','PostgreSQL: Failed to get items','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Failed to get items (no data for 30m)','768d28b9360b46cda3065f5082ba97ac',''),(17392,'{20597} < {$PG.CACHE_HITRATIO.MIN.WARN}','PostgreSQL: Cache hit ratio too low','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Cache hit ratio too low (under {$PG.CACHE_HITRATIO.MIN.WARN} in 5m)','4d87cc71b40f4b59ad27f30f33b15a69',''),(17393,'{23498}<>{23499} and length({23500})>0','PostgreSQL: Configuration has changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b727cfa6d3de4063b6a2dcb6cc84e27b',''),(17394,'{20600} > {$PG.CONN_TOTAL_PCT.MAX.WARN}','PostgreSQL: Total number of connections is too high','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m)','54ef12b8ff1e4383a3097c71478ceefa',''),(17395,'{20601} > {$PG.PING_TIME.MAX.WARN}','PostgreSQL: Response too long','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Response too long (over {$PG.PING_TIME.MAX.WARN})','e19b5630737b4c63886b5df77a3c748c',''),(17396,'{20602} = 0','PostgreSQL: Service is down','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6d9c2b5353ce4f6baeeb0f254fb7d1e2',''),(17397,'{20603} > {$PG.REPL_LAG.MAX.WARN}','PostgreSQL: Streaming lag with {#MASTER} is too high','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Streaming lag with {#MASTER} is too high (over {$PG.REPL_LAG.MAX.WARN} in 5m)','11831c52e86445498eed42de6a629b65',''),(17398,'{20604}=0','PostgreSQL: Replication is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','aef1e1d2bab540f8ab738b4a3fad863c',''),(17399,'{20605} < 10m','PostgreSQL: Service has been restarted','',0,0,1,0,'PostgreSQL uptime is less than 10 minutes','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Service has been restarted (uptime < 10m)','85565aba402740868a16c0e4639a98fc',''),(17400,'{23501}<>{23502} and length({23503})>0','PostgreSQL: Version has changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'PostgreSQL: Version has changed (new version value received: {ITEM.VALUE})','8111eb42b0e74fffb43da474677ebc2f',''),(17401,'{20608} > {$PG.CONFLICTS.MAX.WARN:\"{#DBNAME}\"}','DB {#DBNAME}: Too many recovery conflicts','',0,0,3,0,'The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them.\r\nhttps://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT','',NULL,0,0,2,0,'',0,'',0,'',0,'DB {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:\"{#DBNAME}\"} in 5m)','3b51f02258bd4e02829f04ca016dd01d',''),(17402,'{20609} > {$PG.DEADLOCKS.MAX.WARN:\"{#DBNAME}\"}','DB {#DBNAME}: Deadlock occurred','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'DB {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:\"{#DBNAME}\"} in 5m)','3bee63fa04d94586937e22aafab9bdd8',''),(17403,'{20610}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:\"{#DBNAME}\"}','DB {#DBNAME}: VACUUM FREEZE is required to prevent wraparound','',0,0,3,0,'Preventing Transaction ID Wraparound Failures\r\nhttps://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND','',NULL,0,0,2,0,'',0,'',0,'',0,'DB {#DBNAME}: VACUUM FREEZE is required to prevent wraparound (frozen XID less than {$PG.FROZENXID_PCT_STOP.MIN.HIGH:\"{#DBNAME}\"} %)','709df9c1e29a4ff68a3de9423ff7ae58',''),(17404,'{20611}>{$PG.LOCKS.MAX.WARN:\"{#DBNAME}\"}','DB {#DBNAME}: Number of locks is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'DB {#DBNAME}: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:\"{#DBNAME}\"} in 5m)','ef7d3c9866df44aa9b378e7f125a34de',''),(17405,'{20612}>{$PG.SLOW_QUERIES.MAX.WARN:\"{#DBNAME}\"}','DB {#DBNAME}: Too many slow queries','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'DB {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:\"{#DBNAME}\"} in 5m)','facc8f6976664da4ad5567d270f0f311',''),(17406,'{20613} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f23c654001384f6e981fd33aeab0af6f',''),(17407,'{20614} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','57f8757b80914c248a35d0899791a48e',''),(17408,'{20615} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e2c692d5d4ca49b688656a1abe6228e5',''),(17409,'{20616} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e163c4af8ff1451a8728e569c5d3c04c',''),(17410,'{23173}<>{23174} and length({23175})>0','Broker {#JMXBROKERNAME}: Version has been changed','',0,0,1,0,'Broker {#JMXBROKERNAME} version has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'Broker {#JMXBROKERNAME}: Version has changed (new version: {ITEM.VALUE})','7902d81681874aa3acf33d90316f9864',''),(17411,'{20619}>{$ACTIVEMQ.MEM.MAX.HIGH:\"{#JMXBROKERNAME}\"}','Broker {#JMXBROKERNAME}: Memory usage is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:\"{#JMXBROKERNAME}\"}%)','e805b8cca9744940affc3bdd234a7587',''),(17412,'{20620}>{$ACTIVEMQ.MEM.MAX.WARN:\"{#JMXBROKERNAME}\"}','Broker {#JMXBROKERNAME}: Memory usage is too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:\"{#JMXBROKERNAME}\"}%)','3e741e339fff422fae67b5333faa1e20',''),(17413,'{20621}>{$ACTIVEMQ.STORE.MAX.HIGH:\"{#JMXBROKERNAME}\"}','Broker {#JMXBROKERNAME}: Storage usage is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.HIGH:\"{#JMXBROKERNAME}\"}%)','2e1c9f92c87f446ebab68ac638c713c5',''),(17414,'{20622}>{$ACTIVEMQ.STORE.MAX.WARN:\"{#JMXBROKERNAME}\"}','Broker {#JMXBROKERNAME}: Storage usage is too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.WARN:\"{#JMXBROKERNAME}\"}%)','271b33edce84439a91d6a253f45e5bf6',''),(17415,'{20623}>{$ACTIVEMQ.TEMP.MAX.HIGH}','Broker {#JMXBROKERNAME}: Temp usage is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:\"{#JMXBROKERNAME}\"}%)','422252a81e3e4261bbd7f331f48c6257',''),(17416,'{20624}>{$ACTIVEMQ.TEMP.MAX.WARN}','Broker {#JMXBROKERNAME}: Temp usage is too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:\"{#JMXBROKERNAME}\"}%)','acb8f6e0762f48c2bd4c03f2a55b2f44',''),(17417,'{20625}<{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:\"{#JMXBROKERNAME}\"}','Broker {#JMXBROKERNAME}: Consumers count is too low','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Consumers count is too low (below {$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:\"{#JMXBROKERNAME}\"} for {$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:\"{#JMXBROKERNAME}\"})','6906f0a1ef804da4a1203ca9d96ab8a0',''),(17419,'{20627}<{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:\"{#JMXBROKERNAME}\"}','Broker {#JMXBROKERNAME}: Producers count is too low','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Producers count is too low (below {$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:\"{#JMXBROKERNAME}\"} for {$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:\"{#JMXBROKERNAME}\"})','2ee6ad72a98143b59d8d1136fffdbe50',''),(17420,'{20628}<10m','Broker {#JMXBROKERNAME}: Broker has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Broker {#JMXBROKERNAME}: Broker has been restarted (uptime < 10m)','6abb3813bb52465aa4a5f4bebfe999c3',''),(17421,'{20629}<{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:\"{#JMXDESTINATIONNAME}\"} and {20630}>{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:\"{#JMXBROKERNAME}\"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{20631}>={$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:\"{#JMXDESTINATIONNAME}\"}',0,'',1,'',0,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count is too low (below {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:\"{#JMXDESTINATIONNAME}\"} for {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:\"{#JMXDESTINATIONNAME}\"})','c366d4b329c0471386566d6795c5787f',''),(17423,'{20634}<{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:\"{#JMXDESTINATIONNAME}\"} and {20635}>{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:\"{#JMXBROKERNAME}\"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{20636}>={$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:\"{#JMXDESTINATIONNAME}\"}',0,'',1,'',0,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count is too low (below {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:\"{#JMXDESTINATIONNAME}\"} for {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:\"{#JMXDESTINATIONNAME}\"})','725d0270554e4fe59d138becfa3e6377',''),(17425,'{20638}>{$ACTIVEMQ.MEM.MAX.HIGH:\"{#JMXDESTINATIONNAME}\"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:\"{#JMXDESTINATIONNAME}\"}%)','197ab32730a84f79ba1b1e827a10e175',''),(17426,'{20639}>{$ACTIVEMQ.MEM.MAX.WARN:\"{#JMXDESTINATIONNAME}\"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:\"{#JMXDESTINATIONNAME}\"}%)','1e4e3a969b434c6d972251f8c9b3f2a7',''),(17428,'{20641} < {$ARANET.BATT.VOLTAGE.MIN.CRIT:\"{#SENSOR_NAME}\"}','{#METRIC}: Critically low battery voltage on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\"','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#METRIC}: Critically low battery voltage on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\" (below {$ARANET.BATT.VOLTAGE.MIN.CRIT:\"{#SENSOR_NAME}\"}{#UNIT} for 5m)','6a931421d804418085e586dfc0e11311',''),(17429,'{20642} < {$ARANET.BATT.VOLTAGE.MIN.WARN:\"{#SENSOR_NAME}\"}','{#METRIC}: Low battery voltage on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\"','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#METRIC}: Low battery voltage on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\" (below {$ARANET.BATT.VOLTAGE.MIN.WARN:\"{#SENSOR_NAME}\"}{#UNIT} for 5m)','d729130760f9418baa40fb9eeb8a3ca4',''),(17430,'{20643} > {$ARANET.CO2.MAX.CRIT:\"{#SENSOR_NAME}\"}','{#METRIC}: Critically high CO2 level on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\"','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#METRIC}: Critically high CO2 level on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\" (over {$ARANET.CO2.MAX.CRIT:\"{#SENSOR_NAME}\"}{#UNIT} for 5m)','9d88ae8357b444728c63844462d25f83',''),(17431,'{20644} > {$ARANET.CO2.MAX.WARN:\"{#SENSOR_NAME}\"}','{#METRIC}: High CO2 level on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\"','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#METRIC}: High CO2 level on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\" (over {$ARANET.CO2.MAX.WARN:\"{#SENSOR_NAME}\"}{#UNIT} for 5m)','cc54c75ee607485981388da0f7f99ea2',''),(17432,'{20645} > {$ARANET.HUMIDITY.MAX.WARN:\"{#SENSOR_NAME}\"}','{#METRIC}: High humidity on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\"','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#METRIC}: High humidity on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\" (over {$ARANET.HUMIDITY.MAX.WARN:\"{#SENSOR_NAME}\"}{#UNIT} for 5m)','9697528bedd64aca9da1e6343182fe0c',''),(17433,'{20646} < {$ARANET.HUMIDITY.MIN.WARN:\"{#SENSOR_NAME}\"}','{#METRIC}: Low humidity on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\"','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#METRIC}: Low humidity on \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\" (below {$ARANET.HUMIDITY.MIN.WARN:\"{#SENSOR_NAME}\"}{#UNIT} for 5m)','85c1be625bc940588671bc43e6ed6a8a',''),(17434,'{20647} > {$ARANET.LAST_UPDATE.MAX.WARN:\"{#SENSOR_NAME}\"}','{#METRIC}: Sensor data \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\" is not updated','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#METRIC}: Sensor data \"[{#GATEWAY_NAME}] {#SENSOR_NAME}\" is not updated (more than {$ARANET.LAST_UPDATE.MAX.WARN:\"{#SENSOR_NAME}\"})','b0aa8bb4e07e47b5824595b824081d75',''),(17435,'{20648}>{20649}','Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','',0,0,2,0,'Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2eb26276a3a24ce4af517ff8740f4566',''),(17436,'{20650}>{$MS.EXCHANGE.DB.FAULTS.WARN}','Information Store [{#INSTANCE}]: Page faults is too high','',0,0,3,0,'Too much page faults stalls for database \"{#INSTANCE}\". This counter should be 0 on production servers.','',NULL,0,0,2,0,'',0,'',0,'',0,'Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME})','07e0dce4546b4d15bfbb34fa2044c319',''),(17437,'{20651}>{$MS.EXCHANGE.LOG.STALLS.WARN}','Information Store [{#INSTANCE}]: Log records stalls is too high','',0,0,3,0,'Stalled log records too high. The average value should be less than 10 threads waiting.','',NULL,0,0,2,0,'',0,'',0,'',0,'Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME})','688cbee95ef2432abc03c81d39049a44',''),(17438,'{20652}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','Database Counters [{#INSTANCE}]: Average read time latency is too high','',0,0,2,0,'Should be less than 20ms on average.','',NULL,0,0,2,0,'',0,'',0,'',0,'Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME})','053583bbe81d4ce0961ee365cee5a802',''),(17439,'{20653}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','Database Counters [{#INSTANCE}]: Average read time latency is too high','',0,0,2,0,'Should be less than 200ms on average.','',NULL,0,0,2,0,'',0,'',0,'',0,'Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME})','4a07a86df67b4aa08e538d4463c2d3df',''),(17440,'{20654}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','',0,0,2,0,'Should be less than 50ms on average.','',NULL,0,0,2,0,'',0,'',0,'',0,'','87cc1ca8b39541e89eb02a1c094892c0',''),(17441,'{20655}>{$MS.EXCHANGE.RPC.WARN}','Information Store [{#INSTANCE}]: RPC Requests latency is too high','',0,0,2,0,'Should be less than 50ms at all times, with spikes less than 100ms.','',NULL,0,0,2,0,'',0,'',0,'',0,'Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME})','b9b2f224082a4ec687d121534402170c',''),(17442,'{20656}>{$MS.EXCHANGE.RPC.COUNT.WARN}','Information Store [{#INSTANCE}]: RPC Requests total count is too high','',0,0,2,0,'Should be below 70 at all times.','',NULL,0,0,2,0,'',0,'',0,'',0,'Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME})','6349d2b6cd13413187b8c77e10fa96a2',''),(17443,'{20657}>{$MS.EXCHANGE.LDAP.WARN}','Domain Controller [{#INSTANCE}]: LDAP read time is too high','',0,0,3,0,'Should be less than 50ms at all times, with spikes less than 100ms.','',NULL,0,0,2,0,'',0,'',0,'',0,'Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','799366198fd04746bf265431c00269ab',''),(17444,'{20658}>{$MS.EXCHANGE.LDAP.WARN}','Domain Controller [{#INSTANCE}]: LDAP search time is too high','',0,0,3,0,'Should be less than 50ms at all times, with spikes less than 100ms.','',NULL,0,0,2,0,'',0,'',0,'',0,'Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','0db1b4e3f149481e8b04fe8b5eafa508',''),(17445,'{20659}>{20660}','Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME}','',0,0,2,0,'Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\\I/O Database Reads (Recovery) Average Latency counter.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9c9732c8d3314c12aecd268aa445e8bc',''),(17446,'{20661}>{$MS.EXCHANGE.DB.FAULTS.WARN}','Information Store [{#INSTANCE}]: Page faults is too high','',0,0,3,0,'Too much page faults stalls for database \"{#INSTANCE}\". This counter should be 0 on production servers.','',NULL,0,0,2,0,'',0,'',0,'',0,'Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME})','c3540ee98c464c3bbcf680e26ce6165a',''),(17447,'{20662}>{$MS.EXCHANGE.LOG.STALLS.WARN}','Information Store [{#INSTANCE}]: Log records stalls is too high','',0,0,3,0,'Stalled log records too high. The average value should be less than 10 threads waiting.','',NULL,0,0,2,0,'',0,'',0,'',0,'Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME})','1e1f575f25d74f7480f9812b54ad8f39',''),(17448,'{20663}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}','Database Counters [{#INSTANCE}]: Average read time latency is too high','',0,0,2,0,'Should be less than 20ms on average.','',NULL,0,0,2,0,'',0,'',0,'',0,'Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME})','85be5ba2d3e847a485c968ac47afc495',''),(17449,'{20664}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}','Database Counters [{#INSTANCE}]: Average read time latency is too high','',0,0,2,0,'Should be less than 200ms on average.','',NULL,0,0,2,0,'',0,'',0,'',0,'Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME})','6a4fe761e26c4b6497106da05dac40fe',''),(17450,'{20665}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN}','Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME}','',0,0,2,0,'Should be less than 50ms on average.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6feb589776294bf0ab31a55af188f1f6',''),(17451,'{20666}>{$MS.EXCHANGE.RPC.WARN}','Information Store [{#INSTANCE}]: RPC Requests latency is too high','',0,0,2,0,'Should be less than 50ms at all times, with spikes less than 100ms.','',NULL,0,0,2,0,'',0,'',0,'',0,'Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME})','42009d7b910743e1803f10b6a918a67b',''),(17452,'{20667}>{$MS.EXCHANGE.RPC.COUNT.WARN}','Information Store [{#INSTANCE}]: RPC Requests total count is too high','',0,0,2,0,'Should be below 70 at all times.','',NULL,0,0,2,0,'',0,'',0,'',0,'Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME})','127241a9e517424687e56eea393b11db',''),(17453,'{20668}>{$MS.EXCHANGE.LDAP.WARN}','Domain Controller [{#INSTANCE}]: LDAP read time is too high','',0,0,3,0,'Should be less than 50ms at all times, with spikes less than 100ms.','',NULL,0,0,2,0,'',0,'',0,'',0,'Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','3d49bb3d2bdd45998938e531dbaafd33',''),(17454,'{20669}>{$MS.EXCHANGE.LDAP.WARN}','Domain Controller [{#INSTANCE}]: LDAP search time is too high','',0,0,3,0,'Should be less than 50ms at all times, with spikes less than 100ms.','',NULL,0,0,2,0,'',0,'',0,'',0,'Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME})','8415fc742e154f9a9455ac9c0cdc85fd',''),(17455,'{20670}/{20671}*100>{$GITLAB.OPEN.FDS.MAX.WARN}','GitLab: Current number of open files is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'GitLab: Current number of open files is too high (over {$GITLAB.OPEN.FDS.MAX.WARN}% for 5m)','4ac37991b2ca4edd9329fff1e752b05b',''),(17456,'{23203}<>{23204} and length({23205})>0','GitLab: Version has changed','',0,0,1,0,'The GitLab version has changed. Perform Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'GitLab: Version has changed (new version: {ITEM.VALUE})','88d7ceb3a683436da666e8802b2d29b5',''),(17457,'{20674}>{$GITLAB.HTTP.FAIL.MAX.WARN}','GitLab: Too many HTTP requests failures','',0,0,2,0,'\"Too many requests failed on GitLab instance with 5xx HTTP code\"','',NULL,0,0,0,0,'',0,'',0,'',0,'GitLab: Too many HTTP requests failures (over {$GITLAB.HTTP.FAIL.MAX.WARN} for 5m)\'','7021e3b0b49a4990a1d8ce356b7ae130',''),(17458,'{20675}=0','GitLab: Liveness check was failed','',0,0,4,0,'The application server is not running or Rails Controllers are deadlocked.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2f1eb8d6c89a4d8cbda0e951d3f6a109',''),(17459,'{20676}=0','GitLab: Gitlab instance is not able to accept traffic','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','11ff325698534dcd8bbaa12c86704069',''),(17460,'{20677}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis cache client exceptions','',0,0,2,0,'\"Too many Redis client exceptions during the requests to Redis instance cache.\"','',NULL,0,0,0,0,'',0,'',0,'',0,'GitLab: Too many Redis cache client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','a7e460f174fd4e16b2358fd3867390b4',''),(17461,'{20678}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis queues client exceptions','',0,0,2,0,'\"Too many Redis client exceptions during the requests to Redis instance queues.\"','',NULL,0,0,0,0,'',0,'',0,'',0,'GitLab: Too many Redis queues client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','36ec79901f324f27992ea68274eedb71',''),(17462,'{20679}>{$GITLAB.REDIS.FAIL.MAX.WARN}','GitLab: Too many Redis shared_state client exceptions','',0,0,2,0,'\"Too many Redis client exceptions during the requests to Redis instance shared_state.\"','',NULL,0,0,0,0,'',0,'',0,'',0,'GitLab: Too many Redis shared_state client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m)','b475d6ecbc564f9b8f7fe9b24bcdf013',''),(17463,'{20680}=1','GitLab: Failed to fetch info data','',0,0,2,0,'Zabbix has not received a metrics data for the last 30 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'GitLab: Failed to fetch info data (or no data for 30m)','e24496a9499447b2bbdf70f85bbf2113',''),(17465,'{20683}>{$GITLAB.PUMA.QUEUE.MAX.WARN}','GitLab: Puma is queueing requests','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'GitLab: Puma is queueing requests (over {$GITLAB.PUMA.QUEUE.MAX.WARN}% for 15m)','356c8dc915d84382b3f8dfe45b901f46',''),(17466,'{20684}/{20685}*100>{$GITLAB.UNICORN.UTILIZATION.MAX.WARN}','GitLab: Unicorn worker utilization is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'GitLab: Unicorn worker utilization is too high (over {$GITLAB.UNICORN.UTILIZATION.MAX.WARN}% for 5m)','731bf8eb456c49739a3fcd7aec24c7d7',''),(17467,'{20686}>{$GITLAB.UNICORN.QUEUE.MAX.WARN}','GitLab: Unicorn is queueing requests','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'GitLab: Unicorn is queueing requests (over {$GITLAB.UNICORN.QUEUE.MAX.WARN}% for 5m)','84142d0996c0420c8b07c7e17d1b9a47',''),(17468,'{20687}>0','NameNode: Cluster has missing blocks','',0,0,3,0,'A missing block is far worse than a corrupt block, because a missing block cannot be recovered by copying a replica.','',NULL,0,0,0,0,'',0,'',0,'',0,'','3b92daaaddb74105a5e57c4b381e3060',''),(17469,'{20688}>0','NameNode: Cluster has DataNodes in Dead state','',0,0,3,0,'The death of a DataNode causes a flurry of network activity, as the NameNode initiates replication of blocks lost on the dead nodes.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b2d1a26791aa4b16865b4410c50c7ceb',''),(17470,'{20689}<{$HADOOP.CAPACITY_REMAINING.MIN.WARN}','NameNode: Cluster capacity remaining is low','',0,0,2,0,'A good practice is to ensure that disk use never exceeds 80 percent capacity.','',NULL,0,0,0,0,'',0,'',0,'',0,'NameNode: Cluster capacity remaining is low (below {$HADOOP.CAPACITY_REMAINING.MIN.WARN}% for 15m)','3104295848c5497085f397b8f3e06ef6',''),(17471,'{20690}=1','NameNode: Failed to fetch NameNode API page','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'NameNode: Failed to fetch NameNode API page (or no data for 30m)','9fac0ae651ab40a08551945eb0a93b68',''),(17472,'{20691}<10m','NameNode: Service has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'NameNode: Service has been restarted (uptime < 10m)','84d866bc0dc3486d9c5dc9beefec8d31',''),(17473,'{20692}>0','NameNode: Cluster has volume failures','',0,0,3,0,'HDFS now allows for disks to fail in place, without affecting DataNode operations, until a threshold value is reached. This is set on each DataNode via the dfs.datanode.failed.volumes.tolerated property; it defaults to 0, meaning that any volume failure will shut down the DataNode; on a production cluster where DataNodes typically have 6, 8, or 12 disks, setting this parameter to 1 or 2 is typically the best practice.','',NULL,0,0,0,0,'',0,'',0,'',0,'','fcf791b6d0594dbb9ddfc3f93bc94825',''),(17474,'{20693}=0','ResourceManager: Cluster has no active NodeManagers','',0,0,4,0,'Cluster is unable to execute any jobs without at least one NodeManager.','',NULL,0,0,0,0,'',0,'',0,'',0,'','eb02a30f45394e4d84d9d7239002ed40',''),(17475,'{20694}>0','ResourceManager: Cluster has unhealthy NodeManagers','',0,0,3,0,'YARN considers any node with disk utilization exceeding the value specified under the property yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage (in yarn-site.xml) to be unhealthy. Ample disk space is critical to ensure uninterrupted operation of a Hadoop cluster, and large numbers of unhealthyNodes (the number to alert on depends on the size of your cluster) should be quickly investigated and resolved.','',NULL,0,0,0,0,'',0,'',0,'',0,'','0f35a0fa7a404559a3df225b906f0653',''),(17476,'{20695}=1','ResourceManager: Failed to fetch ResourceManager API page','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ResourceManager: Failed to fetch ResourceManager API page (or no data for 30m)','7d4d026992344602a199966a8308a571',''),(17477,'{20696}<10m','ResourceManager: Service has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ResourceManager: Service has been restarted (uptime < 10m)','ade7cc30a4184ef89ed896bae56e0b18',''),(17478,'{20697}>{$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN}','NameNode: Service response time is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'NameNode: Service response time is too high (over {$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN} for 5m)','4e4a6ab28fe5492d8fe4e291b8a586dc',''),(17479,'{20698}>{$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN}','ResourceManager: Service response time is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'ResourceManager: Service response time is too high (over {$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN} for 5m)','e8e55f4c7e9e4823927a8c1345d3b941',''),(17480,'{20699}=0','NameNode: Service is unavailable','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','f7e16c4ec91e4c04b13b73ee817c71d7',''),(17481,'{20700}=0','ResourceManager: Service is unavailable','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','a9ac7ede0c004fe18ab9f1fee36ad2b2',''),(17482,'{20701}<>\"Live\"','{#HOSTNAME}: DataNode has state {ITEM.VALUE}.','',0,0,3,0,'The state is different from normal.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9f657289a04041e5bcaa1947f62f607d',''),(17483,'{20702}=1','{#HOSTNAME}: Failed to fetch DataNode API page','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#HOSTNAME}: Failed to fetch DataNode API page (or no data for 30m)','3eccb9daf76f4bde88b424cf6f2d21f6',''),(17484,'{20703}<10m','{#HOSTNAME}: Service has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#HOSTNAME}: Service has been restarted (uptime < 10m)','e40298d300764251abcf93d5df3d9a67',''),(17485,'{20704}<>\"RUNNING\"','{#HOSTNAME}: NodeManager has state {ITEM.VALUE}.','',0,0,3,0,'The state is different from normal.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8752a292093347fcb16d3f06dd97c5c3',''),(17486,'{20705}=1','{#HOSTNAME}: Failed to fetch NodeManager API page','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#HOSTNAME}: Failed to fetch NodeManager API page (or no data for 30m)','6f8a6308d4334dd9bebe7af2fa3fb831',''),(17487,'{20706}<10m','{#HOSTNAME}: Service has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#HOSTNAME}: Service has been restarted (uptime < 10m)','05f3cf8ed34f4a708df508f0e50e119d',''),(17488,'{20707}>0','Kafka: Unclean leader election detected','',0,0,3,0,'Unclean leader elections occur when there is no qualified partition leader among Kafka brokers. If Kafka is configured to allow an unclean leader election, a leader is chosen from the out-of-sync replicas, and any messages that were not synced prior to the loss of the former leader are lost forever. Essentially, unclean leader elections sacrifice consistency for availability.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d984a7834d7846f787ca6649bacebf7b',''),(17489,'{20708} > 0','Kafka: One or more partitions have no leader','',0,0,2,0,'Any partition without an active leader will be completely inaccessible, and both consumers and producers of that partition will be blocked until a leader becomes available.','',NULL,0,0,0,0,'',0,'',0,'',0,'','5eef377125814830be8167d4d74b0d05',''),(17490,'{20709} > 0','Kafka: There are offline log directories','',0,0,2,0,'The offline log directory count metric indicate the number of log directories which are offline (due to a hardware failure for example) so that the broker cannot store incoming messages anymore.','',NULL,0,0,0,0,'',0,'',0,'',0,'','03fa9ceadba34643b4d3baa7be7c6bb7',''),(17491,'{20710}=1','Kafka: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 15 minutes','',NULL,0,0,0,0,'',0,'',0,'',0,'Kafka: Failed to fetch info data (or no data for 15m)','39bfa825d88145d5a687ba07f6b5596e',''),(17492,'{20711}<{$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN}','Kafka: Network processor average idle percent is too low','',0,0,3,0,'The network processor idle ratio metric indicates the percentage of time the network processor are not in use. The lower this number, the more loaded the broker is.','',NULL,0,0,0,0,'',0,'',0,'',0,'Kafka: Network processor average idle percent is too low (under {$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN} for 15m)','91c95d4543ae436d986881e76f090aec',''),(17493,'{20712}<10m','Kafka: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Kafka: has been restarted (uptime < 10m)','b2fa6148a2b24fa6890b4078c235dcd8',''),(17494,'{23225}<>{23226} and length({23227})>0','Kafka: Version has changed','',0,0,1,0,'Kafka version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Kafka: Version has changed (new version: {ITEM.VALUE})','92ecd7eb1eae49d9886ecac7b8f2084a',''),(17495,'{20715}<{$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN}','Kafka: Request handler average idle percent is too low','',0,0,3,0,'The request handler idle ratio metric indicates the percentage of time the request handlers are not in use. The lower this number, the more loaded the broker is.','',NULL,0,0,0,0,'',0,'',0,'',0,'Kafka: Request handler average idle percent is too low (under {$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN} for 15m)','8f070e06520b4b299fcfffa952d318fc',''),(17496,'{20716}>0','Kafka: There are partitions under the min ISR','',0,0,3,0,'The Under min ISR partitions metric displays the number of partitions, where the number of In-Sync Replicas (ISR) is less than the minimum number of in-sync replicas specified. The two most common causes of under-min ISR partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers are falling behind.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b401a90e75cd4a478d4f8b8cc4f15dc2',''),(17497,'{20717}>0','Kafka: There are under replicated partitions','',0,0,3,0,'The Under replicated partitions metric displays the number of partitions that do not have enough replicas to meet the desired replication factor. A partition will also be considered under-replicated if the correct number of replicas exist, but one or more of the replicas have fallen significantly behind the partition leader. The two most common causes of under-replicated partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers have fallen behind.','',NULL,0,0,0,0,'',0,'',0,'',0,'','0ecd8b4b3db6489b83d4a1f78faee03c',''),(17498,'{20718}=0','Kafka: Broker is not connected to ZooKeeper','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','423144ac14694a71b9ab563eacfa840d',''),(17499,'{23275}<>{23276} and length({23277})>0','Tomcat: Version has been changed','',0,0,1,0,'Tomcat version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Tomcat: Version has changed (new version: {ITEM.VALUE})','152d235652914aa2af78334385334214',''),(17500,'{20721} = 1','{#JMXVALUE}: Gzip compression is disabled','',0,0,1,0,'gzip compression is disabled for connector {#JMXVALUE}.','',NULL,0,0,2,0,'',0,'',1,'',0,'','7d707de73a164f1db6b69e4dcb8c6ae9',''),(17501,'{20722}>{20723}*{$TOMCAT.THREADS.MAX.PCT:\"{#JMXNAME}\"}/100','{#JMXNAME}: Busy worker threads count is high','',0,0,4,0,'When current threads busy counter reaches the limit, no more requests could be handled, and the application chokes.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#JMXNAME}: Busy worker threads count are more than {$TOMCAT.THREADS.MAX.PCT:\"{#JMXNAME}\"}% of the limit for {$TOMCAT.THREADS.MAX.TIME:\"{#JMXNAME}\"}','7a15296553a447f6aebf4958631b6704',''),(17502,'{20724}/{20725}*100>{$VAULT.OPEN.FDS.MAX.WARN}','Vault: Current number of open files is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Vault: Current number of open files is too high (over {$VAULT.OPEN.FDS.MAX.WARN}% for 5m)','ebe6f65e82ed4f00bd7c5be30841a25c',''),(17503,'length({20726})>0','Vault: Failed to get metrics','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Vault: Failed to get metrics (error: {ITEM.VALUE})','a43a4139d225461289d16b7a78002cb0',''),(17504,'{20727}=0','Vault: Vault server is not responding','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','93b4ae5089834a87ae41091fc9773501',''),(17505,'{20728}=1','Vault: Vault server is sealed','',0,0,3,0,'https://www.vaultproject.io/docs/concepts/seal','',NULL,0,0,0,0,'',0,'',0,'',0,'','3f4ebf7094914c219ac32132400f90c8',''),(17506,'{23278}<>{23279} and length({23280})>0','Vault: Version has changed','',0,0,1,0,'Vault version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Vault: Version has changed (new version: {ITEM.VALUE})','ee9a561165b847c2a0719a767e5c4fe9',''),(17507,'({20731}-{23029})>{$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN}','Vault: High frequency of leadership setup failures','',0,0,3,0,'There have been more than {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} Vault leadership setup failures in the past 1h.','',NULL,0,0,0,0,'',0,'',0,'',0,'Vault: High frequency of leadership setup failures (over {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} for 1h)','c68ab0c784314291bde1cc8693fd5959',''),(17508,'({20732}-{23030})>{$VAULT.LEADERSHIP.LOSSES.MAX.WARN}','Vault: High frequency of leadership losses','',0,0,3,0,'There have been more than {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} Vault leadership losses in the past 1h.','',NULL,0,0,0,0,'',0,'',0,'',0,'Vault: High frequency of leadership losses (over {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} for 1h)','8d7f4f51272a4ce5a3a7ab9642e51d63',''),(17509,'({20733}-{23031})>{$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN}','Vault: High frequency of leadership step downs','',0,0,3,0,'There have been more than {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} Vault leadership step downs in the past 1h.','',NULL,0,0,0,0,'',0,'',0,'',0,'Vault: High frequency of leadership step downs (over {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} for 1h)','5f2895eb5a94441f858c573584ec8b19',''),(17510,'{20734}<10m','Vault: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Vault: has been restarted (uptime < 10m)','a60eed70ecbc44fa935ec87d83fe4793',''),(17511,'{20735}=1 and {20736}<{$VAULT.TOKEN.TTL.MIN.CRIT}','Vault: Token [{#TOKEN_NAME}] will expire soon','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Vault: Token [{#TOKEN_NAME}] will expire soon (less than {$VAULT.TOKEN.TTL.MIN.CRIT})','f4f0db7e26d9470a86d11e86d1ae26e2',''),(17512,'{20737}=1 and {20738}<{$VAULT.TOKEN.TTL.MIN.WARN}','Vault: Token [{#TOKEN_NAME}] will expire soon','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Vault: Token [{#TOKEN_NAME}] will expire soon (less than {$VAULT.TOKEN.TTL.MIN.WARN})','0e2143a2a46d44778db34ac9af69bbfc',''),(17513,'length({20739})>0','Vault: Token [{#TOKEN_NAME}] lookup error occurred','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','8cd5d903d4e74974a8469554b737ee3d',''),(17515,'{20741}=0','VMware: Hypervisor is down','',0,0,3,0,'The service is unavailable or does not accept ICMP ping.','',NULL,0,0,0,0,'',0,'',1,'',0,'','ab84a61566a5402db59efd40d20714a5',''),(17518,'{20744}=3','VMware: The {$VMWARE.HV.UUID} health is Red','',0,0,4,0,'One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available.','',NULL,0,0,0,0,'',0,'',0,'',0,'','378511e0f1794874a68aef1b43561ee5',''),(17519,'{20745}=2','VMware: The {$VMWARE.HV.UUID} health is Yellow','',0,0,3,0,'One or more components in the appliance might become overloaded soon.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ef6ca4d7033c4c8cb963eb7d493b3c7b',''),(17520,'{20746}<10m','VMware: Hypervisor has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'VMware: Hypervisor has been restarted (uptime < 10m)','01d316b0a8cf4998b344f0c4ef1daa32',''),(17521,'{20747} * 100 / {20748} > {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}','Zookeeper: Too many file descriptors used','',0,0,2,0,'Number of file descriptors used more than {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% of the available number of file descriptors.','',NULL,0,0,0,0,'',0,'',0,'',0,'Zookeeper: Too many file descriptors used (over {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% for 5 min)','53a97045bfd8473899849e429e3e7017',''),(17522,'{20749}>{$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}','Zookeeper: Too many queued requests','',0,0,3,0,'Number of queued requests in the server. This goes up when the server receives more requests than it can process.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zookeeper: Too many queued requests (over {$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}% for 5 min)','ac27f2d8b34546d1bdc6d7ab858c04a1',''),(17523,'{23319}<>{23320} and length({23321})>0','Zookeeper: Server mode has changed','',0,0,1,0,'Zookeeper node state has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zookeeper: Server mode has changed (new mode: {ITEM.VALUE})','494624353875401eaf65f7eb0273ca35',''),(17524,'{20752}=1','Zookeeper: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'Zookeeper: Failed to fetch info data (or no data for 10m)','db35b5c75fc543ef8ffe766a0671fd6d',''),(17526,'{23322}<>{23323} and length({23324})>0','Zookeeper: Version has changed','',0,0,1,0,'Zookeeper version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zookeeper: Version has changed (new version: {ITEM.VALUE})','2a091bcfafe84ea9aee5238ce5e25651',''),(17527,'{20756} < {20757}-1','Zookeeper: Too few active followers','',0,0,3,0,'The number of followers should equal the total size of your ZooKeeper ensemble, minus 1 (the leader is not included in the follower count). If the ensemble fails to maintain quorum, all automatic failover features are suspended.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4b0df830eef84e78a04a6980b627b8d0',''),(17528,'{20758}>{$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}','Zookeeper: Too many pending syncs','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'Zookeeper: Too many pending syncs (over {$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}% for 5 min)','004e26cca4934d1992b3c894f36b5643',''),(17529,'{28393}>{$ZABBIX.PROXY.UTIL.MAX:\"availability manager\"}','Remote Zabbix proxy: Utilization of availability manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28393}<{$ZABBIX.PROXY.UTIL.MIN:\"availability manager\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of availability manager processes over {$ZABBIX.PROXY.UTIL.MAX:\"availability manager\"}%','77e66d2f6b0e48fa8a7ec5dd213eab35',''),(17530,'{28398}>{$ZABBIX.PROXY.UTIL.MAX:\"history poller\"}','Remote Zabbix proxy: Utilization of history poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28398}<{$ZABBIX.PROXY.UTIL.MIN:\"history poller\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of history poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"history poller\"}%','afcd2486a21b42ae97f53353b3642301',''),(17531,'{20761}>75','Remote Zabbix server: Utilization of availability manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{20761}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of availability manager processes over 75%','ae06acfebdb3452b88359f1634c53876',''),(17532,'{20762}>75','Remote Zabbix server: Utilization of history poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{20762}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of history poller processes over 75%','655c59a6151d4ce985a833d9f91efc2a',''),(17533,'{28362}>{$ZABBIX.PROXY.UTIL.MAX:\"availability manager\"}','Zabbix proxy: Utilization of availability manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28362}<{$ZABBIX.PROXY.UTIL.MIN:\"availability manager\"}',0,'',0,'',0,'Zabbix proxy: Utilization of availability manager processes over {$ZABBIX.PROXY.UTIL.MAX:\"availability manager\"}%','5a8375a8eee642f2940ed813ee062336',''),(17534,'{28367}>{$ZABBIX.PROXY.UTIL.MAX:\"history poller\"}','Zabbix proxy: Utilization of history poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28367}<{$ZABBIX.PROXY.UTIL.MIN:\"history poller\"}',0,'',0,'',0,'Zabbix proxy: Utilization of history poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"history poller\"}%','7ee08ecfeafc488583e8e4719b8a1be1',''),(17535,'{20765}>75','Zabbix server: Utilization of availability manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{20765}<65',0,'',0,'',0,'Zabbix server: Utilization of availability manager processes over 75%','048c947b3b0a440b80ad6ebfc1a43f10',''),(17536,'{20766}>75','Zabbix server: Utilization of history poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{20766}<65',0,'',0,'',0,'Zabbix server: Utilization of history poller processes over 75%','9a76cde4aaea4e8eb48f725e9653037b',''),(17539,'{23386}<>{23387} and length({23388})>0','Version has changed','',0,0,1,0,'Cassandra version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Version has changed (new version: {ITEM.VALUE})','855abdc321c74b6baf672c67f6483c1c',''),(17540,'{20771}>{$CASSANDRA.PENDING_TASKS.MAX.WARN}','Many pending tasks','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.WARN} for 15m)','885035b2fc804615a54bf2eaca19beee',''),(17541,'{20772}>{$CASSANDRA.PENDING_TASKS.MAX.HIGH}','Too many pending tasks','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Too many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.HIGH} for 15m)','f6696c41e9d24144a1a95f74c94728ae',''),(17542,'{20773}>0','Too many storage exceptions','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c7980b33dc794a70a116bd12219f66c3',''),(17543,'{20774}=1','Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 15 minutes','',NULL,0,0,0,0,'',0,'',0,'',0,'Failed to fetch info data (or no data for 15m)','bda8e216175044ed829670b6bd272785',''),(17544,'{20775}>0','There are down nodes in cluster','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','42b527f9cf4e444b82575f2ab48926c0',''),(17545,'{20776}>{$ORACLE.TBS.USED.PCT.MAX.HIGH}','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m).','bbc86236064348ee9150dfdd07623061',''),(17546,'{20777}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','ba298d35aaaa4386b4f03914dcf1cb27',''),(17547,'{20778}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','2530cb03fb4e4e728396834f0db89466',''),(17548,'{20779}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m).','451108a2251848ea8719378d5c0abb42',''),(17549,'{20780}>{$ORACLE.TBS.USED.PCT.MAX.HIGH}','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m).','78c293ae7ded42b0b05d50af99762017',''),(17550,'{20781}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','e6f2cb4ade52464b97f5e0f5e05ab61b',''),(17551,'{20782}>{$ORACLE.TBS.USED.PCT.MAX.WARN}','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m).','9469e51bd69e4baba82de4fd4e5eb14c',''),(17552,'{20783}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH}','Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Oracle TBS \'{#TABLESPACE}\': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m).','a8aa7255866d4a5ba71d2f89a1d234fe',''),(17553,'{20784} > 18000000','PostgreSQL: Oldest xid is too big','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2a5c11571d9d46f093ed9081f9d51504',''),(17554,'{20785} > {#THRESHOLD_HI_CRIT}','{#SENSOR_INFO}: Fan speed is above the critical threshold','',0,0,4,0,'This trigger uses fan sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Fan speed is above the critical threshold of {#THRESHOLD_HI_CRIT}rpm for 5m','660fd32236464fd69409099c67478ff5',''),(17555,'{20786} > {#THRESHOLD_HI_WARN}','{#SENSOR_INFO}: Fan speed is above the warning threshold','',0,0,2,0,'This trigger uses fan sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Fan speed is above the warning threshold of {#THRESHOLD_HI_WARN}rpm for 5m','b1131f42627047ca9629693b91d9185e',''),(17556,'{20787} < {#THRESHOLD_LO_CRIT}','{#SENSOR_INFO}: Fan speed is below the critical threshold','',0,0,4,0,'This trigger uses fan sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Fan speed is below the critical threshold of {#THRESHOLD_LO_CRIT}rpm for 5m','0cd8e252a77b4c90a155e57aab963e5e',''),(17557,'{20788} < {#THRESHOLD_LO_WARN}','{#SENSOR_INFO}: Fan speed is below the warning threshold','',0,0,2,0,'This trigger uses fan sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Fan speed is below the warning threshold of {#THRESHOLD_LO_WARN}rpm for 5m','d37c360fea9143bab6ff07699ed4acb1',''),(17558,'{20789} > {#THRESHOLD_HI_CRIT}','{#SENSOR_INFO}: Temperature is above the critical threshold','',0,0,4,0,'This trigger uses temperature sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above the critical threshold of {#THRESHOLD_HI_CRIT}°C for 5m','791d55e21828472e93c97d8fa4f96d26',''),(17559,'{20790} > {#THRESHOLD_HI_WARN}','{#SENSOR_INFO}: Temperature is above the warning threshold','',0,0,2,0,'This trigger uses temperature sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above the warning threshold of {#THRESHOLD_HI_WARN}°C for 5m','c65457a8a6d4427995626ff9ff12e339',''),(17560,'{20791} < {#THRESHOLD_LO_CRIT}','{#SENSOR_INFO}: Temperature is below the critical threshold','',0,0,4,0,'This trigger uses temperature sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is below the critical threshold of {#THRESHOLD_LO_CRIT}°C for 5m','b521cd99d9fb4f6f9d1241ac33c01a86',''),(17561,'{20792} < {#THRESHOLD_LO_WARN}','{#SENSOR_INFO}: Temperature is below the warning threshold','',0,0,2,0,'This trigger uses temperature sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is below the warning threshold of {#THRESHOLD_LO_WARN}°C for 5m','750888bd98fa475dba03591945416b89',''),(17562,'{20793} > {#THRESHOLD_HI_CRIT}','{#SENSOR_INFO}: Voltage is above the critical threshold','',0,0,4,0,'This trigger uses voltage sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Voltage is above the critical threshold of {#THRESHOLD_HI_CRIT}V for 5m','1c78dea0380a4bf68b05c1323a208c3a',''),(17563,'{20794} > {#THRESHOLD_HI_WARN}','{#SENSOR_INFO}: Voltage is above the warning threshold','',0,0,2,0,'This trigger uses voltage sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Voltage is above the warning threshold of {#THRESHOLD_HI_WARN}V for 5m','08b4f59d66ea45eaa95426a27586c4bd',''),(17564,'{20795} < {#THRESHOLD_LO_CRIT}','{#SENSOR_INFO}: Voltage is below the critical threshold','',0,0,4,0,'This trigger uses voltage sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Voltage is below the critical threshold of {#THRESHOLD_LO_CRIT}V for 5m','d2df35a764234716a286a8019e6c9411',''),(17565,'{20796} < {#THRESHOLD_LO_WARN}','{#SENSOR_INFO}: Voltage is below the warning threshold','',0,0,2,0,'This trigger uses voltage sensor values defined in the device.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Voltage is below the warning threshold of {#THRESHOLD_LO_WARN}V for 5m','481908babd3f44b3a73f3e0a628fe6d4',''),(17566,'{20797}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}\r\nor\r\n{20798}={$TEMP_CRIT_STATUS}\r\nor\r\n{20798}={$TEMP_DISASTER_STATUS}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{20799}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','f356f7fbc2de423db3bac09bc4683ae2',''),(17567,'{20800}>{$TEMP_WARN:\"{#SNMPVALUE}\"}\r\nor\r\n{20801}={$TEMP_WARN_STATUS}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{20802}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','2c151dd93b7f4096b9eb6c73c315ffec',''),(17574,'{31302}>{$TEMP_CRIT}\r\nor\r\n{31303}={$TEMP_CRIT_STATUS}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,0,1,'{31304}<{$TEMP_CRIT}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT}','132d3e7a1fab4cc08fcbb12eef4e9494',''),(17575,'{20824}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fe4863fdd4d64e1c977328bd3d0f687f',''),(17576,'{20825}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','4d064e4877474d72b85c9cdfb7b09dad',''),(17577,'{20826}={$LOAD.STATE.CRIT:\"lvd\"} or {20826}={$LOAD.STATE.CRIT:\"fault\"}','Load: Device load in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a88025c5e5a748e3a6dfa01685ba075b',''),(17578,'{20827}={$LOAD.STATE.WARN:\"lvdWarning\"} or {20827}={$LOAD.STATE.WARN:\"override\"}','Load: Device load in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','9ab107b39b874fed83d09e7c1964a699',''),(17579,'{20828}=2','Status: Device has \"arrayCurrentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a2d0ab5150dd4bad8b5ec4f2c6aa13f8',''),(17580,'{20829}=2','Status: Device has \"batterySenseDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','cc6a15f16fd8470a9dcd9a9e01cba61c',''),(17581,'{20830}=2','Status: Device has \"batterySenseOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','55d4726d9b9047c79cf690353d950797',''),(17582,'{20831}=2','Status: Device has \"controllerReset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','7f015198395042219666cde4458d407c',''),(17583,'{20832}=2','Status: Device has \"currentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','48339339e5a7465fbc67266998c9a8fe',''),(17584,'{20833}=2','Status: Device has \"currentMeasurementError\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','c88074037099498c896bb4793e04fea3',''),(17585,'{20834}=2','Status: Device has \"eepromAccessFailure\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','cecd8ee17e5143ffb46495e927750c82',''),(17586,'{20835}=2','Status: Device has \"fp10SupplyOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','4affa15e1c1c42459ea8dd6820d1c008',''),(17587,'{20836}=2','Status: Device has \"heatsinkTempLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','41e4225072a3468696cfb534c65b9736',''),(17588,'{20837}=2','Status: Device has \"heatsinkTempSensorOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5d269997a57d44ceb545e751e8e2d919',''),(17589,'{20838}=2','Status: Device has \"heatsinkTempSensorShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a8342a4e2fff40a7b830086dec303fd9',''),(17590,'{20839}=2','Status: Device has \"hightInputVoltageLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','32e5b7ae81ce4ebea9b05ff7ab411e5a',''),(17591,'{20840}=2','Status: Device has \"inductorTempLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','c10d27c1d9d54b8981a639e7bf0dfc02',''),(17592,'{20841}=2','Status: Device has \"inductorTempSensorOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','9f80959684b34b6498a1634097cd0d22',''),(17593,'{20842}=2','Status: Device has \"inductorTempSensorShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','cc735ddcc98e4c099bb770e2b2a171b5',''),(17594,'{20843}=2','Status: Device has \"loadCurrentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','217935cd6c7547bc95f5af51b3e643d4',''),(17595,'{20844}=2','Status: Device has \"loadLvd\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','cb05261f120240bf944b304ffc4979e6',''),(17596,'{20845}=2','Status: Device has \"logTimeout\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1ed1de932e084ce5ba03747bdd8ca4e5',''),(17597,'{20846}=2','Status: Device has \"mosfetOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8824f80f1ef245508d6d0d660e3cabf1',''),(17598,'{20847}=2','Status: Device has \"p12SupplyOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','59569aaebf32403c9fd310f6b26845b0',''),(17599,'{20848}=2','Status: Device has \"p33SupplyOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','4775d3a7b843455eb404661c070be092',''),(17600,'{20849}=2','Status: Device has \"rtsDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','2015d2b876564ad79699a23fc6b60f07',''),(17601,'{20850}=2','Status: Device has \"rtsShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','cce1eb2bee094a3b9a993ec2d60d182b',''),(17602,'{20851}=2','Status: Device has \"tb5v\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','7a07b757660a4c9a879ac03a94832720',''),(17603,'{20852}=2','Status: Device has \"uncalibrated\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','39205fc6d2cd4888994cccb016b4b2f8',''),(17604,'{20853}=2','Status: Device has \"arrayHvd\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8322f8ca8e2e462a8799dc399f17ba27',''),(17605,'{20854}=2','Status: Device has \"batteryHvd\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6a138cd2af754bb3a22173e8da28b254',''),(17606,'{20855}=2','Status: Device has \"batteryLowVoltageDisconnect\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8e42cf21ec10409da840021bfd26f74c',''),(17607,'{20856}=2','Status: Device has \"customSettingsEdit\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d1112d9828064a879d56626ac6339dbf',''),(17608,'{20857}=2','Status: Device has \"dipSwitchChanged\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','75a67f17a33e41eea34585fade6319ef',''),(17609,'{20858}=2','Status: Device has \"localTempSensorDamaged\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','4502112383524f0499ea13e6f83ce789',''),(17610,'{20859}=2','Status: Device has \"mosfetSShorted\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f1489dc1f8574895bd233b14ce080748',''),(17611,'{20860}=2','Status: Device has \"overcurrent\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','4ea903d3e8644ddaa5309eaa9715b894',''),(17612,'{20861}=2','Status: Device has \"rtsNoLongerValid\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e12a29ec16ea423cb69ca4ce460f201b',''),(17613,'{20862}=2','Status: Device has \"rtsShorted\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','3ec4307bb2c444fc8eca27f9b7a136e2',''),(17614,'{20863}=2','Status: Device has \"slaveTimeout\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','915c00d98e144ee7a9a2d50d0bd474c0',''),(17615,'{20864}=2','Status: Device has \"software\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','9aac314eef594a8d86fd4b88308428e5',''),(17616,'{20865}=2','Status: Device has \"customSettingsEdit\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','93750f768ba94f1bb9302fc17c76faeb',''),(17617,'{20866}=2','Status: Device has \"dipSwitchChanged\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','456e2c36369f4519b2c80bcfe1acb4b0',''),(17618,'{20867}=2','Status: Device has \"externalShortCircuit\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','359df17c40684187b7ae92c8aa0c9624',''),(17619,'{20868}=2','Status: Device has \"highTempDisconnect\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6dadf09064304f4381ad9ed0436e562a',''),(17620,'{20869}=2','Status: Device has \"loadHvd\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','bc41145ae8074290913a47cc3fd11e1e',''),(17621,'{20870}=2','Status: Device has \"mosfetShorted\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8c8a7021928e4bf78b6309574e298876',''),(17622,'{20871}=2','Status: Device has \"overcurrent\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b7d3f05837bd4d788d14f1aaf18b0482',''),(17623,'{20872}=2','Status: Device has \"software\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','801728740c1948b1a751469e6443daab',''),(17624,'({32302}>0 and {32302}<10m) or ({32302}=0 and {32303}<10m)','Status: Device has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Device has been restarted (uptime < 10m)','ca65a39c019046c29a522a6ca93ceb75',''),(17625,'{20874}=1','Status: Failed to fetch data','',0,0,2,0,'Zabbix has not received data for items for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Failed to fetch data (or no data for 5m)','59cbcaaee8304b38a1144b3abf40bd9d',''),(17626,'{20875}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','c74e1d3be1c24bde986bbce068db4bb8',''),(17627,'{20876}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','0c2180ae5deb41adb503e37bf91c34e2',''),(17628,'{20877}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','1ab91d781c734f1eb2b9552f6dee9370',''),(17629,'{20878}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6ec855dc6a5c42a79f1f40e14655418a',''),(17630,'{20879}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','402f73ca5b8d412689a7e715223e890d',''),(17631,'{20880}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','753a0d25832d434186f586f895124f31',''),(17632,'{20881}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','66e1fdfbfa5740dfa8945626f7f8be78',''),(17633,'{20882}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','c9f3d03ce06641eb9b184f511a3a0341',''),(17634,'{20883}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f12fc2c1a7a142a287304c18bafa1181',''),(17635,'{20884}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','adf8cf02aa1e42fa84e1f11ddae4df01',''),(17636,'{20885}={$LOAD.STATE.CRIT:\"lvd\"} or {20885}={$LOAD.STATE.CRIT:\"fault\"}','Load: Device load in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','7a8bf4420b6b48ab8a5bc999eecae760',''),(17637,'{20886}={$LOAD.STATE.WARN:\"lvdWarning\"} or {20886}={$LOAD.STATE.WARN:\"override\"}','Load: Device load in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5152f9cd4ee34be485f3cb0a0f60afd5',''),(17638,'{20887}=2','Status: Device has \"arrayCurrentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','67fd46f034c3486e9af3cabfc5dc8056',''),(17639,'{20888}=2','Status: Device has \"batterySenseDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','31cc0b05b83045de80a7d07f26545010',''),(17640,'{20889}=2','Status: Device has \"batterySenseOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','9e498d21bc7f4ca1937f1628f4b1ea55',''),(17641,'{20890}=2','Status: Device has \"batteryTempOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8a09c7609f9a45cea5b217757a7d2e5e',''),(17642,'{20891}=2','Status: Device has \"controllerReset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b173b8ca12f8464aae6476009b4c89e8',''),(17643,'{20892}=2','Status: Device has \"currentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','cdbac88810ff49caa35771e661d8b312',''),(17644,'{20893}=2','Status: Device has \"currentMeasurementError\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','7758388df28d4540ba393f4423fef00a',''),(17645,'{20894}=2','Status: Device has \"eepromAccessFailure\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a56fef1f61c44ba884ec448b0d306c1d',''),(17646,'{20895}=2','Status: Device has \"fp10SupplyOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fefea5daa03d453c8c5148ddb39997f9',''),(17647,'{20896}=2','Status: Device has \"heatsinkTempLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','c252c82aff2a4ac680965115cb2fab64',''),(17648,'{20897}=2','Status: Device has \"heatsinkTempSensorOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5b93a0a09a62481d8096ec743c2ceaff',''),(17649,'{20898}=2','Status: Device has \"heatsinkTempSensorShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f28e5143a238470ba93c1345c814f87d',''),(17650,'{20899}=2','Status: Device has \"hightInputVoltageLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','75c84ef378984fca854b34a8ef79668c',''),(17651,'{20900}=2','Status: Device has \"loadCurrentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5c1551f7e2be40e0b8b50ed263f8e293',''),(17652,'{20901}=2','Status: Device has \"loadLvd\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','665117c5b9b64ea09a1d661e9c40fc43',''),(17653,'{20902}=2','Status: Device has \"logTimeout\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b89c002c859c419ea748b43d575e9e27',''),(17654,'{20903}=2','Status: Device has \"mosfetOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','17f51e7b248b4e63934e8b529b85b2ef',''),(17655,'{20904}=2','Status: Device has \"p12SupplyOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','75e23772250741d0b1fc1ddff2a72ef6',''),(17656,'{20905}=2','Status: Device has \"p33SupplyOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fc374c9ac9fa4f979fbff9f7c7d83565',''),(17657,'{20906}=2','Status: Device has \"rtsDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fbec2a1fdbe54d8da352471acf67bad1',''),(17658,'{20907}=2','Status: Device has \"rtsShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','915da6e7b1cd410da9a6c68e3b4abd85',''),(17659,'{20908}=2','Status: Device has \"uncalibrated\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e8bf2213a5444e2c9923b6f093d43f75',''),(17660,'{20909}=2','Status: Device has \"arrayHvd\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b2ff69793e124031a79a668b03678fac',''),(17661,'{20910}=2','Status: Device has \"batteryHvd\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a4ca36ccaa9d45ceb79303afef1c49f0',''),(17662,'{20911}=2','Status: Device has \"batteryLowVoltageDisconnect\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f4d1120afb13456b9d45f8795dbc30b7',''),(17663,'{20912}=2','Status: Device has \"customSettingsEdit\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','9e5f2c575945458ea8a39f33cb23b833',''),(17664,'{20913}=2','Status: Device has \"dipSwitchChanged\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fd904f4469324784ac2c469e64069f94',''),(17665,'{20914}=2','Status: Device has \"localTempSensorDamaged\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','62076ce0967049c8bde39f71afcb85d9',''),(17666,'{20915}=2','Status: Device has \"mosfetSShorted\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','ea8487afe1c14bc08f3d9fd7f75d208f',''),(17667,'{20916}=2','Status: Device has \"overcurrent\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b0bb139541ae493bafc40dac9074d898',''),(17668,'{20917}=2','Status: Device has \"p3Fault\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8af94d7ff1a84e18b10122b0e3743d45',''),(17669,'{20918}=2','Status: Device has \"rtsNoLongerValid\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b41cb2e05acb40f59efa50a25f66cd62',''),(17670,'{20919}=2','Status: Device has \"rtsShorted\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d99c3f126c7e480cb4fcc705349eb61d',''),(17671,'{20920}=2','Status: Device has \"slaveTimeout\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','711b28f19cb74c0faeef73263ca1fb8f',''),(17672,'{20921}=2','Status: Device has \"software\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e4a261d750d546c7b5d5067dd9a0ec25',''),(17673,'{20922}=2','Status: Device has \"customSettingsEdit\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','99ab5f0d3014459a8cd7d137d3a1f688',''),(17674,'{20923}=2','Status: Device has \"dipSwitchChanged\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','77752192092f4f1caceef19c3c164b72',''),(17675,'{20924}=2','Status: Device has \"externalShortCircuit\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d2e55501d89844aeb47f7887a11754a9',''),(17676,'{20925}=2','Status: Device has \"highTempDisconnect\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a6548502cfc4406098ba3129af8efcb5',''),(17677,'{20926}=2','Status: Device has \"loadHvd\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6e8f0127bc7b42dea9d867ab174f458c',''),(17678,'{20927}=2','Status: Device has \"mosfetShorted\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','2a303d4712e244a9b051fb1b0247fac5',''),(17679,'{20928}=2','Status: Device has \"overcurrent\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5720e2e15e5f42099fd7de361f62c99a',''),(17680,'{20929}=2','Status: Device has \"p3Fault\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','2f522d50a8124ed2a8af4d7b6417c31c',''),(17681,'{20930}=2','Status: Device has \"software\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e75abe852b9c4e1d91a1f8f83622ef64',''),(17682,'({32304}>0 and {32304}<10m) or ({32304}=0 and {32305}<10m)','Status: Device has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Device has been restarted (uptime < 10m)','dea364bf454746bca6be38d7e0759d06',''),(17683,'{20932}=1','Status: Failed to fetch data','',0,0,2,0,'Zabbix has not received data for items for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Failed to fetch data (or no data for 5m)','16c1444a745a47e59fd22bd1a64baef3',''),(17684,'{20933}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','46eb3a0e80294a4db8324d56337ed712',''),(17685,'{20934}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','c3f3ba5b2cab4481bb62fa8527554e96',''),(17686,'{20935}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','80aaf1de029b4d6eadce9f2a946f6dde',''),(17687,'{20936}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','cf1db336ea124f9a9fd6eb367f93f0e8',''),(17688,'{20937}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','e89cf2b8066840c2876642f0d8db1edd',''),(17689,'{20938}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','8356aba9afb242b09902873a5f0e1d47',''),(17690,'{20939}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','77f130af976c43edb8c823de5cbd57b2',''),(17691,'{20940}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','6c288c8b28db4f8e95c8ad2aa8b838ef',''),(17692,'{20941}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','0362139c66f4464db8c022b9ffce5502',''),(17693,'{20942}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d5439cee53b148ecb4186286c4e93ada',''),(17694,'{20943}={$LOAD.STATE.CRIT:\"lvd\"} or {20943}={$LOAD.STATE.CRIT:\"fault\"}','Load: Device load in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','bbd3a89b012a40daa646ec7113d43e43',''),(17695,'{20944}={$LOAD.STATE.WARN:\"lvdWarning\"} or {20944}={$LOAD.STATE.WARN:\"override\"}','Load: Device load in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8f6967c1b577431c995a3c13f8cdb1c1',''),(17696,'{20945}=2','Status: Device has \"currentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','86220f6cc9164490b6d80be4a249e749',''),(17697,'{20946}=2','Status: Device has \"currentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','69016ea6a1204435b3ddb8de6b8944dc',''),(17698,'{20947}=2','Status: Device has \"heatsinkTempSensorOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','2c02465ea74e4c63ab783d235c8f1a30',''),(17699,'{20948}=2','Status: Device has \"heatsinkTempSensorShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1aa289c68f0b4b44a043281e6df9e462',''),(17700,'{20949}=2','Status: Device has \"highVaCurrentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6d0ce7d6e2cc407ba0f4d989bdd9a141',''),(17701,'{20950}=2','Status: Device has \"mosfetSOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','718a3426363040e1ab82864635444056',''),(17702,'{20951}=2','Status: Device has \"p12VoltageReferenceOff\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','4eb4df0b4cf04a198190312cdb33538f',''),(17703,'{20952}=2','Status: Device has \"rtsDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e2ac890bb16d4e0798b0410f33c8a860',''),(17704,'{20953}=2','Status: Device has \"rtsMiswire\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','3b02b27bd4674ae3b820730cee8e611a',''),(17705,'{20954}=2','Status: Device has \"rtsShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d253c037d5974ee38e888162687b96ef',''),(17706,'{20955}=2','Status: Device has \"sspptHot\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1bea0c0e01314dbaa1cfdfa5a0625755',''),(17707,'{20956}=2','Status: Device has \"systemMiswire\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d28d0e51500a45859ccb6969d9b5493f',''),(17708,'{20957}=2','Status: Device has \"uncalibrated\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','427f75a98d4440a38e40522bccec03bb',''),(17709,'{20958}=2','Status: Device has \"arrayHvd\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','2d8b0bdeb95c49d68771af384d985311',''),(17710,'{20959}=2','Status: Device has \"batteryHvd\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','2e07c5d51691462ca0961d77ea974bd5',''),(17711,'{20960}=2','Status: Device has \"customSettingsEdit\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','65d2cd1ff93f45db9d7f572ee0a8f568',''),(17712,'{20961}=2','Status: Device has \"localTempSensorDamaged\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fe217d10399044d7b1008f0010691e1e',''),(17713,'{20962}=2','Status: Device has \"mosfetSShorted\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fa62f9e4f0f84e278938ba18785a1b5f',''),(17714,'{20963}=2','Status: Device has \"overcurrent\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6f450621a12e46369745b2a0fed018ac',''),(17715,'{20964}=2','Status: Device has \"rtsNoLongerValid\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','7ea38daa41a94ab3a9c1efc34276b17b',''),(17716,'{20965}=2','Status: Device has \"rtsShorted\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','91edc885c3f140cc85bb6085f06e6820',''),(17717,'{20966}=2','Status: Device has \"softwareFault\" array faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','cae74543a0da478d80b9302a2431fe4b',''),(17718,'{20967}=2','Status: Device has \"customSettingsEdit\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d086fbb093344723a4bb5fe928e984ff',''),(17719,'{20968}=2','Status: Device has \"externalShortCircuit\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5743ed062a954330928092fb8574002a',''),(17720,'{20969}=2','Status: Device has \"highTempDisconnect\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','354a1512bca5468585a489dd14fc793d',''),(17721,'{20970}=2','Status: Device has \"loadHvd\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','3640e470580846ac9e1651cba186d0a3',''),(17722,'{20971}=2','Status: Device has \"mosfetShorted\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d3911d64792e4b88b31cb51a405a1a2e',''),(17723,'{20972}=2','Status: Device has \"overcurrent\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d1bfa4177c0844ec9fc2bc7270c09338',''),(17724,'{20973}=2','Status: Device has \"software\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','baaba919b58546f08cdcd1e2791feb27',''),(17725,'{20974}=2','Status: Device has \"unknownLoadFault\" load faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','41e47074c983421a83b1e500d4591188',''),(17726,'({32306}>0 and {32306}<10m) or ({32306}=0 and {32307}<10m)','Status: Device has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Device has been restarted (uptime < 10m)','fd5dcb256d4547da9c432c1b9c01b0ae',''),(17727,'{20976}=1','Status: Failed to fetch data','',0,0,2,0,'Zabbix has not received data for items for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Failed to fetch data (or no data for 5m)','72e6e08faed647a98a027bd25b6a7106',''),(17728,'{20977}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','cc121c44be05440a82d3344c530456e5',''),(17729,'{20978}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','9e0d552b93ae402d98c327420c99d160',''),(17730,'{20979}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','95b600e280b94949b41422eb60def010',''),(17731,'{20980}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','e351922a0a8c4c53972d9477d47af528',''),(17732,'{20981}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','bf4ad2cee8cf41baafa3d81df5fbe4d3',''),(17733,'{20982}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','2aedfef9b8764881a4768e6b32793820',''),(17734,'{20983}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','bec4c7a6a1ab44a4adc8e4286b9a41d9',''),(17735,'{20984}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','c06425d8a0a24b5f80fd0591be61b3f0',''),(17736,'{20985}={$LOAD.STATE.CRIT:\"lvd\"} or {20985}={$LOAD.STATE.CRIT:\"fault\"}','Load: Device load in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','83a1cad652b445a69541208f81b12c23',''),(17737,'{20986}={$LOAD.STATE.WARN:\"lvdWarning\"} or {20986}={$LOAD.STATE.WARN:\"override\"}','Load: Device load in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','bed6bfb29f5d4a3e89b9028b45bfb8b8',''),(17738,'{20987}=2','Status: Device has \"heatsinkTempSensorOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6181b0f6c4cf4febaa86039dae994f30',''),(17739,'{20988}=2','Status: Device has \"heatsinkTempSensorShort\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','ebe250d8faf543429bd5732114f05fd4',''),(17740,'{20989}=2','Status: Device has \"suresineHot\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','ff3ee8e7bd074037a99a56f02dfaff72',''),(17741,'{20990}=2','Status: Device has \"unknownAlarm\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','64c7437f53f74578a85b358f73529322',''),(17742,'{20991}=2','Status: Device has \"customSettingsEdit\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','438d1fb319234de9aaa74fa565e6c661',''),(17743,'{20992}=2','Status: Device has \"dipSwitchChanged\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','174685e8f89f4e21b7275db6be7623b2',''),(17744,'{20993}=2','Status: Device has \"highVoltageDisconnect\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','283d5eb818744b25b4275509b0492bfd',''),(17745,'{20994}=2','Status: Device has \"overcurrent\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a271f6d0e1504e46966da689b91cf1f7',''),(17746,'{20995}=2','Status: Device has \"reset\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','88df087dcb434c5d9980d249f077a661',''),(17747,'{20996}=2','Status: Device has \"software\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','9fa2ec74f9b34f0082d9173f57e1edf6',''),(17748,'{20997}=2','Status: Device has \"suresineHot\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','970e89c852c34a219ad0c1fce357e97a',''),(17749,'{20998}=2','Status: Device has \"unknownFault\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fe023e11a544470cb09db1585d7f1e83',''),(17750,'({32308}>0 and {32308}<10m) or ({32308}=0 and {32309}<10m)','Status: Device has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Device has been restarted (uptime < 10m)','f9404001de4c4c1d8438e0b560977398',''),(17751,'{21000}=1','Status: Failed to fetch data','',0,0,2,0,'Zabbix has not received data for items for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Failed to fetch data (or no data for 5m)','db5506294fd945659eae945014332a62',''),(17752,'{21001}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','4b27f6ecdc674803a883a8a60e3ddce2',''),(17753,'{21002}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','dfbcd455a92d423fbb841f2d6b6293a8',''),(17754,'{21003}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','e0173479978841ec8607430cf2fb356e',''),(17755,'{21004}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','75a433d7ec28440f947a4aaed3aed33d',''),(17756,'{21005}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','ed2b56b78fce47f88b679774640706b5',''),(17757,'{21006}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6f21bda91cc640809f0f4faf04ba86f4',''),(17758,'{21007}=2','Status: Device has \"alarm21Internal\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','62d1ffe8417c4ef9b746d17185d8853b',''),(17759,'{21008}=2','Status: Device has \"arrayCurrentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','367d91fa49c241e795a2b497739c6f01',''),(17760,'{21009}=2','Status: Device has \"batterySense\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1c1baf4eea9e416a98bcf3e12d7ae01f',''),(17761,'{21010}=2','Status: Device has \"batterySenseDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b627e79de7b446d69ee245b07f755405',''),(17762,'{21011}=2','Status: Device has \"controllerWasReset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','73aba1af987843d98542105f2b41c5bd',''),(17763,'{21012}=2','Status: Device has \"currentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','aae5a3441b9e4394a39e7a8c5ce29e0c',''),(17764,'{21013}=2','Status: Device has \"currentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f8e42483b1534ed586252db0c8880aa6',''),(17765,'{21014}=2','Status: Device has \"derateLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','bd32be9b60334cc1b80d2de129f0f1a2',''),(17766,'{21015}=2','Status: Device has \"ee-i2cRetryLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e0886663f4df4ff0965fac33951d4ffc',''),(17767,'{21016}=2','Status: Device has \"ethernetAlarm\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','abfeb2c3c566401b9f30cd28765aacff',''),(17768,'{21017}=2','Status: Device has \"extflashFault\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a0ffdbf5695d4945960df6ea7defa071',''),(17769,'{21018}=2','Status: Device has \"fp12VoltageOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f92ce5a55f0a4a65beca0abb748b7c04',''),(17770,'{21019}=2','Status: Device has \"heatsinkTempSensorOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5bdcd298878a4baf97aab8df338e1123',''),(17771,'{21020}=2','Status: Device has \"heatsinkTempSensorShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','9fe220d99b524db8bbfe5b511ee91fa7',''),(17772,'{21021}=2','Status: Device has \"highArrayVCurrentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','dc8d3f71c60643b7a6a25a9d7452ce60',''),(17773,'{21022}=2','Status: Device has \"highTemperatureCurrentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d279f44217b046c789c865b8b44c9342',''),(17774,'{21023}=2','Status: Device has \"highVoltageDisconnect\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b48d1c04e95c4b89a7240fc2a611a499',''),(17775,'{21024}=2','Status: Device has \"lvd\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','767be108224d43a99ac2568166c9cd33',''),(17776,'{21025}=2','Status: Device has \"maxAdcValueReached\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','107b8a4a63c146fa908f5b7ccc716258',''),(17777,'{21026}=2','Status: Device has \"mosfetSOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5792c3702ab94123891e02ee4c05339f',''),(17778,'{21027}=2','Status: Device has \"p3VoltageOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a115f88a282e41179b569633234f04e2',''),(17779,'{21028}=2','Status: Device has \"p12VoltageOutOfRange\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8a3906ceae5547ca8f9c916ca46e7be8',''),(17780,'{21029}=2','Status: Device has \"rtsDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','49d3fb027a88462aa7f67442a507c051',''),(17781,'{21030}=2','Status: Device has \"rtsMiswire\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','650cf2d3c06f4c55ac90b1dd23ca25d1',''),(17782,'{21031}=2','Status: Device has \"rtsShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','48bb77b135c84d6a9e3792d8385f16da',''),(17783,'{21032}=2','Status: Device has \"slaveControlFault\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','7e363c7cc8ce4104a9c6269c9e94ac26',''),(17784,'{21033}=2','Status: Device has \"software\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e1235a2201a542bb9ac67345c70641e3',''),(17785,'{21034}=2','Status: Device has \"systemMiswire\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','cb5b84c99bcf45459bdc955c8604264b',''),(17786,'{21035}=2','Status: Device has \"uncalibrated\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','72ce41657c1848d897255ad3de77d942',''),(17787,'{21036}=2','Status: Device has \"arrayHvd\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','747a56182a6f4336b720a95b0609013c',''),(17788,'{21037}=2','Status: Device has \"batteryHvd\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e9d7a51b64444e27b28b13ebf38a11c3',''),(17789,'{21038}=2','Status: Device has \"batteryLvd\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b898ac485d094f1cb65020ad5459641b',''),(17790,'{21039}=2','Status: Device has \"blockbusBoot\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','806e83938072453ab66895044907c02d',''),(17791,'{21040}=2','Status: Device has \"chargeSlaveControlTimeout\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f20f87cd6ce3414182cd2088a947ef24',''),(17792,'{21041}=2','Status: Device has \"controllerWasReset\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f4478548ad17400c9cddbf8b27720952',''),(17793,'{21042}=2','Status: Device has \"currentSensorReferenceOutOfRange\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6c9a64ff6f61457daf826e831f51b048',''),(17794,'{21043}=2','Status: Device has \"customSettingsEdit\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','74d39d01841f454e8f72457104a42cb7',''),(17795,'{21044}=2','Status: Device has \"dipSwitchChange\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','12d55fb0398c4fbb87ca948f2e692a38',''),(17796,'{21045}=2','Status: Device has \"eepromRetryLimit\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','25e71e9c3ad945ed9f48945cac45bb56',''),(17797,'{21046}=2','Status: Device has \"fault16Software\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f6fafa09a41a428c87d5ef303071a7f7',''),(17798,'{21047}=2','Status: Device has \"fault17Software\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8f079e7606d14dc2ab6313fdae80bafc',''),(17799,'{21048}=2','Status: Device has \"fault18Software\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','c388f647dd48445d8b8e3eee02ea38fc',''),(17800,'{21049}=2','Status: Device has \"fault19Software\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1466954e09704b3092772f0996f692f4',''),(17801,'{21050}=2','Status: Device has \"fault20Software\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','86595bafc3054fd99343f24bbfdc44e3',''),(17802,'{21051}=2','Status: Device has \"fault21Software\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d269607e330243fe93e2f85c36d38114',''),(17803,'{21052}=2','Status: Device has \"fetShort\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','68d6b95b6b9e42ada5a212a913d1ae43',''),(17804,'{21053}=2','Status: Device has \"fpgaVersion\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','dcb1c2bcc704405c8baae825124e3958',''),(17805,'{21054}=2','Status: Device has \"hscomm\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','351af5c43f984930b4ebdb8690c52e7d',''),(17806,'{21055}=2','Status: Device has \"hscommMaster\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b32067a9b80c4836af4120f9f8e21bbd',''),(17807,'{21056}=2','Status: Device has \"ia-refSlaveModeTimeout\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','bb61ea6f03c94556bf4f333bc050206f',''),(17808,'{21057}=2','Status: Device has \"overcurrent\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','843654df3185400e854c8c1f0229c32c',''),(17809,'{21058}=2','Status: Device has \"powerboardCommunicationFault\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','642f03d6eda346aca835e75088b7067b',''),(17810,'{21059}=2','Status: Device has \"rs232SerialToMeterBridge\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','4d8f0244f8d047bc8730ffc2f02a976d',''),(17811,'{21060}=2','Status: Device has \"rtsDisconnected\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6c125b8f681b47a99f7535292bd0507c',''),(17812,'{21061}=2','Status: Device has \"rtsShorted\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','abad398631f34dac8094e4bcd14e3613',''),(17813,'{21062}=2','Status: Device has \"slave\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6824d221feb042da860248a4b418105c',''),(17814,'{21063}=2','Status: Device has \"softwareFault\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','56adf438e90f410497246b27b6da49f4',''),(17815,'({32310}>0 and {32310}<10m) or ({32310}=0 and {32311}<10m)','Status: Device has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Device has been restarted (uptime < 10m)','5393dee9b39d438a8c1553a0be0fb0f2',''),(17816,'{21065}=1','Status: Failed to fetch data','',0,0,2,0,'Zabbix has not received data for items for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Failed to fetch data (or no data for 5m)','c4f0ea9e18884bc0b546933871017098',''),(17817,'{21066}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','bc117de353304889980c7836603abb0d',''),(17818,'{21067}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','25a8f16d632940c3a2c994a9f2a76851',''),(17819,'{21068}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','db1152c815c84d208be0db3dac63acb4',''),(17820,'{21069}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','9c331fb9a30b4867a3e16acd7e9f8983',''),(17821,'{21070}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','f326b9eb93fe4267bf9f4a07bb578eca',''),(17822,'{21071}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','07fb5dd68c954da3982392dfcb2de0b8',''),(17823,'{21072}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','aca6ef49842d4b3ba543fcf470473a96',''),(17824,'{21073}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','b8673c0802a244d0850730e3fdf5a6dc',''),(17825,'{21074}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6c6371d2476246789d23404e068e5179',''),(17826,'{21075}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','65bdeac02fed4febae857f571319bf37',''),(17827,'{21076}=2','Status: Device has \"batterySense\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b073c972bb64463aaee85c6129fad319',''),(17828,'{21077}=2','Status: Device has \"batterySenseDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','80a2d0a457024c22b39f0fcd45992e1e',''),(17829,'{21078}=2','Status: Device has \"controllerWasReset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','bac1cc54818245f9baa8dc07ddc0f850',''),(17830,'{21079}=2','Status: Device has \"currentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','86c2dfb7b0984eaab02f47c58337f468',''),(17831,'{21080}=2','Status: Device has \"currentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','dd000390277a4e848a3236501817addf',''),(17832,'{21081}=2','Status: Device has \"heatsinkTempSensorOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','650ecb9c06464937a3f797e73a3d756d',''),(17833,'{21082}=2','Status: Device has \"heatsinkTempSensorShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5999a4b6c49a4dabb6350d826b01e646',''),(17834,'{21083}=2','Status: Device has \"highArrayVCurrentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','7331337c7ffb4933bca3982614657912',''),(17835,'{21084}=2','Status: Device has \"highTemperatureCurrentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','82a2e0adba7444c6945666fcb9430808',''),(17836,'{21085}=2','Status: Device has \"highVoltageDisconnect\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b1f6d22d205e449a811da905e679800f',''),(17837,'{21086}=2','Status: Device has \"maxAdcValueReached\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e3ce50b9b696486f945ee5a4c1a7a753',''),(17838,'{21087}=2','Status: Device has \"mosfetSOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1536cf07556b4cddb62186030a4321ca',''),(17839,'{21088}=2','Status: Device has \"p12VoltageReferenceOff\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','136621f032544ea8af5e86a14ec03cb6',''),(17840,'{21089}=2','Status: Device has \"rtsDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','62ecaaf59a984b2999d13540c5220470',''),(17841,'{21090}=2','Status: Device has \"rtsMiswire\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','12037d207b3f413198594877cc7a3862',''),(17842,'{21091}=2','Status: Device has \"rtsShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','330f9dfe6ea34b17bcf4cac2c908d78c',''),(17843,'{21092}=2','Status: Device has \"systemMiswire\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fba13770ff67433489ec95d62b65d4b5',''),(17844,'{21093}=2','Status: Device has \"uncalibrated\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','de6208b4474f4743ad99444fd7eb135d',''),(17845,'{21094}=2','Status: Device has \"arrayHvd\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','2a1b5a65311144d69c03255336f9f15f',''),(17846,'{21095}=2','Status: Device has \"batteryHvd\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f837f0839967493bb0e38b21000f5e9a',''),(17847,'{21096}=2','Status: Device has \"customSettingsEdit\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','05b70b4be5554dd5ac2c65af04d79986',''),(17848,'{21097}=2','Status: Device has \"dipSwitchChange\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','24ecb8842ea84a82b4d05a4e85150c55',''),(17849,'{21098}=2','Status: Device has \"eepromRetryLimit\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','008d82bc793b49afa6cd37d038c837fe',''),(17850,'{21099}=2','Status: Device has \"fetShort\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','71dbbf441c234dcfbf014fc043bf5d3a',''),(17851,'{21100}=2','Status: Device has \"overcurrent\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','c100ec68ddaf40e6964ba2598141daa7',''),(17852,'{21101}=2','Status: Device has \"rtsDisconnected\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','435df7ebe3e047ffada64dcf7e69148a',''),(17853,'{21102}=2','Status: Device has \"rtsShorted\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','88443c84eaa0415db976e7a5d6c1dec4',''),(17854,'{21103}=2','Status: Device has \"slaveControlTimeout\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b19111ec08094dbca30a804011b02ed2',''),(17855,'{21104}=2','Status: Device has \"softwareFault\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','0d90cab800ad4bbcbf880c157a7a9dae',''),(17856,'({32312}>0 and {32312}<10m) or ({32312}=0 and {32313}<10m)','Status: Device has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Device has been restarted (uptime < 10m)','aab5be196ac64dc69883c3109fcd094f',''),(17857,'{21106}=1','Status: Failed to fetch data','',0,0,2,0,'Zabbix has not received data for items for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Failed to fetch data (or no data for 5m)','db9317cb9a6645d2bd8f4760f7579c17',''),(17858,'{21107}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','5ec1c2e4786048fc889a37a12a2f4ad6',''),(17859,'{21108}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','84c059ff133f4f4d8145615c0a98eb50',''),(17860,'{21109}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','11d2b988cfec425c9ffb082e9c78490d',''),(17861,'{21110}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','46122992e8a04c7bb7a8c8037a2da74a',''),(17862,'{21111}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','cf9bb1b6e84d4b03b38f13c1c1d4905c',''),(17863,'{21112}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','d977ded736704d748ca49595f3658b89',''),(17864,'{21113}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','00deb7608b3e4444bd4833f5b8ae5875',''),(17865,'{21114}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','2877138cdfb0448a9a83eb807b5da24a',''),(17866,'{21115}=2','Status: Device has \"batterySense\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','121d47c6bbdd45bca261df2e01ea41c6',''),(17867,'{21116}=2','Status: Device has \"batterySenseDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','fd2d9290144143d39bb5a3cf0a2d261f',''),(17868,'{21117}=2','Status: Device has \"currentLimit\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','83d5b8d52acd4e21ac6d3a9cf05dcd04',''),(17869,'{21118}=2','Status: Device has \"currentOffset\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d9529a4372d848038e6ee561d62e9f22',''),(17870,'{21119}=2','Status: Device has \"diversionLoadNearMax\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5f3983acc1cc417e860c1305b11c15ea',''),(17871,'{21120}=2','Status: Device has \"heatsinkTempSensorOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','878e04df7e7b416bb0d2213b5dbb80e6',''),(17872,'{21121}=2','Status: Device has \"heatsinkTempSensorShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','c642ed9496ce4322809c7142d32929a5',''),(17873,'{21122}=2','Status: Device has \"highVoltageDisconnect\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','532421fe17bf4732a01a6990e34e649a',''),(17874,'{21123}=2','Status: Device has \"loadDisconnectState\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','ae90e8034baf4b21906d56d18bfa4da8',''),(17875,'{21124}=2','Status: Device has \"mosfetSOpen\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8d8b721c6dee40499b29bee44b21589a',''),(17876,'{21125}=2','Status: Device has \"p12VoltageReferenceOff\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8cda8e5773de4583b9baa6a6e542e32c',''),(17877,'{21126}=2','Status: Device has \"rtsDisconnected\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1b6192b8ca364c229b35ba6de89ad56b',''),(17878,'{21127}=2','Status: Device has \"rtsMiswire\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','176de77a142d45a3ac39ea42989e209c',''),(17879,'{21128}=2','Status: Device has \"rtsShorted\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f63029eabc8e498ea7e6336d312ac169',''),(17880,'{21129}=2','Status: Device has \"systemMiswire\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','480b69c1febf45a2971788c2f967c45d',''),(17881,'{21130}=2','Status: Device has \"tristarHot\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','4a287e4086c4458aaa3dc48bbb8ee219',''),(17882,'{21131}=2','Status: Device has \"uncalibrated\" alarm flag','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','de665482d2574730a3a839948dd730ea',''),(17883,'{21132}=2','Status: Device has \"customSettingsEdit\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','514b041aebdd4ddb8ab2d1222c0ef295',''),(17884,'{21133}=2','Status: Device has \"dipSwitchChange\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1a40ce8b87f04ab1b4f30387e9ce2d9d',''),(17885,'{21134}=2','Status: Device has \"externalShort\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','49b120c3933c43b1b7f5c77f7b359997',''),(17886,'{21135}=2','Status: Device has \"highVoltageDisconnect\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','f063b9f717c44ab988db7ac95bfca68f',''),(17887,'{21136}=2','Status: Device has \"mosfetSShorted\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','468716d748f1470cb764ce1af922164d',''),(17888,'{21137}=2','Status: Device has \"overcurrent\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b6f65dfca421490eafff48991cdf1e3b',''),(17889,'{21138}=2','Status: Device has \"reset\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','73561a5765694633b1dc0ef1b1f60fd4',''),(17890,'{21139}=2','Status: Device has \"rtsDisconnected\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d14c7d928f57448390c2b4c588a28c65',''),(17891,'{21140}=2','Status: Device has \"rtsShorted\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d94067598c234968b4929404067eff86',''),(17892,'{21141}=2','Status: Device has \"softwareFault\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','886b18bee7cd4f8eb454973e2d2ae59f',''),(17893,'{21142}=2','Status: Device has \"systemMiswire\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','2e520cdafaaa4eefad5ebea71819c3a6',''),(17894,'{21143}=2','Status: Device has \"tristarHot\" faults flag','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','041be44e639d4d1eadb15230a678e278',''),(17895,'({32314}>0 and {32314}<10m) or ({32314}=0 and {32315}<10m)','Status: Device has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Device has been restarted (uptime < 10m)','f0549419f015448497cd7d15a2bf96fa',''),(17896,'{21145}=1','Status: Failed to fetch data','',0,0,2,0,'Zabbix has not received data for items for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Status: Failed to fetch data (or no data for 5m)','64aa2a79fe854def8e179a4d27790417',''),(17897,'{21146}>{$BATTERY.TEMP.MAX.CRIT}','Temperature: Critically high battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m)','e759b90e2bf44bbb8e5efe5b9e458e40',''),(17898,'{21147}<{$BATTERY.TEMP.MIN.CRIT}','Temperature: Critically low battery temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','e57f335f657d45768509f139d31dcdae',''),(17899,'{21148}>{$BATTERY.TEMP.MAX.WARN}','Temperature: High battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m)','7d1444dba9334e91ad425a6f2ff9fef9',''),(17900,'{21149}<{$BATTERY.TEMP.MIN.WARN}','Temperature: Low battery temperature','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m)','14fe4a22b28c4d08a24da51a54e36e81',''),(17901,'{21150}>{#VOLTAGE.MAX.CRIT}','Battery: Critically high battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m)','156ec13d673b4a8aa02a87b1794cb722',''),(17902,'{21151}<{#VOLTAGE.MIN.CRIT}','Battery: Critically low battery voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m)','5e4400321f4f45b39397c68a4ba54d8e',''),(17903,'{21152}>{#VOLTAGE.MAX.WARN}','Battery: High battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m)','fa6502a4a0214f7f933e982182d21d6b',''),(17904,'{21153}<{#VOLTAGE.MIN.WARN}','Battery: Low battery voltage','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m)','a5275748f4c742ea8ab9efd266901e95',''),(17905,'{21154}={$CHARGE.STATE.CRIT}','Battery: Device charge in critical state','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','da21473ce79c42269cc24d3e470b7d07',''),(17906,'{21155}={$CHARGE.STATE.WARN}','Battery: Device charge in warning state','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','79a592050bc64c018cfa5c7b779fba02',''),(17907,'{21156}={$LOAD.STATE.CRIT:\"lvd\"} or {21156}={$LOAD.STATE.CRIT:\"fault\"}','Load: Device load in critical state','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','9035e0a92d384a3c844b8a4d4ebd1eb9',''),(17908,'{21157}={$LOAD.STATE.WARN:\"lvdWarning\"} or {21157}={$LOAD.STATE.WARN:\"override\"}','Load: Device load in warning state','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','a2d13f97c4bd46bfab8e74a2f2a7df2e',''),(17909,'{31345}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}\r\nor\r\n{31346}={$TEMP_CRIT_STATUS}','#{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31347}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','bead54e2d2f34d45bafb41600e84ac2d',''),(17910,'{31348}>{$TEMP_WARN:\"{#SNMPVALUE}\"}\r\nor\r\n{31349}={$TEMP_WARN_STATUS}','#{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{31350}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','f3444dbde8344a1782449ec4260972d1',''),(17911,'{21164}<0 and\r\n{21165}>0 and\r\n{21166}=2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','81cea5af79844f298849ca5ef6cde4b3',''),(17912,'{21167} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"}s for 15m','d96338f9104a4eb4bc7725a5736c96d0',''),(17913,'{21168} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk write request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}s for 15m)','205acd9a37424bd78618ebdc197f251f',''),(17917,'{21174}<0 and\r\n{21175}>0 and\r\n{21176}=2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','d2629ca744034cf7b92a39d7f847195a',''),(17918,'{21177} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"}s for 15m','32f7d131336348178069bbafbdabcfee',''),(17919,'{21178} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk write request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}s for 15m)','d7116046921d441dba5830140f8bf433',''),(17929,'{24442}>0 and {24443}<>{24444}','NetApp FAS3220: Number of failed disks has changed','',0,0,2,0,'{{ITEM.LASTVALUE2}.regsub(\"(.*)\", \\1)}','',NULL,1,0,0,1,'{24442}=0',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','3e2d95918f364248ae07a2e436a986a0',''),(17930,'{21193}>0 and {21194}={21194}','Node {#NODE.NAME}: Degraded power supplies count is more than zero','',0,0,3,0,'{{ITEM.VALUE2}.regsub(\"(.*)\", \\1)}','',NULL,0,0,2,0,'',0,'',0,'',0,'','64a737bc63b1463eb533d2a187c6b58a',''),(17931,'{21195}>0 and {21196}={21196}','Node {#NODE.NAME}: Failed FAN count is over than zero','',0,0,4,0,'{{ITEM.VALUE2}.regsub(\"(.*)\", \\1)}','',NULL,0,0,2,0,'',0,'',0,'',0,'','36b7326a738e41b7be3e0a478bc9f858',''),(17932,'{21197}=2','Node {#NODE.NAME}: Temperature is over than recommended','',0,0,4,0,'The hardware will shutdown if the temperature exceeds critical thresholds.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e03547e4ede74580909ed57c7f53dac1',''),(17933,'{21198}=0','Node {#NODE.NAME}: Node can not communicate with the cluster','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','0c331366ac9d4398bfc815c3cb241e7c',''),(17934,'{21199}<>1','Node {#NODE.NAME}: NVRAM battery status is not OK','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','567a28dd5b364aea84a43438aee24c5c',''),(17935,'{21200}<10m','Node {#NODE.NAME}: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Node {#NODE.NAME}: {HOST.NAME} has been restarted (uptime < 10m)','6040422dc0b34863a90af558d72956ee',''),(17936,'{21201}>{$CPU.UTIL.CRIT}','Node {#NODE.NAME}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'Node {#NODE.NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','adb98d2d2f13435bbe1897208bb86989',''),(17937,'{21202}<{$FAS3220.FS.AVAIL.MIN.CRIT:\"{#FSNAME}\"} and {$FAS3220.FS.USE.PCT:\"{#FSNAME}\"}=0','{#VSERVER}{#FSNAME}: Disk space is too low','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#VSERVER}{#FSNAME}: Disk space is too low (below {$FAS3220.FS.AVAIL.MIN.CRIT:\"{#FSNAME}\"} for {$FAS3220.FS.TIME:\"{#FSNAME}\"})','6ab014a44ad84966a97125c478b10789',''),(17938,'{21203}>{$FAS3220.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and {$FAS3220.FS.USE.PCT:\"{#FSNAME}\"}=1','{#VSERVER}{#FSNAME}: Disk space is too low','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'{#VSERVER}{#FSNAME}: Disk space is too low (used over {$FAS3220.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}% for {$FAS3220.FS.TIME:\"{#FSNAME}\"})','712d9096c8064ef19005c4989794db45',''),(17939,'{21204}<>1','Node {#NODE.NAME}: Node cannot takeover it\'s HA partner {#PARTNER.NAME}. Reason: {ITEM.VALUE}','',0,0,4,0,'Possible reasons:\r\n unknownReason(2),\r\n disabledByOperator(3),\r\n interconnectOffline(4),\r\n disabledByPartner(5),\r\n takeoverFailed(6),\r\n mailboxIsInDegradedState(7),\r\n partnermailboxIsInUninitialisedState(8),\r\n mailboxVersionMismatch(9),\r\n nvramSizeMismatch(10),\r\n kernelVersionMismatch(11),\r\n partnerIsInBootingStage(12),\r\n diskshelfIsTooHot(13),\r\n partnerIsPerformingRevert(14),\r\n nodeIsPerformingRevert(15),\r\n sametimePartnerIsAlsoTryingToTakeUsOver(16),\r\n alreadyInTakenoverMode(17),\r\n nvramLogUnsynchronized(18),\r\n stateofBackupMailboxIsDoubtful(19).','',NULL,0,0,2,0,'',0,'',0,'',0,'','798e093f3c9941e6a2d7edc24dd22835',''),(17940,'{21205}=1','Node {#NODE.NAME}: HA is not licensed','',0,0,3,0,'The value notConfigured(1) indicates that the HA is not licensed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f4ee8e2a63e8471598b6aad929151404',''),(17941,'{21206}=5','Node {#NODE.NAME}: Node has been taken over','',0,0,4,0,'The thisNodeDead(5) setting indicates that this node has been takenover.','',NULL,0,0,2,0,'',0,'',0,'',0,'','db2c37150e1649fba89898459150ada8',''),(17943,'{21211}<>2 and {21212}=1','Node {#NODE}: port {#IFNAME} ({#TYPE}): Link down','',0,0,3,0,'Link state is not UP and the port status is set \'UP\' by an administrator.','',NULL,0,0,2,0,'',0,'',1,'',0,'','2c7730f4606a4833bc729c108349d7b4',''),(17944,'{21213}<>0 and length({21214})>0','Node {#NODE}: port {#IFNAME} ({#TYPE}): Port is not healthy','',0,0,1,0,'{{ITEM.LASTVALUE2}.regsub(\"(.*)\", \\1)}','',NULL,0,0,2,0,'',0,'',0,'',0,'','a95e60addfe04055bb15138dd9d1f37f',''),(17945,'{21215}>{$TEMP_CRIT:\"Ambient\"}\r\nor\r\n{21216}={$TEMP_CRIT_STATUS}\r\nor\r\n{21216}={$TEMP_DISASTER_STATUS}','{#SENSOR_LOCALE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{21217}<{$TEMP_CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"Ambient\"}','8d659cefdff143bbaff8d6cdc8bbf7a3',''),(17946,'{21218}>{$TEMP_WARN:\"Ambient\"}\r\nor\r\n{21219}={$TEMP_WARN_STATUS}','{#SENSOR_LOCALE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{21220}<{$TEMP_WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:\"Ambient\"}','45ab3beb5a3b4271861330632ff37c55',''),(17947,'{21221}>{$TEMP_CRIT:\"CPU\"}\r\nor\r\n{21222}={$TEMP_CRIT_STATUS}\r\nor\r\n{21222}={$TEMP_DISASTER_STATUS}','{#SENSOR_LOCALE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{21223}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','54c2b7095b7d4550a2d1dbe14990dd0a',''),(17948,'{21224}>{$TEMP_WARN:\"CPU\"}\r\nor\r\n{21225}={$TEMP_WARN_STATUS}','{#SENSOR_LOCALE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{21226}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','eb2182b46c294fa381b35ab31c7ac6d4',''),(17949,'{21227}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:\"{#OBJECTNAME}\"}','IAX trunk \"{#OBJECTNAME}\": Number of the IAX trunk \"{#OBJECTNAME}\" active channels is too high','',0,0,2,0,'The IAX trunk may not be able to process new calls.','',NULL,0,0,2,0,'',0,'',0,'',0,'IAX trunk \"{#OBJECTNAME}\": Number of the IAX trunk \"{#OBJECTNAME}\" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:\"{#OBJECTNAME}\"} for 10m)','e2a6c7a9b6234e2aae20c9aa480f9ef1',''),(17950,'{21228}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:\"{#OBJECTNAME}\"}','PJSIP trunk \"{#OBJECTNAME}\": Number of the PJSIP trunk \"{#OBJECTNAME}\" active channels is too high','',0,0,2,0,'The PJSIP trunk may not be able to process new calls.','',NULL,0,0,2,0,'',0,'',0,'',0,'PJSIP trunk \"{#OBJECTNAME}\": Number of the PJSIP trunk \"{#OBJECTNAME}\" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:\"{#OBJECTNAME}\"} for 10m)','f192d555011c42c28c6a8f52c0388fe1',''),(17951,'{21229}>{$AMI.QUEUE_CALLERS.MAX.WARN:\"{#QUEUE}\"}','\"{#QUEUE}\": Number of callers in the queue \"{#QUEUE}\" is too high','',0,0,2,0,'There is a large number of calls in the queue.','',NULL,0,0,2,0,'',0,'',0,'',0,'\"{#QUEUE}\": Number of callers in the queue \"{#QUEUE}\" is too high (over {$AMI.QUEUE_CALLERS.MAX.WARN:\"{#QUEUE}\"} for 10m)','4f72c6a755be465287f36b8b12d3175b',''),(17952,'{21230}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:\"{#OBJECTNAME}\"}','SIP trunk \"{#OBJECTNAME}\": Number of the SIP trunk \"{#OBJECTNAME}\" active channels is too high','',0,0,2,0,'The SIP trunk may not be able to process new calls.','',NULL,0,0,2,0,'',0,'',0,'',0,'SIP trunk \"{#OBJECTNAME}\": Number of the SIP trunk \"{#OBJECTNAME}\" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:\"{#OBJECTNAME}\"} for 10m)','51820b1326f84f51ba0e561946275133',''),(17953,'{21231}=0 and length({21232})>0','Jenkins: Disk space is too low','',0,0,2,0,'Jenkins disk space monitors are reporting the disk space as less than the configured threshold. The message will reference the first node which fails this check.\r\nHealth check message: {{ITEM.LASTVALUE2}.regsub(\"(.*)\",\\1)}','',NULL,0,0,0,0,'',0,'',0,'',0,'','d79dc9c1dab142d18791172e6df0a4e9',''),(17954,'{21233}=0 and length({21234})>0','Jenkins: One or more Jenkins plugins failed to start','',0,0,1,0,'A failure is typically indicative of a potential issue within the Jenkins installation that will either be solved by explicitly disabling the failing plugin(s) or by resolving the corresponding plugin dependency issues.\r\nHealth check message: {{ITEM.LASTVALUE2}.regsub(\"(.*)\",\\1)}','',NULL,0,0,0,0,'',0,'',1,'',0,'','121e23bd172d447cb975595685495a93',''),(17955,'{21235}=0 and length({21236})>0','Jenkins: Temporary space is too low','',0,0,2,0,'Jenkins temporary space monitors are reporting the temporary space as less than the configured threshold. The message will reference the first node which fails this check.\r\nHealth check message: {{ITEM.LASTVALUE2}.regsub(\"(.*)\",\\1)}','',NULL,0,0,0,0,'',0,'',0,'',0,'','34de8503a2c84fffb1beb701a4a991ab',''),(17956,'{21237}=0 and length({21238})>0','Jenkins: There are deadlocked threads in Jenkins master JVM','',0,0,2,0,'There are any deadlocked threads in the Jenkins master JVM.\r\nHealth check message: {{ITEM.LASTVALUE2}.regsub(\'(.*)\',\\1)}','',NULL,0,0,0,0,'',0,'',0,'',0,'','f0a09eb0743948bb8f52a4c28aa728c5',''),(17957,'{21239}>{$JENKINS.FILE_DESCRIPTORS.MAX.WARN}','Jenkins: Current number of used files is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Jenkins: Current number of used files is too high (over {$JENKINS.FILE_DESCRIPTORS.MAX.WARN}% for 5m)','5ec22ac264d445769039bd4c13e41bf7',''),(17958,'{21240}=0','Jenkins: Service has no online nodes','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','4cee7d0f5faf4595a67c6c0e33153f4d',''),(17959,'{21241}=0','Jenkins: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','ae12ac7aa5c54858a794eb8fc888f90c',''),(17960,'{21242}<10m','Jenkins: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Jenkins: has been restarted (uptime < 10m)','7d20942598a648ebb2e03f9acdb3e5e3',''),(17961,'{23222}<>{23223} and length({23224})>0','Jenkins: Version has changed','',0,0,1,0,'Jenkins version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Jenkins: Version has changed (new version: {ITEM.VALUE})','3dd66b51ed1b4fc2a250daf3e9999e4f',''),(17962,'{21245}=1 and length({21246})>0','Jenkins: Computer [{#DISPLAY_NAME}]: Node is down','',0,0,3,0,'Node down with reason: {{ITEM.LASTVALUE2}.regsub(\"(.*)\",\\1)}','',NULL,0,0,2,0,'',0,'',0,'',0,'','a2347420d1f14fd2b55cbb0865282268',''),(17963,'{21247}=1 and length({21248})>0','Jenkins: Computer [{#DISPLAY_NAME}]: Node is temporarily offline','',0,0,1,0,'Node is temporarily Offline with reason: {{ITEM.LASTVALUE2}.regsub(\"(.*)\",\\1)}','',NULL,0,0,2,0,'',0,'',1,'',0,'','bf04115784bc48ffa27d5d2d65176853',''),(17964,'{21249}<{$JENKINS.JOB.HEALTH.SCORE.MIN.WARN}','Jenkins job [{#NAME}]: Job is unhealthy','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','c440cd7d92884c9594c8616f1ac99d74',''),(17965,'{21250}=1 or\r\n{21251}=1 or\r\n{21252}=1','Hikvision camera: Authorisation error','',0,0,2,0,'Check the correctness of the authorization data','',NULL,0,0,0,0,'',0,'',1,'',0,'','2bd6d99edd0f4b2d8045e43e4586b637',''),(17966,'{21253}=2 or\r\n{21254}=2 or\r\n{21255}=2','Hikvision camera: Error receiving data','',0,0,2,0,'Check the availability of the HTTP port','',NULL,0,0,0,0,'',0,'',1,'',0,'','58b5d210fe24434b9aaa365fba764742',''),(17967,'{21256}>{$CPU.UTIL.CRIT}','Hikvision camera: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'Hikvision camera: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0ae4dbcc05544fb7b67183fcf3b9654b',''),(17968,'{23325}<>{23326} and length({23327})>0','Hikvision camera: Version has changed','',0,0,1,0,'Hikvision camera version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Hikvision camera: Version has changed (new version: {ITEM.VALUE})','3c0b5a0046894a54803cd984cda13fa2',''),(17970,'{23328}<>{23329} and length({23330})>0','Hikvision camera: Camera has been replaced','',0,0,1,0,'Camera serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Hikvision camera: Camera has been replaced (new serial number received)','281999cbd6324aacbbb86b4945000c60',''),(17971,'{21262}<10m','Hikvision camera: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Hikvision camera: has been restarted (uptime < 10m)','f46b43fe9b354990929e7fdb80b792ec',''),(17972,'{23331}<>{23332} or \r\n{23333}<>{23334} or \r\n{23335}<>{23336}','Channel \"{#PTZ_CHANNEL_ID}\": PTZ position changed','',0,0,1,0,'The direction of the camera has changed','',NULL,0,0,2,0,'',0,'',1,'',0,'','dbf391b5e18b4e018d889e460b7acc74',''),(17973,'{21266}=1','Hikvision camera: Authorisation error on get PTZ channels','',0,0,2,0,'Check the correctness of the authorization data','',NULL,0,0,2,0,'',0,'',1,'',0,'','7ce39ff8b5f14fcbb7b575f9c44a9efd',''),(17974,'{21267}=2','Hikvision camera: Error receiving data on PTZ channels','',0,0,2,0,'Check the availability of the HTTP port','',NULL,0,0,2,0,'',0,'',1,'',0,'','c702b7321b664f5d950b0d879bbd7371',''),(17975,'{21268}<>{$HIKVISION_STREAM_HEIGHT} or\r\n{21269}<>{$HIKVISION_STREAM_WIDTH}','Channel \"{#CHANNEL_ID}\": Invalid video stream resolution parameters','',0,0,2,0,'expected: {$HIKVISION_STREAM_WIDTH} px x {$HIKVISION_STREAM_HEIGHT} px\r\nreceived: {ITEM.LASTVALUE2} x {ITEM.LASTVALUE1}','',NULL,0,0,2,0,'',0,'',1,'',0,'','16cf4d23b3c8410586703efca81ebe52',''),(17976,'{23337}<>{23338} or\r\n{23339}<>{23340} or\r\n{23341}<>{23342} or\r\n{23343}<>{23344} or\r\n{23345}<>{23346}','Channel \"{#CHANNEL_ID}\": Parameters of video stream are changed','',0,0,1,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','4f2a512d8f95414495dec5670e5e9680',''),(17977,'{21275}/{21276}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.HIGH}','Data region {#JMXNAME}: Checkpoint buffer utilization is too high','',0,0,4,0,'Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.','',NULL,0,0,2,0,'',0,'',0,'',0,'Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.HIGH} in 5m)','480b7cc1a967436b8620f9552f8ac4f6',''),(17978,'{21277}/{21278}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.WARN}','Data region {#JMXNAME}: Checkpoint buffer utilization is too high','',0,0,2,0,'Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.','',NULL,0,0,2,0,'',0,'',0,'',0,'Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.WARN} in 5m)','67eddf17affd49b7844cd0846bc56f7d',''),(17979,'{21279}/{21280}*100>{$IGNITE.DATA.REGION.PUSED.MAX.HIGH}','Data region {#JMXNAME}: Data region utilization is too high','',0,0,4,0,'Data region utilization is high. Increase data region size or delete any data.','',NULL,0,0,2,0,'',0,'',0,'',0,'Data region {#JMXNAME}: Data region utilization is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.HIGH} in 5m)','736fbc965aa448309d022de34354decf',''),(17980,'{21281}/{21282}*100>{$IGNITE.DATA.REGION.PUSED.MAX.WARN}','Data region {#JMXNAME}: Data region utilization is too high','',0,0,2,0,'Data region utilization is high. Increase data region size or delete any data.','',NULL,0,0,2,0,'',0,'',0,'',0,'Data region {#JMXNAME}: Data region utilization is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.WARN} in 5m)','6ded19e7616b45f08e37e716d8256c5e',''),(17981,'{21283}>0','Data region {#JMXNAME}: Node started to evict pages','',0,0,1,0,'You store more data than region can accommodate. Data started to move to disk it can make requests work slower. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','e210c54ba16f4d879d8a4fb88c365c53',''),(17982,'{21284}>0','Data region {#JMXNAME}: Pages replace rate more than 0','',0,0,2,0,'There is more data than DataRegionMaxSize. Cluster started to replace pages in memory. Page replacement can slow down operations.','',NULL,0,0,2,0,'',0,'',0,'',0,'','70ef41de47b2463a9c580e790754a49c',''),(17983,'{21285} > {$IGNITE.PME.DURATION.MAX.HIGH}','Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','',0,0,4,0,'PME duration is over {$IGNITE.PME.DURATION.MAX.HIGH}ms. Looks like PME is hung.','',NULL,0,0,2,0,'',0,'',0,'',0,'Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.HIGH} for 5 min)','81587d91606348a6b5385d4b59331adf',''),(17984,'{21286} > {$IGNITE.PME.DURATION.MAX.WARN}','Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','',0,0,2,0,'PME duration is over {$IGNITE.PME.DURATION.MAX.WARN}ms.','',NULL,0,0,2,0,'',0,'',0,'',0,'Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.WARN} for 5 min)','0de7ca62c7044e48a8931cf0dfe8ce34',''),(17985,'{21287} > {$IGNITE.THREADS.COUNT.MAX.WARN}','Ignite [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high','',0,0,2,0,'Number of running threads is over {$IGNITE.THREADS.COUNT.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'Ignite [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high (over {$IGNITE.THREADS.COUNT.MAX.WARN} for 15 min)','8c4ddb0485464c409077f86241956a56',''),(17986,'{21288} > {$IGNITE.JOBS.QUEUE.MAX.WARN}','Ignite [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high','',0,0,2,0,'Number of queued jobs is over {$IGNITE.JOBS.QUEUE.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'Ignite [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high (over {$IGNITE.JOBS.QUEUE.MAX.WARN} for 15 min)','a723fdecd1b34609b92bb351b1b44a46',''),(17987,'{21289}>{21290}','Ignite [{#JMXIGNITEINSTANCENAME}]: There are nodes is not in topology','',0,0,1,0,'One or more server node left the topology. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','17f9fd03d3144812bf776c0f8ca836e4',''),(17988,'{21291}>0','Ignite [{#JMXIGNITEINSTANCENAME}]: Server node added to the topology','',0,0,1,0,'One or more server node added to the topology. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','e2c38e56189d4ed79bac6bd4ca8e477c',''),(17989,'{21292}<0','Ignite [{#JMXIGNITEINSTANCENAME}]: Server node left the topology','',0,0,2,0,'One or more server node left the topology. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','81efb2805dbc49719a316d1992aaac3a',''),(17990,'{23435}<>{23436} and length({23437})>0','Ignite [{#JMXIGNITEINSTANCENAME}]: Version has changed','',0,0,1,0,'Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'Ignite [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','08a1f4bd227e4f96b501a4681bf9fc8f',''),(17991,'{21295}=1','Ignite [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Ignite [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data (or no data for 10m)','d90f8b10d32240d882317bf9fb628eae',''),(17992,'{21296}<10m','Ignite [{#JMXIGNITEINSTANCENAME}]: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Ignite [{#JMXIGNITEINSTANCENAME}]: has been restarted (uptime < 10m)','f3415dd32a3b450f80b29b83bd54fdef',''),(17993,'{23438}<>{23439} and length({23440})>0','Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed','',0,0,2,0,'Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'Ignite [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','82e24abcc7874382a2af0018a4a001e1',''),(17995,'{23441}<>{23442} and length({23443})>0','Cache group [{#JMXNAME}]: List of caches has changed','',0,0,1,0,'List of caches has changed. Significant changes have occurred in the cluster. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'Cache group [{#JMXNAME}]: Version has changed (new version: {ITEM.VALUE})','b500b51a688d4b55942ce7311e82c54f',''),(17996,'{21303}>0','Cache group [{#JMXNAME}]: Rebalance in progress','',0,0,1,0,'Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','32a4aa1043b44c6198f01951d9ac32b4',''),(17997,'{21304}=0','Cache group [{#JMXNAME}]: There is no copy for partitions','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','8755dd8b09e347659aee2450bcdd5c28',''),(17998,'{21305} > {$IGNITE.THREAD.QUEUE.MAX.WARN:\"{#JMXNAME}\"}','Thread pool [{#JMXNAME}]: Too many messages in queue','',0,0,3,0,'Number of messages in queue more than {$IGNITE.THREAD.QUEUE.MAX.WARN:\"{#JMXNAME}\"}.','',NULL,0,0,2,0,'',0,'',0,'',0,'Thread pool [{#JMXNAME}]: Too many messages in queue (over {$IGNITE.THREAD.QUEUE.MAX.WARN:\"{#JMXNAME}\"} for 5 min)','1d29e40969d54e9090724c8a774eaf4d',''),(17999,'{21306}={21307}','Cache group [{#JMXGROUP}]: All entries are in heap','',0,0,1,0,'All entries are in heap. Possibly you use eager queries it may cause out of memory exceptions for big caches. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','97aa5e21a05743b9bb6714d7d5d28a67',''),(18000,'{21308} > {21309}','Cache group [{#JMXGROUP}]: Success transactions less than rollbacks for 5m','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','bfc948858de94088a96c9eddb14b893d',''),(18001,'{21310}>0 and {21311}=0','Cache group [{#JMXGROUP}]: There are no success transactions for cache for 5m','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','1d80fe9b052444359eca04629e45e799',''),(18002,'{21312}/{21313}*100>{$REDIS.MEM.PUSED.MAX.WARN}','Redis: Memory usage is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Redis: Memory usage is too high (over {$REDIS.MEM.PUSED.MAX.WARN}% in 5m)','0c3560588d2d421c843c006ef5fa4645',''),(18003,'{21314}=1','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','384fd446bcb042f89ca348ec7459f1aa',''),(18004,'{21315}=1 or {21316}=1 or {21317}=1','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7370a7c6388c4ff8b094959ca0c34a72',''),(18005,'{21318}=1 and {21319}<>{$DISK_ARRAY_CACHE_WARN_STATUS:\"invalid\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4db3b402580c43eba0d9dc6349cf95ca',''),(18006,'{21320} = 1','{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','b7786ff4c57a4143b79e95bfc5470dcd',''),(18007,'{21321} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','11365923a7b242fea930250e26fcc548',''),(18008,'{21322} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dd0fd44bd7bb43bd85fdd63a199e0e69',''),(18009,'{21323} = 1','Ambient: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','e955550a2496435eb799d317f2036c55',''),(18010,'{21324} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8cd2c8b62b164923afed02da2be52dcc',''),(18011,'{21325} = 3','Ambient: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d11e13c5714a42d49bea54d837f9f418',''),(18012,'{21326} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','512654c27ea94ed4993380793a67f68b',''),(18013,'{21327} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7853d0c8ed4a4ebe98e38c7499417ebe',''),(18014,'{21328} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0434d2a6a1b54cb7bcd0e6f58d973be4',''),(18015,'{21329} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','2875e5ebea474eccac8d53dd13539bd6',''),(18016,'{21330} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','593b167fe62e4a7fae35ebb508540325',''),(18017,'{21331} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bf6a10f0596a45b4b8f8a2f0acf7c778',''),(18018,'{21332} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','881f28f6411c467493c56a64237d8ca8',''),(18019,'{21333} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c05402995e6146d28c53fc33e88d8164',''),(18020,'{21334} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bfac7287a9d842cb89d8089af72e2e12',''),(18021,'{21335} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','14ab7adae80c4859952381bfe17a14a3',''),(18022,'{21336} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','97481f1183c3444c851fe99428bd7bf3',''),(18023,'{21337} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8c7f5250756946a595b742519e4890a5',''),(18024,'{21338} = 1','System-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','d161829ab0ec496bb4718ed156853c3f',''),(18025,'{21339} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a65a8386fdd048f986a3aa3fcf29a959',''),(18026,'{21340} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0b13f436c7984eef9624632bb5f43970',''),(18027,'{21341}<>200','Sharepoint: Error getting directory structure.','',0,0,2,0,'Error getting directory structure. Check the Zabbix server log for more details.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ed1d66a1410e4af79af462e749ce979b',''),(18028,'{21342}>2000','Sharepoint: Server responds slowly to API request','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9e5bcc08d5f040de86afa38f5a653dd7',''),(18029,'{21343}>\"{$SHAREPOINT.MAX_HEALT_SCORE}\"','Sharepoint: Bad health score','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3a0451e3edda4a73aded57aa254fd813',''),(18030,'{23268}<>{23269}','Sharepoint: Sharepoint object is changed','',0,0,1,0,'Updated date of modification of folder / file','',NULL,0,0,2,0,'',0,'',1,'{#SHAREPOINT.LLD.FULL_PATH}',0,'','d1683e2fcdda45969ff451e43ae696c2',''),(18031,'{21345}<10m','VMware: VM has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'VMware: VM has been restarted (uptime < 10m)','da703e83e2e146569c173fd9bc6988dd',''),(18032,'{23281}<>{23282} and {23283}<{#MULTIPATH.COUNT}','VMware: The multipath count has been changed','',0,0,3,0,'The number of available datastore paths less than registered ({#MULTIPATH.COUNT}).','',NULL,0,0,2,0,'',0,'',1,'Current: {ITEM.LASTVALUE}, Registered: {#MULTIPATH.COUNT}',0,'','8f1de4827ba446ef902ca5fa44109c6d',''),(18033,'{21348}>{$MEMORY.UTIL.MAX}','Hikvision camera: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'Hikvision camera: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','62cfa0b87f234f1cb67b9b5b6b2fa8f2',''),(18034,'{21349}>={21350}','Cache group [{#JMXNAME}]: One or more backups are unavailable','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','1b85d75607294d6a8fded5b85f7f9a4a',''),(18035,'{21351}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fb87fa900e404e2ba53fa5769fecc511',''),(18108,'{21566}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a22f13e245b944e991c2c9850a731a3c',''),(18109,'{21567}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1991ae08b008488380db02160b15160e',''),(18110,'{21568}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','929046c4439741a9aa3ab00933322a86',''),(18113,'{21571}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','74c44bdc890f467cb1a8cdc175a54a76',''),(18117,'{21575}>{$MEMORY.UTIL.MAX}','#{#SNMPINDEX}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'#{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','41baaaa2eb6246b7982ac76928fbd0f8',''),(18118,'{21576}>{$MEMORY.UTIL.MAX}','{#SNMPINDEX}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fd484f9b3a6a414fb2bba47d5804cc62',''),(18119,'{21577}>{$MEMORY.UTIL.MAX}','#{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','29352d2cb80f47d98ca6c6d6d366a29f',''),(18120,'{21578}>{$MEMORY.UTIL.MAX}','#{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','50733fd8b4a641708e3a90292f182f20',''),(18121,'{21579}>{$MEMORY.UTIL.MAX}','{#MODULE_NAME}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#MODULE_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','e8d3cb45afea4cbd935c9ea668746260',''),(18122,'{21580}>{$MEMORY.UTIL.MAX}','#{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4fe0382fdee141adac03788c8810e387',''),(18123,'{21581}>{$MEMORY.UTIL.MAX}','{#ENT_NAME}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#ENT_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','2d93533c7cc74dc9a85e280605e21e7d',''),(18124,'{21582}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ab1f3dcba55d41da974c3ac60ca5b8f2',''),(18125,'{21583}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','e4b4ba5ec80c4d83adbb10739edf4574',''),(18126,'{21584}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','21c1a017dcc14148a9020207a6fd7488',''),(18127,'{21585}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','082a768e190d4e8e97e0857cd3412ea1',''),(18128,'{21586}>{$MEMORY.UTIL.MAX}','#{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3bd3af786eb34b5e9a05f3113fce8007',''),(18129,'{21587}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','30c0c80ae6df45bb96c434016e394bba',''),(18130,'{30949}<{$SWAP.PFREE.MIN.WARN} and {30950}>0','High swap space usage','',0,0,2,0,'If there is no swap configured, this trigger is ignored.','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','6bf4726efad344529d3c8908053c6e6c',''),(18132,'{21592}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','804010cd02244ec5b47ba77bfa734228',''),(18142,'{30961}<{$SWAP.PFREE.MIN.WARN} and {30962}>0','High swap space usage','',0,0,2,0,'If there is no swap configured, this trigger is ignored.','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','dea1c2fccd8f4e52bedd85fe23db7228',''),(18144,'{21619}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','11bff052c18b424f9d89b53e0faa2b21',''),(18150,'{30967}<{$SWAP.PFREE.MIN.WARN} and {30968}>0','High swap space usage','',0,0,2,0,'If there is no swap configured, this trigger is ignored.','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','16e6a4d340164dee9379a3fc0aac0576',''),(18152,'{21637}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72304b3a167e41ccbcdb75568c65294a',''),(18155,'{30971}<{$SWAP.PFREE.MIN.WARN} and {30972}>0','High swap space usage','',0,0,2,0,'If there is no swap configured, this trigger is ignored.','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','12324c6e7b564c858406702148b43bc4',''),(18156,'{30975}<{$MEMORY.AVAILABLE.MIN} and {30976}>0','Lack of available memory','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','687586e62f4b4191aa95ba1ba74c7787',''),(18157,'{21649}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','38e4d31ccb594ba1a041c47633887ef6',''),(18161,'{32551}<{$SWAP.PFREE.MIN.WARN} and {32552}>0','High swap space usage','',0,0,2,0,'This trigger is ignored, if there is no swap configured','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','b2a97432e79e4a999324d3fde7dacdeb',''),(18162,'{21657}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','2766be7a10d444be9893dcdfab75f3be',''),(18169,'{32553}<{$SWAP.PFREE.MIN.WARN} and {32554}>0','High swap space usage','',0,0,2,0,'This trigger is ignored, if there is no swap configured','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','237760596cd647bca82044e843992d87',''),(18170,'{21677}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','df816288349743ad9b2015dda9066abb',''),(18183,'{24404}<>{24405} and length({24406})>0','OceanStor 5300 V5: Storage version has been changed','',0,0,1,0,'OceanStor 5300 V5 version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'OceanStor 5300 V5: Version has changed (new version: {ITEM.VALUE})','b6eb791cc14644dfb0a69a2cce150ab1',''),(18184,'{21704}<>1','BBU {#ID} on {#LOCATION}: Health status is not Normal','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','fb73cddd30164af8aa243bd3e2b2f803',''),(18185,'{21705}<>2','BBU {#ID} on {#LOCATION}: Running status is not Online','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','15d809b0be1c4d1da9158a83d303789c',''),(18186,'{21706}>{$CPU.UTIL.CRIT}','Controller {#ID}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'Controller {#ID}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a51b4e42efaa4924b6c2990c9c0abf30',''),(18187,'{21707}<>1','Controller {#ID}: Health status is not Normal','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','52cf517dd30146578b32fd1399ec81cc',''),(18188,'{21708}>{$HUAWEI.5300.MEM.MAX.WARN}','Controller {#ID}: Memory usage is too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Controller {#ID}: Memory usage is too high (over {$HUAWEI.5300.MEM.MAX.WARN} for {$HUAWEI.5300.MEM.MAX.TIME})','8d4fe305737f41a595c1d2efb3e8a153',''),(18189,'{24407}<>{24408}','Controller {#ID}: Role has been changed','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','8b8ec3f843e74533a43f24393004cc84',''),(18190,'{21710}<>27','Controller {#ID}: Running status is not Online','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','6ab64eb5e1c146838ad48b7b9b063587',''),(18191,'{21711}<>1','Disk {#MODEL} on {#LOCATION}: Health status is not Normal','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','fc1c8d30f09c49a3999e282bff6ea370',''),(18192,'{21712}<>27','Disk {#MODEL} on {#LOCATION}: Running status is not Online','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','53aaf06848a346f188799d1cbb5d948f',''),(18193,'{21713}>{$HUAWEI.5300.DISK.TEMP.MAX.WARN:\"{#MODEL}\"}','Disk {#MODEL} on {#LOCATION}: Temperature is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'Disk {#MODEL} on {#LOCATION}: Temperature is too high (over {$HUAWEI.5300.DISK.TEMP.MAX.WARN:\"{#MODEL}\"} for {$HUAWEI.5300.DISK.TEMP.MAX.TIME})','906de152d3594f1d8cc15b4b717d6202',''),(18194,'{21714}<>1','Enclosure {#NAME}: Health status is not Normal','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','9b8fb5b02b0b4158a2b564f47281f716',''),(18195,'{21715}<>27','Enclosure {#NAME}: Running status is not Online','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','3c430a2073ff42d9908490858c9c2817',''),(18196,'{21716}>{$HUAWEI.5300.TEMP.MAX.WARN}','Enclosure {#NAME}: Temperature is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'Enclosure {#NAME}: Temperature is too high (over {$HUAWEI.5300.TEMP.MAX.WARN} for {$HUAWEI.5300.TEMP.MAX.TIME})','622fcc16c03e4ba4ad8371ea5c1c314f',''),(18197,'{21717}<>1','FAN {#ID} on {#LOCATION}: Health status is not Normal','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','1f41c20696d44eb29a1273718c9faf2f',''),(18198,'{21718}<>2','FAN {#ID} on {#LOCATION}: Running status is not Running','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','c225c9d853184d579d18c27f7e906fd2',''),(18199,'{21719}>{$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}','LUN {#NAME}: Average I/O response time is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'LUN {#NAME}: Average I/O response time is too high (over {$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}ms for {$HUAWEI.5300.LUN.IO.TIME.MAX.TIME})','aae494cb840049fb83df354c13daaf53',''),(18200,'{21720}<>1','LUN {#NAME}: Status is not Normal','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','757eef04912d44b4b4f9e1abab54fb4d',''),(18201,'{21721}>{$CPU.UTIL.CRIT}','Node {#NODE}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'Node {#NODE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','8495a55d6549460d9b132675a39b818b',''),(18202,'{21722}>{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}','Node {#NODE}: Average I/O latency is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Node {#NODE}: Average I/O latency is too high (over {$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}ms for {$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME})','8f54bfe029fe43c7a049c6a97c8598bf',''),(18203,'{21723}>{#THRESHOLD}','Pool {#NAME}: Used capacity is too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Pool {#NAME}: Used capacity is too high (over {#THRESHOLD}%)','2ea46713fe664a64a851edca422257f8',''),(18204,'{21724}<>1','Pool {#NAME}: Health status is not Normal','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','8089b48aafb4403fa3187164685f8ca3',''),(18205,'{21725}<>27','Pool {#NAME}: Running status is not Online','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','5ff1d6b5d90040928b90908859c2e8cd',''),(18206,'{21726}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {21727}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Node {#NODE}: port {#IFNAME} ({#TYPE}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{21728}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {21729}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Node {#NODE}: port {#IFNAME} ({#TYPE}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','9ea5b5b667df4bd1943892150c9f2fda',''),(18207,'{21730}=0','RabbitMQ: There are active alarms in the cluster','',0,0,3,0,'This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','032949c387c64223b3125ba1120ae082',''),(18208,'{21731}=0','RabbitMQ: Node healthcheck failed','',0,0,3,0,'For more details see [Health Checks](https://www.rabbitmq.com/monitoring.html#health-checks).','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bf6bcbda20ed46cbb779d9c1f446dfa8',''),(18209,'{21732}=0','RabbitMQ: There are valid TLS certificates expiring in the next month','',0,0,3,0,'It checks if there are valid TLS certificates expiring in the next month. This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d180912136c74e5cb246655ecab75f57',''),(18210,'{21733}=0','RabbitMQ: There are active alarms in the node','',0,0,3,0,'It checks the active alarms in the nodes via API. This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','62962f18baa4480294e097fec2cc5e4c',''),(18211,'{21734}=0','RabbitMQ: There are queues that could potentially lose data if this node goes offline.','',0,0,3,0,'It checks whether there are queues that could potentially lose data if this node goes offline via API. This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','19e392f9e48e4c8287e04751a2a73843',''),(18212,'{21735}=0','RabbitMQ: There are queues that would lose their quorum and availability if this node is shut down.','',0,0,3,0,'It checks if there are queues that could potentially lose data if this node goes offline via API. This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e063b6dde6a0484ba1561861d8b1f0c1',''),(18213,'{21736}=0','RabbitMQ: There are not running virtual hosts','',0,0,3,0,'It checks if there are not running virtual hosts via API. This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b61117e5eeff4d41a9a2f1729ec174b2',''),(18214,'{21737}=0','RabbitMQ: There are active alarms in the cluster','',0,0,3,0,'This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','58592bb4d473497e9942634db2001823',''),(18215,'{21738}=0','RabbitMQ: Node healthcheck failed','',0,0,3,0,'https://www.rabbitmq.com/monitoring.html#health-checks','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5c9c080ddd3748a6b5e62ba7765d270d',''),(18216,'{21739}=0','RabbitMQ: There are valid TLS certificates expiring in the next month','',0,0,3,0,'This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','20f7cd2d1d2448d5b84711caba2f093b',''),(18217,'{21740}=0','RabbitMQ: There are active alarms in the node','',0,0,3,0,'This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9761757a70bf4f65b9438471a5de2af0',''),(18218,'{21741}=0','RabbitMQ: There are queues that could potentially lose data if this node goes offline.','',0,0,3,0,'This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','36b4702437614a3681a5a77acef323fc',''),(18219,'{21742}=0','RabbitMQ: There are queues that would lose their quorum and availability if this node is shut down.','',0,0,3,0,'This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','cfaba160cc0441c09010de05316596bd',''),(18220,'{21743}=0','RabbitMQ: There are not running virtual hosts','',0,0,3,0,'This is the default API endpoint path: http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d1638953e2794c3e8113ba907837c968',''),(18221,'{21744}/({21745}+{21746})*100>{$MONGODB.CONNS.PCT.USED.MAX.WARN}','MongoDB: Total number of open connections is too high','',0,0,2,0,'Too few available connections. If MongoDB runs low on connections, in may not be able to handle incoming requests in a timely manner.','',NULL,0,0,0,0,'',0,'',0,'',0,'MongoDB: Total number of open connections is too high (over {$MONGODB.CONNS.PCT.USED.MAX.WARN%} in 5m)','58142b2a76114e69af259ea1b5c19bbc',''),(18222,'{21747}>{$MONGODB.CURSOR.OPEN.MAX.WARN}','MongoDB: Too many cursors opened by MongoDB for clients','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'MongoDB: Too many cursors opened by MongoDB for clients (over {$MONGODB.CURSOR.OPEN.MAX.WARN} in 5m)','ed4a0c66c76d4ca699d0f2188cc8e71f',''),(18223,'{21748}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','MongoDB: Too many cursors are timing out','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'MongoDB: Too many cursors are timing out (over {$MONGODB.CURSOR.TIMEOUT.MAX.WARN} per second in 5m)','41d37791111b461d94da779e4b2c7e46',''),(18224,'{21749}=0','MongoDB: Connection to MongoDB is unavailable','',0,0,4,0,'Connection to MongoDB instance is currently unavailable.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c4ab9bfdd6d14634870f8ebb44081655',''),(18225,'{21750}=1','MongoDB: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'MongoDB: Failed to fetch info data (or no data for 10m)','166444342def4adc954aa35f3dc22dba',''),(18226,'{21751}<10m','MongoDB: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'MongoDB: has been restarted (uptime < 10m)','992590e47a7f42dda0e074c2f7a3e5ba',''),(18227,'{23444}<>{23445} and length({23446})>0','MongoDB: Version has changed','',0,0,1,0,'MongoDB version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'MongoDB: Version has changed (new version: {ITEM.VALUE})','0856e13b7e7644c5b353fcfa577acb51',''),(18228,'{28421}>0 and length({28422})>0','MongoDB: There are unhealthy replicas in ReplicaSet','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','975c5e5817b148ba8a8d551ac42053d0',''),(18229,'{21756}>{$MONGODB.REPL.LAG.MAX.WARN}','MongoDB: Replication lag with primary is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'MongoDB: Replication lag with primary is too high (over {$MONGODB.REPL.LAG.MAX.WARN} in 5m)','778d0b15affe4867b3e7f3e396c2a700',''),(18231,'{21758}<{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','MongoDB: Available WiredTiger read tickets is low','',0,0,2,0,'\"Too few available read tickets.\r\nWhen the number of available read tickets remaining reaches zero, new read requests will be queued until a new read ticket is available.\"','',NULL,0,0,2,0,'',0,'',0,'',0,'MongoDB: Available WiredTiger read tickets less than {$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','967928b915f64623b4416ed0dbf6ba98',''),(18232,'{21759}<{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','MongoDB: Available WiredTiger write tickets is low','',0,0,2,0,'\"Too few available write tickets.\r\nWhen the number of available write tickets remaining reaches zero, new write requests will be queued until a new write ticket is available.\"','',NULL,0,0,2,0,'',0,'',0,'',0,'MongoDB: Available WiredTiger write tickets less than {$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN}','485e6e846f274b528902b3ffd08f2fc4',''),(18233,'{21760}<{$MONGODB.CONNS.AVAILABLE.MIN.WARN}','MongoDB cluster: Available connections is low','',0,0,2,0,'\"Too few available connections.\r\nConsider this value in combination with the value of connections current to understand the connection load on the database\"','',NULL,0,0,0,0,'',0,'',0,'',0,'MongoDB cluster: Available connections less then {$MONGODB.CONNS.AVAILABLE.MIN.WARN}','eae86b6f98db49099259a466b78d1c59',''),(18234,'{21761}>{$MONGODB.CURSOR.OPEN.MAX.WARN}','MongoDB cluster: Too many cursors opened by MongoDB for clients','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'MongoDB cluster: Too many cursors opened by MongoDB for clients (over {$MONGODB.CURSOR.OPEN.MAX.WARN} in 5m)','67db1f543818476ca0b07e2cc1709452',''),(18235,'{21762}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}','MongoDB cluster: Too many cursors are timing out','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'MongoDB cluster: Too many cursors are timing out (over {$MONGODB.CURSOR.TIMEOUT.MAX.WARN} per second in 5m)','5ea8cf9c955940a6a580cd6f4bb2cc78',''),(18236,'{21763}=0','MongoDB cluster: Connection to mongos proxy is unavailable','',0,0,4,0,'Connection to mongos proxy instance is currently unavailable.','',NULL,0,0,0,0,'',0,'',0,'',0,'','cd74289970204ca281c5bc7d5c695e95',''),(18237,'{21764}=1','MongoDB cluster: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'MongoDB cluster: Failed to fetch info data (or no data for 10m)','ee70d6da232a4068b574c9c147c622c9',''),(18238,'{21765}<10m','MongoDB cluster: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'MongoDB cluster: has been restarted (uptime < 10m)','99ff438a7e3e4b0a8190b2ab9f41f076',''),(18239,'{23449}<>{23450} and length({23451})>0','MongoDB cluster: Version has changed','',0,0,1,0,'MongoDB cluster version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'MongoDB cluster: Version has changed (new version: {ITEM.VALUE})','921ee489887943838d69558f103ad646',''),(18240,'{21768}>{21769} and {21769}>{21770}','MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Log queue size is growing','',0,0,4,0,'The log records of the primary database are not sent to the secondary databases.','',NULL,0,0,2,0,'',0,'',0,'',0,'','def3b1d47dac4d039bffcc78f955b433',''),(18241,'{21771}>{21772} and {21772}>{21773}','MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Redo log queue size is growing','',0,0,4,0,'The log records in the log files of the secondary replica have not yet been redone.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2102f244f58b4fe981d569fe0fe599a9',''),(18242,'({21774}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{21775} or\r\n{21776}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{21775}) and\r\n{21775}>0','Interface {#IFDESCR}: High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{21774}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{21775} and\r\n{21776}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{21775}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','7594011ba1964285abd0f232ffeb22e3',''),(18243,'{21777}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {21778}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFDESCR}: High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{21779}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {21780}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFDESCR}: High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','2eb4baaf86a2405b9a1a232241eee72b',''),(18250,'({21802}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{21803} or\r\n{21804}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{21803}) and\r\n{21803}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{21802}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{21803} and\r\n{21804}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{21803}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','913c87be8cd94aeb8a3f9e008a4cd560',''),(18251,'{21805}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {21806}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{21807}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {21808}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','15b436b13012415bb9773d3ddab22178',''),(18294,'({21956}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{21957} or\r\n{21958}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{21957}) and\r\n{21957}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{21956}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{21957} and\r\n{21958}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{21957}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','232019e4163a4e7ebd63876751721824',''),(18295,'{21959}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {21960}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{21961}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {21962}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','9ee9204a4a4044ae82bd0f75299f2a5d',''),(18298,'{21970}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b0507a7333384bd5bf251fe238a538ad',''),(18299,'{21971}>{$ICMP_LOSS_WARN} and {21971}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','089e23bcb4bb41f992947a6970555394',''),(18300,'{21972}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','d5449d68d76e49ad9b7c052abff255e2',''),(18301,'{23744}<>{23745} and length({23746})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','ef94f8295a2946b9a266afc6c9a5c5c9',''),(18302,'{23747}<>{23748} and length({23749})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','0d48c5e2b30f4f08b3cec8c89c05d52d',''),(18303,'{23750}<>{23751} and length({23752})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,2,'',0,'',1,'',0,'','77433856d157408d98c72d964fdbf045',''),(18304,'({32154}>0 and {32154}<10m) or ({32154}=0 and {32155}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','6e105d2b8a2c43cc8841abb6995941ba',''),(18305,'{21980}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4ebd3dd755dd4b1dae2509842d0b7117',''),(18306,'{21981}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a825aa92b31c4460bef20469afead397',''),(18307,'{23753}<>{23754} and length({23755})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',0,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','b715f039d7874915aacd687e87661588',''),(18308,'{21984}=3 or {21984}=4','{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','03a372d275194f8cae61786a38a7fb96',''),(18309,'{21985}=2','{#SNMPVALUE}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','65bc040110534b6ab0544cb1866288ab',''),(18310,'{21986}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','fc434ae6fdff4ec0b20400750571b786',''),(18311,'{21987}<0 and {21988}>0\r\nand (\r\n{21989}=6 or\r\n{21989}=7 or\r\n{21989}=11 or\r\n{21989}=62 or\r\n{21989}=69 or\r\n{21989}=117\r\n)\r\nand\r\n({21990}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({21987}>0 and {21991}>0) or\r\n({21990}=2)',0,'',0,'Current reported speed: {ITEM.LASTVALUE1}',0,'','6c5a9334ff7d437c91c0f76da988cade',''),(18312,'({21992}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{21993}) and\r\n{21993}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{21992}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{21993}',0,'',0,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','5f4de3462234401d826a4a7bab16402f',''),(18313,'({21994}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{21995}) and\r\n{21995}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{21994}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{21995}',0,'',0,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','13ac4bfd49a749b7ba49cdbf531939b1',''),(18314,'{21996}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{21997}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors in: {ITEM.LASTVALUE1}',0,'Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','ac2ed3537a1744bd91abb32acb45181c',''),(18315,'{21998}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{21999}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','4e96fef6da19403eb125c67947ceadee',''),(18316,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({22000}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1086cb4f3a6a46c399fe221ffd538037',''),(18317,'{22001}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',0,'',0,'','75341985cb654533b4ef67cbdd9333a9',''),(18318,'{22002}=3 or {22003}=4','{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d64945a4f2f74909a10f9cc448f26a02',''),(18319,'{22004}=2','{#SNMPVALUE}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','aaf5b05767f24a9bb87753a519140673',''),(18320,'{22005}=3 or {22005}=4','{#SNMPVALUE}: Temperature is in critical state','',0,0,4,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','3d307edd9bc54aa2890bebe3ded250c2',''),(18321,'{22006}=2','{#SNMPVALUE}: Temperature is in warning state','',0,0,2,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','24000d852b014ae7828eab26451257c1',''),(18322,'{22007}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22008}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','8c7c804c7b274cf4a17090086ee0f8a0',''),(18323,'{22009}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22010}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','0cdb1f1c7e7848bfba2368395d2c03e5',''),(18324,'{22011}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{22012}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','eac4504f0d45457fa325f40e6ab585a2',''),(18325,'{22013}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','e66bcbef8f1d45fc8bc5d64e5dc848dc',''),(18326,'{22014}>{$ICMP_LOSS_WARN} and {22014}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','20ee878da19f4d758e4372c6c918c773',''),(18327,'{22015}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','0facff81f25c43869e86a0541f0e3ecd',''),(18328,'{23756}<>{23757} and length({23758})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','052fb88fae1349d5b9a5fa5bcf24d0fa',''),(18329,'{23759}<>{23760} and length({23761})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','a678341d899846158fea2deb57f923cf',''),(18330,'{23762}<>{23763} and length({23764})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,2,'',0,'',1,'',0,'','3e5d53072021491bb2af276aff3e1a0b',''),(18331,'({32156}>0 and {32156}<10m) or ({32156}=0 and {32157}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','a9633d3df8724c7cba6dfc6ec790c1fd',''),(18332,'{22023}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0f2d48a1529c4ae49d58d466ed3a76e7',''),(18333,'{22024}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','471acd7fa3ad4040aba27535905bfe63',''),(18334,'{23765}<>{23766} and length({23767})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',0,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','70aca80b5a8d414686967b104d301023',''),(18335,'{22027}=3 or {22027}=4','{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e2b72d874d4f48e79aab3a6d514663b4',''),(18336,'{22028}=2','{#SNMPVALUE}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d4bf389614f54be08ffd8d010e480da6',''),(18337,'{22029}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','918cf48b69d545dbb9f177fa1440f4cb',''),(18338,'{22030}<0 and {22031}>0\r\nand (\r\n{22032}=6 or\r\n{22032}=7 or\r\n{22032}=11 or\r\n{22032}=62 or\r\n{22032}=69 or\r\n{22032}=117\r\n)\r\nand\r\n({22033}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({22030}>0 and {22034}>0) or\r\n({22033}=2)',0,'',0,'Current reported speed: {ITEM.LASTVALUE1}',0,'','d6aaa83ed4744ef982a177b77fb1f2c4',''),(18339,'({22035}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22036}) and\r\n{22036}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22035}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22036}',0,'',0,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','9e3e50611ef242b0b200c0a6343f4c5c',''),(18340,'({22037}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22038}) and\r\n{22038}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22037}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22038}',0,'',0,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','7c624697cd7b41d682b5856a3040737e',''),(18341,'{22039}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22040}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors in: {ITEM.LASTVALUE1}',0,'Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','df6bfacc52e1487d9f359c23545ceb84',''),(18342,'{22041}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22042}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','aa49d99c77d64e31ad2369d09e547cab',''),(18343,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({22043}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','41d6b4a9fde546ae88005efdef1f4525',''),(18344,'{22044}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',0,'',0,'','df8eb5498b8a41709db02b742fa24d6a',''),(18345,'{22045}=3 or {22046}=4','{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1d509ec30e8349538d9d2b2447b70253',''),(18346,'{22047}=2','{#SNMPVALUE}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4ef4e09de93e4cfbb2aab4f22e78c223',''),(18347,'{22048}=3 or {22048}=4','{#SNMPVALUE}: Temperature is in critical state','',0,0,4,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','506c98e9c29247cba7c58ca343c6fdf4',''),(18348,'{22049}=2','{#SNMPVALUE}: Temperature is in warning state','',0,0,2,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d6b91f3e280c4d0fa3df0bf3fedd9183',''),(18349,'{22050}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22051}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','63e41d0fe43c4daa8fd2e4eee6e4ed8a',''),(18350,'{22052}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22053}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','cc09047db63a435e816e560c2007b43a',''),(18351,'{22054}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{22055}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','156a35b375ff4978a2b98f38785897a5',''),(18352,'{22056}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','e536d08729024bbcbe51f63ac1074796',''),(18353,'{22057}>{$ICMP_LOSS_WARN} and {22057}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','63bdfa05fcbe455db4dbb28ae333292a',''),(18354,'{22058}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','79b80f4faa30401c8aa260a7bc961f9c',''),(18355,'{23768}<>{23769} and length({23770})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','be325325a6bd4cf4ae1312b4488af80d',''),(18356,'{23771}<>{23772} and length({23773})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','d19bce317a4b4ab19485a183d446dcc7',''),(18357,'{23774}<>{23775} and length({23776})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,2,'',0,'',1,'',0,'','c139de21caf94d4b9c2d60977d4756f7',''),(18358,'({32158}>0 and {32158}<10m) or ({32158}=0 and {32159}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','86484c0d62e94532af4202267369f8bf',''),(18359,'{22066}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d78318493148438abca20fed768d4ced',''),(18360,'{22067}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6f039b9bfb00495ebe5e5eba56d25099',''),(18361,'{23777}<>{23778} and length({23779})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',0,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','3e621db566ef4b5da2a3b0f5ee65ae81',''),(18362,'{22070}=3 or {22070}=4','{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f299241a1a3c4fde965b3a2b6a3b31d6',''),(18363,'{22071}=2','{#SNMPVALUE}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a4021a6d44fb439fa04b160b7cea2bca',''),(18364,'{22072}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','a88d7a734efc40868d3fbeda307c4e1f',''),(18365,'{22073}<0 and {22074}>0\r\nand (\r\n{22075}=6 or\r\n{22075}=7 or\r\n{22075}=11 or\r\n{22075}=62 or\r\n{22075}=69 or\r\n{22075}=117\r\n)\r\nand\r\n({22076}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({22073}>0 and {22077}>0) or\r\n({22076}=2)',0,'',0,'Current reported speed: {ITEM.LASTVALUE1}',0,'','46d96d2815a04b32b00ed4ef6104fedc',''),(18366,'({22078}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22079}) and\r\n{22079}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22078}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22079}',0,'',0,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','5af679006aaa40acbe01987ab15088ae',''),(18367,'({22080}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22081}) and\r\n{22081}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22080}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22081}',0,'',0,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','e0b4ab67e80a4dbdb3d60246b8830228',''),(18368,'{22082}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22083}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors in: {ITEM.LASTVALUE1}',0,'Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','a5f11bbeceb9418f86b1130ccb6942ec',''),(18369,'{22084}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22085}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','5182e3b82c044374a6f14f9a06fa0f24',''),(18370,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({22086}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','cb577e04f0a94508a10656c5f276d4e0',''),(18371,'{22087}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',0,'',0,'','45b5778869124558b3265d6d7275c186',''),(18372,'{22088}=3 or {22089}=4','{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','23fc241ca9d6438bb1688c77688fd1ed',''),(18373,'{22090}=2','{#SNMPVALUE}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c6ed26fb555642c9b25564ec13fcf920',''),(18374,'{22091}=3 or {22091}=4','{#SNMPVALUE}: Temperature is in critical state','',0,0,4,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1820c365ad55416e995d4d978063e4a1',''),(18375,'{22092}=2','{#SNMPVALUE}: Temperature is in warning state','',0,0,2,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','0b7e6f3085a0404ebb64c33828c9c920',''),(18376,'{22093}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22094}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','4c3501ee0c5b4af48306f040988d427a',''),(18377,'{22095}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22096}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','34b7d1a255a4408fac4d299eedc215b9',''),(18378,'{22097}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{22098}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','b9b8577c9f114d4c8546169e5a63a915',''),(18379,'{22099}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','01901a212f7c4fd2976f8ab89ad7eb68',''),(18380,'{22100}>{$ICMP_LOSS_WARN} and {22100}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','20104e6a8abe4b0e9bdd32325d506d9c',''),(18381,'{22101}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','21b7cefe750048fba80e026afecebcfd',''),(18382,'{23780}<>{23781} and length({23782})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','a11a364406534a838c99f89c4136eb5b',''),(18383,'{23783}<>{23784} and length({23785})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','b881ec6269d54e25810ed2ec2dfe3385',''),(18384,'{23786}<>{23787} and length({23788})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,2,'',0,'',1,'',0,'','cc0071c5d3074123a77ebddd7dd8583c',''),(18385,'({32160}>0 and {32160}<10m) or ({32160}=0 and {32161}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','904571e51fbc4cd0a3a25800e16ec495',''),(18386,'{22109}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','90d5894323074dc8bcd57b212cdbf398',''),(18387,'{22110}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f3318a22b4ff436f9021dbd181ecee58',''),(18388,'{23789}<>{23790} and length({23791})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',0,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','b1087409b7c84ad5b587e6f6fc37dfe0',''),(18389,'{22113}=3 or {22113}=4','{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9c0112ed996944768a717e15554aaa21',''),(18390,'{22114}=2','{#SNMPVALUE}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','98dd9b3bf65e418aa86f7a927910f847',''),(18391,'{22115}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','14f0fcd6447746d2af5de080c36e9888',''),(18392,'{22116}<0 and {22117}>0\r\nand (\r\n{22118}=6 or\r\n{22118}=7 or\r\n{22118}=11 or\r\n{22118}=62 or\r\n{22118}=69 or\r\n{22118}=117\r\n)\r\nand\r\n({22119}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({22116}>0 and {22120}>0) or\r\n({22119}=2)',0,'',0,'Current reported speed: {ITEM.LASTVALUE1}',0,'','b67a022f435741e59278d79bc873dcaa',''),(18393,'({22121}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22122}) and\r\n{22122}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22121}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22122}',0,'',0,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','bf1ed5348e3c48388f099f4d8cdec4f8',''),(18394,'({22123}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22124}) and\r\n{22124}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22123}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22124}',0,'',0,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','76bbbff26fcc406ba497f24dd23c07c8',''),(18395,'{22125}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22126}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors in: {ITEM.LASTVALUE1}',0,'Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','67573956247a4c29935889db09fba7e4',''),(18396,'{22127}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22128}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','80dc2a94be5d49d59b643b3c07dfe6fd',''),(18397,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({22129}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2ac6c68151b04e9489b0bff5f6277ec6',''),(18398,'{22130}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',0,'',0,'','4819114a72df4cd5ac093402e7799afa',''),(18399,'{22131}=3 or {22132}=4','{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8509b77831764bc3943b5fc65a8de0a7',''),(18400,'{22133}=2','{#SNMPVALUE}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4cdeb02663604279ac2d725cd16ee289',''),(18401,'{22134}=3 or {22134}=4','{#SNMPVALUE}: Temperature is in critical state','',0,0,4,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','c4ed5c08530041ad8c9c14033d792f56',''),(18402,'{22135}=2','{#SNMPVALUE}: Temperature is in warning state','',0,0,2,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','b4b4b88fcbe74e8b9c525cd2a6ace143',''),(18403,'{22136}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22137}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','d1918e0df0ae4b3ab22067142f7c0538',''),(18404,'{22138}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22139}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','468eaf7a831d4b2699e8be1939916f56',''),(18405,'{22140}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{22141}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','acac81a3c0b04e889f9bae2e40dd9caf',''),(18406,'{22142}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','1dd6a211f5e54351a2d4a0854e66fdba',''),(18407,'{22143}>{$ICMP_LOSS_WARN} and {22143}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','669ae230efe84f76be95f3ac0eac1102',''),(18408,'{22144}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','391b3ac9e1b746c8824af721c472df7b',''),(18409,'{23792}<>{23793} and length({23794})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','f63ea5e9c33f465985259c3c8d27a12a',''),(18410,'{23795}<>{23796} and length({23797})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','55ff869f6acb4f2daddf5c855aa3d76d',''),(18411,'{23798}<>{23799} and length({23800})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,2,'',0,'',1,'',0,'','6724cfef1df145fdb0e6e2cfb35bc890',''),(18412,'({32162}>0 and {32162}<10m) or ({32162}=0 and {32163}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','2f1841fb315041a2a437886dc6c23814',''),(18413,'{22152}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','da0596afe59b455bb503a0b2dea1cebe',''),(18414,'{22153}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','194c2d8b74c94717a037ce22c31a50e6',''),(18415,'{23801}<>{23802} and length({23803})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','7dc178a7bced4003b51b599459e41047',''),(18416,'{22156}=3 or {22156}=4','{#SNMPVALUE}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','16d0712d6e1f4cb18a65d4cc7e11a8df',''),(18417,'{22157}=2','{#SNMPVALUE}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','42ad0109072e404eb47daaf17236d805',''),(18418,'{22158}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','8cf907c229fa4c4c86c1f06e65facef8',''),(18419,'{22159}<0 and {22160}>0\r\nand (\r\n{22161}=6 or\r\n{22161}=7 or\r\n{22161}=11 or\r\n{22161}=62 or\r\n{22161}=69 or\r\n{22161}=117\r\n)\r\nand\r\n({22162}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({22159}>0 and {22163}>0) or\r\n({22162}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','4eae529fc032412d957f1e0d04261867',''),(18420,'({22164}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22165}) and\r\n{22165}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22164}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22165}',0,'',1,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','4e1ee888558346faa54c02b85d320170',''),(18421,'({22166}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22167}) and\r\n{22167}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22166}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22167}',0,'',1,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','7623796067224187b6f692c8b6cbd398',''),(18422,'{22168}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22169}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}',0,'Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','f4fa2946c04d4bdbabc9be4b492cf5f0',''),(18423,'{22170}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22171}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','a14d914fa1404daab227b6d22e71ea69',''),(18424,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({22172}=2)','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.','',NULL,0,0,2,0,'',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','77b810108caa4ae6bd8d8bff06acddb2',''),(18425,'{22173}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','a1217d320897464da4bb9a67f669460f',''),(18426,'{22174}=3 or {22175}=4','{#SNMPVALUE}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','56fced6c99ba44ab9fb5268d946a385b',''),(18427,'{22176}=2','{#SNMPVALUE}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6962e5851f244e9cb9d87763637a20f3',''),(18428,'{22177}=3 or {22177}=4','{#SNMPVALUE}: Temperature is in critical state','',0,0,4,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','e4844779a080455e9691bdc705227a28',''),(18429,'{22178}=2','{#SNMPVALUE}: Temperature is in warning state','',0,0,2,0,'This trigger uses temperature sensor state','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','120dd2434317447d8ee6708d5c1221e3',''),(18430,'{22179}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22180}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','6cecb3ad6e7640cc84b03e3b3943ad07',''),(18431,'{22181}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22182}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','6f5d1c3f3c804b6ba17486db5e6e8037',''),(18432,'{22183}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{22184}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','ed406cbc4b08446991c610c902574cac',''),(18433,'{22185}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','fe4c81a386814dfa80ffc76e1b7da9a1',''),(18434,'{30944}>{$ICMP_LOSS_WARN} and {30944}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','52b307324c37481693d419df236cbbd7',''),(18435,'{30945}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','39a9cff305074e1a8b7c6ed0c526fda9',''),(18436,'{22188}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','26913093ab414fe69ff157102ae54796',''),(18437,'{23919}<>{23920} and length({23921})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','ff7ad0676a774cf49a4568e752dd916b',''),(18438,'({32190}>0 and {32190}<10m) or ({32190}=0 and {32191}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','667856dcaad04a108cb0a5150e825a50',''),(18439,'{22192}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6e476399963a414a847c4c514055bf43',''),(18440,'{30946}=1','{#SENSOR_INFO}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','de81ef4f2c3f4f44a745a1fa1f179784',''),(18441,'{22194}<0 and {22195}>0\r\nand (\r\n{22196}=6 or\r\n{22196}=7 or\r\n{22196}=11 or\r\n{22196}=62 or\r\n{22196}=69 or\r\n{22196}=117\r\n)\r\nand\r\n({22197}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({22194}>0 and {22198}>0) or\r\n({22197}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','2dc62fe3cd624e2ba99caa9ff94273f6',''),(18442,'({22199}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22200} or\r\n{22201}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22200}) and\r\n{22200}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22199}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22200} and\r\n{22201}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22200}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','20e8f28ebc304ba185d475dbba51c4b8',''),(18443,'{22202}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {22203}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22204}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {22205}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','6740479821cd49c199c345dd736a11f7',''),(18444,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {23925}=2 and ({23926}<>{23927})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{23925}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','46918cfc713a4b1da7eed32cead0070b',''),(18445,'{22208}=1','{#ENT_NAME}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5d2d688ad68343ff8884c11e9d233b98',''),(18446,'{22209}>{$TEMP.MAX.WARN:\"{#SENSOR_INFO}\"}\r\nor\r\n{22210}={$TEMP.STATUS.WARN}','{#SENSOR_INFO}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22211}<{$TEMP.MAX.WARN:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:\"{#SENSOR_INFO}\"}','352650536eef4858be1437a720712932',''),(18447,'{22212}>{$TEMP.MAX.CRIT:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{22213}<{$TEMP.MAX.CRIT:\"{#SENSOR_INFO}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:\"{#SENSOR_INFO}\"}','7259bdafbe7f4227999d7365a99e536d',''),(18448,'{22214}<{$TEMP.MIN.CRIT:\"{#SENSOR_INFO}\"}','{#SENSOR_INFO}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{22215}>{$TEMP.MIN.CRIT:\"{#SENSOR_INFO}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_INFO}: Temperature is too low: <{$TEMP.MIN.CRIT:\"{#SENSOR_INFO}\"}','7bfa2bd0177940f4aff8dc95867ceb44',''),(18449,'{31337}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31338}-{31339})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31340}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','f1eb2ddb27d24cd99d8aba4485dfeeb9',''),(18450,'{31341}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31342}-{31343})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31344}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','b2e084f280434a3a8291e5dc691dfd7b',''),(18451,'{22224}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','912430a103414c6eb9c8e55c45246f48',''),(18452,'{30953}<{$MEMORY.AVAILABLE.MIN} and {30954}>0','Lack of available memory','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','3800877e8b474aa2aa83c1ecc0523db6',''),(18455,'{22231}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {22232}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}: High error rate','',0,0,2,0,'It recovers when it is below 80% of the `{$IF.ERRORS.WARN:\"{#IFNAME}\"}` threshold','',NULL,0,0,2,1,'{22233}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {22234}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','b4da7325b41647ab997cf6906a9cba23',''),(18458,'{30965}<{$MEMORY.AVAILABLE.MIN} and {30966}>0','Lack of available memory','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','1ba414b62eef4ca6b198f00a4cdd2bde',''),(18460,'{22247}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {22248}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}: High error rate','',0,0,2,0,'It recovers when it is below 80% of the `{$IF.ERRORS.WARN:\"{#IFNAME}\"}` threshold','',NULL,0,0,2,1,'{22249}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {22250}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','b0b3cce08e924447845859391bdf9045',''),(18462,'{30969}<{$MEMORY.AVAILABLE.MIN} and {30970}>0','Lack of available memory','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','f78ed17586964a46a9de0c4f183984f6',''),(18463,'({22257}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22258} or\r\n{22259}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22258}) and\r\n{22258}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The utilization of the network interface is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22257}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22258} and\r\n{22259}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22258}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','11e2c8023463482da878cdad5bb7de76',''),(18464,'{22260}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {22261}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'It recovers when it is below 80% of the {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22262}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {22263}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','6e8269b2260e42de97aec08043a768df',''),(18465,'({22264}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22265} or\r\n{22266}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22265}) and\r\n{22265}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22264}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22265} and\r\n{22266}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22265}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','c0e8e89730f04d92b26dd5da215894e1',''),(18466,'{22267}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {22268}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22269}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {22270}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','2a59eec0032a41e48e2443507cbd173d',''),(18469,'({22278}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22279} or\r\n{22280}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{22279}) and\r\n{22279}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{22278}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22279} and\r\n{22280}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{22279}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','3bdd014bdaf04f0885816cbf1da11309',''),(18470,'{22281}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {22282}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{22283}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {22284}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','e29c3aa283d74838b45040394a3eabe1',''),(18473,'{22292}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7e40918732e74b5e8bd854422989e77d',''),(18474,'{22293}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7ae03f3f307b4f11ad2bc0548911cbd3',''),(18475,'{22294}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','1282326bb61d45d88671bbbde3fab8ff',''),(18476,'{22295} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','36a14fe061d1433e9875373307a4e0f4',''),(18480,'{22299} > 0 and ({22299} > {$UPS.INPUT_FREQ.MAX.WARN} or {22300} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','1ddd2699b87f452a8893f75f805c0a81',''),(18481,'{22301} > 0 and ({22301} > {$UPS.INPUT_VOLT.MAX.WARN} or {22302} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','f6527c4fed3d41168be23f9367f18405',''),(18482,'{22303} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','ebef08a42d1e47ffa82ea586c1a5b3d6',''),(18483,'{22304}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c0e0b1db9a1f41379c340c122426778d',''),(18484,'{22305}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','381a6a75d9084ff1bfcc30b6870a2682',''),(18485,'{22306}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','da75b5277ceb423fac8d90b58d49c21f',''),(18486,'{22307}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b0330f707fc64605934ed95233bd2246',''),(18487,'{22308}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f8d75a2fdb6942e6b63831d206c78e56',''),(18488,'{22309}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','8eb59b4873e14acfa8e05791ed30c9d1',''),(18489,'{22310}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e06247b357b849d3ad1886f797705320',''),(18490,'{22311}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9b4424babc284dcabfb44dc725c03f40',''),(18491,'{22312}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9ac2faafee484894bb304da02d6ab0b2',''),(18492,'{22313}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ce16d33b10e74b129d22378f96ede052',''),(18493,'{22314}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','aa84fc5fd4434101a481481beb616a7c',''),(18495,'({32370}>0 and {32370}<10m) or ({32370}=0 and {32371}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','b0959bdb606542bcb2952e820ac972c9',''),(18496,'{22318}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4572d871f1d944bb855b93fdc6de5e88',''),(18497,'{22319}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','a248194aa30645c5918278b83944b20e',''),(18499,'{22321} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','80f084121d56464f90e4a3ef9e198889',''),(18500,'{22322}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3a40f3cb0a3b411697fe8d37f82404d4',''),(18501,'{22323}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','63ba879a2a324ffc958b761f2010ac8e',''),(18502,'{22324}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dc90cd795879495fa473b71a2ff57b49',''),(18503,'{22325}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8a62bc38e49e4779938c45839a190856',''),(18504,'{22326}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ca02e8f92e134dce9834bd1d6f3ab469',''),(18505,'{22327}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','36ad29900db7410782daeddb9d7c648f',''),(18506,'{22328} > {$UPS.INPUT_VOLT.MAX.WARN} or {22329} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','63c623a2a9af44f38388a17742c87486',''),(18507,'({22330}<>\"ok\")','Cluster status is abnormal','',0,0,3,0,'Any errors associated with the sample. For example, if the aggregation of data over multiple nodes fails then any of the partial errors might be returned, “ok” on success, or “error” on any internal uncategorized failure. Whenever a sample collection is missed but done at a later time, it is back filled to the previous 15 second timestamp and tagged with \"backfilled_data\". “Inconsistent_ delta_time” is encountered when the time between two collections is not the same for all nodes. Therefore, the aggregated value might be over or under inflated. “Negative_delta” is returned when an expected monotonically increasing value has decreased in value. “Inconsistent_old_data” is returned when one or more nodes do not have the latest data.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c823a2eb325a4153871be705d7c24c72',''),(18508,'{24409}<>{24410} and length({24411})>0','Version has changed','',0,0,1,0,'__RESOURCE__ version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Version has changed (new version: {ITEM.VALUE})','4a2936f068ed486f8c8a2cf2cfa7440b',''),(18509,'({24412}<>{24413} and {24414}=\"error\")','{#ID}: Chassis has something errors','',0,0,3,0,'Something is wrong with the chassis.','',NULL,0,0,2,1,'({24412}<>{24413} and {24414}=\"ok\")',0,'',1,'',0,'','381eb797545d452a84d3dba43865bbed',''),(18510,'({24415}<>{24416} and {24417}<>\"present\")','{#DISKNAME}: Disk of the Node \"{#NODENAME}\" has state different from \"present\"','',0,0,3,0,'Something is wrong with the disk.','',NULL,0,0,2,1,'({24415}<>{24416} and {24417}=\"present\")',0,'',1,'',0,'','72c1925f51c149eca27c7ddd1c81e44f',''),(18511,'({24418}<>{24419} and {24420}=\"error\")','{#FRUID}: FRU of the chassis \"{#ID}\" state is error','',0,0,3,0,'Something is wrong with the FRU.','',NULL,0,0,2,1,'({24418}<>{24419} and {24420}=\"ok\")',0,'',1,'',0,'','a17cb2ea98b6415d9e22e7f591d80adb',''),(18512,'({24421}<>{24422} and {24423}<>\"online\")','{#LUNNAME}: LUN of the SVM \"{#SVMNAME}\" has abnormal container state','',0,0,3,0,'LUNs are only available when their containers are available.','',NULL,0,0,2,1,'({24421}<>{24422} and {24423}=\"online\")',0,'',1,'',0,'','7a4e0a681edd4db6b701b131fea0e5e4',''),(18513,'({24424}<>{24425} and {24426}<>\"online\")','{#LUNNAME}: LUN of the SVM \"{#SVMNAME}\" has abnormal state','',0,0,3,0,'Normal states for a LUN are online and offline. Other states indicate errors.','',NULL,0,0,2,1,'({24424}<>{24425} and {24426}=\"online\")',0,'',1,'',0,'','5b065dd69e654bee881ae60464a5c9fe',''),(18514,'{24427}<>{24428} and length({24429})>0','{#NODENAME}: Version has changed','',0,0,1,0,'{#NODENAME} version has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#NODENAME}: Version has changed (new version: {ITEM.VALUE})','34092a7ade784221ae50eb74a6fbcb5d',''),(18515,'({22345}<>\"normal\")','{#NODENAME}: Node has over temperature','',0,0,3,0,'The hardware shuts down if the temperature exceeds critical thresholds(item\'s value is \"over\").','',NULL,0,0,2,0,'',0,'',0,'',0,'','4dbb3a9da15f45989b8fa4217f3f25c3',''),(18516,'({22346}<>\"up\")','{#NODENAME}: Node state is abnormal','',0,0,3,0,'The state of the node is different from up:\r\nbooting - Node is booting up.\r\ndown - Node has stopped or is dumping core.\r\ntaken_over - Node has been taken over by its HA partner and is not yet waiting for giveback.\r\nwaiting_for_giveback - Node has been taken over by its HA partner and is waiting for the HA partner to giveback disks.\r\ndegraded - Node has one or more critical services offline.\r\nunknown - Node or its HA partner cannot be contacted and there is no information on the node\'s state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','db8ff0f2cd294cc5952992a0d476e798',''),(18517,'{22347}<10m','{#NODENAME}: Node has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#NODENAME}: Node has been restarted (uptime < 10m)','61357dfdb08846c4935f62ba894b159a',''),(18518,'({24430}<>{24431} and {24432}=\"down\")','{#ETHPORTNAME}: Ethernet port of the Node \"{#NODENAME}\" is down','',0,0,3,0,'Something is wrong with the ethernet port.','',NULL,0,0,2,1,'({24430}<>{24431} and {24432}=\"up\")',0,'',1,'',0,'','0fa3a54b559349d58b616720ee33cdf5',''),(18519,'({24433}<>{24434} and {24435}<>\"online\")','{#FCPORTNAME}: FC port of the Node \"{#NODENAME}\" has state different from \"online\"','',0,0,3,0,'Something is wrong with the FC port.','',NULL,0,0,2,1,'({24433}<>{24434} and {24435}=\"online\")',0,'',1,'',0,'','a985c047b9834081bf21ae50836cef46',''),(18520,'({24436}<>{24437} and {24438}<>\"running\")','{#SVMNAME}: SVM state is abnormal','',0,0,3,0,'Something is wrong with the SVM.','',NULL,0,0,2,1,'({24436}<>{24437} and {24438}=\"running\")',0,'',1,'',0,'','7c5695fd13a4489ca1c9772f1d3376a7',''),(18521,'({24439}<>{24440} and {24441}<>\"online\")','{#VOLUMENAME}: Volume state is abnormal','',0,0,3,0,'A volume can only be brought online if it is offline. Taking a volume offline removes its junction path. The \'mixed\' state applies to FlexGroup volumes only and cannot be specified as a target state. An \'error\' state implies that the volume is not in a state to serve data.','',NULL,0,0,2,1,'({24439}<>{24440} and {24441}=\"online\")',0,'',1,'',0,'','b00f339ed1a9450ba096cabababcf76e',''),(18522,'{22356}>{22356}','Broker {#JMXBROKERNAME}: Message enqueue rate is higher than dequeue rate','',0,0,3,0,'Enqueue rate is higher than dequeue rate. It may indicate performance problems.','',NULL,0,0,2,0,'',0,'',0,'',0,'Broker {#JMXBROKERNAME}: Message enqueue rate is higher than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:\"{#JMXBROKERNAME}\"}','a3ab7bca031c45059418fa82a3c67369',''),(18523,'{22357}>{22358}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higher than dequeue rate','',0,0,3,0,'Enqueue rate is higher than dequeue rate. It may indicate performance problems.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higher than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:\"{#JMXDESTINATIONNAME}\"}','344a0b83a5444d009aa56e97c1c0171b',''),(18524,'{28258}>{$ACTIVEMQ.EXPIRED.WARN:\"{#JMXDESTINATIONNAME}\"}','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count is high','',0,0,3,0,'This metric represents the number of messages that expired before they could be delivered. If you expect all messages to be delivered and acknowledged within a certain amount of time, you can set an expiration for each message, and investigate if your ExpiredCount metric rises above zero.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count higher than {$ACTIVEMQ.EXPIRED.WARN:\"{#JMXDESTINATIONNAME}\"}','a498405c5b764c1ea9f0e151adf94ed7',''),(18525,'{22360}>{$ACTIVEMQ.QUEUE.WARN:\"{#JMXDESTINATIONNAME}\"} and {$ACTIVEMQ.QUEUE.ENABLED:\"{#JMXDESTINATIONNAME}\"}=1','{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size is high','',0,0,3,0,'Queue size is higher than threshold. It may indicate performance problems.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size higher than {$ACTIVEMQ.QUEUE.WARN:\"{#JMXDESTINATIONNAME}\"} for {$ACTIVEMQ.QUEUE.TIME:\"{#JMXDESTINATIONNAME}\"}','f1c49943152c407088e3bf288b650b41',''),(18526,'{22361}/{22362}*100>{$GITLAB.PUMA.UTILIZATION.MAX.WARN}','GitLab: Puma instance thread utilization is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'GitLab: Puma instance thread utilization is too high (over {$GITLAB.PUMA.UTILIZATION.MAX.WARN}% for 5m)','b69fe81449bd4b6cb6dfddeb333e8898',''),(18527,'{22363}>{22364}/100*{$SQUID.PAGE.FAULT.WARN}','Squid: High sys page faults rate','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Squid: High sys page faults rate (>{$SQUID.PAGE.FAULT.WARN}% of received HTTP requests)','89a1cfe0f02f4da880f197c2e5605db8',''),(18528,'{22365}>75','Remote Zabbix server: Utilization of report manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{22365}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of report manager processes over 75%','32d6f18edd5a45e1999f294f227c600f',''),(18529,'{22366}>75','Remote Zabbix server: Utilization of report writer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{22366}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of report writer processes over 75%','83fa871d54f74c89a7c85d429d40da53',''),(18530,'{22367}>75','Zabbix server: Utilization of report manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{22367}<65',0,'',0,'',0,'Zabbix server: Utilization of report manager processes over 75%','82f774b4a47247f49db1ab0480a69eae',''),(18531,'{22368}>75','Zabbix server: Utilization of report writer processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{22368}<65',0,'',0,'',0,'Zabbix server: Utilization of report writer processes over 75%','03158d902b854b3495aa76042f361bea',''),(18534,'{22371}>{$MSSQL.WORK_FILES.MAX}','MSSQL: Number of work files created per second is high','',0,0,3,0,'Too many work files created per second to store temporary results for hash joins and hash aggregates.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Number of work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m)','2f7e2dd4a94e4e92b468f4e2e2364f71',''),(18535,'{22372}>{$MSSQL.WORK_TABLES.MAX}','MSSQL: Number of work tables created per second is high','',0,0,3,0,'Too many work tables created per second to store temporary results for query spool, lob variables, XML variables, and cursors.','',NULL,0,0,0,0,'',0,'',0,'',0,'MSSQL: Number of work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m)','0214004de3084ce6b35d5bba53a66947',''),(18536,'{22373}>{$MSSQL.BACKUP_DIFF.CRIT:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Diff backup is old','',0,0,4,0,'The differential backup has not been executed for a long time.','',NULL,0,0,2,0,'',0,'',1,'Time since last backup: {ITEM.LASTVALUE1}',0,'MSSQL DB \'{#DBNAME}\': Diff backup older than {$MSSQL.BACKUP_DIFF.CRIT:\"{#DBNAME}\"}','036892c6b9de41c698a4e9acd5457e6a',''),(18537,'{22374}>{$MSSQL.BACKUP_DIFF.WARN:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Diff backup is old','',0,0,2,0,'The differential backup has not been executed for a long time.','',NULL,0,0,2,0,'',0,'',1,'Time since last backup: {ITEM.LASTVALUE1}',0,'MSSQL DB \'{#DBNAME}\': Diff backup older than {$MSSQL.BACKUP_DIFF.WARN:\"{#DBNAME}\"}','9a294163ee034fc6a58f5534a7d79aac',''),(18538,'{22375}>{$MSSQL.BACKUP_FULL.CRIT:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Full backup is old','',0,0,4,0,'The full backup has not been executed for a long time.','',NULL,0,0,2,0,'',0,'',1,'Time since last backup: {ITEM.LASTVALUE1}',0,'MSSQL DB \'{#DBNAME}\': Full backup older than {$MSSQL.BACKUP_FULL.CRIT:\"{#DBNAME}\"}','09c8e059ffa44d0eb1be626b5d820dc9',''),(18539,'{22376}>{$MSSQL.BACKUP_FULL.WARN:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Full backup is old','',0,0,2,0,'The full backup has not been executed for a long time.','',NULL,0,0,2,0,'',0,'',1,'Time since last backup: {ITEM.LASTVALUE1}',0,'MSSQL DB \'{#DBNAME}\': Full backup older than {$MSSQL.BACKUP_FULL.WARN:\"{#DBNAME}\"}','b380d76b1055482ca8cd69c90611f1a5',''),(18540,'{22377}>{$MSSQL.BACKUP_LOG.CRIT:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Log backup is old','',0,0,4,0,'The log backup has not been executed for a long time.','',NULL,0,0,2,0,'',0,'',1,'Time since last backup: {ITEM.LASTVALUE1}',0,'MSSQL DB \'{#DBNAME}\': Log backup older than {$MSSQL.BACKUP_LOG.CRIT:\"{#DBNAME}\"}','4a6e76dc9a5148649d07e35e962b5893',''),(18541,'{22378}>{$MSSQL.BACKUP_LOG.WARN:\"{#DBNAME}\"}','MSSQL DB \'{#DBNAME}\': Log backup is old','',0,0,2,0,'The log backup has not been executed for a long time.','',NULL,0,0,2,0,'',0,'',1,'Time since last backup: {ITEM.LASTVALUE1}',0,'MSSQL DB \'{#DBNAME}\': Log backup older than {$MSSQL.BACKUP_LOG.WARN:\"{#DBNAME}\"}','6000420450cf453bae3652c7f7d05e2b',''),(18542,'{22379}=0','MSSQL Job \'{#JOBNAME}\': Failed to run','',0,0,2,0,'The last run of the job has failed.','',NULL,0,0,2,0,'',0,'',1,'',0,'','304f468605164fd2baa1905cedf2c897',''),(18543,'{22380}>{$MSSQL.BACKUP_DURATION.WARN:\"{#JOBNAME}\"}','MSSQL Job \'{#JOBNAME}\': Job duration is high','',0,0,2,0,'The job is taking too long.','',NULL,0,0,2,0,'',0,'',1,'Job duration: {ITEM.LASTVALUE1}',0,'MSSQL Job \'{#JOBNAME}\': Job duration is greater than {$MSSQL.BACKUP_DURATION.WARN:\"{#JOBNAME}\"}','7e45cb8f41114388ac8772006d929da2',''),(18544,'{22381}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','',0,0,2,0,'The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','0e8ea91d72a64507aaadf9ea5efa6412',''),(18545,'{22382}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','',0,0,2,0,'The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','d785a37fe8d7484d9998e47e0e1d741f',''),(18546,'{22383}<{$MYSQL.BUFF_UTIL.MIN.WARN}','MySQL: Buffer pool utilization is too low','',0,0,2,0,'The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment.','',NULL,0,0,0,0,'',0,'',0,'',0,'MySQL: Buffer pool utilization is too low (less than {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m)','f4c2e4edf0c34bb1856ed392f2bc7c87',''),(18547,'{22384} > {$ORACLE.CONCURRENCY.MAX.WARN}','Oracle: Too high database concurrency','',0,0,2,0,'The concurrency rate exceeds {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but it is a signal to search for it. In the case of high competition, the analysis of resource consumption should be carried out. Which are the most \"heavy\" queries made in the database? Possibly, also session tracing. All this will help to determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too high database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min)','ff16c7bbeaa5439f98ffe12ce7deff71',''),(18548,'{22385} > {$ORACLE.CONCURRENCY.MAX.WARN}','Oracle: Too high database concurrency','',0,0,2,0,'The concurrency rate exceeds {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but it is a signal to search for it. In the case of high competition, the analysis of resource consumption should be carried out. Which are the most \"heavy\" queries made in the database? Possibly, also session tracing. All this will help to determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself.','',NULL,0,0,0,0,'',0,'',0,'',0,'Oracle: Too high database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min)','7099e4a160c1446395b9e5b721db7b38',''),(18549,'{22386}=0','PD: Instance is not responding','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ab1d0d23dad844099e42debb71512887',''),(18550,'{22387}<10m','PD: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'PD: has been restarted (uptime < 10m)','9f47a19f6f424df598e74c5a653ebf27',''),(18551,'{23515}<>{23516} and length({23517})>0','PD: Version has changed','',0,0,1,0,'PD version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'PD: Version has changed (new version: {ITEM.VALUE})','6fb6045405af4c89b09750f57ada472a',''),(18552,'{22390}/{22391}*100>{$PD.STORAGE_USAGE.MAX.WARN}','TiDB cluster: Current storage usage is too high','',0,0,2,0,'Over {$PD.STORAGE_USAGE.MAX.WARN}% of the cluster space is occupied.','',NULL,0,0,2,0,'',0,'',0,'',0,'TiDB cluster: Current storage usage is too high (over {$PD.STORAGE_USAGE.MAX.WARN}% for 5m)','843d566b33bc401390c2a633d08bb033',''),(18553,'{22392}>0','TiDB cluster: There are disconnected TiKV nodes','',0,0,2,0,'PD does not receive a TiKV heartbeat within 20 seconds. Normally a TiKV heartbeat comes in every 10 seconds.','',NULL,0,0,2,0,'',0,'',0,'',0,'','077d39f8ea194081a9d0c5dfdec4d1b5',''),(18554,'{22393}>0','TiDB cluster: There are offline TiKV nodes','',0,0,3,0,'PD has not received a TiKV heartbeat for a long time.','',NULL,0,0,2,0,'',0,'',0,'',0,'','526b935d3fa04825b7544eb6efd50ab5',''),(18555,'{22394}>0','TiDB cluster: There are low space TiKV nodes','',0,0,3,0,'Indicates that there is no sufficient space on the TiKV node.','',NULL,0,0,2,0,'',0,'',0,'',0,'','87ef0f211afd4d58adec05007ef1d263',''),(18556,'{22395}>0','TiDB cluster: There are unresponsive peers','',0,0,2,0,'The number of Regions with an unresponsive peer reported by the Raft leader.','',NULL,0,0,2,0,'',0,'',0,'',1,'','2bc6b48bbfd8436e80903ea947571501',''),(18557,'{22396}>{$PD.MISS_REGION.MAX.WARN}','TiDB cluster: Too many missed regions','',0,0,2,0,'The number of Region replicas is smaller than the value of max-replicas. When a TiKV machine is down and its downtime exceeds max-down-time, it usually leads to missing replicas for some Regions during a period of time. When a TiKV node is made offline, it might result in a small number of Regions with missing replicas.','',NULL,0,0,2,0,'',0,'',0,'',1,'TiDB cluster: Too many missed regions (over {$PD.MISS_REGION.MAX.WARN} in 5m)','1f80bd81d11345f59699617113a0cad5',''),(18558,'{22397}/{22398}*100>{$TIDB.OPEN.FDS.MAX.WARN}','TiDB: Current number of open files is too high','',0,0,2,0,'Heavy file descriptor usage (i.e., near the process\'s file descriptor limit) indicates a potential file descriptor exhaustion issue.','',NULL,0,0,0,0,'',0,'',0,'',0,'TiDB: Current number of open files is too high (over {$TIDB.OPEN.FDS.MAX.WARN}% for 5m)','cfd6ba0dbf294b9e9ab6afc7d44be7b3',''),(18559,'{22399}>{$TIDB.DDL.WAITING.MAX.WARN}','TiDB: Too many DDL waiting jobs','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'TiDB: Too many DDL waiting jobs (over {$TIDB.DDL.WAITING.MAX.WARN} for 5m)','4125d55d9931455091d2f3a0b25e9678',''),(18560,'{22400}>{$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN}','TiDB: Too many schema lease errors','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'TiDB: Too many schema lease errors (over {$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN} for 5m)','b4948f37af804c01a2b8887f9e89ec90',''),(18561,'{22401}>{$TIDB.HEAP.USAGE.MAX.WARN}','TiDB: Heap memory usage is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'TiDB: Heap memory usage is too high (over {$TIDB.HEAP.USAGE.MAX.WARN} for 5m)','575a4821ed8c4a1881b7f9bd264b1929',''),(18562,'{22402}<{$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN}','TiDB: Too few keep alive operations','',0,0,3,0,'Indicates whether the TiDB process still exists. If the number of times for tidb_monitor_keep_alive_total increases less than 10 per minute, the TiDB process might already exit and an alert is triggered.','',NULL,0,0,0,0,'',0,'',0,'',0,'TiDB: Too few keep alive operations (less {$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN} for 5m)','eb3c09904fa843d78401b00eff4f6a08',''),(18563,'{22403}>{$TIDB.TIME_JUMP_BACK.MAX.WARN}','TiDB: Too many time jump backs','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'TiDB: Too many time jump backs (over {$TIDB.TIME_JUMP_BACK.MAX.WARN} for 5m)','c3c1f6eab224453b92534d5393aca2b7',''),(18564,'{22404}>{$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN}','TiDB: Too many schema lease errors','',0,0,3,0,'The latest schema information is not reloaded in TiDB within one lease.','',NULL,0,0,0,0,'',0,'',0,'',0,'TiDB: Too many schema lease errors (over {$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN} for 5m)','b077eb1afe6a4da79707987324fb40c8',''),(18565,'{22405}=0','TiDB: Instance is not responding','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','82a638ac4a3f4b349ee7bb0d53bc1f29',''),(18566,'{22406}>0','TiDB: There are panicked TiDB threads','',0,0,3,0,'When a panic occurs, an alert is triggered. The thread is often recovered, otherwise, TiDB will frequently restart.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c457465731c947eab7b477186d8ba876',''),(18567,'{22407}>{$TIDB.REGION_ERROR.MAX.WARN}','TiDB: Too many region related errors','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'TiDB: Too many region related errors (over {$TIDB.REGION_ERROR.MAX.WARN} for 5m)','d3cb81c46e414ff2a7e411a877b899ef',''),(18568,'{22408}<10m','TiDB: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'TiDB: has been restarted (uptime < 10m)','91adc4c6b9364693891faf58c8cced75',''),(18569,'{23518}<>{23519} and length({23520})>0','TiDB: Version has changed','',0,0,1,0,'TiDB version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'TiDB: Version has changed (new version: {ITEM.VALUE})','5f863fc0944848fdad145f42c94dbea3',''),(18570,'{22411}>{$TIDB.GC_ACTIONS.ERRORS.MAX.WARN}','TiDB: Too many failed GC-related operations','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',1,'TiDB: Too many failed GC-related operations (over {$TIDB.GC_ACTIONS.ERRORS.MAX.WARN} in 5m)','2d24956d0a4f459fad155590376696c1',''),(18571,'{22412}>{$TIKV.COPOCESSOR.ERRORS.MAX.WARN}','TiKV: Too many coprocessor request error','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'TiKV: Too many coprocessor request error (over {$TIKV.COPOCESSOR.ERRORS.MAX.WARN} in 5m)','31eca27ff6ce4ed78ee428ed3b8d8806',''),(18573,'{22414}>{$TIKV.PENDING_TASKS.MAX.WARN}','TiKV: Too many pending tasks','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'TiKV: Too many pending tasks (over {$TIKV.PENDING_TASKS.MAX.WARN} for 5m)','f26874f910e34933983685ae43a90bee',''),(18574,'{22415}<10m','TiKV: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'TiKV: has been restarted (uptime < 10m)','ca06602fa0b64a2ba0c51ed4835c52b2',''),(18575,'{22416}>{$TIKV.STORE.ERRORS.MAX.WARN}','TiKV: Store_id {#STORE_ID}: Too many failure messages \"{#TYPE}\"','',0,0,2,0,'Indicates that the remote TiKV cannot be connected.','',NULL,0,0,2,0,'',0,'',0,'',1,'TiKV: Store_id {#STORE_ID}: Too many failure messages \"{#TYPE}\" (over {$TIKV.STORE.ERRORS.MAX.WARN} in 5m)','1f65b64824d64852aaa609df5f3e27fd',''),(18576,'{22417} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','1800690ba0504df9940a4e667c846132',''),(18577,'{22418}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b4d10f8908f4473facde6d2db1520e0f',''),(18578,'{22419}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d84ec0d0b8d84e3294cbe7ffaed0c83e',''),(18579,'{22420}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','8f569ce6c916456581e1cb2cdd8d4dba',''),(18580,'{22421} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','0e1f47f0604d4b1b8769e497d7f328b9',''),(18581,'{22422} > 0 and ({22422} > {$UPS.INPUT_FREQ.MAX.WARN} or {22423} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','786d9928356e41ad9b6b2de3b4f3a96f',''),(18582,'{22424} > 0 and ({22424} > {$UPS.INPUT_VOLT.MAX.WARN} or {22425} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','de88ed3b64644d3f9ad1cc3f965757bc',''),(18583,'{22426} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','fb7ca4b92e714fda95152b698cf1aa92',''),(18584,'{22427}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','efed1ccf301740c1a29e71cd89e5659f',''),(18585,'{22428}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','44394841911641c4972165b59b8f6a5b',''),(18586,'{22429}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d60b075bfaaa4aeea2398d058fb79c92',''),(18587,'{22430}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','4d54e6e979f94801a3c1e9d6080886bb',''),(18588,'{22431}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','eb430f5409a24f89b0a9e56fb28087c4',''),(18589,'{22432}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','77dbd58283b542cfbca9a9255344e97e',''),(18590,'{22433}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3856ff4ac1d64f8e80c4e0cbb1e04c1a',''),(18591,'{22434}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','10d8d392f93a492b9be767c7ccdf06ed',''),(18592,'{22435}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2ab92cb281754de6ad5245509c20056d',''),(18593,'{22436}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','8fabe8958cfd4dbbabd70648dff1be06',''),(18594,'{22437}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9846ac1bbf024e63a05a83e2c02de7ba',''),(18595,'{24371}<>{24372} and length({24373})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','811ff6e90d904c8c98feadc89a18e733',''),(18596,'({32356}>0 and {32356}<10m) or ({32356}=0 and {32357}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','5c50881846c649dbb47adcfb3dfc7d68',''),(18597,'{22441}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e12b11324a634eeba56db1aec1834d5f',''),(18598,'{22442}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','94e469f639cb4ae4ab3ac23918cfa651',''),(18599,'{22443}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','60bf7de80cd741caa1c622e797da1d69',''),(18600,'{22444} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','bdd4bb9fac784bc0b0dc72db3ac9e040',''),(18601,'{22445}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','93d474d1badc45d5a48fe0e610744ff6',''),(18602,'{22446}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','48fa5f120bd5495185a9d6f86fc823fd',''),(18603,'{22447}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b0652e627c10477c9e61786d85560d93',''),(18604,'{22448}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','55acc85739e04ebea3414059907ef2e4',''),(18605,'{22449}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e8753aa5ca16449c8dc21af6c8c2a727',''),(18606,'{22450}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d16c60a30b5d46459237eef4df38df9f',''),(18607,'{22451} > {$UPS.INPUT_VOLT.MAX.WARN} or {22452} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','1824f0be30284d13bad9f895f7adaa0e',''),(18608,'{22453} > {$UPS.INPUT_VOLT.MAX.WARN} or {22454} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','675dc7c59e974f7eadd5d1562dec00ce',''),(18609,'{22455} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','58a0749ef9c94cf9802a62d274b6dad9',''),(18610,'{22456}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','8370727883de45dfa6b6d79f60cc86b3',''),(18611,'{22457}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2fb002b1a4584aa0bf0389360171893c',''),(18612,'{22458}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','05aa81dc53ab45ffaf46580c9f827759',''),(18613,'{22459} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1e8c0b3d2d65487199e7fc3e1dde6e50',''),(18614,'{22460} > 0 and ({22460} > {$UPS.INPUT_FREQ.MAX.WARN} or {22461} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b89b059a430842aebbd3e6af71514303',''),(18615,'{22462} > 0 and ({22462} > {$UPS.INPUT_VOLT.MAX.WARN} or {22463} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','2dbc2b96d332488cae4cbf87c985c6b0',''),(18616,'{22464} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','edb059eeee004d80a9b42154f16ab18a',''),(18617,'{22465}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','20ffc78c2f314ff58b5e75907605c82f',''),(18618,'{22466}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ec6e892f4c51414f887d428510d889e7',''),(18619,'{22467}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f4cb0ed7e65d4ea29394435cce7600f0',''),(18620,'{22468}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e29c2a37586f474f87c388fa8eaf8b9c',''),(18621,'{22469}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','a07afe38040c4fd08488786ca3f529e5',''),(18622,'{22470}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','58f44a830386434db0f76553f64ebe67',''),(18623,'{22471}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','eb99c49157a948769128bc9eeeaff3fc',''),(18624,'{22472}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b3d77823096e4bf4a06db8f2307284db',''),(18625,'{22473}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','000d6b412dd3467aaee40ce230cc059e',''),(18626,'{22474}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f1f86a1f23c745658d0c5d10557f67fc',''),(18627,'{22475}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','434d70c967a9447a9fa927fc2867aa6d',''),(18628,'{24374}<>{24375} and length({24376})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','30153a623f0649e380de8f9ec5086b48',''),(18629,'({32358}>0 and {32358}<10m) or ({32358}=0 and {32359}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','f23282a63bec4b1d951f80439947672d',''),(18630,'{22479}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e9dc225935594e8aa25fb80fcfa68e4c',''),(18631,'{22480}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','02e19fb51d6949cdb99a6aafa71ff654',''),(18632,'{22481}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','a4f42d0a944f41349e0d206f1181bd3b',''),(18633,'{22482} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','cb9603c5b7674e12a1a1ac98d4b73a65',''),(18634,'{22483}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','603b13b89c7b4ad0bd51d63b93501174',''),(18635,'{22484}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9e108d20e6c74e8b96d92f4ce0e7c840',''),(18636,'{22485}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','007b2f89fc1f445c8e5afb06a176748d',''),(18637,'{22486}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7639c07a79054f9b99687f84db5c95a0',''),(18638,'{22487}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a499a1af78a04c77a21c424f3e790787',''),(18639,'{22488}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c6fc64bbdb3845d5b80d868c392259ac',''),(18640,'{22489} > {$UPS.INPUT_VOLT.MAX.WARN} or {22490} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','0e9c22ab97cb4db8b96fb907e4b21e04',''),(18641,'{22491} > {$UPS.INPUT_VOLT.MAX.WARN} or {22492} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','91ac886a5dda41cdb6a6912672d70625',''),(18642,'{22493} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','13fe1336e40c4bafb8dbd409497abf8f',''),(18643,'{22494}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','4590ac935e044c19978fe01d117e2995',''),(18644,'{22495}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','e98ba83e63d246408aeeda76da62d5a4',''),(18645,'{22496}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','51e3281c49454cf997561c857a34a803',''),(18646,'{22497} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1c67af712882479bbf7143bd3e16ed77',''),(18647,'{22498} > 0 and ({22498} > {$UPS.INPUT_FREQ.MAX.WARN} or {22499} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','78e47553d4bb488991067f53cc8f8a01',''),(18648,'{22500} > 0 and ({22500} > {$UPS.INPUT_VOLT.MAX.WARN} or {22501} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','28ad85fa6035433f9a7ec45a8393b603',''),(18649,'{22502} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','f667172a5cf44ed6b98f2bb38a3f3806',''),(18650,'{22503}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','80e30d37b1724c6ba1d58cedbcf6307f',''),(18651,'{22504}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9bb143ada4194c0084eb70af7bb2c5dc',''),(18652,'{22505}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','7132f256542540acadb0caf90144a29c',''),(18653,'{22506}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','737693e5e4274823a9a21ff92a6ca98a',''),(18654,'{22507}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c2fd31cfe3b8474f80b52a2340108b6a',''),(18655,'{22508}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2c3a2e962c1e45f6858e5c1aaecee4a3',''),(18656,'{22509}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','59d415b15bbf43de85453f5b2ffb73d7',''),(18657,'{22510}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6811d34cec57401089af9accfd66ca8f',''),(18658,'{22511}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3c96ce14f54a4a59a2568f1f62117e7b',''),(18659,'{22512}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','60e83c77157741cbb3d24920e87d7d59',''),(18660,'{22513}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','da442de0e8874736aaab88f009aabe76',''),(18661,'{24377}<>{24378} and length({24379})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','c9b1f69a882148a180ec1e2600068671',''),(18662,'({32360}>0 and {32360}<10m) or ({32360}=0 and {32361}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','15764a5819174d3fadc75436f42650fb',''),(18663,'{22517}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','71994587c45546bfb0950606d7f69936',''),(18664,'{22518}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','400987be93b34a78865685fedb72a5ee',''),(18665,'{22519}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','03a100c0bb8d457690e2467c502fcadb',''),(18666,'{22520} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','9760f6a951a64e3fa6c67a9dd751f79a',''),(18667,'{22521}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9ba51ee0398444e1bd12cb805c1f7452',''),(18668,'{22522}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','490e952dfac944afb23eb0e72e081db3',''),(18669,'{22523}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8b740b88389b457eaa4d1d6c768ec8ae',''),(18670,'{22524}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','944fd36a2ad14fd29dd063ad03197cd7',''),(18671,'{22525}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1a4473a5e1bf4fbbb5761fdb141769c0',''),(18672,'{22526}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','af8e01a221b84c73a3f67ab84ed9cfa0',''),(18673,'{22527} > {$UPS.INPUT_VOLT.MAX.WARN} or {22528} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','709ad3894aca49f0be051d338d4ffaed',''),(18674,'{22529} > {$UPS.INPUT_VOLT.MAX.WARN} or {22530} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','dbdf66b61dce4b6dbf49371e9b1f8146',''),(18675,'{22531} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','8ab182b26a0443539a1a114767d8acd7',''),(18676,'{22532}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ab0db1327cf04a9c9a9ee757f0869603',''),(18677,'{22533}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c8787a09c2ea4aeb977b868ae0a3218b',''),(18678,'{22534}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','40d1fdcec63d4c3785b5ba77fbd14ee7',''),(18679,'{22535} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','e2debe06675d4d4584b60b768633887b',''),(18680,'{22536} > 0 and ({22536} > {$UPS.INPUT_FREQ.MAX.WARN} or {22537} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b29cd7e33c1e4e16b10fe436c1f7e6d6',''),(18681,'{22538} > 0 and ({22538} > {$UPS.INPUT_VOLT.MAX.WARN} or {22539} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','d38f2151f0eb486e8d44b72a2e361a5f',''),(18682,'{22540} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','57197c601f8a433d8ccdcb040d047f6f',''),(18683,'{22541}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e9289d8f4e124097990e2af98e916368',''),(18684,'{22542}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','13735964f51d4d1bb17e6b0587a43020',''),(18685,'{22543}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d74ae82199884a7fb4a20b48f3c7ff1f',''),(18686,'{22544}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','4df5271075904c228a0372d5f667530e',''),(18687,'{22545}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3f02d9cb7f5142599e59e7781808e5c3',''),(18688,'{22546}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','515ad03892694fd4a2f2350a6bb8af6f',''),(18689,'{22547}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2a2d35e4e4674b6aa49068a7970caa03',''),(18690,'{22548}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ef1ddb8869074847b70e8f669883c56b',''),(18691,'{22549}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0d6e4e664ddf425e8c03155802fe45be',''),(18692,'{22550}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','12a3a33152824ffe863a8d79c1372195',''),(18693,'{22551}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','273c561c2afb4d78be86218e370c9a1f',''),(18694,'{24380}<>{24381} and length({24382})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','b13b087b9828426aac82a281071ceb8b',''),(18695,'({32362}>0 and {32362}<10m) or ({32362}=0 and {32363}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','87ebd137f2744ae6879d6fd9d51314ef',''),(18696,'{22555}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','53263bf0536d479785b45883b9b7ab21',''),(18697,'{22556}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','c1eefbeeb0d146c3bea5cae929d0c30b',''),(18698,'{22557}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','28b8fb69a85549288cf0e26b9ca0a2cf',''),(18699,'{22558} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','fa007fcfbe7c499d8f97a808991f2800',''),(18700,'{22559}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','175c1def62ac412eb5f9ef015a9b8ac3',''),(18701,'{22560}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e7610cf822674591bea6ed7ba5e4198d',''),(18702,'{22561}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','44353bbfcfbe42e59d2e58b544d32b43',''),(18703,'{22562}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5e937c991aa146fe98c1a4f868be6b70',''),(18704,'{22563}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f8dd227322784a708ae6297e796177f9',''),(18705,'{22564}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b142607d33e9447d88f23fc3ff7dc11d',''),(18706,'{22565} > {$UPS.INPUT_VOLT.MAX.WARN} or {22566} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','971301abf4d6457da125fd7ebd903728',''),(18707,'{22567} > {$UPS.INPUT_VOLT.MAX.WARN} or {22568} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','d7167a129de146d19218edb85c82c69b',''),(18708,'{22569} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','b5d618c6090447429191fe4d07e85afa',''),(18709,'{22570}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','dc92c19a5b7e43a4b155d6d51912aaf8',''),(18710,'{22571}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','70c32834ea40487c8f13a55b7ed7c88f',''),(18711,'{22572}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','e7aeaae896664729b66b42a94f626f9b',''),(18712,'{22573} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','33695c02cf6141f78e21ca899af10c03',''),(18713,'{22574} > 0 and ({22574} > {$UPS.INPUT_FREQ.MAX.WARN} or {22575} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','167de2d832984944878767571b0b5fe4',''),(18714,'{22576} > 0 and ({22576} > {$UPS.INPUT_VOLT.MAX.WARN} or {22577} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8741bc0081a4a9db2824c9f93ecb399',''),(18715,'{22578} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','a4faec3975134cd59e83f1ca7fa3ef7d',''),(18716,'{22579}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','deedd977f1ed4b9fbb5cc161dde0c116',''),(18717,'{22580}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','a7bbe6ca410743919f7c611a6faec9ba',''),(18718,'{22581}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','974042a124b945068c6c16c4a01433dc',''),(18719,'{22582}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','90e810043e41467b8460278fc7923397',''),(18720,'{22583}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','656ae233f3a946799c3ed3d48914c0b0',''),(18721,'{22584}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','3fcbd14931854831ac603a254ffea0c3',''),(18722,'{22585}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','65085178eef54189afdaf4937de49177',''),(18723,'{22586}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0aa402907ee446c0a13fa086b500fa87',''),(18724,'{22587}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','be6cdd1fc22a4f0eacdbce4361cd6788',''),(18725,'{22588}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b4375fc980ae4bee87531d18ea9a5397',''),(18726,'{22589}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','7ae9e31ac32944928065d1cefb2c4e2f',''),(18727,'{24383}<>{24384} and length({24385})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','31bb0ff1ea334cd59d9f8b8f489611ef',''),(18728,'({32364}>0 and {32364}<10m) or ({32364}=0 and {32365}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','860d3beb50c0400283a71c2c4b4ea5e2',''),(18729,'{22593}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','21fc3a198f3b423fa14676278f53a4be',''),(18730,'{22594}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','c353d8e0b0584c6c8ba81514f5c66995',''),(18731,'{22595}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','26535b11c27b4fbe92285b56cbbf5a73',''),(18732,'{22596} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','7f8613d752524d588e60aa1cab2c60bd',''),(18733,'{22597}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','40e22c5379f34edf87d1ea52ffae60b8',''),(18734,'{22598}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a482de04a5d34807874fc7a7c506dd40',''),(18735,'{22599}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dca875c511b04dc1857de74223c4f27b',''),(18736,'{22600}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','650a1d16e56c45188c6246e960d62857',''),(18737,'{22601}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7518ae06e3a14866b9e6d90a224055f7',''),(18738,'{22602}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','65aa8a5380f141498dd9c718972110b3',''),(18739,'{22603} > {$UPS.INPUT_VOLT.MAX.WARN} or {22604} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','8c9226411afb4b32ba3e9d6232ff4710',''),(18740,'{22605} > {$UPS.INPUT_VOLT.MAX.WARN} or {22606} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','58e0697a9a9147a4b1dfda251f2b593e',''),(18774,'{22645} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','92e6a65ffc6d4a6bae62303ee2796580',''),(18775,'{22646}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','0e8030c0028144728361153c2b47016b',''),(18776,'{22647}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','cf186014cfd94ccbad3cc4cbd22b6aa1',''),(18777,'{22648}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','e1957ee82be847e7bfb171560fc59293',''),(18778,'{22649} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','1e883961b65e445997c57870734a58ca',''),(18779,'{22650} > 0 and ({22650} > {$UPS.INPUT_FREQ.MAX.WARN} or {22651} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','b9a134c942da46ffba1acdf85a7832e4',''),(18780,'{22652} > 0 and ({22652} > {$UPS.INPUT_VOLT.MAX.WARN} or {22653} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','694ab76079b1447b99ef510d80faab6a',''),(18781,'{22654} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','68f92026e7b345c88bf4aa679f9b642c',''),(18782,'{22655}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9952679fada845228bbbf05bcdada305',''),(18783,'{22656}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ee306606159f4930bcf580b5084c846a',''),(18784,'{22657}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c4623dc4c6ae4c5b9ff4bdf4f43ed8b2',''),(18785,'{22658}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','26c0b9b62d864c1ead7b16e0076a7226',''),(18786,'{22659}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','5c8408069c03421cb60b388451869b6f',''),(18787,'{22660}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','156c5260ed4444c19313ba491ce9352c',''),(18788,'{22661}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c233bc86198140659ec3dd609c94ec94',''),(18789,'{22662}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','944e49d1b6d44adc8d720bd689d8c8cf',''),(18790,'{22663}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9b376dbd2d614878b681b42bb2c7fe4d',''),(18791,'{22664}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','499ac46836c1454dad3c1ffc5714c073',''),(18792,'{22665}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','8a0a5af39647494681e52595d179c336',''),(18793,'{24389}<>{24390} and length({24391})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','852083234a55441aa2fa57b202227bef',''),(18794,'({32368}>0 and {32368}<10m) or ({32368}=0 and {32369}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','6f0fbe74ad4945e987e7ffdfa741d92f',''),(18795,'{22669}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9a0cb26712c14045a18a0e86de4cdd54',''),(18796,'{22670}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','2d9c4ef006994ebea581b895424203f3',''),(18797,'{22671}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','5358b97f94aa47f59351be88673407a0',''),(18798,'{22672} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','b88678e600694bc19ebaf57472d8658f',''),(18799,'{22673}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','33f4ac80a8d44752b97bc4f885a8c95f',''),(18800,'{22674}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1a2080a561394f8c8a0dc639cbf2c812',''),(18801,'{22675}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a53d5dd33e8548d5bcb73ffb936af910',''),(18802,'{22676}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9247973676c44377a4fa550990384eeb',''),(18803,'{22677}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6b054505c2704c8d8e38b096885bbbe5',''),(18804,'{22678}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f56f165d71084b75a716d04337f5fcb1',''),(18805,'{22679} > {$UPS.INPUT_VOLT.MAX.WARN} or {22680} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','755f972a32904dbf81a6da77f4ba57f0',''),(18806,'{22681} > {$UPS.INPUT_VOLT.MAX.WARN} or {22682} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','5846a7a3d56f43de8394823ed64a11ae',''),(18807,'{22683} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','aa0bbfb321d440438fb421825f23e140',''),(18808,'{24392}<>{24393} and length({24394})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','facbfd1f8bb04401b563c162d7fe13a5',''),(18809,'{22686}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','834b1a48cbab46a3bfb0209fb4302674',''),(18810,'{22687} > {$UPS.INPUT_VOLT.MAX.WARN} or {22688} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','feeb23a58ccb4ec1bed9d61f5d2ffc9e',''),(18811,'{22689} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','fdece80f2fc44ac1974fafe190ce186f',''),(18812,'{22690}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a1bd434a249b48b2ac0ef69ede417a72',''),(18813,'{22691}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','955d79a0cf5447dd9a11d4608758e983',''),(18814,'{22692}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','3ca8156ecc1c4ee4b5623c4a085b993f',''),(18815,'{22693} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','5b43659a10644a51861282bc72116f9f',''),(18816,'{22694} > 0 and ({22694} > {$UPS.INPUT_FREQ.MAX.WARN} or {22695} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','94a5c26b89e2416f96b61bbfc6e60a97',''),(18817,'{22696} > 0 and ({22696} > {$UPS.INPUT_VOLT.MAX.WARN} or {22697} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','2b640b94d48446609802ce6e57c7bd46',''),(18818,'{22698} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','34562b5c734d492c89c386902dfd6e90',''),(18819,'{22699}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6ade2b9fb9ad432596d16b3df6237ec4',''),(18820,'{22700}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','da9a0fa7669e454b8ba44c0458a94ea8',''),(18821,'{22701}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','01a2bcb5f20b4fe889a48e4bed2a2a63',''),(18822,'{22702}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d0b154dd92424af8bb841d91d4e7ddd5',''),(18823,'{22703}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','afc071d0ccfb4226a3c5ee3058270937',''),(18824,'{22704}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','12259f4a961a40b39de12d0202d41c56',''),(18825,'{22705}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ef9d1e4b1ec244f6bcf36d19a9e7c9c7',''),(18826,'{22706}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c673928e7b764b5db0fa3168edd2cc67',''),(18827,'{22707}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c9b24aa16e124d8c9cd6cfb188ded816',''),(18828,'{22708}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','02904426801d4d42b3f634267f8697e7',''),(18829,'{22709}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','fa08f8a60c2c4d88a3f9ebf317fcd06e',''),(18830,'{24395}<>{24396} and length({24397})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','61d0836efd33437894e1edd595373f1e',''),(18831,'({32372}>0 and {32372}<10m) or ({32372}=0 and {32373}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','9d0c32f93c0c44f69b54c91fabfa1529',''),(18832,'{22713}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','aeaaa7e2bd2d46a481f9d8b33ec18cb5',''),(18833,'{22714}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','2ea1a8d2bd3746dabafed72e1f6216fd',''),(18834,'{22715}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','3870634ad8c1414dabeebc10c510fba3',''),(18835,'{22716} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','730bdb68d90f4bc6aaf6cb22e04e1845',''),(18836,'{22717}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','97b4078788d244d0b501e9465c659ff7',''),(18837,'{22718}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','86cd9908372045618672d6ff82bca705',''),(18838,'{22719}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4ba13efc27da411785410109340b6a26',''),(18839,'{22720}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3155c8cf446c40d896755a25a46ec90b',''),(18840,'{22721}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9ef9a4dc80c84087b44b5f0e8aa94202',''),(18841,'{22722}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','74a3585b0cc74a4887eb3683fb1e6f64',''),(18842,'{22723} > {$UPS.INPUT_VOLT.MAX.WARN} or {22724} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','90e3258375e047b594deb0ecf7300c22',''),(18843,'{22725} > {$UPS.INPUT_VOLT.MAX.WARN} or {22726} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8c42d5d66d9403eba697920439ae956',''),(18844,'{22727} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','dbfdc4e6eaca4d65adcde13b0682c1c2',''),(18845,'{22728}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','0af287bae1ee44ba997a02ae585bdd4b',''),(18846,'{22729}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','aedb557acbe44390809a27b95919e10f',''),(18847,'{22730}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','1afe1859563f481faa623781028a38ca',''),(18848,'{22731} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','0b4490eaaf964fdabf228d34d2992d30',''),(18849,'{22732} > 0 and ({22732} > {$UPS.INPUT_FREQ.MAX.WARN} or {22733} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','af166242e3674f2da489a232c7bba6f1',''),(18850,'{22734} > 0 and ({22734} > {$UPS.INPUT_VOLT.MAX.WARN} or {22735} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','3b51bbae66914b19a93e7a2da289b056',''),(18851,'{22736} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','a25499c49d0043cda248136eb6307ef9',''),(18852,'{22737}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f7b0e2f05c9b4b14916f99ecb89fcd49',''),(18853,'{22738}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','77081726414047a5a1c698fcfbf19e73',''),(18854,'{22739}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','87beb54ac57848e3896fd715a5918a88',''),(18855,'{22740}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','5f46c436fab741ec86cb32339e8bd7b4',''),(18856,'{22741}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','a7457e3d6c6f4e99a3ccc08a1436d34a',''),(18857,'{22742}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','976395b6acea4f5cb4f7f3d4f0bc67af',''),(18858,'{22743}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','72c9677a2157412ebd14004a5e024a3a',''),(18859,'{22744}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','75d189cd8b5944c4b7987931c834e949',''),(18860,'{22745}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','24e1cfde22da48b0bf28ca2cdf8cd917',''),(18861,'{22746}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','4fff7b4a29b84cdea245b2704e357f5d',''),(18862,'{22747}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','647178a4cb674815a65517c073b4adee',''),(18863,'{24398}<>{24399} and length({24400})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','e3cf119c19b54dddb3d26d9b789ea4f5',''),(18864,'({32374}>0 and {32374}<10m) or ({32374}=0 and {32375}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','fb2b4e564040422da234cdb309163b7b',''),(18865,'{22751}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','56f25581382a43efbddd4aba44aa86b3',''),(18866,'{22752}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','002caa5fac72437187ab9711eb2fc7ad',''),(18867,'{22753}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','9ca2e1e1a81e4e2388f735c03f9bc1de',''),(18868,'{22754} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','b9a868a2f4a0410e9a03744eef9a5515',''),(18869,'{22755}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1e6fa00989994e6f885c9ce2fde6ab24',''),(18870,'{22756}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b8b78dcb3f6d47e583565b7588cf9f4c',''),(18871,'{22757}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ba421cf1871a4bcabb06f92be0a983dc',''),(18872,'{22758}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','97ef6f2fc4374174912b16db90b615a8',''),(18873,'{22759}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','39db14da83714689b6bac140a9347c64',''),(18874,'{22760}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d318122e192a401c95f24ad17d3bda93',''),(18875,'{22761} > {$UPS.INPUT_VOLT.MAX.WARN} or {22762} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','341c10188b984ce7aac7bb995847b69e',''),(18876,'{22763} > {$UPS.INPUT_VOLT.MAX.WARN} or {22764} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','85551dd4ca0b4ef6994348891ad77b57',''),(18877,'{22765} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','5626e87891ec4c28a17a6b5965b47e46',''),(18878,'{22766}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a74eccd4442c401a98ac3c80dd3baa13',''),(18879,'{22767}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','107454c372cb413bad4d4a807c254ae0',''),(18880,'{22768}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','4a410279dba04d37924eade4bb927228',''),(18881,'{22769} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','225ccc34992f4c718277b436bfecdc72',''),(18882,'{22770} > 0 and ({22770} > {$UPS.INPUT_FREQ.MAX.WARN} or {22771} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','03b674d215604dc8acc3449610b05878',''),(18883,'{22772} > 0 and ({22772} > {$UPS.INPUT_VOLT.MAX.WARN} or {22773} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','bf495f3ffefd4e65af488d91b360539c',''),(18884,'{22774} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','f2790aa869724c5bbeff6031561f2ca4',''),(18885,'{22775}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','48a2bee152664ede98bed55c05cc437d',''),(18886,'{22776}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ccd80d5877e0401b8f56f22ca2da2f94',''),(18887,'{22777}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','e54fd69ac4354716a107d4d094b387f0',''),(18888,'{22778}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','92df44ef170d471394f4cf8ff6882c39',''),(18889,'{22779}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b6f6c160466e43d8b7f210b2efdd8ca3',''),(18890,'{22780}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','7d6323e1a03a48efb9f349ecd7e10153',''),(18891,'{22781}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','18a31f11313b47c8ab9e9cd4791c1532',''),(18892,'{22782}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','142e25b05d1547f0a683f6caee773ef5',''),(18893,'{22783}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','b6e22e8295c84fbebb8061c96ddd75f9',''),(18894,'{22784}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','1c97c8ca6d6640fe829bf896f989bd91',''),(18895,'{22785}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0683dbba9f4b4480ba15e040b8b83211',''),(18896,'{24401}<>{24402} and length({24403})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','5224767a1bee42738c49361ddabfed4b',''),(18897,'({32376}>0 and {32376}<10m) or ({32376}=0 and {32377}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','990c0545543c42a78022589838a8a1ff',''),(18898,'{22789}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c0ad0941746546aeb6de2fee087c8252',''),(18899,'{22790}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','3a48257337a84a2296db92410a8aed8c',''),(18900,'{22791}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','4498d376328e405bad7da5f1832cde8a',''),(18901,'{22792} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','f710e2b952054f35ab6e3e8e90ab7f83',''),(18902,'{22793}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0de21ba7495d41f4834170122620c37d',''),(18903,'{22794}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','69fbc11262f74fdfb49da43bb59c1810',''),(18904,'{22795}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0ce46cad353c4299ad5540a831b5c467',''),(18905,'{22796}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f27f80f391a04927bb138ba66d48d364',''),(18906,'{22797}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a84e1b5140b643ad8bee020d74821255',''),(18907,'{22798}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b67ed4a3ce5a49e4ac4079e258d7fe7c',''),(18908,'{22799} > {$UPS.INPUT_VOLT.MAX.WARN} or {22800} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','212cf86650fc4c189115da565111f5d3',''),(18909,'{22801} > {$UPS.INPUT_VOLT.MAX.WARN} or {22802} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','47069f8d431f45d490674d7ba01d2bb2',''),(18910,'{23106}<10m','WildFly: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'WildFly: has been restarted (uptime < 10m)','926f1767aae74529a972c7b8b09f4442',''),(18911,'{23284}<>{23285} and length({23286})>0','WildFly: Version has changed','',0,0,1,0,'WildFly version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'WildFly: Version has changed (new version: {ITEM.VALUE})','76d500211fd9479fafbd0fb7d41ffd68',''),(18912,'{23287}<>{23288} and length({23289})>0','WildFly domain: Server {#SERVER}: Server group has changed','',0,0,1,0,'Server group has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'WildFly domain: Server {#SERVER}: Server group has changed (new group: {ITEM.VALUE})','da5368f2eec040bbb05f13faa6375052',''),(18913,'{23290}<>{23291} and length({23292})>0','WildFly domain: Server {#SERVER}: Server status has changed','',0,0,2,0,'Server status has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'WildFly domain: Server {#SERVER}: Server status has changed (new status: {ITEM.VALUE})','79409a9fae6442c9ad655655a752365d',''),(18914,'{23116}=1','WildFly: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 15 minutes','',NULL,0,0,0,0,'',0,'',0,'',0,'WildFly: Failed to fetch info data (or no data for 15m)','8a4fab49eb1e4ebbb1459d9b0f848771',''),(18915,'{23117}<10m','WildFly: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'WildFly: {HOST.NAME} has been restarted (uptime < 10m)','71db189440ec4355aa06262e3200d47e',''),(18916,'{23293}<>{23294} and length({23295})>0','WildFly: Version has changed','',0,0,1,0,'The WildFly version has changed. Perform Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'WildFly: Version has changed (new version: {ITEM.VALUE})','2923ab6f81d64579b6ba778bc0467042',''),(18917,'{23121}=0','WildFly: Server needs to restart for configuration change.','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c5702304641748e4bb04be89f3a38326',''),(18918,'{23122}=0','WildFly: Server controller is not in RUNNING state','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','81de7058e3b64f73a14e03728dcf1c9b',''),(18919,'{23296}<>{23297} and length({23298})>0','WildFly deployment [{#DEPLOYMENT}]: Deployment status has changed','',0,0,2,0,'Deployment status has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'WildFly deployment [{#DEPLOYMENT}]: Deployment status has changed (new status: {ITEM.VALUE})','6b432b25debe4277a971bc8a906e07b1',''),(18920,'{23126}/{23127}*100>{$WILDFLY.CONN.USAGE.WARN.MAX}','WildFly {#JMX_DATA_SOURCE}: Connection usage is too high','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'WildFly {#JMX_DATA_SOURCE}: Connection usage is too high (over {$WILDFLY.CONN.USAGE.WARN.MAX} in 5m)','6a40b3e94cc0441abc95fe3bc94397bf',''),(18921,'{23128}=0','WildFly {#JMX_DATA_SOURCE}: There are no active connections for 5m','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','ea551068ebd04d349eba3f45a72f2610',''),(18922,'{23129}=0','WildFly {#JMX_DATA_SOURCE}: JDBC monitoring statistic is not enabled','',0,0,1,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','2996a48892a640d69154de332c673755',''),(18923,'{23130}=0','WildFly {#JMX_DATA_SOURCE}: Pools monitoring statistic is not enabled','',0,0,1,0,'Zabbix has not received data for items for the last 15 minutes','',NULL,0,0,2,0,'',0,'',0,'',0,'','4ea71ba3572647b29a60077bc511052a',''),(18924,'{23131}>0','WildFly {#JMX_DATA_SOURCE}: There are timeout connections','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','d70d1703fdc64926abe602324814ea4c',''),(18925,'{23132}>{$WILDFLY.CONN.WAIT.MAX.WARN}','WildFly {#JMX_DATA_SOURCE}: Too many waiting connections','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'WildFly {#JMX_DATA_SOURCE}: Too many waiting connections (over {$WILDFLY.CONN.WAIT.MAX.WARN} for 5m)','2e38504216d84f3b9fe43b0bea86e388',''),(18926,'{23133}>0','WildFly listener {#HTTP_LISTENER}: There are 500 responses by this listener.','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','504b88b04a204335a10f56cc3d852ba5',''),(18927,'{23134} < {$BATTERY.CAPACITY.MIN.WARN}','Battery has low capacity','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current capacity: {ITEM.LASTVALUE1}',0,'Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%)','0103da3d5f414d8ba1e9914d5c8d5f76',''),(18928,'{23135}=2','Battery needs replacement','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','09573345f6ce4d648f56117c8755e368',''),(18929,'{23136}=4','Battery has an internal error condition','',0,0,3,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'',0,'','743aef1e53ee464da48d2953ddc3b85c',''),(18930,'{23137}=3','Battery is Low','',0,0,3,0,'The UPS will be unable to sustain the current load, and its services will be lost if power is not restored.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d648d686ff994625bd17f959c311fddd',''),(18931,'{23138} > {$BATTERY.TEMP.MAX.WARN}','Battery has high temperature','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','e47ba98e74c94bd3886ac65cd1075359',''),(18932,'{30979} > 0 and ({30979} > {$UPS.INPUT_FREQ.MAX.WARN} or {30980} < {$UPS.INPUT_FREQ.MIN.WARN})','Unacceptable input frequency','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current frequency: {ITEM.LASTVALUE1}',0,'Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD})','3fa853edcebe42eba858e45f1a4465ee',''),(18933,'{30981} > 0 and ({30981} > {$UPS.INPUT_VOLT.MAX.WARN} or {30982} < {$UPS.INPUT_VOLT.MIN.WARN})','Unacceptable input voltage','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'Current voltage: {ITEM.LASTVALUE1}',0,'Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','74b42439050b48b6bf41abb5bb39808b',''),(18934,'{23143} > {$UPS.OUTPUT.MAX.WARN}','Output load is high','',0,0,4,0,'A battery installed has an internal error condition.','',NULL,0,0,0,0,'',0,'',0,'Current load: {ITEM.LASTVALUE1}',0,'Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD})','e099efa7266f44008819979830147665',''),(18935,'{23144}=16','UPS is Emergency Static Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','edcc1dc962fa4a228b2f5cd3617efbc6',''),(18936,'{23145}=10','UPS is Hardware Failure Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','869fed8cdd5a4f369e3b1ff2474280de',''),(18937,'{23146}=7','UPS is Off','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','378a246b34454d73b2248757be60a7ea',''),(18938,'{23147}=3','UPS is on battery','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','286dc25a245f45c3bdcc64925b41aef6',''),(18939,'{23148}=4','UPS is on Smart Boost','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','4d02a4c4f25a4efda7bd30def8364972',''),(18940,'{23149}=12','UPS is On Smart Trim','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ae91f99b089748cdaeb0185e31ffe82e',''),(18941,'{23150}=8','UPS is Rebooting','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','0bb0ef56d82e4c2a9414468c61fb3a96',''),(18942,'{23151}=11','UPS is Sleeping Until Power Return','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6a5a7e4b17384131a337619ec4a9c1e6',''),(18943,'{23152}=6','UPS is Software Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','232c98b7ca654c91a20d52ce6f21d7a1',''),(18944,'{23153}=9','UPS is Switched Bypass','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','65b8d109db8d4448a7ead131581fcbbe',''),(18945,'{23154}=5','UPS is Timed Sleeping','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','917c1f3c82e044a89f2f56a2c8a602a6',''),(18946,'{24386}<>{24387} and length({24388})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','154aad534c35473cb4513cb4e3d4a082',''),(18947,'({32366}>0 and {32366}<10m) or ({32366}=0 and {32367}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','7793a5e111c6466584ef6610aae707c1',''),(18948,'{23159}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6e0f9b15effd4c9e9c416a99fd8f4517',''),(18949,'{23160}=1','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay','',0,0,2,0,'The battery cartridge health.\r\n bit 0 Battery lifetime okay\r\n bit 1 Battery lifetime near end, order replacement cartridge\r\n bit 2 Battery lifetime exceeded, replace battery\r\n bit 3 Battery lifetime near end acknowledged, order replacement cartridge\r\n bit 4 Battery lifetime exceeded acknowledged, replace battery\r\n bit 5 Battery measured lifetime near end, order replacement cartridge\r\n bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','b29f9bd2e80242be940682139f303121',''),(18950,'{23161}=0','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay','',0,0,2,0,'The battery cartridge status:\r\nbit 0 Disconnected\r\nbit 1 Overvoltage\r\nbit 2 NeedsReplacement\r\nbit 3 OvertemperatureCritical\r\nbit 4 Charger\r\nbit 5 TemperatureSensor\r\nbit 6 BusSoftStart\r\nbit 7 OvertemperatureWarning\r\nbit 8 GeneralError\r\nbit 9 Communication\r\nbit 10 DisconnectedFrame\r\nbit 11 FirmwareMismatch','',NULL,0,0,2,0,'',0,'',0,'Current bit set: {ITEM.LASTVALUE1}',0,'','0a96a9726cdd4431ad6e6d52e7461d69',''),(18951,'{23162} > {$BATTERY.TEMP.MAX.WARN}','{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current temperature: {ITEM.LASTVALUE1}',0,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD})','dbb191572a17451296ae4ee8d3aeec73',''),(18952,'{23163}=3','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','fc448a3d2ae4462a903863364bec836d',''),(18953,'{23164}=4','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3340123b060949a4b806a5a757862026',''),(18954,'{23165}=2','{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5ac7c47c37804492947716e5857275c4',''),(18955,'{23166}=3','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical','',0,0,4,0,'The external sensor has returned a value greater than the critical threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8774e39abe784f6b9fe2f33c30f3fa05',''),(18956,'{23167}=4','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable','',0,0,1,0,'The external sensor does not work or is not connected.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d41c9de571ea4b48a1213f98a058c550',''),(18957,'{23168}=2','{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning','',0,0,3,0,'The external sensor has returned a value greater than the warning threshold.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c9e751b9449f4616beeb36b51cf0a3b9',''),(18958,'{23169} > {$UPS.INPUT_VOLT.MAX.WARN} or {23170} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','b8d5cbee0bc14df58a217b33222aa75d',''),(18959,'{23171} > {$UPS.INPUT_VOLT.MAX.WARN} or {23172} < {$UPS.INPUT_VOLT.MIN.WARN}','{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1}',0,'{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD})','176a3014124f4f23bedbad120cb2b69a',''),(18960,'({23185} - now()) / 86400 < {$CERT.EXPIRY.WARN}','Cert: SSL certificate expires soon','',0,0,2,0,'The SSL certificate should be updated or it will become untrusted.','',NULL,0,0,0,0,'',0,'',0,'',0,'Cert: SSL certificate expires soon (less than {$CERT.EXPIRY.WARN} days)','8a0e3e73527a45618afe94707234f4c6',''),(18961,'{23186} <> {23187}','Cert: Fingerprint has changed','',0,0,1,0,'The SSL certificate fingerprint has changed. If you did not update the certificate, it may mean your certificate has been hacked. Ack to close.\r\nThere could be multiple valid certificates on some installations. In this case, the trigger will have a false positive. You can ignore it or disable the trigger.','',NULL,0,0,0,0,'',0,'',1,'',0,'Cert: Fingerprint has changed (new version: {ITEM.VALUE})','7a4c69a5235e444cb7294e6b7189b2b6',''),(18962,'{23188}=1','Cert: SSL certificate is invalid','',0,0,4,0,'SSL certificate has expired or it is issued for another domain.','',NULL,0,0,0,0,'',0,'',0,'',0,'','854c791b765a4ae2982ce6436d6e78ca',''),(18963,'{23189} < {$CLOUDFLARE.CACHED_BANDWIDTH.MIN.WARN}','Cloudflare: Cached bandwidth is too low','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Cloudflare: Cached bandwidth is too low (less than {$CLOUDFLARE.CACHED_BANDWIDTH.MIN.WARN}% for 3 last measurements)','acf573785c394924aae8ef74b2683fd1',''),(18964,'{23190} > {$CLOUDFLARE.ERRORS.MAX.WARN}','Cloudflare: Ratio of non-2xx responses is too high','',0,0,3,0,'A large number of errors can indicate a malfunction of the site.','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Cloudflare: Ratio of non-2xx responses is too high (more than {$CLOUDFLARE.ERRORS.MAX.WARN}% for 3 last measurements)','e76f4a61dd094419b6e0af706758e545',''),(18965,'{23211}=0','HAProxy {#PXNAME} {#SVNAME}: Health check error','',0,0,2,0,'Please check the server for faults.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','1378f45ad65a498aae7b571a69547352',''),(18966,'{23217}=0','HAProxy {#PXNAME} {#SVNAME}: Health check error','',0,0,2,0,'Please check the server for faults.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','6c4f8cf76ab046aaa4bd51e41cc10de7',''),(18967,'{23237} > {$NGINX.DROP_RATE.MAX.WARN}','Nginx: High connections drop rate','',0,0,2,0,'The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','91c9dab8147a4d0086019119e4e55b5e',''),(18968,'length({23238})>0','Nginx: Server response error','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Nginx: Server response error (text: {ITEM.VALUE})','e444c708371748bd831bba6c8d9a92e0',''),(18969,'{23239}=1','Nginx: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for metrics for the last 30 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'Nginx: Failed to fetch info data (or no data for 30m)','396fb4be618e45578566971d5399d611',''),(18970,'{23240}<10m','Nginx: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Nginx: {HOST.NAME} has been restarted (uptime < 10m)','95622a29bd58444b9f0bd985db99f922',''),(18971,'{23241}<>{23242} and length({23243})>0','Nginx: Version has changed','',0,0,1,0,'Nginx version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Nginx: Version has changed (new version: {ITEM.VALUE})','a91ff018fe4f4a1495b08adeb2b0005f',''),(18972,'{23244} > ({23245}*({$NGINX.HTTP.UPSTREAM.4XX.MAX.WARN}/100))','Nginx: Too many HTTP requests with code 4xx','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Nginx: Too many HTTP requests with code 4xx (over {$NGINX.HTTP.UPSTREAM.4XX.MAX.WARN}% for 5m)','e7b4782a796b4710b50a96f3d24c8208',''),(18973,'{23246} > ({23247}*({$NGINX.HTTP.UPSTREAM.5XX.MAX.WARN}/100))','Nginx: Too many HTTP requests with code 5xx','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Nginx: Too many HTTP requests with code 5xx (over {$NGINX.HTTP.UPSTREAM.5XX.MAX.WARN}% for 5m)','f542573d149547d3844f635bf2a87120',''),(18974,'{23248}=0 and {23249}=0','Nginx: HTTP upstream server is not in UP or DOWN state.','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fc6586fe2eef457bac1d71ce0313f95d',''),(18975,'{23250}=0 and {23251}=0','Nginx: Stream upstream server is not in UP or DOWN state.','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','20ef9b9e953246ef856dd46033595e52',''),(18976,'{23273}<>1','{#UNIT.NAME}: Service is not running','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','5237bd423307449b8a58f692082d2a0a',''),(18977,'{23274}<10m','{#UNIT.NAME}: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#UNIT.NAME}: has been restarted (uptime < 10m)','e2292c5ead924500a06d38b6356930c7',''),(18978,'{23303}>75','Zabbix server: Utilization of service manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{23303}<65',0,'',0,'',0,'Zabbix server: Utilization of service manager processes over 75%','c4cdbce205e843d6b882503961a15376',''),(18979,'{23304}>75','Zabbix server: Utilization of trigger housekeeper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{23304}<65',0,'',0,'',0,'Zabbix server: Utilization of trigger housekeeper processes over 75%','5ffa02f393d34c49bcb9eed2b2b89704',''),(18980,'{23305}<>{23306} and length({23307})>0','Zabbix server: Version has changed','',0,0,1,0,'Zabbix server version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix server: Version has changed (new version: {ITEM.VALUE})','456403a2063c4e2298f9e3f60a7a3180',''),(18984,'{23317}>75','Remote Zabbix server: Utilization of service manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{23317}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of service manager processes over 75%','001c9e2027ca4e7c8f5dc5b78681c573',''),(18985,'{23318}>75','Remote Zabbix server: Utilization of trigger housekeeper processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{23318}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of trigger housekeeper processes over 75%','9c0daf6e85884122aa8c5b8432709c92',''),(18986,'{23395}/{23396}*100>{$GRIDGAIN.CHECKPOINT.PUSED.MAX.HIGH}','Data region {#JMXNAME}: Checkpoint buffer utilization is too high','',0,0,4,0,'Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.','',NULL,0,0,2,0,'',0,'',0,'',0,'Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$GRIDGAIN.CHECKPOINT.PUSED.MAX.HIGH} in 5m)','9a7d7c745faa4f1fa4ffd1ca8c1ac602',''),(18987,'{23397}/{23398}*100>{$GRIDGAIN.CHECKPOINT.PUSED.MAX.WARN}','Data region {#JMXNAME}: Checkpoint buffer utilization is too high','',0,0,2,0,'Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization.','',NULL,0,0,2,0,'',0,'',0,'',0,'Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$GRIDGAIN.CHECKPOINT.PUSED.MAX.WARN} in 5m)','02ce52a2067147238969a4fd24f85bdc',''),(18988,'{23399}/{23400}*100>{$GRIDGAIN.DATA.REGION.PUSED.MAX.HIGH}','Data region {#JMXNAME}: Data region utilization is too high','',0,0,4,0,'Data region utilization is high. Increase data region size or delete any data.','',NULL,0,0,2,0,'',0,'',0,'',0,'Data region {#JMXNAME}: Data region utilization is too high (over {$GRIDGAIN.DATA.REGION.PUSED.MAX.HIGH} in 5m)','92c2772aa8d7425e8bee5d760ba5b607',''),(18989,'{23401}/{23402}*100>{$GRIDGAIN.DATA.REGION.PUSED.MAX.WARN}','Data region {#JMXNAME}: Data region utilization is too high','',0,0,2,0,'Data region utilization is high. Increase data region size or delete any data.','',NULL,0,0,2,0,'',0,'',0,'',0,'Data region {#JMXNAME}: Data region utilization is too high (over {$GRIDGAIN.DATA.REGION.PUSED.MAX.WARN} in 5m)','3694e6d813b04b51a77c842de617503c',''),(18990,'{23403}>0','Data region {#JMXNAME}: Node started to evict pages','',0,0,1,0,'You store more data than region can accommodate. Data started to move to disk it can make requests work slower. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','7e2fc41d632240b3869080d41ef5e639',''),(18991,'{23404}>0','Data region {#JMXNAME}: Pages replace rate more than 0','',0,0,2,0,'There is more data than DataRegionMaxSize. Cluster started to replace pages in memory. Page replacement can slow down operations.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d2b012fdfe634526bb583d4ad18abe4d',''),(18992,'{23405} > {$GRIDGAIN.PME.DURATION.MAX.HIGH}','GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','',0,0,4,0,'PME duration is over {$GRIDGAIN.PME.DURATION.MAX.HIGH}ms. Looks like PME is hung.','',NULL,0,0,2,0,'',0,'',0,'',0,'GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$GRIDGAIN.PME.DURATION.MAX.HIGH} for 5 min)','a2672171fa374810b95b72f6014f3998',''),(18993,'{23406} > {$GRIDGAIN.PME.DURATION.MAX.WARN}','GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long','',0,0,2,0,'PME duration is over {$GRIDGAIN.PME.DURATION.MAX.WARN}ms.','',NULL,0,0,2,0,'',0,'',0,'',0,'GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$GRIDGAIN.PME.DURATION.MAX.WARN} for 5 min)','f21e1cee28354fcd945d58955831641b',''),(18994,'{23407} > {$GRIDGAIN.THREADS.COUNT.MAX.WARN}','GridGain [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high','',0,0,2,0,'Number of running threads is over {$GRIDGAIN.THREADS.COUNT.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'GridGain [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high (over {$GRIDGAIN.THREADS.COUNT.MAX.WARN} for 15 min)','124c9738a384481fb39f5e8078cca0e4',''),(18995,'{23408} > {$GRIDGAIN.JOBS.QUEUE.MAX.WARN}','GridGain [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high','',0,0,2,0,'Number of queued jobs is over {$GRIDGAIN.JOBS.QUEUE.MAX.WARN}.','',NULL,0,0,2,0,'',0,'',0,'',0,'GridGain [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high (over {$GRIDGAIN.JOBS.QUEUE.MAX.WARN} for 15 min)','71d259fbdcd74888a4bedc646fc4bc54',''),(18996,'{23409}>{23410}','GridGain [{#JMXIGNITEINSTANCENAME}]: There are nodes is not in topology','',0,0,1,0,'One or more server node left the topology. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','ea93cb34b6434f2e94095c28087fc18e',''),(18997,'{23411}>0','GridGain [{#JMXIGNITEINSTANCENAME}]: Server node added to the topology','',0,0,1,0,'One or more server node added to the topology. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','bf1fbe1ea3754da59bd8a510fbcc6f54',''),(18998,'{23412}<0','GridGain [{#JMXIGNITEINSTANCENAME}]: Server node left the topology','',0,0,2,0,'One or more server node left the topology. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','db4cd7173ead4e878b79d55067d81300',''),(18999,'{23413}<>{23414} and length({23415})>0','GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed','',0,0,1,0,'The GridGain [{#JMXIGNITEINSTANCENAME}] version has changed. Perform Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','4cc201fb67664fc49d36bbec95b574ce',''),(19000,'{23416}=1','GridGain [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data','',0,0,2,0,'Zabbix has not received data for items for the last 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'GridGain [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data (or no data for 10m)','d7b2be3a707f49d2897e7cce356cafa5',''),(19001,'{23417}<10m','GridGain [{#JMXIGNITEINSTANCENAME}]: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'GridGain [{#JMXIGNITEINSTANCENAME}]: {HOST.NAME} has been restarted (uptime < 10m)','23cd9dbb498f4bb095ec8be1693fccf0',''),(19002,'{23418}<>{23419} and length({23420})>0','GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed','',0,0,2,0,'The GridGain [{#JMXIGNITEINSTANCENAME}] version has changed. Perform Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'GridGain [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE})','40641263a3d840e89e46ba6f57076a0a',''),(19003,'{23421}>={23422}','Cache group [{#JMXNAME}]: One or more backups are unavailable','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','3ded54fcdad74c83b47543410a7d9b3c',''),(19004,'{23423}<>{23424} and length({23425})>0','Cache group [{#JMXNAME}]: List of caches has changed','',0,0,1,0,'List of caches has changed. Significant changes have occurred in the cluster. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'Cache group [{#JMXNAME}]: Version has changed (new version: {ITEM.VALUE})','94d82f9db4f449e491782e14f6973f9b',''),(19005,'{23426}>0','Cache group [{#JMXNAME}]: Rebalance in progress','',0,0,1,0,'Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','84e1402b3ae64960ad997d2610137927',''),(19006,'{23427}=0','Cache group [{#JMXNAME}]: There is no copy for partitions','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','63c244c02ace4ac4a8d6f60e5c533890',''),(19007,'{23428} > {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:\"{#JMXNAME}\"}','Thread pool [{#JMXNAME}]: Too many messages in queue','',0,0,3,0,'Number of messages in queue more than {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:\"{#JMXNAME}\"}.','',NULL,0,0,2,0,'',0,'',0,'',0,'Thread pool [{#JMXNAME}]: Too many messages in queue (over {$GRIDGAIN.THREAD.QUEUE.MAX.WARN:\"{#JMXNAME}\"} for 5 min)','f2a7aa098ed245f48b455ed747ee42c3',''),(19008,'{23429}={23430}','Cache group [{#JMXGROUP}]: All entries are in heap','',0,0,1,0,'All entries are in heap. Possibly you use eager queries it may cause out of memory exceptions for big caches. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'','cfe03901890a4377ad8d5dcc7be3e0c5',''),(19009,'{23431} > {23432}','Cache group [{#JMXGROUP}]: Success transactions less than rollbacks for 5m','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','1c990b38154340a3aab678ac1365cf7e',''),(19010,'{23433}>0 and {23434}=0','Cache group [{#JMXGROUP}]: There are no success transactions for cache for 5m','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','2caa406da4cf4d089705e5506fd589f1',''),(19011,'{23447}<>{23448}','MongoDB: Node in ReplicaSet changed the state','',0,0,2,0,'Node in ReplicaSet changed the state. Ack to close.','',NULL,0,0,2,2,'',0,'',1,'',0,'MongoDB: Node in ReplicaSet changed the state (new state: {ITEM.VALUE})','f9f29647a3db426c9c303fc47cfc48eb',''),(19012,'{23734}<10m','Cisco ASAv: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Cisco ASAv: {HOST.NAME} has been restarted (uptime < 10m)','7fcf46583d2b42f4be6758e85784f28f',''),(19013,'{23735}=0','Cisco ASAv: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9ee945a0b0b942d7a7e3fcf218f0e82f',''),(19014,'{23736}>{$CPU.UTIL.CRIT}','Cisco ASAv: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'Cisco ASAv: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2e90218795b94ee8b3c01dd79d2dd8b3',''),(19015,'{23737}>{$MEMORY.UTIL.MAX}','Cisco ASAv: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'Cisco ASAv: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','688975747f664a15a3bca9dd3e1e0b01',''),(19016,'{23738}=2 and {23739}<>{23740}','Cisco ASAv: {#CISCO.IF.NAME} Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{23738}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','0aca9e16545a46f4a7b150d03cdb1df1',''),(19017,'{23741}<>{23742} and length({23743})>0','Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} has been replaced','',0,0,1,0,'{#CISCO.ASAV.PHYS.NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} has been replaced (new serial number received)','c9f9bff9e9cd4519807c5be583670d02',''),(19018,'{25022}<>{25023} and length({25024})>0','F5 BIG-IP: Chassis has been replaced','',0,0,1,0,'Chassis serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'F5 BIG-IP: Chassis has been replaced (new serial number received)','8a55167ddebb43f2ac8f6d028aef87c2',''),(19019,'{23870}<10m','F5 BIG-IP: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'F5 BIG-IP: {HOST.NAME} has been restarted (uptime < 10m)','551fd3b77d144ed58f138865e4862901',''),(19020,'{23871}=0','F5 BIG-IP: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9ec4425af8dd4cf59dcb3146e6a8263c',''),(19021,'{28248} - 86400 * {$BIGIP.CERT.MIN} < now()','F5 BIG-IP: Certificate expires ({#CERT.NAME})','',0,0,2,0,'Please check certificate','',NULL,0,0,2,0,'',0,'',0,'Expires: {ITEM.VALUE}',0,'F5 BIG-IP: Less than {$BIGIP.CERT.MIN} days left until the certificate expires ({#CERT.NAME})','015ce3f5d10749aca1d871a1d26c51c5',''),(19022,'{23873}=0','F5 BIG-IP: Fan[{#FAN.INDEX}] is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'',0,'','546745f6edf7470896d5bf251d760dfe',''),(19023,'{23874}=0','F5 BIG-IP: Power supply [{#POWER.INDEX}] is in critical state','',0,0,4,0,'Please check the power supply unit','',NULL,0,0,2,0,'',0,'',0,'',0,'','1e85cee65875477b85f74aedba6e86c9',''),(19024,'{23875}>{$BIGIP.CPU.UTIL.WARN.MAX}','F5 BIG-IP: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,1,'{23875}<{$BIGIP.CPU.UTIL.WARN.MIN}',0,'',0,'',0,'F5 BIG-IP: High CPU utilization (over {$BIGIP.CPU.UTIL.WARN.MAX}% for 5m)','1163080e05d3433f884773fe1ee0271a',''),(19025,'{25029}/{25030}*100<{$BIGIP.FS.FREE.WARN.MIN:\"{#PART.NAME}\"}','F5 BIG-IP: Low free space in file system [{#PART.NAME}]','',0,0,2,0,'The system is running out of free space.','',NULL,0,0,2,1,'{25029}/{25030}*100>{$BIGIP.FS.FREE.WARN.MAX:\"{#PART.NAME}\"}',0,'',1,'',0,'F5 BIG-IP: Low free space in file system [{#PART.NAME}] (less than {$BIGIP.FS.FREE.WARN.MIN}% for 5m)','32b87997dc0b4967bdb158f1dc0baad2',''),(19026,'{28249}/{28250}*100>{$BIGIP.MEMORY.UTIL.WARN.MAX}','F5 BIG-IP: High memory utilization in host [{#HOST.ID}]','',0,0,2,0,'The system is running out of free memory.','',NULL,0,0,2,1,'{28249}/{28250}*100<{$BIGIP.MEMORY.UTIL.WARN.MIN}',0,'',0,'',0,'F5 BIG-IP: High memory utilization in host [{#HOST.ID}] (over {$BIGIP.MEMORY.UTIL.WARN.MAX}%)','e72f446075214129ab1d6269fcd87051',''),(19027,'{28251}/{28252}*100>{$BIGIP.SWAP.UTIL.WARN.MAX}','F5 BIG-IP: High swap utilization in host [{#HOST.ID}]','',0,0,2,0,'The system is running out of free swap memory.','',NULL,0,0,2,1,'{28251}/{28252}*100>{$BIGIP.SWAP.UTIL.WARN.MIN}',0,'',0,'',0,'F5 BIG-IP: High swap utilization in host [{#HOST.ID}] (over {$BIGIP.SWAP.UTIL.WARN.MAX}%)','5cf3e1f819ee46f49ba89156c53274ec',''),(19028,'{23882}>{23883} or {23884}>{23885}','F5 BIG-IP: There are errors on the network interface','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'F5 BIG-IP: There are errors on the network interface ({#IF.NAME})','2d9214768b684ba880703d738ac52099',''),(19029,'{23961}=0','ZYXEL AAM1212-51 / IES-612: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','40839f3008b84e3c9ffa8858bd2ab616',''),(19030,'{23962}<>{23963} and length({23964})>0','ZYXEL AAM1212-51 / IES-612: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','02ba3941993f48ca8d5f40b3b19804e8',''),(19031,'{23965}<>\"AAM1212-51 / IES-612\"','ZYXEL AAM1212-51 / IES-612: Template does not match hardware','',0,0,1,0,'This template is for Zyxel AAM1212-51 / IES-612, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','5a3f459afc4f42fb90849e98c7639a96',''),(19032,'{23966}<>{23967} and length({23968})>0','ZYXEL AAM1212-51 / IES-612: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL AAM1212-51 / IES-612: Device has been replaced (new serial number received)','7528520bca7c4524b7451aeaca440cc5',''),(19033,'{23969}=0','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX} alarm','',0,0,3,0,'The slot reported an error.','',NULL,0,0,0,0,'',0,'',0,'',0,'','eec541b07a434770b2a3301825cc5e82',''),(19034,'({32324}>0 and {32324}<10m) or ({32324}=0 and {32325}<10m)','ZYXEL AAM1212-51 / IES-612: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL AAM1212-51 / IES-612: {HOST.NAME} has been restarted (uptime < 10m)','819190f68248439292fc4622c3eec5a9',''),(19035,'{23971}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL AAM1212-51 / IES-612: High the DSL line attenuation in Port {#SNMPINDEX}','',0,0,2,0,'The reductions in amplitude of the downstream and upstream DSL signals.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL AAM1212-51 / IES-612: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','0c78247a1003496abab584a526777a40',''),(19036,'{23972}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL AAM1212-51 / IES-612: Low the DSL line noise margins in Port {#SNMPINDEX}','',0,0,2,0,'Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL AAM1212-51 / IES-612: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','14cbae6c16c245b09ed46e0cc01a556c',''),(19037,'{23973}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL AAM1212-51 / IES-612: High the DSL line attenuation in Port {#SNMPINDEX}','',0,0,2,0,'The reductions in amplitude of the downstream and upstream DSL signals.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL AAM1212-51 / IES-612: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','e917c9a8d6bb4af3a40c6c5b41f90c22',''),(19038,'{23974}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL AAM1212-51 / IES-612: Low the DSL line noise margins in Port {#SNMPINDEX}','',0,0,2,0,'Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL AAM1212-51 / IES-612: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','125b08332e2f409985cade88ab3842f1',''),(19039,'{23975}=2 and {23976}<>{23977}','ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{23975}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','956fc99c2c5341a2b29ba2f302cc0a3a',''),(19040,'{23978}=2 and {23979}<>{23980}','ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{23978}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','805f49836f794aad9ee00f66dd90ffc1',''),(19041,'{23981}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL AAM1212-51 / IES-612: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','321b2efb6e8e4117949b3644cc101ff2',''),(19042,'{23982}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL AAM1212-51 / IES-612: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a7aa1ae207bb462bb23d3f2fca2c3533',''),(19043,'{23983}=0','ZYXEL ES3500-8PD: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3bbbd93c114f4bf5b8f4788ca6825afd',''),(19044,'{23984}>{$CPU.UTIL.CRIT}','ZYXEL ES3500-8PD: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL ES3500-8PD: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','3cf67f911a854d2ebeb9e006f3f97738',''),(19045,'{23985}<>{23986} and length({23987})>0','ZYXEL ES3500-8PD: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','bd6d0fe201094c00b6c93d7c04c27729',''),(19046,'{23988}<>\"ES3500-8PD\"','ZYXEL ES3500-8PD: Template does not match hardware','',0,0,1,0,'This template is for Zyxel ES3500-8PD, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','e03ca45643354a18a9d6ffbb38a07654',''),(19047,'{23989}<>{23990} and length({23991})>0','ZYXEL ES3500-8PD: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL ES3500-8PD: Device has been replaced (new serial number received)','83548aba74c148e28e6611d5abfb9694',''),(19048,'({32326}>0 and {32326}<10m) or ({32326}=0 and {32327}<10m)','ZYXEL ES3500-8PD: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL ES3500-8PD: {HOST.NAME} has been restarted (uptime < 10m)','eb7a268bfa324366953221e3c1788127',''),(19049,'{23993}>{$MEMORY.UTIL.MAX}','ZYXEL ES3500-8PD: High memory utilization in \"{#ZYXEL.MEMORY.NAME}\" pool','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL ES3500-8PD: High memory utilization in \"{#ZYXEL.MEMORY.NAME}\" pool (>{$MEMORY.UTIL.MAX}% for 5m)','c59c3730eea44cf7a842fe46aa12fa3d',''),(19050,'{23994}=2 and {23995}<>{23996}','ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{23994}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','27ba4832c79d447186ae6de254aad9d7',''),(19051,'{23997} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','8ce109a9f09b41458a4e9d8698238ad0',''),(19052,'{23998} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','6ecef48a1fdd4e16afe9472f59e0ad1a',''),(19053,'{23999}<>{24000} and length({24001})>0','ZYXEL ES3500-8PD: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX} has been replaced (new serial number received)','46739144d51b441886d544829749cf21',''),(19054,'{24002}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL ES3500-8PD: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','51fad2cd7daf49ad9027f44fd9ea81af',''),(19055,'{24003}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL ES3500-8PD: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2cce1a60cfea4bb89e1b9582f6045d3c',''),(19056,'{24004}=0','ZYXEL GS-4012F: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','07b74d3face24c838c7efe8dfb87564e',''),(19057,'{24005}>{$CPU.UTIL.CRIT}','ZYXEL GS-4012F: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL GS-4012F: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2052d9e6becd48e5a3aed8037eaf9e87',''),(19058,'{24006}<>{24007} and length({24008})>0','ZYXEL GS-4012F: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','ecde6db248674039a30874f29e704e65',''),(19059,'{24009}<>\"GS-4012F\"','ZYXEL GS-4012F: Template does not match hardware','',0,0,1,0,'This template is for Zyxel GS-4012F, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','1ba1faabe15c4d46adaa4dc74c5dc05c',''),(19060,'{24010}<>{24011} and length({24012})>0','ZYXEL GS-4012F: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL GS-4012F: Device has been replaced (new serial number received)','ae941404115d4b10809bce603528ceaa',''),(19061,'({32328}>0 and {32328}<10m) or ({32328}=0 and {32329}<10m)','ZYXEL GS-4012F: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL GS-4012F: {HOST.NAME} has been restarted (uptime < 10m)','93c70a5dd2504d0d9b13a17af942d45e',''),(19062,'{24014}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL GS-4012F: FAN{#SNMPINDEX} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c91993daf9e44102a04b1ff2b72bf773',''),(19063,'{24015}=2 and {24016}<>{24017}','ZYXEL GS-4012F: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24015}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','9c332411a6db46acaab2b49ccabd2970',''),(19064,'{24018}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL GS-4012F: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','719aad00708e4fd3b99997834c5d68b2',''),(19065,'{24019}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL GS-4012F: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7d28666404bd4cedb687214846f89d4a',''),(19066,'{24020}=0','ZYXEL IES-500x: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','73967d1d3d01458c8e947a1aacb838b0',''),(19067,'not({24021}=\"IES-5000\" or {24021}=\"IES-5005\")','ZYXEL IES-500x: Template does not match hardware','',0,0,1,0,'This template is for Zyxel IES-500x, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','d4b378535f5c4299af1295029e94f9d1',''),(19068,'({32330}>0 and {32330}<10m) or ({32330}=0 and {32331}<10m)','ZYXEL IES-500x: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL IES-500x: {HOST.NAME} has been restarted (uptime < 10m)','d618295a763f42cd9063fad5cd600c34',''),(19069,'{24023}>{#ZYXEL.BUFFERHIGHTHRESH}','ZYXEL IES-500x: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID}','',0,0,3,0,'The system is running out of free buffer.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-500x: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID} (>{#ZYXEL.BUFFERHIGHTHRESH}% for 5m)','b02248180f314948bdbb68e8b940cb99',''),(19070,'{24024}>{#ZYXEL.CPU.THRESH.HIGH}','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} high CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} high CPU utilization (over {#ZYXEL.CPU.THRESH.HIGH}% for 5m)','e2e689642a884509a5254e946deaf69f',''),(19071,'{24025}<{#ZYXEL.FANRPM.THRESH.LOW} or {24025}>{#ZYXEL.FANRPM.THRESH.HIGH}','ZYXEL IES-500x: FAN{#SNMPINDEX} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9e249839db314f05a7a3cd16172ae9a7',''),(19072,'{24026}>{#ZYXEL.MEMORYHIGHTHRESH}','ZYXEL IES-500x: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-500x: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool (>{#ZYXEL.MEMORYHIGHTHRESH}% for 5m)','c3099861742f4303af838a0bf3921fac',''),(19073,'{24027}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES-500x: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','',0,0,2,0,'The reductions in amplitude of the downstream and upstream DSL signals.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-500x: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','375982ea68ec4800aa27a50a89fd79d5',''),(19074,'{24028}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES-500x: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','',0,0,2,0,'Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-500x: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','8d2f57548d4e47f2981a4fd79d065246',''),(19075,'{24029}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES-500x: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','',0,0,2,0,'The reductions in amplitude of the downstream and upstream DSL signals.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-500x: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','1dec7ed135a348b1a1cebb3b4319d77f',''),(19076,'{24030}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES-500x: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','',0,0,2,0,'Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-500x: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','7f8f4a2bff14464fbe2f956be87ad56d',''),(19077,'{24031}=2 and {24032}<>{24033}','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24031}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','8afcc973a7e94a0782a057205cc1b8ed',''),(19078,'{24034}=2 and {24035}<>{24036}','ZYXEL IES-500x: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24034}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','71a10836f3094184bba728a0cf4d005a',''),(19079,'{24037}=0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} alarm','',0,0,3,0,'The slot reported an error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d2dd1a23dbbb467e90ab99ff59a817a2',''),(19080,'{24038}<>{24039} and length({24040})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','1b163693dc87407db836021da67bdccc',''),(19081,'{24041}<>{24042} and length({24043})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','44f7087bcb524593a419887c199fb613',''),(19082,'{24044}<>{24045} and length({24046})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','6de6e5adadf04a79813ed7778b454043',''),(19083,'{24047}<>{24048} and length({24049})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','42969016e9c846a8954ebf95d2ff0ffc',''),(19084,'{24050}<>{24051} and length({24052})>0','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} has been replaced','',0,0,1,0,'Slot {#ZYXEL.SLOT.ID} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} has been replaced (new serial number received)','0994c0ab8b004dc280d1a036e7043cc0',''),(19085,'{24053}<10m','ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} has been restarted','',0,0,1,0,'Uptime is less than 10 minutes','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} has been restarted (uptime < 10m)','6717069c115147b095321f2c4c5ec51b',''),(19086,'{24054}>{#ZYXEL.TEMP.THRESH.HIGH} or {24054}<{#ZYXEL.TEMP.THRESH.LOW}','ZYXEL IES-500x: Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c4993b2d52e04808862ac0d043b0e982',''),(19087,'{24055}<{#ZYXEL.VOLT.THRESH.LOW} or {24055}>{#ZYXEL.VOLT.THRESH.HIGH}','ZYXEL IES-500x: Voltage Slot {#ZYXEL.SLOT.ID} {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','55bc511ff2094a86b10c542e896d10e2',''),(19088,'{24056}=0','ZYXEL IES-6000: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','41eb76d6be3e47b8b0ca1296470372aa',''),(19089,'{24057}<>\"IES-6000\"','ZYXEL IES-6000: Template does not match hardware','',0,0,1,0,'This template is for Zyxel IES-6000, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','7f6f8bdde2644182a892792ff2bb7c68',''),(19090,'({32332}>0 and {32332}<10m) or ({32332}=0 and {32333}<10m)','ZYXEL IES-6000: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL IES-6000: {HOST.NAME} has been restarted (uptime < 10m)','7a52520cc3dc4350bd7aa14260899f1c',''),(19091,'{24059}>{#ZYXEL.BUFFERHIGHTHRESH}','ZYXEL IES-6000: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID}','',0,0,3,0,'The system is running out of free buffer.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-6000: High Packet buffer utilization in Slot {#ZYXEL.SLOT.ID} (>{#ZYXEL.BUFFERHIGHTHRESH}% for 5m)','1173ae0cf9f440f595366a6da7a4c672',''),(19092,'{24060}>{#ZYXEL.CPU.THRESH.HIGH}','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} high CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} high CPU utilization (over {#ZYXEL.CPU.THRESH.HIGH}% for 5m)','0d882e8f017e46c78727437bd55759d4',''),(19093,'{24061}<{#ZYXEL.FANRPM.THRESH.LOW} or {24061}>{#ZYXEL.FANRPM.THRESH.HIGH}','ZYXEL IES-6000: FAN{#SNMPINDEX} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d5f65aebabf741798dcd0b452302aefb',''),(19094,'{24062}>{#ZYXEL.MEMORYHIGHTHRESH}','ZYXEL IES-6000: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-6000: High memory utilization in Slot {#ZYXEL.SLOT.ID} pool (>{#ZYXEL.MEMORYHIGHTHRESH}% for 5m)','64108d56dc6d43148f67503383fc6705',''),(19095,'{24063}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES-6000: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','',0,0,2,0,'The reductions in amplitude of the downstream and upstream DSL signals.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-6000: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','e1233b29eb764b0bb5a2ce35f79060bf',''),(19096,'{24064}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES-6000: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','',0,0,2,0,'Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-6000: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','d7392fd0c372459bb21b9a85a47ccb8c',''),(19097,'{24065}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES-6000: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','',0,0,2,0,'The reductions in amplitude of the downstream and upstream DSL signals.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-6000: High the DSL line attenuation in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','2ef5b800bb4148ce82bed8c4bf977a35',''),(19098,'{24066}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES-6000: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}','',0,0,2,0,'Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES-6000: Low the DSL line noise margins in Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','ba6eb4b3b6904b5dac4c057d3f6f3c17',''),(19099,'{24067}=2 and {24068}<>{24069}','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24067}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','3fbe4b16a94648089df78829ee7e683f',''),(19100,'{24070}=2 and ({24071}<>{24072})=1','ZYXEL IES-6000: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24070}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','a9aac7e6c66a4a69a77f8c165f9a9d5c',''),(19101,'{24073}=0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} alarm','',0,0,3,0,'The slot reported an error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c3f610ab856e42c7bb6460f552779e12',''),(19102,'{24074}<>{24075} and length({24076})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','c62327e51d27445b893e80bf77c9696c',''),(19103,'{24077}<>{24078} and length({24079})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','63a4bdc73f8c49a7abb914f47e162dec',''),(19104,'{24080}<>{24081} and length({24082})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','7a2ef454d9624fd78416d2e1345be9a5',''),(19105,'{24083}<>{24084} and length({24085})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','537f28be56984664822b574a2064453b',''),(19106,'{24086}<>{24087} and length({24088})>0','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} has been replaced','',0,0,1,0,'Slot {#ZYXEL.SLOT.ID} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} has been replaced (new serial number received)','3fbbcffe1c46497d89fe0d987a5f6eff',''),(19107,'{24089}<10m','ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} has been restarted','',0,0,1,0,'Uptime is less than 10 minutes','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} has been restarted (uptime < 10m)','50e43c41d0e241238b65da25c12d1616',''),(19108,'{24090}>{#ZYXEL.TEMP.THRESH.HIGH} or {24090}<{#ZYXEL.TEMP.THRESH.LOW}','ZYXEL IES-6000: Temperature Slot {#ZYXEL.SLOT.ID} Sensor: {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c517b703b5084e9b8053fb139e3350ae',''),(19109,'{24091}<{#ZYXEL.VOLT.THRESH.LOW} or {24091}>{#ZYXEL.VOLT.THRESH.HIGH}','ZYXEL IES-6000: Voltage Slot {#ZYXEL.SLOT.ID} {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','14c98fc8b4864a3c87062510a079d948',''),(19110,'{24092}=0','ZYXEL IES1248-51: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','40466f29b8e54dc88cb49e818fc48281',''),(19111,'{24093}<>{24094} and length({24095})>0','ZYXEL IES1248-51: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','b64e891456674457ab4abf994b097277',''),(19112,'{24096}<>\"IES1248-51\"','ZYXEL IES1248-51: Template does not match hardware','',0,0,1,0,'This template is for Zyxel IES1248-51, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','21b638f9f1154b6bb78a652d8e54c1c2',''),(19113,'{24097}<>{24098} and length({24099})>0','ZYXEL IES1248-51: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL IES1248-51: Device has been replaced (new serial number received)','2f2972169c164053a8d439b0e572b0c6',''),(19114,'{24100}=0','ZYXEL IES1248-51: Port {#SNMPINDEX} alarm','',0,0,3,0,'The slot reported an error.','',NULL,0,0,0,0,'',0,'',0,'',0,'','6b1b1b27241f42229e8b159320371356',''),(19115,'({32334}>0 and {32334}<10m) or ({32334}=0 and {32335}<10m)','ZYXEL IES1248-51: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL IES1248-51: {HOST.NAME} has been restarted (uptime < 10m)','bbccceac3dc24b9ab76a820fe5be4788',''),(19116,'{24102}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL IES1248-51: FAN{#SNMPINDEX} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','86f18f4e598443ab9e0ec30554d78e1a',''),(19117,'{24103}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES1248-51: High the DSL line attenuation in Port {#SNMPINDEX}','',0,0,2,0,'The reductions in amplitude of the downstream and upstream DSL signals.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES1248-51: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','23e50c0031c1457596b1366a40606ef9',''),(19118,'{24104}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES1248-51: Low the DSL line noise margins in Port {#SNMPINDEX}','',0,0,2,0,'Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES1248-51: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','23bbc44b2f114afe99a8175a2b7f0ddd',''),(19119,'{24105}>{$ZYXEL.ADSL.ATN.MAX}','ZYXEL IES1248-51: High the DSL line attenuation in Port {#SNMPINDEX}','',0,0,2,0,'The reductions in amplitude of the downstream and upstream DSL signals.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES1248-51: High the DSL line attenuation in Port {#SNMPINDEX} (>{$ZYXEL.ADSL.ATN.MAX}dB for 5m)','2132fed26fe54a7daa017b7264c37f1c',''),(19120,'{24106}<{$ZYXEL.ADSL.SNR.MIN}','ZYXEL IES1248-51: Low the DSL line noise margins in Port {#SNMPINDEX}','',0,0,2,0,'Signal-to-noise margin (SNR Margin) which is the difference between the actual SNR and the SNR required to sync at a specific speed','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL IES1248-51: Low the DSL line noise margins in Port {#SNMPINDEX} (<{$ZYXEL.ADSL.SNR.MIN}dB for 5m)','2d8f752b376f4c10bc8efbd39c8f45a9',''),(19121,'{24107}=2 and {24108}<>{24109}','ZYXEL IES1248-51: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24107}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','93a58c14939d4c3491646171910fe5ad',''),(19122,'{24110}=2 and {24111}<>{24112}','ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24110}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','8d90a989c82a4890a3a1a0b8eeb53462',''),(19123,'{24113}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL IES1248-51: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f0d7f5282c784224b0cd5f76d3c2ad90',''),(19124,'{24114}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL IES1248-51: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9815420fe46c45ce8731b9688b4a543e',''),(19125,'{24115}=0','ZYXEL MES-3528: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0e38d148fc29439488b3b23ee308b1d9',''),(19126,'{24116}>{$CPU.UTIL.CRIT}','ZYXEL MES-3528: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL MES-3528: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','247a25a4976a45eca78853aea112cdd6',''),(19127,'{24117}<>{24118} and length({24119})>0','ZYXEL MES-3528: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','7c4cfa75447a4eeda874d916d052eb6e',''),(19128,'{24120}<>\"MES-3528\"','ZYXEL MES-3528: Template does not match hardware','',0,0,1,0,'This template is for Zyxel MES-3528, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','b98e244abe2a4bd481be50048234afe6',''),(19129,'{24121}<>{24122} and length({24123})>0','ZYXEL MES-3528: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MES-3528: Device has been replaced (new serial number received)','d08bc1ffb11e4bbc98851c30595e996c',''),(19130,'({32336}>0 and {32336}<10m) or ({32336}=0 and {32337}<10m)','ZYXEL MES-3528: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MES-3528: {HOST.NAME} has been restarted (uptime < 10m)','d138c874f4de4f3a97a0c615d589826a',''),(19131,'{24125}=2 and {24126}<>{24127}','ZYXEL MES-3528: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24125}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','c23272db35f44fe6958e3b5e31a52974',''),(19132,'{24128} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','f9e2991ea38343c8b2c9815bf733aef8',''),(19133,'{24129} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','341bff907cd943219bbed92773d9b005',''),(19134,'{24130}<>{24131} and length({24132})>0','ZYXEL MES-3528: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL MES-3528: SFP {#SNMPINDEX} has been replaced (new serial number received)','5cd22f26211a428099d2a41c5c41efab',''),(19135,'{24133}=0','ZYXEL MES3500-10: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c33a4bffd5464934b4b9f1e7160806e1',''),(19136,'{24134}>{$CPU.UTIL.CRIT}','ZYXEL MES3500-10: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL MES3500-10: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','0d31c154f8f34ed18a99558f7839bbb6',''),(19137,'{24135}<>{24136} and length({24137})>0','ZYXEL MES3500-10: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','db567c7693b6437e89ef7a5b78c889f9',''),(19138,'{24138}<>\"MES3500-10\"','ZYXEL MES3500-10: Template does not match hardware','',0,0,1,0,'This template is for Zyxel MES3500-10, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','27f1cb5a297c4b1eafd4056317a37f01',''),(19139,'{24139}<>{24140} and length({24141})>0','ZYXEL MES3500-10: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MES3500-10: Device has been replaced (new serial number received)','ee14abdf61b04a90adf6e2afcc3d73f4',''),(19140,'({32338}>0 and {32338}<10m) or ({32338}=0 and {32339}<10m)','ZYXEL MES3500-10: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MES3500-10: {HOST.NAME} has been restarted (uptime < 10m)','9899ada82b0e4507948a8a0068e5640d',''),(19141,'{24143}>{$MEMORY.UTIL.MAX}','ZYXEL MES3500-10: High memory utilization in \"{#ZYXEL.MEMORY.NAME}\" pool','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES3500-10: High memory utilization in \"{#ZYXEL.MEMORY.NAME}\" pool (>{$MEMORY.UTIL.MAX}% for 5m)','91609e57df4941faa9fee17051f8ac24',''),(19142,'{24144}=2 and {24145}<>{24146}','ZYXEL MES3500-10: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24144}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','fb9bb0e2ceb643f495b93bbaf04b0cc1',''),(19143,'{24147} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','bc09d6c1771d4d04afe86f49dbd98852',''),(19144,'{24148} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','d05ae92b624347cc9a8fe1154995f3f9',''),(19145,'{24149}<>{24150} and length({24151})>0','ZYXEL MES3500-10: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL MES3500-10: SFP {#SNMPINDEX} has been replaced (new serial number received)','8832e1fa622449f582218cf5a7bf6b75',''),(19146,'{24152}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MES3500-10: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6970c577993343dfaa97f4317acf0f08',''),(19147,'{24153}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MES3500-10: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c86b60bc2d0842e28f0718314db4cde0',''),(19148,'{24154}=0','ZYXEL MES3500-24: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','96435fde17384c6bb4f9811ad9ca184a',''),(19149,'{24155}>{$CPU.UTIL.CRIT}','ZYXEL MES3500-24: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL MES3500-24: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','911d1c7e921f43af8ab3c0035be57a27',''),(19150,'{24156}<>{24157} and length({24158})>0','ZYXEL MES3500-24: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','f3daea29a34b4cf992d3c23ba8a64d2e',''),(19151,'{24159}<>\"MES3500-24\"','ZYXEL MES3500-24: Template does not match hardware','',0,0,1,0,'This template is for Zyxel MES3500-24, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','ab363c150ecd447ea4d3a3a9c311b992',''),(19152,'{24160}<>{24161} and length({24162})>0','ZYXEL MES3500-24: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MES3500-24: Device has been replaced (new serial number received)','a475d29129664eec82fc7ed85cb74df9',''),(19153,'({32340}>0 and {32340}<10m) or ({32340}=0 and {32341}<10m)','ZYXEL MES3500-24: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MES3500-24: {HOST.NAME} has been restarted (uptime < 10m)','c389b0db83bc404e8cb84ce65db79700',''),(19154,'{24164}>{$MEMORY.UTIL.MAX}','ZYXEL MES3500-24: High memory utilization in \"{#ZYXEL.MEMORY.NAME}\" pool','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES3500-24: High memory utilization in \"{#ZYXEL.MEMORY.NAME}\" pool (>{$MEMORY.UTIL.MAX}% for 5m)','66802198e0764ee29cdf557378b5566b',''),(19155,'{24165}=2 and {24166}<>{24167}','ZYXEL MES3500-24: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24165}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','5a9faa35f7d547a987e78075832cf38e',''),(19156,'{24168} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','ef830e34f83347bebba87a72208d805b',''),(19157,'{24169} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','229f44666e6043a1a8e34437ad24e3ae',''),(19158,'{24170}<>{24171} and length({24172})>0','ZYXEL MES3500-24: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL MES3500-24: SFP {#SNMPINDEX} has been replaced (new serial number received)','f84b378d79b74174842cc49af29c2a0c',''),(19159,'{24173}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MES3500-24: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9963d3848c774563881689da1bcddefc',''),(19160,'{24174}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MES3500-24: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2eef8cabb2e141dd8b6d1868ebc79db4',''),(19161,'{24175}=0','ZYXEL MGS-3712: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','60787fd1204b42bfb515b1b204c1d14f',''),(19162,'{24176}>{$CPU.UTIL.CRIT}','ZYXEL MGS-3712: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL MGS-3712: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b1ca06637dbe4c9ca84e2811e780d5d5',''),(19163,'{24177}<>{24178} and length({24179})>0','ZYXEL MGS-3712: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','de7d7e7d976c4b9894259c4e7fb5a4dd',''),(19164,'{24180}<>\"MGS-3712\"','ZYXEL MGS-3712: Template does not match hardware','',0,0,1,0,'This template is for Zyxel MGS-3712, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','e0b4c4f09f6f496cb035af320fcf96a0',''),(19165,'{24181}<>{24182} and length({24183})>0','ZYXEL MGS-3712: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MGS-3712: Device has been replaced (new serial number received)','4a9495748e09477ca5f12443fff533c9',''),(19166,'({32342}>0 and {32342}<10m) or ({32342}=0 and {32343}<10m)','ZYXEL MGS-3712: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MGS-3712: {HOST.NAME} has been restarted (uptime < 10m)','eefe29ad784d40d3980a4cb1118dd816',''),(19167,'{24185}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL MGS-3712: FAN{#SNMPINDEX} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','edc0057dbdb64fd584cc968c5d8bb41f',''),(19168,'{24186}=2 and {24187}<>{24188}','ZYXEL MGS-3712: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24186}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','e21751b08fe740f2ad9ad6bde6b879c4',''),(19169,'{24189} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','e9d242819d7345a0b44cc14a392f05fa',''),(19170,'{24190} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','177c2fe88ec24e3d9a5ea9f6b3f346d9',''),(19171,'{24191}<>{24192} and length({24193})>0','ZYXEL MGS-3712: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL MGS-3712: SFP {#SNMPINDEX} has been replaced (new serial number received)','aaa3492aa0c64e8a973d1a755fd24f50',''),(19172,'{24194}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MGS-3712: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b5ba7daf05204f2b987b879a3d44fac2',''),(19173,'{24195}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MGS-3712: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','02a7a32af7a440b6a7199b425305fdde',''),(19174,'{24196}=0','ZYXEL MGS-3712F: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c4244d60e8aa4cc380442992c031b2fd',''),(19175,'{24197}>{$CPU.UTIL.CRIT}','ZYXEL MGS-3712F: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL MGS-3712F: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','084cf3c89c9c48eeac9131d831a4f71b',''),(19176,'{24198}<>{24199} and length({24200})>0','ZYXEL MGS-3712F: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','fbf62d3f9ce54baab9a16f3e123811ef',''),(19177,'{24201}<>\"MGS-3712F\"','ZYXEL MGS-3712F: Template does not match hardware','',0,0,1,0,'This template is for Zyxel MGS-3712F, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','bf3d28b088db48a59aaa9e88f6b13cb8',''),(19178,'{24202}<>{24203} and length({24204})>0','ZYXEL MGS-3712F: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MGS-3712F: Device has been replaced (new serial number received)','ccb3fe676cd742af954b8c5e7898e5f0',''),(19179,'({32344}>0 and {32344}<10m) or ({32344}=0 and {32345}<10m)','ZYXEL MGS-3712F: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MGS-3712F: {HOST.NAME} has been restarted (uptime < 10m)','6a31fdd61b9f4aa99c8ad15ff243c6b2',''),(19180,'{24206}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL MGS-3712F: FAN{#SNMPINDEX} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4672af40f7434a419d063c6f00f4f9f8',''),(19181,'{24207}=2 and {24208}<>{24209}','ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24207}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','d92c1f55c21e4780ada69269d95c5f45',''),(19182,'{24210} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','1ef8b878bd334f1eac9d9c4258d1f4f2',''),(19183,'{24211} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','6605455fa4764a578feff4ce12a20883',''),(19184,'{24212}<>{24213} and length({24214})>0','ZYXEL MGS-3712F: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL MGS-3712F: SFP {#SNMPINDEX} has been replaced (new serial number received)','8fc46b61f7854893839a307700627d18',''),(19185,'{24215}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MGS-3712F: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b0d3093a36984493a7ffe87c7c4d408e',''),(19186,'{24216}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MGS-3712F: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9a15b78bae564c879a5c95290cde63fe',''),(19187,'{24217}=0','ZYXEL MES3500-24S: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d80bc493096b4da4857651e7e28829e7',''),(19188,'{24218}>{$CPU.UTIL.CRIT}','ZYXEL MES3500-24S: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL MES3500-24S: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','7bf51ce2b7a64f3f8151edc224c601e8',''),(19189,'{24219}<>{24220} and length({24221})>0','ZYXEL MES3500-24S: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','182e8b14935445268c096a3e4fdb5795',''),(19190,'{24222}>{$MEMORY.UTIL.MAX}','ZYXEL MES3500-24S: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'ZYXEL MES3500-24S: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d3a4dca93ad946589b1b83e0fe647dde',''),(19191,'{24223}<>\"MES3500-24S\"','ZYXEL MES3500-24S: Template does not match hardware','',0,0,1,0,'This template is for Zyxel MES3500-24S series, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','96c011542d5b4473934e0de9e442479c',''),(19192,'{24224}<>{24225} and length({24226})>0','ZYXEL MES3500-24S: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MES3500-24S: Device has been replaced (new serial number received)','90268ffbf33049d6adc6ed96badd67ec',''),(19193,'({32346}>0 and {32346}<10m) or ({32346}=0 and {32347}<10m)','ZYXEL ES3500-8PD: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL ES3500-8PD: {HOST.NAME} has been restarted (uptime < 10m)','6c8fce36fd9c49569be0ba2bfb70f478',''),(19194,'{24228}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','19846f8e671945c68b065ac53ebb2d38',''),(19195,'{24229}=2 and {24230}<>{24231}','ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24229}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','60f1b7c76a6b410db3f3a2ae40c3b74c',''),(19196,'{24232} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','2a75ca5b7ef444d0a96dcf2d7c824f03',''),(19197,'{24233} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','f2989317c3f847da84979dde3b4f4db4',''),(19198,'{24234}<>{24235} and length({24236})>0','ZYXEL MES3500-24S: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL MES3500-24S: SFP {#SNMPINDEX} has been replaced (new serial number received)','f6533a3fe07c4f0290e7758ac4183a1f',''),(19199,'{24237}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MES3500-24S: Temperature {#ZYXEL.TEMPDESCRIPTION} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c6db10ac3bec446e9152545119b555bc',''),(19200,'{24238}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MES3500-24S: Voltage {#ZYXEL.DESCRIPTION} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','52ac34f156aa434dace3447bb5745b34',''),(19201,'{24239}=0','ZYXEL MGS3520-28x: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3bf5d80d383e4e98853caa02063d69c9',''),(19202,'{24240}>{$CPU.UTIL.CRIT}','ZYXEL MGS3520-28x: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL MGS3520-28x: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','96ed7ee3906541ea9cb2c95cf4da1a62',''),(19203,'{24241}<>{24242} and length({24243})>0','ZYXEL MGS3520-28x: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','3785991565b948c2a1e1a2a140c42df4',''),(19204,'{24244}>{$MEMORY.UTIL.MAX}','ZYXEL MGS3520-28x: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'ZYXEL MGS3520-28x: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1a999dff1dd9481083681741e71aba76',''),(19205,'not({24245}=\"MGS3520-28\" or {24245}=\"MGS3520-28F\")','ZYXEL MGS3520-28x: Template does not match hardware','',0,0,1,0,'This template is for Zyxel MGS3520-28x series, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','d72bc70a67014d818d593d6c484fc9ee',''),(19206,'{24246}<>{24247} and length({24248})>0','ZYXEL MGS3520-28x: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MGS3520-28x: Device has been replaced (new serial number received)','e953886c5a464fc18bb1e221d801901c',''),(19207,'({32348}>0 and {32348}<10m) or ({32348}=0 and {32349}<10m)','ZYXEL MGS3520-28x: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL MGS3520-28x: {HOST.NAME} has been restarted (uptime < 10m)','308761b6dffb44c7b827f6ca76312233',''),(19208,'{24250}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9eedeb7aaba943c0947896cd50b39c7f',''),(19209,'{24251}=2 and {24252}<>{24253}','ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24251}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','abb9d47ee9624d6f9805e6eedd5532c5',''),(19210,'{24254} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','27cd25ea30fa4f1c9b7b431218241d0c',''),(19211,'{24255} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','1188909e81c14c23aa9eefbb25a4c367',''),(19212,'{24256}<>{24257} and length({24258})>0','ZYXEL MGS3520-28x: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX} has been replaced (new serial number received)','b9c3894fed8140c684be7c1fe2bbca8d',''),(19213,'{24259}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL MGS3520-28x: Temperature {#ZYXEL.TEMPDESCRIPTION} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c2d4142fb8934eb7b66f5a5e4fa04398',''),(19214,'{24260}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL MGS3520-28x: Voltage {#ZYXEL.DESCRIPTION} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','22b6f2f48eae4167b31c8fe3ccbc138a',''),(19215,'{24261}=0','ZYXEL XGS-4728F: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fd9a321842544253896e5a4c1a58ced3',''),(19216,'{24262}>{$CPU.UTIL.CRIT}','ZYXEL XGS-4728F: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'ZYXEL XGS-4728F: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','20f368f955f74fc9b8380b1bbff7e057',''),(19217,'{24263}<>{24264} and length({24265})>0','ZYXEL XGS-4728F: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','5da304609e8c45d980c46579f6848f0a',''),(19218,'{24266}<>\"XGS-4728F\"','ZYXEL XGS-4728F: Template does not match hardware','',0,0,1,0,'This template is for Zyxel XGS-4728F, but connected to {ITEM.VALUE}','',NULL,0,0,0,0,'',0,'',0,'',0,'','0329f3f5aa6a4315a4f3611ad662103e',''),(19219,'{24267}<>{24268} and length({24269})>0','ZYXEL XGS-4728F: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL XGS-4728F: Device has been replaced (new serial number received)','4df7c31c3079411baabd4ae66e580652',''),(19220,'({32350}>0 and {32350}<10m) or ({32350}=0 and {32351}<10m)','ZYXEL XGS-4728F: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'ZYXEL XGS-4728F: {HOST.NAME} has been restarted (uptime < 10m)','36b9a7d3d3fb45f782a5ea05de6816f9',''),(19221,'{24271}<{#ZYXEL.FANRPM.THRESH.LOW}','ZYXEL XGS-4728F: FAN{#SNMPINDEX} is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','012219b8b16941b59d1f9a3f685e9f38',''),(19222,'{24272}>{$MEMORY.UTIL.MAX}','ZYXEL XGS-4728F: High memory utilization in \"{#ZYXEL.MEMORY.NAME}\" pool','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL XGS-4728F: High memory utilization in \"{#ZYXEL.MEMORY.NAME}\" pool (>{$MEMORY.UTIL.MAX}% for 5m)','90b328c3b56c417eb938091338bd07fc',''),(19223,'{24273}=2 and {24274}<>{24275}','ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24273}<>2',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','3f3ce5111d47490382cb0c18e2d36f77',''),(19224,'{24276} > {#ZYXEL.SFP.WARN.MAX}','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The upper threshold value of the parameter is exceeded','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: High {#ZYXEL.SFP.DESCRIPTION} (over {#ZYXEL.SFP.WARN.MAX}{#ZYXEL.SFP.UNIT})','409c52cfed074352810bacfd52aa89f0',''),(19225,'{24277} < {#ZYXEL.SFP.WARN.MIN}','ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION}','',0,0,2,0,'The parameter values are less than the lower threshold','',NULL,0,0,2,0,'',0,'',0,'',0,'ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: Low {#ZYXEL.SFP.DESCRIPTION} (less than {#ZYXEL.SFP.WARN.MIN}{#ZYXEL.SFP.UNIT})','a2c40df40a334f6da00a438eb70f8374',''),(19226,'{24278}<>{24279} and length({24280})>0','ZYXEL XGS-4728F: SFP {#SNMPINDEX} has been replaced','',0,0,1,0,'SFP {#SNMPINDEX} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'ZYXEL XGS-4728F: SFP {#SNMPINDEX} has been replaced (new serial number received)','632be557ffed439e98425eaa59361e50',''),(19227,'{24281}>{#ZYXEL.TEMP.THRESH.HIGH}','ZYXEL XGS-4728F: Temperature {#ZYXEL.TEMP.ID} is in critical state','',0,0,3,0,'Please check the temperature','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6181f094ae4c4cf4ae4b2e198e2f9b6e',''),(19228,'{24282}<{#ZYXEL.VOLT.THRESH.LOW}','ZYXEL XGS-4728F: Voltage {#ZYXEL.VOLT.NOMINAL} is in critical state','',0,0,3,0,'Please check the power supply','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','631202a132dc44afa90b0537f9957ee1',''),(19229,'{24447}<>{24448} and length({24449})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','622ac72c0e534bba94bb93636e4dc103',''),(19230,'({32382}>0 and {32382}<10m) or ({32382}=0 and {32383}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','9026e680b409424e8fa29934878cb771',''),(19231,'{24451}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','010a749e3a3242cd8e3ea30459fae5a4',''),(19232,'{24452}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is in critical state!','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0300b4bf4e0b42adb1b9e4985e80e356',''),(19233,'{24453}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is not in optimal state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','158561ecab8b4bbd9c0a616f419bda10',''),(19234,'{24454}={$DISK.ARRAY.STATUS.CRIT:\"inoperable\"}','{#DISKARRAY_LOCATION}: Disk array controller is in critical state','',0,0,4,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','28c32222815f47e193d09afe5aafae79',''),(19235,'{24455}={$DISK.ARRAY.STATUS.WARN:\"degraded\"}','{#DISKARRAY_LOCATION}: Disk array controller is in warning state','',0,0,3,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4e758fac4df54388b5f4555bb170bdd3',''),(19236,'{24456}>{$DISK.ARRAY.STATUS.OK:\"operable\"}','{#DISKARRAY_LOCATION}: Disk array controller is not in optimal state','',0,0,2,0,'Please check the device for faults','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','264e15d04626432987c2193bf190c56c',''),(19237,'{24457}={$FAN.STATUS.CRIT:\"inoperable\"}','{#FAN_LOCATION}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7417bd7646c248eb9664875d7d19e9ea',''),(19238,'{24458}={$FAN.STATUS.WARN:\"degraded\"}','{#FAN_LOCATION}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b3d6cb64470e4e4c9bf1d619c0015823',''),(19239,'{24459}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {24460}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate on {#IFNAME}','',0,0,2,0,'Recovers when value below {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,0,'',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate on {#IFNAME} ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','caaa61b8d89540c496678d739610ae38',''),(19240,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {24461}=2 and ({24462}<>{24463})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24461}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','edfbf339b2664fae88e2a9003383e37f',''),(19241,'{24464}<>{24465} and length({24466})>0','{#DISK_LOCATION}: Disk has been replaced','',0,0,1,0,'Disk serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DISK_LOCATION}: Disk has been replaced (new serial number received)','693cdcf58cb34def90ade23e2f2485cb',''),(19242,'{24467}={$DISK.STATUS.CRIT:\"bad\"} or {24467}={$DISK.STATUS.CRIT:\"predictiveFailure\"}','{#DISK_LOCATION}: Physical disk error','',0,0,3,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','ba92b99606fa4bf0bc4f1b6a362c2cdb',''),(19243,'{24468}={$DISK.STATUS.FAIL:\"failed\"}','{#DISK_LOCATION}: Physical disk failed','',0,0,4,0,'Please check physical disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','eabf5aa62f004a2c996cc11bb5a6716a',''),(19244,'{24469}={$PSU.STATUS.CRIT:\"inoperable\"}','{#PSU_LOCATION}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0d2713cf2b72472c8d8896880476c20e',''),(19245,'{24470}={$PSU.STATUS.WARN:\"degraded\"}','{#PSU_LOCATION}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','468f08407a7448a384e5dcde589cb9d0',''),(19246,'{24471}>{$TEMP.MAX.CRIT:\"CPU\"}','{#SENSOR_LOCATION}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24472}<{$TEMP.MAX.CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:\"CPU\"}','c3b3933ceb504207a87054a1f9773a76',''),(19247,'{24473}>{$TEMP.MAX.WARN:\"CPU\"}','{#SENSOR_LOCATION}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24474}<{$TEMP.MAX.WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:\"CPU\"}','13b393265f59431687b776297cb0b104',''),(19248,'{24475}>{$TEMP.MAX.CRIT:\"Ambient\"}','{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24476}<{$TEMP.MAX.CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:\"Ambient\"}','aa4bf1c8b942462dbd21ccf8bd8c4a6b',''),(19249,'{24477}>{$TEMP.MAX.WARN:\"Ambient\"}','{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24478}<{$TEMP.MAX.WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP.MAX.WARN:\"Ambient\"}','7751dd6bf1394daa9d918005d2d99d10',''),(19250,'{24479}>{$TEMP.MAX.CRIT:\"Ambient\"}','{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24480}<{$TEMP.MAX.CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:\"Ambient\"}','230958b560374a118857b77418c6ba11',''),(19251,'{24481}>{$TEMP.MAX.WARN:\"Ambient\"}','{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24482}<{$TEMP.MAX.WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP.MAX.WARN:\"Ambient\"}','4cdcddd04b0e4625893a1e20ce22a10f',''),(19252,'{24483}>{$TEMP.MAX.CRIT:\"Ambient\"}','{#SENSOR_LOCATION}.Front: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24484}<{$TEMP.MAX.CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:\"Ambient\"}','8ee1dfc360aa4aca84a03b452ead92ce',''),(19253,'{24485}>{$TEMP.MAX.WARN:\"Ambient\"}','{#SENSOR_LOCATION}.Front: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24486}<{$TEMP.MAX.WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP.MAX.WARN:\"Ambient\"}','196c9fe3facf4e3db348337714c77e17',''),(19254,'{24487}>{$TEMP.MAX.CRIT:\"Ambient\"}','{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24488}<{$TEMP.MAX.CRIT:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:\"Ambient\"}','a8714fcba51c46f9aa84fa02fba37743',''),(19255,'{24489}>{$TEMP.MAX.WARN:\"Ambient\"}','{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{24490}<{$TEMP.MAX.WARN:\"Ambient\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP.MAX.WARN:\"Ambient\"}','87068c693e574cd3952ca90e95a7a681',''),(19256,'{24491}<>{24492} and length({24493})>0','{#UNIT_LOCATION}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#UNIT_LOCATION}: Device has been replaced (new serial number received)','27253665837647bb9c3be58f7d0881ae',''),(19257,'{24494}={$HEALTH.STATUS.CRIT:\"computeFailed\"} or {24494}={$HEALTH.STATUS.CRIT:\"configFailure\"} or {24494}={$HEALTH.STATUS.CRIT:\"unconfigFailure\"} or {24494}={$HEALTH.STATUS.CRIT:\"inoperable\"}','{#UNIT_LOCATION}: System status is in critical state','',0,0,4,0,'Please check the device for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7f7c337f4f9f44a3a176acce5bf27f29',''),(19258,'{24495}={$HEALTH.STATUS.WARN:\"testFailed\"} or {24495}={$HEALTH.STATUS.WARN:\"thermalProblem\"} or {24495}={$HEALTH.STATUS.WARN:\"powerProblem\"} or {24495}={$HEALTH.STATUS.WARN:\"voltageProblem\"} or {24495}={$HEALTH.STATUS.WARN:\"diagnosticsFailed\"}','{#UNIT_LOCATION}: System status is in warning state','',0,0,2,0,'Please check the device for warnings','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','15ee6a98f2af4da4bcaa95821ffff524',''),(19259,'{24496}<>{$VDISK.STATUS.OK:\"equipped\"}','{#VDISK_LOCATION}: Virtual disk is not in OK state','',0,0,2,0,'Please check virtual disk for warnings or errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','63232b4e1f6b411a93ff8abad1ff3200',''),(19260,'{24500}<>{24501} and length({24502})>0','Dell R720: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','c7c3d5301c8843528929123e1473af5f',''),(19261,'{24503}<>{24504} and length({24505})>0','Dell R720: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R720: Device has been replaced (new serial number received)','53caaec2a0664e879f85c263a43715c3',''),(19262,'{24506}=1','Dell R720: Server is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','da2b7ee5a60948d582327e8a5a9169b9',''),(19263,'{24507}=1','Dell R720: Server is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b8294b60044c4549baa7c930ce8acc48',''),(19264,'{24508}=0','Dell R720: Redfish API service is unavailable','',0,0,4,0,'The service is unavailable or does not accept TCP connections.','',NULL,0,0,0,0,'',0,'',0,'',0,'','24004d9971ea4686b2941ecf8135b421',''),(19265,'{24509}=1','Dell R720: {#BATTERY_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e4549547cb7747318895e6f237fc52b8',''),(19266,'{24510}=1','Dell R720: {#BATTERY_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3788759c5f91471da7cac5560593be2b',''),(19267,'{24511}=1','Dell R720: {#CNTLR_NAME} in slot {#SLOT} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d8139731126649a8825550863b9ea832',''),(19268,'{24512}=1','Dell R720: {#CNTLR_NAME} in slot {#SLOT} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6764e247bd64411692e09fe6618c5411',''),(19269,'{24513}=1','Dell R720: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c856499a11124210811fec617dbdd8a8',''),(19270,'{24514}=1','Dell R720: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d97e44aad2e743759dcf486e73b6e141',''),(19271,'{24515}=1','Dell R720: {#IFNAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c83b9b49f9bd4ddd9fb19033b5ad581c',''),(19272,'{24516}=1','Dell R720: {#IFNAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','db482b43f586470c9cf46e711954f148',''),(19273,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({24517}=\"Down\" and {24518}<>{24519})','Dell R720: {#IFNAME} Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. Condition of difference between last and previous value - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24517}<>\"Down\" or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','bf30aa7ff82e4d08b3b48ded248c4d46',''),(19274,'{24520}<>{24521} and length({24522})>0','Dell R720: {#DISK_NAME} has been replaced','',0,0,1,0,'{#DISK_NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Dell R720: {#DISK_NAME} has been replaced (new serial number received)','efaef650ead54921b101e0fe4bb4381a',''),(19275,'{24523}=1','Dell R720: {#DISK_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','56757be1596c4b0189e5cd6fe0a8fa45',''),(19276,'{24524}=1','Dell R720: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0e68f903e424472dac82f3cbd72ef248',''),(19277,'{24525}=1','Dell R720: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1a9a063e006343c0bce9bf21ead9d93f',''),(19278,'{24526}=1','Dell R720: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c9b528eac8844abea4de8a53c0ff8893',''),(19279,'{24527}=1','Dell R720: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c909cc04251c4b53bf512128476dc9ba',''),(19280,'{24528}=1','Dell R720: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9d4bede243904a6aa92f96948d6f9ed7',''),(19281,'{24529}=1','Dell R720: {#DISK_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2284cde0da39410396fa7dd3d9151d85',''),(19282,'{24530}=1','Dell R720: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ebd49db8ab2f491e9238dd60befe0b20',''),(19283,'{24531}<>{24532} and length({24533})>0','Dell R720: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','8b88b49aa9584e0e99f1ac5933ece512',''),(19284,'{24534}<>{24535} and length({24536})>0','Dell R720: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R720: Device has been replaced (new serial number received)','7d8f8509b7c24cd495ca16f3b66311a2',''),(19285,'{24537}<>{24538} and length({24539})>0','Dell R720: System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R720: System name has changed (new name: {ITEM.VALUE})','8223bb1771ff435eab1e2473073daf63',''),(19286,'{24540}={$HEALTH.STATUS.DISASTER}','Dell R720: System is in unrecoverable state','',0,0,5,0,'Please check the device for faults.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8a3c959a946b4945848857b249b6384e',''),(19287,'{24541}={$HEALTH.STATUS.CRIT}','Dell R720: System status is in critical state','',0,0,4,0,'Please check the device for errors.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','922bb76a936741aab560a6c7fdf1609f',''),(19288,'{24542}={$HEALTH.STATUS.WARN}','Dell R720: System status is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e5335391a2a74e87a4f9964e2b421150',''),(19289,'{24543}<>{24544} and length({24545})>0','Dell R720: Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possibly, the system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','a9556b21495c4ee4acba1c7b2be8b5b6',''),(19290,'({32386}>0 and {32386}<10m) or ({32386}=0 and {32387}<10m)','Dell R720: Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R720: {HOST.NAME} has been restarted (uptime < 10m)','a5505bd8d3f64ea1ae02e421a4114d2f',''),(19291,'{24547}=0','Dell R720: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ff70ec8e9ea64cbf9638e6d8f5282b0f',''),(19292,'{24548}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R720: {#BATTERY_NAME} is in critical state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','560ced8dc58a498db8f511e8ecbd7a7d',''),(19293,'{24549}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R720: {#BATTERY_NAME} is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c3f0750f9d0f4875b81a9381570a9cca',''),(19294,'{24550}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R720: {#BATTERY_NAME} is not in optimal state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d79579790be2485e9f8227be9f460b18',''),(19295,'{24551}={$DISK.ARRAY.STATUS.CRIT}','Dell R720: {#CNTLR_NAME} is in critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','dfd11c71843c4d19b8c216864146217a',''),(19296,'{24552}={$DISK.ARRAY.STATUS.FAIL}','Dell R720: {#CNTLR_NAME} is in unrecoverable state','',0,0,5,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','73b701ac3ef448ceab5df956c9ebefe6',''),(19297,'{24553}={$DISK.ARRAY.STATUS.WARN}','Dell R720: {#CNTLR_NAME} is in warning state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4c17ab46f1624c81b5f6ccebaddf76e2',''),(19298,'{24554}={$FAN.STATUS.CRIT:\"criticalUpper\"} or {24554}={$FAN.STATUS.CRIT:\"nonRecoverableUpper\"} or {24554}={$FAN.STATUS.CRIT:\"criticalLower\"} or {24554}={$FAN.STATUS.CRIT:\"nonRecoverableLower\"} or {24554}={$FAN.STATUS.CRIT:\"failed\"}','Dell R720: {#FAN_DESCR} is in critical state','',0,0,3,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','02e8e8e511c04ce6b1ced1c9515e4960',''),(19299,'{24555}={$FAN.STATUS.WARN:\"nonCriticalUpper\"} or {24555}={$FAN.STATUS.WARN:\"nonCriticalLower\"}','Dell R720: {#FAN_DESCR} is in warning state','',0,0,2,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','50a0052574744bc0870bfaab56637f16',''),(19300,'{24556}<>{24557} and length({24558})>0','Dell R720: {#DISK_NAME} has been replaced','',0,0,1,0,'{#DISK_NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Dell R720: {#DISK_NAME} has been replaced (new serial number received)','10427c2fdc4243ff9735c3491c65e935',''),(19301,'{24559}={$DISK.SMART.STATUS.FAIL:\"replaceDrive\"} or {24559}={$DISK.SMART.STATUS.FAIL:\"replaceDriveSSDWearOut\"}','Dell R720: {#DISK_NAME} S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7da1638a51604539a0e1c01b4b038504',''),(19302,'{24560}={$DISK.STATUS.FAIL:\"critical\"} or {24560}={$DISK.STATUS.FAIL:\"nonRecoverable\"}','Dell R720: {#DISK_NAME} failed','',0,0,4,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','38cfba465f624cf897d0650e5a4290c3',''),(19303,'{24561}={$DISK.STATUS.WARN:\"nonCritical\"}','Dell R720: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','779c4a8c62f24d238b53f0ed8ebfcf5b',''),(19304,'{24562}={$PSU.STATUS.CRIT:\"critical\"} or {24562}={$PSU.STATUS.CRIT:\"nonRecoverable\"}','Dell R720: Power supply {#PSU_DESCR} is in critical state','',0,0,3,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b40edbb84f174a98be55b659c7766554',''),(19305,'{24563}={$PSU.STATUS.WARN:\"nonCritical\"}','Dell R720: Power supply {#PSU_DESCR} is in warning state','',0,0,2,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','217985fe9aed41338e8c2a48af3ceb99',''),(19306,'{24564}={$SENSOR.TEMP.STATUS.CRIT:\"criticalUpper\"} or {24564}={$SENSOR.TEMP.STATUS.CRIT:\"nonRecoverableUpper\"} or {24564}={$SENSOR.TEMP.STATUS.CRIT:\"criticalLower\"} or {24564}={$SENSOR.TEMP.STATUS.CRIT:\"nonRecoverableLower\"}','Dell R720: Probe {#SENSOR_LOCALE} is in critical status','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','153e7512141f489b84dcc35a7350d6bf',''),(19307,'{24565}={$SENSOR.TEMP.STATUS.WARN:\"nonCriticalUpper\"} or {24565}={$SENSOR.TEMP.STATUS.WARN:\"nonCriticalLower\"}','Dell R720: Probe {#SENSOR_LOCALE} is in warning status','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','eec3e64901d44a60a268ed30a8394d36',''),(19308,'{24566}<>{$SENSOR.TEMP.STATUS.OK}','Dell R720: Probe {#SENSOR_LOCALE} is not in optimal status','',0,0,1,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',1,'Current status: {ITEM.LASTVALUE1}',0,'','16dec7f89d9a44c0954bf29c3e32040b',''),(19309,'{24567}={$VDISK.STATUS.CRIT:\"failed\"}','Dell R720: {#DISK_NAME} failed','',0,0,4,0,'Please check the virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','42bcb2a7d63a46e082f3b6a1c5997fee',''),(19310,'{24568}={$VDISK.STATUS.WARN:\"degraded\"}','Dell R720: {#DISK_NAME} is in warning state','',0,0,3,0,'Please check the virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ea36db6addcf4bcb9f1c3b822e6c4422',''),(19311,'{24569}<>{24570} and length({24571})>0','Dell R740: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','520e12fd48354982a1180e6a354b87e8',''),(19312,'{24572}<>{24573} and length({24574})>0','Dell R740: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R740: Device has been replaced (new serial number received)','e3efa58c32b044d18675046006c69167',''),(19313,'{24575}=1','Dell R740: Server is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','53eb2e16dc2b4b81806c826771da9e78',''),(19314,'{24576}=1','Dell R740: Server is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bce115852baf4fd5a3ddb3245b768eab',''),(19315,'{24577}=0','Dell R740: Redfish API service is unavailable','',0,0,4,0,'The service is unavailable or does not accept TCP connections.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7da220a774f147b789c7b24d182c617e',''),(19316,'{24578}=1','Dell R740: {#BATTERY_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c2b65e66222d49ed9f068217a164a6ef',''),(19317,'{24579}=1','Dell R740: {#BATTERY_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ebe5e46ada29484da840f1eb70a9e43c',''),(19318,'{24580}=1','Dell R740: {#CNTLR_NAME} in slot {#SLOT} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b95c92e679ec4f54a83d48f416d2f384',''),(19319,'{24581}=1','Dell R740: {#CNTLR_NAME} in slot {#SLOT} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1251507dfe0c4b5287121436b1869205',''),(19320,'{24582}=1','Dell R740: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','17598a47dfdc41558ab171a306c06685',''),(19321,'{24583}=1','Dell R740: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ab2cfb7eeb8b439f8149814c986e2d46',''),(19322,'{24584}=1','Dell R740: {#IFNAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9a08ad3f597549f0841678ba572669c4',''),(19323,'{24585}=1','Dell R740: {#IFNAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d7f205844d7a4ed3a34405aa184faa1d',''),(19324,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({24586}=\"Down\" and {24587}<>{24588})','Dell R740: {#IFNAME} Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. Condition of difference between last and previous value - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24586}<>\"Down\" or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','6372dcbe18034e92b89c7e2503a378cb',''),(19325,'{24589}<>{24590} and length({24591})>0','Dell R740: {#DISK_NAME} has been replaced','',0,0,1,0,'{#DISK_NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Dell R740: {#DISK_NAME} has been replaced (new serial number received)','f1c78511b2ec49c29bf1e31d05826b98',''),(19326,'{24592}=1','Dell R740: {#DISK_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c8a872dca90e4d6aaa5422726779acbd',''),(19327,'{24593}=1','Dell R740: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','aafddfabfc9c4866b60c8e2a9b267c85',''),(19328,'{24594}=1','Dell R740: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0ad250b5037247ab971a266319989ec4',''),(19329,'{24595}=1','Dell R740: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6ca3f32810a04df2bed7e64df008451f',''),(19330,'{24596}=1','Dell R740: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','32134fb04cb3457abc98803d79007ea4',''),(19331,'{24597}=1','Dell R740: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f16bf4a4d5e140f7a6c1ea9112752710',''),(19332,'{24598}=1','Dell R740: {#DISK_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','61f1fea5489a436790791636b3797837',''),(19333,'{24599}=1','Dell R740: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','13929a816d8c4cb6abc24c681a154205',''),(19334,'{24600}<>{24601} and length({24602})>0','Dell R740: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','fc9618eb512e4d9b9eddf21c2700582e',''),(19335,'{24603}<>{24604} and length({24605})>0','Dell R740: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R740: Device has been replaced (new serial number received)','21ee92eed6f04ea59864dd09b1fac68a',''),(19336,'{24606}<>{24607} and length({24608})>0','Dell R740: System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R740: System name has changed (new name: {ITEM.VALUE})','edc8087b2d2b423fb637b7caefeb50fb',''),(19337,'{24609}={$HEALTH.STATUS.DISASTER}','Dell R740: System is in unrecoverable state','',0,0,5,0,'Please check the device for faults.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2a44b7a84ef84d25a40e58239cc305d1',''),(19338,'{24610}={$HEALTH.STATUS.CRIT}','Dell R740: System status is in critical state','',0,0,4,0,'Please check the device for errors.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7efda5ac8a21449ba32ff3f005433fc1',''),(19339,'{24611}={$HEALTH.STATUS.WARN}','Dell R740: System status is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5d3dd609897a4f9ba644db1916045a6f',''),(19340,'{24612}<>{24613} and length({24614})>0','Dell R740: Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possibly, the system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','9917b5d4d2684398b09ce42842b15146',''),(19341,'({32388}>0 and {32388}<10m) or ({32388}=0 and {32389}<10m)','Dell R740: Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R740: {HOST.NAME} has been restarted (uptime < 10m)','91449180f6dd435f8104a51ae5645fc3',''),(19342,'{24616}=0','Dell R740: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6c5688c758b64c2f91f2523855578be9',''),(19343,'{24617}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R740: {#BATTERY_NAME} is in critical state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','19f9217f3d3a4f98a516c3569d35bd21',''),(19344,'{24618}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R740: {#BATTERY_NAME} is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b89350f48b354abf864372e3210cbb76',''),(19345,'{24619}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R740: {#BATTERY_NAME} is not in optimal state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','df1277db9cae4a10b18d08a38fefaec5',''),(19346,'{24620}={$DISK.ARRAY.STATUS.CRIT}','Dell R740: {#CNTLR_NAME} is in critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1be163a9cbf241deb9075ff06b596eb6',''),(19347,'{24621}={$DISK.ARRAY.STATUS.FAIL}','Dell R740: {#CNTLR_NAME} is in unrecoverable state','',0,0,5,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9ba11fff789445e69be1a53fa7d0e07e',''),(19348,'{24622}={$DISK.ARRAY.STATUS.WARN}','Dell R740: {#CNTLR_NAME} is in warning state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0c06b18258914e7c8dc9941d0b94f512',''),(19349,'{24623}={$FAN.STATUS.CRIT:\"criticalUpper\"} or {24623}={$FAN.STATUS.CRIT:\"nonRecoverableUpper\"} or {24623}={$FAN.STATUS.CRIT:\"criticalLower\"} or {24623}={$FAN.STATUS.CRIT:\"nonRecoverableLower\"} or {24623}={$FAN.STATUS.CRIT:\"failed\"}','Dell R740: {#FAN_DESCR} is in critical state','',0,0,3,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','87d1cd50bf134d6e8bf30e1c97b63880',''),(19350,'{24624}={$FAN.STATUS.WARN:\"nonCriticalUpper\"} or {24624}={$FAN.STATUS.WARN:\"nonCriticalLower\"}','Dell R740: {#FAN_DESCR} is in warning state','',0,0,2,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','79dc96ea76e44df9b7e0615c97bcd3a7',''),(19351,'{24625}<>{24626} and length({24627})>0','Dell R740: {#DISK_NAME} has been replaced','',0,0,1,0,'{#DISK_NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Dell R740: {#DISK_NAME} has been replaced (new serial number received)','6a99f1c73c9644369947c25d187e812c',''),(19352,'{24628}={$DISK.SMART.STATUS.FAIL:\"replaceDrive\"} or {24628}={$DISK.SMART.STATUS.FAIL:\"replaceDriveSSDWearOut\"}','Dell R740: {#DISK_NAME} S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b8d469d16cd7455a94daeeeafb1be82e',''),(19353,'{24629}={$DISK.STATUS.FAIL:\"critical\"} or {24629}={$DISK.STATUS.FAIL:\"nonRecoverable\"}','Dell R740: {#DISK_NAME} failed','',0,0,4,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','940630ac993842379dbd17168fcc3f4e',''),(19354,'{24630}={$DISK.STATUS.WARN:\"nonCritical\"}','Dell R740: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4b252f24da774362a77be992e0c2e1da',''),(19355,'{24631}={$PSU.STATUS.CRIT:\"critical\"} or {24631}={$PSU.STATUS.CRIT:\"nonRecoverable\"}','Dell R740: Power supply {#PSU_DESCR} is in critical state','',0,0,3,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6e055e9cf8e34d189b96c121f05cb529',''),(19356,'{24632}={$PSU.STATUS.WARN:\"nonCritical\"}','Dell R740: Power supply {#PSU_DESCR} is in warning state','',0,0,2,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','65f2765b5b4e4297ac7cc93499466cc2',''),(19357,'{24633}={$SENSOR.TEMP.STATUS.CRIT:\"criticalUpper\"} or {24633}={$SENSOR.TEMP.STATUS.CRIT:\"nonRecoverableUpper\"} or {24633}={$SENSOR.TEMP.STATUS.CRIT:\"criticalLower\"} or {24633}={$SENSOR.TEMP.STATUS.CRIT:\"nonRecoverableLower\"}','Dell R740: Probe {#SENSOR_LOCALE} is in critical status','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','a145a8ebf20641b8b2907e1c3e4048d5',''),(19358,'{24634}={$SENSOR.TEMP.STATUS.WARN:\"nonCriticalUpper\"} or {24634}={$SENSOR.TEMP.STATUS.WARN:\"nonCriticalLower\"}','Dell R740: Probe {#SENSOR_LOCALE} is in warning status','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','fa01e3ea0b5e44739f5ceef4db36cf43',''),(19359,'{24635}<>{$SENSOR.TEMP.STATUS.OK}','Dell R740: Probe {#SENSOR_LOCALE} is not in optimal status','',0,0,1,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',1,'Current status: {ITEM.LASTVALUE1}',0,'','128395cf2bbf43cf9311bb6dd6573f40',''),(19360,'{24636}={$VDISK.STATUS.CRIT:\"failed\"}','Dell R740: {#DISK_NAME} failed','',0,0,4,0,'Please check the virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','128bcdb7dc7b445390edd429d01dabf8',''),(19361,'{24637}={$VDISK.STATUS.WARN:\"degraded\"}','Dell R740: {#DISK_NAME} is in warning state','',0,0,3,0,'Please check the virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ce63508ee9c64b80bfaf95568dd7954f',''),(19362,'{24638}<>{24639} and length({24640})>0','Dell R820: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','1aa78b67649f41418c5690637fb3216b',''),(19363,'{24641}<>{24642} and length({24643})>0','Dell R820: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R820: Device has been replaced (new serial number received)','0d3a4dd2772f41029e599766fff1e651',''),(19364,'{24644}=1','Dell R820: Server is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b622a90916554829bfcc8bc7be30db8e',''),(19365,'{24645}=1','Dell R820: Server is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4c9fe8b20c7d48988a921c1b35879a9b',''),(19366,'{24646}=0','Dell R820: Redfish API service is unavailable','',0,0,4,0,'The service is unavailable or does not accept TCP connections.','',NULL,0,0,0,0,'',0,'',0,'',0,'','fd124cb97a6446b990898d0bd2380e9d',''),(19367,'{24647}=1','Dell R820: {#BATTERY_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f0ed031944d643a68b86f5712703b0c0',''),(19368,'{24648}=1','Dell R820: {#BATTERY_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7346dc1852864303b6c53497addc171f',''),(19369,'{24649}=1','Dell R820: {#CNTLR_NAME} in slot {#SLOT} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bf1d53ff79c749639566841aadb21374',''),(19370,'{24650}=1','Dell R820: {#CNTLR_NAME} in slot {#SLOT} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e0829f437b384ecf8edf531d56c20b17',''),(19371,'{24651}=1','Dell R820: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','09acd6d995b84bacbb66eb643ec24cfa',''),(19372,'{24652}=1','Dell R820: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','df3aa4ffcf69431db20b454c5bb1e5a8',''),(19373,'{24653}=1','Dell R820: {#IFNAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d21bc28f75ac486b8f4ca06baaaecd9b',''),(19374,'{24654}=1','Dell R820: {#IFNAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','185495870adc40578145f18b7225c5fa',''),(19375,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({24655}=\"Down\" and {24656}<>{24657})','Dell R820: {#IFNAME} Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. Condition of difference between last and previous value - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24655}<>\"Down\" or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','50c9fb7b16144f5d8d1cfe7e064d39d2',''),(19376,'{24658}<>{24659} and length({24660})>0','Dell R820: {#DISK_NAME} has been replaced','',0,0,1,0,'{#DISK_NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Dell R820: {#DISK_NAME} has been replaced (new serial number received)','6a2ad425b7654a58825a5032194204bd',''),(19377,'{24661}=1','Dell R820: {#DISK_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','39217fce69c84cd194e89543816ed35e',''),(19378,'{24662}=1','Dell R820: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','88db6b4134034b348d1c0f89fc14d1dd',''),(19379,'{24663}=1','Dell R820: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ef33d08d8aa94fa69343cc1235138590',''),(19380,'{24664}=1','Dell R820: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','81984cf66e464b44bd37016ef8daa70f',''),(19381,'{24665}=1','Dell R820: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','618d67476d224291a89067e8050acfb6',''),(19382,'{24666}=1','Dell R820: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f95b940cf5654419b1a51f704bfb1830',''),(19383,'{24667}=1','Dell R820: {#DISK_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','088ec5d991ed496884b22cd72c8ab891',''),(19384,'{24668}=1','Dell R820: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f3c8763499994ee1b5750afaa54290d1',''),(19385,'{24669}<>{24670} and length({24671})>0','Dell R820: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','db34a06be1bc43e2a244148cb742bcea',''),(19386,'{24672}<>{24673} and length({24674})>0','Dell R820: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R820: Device has been replaced (new serial number received)','07b08a664af94a889e000aaf4d137bbb',''),(19387,'{24675}<>{24676} and length({24677})>0','Dell R820: System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R820: System name has changed (new name: {ITEM.VALUE})','57624ace90564129926aadc7019452ff',''),(19388,'{24678}={$HEALTH.STATUS.DISASTER}','Dell R820: System is in unrecoverable state','',0,0,5,0,'Please check the device for faults.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ba4a8d9fc5ef43af959456a10c8f7daf',''),(19389,'{24679}={$HEALTH.STATUS.CRIT}','Dell R820: System status is in critical state','',0,0,4,0,'Please check the device for errors.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6626cc1193d04c48be02de9b261d0d4e',''),(19390,'{24680}={$HEALTH.STATUS.WARN}','Dell R820: System status is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','535ea4f1ed6a44ebacbc94c899f60965',''),(19391,'{24681}<>{24682} and length({24683})>0','Dell R820: Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possibly, the system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','f0331e24079347d58f3e5df328cfbd0c',''),(19392,'({32390}>0 and {32390}<10m) or ({32390}=0 and {32391}<10m)','Dell R820: Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R820: {HOST.NAME} has been restarted (uptime < 10m)','97c232039b0e441997642bb39cc7bf2b',''),(19393,'{24685}=0','Dell R820: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','85492273336d43219fa7e2eef4208359',''),(19394,'{24686}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R820: {#BATTERY_NAME} is in critical state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e6e2bd66c55744b0854d95669c0aa626',''),(19395,'{24687}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R820: {#BATTERY_NAME} is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3a7bfd13ad224bb6b0d4a3d38aa0a319',''),(19396,'{24688}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R820: {#BATTERY_NAME} is not in optimal state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e7d512abbd204adc81e2f5a59f0e761b',''),(19397,'{24689}={$DISK.ARRAY.STATUS.CRIT}','Dell R820: {#CNTLR_NAME} is in critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','70087ca390524853bd80dd6906ed038d',''),(19398,'{24690}={$DISK.ARRAY.STATUS.FAIL}','Dell R820: {#CNTLR_NAME} is in unrecoverable state','',0,0,5,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b516a87aac0d48c285cf23c8a2d5e9be',''),(19399,'{24691}={$DISK.ARRAY.STATUS.WARN}','Dell R820: {#CNTLR_NAME} is in warning state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a53035ca17604f69b2d878c50b69bbc1',''),(19400,'{24692}={$FAN.STATUS.CRIT:\"criticalUpper\"} or {24692}={$FAN.STATUS.CRIT:\"nonRecoverableUpper\"} or {24692}={$FAN.STATUS.CRIT:\"criticalLower\"} or {24692}={$FAN.STATUS.CRIT:\"nonRecoverableLower\"} or {24692}={$FAN.STATUS.CRIT:\"failed\"}','Dell R820: {#FAN_DESCR} is in critical state','',0,0,3,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','faf3982240ea4424af8b3c9135d240ca',''),(19401,'{24693}={$FAN.STATUS.WARN:\"nonCriticalUpper\"} or {24693}={$FAN.STATUS.WARN:\"nonCriticalLower\"}','Dell R820: {#FAN_DESCR} is in warning state','',0,0,2,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6f80cea251574ed7895694de10f0742c',''),(19402,'{24694}<>{24695} and length({24696})>0','Dell R820: {#DISK_NAME} has been replaced','',0,0,1,0,'{#DISK_NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Dell R820: {#DISK_NAME} has been replaced (new serial number received)','2c5ca847d2ca41e199740645c74a2fd7',''),(19403,'{24697}={$DISK.SMART.STATUS.FAIL:\"replaceDrive\"} or {24697}={$DISK.SMART.STATUS.FAIL:\"replaceDriveSSDWearOut\"}','Dell R820: {#DISK_NAME} S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b2b1013ff96243d48b468213c56bf51f',''),(19404,'{24698}={$DISK.STATUS.FAIL:\"critical\"} or {24698}={$DISK.STATUS.FAIL:\"nonRecoverable\"}','Dell R820: {#DISK_NAME} failed','',0,0,4,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','a78f3f6171e748e695d464adefe1978c',''),(19405,'{24699}={$DISK.STATUS.WARN:\"nonCritical\"}','Dell R820: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f62e8c34700e4b668af71da9a8d0c973',''),(19406,'{24700}={$PSU.STATUS.CRIT:\"critical\"} or {24700}={$PSU.STATUS.CRIT:\"nonRecoverable\"}','Dell R820: Power supply {#PSU_DESCR} is in critical state','',0,0,3,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8e28009ef16c441d93bc0fa794232b4c',''),(19407,'{24701}={$PSU.STATUS.WARN:\"nonCritical\"}','Dell R820: Power supply {#PSU_DESCR} is in warning state','',0,0,2,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1de5a20506d04b3a84deaa70b232101b',''),(19408,'{24702}={$SENSOR.TEMP.STATUS.CRIT:\"criticalUpper\"} or {24702}={$SENSOR.TEMP.STATUS.CRIT:\"nonRecoverableUpper\"} or {24702}={$SENSOR.TEMP.STATUS.CRIT:\"criticalLower\"} or {24702}={$SENSOR.TEMP.STATUS.CRIT:\"nonRecoverableLower\"}','Dell R820: Probe {#SENSOR_LOCALE} is in critical status','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','9a082c7fc18641fe8e2d42d9c2acc607',''),(19409,'{24703}={$SENSOR.TEMP.STATUS.WARN:\"nonCriticalUpper\"} or {24703}={$SENSOR.TEMP.STATUS.WARN:\"nonCriticalLower\"}','Dell R820: Probe {#SENSOR_LOCALE} is in warning status','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','fdf4ccc98a894cabbdf4cbd4d32b2270',''),(19410,'{24704}<>{$SENSOR.TEMP.STATUS.OK}','Dell R820: Probe {#SENSOR_LOCALE} is not in optimal status','',0,0,1,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',1,'Current status: {ITEM.LASTVALUE1}',0,'','c26c12068ec2429694491c3c74380091',''),(19411,'{24705}={$VDISK.STATUS.CRIT:\"failed\"}','Dell R820: {#DISK_NAME} failed','',0,0,4,0,'Please check the virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1c5a5635d0b548839e19d8272642f0aa',''),(19412,'{24706}={$VDISK.STATUS.WARN:\"degraded\"}','Dell R820: {#DISK_NAME} is in warning state','',0,0,3,0,'Please check the virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6d35cf89f9a44498b25303811609ccdb',''),(19413,'{24707}<>{24708} and length({24709})>0','Dell R840: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','9fa14edc793842ba8858dd09d1c3058c',''),(19414,'{24710}<>{24711} and length({24712})>0','Dell R840: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R840: Device has been replaced (new serial number received)','5932f468c8614187aefc284a5c2e1475',''),(19415,'{24713}=1','Dell R840: Server is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','41fac4cfc084411081db8d7a4b81e18d',''),(19416,'{24714}=1','Dell R840: Server is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','60a19490be4142be800a8a9fc2c3917d',''),(19417,'{24715}=0','Dell R840: Redfish API service is unavailable','',0,0,4,0,'The service is unavailable or does not accept TCP connections.','',NULL,0,0,0,0,'',0,'',0,'',0,'','bb504167936543818487aef62bb5bbb1',''),(19418,'{24716}=1','Dell R840: {#BATTERY_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4e8f7f543ff9448ba091117548a7957c',''),(19419,'{24717}=1','Dell R840: {#BATTERY_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','76035c29874c4ad5912737230b0fcfcb',''),(19420,'{24718}=1','Dell R840: {#CNTLR_NAME} in slot {#SLOT} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','94f468fe3f8142b4903a4e4f7186d5f8',''),(19421,'{24719}=1','Dell R840: {#CNTLR_NAME} in slot {#SLOT} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9b4f65ee67b748469d4226d556211de1',''),(19422,'{24720}=1','Dell R840: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','45d2e75c18b34f5aa1e46296d71debe4',''),(19423,'{24721}=1','Dell R840: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9b5b5fd923624f05bb7c9cce28f29116',''),(19424,'{24722}=1','Dell R840: {#IFNAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f46e4a69e41a42d091f378d7dc0fa3c2',''),(19425,'{24723}=1','Dell R840: {#IFNAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e325ba5c20834fa6ad7db6cb2a12a927',''),(19426,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({24724}=\"Down\" and {24725}<>{24726})','Dell R840: {#IFNAME} Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. Condition of difference between last and previous value - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{24724}<>\"Down\" or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b3c1ceb91dc342d9aa4c05ca4b55b10c',''),(19427,'{24727}<>{24728} and length({24729})>0','Dell R840: {#DISK_NAME} has been replaced','',0,0,1,0,'{#DISK_NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Dell R840: {#DISK_NAME} has been replaced (new serial number received)','859aeaa7bebb4958ac82b19d787a1d34',''),(19428,'{24730}=1','Dell R840: {#DISK_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','92c13e7385be48f898a74ee54d8ec382',''),(19429,'{24731}=1','Dell R840: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a1c432739ea942c7a7463531d4b268c9',''),(19430,'{24732}=1','Dell R840: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4b381c89bf0e41f1843eff537f20db34',''),(19431,'{24733}=1','Dell R840: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4f72a8417a9048449ab56353c27fe0b7',''),(19432,'{24734}=1','Dell R840: {#SENSOR_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8611c1a1594a45318da88cd556db6310',''),(19433,'{24735}=1','Dell R840: {#SENSOR_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9f9ff19a71274eef890776c942b3dfa1',''),(19434,'{24736}=1','Dell R840: {#DISK_NAME} is in a critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6c9e68f155634b9e95beeaf4cbf06ce2',''),(19435,'{24737}=1','Dell R840: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ceb271b06657474aa9a9b0c4c7462474',''),(19436,'{24738}<>{24739} and length({24740})>0','Dell R840: Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','c8e3831037544a87abbd671fe191ab98',''),(19437,'{24741}<>{24742} and length({24743})>0','Dell R840: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R840: Device has been replaced (new serial number received)','89f591b666d34aceb71715bfcdda6bff',''),(19438,'{24744}<>{24745} and length({24746})>0','Dell R840: System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R840: System name has changed (new name: {ITEM.VALUE})','7a56b961a858470d82c6fdef62f88f43',''),(19439,'{24747}={$HEALTH.STATUS.DISASTER}','Dell R840: System is in unrecoverable state','',0,0,5,0,'Please check the device for faults.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','db2cabad4c3048d692333ae02ec125fe',''),(19440,'{24748}={$HEALTH.STATUS.CRIT}','Dell R840: System status is in critical state','',0,0,4,0,'Please check the device for errors.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','65c0bb42f06c463abbf667480cafa40f',''),(19441,'{24749}={$HEALTH.STATUS.WARN}','Dell R840: System status is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4f8b4ed834504bb5bb6d7c7b9d22700e',''),(19442,'{24750}<>{24751} and length({24752})>0','Dell R840: Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possibly, the system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','09a2b4ec3e1943b598347358b442b662',''),(19443,'({32392}>0 and {32392}<10m) or ({32392}=0 and {32393}<10m)','Dell R840: Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Dell R840: {HOST.NAME} has been restarted (uptime < 10m)','def9f4b7093f421893d2a65f6416cfe5',''),(19444,'{24754}=0','Dell R840: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c428f917029346679f8763611f5357f0',''),(19445,'{24755}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT}','Dell R840: {#BATTERY_NAME} is in critical state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8d4d468bddf14d659ecbf002e37dcafc',''),(19446,'{24756}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN}','Dell R840: {#BATTERY_NAME} is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','afcd3be7b0e343bdbeff78f87ba4f803',''),(19447,'{24757}<>{$DISK.ARRAY.CACHE.BATTERY.STATUS.OK}','Dell R840: {#BATTERY_NAME} is not in optimal state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ab4482d1d0244a25a5dccf787af77fe0',''),(19448,'{24758}={$DISK.ARRAY.STATUS.CRIT}','Dell R840: {#CNTLR_NAME} is in critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d3111ea966db4b4993d119eb92c5362b',''),(19449,'{24759}={$DISK.ARRAY.STATUS.FAIL}','Dell R840: {#CNTLR_NAME} is in unrecoverable state','',0,0,5,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ee5704a6f6fc4e5396a90fc51293fbe6',''),(19450,'{24760}={$DISK.ARRAY.STATUS.WARN}','Dell R840: {#CNTLR_NAME} is in warning state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3bd0b53f65114218b4ce01b4923add3b',''),(19451,'{24761}={$FAN.STATUS.CRIT:\"criticalUpper\"} or {24761}={$FAN.STATUS.CRIT:\"nonRecoverableUpper\"} or {24761}={$FAN.STATUS.CRIT:\"criticalLower\"} or {24761}={$FAN.STATUS.CRIT:\"nonRecoverableLower\"} or {24761}={$FAN.STATUS.CRIT:\"failed\"}','Dell R840: {#FAN_DESCR} is in critical state','',0,0,3,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c35ca42a1b304ef6a279c959970ce205',''),(19452,'{24762}={$FAN.STATUS.WARN:\"nonCriticalUpper\"} or {24762}={$FAN.STATUS.WARN:\"nonCriticalLower\"}','Dell R840: {#FAN_DESCR} is in warning state','',0,0,2,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c5f641ddfb9547188d937f9a5554931a',''),(19453,'{24763}<>{24764} and length({24765})>0','Dell R840: {#DISK_NAME} has been replaced','',0,0,1,0,'{#DISK_NAME} serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'Dell R840: {#DISK_NAME} has been replaced (new serial number received)','98c1eb636c534d20ba14d19efe174d9c',''),(19454,'{24766}={$DISK.SMART.STATUS.FAIL:\"replaceDrive\"} or {24766}={$DISK.SMART.STATUS.FAIL:\"replaceDriveSSDWearOut\"}','Dell R840: {#DISK_NAME} S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f86285d7142e494998da999d56173dd7',''),(19455,'{24767}={$DISK.STATUS.FAIL:\"critical\"} or {24767}={$DISK.STATUS.FAIL:\"nonRecoverable\"}','Dell R840: {#DISK_NAME} failed','',0,0,4,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','034509befd5e497ba9c255034171b6c0',''),(19456,'{24768}={$DISK.STATUS.WARN:\"nonCritical\"}','Dell R840: {#DISK_NAME} is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','be7cfc31a83a4ab9a91150e480c2a1f0',''),(19457,'{24769}={$PSU.STATUS.CRIT:\"critical\"} or {24769}={$PSU.STATUS.CRIT:\"nonRecoverable\"}','Dell R840: Power supply {#PSU_DESCR} is in critical state','',0,0,3,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2228b8364d12446181b79a7d5efdc598',''),(19458,'{24770}={$PSU.STATUS.WARN:\"nonCritical\"}','Dell R840: Power supply {#PSU_DESCR} is in warning state','',0,0,2,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c661b2832e1d4c0392e24bbb2c8eaca5',''),(19459,'{24771}={$SENSOR.TEMP.STATUS.CRIT:\"criticalUpper\"} or {24771}={$SENSOR.TEMP.STATUS.CRIT:\"nonRecoverableUpper\"} or {24771}={$SENSOR.TEMP.STATUS.CRIT:\"criticalLower\"} or {24771}={$SENSOR.TEMP.STATUS.CRIT:\"nonRecoverableLower\"}','Dell R840: Probe {#SENSOR_LOCALE} is in critical status','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','5b552c02873e4ae39b378362c083fb8b',''),(19460,'{24772}={$SENSOR.TEMP.STATUS.WARN:\"nonCriticalUpper\"} or {24772}={$SENSOR.TEMP.STATUS.WARN:\"nonCriticalLower\"}','Dell R840: Probe {#SENSOR_LOCALE} is in warning status','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','34638bcb7b3940e7ad69c7cf2f2c330d',''),(19461,'{24773}<>{$SENSOR.TEMP.STATUS.OK}','Dell R840: Probe {#SENSOR_LOCALE} is not in optimal status','',0,0,1,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',1,'Current status: {ITEM.LASTVALUE1}',0,'','0f7c75277fb64927943339a8b32d7dfb',''),(19462,'{24774}={$VDISK.STATUS.CRIT:\"failed\"}','Dell R840: {#DISK_NAME} failed','',0,0,4,0,'Please check the virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','96f488d383e9445b9646ff18f69eea9a',''),(19463,'{24775}={$VDISK.STATUS.WARN:\"degraded\"}','Dell R840: {#DISK_NAME} is in warning state','',0,0,3,0,'Please check the virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','37777a2664ea46399847736412b937c5',''),(19464,'{24788}<>{24789} and length({24790})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','1bc442ba67dc42d298d98feb845d8730',''),(19465,'{24791}<>{24792} and length({24793})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','87570f607b174ebe887920034a1be1ef',''),(19466,'{24794}={$HEALTH.STATUS.CRIT}','System status is in critical state','',0,0,4,0,'Please check the device for errors.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4d7ac12aec954df2b369ddd0536d3bd5',''),(19467,'{24795}={$HEALTH.STATUS.WARN}','System status is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9ffbca9c012541b9a36956b4ae06d339',''),(19468,'({32396}>0 and {32396}<10m) or ({32396}=0 and {32397}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','9159ee66dbe4498cba29daca24ddcb5f',''),(19469,'{24797}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','236a5d37e58a415aa81db6e59eb826dc',''),(19470,'{24798}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:\"failed\"} or {24798}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:\"capacitorFailed\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','42c0ff05c06f47089322dface6c54778',''),(19471,'{24799}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:\"degraded\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','28f83720bdd84ab3acb43cc8caac7507',''),(19472,'{24800}={$DISK.ARRAY.CACHE.STATUS.CRIT:\"cacheModCriticalFailure\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d9fc0ecef7844e7190d89f4747f82661',''),(19473,'{24801}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheModDegradedFailsafeSpeed\"} or {24801}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheReadCacheNotMapped\"} or {24801}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheModFlashMemNotAttached\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9b60ae9eec734644bcff9cbac9407b08',''),(19474,'{24802}<>{$DISK.ARRAY.CACHE.STATUS.OK:\"enabled\"} and {24802}<>{$DISK.ARRAY.CACHE.STATUS.WARN:\"invalid\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','61e28304c16f4855abfbcef8249a2fa6',''),(19475,'{24803}={$DISK.ARRAY.STATUS.CRIT}','{#CNTLR_LOCATION}: Disk array controller is in critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d0e8bcc0510c4e86bfcd3e9d601f83e0',''),(19476,'{24804}={$DISK.ARRAY.STATUS.WARN}','{#CNTLR_LOCATION}: Disk array controller is in warning state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a38ea92527b44599b690c068a62481ed',''),(19477,'{24805}={$FAN.STATUS.CRIT}','Fan {#SNMPINDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ab33e6666fd14aac8f703c72fd9b760e',''),(19478,'{24806}={$FAN.STATUS.WARN}','Fan {#SNMPINDEX}: Fan is in warning state','',0,0,2,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a9098b4dcbe04b3a82f0353f115345d7',''),(19479,'{24807}=3','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','',0,0,4,0,'Please check the physical adapter.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','477f8237ed7c4d99af92e94f7563e01c',''),(19480,'{24808}=4','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','',0,0,3,0,'Please check the cable connections to this adapter.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5962382262854335bc42ae47203e44a7',''),(19481,'{24809}<>{24810} and length({24811})>0','{#DISK_LOCATION}: Disk has been replaced','',0,0,1,0,'Disk serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DISK_LOCATION}: Disk has been replaced (new serial number received)','d3dbef930bca4808ae3bf32ba84a987a',''),(19482,'{24812}={$DISK.SMART.STATUS.FAIL:\"replaceDrive\"} or {24812}={$DISK.SMART.STATUS.FAIL:\"replaceDriveSSDWearOut\"}','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6fb9a3a867f74290974b106755763369',''),(19483,'{24813}={$DISK.STATUS.FAIL}','{#DISK_LOCATION}: Physical disk failed','',0,0,4,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','21224423e69148a797e5ae4fcdda8ed5',''),(19484,'{24814}={$DISK.STATUS.WARN}','{#DISK_LOCATION}: Physical disk is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ff246b7598f24ab88aa6e7119750e57b',''),(19485,'{24815}={$PSU.STATUS.CRIT}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c0976740671a4ee1b524b2be84eac05f',''),(19486,'{24816}={$PSU.STATUS.WARN}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4245fe8df0ec42fb8698cd54810357d0',''),(19487,'{24817} = 1','Ambient: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','12ca340ef2cc4d639940375e84fc1384',''),(19488,'{24818} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','83775e86b0b6450399f0739bcd7aeb42',''),(19489,'{24819} = 3','Ambient: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1e61e8b2ba4346f2962a3498a147f65e',''),(19490,'{24820} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','b3b17ce8480f4ff5bbc4cba02e53190d',''),(19491,'{24821} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1d2cc0b823134b9b901a0292e731f882',''),(19492,'{24822} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c9edcad3712d4915a5a3700916621525',''),(19493,'{24823} = 1','{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','1978105618f44f439f40b7e6b7dbb5dc',''),(19494,'{24824} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','feee1c3e792044ecbb07ffed47b2fddd',''),(19495,'{24825} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','250291ba7b404dd287b14034145d7ee0',''),(19496,'{24826} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','2d06da621e5946ea88bf158cabd4fcbd',''),(19497,'{24827} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5ca16e1ea7d84aa7bed31ba05f7df50e',''),(19498,'{24828} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8a2468bf1cd14065af733b0d045c6031',''),(19499,'{24829} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','997f65c5ee1d473dbe22a8517091cf3e',''),(19500,'{24830} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8c3b5591160e4797ae1b49f9f14439ff',''),(19501,'{24831} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8665b434ba594073bc55f44b668dcee0',''),(19502,'{24832} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','a292c5aaa1b3428aa4b011854d9c5e1d',''),(19503,'{24833} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f557d93b186b42b4931e23640e54648f',''),(19504,'{24834} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e3cac6176199401181fbbeacf4838bad',''),(19505,'{24835} = 1','System-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','1bad1b13dcdf4689b9a784e44726196b',''),(19506,'{24836} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','42fff974036d4fb6b9181adf1b3efa09',''),(19507,'{24837} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d184f774ab614a0b9f1f7ebc82cd1356',''),(19508,'{24838}={$VDISK.STATUS.CRIT}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','',0,0,4,0,'Please check virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e11c5781a34642c49ad15cdcd71dacc3',''),(19509,'{24839}<>{$VDISK.STATUS.OK}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','',0,0,2,0,'Please check virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','10f0bdba64184a9389a46b9bab18719a',''),(19510,'{24840}<>{24841} and length({24842})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','9eb77df5f95149e49d63a7191e68756c',''),(19511,'{24843}<>{24844} and length({24845})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','c0eed9d2eccc4ae99128a318de92df8d',''),(19512,'{24846}={$HEALTH.STATUS.CRIT}','System status is in critical state','',0,0,4,0,'Please check the device for errors.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','187f7a3872a2481f962f16c422911827',''),(19513,'{24847}={$HEALTH.STATUS.WARN}','System status is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','51c633cbed0d4684b2e0619e2f0ab64d',''),(19514,'({32398}>0 and {32398}<10m) or ({32398}=0 and {32399}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','97f107c88b6048f1b74412e8dfedc857',''),(19515,'{24849}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','35cce5a461c04163a0575d7f831ea3d9',''),(19516,'{24850}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:\"failed\"} or {24850}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:\"capacitorFailed\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','507e925180034f2d97d09f9fd5c9e311',''),(19517,'{24851}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:\"degraded\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','20625bb4b0b74d98818685991ac5df66',''),(19518,'{24852}={$DISK.ARRAY.CACHE.STATUS.CRIT:\"cacheModCriticalFailure\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a470d994b661401882162dc2267eaa3d',''),(19519,'{24853}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheModDegradedFailsafeSpeed\"} or {24853}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheReadCacheNotMapped\"} or {24853}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheModFlashMemNotAttached\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5d0fd4a9b8bc49aaaeb213b310b85606',''),(19520,'{24854}<>{$DISK.ARRAY.CACHE.STATUS.OK:\"enabled\"} and {24854}<>{$DISK.ARRAY.CACHE.STATUS.WARN:\"invalid\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1efe26e2e6a8404b86143b3fea812f23',''),(19521,'{24855}={$DISK.ARRAY.STATUS.CRIT}','{#CNTLR_LOCATION}: Disk array controller is in critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a8c87ea0b6ba42e7ba6f97a2441237bb',''),(19522,'{24856}={$DISK.ARRAY.STATUS.WARN}','{#CNTLR_LOCATION}: Disk array controller is in warning state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1cb40d36fda945df940c39f0ea1adf22',''),(19523,'{24857}={$FAN.STATUS.CRIT}','Fan {#SNMPINDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c2a1f0726e6e46658bf236c7daea432c',''),(19524,'{24858}={$FAN.STATUS.WARN}','Fan {#SNMPINDEX}: Fan is in warning state','',0,0,2,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f8e66a8a7df84962be215388d6fd567b',''),(19525,'{24859}=3','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','',0,0,4,0,'Please check the physical adapter.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','880d8c11080043f4a1b8e31823bee081',''),(19526,'{24860}=4','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','',0,0,3,0,'Please check the cable connections to this adapter.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7894c073515c42abac3a3704acaf124c',''),(19527,'{24861}<>{24862} and length({24863})>0','{#DISK_LOCATION}: Disk has been replaced','',0,0,1,0,'Disk serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DISK_LOCATION}: Disk has been replaced (new serial number received)','97b42a2ce49f4a1786cfa8db1f6477ac',''),(19528,'{24864}={$DISK.SMART.STATUS.FAIL:\"replaceDrive\"} or {24864}={$DISK.SMART.STATUS.FAIL:\"replaceDriveSSDWearOut\"}','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fdd888b4e72344eda1845fdfe7d261e4',''),(19529,'{24865}={$DISK.STATUS.FAIL}','{#DISK_LOCATION}: Physical disk failed','',0,0,4,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','1e8640dc080c4d19a94c6fcda2451cfb',''),(19530,'{24866}={$DISK.STATUS.WARN}','{#DISK_LOCATION}: Physical disk is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','74eef1a7f26145d7963d8801c8a625e7',''),(19531,'{24867}={$PSU.STATUS.CRIT}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a256fdd66c0043dfb337163bcf0c5ebe',''),(19532,'{24868}={$PSU.STATUS.WARN}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','18e8aca665b34fb5a2af5d94cdd40f84',''),(19533,'{24869} = 1','Ambient: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','74b07fcf8ef34e20a142ae11f6dbfeb4',''),(19534,'{24870} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0df275f3b0dd4c6d93936b39a88052fa',''),(19535,'{24871} = 3','Ambient: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1052d51569c543619e38b48318baaa29',''),(19536,'{24872} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','602bbb3e632540d4a46830c2c67d3b1c',''),(19537,'{24873} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','25ea3db9def64b21b08f25f019c15fbd',''),(19538,'{24874} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f5ecaae4989f4e249138916b3657210d',''),(19539,'{24875} = 1','{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','6ea76d08b1e64364b15a9daa95c72d7c',''),(19540,'{24876} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6287b204066e47d68871bc0783840b4c',''),(19541,'{24877} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8010259635ef4d92af61e935c9f62ff7',''),(19542,'{24878} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','5f7818d02b764218a481e59cbcfe5fd7',''),(19543,'{24879} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','fffdfe1c6d254f3fb096ab0561705223',''),(19544,'{24880} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a00a767a3b8349c2846139a6c76f826d',''),(19545,'{24881} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','78d936059d744eae8be8150dab2a6e5e',''),(19546,'{24882} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a6db4978fa834a7facd46a76f45f92a3',''),(19547,'{24883} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ee7cbf1997ca476283e3301856d22a5a',''),(19548,'{24884} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','809aea1302064232a321c12f2256414f',''),(19549,'{24885} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b70bb5f4fe4b4d3bb6fa7027200f2b25',''),(19550,'{24886} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a4e3939f59a64dbfab377f68a62fa26b',''),(19551,'{24887} = 1','System-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','6848521afcb54d72b136ee53176bc01d',''),(19552,'{24888} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6b15c19600f9433093aa8d7d624fb623',''),(19553,'{24889} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','407c07a6d4f94ca1a8cf1f9db9d685db',''),(19554,'{24890}={$VDISK.STATUS.CRIT}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','',0,0,4,0,'Please check virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7dadede9eb5640c5920b95dafc7191bb',''),(19555,'{24891}<>{$VDISK.STATUS.OK}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','',0,0,2,0,'Please check virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ffdd42c48a7b493a941887b46be64fb0',''),(19556,'{24892}<>{24893} and length({24894})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','1316d7def24a4a80adfdf4bc8ac5a12c',''),(19557,'{24895}<>{24896} and length({24897})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','6431a1a0b8494b50bcbd18e283e7158e',''),(19558,'{24898}={$HEALTH.STATUS.CRIT}','System status is in critical state','',0,0,4,0,'Please check the device for errors.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6cc840d5bccc4f1abfd7df6a161154ad',''),(19559,'{24899}={$HEALTH.STATUS.WARN}','System status is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','eab6760dda124629a9edcb2218ad3ad3',''),(19560,'({32400}>0 and {32400}<10m) or ({32400}=0 and {32401}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','383e0e2d556d4354ae50f68c94333ded',''),(19561,'{24901}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0b91663d4b684e46aaccdf480d1622f0',''),(19562,'{24902}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:\"failed\"} or {24902}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:\"capacitorFailed\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a6cd582e11804f0f939e841287305edc',''),(19563,'{24903}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:\"degraded\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bb1f9560a6d74bd9aaca3ffa04aec311',''),(19564,'{24904}={$DISK.ARRAY.CACHE.STATUS.CRIT:\"cacheModCriticalFailure\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6a3002495b7540a981c9909c540ede36',''),(19565,'{24905}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheModDegradedFailsafeSpeed\"} or {24905}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheReadCacheNotMapped\"} or {24905}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheModFlashMemNotAttached\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2ee4cf4ddd9944c985ac522a04371a13',''),(19566,'{24906}<>{$DISK.ARRAY.CACHE.STATUS.OK:\"enabled\"} and {24906}<>{$DISK.ARRAY.CACHE.STATUS.WARN:\"invalid\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2cbed500a4c34f138623c31a86e227c4',''),(19567,'{24907}={$DISK.ARRAY.STATUS.CRIT}','{#CNTLR_LOCATION}: Disk array controller is in critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1c518fee6dbc49228768b3dd61a98057',''),(19568,'{24908}={$DISK.ARRAY.STATUS.WARN}','{#CNTLR_LOCATION}: Disk array controller is in warning state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2dd65457ec524248ac5b1c1cfd9f3821',''),(19569,'{24909}={$FAN.STATUS.CRIT}','Fan {#SNMPINDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','90cc1704d8c340309e23deb78620c861',''),(19570,'{24910}={$FAN.STATUS.WARN}','Fan {#SNMPINDEX}: Fan is in warning state','',0,0,2,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9b7692f49b604f0791934b58294881cd',''),(19571,'{24911}=3','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','',0,0,4,0,'Please check the physical adapter.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','aaf66f1530f74d59919a1c505a8ae147',''),(19572,'{24912}=4','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','',0,0,3,0,'Please check the cable connections to this adapter.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f943117ce7004390854a21c2e1cdb514',''),(19573,'{24913}<>{24914} and length({24915})>0','{#DISK_LOCATION}: Disk has been replaced','',0,0,1,0,'Disk serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DISK_LOCATION}: Disk has been replaced (new serial number received)','ad74fc6568a0487e834b9e9da4127bb7',''),(19574,'{24916}={$DISK.SMART.STATUS.FAIL:\"replaceDrive\"} or {24916}={$DISK.SMART.STATUS.FAIL:\"replaceDriveSSDWearOut\"}','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d0a86e4ee6ef46e8ade36dae70f69ad6',''),(19575,'{24917}={$DISK.STATUS.FAIL}','{#DISK_LOCATION}: Physical disk failed','',0,0,4,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','3eb8efcf6caa46ff892bd1d693996a4f',''),(19576,'{24918}={$DISK.STATUS.WARN}','{#DISK_LOCATION}: Physical disk is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1559184494d849cda3946a2b05b81cf3',''),(19577,'{24919}={$PSU.STATUS.CRIT}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e01e8d01d65a4ce7a2990ee30ab02d84',''),(19578,'{24920}={$PSU.STATUS.WARN}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','cbd3d4d3d3e0427f89a0972fbef56f63',''),(19579,'{24921} = 1','Ambient: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','7a56b1e7bc7a4464abdf3004a903020e',''),(19580,'{24922} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d0e3ccfb13a9489f877e07cccbecf89f',''),(19581,'{24923} = 3','Ambient: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4f40a124d4c949a89e6c31796faf37ae',''),(19582,'{24924} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','a27ee21d95ff46f78807eaf31cdc0db4',''),(19583,'{24925} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','97d97920b65c418186af30fdc8fea55e',''),(19584,'{24926} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f06e48cef80d4e13b8e1d1ba89b60d9d',''),(19585,'{24927} = 1','{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','fbbfe6536c1b4852916e93c6a6d8efd9',''),(19586,'{24928} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ef76129efb9a4744809682ff041cca21',''),(19587,'{24929} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1a2dd7941efa4792b0e933c26e4e9802',''),(19588,'{24930} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','1918208a434145668d0a196ad53bdefd',''),(19589,'{24931} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e6d9e708b1704c229e010cb0ae3f53c1',''),(19590,'{24932} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','325bf55e8d374d97ab240873ea177636',''),(19591,'{24933} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','3d335c0712dd40eaa085714cbac51cca',''),(19592,'{24934} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e4b619a640d549099ead16e2c5085746',''),(19593,'{24935} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7be4e1200cdf418497158e59979edf86',''),(19594,'{24936} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','fc3a93d232b144b9b2f2d8b95538b941',''),(19595,'{24937} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2f95466ff7ee4cf0bb45dfc800d680d3',''),(19596,'{24938} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','147e9de1a91d4473be384c5951812d9f',''),(19597,'{24939} = 1','System-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','31a1d664064644cba700ef61e4602523',''),(19598,'{24940} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c51ac08efa464b91a44e01387a9c3a6d',''),(19599,'{24941} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','cca796d265034389afd8236ec26a1990',''),(19600,'{24942}={$VDISK.STATUS.CRIT}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','',0,0,4,0,'Please check virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c49fb63092eb4764aae145d93f9daa33',''),(19601,'{24943}<>{$VDISK.STATUS.OK}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','',0,0,2,0,'Please check virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','698ef7d90e95463c8ea7a14c5fa72be9',''),(19602,'{24944}<>{24945} and length({24946})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','bd81b8c420904f0bafa4fbf90d195967',''),(19603,'{24947}<>{24948} and length({24949})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','168b1742abc340558631a577a1a3c4d9',''),(19604,'{24950}={$HEALTH.STATUS.CRIT}','System status is in critical state','',0,0,4,0,'Please check the device for errors.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e9bf032edb2e45f0b64cb904bf8d8403',''),(19605,'{24951}={$HEALTH.STATUS.WARN}','System status is in warning state','',0,0,2,0,'Please check the device for warnings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','537c411a3d454a8b9dc64378e0e9a6cd',''),(19606,'({32402}>0 and {32402}<10m) or ({32402}=0 and {32403}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','9612f37005e5420582d499d7cb84a24e',''),(19607,'{24953}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','97c3665497ae46eb91d81c14c5f4ac06',''),(19608,'{24954}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:\"failed\"} or {24954}={$DISK.ARRAY.CACHE.BATTERY.STATUS.CRIT:\"capacitorFailed\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4eb29401f4c7400ca87bb2449eb0f8e2',''),(19609,'{24955}={$DISK.ARRAY.CACHE.BATTERY.STATUS.WARN:\"degraded\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0378b7339a3d482ea92f523f3d84c498',''),(19610,'{24956}={$DISK.ARRAY.CACHE.STATUS.CRIT:\"cacheModCriticalFailure\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state!','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','26955f1b216a493c9faa95b95359aa79',''),(19611,'{24957}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheModDegradedFailsafeSpeed\"} or {24957}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheReadCacheNotMapped\"} or {24957}={$DISK.ARRAY.CACHE.STATUS.WARN:\"cacheModFlashMemNotAttached\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fc24efc3b41f410e9b0e806692f3dcf6',''),(19612,'{24958}<>{$DISK.ARRAY.CACHE.STATUS.OK:\"enabled\"} and {24958}<>{$DISK.ARRAY.CACHE.STATUS.WARN:\"invalid\"}','#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state','',0,0,2,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d5a1edb8f9ea46f08344a07a84bd8865',''),(19613,'{24959}={$DISK.ARRAY.STATUS.CRIT}','{#CNTLR_LOCATION}: Disk array controller is in critical state','',0,0,4,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0e57c741a6d248b69cdc70b75fc63a0f',''),(19614,'{24960}={$DISK.ARRAY.STATUS.WARN}','{#CNTLR_LOCATION}: Disk array controller is in warning state','',0,0,3,0,'Please check the device for faults.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4a66354e25c949d4aaaad02114f09e44',''),(19615,'{24961}={$FAN.STATUS.CRIT}','Fan {#SNMPINDEX}: Fan is in critical state','',0,0,3,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f246a5184ea94ae3a793efec27998d5f',''),(19616,'{24962}={$FAN.STATUS.WARN}','Fan {#SNMPINDEX}: Fan is in warning state','',0,0,2,0,'Please check the fan unit.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ba7f63e795764d77aae0b7ce62a19514',''),(19617,'{24963}=3','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has failed','',0,0,4,0,'Please check the physical adapter.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','917ab8f90c3e43b887eb7fd851cf3b25',''),(19618,'{24964}=4','{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Adapter has lost link','',0,0,3,0,'Please check the cable connections to this adapter.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','51bb602b67624c5d932109a5e04068d3',''),(19619,'{24965}<>{24966} and length({24967})>0','{#DISK_LOCATION}: Disk has been replaced','',0,0,1,0,'Disk serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DISK_LOCATION}: Disk has been replaced (new serial number received)','2b173fa3eec941e3b3d73c732740e210',''),(19620,'{24968}={$DISK.SMART.STATUS.FAIL:\"replaceDrive\"} or {24968}={$DISK.SMART.STATUS.FAIL:\"replaceDriveSSDWearOut\"}','{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed','',0,0,4,0,'Disk probably requires replacement.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','531875c8a5f54ca8ad2dabfa8a47b36b',''),(19621,'{24969}={$DISK.STATUS.FAIL}','{#DISK_LOCATION}: Physical disk failed','',0,0,4,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current status: {ITEM.LASTVALUE1}',0,'','12eac58ddff14f7dbbdba48eca464a5f',''),(19622,'{24970}={$DISK.STATUS.WARN}','{#DISK_LOCATION}: Physical disk is in warning state','',0,0,2,0,'Please check physical disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','977a4d4fb6604877a0f02bb2455691c4',''),(19623,'{24971}={$PSU.STATUS.CRIT}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b42e415d5eb941989daaed3d1ac2e762',''),(19624,'{24972}={$PSU.STATUS.WARN}','Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d5b8b12a72934bcfb7ad6675a68a5297',''),(19625,'{24973} = 1','Ambient: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','1af0ddbc9ffd43b2b6800d634d8186bb',''),(19626,'{24974} = 4','Ambient: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c49e51ac10c941798213d0f086e0631f',''),(19627,'{24975} = 3','Ambient: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b1cfbc1702f54670b3f486da26c4887b',''),(19628,'{24976} = 1','CPU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','039ab34804f446e580b779d1ab25ed4f',''),(19629,'{24977} = 4','CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2cf8b917076440aa8209938cec69b905',''),(19630,'{24978} = 3','CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','cf69b02334e541b7a912a14c182dd56a',''),(19631,'{24979} = 1','{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','6d7eb6bd348b43a2b584ceb1694c8bce',''),(19632,'{24980} = 4','{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','43911269576b435db928e83901a16c5a',''),(19633,'{24981} = 3','{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b26842b776c545449354ccafb809d115',''),(19634,'{24982} = 1','I/O-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','c8f2ef7311804357bff65d2d5c7f5d90',''),(19635,'{24983} = 4','I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dda9f8bf4a094b69bb30affb26e23dd3',''),(19636,'{24984} = 3','I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a0220dea091d4aca8d68a21a3d976496',''),(19637,'{24985} = 1','Memory-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','eca9c54385084934b88f4dc9d914b2e2',''),(19638,'{24986} = 4','Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','70b139e0c8c644918c7f01cd09604078',''),(19639,'{24987} = 3','Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','89aab6bad94e4d188475d6e36084593e',''),(19640,'{24988} = 1','PSU-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','e792b530014d45b6ac7fc819db776c37',''),(19641,'{24989} = 4','PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','803317e9eaf04b519e63b7d1b9bfd610',''),(19642,'{24990} = 3','PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','98616a3bae174922a0108b7c90339f08',''),(19643,'{24991} = 1','System-{#SNMPINDEX}: Temperature could not be determined','',0,0,1,0,'Temperature could not be determined.','',NULL,0,0,2,0,'',0,'',1,'',0,'','2a0503b359904c71b355cb9e3da1b8fa',''),(19644,'{24992} = 4','System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system.','',0,0,4,0,'The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent.','',NULL,0,0,2,0,'',0,'',0,'',0,'','09287730b82a47c4b365c09047d0b8e2',''),(19645,'{24993} = 3','System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range','',0,0,2,0,'If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5c7097cb91184a619fee33bd4faa296b',''),(19646,'{24994}={$VDISK.STATUS.CRIT}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed','',0,0,4,0,'Please check virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a59f9e473b7a4afd900edce47b11443d',''),(19647,'{24995}<>{$VDISK.STATUS.OK}','Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state','',0,0,2,0,'Please check virtual disk for warnings or errors.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','776bff7fb02e4948be7d81347c0c8624',''),(19648,'{25008}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:\"IAX\"}','Asterisk: Total number of active channels of IAX trunks is too high','',0,0,2,0,'The IAX trunks may not be able to process new calls.','',NULL,0,0,0,0,'',0,'',0,'',0,'Asterisk: Total number of active channels of IAX trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:\"IAX\"} for 10m)','0ae0a5b6123a42dd9722219e5e5839df',''),(19649,'{25009}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:\"PJSIP\"}','Asterisk: Total number of active channels of PJSIP trunks is too high','',0,0,2,0,'The PJSIP trunks may not be able to process new calls.','',NULL,0,0,0,0,'',0,'',0,'',0,'Asterisk: Total number of active channels of PJSIP trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:\"PJSIP\"} for 10m)','9b158fe0efb4416cb6ad5d53b38c3e38',''),(19650,'{25010}>={$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:\"SIP\"}','Asterisk: Total number of active channels of SIP trunks is too high','',0,0,2,0,'The SIP trunks may not be able to process new calls.','',NULL,0,0,0,0,'',0,'',0,'',0,'Asterisk: Total number of active channels of SIP trunks is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS_TOTAL.MAX.WARN:\"SIP\"} for 10m)','d2fde5d26d284a129346a12ba0949b60',''),(19651,'{25011}=1','Travis: Failed to fetch home page','',0,0,2,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Travis: Failed to fetch home page (or no data for 30m)','6baed695cac34d349a42ab6e8295910d',''),(19652,'{25012}=0','Travis: Service is unavailable','',0,0,4,0,'Travis API is unavailable. Please check if the correct macros are set.','',NULL,0,0,0,0,'',0,'',1,'',0,'','e8398acab5a74505a85ade5d3ca5f590',''),(19653,'{25013}<{$TRAVIS.BUILDS.SUCCESS.PERCENT}','Travis: Repo [{#SLUG}]: Percent of successful builds','',0,0,2,0,'Low successful builds rate.','',NULL,0,0,2,0,'',0,'',1,'',0,'Travis: Repo [{#SLUG}]: Percent of successful builds are < {$TRAVIS.BUILDS.SUCCESS.PERCENT}%','8279ce31c4fe4cb7a03baa8a0149a557',''),(19654,'{25014}=1','Travis: Repo [{#SLUG}]: Last build status is \'errored\'','',0,0,2,0,'Last build status is errored.','',NULL,0,0,2,0,'',0,'',1,'',0,'','9b26f06ae3854aad8d2c0f4623bb1533',''),(19655,'{25015}=0','InfluxDB: Health check was failed','',0,0,4,0,'The InfluxDB instance is not available or unhealthy.','',NULL,0,0,0,0,'',0,'',0,'',0,'','de130833b4514481aa56d3ba06e648fc',''),(19656,'{25016}>{$INFLUXDB.TASK.RUN.FAIL.MAX.WARN}','InfluxDB: Too many tasks failure runs','',0,0,2,0,'\"Number of failure runs completed across all tasks is too high.\"','',NULL,0,0,0,0,'',0,'',0,'',0,'InfluxDB: Too many tasks failure runs (over {$INFLUXDB.TASK.RUN.FAIL.MAX.WARN} for 5m)','f0d2137905bc477f979d035c06111844',''),(19657,'{25017}<10m','InfluxDB: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'InfluxDB: has been restarted (uptime < 10m)','335f27fb002544838f7150b11238d86b',''),(19658,'{25018}<>{25019} and length({25020})>0','InfluxDB: Version has changed','',0,0,1,0,'InfluxDB version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'InfluxDB: Version has changed (new version: {ITEM.VALUE})','d2b02cc426c748608968ae08c0823461',''),(19659,'{25021}>{$INFLUXDB.REQ.FAIL.MAX.WARN}','InfluxDB: [{#ORG_NAME}]: Too many requests failures','',0,0,2,0,'Too many query requests failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'InfluxDB: [{#ORG_NAME}]: Too many requests failures (over {$INFLUXDB.REQ.FAIL.MAX.WARN} for 5m)','893fa5755b514c36aa177c4f4e25b254',''),(19660,'{25025}>8 and {25026}>6','F5 BIG-IP: Cluster not in sync','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',1,'{ITEM.LASTVALUE}',0,'F5 BIG-IP: Cluster not in sync: {ITEM.VALUE}','f93a7ff7cc614c0b84789f325ebb662b',''),(19661,'{25027}=2','F5 BIG-IP: Changes have been made on the device not sync','',0,0,2,0,'Changes have been made on the device not sync to the device group, requires user intervention','',NULL,0,0,0,0,'',0,'',1,'{ITEM.LASTVALUE}',0,'F5 BIG-IP: Changes have been made on the device not sync to the device group: {ITEM.VALUE}','098fe258e8cc4216b0c1800913ba8e18',''),(19662,'{25028}=4','F5 BIG-IP: The device is inconsistent with the device group','',0,0,2,0,'The device is inconsistent with the device group, requires user intervention','',NULL,0,0,0,0,'',0,'',1,'{ITEM.LASTVALUE}',0,'F5 BIG-IP: The device is inconsistent with the device group: {ITEM.VALUE}','eb3517626c6d425f9b88a2bc35641ab6',''),(19663,'{25031}=2','F5 BIG-IP: Fan[{#FAN.INDEX}] is not present','',0,0,1,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'',0,'','d20c56720aa54efba37f5fcdfdde0225',''),(19664,'{25032}=2','F5 BIG-IP: Power supply [{#POWER.INDEX}] is not present','',0,0,1,0,'Please check the power supply unit','',NULL,0,0,2,0,'',0,'',0,'',0,'','84469f28c4bf47f790a85b9f1f37cff0',''),(19665,'{25033}>{$BIGIP.TEMP.HIGH}','F5 BIG-IP: Chassis temperature','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'{ITEM.LASTVALUE}',0,'F5 BIG-IP: Chassis temperature ({ITEM.LASTVALUE}) of sensor {#TEMP.INDEX} exceeds threshold of {$BIGIP.TEMP.HIGH} °C','452167aafe594e3faa3748e6dc470fb1',''),(19666,'{25034}>{$BIGIP.TEMP.WARN}','F5 BIG-IP: Chassis temperature','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'{ITEM.LASTVALUE}',0,'F5 BIG-IP: Chassis temperature ({ITEM.LASTVALUE}) of sensor {#TEMP.INDEX} exceeds threshold of {$BIGIP.TEMP.WARN} °C','00c0212fcb8049309bf0b3de2b2363b4',''),(19667,'{25035}>20','F5 BIG-IP: Pool {#POOL.NAME} is not available in some capacity: {ITEM.VALUE1}','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'{ITEM.LASTVALUE}',0,'','0b6e708075684cbab0d8c598f3467e0c',''),(19668,'{25036}>4','F5 BIG-IP: Pool {#POOL.NAME} is not enabled in some capacity: {ITEM.VALUE1}','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'{ITEM.LASTVALUE}',0,'','4d0431e2c4934f37be7302ffedd69e8a',''),(19679,'{25060}<>{25061} and length({25062})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','79b791b5ce1a4e5e8f68b561aeaac838',''),(19680,'{25063}<>{25064} and length({25065})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','a981ac3d5e7843049eb581ab284edd04',''),(19681,'{25066}<>{25067} and length({25068})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','f7e4983c483944869d44fe5ea4289786',''),(19682,'{25069}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6a571f6691ec459bbc63e1a8dece1c04',''),(19683,'{25070}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1586816e4cfe4060b9c2d4c305439e4d',''),(19684,'{25071}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25072}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','7662e3eded674ca996c98d5af253d767',''),(19685,'{25073}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25074}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','ad69a0bc0507456787ef21628985e22f',''),(19686,'{25075}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25076}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','d66e0fa34fbf4fc49ac5ebfed3f6dbb0',''),(19687,'{25077}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25078}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','d9e2f17aa26d47239ba7ee40d5b39759',''),(19688,'{25079}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25080}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','f6bcaf561a23406e84a22549aed2485d',''),(19689,'{25081}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25082}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','fcf0566a31b9400c9790638caad03e34',''),(19690,'{25083} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','88449b36f96740349cd1e08127b7b39c',''),(19691,'{25084} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','cdab150de72d4e8bb2af4e412be6de27',''),(19692,'{25085} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5eb2071556a749b382e8d6668fc7c699',''),(19693,'{25086} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','9e119f5f5ae74caeb58e9736f5e7e8b1',''),(19694,'{25087}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f282823a66354c1aa88b2338efb376f0',''),(19695,'{31492}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31493}-{31494})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31495}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','93eaacd1543d440c93faa4b7c4fcd02d',''),(19696,'{31496}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31497}-{31498})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31499}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','70397fb0b0754a42a9c97c77c2037d2a',''),(19707,'{25119}<>{25120} and length({25121})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','7469aef39ea84a729b87d06d3dd0e9af',''),(19708,'{25122}<>{25123} and length({25124})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','a30f1485711d4a649503638fd3a7d702',''),(19709,'{25125}<>{25126} and length({25127})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','8574af8f375a4443bbf030ebf8d904b5',''),(19710,'{25128}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','18ae9503588a4d398f387ab0d9015e26',''),(19711,'{25129}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2f1676c21f7044a289a8fd3077f9c95f',''),(19712,'{25130}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25131}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','306d44e9256041089e0499678d0a9b6b',''),(19713,'{25132}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25133}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','3ef08416c6e649469b036b730f756a35',''),(19714,'{25134}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25135}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','db4a2f3baf9c44058e81df8924c51714',''),(19715,'{25136}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25137}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','3de221d9357541e68cb0e949f58b0f3c',''),(19716,'{25138}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25139}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','21158d7b18b64861b373be6718006753',''),(19717,'{25140}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25141}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','c1c9783678e846ec88d1b68486abd5a0',''),(19718,'{25142} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','86e76d6d249a4f339ca2841d9b433204',''),(19719,'{25143} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4b5ad89e3ecf4d38a8bdb75b10028ba2',''),(19720,'{25144} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','404195780f234277874f9c1d88ce286a',''),(19721,'{25145} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','1e58c3aaa1a9469bb170fc50b75e1686',''),(19722,'{25146}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','cb698e80cd15409bad16d476fc637a61',''),(19723,'{31500}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31501}-{31502})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31503}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','e6500e2d99fa46dea445d9cc469df81e',''),(19724,'{31504}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31505}-{31506})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31507}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','33a9e94bff174f31978be450df1f3c40',''),(19735,'{25178}<>{25179} and length({25180})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','de61b57b4fd54166a207bc040aa482a4',''),(19736,'{25181}<>{25182} and length({25183})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','1776f8b97fba4feb962b0a47e4780076',''),(19737,'{25184}<>{25185} and length({25186})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','0b8bd128fed047c591b839f3f46412dd',''),(19738,'{25187}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','2dec63fe94b943549c8351fe1e737975',''),(19739,'{25188}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e25580100dde402eaf640b6653223a82',''),(19740,'{25189}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25190}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','5b950c6be6494ba7b743a572a208fd42',''),(19741,'{25191}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25192}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','f091c3d0b2754d1a883ad9e5f96f7037',''),(19742,'{25193}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25194}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','e9c78b7e0b0d4d64b420b5802c91f02a',''),(19743,'{25195}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25196}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','67f8c41b8c4748a6b5ab836821e79610',''),(19744,'{25197}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25198}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','d18498b9f4df42fca625f01ec465d819',''),(19745,'{25199}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25200}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','b457b4345c694e3a9963b74c9c2992c6',''),(19746,'{25201} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','0f5a0e7593b447e2a9a5071f2ec4a30b',''),(19747,'{25202} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','932fe21bdb6c460581093fb523b3c4b2',''),(19748,'{25203} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d6dcbaaaa89c4cfe80060830c595e4bb',''),(19749,'{25204} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d6e15977be5242edb4dd4bb8dcd0fbd0',''),(19750,'{25205}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','36dc48462d28464787978c8e6f74cafe',''),(19751,'{31508}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31509}-{31510})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31511}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','fc93929bd60542d3896fbcdd590479be',''),(19752,'{31512}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31513}-{31514})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31515}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','6aa796b2784848a7ab26a7e6da8993a9',''),(19763,'{25237}<>{25238} and length({25239})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','4ff0ad1fe7a043f28e46403ab4ce500b',''),(19764,'{25240}<>{25241} and length({25242})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','0abb489d471e414b84d9bfe5d6d0e453',''),(19765,'{25243}<>{25244} and length({25245})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','3146fc39809741a09a46852ef392b694',''),(19766,'{25246}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4093f81ecb9f4320b5c5ca719a6b8574',''),(19767,'{25247}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','20cfcbcae14b4b7fb9c86486f4e6b972',''),(19768,'{25248}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25249}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','c84e4932a71849549be90027810335ea',''),(19769,'{25250}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25251}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','67d43cb946d94556bb921b0b120d58ee',''),(19770,'{25252}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25253}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','cd3aaf374f81487f98f0056920870782',''),(19771,'{25254}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25255}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','1e6346dade484f4aad2a63c03ebf32d4',''),(19772,'{25256}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25257}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','9eafc6dc38614e26a301d943f4f8dd5d',''),(19773,'{25258}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25259}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','d6cc20f91d5748fd85ab8743b5152be6',''),(19774,'{25260} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6c73b57b26b1484c83d7a8185829bd85',''),(19775,'{25261} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','5eafa20544ed463fad00fb233b34f92c',''),(19776,'{25262} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','0d079b01ba334fcd8f3e527ec7102c3b',''),(19777,'{25263} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fddf1697f5c04bae95c4752d2627856f',''),(19778,'{25264}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','815c19538e7b48edb63bd46ad4d641d3',''),(19779,'{31516}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31517}-{31518})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31519}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','79b2a705172743a88de436aa62be33ad',''),(19780,'{31520}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31521}-{31522})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31523}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','8c8e59c2079d4bfcbd775b0c38bbf253',''),(19791,'{25296}<>{25297} and length({25298})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','8012e0275fc24d9e9688cfccb3134aae',''),(19792,'{25299}<>{25300} and length({25301})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','c6e011ff0a1f41c5b90bb8fba507fe7d',''),(19793,'{25302}<>{25303} and length({25304})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','f8ac6aaa8c06474d9a9b86e5e43b5ed5',''),(19794,'{25305}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','63e95c315b6f422e9d4f6e532e847e9c',''),(19795,'{25306}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a8920b239ceb42e6b3e26ffd310a409a',''),(19796,'{25307}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25308}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','c3b13c3d1f8c4d53b1fa67f9abc168bd',''),(19797,'{25309}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25310}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','80fd1bd8bf564aecbe37b77294c84ae6',''),(19798,'{25311}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25312}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','335090c080c04b909f1b46b404dd025c',''),(19799,'{25313}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25314}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','5b86f67e1e184ef79b7023760d951747',''),(19800,'{25315}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25316}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','c62972c2c47d403bb92d43ff7b9b5a20',''),(19801,'{25317}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25318}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','fc2ffec9e7054c82880a560da071781a',''),(19802,'{25319} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','42329cfbff37430f87adfefa852b39fe',''),(19803,'{25320} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0259421d33e745d992e5eb03091b787a',''),(19804,'{25321} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ac07e47a3ce447febb5049da33931109',''),(19805,'{25322} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ef75c9ab974c46a99579c544e43a2c2c',''),(19806,'{25323}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ff2543e8251945f29036cb43fda69c72',''),(19807,'{31524}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31525}-{31526})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31527}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','7e201487d2ed496492eb2dbb1a169021',''),(19808,'{31528}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31529}-{31530})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31531}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','fcc24d6aa85a4ae4b104d9523afe073d',''),(19819,'{25355}<>{25356} and length({25357})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','e0decdba5c7a44ef9983da4d0912ba37',''),(19820,'{25358}<>{25359} and length({25360})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','ee34d0bdac3f4b0489fc96a3feecb72b',''),(19821,'{25361}<>{25362} and length({25363})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','65ac535fb0114cc098bd89d1e2a5cfed',''),(19822,'{25364}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','1ed5e95e003d4119bd578ac4f572ba16',''),(19823,'{25365}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','519211164f324540a624c3f1046dbd44',''),(19824,'{25366}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25367}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','09b73cf701ab4f4aac2fdbb4ff26e893',''),(19825,'{25368}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25369}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','3e86bb9cfaa5410d8b932f80c413e340',''),(19826,'{25370}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25371}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','5f52e2e9403544b987568c00046deaea',''),(19827,'{25372}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25373}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','6c46256f6d124cf9b3d602f7536a4788',''),(19828,'{25374}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25375}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','8b61d889f30e43f28102163a6284c8d4',''),(19829,'{25376}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25377}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','edbf42873c99405cb77d0eb3fd6986a8',''),(19830,'{25378} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bbe7c7f1238649119b44e657c5f0d292',''),(19831,'{25379} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8f858819c89542bc88afa76981b4639a',''),(19832,'{25380} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ad82b43ac27c44258f4a4f3ca212cdbf',''),(19833,'{25381} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','6a3ce63f84ef4df9b8e9cc231ddf3fe0',''),(19834,'{25382}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4a5a914ac69f42eb8fa9ca5ef30e63cc',''),(19835,'{31532}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31533}-{31534})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31535}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','07a38ca5caf7408fa0e61ec5bb2d2c9a',''),(19836,'{31536}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31537}-{31538})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31539}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','313ea923495e4a0289519b8c228f018a',''),(19847,'{25414}<>{25415} and length({25416})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','565c94a00dde43c1af72f8c2d00edcb5',''),(19848,'{25417}<>{25418} and length({25419})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','6d02cc3ff4144efda53554446feb0058',''),(19849,'{25420}<>{25421} and length({25422})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','18900918495f4dd99cbde564a071bf34',''),(19850,'{25423}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d89ab73e0c534f84ae9481a1a48d5064',''),(19851,'{25424}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','24667b99976c417985bbb1a307184d88',''),(19852,'{25425}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25426}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','aa6398ab43ec491ab5aa96c8d8422112',''),(19853,'{25427}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25428}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','186b82ffb7934fe8a62a150970dc2468',''),(19854,'{25429}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25430}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','58357816e19b4c9986e8d26165c4f29a',''),(19855,'{25431}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25432}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','522ee0ddfd7e40a4b81612d4ba4266cf',''),(19856,'{25433}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25434}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','6a5b1f729c054ec7acc3665ffb831bcc',''),(19857,'{25435}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25436}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','f4198424045742619f84410ee7a2939c',''),(19858,'{25437} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','b7d3eebe1d6944b88ed8afa923caf884',''),(19859,'{25438} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','94c9e778f2a7471c8002dfa6918dde8f',''),(19860,'{25439} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','77e69f355f7348a4bc823a8428980356',''),(19861,'{25440} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c1926140ee5d4532adeecf590f740e96',''),(19862,'{25441}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d32004c5c1804105aee11b22722556e1',''),(19863,'{31540}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31541}-{31542})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31543}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','73127568919e45ca9df89ab08285a3b5',''),(19864,'{31544}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31545}-{31546})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31547}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','954903eaecf54c26874d9e5ce47e044b',''),(19875,'{25473}<>{25474} and length({25475})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','a42442ce9d7d4a378964296eed6a6b33',''),(19876,'{25476}<>{25477} and length({25478})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','2da3a78731324233be1563691f353d04',''),(19877,'{25479}<>{25480} and length({25481})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','855a1e17110e49eaaaf4dd263f16a591',''),(19878,'{25482}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','9a83e6b6a0874a49a983cb610a7e0e50',''),(19879,'{25483}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bc07372dff2f4f72a6b1b7c0e02f79c7',''),(19880,'{25484}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25485}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','b3ce44c470a64dc49bc169c06bf9761d',''),(19881,'{25486}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25487}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','876a62a4aa6a449d888f1233c24c0dbc',''),(19882,'{25488}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25489}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','79304fcbafe349d4adeebe277858d23a',''),(19883,'{25490}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25491}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','80af013716d944e8be4cef996aabfef2',''),(19884,'{25492}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25493}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','ab46cd19e709417ebeb5c3b9964e2eee',''),(19885,'{25494}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25495}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','06e95d596af74a288b3787cb665255bb',''),(19886,'{25496} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4f9b8def6c3e4d72b7afeb50808cae21',''),(19887,'{25497} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','aa5d408235834a5e8492a55e178f5dc7',''),(19888,'{25498} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5c4489b0d28649a9a487d65833043589',''),(19889,'{25499} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','1d77ead6601b40d5b22afc9098a8a211',''),(19890,'{25500}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1b02cd1523474c949dcabd004a01089f',''),(19891,'{31548}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31549}-{31550})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31551}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','768953b43aab47d0bfcf9eeef75625ad',''),(19892,'{31552}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31553}-{31554})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31555}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','74b9590a3e2448bc926fdd29bc6ec153',''),(19903,'{25532}<>{25533} and length({25534})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','26d7b5b5fc4149d4869a4e3a94173172',''),(19904,'{25535}<>{25536} and length({25537})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','79405589edba4a878d7d2ab5d0399076',''),(19905,'{25538}<>{25539} and length({25540})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','1ed2e0368bb94a4fbfa8a82764b3b40d',''),(19906,'{25541}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','03cdc40813dd4d5093512db3c5e574ff',''),(19907,'{25542}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a9f3354cf2044306ba8ca1aae227ee60',''),(19908,'{25543}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25544}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','f399cf1f48d24ec3b3f33159cb7b4fe0',''),(19909,'{25545}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25546}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','0c240046f1434ffb8c2cba26e4b0e61d',''),(19910,'{25547}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25548}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','f810f58531c54e3bbcf6d0e677100237',''),(19911,'{25549}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25550}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','773c5f9316c44d8297b4fd3cdd236da1',''),(19912,'{25551}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25552}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','3d688fda4da843e192c26d955d8d8dd9',''),(19913,'{25553}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25554}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','2a21380034244b29878bbb198cca6712',''),(19914,'{25555} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','67152820f4884d51a16966f339947955',''),(19915,'{25556} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ca8b841c9830497dabd0138fafade175',''),(19916,'{25557} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e8f613b6301b43efa4a2e84d62ec520f',''),(19917,'{25558} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c215c39df396474e865ae9b36c40545f',''),(19918,'{25559}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','587ccbe7d604489783b66411a3b21cb1',''),(19919,'{31556}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31557}-{31558})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31559}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','72a2fc862c354ab0a3d8fb491aaed9e1',''),(19920,'{31560}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31561}-{31562})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31563}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','d66a941be43a440fb13386d9a319a5b3',''),(19931,'{25591}<>{25592} and length({25593})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','385231b6c7eb4ce6a275969b437c8d44',''),(19932,'{25594}<>{25595} and length({25596})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','bb2cc5758a154bc0ad07138e87f353a4',''),(19933,'{25597}<>{25598} and length({25599})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','ff7510d9e2d44057a089b9486af74971',''),(19934,'{25600}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a7fa3a261f0c4362938700ff8954cdc9',''),(19935,'{25601}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a47faa0771b348ed8fd040027deebd95',''),(19936,'{25602}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25603}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','b32ecc16390c42bfbc0ad23305f59392',''),(19937,'{25604}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25605}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','fb39a804a60e4154ad6602fad05c399d',''),(19938,'{25606}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25607}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','e35e3256fd58439d923ca54b7e33e64c',''),(19939,'{25608}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25609}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','ea9da810d00445f3b4649f8aec0d9ef7',''),(19940,'{25610}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25611}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','28a883547a4449ea96c1168aef939a65',''),(19941,'{25612}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25613}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','760505068a3946edbd38294f867e08e5',''),(19942,'{25614} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','eacd5dec75404c9e80bd18d5ea0f3bff',''),(19943,'{25615} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0e79530582ee4e3aa270d8a43a96f7f0',''),(19944,'{25616} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ddbe2cfcdd6f4d5895780fa6510acb73',''),(19945,'{25617} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','5f8087b4f9ae4d3693d55d189c1f99f4',''),(19946,'{25618}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e25c484ec45a4a01b51f961318813e30',''),(19947,'{31564}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31565}-{31566})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31567}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','044aabf4d95c4c9ba7ccec76446f50af',''),(19948,'{31568}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31569}-{31570})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31571}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','3a5a7043d1b64fe5a7fdefc341fcc22a',''),(19959,'{25650}<>{25651} and length({25652})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','6172f360bcca4bc6a105a5093be8665c',''),(19960,'{25653}<>{25654} and length({25655})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','80072866ba994094a279eb45020311d1',''),(19961,'{25656}<>{25657} and length({25658})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','d66d2b488b784574943c90f20d0153ce',''),(19962,'{25659}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','02a8b7e7ebbb4d1baf5ee155167e36ba',''),(19963,'{25660}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a81f9bcd4d4d4c4593654293b55f864d',''),(19964,'{25661}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25662}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','ac0cfe319121487fb2009436d27f4f2b',''),(19965,'{25663}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25664}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','c1c53cec6a204411b9739eac84447c2a',''),(19966,'{25665}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25666}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','f0d3f01db5d44b74826326048bca05a8',''),(19967,'{25667}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25668}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','dbfb3ba672c944149aea12b3f4a1cdbe',''),(19968,'{25669}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25670}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','8c4ffcc25b254dc29928ac1ac0272b7a',''),(19969,'{25671}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25672}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','df1aa24cf39947528099405c6cd311f4',''),(19970,'{25673} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f929a190e2624171a7a4b80919ae025e',''),(19971,'{25674} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','dff7058dd39f4cb294533048160b3b75',''),(19972,'{25675} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e57c17fcddd04bdf921a9f1b6151ccb2',''),(19973,'{25676} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','95e376a33c1642c9a7d33b40bcda3389',''),(19974,'{25677}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','569c6b51c3714d84bce3522093e442a6',''),(19975,'{31572}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31573}-{31574})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31575}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','8ddf161b19eb4716b1ec7cb270970703',''),(19976,'{31576}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31577}-{31578})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31579}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','0a19983ae1d443bbb4224a61d46b62de',''),(19987,'{25709}<>{25710} and length({25711})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','324d699f4767400e88e16f37ffcd2abd',''),(19988,'{25712}<>{25713} and length({25714})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','53e8fc3eac46426fbce375cc2ce983c8',''),(19989,'{25715}<>{25716} and length({25717})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','2a0736cbd3324122b51c4ac4629c1323',''),(19990,'{25718}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8246aab86f954be8968169f55889a842',''),(19991,'{25719}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bc2854ed0ff645ae9a932ab5baa62a91',''),(19992,'{25720}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25721}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','b3d35f977375429a8a0f4b76dabf294c',''),(19993,'{25722}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25723}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','3be96603ac0a474694bf53d2b8aa8487',''),(19994,'{25724}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25725}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','809c702cedf749b6b53f591ee37c56ba',''),(19995,'{25726}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25727}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','973e5d05599c4ee79d8cc210b004f38d',''),(19996,'{25728}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25729}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','58c9f09a52ed48f7b65a4ab6a7b19c35',''),(19997,'{25730}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25731}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','cfb884d37884407fbba3f93515020352',''),(19998,'{25732} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','f5bf9d28bfb344728e481a3a478c6986',''),(19999,'{25733} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b427fe9c54d486792c9388b8c2968cc',''),(20000,'{25734} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','130cdbfb721646ef92c6c1664dffce72',''),(20001,'{25735} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2df17dc1ca8f4d9fb135c23f86fb50d3',''),(20002,'{25736}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d1a52557a4f746da96893c3d1436b3f2',''),(20003,'{31580}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31581}-{31582})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31583}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','dfcf03d83fb147b18be991b65d2298d6',''),(20004,'{31584}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31585}-{31586})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31587}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','95f44fd2b533449593e2095edda00fc9',''),(20015,'{25768}<>{25769} and length({25770})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','6739b5af597443449dcfb946d2b89393',''),(20016,'{25771}<>{25772} and length({25773})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','dfc2b8c7f27049a6bd51c283cc6a29ce',''),(20017,'{25774}<>{25775} and length({25776})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','dc48fc089a314b7ebae646f2dfb925c5',''),(20018,'{25777}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fdcc98f2475247f29fdf48c3a4a69058',''),(20019,'{25778}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','08ca4ad1230144488299a8f4eaacef7f',''),(20020,'{25779}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25780}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','3f1ce913660a493387485d5dab3ebfc4',''),(20021,'{25781}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25782}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','e7a78d2798b44c438a81c308d1a1c0ed',''),(20022,'{25783}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25784}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','890865ebc7ea41ef8e9d3c794395092b',''),(20023,'{25785}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25786}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','0c035a51301746588e0bc01bb0bf425a',''),(20024,'{25787}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25788}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','efc19507ca614ef487d0a9a637a8f7a6',''),(20025,'{25789}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25790}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','54b7d721900742acbb1548714c34c7c2',''),(20026,'{25791} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9c9bab7ccb354d478ae1d5f7ab66f5ea',''),(20027,'{25792} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','f44e31574a68494cbcefbc961662063b',''),(20028,'{25793} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','9ebee838e00c46bba067094ea9732f6d',''),(20029,'{25794} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','90fc1e486dd9409aacf0f68f86caf80c',''),(20030,'{25795}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2e15eff553614e51a59590c6e3df4a42',''),(20031,'{31588}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31589}-{31590})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31591}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','6a2a5c6ce51b4f6b912a01e45d1a5409',''),(20032,'{31592}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31593}-{31594})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31595}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','0df7d927286d47998fcf15c41bce944f',''),(20043,'{25827}<>{25828} and length({25829})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','07248a02609a4964be773df77f86f30a',''),(20044,'{25830}<>{25831} and length({25832})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','a79318151008414cb9a0c3d788b76f76',''),(20045,'{25833}<>{25834} and length({25835})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','829598b7b1b4404bbd959ae186734251',''),(20046,'{25836}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','7f44b9ee964f4ae798f3af4c12799e12',''),(20047,'{25837}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','37579561f5e74042827d0d3fc5dc85e7',''),(20048,'{25838}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25839}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','50a28d8380d64feca6fb2691e2477fed',''),(20049,'{25840}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25841}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','6bd9170284ef49b4825cf347e1f43548',''),(20050,'{25842}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25843}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','ccda9a03941b42b0ac184e22aa23666c',''),(20051,'{25844}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25845}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','2c4b897afc03484fb7e435af025ac9a3',''),(20052,'{25846}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25847}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','8de55e3f0a2d46f69d430362b208654b',''),(20053,'{25848}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25849}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','5d4582baab9b4b98ba6d6e3e78678280',''),(20054,'{25850} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','b3abf2a74b1444d7af3cdfc8ac550ec4',''),(20055,'{25851} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e3300b34a9f34bbd91af48f5b8e89d9e',''),(20056,'{25852} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7a06e44d440b4b85ad3b102fccf24309',''),(20057,'{25853} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','6950612291f84d1d805b2f250c133096',''),(20058,'{25854}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','68fac07f6dd045ba8040c7fe813bdf2e',''),(20059,'{31596}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31597}-{31598})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31599}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','463c460bdff441ce9af1ea170ea4dbc2',''),(20060,'{31600}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31601}-{31602})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31603}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','a758c3e0841e4fff93ff4bcaa41505eb',''),(20071,'{25886}<>{25887} and length({25888})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','6729f53f42ff445c8ab26b91cdb811e2',''),(20072,'{25889}<>{25890} and length({25891})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','24e52c80e5544295b778c677d0de35b2',''),(20073,'{25892}<>{25893} and length({25894})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','8846801d462142938e7e0683dd481087',''),(20074,'{25895}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d9f9ee61646a4881bcb34a5e564738f3',''),(20075,'{25896}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','9fc63b1881da411baea0e78cd671606a',''),(20076,'{25897}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25898}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','9ab9bb63b838495f863feee9d62fcb72',''),(20077,'{25899}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25900}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','1f68799afde34df49dd0d693872aa19a',''),(20078,'{25901}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25902}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','21a3e86813114562a8e382bd3120030f',''),(20079,'{25903}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25904}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','52e3b8b493eb4ab09bacb707ed7454ab',''),(20080,'{25905}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25906}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','00ed3d5d280f47a1b20073e87f6ec6f0',''),(20081,'{25907}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25908}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','0e8120688a774b63823848119deaf4a5',''),(20082,'{25909} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4d8a166e4cc8442c87c2989fa87b8e1d',''),(20083,'{25910} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1affa10b3e2d477c92951193292f57d0',''),(20084,'{25911} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','bb085163f97341259cd0d42e38c1685e',''),(20085,'{25912} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4b214d3637994c89816ef4f951ce8828',''),(20086,'{25913}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9b32c491ea3d41bca60ab53c664ee369',''),(20087,'{31604}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31605}-{31606})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31607}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','572cb48de9bd4010b907cff6efa9f3a8',''),(20088,'{31608}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31609}-{31610})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31611}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','10639cc4b8de4879a99c70061d5d48ea',''),(20099,'{25945}<>{25946} and length({25947})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','0f66010aec32455eb56414c1ba576982',''),(20100,'{25948}<>{25949} and length({25950})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','59c929b470d342b691b01b5d12f87456',''),(20101,'{25951}<>{25952} and length({25953})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','c9fb96d72f6942d1b4320014b2e40b0c',''),(20102,'{25954}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72863d07fe654e78b740e2f48e0cebe5',''),(20103,'{25955}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','a2148ac68e78401c81ea5ef66cddc04c',''),(20104,'{25956}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25957}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','0e9494a8018f4943a84c1e6b6304439f',''),(20105,'{25958}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25959}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','6877c6d086354b5eac351ddbe1dc5656',''),(20106,'{25960}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25961}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','608d5359e01148a2b8dcc507a11f5ea3',''),(20107,'{25962}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25963}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','5eff445458ec4f2f9b9b9085f9487f7d',''),(20108,'{25964}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{25965}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','3d9498b115df444981717267ccbe926b',''),(20109,'{25966}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{25967}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','c3b94c3a222746cc9f88c5f44c3e882b',''),(20110,'{25968} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','d3b264a57365416ba32dd5ee7f3b2c72',''),(20111,'{25969} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c69186a3c737437696414d1d1c434a3c',''),(20112,'{25970} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8179d0962048402c9843878c34f3a45c',''),(20113,'{25971} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fdb14600d90a448a83bdc51dd170296b',''),(20114,'{25972}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f60557875559490a891eb81c11e0cf37',''),(20115,'{31612}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31613}-{31614})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31615}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','2e7f4f0eaf384c68acaf1bafadc6296a',''),(20116,'{31616}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31617}-{31618})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31619}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','380f830e3e714a99b9c7b30c1fbce14b',''),(20127,'{26004}<>{26005} and length({26006})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','f0c59541e6df4c649e7c2ef76d7bda4b',''),(20128,'{26007}<>{26008} and length({26009})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','a1cf2d27ddc447988aa808318aef167f',''),(20129,'{26010}<>{26011} and length({26012})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','9bfebd1764bb4acc82fa8c7f175c0b87',''),(20130,'{26013}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','9af92a1dddd0405587bb090b8fd5757d',''),(20131,'{26014}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c06050c48eac4f8f90df94c6d125f369',''),(20132,'{26015}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26016}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','9f6533c6505948abb10869f4d0a11070',''),(20133,'{26017}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26018}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','e683521cc3de43eaa7c8ecbbb360fb7d',''),(20134,'{26019}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26020}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','2d1bba8f19694737a6cb59e12289327c',''),(20135,'{26021}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26022}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','8db96c9e7d164b0fa6d2af61899ea427',''),(20136,'{26023}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26024}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','33c12e280a464d20960ae73341ea3dbe',''),(20137,'{26025}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26026}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','4fa5ef5d55fd4fc8a21516dbfb0ff7eb',''),(20138,'{26027} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','fd43c6f8ed834db3a69e6c30c29878ed',''),(20139,'{26028} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','685f5eba5ddd4b2ba3173fc82367b476',''),(20140,'{26029} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','4a4f14e171504413ae16d92597fe1024',''),(20141,'{26030} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ed070d7bccb649a49b29eda9b8a02192',''),(20142,'{26031}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','89940e123e8c4c04b402a436c977d999',''),(20143,'{31620}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31621}-{31622})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31623}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','e5df295edd2848329708aaf765a8e8be',''),(20144,'{31624}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31625}-{31626})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31627}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','31ff4cd8ae95435193ecc37238327c4c',''),(20155,'{26063}<>{26064} and length({26065})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','70a98e004bd34fb48e9c410ca52f4bc0',''),(20156,'{26066}<>{26067} and length({26068})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','e4da63844b774f4eb9e0188f659f256d',''),(20157,'{26069}<>{26070} and length({26071})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','9f738a1caee34259a3d38e52ddb6c791',''),(20158,'{26072}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','640203769816409d883d5ba38a6ff4e5',''),(20159,'{26073}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','087f5705a7ce4a88a8c699541ee704be',''),(20160,'{26074}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26075}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','8aa17694ab184951b24093d8a765eae0',''),(20161,'{26076}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26077}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','3c33429067c84714b68c4bbd8f729bc7',''),(20162,'{26078}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26079}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','100002ca08614467b16f313dfeda6e68',''),(20163,'{26080}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26081}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','757ac3b43a62450f9e49885dd654167f',''),(20164,'{26082}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26083}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','71f8b72b4c7240a8a4e10b503a2aec9f',''),(20165,'{26084}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26085}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','818f218a8ee3455db507dcded146c3ea',''),(20166,'{26086} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6a8f6966f59a45e48a68f0343c372973',''),(20167,'{26087} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b4661e442014e21a98e56b8b332a6ba',''),(20168,'{26088} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d04782f202c44772b039867d744582de',''),(20169,'{26089} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d8d6a75db4de4ff7b8b2f4ab1f8d7258',''),(20170,'{26090}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6dfee746a74b4f96b103202b00ed3720',''),(20171,'{31628}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31629}-{31630})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31631}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','2e330eb1ac0a4427ab150c2f1c3949b0',''),(20172,'{31632}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31633}-{31634})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31635}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','ba3b9fe3bb7041c5a2e7d9fec8bed517',''),(20183,'{26122}<>{26123} and length({26124})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','66ea5bdabba4438ba8f9959e0c4b24ec',''),(20184,'{26125}<>{26126} and length({26127})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','425777ce38e54daba1f6501bd4f6bf6b',''),(20185,'{26128}<>{26129} and length({26130})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','73aec359593a4ce9ae07e66a39ea2275',''),(20186,'{26131}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','179753654a4849d48935c10417994eb7',''),(20187,'{26132}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','295ec169c36b482790f9091db3a39357',''),(20188,'{26133}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26134}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','ae05e13963974301850e66f5e4f33a2c',''),(20189,'{26135}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26136}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','f5b55111b94e427082a07baa856bb4fb',''),(20190,'{26137}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26138}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','1e19d78e1b394165ab9dc6da8c072ab8',''),(20191,'{26139}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26140}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','588874bb24d64ca6b10179eab36fa7c2',''),(20192,'{26141}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26142}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','40cd8afdf46a4d03aa426cedd7ce7d9a',''),(20193,'{26143}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26144}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','ae2260c1ecdd44e48e72d43ce1936222',''),(20194,'{26145} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1e1893cd271a4b1f9d04afb520cd6925',''),(20195,'{26146} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c045d57678f4478cb6caf5fb0a80d0e9',''),(20196,'{26147} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8125b0058dfd42e786bcf3cac7ab4c88',''),(20197,'{26148} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','bf70869515ec4c35814efa05b8305403',''),(20198,'{26149}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9b78a081991540cda9aad21e6255b632',''),(20199,'{31636}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31637}-{31638})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31639}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','7589fe3f0e3e4c26ac21cd314b1c07e7',''),(20200,'{31640}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31641}-{31642})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31643}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','30977d9643d6482c89fe5a08030c559a',''),(20211,'{26181}<>{26182} and length({26183})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','32127aca202644c5915255006e9544b5',''),(20212,'{26184}<>{26185} and length({26186})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','7bb01da1713c42c1ab28c1ae2adc1260',''),(20213,'{26187}<>{26188} and length({26189})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','28568c2163ee4a0aa262241064922c7d',''),(20214,'{26190}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','7224d01c717a4dd3800fbd8d8e9399b8',''),(20215,'{26191}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d6343a3648f0493bb786d598a8e51ab4',''),(20216,'{26192}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26193}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','6b909503dc46413fad04d4cf4d7b6939',''),(20217,'{26194}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26195}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','94833673685645f68729a8f98b5a213e',''),(20218,'{26196}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26197}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','aac8de5837494421a642793cc5a9009c',''),(20219,'{26198}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26199}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','3d4dc47de9db4049a4baebf68df16b1e',''),(20220,'{26200}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26201}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','cf105fee78774aa7ae119f2638528423',''),(20221,'{26202}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26203}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','1bf28981db8d414199c3fb7bd20e669a',''),(20222,'{26204} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','c27c37092c5f48f1944417cbd47f6c25',''),(20223,'{26205} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','9525ed0ec7bb426587ffcf4879590d5b',''),(20224,'{26206} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d7c501de314140aeb2b6f344bad2c501',''),(20225,'{26207} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','f124b3bbba784fff966adef3c722eb70',''),(20226,'{26208}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','aa16e2906256441bb0c6680e9c95f547',''),(20227,'{31644}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31645}-{31646})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31647}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','2d873bbec47d4b3281b1aa33c87c60a0',''),(20228,'{31648}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31649}-{31650})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31651}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','6bab52e75f8e4286a7c4ec7336a4d417',''),(20239,'{26240}<>{26241} and length({26242})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','58b860a92baa43158419a843ae89687f',''),(20240,'{26243}<>{26244} and length({26245})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','54368f9d9e9f494ba55f8f5fac20196b',''),(20241,'{26246}<>{26247} and length({26248})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','dd39ada0b3b14009968866d766e9e16d',''),(20242,'{26249}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','de55f957c95d404380cb490126f88e3d',''),(20243,'{26250}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','693899638cc1411a9f178cdf6d53b22a',''),(20244,'{26251}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26252}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','9084cab74227494d9ebd02ea9a4309d2',''),(20245,'{26253}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26254}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','5dc37a79bb254104a9a46383b14b0e3e',''),(20246,'{26255}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26256}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','35fd07bdd3d84ccab6172255af3989ac',''),(20247,'{26257}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26258}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','d26213a8d92e4845a7767a0a7fe340b6',''),(20248,'{26259}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26260}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','47e2acacb8414731b56ec86e1a9e3e3c',''),(20249,'{26261}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26262}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','69c54b6ef3a04343bd9df41153398067',''),(20250,'{26263} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6e805c219d884cb38bcd51dde95af1a4',''),(20251,'{26264} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','93ca96ceac4043fbbd88004165d94c3a',''),(20252,'{26265} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','0f7f11abdba9495fa4fa33ad1a872244',''),(20253,'{26266} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','da0b1d4940d64a5c9b96c83600cb4963',''),(20254,'{26267}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b885a22b88114ea7a275f0758d82210c',''),(20255,'{31652}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31653}-{31654})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31655}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','49a1cefb001c47bbae541e71673d5eb5',''),(20256,'{31656}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31657}-{31658})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31659}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','5145ea5e4fb04f9c9dfc90d61ca65d1b',''),(20267,'{26299}<>{26300} and length({26301})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','0d646e6c03f14c259b81862187a6eec1',''),(20268,'{26302}<>{26303} and length({26304})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','992d3bd742224ad7abc375d20e60e1af',''),(20269,'{26305}<>{26306} and length({26307})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','b3e063c9221d4bf69acb21a16859bb15',''),(20270,'{26308}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','95ac8c277d8940ecb1545be2dc514c54',''),(20271,'{26309}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','9e5d5b925a5c42a2af13b3a6727a4cb9',''),(20272,'{26310}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26311}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','ba13b39c8a6146bf9b3b6d46fb71fcc6',''),(20273,'{26312}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26313}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','3a469cd75bac4782b18aff3011c766b3',''),(20274,'{26314}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26315}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','11f6f7f659a445e7930b7ab3532a8ebb',''),(20275,'{26316}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26317}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','3392f74fc5974701b62673f5c51700d4',''),(20276,'{26318}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26319}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','0e4acbc3bad54347a362cbf57c0464e3',''),(20277,'{26320}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26321}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','42c7cd22b6c74fc7b36f5b6593db02e5',''),(20278,'{26322} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','027b0481f1de4967973208e3477c0094',''),(20279,'{26323} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','7dc5c0d4f77441a5a29239b1aa77d00b',''),(20280,'{26324} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','95d3868b6d1c45629acc756865cf6f78',''),(20281,'{26325} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','94cb13b08f4f46c2bccd3b5ac22ccb3e',''),(20282,'{26326}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1317af27066547e2a07f2dd27923e22b',''),(20283,'{31660}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31661}-{31662})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31663}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','ee1e3d1444c947d2898cf120dc3fc53f',''),(20284,'{31664}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31665}-{31666})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31667}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','a6f92ac3ee824ef486a82f441fb60a67',''),(20295,'{26358}<>{26359} and length({26360})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','65e43afe1d04447fb334d5efbd76c185',''),(20296,'{26361}<>{26362} and length({26363})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','3a3ac7e0d5fc4feca67eb2447fcbcf34',''),(20297,'{26364}<>{26365} and length({26366})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','2f18268819414337aca3f919343d6577',''),(20298,'{26367}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfd67344627840a081d286d8188c0888',''),(20299,'{26368}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d9f63d9be04940949d9dd655cf1a7bd2',''),(20300,'{26369}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26370}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','bf5e439b3dfe4a5b82df00c0ed291895',''),(20301,'{26371}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26372}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','bc428b5477294722a18477dc061a59e9',''),(20302,'{26373}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26374}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','21aa13901d7449a39f64a41cb151d687',''),(20303,'{26375}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26376}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','0a2cde44b8ea45178e0859ae7c1125e5',''),(20304,'{26377}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26378}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','0379f91f1b4e40d1b35c30ac538a8b61',''),(20305,'{26379}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26380}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','7d4b709e7b5c4e9aa68a9c6f8df69e75',''),(20306,'{26381} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','4ae567c4a5be46a4a1a135a5f61aece8',''),(20307,'{26382} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1e6aca20d3c140f69580920d37820c9a',''),(20308,'{26383} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','65a6c1de5d8e4a4d8857a4b97fcb1a7a',''),(20309,'{26384} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','df73d669f65940a79065915e11a3e3bf',''),(20310,'{26385}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','233fb21420794842b00c0fb12db86e51',''),(20311,'{31668}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31669}-{31670})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31671}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','3e07aa63774040ef9369b3280cae156d',''),(20312,'{31672}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31673}-{31674})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31675}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','caae865a278946958a38fa40a41f180f',''),(20323,'{26417}<>{26418} and length({26419})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','f91e54b227304a688092ffcbabf88d41',''),(20324,'{26420}<>{26421} and length({26422})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','aeb6d1d52ee24d7393a4a5a31f7267fb',''),(20325,'{26423}<>{26424} and length({26425})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','be2544b8b967408288a750c82a8f9059',''),(20326,'{26426}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4fbf859b65774291850b37f700945a36',''),(20327,'{26427}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6b4d22ac23db45beb398d591a157782e',''),(20328,'{26428}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26429}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','519c8f4f6a62492fbf739c2303f76aa5',''),(20329,'{26430}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26431}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','4b2e16580fe6436aa3e37813c83fde98',''),(20330,'{26432}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26433}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','6cf5bdc92724485ba64f5d06b01f4656',''),(20331,'{26434}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26435}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','2218bd775d8c421992346f40d0b38fa4',''),(20332,'{26436}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26437}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','093386c3b35f45bab6cea6d6396064b1',''),(20333,'{26438}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26439}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','17ac58cd999d49f1ae31bc6a9280f887',''),(20334,'{26440} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1f7f8781515a44b4b12db1a162e9a8f4',''),(20335,'{26441} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','79166253631142cf87660a658c77169e',''),(20336,'{26442} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e5d37873211c44aca51f7926a9b2add6',''),(20337,'{26443} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','51c15917a456414ca6fef2cc86156484',''),(20338,'{26444}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e9057c50ee5148119a922bd170e7463f',''),(20339,'{31676}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31677}-{31678})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31679}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','c01561923734478abc70b7c02d2d9add',''),(20340,'{31680}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31681}-{31682})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31683}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','e53a74871f2b4fadb8ff206f348fc90c',''),(20351,'{26476}<>{26477} and length({26478})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','db665e87151d441395fce421949a9bb0',''),(20352,'{26479}<>{26480} and length({26481})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','a5e267a8584a4d099f0d36d30ce17d0b',''),(20353,'{26482}<>{26483} and length({26484})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','9fe8a423c0a8411191337e48818cd835',''),(20354,'{26485}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ef73c971f14444f18a8b0956c8bd5796',''),(20355,'{26486}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','887bf529d1aa43dbaec9a92a390fc0cd',''),(20356,'{26487}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26488}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','4ec904a360ff48668e5273ba4dd223fa',''),(20357,'{26489}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26490}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','c8dcfe797232437991ab8da001e9855e',''),(20358,'{26491}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26492}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','90cea4e309944224abe0052a9eeb2e59',''),(20359,'{26493}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26494}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','b0718bee8c8d422683e5f9f2915a35c0',''),(20360,'{26495}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26496}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','bb57907f2cec4eeda6e7ace60d90a2f3',''),(20361,'{26497}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26498}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','7c1161969d7f490fba58d113a7cf9da2',''),(20362,'{26499} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','ce0b05960b714a03b34f626d262f410a',''),(20363,'{26500} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e97689431f51481db6836b937214a926',''),(20364,'{26501} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','de8a3e44f9494ae0b9506785386c0604',''),(20365,'{26502} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4c4e3d9b71974e3192070aa344e37221',''),(20366,'{26503}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','034fd6289a4a4d549ea927ae48d8b225',''),(20367,'{31684}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31685}-{31686})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31687}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','e6c0c2401c0940ef8edae9aa38aa49e3',''),(20368,'{31688}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31689}-{31690})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31691}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','d72e1d5537ec498788f6e7e57e18f65d',''),(20379,'{26535}<>{26536} and length({26537})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','98b8b373def34eec9e814c039dcfb20b',''),(20380,'{26538}<>{26539} and length({26540})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','da1a900485be412996f607b9669daf83',''),(20381,'{26541}<>{26542} and length({26543})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','41ec834afc7a49409cc9996459b15452',''),(20382,'{26544}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','86bc4c3dbd024d8d84a90f25fa8c0932',''),(20383,'{26545}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','dfedf883e0e043a8924796421d0836da',''),(20384,'{26546}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26547}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','cc60802009c449eaa49992f38c176f8c',''),(20385,'{26548}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26549}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','f83dac15be7a4f6a891406fe1e307074',''),(20386,'{26550}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26551}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','7044f89f39fd4fa7ba1bc790e86fc960',''),(20387,'{26552}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26553}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','2cc0f3a6c39340b78e6b1795b90ee052',''),(20388,'{26554}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26555}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','5f460952122241d5900e83f68e097e32',''),(20389,'{26556}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26557}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','e729643fce2d43d8b5de5a5f3d0fa184',''),(20390,'{26558} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','de98377f082840a0929e2f9024eb873d',''),(20391,'{26559} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4cf201a794cf48dfbaf574a04f8111b6',''),(20392,'{26560} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','3666c8cb456a4e4581c4ebac22db115a',''),(20393,'{26561} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4b0a6c73bc1f4e7692cb9196dbdf059c',''),(20394,'{26562}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','26baba4f44aa436fbe96c86a4a511156',''),(20395,'{31692}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31693}-{31694})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31695}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','e9f77bfbd9e64dc0a9549c0e54da0582',''),(20396,'{31696}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31697}-{31698})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31699}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','ff9b2a577fc64bdeb0c8e1feaac80862',''),(20407,'{26594}<>{26595} and length({26596})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','656a970a84fd4f65adc021b317f8db04',''),(20408,'{26597}<>{26598} and length({26599})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','ba6f7f02b3dc47b6a15a40f81c86ee1e',''),(20409,'{26600}<>{26601} and length({26602})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','b720a6b27e14473db885682085ce07e1',''),(20410,'{26603}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6d68e3acb5a34a9eb68f6ea1e329241d',''),(20411,'{26604}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','000c63d6cf4d44f28c2705098ce88918',''),(20412,'{26605}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26606}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','23eaad92fd06421a94ed77347ed7805f',''),(20413,'{26607}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26608}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','e596c08e59974762a21d5e7c2bb06eb5',''),(20414,'{26609}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26610}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','8faa5c80c64545b8bde41c02bf450288',''),(20415,'{26611}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26612}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','6e77737e71a640b1b0832fb8a317a848',''),(20416,'{26613}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26614}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','9ea2d3a683994dcc816d7210cfda6f38',''),(20417,'{26615}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26616}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','82fc4ea36e9e4a388e38bf4fb5d46148',''),(20418,'{26617} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','eab50deb6a2e45e8b7bcd447dc6c28e9',''),(20419,'{26618} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','a12e8f4ef8c2496aacc7cbc35b9ede34',''),(20420,'{26619} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','32cb826e59324b90910717b778a714f2',''),(20421,'{26620} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','4220c67e66074f048261a4b42092c381',''),(20422,'{26621}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bd6dc784f23746d19a09b6ea322ecf24',''),(20423,'{31700}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31701}-{31702})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31703}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','708c6b4a613c4795bd2b3c8b10b9fed4',''),(20424,'{31704}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31705}-{31706})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31707}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','1220479e0e0b4dbbb7590ec2b8359009',''),(20435,'{26653}<>{26654} and length({26655})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','7e708c7bf76445959909bf03adf676dc',''),(20436,'{26656}<>{26657} and length({26658})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','0b2e29ba173346248fb4d799f7e16cf1',''),(20437,'{26659}<>{26660} and length({26661})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','b0c3673f0aee4a23a7811f54416924bf',''),(20438,'{26662}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','5e104649223b40cdadeaa338321ca690',''),(20439,'{26663}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f8801c652f414d4b881715e10d1a69ac',''),(20440,'{26664}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26665}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','5e2a48b70bb5491791e1e796d9b57700',''),(20441,'{26666}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26667}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','6064422d708f4ee3a54dd0dccd6c2ef4',''),(20442,'{26668}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26669}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','b61c653ea25c47f397288e7a6c88c343',''),(20443,'{26670}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26671}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','7f1abc774f4e48928a52a755f9655d33',''),(20444,'{26672}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26673}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','4c3b3b0c4e4c4903856c673ed34c32b2',''),(20445,'{26674}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26675}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','46ce97f9fd33406996e21d7c4cfe4615',''),(20446,'{26676} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','5caa686e721a40e991d0f4b71eaecc7f',''),(20447,'{26677} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ce67126d64254dabb9d5df68dcdb5a69',''),(20448,'{26678} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7401d1955be04599b1d0e5dfb3d2a4f5',''),(20449,'{26679} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d668e892231d4614af5673f11d8070cf',''),(20450,'{26680}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a5ac3a7a8ac447bdb1d35b9456351624',''),(20451,'{31708}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31709}-{31710})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31711}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','adf6f10ebb2e42989ed41b69e3411431',''),(20452,'{31712}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31713}-{31714})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31715}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','da4dd8436d6f4787801e6d2f10b59a47',''),(20463,'{26712}<>{26713} and length({26714})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','9b20e7d8a4c844069a75adc95dcb6223',''),(20464,'{26715}<>{26716} and length({26717})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','ec99b185eb1d4af2943cd49f4b1e3dcf',''),(20465,'{26718}<>{26719} and length({26720})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','54ca398b57a8450ba004aa15a310f599',''),(20466,'{26721}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','a60e5b95514e4a6ba5bdc1d2bc95818c',''),(20467,'{26722}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c5ddc3a0e73943ef939341972db502e1',''),(20468,'{26723}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26724}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','963f7342ba58427189be8e5d482bd1db',''),(20469,'{26725}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26726}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','3bc320302ce64512bf5cabdddbf8827a',''),(20470,'{26727}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26728}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','2341cc2581aa47629ba79efb0dde8f12',''),(20471,'{26729}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26730}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','310fc63d695d4d79adb61b152467dc6b',''),(20472,'{26731}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26732}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','45d51b9e79ce4086934b7a93837855fd',''),(20473,'{26733}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26734}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','84ea7da850864101a35eb96acb475dec',''),(20474,'{26735} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','832ceaf8547b4395a4495ad2d64c9f3e',''),(20475,'{26736} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','64e8b603db0240bda81435df0ec8f275',''),(20476,'{26737} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','8085843742774a44ada60c14cf33aeb4',''),(20477,'{26738} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e315b7387f1943eb9432986565aee291',''),(20478,'{26739}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','611cb0ad354a4ac0b52715483b4426ad',''),(20479,'{31716}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31717}-{31718})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31719}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','63d24ac83bc24eb5b64ecc47c75c1c4a',''),(20480,'{31720}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31721}-{31722})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31723}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','ed3c082e9f264f20862f9cd20d4e9724',''),(20491,'{26771}<>{26772} and length({26773})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','6be0e3bc49134d8c9823736e1c4dcb98',''),(20492,'{26774}<>{26775} and length({26776})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','a6c0fe000ca34b7490c4a56f5c57346b',''),(20493,'{26777}<>{26778} and length({26779})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','660fbce28f334bb79afc6a9ba8596316',''),(20494,'{26780}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ac97984b2153426c89247bd88797b4a2',''),(20495,'{26781}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','62fb5cb70674493ea1c7db4df42cf8f4',''),(20496,'{26782}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26783}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','43a5c40a58f541faa120a514dc47451e',''),(20497,'{26784}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26785}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','bb4a5e936ba74269b8a8fa2e1ca2b27e',''),(20498,'{26786}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26787}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','46754e9a44b04fdeabc9d6a1370505dc',''),(20499,'{26788}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26789}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','5b25032a33c3443585d74f3412f13d3e',''),(20500,'{26790}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26791}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','44f2b8515564492c9b2e68985f753cf9',''); INSERT INTO `triggers` VALUES (20501,'{26792}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26793}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','cd9978c41951477c9d3ef44f7d4d717c',''),(20502,'{26794} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','889e25ecd5104014bd798cb577f59bd5',''),(20503,'{26795} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8733d8912d8d400b9dafcc845854cb3a',''),(20504,'{26796} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','a801c0260917479f9f905a8b32085fc6',''),(20505,'{26797} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','cfcecfe761064f5baa312a0c54633261',''),(20506,'{26798}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0a36e10a866e455f98f1954b4c663d64',''),(20507,'{31724}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31725}-{31726})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31727}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','7e550dcc8005425db0c20785d3818466',''),(20508,'{31728}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31729}-{31730})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31731}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','92d4b209c4e249fcab9d72eae2da160d',''),(20519,'{26830}<>{26831} and length({26832})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','1a920e11feb447deba1aa2d8fbb24f85',''),(20520,'{26833}<>{26834} and length({26835})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','1167a5bf26e24eb89479904841ef890b',''),(20521,'{26836}<>{26837} and length({26838})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','4a1aacf6350844e5858c3eed35b544eb',''),(20522,'{26839}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f58eb093a57948f1bf674be6a207b0d3',''),(20523,'{26840}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4a30b05ebe764253bfe646c3d68aef41',''),(20524,'{26841}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26842}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','7475c0fe7374472db189a828aeca7b60',''),(20525,'{26843}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26844}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','225e0c1c96c94a32a84511107b71ea6d',''),(20526,'{26845}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26846}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','b5300fdf6fe8405d84fdd7a8821ac504',''),(20527,'{26847}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26848}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','e208be80d815435ea6fc35df960bd2f6',''),(20528,'{26849}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26850}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','7153cf7699df438d8d04e5d3163e37b3',''),(20529,'{26851}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26852}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','30adf35ae2764123a80f64e81c11c9dd',''),(20530,'{26853} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','35142b5bd9064d63a661b07b24381564',''),(20531,'{26854} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ddd0efc2e01e4b6ca2948a5d3973dcd5',''),(20532,'{26855} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','90f360f3394d49a19413dcbf0dc0eab6',''),(20533,'{26856} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','f753e8c0d5fe43779fc3c427fcb087dd',''),(20534,'{26857}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0ec46a410f97442fb9308a0922d43648',''),(20535,'{31732}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31733}-{31734})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31735}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','1f6e2a2bdf04499eabb18118fdbfcc4f',''),(20536,'{31736}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31737}-{31738})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31739}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','7fe3563d08ad470f909545c146b1b2c1',''),(20547,'{26889}<>{26890} and length({26891})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','2a00f0a84a274bf98254d1bbb9f1ad93',''),(20548,'{26892}<>{26893} and length({26894})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','519f97f0275f4e9caf7e320e932ee911',''),(20549,'{26895}<>{26896} and length({26897})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','97933a27c0eb4e0cb67fceb9877641d9',''),(20550,'{26898}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','72662034829d4d008f19cd3231b18bd1',''),(20551,'{26899}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c5c743eec5fd430385a3ab3f1b9ccd61',''),(20552,'{26900}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26901}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','788f637f7c28499cb0b8227bbcfddbf6',''),(20553,'{26902}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26903}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','f2952ccdadf0474a85e626eeae67ee8f',''),(20554,'{26904}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26905}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','fbd7daacdcde41fa9395a3dba62c7365',''),(20555,'{26906}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26907}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','732a162ce6aa424e8660882cccfaf40b',''),(20556,'{26908}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26909}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','64daf72dc6824976bbc28c0e76b9318c',''),(20557,'{26910}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26911}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','3a6e8742e68d4e4cb77931acec6202f2',''),(20558,'{26912} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','89422cbc4e294e5392352b3daa42a27b',''),(20559,'{26913} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','1f5dbc7e06fb4a48a516f21095ad95eb',''),(20560,'{26914} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','13229b29783c42119d9242d4e2d795ef',''),(20561,'{26915} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','acdd956a5d49476a86ced8d9ac561979',''),(20562,'{26916}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a6f2bfc1407f4b96ac51aa7ec69b234d',''),(20563,'{31740}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31741}-{31742})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31743}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','d48fafd1402e4774a5e7c2d854e3ebbc',''),(20564,'{31744}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31745}-{31746})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31747}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','802aa708fd8e42fdaa61d1aa3394c58b',''),(20575,'{26948}<>{26949} and length({26950})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','fe286c10b77a4178b53136d088c09977',''),(20576,'{26951}<>{26952} and length({26953})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','b84f0bcdae4a4ef7887877b7f054ca3c',''),(20577,'{26954}<>{26955} and length({26956})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','8d2847030c154c958ae3cc72841f7b73',''),(20578,'{26957}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4e4df5360a9b40b5a4f6d1aa706d23d7',''),(20579,'{26958}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4d838f76e7d14c73a89a6a8cab585e77',''),(20580,'{26959}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26960}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','70bcead0c721429ea2140eb12e32e5a9',''),(20581,'{26961}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26962}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','04687ea5280b4448844b17afa9c655c6',''),(20582,'{26963}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26964}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','62fd1bbcbe9e4db7851ad08b75d9f54f',''),(20583,'{26965}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26966}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','9d035691d2344fa0bd64e6724828626e',''),(20584,'{26967}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{26968}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','869eb891b56e4d499586a9e40fdb5f95',''),(20585,'{26969}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{26970}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','5d18aa2f47154e999e9077f3cb06e3ed',''),(20586,'{26971} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bca448bbec634737adbc1935bfb96395',''),(20587,'{26972} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','d7894ea315a24f42936eb44d85f60a8a',''),(20588,'{26973} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','fb73c03756734684b5b1078de2d485ab',''),(20589,'{26974} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c0bc438b1ee248109e3471d6af153c14',''),(20590,'{26975}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','91ea1c2de293413c9b24932282a673ee',''),(20591,'{31748}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31749}-{31750})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31751}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','21b45f8f32344ed9a2323ef940fdb564',''),(20592,'{31752}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31753}-{31754})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31755}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','13db9f1c26754199937d4447976591ce',''),(20603,'{27007}<>{27008} and length({27009})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','2deae9223199442b895df43cb2b0904c',''),(20604,'{27010}<>{27011} and length({27012})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','ae8533bd4fa84d8f8e8969498d5530ed',''),(20605,'{27013}<>{27014} and length({27015})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','b0b935a8197e4188962b7d859d2b412b',''),(20606,'{27016}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f9d7f4390619408eb5a20baa5e4ebbfe',''),(20607,'{27017}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','acf19a5a27674b8db8b4913257534506',''),(20608,'{27018}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27019}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','93deb16896994ddf8509332b293f078a',''),(20609,'{27020}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27021}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','bbe383abfe5a48ad8a0b4a9c943cfd11',''),(20610,'{27022}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27023}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','915d9a838c0945d0bad74aa2fb79da79',''),(20611,'{27024}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27025}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','9b3e19c885d34128b47b87d071d959f1',''),(20612,'{27026}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27027}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','921ad5dc74e44e139a523ef11dd2743e',''),(20613,'{27028}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27029}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','0501798bf83342c5ac1f960649163a58',''),(20614,'{27030} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','c5709dbe38eb40e1ae8ae0cc564543b4',''),(20615,'{27031} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','96e644aa6f2c4399853ab05a7ada5afa',''),(20616,'{27032} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d4e38db917ca40da8ebd3da22442696e',''),(20617,'{27033} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','5837ae05e1694017ad026d215af06683',''),(20618,'{27034}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','722a78d3b55d4a66be1dba0b705704d8',''),(20619,'{31756}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31757}-{31758})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31759}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','3e812901cab94bbc9d5f15e8b70da4a0',''),(20620,'{31760}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31761}-{31762})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31763}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','bee86ff10a084f76b4b266aa5e20df22',''),(20631,'{27066}<>{27067} and length({27068})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','9f571e3e7d7b4025a62cb4d61684a63f',''),(20632,'{27069}<>{27070} and length({27071})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','6c56d13df5a84f8c81e3b11b5979fe2f',''),(20633,'{27072}<>{27073} and length({27074})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','cbc5e573f7ff4d4186782e18abb18323',''),(20634,'{27075}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','41dc7494d2d04e2e8fd9f31d744cdf94',''),(20635,'{27076}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','40af64475bf54290b74ac2ed6f3183f2',''),(20636,'{27077}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27078}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','a1116b45b6e341dabc44b226c4741f97',''),(20637,'{27079}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27080}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','7b61f191e2634044a81981627fb52483',''),(20638,'{27081}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27082}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','c62859952edc45fd8c09a267e6badab9',''),(20639,'{27083}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27084}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','9980a1f6561c4b16935e204dfdf67c65',''),(20640,'{27085}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27086}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','c0be5c2bae7f45e780addd984a3f77c4',''),(20641,'{27087}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27088}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','ee368004b1f24293b8162d78b456a6d0',''),(20642,'{27089} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6b1a507739c940ffb528a41d5af76069',''),(20643,'{27090} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','0b2b0b8cdf964cc48d7ece2be62d115e',''),(20644,'{27091} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','4d271b81500f4513a1408dfa8f0e1e29',''),(20645,'{27092} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','8875480665294938bee208b23d416d34',''),(20646,'{27093}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c529624e4a254ecba9659fc9d43f9df4',''),(20647,'{31764}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31765}-{31766})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31767}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','47a1f1bee8f64507900f48de26bba052',''),(20648,'{31768}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31769}-{31770})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31771}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','419bd5a8f90d4e879be3707a3ad3f551',''),(20659,'{27125}<>{27126} and length({27127})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','9c552d88fc734c2d8b9976831396dcc4',''),(20660,'{27128}<>{27129} and length({27130})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','59393bfb9a2b4fe9acf09735ab9b6dd7',''),(20661,'{27131}<>{27132} and length({27133})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','d517281567044119bdc82dccb20c9724',''),(20662,'{27134}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ce1f7003b6dc4ca6a0e435c06aba6e1a',''),(20663,'{27135}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','8ab046f6fb47499ebe6d34ad8ce20f59',''),(20664,'{27136}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27137}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','75e1b534632a42d08535fc863c280536',''),(20665,'{27138}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27139}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','117c3a91044a4d6da15b235017caf99f',''),(20666,'{27140}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27141}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','b20c703b353f444bb6d77d45433108fe',''),(20667,'{27142}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27143}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','f63a8665f1bb4fce930c8e6d68ca9bc4',''),(20668,'{27144}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27145}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','61ef8b6e39fa4dfa9ad0398acab924a9',''),(20669,'{27146}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27147}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','92626f1037574adf9e25e175b6e5781b',''),(20670,'{27148} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','3a29ebeb278444eb9940c6840b2e0a4e',''),(20671,'{27149} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','4c0dfdccda7a4a0a9b889b4a643d02e4',''),(20672,'{27150} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','858fcf334125405aaed104a0f50d4097',''),(20673,'{27151} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','d6e6ca097afd4c1fa12e1c67f9a575db',''),(20674,'{27152}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f0f924ded1064d70964e5669eb1e3a62',''),(20675,'{31772}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31773}-{31774})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31775}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','e665c0343ae140d08b8ae96b6c28f4d4',''),(20676,'{31776}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31777}-{31778})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31779}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','c685347700044a78a38e4e892d3dfec4',''),(20687,'{27184}<>{27185} and length({27186})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','84b149555c7a4ba896260eef821e65e4',''),(20688,'{27187}<>{27188} and length({27189})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','5444e9d45fd5482b9913f33a0e46afac',''),(20689,'{27190}<>{27191} and length({27192})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','7297756962334a7e92bec8fba24cc346',''),(20690,'{27193}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3f856c135f7a4124b606a368ddbaea70',''),(20691,'{27194}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','660252e504e242f39a8116ef95593088',''),(20692,'{27195}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27196}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','8c905104ec08406bbb9eef074386d533',''),(20693,'{27197}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27198}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','b78a65cb7a81475390b652bb998bad77',''),(20694,'{27199}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27200}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','d86c54c62fcd456aa879a23aa539fdc7',''),(20695,'{27201}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27202}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','0ce7d965b0ce4e259dad9ef1c964cf75',''),(20696,'{27203}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27204}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','e6e1ac1371c8479a8c9b30513f10c57b',''),(20697,'{27205}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27206}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','5f04a5beb30c4fc48c3553f41631ec8e',''),(20698,'{27207} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9e5b175a657040acb532677e5e3efd4e',''),(20699,'{27208} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','3e5f0494aec9433ab7d7637fab2095f2',''),(20700,'{27209} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','52cfc831296f4ebbb9bb9d66a164c129',''),(20701,'{27210} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','22da96573bbd471785f694bbdbca7cd1',''),(20702,'{27211}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c5d53608ecb34d68a3d1ffbe5807dabb',''),(20703,'{31780}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31781}-{31782})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31783}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','388504f73df94d21bea32bdbda0fadb7',''),(20704,'{31784}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31785}-{31786})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31787}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','ef0ef8ddead24672adf8e65eed13f60f',''),(20715,'{27243}<>{27244} and length({27245})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','e0f5e6575df14242a14813cf95f763d2',''),(20716,'{27246}<>{27247} and length({27248})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','09d6eff5d5e24ba9801d29a594913c5e',''),(20717,'{27249}<>{27250} and length({27251})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','2cfe859d44ee4088b3a62f832391091f',''),(20718,'{27252}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f32f4750dd6f469d84560e0a27dad550',''),(20719,'{27253}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','544c2e61e9b0434e962823246974ede8',''),(20720,'{27254}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27255}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','1dc430575d5546c188615191fdc50ae7',''),(20721,'{27256}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27257}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','04ef546dd200411d84f167a5e1ffd8ce',''),(20722,'{27258}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27259}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','f24798b46eea407cb2bd9e38068e68d9',''),(20723,'{27260}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27261}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','81e424e84231418d888ca1a9126c29fa',''),(20724,'{27262}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27263}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','53bc0055eacf4e9d931498e89811e86e',''),(20725,'{27264}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27265}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','9635cda9637b4216adb68675640639c2',''),(20726,'{27266} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','bd8b0cbb30b144bc82b91f508de543e1',''),(20727,'{27267} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','b2c222622bd8405a8f3f8138969e4d00',''),(20728,'{27268} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','3fe7fc4d601143a58ebd8affe7ee78a5',''),(20729,'{27269} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c70991ad8d2b460bb2b4860b16ba45b4',''),(20730,'{27270}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','555d5c8083fe42f09096097e1bb87499',''),(20731,'{31788}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31789}-{31790})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31791}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','728a9e55d14b4b859caf170cc910879e',''),(20732,'{31792}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31793}-{31794})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31795}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','12ffbe36a2e14c139f5d662ea509912d',''),(20743,'{27302}<>{27303} and length({27304})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','0bc8753d55d047cd870eb7bd2db7849c',''),(20744,'{27305}<>{27306} and length({27307})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','4a87af156bc44861bcd76514d60183f5',''),(20745,'{27308}<>{27309} and length({27310})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','b5b061ff649547e6b63bdd9dc545c652',''),(20746,'{27311}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8e0b50b2687a4259ba9b9457c6a2d911',''),(20747,'{27312}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c90699faebaa41ccb0910a08ca56c014',''),(20748,'{27313}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27314}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','216c4b7093ce4b1688c24031c61b9e53',''),(20749,'{27315}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27316}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','2c1aefbb49d84198b9dc5b633cc510cb',''),(20750,'{27317}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27318}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','e56cea52d6d64a62a02856a74e32601b',''),(20751,'{27319}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27320}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','77015cbdfaf8411ea08a78982b15885c',''),(20752,'{27321}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27322}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','c3a882d877f94cf7965984128c314f99',''),(20753,'{27323}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27324}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','9c97fd1e8cb94e53a8f8d1bd15b94dcf',''),(20754,'{27325} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','40ec9ac31c784b6f8de50945dff9f414',''),(20755,'{27326} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e29bb10956c64db1ba0809112449de26',''),(20756,'{27327} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','ae6d45eb89244d67b38408dcaf20424f',''),(20757,'{27328} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','a02267b7d6d4497b98c1c2e465f92796',''),(20758,'{27329}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','58d63b8b9c404a5382b44e25bf091feb',''),(20759,'{31796}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31797}-{31798})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31799}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','a140f5a63cba423c8f59439efd8d501f',''),(20760,'{31800}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31801}-{31802})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31803}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','c3e3d8a9bcac473e8c641f116355ccbb',''),(20771,'{27361}<>{27362} and length({27363})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','5924d076b0724fbcaa2090c786b20068',''),(20772,'{27364}<>{27365} and length({27366})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','5df5c72272694a7f8a698ddda7b662cb',''),(20773,'{27367}<>{27368} and length({27369})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','18fce4771aad421e949e78ec9484a888',''),(20774,'{27370}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','454c77360eb44d6aacf067327d1aecbe',''),(20775,'{27371}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','00f27ff850b046faabdaeeae1b2a2fcd',''),(20776,'{27372}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27373}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','d4d0bf767e7741fc98d9f930ade655f3',''),(20777,'{27374}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27375}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','4299f4f1519a46ed86d4727cefa01c1e',''),(20778,'{27376}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27377}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','3cc5640941bc491e9cc23cc9b467952e',''),(20779,'{27378}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27379}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','420f9002f53646729666658f193c733e',''),(20780,'{27380}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27381}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','af33ef97881a4ab48686aa63676c7a2d',''),(20781,'{27382}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27383}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','8aa51a89c64f4626aa8646f9e1717669',''),(20782,'{27384} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','32cb8289aea54c4099ee36d58dd31b72',''),(20783,'{27385} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','32764a33204e41bfb1c5395a52302c27',''),(20784,'{27386} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','eab70beb20504b1d98be8d7cd82031fa',''),(20785,'{27387} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','c08f7ab1fb374e7db4f4c0525009cd93',''),(20786,'{27388}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','04bd0420c7474d90b10045328c5027a0',''),(20787,'{31804}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31805}-{31806})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31807}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','a4a3e86a03684038ba779bac1041eaec',''),(20788,'{31808}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31809}-{31810})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31811}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','7202bab5700444f58d4eabd9433f0efd',''),(20799,'{27420}<>{27421} and length({27422})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','2349e4eac44548349cc9f7806f8726db',''),(20800,'{27423}<>{27424} and length({27425})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','f43a3aa77c8e4e9f81add08ac624be88',''),(20801,'{27426}<>{27427} and length({27428})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','76d4c429deaf491982b7b1049634550a',''),(20802,'{27429}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfca5a71a1534e199e9c3b867b8c6c3b',''),(20803,'{27430}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1edf137678504b9d8dced37d9a1d3f5a',''),(20804,'{27431}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27432}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','e9ab4a4bc78e47a19409d2bfe4d1d5fa',''),(20805,'{27433}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27434}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','1e81f6308a2748adbed17064d648b566',''),(20806,'{27435}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27436}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','3a679a3d653d42cabed24e238fa01c38',''),(20807,'{27437}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27438}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','88fc1612d1b14108a1d90313fa1cb0e7',''),(20808,'{27439}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27440}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','048ffb5e510746e6b56daec287db6739',''),(20809,'{27441}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27442}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','fcc70d3662ac49499a0f5bb68a13c007',''),(20810,'{27443} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','d9acbd875f514ce8a19638125c096aed',''),(20811,'{27444} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','569c192c940a49f7b180162e4b83be24',''),(20812,'{27445} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7b31d412d15140d7be66d4b9963150de',''),(20813,'{27446} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','7512216ac6e24d5f88a187621d0d7285',''),(20814,'{27447}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bcb6d9302db14ee3a7dd120304b7a5a5',''),(20815,'{31812}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31813}-{31814})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31815}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','c3e8a5f013f34395afeffc5eabbe01ac',''),(20816,'{31816}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31817}-{31818})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31819}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','2199168e964c4bd79ad06de3c1226f1d',''),(20827,'{27479}<>{27480} and length({27481})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','1f05ddb5fc1c4d18a5d9f5755b22a080',''),(20828,'{27482}<>{27483} and length({27484})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','9bc744f5b70748e68b13933b618f9550',''),(20829,'{27485}<>{27486} and length({27487})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','72cedbd4d23948c3941d5b2011f5cdab',''),(20830,'{27488}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','971f8265db9348ce942f4e0adb49bd1a',''),(20831,'{27489}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','636401049a4e46c48e7b89e2b0c8c72b',''),(20832,'{27490}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27491}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','fac1eacc650b485faa1f05207a865ed6',''),(20833,'{27492}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27493}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','c604329ca3374ed5b29339c10070b9de',''),(20834,'{27494}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27495}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','37927a5941e245d9bce883ce155fefdf',''),(20835,'{27496}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27497}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','4f2a304aba6e45c7a0186d8b069be904',''),(20836,'{27498}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27499}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','7ab0db29abff475d908e9db2e86ee16a',''),(20837,'{27500}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27501}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','ae7e34f53a3d407d86484baffad515fe',''),(20838,'{27502} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','a7d31dad39524586ad9cca3c52ab0802',''),(20839,'{27503} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','abae11ffeea140debcd8f32c34f10f31',''),(20840,'{27504} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','f7804db0113d42a49322193872ddc616',''),(20841,'{27505} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','73f6c8071582400b952f945388a181c2',''),(20842,'{27506}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e159cf84958443ec9d148c3e83cf8e41',''),(20843,'{31820}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31821}-{31822})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31823}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','c8c7b25b435e4157a22c8f4d6fce9ea5',''),(20844,'{31824}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31825}-{31826})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31827}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','e63fb086de874cfe86e0d03d2d57f157',''),(20855,'{27538}<>{27539} and length({27540})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','a5f7839a9a0d4272ae0312b8954a9313',''),(20856,'{27541}<>{27542} and length({27543})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','672fcd1d34374373b0992d80d46d885c',''),(20857,'{27544}<>{27545} and length({27546})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','7538c487e4f14cdcb6fc3a6b415ed559',''),(20858,'{27547}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6975f0abf1504caebd3a13193da1bdcc',''),(20859,'{27548}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','f6b89443734b4c79920496ff9244f6d3',''),(20860,'{27549}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27550}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','b9eee5f17d084ba7b6971aaf6165b313',''),(20861,'{27551}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27552}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','64193d2ccc1c4813b8585b5d3d81f962',''),(20862,'{27553}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27554}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','be0ff2612a014f2db296b4066c22cfdd',''),(20863,'{27555}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27556}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','3035592657fe4a6a89fcacbd05f84573',''),(20864,'{27557}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27558}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','5ae663e6743744bba8606334ab17eb60',''),(20865,'{27559}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27560}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','635d0ddc5ba6442bbb51ea451f502662',''),(20866,'{27561} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6eb10d964aaf44bb8849f35f39e6b909',''),(20867,'{27562} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c8c83d70279b461c95f5c8f4deb59d7e',''),(20868,'{27563} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','557d79e0013b4b91a16ce2a0c507256a',''),(20869,'{27564} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','fddeb17ef9dd4876b9ba818d732cbd40',''),(20870,'{27565}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','cc74f3058c1945a59c95d49e3fdbb47b',''),(20871,'{31828}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31829}-{31830})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31831}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','67f66bb09eba4cb2b823fbf96391e0ca',''),(20872,'{31832}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31833}-{31834})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31835}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','f28661579bf04f6eaa1bc06f92f8d8f2',''),(20883,'{27597}<>{27598} and length({27599})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','4a440903276347d9827dcfa3653d496c',''),(20884,'{27600}<>{27601} and length({27602})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','7b48c923659d4569b24692da4037b824',''),(20885,'{27603}<>{27604} and length({27605})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','80b76f59fdfd407ea5c3294736113749',''),(20886,'{27606}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','d55a4746f70a4d539a9fadd9a335794f',''),(20887,'{27607}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e20e628acaae44d58c7f385f98cdb126',''),(20888,'{27608}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27609}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','d009789ee3204089bbd1e60b23fa757f',''),(20889,'{27610}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27611}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','51d2ea964a684bfa85e509e549be251b',''),(20890,'{27612}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27613}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','1cc47452c533402596797c5c6ae8351f',''),(20891,'{27614}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27615}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','49bf5605212f44e18a0a9f0e4afde82b',''),(20892,'{27616}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27617}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','d7d5fa71143e4601b41d24ce85031ed2',''),(20893,'{27618}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27619}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','2478f32c04984bd8a53cb9211953d7c2',''),(20894,'{27620} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','6dcde689dccb4221bffd0c36f000dcf2',''),(20895,'{27621} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','d8d809f110c044bdab269c961b947f0a',''),(20896,'{27622} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','a935e2731aac466bb21fd0e3c092cb7c',''),(20897,'{27623} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2193529f37424dc29976bae9681cfff9',''),(20898,'{27624}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0f33b00af9164264b0d6fc91831a343e',''),(20899,'{31836}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31837}-{31838})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31839}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','ccbd9c9dab504a7bab4f403386e5178f',''),(20900,'{31840}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31841}-{31842})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31843}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','9b4adeaeed41450f839967a3d049b027',''),(20911,'{27656}<>{27657} and length({27658})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','a61fd73d9dea4257bfbfc3d705475ae5',''),(20912,'{27659}<>{27660} and length({27661})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','c31be8015ce640629af6cd3ed09dc617',''),(20913,'{27662}<>{27663} and length({27664})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','991217a368944e34abe41bd465921a47',''),(20914,'{27665}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','5b0479439c444be284cac4c699f64b53',''),(20915,'{27666}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','08f3a59bf7324ff4904737f2c6b94989',''),(20916,'{27667}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27668}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','1c270c25cfdb4b44b35ad7115105dfbc',''),(20917,'{27669}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27670}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','3941319b74e64d8a921714b4748003f1',''),(20918,'{27671}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27672}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','4b669ac2471b442dbfd82e70b0dba586',''),(20919,'{27673}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27674}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','a3bcec91e98349fa9d53cb96aeb377ac',''),(20920,'{27675}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27676}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','9a03df6c9c3141e4845382ea5ae2d609',''),(20921,'{27677}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27678}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','f53807b0daa24b2f9bd3d6ab755008fb',''),(20922,'{27679} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','001e4d76e846438592bd8c7b76025e51',''),(20923,'{27680} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c8adfeee1f4b42b38ba756919d18ffce',''),(20924,'{27681} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','c826e712355c4c40a4699346581c1032',''),(20925,'{27682} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','ab44544163f14c31b2c45fe890b62ea4',''),(20926,'{27683}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7830a4b9c5b24762ab083a24c978cf44',''),(20927,'{31844}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31845}-{31846})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31847}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','7ec2dad6b1de421d800a086ad45e8fdd',''),(20928,'{31848}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31849}-{31850})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31851}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','e91014be808f40ceba0123f0e59e9975',''),(20939,'{27715}<>{27716} and length({27717})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','d6de889ff3dc4c07a57bb5396a25a760',''),(20940,'{27718}<>{27719} and length({27720})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','6c509b4e298e4df7b4e9cecc064dc8eb',''),(20941,'{27721}<>{27722} and length({27723})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','aafa92f02db4429b8ea5c43f1e13ad4e',''),(20942,'{27724}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','570f6f393cf24ee9b0731978bca9d7d7',''),(20943,'{27725}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','745e204551104bbca3a2db75f55f04cc',''),(20944,'{27726}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27727}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','f7f22555f0524fab8addb969f565b12b',''),(20945,'{27728}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27729}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','a291daa1248f4bfca3bdded26cdd3562',''),(20946,'{27730}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27731}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','4952d45ee57747de90b71e7073da13bc',''),(20947,'{27732}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27733}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','d6ae3c415fa842339e6f1085296fdca3',''),(20948,'{27734}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27735}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','3baba3844f1644e29fa20addb4c483e4',''),(20949,'{27736}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27737}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','f81d3388b38845f1921e30332a487335',''),(20950,'{27738} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','77565b5e0dbb4415b5f24ebe91d6e5b9',''),(20951,'{27739} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','271d7342775141cabcebb53ecb7e9a14',''),(20952,'{27740} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','bea4466e83fd4733b269d92657e1107e',''),(20953,'{27741} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','53ef6c7af6114f5e8f76d15aa82d33d8',''),(20954,'{27742}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','67152198cf984ffeb453d6f149aae38f',''),(20955,'{31852}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31853}-{31854})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31855}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','da49d6b3b96c4c32b1439d13a289a2ef',''),(20956,'{31856}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31857}-{31858})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31859}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','dd9a814580fd47be8982b9ca83217070',''),(20967,'{27774}<>{27775} and length({27776})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','81f162170b3f4cf0a5376f43ba8c826d',''),(20968,'{27777}<>{27778} and length({27779})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','ba2f0b5e00a94aff9db6b436a64b91bd',''),(20969,'{27780}<>{27781} and length({27782})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','857cc7715ae243879509d5ba827f0533',''),(20970,'{27783}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','f328399a209d4adaa8fed3dc9577539f',''),(20971,'{27784}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ecb6b125d94643cf80b38078f1d42ad2',''),(20972,'{27785}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27786}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','b7ab6a1e8efd4accaeef15ed26b66308',''),(20973,'{27787}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27788}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','5a24a5c02664439da2ee76753e25ec8a',''),(20974,'{27789}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27790}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','c21ad0f3058d4a57a1dc137576217655',''),(20975,'{27791}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27792}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','de90614e78854f81822379c9b5ffc74e',''),(20976,'{27793}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27794}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','11e619b8b2144751995926ecc71add69',''),(20977,'{27795}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27796}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','931a8a585db94a6eadbaa2cc6ef7c730',''),(20978,'{27797} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','09762405d2114ec79510f7954dcdae86',''),(20979,'{27798} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','3f6e42b8dbcb4cd4b47c067fe5b7d1ea',''),(20980,'{27799} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','e4778ad9d8ee4568b212241439a79e27',''),(20981,'{27800} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','3eb7aa8563c54b72b7193ef83793acc0',''),(20982,'{27801}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c3737199ab5342829ca6fae6d1de74f9',''),(20983,'{31860}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31861}-{31862})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31863}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','b911cb33e9044a599d10c06e5b0f90fb',''),(20984,'{31864}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31865}-{31866})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31867}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','eada2d5bde184483bc0496677aff2c3c',''),(20995,'{27833}<>{27834} and length({27835})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','fe1e4e312e5a4ee48fecb03895b51201',''),(20996,'{27836}<>{27837} and length({27838})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','250374059d8a45f78107f1f5b9bda7b1',''),(20997,'{27839}<>{27840} and length({27841})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','2615116273594f659184fdc9f2612c91',''),(20998,'{27842}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','851e15f5b81a43b3be5d3eda921c9430',''),(20999,'{27843}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','87ea6ae2f5374f68acfbd4d368c8aae8',''),(21000,'{27844}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27845}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','89ccd80168694f6cb7742f79ab2f02ae',''),(21001,'{27846}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27847}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','a27c393597ac4618846b7c9d906167c7',''),(21002,'{27848}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27849}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','648519d0cc5b4795ab917893a71f1872',''),(21003,'{27850}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27851}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','48244ed562b144c192177e64b06d268c',''),(21004,'{27852}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27853}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','1b239ec1f0834b6ebe1ebc974121504b',''),(21005,'{27854}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27855}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','d31b9428aef346d49ec00acd2388f657',''),(21006,'{27856} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','573a668131014af2bc2989edbcdbf8b8',''),(21007,'{27857} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','8b6d36e582d34ed7bdec1aaa406d0939',''),(21008,'{27858} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','7e8ac19ee7aa43d7bc849f5a093e846a',''),(21009,'{27859} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','36404ef697ea49329f0572be3940fbd6',''),(21010,'{27860}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f75775427c074c83a1002b716733aa7f',''),(21011,'{31868}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31869}-{31870})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31871}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','6d5b2060b6c946c7835867727dec0f87',''),(21012,'{31872}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31873}-{31874})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31875}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','e05e7d6b7b6c45f7974f39a258a754f8',''),(21023,'{27892}<>{27893} and length({27894})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','bdc6d6b5a4be4bba95f1635d8cf165d7',''),(21024,'{27895}<>{27896} and length({27897})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','9bcc039b8f1e4b3c84414d0d62d6c52d',''),(21025,'{27898}<>{27899} and length({27900})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','21dd8dc14526470493b31ebddf14574c',''),(21026,'{27901}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','bdd1ff379f214b1896c0e7ee5d6e6e16',''),(21027,'{27902}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ca6c0d5b13a24f6b9e28296818ae1624',''),(21028,'{27903}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27904}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','21775fd4ca0143838ea2c2c7c16c4b75',''),(21029,'{27905}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27906}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','7c75f3db8a8341819bb4455d4a6440e3',''),(21030,'{27907}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27908}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','3247cd9062894b59bb736c3c75bf2f67',''),(21031,'{27909}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27910}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','ce2928b0b45a4e74976c4ebb01f769b6',''),(21032,'{27911}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27912}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','9401397315604181973ac4a5e0c6a5ba',''),(21033,'{27913}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27914}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','466053cdfce44600bf1ff0ced3c4fce4',''),(21034,'{27915} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','9a48a8512ac74bff9c44733842d21693',''),(21035,'{27916} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c5e6899f9dee47d7812366a26e5191d9',''),(21036,'{27917} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','207bea70b82e4a6087f104cb1ec1f8a2',''),(21037,'{27918} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','3b7135afe54a4acfbf5d14510f6b22c1',''),(21038,'{27919}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','de36b7b78e8b4bea936347995a0eaeb1',''),(21039,'{31876}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31877}-{31878})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31879}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','f303b6ce2be34c8ca0f51e5c73e47715',''),(21040,'{31880}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31881}-{31882})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31883}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','cdef153d2e914c12ba3303c938489359',''),(21051,'{27951}<>{27952} and length({27953})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','8fb6d0748d5a4e589e397f0523944bc5',''),(21052,'{27954}<>{27955} and length({27956})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','c76bf7b6d13b49a4916a00709ee7c9ba',''),(21053,'{27957}<>{27958} and length({27959})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','b5cddf34bbe74bb08663b85c83035f57',''),(21054,'{27960}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','4a08a50891814c0d813c39a4615bffac',''),(21055,'{27961}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','4910a9cc5fdf4eefa05e1e0f339828c4',''),(21056,'{27962}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27963}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','0a16b13ef86e4b968690de77d4fdd851',''),(21057,'{27964}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27965}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','26ad73c494494a83a6b7eab785efe3ce',''),(21058,'{27966}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27967}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','19c2754a812c48bd87fd250aac01b97b',''),(21059,'{27968}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27969}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','fada5a58781c4684b70e7aea77a96040',''),(21060,'{27970}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{27971}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','87d04ed8af6040f1b2230244b7ffcc18',''),(21061,'{27972}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{27973}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','e5ca03c450eb4ccfa4dc94de0d6eeaaf',''),(21062,'{27974} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','ef64375fbe9b456d895d5fa75b524bc4',''),(21063,'{27975} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','ccc2b5cabd164f2c94268bd8fbb17299',''),(21064,'{27976} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','07ac669be6d14c878ed3824adbcaa035',''),(21065,'{27977} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e351a08588664f29aab5a784ff3bbc1c',''),(21066,'{27978}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9361f7dd8cba43e4a237678d00eb26b6',''),(21067,'{31884}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31885}-{31886})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31887}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','cd0ef8f6c93340a1aadd0559ef302476',''),(21068,'{31888}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31889}-{31890})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31891}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','0460d9d1f873497ea57430cf067c786e',''),(21079,'{28010}<>{28011} and length({28012})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','0c58b3a529a541c5813e6d374fb1af38',''),(21080,'{28013}<>{28014} and length({28015})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','3a683df3455e4c3b9693f70d7cc2312c',''),(21081,'{28016}<>{28017} and length({28018})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','752e3b231fb9428baa28a7dffd90b2a5',''),(21082,'{28019}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3887f8ec0f8a4eadb45b3d3388fdd3bf',''),(21083,'{28020}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','2d0e7e1624ef40de9a7ba351917ec339',''),(21084,'{28021}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28022}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','3b40b247aeb14a6d833a3c67594938ae',''),(21085,'{28023}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28024}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','cf13c4a9be634dd09d1f14a9774a0009',''),(21086,'{28025}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28026}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','16f478f052aa47328ac6e23e778d353c',''),(21087,'{28027}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28028}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','8b2e3dedb9884c81a8370732a1f3a367',''),(21088,'{28029}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28030}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','c5c22051e035432eba2ad5f77da002c0',''),(21089,'{28031}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28032}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','9b49825517f44a7fa37d2d96abd8848b',''),(21090,'{28033} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1491814409194648a9d98bcb18ac77cc',''),(21091,'{28034} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','e7a5fc01703c4474add6aac174ef5b16',''),(21092,'{28035} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d529f287404945b9a265fefff65768d5',''),(21093,'{28036} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','2f85f97d29774922b6fecc19379726d8',''),(21094,'{28037}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','92cf3f4cf7a64de58347d2e459321f92',''),(21095,'{31892}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31893}-{31894})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31895}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','927bf28b0d7f4409ab7b2de288e59b66',''),(21096,'{31896}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31897}-{31898})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31899}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','ca6639ac0950404da35738314aa3b88e',''),(21107,'{28069}<>{28070} and length({28071})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','86d3bc7830274e24b19f0b7120f9c957',''),(21108,'{28072}<>{28073} and length({28074})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','8964055d1c7445e68b9ba2eb30faf1fc',''),(21109,'{28075}<>{28076} and length({28077})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','ad61f9029ba449aab240fee852d1e49e',''),(21110,'{28078}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','660db85a472349e7878bcdf41faa4689',''),(21111,'{28079}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6fa6e471c9594ea9a65d54a72a7a7b54',''),(21112,'{28080}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28081}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','46615aebb0e2414b9094e5e25c0a6314',''),(21113,'{28082}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28083}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','db07d94668634efca75ab714cc2cf083',''),(21114,'{28084}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28085}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','664ab6cc5ce044af8d6899473ea0a8b1',''),(21115,'{28086}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28087}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','f81db05dfee24aaaa8cc27aca30e7455',''),(21116,'{28088}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28089}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','edab3732eb9a41f4b42da927ee8996a7',''),(21117,'{28090}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28091}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','0ef1463290ce45ab83838acb51e9d5ab',''),(21118,'{28092} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','30101628e09d4c67a1d4d7938b7b5674',''),(21119,'{28093} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','179fb6a3947f4a4bad4d914dfbf2727e',''),(21120,'{28094} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','d92f9fa8a9a648ad817295ba5b26c254',''),(21121,'{28095} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','df1dc76e73904e35850f1b104dca01ea',''),(21122,'{28096}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','fb10d55898f74edbb7a1541481cbde49',''),(21123,'{31900}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31901}-{31902})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31903}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','2ba297940326432dbbc91974ed99d53d',''),(21124,'{31904}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31905}-{31906})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31907}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','e3054ae302bd4c29b81b6f4c58c39021',''),(21135,'{28128}<>{28129} and length({28130})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','4b2840d437844c54aa8328a2af6ab16a',''),(21136,'{28131}<>{28132} and length({28133})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','356423e8d963491c84c0ff910a324db9',''),(21137,'{28134}<>{28135} and length({28136})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','381ec628763d43e8a7f287d4bab024ee',''),(21138,'{28137}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','35b88fa6b15845e78a3a7211fe2ed0af',''),(21139,'{28138}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e40966f36f804bbab518eb0cbc711fca',''),(21140,'{28139}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28140}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','725caccdc4fe495e93e2cfa438f52674',''),(21141,'{28141}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28142}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','ea9e2193843d4a71bd24bead9394685d',''),(21142,'{28143}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28144}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','ac521e5e0c9d416ba0f61563a85a66ff',''),(21143,'{28145}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28146}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','b5a55e90742148ae91fb30394d79a50a',''),(21144,'{28147}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28148}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','f5ccdff135ee46ed81889d2882d54b3a',''),(21145,'{28149}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28150}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','dd21e53afab64548ae180079d705dee5',''),(21146,'{28151} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','1119a5651b6b469199e6cd8484ea000b',''),(21147,'{28152} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','22c7a42c10524dfab69c6e9566a28150',''),(21148,'{28153} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','14f69778aac0476290fd2ddff01693fd',''),(21149,'{28154} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','a6e1255d7904488788f4e5358b4b1a70',''),(21150,'{28155}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d332b384052e4538869186b6c44ae332',''),(21151,'{31908}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31909}-{31910})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31911}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','5f17a45877b44fbab75b614db365db47',''),(21152,'{31912}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31913}-{31914})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31915}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','c5c80f5a24484c05b62d7bb5474f2091',''),(21163,'{28187}<>{28188} and length({28189})>0','Firmware has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','c9b18f3abf444a849606d278d9db0924',''),(21164,'{28190}<>{28191} and length({28192})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','42d7e9c9f03e4b2a8af09b1c54913bba',''),(21165,'{28193}<>{28194} and length({28195})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','4400b69762f948f78365b74569ed54af',''),(21166,'{28196}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','348923e33c3049ea8b27a5d920528300',''),(21167,'{28197}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6c1a7d6fd11541fb93a8e73f8712db83',''),(21168,'{28198}>{$TEMP_CRIT:\"CPU\"}','CPU: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28199}<{$TEMP_CRIT:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above critical threshold: >{$TEMP_CRIT:\"CPU\"}','e51ab41e7ac142afabac3ddbe622fc0b',''),(21169,'{28200}>{$TEMP_WARN:\"CPU\"}','CPU: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28201}<{$TEMP_WARN:\"CPU\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is above warning threshold: >{$TEMP_WARN:\"CPU\"}','8046c8fbb72f4cf3afe0154fc2e41d6d',''),(21170,'{28202}<{$TEMP_CRIT_LOW:\"CPU\"}','CPU: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28203}>{$TEMP_CRIT_LOW:\"CPU\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'CPU: Temperature is too low: <{$TEMP_CRIT_LOW:\"CPU\"}','3a4f8decfaf44650bb4066141e36f42a',''),(21171,'{28204}>{$TEMP_CRIT:\"Device\"}','Device: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28205}<{$TEMP_CRIT:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above critical threshold: >{$TEMP_CRIT:\"Device\"}','db6e52bc27714f51bc61e7cc3c3ebad1',''),(21172,'{28206}>{$TEMP_WARN:\"Device\"}','Device: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28207}<{$TEMP_WARN:\"Device\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is above warning threshold: >{$TEMP_WARN:\"Device\"}','9e1b2270bc144295a7b0edc2ba98c81b',''),(21173,'{28208}<{$TEMP_CRIT_LOW:\"Device\"}','Device: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28209}>{$TEMP_CRIT_LOW:\"Device\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Device: Temperature is too low: <{$TEMP_CRIT_LOW:\"Device\"}','27e033be9fd94be2bbc3969e9cb51ac4',''),(21174,'{28210} < {$LTEMODEM.RSRP.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m)','0161455f62224813a81ed396716437db',''),(21175,'{28211} < {$LTEMODEM.RSRQ.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m)','c54da31a0d9f4219b8f5a4f47e30fb4e',''),(21176,'{28212} < {$LTEMODEM.RSSI.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m)','5e1e679028cf499d80484e1fc11e8ba6',''),(21177,'{28213} < {$LTEMODEM.SINR.MIN.WARN}','Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m)','e1610c79b6704dfc948f77117d928b5d',''),(21178,'{28214}<>\"running-ap\"','Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running','',0,0,2,0,'Access point interface can be not running by different reasons - disabled interface, power off, network link down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0c4ff636a9834ee39a16032fd5cd2048',''),(21179,'{31916}>{$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"} and\r\n(({31917}-{31918})<{$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"} or {31919}<1d)','Disk-{#SNMPINDEX}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"Disk-{#SNMPINDEX}\"}%)','1019a14b0998497daff1707692bc38ac',''),(21180,'{31920}>{$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"} and\r\n(({31921}-{31922})<{$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"} or {31923}<1d)','Disk-{#SNMPINDEX}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"Disk-{#SNMPINDEX}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"Disk-{#SNMPINDEX}\"}%)','1c431594950944138617449b126c5d92',''),(21181,'length({28223})>0','Velocloud: There are errors in aggregate script item','',0,0,2,0,'There are errors in aggregate script item.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a0623655a2fa4f60962ad560b8bb5a13',''),(21182,'{28224}=1','Velocloud: Failed to fetch aggregate data','',0,0,3,0,'Zabbix has not received data for items for the last 30 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Velocloud: Failed to fetch aggregate data (or no data for 30m)','5a95d9c614e74c2c8b6181fc8dff2226',''),(21183,'{28225}<>{28226} and length({28227})>0','Velocloud: Orchestrator build has been changed','',0,0,1,0,'Velocloud Orchestrator build has been changed.','',NULL,0,0,0,0,'',0,'',1,'',0,'','37c16b3cbd8b4680ab85a1fea819611f',''),(21184,'{28228}<>{28229} and length({28230})>0','Velocloud: Orchestrator version has been changed','',0,0,1,0,'Velocloud Orchestrator version has been changed.','',NULL,0,0,0,0,'',0,'',1,'',0,'','a1d8e4d61a804c8fb11b33f590f0885c',''),(21185,'{28231}<>{28232}','Velocloud: System properties have changed','',0,0,1,0,'System properties have changed.','',NULL,0,0,0,0,'',0,'',1,'',0,'','58541dfe798843fa822276e84a32b919',''),(21186,'{28233}=3','Edge [{#NAME}]: HA state is in \"FAILED\" state','',0,0,2,0,'High availability state is \"FAILED\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','075d35e3ed074b9daf01864b111945c7',''),(21187,'{28234}=0','Edge [{#NAME}]: Edge is in \"OFFLINE\" state','',0,0,2,0,'Edge state is \"OFFLINE\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','962d2d0c6f124424b2e5a7aca89d293f',''),(21188,'{28235}>0 and {28235}<600','Edge [{#NAME}]: Edge has been restarted','',0,0,2,0,'Edge was restarted.','',NULL,0,0,2,0,'',0,'',0,'',0,'Edge [{#NAME}]: Edge has been restarted (uptime < 10m)','156d96052fd54606828cc53484794bb2',''),(21189,'{28236}<>{28237}','Gateway [{#NAME}]: The number of connected edges is changed','',0,0,2,0,'The number of connected edges is changed.','',NULL,0,0,2,0,'',0,'',1,'',0,'','f0d7bdb2ac3540258ab6a276b43a382c',''),(21190,'{28238}>0 and {28238}<600','Gateway [{#NAME}]: Gateway has been restarted','',0,0,2,0,'Gateway was restarted.','',NULL,0,0,2,0,'',0,'',0,'',0,'Gateway [{#NAME}]: Gateway has been restarted (uptime < 10m)','e51ea2da27284067bd3ec8fa4faffdde',''),(21191,'{28239}<>1','Link [{#NAME}]:[{#IP}]: Link state is not \"STABLE\"','',0,0,2,0,'Link state is not \"STABLE\".','',NULL,0,0,2,0,'',0,'',0,'',0,'','abceaab09aea4cb482dc4b554502429b',''),(21194,'{28242}<>{28243}','Cluster node [{#NODE.NAME}]: Status changed','',0,0,1,0,'The state of the node has changed. Confirm to close.','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','8d48978fb5724d19a950aa6eb8a3dd75',''),(21196,'{28246}<>{28247}','Cluster node [{#NODE.NAME}]: Status changed','',0,0,1,0,'The state of the node has changed. Confirm to close.','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','5d68b55175924cb4adde600a019496c4',''),(21197,'{28253}>75','Zabbix server: Utilization of ODBC poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28253}<65',0,'',0,'',0,'Zabbix server: Utilization of ODBC poller processes over 75%','f536b921e9444c6eb0ac805ab9302af9',''),(21199,'{28255}>75','Remote Zabbix server: Utilization of ODBC poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28255}<65',0,'',0,'',0,'Remote Zabbix server: Utilization of ODBC poller processes over 75%','eadd70080005430c8b11666d7e93a095',''),(21200,'{28406}>{$ZABBIX.PROXY.UTIL.MAX:\"ODBC poller\"}','Remote Zabbix proxy: Utilization of ODBC poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28406}<{$ZABBIX.PROXY.UTIL.MIN:\"ODBC poller\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of ODBC poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"ODBC poller\"}%','7f83ff01200c4862aa22057b079da6f8',''),(21201,'{28375}>{$ZABBIX.PROXY.UTIL.MAX:\"ODBC poller\"}','Zabbix proxy: Utilization of ODBC poller processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28375}<{$ZABBIX.PROXY.UTIL.MIN:\"ODBC poller\"}',0,'',0,'',0,'Zabbix proxy: Utilization of ODBC poller processes over {$ZABBIX.PROXY.UTIL.MAX:\"ODBC poller\"}%','3177430235ac4eeaa23b8c39987989cc',''),(21202,'{28259}>{$KUBE.API.HTTP.SERVER.ERROR}','Kubernetes API: Too many server errors','',0,0,2,0,'\"Kubernetes API server is experiencing high error rate (with 5xx HTTP code).','',NULL,0,0,0,0,'',0,'',0,'',0,'Kubernetes API: Too many server errors (over {$KUBE.API.HTTP.SERVER.ERROR} for 5m)','0e1ef1630b5d4cb98270564f324f5382',''),(21205,'{28262}>{$KUBE.API.HTTP.CLIENT.ERROR}','Kubernetes API: Too many client errors','',0,0,2,0,'\"Kubernetes API client is experiencing high error rate (with 5xx HTTP code).','',NULL,0,0,0,0,'',0,'',0,'',0,'Kubernetes API: Too many client errors (over {$KUBE.API.HTTP.CLIENT.ERROR} for 5m)','4c79888da91448738092c86e5f427a6a',''),(21206,'{28263}>{$KUBE.CONTROLLER.HTTP.CLIENT.ERROR}','Kubernetes Controller Manager: Too many HTTP client errors','',0,0,2,0,'\"Kubernetes Controller manager is experiencing high error rate (with 5xx HTTP code).','',NULL,0,0,0,0,'',0,'',0,'',0,'Kubernetes Controller Manager: Too many HTTP client errors (over {$KUBE.CONTROLLER.HTTP.CLIENT.ERROR} for 5m)','13c32daebddd454bb5908a9a27c3a76f',''),(21207,'length({28264})>0','Kubernetes: Failed to get nodes','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','827016cf41254f38aa58ff99e22f9e6f',''),(21208,'{28265} / {28266} > 0.9','Node [{#NAME}] Limits: Total CPU limits are too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Limits: Total CPU limits are too high (more than 90% of allocatable)','f64efc13be2c4c53a48de40504cf064d',''),(21209,'{28267} / {28268} > 1','Node [{#NAME}] Limits: Total CPU limits are too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Limits: Total CPU limits are too high (more than 100% of allocatable)','4c035b6c85574141832691e7ad264f40',''),(21210,'{28269} / {28270} > 0.9','Node [{#NAME}] Limits: Total memory limits are too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Limits: Total memory limits are too high (more than 90% of allocatable)','5d0d803cfbbe42edb7d32d731ae5f741',''),(21211,'{28271} / {28272} > 1','Node [{#NAME}] Limits: Total memory limits are too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'Limits: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Limits: Total memory limits are too high (more than 100% of allocatable)','4fa15174194c476899a96fcf233a5aea',''),(21212,'{28273} / {28274} > 0.5','Node [{#NAME}] Requests: Total CPU requests are too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Requests: Total CPU requests are too high (more than 50% of allocatable)','256cf876a4674dd09123bb388c1a9d32',''),(21213,'{28275} / {28276} > 0.8','Node [{#NAME}] Requests: Total CPU requests are too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Requests: Total CPU requests are too high (more than 80% of allocatable)','7fa6901f620c4b388d550c669089dde2',''),(21214,'{28277} / {28278} > 0.5','Node [{#NAME}] Requests: Total memory requests are too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Requests: Total memory requests are too high (more than 50% of allocatable)','d73aa5aa2a9b424789181033630bb432',''),(21215,'{28279} / {28280} > 0.8','Node [{#NAME}] Requests: Total memory requests are too high','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'Requests: {ITEM.LASTVALUE1}, Allocatable: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Requests: Total memory requests are too high (more than 80% of allocatable)','ad9a65c4786e48b9a4b77c1214fa2e1f',''),(21216,'{28281}/ {28282} > 0.9','Node [{#NAME}] Used: Kubelet too many pods','',0,0,2,0,'Kubelet is running at capacity.','',NULL,0,0,2,0,'',0,'',0,'Used: {ITEM.LASTVALUE1}, Capacity: {ITEM.LASTVALUE2}',0,'Node [{#NAME}] Used: Kubelet too many pods (more than 95% of capacity)','0126dfbfa9d949499e0f7689b714c855',''),(21217,'{28283}=1','Node [{#NAME}] Conditions: Pressure exists on the disk size','',0,0,2,0,'True - pressure exists on the disk size - that is, if the disk capacity is low; otherwise False.','',NULL,0,0,2,0,'',0,'',0,'',0,'Node [{#NAME}] Conditions: Pressure exists on the disk size (state: {ITEM.VALUE})','4e283f3f104a4239a0b1c24f0313ab95',''),(21218,'{28284}=1','Node [{#NAME}] Conditions: Pressure exists on the node memory','',0,0,2,0,'True - pressure exists on the node memory - that is, if the node memory is low; otherwise False','',NULL,0,0,2,0,'',0,'',0,'',0,'Node [{#NAME}] Conditions: Pressure exists on the node memory (state: {ITEM.VALUE})','f580b6534bf54281912515874ca46cdf',''),(21219,'{28285}=1','Node [{#NAME}] Conditions: Network is not correctly configured','',0,0,2,0,'True - the network for the node is not correctly configured, otherwise False','',NULL,0,0,2,0,'',0,'',0,'',0,'Node [{#NAME}] Conditions: Network is not correctly configured (state: {ITEM.VALUE})','0da0db08077a42668efcc886c155bf4e',''),(21220,'{28286}=1','Node [{#NAME}] Conditions: Pressure exists on the processes','',0,0,2,0,'True - pressure exists on the processes - that is, if there are too many processes on the node; otherwise False','',NULL,0,0,2,0,'',0,'',0,'',0,'Node [{#NAME}] Conditions: Pressure exists on the processes (state: {ITEM.VALUE})','5f6a7fce910e4cf79e9fc778519ad00f',''),(21221,'{28287}<>1','Node [{#NAME}] Conditions: Is not in Ready state','',0,0,2,0,'False - if the node is not healthy and is not accepting pods.\r\nUnknown - if the node controller has not heard from the node in the last node-monitor-grace-period (default is 40 seconds).','',NULL,0,0,2,0,'',0,'',0,'',0,'Node [{#NAME}] Conditions: Is not in Ready state (state: {ITEM.VALUE})','02f873ab69fb4df49578cf5e1cbad1b8',''),(21222,'{28288}<10','Node [{#NAME}]: Has been restarted','',0,0,1,0,'Uptime is less than 10 minutes','',NULL,0,0,2,0,'',0,'',0,'',0,'Node [{#NAME}]: Has been restarted (uptime < 10m)','b322a8c9a4404da49c434e78822d6ac5',''),(21223,'({28289}-{28290})>2','Node [{#NODE}] Pod [{#POD}]: Pod is crash looping','',0,0,2,0,'Pos restarts more than 2 times in the last 3 minutes.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8f1808cd67614cda959ec70e92a59235',''),(21224,'{28291}>=9','Node [{#NODE}] Pod [{#POD}] Status: Kubernetes Pod not healthy','',0,0,4,0,'Pod has been in a non-ready state for longer than 10 minutes.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e565d243bef84007b09addb22ea3d759',''),(21225,'{28292}>{$KUBE.SCHEDULER.HTTP.CLIENT.ERROR}','Kubernetes Scheduler: Too many REST Client errors','',0,0,2,0,'\"Kubernetes Scheduler REST Client requests is experiencing high error rate (with 5xx HTTP code).','',NULL,0,0,0,0,'',0,'',0,'',0,'Kubernetes Scheduler: Too many REST Client errors (over {$KUBE.SCHEDULER.HTTP.CLIENT.ERROR} for 5m)','ea92474a61214053b2cd20775817010e',''),(21226,'{28293}>{$KUBE.SCHEDULER.ERROR}','Kubernetes Scheduler: Too many schedule attempts with errors','',0,0,2,0,'\"Number of attempts to schedule pods with \'error\' result is too high. \'error\' means an internal scheduler problem.\"','',NULL,0,0,0,0,'',0,'',0,'',0,'Kubernetes Scheduler: Too many schedule attempts with errors (over {$KUBE.SCHEDULER.ERROR} for 5m)','9116327bc14f4f189ca867b43187f6bd',''),(21227,'{28294}>{$KUBE.SCHEDULER.UNSCHEDULABLE}','Kubernetes Scheduler: Too many unschedulable pods','',0,0,2,0,'\"Number of attempts to schedule pods with \'unschedulable\' result is too high. \'unschedulable\' means a pod could not be scheduled.\"','',NULL,0,0,0,0,'',0,'',0,'',0,'Kubernetes Scheduler: Too many unschedulable pods (over {$KUBE.SCHEDULER.UNSCHEDULABLE} for 5m)','16efba4ba322416fa2b8986273b83904',''),(21228,'{31035}<2 and length({31036})>0','Kubernetes: Component [{#NAME}] is unhealthy','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','58828a692aa2418ba98c6d66a23f1506',''),(21229,'({28296}-{28297})<>0','Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Deployment replicas mismatch','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','aa9f828467d84252aecc00dd342b5661',''),(21230,'{31037}<2 and length({31038})>0','Kubernetes: Livez [{#NAME}] is unhealthy','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','9fcb23d29ac3481a8613515cc2cccfcf',''),(21231,'{28299}>0 or {28300}>0 or {28301}>0','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Pod is not healthy','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','5bf79dee7b974064b5848a7dcf6428c2',''),(21232,'({31039}-{31040})>2','Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Pod is crash looping','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','4656457043d04f4a9b829222ad071d22',''),(21233,'{28304}>0','Kubernetes: NS [{#NAMESPACE}] PVC [{#NAME}]: PVC is pending','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','75a1b90ae3f14a52a0f5d7d073332042',''),(21234,'{31041}<2 and length({31042})>0','Kubernetes: Readyz [{#NAME}] is unhealthy','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','1a88c2cf94d3444c9e5320776b323ce6',''),(21235,'({28306}-{28307})<>0','Kubernetes: Namespace [{#NAMESPACE}] RS [{#NAME}]: ReplicasSet mismatch','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','8046757dbd3b459c9cd9f7bd369dd416',''),(21236,'({28308}-{28309})<>0','Kubernetes: Namespace [{#NAMESPACE}] RS [{#NAME}]: Statefulset replicas mismatch','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','469d6933f5494ca48a212cdc364058e0',''),(21237,'({28310} / {28311})<>1','Kubernetes: Namespace [{#NAMESPACE}] StatefulSet [{#NAME}]: StatfulSet is down','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','c29a27fe5a0345c8af9e0d4e99b22dcb',''),(21241,'{28315}=0','PFSense: DHCP server is not running','',0,0,3,0,'Please check DHCP server settings https://docs.netgate.com/pfsense/en/latest/services/dhcp/index.html','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','80fc3672290d45d49c250ccc120f3606',''),(21242,'{28316}=0','PFSense: DNS server is not running','',0,0,3,0,'Please check DNS server settings https://docs.netgate.com/pfsense/en/latest/services/dns/index.html','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','67b862f6aa3a4833af44d513aad517b5',''),(21243,'{28317}=0','PFSense: Web server is not running','',0,0,3,0,'Please check nginx service status.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9f7a47055ee64edcbb70b047a35f7774',''),(21244,'{28318}<>1','PFSense: Packet filter is not running','',0,0,4,0,'Please check PF status.','',NULL,0,0,0,0,'',0,'',0,'Current running state: {ITEM.LASTVALUE1}',0,'','4a7ff4c437054ce88c6c069ffcb6434f',''),(21245,'{28319}>{$SOURCE.TRACKING.TABLE.UTIL.MAX}','PFSense: Source tracking table usage is high','',0,0,2,0,'Please check the number of sticky connections https://docs.netgate.com/pfsense/en/latest/monitoring/status/firewall-states-sources.html','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'PFSense: Source tracking table usage more than {$SOURCE.TRACKING.TABLE.UTIL.MAX}.','7983ee28646d4327ae0814c88c7b213f',''),(21246,'{28320}>{$STATE.TABLE.UTIL.MAX}','PFSense: State table usage is high','',0,0,2,0,'Please check the number of connections https://docs.netgate.com/pfsense/en/latest/config/advanced-firewall-nat.html#config-advanced-firewall-maxstates','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'PFSense: State table usage more than {$STATE.TABLE.UTIL.MAX}.','ce0e7dec597e4148abd9b699c787decd',''),(21250,'{28326}=0','PFSense: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d06bdb79a48c438798286a89680eb3e1',''),(21255,'{28336}<0 and {28337}>0\r\nand (\r\n{28338}=6 or\r\n{28338}=7 or\r\n{28338}=11 or\r\n{28338}=62 or\r\n{28338}=69 or\r\n{28338}=117\r\n)\r\nand\r\n({28339}<>2)','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28336}>0 and {28340}>0) or\r\n({28339}=2)',0,'',0,'Current reported speed: {ITEM.LASTVALUE1}',0,'','eb3090605ba14407a91736ac9768d65a',''),(21256,'({28341}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28342}) and\r\n{28342}>0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28341}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28342}',0,'',0,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','90c99a9c4ce44b3ca929c4b3200286fb',''),(21257,'({28343}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28344}) and\r\n{28344}>0','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28343}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28344}',0,'',0,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','6be52ce31bab4250b421de1bfe84263c',''),(21258,'{28345}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,1,'{28346}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors in: {ITEM.LASTVALUE1}',0,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','f5cbc2b7d91f4fa5aab8eb96d8a0550f',''),(21259,'{28347}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','PFSense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,1,'{28348}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors out: {ITEM.LASTVALUE2}',0,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','5fb5f37490d04dbc8e0553c6aa881547',''),(21260,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({28349}=2)','PFSense: Interface [{#IFNAME}({#IFALIAS})]: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d4392162d62541aeb148718ddd7f5d57',''),(21265,'{28389}<10m','Zabbix proxy: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix proxy: has been restarted (uptime < 10m)','b505a16c50f64adb8c5528907925f798',''),(21266,'{28390}<>{28391} and length({28392})>0','Zabbix proxy: Version has changed','',0,0,1,0,'Zabbix proxy version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix proxy: Version has changed (new version: {ITEM.VALUE})','bf7eef07faf14fc4b2603ae952f001da',''),(21267,'{28418}>{$ZABBIX.PROXY.UTIL.MAX:\"preprocessing manager\"}','Remote Zabbix proxy: Utilization of preprocessing manager processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28418}<{$ZABBIX.PROXY.UTIL.MIN:\"preprocessing manager\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of preprocessing manager processes over {$ZABBIX.PROXY.UTIL.MAX:\"preprocessing manager\"}%','4c681b0775b54fd79e4aba669e219967',''),(21268,'{28419}>{$ZABBIX.PROXY.UTIL.MAX:\"preprocessing worker\"}','Remote Zabbix proxy: Utilization of preprocessing worker processes is high','',0,0,3,0,'','',NULL,0,0,0,1,'{28419}<{$ZABBIX.PROXY.UTIL.MIN:\"preprocessing worker\"}',0,'',0,'',0,'Remote Zabbix proxy: Utilization of preprocessing worker processes over {$ZABBIX.PROXY.UTIL.MAX:\"preprocessing worker\"}%','f1c97c56e2d04cabaaa4c9b41e2bbad3',''),(21269,'{28420}<10m','Remote Zabbix proxy: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Remote Zabbix proxy: has been restarted (uptime < 10m)','8940efd3c68b4ded80ea1e89d55dfa7c',''),(21270,'{28423}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','085d6f785f1e46faa447d6921036d01d',''),(21271,'{28424}>{$ICMP_LOSS_WARN} and {28424}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','d1bd868814ba4ace9b5034ac4e303259',''),(21272,'{28425}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','ecd74ec29b484a499414293bf671160b',''),(21531,'{28684}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','d1b02854c6cd473090735eabfbd4d908',''),(21534,'{31129}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31130}-{31131})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31132}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','8283f8b8663f444aad85633010615c15',''),(21535,'{31133}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31134}-{31135})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31136}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','2d9c475d718b4c2ba14b129f66014f75',''),(21536,'{28695}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','730a76bd19a24a55be24f72175251046',''),(21543,'{28714}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','72f8bcb4dfde4d338c31c83b72a36129',''),(21544,'{28715}>{$ICMP_LOSS_WARN} and {28715}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','0c0a32b98df84c07acbe51caabc8c012',''),(21545,'{28716}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','06fd317938784236b3e17b2b4080925d',''),(21546,'{28717}<>{28718} and length({28719})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','5f11cacfd4a94cf696897b3f3fa80601',''),(21547,'({32144}>0 and {32144}<10m) or ({32144}=0 and {32145}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','3b6324116e5940b5aaea72adca4dbbf6',''),(21548,'{28721}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','60187191b268499784a70ef1dfe058ae',''),(21549,'{28722}<0 and {28723}>0\r\nand (\r\n{28724}=6 or\r\n{28724}=7 or\r\n{28724}=11 or\r\n{28724}=62 or\r\n{28724}=69 or\r\n{28724}=117\r\n)\r\nand\r\n({28725}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28722}>0 and {28726}>0) or\r\n({28725}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','a9467162f7434b8e97cb6645b6a060ae',''),(21550,'({28727}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28728} or\r\n{28729}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28728}) and\r\n{28728}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28727}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28728} and\r\n{28729}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28728}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','27e0b7fcaf664410962dc768e0ef7267',''),(21551,'{28730}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {28731}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{28732}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {28733}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','ee8dccabf5df45b48a503320131b152e',''),(21552,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {28734}=2 and ({28735}<>{28736})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{28734}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','a4bcc6d80080415698d8fd323ff5d484',''),(21553,'{28737}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','e5d6ba20229044b98ee8cb33e00de8b0',''),(21554,'{28738}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','736dc5694fc741e6bcb96e2ba27a0898',''),(21555,'{28739}>{$ICMP_LOSS_WARN} and {28739}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','dfa6f280b6304bfdb0063be94f7a4c5e',''),(21556,'{28740}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','18aeec70f72d43ceb4994501fb36d434',''),(21557,'{28741}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','6737f0672c244e048509358d220874a6',''),(21558,'{28742}<>{28743} and length({28744})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','362d455c9d9944cea7c37d58bcabc0a0',''),(21559,'({32146}>0 and {32146}<10m) or ({32146}=0 and {32147}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','e3907a8b6aba4512a24a677ed31e4362',''),(21560,'{28746}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','53501c72392a4bbc8fa0f5ed086d2591',''),(21561,'{28747}<0 and {28748}>0\r\nand (\r\n{28749}=6 or\r\n{28749}=7 or\r\n{28749}=11 or\r\n{28749}=62 or\r\n{28749}=69 or\r\n{28749}=117\r\n)\r\nand\r\n({28750}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28747}>0 and {28751}>0) or\r\n({28750}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','9715da7cb2404bf2a3cb3e80d4bb3bde',''),(21562,'({28752}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28753} or\r\n{28754}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28753}) and\r\n{28753}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28752}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28753} and\r\n{28754}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28753}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','32c978fecfcb42738cd179c19bcd2360',''),(21563,'{28755}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {28756}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{28757}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {28758}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','47d5a599bc574ccea4baeebc3aad34f5',''),(21564,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {28759}=2 and ({28760}<>{28761})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{28759}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','11c5b8073b3540e4b0698a8db9e3c33e',''),(21565,'{28762}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','c1bddd15c68243aeb69dc47f57eb6631',''),(21566,'{31253}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31254}-{31255})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31256}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','f4bfac8d247144b3bebac7245248553e',''),(21567,'{31257}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31258}-{31259})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31260}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','9912ab9619ce46b88afe358ab50a2c4f',''),(21568,'{28771}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','6b9010e0ad4e4549ac91a91d4bb3983a',''),(21569,'{28772}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','0c73f37e7ffc4acf83a7edeb84398aba',''),(21570,'{28773}>{$ICMP_LOSS_WARN} and {28773}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','eea2256c85764c12b1da83dd8d1a9fe3',''),(21571,'{28774}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','17df26093a5f42fdb19715371c85f733',''),(21572,'{28775}<>{28776} and length({28777})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','0e624c73fdca490e809ffe9235cda610',''),(21573,'({32148}>0 and {32148}<10m) or ({32148}=0 and {32149}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','42bb10d788484b92ac7290e171ee28a2',''),(21574,'{28779}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1c67a764531b48f1a931a9a928a8708d',''),(21575,'{28780}<0 and {28781}>0\r\nand (\r\n{28782}=6 or\r\n{28782}=7 or\r\n{28782}=11 or\r\n{28782}=62 or\r\n{28782}=69 or\r\n{28782}=117\r\n)\r\nand\r\n({28783}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28780}>0 and {28784}>0) or\r\n({28783}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','5a98171af6b342ab97e0c6c9de0bd589',''),(21576,'({28785}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28786} or\r\n{28787}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28786}) and\r\n{28786}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28785}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28786} and\r\n{28787}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28786}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','a16b52f43a224a11861813be5a11697c',''),(21577,'{28788}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {28789}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{28790}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {28791}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','9f42c5a5ed1341c1a26263642e4dabe4',''),(21578,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {28792}=2 and ({28793}<>{28794})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{28792}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','e5391912a6b84c1bb41832e88df4fb96',''),(21579,'{28795}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','3e93707bfbed4541a90548f64b2dfc18',''),(21580,'{28796}>{$ICMP_LOSS_WARN} and {28796}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','3f3500c666bb47208115b6ca43fc8458',''),(21581,'{28797}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','e1bcb2ad662f4e4fb0ff67f0f1fc39e5',''),(21582,'{28798}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','bf59d38703f44bcb9497dcbda684b071',''),(21583,'{28799}<>{28800} and length({28801})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','ee0c67c575cb4b01bc3733d719baac4f',''),(21584,'({32150}>0 and {32150}<10m) or ({32150}=0 and {32151}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','99208318a05445518bebae305dd53d34',''),(21585,'{28803}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','07bba62d70fa4e7b81f82fc44036ce6e',''),(21586,'{28804}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fb3168f6539c4a55b5aab3efbcad117d',''),(21587,'{28805}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','06ed32e60b9d4fb387116b5bb9c1700a',''),(21588,'{28806}>{$ICMP_LOSS_WARN} and {28806}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','305f5a75aed34094a1721653ba6cafda',''),(21589,'{28807}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','6e7e8f250fbb47778405daeea7a2b852',''),(21590,'{28808}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','c390ed19b59a45b29f80cb95ee6e635a',''),(21591,'{28809}<>{28810} and length({28811})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','1e455a8b19994e9a9f9147d4c3abfa59',''),(21592,'({32152}>0 and {32152}<10m) or ({32152}=0 and {32153}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','0fd4a268d6d34a2d925a97babe365b65',''),(21593,'{28813}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','18623226ce15406488bc99f075cf2590',''),(21594,'{28814}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a4bb03ba3e4645fdb7ecab56ddde776f',''),(21595,'{28815}<0 and {28816}>0\r\nand (\r\n{28817}=6 or\r\n{28817}=7 or\r\n{28817}=11 or\r\n{28817}=62 or\r\n{28817}=69 or\r\n{28817}=117\r\n)\r\nand\r\n({28818}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28815}>0 and {28819}>0) or\r\n({28818}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','e5f54206b19f4f589229c7137365351c',''),(21596,'({28820}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28821} or\r\n{28822}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28821}) and\r\n{28821}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28820}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28821} and\r\n{28822}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28821}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','093696611acd4d75b00e83ce5b11df35',''),(21597,'{28823}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {28824}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{28825}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {28826}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','5337b53e473248719eb502428a4bcc38',''),(21598,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {28827}=2 and ({28828}<>{28829})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{28827}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','3455100ce855445ab3806379fbdc0bbf',''),(21599,'{28830}<0 and {28831}>0\r\nand (\r\n{28832}=6 or\r\n{28832}=7 or\r\n{28832}=11 or\r\n{28832}=62 or\r\n{28832}=69 or\r\n{28832}=117\r\n)\r\nand\r\n({28833}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28830}>0 and {28834}>0) or\r\n({28833}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','8a83aadcd4474f8d99a4712c2f49e737',''),(21600,'({28835}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28836} or\r\n{28837}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28836}) and\r\n{28836}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28835}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28836} and\r\n{28837}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28836}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','a1ec6d8bc0644db9be849d79e9f24ea1',''),(21601,'{28838}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {28839}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{28840}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {28841}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','acba5651b6dd4ed29166698a4faed7f8',''),(21602,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {28842}=2 and ({28843}<>{28844})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{28842}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','4c175f17331942ae8342b0abf43f8fe2',''),(21603,'{28845}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','fd317d3e8d3d45bf97322b8578f30c04',''),(21604,'{28846}>{$ICMP_LOSS_WARN} and {28846}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','3576c96601ef40abbeedbde11768141a',''),(21605,'{28847}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','2941d30058b14d52bd9a723889c8be26',''),(21606,'{28848}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','74773fc279864e7daf89cffe9cb2067c',''),(21607,'{28849}<>{28850} and length({28851})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','d53c0d22a67544cf8a2fcd2c8de4d4eb',''),(21608,'{28852}<>{28853} and length({28854})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','33b42b1aa448408fa3fb5aadf7375cf8',''),(21609,'{28855}<>{28856} and length({28857})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','abe57415ff574b878a2ce2a318be86ee',''),(21610,'({32164}>0 and {32164}<10m) or ({32164}=0 and {32165}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','f278b8b4eb784107a6d8d3e8437e8a66',''),(21611,'{28859}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','86d8603903504287b07a25530c8eda2b',''),(21612,'{28860}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','77e52d690bc043e389ad8d705dbb86b9',''),(21613,'{28861}>{$ICMP_LOSS_WARN} and {28861}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','62b3c0a2654f4372a1bad40a0fd2898d',''),(21614,'{28862}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','1ba34b5e344147d5b27431906037bc04',''),(21615,'{28863}<>{28864} and length({28865})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','7d1460eaf7ad46fd8a1b5df3c20051ba',''),(21616,'{28866}<>{28867} and length({28868})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','2105744d4efd4a239c5b6ab615746a40',''),(21617,'{28869}<>{28870} and length({28871})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','2d97173405594074bfe2cc6f3d0cae70',''),(21618,'({32166}>0 and {32166}<10m) or ({32166}=0 and {32167}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','b98092ddf87247ff91710e2f310dbfb9',''),(21619,'{28873}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','df7c9ed5d3164e73a792f82ecad6ba13',''),(21620,'{28874}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','f6fae61d08644d5fa3929f526aee34e4',''),(21621,'{28875}>{$ICMP_LOSS_WARN} and {28875}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','5c7eae9701be4661a34bbcdb99c094fe',''),(21622,'{28876}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','9aebe4a1cfa34c5d92178abc8a6ce06e',''),(21623,'{28877}<>{28878} and length({28879})>0','Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','78723249679b4a288861f4ad8621fd77',''),(21624,'{28880}<>{28881} and length({28882})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','3e09d5d308e449a4974393650b33e64d',''),(21625,'{28883}<>{28884} and length({28885})>0','Operating system description has changed','',0,0,1,0,'Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'','df85813bb6af4accab8d5191cd452329',''),(21626,'({32168}>0 and {32168}<10m) or ({32168}=0 and {32169}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','806f54999d064eb68a3f46a0d84ee4df',''),(21627,'{28887}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','778749b260bb45c3a926d6bb49c07257',''),(21628,'{28888}<>{28889} and length({28890})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','e8c328ad70a146219a8ae62f101cfc00',''),(21629,'{28891}=1 or {28892}=1','{#SENSOR_INFO}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ddd7015dd3204514beea29edc45c3cd4',''),(21630,'{28893}=1 or {28894}=1','{#SENSOR_INFO}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4eb7ea3405d74740a12095a07d91d48f',''),(21631,'{28895}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','8793ba7767cc415a80a6a206aaf01f11',''),(21632,'{28896}=1 or {28897}=1','{#SENSOR_INFO}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fc4b6f155d3646c3bb8b27d35c18604b',''),(21633,'{28898}=1 or {28899}=1','{#SENSOR_INFO}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','58e9514d75f84c989b052cfd76ceed4a',''),(21634,'{28900}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}\r\nor\r\n{28901}={$TEMP_CRIT_STATUS}\r\nor\r\n{28901}={$TEMP_DISASTER_STATUS}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28902}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','82fa9473dc7d49d4a3a230ef6238cd2c',''),(21635,'{28903}>{$TEMP_WARN:\"{#SNMPVALUE}\"}\r\nor\r\n{28904}={$TEMP_WARN_STATUS}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28905}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','a0199088767f43c0990f5ac8793267b1',''),(21636,'{28906}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28907}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','716dee103c9f4e9da5f83d6cc338617d',''),(21637,'{28908}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','89b292f6748f49fa8b0f23f5378944b2',''),(21638,'{28909}<>{28910} and length({28911})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','e5477e6803974060ba3ce8a131d97d40',''),(21639,'{28912}=1 or {28913}=1','{#SENSOR_INFO}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e64b0790509c4a21b7ead959fa1b7951',''),(21640,'{28914}=1 or {28915}=1','{#SENSOR_INFO}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','33207a0c65e14a5d9355690c8d9d54e2',''),(21641,'{28916}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ee300a1f9f644bdbb545bd65d59d4837',''),(21642,'{28917}<0 and {28918}>0\r\nand (\r\n{28919}=6 or\r\n{28919}=7 or\r\n{28919}=11 or\r\n{28919}=62 or\r\n{28919}=69 or\r\n{28919}=117\r\n)\r\nand\r\n({28920}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28917}>0 and {28921}>0) or\r\n({28920}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','3783d41e790f4d1e9ebb7340d82edc1f',''),(21643,'({28922}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28923} or\r\n{28924}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28923}) and\r\n{28923}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28922}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28923} and\r\n{28924}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28923}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','17a07d8b87c04874bfbf12009e1da65f',''),(21644,'{28925}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {28926}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{28927}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {28928}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','0c1c6f8fc17849a68a12813389da6373',''),(21645,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {28929}=2 and ({28930}<>{28931})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{28929}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','6bf13b6cac1b438bbfe384a746646597',''),(21646,'{28932}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','251a80d2f6824e33b8edfca94e0f335d',''),(21647,'{28933}=1 or {28934}=1','{#SENSOR_INFO}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3068fc8f0b0749d4b76d97d7f500e36d',''),(21648,'{28935}=1 or {28936}=1','{#SENSOR_INFO}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','194444afb5d143a0a0734120e26066e4',''),(21649,'{28937}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}\r\nor\r\n{28938}={$TEMP_CRIT_STATUS}\r\nor\r\n{28938}={$TEMP_DISASTER_STATUS}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28939}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','95f562a5b2fb4e17b091eaed07c77d4a',''),(21650,'{28940}>{$TEMP_WARN:\"{#SNMPVALUE}\"}\r\nor\r\n{28941}={$TEMP_WARN_STATUS}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28942}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','5809893fb23a452ebad327c595322619',''),(21651,'{28943}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28944}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','64888770ef6a44089593e78d4d2c528d',''),(21652,'{28945}>{$CPU.UTIL.CRIT}','{#SNMPVALUE}: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b964834d4f6549c7ae0f0c0c2646dfbc',''),(21653,'{28946}<>{28947} and length({28948})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','75ee6ab1f0c84946a4f4d6e87007ec25',''),(21654,'{28949}=1 or {28950}=1','{#SENSOR_INFO}: Fan is in critical state','',0,0,3,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','907502bbdeee45bbbfb84d43c2dc4f20',''),(21655,'{28951}=1 or {28952}=1','{#SENSOR_INFO}: Fan is in warning state','',0,0,2,0,'Please check the fan unit','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4b2a4eb4cb2a43758048cc05d63f37a4',''),(21656,'{28953}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','0f8d70ef5e704483a49d7b635e74dfc6',''),(21657,'{28954}<0 and {28955}>0\r\nand (\r\n{28956}=6 or\r\n{28956}=7 or\r\n{28956}=11 or\r\n{28956}=62 or\r\n{28956}=69 or\r\n{28956}=117\r\n)\r\nand\r\n({28957}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28954}>0 and {28958}>0) or\r\n({28957}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','60809b6c94d74e34b5f29525d77c75b5',''),(21658,'({28959}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28960} or\r\n{28961}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28960}) and\r\n{28960}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28959}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28960} and\r\n{28961}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28960}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','21d475be7fa24ba2b946e4ec31371df5',''),(21659,'{28962}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {28963}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{28964}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {28965}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','5a2bc4c9bf344948a52ce256daa1258e',''),(21660,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {28966}=2 and ({28967}<>{28968})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{28966}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','c99f0efcc30749e79cce0efe2fdd574f',''),(21661,'{28969}=1 or {28970}=1','{#SENSOR_INFO}: Power supply is in critical state','',0,0,3,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7c5269ac98e847f28da8d3d97e52a28e',''),(21662,'{28971}=1 or {28972}=1','{#SENSOR_INFO}: Power supply is in warning state','',0,0,2,0,'Please check the power supply unit for errors','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','616059e289694181aea6a076ecb093c1',''),(21663,'{28973}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}\r\nor\r\n{28974}={$TEMP_CRIT_STATUS}\r\nor\r\n{28974}={$TEMP_DISASTER_STATUS}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28975}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}','f138f708723a4ca49b21cb992798da7f',''),(21664,'{28976}>{$TEMP_WARN:\"{#SNMPVALUE}\"}\r\nor\r\n{28977}={$TEMP_WARN_STATUS}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses temperature sensor values as well as temperature sensor status if available','',NULL,0,0,2,1,'{28978}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}\"}','281f7afca6ed4d3bb866430ec89e862e',''),(21665,'{28979}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{28980}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}+3',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','67fad9e835f9466ab368bbdad6544e7e',''),(21666,'{28981}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','f186488b337f4b1b8971992e8118d9cc',''),(21667,'{28982}>{$ICMP_LOSS_WARN} and {28982}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','46798adec54c47a38cb599773767a2a7',''),(21668,'{28983}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','04828676081147b4bfad0ad03385986e',''),(21669,'{28984}<>{28985} and length({28986})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','2dc35c5813b042fd96f2ebc53f565799',''),(21670,'({32170}>0 and {32170}<10m) or ({32170}=0 and {32171}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','4246a064d33f428c8441491402ae8090',''),(21671,'{28988}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','da99689aa1394d17af5008e5678915bc',''),(21672,'{28989}<0 and {28990}>0\r\nand (\r\n{28991}=6 or\r\n{28991}=7 or\r\n{28991}=11 or\r\n{28991}=62 or\r\n{28991}=69 or\r\n{28991}=117\r\n)\r\nand\r\n({28992}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({28989}>0 and {28993}>0) or\r\n({28992}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','f4903edf173f470482174ee9937cbb32',''),(21673,'({28994}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28995} or\r\n{28996}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{28995}) and\r\n{28995}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{28994}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28995} and\r\n{28996}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{28995}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','e85a287c2e0e48e19cb43bf74d3f3535',''),(21674,'{28997}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {28998}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{28999}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29000}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','00d2988bdd084719ba781562920d20fa',''),(21675,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29001}=2 and ({29002}<>{29003})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29001}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b7b55335f42b4ace8434588bc70f7e60',''),(21676,'{29004}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','edc143c44b2d465cac94c4cf0fb588a6',''),(21677,'{29005}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a568e0a3c0074e6dbad92890067976f3',''),(21678,'{29006}>{$ICMP_LOSS_WARN} and {29006}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','12dea4dbaa3c4ef1a53456090ae3eb0e',''),(21679,'{29007}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','88f2c517c1ba4f7881491a4b2b7f7ad0',''),(21680,'{29008}<>{29009} and length({29010})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','0c7a629e028e489c89647bf3ca51850e',''),(21681,'({32172}>0 and {32172}<10m) or ({32172}=0 and {32173}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','6b200163bfcd4899a82bcf98aa026aa2',''),(21682,'{29012}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','dc5b0dda2d684665a5444e39db5e2257',''),(21683,'{29013}<0 and {29014}>0\r\nand (\r\n{29015}=6 or\r\n{29015}=7 or\r\n{29015}=11 or\r\n{29015}=62 or\r\n{29015}=69 or\r\n{29015}=117\r\n)\r\nand\r\n({29016}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29013}>0 and {29017}>0) or\r\n({29016}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','04d35a5ff5d34caf91f354b76677f78e',''),(21684,'({29018}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29019} or\r\n{29020}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29019}) and\r\n{29019}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29018}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29019} and\r\n{29020}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29019}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','76191d56356c4f389e3b7ca182ac28b2',''),(21685,'{29021}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29022}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29023}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29024}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','d9f6f23364c54fd1984fe049a4fc16e4',''),(21686,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29025}=2 and ({29026}<>{29027})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29025}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','8d5d2b10f5c541d9858b124ca3ea23aa',''),(21687,'{29028}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','5d134da7ad044ab591e1b96e1dca1641',''),(21688,'{29029}>{$ICMP_LOSS_WARN} and {29029}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','9c48d97b5d4a4668ad382e1d0d9c8e87',''),(21689,'{29030}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','3959884457a7420a9a9007c550d9b886',''),(21690,'{29031}<>{29032} and length({29033})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','91e1a9f579c64954a89b6efbf6b523dd',''),(21691,'({32174}>0 and {32174}<10m) or ({32174}=0 and {32175}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','7a51877b860a479da9bc9f02ee36e01f',''),(21692,'{29035}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2b56c7cfef454441863d2f7cc01a330f',''),(21693,'{29036}<0 and {29037}>0\r\nand (\r\n{29038}=6 or\r\n{29038}=7 or\r\n{29038}=11 or\r\n{29038}=62 or\r\n{29038}=69 or\r\n{29038}=117\r\n)\r\nand\r\n({29039}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29036}>0 and {29040}>0) or\r\n({29039}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','e645a0cf5e4f47a5af03f0108070d4e4',''),(21694,'({29041}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29042} or\r\n{29043}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29042}) and\r\n{29042}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29041}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29042} and\r\n{29043}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29042}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','8afaa3fc79404673880795d7d7dbabd8',''),(21695,'{29044}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29045}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29046}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29047}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','28ae5085f4ab432ea281658f1439ada1',''),(21696,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29048}=2 and ({29049}<>{29050})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29048}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','6a8f2b5cd5ec4b8a9e5d35f551a756e0',''),(21697,'{29051}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','d68607dce04f429ab8cd7e8adb5b60f1',''),(21698,'{29052}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','445766fc99c1480eac4d3d403c3ede2b',''),(21699,'{29053}>{$ICMP_LOSS_WARN} and {29053}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','fb0abe322fd644b4bb3c1255d564bb47',''),(21700,'{29054}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','d29defd9360c489a892821989eeda10c',''),(21701,'{29055}<>{29056} and length({29057})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','2923c342e8474e3ea3d7411c104a6988',''),(21702,'({32176}>0 and {32176}<10m) or ({32176}=0 and {32177}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','bb967f81aaad4a00ae7916ea80574ae0',''),(21703,'{29059}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ecc42656a3d845ee8ad42d0fe45319c2',''),(21704,'{29060}<0 and {29061}>0\r\nand (\r\n{29062}=6 or\r\n{29062}=7 or\r\n{29062}=11 or\r\n{29062}=62 or\r\n{29062}=69 or\r\n{29062}=117\r\n)\r\nand\r\n({29063}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29060}>0 and {29064}>0) or\r\n({29063}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','eb704d12b7ef450a85a805392adb2e6b',''),(21705,'({29065}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29066} or\r\n{29067}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29066}) and\r\n{29066}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29065}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29066} and\r\n{29067}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29066}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','f61f3c59c1aa488d9ef19a67d46fb5e8',''),(21706,'{29068}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29069}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29070}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29071}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','ccf92f29e2564c0bbef6baf6daf93d86',''),(21707,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29072}=2 and ({29073}<>{29074})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29072}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','706148cec9f24e81a96f44484d3829d3',''),(21708,'{29075}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','f82c0234ebbd4f2686ce97642f7bbcf8',''),(21709,'{29076}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d08cae0e7fa54dfea41449f0adabe05d',''),(21710,'{29077}>{$ICMP_LOSS_WARN} and {29077}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','d70eb18878114ae69e5f5f95f4b898cc',''),(21711,'{29078}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','09bcfc7a9e3d45d99d37b56a404df610',''),(21712,'{29079}<>{29080} and length({29081})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','5f11afa80f534add85dd03e06466fbc9',''),(21713,'({32178}>0 and {32178}<10m) or ({32178}=0 and {32179}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','536fafc0bb664fcb8b4c8acc18fe5c29',''),(21714,'{29083}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d534ea9f1ad34633bdd361f20733b749',''),(21715,'{29084}<0 and {29085}>0\r\nand (\r\n{29086}=6 or\r\n{29086}=7 or\r\n{29086}=11 or\r\n{29086}=62 or\r\n{29086}=69 or\r\n{29086}=117\r\n)\r\nand\r\n({29087}<>2)','Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29084}>0 and {29088}>0) or\r\n({29087}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','f06a612448bc4cc2b0b5641708e9153a',''),(21716,'({29089}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29090} or\r\n{29091}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29090}) and\r\n{29090}>0','Interface {#IFDESCR}: High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29089}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29090} and\r\n{29091}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29090}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','e0b02506b47145a8bde6a19890a2e32b',''),(21717,'{29092}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29093}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFDESCR}: High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29094}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29095}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFDESCR}: High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','1a2e2ea2ecf047a68168bdcceb8d1e39',''),(21718,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29096}=2 and ({29097}<>{29098})','Interface {#IFDESCR}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29096}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','9b5fdc0da9fa49918b3986d1eee02cfc',''),(21719,'{29099}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','58acb95392e845bdb2a7064af0228208',''),(21720,'{29100}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','1bd6a4748e29498e99ccd3b23d83cdf7',''),(21721,'{29101}>{$ICMP_LOSS_WARN} and {29101}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','d41edaea369d40d2944af72a3ee76850',''),(21722,'{29102}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','2698115b6f014e8cbdb11c2d5eeb8f08',''),(21723,'{29103}<>{29104} and length({29105})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','cf1d0aa58a194904902899dbba814514',''),(21724,'({32180}>0 and {32180}<10m) or ({32180}=0 and {32181}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','c1372deba2b148f4ac8be6493f0b9868',''),(21725,'{29107}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bc6e9c399c3d4d43aaeb5a1b03deb7d4',''),(21726,'{29108}<0 and {29109}>0\r\nand (\r\n{29110}=6 or\r\n{29110}=7 or\r\n{29110}=11 or\r\n{29110}=62 or\r\n{29110}=69 or\r\n{29110}=117\r\n)\r\nand\r\n({29111}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29108}>0 and {29112}>0) or\r\n({29111}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','b672a06043664dafa8f69d7d530a8723',''),(21727,'({29113}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29114} or\r\n{29115}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29114}) and\r\n{29114}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29113}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29114} and\r\n{29115}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29114}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','98c74ed2d41941218802f4c472331f46',''),(21728,'{29116}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29117}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29118}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29119}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','d7d8ad2b63ac41e6b84852c312c2a8d9',''),(21729,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29120}=2 and ({29121}<>{29122})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29120}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','d0a5ea31836946f28abe357440ebdbea',''),(21730,'{29123}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','0ff624a6250b431498e4747678149e4b',''),(21731,'{29124}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','8fb33a256deb49a096b287493285e300',''),(21732,'{29125}>{$ICMP_LOSS_WARN} and {29125}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','589e13a6ab084dd4b7d1456f7707f44d',''),(21733,'{29126}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','75bdd8a0cd664815aa3e4fa54d4f0b97',''),(21734,'{29127}<>{29128} and length({29129})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','63f6f85bfed94821a8339c46544dde0e',''),(21735,'({32182}>0 and {32182}<10m) or ({32182}=0 and {32183}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','1395e02bc63e48daa779b8b685e91868',''),(21736,'{29131}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d64df6c48ce44bbcafcdd60a3102b41c',''),(21737,'{29132}<0 and {29133}>0\r\nand (\r\n{29134}=6 or\r\n{29134}=7 or\r\n{29134}=11 or\r\n{29134}=62 or\r\n{29134}=69 or\r\n{29134}=117\r\n)\r\nand\r\n({29135}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29132}>0 and {29136}>0) or\r\n({29135}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','97e6d8236ec04a7a91269819c89b2622',''),(21738,'({29137}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29138} or\r\n{29139}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29138}) and\r\n{29138}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29137}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29138} and\r\n{29139}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29138}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','0f14cdc1b43a4325ba256645573a0905',''),(21739,'{29140}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29141}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29142}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29143}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','61797acc8cb642038b1875a198d0a740',''),(21740,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29144}=2 and ({29145}<>{29146})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29144}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','8f16d1db51ce4dceb0ed8753b74e8b7f',''),(21741,'{29147}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','1b117ed66a0c4b098606d1179e21f3f0',''),(21742,'{29148}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','49df55106af2439eb79e66caa2717ec9',''),(21743,'{29149}>{$ICMP_LOSS_WARN} and {29149}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','b7ca2b5273be4f50b5c20b422a534868',''),(21744,'{29150}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','c322fda29bab4f99a0ea204814390551',''),(21745,'{29151}<>{29152} and length({29153})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','740f78d69b20405da79525365fdc29fe',''),(21746,'({32184}>0 and {32184}<10m) or ({32184}=0 and {32185}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','c8c41677f4ba463b90cea501e9112483',''),(21747,'{29155}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','cefe56d564434018b6a31c196cc7eb55',''),(21748,'{29156}<0 and {29157}>0\r\nand (\r\n{29158}=6 or\r\n{29158}=7 or\r\n{29158}=11 or\r\n{29158}=62 or\r\n{29158}=69 or\r\n{29158}=117\r\n)\r\nand\r\n({29159}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29156}>0 and {29160}>0) or\r\n({29159}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','675512801cb5498887b8411c5afd5f0c',''),(21749,'({29161}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29162} or\r\n{29163}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29162}) and\r\n{29162}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29161}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29162} and\r\n{29163}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29162}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','9ebcd822aa6a4fb493c74c4d4759510b',''),(21750,'{29164}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29165}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29166}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29167}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','609c079cc7fd486fb4c938acd1c8b47f',''),(21751,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29168}=2 and ({29169}<>{29170})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29168}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b67a4949e886409b89537338f657570e',''),(21752,'{29171}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','5f275f483fca402ba8f9aa485398d85b',''),(21753,'{29172}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a3a6c95c0a32405d81b1bc7690f1bd1f',''),(21754,'{29173}>{$ICMP_LOSS_WARN} and {29173}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','9c78f78339724840b7ab6db4c62f5aa0',''),(21755,'{29174}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','3c5e0b2660764386ac162ed5d2778a56',''),(21756,'{29175}<>{29176} and length({29177})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','cfcabcb7d9ca4fd59ed79775bcf059bb',''),(21757,'({32186}>0 and {32186}<10m) or ({32186}=0 and {32187}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','20166f9c8d5448a494b6b578471df8cc',''),(21758,'{29179}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ccbd4c4da58f4b72a82371c2f3eaf4e1',''),(21759,'{29180}<0 and {29181}>0\r\nand (\r\n{29182}=6 or\r\n{29182}=7 or\r\n{29182}=11 or\r\n{29182}=62 or\r\n{29182}=69 or\r\n{29182}=117\r\n)\r\nand\r\n({29183}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29180}>0 and {29184}>0) or\r\n({29183}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','ead4b546caa5429197d566010e3a4a43',''),(21760,'({29185}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29186} or\r\n{29187}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29186}) and\r\n{29186}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29185}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29186} and\r\n{29187}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29186}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','9d5d70c272a641c0ae63aca365cdb103',''),(21761,'{29188}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29189}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29190}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29191}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','fba9e43d9fcb43fb9cf5128f1287ac7c',''),(21762,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29192}=2 and ({29193}<>{29194})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29192}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','18cef8eb4ade4e15bd04ad476e95a185',''),(21763,'{29195}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d90e80fd900246dcab90447ee2a6a7a1',''),(21764,'{29196}>{$ICMP_LOSS_WARN} and {29196}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','d3911ede372e4eb3b89b30e8e340a716',''),(21765,'{29197}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','751d9855903f4f00b674b511fe992121',''),(21766,'{29198}<>{29199} and length({29200})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','97157acd882944e29d6fb9fa1a2d9506',''),(21767,'({32188}>0 and {32188}<10m) or ({32188}=0 and {32189}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','23e25e580543411ab8ffc2a4c1ca3c54',''),(21768,'{29202}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','417527b3749c4a1c891d761c0978fb2e',''),(21769,'{29203}<0 and {29204}>0\r\nand (\r\n{29205}=6 or\r\n{29205}=7 or\r\n{29205}=11 or\r\n{29205}=62 or\r\n{29205}=69 or\r\n{29205}=117\r\n)\r\nand\r\n({29206}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29203}>0 and {29207}>0) or\r\n({29206}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','faabf122af7e4cca8fdc6e57060b2e69',''),(21770,'({29208}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29209} or\r\n{29210}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29209}) and\r\n{29209}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29208}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29209} and\r\n{29210}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29209}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','f937622c6f7540579a60328398430f00',''),(21771,'{29211}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29212}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29213}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29214}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','5731e4345a544b45b6a70a71284b878d',''),(21772,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29215}=2 and ({29216}<>{29217})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29215}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','c993121dca984691bd2cdf0d41c318b4',''),(21773,'{29218}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','a2f686bf06cc4e0a8aa24675abd5d557',''),(21774,'{29219}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','feca40f53ed54c84afbb83d2650bbab6',''),(21775,'{29220}>{$ICMP_LOSS_WARN} and {29220}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','bca3c4bf4f89480e9c6ccfaaed0039bf',''),(21776,'{29221}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','b78ca1d148624deb95177f56eb738338',''),(21777,'{29222}<>{29223} and length({29224})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','203415c1da0d4e36b1e52904c8f77ad7',''),(21778,'({32192}>0 and {32192}<10m) or ({32192}=0 and {32193}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','7cb3423e736d435b87a21687c09debf0',''),(21779,'{29226}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c48e5ab4112d46898f219f4e9d2e4bae',''),(21780,'{29227}<0 and {29228}>0\r\nand (\r\n{29229}=6 or\r\n{29229}=7 or\r\n{29229}=11 or\r\n{29229}=62 or\r\n{29229}=69 or\r\n{29229}=117\r\n)\r\nand\r\n({29230}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29227}>0 and {29231}>0) or\r\n({29230}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','0ec14ed9e07441bc94331081b1eefea7',''),(21781,'({29232}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29233} or\r\n{29234}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29233}) and\r\n{29233}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29232}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29233} and\r\n{29234}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29233}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','6446f31cc81540c4967afe496edcc01b',''),(21782,'{29235}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29236}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29237}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29238}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','9a38ec2a71ac47e3afe4c7b65ee22b9f',''),(21783,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29239}=2 and ({29240}<>{29241})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29239}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','7310ec80c5ce4bd9a8d193ca10ffc636',''),(21784,'{29242}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','5021ba3d848e4c0d80c9644ab70b313b',''),(21785,'{29243}>{$ICMP_LOSS_WARN} and {29243}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','b4c65c535f9841d98da1d32a9aaed7b8',''),(21786,'{29244}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','493e740c3b3a48c3a308492d67ea11f8',''),(21787,'{29245}<>{29246} and length({29247})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','cada2ef5e9b14392885a05f9d50186d8',''),(21788,'({32194}>0 and {32194}<10m) or ({32194}=0 and {32195}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','354a68e77ee043a684ab8be18628ffca',''),(21789,'{29249}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b19e8ce655fb48e389a384a78826d5d6',''),(21790,'{29250}<0 and {29251}>0\r\nand (\r\n{29252}=6 or\r\n{29252}=7 or\r\n{29252}=11 or\r\n{29252}=62 or\r\n{29252}=69 or\r\n{29252}=117\r\n)\r\nand\r\n({29253}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29250}>0 and {29254}>0) or\r\n({29253}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','597cab58269142b2bcf893e72baa9a0f',''),(21791,'({29255}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29256} or\r\n{29257}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29256}) and\r\n{29256}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29255}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29256} and\r\n{29257}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29256}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','ce9c951bfca14de29b0d0379c3da3b38',''),(21792,'{29258}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29259}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29260}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29261}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','25d69f21627e49aab9fde89e3c1f8078',''),(21793,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29262}=2 and ({29263}<>{29264})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29262}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','013ab2e8443a4380b29960f1eb748ff1',''),(21794,'{29265}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','fe75c4f4867942638e3d39face2aea7f',''),(21795,'{29266}>{$ICMP_LOSS_WARN} and {29266}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','ebb9113e215a4ab999b5faf043c3cdd3',''),(21796,'{29267}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','ac9ee5f5347945eaa12f8551ca54ec9b',''),(21797,'{29268}<>{29269} and length({29270})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','796b3caf5996404c93c8266fe7c5aa89',''),(21798,'({32196}>0 and {32196}<10m) or ({32196}=0 and {32197}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','99da791be26943ec806a2c690f74a66d',''),(21799,'{29272}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a6a88593c32342deb0b72e998872a3c9',''),(21800,'{29273}<0 and {29274}>0\r\nand (\r\n{29275}=6 or\r\n{29275}=7 or\r\n{29275}=11 or\r\n{29275}=62 or\r\n{29275}=69 or\r\n{29275}=117\r\n)\r\nand\r\n({29276}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29273}>0 and {29277}>0) or\r\n({29276}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','6cf5856a75df4190a0ba25ec62347194',''),(21801,'({29278}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29279} or\r\n{29280}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29279}) and\r\n{29279}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29278}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29279} and\r\n{29280}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29279}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','7538c8f6c90f441cae42f030a34365f9',''),(21802,'{29281}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29282}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29283}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29284}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','6ac02e1d7b024c1ca4e3e19215d09c6b',''),(21803,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29285}=2 and ({29286}<>{29287})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29285}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','13d005d75c364bfd89008c30df81afc8',''),(21804,'{29288}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','81ff4b462e134758bf758ea598a89ac5',''),(21805,'{29289}>{$ICMP_LOSS_WARN} and {29289}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','5cf5ce1e93f54801a94370f4db68422a',''),(21806,'{29290}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','f9e60c1f73a24df5a9d84ebb81b28861',''),(21807,'{29291}<>{29292} and length({29293})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','5a2e293b0f664c93ac675f925f0ee3e0',''),(21808,'({32198}>0 and {32198}<10m) or ({32198}=0 and {32199}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','4748e443639d47b2a969070386524eee',''),(21809,'{29295}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f8bfaedd5b0f45ae9e91831865b2c1fa',''),(21810,'{29296}<0 and {29297}>0\r\nand (\r\n{29298}=6 or\r\n{29298}=7 or\r\n{29298}=11 or\r\n{29298}=62 or\r\n{29298}=69 or\r\n{29298}=117\r\n)\r\nand\r\n({29299}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29296}>0 and {29300}>0) or\r\n({29299}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','4246c08015084a69a8025aaa928efb3f',''),(21811,'({29301}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29302} or\r\n{29303}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29302}) and\r\n{29302}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29301}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29302} and\r\n{29303}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29302}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','b96a1bd98a964bc4b3aa10f1b723c256',''),(21812,'{29304}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29305}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29306}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29307}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','b2999652071a4eecb8f7112b03168412',''),(21813,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29308}=2 and ({29309}<>{29310})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29308}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','80c35372193e4616969d2e681a412606',''),(21814,'{29311}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ace4ead8482a47fea59f346d0cc41c62',''),(21815,'{29312}>{$ICMP_LOSS_WARN} and {29312}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','e474571997454a96a7e86294c876c0a7',''),(21816,'{29313}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','d4e0d30eadce4dd5a37afd48a10ed379',''),(21817,'{29314}<>{29315} and length({29316})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','1060d8c4dda547d9902dc94ac68f1b33',''),(21818,'({32200}>0 and {32200}<10m) or ({32200}=0 and {32201}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','916fbb00982f4fb38b1942cf44daf5f2',''),(21819,'{29318}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c98fffdacb89455aa6f4f62060d360de',''),(21820,'{29319}<0 and {29320}>0\r\nand (\r\n{29321}=6 or\r\n{29321}=7 or\r\n{29321}=11 or\r\n{29321}=62 or\r\n{29321}=69 or\r\n{29321}=117\r\n)\r\nand\r\n({29322}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29319}>0 and {29323}>0) or\r\n({29322}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','837272175f904763bd4c0462946e9a0e',''),(21821,'({29324}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29325} or\r\n{29326}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29325}) and\r\n{29325}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29324}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29325} and\r\n{29326}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29325}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','d57a8a917c2a4ad89618acef7c5f1fcb',''),(21822,'{29327}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29328}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29329}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29330}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','d7b2ed63b7f941878d34b64ca7ffe21b',''),(21823,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29331}=2 and ({29332}<>{29333})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29331}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b0bc658fd9654ca4802593051c5a368f',''),(21824,'{29334}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','f9fd5f6cd1a24a22ae48b0628193e0c4',''),(21825,'{29335}>{$ICMP_LOSS_WARN} and {29335}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','c72587594cfb49a6a8b39575e39ea8eb',''),(21826,'{29336}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','7d3593f5ee8f4350867de676743c4f60',''),(21827,'{29337}<>{29338} and length({29339})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','10caf9fc68e14308a0dbe730e7e4199e',''),(21828,'({32202}>0 and {32202}<10m) or ({32202}=0 and {32203}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','8138034748544325bad6bdc90484ad21',''),(21829,'{29341}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d4932539ba7245ff8975cc8c224f8d36',''),(21830,'{29342}<0 and {29343}>0\r\nand (\r\n{29344}=6 or\r\n{29344}=7 or\r\n{29344}=11 or\r\n{29344}=62 or\r\n{29344}=69 or\r\n{29344}=117\r\n)\r\nand\r\n({29345}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29342}>0 and {29346}>0) or\r\n({29345}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','f3c8a1a967524ca2bba4c646987e3fc8',''),(21831,'({29347}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29348} or\r\n{29349}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29348}) and\r\n{29348}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29347}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29348} and\r\n{29349}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29348}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','b810391bc8204730b88b3059e2eefa16',''),(21832,'{29350}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29351}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29352}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29353}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','6f66143ac9064cdfa02884fde84a4c96',''),(21833,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29354}=2 and ({29355}<>{29356})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29354}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','6aa1807ef8c94f09a7bd527f5c34fd1f',''),(21834,'{29357}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','65c639dc46a345da90e22ca0dc491d8c',''),(21835,'{29358}>{$ICMP_LOSS_WARN} and {29358}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','65eb4b94fead4b57acda0b7ac001c41c',''),(21836,'{29359}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','410faf17c1ca41408cb773270dc614b3',''),(21837,'{29360}<>{29361} and length({29362})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','ed7279478045454b809f46211c5c71b9',''),(21838,'({32204}>0 and {32204}<10m) or ({32204}=0 and {32205}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','ecf84d7e28504c23a40b013683d1cfee',''),(21839,'{29364}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','56f238340c7e40b39eb8cc04a67cf465',''),(21840,'{29365}<0 and {29366}>0\r\nand (\r\n{29367}=6 or\r\n{29367}=7 or\r\n{29367}=11 or\r\n{29367}=62 or\r\n{29367}=69 or\r\n{29367}=117\r\n)\r\nand\r\n({29368}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29365}>0 and {29369}>0) or\r\n({29368}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','bc744a57d4e44fd187453b4b8f72538e',''),(21841,'({29370}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29371} or\r\n{29372}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29371}) and\r\n{29371}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29370}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29371} and\r\n{29372}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29371}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','4a4f855dd0744cd29c3d24eb7e00de35',''),(21842,'{29373}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29374}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29375}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29376}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','f8e4afe44bc041e9b1853644d1b662f8',''),(21843,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29377}=2 and ({29378}<>{29379})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29377}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','7b8a57cb6eeb4eb5b2a6e270065f6032',''),(21844,'{29380}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','151029088e374c23bb89abe498da70ef',''),(21845,'{29381}>{$ICMP_LOSS_WARN} and {29381}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','f719d0a102d84edb8c2672502ee28b25',''),(21846,'{29382}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','acba03a0cc9a40fb89258e1ece7dce30',''),(21847,'{29383}<>{29384} and length({29385})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','f2d7211cd2ca476facec96075e06298c',''),(21848,'({32206}>0 and {32206}<10m) or ({32206}=0 and {32207}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','75e9434ddcb34c5489190d8b6de07e87',''),(21849,'{29387}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b14b41ca31c342be803852075ff5c9f9',''),(21850,'{29388}<0 and {29389}>0\r\nand (\r\n{29390}=6 or\r\n{29390}=7 or\r\n{29390}=11 or\r\n{29390}=62 or\r\n{29390}=69 or\r\n{29390}=117\r\n)\r\nand\r\n({29391}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29388}>0 and {29392}>0) or\r\n({29391}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','1d4bee528df346c6b9ac8e73352b0871',''),(21851,'({29393}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29394} or\r\n{29395}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29394}) and\r\n{29394}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29393}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29394} and\r\n{29395}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29394}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','17ab3a7deafe4ffdbc33a1d3ebef3039',''),(21852,'{29396}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29397}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29398}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29399}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','94fa2681675b4295ad1ee4d86e6f85f0',''),(21853,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29400}=2 and ({29401}<>{29402})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29400}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','80d625abfee747ffa6513c604aff983f',''),(21854,'{29403}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','00453dcba3e74c4cb1bfce45c0d29590',''),(21855,'{29404}>{$ICMP_LOSS_WARN} and {29404}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','ef9c639da1fb4c7d9e9082b76468353e',''),(21856,'{29405}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','8a7a50a814854217bae736f9766a9f42',''),(21857,'{29406}<>{29407} and length({29408})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','3d3902234c994181819a311b9f1947dd',''),(21858,'({32208}>0 and {32208}<10m) or ({32208}=0 and {32209}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','7b5ce136e1524c2c85febecb055e50f8',''),(21859,'{29410}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2fdfcfe056e848f2b0a628d87ad4aa6c',''),(21860,'{29411}<0 and {29412}>0\r\nand (\r\n{29413}=6 or\r\n{29413}=7 or\r\n{29413}=11 or\r\n{29413}=62 or\r\n{29413}=69 or\r\n{29413}=117\r\n)\r\nand\r\n({29414}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29411}>0 and {29415}>0) or\r\n({29414}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','e9c85085a0d546ba910b139c99adee10',''),(21861,'({29416}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29417} or\r\n{29418}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29417}) and\r\n{29417}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29416}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29417} and\r\n{29418}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29417}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','91c48f7aac824bfbb58d78bd791a60e2',''),(21862,'{29419}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29420}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29421}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29422}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','d7a049070a434aa5b3a9c320f25eb040',''),(21863,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29423}=2 and ({29424}<>{29425})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29423}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','1f7c8669552d4890ac963f53aefcf100',''),(21864,'{29426}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2510c2fd36cf4379b15e3e18abffea95',''),(21865,'{29427}>{$ICMP_LOSS_WARN} and {29427}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','48a93170038b41af9fd8b6f25500ee37',''),(21866,'{29428}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','1e70b999e9854c4093a75a960f8282a2',''),(21867,'{29429}<>{29430} and length({29431})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','9e3ce4eb299547199e67c131556d5bc5',''),(21868,'({32210}>0 and {32210}<10m) or ({32210}=0 and {32211}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','be74bf6810694df98cd43a669e247aab',''),(21869,'{29433}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a2d66f40be294b8b81a96e11afcfe7ec',''),(21870,'{29434}<0 and {29435}>0\r\nand (\r\n{29436}=6 or\r\n{29436}=7 or\r\n{29436}=11 or\r\n{29436}=62 or\r\n{29436}=69 or\r\n{29436}=117\r\n)\r\nand\r\n({29437}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29434}>0 and {29438}>0) or\r\n({29437}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','7a475a2472c64ee2b15b5f36c93e17db',''),(21871,'({29439}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29440} or\r\n{29441}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29440}) and\r\n{29440}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29439}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29440} and\r\n{29441}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29440}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','2154cc56a5304ec5b6327852cf4eea8b',''),(21872,'{29442}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29443}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29444}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29445}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','450f5f3106cf4755b48cbfd9d0c2a287',''),(21873,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29446}=2 and ({29447}<>{29448})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29446}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','24634d43d28146ca802ae4aee7af276a',''),(21874,'{29449}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','f37a32635c674102aaf1b7ceafa8532a',''),(21875,'{29450}>{$ICMP_LOSS_WARN} and {29450}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','1889f2943a044c49830914fd18846172',''),(21876,'{29451}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','805b3e4698dc4c55a4cc40712e14e494',''),(21877,'{29452}<>{29453} and length({29454})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','9ffbe2020d8b46f1ac730c038e9d1f51',''),(21878,'({32212}>0 and {32212}<10m) or ({32212}=0 and {32213}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','a885ccc0d0e546fe8a970ff4876f9471',''),(21879,'{29456}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6c2ff9e7f39a46918bf5d1843c7bf615',''),(21880,'{29457}<0 and {29458}>0\r\nand (\r\n{29459}=6 or\r\n{29459}=7 or\r\n{29459}=11 or\r\n{29459}=62 or\r\n{29459}=69 or\r\n{29459}=117\r\n)\r\nand\r\n({29460}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29457}>0 and {29461}>0) or\r\n({29460}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','ef8a1963f5e743bb921edaa2115c9076',''),(21881,'({29462}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29463} or\r\n{29464}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29463}) and\r\n{29463}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29462}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29463} and\r\n{29464}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29463}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','5fe8afc5b0554c0f99b8fc4fe914deca',''),(21882,'{29465}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29466}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29467}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29468}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','f4eec00173b3447080d0528805b31aef',''),(21883,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29469}=2 and ({29470}<>{29471})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29469}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','7596859088f04a0785c6e5b07d446ba8',''),(21884,'{29472}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d17f5a29c6104de78dd9b66ae8144e9b',''),(21885,'{29473}>{$ICMP_LOSS_WARN} and {29473}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','f3ad9f5ef4734e6da08c699d937a1521',''),(21886,'{29474}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','831afefc75dc472ab3d010757abab4e2',''),(21887,'{29475}<>{29476} and length({29477})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','ed353db14a0742a7a865e9805025e9a9',''),(21888,'({32214}>0 and {32214}<10m) or ({32214}=0 and {32215}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','285c2be6116d4e5fae7d0cbad5ccecb2',''),(21889,'{29479}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7a821734dc78455fa363bf7a8c2f2dc2',''),(21890,'{29480}<0 and {29481}>0\r\nand (\r\n{29482}=6 or\r\n{29482}=7 or\r\n{29482}=11 or\r\n{29482}=62 or\r\n{29482}=69 or\r\n{29482}=117\r\n)\r\nand\r\n({29483}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29480}>0 and {29484}>0) or\r\n({29483}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','127e4dfad7884ac782f9d31d0b84dfee',''),(21891,'({29485}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29486} or\r\n{29487}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29486}) and\r\n{29486}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29485}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29486} and\r\n{29487}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29486}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','839abcd582c340c8986edba7e8df360b',''),(21892,'{29488}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29489}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29490}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29491}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','32debbc2bfb546a0bcc3091494ee5b60',''),(21893,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29492}=2 and ({29493}<>{29494})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29492}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','cb6f6e2bddc0454eb142cc35344e7082',''),(21894,'{29495}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','93236f96ce364b1ab95c603503c6984f',''),(21895,'{29496}>{$ICMP_LOSS_WARN} and {29496}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','e7c3d84b4e3f4faabd28f36984116925',''),(21896,'{29497}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','4219929d04dd4367bf82c0c97f85eae7',''),(21897,'{29498}<>{29499} and length({29500})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','3bbc3dcf8127414abb426c830e8fddee',''),(21898,'({32216}>0 and {32216}<10m) or ({32216}=0 and {32217}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','f445d5e35c2b4296a670165e332be78c',''),(21899,'{29502}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e38ee3ff9c5a438fa7785db98162b84a',''),(21900,'{29503}<0 and {29504}>0\r\nand (\r\n{29505}=6 or\r\n{29505}=7 or\r\n{29505}=11 or\r\n{29505}=62 or\r\n{29505}=69 or\r\n{29505}=117\r\n)\r\nand\r\n({29506}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29503}>0 and {29507}>0) or\r\n({29506}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','b88f9f6974434f6ab26fbb747feb66e6',''),(21901,'({29508}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29509} or\r\n{29510}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29509}) and\r\n{29509}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29508}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29509} and\r\n{29510}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29509}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','7dd2c3c0a76649f097999376f6bd4bfc',''),(21902,'{29511}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29512}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29513}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29514}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','53652249393a485dab8db23696953e31',''),(21903,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29515}=2 and ({29516}<>{29517})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29515}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b9f20adf207c43d192921831fd5c882c',''),(21904,'{29518}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','04d896fcaf2c4573bb077432604ca2ad',''),(21905,'{29519}>{$ICMP_LOSS_WARN} and {29519}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','c6468c0bef2c4ad2958d69df8364722a',''),(21906,'{29520}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','2b339fa462ce498fbf5d7557e8548930',''),(21907,'{29521}<>{29522} and length({29523})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','3517d04dc5c34d07aad7ec73381deaaf',''),(21908,'({32218}>0 and {32218}<10m) or ({32218}=0 and {32219}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','40fac3f864c442f9bcbcbd5757070c38',''),(21909,'{29525}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bb5432b89f7248758d05d4c44cdf0d0a',''),(21910,'{29526}<0 and {29527}>0\r\nand (\r\n{29528}=6 or\r\n{29528}=7 or\r\n{29528}=11 or\r\n{29528}=62 or\r\n{29528}=69 or\r\n{29528}=117\r\n)\r\nand\r\n({29529}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29526}>0 and {29530}>0) or\r\n({29529}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','fac8789a47e44e1e98a047f9a8af8a16',''),(21911,'({29531}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29532} or\r\n{29533}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29532}) and\r\n{29532}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29531}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29532} and\r\n{29533}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29532}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','6f683ec4b17642b6add94e73ea306f2f',''),(21912,'{29534}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29535}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29536}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29537}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','71e00ff03c6c46f6a4b5b986c67e3c2c',''),(21913,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29538}=2 and ({29539}<>{29540})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29538}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','518c5d16112b4b76a043d74e98748901',''),(21914,'{29541}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c63272b308134676a35c7b8311d71589',''),(21915,'{29542}>{$ICMP_LOSS_WARN} and {29542}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','09d55f6987784bffb6024266e0895878',''),(21916,'{29543}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','235acd3457814902b4bf316065d05e00',''),(21917,'{29544}<>{29545} and length({29546})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','5431acc090c34d879e911cd90a52eb48',''),(21918,'({32220}>0 and {32220}<10m) or ({32220}=0 and {32221}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','7bcd342f9c4f467a98ab38a5ea3e174b',''),(21919,'{29548}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2f271102d58b4068b87eab5ff70b7798',''),(21920,'{29549}<0 and {29550}>0\r\nand (\r\n{29551}=6 or\r\n{29551}=7 or\r\n{29551}=11 or\r\n{29551}=62 or\r\n{29551}=69 or\r\n{29551}=117\r\n)\r\nand\r\n({29552}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29549}>0 and {29553}>0) or\r\n({29552}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','f2b1a41fe508425cadd992422f9f2e1a',''),(21921,'({29554}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29555} or\r\n{29556}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29555}) and\r\n{29555}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29554}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29555} and\r\n{29556}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29555}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','89c85677363b4416a8718b6455c5e2ec',''),(21922,'{29557}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29558}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29559}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29560}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','b1ae075b11a2481da6a64b65c5d0d4a8',''),(21923,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29561}=2 and ({29562}<>{29563})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29561}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','d9beebab41fd436fad7f54cfab6e5eb0',''),(21924,'{29564}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','16ef2e7fa1a949298407a0a0b4d77746',''),(21925,'{29565}>{$ICMP_LOSS_WARN} and {29565}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','1dbb087e217944aebb6cd2ed14685a46',''),(21926,'{29566}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','2dd9b73423b946f89dc7a421e12fd58e',''),(21927,'{29567}<>{29568} and length({29569})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','40ae2f08e95b4affab12454007f4bdc6',''),(21928,'({32222}>0 and {32222}<10m) or ({32222}=0 and {32223}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','d81cc3699a454ae3bd9bf813fff8e286',''),(21929,'{29571}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d720c3c0a669406cad47bf135de9be8c',''),(21930,'{29572}<0 and {29573}>0\r\nand (\r\n{29574}=6 or\r\n{29574}=7 or\r\n{29574}=11 or\r\n{29574}=62 or\r\n{29574}=69 or\r\n{29574}=117\r\n)\r\nand\r\n({29575}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29572}>0 and {29576}>0) or\r\n({29575}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','ba58df29a51d4ad6b415654f10968e27',''),(21931,'({29577}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29578} or\r\n{29579}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29578}) and\r\n{29578}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29577}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29578} and\r\n{29579}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29578}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','29ca187c6d6941caab396f6b57e86746',''),(21932,'{29580}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29581}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29582}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29583}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','72076d70d7b644b19e64bd55fab5e594',''),(21933,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29584}=2 and ({29585}<>{29586})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29584}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','bdab20ca351f4d39a27c636b33df9de1',''),(21934,'{29587}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','eccaf3e02f9944638588b82322322c32',''),(21935,'{29588}>{$ICMP_LOSS_WARN} and {29588}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','71286dd187734ee18b53fdf73602ef7d',''),(21936,'{29589}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','18e8caa0b7a44c64aaec1d5eecf76297',''),(21937,'{29590}<>{29591} and length({29592})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','681af1da9ba7432aa407019b1ff5192f',''),(21938,'({32224}>0 and {32224}<10m) or ({32224}=0 and {32225}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','6cbc680faf50402a8aa5eb6b2b848f7b',''),(21939,'{29594}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','147de2ef3a3447cf9401f4197e911b17',''),(21940,'{29595}<0 and {29596}>0\r\nand (\r\n{29597}=6 or\r\n{29597}=7 or\r\n{29597}=11 or\r\n{29597}=62 or\r\n{29597}=69 or\r\n{29597}=117\r\n)\r\nand\r\n({29598}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29595}>0 and {29599}>0) or\r\n({29598}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','7ff7bef321134c08bc70b8988abb91c4',''),(21941,'({29600}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29601} or\r\n{29602}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29601}) and\r\n{29601}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29600}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29601} and\r\n{29602}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29601}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','43f1d416170f493d825b087a88fd8b0e',''),(21942,'{29603}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29604}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29605}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29606}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','6e91f3d30c5a492dbb56b284594aa6ba',''),(21943,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29607}=2 and ({29608}<>{29609})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29607}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','1f51aae95ee44368be4327fa0bb02c8a',''),(21944,'{29610}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','6883be571ae343a791670f2f0c36cd02',''),(21945,'{29611}>{$ICMP_LOSS_WARN} and {29611}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','ea3e5695d49f4868bd6a83e67689e5d6',''),(21946,'{29612}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','4439b1b6d31d4824ba1ed448d9bda1b4',''),(21947,'{29613}<>{29614} and length({29615})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','ab81c691a90a409fa0d24ddac4ee455f',''),(21948,'({32226}>0 and {32226}<10m) or ({32226}=0 and {32227}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','1d5170eb0ba14c4e8799d712ee84d004',''),(21949,'{29617}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','94b83963c4474cd5a8d21a8cdae584f4',''),(21950,'{29618}<0 and {29619}>0\r\nand (\r\n{29620}=6 or\r\n{29620}=7 or\r\n{29620}=11 or\r\n{29620}=62 or\r\n{29620}=69 or\r\n{29620}=117\r\n)\r\nand\r\n({29621}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29618}>0 and {29622}>0) or\r\n({29621}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','b34e8d6b7e81481bb19b3f39236c29e4',''),(21951,'({29623}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29624} or\r\n{29625}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29624}) and\r\n{29624}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29623}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29624} and\r\n{29625}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29624}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','3c74af72b29e4b8484ccf36539caf234',''),(21952,'{29626}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29627}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29628}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29629}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','6fae861a027a4965b5b80500a218c0f1',''),(21953,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29630}=2 and ({29631}<>{29632})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29630}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','61ea7de46c3841c7a4fc04f67ef1448f',''),(21954,'{29633}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','31542fecf2794dcb8b96293087b71526',''),(21955,'{29634}>{$ICMP_LOSS_WARN} and {29634}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','ded01e910a0046fa94a89c7011cc9514',''),(21956,'{29635}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','5c9b3116dc4140bdb7903a094fbf098f',''),(21957,'{29636}<>{29637} and length({29638})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','1e2f2debb1cc4f13b133cbe6600c99cc',''),(21958,'({32228}>0 and {32228}<10m) or ({32228}=0 and {32229}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','a888ad0e55f14ba0803bf6923dc7d227',''),(21959,'{29640}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3efee76288274e42921647d5a1d82ab1',''),(21960,'{29641}<0 and {29642}>0\r\nand (\r\n{29643}=6 or\r\n{29643}=7 or\r\n{29643}=11 or\r\n{29643}=62 or\r\n{29643}=69 or\r\n{29643}=117\r\n)\r\nand\r\n({29644}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29641}>0 and {29645}>0) or\r\n({29644}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','19b7437f8a91461da91c77abec3ae9f2',''),(21961,'({29646}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29647} or\r\n{29648}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29647}) and\r\n{29647}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29646}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29647} and\r\n{29648}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29647}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','462f683cfd5d4c5096b23d7051440671',''),(21962,'{29649}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29650}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29651}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29652}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','25641b52614a4e3b9a11af9212c47b4f',''),(21963,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29653}=2 and ({29654}<>{29655})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29653}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','979f432cdb8442faa8105b295b394dda',''),(21964,'{29656}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','16bfb1a39fe54fa0b512ed93c8c3b00a',''),(21965,'{29657}>{$ICMP_LOSS_WARN} and {29657}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','d166ae7475f5416499b46a00cf5de374',''),(21966,'{29658}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','a59d0752d5724f01a783ef8b4131b9d4',''),(21967,'{29659}<>{29660} and length({29661})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','01cb61daac1f42d3ab0a5fafd2b113a4',''),(21968,'({32230}>0 and {32230}<10m) or ({32230}=0 and {32231}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','a1d58fc2668b465a81a86536c1f646ad',''),(21969,'{29663}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a564c084ec414271b212db6c9b301db7',''),(21970,'{29664}<0 and {29665}>0\r\nand (\r\n{29666}=6 or\r\n{29666}=7 or\r\n{29666}=11 or\r\n{29666}=62 or\r\n{29666}=69 or\r\n{29666}=117\r\n)\r\nand\r\n({29667}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29664}>0 and {29668}>0) or\r\n({29667}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','370d7a702a62401ca9dd904b3c7ec39c',''),(21971,'({29669}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29670} or\r\n{29671}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29670}) and\r\n{29670}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29669}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29670} and\r\n{29671}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29670}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','b78e00216b3441fbb217d6b14cba2979',''),(21972,'{29672}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29673}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29674}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29675}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','921716eadabd441d87d23a53ea1ffa8e',''),(21973,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29676}=2 and ({29677}<>{29678})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29676}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b810190964d44084b2294ea56c7b5ee5',''),(21974,'{29679}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','db42c8af11744c5ab3f47f72ebc4a510',''),(21975,'{29680}>{$ICMP_LOSS_WARN} and {29680}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','844a3542770748cf9a99070e6f55fba6',''),(21976,'{29681}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','4b4911507b374dfc9c1b105c4c09e3b8',''),(21977,'{29682}<>{29683} and length({29684})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','dc073a13e66f4d528af68db048184c2f',''),(21978,'({32232}>0 and {32232}<10m) or ({32232}=0 and {32233}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','1cfae25fa7b041b98b5b97a5bca0796a',''),(21979,'{29686}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','cb430613680b4bd087d79a4f1004f453',''),(21980,'{29687}<0 and {29688}>0\r\nand (\r\n{29689}=6 or\r\n{29689}=7 or\r\n{29689}=11 or\r\n{29689}=62 or\r\n{29689}=69 or\r\n{29689}=117\r\n)\r\nand\r\n({29690}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29687}>0 and {29691}>0) or\r\n({29690}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','3aa76bfc278a484387be9ef760005d55',''),(21981,'({29692}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29693} or\r\n{29694}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29693}) and\r\n{29693}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29692}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29693} and\r\n{29694}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29693}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','9b698eef38ca438383c7bc06c2589166',''),(21982,'{29695}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29696}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29697}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29698}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','71f098c03cf945cd9a5a9a26f46bb54e',''),(21983,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29699}=2 and ({29700}<>{29701})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29699}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b8325c85797b4b56a2ebb5f998751bcc',''),(21984,'{29702}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','f4acabb314ea4a38935ebb722bf47ed9',''),(21985,'{29703}>{$ICMP_LOSS_WARN} and {29703}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','629b35a8b5414240953062d4b4caad60',''),(21986,'{29704}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','28ce838e43004acebc74c42e782b65cb',''),(21987,'{29705}<>{29706} and length({29707})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','f01bb34d5f30454bb72e6b00e187c066',''),(21988,'({32234}>0 and {32234}<10m) or ({32234}=0 and {32235}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','bd172615c09147ed8deb102f88eb8900',''),(21989,'{29709}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1c20500d7efe42e59d3562c980201ef1',''),(21990,'{29710}<0 and {29711}>0\r\nand (\r\n{29712}=6 or\r\n{29712}=7 or\r\n{29712}=11 or\r\n{29712}=62 or\r\n{29712}=69 or\r\n{29712}=117\r\n)\r\nand\r\n({29713}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29710}>0 and {29714}>0) or\r\n({29713}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','53447bc4ecb04af7b4d9ef6a57c78a29',''),(21991,'({29715}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29716} or\r\n{29717}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29716}) and\r\n{29716}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29715}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29716} and\r\n{29717}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29716}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','05e4dbc448fc431f90a831af90408113',''),(21992,'{29718}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29719}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29720}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29721}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','0af66a5ab69448549374ef932be1d57b',''),(21993,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29722}=2 and ({29723}<>{29724})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29722}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','6251339e2940419994033e0689fa16a7',''),(21994,'{29725}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d914dc20fb664be7832aae19f07df37f',''),(21995,'{29726}>{$ICMP_LOSS_WARN} and {29726}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','70d6789335b74cdd87a1a23bf4a3f875',''),(21996,'{29727}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','49f77a9948164eb7aeffc3efe3f60ce1',''),(21997,'{29728}<>{29729} and length({29730})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','63f90de57f5f4b5b92d0db0b54d0b1d2',''),(21998,'({32236}>0 and {32236}<10m) or ({32236}=0 and {32237}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','b31c237e2046464c95b1ab70dc08e118',''),(21999,'{29732}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','1b222c2531f140399fe94a54556c6422',''),(22000,'{29733}<0 and {29734}>0\r\nand (\r\n{29735}=6 or\r\n{29735}=7 or\r\n{29735}=11 or\r\n{29735}=62 or\r\n{29735}=69 or\r\n{29735}=117\r\n)\r\nand\r\n({29736}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29733}>0 and {29737}>0) or\r\n({29736}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','c05d1756423841658946ffaddf78ef79',''),(22001,'({29738}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29739} or\r\n{29740}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29739}) and\r\n{29739}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29738}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29739} and\r\n{29740}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29739}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','e08df3d8533c46a9aac0144486098b78',''),(22002,'{29741}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29742}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29743}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29744}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','dcd307c6b1074213976f0f26cb699699',''),(22003,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29745}=2 and ({29746}<>{29747})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29745}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','2eed9a625d3c45b4bfd4fdd70b58461d',''),(22004,'{29748}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b74334acbba2407d8baff550f0db6d64',''),(22005,'{29749}>{$ICMP_LOSS_WARN} and {29749}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','160e58bf2d05433882e3e0c8f187c42e',''),(22006,'{29750}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','ee3f5dbb8f5848c888c0d599be2dd4fa',''),(22007,'{29751}<>{29752} and length({29753})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','635b2c749af2495aa87688001bd73a6c',''),(22008,'({32238}>0 and {32238}<10m) or ({32238}=0 and {32239}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','869d6bd39ef1440193978c60518a91f7',''),(22009,'{29755}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','6ed1c046ba1a4246a6e30d5147e58250',''),(22010,'{29756}<0 and {29757}>0\r\nand (\r\n{29758}=6 or\r\n{29758}=7 or\r\n{29758}=11 or\r\n{29758}=62 or\r\n{29758}=69 or\r\n{29758}=117\r\n)\r\nand\r\n({29759}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29756}>0 and {29760}>0) or\r\n({29759}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','4549b4a23bc24c0d8998f2dc6a77a520',''),(22011,'({29761}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29762} or\r\n{29763}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29762}) and\r\n{29762}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29761}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29762} and\r\n{29763}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29762}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','676efabc192b4583b60c52ce440d00f2',''),(22012,'{29764}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29765}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29766}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29767}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','cd633c8e31824cb1b38c6e9dad58ca7e',''),(22013,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29768}=2 and ({29769}<>{29770})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29768}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','f32914fd53134704a5c11b501decb57e',''),(22014,'{29771}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','d81a92c3079b4d25be205b1e56b15a73',''),(22015,'{29772}>{$ICMP_LOSS_WARN} and {29772}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','cd4376c2f8e449b9b4923720374198af',''),(22016,'{29773}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','9e00ffd6364d4e238985a4f23601e1c6',''),(22017,'{29774}<>{29775} and length({29776})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','968c0bef31dc4ae89426b7dee5b76ea1',''),(22018,'({32240}>0 and {32240}<10m) or ({32240}=0 and {32241}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','119f36d60a1141f5a5dee9ee3aba894b',''),(22019,'{29778}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','cd1295131197495183bcc095622fb296',''),(22020,'{29779}<0 and {29780}>0\r\nand (\r\n{29781}=6 or\r\n{29781}=7 or\r\n{29781}=11 or\r\n{29781}=62 or\r\n{29781}=69 or\r\n{29781}=117\r\n)\r\nand\r\n({29782}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29779}>0 and {29783}>0) or\r\n({29782}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','a14597e77d1a47cfae87df483df50d44',''),(22021,'({29784}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29785} or\r\n{29786}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29785}) and\r\n{29785}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29784}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29785} and\r\n{29786}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29785}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','86aee07149c9403eba4e32030c52ae0e',''),(22022,'{29787}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29788}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29789}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29790}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','2fa427f9d66548ee9574495847cd521a',''),(22023,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29791}=2 and ({29792}<>{29793})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29791}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','066a5460a2964a7586a90494dcc29c4f',''),(22024,'{29794}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','0f59da9697304abd8c074c51ce3a4bef',''),(22025,'{29795}>{$ICMP_LOSS_WARN} and {29795}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','14b723dee48541a3a8b36c128681a200',''),(22026,'{29796}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','f8666db5e5a64d3fa7119deac48c317c',''),(22027,'{29797}<>{29798} and length({29799})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','375ba33fbee4425d97cbb15e410e52d3',''),(22028,'({32242}>0 and {32242}<10m) or ({32242}=0 and {32243}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','4e0a9fd604b04e6295108f8edf7910a9',''),(22029,'{29801}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5ea3db8ebb2f49ab9fe7d38de50a4003',''),(22030,'{29802}<0 and {29803}>0\r\nand (\r\n{29804}=6 or\r\n{29804}=7 or\r\n{29804}=11 or\r\n{29804}=62 or\r\n{29804}=69 or\r\n{29804}=117\r\n)\r\nand\r\n({29805}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29802}>0 and {29806}>0) or\r\n({29805}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','eaa731129de3470e830007ac7ce932f5',''),(22031,'({29807}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29808} or\r\n{29809}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29808}) and\r\n{29808}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29807}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29808} and\r\n{29809}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29808}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','4060d8dedaac41c8bce5b82df01eb53c',''),(22032,'{29810}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29811}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29812}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29813}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','294c29c25bae472fa13f20d6c75442bf',''),(22033,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29814}=2 and ({29815}<>{29816})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29814}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','073891fc4c8b4ec9b316deb9c4147cab',''),(22034,'{29817}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','fa71a2bcc742439a8eb76923db6dd34c',''),(22035,'{29818}>{$ICMP_LOSS_WARN} and {29818}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','c315770210b94fe39126514c41d6fa5d',''),(22036,'{29819}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','fe1eba68b565403a968bec8561362376',''),(22037,'{29820}<>{29821} and length({29822})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','caff4557fe8d4e0cb994c16a4d1c3eae',''),(22038,'({32244}>0 and {32244}<10m) or ({32244}=0 and {32245}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','661c463acbed4777b8269b9277a255fc',''),(22039,'{29824}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','eaa6f1c7bd334122af4cb08af35ebd86',''),(22040,'{29825}<0 and {29826}>0\r\nand (\r\n{29827}=6 or\r\n{29827}=7 or\r\n{29827}=11 or\r\n{29827}=62 or\r\n{29827}=69 or\r\n{29827}=117\r\n)\r\nand\r\n({29828}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29825}>0 and {29829}>0) or\r\n({29828}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','332308663e4e478d97383a638b2b1d02',''),(22041,'({29830}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29831} or\r\n{29832}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29831}) and\r\n{29831}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29830}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29831} and\r\n{29832}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29831}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','c854aedfd3594f21b40bd227de48c871',''),(22042,'{29833}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29834}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29835}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29836}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','f74f365e18d64e2096a326456622b3e1',''),(22043,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29837}=2 and ({29838}<>{29839})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29837}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','d007eb009f2d4b699cf5af8a0ccedfe9',''),(22044,'{29840}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','987ae7ade202464ba51fd8fcc67d3a19',''),(22045,'{29841}>{$ICMP_LOSS_WARN} and {29841}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','bf7a369d3b2a455496f8920177666d91',''),(22046,'{29842}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','9a35ff4d142640e387f247a8ae5021bc',''),(22047,'{29843}<>{29844} and length({29845})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','135707c751764f9087ebd32e1fe0b7ba',''),(22048,'({32246}>0 and {32246}<10m) or ({32246}=0 and {32247}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','1906ad6961664c74a2de31d20cd279b2',''),(22049,'{29847}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','239d876c15fe45ccb33ca87aba3a170f',''),(22050,'{29848}<0 and {29849}>0\r\nand (\r\n{29850}=6 or\r\n{29850}=7 or\r\n{29850}=11 or\r\n{29850}=62 or\r\n{29850}=69 or\r\n{29850}=117\r\n)\r\nand\r\n({29851}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29848}>0 and {29852}>0) or\r\n({29851}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','f1c3a3541f9948eb890816493e6251e5',''),(22051,'({29853}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29854} or\r\n{29855}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29854}) and\r\n{29854}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29853}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29854} and\r\n{29855}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29854}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','ec1a319bff034c6387ed43d083c0ca85',''),(22052,'{29856}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29857}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29858}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29859}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','1d46257a2eb14abf8f3dddae5e3974ca',''),(22053,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29860}=2 and ({29861}<>{29862})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29860}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','914bfdb045554132902dff8f910878d4',''),(22054,'{29863}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','94618414658d4f5bad5f1cf544fba55d',''),(22055,'{29864}>{$ICMP_LOSS_WARN} and {29864}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','ecb0d03f65144dbe8e8e22339576fe1a',''),(22056,'{29865}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','bb70a4e882224f9d8302f8726ff81a8d',''),(22057,'{29866}<>{29867} and length({29868})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','f4c43870fa484e4088c1d9c973387140',''),(22058,'({32248}>0 and {32248}<10m) or ({32248}=0 and {32249}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','ec03a67de5ca4d8d834e1689a1cd28bf',''),(22059,'{29870}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ce74c74936194791b8f8a09acd9d5501',''),(22060,'{29871}<0 and {29872}>0\r\nand (\r\n{29873}=6 or\r\n{29873}=7 or\r\n{29873}=11 or\r\n{29873}=62 or\r\n{29873}=69 or\r\n{29873}=117\r\n)\r\nand\r\n({29874}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29871}>0 and {29875}>0) or\r\n({29874}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','0eca316085f046599bd3db8ce7b186f1',''),(22061,'({29876}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29877} or\r\n{29878}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29877}) and\r\n{29877}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29876}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29877} and\r\n{29878}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29877}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','417ef3b4a8814b01bcb4715248df543c',''),(22062,'{29879}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29880}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29881}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29882}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','a674f655342a42b094b0084fab1bde99',''),(22063,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29883}=2 and ({29884}<>{29885})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29883}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','2426c10e34db430a946528f02ae605d4',''),(22064,'{29886}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7c5ac0cbe19b4a119e8cd02802169849',''),(22065,'{29887}>{$ICMP_LOSS_WARN} and {29887}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','4b63a258093a4b5f8c7f415c054e290c',''),(22066,'{29888}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','8d37fb7e0f32438ea1b1f55389c4c024',''),(22067,'{29889}<>{29890} and length({29891})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','23b043f4b2344b8ea9140387454e6b02',''),(22068,'({32250}>0 and {32250}<10m) or ({32250}=0 and {32251}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','e2283150bf9e4248aa9bb5bd9cc1881e',''),(22069,'{29893}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8d9d64c66ffe48899e799bf720182b6c',''),(22070,'{29894}<0 and {29895}>0\r\nand (\r\n{29896}=6 or\r\n{29896}=7 or\r\n{29896}=11 or\r\n{29896}=62 or\r\n{29896}=69 or\r\n{29896}=117\r\n)\r\nand\r\n({29897}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29894}>0 and {29898}>0) or\r\n({29897}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','2215de4000e640c3b34a5333dfb3ec79',''),(22071,'({29899}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29900} or\r\n{29901}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29900}) and\r\n{29900}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29899}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29900} and\r\n{29901}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29900}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','1b7348beb2044c2cbb59904cde8fc02b',''),(22072,'{29902}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29903}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29904}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29905}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','cd7fe7efe80241efae4e7dd2952313bc',''),(22073,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29906}=2 and ({29907}<>{29908})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29906}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','a0071a9d0e604160af201436b9879256',''),(22074,'{29909}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','4c4560f84de94f36a3e7d4941ded2cba',''),(22075,'{29910}>{$ICMP_LOSS_WARN} and {29910}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','44efdc627091496baa1fbe4bbe078e6f',''),(22076,'{29911}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','0a8c65b849dd4cb1a0d740d57323f76c',''),(22077,'{29912}<>{29913} and length({29914})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','56b334cfbcf54eba95c229b097e3cfd7',''),(22078,'({32252}>0 and {32252}<10m) or ({32252}=0 and {32253}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','3afcbbeb91004c2dae24efaf37fec710',''),(22079,'{29916}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a63e914da20a47ef9d478b53d5e18042',''),(22080,'{29917}<0 and {29918}>0\r\nand (\r\n{29919}=6 or\r\n{29919}=7 or\r\n{29919}=11 or\r\n{29919}=62 or\r\n{29919}=69 or\r\n{29919}=117\r\n)\r\nand\r\n({29920}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29917}>0 and {29921}>0) or\r\n({29920}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','426f6a84191544c79eeabfbfb7590a35',''),(22081,'({29922}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29923} or\r\n{29924}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29923}) and\r\n{29923}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29922}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29923} and\r\n{29924}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29923}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','69788ba37d1147c2b67d4dbbc9b33eff',''),(22082,'{29925}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29926}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29927}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29928}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','376cee5b35f840d68db5d1daed510eb3',''),(22083,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29929}=2 and ({29930}<>{29931})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29929}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','a50ddafe680c447db056a9a9012faead',''),(22084,'{29932}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','6a7f532a2e4a4b4cbe9435e560f8d281',''),(22085,'{29933}>{$ICMP_LOSS_WARN} and {29933}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','17c92f554c45423eb5b44bd08f34ad7f',''),(22086,'{29934}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','3b093888ce154887afaa6f738218d718',''),(22087,'{29935}<>{29936} and length({29937})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','dd116049df75471b8aacbedd082f2634',''),(22088,'({32254}>0 and {32254}<10m) or ({32254}=0 and {32255}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','63045c3ca20d4cd390b1247dfd3876c4',''),(22089,'{29939}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7b8af02b531842e2b7f50037a8b3679a',''),(22090,'{29940}<0 and {29941}>0\r\nand (\r\n{29942}=6 or\r\n{29942}=7 or\r\n{29942}=11 or\r\n{29942}=62 or\r\n{29942}=69 or\r\n{29942}=117\r\n)\r\nand\r\n({29943}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29940}>0 and {29944}>0) or\r\n({29943}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','9d517af24f104293b6ca6b2b8de70d3b',''),(22091,'({29945}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29946} or\r\n{29947}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29946}) and\r\n{29946}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29945}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29946} and\r\n{29947}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29946}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','a95105e0711543388452fdb960bd2caf',''),(22092,'{29948}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29949}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29950}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29951}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','1881f3af98ec450cb15b88ac749bacf6',''),(22093,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29952}=2 and ({29953}<>{29954})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29952}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','1dec7dd2894f4296963217dc13c78abe',''),(22094,'{29955}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a3fbb030723c45208c51c923ca11fe1c',''),(22095,'{29956}>{$ICMP_LOSS_WARN} and {29956}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','6e46f7a198bb4cbcb4555e80a4ce7045',''),(22096,'{29957}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','1ac1be3472d04dddaadfa68228997594',''),(22097,'{29958}<>{29959} and length({29960})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','39c5e6d11d4c4866adac2a145a18dfb7',''),(22098,'({32256}>0 and {32256}<10m) or ({32256}=0 and {32257}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','b3004ef6450848c8bb55e7c802c2bd96',''),(22099,'{29962}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','67cd4c3273394776a7e7497ec8c1a091',''),(22100,'{29963}<0 and {29964}>0\r\nand (\r\n{29965}=6 or\r\n{29965}=7 or\r\n{29965}=11 or\r\n{29965}=62 or\r\n{29965}=69 or\r\n{29965}=117\r\n)\r\nand\r\n({29966}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29963}>0 and {29967}>0) or\r\n({29966}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','2a68840307594164a2ca408decd6dba5',''),(22101,'({29968}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29969} or\r\n{29970}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29969}) and\r\n{29969}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29968}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29969} and\r\n{29970}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29969}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','fe4d3130c3284b46b649a92b019a712b',''),(22102,'{29971}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29972}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29973}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29974}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','22d8b44c4e6d467298c3528d98b02e1d',''),(22103,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29975}=2 and ({29976}<>{29977})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29975}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','e2c87fe418e342699ac14d1f9755258c',''),(22104,'{29978}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b1a43fa0251248fa897994575b8a27ac',''),(22105,'{29979}>{$ICMP_LOSS_WARN} and {29979}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','740b195a7246457ea28635c4b8ef0f83',''),(22106,'{29980}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','d85b8d94139d44c69349898d2149e7bd',''),(22107,'{29981}<>{29982} and length({29983})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','90a6f09f02ba4a36b019c6624ad13812',''),(22108,'({32258}>0 and {32258}<10m) or ({32258}=0 and {32259}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','2d0d281a078546959a644e758ede97d6',''),(22109,'{29985}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','36ee677a31184b738cd02b91aee5ff78',''),(22110,'{29986}<0 and {29987}>0\r\nand (\r\n{29988}=6 or\r\n{29988}=7 or\r\n{29988}=11 or\r\n{29988}=62 or\r\n{29988}=69 or\r\n{29988}=117\r\n)\r\nand\r\n({29989}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({29986}>0 and {29990}>0) or\r\n({29989}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','6ca7d0731b294e1081e95cb6cf2a122d',''),(22111,'({29991}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29992} or\r\n{29993}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{29992}) and\r\n{29992}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{29991}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29992} and\r\n{29993}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{29992}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','4d7141f9e9e34656a89b011b20453494',''),(22112,'{29994}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {29995}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{29996}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {29997}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','01d85d1674674c7b9fc0fbaf96814160',''),(22113,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {29998}=2 and ({29999}<>{30000})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{29998}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','018a5f1c3af44b64a6d31e095fce0dfc',''),(22114,'{30001}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c093758529824015be966f41e9e27757',''),(22115,'{30002}>{$ICMP_LOSS_WARN} and {30002}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','05873e7bbc8347f48daf707af0a3a1df',''),(22116,'{30003}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','f0a1435b054f46a3a496ab8c92591d96',''),(22117,'{30004}<>{30005} and length({30006})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','64b6467c681f43f4954a24d7bc326588',''),(22118,'({32260}>0 and {32260}<10m) or ({32260}=0 and {32261}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','81a1b9e9630c4b28b035da3b9fa7e6d7',''),(22119,'{30008}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','289a3d4d39e14627bb26817d21221c05',''),(22120,'{30009}<0 and {30010}>0\r\nand (\r\n{30011}=6 or\r\n{30011}=7 or\r\n{30011}=11 or\r\n{30011}=62 or\r\n{30011}=69 or\r\n{30011}=117\r\n)\r\nand\r\n({30012}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30009}>0 and {30013}>0) or\r\n({30012}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','bf2dcee19ae44de98fed1b9f41d80ea9',''),(22121,'({30014}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30015} or\r\n{30016}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30015}) and\r\n{30015}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30014}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30015} and\r\n{30016}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30015}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','92470dac23d7480f817f1d903e6ba869',''),(22122,'{30017}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30018}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30019}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30020}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','7ab169c391b142afa4fd1441d1cb7595',''),(22123,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30021}=2 and ({30022}<>{30023})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30021}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','789cf81a742c41dfa356b253b01faeca',''),(22124,'{30024}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','169edfa3b9c94c61899cc540a5f4bd5c',''),(22125,'{30025}>{$ICMP_LOSS_WARN} and {30025}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','cb4bbbd51e854ac5b6877b85fd7b8bf5',''),(22126,'{30026}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','01e6c7a1fc2243dcabfd5ac1dec841ad',''),(22127,'{30027}<>{30028} and length({30029})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','53e27314562746fb803664ddbd13876f',''),(22128,'({32262}>0 and {32262}<10m) or ({32262}=0 and {32263}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','f71809adab344e60a2f6260548359167',''),(22129,'{30031}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a462a1b6a16e4636aa3a70bbed7cc1cd',''),(22130,'{30032}<0 and {30033}>0\r\nand (\r\n{30034}=6 or\r\n{30034}=7 or\r\n{30034}=11 or\r\n{30034}=62 or\r\n{30034}=69 or\r\n{30034}=117\r\n)\r\nand\r\n({30035}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30032}>0 and {30036}>0) or\r\n({30035}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','4558a208b2ef4376a1f33db1383c62b6',''),(22131,'({30037}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30038} or\r\n{30039}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30038}) and\r\n{30038}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30037}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30038} and\r\n{30039}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30038}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','13c5c29276ae4d2293dd3a178131608e',''),(22132,'{30040}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30041}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30042}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30043}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','e22b4649dbd94b3982636622b92212a8',''),(22133,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30044}=2 and ({30045}<>{30046})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30044}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b41b12e1ed5148cbbd97a0bcf838ef44',''),(22134,'{30047}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','f38f2bf1b3954e87afaae1b24f051705',''),(22135,'{30048}>{$ICMP_LOSS_WARN} and {30048}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','2384103bcdef45e48026fbb913a09e41',''),(22136,'{30049}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','492c760974924a489adf628a78facf20',''),(22137,'{30050}<>{30051} and length({30052})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','2783c5306701462290c245ff68ce0804',''),(22138,'({32264}>0 and {32264}<10m) or ({32264}=0 and {32265}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','f96b1dcd1cf84538a0d7729c5e4c683b',''),(22139,'{30054}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8a6f02ead39b4b42be807585266c1fec',''),(22140,'{30055}<0 and {30056}>0\r\nand (\r\n{30057}=6 or\r\n{30057}=7 or\r\n{30057}=11 or\r\n{30057}=62 or\r\n{30057}=69 or\r\n{30057}=117\r\n)\r\nand\r\n({30058}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30055}>0 and {30059}>0) or\r\n({30058}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','246b22c8fee74df3af90178f1015eabd',''),(22141,'({30060}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30061} or\r\n{30062}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30061}) and\r\n{30061}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30060}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30061} and\r\n{30062}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30061}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','80a39aa88bc14897ad94816f088fee1d',''),(22142,'{30063}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30064}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30065}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30066}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','5f15f82f958040f59ad31151a464d023',''),(22143,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30067}=2 and ({30068}<>{30069})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30067}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','5ca938e575294b8283154e162968d00d',''),(22144,'{30070}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ec9cc9ca00754d17a9ee8ff38e4aca2f',''),(22145,'{30071}>{$ICMP_LOSS_WARN} and {30071}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','1377c7e423284ac487afdeac6252f1e7',''),(22146,'{30072}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','143e8c34dc344611ace63e6bcfbfa556',''),(22147,'{30073}<>{30074} and length({30075})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','ecfbc704498740ee89afbffd1a2db22d',''),(22148,'({32266}>0 and {32266}<10m) or ({32266}=0 and {32267}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','e2afe16e11e14b80aa4a228eb9182f6a',''),(22149,'{30077}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7d47b1df3a984db891811b14832ba2ee',''),(22150,'{30078}<0 and {30079}>0\r\nand (\r\n{30080}=6 or\r\n{30080}=7 or\r\n{30080}=11 or\r\n{30080}=62 or\r\n{30080}=69 or\r\n{30080}=117\r\n)\r\nand\r\n({30081}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30078}>0 and {30082}>0) or\r\n({30081}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','48212db512234a48863444e08dd6ac8d',''),(22151,'({30083}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30084} or\r\n{30085}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30084}) and\r\n{30084}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30083}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30084} and\r\n{30085}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30084}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','d658285fc06f498dbdb4ff3e02fdbb9c',''),(22152,'{30086}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30087}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30088}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30089}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','49fc7dbdc2294a92a52a30125d4f12a5',''),(22153,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30090}=2 and ({30091}<>{30092})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30090}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','e3a3b7bdfec649dab8e51cf2ba9685d6',''),(22154,'{30093}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','5dea6d7aa1344f27b66dbdce2350e93a',''),(22155,'{30094}>{$ICMP_LOSS_WARN} and {30094}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','a8d51531113a4017b732eb8d7247c777',''),(22156,'{30095}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','7acce40acf3a4eb28af79fc6d95bf190',''),(22157,'{30096}<>{30097} and length({30098})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','e09f00f0ad144e7a96e3abb38e4ab109',''),(22158,'({32268}>0 and {32268}<10m) or ({32268}=0 and {32269}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','27e64b9d917d4163b2f66c6f790b5a44',''),(22159,'{30100}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','096f1ccc1fd24cffb48720def5297031',''),(22160,'{30101}<0 and {30102}>0\r\nand (\r\n{30103}=6 or\r\n{30103}=7 or\r\n{30103}=11 or\r\n{30103}=62 or\r\n{30103}=69 or\r\n{30103}=117\r\n)\r\nand\r\n({30104}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30101}>0 and {30105}>0) or\r\n({30104}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','24edc4d534254e638458cb08d0fb7492',''),(22161,'({30106}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30107} or\r\n{30108}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30107}) and\r\n{30107}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30106}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30107} and\r\n{30108}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30107}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','358f84761e004f48ba31aed484cdc947',''),(22162,'{30109}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30110}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30111}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30112}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','c14516c2c7f24762af7d6555f9f38158',''),(22163,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30113}=2 and ({30114}<>{30115})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30113}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','f5085ef8cfde4046a423c59d977258d4',''),(22164,'{30116}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','5ec7bb4a650f4c53a76ec3f89769952d',''),(22165,'{30117}>{$ICMP_LOSS_WARN} and {30117}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','66718f4417324cd7a88de35776b26c64',''),(22166,'{30118}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','95b144dfafeb40be96155e0a6e53515e',''),(22167,'{30119}<>{30120} and length({30121})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','5d609e8337b94830a52752ef8db4fd75',''),(22168,'({32270}>0 and {32270}<10m) or ({32270}=0 and {32271}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','0dcc036b17de4d00bf7d51b7b6076e3c',''),(22169,'{30123}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','c36eb285f1a94d29a40afb4bb8e923d4',''),(22170,'{30124}<0 and {30125}>0\r\nand (\r\n{30126}=6 or\r\n{30126}=7 or\r\n{30126}=11 or\r\n{30126}=62 or\r\n{30126}=69 or\r\n{30126}=117\r\n)\r\nand\r\n({30127}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30124}>0 and {30128}>0) or\r\n({30127}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','9f31bde8ab2e4edd8a142cdf0e4274d0',''),(22171,'({30129}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30130} or\r\n{30131}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30130}) and\r\n{30130}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30129}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30130} and\r\n{30131}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30130}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','794d401f1b66402cb9309d9acd63321c',''),(22172,'{30132}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30133}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30134}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30135}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','df2b99f9fcfc4df195b500cc637fb4d6',''),(22173,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30136}=2 and ({30137}<>{30138})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30136}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','72ef5c7b0bb74f1fb88085616293169c',''),(22174,'{30139}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7257cb86a65547b5901cac08cacee3aa',''),(22175,'{30140}>{$ICMP_LOSS_WARN} and {30140}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','ae82608801a642d9b3ef8ddd06cee7f6',''),(22176,'{30141}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','d2f60c5c4a124a549eb02f62874dba8b',''),(22177,'{30142}<>{30143} and length({30144})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','f64be38a3557482087d75ed423ced500',''),(22178,'({32272}>0 and {32272}<10m) or ({32272}=0 and {32273}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','2139aea23b214169a369b4776865f501',''),(22179,'{30146}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','81af7d744ebf422ba065308fcb3c225a',''),(22180,'{30147}<0 and {30148}>0\r\nand (\r\n{30149}=6 or\r\n{30149}=7 or\r\n{30149}=11 or\r\n{30149}=62 or\r\n{30149}=69 or\r\n{30149}=117\r\n)\r\nand\r\n({30150}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30147}>0 and {30151}>0) or\r\n({30150}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','3ea926e679704c50b2a8b72bbdbb7136',''),(22181,'({30152}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30153} or\r\n{30154}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30153}) and\r\n{30153}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30152}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30153} and\r\n{30154}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30153}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','544e37fe922d4b6aa28c05becbf6485b',''),(22182,'{30155}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30156}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30157}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30158}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','4f224bcc233c4a378d3af6e4b8ad7df9',''),(22183,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30159}=2 and ({30160}<>{30161})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30159}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','97aeb18c33b24e29acefa286a52e6815',''),(22184,'{30162}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','247cdbc159624b33a4b415d3e048c087',''),(22185,'{30163}>{$ICMP_LOSS_WARN} and {30163}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','4d4cde77c8324a88ac0798e2f096be69',''),(22186,'{30164}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','0f9f0ffd9322422babb52a5a5058d97e',''),(22187,'{30165}<>{30166} and length({30167})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','a5fed81db3c7447c8c62b02974765f57',''),(22188,'({32274}>0 and {32274}<10m) or ({32274}=0 and {32275}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','a3c432e1d04448d3940f69f8d9633c8f',''),(22189,'{30169}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a82f1cafcb424685bb2f562c1c6dce11',''),(22190,'{30170}<0 and {30171}>0\r\nand (\r\n{30172}=6 or\r\n{30172}=7 or\r\n{30172}=11 or\r\n{30172}=62 or\r\n{30172}=69 or\r\n{30172}=117\r\n)\r\nand\r\n({30173}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30170}>0 and {30174}>0) or\r\n({30173}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','6e11e178d1e2418fa94bd2718a6eccaf',''),(22191,'({30175}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30176} or\r\n{30177}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30176}) and\r\n{30176}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30175}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30176} and\r\n{30177}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30176}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','54be09c46d2e4c6694fbd4eef4f4e055',''),(22192,'{30178}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30179}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30180}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30181}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','3c122a7c5e6348f28f8c04391f73f14b',''),(22193,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30182}=2 and ({30183}<>{30184})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30182}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','f0d3817bc7f243c591078b806f3ae712',''),(22194,'{30185}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','4db071c60daf4a6a836754875b22d27d',''),(22195,'{30186}>{$ICMP_LOSS_WARN} and {30186}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','5ce287958dc743abaa50a18c8ad3f2a5',''),(22196,'{30187}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','314db7fe9ce6403785f737263ee87914',''),(22197,'{30188}<>{30189} and length({30190})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','6f811bec794348e4937cbff22dbf5fb4',''),(22198,'({32276}>0 and {32276}<10m) or ({32276}=0 and {32277}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','44a2d709f4d0471997697905b8e3b456',''),(22199,'{30192}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9a5729d397ad431aa79048b69a65fbd9',''),(22200,'{30193}<0 and {30194}>0\r\nand (\r\n{30195}=6 or\r\n{30195}=7 or\r\n{30195}=11 or\r\n{30195}=62 or\r\n{30195}=69 or\r\n{30195}=117\r\n)\r\nand\r\n({30196}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30193}>0 and {30197}>0) or\r\n({30196}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','d29da0701e5346ac81450a6002bb53c4',''),(22201,'({30198}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30199} or\r\n{30200}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30199}) and\r\n{30199}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30198}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30199} and\r\n{30200}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30199}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','79709d95fe7a48d3a90b6a502788be89',''),(22202,'{30201}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30202}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30203}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30204}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','b8470cef21e146b4b8ecfde73682d2ee',''),(22203,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30205}=2 and ({30206}<>{30207})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30205}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','1bb803809e6a4b66a4dabbaf7dada2c0',''),(22204,'{30208}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','4c7a404a7e7b413bbbac7a21c77b3fcc',''),(22205,'{30209}>{$ICMP_LOSS_WARN} and {30209}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','a9c3882f12d94b84a2cbed81db007011',''),(22206,'{30210}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','20cb06fa668d459e80505b23501735a7',''),(22207,'{30211}<>{30212} and length({30213})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','bf71167252cf48c99477a03d09523aa0',''),(22208,'({32278}>0 and {32278}<10m) or ({32278}=0 and {32279}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','3dfea70b489141e1ba7e967a8de964b8',''),(22209,'{30215}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7a790a7c2af34786838280924d2cb252',''),(22210,'{30216}<0 and {30217}>0\r\nand (\r\n{30218}=6 or\r\n{30218}=7 or\r\n{30218}=11 or\r\n{30218}=62 or\r\n{30218}=69 or\r\n{30218}=117\r\n)\r\nand\r\n({30219}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30216}>0 and {30220}>0) or\r\n({30219}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','19c663970db044c39cc43028e7d0642d',''),(22211,'({30221}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30222} or\r\n{30223}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30222}) and\r\n{30222}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30221}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30222} and\r\n{30223}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30222}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','df9f785e1515408b8b3735a653673100',''),(22212,'{30224}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30225}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30226}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30227}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','5f5b45aa0b4943d191670dcafe035707',''),(22213,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30228}=2 and ({30229}<>{30230})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30228}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','8af0f04b3392466382d73d4986782c24',''),(22214,'{30231}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7651bd1c9c3b431eba1db692abe311a1',''),(22215,'{30232}>{$ICMP_LOSS_WARN} and {30232}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','433634cc1ce0426ba8337add07ee07f0',''),(22216,'{30233}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','a114fb9720bd429f8d406bac7b40a6d2',''),(22217,'{30234}<>{30235} and length({30236})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','58cd8a4c443e43d595a1afc5d045b67b',''),(22218,'({32280}>0 and {32280}<10m) or ({32280}=0 and {32281}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','7419d6e22c5d493ba843adf4f4f85529',''),(22219,'{30238}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','463cc0b4e29d4dddba8ddb16b8faa12b',''),(22220,'{30239}<0 and {30240}>0\r\nand (\r\n{30241}=6 or\r\n{30241}=7 or\r\n{30241}=11 or\r\n{30241}=62 or\r\n{30241}=69 or\r\n{30241}=117\r\n)\r\nand\r\n({30242}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30239}>0 and {30243}>0) or\r\n({30242}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','0203940b08b54db982bafbfef0a8ab3c',''),(22221,'({30244}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30245} or\r\n{30246}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30245}) and\r\n{30245}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30244}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30245} and\r\n{30246}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30245}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','883a34a4a82a47f99b63703e3ecd2106',''),(22222,'{30247}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30248}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30249}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30250}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','af6d0bf9ba9a4402bf9ec52b7bfe998f',''),(22223,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30251}=2 and ({30252}<>{30253})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30251}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','b56d0177668c4803b2de395f12c48070',''),(22224,'{30254}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','afd45d5f0f1b48d68af5e58e5b13f7d2',''),(22225,'{30255}>{$ICMP_LOSS_WARN} and {30255}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','bea20e4b6a634c3bb4c3c3f2c0ae91ce',''),(22226,'{30256}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','30e3c09970614f7eb6434aacdc427fcb',''),(22227,'{30257}<>{30258} and length({30259})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','78efe7ad5d8740f7ae087beb2952f74d',''),(22228,'({32282}>0 and {32282}<10m) or ({32282}=0 and {32283}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','f4c5126396ce4a07b9f0ef82aea599e3',''),(22229,'{30261}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','265226f23bfc4bd58cddd2a154c168ac',''),(22230,'{30262}<0 and {30263}>0\r\nand (\r\n{30264}=6 or\r\n{30264}=7 or\r\n{30264}=11 or\r\n{30264}=62 or\r\n{30264}=69 or\r\n{30264}=117\r\n)\r\nand\r\n({30265}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30262}>0 and {30266}>0) or\r\n({30265}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','0a611eb7adb546bcab8352199c9fc08b',''),(22231,'({30267}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30268} or\r\n{30269}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30268}) and\r\n{30268}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30267}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30268} and\r\n{30269}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30268}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','464770fa9e3b41399da04f251ff3a215',''),(22232,'{30270}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30271}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30272}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30273}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','4bb5165672484ce0bea109fcef1cf62b',''),(22233,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30274}=2 and ({30275}<>{30276})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30274}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','33ce2abc89ee40b2bf88f30b9834ec8c',''),(22234,'{30277}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','9d1eaf8c440842b6867f539d8e4580b9',''),(22235,'{30278}>{$ICMP_LOSS_WARN} and {30278}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','bb1bddbd5b3b4c97a056a3030cb8220c',''),(22236,'{30279}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','4de979003a374346a66e18e0dc0ae8b3',''),(22237,'{30280}<>{30281} and length({30282})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','0b1965fc09b549f8a0301c3b560f6e04',''),(22238,'({32284}>0 and {32284}<10m) or ({32284}=0 and {32285}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','f6de5bd6b737473fa0bb8adcd7388f2f',''),(22239,'{30284}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7b2ebd40ed1f4e72ac77c9bc31eab800',''),(22240,'{30285}<0 and {30286}>0\r\nand (\r\n{30287}=6 or\r\n{30287}=7 or\r\n{30287}=11 or\r\n{30287}=62 or\r\n{30287}=69 or\r\n{30287}=117\r\n)\r\nand\r\n({30288}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30285}>0 and {30289}>0) or\r\n({30288}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','0a6434fa071a47d4bbf9dfb922580cfa',''),(22241,'({30290}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30291} or\r\n{30292}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30291}) and\r\n{30291}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30290}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30291} and\r\n{30292}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30291}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','f07cc9964edc4a819717be63759a150d',''),(22242,'{30293}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30294}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30295}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30296}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','62a5f85871ca4fc3aed8e4cf0423649a',''),(22243,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30297}=2 and ({30298}<>{30299})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30297}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','101e11f167e64235aa2d5f7d06f43548',''),(22244,'{30300}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','c187031a85c340219bf773e53b1eb70b',''),(22245,'{30301}>{$ICMP_LOSS_WARN} and {30301}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','c30d9d87e01d4a4fb5f859b9b96a9597',''),(22246,'{30302}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','71bd6b58f328466fa8855e45f98d9148',''),(22247,'{30303}<>{30304} and length({30305})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','689814337c114068a71c0d510b6ffdee',''),(22248,'({32286}>0 and {32286}<10m) or ({32286}=0 and {32287}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','6919d6afa065438b976979a4f782414e',''),(22249,'{30307}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','dbe7f9e93602427e81932c39b4383974',''),(22250,'{30308}<0 and {30309}>0\r\nand (\r\n{30310}=6 or\r\n{30310}=7 or\r\n{30310}=11 or\r\n{30310}=62 or\r\n{30310}=69 or\r\n{30310}=117\r\n)\r\nand\r\n({30311}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30308}>0 and {30312}>0) or\r\n({30311}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','f65d4d21623e4b0cb8a98f088e304de7',''),(22251,'({30313}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30314} or\r\n{30315}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30314}) and\r\n{30314}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30313}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30314} and\r\n{30315}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30314}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','98c16c4da816482195fc9a3c43f4cc2b',''),(22252,'{30316}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30317}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30318}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30319}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','e24c732a680c4f7fac04eb4fd20e3839',''),(22253,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30320}=2 and ({30321}<>{30322})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30320}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','28bc939657054f55a94e3818cba84344',''),(22254,'{30323}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','99b9920681f941c187f81d1c91755891',''),(22255,'{30324}>{$ICMP_LOSS_WARN} and {30324}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','530db893da94415db5fa5b1f26570bd5',''),(22256,'{30325}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','662e7c6a20bb4038b171f39f88bc5c5a',''),(22257,'{30326}<>{30327} and length({30328})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','ed72b3a73f5d498586ddfe57e9ad8638',''),(22258,'({32288}>0 and {32288}<10m) or ({32288}=0 and {32289}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','3b0a33b89325422c90a05950eb7b4ece',''),(22259,'{30330}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e33c3d29eb9f41b49cc6002a5ee14058',''),(22260,'{30331}<0 and {30332}>0\r\nand (\r\n{30333}=6 or\r\n{30333}=7 or\r\n{30333}=11 or\r\n{30333}=62 or\r\n{30333}=69 or\r\n{30333}=117\r\n)\r\nand\r\n({30334}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30331}>0 and {30335}>0) or\r\n({30334}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','8a7a6eb94ea24a819764bdcc5131238d',''),(22261,'({30336}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30337} or\r\n{30338}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30337}) and\r\n{30337}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30336}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30337} and\r\n{30338}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30337}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','0d59255268064ca68352411117f5e9cf',''),(22262,'{30339}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30340}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30341}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30342}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','062828dbf3964ca9bf6014b15ea13648',''),(22263,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30343}=2 and ({30344}<>{30345})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30343}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','ef94e6ea0f0547ed9b67073d91a745ec',''),(22264,'{30346}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','78f7c3cb9ad94841b6ef337df5a41914',''),(22265,'{30347}>{$ICMP_LOSS_WARN} and {30347}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','899836cd67f74868954af828bcf35521',''),(22266,'{30348}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','f5930e10af6e43d380c97f2522780a8e',''),(22267,'{30349}<>{30350} and length({30351})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','6aeb9e554ba1411f868668b8f31dca49',''),(22268,'({32290}>0 and {32290}<10m) or ({32290}=0 and {32291}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','d893994cfe8145b8bb0cf294b8a49f1f',''),(22269,'{30353}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fea996e6b5e14205ad6e41faa9f53263',''),(22270,'{30354}<0 and {30355}>0\r\nand (\r\n{30356}=6 or\r\n{30356}=7 or\r\n{30356}=11 or\r\n{30356}=62 or\r\n{30356}=69 or\r\n{30356}=117\r\n)\r\nand\r\n({30357}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30354}>0 and {30358}>0) or\r\n({30357}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','775cb415657c4772aa345e886c33af52',''),(22271,'({30359}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30360} or\r\n{30361}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30360}) and\r\n{30360}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30359}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30360} and\r\n{30361}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30360}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','5ca398d5648b46449d93b13ed69d24ab',''),(22272,'{30362}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30363}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30364}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30365}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','51cc89abce1c45f4895d904fbf4c7a73',''),(22273,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30366}=2 and ({30367}<>{30368})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30366}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','89186fdd35cd4300803d8cbfaa86fa71',''),(22274,'{30369}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2759e7d4eb114d0984aff53e6656e57e',''),(22275,'{30370}>{$ICMP_LOSS_WARN} and {30370}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','32d2897f2f1d42b0b2d4f40d6332cf48',''),(22276,'{30371}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','138f10a500aa4b29abf9760c80e22b06',''),(22277,'{30372}<>{30373} and length({30374})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','d6d2aa238d864cc1902b94e44e46b627',''),(22278,'({32292}>0 and {32292}<10m) or ({32292}=0 and {32293}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','40869f938b4f470cad6f5d8996edd088',''),(22279,'{30376}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','9a95ecc339b34b3a8713d62c68e2b330',''),(22280,'{30377}<0 and {30378}>0\r\nand (\r\n{30379}=6 or\r\n{30379}=7 or\r\n{30379}=11 or\r\n{30379}=62 or\r\n{30379}=69 or\r\n{30379}=117\r\n)\r\nand\r\n({30380}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30377}>0 and {30381}>0) or\r\n({30380}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','1ebf4ecd3b254ace99f6738cd066035c',''),(22281,'({30382}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30383} or\r\n{30384}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30383}) and\r\n{30383}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30382}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30383} and\r\n{30384}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30383}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','01d1b416123541eaad013386e1605241',''),(22282,'{30385}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30386}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30387}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30388}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','baa41e89c189448e9d9a5918ef4918be',''),(22283,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30389}=2 and ({30390}<>{30391})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30389}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','c8fd70162f264509a4bd4898015f522f',''),(22284,'{30392}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','8b77ade2f79b4e3bafc22e7d8766e477',''),(22285,'{30393}>{$ICMP_LOSS_WARN} and {30393}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','cf4a28f174764d20953c4dcbca1576b6',''),(22286,'{30394}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','5ab1684fe5f34e3faa06192f47562b86',''),(22287,'{30395}<>{30396} and length({30397})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','a67b112302804d90931ea112d7412aa7',''),(22288,'({32294}>0 and {32294}<10m) or ({32294}=0 and {32295}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','6ca7b6f5acfb499b8ffbf5988a95616c',''),(22289,'{30399}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f0686a8c2a6e42de980d6bca8ce4a0da',''),(22290,'{30400}<0 and {30401}>0\r\nand (\r\n{30402}=6 or\r\n{30402}=7 or\r\n{30402}=11 or\r\n{30402}=62 or\r\n{30402}=69 or\r\n{30402}=117\r\n)\r\nand\r\n({30403}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30400}>0 and {30404}>0) or\r\n({30403}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','d01d880fa506470a85c4219963c6275d',''),(22291,'({30405}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30406} or\r\n{30407}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30406}) and\r\n{30406}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30405}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30406} and\r\n{30407}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30406}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','65d28a326c624b9da28eb0d0477138fb',''),(22292,'{30408}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30409}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30410}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30411}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','1dcf1776170c44b38acb30d3c20f62a8',''),(22293,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30412}=2 and ({30413}<>{30414})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30412}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','0aac9b47a3f04cc7bea4f118e66d2a2e',''),(22294,'{30415}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ad75e791ea804015af4f056851d065e5',''),(22295,'{30416}>{$ICMP_LOSS_WARN} and {30416}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','53146df6198e4aa8a08ee2f5148b9273',''),(22296,'{30417}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','d30292aa239f4b08866dd626bea719d4',''),(22297,'{30418}<>{30419} and length({30420})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','31d043884c104f02aabfc12edc7cca38',''),(22298,'({32296}>0 and {32296}<10m) or ({32296}=0 and {32297}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','d721994d11d04783af8d3a474de35b1c',''),(22299,'{30422}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','5a3c6162200746f2b5fc1df3120dcc40',''),(22300,'{30423}<0 and {30424}>0\r\nand (\r\n{30425}=6 or\r\n{30425}=7 or\r\n{30425}=11 or\r\n{30425}=62 or\r\n{30425}=69 or\r\n{30425}=117\r\n)\r\nand\r\n({30426}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30423}>0 and {30427}>0) or\r\n({30426}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','74b27cf9dbed4239bcbeb3967074fc2f',''),(22301,'({30428}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30429} or\r\n{30430}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30429}) and\r\n{30429}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30428}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30429} and\r\n{30430}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30429}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','487e923c839049718746d1875ffb4152',''),(22302,'{30431}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30432}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30433}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30434}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','fe9c5bef78df4e0b84920a40d1549e6e',''),(22303,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30435}=2 and ({30436}<>{30437})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30435}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','7337464491af47fdae8202c1e68585ac',''),(22304,'{30438}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','9eba3716ff704612a9c498a7b5a72a15',''),(22305,'{30439}>{$ICMP_LOSS_WARN} and {30439}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','c0069ca77aa140d3ad4559979ad0973d',''),(22306,'{30440}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','9b01547e80e84f16b017901233e1fddd',''),(22307,'{30441}<>{30442} and length({30443})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','146922ff45f24d7ea7d3b7b5f0631f77',''),(22308,'({32298}>0 and {32298}<10m) or ({32298}=0 and {32299}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','06c5437331284cf1ae61668b8fd285b5',''),(22309,'{30445}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d51c0c2689a14b41aed889d67ec596df',''),(22310,'{30446}<0 and {30447}>0\r\nand (\r\n{30448}=6 or\r\n{30448}=7 or\r\n{30448}=11 or\r\n{30448}=62 or\r\n{30448}=69 or\r\n{30448}=117\r\n)\r\nand\r\n({30449}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30446}>0 and {30450}>0) or\r\n({30449}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','91828300121c45d49d9ec4b5e61d872f',''),(22311,'({30451}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30452} or\r\n{30453}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30452}) and\r\n{30452}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30451}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30452} and\r\n{30453}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30452}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','8d68e034bf6b4302ad4026fca4fd1e86',''),(22312,'{30454}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30455}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30456}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30457}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','0f981e35c326480585104d8ed108bd70',''),(22313,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30458}=2 and ({30459}<>{30460})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30458}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','532c7b90f432422398ad782959fb330c',''),(22314,'{30461}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','dc51a869c302440ba48d352545782e6e',''),(22315,'{30462}>{$ICMP_LOSS_WARN} and {30462}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','83fa0a00b298491a967e052ec0c3bafe',''),(22316,'{30463}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','7c027442ed3c44a0a26b4f35458a37f9',''),(22317,'{30464}<>{30465} and length({30466})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','0172b76bc48d4dcead140c4880499777',''),(22318,'({32300}>0 and {32300}<10m) or ({32300}=0 and {32301}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','53e737a095a840df9abfcfd9c26007bf',''),(22319,'{30468}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','2cc6310f1a824d40903f497f155a7834',''),(22320,'{30469}<0 and {30470}>0\r\nand (\r\n{30471}=6 or\r\n{30471}=7 or\r\n{30471}=11 or\r\n{30471}=62 or\r\n{30471}=69 or\r\n{30471}=117\r\n)\r\nand\r\n({30472}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30469}>0 and {30473}>0) or\r\n({30472}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','564e8f3f288a40e9926b75b2711f45d1',''),(22321,'({30474}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30475} or\r\n{30476}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30475}) and\r\n{30475}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30474}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30475} and\r\n{30476}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30475}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','25cc75fecfd1499ebc65ea434b98cb18',''),(22322,'{30477}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30478}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30479}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30480}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','4c3aef072fcb47b98f0cdc3b651fae71',''),(22323,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30481}=2 and ({30482}<>{30483})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30481}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','db74692dd86a428fba64e57751fce1ba',''),(22324,'{30484}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','424d07aafe9f4e8c8f647db6a43363d0',''),(22325,'{30485}>{$ICMP_LOSS_WARN} and {30485}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','9d2efd0614ba4e16b3479ed515d3a9a2',''),(22326,'{30486}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','99888c77fc084d43b742a1f156d87832',''),(22327,'{30487}<>{30488} and length({30489})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','61e82ab169374a51a1ebd876cc7813a8',''),(22328,'({32316}>0 and {32316}<10m) or ({32316}=0 and {32317}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','d68e4595fd4c4e5a9307b268cfe06b3e',''),(22329,'{30491}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','cc91cb171901433bbb35752127e54ad0',''),(22330,'{30492}<0 and {30493}>0\r\nand (\r\n{30494}=6 or\r\n{30494}=7 or\r\n{30494}=11 or\r\n{30494}=62 or\r\n{30494}=69 or\r\n{30494}=117\r\n)\r\nand\r\n({30495}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30492}>0 and {30496}>0) or\r\n({30495}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','443260352dec4467b6eafdd4c6a8ba9c',''),(22331,'({30497}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30498} or\r\n{30499}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30498}) and\r\n{30498}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30497}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30498} and\r\n{30499}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30498}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','8b33b079505846558c6ee4f0afb05c5d',''),(22332,'{30500}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30501}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30502}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30503}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','bfc9aaa24f17487184a8b88d4bf310a5',''),(22333,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30504}=2 and ({30505}<>{30506})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30504}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','8e06e74957de4467bb127e6f16cdd84c',''),(22334,'{30507}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','fd05f449cbc64dcba10029c246594568',''),(22335,'{30508}>{$ICMP_LOSS_WARN} and {30508}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','4b2e2d168a0b4da3b5999263f52f3c36',''),(22336,'{30509}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','18f41db36192463eabaa3797034e578a',''),(22337,'{30510}<>{30511} and length({30512})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','27fa16e646224f88ad3b35ce7a71a18a',''),(22338,'({32318}>0 and {32318}<10m) or ({32318}=0 and {32319}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','44d6c66a6a1641f8816031c0d5bf4040',''),(22339,'{30514}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7a7c0c7501ca484491394fe82c75b401',''),(22340,'{30515}<0 and {30516}>0\r\nand (\r\n{30517}=6 or\r\n{30517}=7 or\r\n{30517}=11 or\r\n{30517}=62 or\r\n{30517}=69 or\r\n{30517}=117\r\n)\r\nand\r\n({30518}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30515}>0 and {30519}>0) or\r\n({30518}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','cb39728aac4940dda2b3a307d12be813',''),(22341,'({30520}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30521} or\r\n{30522}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30521}) and\r\n{30521}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30520}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30521} and\r\n{30522}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30521}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','303873dbb6224b4abc2f678100a72eda',''),(22342,'{30523}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30524}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30525}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30526}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','0e0544466c6845349078ca2a72d2cf6c',''),(22343,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30527}=2 and ({30528}<>{30529})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30527}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','efa56904fcf54fa5bbd0ba21381dc415',''),(22344,'{30530}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','8688cff304604fd7b015e92ef9f98647',''),(22345,'{30531}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','5b86c558f99d4ff5a8abca830df6e86e',''),(22346,'{30532}>{$ICMP_LOSS_WARN} and {30532}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','421d12d2c2a0405ba31c869c4d481b70',''),(22347,'{30533}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','4d1df00b9476483fa77e6064708abf58',''),(22348,'{30534}<>{30535} and length({30536})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','367bce2d38fe4ecbbe23c34bc7ec6226',''),(22349,'({32320}>0 and {32320}<10m) or ({32320}=0 and {32321}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','63b45803131d4391abfa313a222339e5',''),(22350,'{30538}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7b533ce3df8c4405a04f90dd1e850a32',''),(22351,'{30539}<0 and {30540}>0\r\nand (\r\n{30541}=6 or\r\n{30541}=7 or\r\n{30541}=11 or\r\n{30541}=62 or\r\n{30541}=69 or\r\n{30541}=117\r\n)\r\nand\r\n({30542}<>2)','Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30539}>0 and {30543}>0) or\r\n({30542}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','ebcdfd6d8c974c06810375d98e7d76c7',''),(22352,'({30544}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30545} or\r\n{30546}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30545}) and\r\n{30545}>0','Interface {#IFDESCR}: High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30544}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30545} and\r\n{30546}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30545}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','ae472f99d7ab480c947293f09c4b9dbb',''),(22353,'{30547}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30548}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFDESCR}: High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30549}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30550}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFDESCR}: High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','ec28cbfaaf6245a194fe001555d05e5c',''),(22354,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30551}=2 and ({30552}<>{30553})','Interface {#IFDESCR}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30551}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','ce16733da6d24beb9cea97d61368e21b',''),(22355,'{30554}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2a6711992f354095b056b628be78022c',''),(22356,'{30555}>{$ICMP_LOSS_WARN} and {30555}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','8e66ba0787b54af2897dd348e5453f10',''),(22357,'{30556}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','4ae253aa403a42ad8cd4721e2ffdfbca',''),(22358,'{30557}<>{30558} and length({30559})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','15523bce03a24cd6a4818ab655d1d2ad',''),(22359,'({32322}>0 and {32322}<10m) or ({32322}=0 and {32323}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','2d9ed5a3b714461bbcdc4c530f955e5b',''),(22360,'{30561}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7735f20ab7fd40b8b34cead6cb306b30',''),(22361,'{30562}<0 and {30563}>0\r\nand (\r\n{30564}=6 or\r\n{30564}=7 or\r\n{30564}=11 or\r\n{30564}=62 or\r\n{30564}=69 or\r\n{30564}=117\r\n)\r\nand\r\n({30565}<>2)','Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30562}>0 and {30566}>0) or\r\n({30565}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','9ccbb6859cd7422684e1946c1e321b3c',''),(22362,'({30567}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30568} or\r\n{30569}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30568}) and\r\n{30568}>0','Interface {#IFDESCR}: High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30567}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30568} and\r\n{30569}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30568}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','80e37d44eddf49c89b39dacc8c88ac07',''),(22363,'{30570}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30571}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFDESCR}: High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30572}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30573}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFDESCR}: High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','3d7c8f98d0c447038c630f4e2ad81c06',''),(22364,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30574}=2 and ({30575}<>{30576})','Interface {#IFDESCR}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30574}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','c360a22671ea4dcda48fc49ec7847c2d',''),(22365,'{30577}=0','Zabbix agent is not available','',0,0,3,0,'For passive checks only the availability of the agent(s) and a host is used with {$AGENT.TIMEOUT} as the time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','f0b9ecafede8476b94fd8dcab74cea87',''),(22366,'{30578}=0','Zabbix agent is not available','',0,0,3,0,'For passive checks only the availability of the agents and a host is used with {$AGENT.TIMEOUT} as the time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','fd9d36aaedff45f59017b1e714a5db69',''),(22367,'{30579}=0','Zabbix agent is not available','',0,0,3,0,'For passive checks only the availability of the agents and a host is used with {$AGENT.TIMEOUT} as the time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','ce008290ad6341b98386adf9ea5c315b',''),(22368,'{30580}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','b9bdcf42f54a409a9a9a616dbd0eaed2',''),(22369,'{30581}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','8cf253ca3eea4109a90443f9cb76fc5c',''),(22370,'{30582}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','b4e904559b694df0ad45bcce7930c3a6',''),(22371,'{30583}<>{30584} and length({30585})>0','System name has changed','',0,0,1,0,'The name of the system has changed. `Ack` to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','371a12f95a26438d8da659c84364631b',''),(22372,'{30586}=0','System time is out of sync','',0,0,2,0,'The host\'s system time is different from Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','fb77b6ac381c4b5289584bd91e7da7d5',''),(22373,'{30587}<>{30588} and length({30589})>0','Operating system description has changed','',0,0,1,0,'The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Ack to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'','b1998f98c06b49dd8d71e1c6df409371',''),(22374,'{30590}<10m','has been restarted','',0,0,2,0,'The host uptime is less than 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','1dbab80d7b6847e5b5a676cffba0fd1d',''),(22375,'{30591}<>{30592}','/etc/passwd has been changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','3a764881727b4e7eb01e137ccfc968a2',''),(22376,'{30593}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','cfd395b1cde74ef18a5e5f840bd5142a',''),(22377,'{30594}=0','Zabbix agent is not available','',0,0,3,0,'For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','93594214371b4dc88b41663cad8537f0',''),(22378,'{30595}/{30596}*100>80','Getting closer to process limit','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.',0,'Getting closer to process limit (over 80% used)','ae5269e17d434927bfd6edc09a9a1f4d',''),(22379,'{30947}<{$SWAP.PFREE.MIN.WARN} and {30948}>0','High swap space usage','',0,0,2,0,'If there is no swap configured, this trigger is ignored.','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','f49fc01c5ac945d59455563bdbcc6469',''),(22380,'{30951}<{$MEMORY.AVAILABLE.MIN} and {30952}>0','Lack of available memory','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','686470cef97f48f6b017e9fc7a078afe',''),(22381,'{30601}/{30602}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {30603}>0\r\nand {30604}>0','Load average is too high','',0,0,3,0,'The load average per CPU is too high. The system may be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}',0,'Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','695f0c352377409d95aca3fe76d1cae2',''),(22396,'{30985}<0 and {30986}>0\r\nand\r\n({30987}=6 or {30987}=1)\r\nand\r\n({30988}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge (Ack) to close the problem manually.','',NULL,0,0,2,1,'({30985}>0 and {30989}>0) or\r\n({30988}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','2ffdc1d5a318492bb497facd263843bd',''),(22397,'{30634}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30635}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}: High error rate','',0,0,2,0,'It recovers when it is below 80% of the `{$IF.ERRORS.WARN:\"{#IFNAME}\"}` threshold','',NULL,0,0,2,1,'{30636}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30637}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','ad50aecf8e7746b2a85f24507f1d511d',''),(22398,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30638}=2 and ({30639}<>{30640})','Interface {#IFNAME}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. It can be triggered if the operations status is down.\r\n2. `{$IFCONTROL:\"{#IFNAME}\"}=1` - a 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.\r\n3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the \'eternal off\' interfaces.)\r\n\r\nWARNING: if closed manually - it will not fire again on the next poll, because of .diff.','',NULL,0,0,2,1,'{30638}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','4d7f18ca132340b885c0692464dc429f',''),(22399,'{30641} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} or {30642} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read/write request responses are too high','',0,0,2,0,'This trigger might indicate the disk `{#DEVNAME}` saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m)','eb6230f786d04b658ce62c30a9309a34',''),(22400,'{31359}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31360}-{31361})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31362}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match:\r\n 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}`.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than `{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}`;\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','9abccdfff8be4e14967ac917ca09afe1',''),(22401,'{31363}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31364}-{31365})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31366}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match:\r\n 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}`.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than `{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}`;\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','d6d348ea500c428da6ba718816c4b048',''),(22402,'{30651}<{$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,3,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nThe following error messages may be returned as symptoms, even though the free space is available:\r\n - \"No space left on device\";\r\n - \"Disk is full\".','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}%)','115b2d37807f476faf6d02ef406acabd',''),(22403,'{30652}<{$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,2,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nThe following error messages may be returned as symptoms, even though the free space is available:\r\n - \"No space left on device\";\r\n - \"Disk is full\".','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}%)','ea012c7295344ffe8c66f7ea54d81042',''),(22412,'{30676}=1','Zabbix agent is not available','',0,0,3,0,'For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','c1b9fdbe6a584d2cb25ff7077c667af1',''),(22413,'{30677}<{$KERNEL.MAXFILES.MIN}','Configured max number of open filedescriptors is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN})','a7716b62422243b991a2697752d7cb1f',''),(22414,'{30678}<{$KERNEL.MAXPROC.MIN}','Configured max number of processes is too low','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN})','740ed348fb1d41dca7c410123b668a48',''),(22415,'{30679}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','e299778a6fcc4805bd5806f3b2ffe1c2',''),(22416,'{30680}<>{30681} and length({30682})>0','System name has changed','',0,0,1,0,'The name of the system has changed. `Ack` to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','c2fc80044fa94f0d97c72bd1d749b731',''),(22417,'{30683}=0','System time is out of sync','',0,0,2,0,'The host\'s system time is different from Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','10f29c3898cf41a0a2551349cd052413',''),(22418,'{30684}<>{30685} and length({30686})>0','Operating system description has changed','',0,0,1,0,'The description of the operating system has changed. Possible reasons are that the system has been updated or replaced. Ack to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'','e27cb7063ca841a2b78aa547ec0d001c',''),(22419,'{30687}<10m','has been restarted','',0,0,2,0,'The host uptime is less than 10 minutes','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','64dbab85caf749f59f3da0c374746bc2',''),(22420,'{30688}<>{30689}','/etc/passwd has been changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','c5a76894508c4f0e9dcc9f70e6f39f49',''),(22421,'{30690}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','fb368aa704064a44b9a4ed8c129cf3e8',''),(22422,'{30691}/{30692}*100>80','Getting closer to process limit','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit.',0,'Getting closer to process limit (over 80% used)','fa21b02aebe143b192a20cd9403a68d0',''),(22423,'{30959}<{$SWAP.PFREE.MIN.WARN} and {30960}>0','High swap space usage','',0,0,2,0,'If there is no swap configured, this trigger is ignored.','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','722692e0703e4609852439a9b751826d',''),(22424,'{30963}<{$MEMORY.AVAILABLE.MIN} and {30964}>0','Lack of available memory','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','b3f51f3c63024d209fd01e17293127a6',''),(22425,'{30697}/{30698}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {30699}>0\r\nand {30700}>0','Load average is too high','',0,0,3,0,'The load average per CPU is too high. The system may be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}',0,'Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','72825a0c706043429ed1ff6656763052',''),(22426,'{31009}<0 and {31010}>0\r\nand\r\n({31011}=6 or {31011}=1)\r\nand\r\n({31012}<>2)','Interface {#IFNAME}: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge (Ack) to close the problem manually.','',NULL,0,0,2,1,'({31009}>0 and {31013}>0) or\r\n({31012}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','c0fd4630351f424aa6c8b7f2e85f0f9e',''),(22427,'{30705}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30706}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}: High error rate','',0,0,2,0,'It recovers when it is below 80% of the `{$IF.ERRORS.WARN:\"{#IFNAME}\"}` threshold','',NULL,0,0,2,1,'{30707}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30708}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','58f4ba4b2795407896752da57462629d',''),(22428,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30709}=2 and ({30710}<>{30711})','Interface {#IFNAME}: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. It can be triggered if the operations status is down.\r\n2. `{$IFCONTROL:\"{#IFNAME}\"}=1` - a 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.\r\n3. `{TEMPLATE_NAME:METRIC.diff()}=1` - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the \'eternal off\' interfaces.)\r\n\r\nWARNING: if closed manually - it will not fire again on the next poll, because of .diff.','',NULL,0,0,2,1,'{30709}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','1b8e42925e1b48969f35d91800fe5229',''),(22429,'{30712} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} or {30713} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read/write request responses are too high','',0,0,2,0,'This trigger might indicate the disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"} ms for 15m)','fd5732c3cf5249f9a05e3b6cedc2d2fd',''),(22430,'{31375}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31376}-{31377})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31378}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match:\r\n 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}`.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than `{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}`;\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','cf4079132a9d4124aa5e29d6839ae35b',''),(22431,'{31379}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31380}-{31381})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31382}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match:\r\n 1. The first condition - utilization of the space should be above `{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}`.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than `{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}`;\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','b56b8cad3bb34fab8132e07a32c432d9',''),(22432,'{30722}<{$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,3,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nThe following error messages may be returned as symptoms, even though the free space is available:\r\n - \"No space left on device\";\r\n - \"Disk is full\".','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}%)','98e196ffb6f0422baf007fcff5f45b60',''),(22433,'{30723}<{$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,2,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nThe following error messages may be returned as symptoms, even though the free space is available:\r\n - \"No space left on device\";\r\n - \"Disk is full\".','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}%)','a17e14a65c53447a9ce607799a62e7dd',''),(22434,'{30724}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','28927c3715714a77a259d48943ddb8fe',''),(22435,'{30725}>{$ICMP_LOSS_WARN} and {30725}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','f6d63c03e6f34888897464102fa369ec',''),(22436,'{30726}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','1c1b86790d6442e59f50d94f9844c337',''),(22437,'{30727}<>{30728} and length({30729})>0','System name has changed','',0,0,1,0,'The name of the system has changed. Ack to close the problem manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','eeb0355174d74892a4e3a078e6ac7952',''),(22438,'({32352}>0 and {32352}<10m) or ({32352}=0 and {32353}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','e129fb90ec084a83806aec27141cd6eb',''),(22439,'{30731}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','063b87d246b04e74a439114a05f00fe5',''),(22440,'{30732}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','63d99e49b3584fb2bf61a7d56725fb3c',''),(22441,'{30973}<{$SWAP.PFREE.MIN.WARN} and {30974}>0','High swap space usage','',0,0,2,0,'If there is no swap configured, this trigger is ignored.','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','8d66563ff7744cd6847325d473eaacfe',''),(22442,'{30977}<{$MEMORY.AVAILABLE.MIN} and {30978}>0','Lack of available memory','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','b0a04a6a01854d0eb6f9f225c1108261',''),(22443,'{30737}/{30738}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {30739}>0\r\nand {30740}>0','Load average is too high','',0,0,3,0,'The load average per CPU is too high. The system may be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}',0,'Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','33df3354161047f0b47ad7736b70a302',''),(22444,'{30741}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','34b29a2e43b347d0ada6b80a472a659e',''),(22445,'{30742}<0 and {30743}>0\r\nand (\r\n{30744}=6 or\r\n{30744}=7 or\r\n{30744}=11 or\r\n{30744}=62 or\r\n{30744}=69 or\r\n{30744}=117\r\n)\r\nand\r\n({30745}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Acknowledge (Ack) to close the problem manually.','',NULL,0,0,2,1,'({30742}>0 and {30746}>0) or\r\n({30745}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','02387536c92f449384c23a0744e71ee3',''),(22446,'({30747}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30748} or\r\n{30749}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30748}) and\r\n{30748}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The utilization of the network interface is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30747}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30748} and\r\n{30749}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30748}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','efe5516d1c164a8cb243c4806b9684a2',''),(22447,'{30750}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30751}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'It recovers when it is below 80% of the {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30752}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30753}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','dbbd6222837345b891dd613f6d40f98f',''),(22448,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30754}=2 and ({30755}<>{30756})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. It can be triggered if the operations status is down.\r\n2. {$IFCONTROL:\"{#IFNAME}\"}=1 - a 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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - the trigger fires only if the operational status was up to (1) sometime before (so, do not fire for the \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - it will not fire again on the next poll, because of .diff.','',NULL,0,0,2,1,'{30754}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','038c4ebc6bdf48f69b60fca856318638',''),(22449,'{30757}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Please check autonegotiation settings and cabling','',NULL,0,0,2,0,'',0,'',1,'',0,'','1e1f12c0cf744fd3aaac6570325bd661',''),(22450,'{31391}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31392}-{31393})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31394}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match:\r\n 1. The first condition - utilization of space should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"};\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','4e84d5b0e3bb4729a6eabd5882d2d603',''),(22451,'{31395}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31396}-{31397})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31398}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match:\r\n 1. The first condition - utilization of space should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n 2. The second condition should be one of the following:\r\n - the disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"};\r\n - the disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','210ae86feef14fa0a82c97331e522937',''),(22452,'{30766}<{$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,3,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nFollowing error messages may be returned as symptoms, even though the free space is available:\r\n - \'No space left on device\';\r\n - \'Disk is full\'.','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:\"{#FSNAME}\"}%)','c2a464a9d8f24b1f96251feabeec8b6a',''),(22453,'{30767}<{$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}','{#FSNAME}: Running out of free inodes','',0,0,2,0,'It may become impossible to write to a disk if there are no index nodes left.\r\nFollowing error messages may be returned as symptoms, even though the free space is available:\r\n - \'No space left on device\';\r\n - \'Disk is full\'.','',NULL,0,0,2,0,'',0,'',0,'Free inodes: {ITEM.LASTVALUE1}',0,'{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:\"{#FSNAME}\"}%)','396da67ae447497781d9f37215490b71',''),(22454,'{30768}=0','Zabbix agent is not available','',0,0,3,0,'For passive checks only the availability of the agents and a host is used with {$AGENT.TIMEOUT} as the time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','0766e9c2a02f46e7adbb86dbef67556f',''),(22455,'{30769}=0','Zabbix agent is not available','',0,0,3,0,'For passive checks only the availability of the agents and a host is used with {$AGENT.TIMEOUT} as the time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','d046f431e11d4bd7be42e66e14a21663',''),(22456,'{30770}=0','Zabbix agent is not available','',0,0,3,0,'For passive checks only the availability of the agents and a host is used with {$AGENT.TIMEOUT} as the time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','4ca39fa4a86c45e19e03eff89edd239b',''),(22457,'{30771}<{$MEM.PAGE_TABLE_CRIT.MIN}','Number of free system page table entries is too low','',0,0,2,0,'The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak.','',NULL,0,0,0,0,'',0,'',0,'',0,'Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','e3118e2e6109460f80cc2d56795ed42f',''),(22458,'{30772}>{$MEM.PAGE_SEC.CRIT.MAX}','The Memory Pages/sec is too high','',0,0,2,0,'The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','',NULL,0,0,0,0,'',0,'',0,'',0,'The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','ab4c9a66d16f42e6a32f6144f4d2a3ca',''),(22459,'{30773}>{$CPU.INTERRUPT.CRIT.MAX}','CPU interrupt time is too high','',0,0,2,0,'\"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%.\"\r\nThe Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','f67bedcb282349b2aac052baf4963480',''),(22460,'{30774}>{$CPU.PRIV.CRIT.MAX}','CPU privileged time is too high','',0,0,2,0,'The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','4d099256b3ba42f1b90143e2014900dd',''),(22461,'{30775}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','806aa232f56640ab98aacc79491fc4d7',''),(22462,'{30776}<>{30777} and length({30778})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','6b50d36a4e29468a9546e880f3004399',''),(22463,'{30779}=0','System time is out of sync','',0,0,2,0,'The host system time is different from the Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','37ca2366c8474cc8a49a605e93377601',''),(22464,'{30780}<10m','Host has been restarted','',0,0,2,0,'The device uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Host has been restarted (uptime < 10m)','d27b9eab4034439f91dff41fe6f043ab',''),(22465,'{30781}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','b442993bb2a6404a8ebcb7be39d16ce6',''),(22466,'{30782}=0','Zabbix agent is not available','',0,0,3,0,'For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (for {$AGENT.TIMEOUT})','05beb4500cae480892fad0739f99807d',''),(22467,'{30783} - {30784} * 2 > {$CPU.QUEUE.CRIT.MAX}','CPU queue length is too high','',0,0,2,0,'The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','8b1baeb26e154f99aefeaba3ea4fa63b',''),(22468,'{32555}<{$SWAP.PFREE.MIN.WARN} and {32556}>0','High swap space usage','',0,0,2,0,'This trigger is ignored, if there is no swap configured','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','7c23e03060ce42b094aac2f8aea1a9ad',''),(22469,'{30787}<0 and\r\n{30788}>0 and\r\n{30789}=2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','b2191521a7a54985a19740e3ee2674f2',''),(22470,'({30790}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30791} or\r\n{30792}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30791}) and\r\n{30791}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30790}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30791} and\r\n{30792}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30791}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','c93048183c3942808c60d6dd61963bc0',''),(22471,'{30793}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30794}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30795}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30796}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','a4fa6e161bb64b98b25b1a2a501a83f4',''),(22472,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30797}<>2 and ({30798}<>{30799})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:\\\"{#IFNAME}\\\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.\r\n No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30797}=2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','a9b1c61ac4a6481aab93d40c6fb93462',''),(22473,'{30800}>{$VFS.DEV.UTIL.MAX.WARN}','{#DEVNAME}: Disk is overloaded','',0,0,2,0,'The disk appears to be under heavy load','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','4777fa000fa9460baab1fd7bc7e40604',''),(22474,'{30801} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"}s for 15m','85a8c002b3d84121ad2e73c8aced0987',''),(22475,'{30802} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk write request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}s for 15m)','db6809fd85e241948fb5ef76cb7cc17b',''),(22476,'{30803}<>0','\"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME}) is not running','',0,0,3,0,'The service has a state other than \"Running\" for the last three times.','',NULL,0,0,2,0,'',0,'',0,'',0,'\"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','4708592603db4577b26cb6daade41754',''),(22477,'{31399}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31400}-{31401})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31402}<1d)','{#FSLABEL}({#FSNAME}): Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSLABEL}({#FSNAME}): Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','d3e99134a1d04894918f2c92ff38cb92',''),(22478,'{31403}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31404}-{31405})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31406}<1d)','{#FSLABEL}({#FSNAME}): Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSLABEL}({#FSNAME}): Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','97115bbe4f6b4a8cb2873b8fa01f95d3',''),(22479,'{30812}=1','Zabbix agent is not available','',0,0,3,0,'For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold.','',NULL,0,0,0,0,'',0,'',1,'',0,'Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT})','e77c3b1849b64d45a3078794057a2582',''),(22480,'{30813}<{$MEM.PAGE_TABLE_CRIT.MIN}','Number of free system page table entries is too low','',0,0,2,0,'The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak.','',NULL,0,0,0,0,'',0,'',0,'',0,'Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m)','37d6b965dd184b66b37018d4375d3e56',''),(22481,'{30814}>{$MEM.PAGE_SEC.CRIT.MAX}','The Memory Pages/sec is too high','',0,0,2,0,'The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak.','',NULL,0,0,0,0,'',0,'',0,'',0,'The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m)','05da8b30835e440fb1228fb9a0bc24a4',''),(22482,'{30815}>{$CPU.INTERRUPT.CRIT.MAX}','CPU interrupt time is too high','',0,0,2,0,'\"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%.\"\r\nThe Processor Information\\% Interrupt Time is the time the processor spends receiving and servicing\r\nhardware interrupts during sample intervals. This value is an indirect indicator of the activity of\r\ndevices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication\r\nlines, network interface cards and other peripheral devices. This is an easy way to identify a potential\r\nhardware failure. This should never be higher than 20%.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m)','2eb661f6a42f40ce8cc25cef542763a9',''),(22483,'{30816}>{$CPU.PRIV.CRIT.MAX}','CPU privileged time is too high','',0,0,2,0,'The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m)','cee69c70da6a415186b922305d0cabdc',''),(22484,'{30817}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ab3cbf18088a4d7a82f6c678ce49ffce',''),(22485,'{30818}<>{30819} and length({30820})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','3aea75603e584d2f9dc96e7f3cc2b7fa',''),(22486,'{30821}=0','System time is out of sync','',0,0,2,0,'The host system time is different from the Zabbix server time.','',NULL,0,0,0,0,'',0,'',1,'',0,'System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s)','c5c52f75d4214a68b095e8bf55a6a934',''),(22487,'{30822}<10m','Host has been restarted','',0,0,2,0,'The device uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Host has been restarted (uptime < 10m)','4114e248a3b347f4a2fefc7816f2e940',''),(22488,'{30823}>{$MEMORY.UTIL.MAX}','High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','610a0893be834c11b35a0472dcabab7c',''),(22489,'{30824} - {30825} * 2 > {$CPU.QUEUE.CRIT.MAX}','CPU queue length is too high','',0,0,2,0,'The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }.','',NULL,0,0,0,0,'',0,'',0,'',0,'CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m)','384393bb344e497382ea10e7fce7fcb3',''),(22490,'{32557}<{$SWAP.PFREE.MIN.WARN} and {32558}>0','High swap space usage','',0,0,2,0,'This trigger is ignored, if there is no swap configured','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','ac93631f79584e2d9909f4bb2f12c866',''),(22491,'{30828}<0 and\r\n{30829}>0 and\r\n{30830}=2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','27a60f88cbd0457291153105ace75e4d',''),(22492,'({30831}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30832} or\r\n{30833}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30832}) and\r\n{30832}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30831}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30832} and\r\n{30833}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30832}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','a9ead42a45f5496a84a6a2bc619cece4',''),(22493,'{30834}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30835}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30836}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30837}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','1945fd9bc15c471fb050d0a5430245a6',''),(22494,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30838}<>2 and ({30839}<>{30840})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$IFCONTROL:\\\"{#IFNAME}\\\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.\r\n No new trigger will be fired if this interface is down.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30838}=2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','f9d1ac2feb0e43249cc849166ca9014c',''),(22495,'{30841}>{$VFS.DEV.UTIL.MAX.WARN}','{#DEVNAME}: Disk is overloaded','',0,0,2,0,'The disk appears to be under heavy load','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m)','00031ae791d6424dbd29c91be91a249f',''),(22496,'{30842} > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk read request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:\"{#DEVNAME}\"}s for 15m','f6c28fa8eef542a786b29d745dd2e56f',''),(22497,'{30843} > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}','{#DEVNAME}: Disk write request responses are too high','',0,0,2,0,'This trigger might indicate disk {#DEVNAME} saturation.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:\"{#DEVNAME}\"}s for 15m)','9a0c7aa60e0e40d8abec9be6d6d49190',''),(22498,'{30844}<>0','\"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME}) is not running','',0,0,3,0,'The service has a state other than \"Running\" for the last three times.','',NULL,0,0,2,0,'',0,'',0,'',0,'\"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME})','c6f2c1c32cdf401091e4439624a24fab',''),(22499,'{31407}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31408}-{31409})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31410}<1d)','{#FSLABEL}({#FSNAME}): Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\nSecond condition should be one of the following:\r\n- The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n- The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSLABEL}({#FSNAME}): Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','5bed682545044584852888d96454df86',''),(22500,'{31411}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31412}-{31413})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31414}<1d)','{#FSLABEL}({#FSNAME}): Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\nSecond condition should be one of the following:\r\n- The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n- The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSLABEL}({#FSNAME}): Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','1e5e9718c5a14099b9421ff7956b2f33',''),(22501,'{30853}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','08e22bd77606469d9e03183ec70dc89d',''),(22502,'{30854}>{$ICMP_LOSS_WARN} and {30854}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','fa81e50132464ec486ea72929d18d778',''),(22503,'{30855}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','fba819f734de4b469fb7851501e55b21',''),(22504,'{30856}>{$CPU.UTIL.CRIT}','High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','ad2261f1ab77449cb1279725e8cf02f9',''),(22505,'{30857}<>{30858} and length({30859})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','e257b5cf5d9949028c690722e4153612',''),(22506,'({32354}>0 and {32354}<10m) or ({32354}=0 and {32355}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','b7a0b390f8844d2aa05ee849d12495f7',''),(22507,'{30861}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a20254c09f7a4d4d9793da7b075121f3',''),(22508,'{30862}<0 and {30863}>0\r\nand (\r\n{30864}=6 or\r\n{30864}=7 or\r\n{30864}=11 or\r\n{30864}=62 or\r\n{30864}=69 or\r\n{30864}=117\r\n)\r\nand\r\n({30865}<>2)','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({30862}>0 and {30866}>0) or\r\n({30865}=2)',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','fe3e2d20c6eb475ba9f0e8f0c5766720',''),(22509,'({30867}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30868} or\r\n{30869}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{30868}) and\r\n{30868}>0','Interface {#IFNAME}({#IFALIAS}): High bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{30867}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30868} and\r\n{30869}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{30868}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','5ab179badc3747438cf988c437b7b735',''),(22510,'{30870}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}\r\nor {30871}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold','',NULL,0,0,2,1,'{30872}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8\r\nand {30873}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','8acdf247d86b4b2785c92266291682ac',''),(22511,'{$IFCONTROL:\"{#IFNAME}\"}=1 and {30874}=2 and ({30875}<>{30876})','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.\r\n3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire \'ethernal off\' interfaces.)\r\n\r\nWARNING: if closed manually - won\'t fire again on next poll, because of .diff.','',NULL,0,0,2,1,'{30874}<>2 or {$IFCONTROL:\"{#IFNAME}\"}=0',0,'',1,'Current state: {ITEM.LASTVALUE1}',0,'','101b888ea92348689bbc499bbe15b212',''),(22512,'{31415}>{$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"} and\r\n(({31416}-{31417})<{$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"} or {31418}<1d)','{#FSNAME}: Disk space is critically low','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.CRIT:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:\"{#FSNAME}\"}%)','597ea2f6059746c0b2e5b7312f764224',''),(22513,'{31419}>{$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"} and\r\n(({31420}-{31421})<{$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"} or {31422}<1d)','{#FSNAME}: Disk space is low','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}.\r\n Second condition should be one of the following:\r\n - The disk free space is less than {$VFS.FS.FREE.MIN.WARN:\"{#FSNAME}\"}.\r\n - The disk will be full in less than 24 hours.','',NULL,0,0,2,0,'',0,'',1,'Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1})',0,'{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:\"{#FSNAME}\"}%)','028b24edaf9c4640a2316845f50a4a7e',''),(22514,'{30885}>{$MEMORY.UTIL.MAX}','{#MEMNAME}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','ab4b4ad08664454096f5e2cf3b7da1e9',''),(22515,'{30886}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ef6b5dc40f9a49599aae97c2cf68d3cb',''),(22516,'{30887}>{$ICMP_LOSS_WARN} and {30887}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','c9765f7f271d46c99ad7dd45efa79849',''),(22517,'{30888}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','b8815a9e952047e09d1e657cea5d538e',''),(22518,'{30889}<>{30890} and length({30891})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','72a31faa805b40e795a57649c724da1e',''),(22519,'({32378}>0 and {32378}<10m) or ({32378}=0 and {32379}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','0e3713bdf52e40d692cf256ac2a01988',''),(22520,'{30893}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b0c4103eac9447ee9f7f31627baf4eea',''),(22521,'{30894}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','826eb817329249f59b7989c92ca62d99',''),(22522,'{30895}>{$ICMP_LOSS_WARN} and {30895}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','4fb4b0022ca3433c8da1402f1d996760',''),(22523,'{30896}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','bb13f4d369294c0d83f8e6d888cbb062',''),(22524,'{30897}<>{30898} and length({30899})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','5266fcf7c9db457885c219385cfd5025',''),(22525,'({32380}>0 and {32380}<10m) or ({32380}=0 and {32381}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','d33ca3f0d2f14feca01dce7bdf476776',''),(22526,'{30901}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e778b1ae80174f7aa82085b4882e1160',''),(22527,'{30902}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','301541972752471e86046ce494a2febb',''),(22528,'{30903}>{$ICMP_LOSS_WARN} and {30903}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','e051db53cf32406bb0d5ff9cc8d5ce7b',''),(22529,'{30904}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','a11942dac3504b64977c2de3e575d2eb',''),(22530,'{30905}<>{30906} and length({30907})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','3544e4ac11b44d14a6161523081c470e',''),(22531,'({32384}>0 and {32384}<10m) or ({32384}=0 and {32385}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','a933ba0e5c7f4e908afaba4381f65482',''),(22532,'{30909}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','3c487a6b20c746eca9a7efc6058a60d9',''),(22533,'{30910}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','a6e3c67a99104c6f8672e3826cba009f',''),(22534,'{30911}>{$ICMP_LOSS_WARN} and {30911}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','145ea57d03d3460cb86272493e99356a',''),(22535,'{30912}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','cd49c04001c74051b585f519503861d0',''),(22536,'{30913}<>{30914} and length({30915})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','ce1b064b2a07450d9b51b6b12bd752a9',''),(22537,'({32394}>0 and {32394}<10m) or ({32394}=0 and {32395}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','c0efbe61effc494a970e0e02b9ce8f55',''),(22538,'{30917}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','22ae441fffdd48919be0041e1507a479',''),(22539,'{30918}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','755a4c5e809d418cbb1162102b0d1c26',''),(22540,'{30919}>{$ICMP_LOSS_WARN} and {30919}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','0492380bc6374f24b92b4661b27d8f2c',''),(22541,'{30920}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','a869db9f341c479c80dca50bac0ff309',''),(22542,'{30921}<>{30922} and length({30923})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','df3c9e64b0f844ddac8f40f6df956595',''),(22543,'({32404}>0 and {32404}<10m) or ({32404}=0 and {32405}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','261749b9936c4a26b48d660f01435fb7',''),(22544,'{30925}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8870beab300f41ea8d54619fd2bf0371',''),(22545,'{30926}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','937225d93eea44b3a8328eee03cf66f0',''),(22546,'{30927}>{$ICMP_LOSS_WARN} and {30927}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','ec37a141b33c46308b8d810069ce9142',''),(22547,'{30928}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','0541700de60549da8439f9b75cf83e7f',''),(22548,'{30929}<>{30930} and length({30931})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','188852025e644d5ab583f9d7a9dea06c',''),(22549,'({32521}>0 and {32521}<10m) or ({32521}=0 and {32522}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','7dd529ec3f1a4a59846a3a76536a7fa0',''),(22550,'{30933}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fbec2f12ac244723bb31dec5efcc6f85',''),(22551,'{30934}=0','Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','680c72ab6bb441779553b198081e3bf4',''),(22552,'{30935}>{$ICMP_LOSS_WARN} and {30935}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','e2e4bfca2d0c4f8ebd64bef322d2a368',''),(22553,'{30936}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','b6fb489c6a624b2994c5e50ba75539b2',''),(22554,'{30937}<>{30938} and length({30939})>0','System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','07b7a49bffea4c03a022eed632754f47',''),(22555,'({32523}>0 and {32523}<10m) or ({32523}=0 and {32524}<10m)','Host has been restarted','',0,0,2,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted (uptime < 10m)','37aab043ea474548ab1e54e504720bed',''),(22556,'{30941}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','caeb9732846b4ae586ee103ac0c4a65b',''),(22557,'{30943}>{$TIKV.PENDING_COMMANDS.MAX.WARN}','TiKV: Too many pending commands','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'TiKV: Too many pending commands (over {$TIKV.PENDING_COMMANDS.MAX.WARN} for 5m)','0f21c02b8e1c45d9bbe0c3313cea1a23',''),(22558,'({31000}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31001} or\r\n{31002}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31001}) and\r\n{31001}>0','Interface {#IFNAME}: High bandwidth usage','',0,0,2,0,'The utilization of the network interface is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{31000}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31001} and\r\n{31002}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31001}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','f64186d30b4e4c4281fce84349cbd646',''),(22559,'({31003}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31004} or\r\n{31005}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31004}) and\r\n{31004}>0','Interface {#IFNAME}: High bandwidth usage','',0,0,2,0,'The utilization of the network interface is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{31003}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31004} and\r\n{31005}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31004}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','678d795a043a4f5a84fc9690d0d29783',''),(22561,'({31019}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31020} or\r\n{31021}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31020}) and\r\n{31020}>0','Interface {#IFNAME}: High bandwidth usage','',0,0,2,0,'The utilization of the network interface is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{31019}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31020} and\r\n{31021}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31020}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','5370cb085c454077a2dd6c39890f706a',''),(22562,'({31022}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31023} or\r\n{31024}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31023}) and\r\n{31023}>0','Interface {#IFNAME}: High bandwidth usage','',0,0,2,0,'The utilization of the network interface is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{31022}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31023} and\r\n{31024}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31023}',0,'',1,'In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:\"{#IFNAME}\"}%)','57ff0d15e1634b88920cb6ddccd804c7',''),(22563,'{31030}>({31031}*{$JMX.MP.USAGE.MAX:\"{#JMXNAME}\"}/100) and {31031}>0','Memory pool: {#JMXNAME} memory usage is high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'Memory pool: {#JMXNAME} memory usage more than {$JMX.MP.USAGE.MAX:\"{#JMXNAME}\"}% for {$JMX.MP.USAGE.TIME:\"{#JMXNAME}\"}','60a9825fc01f4cc9bd79d306bb19e8e0',''),(22564,'{31033} > 0 and {31033} < 24*60*60','Kubernetes API: Kubernetes client certificate expires soon','',0,0,2,0,'A client certificate used to authenticate to the apiserver is expiring in less than 24.0 hours.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1371958c0339430b8a333851766c01c0',''),(22565,'{31034} > 0 and {31034} < {$KUBE.API.CERT.EXPIRATION}*24*60*60','Kubernetes API: Kubernetes client certificate is expiring','',0,0,2,0,'A client certificate used to authenticate to the apiserver is expiring in {$KUBE.API.CERT.EXPIRATION} days.','',NULL,0,0,2,0,'',0,'',0,'',0,'Kubernetes API: Kubernetes client certificate expires in {$KUBE.API.CERT.EXPIRATION} days','132d58724bd141afa3f28101326fe922',''),(22566,'length({31043})>0','Openweathermap: There are errors in requests to OpenWeatherMap API','',0,0,3,0,'Zabbix has received errors in requests to OpenWeatherMap API.','',NULL,0,0,0,0,'',0,'',1,'{ITEM.LASTVALUE1}',0,'','8c2c6f81e1e74f97a28538e714eee474',''),(22567,'{31044}>{$TEMP.CRIT.HIGH}','[{#LOCATION}, {#COUNTRY}]: Temperature is too high','',0,0,3,0,'Temperature value is too high.','',NULL,0,0,2,0,'',0,'',1,'Current temp: {ITEM.LASTVALUE1}',0,'[{#LOCATION}, {#COUNTRY}]: Temperature is too high (over {$TEMP.CRIT.HIGH} for 30m)','3b7e55f13c6a4ba2930709d5c51c8a09',''),(22568,'{31045}<{$TEMP.CRIT.LOW}','[{#LOCATION}, {#COUNTRY}]: Temperature is too low','',0,0,3,0,'Temperature value is too low.','',NULL,0,0,2,0,'',0,'',1,'Current temp: {ITEM.LASTVALUE1}',0,'[{#LOCATION}, {#COUNTRY}]: Temperature is too low (below {$TEMP.CRIT.LOW} for 30m)','7c98d2784a2e42faa76e67348a0df7ff',''),(22569,'{31054} <> 200','Proxmox: API service not available','',0,0,4,0,'The API service is not available. Check your network and authorization settings.','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','7ef8290fd6e242339d0e56d5e8eedb1a',''),(22570,'{31055} <> 1','Proxmox: Cluster [{#RESOURCE.NAME}] not quorum','',0,0,4,0,'Proxmox VE use a quorum-based technique to provide a consistent state among all cluster nodes.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'','142e02d47b8a4ac9a9ad28b68b097ebd',''),(22571,'{31056} / {31057} * 100 >{$PVE.LXC.MEMORY.PUSE.MAX.WARN:\"{#LXC.ID}\"}','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high memory usage','',0,0,2,0,'Memory usage.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}',0,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high memory usage (over {$PVE.LXC.MEMORY.PUSE.MAX.WARN:\"{#LXC.ID}\"}% use)','f59e43f9de01419897aec1b9d4539b48',''),(22572,'{31058} > {$PVE.LXC.CPU.PUSE.MAX.WARN:\"{#LXC.ID}\"}','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high CPU usage','',0,0,2,0,'CPU usage.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1}',0,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})] high CPU usage (over {$PVE.LXC.CPU.PUSE.MAX.WARN:\"{#LXC.ID}\"}% use)','c0436342a19d4d6482fac70d2f04f530',''),(22573,'{31059}<10m','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME}]: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME}]: has been restarted (uptime < 10m)','0e55935a79b94bc096b6213d500f4f59',''),(22574,'{31060}<>\"running\"','Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Not running','',0,0,3,0,'LXC state is not \"running\".','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','71623950edf44bcb9453b2e8e63cb97b',''),(22575,'{31061} / {31062} * 100 >{$PVE.MEMORY.PUSE.MAX.WARN:\"{#NODE.NAME}\"}','Proxmox: Node [{#NODE.NAME}] high memory usage','',0,0,2,0,'Memory usage.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}',0,'Proxmox: Node [{#NODE.NAME}] high memory usage (over {$PVE.MEMORY.PUSE.MAX.WARN:\"{#NODE.NAME}\"}% use)','a0445b4e1ffd451595ecea0468b4a6a6',''),(22576,'{31063} / {31064} * 100 >{$PVE.ROOT.PUSE.MAX.WARN:\"{#NODE.NAME}\"}','Proxmox: Node [{#NODE.NAME}] high root filesystem space usage','',0,0,2,0,'Root filesystem space usage.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}',0,'Proxmox: Node [{#NODE.NAME}] high root filesystem space usage (over {$PVE.ROOT.PUSE.MAX.WARN:\"{#NODE.NAME}\"}% use)','3f88526e10a14319983fe14621ef10f9',''),(22577,'{31065} / {31066} * 100 > {$PVE.SWAP.PUSE.MAX.WARN:\"{#NODE.NAME}\"} and {31066} > 0','Proxmox: Node [{#NODE.NAME}] high root filesystem space usage','',0,0,2,0,'This trigger is ignored, if there is no swap configured.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}',0,'Proxmox: Node [{#NODE.NAME}] high root filesystem space usage (over {$PVE.SWAP.PUSE.MAX.WARN:\"{#NODE.NAME}\"}% use)','f38ccc2e0e40430e801bf98b488e12e4',''),(22578,'{31067} > {$PVE.CPU.PUSE.MAX.WARN:\"{#NODE.NAME}\"}','Proxmox: Node [{#NODE.NAME}] high CPU usage','',0,0,2,0,'CPU usage.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1}',0,'Proxmox: Node [{#NODE.NAME}] high CPU usage (over {$PVE.CPU.PUSE.MAX.WARN:\"{#NODE.NAME}\"}% use)','84041dcb7c84426dad538ab32375fdb1',''),(22579,'{31068}<>{31069} and length({31070})>0','Proxmox: Node [{#NODE.NAME}]: Kernel version has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','4020236474e840acb1bc480eb8c52a1f',''),(22580,'{31071} <> 1','Proxmox: Node [{#NODE.NAME}] offline','',0,0,4,0,'Node offline.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'','41b7efb8822948b08de8adace2e124a9',''),(22581,'{31072}<>{31073} and length({31074})>0','Proxmox: Node [{#NODE.NAME}]: PVE manager has changed','',0,0,1,0,'Firmware version has changed. Ack to close','',NULL,0,0,2,0,'',0,'',1,'Current value: {ITEM.LASTVALUE1}',0,'','5b92af55dbd84181bcab0f39e6effbe0',''),(22582,'{31075}<10m','Proxmox: Node [{#NODE.NAME}]: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Proxmox: Node [{#NODE.NAME}]: has been restarted (uptime < 10m)','529b69b98a86409d914d3464569b7901',''),(22583,'{31076} / {31077} * 100 >{$PVE.VM.MEMORY.PUSE.MAX.WARN:\"{#QEMU.ID}\"}','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high memory usage','',0,0,2,0,'Memory usage.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}',0,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high memory usage (over {$PVE.VM.MEMORY.PUSE.MAX.WARN:\"{#QEMU.ID}\"}% use)','5305bf2b71aa4b74917379c6e1b3c065',''),(22584,'{31078} > {$PVE.VM.CPU.PUSE.MAX.WARN:\"{#QEMU.ID}\"}','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high CPU usage','',0,0,2,0,'CPU usage.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1}',0,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})] high CPU usage (over {$PVE.VM.CPU.PUSE.MAX.WARN:\"{#QEMU.ID}\"}% use)','84ed68d7cf2b48a48fc44e9c7a0d9b92',''),(22585,'{31079}<10m','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME}]: has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME}]: has been restarted (uptime < 10m)','d4ba1faeb67940a192c1b50460793813',''),(22586,'{31080}<>\"running\"','Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Not running','',0,0,3,0,'VM state is not \"running\".','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','8f57d13f278b459299c565846b4091f5',''),(22587,'{31081} / {31082} * 100 >{$PVE.STORAGE.PUSE.MAX.WARN:\"{#NODE.NAME}/{#STORAGE.NAME}\"}','Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}] high filesystem space usage','',0,0,2,0,'Root filesystem space usage.','',NULL,0,0,2,0,'',0,'',0,'Current use: {ITEM.LASTVALUE1} of {ITEM.LASTVALUE2}',0,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}] high filesystem space usage (over {$PVE.STORAGE.PUSE.MAX.WARN:\"{#NODE.NAME}/{#STORAGE.NAME}\"}% use)','404d9a8a6fa54d8c880006c9ec32f55a',''),(22588,'{31083}=0','TrueNAS: Unavailable by ICMP ping','',0,0,4,0,'Last three attempts returned timeout. Please check device connectivity.','',NULL,0,0,0,0,'',0,'',0,'',0,'','91468c2218da45b3b1de62575471094e',''),(22589,'{31084}>{$ICMP_LOSS_WARN} and {31084}<100','TrueNAS: High ICMP ping loss','',0,0,2,0,'ICMP packets loss detected.','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','e6a39a1bc5d54f49aacc811f6942ef2b',''),(22590,'{31085}>{$ICMP_RESPONSE_TIME_WARN}','TrueNAS: High ICMP ping response time','',0,0,2,0,'Average ICMP response time is too big.','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','4931e6a368b841eeb846b8bc59fea513',''),(22591,'{31086}<>{31087} and length({31088})>0','TrueNAS: System name has changed','',0,0,1,0,'System name has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'TrueNAS: System name has changed (new name: {ITEM.VALUE})','d931601db9244884b6e411d4be2c297e',''),(22592,'{31089}<10m','TrueNAS: Host has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'TrueNAS: {HOST.NAME} has been restarted (uptime < 10m)','7ea3e6590e28476ea9876e26546af2d3',''),(22593,'{31090}>{$MEMORY.UTIL.MAX}','TrueNAS: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'',0,'TrueNAS: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m)','3ee054e3d944441d9fd174e13b6a59ee',''),(22594,'{31091}=0','TrueNAS: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','207abb1786ea4a39a7d569e54ee7cdb2',''),(22595,'{31092}<{$SWAP.PFREE.MIN.WARN} and {31093}>0','TrueNAS: High swap space usage','',0,0,2,0,'This trigger is ignored, if there is no swap configured.','',NULL,0,0,0,0,'',0,'',0,'Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'TrueNAS: High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free)','6c1708d53693435c87cd27f1568345c1',''),(22596,'{31094}<{$MEMORY.AVAILABLE.MIN} and {31095}>0','TrueNAS: Lack of available memory','',0,0,3,0,'The system is running out of memory.','',NULL,0,0,0,0,'',0,'',0,'Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2}',0,'TrueNAS: Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2})','0a04cc4789a14f1090232fce196c0e4d',''),(22597,'{31096}/{31097}>{$LOAD_AVG_PER_CPU.MAX.WARN}\r\nand {31098}>0\r\nand {31099}>0','TrueNAS: Load average is too high','',0,0,3,0,'Per CPU load average is too high. Your system may be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}',0,'TrueNAS: Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m)','c923ea2cc04848de911ad9a41defaff6',''),(22598,'{31100}>{$CPU.UTIL.CRIT}','TrueNAS: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'TrueNAS: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','776551cd5322405e8d7c2b9c30b3a82b',''),(22599,'{31101}<0 and {31102}>0\r\nand (\r\n{31103}=6 or\r\n{31103}=7 or\r\n{31103}=11 or\r\n{31103}=62 or\r\n{31103}=69 or\r\n{31103}=117\r\n)\r\nand\r\n({31104}<>2)','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({31101}>0 and {31105}>0) or\r\n({31104}=2)',0,'',0,'Current reported speed: {ITEM.LASTVALUE1}',0,'','fcc3734390c645f3a4ad5d694675fa3a',''),(22600,'({31106}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31107}) and\r\n{31107}>0','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{31106}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31107}',0,'',0,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','94adfef34fca4421b88f9253de55554e',''),(22601,'({31108}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{31109}) and\r\n{31109}>0','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{31108}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{31109}',0,'',0,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','9ed09a6968b0416d9ac556ca35a04db4',''),(22602,'{31110}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High input error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,1,'{31111}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors in: {ITEM.LASTVALUE1}',0,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','89a43ff26b204fceb91108740ece1ee3',''),(22603,'{31112}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High output error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,1,'{31113}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors out: {ITEM.LASTVALUE2}',0,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','c1cfeff568e2421ba06648ca55bcfef5',''),(22604,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({31114}=2)','TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','ba6767729f78405aba8d09bf14b3a0fa',''),(22605,'{31115} > {$TEMPERATURE.MAX.CRIT:\"{#DISK_NAME}\"}','TrueNAS: Disk [{#DISK_NAME}]: Average disk temperature is too high','',0,0,3,0,'Disk temperature is high.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'TrueNAS: Disk [{#DISK_NAME}]: Average disk temperature is too high (over {$TEMPERATURE.MAX.CRIT:\"{#DISK_NAME}\"}C for 5m)','fda99a2e62064414af85c1137cbf0aef',''),(22606,'{31116} > {$TEMPERATURE.MAX.WARN:\"{#DISK_NAME}\"}','TrueNAS: Disk [{#DISK_NAME}]: Average disk temperature is too high','',0,0,2,0,'Disk temperature is high.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'TrueNAS: Disk [{#DISK_NAME}]: Average disk temperature is too high (over {$TEMPERATURE.MAX.WARN:\"{#DISK_NAME}\"}C for 5m)','73194e7637a84dca976b218e9f4248c2',''),(22607,'{31117} > {$DATASET.PUSED.MAX.WARN:\"{#DATASET_NAME}\"} and {31118} < {$DATASET.FREE.MIN.WARN:\"{#POOLNAME}\"}','TrueNAS: Dataset [{#DATASET_NAME}]: High space usage','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$DATASET.PUSED.MAX.WARN:\"{#DATASET_NAME}\"}%.\r\nSecond condition: The dataset free space is less than {$DATASET.FREE.MIN.WARN:\"{#POOLNAME}\"}.','',NULL,0,0,2,0,'',0,'',0,'Current usage: {ITEM.LASTVALUE1}',0,'TrueNAS: Dataset [{#DATASET_NAME}]: High space usage (more than {$DATASET.PUSED.MAX.WARN:\"{#DATASET_NAME}\"}% used)','f759e058ef5345d884662f51db0c222e',''),(22608,'{31119} > {$DATASET.PUSED.MAX.CRIT:\"{#DATASET_NAME}\"} and {31120} < {$DATASET.FREE.MIN.CRIT:\"{#POOLNAME}\"}','TrueNAS: Dataset [{#DATASET_NAME}]: Very high space usage','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$DATASET.PUSED.MAX.CRIT:\"{#DATASET_NAME}\"}%.\r\nSecond condition: The dataset free space is less than {$DATASET.FREE.MIN.CRIT:\"{#POOLNAME}\"}.','',NULL,0,0,2,0,'',0,'',0,'Current usage: {ITEM.LASTVALUE1}',0,'TrueNAS: Dataset [{#DATASET_NAME}]: Very high space usage (more than {$DATASET.PUSED.MAX.CRIT:\"{#DATASET_NAME}\"}% used)','f0e37c1f63aa4e3090c0dc8c4f0dfe9b',''),(22609,'{31121} > {$ZPOOL.PUSED.MAX.WARN:\"{#POOLNAME}\"} and {31122} < {$ZPOOL.FREE.MIN.WARN:\"{#POOLNAME}\"}','TrueNAS: Pool [{#POOLNAME}]: High space usage','',0,0,2,0,'Two conditions should match: First, space utilization should be above {$ZPOOL.PUSED.MAX.WARN:\"{#POOLNAME}\"}%.\r\nSecond condition: The pool free space is less than {$ZPOOL.FREE.MIN.WARN:\"{#POOLNAME}\"}.','',NULL,0,0,2,0,'',0,'',0,'Current usage: {ITEM.LASTVALUE1}',0,'TrueNAS: Pool [{#POOLNAME}]: High space usage (more than {$ZPOOL.PUSED.MAX.WARN:\"{#POOLNAME}\"}% used)','18eef491c14b4f768400b4acca5c7e80',''),(22610,'{31123} > {$ZPOOL.PUSED.MAX.CRIT:\"{#POOLNAME}\"} and {31124} < {$ZPOOL.FREE.MIN.CRIT:\"{#POOLNAME}\"}','TrueNAS: Pool [{#POOLNAME}]: Very high space usage','',0,0,3,0,'Two conditions should match: First, space utilization should be above {$ZPOOL.PUSED.MAX.CRIT:\"{#POOLNAME}\"}%.\r\nSecond condition: The pool free space is less than {$ZPOOL.FREE.MIN.CRIT:\"{#POOLNAME}\"}.','',NULL,0,0,2,0,'',0,'',0,'Current usage: {ITEM.LASTVALUE1}',0,'TrueNAS: Pool [{#POOLNAME}]: Very high space usage (more than {$ZPOOL.PUSED.MAX.CRIT:\"{#POOLNAME}\"}% used)','ab01140b8a724c1cbb79be032de8c8b5',''),(22611,'{31125} <> 0','TrueNAS: Pool [{#POOLNAME}]: Status is not online','',0,0,3,0,'Please check pool status.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','676c2abdd102484a92db3501ccc2ca51',''),(22612,'{31126}=\"Red\"','VMware: The {$VMWARE.HV.UUID} health is Red','',0,0,4,0,'One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9f2a65161946436986aacf6c9a637673',''),(22613,'{31127}=\"Yellow\"','VMware: The {$VMWARE.HV.UUID} health is Yellow','',0,0,3,0,'One or more components in the appliance might become overloaded soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dc4f84eb8d2143bb80999fbc58f38928',''),(22614,'{31128}>{$PG.SLOW_QUERIES.MAX.WARN:\"{#DBNAME}\"}','DB {#DBNAME}: Too many slow queries','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'DB {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:\"{#DBNAME}\"} in 5m)','2bb34a2a7dee451cb5419a146d883601',''),(22615,'( {31169} = 1 and bitand({31170},8) = 8 )\r\nor ( bitand({31170},8) = 8\r\nand bitand({31170},8) > bitand({31171},8) )','SMART [{#NAME}]: Check returned \"DISK FAILING\"','',0,0,4,0,'SMART status check returned \"DISK FAILING\".','',NULL,0,0,2,2,'',0,'',1,'',0,'','c51b609f267c45c3bcb4a3f5f40b6d35',''),(22616,'( {31172} = 1 and bitand({31173},1) = 1 )\r\nor ( bitand({31173},1) = 1\r\nand bitand({31173},1) > bitand({31174},1) )','SMART [{#NAME}]: Command line did not parse','',0,0,4,0,'Command line did not parse.','',NULL,0,0,2,2,'',0,'',1,'',0,'','12ed61dfd27c4666883c4240a5726d06',''),(22617,'( {31175} = 1 and bitand({31176},2) = 2 )\r\nor ( bitand({31176},2) = 2\r\nand bitand({31176},2) > bitand({31177},2) )','SMART [{#NAME}]: Device open failed','',0,0,4,0,'Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode.','',NULL,0,0,2,2,'',0,'',1,'',0,'','9b960cb324774b3fa5e3d39aeb3141e2',''),(22618,'( {31178} = 1 and bitand({31179},64) = 64 )\r\nor ( bitand({31179},64) = 64\r\nand bitand({31179},64) > bitand({31180},64) )','SMART [{#NAME}]: Error log contains records','',0,0,4,0,'The device error log contains records of errors.','',NULL,0,0,2,2,'',0,'',1,'',0,'','ccff1b75f69a47cdbb5a04c58d201a0f',''),(22619,'( {31181} = 1 and bitand({31182},128) = 128 )\r\nor ( bitand({31182},128) = 128\r\nand bitand({31182},128) > bitand({31183},128) )','SMART [{#NAME}]: Self-test log contains records','',0,0,4,0,'The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.','',NULL,0,0,2,2,'',0,'',1,'',0,'','69fb021abcc841b7b35cc93358ef085c',''),(22620,'( {31184} = 1 and bitand({31185},32) = 32 )\r\nor ( bitand({31185},32) = 32\r\nand bitand({31185},32) > bitand({31186},32) )','SMART [{#NAME}]: Some Attributes have been <= threshold','',0,0,4,0,'SMART status check returned \"DISK OK\" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past.','',NULL,0,0,2,2,'',0,'',1,'',0,'','4ad2fbb5b6e349f6852a489b99a2760d',''),(22621,'( {31187} = 1 and bitand({31188},4) = 4 )\r\nor ( bitand({31188},4) = 4\r\nand bitand({31188},4) > bitand({31189},4) )','SMART [{#NAME}]: Some command to the disk failed','',0,0,4,0,'Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure.','',NULL,0,0,2,2,'',0,'',1,'',0,'','592e647842d048e3985e65726cdc838c',''),(22622,'( {31190} = 1 and bitand({31191},16) = 16 )\r\nor ( bitand({31191},16) = 16\r\nand bitand({31191},16) > bitand({31192},16) )','SMART [{#NAME}]: Some prefail Attributes <= threshold','',0,0,4,0,'We found prefail Attributes <= threshold.','',NULL,0,0,2,2,'',0,'',1,'',0,'','ec137781d51249c89d8891a35a596445',''),(22623,'{31193}>90','SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','e2bc2b0e195446d7973037be8e41eb6f',''),(22624,'{31194}<>{31195} and length({31196})>0','SMART [{#NAME}]: Disk has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'SMART [{#NAME}]: Disk has been replaced (new serial number received)','7257c02f398f4338ace1eb3a07cb7362',''),(22625,'{31197}>{$SMART.TEMPERATURE.MAX.CRIT}','SMART [{#NAME}]: Average disk temperature is critical','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'SMART [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m)','cd09aebe3ca146119cdf5b977bf6b018',''),(22626,'{31198}>{$SMART.TEMPERATURE.MAX.WARN}','SMART [{#NAME}]: Average disk temperature is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'SMART [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m)','aaa5acb3196b481f894998c0ca5ea165',''),(22627,'{31199}=\"false\"','SMART [{#NAME}]: Disk self-test is not passed','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','5fa97df4012e45279fb55724f617ef4a',''),(22628,'( {31200} = 1 and bitand({31201},8) = 8 )\r\nor ( bitand({31201},8) = 8\r\nand bitand({31201},8) > bitand({31202},8) )','SMART [{#NAME}]: Check returned \"DISK FAILING\"','',0,0,4,0,'SMART status check returned \"DISK FAILING\".','',NULL,0,0,2,2,'',0,'',1,'',0,'','ec00e4aa70fa4bea92c559e145ca2e18',''),(22629,'( {31203} = 1 and bitand({31204},1) = 1 )\r\nor ( bitand({31204},1) = 1\r\nand bitand({31204},1) > bitand({31205},1) )','SMART [{#NAME}]: Command line did not parse','',0,0,4,0,'Command line did not parse.','',NULL,0,0,2,2,'',0,'',1,'',0,'','612c964798d74ab2af23cc6ec5a1d754',''),(22630,'( {31206} = 1 and bitand({31207},2) = 2 )\r\nor ( bitand({31207},2) = 2\r\nand bitand({31207},2) > bitand({31208},2) )','SMART [{#NAME}]: Device open failed','',0,0,4,0,'Device open failed, device did not return an IDENTIFY DEVICE structure, or device is in a low-power mode.','',NULL,0,0,2,2,'',0,'',1,'',0,'','3591c8077a894f6b8deaaf8055ca940e',''),(22631,'( {31209} = 1 and bitand({31210},64) = 64 )\r\nor ( bitand({31210},64) = 64\r\nand bitand({31210},64) > bitand({31211},64) )','SMART [{#NAME}]: Error log contains records','',0,0,4,0,'The device error log contains records of errors.','',NULL,0,0,2,2,'',0,'',1,'',0,'','b524364e077a4f898a93af34ef4e6e7f',''),(22632,'( {31212} = 1 and bitand({31213},128) = 128 )\r\nor ( bitand({31213},128) = 128\r\nand bitand({31213},128) > bitand({31214},128) )','SMART [{#NAME}]: Self-test log contains records','',0,0,4,0,'The device self-test log contains records of errors. [ATA only] Failed self-tests outdated by a newer successful extended self-test are ignored.','',NULL,0,0,2,2,'',0,'',1,'',0,'','5e56f837d39b49a89d1f6ca3c45b5737',''),(22633,'( {31215} = 1 and bitand({31216},32) = 32 )\r\nor ( bitand({31216},32) = 32\r\nand bitand({31216},32) > bitand({31217},32) )','SMART [{#NAME}]: Some Attributes have been <= threshold','',0,0,4,0,'SMART status check returned \"DISK OK\" but we found that some (usage or prefail) Attributes have been <= threshold at some time in the past.','',NULL,0,0,2,2,'',0,'',1,'',0,'','541318ea2fd14fb4a6f8e8a8df1e4d36',''),(22634,'( {31218} = 1 and bitand({31219},4) = 4 )\r\nor ( bitand({31219},4) = 4\r\nand bitand({31219},4) > bitand({31220},4) )','SMART [{#NAME}]: Some command to the disk failed','',0,0,4,0,'Some SMART or other ATA command to the disk failed, or there was a checksum error in a SMART data structure.','',NULL,0,0,2,2,'',0,'',1,'',0,'','00eba731f9ae495f9fe38020897c9aef',''),(22635,'( {31221} = 1 and bitand({31222},16) = 16 )\r\nor ( bitand({31222},16) = 16\r\nand bitand({31222},16) > bitand({31223},16) )','SMART [{#NAME}]: Some prefail Attributes <= threshold','',0,0,4,0,'We found prefail Attributes <= threshold.','',NULL,0,0,2,2,'',0,'',1,'',0,'','04dc576b815e432a9cf6d8fee6b08bae',''),(22636,'{31224}>90','SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','68f373252bee4f9e8f3b33d04fc1adbd',''),(22637,'{31225}<>{31226} and length({31227})>0','SMART [{#NAME}]: Disk has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'SMART [{#NAME}]: Disk has been replaced (new serial number received)','2d5cf100fe094c819d725ee598d37de8',''),(22638,'{31228}>{$SMART.TEMPERATURE.MAX.CRIT}','SMART [{#NAME}]: Average disk temperature is critical','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'SMART [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m)','7f46b24934854866849dd758cb5999d5',''),(22639,'{31229}>{$SMART.TEMPERATURE.MAX.WARN}','SMART [{#NAME}]: Average disk temperature is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'SMART [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m)','c903a37f4b004e1593ef85ac893c3f6c',''),(22640,'{31230}=\"false\"','SMART [{#NAME}]: Disk self-test is not passed','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','304bd042b7644a31bb74a1e71808d196',''),(22641,'({31439} - now()) / 86400 < {$COCKROACHDB.CERT.CA.EXPIRY.WARN}','CockroachDB: CA certificate expires soon','',0,0,2,0,'CA certificate expires soon.','',NULL,0,0,0,0,'',0,'',0,'',0,'CockroachDB: CA certificate expires soon (less than {$COCKROACHDB.CERT.CA.EXPIRY.WARN} days)','76a2093eb0214185ab8e03986f3f1474',''),(22642,'({31440} - now()) / 86400 < {$COCKROACHDB.CERT.NODE.EXPIRY.WARN}','CockroachDB: Node certificate expires soon','',0,0,2,0,'Node certificate expires soon.','',NULL,0,0,0,0,'',0,'',0,'',0,'CockroachDB: Node certificate expires soon (less than {$COCKROACHDB.CERT.NODE.EXPIRY.WARN} days)','592152fe1dde4e81abd4bee76c3dae9d',''),(22643,'{31441} > {$COCKROACHDB.CLOCK.OFFSET.MAX.WARN} * 0.001','CockroachDB: Clock offset is too high','',0,0,2,0,'Cockroach-measured clock offset is nearing limit (by default, servers kill themselves at 400ms from the mean).','',NULL,0,0,0,0,'',0,'',0,'',0,'CockroachDB: Clock offset is too high (over {$COCKROACHDB.CLOCK.OFFSET.MAX.WARN}ms for 5m)','bddc5c6ac7294bb4be9ed8a4f4d4f4a9',''),(22644,'{31442} = 500','CockroachDB: Node is unhealthy','',0,0,3,0,'Node\'s /health endpoint has returned HTTP 500 Internal Server Error which indicates unhealthy mode.','',NULL,0,0,0,0,'',0,'',0,'',0,'','6ccd74acda004a738c3003af4526cd91',''),(22645,'{31443} > {$COCKROACHDB.STATEMENTS.ERRORS.MAX.WARN}','CockroachDB: SQL statements errors rate is too high','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'CockroachDB: SQL statements errors rate is too high (over {$COCKROACHDB.STATEMENTS.ERRORS.MAX.WARN} per second for 5m)','7307fc4f2c29438e99eea0256a8755ce',''),(22646,'{31444} = 1','CockroachDB: Failed to fetch node data','',0,0,2,0,'Zabbix has not received data for items for the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'CockroachDB: Failed to fetch node data (or no data for 5m)','90f6cccaf3d94a3d853641482ccb5254',''),(22647,'{31445} < 10m','CockroachDB: Node has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',0,'',0,'CockroachDB: Node has been restarted (uptime < 10m)','83802e38f1414ca9b40e2d2df2d94941',''),(22648,'{31446} <> {31447} and length({31446}) > 0','CockroachDB: Version has changed','',0,0,1,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'CockroachDB: Version has changed (new version: {ITEM.VALUE})','620aee1613e841acb44a438b4b9b68c9',''),(22649,'{31448} = 0','CockroachDB: Service is down','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d3c0d0a9e1f44c95a2246ab7081f581b',''),(22650,'{31449} / {31450} * 100 > {$COCKROACHDB.OPEN.FDS.MAX.WARN}','CockroachDB: Current number of open files is too high','',0,0,2,0,'Getting close to open file descriptor limit.','',NULL,0,0,0,0,'',0,'',0,'',0,'CockroachDB: Current number of open files is too high (over {$COCKROACHDB.OPEN.FDS.MAX.WARN}% for 10m)','8c2035ad44ea44b2b690b086d11e8cfc',''),(22651,'{31451} > 0 and {31452} = 0','CockroachDB: Node is not executing SQL','',0,0,2,0,'Node is not executing SQL despite having connections.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b099e323ec974823bfd84317b152a1fb',''),(22652,'{31453} = 503 and {31454} > 5m','CockroachDB: Node is not ready','',0,0,3,0,'Node\'s /health?ready=1 endpoint has returned HTTP 503 Service Unavailable. Possible reasons:\r\n- node is in the wait phase of the node shutdown sequence;\r\n- node is unable to communicate with a majority of the other nodes in the cluster, likely because the cluster is unavailable due to too many nodes being down.','',NULL,0,0,0,0,'',0,'',0,'',0,'','0d2fa3b6ea434a07867b9f4d6156ea81',''),(22653,'{31455} < {$COCKROACHDB.STORE.USED.MIN.CRIT}','CockroachDB: Storage [{#STORE}]: Available storage capacity is critically low','',0,0,3,0,'Storage is running critically low on free space (less than {$COCKROACHDB.STORE.USED.MIN.CRIT}% available).','',NULL,0,0,2,1,'{31456} > {$COCKROACHDB.STORE.USED.MIN.CRIT}',0,'',0,'',0,'CockroachDB: Storage [{#STORE}]: Available storage capacity is critically low (less than {$COCKROACHDB.STORE.USED.MIN.CRIT}%)','db07663014aa47a892faa2f9dbd97ec9',''),(22654,'{31457} < {$COCKROACHDB.STORE.USED.MIN.WARN}','CockroachDB: Storage [{#STORE}]: Available storage capacity is low','',0,0,2,0,'Storage is running low on free space (less than {$COCKROACHDB.STORE.USED.MIN.WARN}% available).','',NULL,0,0,2,1,'{31458} > {$COCKROACHDB.STORE.USED.MIN.WARN}',0,'',0,'',0,'CockroachDB: Storage [{#STORE}]: Available storage capacity is low (less than {$COCKROACHDB.STORE.USED.MIN.WARN}%)','a58b694f4cf642228ec0633f0efb04a7',''),(22655,'{31459}<{$ENVOY.CERT.MIN}','Envoy Proxy: SSL certificate expires soon','',0,0,2,0,'Please check certificate. Less than {$ENVOY.CERT.MIN} days left until the next certificate being managed will expire.','',NULL,0,0,0,0,'',0,'',0,'Expires: {ITEM.VALUE}',0,'Envoy Proxy: SSL certificate expires soon (less than {$CERT.EXPIRY.MIN} days)','d025e1c521ee4f53acd896d96609beec',''),(22656,'{31460} > 0','Envoy Proxy: Server state is not live','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b90a6241e1294fdc8502426b7582c1c2',''),(22657,'{31461}=1','Envoy Proxy: Failed to fetch metrics data','',0,0,2,0,'Zabbix has not received data for items for the last 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Envoy Proxy: Failed to fetch metrics data (or no data for 10m)','173c90200dd1451db10b8ea8b018bc54',''),(22658,'{31462}<10m','Envoy Proxy: Service has been restarted','',0,0,1,0,'Uptime is less than 10 minutes.','',NULL,0,0,0,0,'',0,'',1,'',0,'Envoy Proxy: Service has been restarted (uptime < 10m)','01e29535e00143c9a64fe844f637f17e',''),(22659,'{31463} > 0','Envoy Proxy: There are unhealthy clusters','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',0,'Current number: {ITEM.LASTVALUE1}',0,'','7542707fd247445cb9eaa51d01e76d5e',''),(22660,'{31486}=2','MS Exchange: Zabbix agent: active checks are not available','',0,0,4,0,'Active checks are considered unavailable. Agent is not sending heartbeat for prolonged time.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','8f04c3d6b3224382abf7472e8a4e38ba',''),(22661,'{31488}=2','IIS: Zabbix agent: active checks are not available','',0,0,4,0,'Active checks are considered unavailable. Agent is not sending heartbeat for prolonged time.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b9d8edc865f54e8eb56e84392817ff5b',''),(22662,'{31490}=2','Zabbix agent: active checks are not available','',0,0,4,0,'Active checks are considered unavailable. Agent is not sending heartbeat for prolonged time.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','a022259fc3cf454f93bc82cca27391f1',''),(22663,'{31491}=2','Zabbix agent: active checks are not available','',0,0,4,0,'Active checks are considered unavailable. Agent is not sending heartbeat for prolonged time.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','bad86dfaf5274927bce35ad314a2d21a',''),(22664,'length({31470})>0','Consul: Failed to get local services','',0,0,2,0,'Failed to get local services. Check debug log for more information.','',NULL,0,0,0,0,'',0,'',0,'',0,'','5cf09b213c044033af1d8e1d8821bc38',''),(22665,'{31471}>{$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','Consul: Node\'s health score is critical','',0,0,3,0,'This metric ranges from 0 to 8, where 0 indicates \"totally healthy\".\r\nThis health score is used to scale the time between outgoing probes, and higher scores translate into longer probing intervals.\r\nFor more details see section IV of the Lifeguard paper: https://arxiv.org/pdf/1707.00788.pdf','',NULL,0,0,0,0,'',0,'',0,'',0,'Consul: Node\'s health score is over {$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','f964a907c55148bf80991352c7f2ae83',''),(22666,'{31472}>{$CONSUL.NODE.HEALTH_SCORE.MAX.WARN}','Consul: Node\'s health score is warning','',0,0,2,0,'This metric ranges from 0 to 8, where 0 indicates \"totally healthy\".\r\nThis health score is used to scale the time between outgoing probes, and higher scores translate into longer probing intervals.\r\nFor more details see section IV of the Lifeguard paper: https://arxiv.org/pdf/1707.00788.pdf','',NULL,0,0,0,0,'',0,'',0,'',0,'Consul: Node\'s health score is too high (over {$CONSUL.NODE.HEALTH_SCORE.MAX.WARN} for 3m)','1fedc58f33ed4b9797fb37acfceba192',''),(22667,'{31473}<>{31474} and length({31475})>0','Consul: Version has been changed','',0,0,1,0,'Consul version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Consul: Version has changed (new version: {ITEM.VALUE})','fa78d269c01548a083085a3a98e5a59b',''),(22668,'{31476}/{31477}*100>{$CONSUL.OPEN.FDS.MAX.WARN}','Consul: Current number of open files is too high','',0,0,2,0,'\"Heavy file descriptor usage (i.e., near the process’s file descriptor limit) indicates a potential file descriptor exhaustion issue.\"','',NULL,0,0,0,0,'',0,'',0,'',0,'Consul: Current number of open files is too high (over {$CONSUL.OPEN.FDS.MAX.WARN}% for 5m)','9e1a0b7f49844d1db525d00d5f1060f0',''),(22669,'{31478} = 2','Consul: Aggregated status is \'critical\'','',0,0,3,0,'Aggregated state of service on the local agent is \'critical\'.','',NULL,0,0,2,0,'',0,'',0,'',0,'Consul: Node\'s health score is over {$CONSUL.NODE.HEALTH_SCORE.MAX.HIGH}','661551e1e9e94b25b7bd6ea876640b6d',''),(22670,'{31479} = 1','Consul: Aggregated status is \'warning\'','',0,0,2,0,'Aggregated state of service on the local agent is \'warning\'.','',NULL,0,0,2,0,'',0,'',0,'',0,'','724f6a5e16f64a779a71ad9a9378fb60',''),(22671,'{31480}<>{31481} and length({31482})>0','Consul cluster: Leader has been changed','',0,0,1,0,'Consul cluster version has changed. Ack to close.','',NULL,0,0,0,0,'',0,'',1,'',0,'Consul cluster: Leader has been changed (new value received: {ITEM.VALUE})','8f612c3cfbb74f55a7defed05039e2a5',''),(22672,'{31483}>0','Consul: One or more nodes in cluster in \'critical\' state','',0,0,3,0,'One or more agents on current dc with serf health status \'critical\'.','',NULL,0,0,0,0,'',0,'',0,'',0,'','8660702ae3674eb083d6dacb81ec3a4d',''),(22673,'{31484}>0','Consul: One or more nodes in cluster in \'warning\' state','',0,0,2,0,'One or more agents on current dc with serf health status \'warning\'.','',NULL,0,0,0,0,'',0,'',0,'',0,'','92136d6ee73b4bb5b88b9f1da1afe740',''),(22674,'{31485}>{$CONSUL.CLUSTER.SERVICE_NODES.CRITICAL.MAX.AVG:\"{#SERVICE_NAME}\"}','Consul: Service [\"{#SERVICE_NAME}\"]: Too many nodes with service status \'critical\'','',0,0,3,0,'One or more nodes with service status \'critical\'.','',NULL,0,0,2,0,'',0,'',0,'',0,'Consul: Service [\"{#SERVICE_NAME}\"]: Too many nodes with service status \'critical\' (over {$CONSUL.CLUSTER.SERVICE_NODES.CRITICAL.MAX.AVG:\"{#SERVICE_NAME}\"})','60919b58bd484597aa7ec03f308eb614',''),(22675,'{31487}=0','FTP service is down on {HOST.NAME}','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','aee485c125f94e37ac97c3ce1a654757',''),(22676,'{31489}=2','Zabbix agent: active checks are not available','',0,0,4,0,'Active checks are considered unavailable. Agent is not sending heartbeat for prolonged time.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','e91c556b0ff64292b9b9b5709a5d74b3',''),(22677,'length({31932})>0','There are errors in method requests to API','',0,0,3,0,'There are errors in method requests to API.','',NULL,0,0,0,0,'',0,'',0,'',0,'','7f80562a0b4f4329be454c418de3f517',''),(22678,'{31933}=1','System health is in degraded state','',0,0,2,0,'System health is in degraded state.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ee37a443b22a4161a88014a0c32dfdfa',''),(22679,'{31934}=2','System health is in fault state','',0,0,3,0,'System health is in fault state.','',NULL,0,0,0,0,'',0,'',0,'',0,'','54472b6cdf84418baf10b4a7d5e16e5c',''),(22680,'{31935}=3','System health is in unknown state','',0,0,1,0,'System health is in unknown state.','',NULL,0,0,0,0,'',0,'',0,'',0,'','ccb821dafad1404dbc1873561a69b7cc',''),(22681,'{31936}=0','Service is down or unavailable','',0,0,4,0,'HTTP/HTTPS service is down or unable to establish TCP connection.','',NULL,0,0,0,0,'',0,'',0,'',0,'','b8d07373a0fb4051a0534891b255994a',''),(22682,'{31937}>{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','Controller [{#CONTROLLER.ID}]: High CPU utilization','',0,0,2,0,'Controller CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'',0,'Controller [{#CONTROLLER.ID}]: High CPU utilization (over {$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}% for 5m)','b94f1cfd6e6a48f8a18c644532b7a9c8',''),(22683,'{31938}=1','Controller [{#CONTROLLER.ID}]: Controller health is in degraded state','',0,0,2,0,'Controller health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','381a5fe2adfd4f4ea15763cdf0a1bd0d',''),(22684,'{31939}=2','Controller [{#CONTROLLER.ID}]: Controller health is in fault state','',0,0,3,0,'Controller health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2082d12ff9c54a5ea709dba05c14ae00',''),(22685,'{31940}=3','Controller [{#CONTROLLER.ID}]: Controller health is in unknown state','',0,0,1,0,'Controller health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0b2ed99c47a64210b198cc0a3a6b84b5',''),(22686,'{31941}=1','Controller [{#CONTROLLER.ID}]: Controller is down','',0,0,4,0,'The controller is down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1524e80a37cb4b64a7360488e132a433',''),(22687,'{31942}<10m','Controller [{#CONTROLLER.ID}]: Controller has been restarted','',0,0,2,0,'The controller uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',0,'',0,'Controller [{#CONTROLLER.ID}]: Controller has been restarted (uptime < 10m)','136bb1ccd4114a529a99ddbf803fd974',''),(22688,'{31943}=1','Disk [{#DURABLE.ID}]: Disk health is in degraded state','',0,0,2,0,'Disk health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','58d2da30bfe74d05ad05e0b286fe0fae',''),(22689,'{31944}=2','Disk [{#DURABLE.ID}]: Disk health is in fault state','',0,0,3,0,'Disk health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1f0e81d23e1e423ba885425f33773f5b',''),(22690,'{31945}=3','Disk [{#DURABLE.ID}]: Disk health is in unknown state','',0,0,1,0,'Disk health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dc75dd0456a145b3ab0646c9403caeb6',''),(22691,'{31946}=2','Disk [{#DURABLE.ID}]: Disk temperature is critically high','',0,0,3,0,'Disk temperature is critically high.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b194f7b133274552823b66e44c88bd02',''),(22692,'{31947}=3','Disk [{#DURABLE.ID}]: Disk temperature is high','',0,0,2,0,'Disk temperature is high.','',NULL,0,0,2,0,'',0,'',0,'',0,'','aaabacd5f5194378b6c8388e2ef90abe',''),(22693,'{31948}=4','Disk [{#DURABLE.ID}]: Disk temperature is unknown','',0,0,1,0,'Disk temperature is unknown.','',NULL,0,0,2,0,'',0,'',0,'',0,'','60d0fc661aa140798f937a63fdd6e5f9',''),(22694,'{31949}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:\"{#NAME}\"}','Disk group [{#NAME}]: Disk group space is critically low','',0,0,3,0,'Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:\"{#NAME}\"}% available).','',NULL,0,0,2,0,'',0,'',0,'',0,'Disk group [{#NAME}]: Disk group space is critically low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:\"{#NAME}\"}%)','d6494d79dae94aeda2b78169f8960224',''),(22695,'{31950}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:\"{#NAME}\"}','Disk group [{#NAME}]: Disk group space is low','',0,0,2,0,'Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:\"{#NAME}\"}% available).','',NULL,0,0,2,0,'',0,'',0,'',0,'Disk group [{#NAME}]: Disk group space is low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:\"{#NAME}\"}%)','ea04be93082640709ec6e58ae640575c',''),(22696,'{31951}=1','Disk group [{#NAME}]: Disk group health is in degraded state','',0,0,2,0,'Disk group health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ad99b0f4a6b14b1d9819ab63376e11e7',''),(22697,'{31952}=2','Disk group [{#NAME}]: Disk group health is in fault state','',0,0,3,0,'Disk group health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','28f69da63b024079b8953165da6cbfdc',''),(22698,'{31953}=3','Disk group [{#NAME}]: Disk group health is in unknown state','',0,0,1,0,'Disk group health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','94695c4222c94bd1b12d9ecb4b21e628',''),(22699,'{31954}=9','Disk group [{#NAME}]: Disk group has damaged disks','',0,0,3,0,'The disk group is online and fault tolerant, but some of it\'s disks are damaged.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9bbf1f8a67564b769db5921a2023defd',''),(22700,'{31955}=8','Disk group [{#NAME}]: Disk group has missing disks','',0,0,3,0,'The disk group is online and fault tolerant, but some of it\'s disks are missing.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d4d5a63b514d4f1aaff9e8c68db9026e',''),(22701,'{31956}=1','Disk group [{#NAME}]: Disk group is fault tolerant with a down disk','',0,0,3,0,'The disk group is online and fault tolerant, but some of it\'s disks are down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','26b5b53b33c940d5a642ea13d670bf55',''),(22702,'{31957}=3','Disk group [{#NAME}]: Disk group is offline','',0,0,3,0,'Either the disk group is using offline initialization, or it\'s disks are down and data may be lost.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b1e7e080f7264ae0be323a500abc211f',''),(22703,'{31958}=4','Disk group [{#NAME}]: Disk group is quarantined critical','',0,0,3,0,'The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b8b5b248c275453d91c214c19d01f5d9',''),(22704,'{31959}=5','Disk group [{#NAME}]: Disk group is quarantined offline','',0,0,3,0,'The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bc1c2bbfffd541998099e695f9c98386',''),(22705,'{31960}=5','Disk group [{#NAME}]: Disk group is quarantined unsupported','',0,0,3,0,'The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7c4981f0b0fb4a3891b8a410501224d0',''),(22706,'{31961}=6','Disk group [{#NAME}]: Disk group is quarantined with an inaccessible disk','',0,0,3,0,'The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9e762711ecf54f8691e6be32a3e92738',''),(22707,'{31962}=7','Disk group [{#NAME}]: Disk group is stopped','',0,0,3,0,'The disk group is stopped.','',NULL,0,0,2,0,'',0,'',0,'',0,'','191dbf4bdd294add8ed0815c21f6eadb',''),(22708,'{31963}=2','Disk group [{#NAME}]: Disk group status is critical','',0,0,3,0,'The disk group is online but isn\'t fault tolerant because some of its disks are down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','05480e1bc3ff4e7a8c5a20286d6f306c',''),(22709,'{31964}=1','Enclosure [{#DURABLE.ID}]: Enclosure health is in degraded state','',0,0,2,0,'Enclosure health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','934c5f9e2d19499fab1d88ff9a36c9c9',''),(22710,'{31965}=2','Enclosure [{#DURABLE.ID}]: Enclosure health is in fault state','',0,0,3,0,'Enclosure health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3d06d5ce761c42e983a5eec029bb671e',''),(22711,'{31966}=3','Enclosure [{#DURABLE.ID}]: Enclosure health is in unknown state','',0,0,1,0,'Enclosure health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','df1275bd16434b1ca77749930e1af3f8',''),(22712,'{31967}=2','Enclosure [{#DURABLE.ID}]: Enclosure has critical status','',0,0,4,0,'Enclosure has critical status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','db8329f956d94e74bb6379b29a000bf0',''),(22713,'{31968}=6','Enclosure [{#DURABLE.ID}]: Enclosure has unknown status','',0,0,1,0,'Enclosure has unknown status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6a32b4a08bfb49939633b42a16041c7f',''),(22714,'{31969}=3','Enclosure [{#DURABLE.ID}]: Enclosure has warning status','',0,0,2,0,'Enclosure has warning status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2fd78acd77804a1f8a474c973bf5c93e',''),(22715,'{31970}=7','Enclosure [{#DURABLE.ID}]: Enclosure is unavailable','',0,0,4,0,'Enclosure is unavailable.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8cecd9a3ecf14931b8b3ccffff4a4615',''),(22716,'{31971}=4','Enclosure [{#DURABLE.ID}]: Enclosure is unrecoverable','',0,0,4,0,'Enclosure is unrecoverable.','',NULL,0,0,2,0,'',0,'',0,'',0,'','458cfb2a9dfb476dae940b66342b12bf',''),(22717,'{31972}=1','Fan [{#DURABLE.ID}]: Fan health is in degraded state','',0,0,2,0,'Fan health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','377a9c494a5443c0ba694ab78683da17',''),(22718,'{31973}=2','Fan [{#DURABLE.ID}]: Fan health is in fault state','',0,0,3,0,'Fan health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4446cef7b06140e3a29018944201ebd7',''),(22719,'{31974}=3','Fan [{#DURABLE.ID}]: Fan health is in unknown state','',0,0,1,0,'Fan health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3273a1f3595046e69ef6c74ac6f56eeb',''),(22720,'{31975}=1','Fan [{#DURABLE.ID}]: Fan has error status','',0,0,3,0,'Fan has error status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f8afe70029aa4cdfb1f68452eea27986',''),(22721,'{31976}=3','Fan [{#DURABLE.ID}]: Fan is missing','',0,0,1,0,'Fan is missing.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8ad445006c51474fbee30a70971a97a5',''),(22722,'{31977}=2','Fan [{#DURABLE.ID}]: Fan is off','',0,0,2,0,'Fan is off.','',NULL,0,0,2,0,'',0,'',0,'',0,'','fabe4e0bde194675a089db45125428b6',''),(22723,'{31978}=0','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU ID data is invalid','',0,0,2,0,'The FRU ID data is invalid. The FRU\'s EEPROM is improperly programmed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8182ee0edeb94f4a845c7eda047718c8',''),(22724,'{31979}=1','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU status is Degraded or Fault','',0,0,3,0,'FRU status is Degraded or Fault.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8bef225423a548c3a289c67c40ffd906',''),(22725,'{31980}>{$HPE.MSA.POOL.PUSED.MAX.CRIT:\"{#NAME}\"}','Pool [{#NAME}]: Pool space is critically low','',0,0,3,0,'Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.CRIT:\"{#NAME}\"}% available).','',NULL,0,0,2,0,'',0,'',0,'',0,'Pool [{#NAME}]: Pool space is critically low (used > {$HPE.MSA.POOL.PUSED.MAX.CRIT:\"{#NAME}\"}%)','042ac4fedb00485c8c6f48016182b9dd',''),(22726,'{31981}>{$HPE.MSA.POOL.PUSED.MAX.WARN:\"{#NAME}\"}','Pool [{#NAME}]: Pool space is low','',0,0,2,0,'Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.WARN:\"{#NAME}\"}% available).','',NULL,0,0,2,0,'',0,'',0,'',0,'Pool [{#NAME}]: Pool space is low (used > {$HPE.MSA.POOL.PUSED.MAX.WARN:\"{#NAME}\"}%)','f4c7a9ed832d4668be64acf9da3c9814',''),(22727,'{31982}=1','Pool [{#NAME}]: Pool health is in degraded state','',0,0,2,0,'Pool health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7af3ccbf497c44adb907b6d15ecebe33',''),(22728,'{31983}=2','Pool [{#NAME}]: Pool health is in fault state','',0,0,3,0,'Pool health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','093fa03c7c3f4ac4adbd3234bf6007a0',''),(22729,'{31984}=3','Pool [{#NAME}]: Pool health is in unknown state','',0,0,1,0,'Pool [{#NAME}] health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2af3a0092d57420c95bf82adc39eae5f',''),(22730,'{31985}=1','Port [{#NAME}]: Port health is in degraded state','',0,0,2,0,'Port health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','266d310dc71e4c60977668e330eec8df',''),(22731,'{31986}=2','Port [{#NAME}]: Port health is in fault state','',0,0,3,0,'Port health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','19a02ecfb5d242ff85e233961cc4a384',''),(22732,'{31987}=3','Port [{#NAME}]: Port health is in unknown state','',0,0,1,0,'Port health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8461e41fdd2944f08d3b95c63df0fa9f',''),(22733,'{31988}=2','Port [{#NAME}]: Port has error status','',0,0,3,0,'Port has error status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7ff86d50c241496d9bfa54359e17222e',''),(22734,'{31989}=4','Port [{#NAME}]: Port has unknown status','',0,0,1,0,'Port has unknown status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bdad67d08b92447e9964ea6362c0989c',''),(22735,'{31990}=1','Port [{#NAME}]: Port has warning status','',0,0,2,0,'Port has warning status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','95ba19413bca495aba96f32fa91bc54b',''),(22736,'{31991}=1','Power supply [{#DURABLE.ID}]: Power supply health is in degraded state','',0,0,2,0,'Power supply health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2394f69a635a4072bd96494b8df8ae3e',''),(22737,'{31992}=2','Power supply [{#DURABLE.ID}]: Power supply health is in fault state','',0,0,3,0,'Power supply health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f390553cfe4646e0ab9a4fd9cab20886',''),(22738,'{31993}=3','Power supply [{#DURABLE.ID}]: Power supply health is in unknown state','',0,0,1,0,'Power supply health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9499fbdcc6a946138fb6cd69d8be9a00',''),(22739,'{31994}=2','Power supply [{#DURABLE.ID}]: Power supply has error status','',0,0,3,0,'Power supply has error status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','28896e70b14f463aae8c8af4786e52ff',''),(22740,'{31995}=4','Power supply [{#DURABLE.ID}]: Power supply has unknown status','',0,0,1,0,'Power supply has unknown status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ac6b0d55fbac4f338261f6a90b68e5b0',''),(22741,'{31996}=1','Power supply [{#DURABLE.ID}]: Power supply has warning status','',0,0,2,0,'Power supply has warning status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c9cddccdeed34aa4a533f0ad07aab5ae',''),(22742,'length({31997})>0','There are errors in method requests to API','',0,0,3,0,'There are errors in method requests to API.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2133ddf10a3641d78e609948d6842687',''),(22743,'{31998}=1','System health is in degraded state','',0,0,2,0,'System health is in degraded state.','',NULL,0,0,0,0,'',0,'',0,'',0,'','49e8c1d8a14f40b5acb2723e370ccccb',''),(22744,'{31999}=2','System health is in fault state','',0,0,3,0,'System health is in fault state.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2709a971f2ce417d8e269a0e5ebdd964',''),(22745,'{32000}=3','System health is in unknown state','',0,0,1,0,'System health is in unknown state.','',NULL,0,0,0,0,'',0,'',0,'',0,'','fa35428a4f41453984bd0bfa566e0674',''),(22746,'{32001}=0','Service is down or unavailable','',0,0,4,0,'HTTP/HTTPS service is down or unable to establish TCP connection.','',NULL,0,0,0,0,'',0,'',0,'',0,'','9c1bf26f95d946f386bbf613d3d55779',''),(22747,'{32002}>{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}','Controller [{#CONTROLLER.ID}]: High CPU utilization','',0,0,2,0,'Controller CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'',0,'Controller [{#CONTROLLER.ID}]: High CPU utilization (over {$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}% for 5m)','0bf68b46b7644ad5ad0123df49c1da35',''),(22748,'{32003}=1','Controller [{#CONTROLLER.ID}]: Controller health is in degraded state','',0,0,2,0,'Controller health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3988a5b897a34c84952fa573d7019879',''),(22749,'{32004}=2','Controller [{#CONTROLLER.ID}]: Controller health is in fault state','',0,0,3,0,'Controller health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7256e023ac82427bb6ee923d4ff07786',''),(22750,'{32005}=3','Controller [{#CONTROLLER.ID}]: Controller health is in unknown state','',0,0,1,0,'Controller health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','15bc89e6c61549caaf5a66c85446ea9d',''),(22751,'{32006}=1','Controller [{#CONTROLLER.ID}]: Controller is down','',0,0,4,0,'The controller is down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','99de4f8de416485db5c3844d1c8d654b',''),(22752,'{32007}<10m','Controller [{#CONTROLLER.ID}]: Controller has been restarted','',0,0,2,0,'The controller uptime is less than 10 minutes.','',NULL,0,0,2,0,'',0,'',0,'',0,'Controller [{#CONTROLLER.ID}]: Controller has been restarted (uptime < 10m)','255250aa4b75465a989bf8f3fd805667',''),(22753,'{32008}=1','Disk [{#DURABLE.ID}]: Disk health is in degraded state','',0,0,2,0,'Disk health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f76f8eec05a94e2db9d4cd3bcbb43aa4',''),(22754,'{32009}=2','Disk [{#DURABLE.ID}]: Disk health is in fault state','',0,0,3,0,'Disk health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','383181e44a114334ab28ff09f49b2d51',''),(22755,'{32010}=3','Disk [{#DURABLE.ID}]: Disk health is in unknown state','',0,0,1,0,'Disk health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2b2d78c6c29f4bd58eff632809dee978',''),(22756,'{32011}=2','Disk [{#DURABLE.ID}]: Disk temperature is critically high','',0,0,3,0,'Disk temperature is critically high.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d4b8f77421d744918e087f696b3f0fff',''),(22757,'{32012}=3','Disk [{#DURABLE.ID}]: Disk temperature is high','',0,0,2,0,'Disk temperature is high.','',NULL,0,0,2,0,'',0,'',0,'',0,'','fbbac4048fda477a99f00566624b6bdb',''),(22758,'{32013}=4','Disk [{#DURABLE.ID}]: Disk temperature is unknown','',0,0,1,0,'Disk temperature is unknown.','',NULL,0,0,2,0,'',0,'',0,'',0,'','41e4f00446304206804da350a88ce3b9',''),(22759,'{32014}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:\"{#NAME}\"}','Disk group [{#NAME}]: Disk group space is critically low','',0,0,3,0,'Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:\"{#NAME}\"}% available).','',NULL,0,0,2,0,'',0,'',0,'',0,'Disk group [{#NAME}]: Disk group space is critically low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:\"{#NAME}\"}%)','df1af9dad6444821a86a26158469d0cb',''),(22760,'{32015}>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:\"{#NAME}\"}','Disk group [{#NAME}]: Disk group space is low','',0,0,2,0,'Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:\"{#NAME}\"}% available).','',NULL,0,0,2,0,'',0,'',0,'',0,'Disk group [{#NAME}]: Disk group space is low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:\"{#NAME}\"}%)','713960711c324dc780998f8f263344a2',''),(22761,'{32016}=1','Disk group [{#NAME}]: Disk group health is in degraded state','',0,0,2,0,'Disk group health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7899b8a15b5042f3a4467a7cdee4c6ae',''),(22762,'{32017}=2','Disk group [{#NAME}]: Disk group health is in fault state','',0,0,3,0,'Disk group health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e7c6a3b20c424196854a5437aba4c3ec',''),(22763,'{32018}=3','Disk group [{#NAME}]: Disk group health is in unknown state','',0,0,1,0,'Disk group health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','177dd9d1cfa54b3e8c9e6479cb96af03',''),(22764,'{32019}=9','Disk group [{#NAME}]: Disk group has damaged disks','',0,0,3,0,'The disk group is online and fault tolerant, but some of it\'s disks are damaged.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8deee88d964846598d5574d197694b17',''),(22765,'{32020}=8','Disk group [{#NAME}]: Disk group has missing disks','',0,0,3,0,'The disk group is online and fault tolerant, but some of it\'s disks are missing.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c615e1bb1c824e7ba109b8a6580eb9b9',''),(22766,'{32021}=1','Disk group [{#NAME}]: Disk group is fault tolerant with a down disk','',0,0,3,0,'The disk group is online and fault tolerant, but some of it\'s disks are down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bead3a0bb95342b3b3ceae7becff99b8',''),(22767,'{32022}=3','Disk group [{#NAME}]: Disk group is offline','',0,0,3,0,'Either the disk group is using offline initialization, or it\'s disks are down and data may be lost.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c89466e00c2b40c1933fde60332a428a',''),(22768,'{32023}=4','Disk group [{#NAME}]: Disk group is quarantined critical','',0,0,3,0,'The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3dc5b3bc1128451491217639cf4e5115',''),(22769,'{32024}=5','Disk group [{#NAME}]: Disk group is quarantined offline','',0,0,3,0,'The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6892c8c05331497ab37db2b2fe3673a1',''),(22770,'{32025}=5','Disk group [{#NAME}]: Disk group is quarantined unsupported','',0,0,3,0,'The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8a8bda977e11462a906fd200f1b67a72',''),(22771,'{32026}=6','Disk group [{#NAME}]: Disk group is quarantined with an inaccessible disk','',0,0,3,0,'The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.','',NULL,0,0,2,0,'',0,'',0,'',0,'','21f06dd8f8de49f58a64a638d24ff905',''),(22772,'{32027}=7','Disk group [{#NAME}]: Disk group is stopped','',0,0,3,0,'The disk group is stopped.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1914fede726744829b2e41392b957857',''),(22773,'{32028}=2','Disk group [{#NAME}]: Disk group status is critical','',0,0,3,0,'The disk group is online but isn\'t fault tolerant because some of its disks are down.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a79a6cf86bd44f55a7859808f632bf48',''),(22774,'{32029}=1','Enclosure [{#DURABLE.ID}]: Enclosure health is in degraded state','',0,0,2,0,'Enclosure health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d15d460b8c924f609f5cdd055060f8ce',''),(22775,'{32030}=2','Enclosure [{#DURABLE.ID}]: Enclosure health is in fault state','',0,0,3,0,'Enclosure health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7c2f6a7efbf245298c3ee0b137718dc8',''),(22776,'{32031}=3','Enclosure [{#DURABLE.ID}]: Enclosure health is in unknown state','',0,0,1,0,'Enclosure health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6732ced099d748daa5cbdf6d97580efd',''),(22777,'{32032}=2','Enclosure [{#DURABLE.ID}]: Enclosure has critical status','',0,0,4,0,'Enclosure has critical status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ef763c350b2e4d20bdecbe50703ec8dd',''),(22778,'{32033}=6','Enclosure [{#DURABLE.ID}]: Enclosure has unknown status','',0,0,1,0,'Enclosure has unknown status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e3a7198f287e4600a0abfa929ee183de',''),(22779,'{32034}=3','Enclosure [{#DURABLE.ID}]: Enclosure has warning status','',0,0,2,0,'Enclosure has warning status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','27ba4d2474604caaa2712222cf621294',''),(22780,'{32035}=7','Enclosure [{#DURABLE.ID}]: Enclosure is unavailable','',0,0,4,0,'Enclosure is unavailable.','',NULL,0,0,2,0,'',0,'',0,'',0,'','53b61c7521d94161b063a5ea506b5466',''),(22781,'{32036}=4','Enclosure [{#DURABLE.ID}]: Enclosure is unrecoverable','',0,0,4,0,'Enclosure is unrecoverable.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2218d1bf55aa4db0968dab804c0687e3',''),(22782,'{32037}=1','Fan [{#DURABLE.ID}]: Fan health is in degraded state','',0,0,2,0,'Fan health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3ee1b1d0d6b34c8eba02480e9e4d5be2',''),(22783,'{32038}=2','Fan [{#DURABLE.ID}]: Fan health is in fault state','',0,0,3,0,'Fan health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3e3785f9915d46068ebe2eff21bac813',''),(22784,'{32039}=3','Fan [{#DURABLE.ID}]: Fan health is in unknown state','',0,0,1,0,'Fan health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4bf2e519b5484d338f997ea5dac462e0',''),(22785,'{32040}=1','Fan [{#DURABLE.ID}]: Fan has error status','',0,0,3,0,'Fan has error status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','183a1e1c4d444c9a8189035a2af22dc1',''),(22786,'{32041}=3','Fan [{#DURABLE.ID}]: Fan is missing','',0,0,1,0,'Fan is missing.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4d9e3d1bb22444f981295df07f0d9c24',''),(22787,'{32042}=2','Fan [{#DURABLE.ID}]: Fan is off','',0,0,2,0,'Fan is off.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a6e4ea796b98432284a9fd9fff1d82f9',''),(22788,'{32043}=0','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU ID data is invalid','',0,0,2,0,'The FRU ID data is invalid. The FRU\'s EEPROM is improperly programmed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','2533eb2e4344494d9ec72629dab7b1a8',''),(22789,'{32044}=1','FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU status is Degraded or Fault','',0,0,3,0,'FRU status is Degraded or Fault.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7a994469e45f467c8582c24258d0eb75',''),(22790,'{32045}>{$HPE.MSA.POOL.PUSED.MAX.CRIT:\"{#NAME}\"}','Pool [{#NAME}]: Pool space is critically low','',0,0,3,0,'Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.CRIT:\"{#NAME}\"}% available).','',NULL,0,0,2,0,'',0,'',0,'',0,'Pool [{#NAME}]: Pool space is critically low (used > {$HPE.MSA.POOL.PUSED.MAX.CRIT:\"{#NAME}\"}%)','c73b4a77e94a43f5951f6a541d65637e',''),(22791,'{32046}>{$HPE.MSA.POOL.PUSED.MAX.WARN:\"{#NAME}\"}','Pool [{#NAME}]: Pool space is low','',0,0,2,0,'Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.WARN:\"{#NAME}\"}% available).','',NULL,0,0,2,0,'',0,'',0,'',0,'Pool [{#NAME}]: Pool space is low (used > {$HPE.MSA.POOL.PUSED.MAX.WARN:\"{#NAME}\"}%)','c7644beb62bc40e99d6045af6d4bc16f',''),(22792,'{32047}=1','Pool [{#NAME}]: Pool health is in degraded state','',0,0,2,0,'Pool health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','20723e93add44447a5cab3c8cc4849a6',''),(22793,'{32048}=2','Pool [{#NAME}]: Pool health is in fault state','',0,0,3,0,'Pool health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1881bd0efca04c58a56effb8e232e734',''),(22794,'{32049}=3','Pool [{#NAME}]: Pool health is in unknown state','',0,0,1,0,'Pool [{#NAME}] health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','62db05047b5a4b8797eee5667bb3bdf4',''),(22795,'{32050}=1','Port [{#NAME}]: Port health is in degraded state','',0,0,2,0,'Port health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9775011d59a846669087e6c90c4a011a',''),(22796,'{32051}=2','Port [{#NAME}]: Port health is in fault state','',0,0,3,0,'Port health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a5dec537528f42e0948ea15f1a290f26',''),(22797,'{32052}=3','Port [{#NAME}]: Port health is in unknown state','',0,0,1,0,'Port health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7025a0e6c93e4731be966c2a9e774581',''),(22798,'{32053}=2','Port [{#NAME}]: Port has error status','',0,0,3,0,'Port has error status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c1d2f824a3d4470abb6817753b1d4047',''),(22799,'{32054}=4','Port [{#NAME}]: Port has unknown status','',0,0,1,0,'Port has unknown status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6083cdfcb59848a6b5249147155996c2',''),(22800,'{32055}=1','Port [{#NAME}]: Port has warning status','',0,0,2,0,'Port has warning status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dd32b960ce1544d880d94b2da4dba03e',''),(22801,'{32056}=1','Power supply [{#DURABLE.ID}]: Power supply health is in degraded state','',0,0,2,0,'Power supply health is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1b512fda735440b5839a63fd26c19535',''),(22802,'{32057}=2','Power supply [{#DURABLE.ID}]: Power supply health is in fault state','',0,0,3,0,'Power supply health is in fault state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b75fb541ae0e43cc9cdb86e07dc3e394',''),(22803,'{32058}=3','Power supply [{#DURABLE.ID}]: Power supply health is in unknown state','',0,0,1,0,'Power supply health is in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','555ee9ef33b54d029df2f17d5f899539',''),(22804,'{32059}=2','Power supply [{#DURABLE.ID}]: Power supply has error status','',0,0,3,0,'Power supply has error status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','49c9d2d61c45476da5564299b2eebdee',''),(22805,'{32060}=4','Power supply [{#DURABLE.ID}]: Power supply has unknown status','',0,0,1,0,'Power supply has unknown status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d6cbaeb5aab84e5eb487af4bf319d640',''),(22806,'{32061}=1','Power supply [{#DURABLE.ID}]: Power supply has warning status','',0,0,2,0,'Power supply has warning status.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b7e85e7a6c254aba930d7704c58adf47',''),(22807,'length({32062})>0','HPE Primera: There are errors in requests to WSAPI','',0,0,3,0,'Zabbix has received errors in requests to WSAPI.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','570d440e7ec9445585003208eca06e63',''),(22808,'{32063}=0','HPE Primera: Service is unavailable','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','8e7aa46322c643878e509461dbb9169d',''),(22809,'{32064}=2','CPG [{#NAME}]: Degraded','',0,0,3,0,'CPG [{#NAME}] is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','32a29b7a4bf340ef8ab07a8db3bef309',''),(22810,'{32065}=3','CPG [{#NAME}]: Failed','',0,0,4,0,'CPG [{#NAME}] is in failed state.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','85c26e64c8074e8b9ab52f20394afeee',''),(22811,'{32066}=1','Disk [{#POSITION}]: Path A0 degraded','',0,0,3,0,'Disk [{#POSITION}] path A0 in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f1672a33f9404216a1ffdbe3fcefd0bf',''),(22812,'{32067}=1','Disk [{#POSITION}]: Path A1 degraded','',0,0,3,0,'Disk [{#POSITION}] path A1 in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a28b1b4cdc5d4cb4afd9b7dd5e5f4f46',''),(22813,'{32068}=1','Disk [{#POSITION}]: Path B0 degraded','',0,0,3,0,'Disk [{#POSITION}] path B0 in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','0ff32326e7784111842198ac6457c5cc',''),(22814,'{32069}=1','Disk [{#POSITION}]: Path B1 degraded','',0,0,3,0,'Disk [{#POSITION}] path B1 in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d55532408f3c40408dbd05671c66b5f3',''),(22815,'{32070}=2','Disk [{#POSITION}]: Degraded','',0,0,3,0,'Disk [{#POSITION}] in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d8991103e26b4ffea5fb64dc3519eb63',''),(22816,'{32071}=3','Disk [{#POSITION}]: Failed','',0,0,4,0,'Disk [{#POSITION}] in failed state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bc8c8281c3ac4742ba8f570a56753dd3',''),(22817,'{32072}=99','Disk [{#POSITION}]: Unknown issue','',0,0,1,0,'Disk [{#POSITION}] in unknown state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d4bda084df0b4a489fac08d1acae4e17',''),(22818,'{32073}<>1 and {32073}<>4','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Failover state is {ITEM.VALUE1}','',0,0,3,0,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}] has failover error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','65f3f3b098984842b5246bfb5842bc78',''),(22819,'{32074}<>4 and {32074}<>1 and {32074}<>3 and {32074}<>13 and {32074}<>15 and {32074}<>16','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state is {ITEM.VALUE1}','',0,0,4,0,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}] not in ready state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c7ee19ea175d4c63a9ae67e0ab59253b',''),(22820,'{32075}=1 or {32075}=3 or {32075}=13 or {32075}=15 or {32075}=16','Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state is {ITEM.VALUE1}','',0,0,3,0,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}] not in ready state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f0c8851f843e41dcb6820c943efcbe2f',''),(22821,'{32076}=3','Task [{#NAME}]: Cancelled','',0,0,1,0,'Task [{#NAME}] is cancelled.','',NULL,0,0,2,0,'',0,'',0,'',0,'','63340c376d86492198e00d7ae10f063c',''),(22822,'{32077}=4','Task [{#NAME}]: Failed','',0,0,3,0,'Task [{#NAME}] is failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','af326c0f259144d28ebeb60e19bae903',''),(22823,'{32078}=2','Volume [{#NAME}]: Degraded','',0,0,3,0,'Volume [{#NAME}] is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','c91920ca3ceb457cb9e2db0bb70d7fe0',''),(22824,'{32079}=3','Volume [{#NAME}]: Failed','',0,0,4,0,'Volume [{#NAME}] is in failed state.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','394b5bd072ac41acb0702601c5d5f049',''),(22825,'length({32080})>0','AWS EC2: Failed to get alarms data','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','1d017a1213fb4bc9896add10a2b97dd6',''),(22826,'{32081}<{$AWS.EC2.CPU.CREDIT.BALANCE.MIN.WARN}','AWS EC2: Instance CPU Credit balance is too low','',0,0,2,0,'The number of earned CPU credits has been less than {$AWS.EC2.CPU.CREDIT.BALANCE.MIN.WARN} in the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS EC2: Instance CPU Credit balance is too low (less {$AWS.EC2.CPU.CREDIT.BALANCE.MIN.WARN} for 5m)','4e67cac1f58a478fb0e47c52b402fd92',''),(22827,'{32082}>{$AWS.EC2.CPU.CREDIT.SURPLUS.BALANCE.MAX.WARN}','AWS EC2: Instance has spent too many CPU surplus credits','',0,0,2,0,'The number of spent surplus credits that are not paid down and which thus incur an additional charge is over {$AWS.EC2.CPU.CREDIT.SURPLUS.BALANCE.MAX.WARN}.','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS EC2: Instance has spent too many CPU surplus credits (over {$AWS.EC2.CPU.CREDIT.SURPLUS.BALANCE.MAX.WARN} for 15m)\'','644ace5510164f329d9af65bd0ed4f34',''),(22828,'{32083}>{$AWS.EC2.CPU.UTIL.WARN.MAX}','AWS EC2: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'AWS EC2: High CPU utilization (over {$AWS.EC2.CPU.UTIL.WARN.MAX}% for 15m)','ea74d00067874b609e4846847033058f',''),(22829,'{32084}<{$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}','AWS EC2: Byte Credit balance is too low','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS EC2: Byte Credit balance is too low (less {$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}% for 5m)','27f3b00e295d4aeb9a2d0519e95da4e0',''),(22830,'{32085}<{$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}','AWS EC2: I/O Credit balance is too low','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS EC2: I/O Credit balance is too low (less {$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}% for 5m)','f4b9c2238b5443eab31255422bc22d7d',''),(22831,'length({32086})>0','AWS EC2: Failed to get metrics data','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c2cf3f875aa14416a108dd05df7b053a',''),(22832,'{32087}=1','AWS EC2: Instance status check failed','',0,0,3,0,'These checks detect problems that require your involvement to repair.\r\nThe following are examples of problems that can cause instance status checks to fail:\r\n\r\nFailed system status checks\r\nIncorrect networking or startup configuration\r\nExhausted memory\r\nCorrupted file system\r\nIncompatible kernel','',NULL,0,0,0,0,'',0,'',0,'',0,'','0fdd6b02eea948d3a6c958af7f195dc3',''),(22833,'{32088}=1','AWS EC2: System status check failed','',0,0,3,0,'These checks detect underlying problems with your instance that require AWS involvement to repair.\r\nThe following are examples of problems that can cause system status checks to fail:\r\n\r\nLoss of network connectivity\r\nLoss of system power\r\nSoftware issues on the physical host\r\nHardware issues on the physical host that impact network reachability','',NULL,0,0,0,0,'',0,'',0,'',0,'','723a254ffd72404ea0cc2366ff186c1c',''),(22834,'length({32089})>0','AWS EC2: Failed to get volumes info','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','844fb22685804fe7894af7c64b420824',''),(22835,'{32090}=2 and length({32091})>0','AWS EC2 Alarms: \"{#ALARM_NAME}\" has \'Alarm\' state','',0,0,3,0,'Alarm \"{#ALARM_NAME}\" has \'Alarm\' state. \r\nReason: {ITEM.LASTVALUE2}','',NULL,0,0,2,0,'',0,'',0,'',0,'','93813bd6aaf14fcb84068cb2c2e5d47e',''),(22836,'{32092}=1','AWS EC2 Alarms: \"{#ALARM_NAME}\" has \'Insufficient data\' state','',0,0,1,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','be1301d97b5a47cc81dd6c2b76349f5d',''),(22837,'{32093}=5','AWS EBS: Volume \"{#VOLUME_ID}\" has \'error\' state','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','2d4de438bdaa49b2930496ce6ddbe52d',''),(22838,'{32094}<{$AWS.EBS.BURST.CREDIT.BALANCE.MIN.WARN}','AWS EBS: Burst balance is too low','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS EBS: Burst balance is too low (less {$AWS.EBS.BURST.CREDIT.BALANCE.MIN.WARN}% for 5m)','9b2f5687020c4a5987c1b1b35a57d8b9',''),(22839,'{32095}=0','OPNsense: DHCP server is not running','',0,0,3,0,'Please check DHCP server settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','fba46d0094bc4f0e98537ceca27dd6bc',''),(22840,'{32096}=0','OPNsense: DNS server is not running','',0,0,3,0,'Please check DNS server settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','0e2cbbbd999d476a84cb93a9b7ef42d6',''),(22841,'{32097}=0','OPNsense: Web server is not running','',0,0,3,0,'Please check lighttpd service status.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','7864dec91012436f89b728019bf99fda',''),(22842,'{32098}<>1','OPNsense: Packet filter is not running','',0,0,4,0,'Please check PF status.','',NULL,0,0,0,0,'',0,'',0,'Current running state: {ITEM.LASTVALUE1}',0,'','42d9a74d984d4ac2bf778be74cd8588f',''),(22843,'{32099}>{$SOURCE.TRACKING.TABLE.UTIL.MAX}','OPNsense: Source tracking table usage is high','',0,0,2,0,'Please check the number of sticky connections.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'OPNsense: Source tracking table usage more than {$SOURCE.TRACKING.TABLE.UTIL.MAX}.','d1f03d136f30401b8f70cbc3196446ee',''),(22844,'{32100}>{$STATE.TABLE.UTIL.MAX}','OPNsense: State table usage is high','',0,0,2,0,'Please check the number of connections.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'OPNsense: State table usage more than {$STATE.TABLE.UTIL.MAX}.','f31e301def314e9b81ee0f8a26dc1e37',''),(22845,'{32101}=0','OPNsense: No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Please check device connectivity and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','f2cb074945624a8184ceb1ab3d3b2f52',''),(22846,'{32102}<0 and {32103}>0\r\nand (\r\n{32104}=6 or\r\n{32104}=7 or\r\n{32104}=11 or\r\n{32104}=62 or\r\n{32104}=69 or\r\n{32104}=117\r\n)\r\nand\r\n({32105}<>2)','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close.','',NULL,0,0,2,1,'({32102}>0 and {32106}>0) or\r\n({32105}=2)',0,'',0,'Current reported speed: {ITEM.LASTVALUE1}',0,'','e351276dfe6a43db88bdb437d2ef4a8e',''),(22847,'({32107}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{32108}) and\r\n{32108}>0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{32107}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{32108}',0,'',0,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','d9a23c4dee9c4fd0862748923d656023',''),(22848,'({32109}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{32110}) and\r\n{32110}>0','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage','',0,0,2,0,'The network interface utilization is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{32109}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{32110}',0,'',0,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','4c120cefd9dd4f8aa257023610b3ed19',''),(22849,'{32111}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,1,'{32112}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors in: {ITEM.LASTVALUE1}',0,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','5a58e9ffee1f45c4a4f859c1f0b7c2dc',''),(22850,'{32113}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate','',0,0,2,0,'Recovers when below 80% of {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,1,'{32114}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',0,'errors out: {ITEM.LASTVALUE2}',0,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','9d6dafdae44343f1a4e0934ec44da7b3',''),(22851,'{$IFCONTROL:\"{#IFNAME}\"}=1 and ({32115}=2)','OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. {$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.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','4a189b213b8e40589be007367361d70e',''),(22852,'length({32116})>0','AWS RDS: Failed to get alarms data','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','112da2ba956740fda7edcd9bd3a8651c',''),(22853,'{32117}<{$AWS.RDS.BURST.CREDIT.BALANCE.MIN.WARN}','AWS RDS: Burst balance is too low','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS RDS: Burst balance is too low (less {$AWS.RDS.BURST.CREDIT.BALANCE.MIN.WARN}% for 5m)','730337e340cf4b129d4b38f1c7c82cf6',''),(22854,'{32118}<{$AWS.RDS.CPU.CREDIT.BALANCE.MIN.WARN}','AWS RDS: Instance CPU Credit balance is too low','',0,0,2,0,'The number of earned CPU credits has been less than {$AWS.RDS.CPU.CREDIT.BALANCE.MIN.WARN} in the last 5 minutes.','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS RDS: Instance CPU Credit balance is too low (less {$AWS.RDS.CPU.CREDIT.BALANCE.MIN.WARN} for 5m)','32994f2b06b8491b9b13d0b280e09001',''),(22855,'{32119}>{$AWS.RDS.CPU.UTIL.WARN.MAX}','AWS RDS: High CPU utilization','',0,0,2,0,'CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'AWS RDS: High CPU utilization (over {$AWS.RDS.CPU.UTIL.WARN.MAX}% for 15m)','0272980a53e14f22b06db30af49a1233',''),(22856,'{32120}<{$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}','AWS RDS: Byte Credit balance is too low','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS RDS: Byte Credit balance is too low (less {$AWS.EBS.BYTE.CREDIT.BALANCE.MIN.WARN}% for 5m)','b878ee69a01a47a09677b184f8352668',''),(22857,'{32121}<{$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}','AWS RDS: I/O Credit balance is too low','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'AWS RDS: I/O Credit balance is too low (less {$AWS.EBS.IO.CREDIT.BALANCE.MIN.WARN}% for 5m)','556100b7e8414543bf88017e13fb718f',''),(22858,'length({32122})>0','AWS RDS: Failed to get events data','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','600805420f704d4daca1ac20903f27f5',''),(22859,'length({32123})>0','AWS RDS: Failed to get instance data','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','452195309f1f4211aeb71b43a373f86f',''),(22860,'length({32124})>0','AWS RDS: Failed to get metrics data','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','54c70842bf314ce2a9c95e0cfc57cc21',''),(22861,'{32125}=0','AWS RDS: Read replica in error state','',0,0,3,0,'The status of a read replica.\r\nFalse if the instance is in an error state.','',NULL,0,0,0,0,'',0,'',0,'',0,'','1f4767ba167f43b7ae9730ec834152a4',''),(22862,'{32126}=2 and length({32127})>0','AWS RDS Alarms: \"{#ALARM_NAME}\" has \'Alarm\' state','',0,0,3,0,'Alarm \"{#ALARM_NAME}\" has \'Alarm\' state. \r\nReason: {ITEM.LASTVALUE2}','',NULL,0,0,2,0,'',0,'',0,'',0,'','0f70f3d91d9c403c9d4c3cfb3283865f',''),(22863,'{32128}=1','AWS RDS Alarms: \"{#ALARM_NAME}\" has \'Insufficient data\' state','',0,0,1,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','7d87b8d84fef4aff8aa9c0fd49e49619',''),(22864,'length({32129})>0','AWS S3: Failed to get alarms data','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','a8f8a7518aad4e32b23a8611afc8f48c',''),(22865,'length({32130})>0','AWS S3: Failed to get metrics data','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','a8a0b4187f5f4e22b868dd038f53a2ba',''),(22866,'{32131}=2 and length({32132})>0','AWS S3 Alarms: \"{#ALARM_NAME}\" has \'Alarm\' state','',0,0,3,0,'Alarm \"{#ALARM_NAME}\" has \'Alarm\' state. \r\nReason: {ITEM.LASTVALUE2}','',NULL,0,0,2,0,'',0,'',0,'',0,'','c1b94199b7ac4cc9889ff0e724f7057d',''),(22867,'{32133}=1','AWS S3 Alarms: \"{#ALARM_NAME}\" has \'Insufficient data\' state','',0,0,1,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','7f0ba96047784510b734c0064d434edc',''),(22868,'length({32134})>0','Azure: There are errors in requests to API','',0,0,3,0,'Zabbix has received errors in response to API requests.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','502cb582546046a29267715763c46bff',''),(22869,'{32135}=1','Azure: Virtual machine is degraded','',0,0,3,0,'The resource is in degraded state.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','c0170d8a09ae460da923fe773b2b0bd0',''),(22870,'{32136}=3','Azure: Virtual machine is in unknown state','',0,0,2,0,'The resource state is unknown.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','e1b85765b83445ebbf15f02d782b9858',''),(22871,'{32137}=2','Azure: Virtual machine is unavailable','',0,0,4,0,'The resource state is unavailable.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','b3d764ff735e44f8806cc4d29090719e',''),(22872,'{32138}>{$AZURE.VM.CPU.UTIL.CRIT}','Azure: High CPU utilization','',0,0,4,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','9e6d9394570641418b4291befb1e38e5',''),(22873,'length({32139})>0','Azure: There are errors in requests to API','',0,0,3,0,'Zabbix has received errors in response to API requests.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','87236c99652643ba800601a461d66d94',''),(22874,'{32140}>0','Dbstat: Checksum failures detected','',0,0,3,0,'Data page checksum failures were detected on that DB instance.\r\nhttps://www.postgresql.org/docs/current/checksums.html','',NULL,0,0,0,0,'',0,'',0,'',0,'','1d67b13f47134a538708c2a14dcfa6b1',''),(22875,'{32141}>0','DB {#DBNAME}: Checksum failures detected','',0,0,3,0,'Data page checksum failures were detected on that database.\r\nhttps://www.postgresql.org/docs/current/checksums.html','',NULL,0,0,2,0,'',0,'',0,'',0,'','5995403b904349d296227647ca318f5b',''),(22876,'length({32406})>0','HPE Synergy: There are errors in requests to API','',0,0,3,0,'Zabbix has received errors from API.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','dba8cff13328403dae2cbda8f106b384',''),(22877,'{32407}=0','HPE Synergy: Service is unavailable','',0,0,4,0,'','',NULL,0,0,0,0,'',0,'',1,'',0,'','165774c1ffab46899352a36dd32bb574',''),(22878,'{32408}=0','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','',0,0,4,0,'The appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d79a138fe0cd4f918e664380af8da355',''),(22879,'{32409}=4','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','',0,0,2,0,'The appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c4acd5d5451d437ab5366b24643577be',''),(22880,'{32410}=1','Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','',0,0,1,0,'The appliance [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational','',NULL,0,0,2,0,'',0,'',0,'',0,'','7b8b298e334e409da6dabf6476c80dbf',''),(22881,'{32411}=4','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','',0,0,3,0,'The device slot is configured to be part of another device slot.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b414be87e93f4f08a131d46b34b1b478',''),(22882,'{32412}=0','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','',0,0,4,0,'The crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','dd23cdf994c848d4b45baf4d1716f198',''),(22883,'{32413}=4','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','',0,0,2,0,'The crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','264dff5509fb4608b862bfd3e0510e32',''),(22884,'{32414}=1','Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','',0,0,1,0,'The crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','89e007afab2b4331877b3a7c1b6a98fb',''),(22885,'{32415}=1','Datacenter [{#NAME}]: Add error','',0,0,3,0,'The adding of the datacenter [{#NAME}] has failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4f0d8ded588f4175911edff4efd4d1cd',''),(22886,'{32416}=3','Datacenter [{#NAME}]: Has credential error','',0,0,3,0,'The datacenter [{#NAME}] has a credential error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','896d145d3e3e49719a1b8e01117a5987',''),(22887,'{32417}=5','Datacenter [{#NAME}]: Has refresh error','',0,0,3,0,'The datacenter [{#NAME}] has a refresh error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','8ecd353d5f0742aaabd6f65d9a7b8897',''),(22888,'{32418}=7','Datacenter [{#NAME}]: Has remove error','',0,0,3,0,'The datacenter [{#NAME}] has a remove error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','091237538cab4e35a19c0f76b9c50539',''),(22889,'{32419}=0','Datacenter [{#NAME}]: Has critical status','',0,0,4,0,'The datacenter [{#NAME}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5dbb654f17f345de8279c8249eae3207',''),(22890,'{32420}=4','Datacenter [{#NAME}]: Has warning status','',0,0,2,0,'The datacenter [{#NAME}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d04a24eceaad4741a877fdf1c58141c5',''),(22891,'{32421}=1','Datacenter [{#NAME}]: Is disabled','',0,0,1,0,'the datacenter [{#NAME}] currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7c70db1e75df47aeb8b4f87a634abde9',''),(22892,'{32422}=4','Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','',0,0,3,0,'The device slot is configured to be part of another device slot.','',NULL,0,0,2,0,'',0,'',0,'',0,'','37ccc7acfc56466cb1a0f31e11603bcc',''),(22893,'{32423}=3 and {32424}>-1','Enclosure [{#NAME}]: Is interrupted','',0,0,2,0,'The previous operation on the enclosure did not complete. The operation should be re-attempted.','',NULL,0,0,2,0,'',0,'',0,'Reason: {ITEM.LASTVALUE2}',0,'','7cd90689dd8147949b1da375b055c71f',''),(22894,'{32425}=9 and {32426}>-1','Enclosure [{#NAME}]: Is unsupported','',0,0,3,0,'The enclosure model or version is not currently supported by HPE OneView. It cannot be configured or monitored.','',NULL,0,0,2,0,'',0,'',0,'Reason: {ITEM.LASTVALUE2}',0,'','7bfc1a8cde3349cba772a6217df3e275',''),(22895,'{32427}=6 and {32428}>-1','Enclosure [{#NAME}]: Remove failed','',0,0,2,0,'The previous operation to remove the enclosure did not succeed. The operation should be re-attempted.','',NULL,0,0,2,0,'',0,'',0,'Reason: {ITEM.LASTVALUE2}',0,'','ef82fad1874d4dd5918d9c33323b6ae6',''),(22896,'{32429}=0','Enclosure [{#NAME}]: Is missing','',0,0,3,0,'The enclosure is no longer connected into the frame link topology.','',NULL,0,0,2,0,'',0,'',0,'',0,'','61f81dcbb3c74f14982bd29b78f6a57b',''),(22897,'{32430}=5','Enclosure [{#NAME}]: Is unowned','',0,0,3,0,'The enclosure reports are not being under the management.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6101e612efa54715a72263b4ea9d5b7d',''),(22898,'{32431}=0','Enclosure [{#NAME}]: Has critical status','',0,0,4,0,'The status of the enclosure [{#NAME}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','862f37cbe3b144b5ae70998bf7406497',''),(22899,'{32432}=4','Enclosure [{#NAME}]: Has warning status','',0,0,2,0,'The status of the enclosure [{#NAME}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','50f4cfc199564b26bf575d88ec5ba57e',''),(22900,'{32433}=1','Enclosure [{#NAME}]: Is disabled','',0,0,1,0,'The enclosure [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c3ce50cdb5374904970903c082a98f72',''),(22901,'{32434}=0','Ethernet network [{#NAME}]: Has critical status','',0,0,4,0,'The ethernet network [{#NAME}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c658a58285184a82969b520d5be1f9b2',''),(22902,'{32435}=4','Ethernet network [{#NAME}]: Has warning status','',0,0,2,0,'The ethernet network [{#NAME}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6881808352bd4588b42debf5f2703f69',''),(22903,'{32436}=1','Ethernet network [{#NAME}]: Is disabled','',0,0,1,0,'The ethernet network [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','eef185ab54584c069df2a4349dff9cc7',''),(22904,'{32437}=0','Fabric [{#NAME}]: Has critical status','',0,0,4,0,'The status of the fabric [{#NAME}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5f67d217108d4e7fbfcaed29f0f8564f',''),(22905,'{32438}=4','Fabric [{#NAME}]: Has warning status','',0,0,2,0,'The status of the fabric [{#NAME}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c546f87158ee42ba8d76aa3fd6767efa',''),(22906,'{32439}=1','Fabric [{#NAME}]: Is disabled','',0,0,1,0,'The status of the fabric [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c963ad956b0644c394bd58dbbb05858a',''),(22907,'{32440}=0','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is degraded','',0,0,3,0,'The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is in degraded state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','cc28f87bd5b445c3abd07af689d8ee74',''),(22908,'{32441}=1','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is failed','',0,0,4,0,'The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is in failed state.','',NULL,0,0,2,0,'',0,'',0,'',0,'','113096666e074f8eadab59c0250968af',''),(22909,'{32442}=2','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is misplaced','',0,0,2,0,'The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is misplaced.','',NULL,0,0,2,0,'',0,'',0,'',0,'','63589098cc6b4e9ea7e7855e5a6b980e',''),(22910,'{32443}=3','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is missing','',0,0,3,0,'The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is missing.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6b89f74f468942f789f75fdbb2b6cee6',''),(22911,'{32444}=0','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','',0,0,4,0,'The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6b7b21cc6a3144edaf5fb3da2b54370f',''),(22912,'{32445}=4','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','',0,0,2,0,'The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','168ea39107c748d0b7008b4525ff4504',''),(22913,'{32446}=1','Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','',0,0,1,0,'The fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','41296079847b49d285e395e77f920e06',''),(22914,'{32447}=0','FC network [{#NAME}]: Has critical status','',0,0,4,0,'The FC network [{#NAME}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','38b9aba3f57f4b779f26dcf3d53090cf',''),(22915,'{32448}=4','FC network [{#NAME}]: Has warning status','',0,0,2,0,'The FC network [{#NAME}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','edf33e3c732442c6ac3327e995d0919e',''),(22916,'{32449}=1','FC network [{#NAME}]: Is disabled','',0,0,1,0,'The FC network [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','518a795f68bf4b81ac17332f511ffdb5',''),(22917,'{32450}=0','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port has critical status','',0,0,4,0,'The link port status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d0a6196dc2984373916bbb857687d398',''),(22918,'{32451}=4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port has warning status','',0,0,2,0,'The link port status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','73fd558563794741b1416fb73ba4f173',''),(22919,'{32452}=1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port is disabled','',0,0,1,0,'The link port of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ab5f51fe1dcd4a859ffb3dff66450b33',''),(22920,'{32453}=0','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port has critical status','',0,0,4,0,'The MGMT port status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','514ecd9c1bbd4821ad84e5ddb042d0c6',''),(22921,'{32454}=4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port has warning status','',0,0,2,0,'The MGMT port status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7dd75b26c54d41228199ee9e810272bc',''),(22922,'{32455}=1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port is disabled','',0,0,1,0,'The MGMT port of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1b7b8409bc394f22b940c09e56b3fa5c',''),(22923,'{32456}=4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is subsumed','',0,0,3,0,'The device slot is configured to be part of another device slot.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d47706453e8944e497ff01feaaa19aab',''),(22924,'{32457}=0','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','',0,0,4,0,'The status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c1d8fa7ff1fe444aaefdffdcda810e5c',''),(22925,'{32458}=4','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','',0,0,2,0,'The status of the manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','44b30472c18a49cf9c0f7bb2f30fd184',''),(22926,'{32459}=1','Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','',0,0,1,0,'The manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','34dd6fb0ed264192b7d1b46ba2778b16',''),(22927,'{32460}=3 and length({32461})>0','Hypervisor manager [{#NAME}]: Is in error state','',0,0,4,0,'The hypervisor manager [{#NAME}] has an error.','',NULL,0,0,2,0,'',0,'',0,'Reason: {ITEM.LASTVALUE2}',0,'','fd90d819f10d43cc9b18ae5e5ee96b66',''),(22928,'{32462}=0','Hypervisor manager [{#NAME}]: Has critical status','',0,0,4,0,'The hypervisor manager [{#NAME}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a942a7ddfad14bb08915c7ba6c3248bc',''),(22929,'{32463}=4','Hypervisor manager [{#NAME}]: Has warning status','',0,0,2,0,'The hypervisor manager [{#NAME}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d81f11c478484d77a64049a2716865b4',''),(22930,'{32464}=1','Hypervisor manager [{#NAME}]: Is disabled','',0,0,1,0,'The hypervisor manager [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ea85e02ebac94ab2821659c88eb5363c',''),(22931,'{32465}=0','Interconnect [{#NAME}]: Has critical status','',0,0,4,0,'The interconnect [{#NAME}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ccc001583dc6478aa3569b14b65be97d',''),(22932,'{32466}=4','Interconnect [{#NAME}]: Has warning status','',0,0,2,0,'The interconnect [{#NAME}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','a6d1c63e2aa04c71bac2eaef5b693110',''),(22933,'{32467}=1','Interconnect [{#NAME}]: Is disabled','',0,0,1,0,'The interconnect [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6649436c06c345f8a394356e8a4fe546',''),(22934,'{32468}=2','Logical enclosure [{#NAME}]: Delete failed','',0,0,3,0,'Indicator that the deletion of a logical enclosure failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1c17c2f49bea47bc978698e4b8d8281b',''),(22935,'{32469}=0','Logical enclosure [{#NAME}]: Is inconsistent','',0,0,3,0,'The configuration of the logical enclosure differs from that of the enclosure group, or the configuration of the hardware resources is inconsistent with the logical enclosure configuration. Perform an Update from group, Reapply configuration, or Update firmware action as an appropriate to bring the configuration back into consistency.','',NULL,0,0,2,0,'',0,'',0,'',0,'','85354d24f47d45f48c5dda86b9f22fe3',''),(22936,'{32470}=0','Logical enclosure [{#NAME}]: Has critical status','',0,0,4,0,'The status of the logical enclosure [{#NAME}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b3af6beba595455eb7774b3c609e9108',''),(22937,'{32471}=4','Logical enclosure [{#NAME}]: Has warning status','',0,0,2,0,'The status of the logical enclosure [{#NAME}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','32061fadb9c74abab1a1d1371e2cf3e8',''),(22938,'{32472}=1','Logical enclosure [{#NAME}]: Is disabled','',0,0,1,0,'The logical enclosure [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c7ec2fb26b794b28b99eb321a3201fce',''),(22939,'{32473}=0','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health is degraded','',0,0,4,0,'One or more resources in the partition are unhealthy.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1c85a47cfa96487f8c338afe21ad7ce3',''),(22940,'{32474}=1','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health is invalid','',0,0,3,0,'The partition health is invalid.','',NULL,0,0,2,0,'',0,'',0,'',0,'','fdf5fa892eda46aaa2551168e36428bc',''),(22941,'{32475}=2','Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Is invalid','',0,0,3,0,'The partition status is invalid.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1a9c705957d34bfc976c23a8b1f38e14',''),(22942,'{32476}=0','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has critical status','',0,0,4,0,'The status of the power supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ce96e032cf49415aa341b238abcabd1b',''),(22943,'{32477}=4','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Has warning status','',0,0,2,0,'The status of the power supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','711695d95bc14ddfbe54be917c5e3340',''),(22944,'{32478}=1','Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Is disabled','',0,0,1,0,'The status of Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','6d286b675b7546a5b429792345867d16',''),(22945,'{32479}=1','Rack [{#NAME}]: Add error','',0,0,3,0,'Adding the rack [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3a4eebe27b2046d3af9f6b7dca4f1aeb',''),(22946,'{32480}=3','Rack [{#NAME}]: Has credential error','',0,0,3,0,'The rack [{#NAME}] has credential error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','73d7062711f4440dad2b20865dbc79f6',''),(22947,'{32481}=5','Rack [{#NAME}]: Has refresh error','',0,0,3,0,'The rack [{#NAME}] has refresh error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','32b884dfb5164ae78f6274dc6ca4e0cb',''),(22948,'{32482}=7','Rack [{#NAME}]: Has remove error','',0,0,3,0,'The rack [{#NAME}] has remove error.','',NULL,0,0,2,0,'',0,'',0,'',0,'','9ae1160a1bc242a9a1fe3fbf3b155ea7',''),(22949,'{32483}=0','Rack [{#NAME}]: Has critical status','',0,0,4,0,'The rack [{#NAME}] status is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f03657d149374102837fef92efc0bf28',''),(22950,'{32484}=4','Rack [{#NAME}]: Has warning status','',0,0,2,0,'The rack [{#NAME}] status is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','74b635c0c6a7412395f36ac71fe56ec8',''),(22951,'{32485}=1','Rack [{#NAME}]: Is disabled','',0,0,1,0,'The rack [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1e4124bef22448f7b99b3b0ecd29a3ab',''),(22952,'{32486}=0 and length({32487})>0','Server [{#SERVER_NAME}:{#LOCATION}]: Is in maintenance mode','',0,0,1,0,'The disruptive maintenance operations like firmware update can cause many server hardware alerts to be generated in a short period of time. Example: Network connectivity is lost or the server reset is detected.','',NULL,0,0,2,0,'',0,'',0,'Reason: {ITEM.LASTVALUE2}',0,'','cd1156d4df6e411690f94a2857beab16',''),(22953,'{32488}=4 and length({32489})>0','Server [{#SERVER_NAME}:{#LOCATION}]: Is unmanaged','',0,0,3,0,'Discovered a supported server.','',NULL,0,0,2,0,'',0,'',0,'Reason: {ITEM.LASTVALUE2}',0,'','f74bf53c1b394aad9019b603de9a2c09',''),(22954,'{32490}=11','Server [{#SERVER_NAME}:{#LOCATION}]: Has profile error','',0,0,3,0,'The unsuccessful profile application or removal.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ce0f72a3fe5e495cb8dd20b94a2779d6',''),(22955,'{32491}=0','Server [{#SERVER_NAME}:{#LOCATION}]: Is not initialized','',0,0,2,0,'The server is not initialized.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5af93ca2f30d443ea18e8cf6ce139575',''),(22956,'{32492}=12','Server [{#SERVER_NAME}:{#LOCATION}]: Is unsupported','',0,0,3,0,'The server model or version is not currently supported by the appliance.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c03e5c9a910c4953bb18e6347a037ea6',''),(22957,'{32493}=6','Server [{#SERVER_NAME}:{#LOCATION}]: Remove failed','',0,0,3,0,'The previous operation to remove the server hardware did not succeed. The operation should be re-attempted.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1364b9806a104d6d8412329d47e3e505',''),(22958,'{32494}=0','Server [{#SERVER_NAME}:{#LOCATION}]: Has critical status','',0,0,4,0,'The status of the server [{#SERVER_NAME}:{#LOCATION}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','7db1e7eff2624546a065863a2d821287',''),(22959,'{32495}=4','Server [{#SERVER_NAME}:{#LOCATION}]: Has warning status','',0,0,2,0,'The status of the server [{#SERVER_NAME}:{#LOCATION}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','5c0da62e9a704d5ca556c04dbaa8e243',''),(22960,'{32496}=1','Server [{#SERVER_NAME}:{#LOCATION}]: Is disabled','',0,0,1,0,'The server [{#SERVER_NAME}:{#LOCATION}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','79f661ed3a764515a915ba79a009ec4c',''),(22961,'{32497}=0','Storage pool [{#NAME}]: Add error','',0,0,3,0,'Adding of the storage pool [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ae6ac88132f14763ba1ab0488d78d79d',''),(22962,'{32498}=5','Storage pool [{#NAME}]: Create failed','',0,0,3,0,'Creating of the storage pool [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','439cee82cd6744d09b4597a6aeeda91a',''),(22963,'{32499}=7','Storage pool [{#NAME}]: Delete failed','',0,0,3,0,'Deletion of the storage pool [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','91031655fd16446995f316b20e2c0bed',''),(22964,'{32500}=12','Storage pool [{#NAME}]: Update failed','',0,0,3,0,'Updating of the storage pool [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d0a7155241b34e1f9dd3e01203aee3ba',''),(22965,'{32501}=0','Storage pool [{#NAME}]: Has critical status','',0,0,4,0,'The status of the storage pool [{#NAME}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','bace21ba544d45b58541a3e2affde554',''),(22966,'{32502}=4','Storage pool [{#NAME}]: Has warning status','',0,0,2,0,'The status of the storage pool [{#NAME}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','135683c55d81457e90ba97d8e02165a6',''),(22967,'{32503}=1','Storage pool [{#NAME}]: Is disabled','',0,0,1,0,'The storage pool [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4d7c963326d54600b639ec2d14babeb7',''),(22968,'{32504}=0','Storage system [{#NAME}]: Add error','',0,0,3,0,'Adding the storage system [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','cfdbabe4ff584b96a961e395b3a4cda8',''),(22969,'{32505}=5','Storage system [{#NAME}]: Create failed','',0,0,3,0,'Creating of the storage system [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','e759872ffa334bc2b73335b612238c82',''),(22970,'{32506}=7','Storage system [{#NAME}]: Delete failed','',0,0,3,0,'Deletion of the storage system [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','1df4613458b748b59d761d45f494920a',''),(22971,'{32507}=12','Storage system [{#NAME}]: Update failed','',0,0,3,0,'Updating of the storage system [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','3c856acaa42e4ee0807713afba3937ac',''),(22972,'{32508}=0','Storage system [{#NAME}]: Has critical status','',0,0,4,0,'The status of the storage system [{#NAME}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','f8533d36153b4269916c7a9843ea8d5c',''),(22973,'{32509}=4','Storage system [{#NAME}]: Has warning status','',0,0,2,0,'The status of the storage system [{#NAME}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','fc278fec8e3d452bb953599a1cd42336',''),(22974,'{32510}=1','Storage system [{#NAME}]: Is disabled','',0,0,1,0,'The storage system [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','4e60a92c30ed4cf7960d7979a8e2fb77',''),(22975,'{32511}=0','Storage volume [{#NAME}]: Add error','',0,0,3,0,'Adding the storage volume [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','b13d8a034a214bb5bd82d9e573d06e7b',''),(22976,'{32512}=5','Storage volume [{#NAME}]: Create failed','',0,0,3,0,'Creating of the storage volume [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','15f5b0ded7d8430d9b6338d8ab4a26e7',''),(22977,'{32513}=7','Storage volume [{#NAME}]: Delete failed','',0,0,3,0,'Deletion of the storage volume [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','d7b4d59197dc4471b3db746c527213ae',''),(22978,'{32514}=12','Storage volume [{#NAME}]: Update failed','',0,0,3,0,'Updating of the storage volume [{#NAME}] failed.','',NULL,0,0,2,0,'',0,'',0,'',0,'','c0b2dc67758446fa82c6bf9c92c76e93',''),(22979,'{32515}=0','Storage volume [{#NAME}]: Has critical status','',0,0,4,0,'The status of the storage volume [{#NAME}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','284d76cba28a4fc195b4b825665bc570',''),(22980,'{32516}=4','Storage volume [{#NAME}]: Has warning status','',0,0,2,0,'The status of the storage volume [{#NAME}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ab040784159040a1ad031015e9ebef73',''),(22981,'{32517}=1','Storage volume [{#NAME}]: Is disabled','',0,0,1,0,'The storage volume [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','ea9c2c2993b74859b30caaeac8871982',''),(22982,'{32518}=0','Uplink set [{#NAME}]: Has critical status','',0,0,4,0,'The status of the uplink set [{#NAME}] is critical. Needs immediate attention.','',NULL,0,0,2,0,'',0,'',0,'',0,'','89514e78b6e949278e83c3a2372d0fb9',''),(22983,'{32519}=4','Uplink set [{#NAME}]: Has warning status','',0,0,2,0,'The status of the uplink set [{#NAME}] is warning. Needs attention soon.','',NULL,0,0,2,0,'',0,'',0,'',0,'','09f23615c85f43758a05d89466b3ca31',''),(22984,'{32520}=1','Uplink set [{#NAME}]: Is disabled','',0,0,1,0,'The uplink set [{#NAME}] is currently not operational.','',NULL,0,0,2,0,'',0,'',0,'',0,'','57187189c1bc4269873b51ef91a010c4',''),(22985,'{32525}<>1','Proxy [{#PROXY.NAME}]: Zabbix proxy is incompatible','',0,0,2,0,'Zabbix proxy not compatibility','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','519cd429ab184d9ba08a50968dc3e1e6',''),(22986,'{32526}>{$PROXY.LAST_SEEN.MAX}','Proxy [{#PROXY.NAME}]: Proxy last seen','',0,0,2,0,'Zabbix proxy not updating configuration','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Proxy [{#PROXY.NAME}]: Zabbix proxy last seen more than {$PROXY.LAST_SEEN.MAX} seconds ago','ee5eb0e4962b4bb59ac316a4110c86e3',''),(22987,'{32527}=-1','Proxy [{#PROXY.NAME}]: Zabbix proxy never seen','',0,0,2,0,'Zabbix proxy not updating configuration','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','541732183fa747d6b7a05351172720bc',''),(22991,'{32531}<>1','Proxy [{#PROXY.NAME}]: Zabbix proxy is incompatible','',0,0,2,0,'Zabbix proxy not compatibility','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','53dbaf21b8934ea9bada97431d4b3e23',''),(22992,'{32532}>{$PROXY.LAST_SEEN.MAX}','Proxy [{#PROXY.NAME}]: Proxy last seen','',0,0,2,0,'Zabbix proxy not updating configuration','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'Proxy [{#PROXY.NAME}]: Zabbix proxy last seen more than {$PROXY.LAST_SEEN.MAX} seconds ago','21bf9805e0de4e3ba674de388834958e',''),(22993,'{32533}=-1','Proxy [{#PROXY.NAME}]: Zabbix proxy never seen','',0,0,2,0,'Zabbix proxy not updating configuration','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','d58a33ae396943009d359bb0cae9baba',''),(22994,'{32534}=1','Azure MySQL: MySQL server is degraded','',0,0,3,0,'The resource is in degraded state.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','e822fd2214fb41db9b57cdb8eec0444a',''),(22995,'{32535}=3','Azure MySQL: MySQL server is in unknown state','',0,0,2,0,'The resource state is unknown.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','ebb35037a5b646a0bd2c6be44bb1f3c6',''),(22996,'{32536}=2','Azure MySQL: MySQL server is unavailable','',0,0,4,0,'The resource state is unavailable.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','240b861c09a94e209036782b6c7496fa',''),(22997,'{32537}>{$AZURE.DB.ABORTED_CONN.MAX.WARN}','Azure MySQL: Server has aborted connections','',0,0,3,0,'The number of failed attempts to connect to the MySQL server is more than {$AZURE.DB.ABORTED_CONN.MAX.WARN}.','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','3346ea2331c14fa18658eb33e461ec7c',''),(22998,'{32538}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure MySQL: High CPU utilization','',0,0,4,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','5af82cc95239479c86c7ab3dabcfb592',''),(22999,'length({32539})>0','Azure MySQL: There are errors in requests to API','',0,0,3,0,'Zabbix has received errors in response to API requests.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','98c1b86b79e9469cac2870fb2ba42949',''),(23000,'{32540}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure MySQL: Storage space is critically low','',0,0,3,0,'Critical utilization of the storage space.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','1703edc1553644e5aa25d35928c5eafd',''),(23001,'{32541}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure MySQL: Storage space is low','',0,0,2,0,'High utilization of the storage space.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','a2ec23a5e77c40aa9e45d214f4e06ca1',''),(23002,'{32542}=1','Azure MySQL: MySQL server is degraded','',0,0,3,0,'The resource is in degraded state.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','91a32645266547d78df3a70b44c7782b',''),(23003,'{32543}=3','Azure MySQL: MySQL server is in unknown state','',0,0,2,0,'The resource state is unknown.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','852aba88476a40aeb2170b933726b7d8',''),(23004,'{32544}=2','Azure MySQL: MySQL server is unavailable','',0,0,4,0,'The resource state is unavailable.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','5f2d2254dfc24f5481207585bed0d933',''),(23005,'{32545}>{$AZURE.DB.FAILED_CONN.MAX.WARN}','Azure MySQL: Server has failed connections','',0,0,3,0,'The number of failed attempts to connect to the MySQL server is more than {$AZURE.DB.FAILED_CONN.MAX.WARN}.','',NULL,0,0,0,0,'',0,'',0,'Current value: {ITEM.LASTVALUE1}',0,'','5b3a09ca04704e6a9972ee4865d358cd',''),(23006,'{32546}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure MySQL: High CPU utilization','',0,0,4,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','7115fb320e2b4cc1ad1739c8a6cee155',''),(23007,'length({32547})>0','Azure MySQL: There are errors in requests to API','',0,0,3,0,'Zabbix has received errors in response to API requests.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','df5fa33f8c13413bb9d61ea4470b9b2d',''),(23008,'{32548}>{$AZURE.DB.MEMORY.UTIL.CRIT}','Azure MySQL: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','a67b35f1ac674d6692b0b2bcd6f89bd8',''),(23009,'{32549}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure MySQL: Storage space is critically low','',0,0,3,0,'Critical utilization of the storage space.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','3afcb840e8004822a2dada2a89971f69',''),(23010,'{32550}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure MySQL: Storage space is low','',0,0,2,0,'High utilization of the storage space.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','2e605f906b284f769e7c880d4e642b43',''),(23011,'{32559}=0','Process [{#NAME}]: is not running','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','66294f983a134a1e81165878f30d3ebc',''),(23012,'{32560}=1','Azure PostgreSQL: PostgreSQL server is degraded','',0,0,3,0,'The resource is in degraded state.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','65b5c39b48e248c4866c511bbba91e1b',''),(23013,'{32561}=3','Azure PostgreSQL: PostgreSQL server is in unknown state','',0,0,2,0,'The resource state is unknown.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','d8ce86c853064cba80c9883052ed1403',''),(23014,'{32562}=2','Azure PostgreSQL: PostgreSQL server is unavailable','',0,0,4,0,'The resource state is unavailable.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','9572c9e56a6b44368bcf2d8a17a220d8',''),(23015,'{32563}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure PostgreSQL: High CPU utilization','',0,0,4,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','f8672e4488b740a9a17395689c3d853c',''),(23016,'length({32564})>0','Azure PostgreSQL: There are errors in requests to API','',0,0,3,0,'Zabbix has received errors in response to API requests.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','55962f0d8a4c44c9a6b09da705e94c59',''),(23017,'{32565}>{$AZURE.DB.MEMORY.UTIL.CRIT}','Azure PostgreSQL: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','aac52a89709044ed987a365a1d5af17b',''),(23018,'{32566}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure PostgreSQL: Storage space is critically low','',0,0,3,0,'Critical utilization of the storage space.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','de3142bed28340d9abe518cd3967b024',''),(23019,'{32567}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure PostgreSQL: Storage space is low','',0,0,2,0,'High utilization of the storage space.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','e948600affaa4ff4a0ab4e50f4858c0a',''),(23020,'{32568}=1','Azure PostgreSQL: PostgreSQL server is degraded','',0,0,3,0,'The resource is in degraded state.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','699ca12c916746b1bf1e121261771cc3',''),(23021,'{32569}=3','Azure PostgreSQL: PostgreSQL server is in unknown state','',0,0,2,0,'The resource state is unknown.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','14e45ba0bc26409a89d92edfda152947',''),(23022,'{32570}=2','Azure PostgreSQL: PostgreSQL server is unavailable','',0,0,4,0,'The resource state is unavailable.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','4dc9113f8a914ac098d8736dba5aed4a',''),(23023,'{32571}>{$AZURE.DB.CPU.UTIL.CRIT}','Azure PostgreSQL: High CPU utilization','',0,0,4,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','33bd2ef88ad3468b9f0b2b1358cc7448',''),(23024,'length({32572})>0','Azure PostgreSQL: There are errors in requests to API','',0,0,3,0,'Zabbix has received errors in response to API requests.','',NULL,0,0,0,0,'',0,'',0,'{ITEM.LASTVALUE1}',0,'','dd3d0be997204f8b9968ef5839fb7a9b',''),(23025,'{32573}>{$AZURE.DB.MEMORY.UTIL.CRIT}','Azure PsotgreSQL: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','3119f21167a546369c05d31cda2e0147',''),(23026,'{32574}>{$AZURE.DB.STORAGE.PUSED.CRIT}','Azure PostgreSQL: Storage space is critically low','',0,0,3,0,'Critical utilization of the storage space.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','6538d2c8ed774feb951204308f1458ce',''),(23027,'{32575}>{$AZURE.DB.STORAGE.PUSED.WARN}','Azure PostgreSQL: Storage space is low','',0,0,2,0,'High utilization of the storage space.','',NULL,0,0,0,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE1}',0,'','7f7a004cfc2a492092dd74c475888e8b',''),(23028,'length({32576})>0','Meraki: There are errors in \'Get data\' metric','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2bf9355f548e4e9b9b8581fb43f175fe',''),(23029,'{32577}<>1','Meraki: Status is not online','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','00583ac9e9824f7db22a1685421f0be9',''),(23030,'length({32578})>0','Meraki: There are errors in \'Get Device data\' metric','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c8f8af6c92f14dc0bcdf426b124c7344',''),(23031,'length({32579})>3','Meraki: Configuration has been changed','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2fc56ad4baef4796a3ad7d097cad918f',''),(23032,'length({32580})>0','Meraki: There are errors in \'Get networks\' metric','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','c149d21e19f3453b8e569c549ed2c78a',''),(23033,'length({32581})>0','Meraki: There are errors in \'Get VPNs\' metric','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','f65ff582e1a84f5a9e9d6a9c0501b013',''),(23034,'{32582}<{$MERAKI.LICENSE.EXPIRE} and {32582}>=0','Meraki: License expires in less than {$MERAKI.LICENSE.EXPIRE} seconds','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','8694c7fc18904004978a3ce46f06a67e',''),(23035,'{32583}<>1','Meraki: License status is not OK','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d4f71dd53bf8495789b53e063db3555b',''),(23036,'{32584}>{$MERAKI.DEVICE.LATENCY}','Uplink [{#IP}]: [{#UPLINK}]: latency > {$MERAKI.DEVICE.LATENCY}','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','b559ad94b15848089d89e85e4d9db7ff',''),(23037,'{32585}>{$MERAKI.DEVICE.LOSS}','Uplink [{#IP}]: [{#UPLINK}]: loss > {$MERAKI.DEVICE.LOSS}%','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','1309e71025614ce4bb4242e6e291ae48',''),(23038,'{32586}=0','Uplink [{#INTERFACE}]: [{#UPLINK.ROLE}]: [{#NETWORK.NAME}]: status is failed','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','b1f3cbb8f3024c3f8cd6a8eaf7a5df52',''),(23039,'{32587}=1 and {32588}>0','Apache: Failed to fetch status page','',0,0,2,0,'Zabbix has not received any data for items for the last 30 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Apache: Failed to fetch status page (or no data for 30m)','0166ec63913e4bbea25c54b458b3213a',''),(23040,'{32589}=0 and {32590}>0','Apache: Service is down','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','e24dbf9b89c34d839cb12a22b1103df3',''),(23041,'{32591}>{$APACHE.RESPONSE_TIME.MAX.WARN} and {32592}>0','Apache: Service response time is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m)','128905793a4b4a1db5a49f87e87d3383',''),(23042,'{32593}=0','Apache: Process is not running','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','b62f49b09d6b4c6ca01ff60cd9dd2209',''),(23043,'({32594}=0 or\r\n{32595}) and {32596}>0','Nginx: Failed to fetch stub status page','',0,0,2,0,'Zabbix has not received any data for items for the last 30 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'Nginx: Failed to fetch stub status page (or no data for 30m)','a497b80eb03f469c9552881b498003b2',''),(23044,'{32597} > {$NGINX.DROP_RATE.MAX.WARN} and {32598}>0','Nginx: High connections drop rate','',0,0,2,0,'The rate of dropping connections has been greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes.','',NULL,0,0,2,0,'',0,'',0,'Current rate: {ITEM.LASTVALUE1}',0,'Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m)','f2d431fa9bc446608caa3f80ef27c41b',''),(23045,'{32599}=0 and {32600}>0','Nginx: Service is down','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','c043191c22f34522ba4f83430d9f88b1',''),(23046,'{32601}>{$NGINX.RESPONSE_TIME.MAX.WARN} and {32602}>0','Nginx: Service response time is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m)','f5db329410a14609a5f3e883ca493cc8',''),(23047,'{32603}=0','Nginx: Process is not running','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','903e6a1f30154ee49df3f8d87e0164cc',''),(23048,'{32604}=1 and {32605}>0','PHP-FPM: Failed to fetch info data','',0,0,1,0,'Zabbix has not received any data for items for the last 30 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'PHP-FPM: Failed to fetch info data (or no data for 30m)','bdf9962aee2049a8aec000b037b94d60',''),(23049,'({32606}=0 or {32607}=1) and {32608}>0','PHP-FPM: Service is down','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','10d92102d7a24327ada7869a41119fee',''),(23050,'{32609}=0','PHP-FPM: Process is not running','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','21a03d0ada634602ae9089a2cf3b4d70',''),(23051,'{32610}=1 and {32611}>0','RabbitMQ: Failed to fetch nodes data','',0,0,2,0,'Zabbix has not received any data for items for the last 30 minutes.','',NULL,0,0,2,0,'',0,'',1,'',0,'RabbitMQ: Failed to fetch nodes data (or no data for 30m)','4f2a88d09b1b49879d80e0794ec19e0e',''),(23052,'{32612}=0 and {32613}>0','RabbitMQ: Node is not running','',0,0,3,0,'The RabbitMQ node is not running.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','253acf98446e4790975b330d44dd6b96',''),(23053,'{32614}=0 and {32615}>0','RabbitMQ: Service is down','',0,0,3,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'','af5cfb0004e04562a9720b9e1b41fd5b',''),(23054,'{32616}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} and {32617}>0','RabbitMQ: Service response time is too high','',0,0,2,0,'','',NULL,0,0,2,0,'',0,'',1,'',0,'RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m)','5cb80a7552d74e44a83d0825f039f89f',''),(23055,'{32618}=0','RabbitMQ: Process is not running','',0,0,4,0,'','',NULL,0,0,2,0,'',0,'',0,'',0,'','2979bc7d779b404696f7eac273e99ea7',''),(23056,'{32619}=0 and {32620}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32620}=0',0,'',1,'',0,'','164cb829abe44b24af2274a9dc4b4a31',''),(23057,'{32621}=0 and {32622}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32622}=0',0,'',1,'',0,'','80c2cd82fd0647ef9312d8627376cc28',''),(23058,'{32623}=0','Unavailable by ICMP ping','',0,0,4,0,'The last three attempts returned a timeout. Check the connectivity of a device.','',NULL,0,0,0,0,'',0,'',0,'',0,'','2b9b678cb9fc407cb485136ddcf5953c',''),(23059,'{32624}>{$ICMP_LOSS_WARN} and {32624}<100','High ICMP ping loss','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Loss: {ITEM.LASTVALUE1}',0,'','d32cffe7dcef4873ac8bb4d86119ddaa',''),(23060,'{32625}>{$ICMP_RESPONSE_TIME_WARN}','High ICMP ping response time','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'Value: {ITEM.LASTVALUE1}',0,'','a51dc1f61eec4709b8f52b3df65eae86',''),(23061,'{32626}=1 and length({32627})>0','Device has been replaced','',0,0,1,0,'The serial number of a device has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'Device has been replaced (new serial number received)','b813bf6448fe4974911106e36b2d8888',''),(23062,'{32628}=1 and length({32629})>0','System name has changed','',0,0,1,0,'The system name has changed. Acknowledge (Ack) to close manually.','',NULL,0,0,0,0,'',0,'',1,'',0,'System name has changed (new name: {ITEM.VALUE})','cf98bf1ffe854a758f0006aaeb5096ab',''),(23063,'{32630}=1 and length({32631})>0','Operating system description has changed','',0,0,1,0,'The description of the operating system has changed. Possible reasons that system has been updated or replaced. Acknowledge (Ack) to close manually.','',NULL,0,0,0,2,'',0,'',1,'',0,'','749b4c4b8f4e49caa6b239b15953ffb9',''),(23064,'{32632}<10m','Device has been restarted or reinitialized','',0,0,2,0,'The record of SNMP Boots has changed in less than 10 minutes. The restart of a device also counts.','',NULL,0,0,0,0,'',0,'',1,'',0,'{HOST.NAME} has been restarted or reinitialized (uptime < 10m)','fc80a45e361842f09dfe9b047e1c6b5f',''),(23065,'{32633}=0','No SNMP data collection','',0,0,2,0,'SNMP is not available for polling. Check the connectivity of a device and SNMP settings.','',NULL,0,0,0,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','b60bca40b3b14f2384332103af74bd23',''),(23066,'{32634}>{$CPU.UTIL.CRIT}','#{#SNMPINDEX}: High CPU utilization','',0,0,2,0,'The CPU utilization is too high. The system might be slow to respond.','',NULL,0,0,2,0,'',0,'',0,'Current utilization: {ITEM.LASTVALUE}',0,'#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m)','1ac7652bda474762aa0b0c354728307e',''),(23067,'{32635}=1 and length({32636})>0','{#ENT_NAME}: Device has been replaced','',0,0,1,0,'Device serial number has changed. Ack to close.','',NULL,0,0,2,0,'',0,'',1,'',0,'{#ENT_NAME}: Device has been replaced (new serial number received)','18e244c17d6c436f9e3b1d71d7bfd024',''),(23068,'{32637}=3','{#SNMPVALUE}: Fan is down','',0,0,3,0,'The fan unit requires immediate attention.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE}',0,'','c06b2cf2183d40348b3f688a7fbcb479',''),(23069,'{32638}=1','{#SNMPVALUE}: Fan is in unknown state','',0,0,1,0,'The fan unit requires attention.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE}',0,'','ec5a4c0aa2b947309d012fcaf1736c7e',''),(23070,'{32639}=4','{#SNMPVALUE}: Fan is in warning state','',0,0,2,0,'The fan unit requires attention.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE}',0,'','83494b0d4ec84709a18f8674c1fa50fd',''),(23071,'{32640}>{$MEMORY.UTIL.MAX}','{#SNMPVALUE}: High memory utilization','',0,0,3,0,'The system is running out of free memory.','',NULL,0,0,2,0,'',0,'',0,'',0,'{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m)','d7f6de21b2434a81b2b116a98a59b1ed',''),(23072,'{32641}<0 \r\nand {32642}>0 \r\nand {32643} \r\nand {32644}<>2','Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before','',0,0,1,0,'This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of issues with autonegotiation. Ack to close manually.','',NULL,0,0,2,1,'({32641}>0 and {32645}>0)\r\nor {32644}=2',0,'',1,'Current reported speed: {ITEM.LASTVALUE1}',0,'','06a31bd057814786aac4f42ccdf57fdf',''),(23073,'({32646}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{32647}) and\r\n{32647}>0','Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage','',0,0,2,0,'The utilization of the network interface is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{32646}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{32647}',0,'',1,'In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','9dc308a5f30a45689eb2b9b3c2d9d453',''),(23074,'({32648}>({$IF.UTIL.MAX:\"{#IFNAME}\"}/100)*{32649}) and\r\n{32649}>0','Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage','',0,0,2,0,'The utilization of the network interface is close to its estimated maximum bandwidth.','',NULL,0,0,2,1,'{32648}<(({$IF.UTIL.MAX:\"{#IFNAME}\"}-3)/100)*{32649}',0,'',1,'Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:\"{#IFNAME}\"}% )','0036e4b0761740aea6f0b5c305861a4d',''),(23075,'{32650}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High input error rate','',0,0,2,0,'It recovers when it goes below 80% of the {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,1,'{32651}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors in: {ITEM.LASTVALUE}',0,'Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','9d60de695fa243b4b933766b668de946',''),(23076,'{32652}>{$IF.ERRORS.WARN:\"{#IFNAME}\"}','Interface {#IFNAME}({#IFALIAS}): High output error rate','',0,0,2,0,'It recovers when it goes below 80% of the {$IF.ERRORS.WARN:\"{#IFNAME}\"} threshold.','',NULL,0,0,2,1,'{32653}<{$IF.ERRORS.WARN:\"{#IFNAME}\"}*0.8',0,'',1,'errors out: {ITEM.LASTVALUE2}',0,'Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:\"{#IFNAME}\"} for 5m)','d1cc4527260346e59b86577e0ae9cc0c',''),(23077,'{$IFCONTROL:\"{#IFNAME}\"}=1 \r\nand {32654}=2 \r\nand {32655}','Interface {#IFNAME}({#IFALIAS}): Link down','',0,0,3,0,'This trigger expression works as follows:\r\n1. Can be triggered if operations status is down.\r\n2. Use $IFCONTROL macro with context \"{#IFNAME}\" to void trigger firing on specific interfaces. Values:\r\n- 0 : Marks an interface as not important. Trigger does not fire when interface is down.\r\n- 1 : Default value to fire the trigger when interface is down\r\n3. change(//net.if.status[{#IFNAME}]) - condition prevents firing of trigger if status did not change. It helps in cases, when interfaces were initially down.\r\nBEWARE, manual close will ceasefire until at least two status changes happens again!','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE1}',0,'','d16b8b35258a4c4b8e4338c2577f198b',''),(23078,'{32656}=2','Interface {#IFNAME}({#IFALIAS}): In half-duplex mode','',0,0,2,0,'Check the autonegotiation settings and cabling.','',NULL,0,0,2,0,'',0,'',1,'',0,'','c1f6a9e7c53c43a6ae19fa249236157d',''),(23079,'{32657}=8','{#SNMPVALUE}: PSU is in failed state','',0,0,4,0,'The FRU is in a failed state.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE}',0,'','4bc31f8605ab4899979d2f3385cd7b7a',''),(23080,'{32658}=3','{#SNMPVALUE}: PSU is off: Administratively','',0,0,1,0,'The FRU is administratively off.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE}',0,'','a930e2d032804dc880ebe51c4fd0dd07',''),(23081,'{32659}','{#SNMPVALUE}: PSU is off or out of optimal state','',0,0,3,0,'The PSU requires attention. Compare current state from operational data with table below:\r\n- offEnvOther (1): FRU is powered off because of a problem not listed below;\r\n- on (2): FRU is powered on;\r\n- offAdmin (3): administratively off;\r\n- offDenied (4): FRU is powered off because available system power is insufficient;\r\n- offEnvPower (5): FRU is powered off because of a power problem in the FRU. For example, the FRU\'s power translation (DC-DC converter) or distribution failed;\r\n- offEnvTemp (6): FRU is powered off because of temperature problem;\r\n- offEnvFan (7): FRU is powered off because of fan problems;\r\n- failed (8): FRU is in failed state;\r\n- onButFanFail (9): FRU is on but fan has failed;\r\n- offCooling (10): FRU is powered off because of the system\'s insufficient cooling capacity;\r\n- offConnectorRating (11): FRU is powered off because of the system\'s connector rating exceeded;\r\n- onButInlinePowerFail (12): The FRU is on but no inline power is being delivered as the data/inline power component of the FRU has failed.','',NULL,0,0,2,0,'',0,'',0,'Current state: {ITEM.LASTVALUE}',0,'','6e2517ce92c949589539edece3cb5eb5',''),(23082,'{32660}=2','{#SNMPVALUE}: Temperature sensor is not available','',0,0,2,0,'It means that the agent presently can not report the sensor value.','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'','938eb8e3d3f4486b89316a7b00aa5600',''),(23083,'{32661}=3','{#SNMPVALUE}: Temperature sensor is not operational','',0,0,4,0,'It means that the agent considers that the sensor is broken. The sensor could have a hard failure (e.g., disconnected wire), or a soft failure (e.g., out-of-range, jittery, or wildly fluctuating readings).','',NULL,0,0,2,0,'',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'','ec63ba043da64c8abd4c4a9e2dbc297f',''),(23084,'{32662}>{$TEMP_CRIT:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above critical threshold','',0,0,4,0,'This trigger uses the values of the temperature sensor.','',NULL,0,0,2,1,'{32663}<{$TEMP_CRIT:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:\"{#SNMPVALUE}\"}°C','ca54affa31654e358ad2be30b8e6dc72',''),(23085,'{32664}>{$TEMP_WARN:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is above warning threshold','',0,0,2,0,'This trigger uses the values of the temperature sensor.','',NULL,0,0,2,1,'{32665}<{$TEMP_WARN:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:\"{#SNMPVALUE}°C\"}','29f9c6e22d714a18997683ad8979239a',''),(23086,'{32666}<{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}','{#SNMPVALUE}: Temperature is too low','',0,0,3,0,'','',NULL,0,0,2,1,'{32667}>{$TEMP_CRIT_LOW:\"{#SNMPVALUE}\"}-3',0,'',0,'Current value: {ITEM.LASTVALUE}',0,'{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:\"{#SNMPVALUE}°C\"}','0ce9b389385f482c9bea0c52822be85d',''),(23087,'{32668}=0 and {32669}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32669}=0',0,'',1,'',0,'','05ec0e80333d4f7688b71a2865d0365e',''),(23088,'{32670}=0 and {32671}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32671}=0',0,'',1,'',0,'','f5a2fc8328d647d48eb3c2ebda361dc3',''),(23089,'{32672}=0 and {32673}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32673}=0',0,'',1,'',0,'','c678e20762674346932f0107b4f7ec8c',''),(23090,'{32674}=0 and {32675}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32675}=0',0,'',1,'',0,'','c8e2f67378d84b3ba687467bc6daf63a',''),(23092,'{32678}=0 and {32679}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32679}=0',0,'',1,'',0,'','001c20d581824f0380244745ce0fae9e',''),(23093,'{32680}=0 and {32681}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32681}=0',0,'',1,'',0,'','7d1eaacab7ac4af7969c7fc22c67cfb8',''),(23094,'{32682}=0 and {32683}=1','{#FSNAME}: Filesystem became read-only','',0,0,3,0,'The filesystem has become read-only. A possible reason is an I/O error. It is available only for Zabbix agents 6.4 and higher.','',NULL,0,0,2,1,'{32683}=0',0,'',1,'',0,'','cbbcf1204cf345ceaaf2a9b12996f52f',''),(23096,'{3}=0','tr1_1','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','6cd860ba635549e2888ce070ddd3137e',''),(23097,'{4}=0','tr1_1','',0,0,3,0,'','',23096,0,0,0,0,'',0,'',0,'',0,'','',''),(23098,'{5}={6}','tr1_2','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','17cce68c9ffa42c9a60894edf7eb534e',''),(23099,'{7}={8}','tr1_2','',0,0,3,0,'','',23098,0,0,0,0,'',0,'',0,'',0,'','',''),(23100,'{9}=0','tr5_1','',0,0,2,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','8c1e4617e0c64b77b613fefee5da7e3c',''),(23101,'{10}=0','tr5_1','',0,0,2,0,'','',23100,0,0,0,0,'',0,'',0,'',0,'','',''),(23102,'{11}=0','tr5_1','',0,0,2,0,'','',23101,0,0,0,0,'',0,'',0,'',0,'','',''),(23103,'{12}=0','tr6_1','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','2f696ad7e0d940169a2380995e1e8c34',''),(23104,'{13}=0','tr6_1','',0,0,3,0,'','',23103,0,0,0,0,'',0,'',0,'',0,'','',''),(23105,'{14}=0','tr6_1','',0,0,3,0,'','',23104,0,0,0,0,'',0,'',0,'',0,'','',''),(23112,'{24}=0','tr9_1','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','7abb5174609842fab1f2e3fd46988710',''),(23113,'{25}=0','tr9_1','',0,0,3,0,'','',23112,0,0,0,0,'',0,'',0,'',0,'','',''),(23114,'{26}=0','tr9_1','',0,0,3,0,'','',23113,0,0,0,0,'',0,'',0,'',0,'','',''),(23115,'{27}=0','tr9_1','',0,0,3,0,'','',23114,0,0,0,0,'',0,'',0,'',0,'','',''),(23116,'{28}=0','tr9_1','',0,0,3,0,'','',23115,0,0,0,0,'',0,'',0,'',0,'','',''),(23117,'{29}=0','tr9_1','',0,0,3,0,'','',23115,0,0,0,0,'',0,'',0,'',0,'','',''),(23118,'{30}=0','tr7_1','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9c28a68b0d404511a6db20034f96cc91',''),(23119,'{31}=0','tr7_1','',0,0,3,0,'','',23118,0,0,0,0,'',0,'',0,'',0,'','',''),(23120,'{32}=0','tr7_1','',0,0,3,0,'','',23119,0,0,0,0,'',0,'',0,'',0,'','',''),(23121,'{33}=0','tr7_1','',0,0,3,0,'','',23120,0,0,0,0,'',0,'',0,'',0,'','',''),(23122,'{34}=0','tr7_1','',0,0,3,0,'','',23120,0,0,0,0,'',0,'',0,'',0,'','',''),(23123,'{35}={36}','tr7_2','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ec7702317ed44c23b9edd6999d62dc16',''),(23124,'{37}={38}','tr7_2','',0,0,3,0,'','',23123,0,0,0,0,'',0,'',0,'',0,'','',''),(23125,'{39}={40}','tr7_2','',0,0,3,0,'','',23124,0,0,0,0,'',0,'',0,'',0,'','',''),(23126,'{41}={42}','tr7_2','',0,0,3,0,'','',23125,0,0,0,0,'',0,'',0,'',0,'','',''),(23127,'{43}={44}','tr7_2','',0,0,3,0,'','',23125,0,0,0,0,'',0,'',0,'',0,'','',''),(23128,'{45}=0','tr8_1','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','9edb97b96d4b4ad081fdaab71d1dcf14',''),(23129,'{46}=0','tr8_1','',0,0,3,0,'','',23128,0,0,0,0,'',0,'',0,'',0,'','',''),(23130,'{47}=0','tr8_1','',0,0,3,0,'','',23129,0,0,0,0,'',0,'',0,'',0,'','',''),(23131,'{48}=0','tr8_1','',0,0,3,0,'','',23130,0,0,0,0,'',0,'',0,'',0,'','',''),(23132,'{49}=0','tr8_1','',0,0,3,0,'','',23130,0,0,0,0,'',0,'',0,'',0,'','',''),(23133,'{50}=0','tr4_1','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','ca3971e7164547bcb373904091cdb0dc',''),(23134,'{51}=0','tr4_1','',0,0,3,0,'','',23133,0,0,0,0,'',0,'',0,'',0,'','',''),(23135,'{52}=0','tr4_1','',0,0,3,0,'','',23134,0,0,0,0,'',0,'',0,'',0,'','',''),(23136,'{53}=0','tr4_1','',0,0,3,0,'','',23134,0,0,0,0,'',0,'',0,'',0,'','',''),(23137,'{54}={55}={56}={57}','tr4_2','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','35c9f8d048d84defbd34d6cbf99902b5',''),(23138,'{58}={59}={60}={61}','tr4_2','',0,0,3,0,'','',23137,0,0,0,0,'',0,'',0,'',0,'','',''),(23139,'{62}={63}={64}={65}','tr4_2','',0,0,3,0,'','',23138,0,0,0,0,'',0,'',0,'',0,'','',''),(23140,'{66}={67}={68}={69}','tr4_2','',0,0,3,0,'','',23138,0,0,0,0,'',0,'',0,'',0,'','',''),(23141,'{70}=0','tr10_1','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d646de82fbcb44d2917b7682ddc62bdc',''),(23142,'{71}=0','tr10_1','',0,0,3,0,'','',23141,0,0,0,0,'',0,'',0,'',0,'','',''),(23143,'{72}=0','tr10_1','',0,0,3,0,'','',23142,0,0,0,0,'',0,'',0,'',0,'','',''),(23144,'{73}=0','tr10_1','',0,0,3,0,'','',23142,0,0,0,0,'',0,'',0,'',0,'','',''),(23145,'{74}=0','tr2_1','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','7d576277d9e64f9f9c9486359eda68c2',''),(23146,'{75}=0','tr2_1','',0,0,3,0,'','',23145,0,0,0,0,'',0,'',0,'',0,'','',''),(23147,'{76}=0','tr2_1','',0,0,3,0,'','',23145,0,0,0,0,'',0,'',0,'',0,'','',''),(23148,'{77}={78}={79}={80}={81}={82}=0','tr2_2','',0,0,3,0,'','',NULL,0,0,0,0,'',0,'',0,'',0,'','d7d41d98a0da4d87b33ef755b30996d0',''),(23149,'{83}={84}={85}={86}={87}={88}=0','tr2_2','',0,0,3,0,'','',23148,0,0,0,0,'',0,'',0,'',0,'','',''),(23150,'{89}={90}={91}={92}={93}={94}=0','tr2_2','',0,0,3,0,'','',23148,0,0,0,0,'',0,'',0,'',0,'','',''); /*!40000 ALTER TABLE `triggers` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `triggers_insert` AFTER INSERT ON `triggers` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (5,new.triggerid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `triggers_update` AFTER UPDATE ON `triggers` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (5,old.triggerid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `triggers_delete` BEFORE DELETE ON `triggers` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (5,old.triggerid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `user_scim_group` -- DROP TABLE IF EXISTS `user_scim_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_scim_group` ( `user_scim_groupid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `scim_groupid` bigint unsigned NOT NULL, PRIMARY KEY (`user_scim_groupid`), KEY `user_scim_group_1` (`userid`), KEY `user_scim_group_2` (`scim_groupid`), CONSTRAINT `c_user_scim_group_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_user_scim_group_2` FOREIGN KEY (`scim_groupid`) REFERENCES `scim_group` (`scim_groupid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_scim_group` -- LOCK TABLES `user_scim_group` WRITE; /*!40000 ALTER TABLE `user_scim_group` DISABLE KEYS */; /*!40000 ALTER TABLE `user_scim_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userdirectory` -- DROP TABLE IF EXISTS `userdirectory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `userdirectory` ( `userdirectoryid` bigint unsigned NOT NULL, `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `idp_type` int NOT NULL DEFAULT '1', `provision_status` int NOT NULL DEFAULT '0', PRIMARY KEY (`userdirectoryid`), KEY `userdirectory_1` (`idp_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userdirectory` -- LOCK TABLES `userdirectory` WRITE; /*!40000 ALTER TABLE `userdirectory` DISABLE KEYS */; /*!40000 ALTER TABLE `userdirectory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userdirectory_idpgroup` -- DROP TABLE IF EXISTS `userdirectory_idpgroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `userdirectory_idpgroup` ( `userdirectory_idpgroupid` bigint unsigned NOT NULL, `userdirectoryid` bigint unsigned NOT NULL, `roleid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`userdirectory_idpgroupid`), KEY `userdirectory_idpgroup_1` (`userdirectoryid`), KEY `userdirectory_idpgroup_2` (`roleid`), CONSTRAINT `c_userdirectory_idpgroup_1` FOREIGN KEY (`userdirectoryid`) REFERENCES `userdirectory` (`userdirectoryid`) ON DELETE CASCADE, CONSTRAINT `c_userdirectory_idpgroup_2` FOREIGN KEY (`roleid`) REFERENCES `role` (`roleid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userdirectory_idpgroup` -- LOCK TABLES `userdirectory_idpgroup` WRITE; /*!40000 ALTER TABLE `userdirectory_idpgroup` DISABLE KEYS */; /*!40000 ALTER TABLE `userdirectory_idpgroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userdirectory_ldap` -- DROP TABLE IF EXISTS `userdirectory_ldap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `userdirectory_ldap` ( `userdirectoryid` bigint unsigned NOT NULL, `host` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `port` int NOT NULL DEFAULT '389', `base_dn` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `search_attribute` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `bind_dn` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `bind_password` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `start_tls` int NOT NULL DEFAULT '0', `search_filter` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `group_basedn` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `group_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `group_member` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `user_ref_attr` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `group_filter` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `group_membership` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `user_username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `user_lastname` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`userdirectoryid`), CONSTRAINT `c_userdirectory_ldap_1` FOREIGN KEY (`userdirectoryid`) REFERENCES `userdirectory` (`userdirectoryid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userdirectory_ldap` -- LOCK TABLES `userdirectory_ldap` WRITE; /*!40000 ALTER TABLE `userdirectory_ldap` DISABLE KEYS */; /*!40000 ALTER TABLE `userdirectory_ldap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userdirectory_media` -- DROP TABLE IF EXISTS `userdirectory_media`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `userdirectory_media` ( `userdirectory_mediaid` bigint unsigned NOT NULL, `userdirectoryid` bigint unsigned NOT NULL, `mediatypeid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `attribute` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`userdirectory_mediaid`), KEY `userdirectory_media_1` (`userdirectoryid`), KEY `userdirectory_media_2` (`mediatypeid`), CONSTRAINT `c_userdirectory_media_1` FOREIGN KEY (`userdirectoryid`) REFERENCES `userdirectory` (`userdirectoryid`) ON DELETE CASCADE, CONSTRAINT `c_userdirectory_media_2` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userdirectory_media` -- LOCK TABLES `userdirectory_media` WRITE; /*!40000 ALTER TABLE `userdirectory_media` DISABLE KEYS */; /*!40000 ALTER TABLE `userdirectory_media` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userdirectory_saml` -- DROP TABLE IF EXISTS `userdirectory_saml`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `userdirectory_saml` ( `userdirectoryid` bigint unsigned NOT NULL, `idp_entityid` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `sso_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `slo_url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `username_attribute` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `sp_entityid` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `nameid_format` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `sign_messages` int NOT NULL DEFAULT '0', `sign_assertions` int NOT NULL DEFAULT '0', `sign_authn_requests` int NOT NULL DEFAULT '0', `sign_logout_requests` int NOT NULL DEFAULT '0', `sign_logout_responses` int NOT NULL DEFAULT '0', `encrypt_nameid` int NOT NULL DEFAULT '0', `encrypt_assertions` int NOT NULL DEFAULT '0', `group_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `user_username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `user_lastname` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `scim_status` int NOT NULL DEFAULT '0', PRIMARY KEY (`userdirectoryid`), CONSTRAINT `c_userdirectory_saml_1` FOREIGN KEY (`userdirectoryid`) REFERENCES `userdirectory` (`userdirectoryid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userdirectory_saml` -- LOCK TABLES `userdirectory_saml` WRITE; /*!40000 ALTER TABLE `userdirectory_saml` DISABLE KEYS */; /*!40000 ALTER TABLE `userdirectory_saml` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userdirectory_usrgrp` -- DROP TABLE IF EXISTS `userdirectory_usrgrp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `userdirectory_usrgrp` ( `userdirectory_usrgrpid` bigint unsigned NOT NULL, `userdirectory_idpgroupid` bigint unsigned NOT NULL, `usrgrpid` bigint unsigned NOT NULL, PRIMARY KEY (`userdirectory_usrgrpid`), UNIQUE KEY `userdirectory_usrgrp_1` (`userdirectory_idpgroupid`,`usrgrpid`), KEY `userdirectory_usrgrp_2` (`usrgrpid`), KEY `userdirectory_usrgrp_3` (`userdirectory_idpgroupid`), CONSTRAINT `c_userdirectory_usrgrp_1` FOREIGN KEY (`userdirectory_idpgroupid`) REFERENCES `userdirectory_idpgroup` (`userdirectory_idpgroupid`) ON DELETE CASCADE, CONSTRAINT `c_userdirectory_usrgrp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userdirectory_usrgrp` -- LOCK TABLES `userdirectory_usrgrp` WRITE; /*!40000 ALTER TABLE `userdirectory_usrgrp` DISABLE KEYS */; /*!40000 ALTER TABLE `userdirectory_usrgrp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `users` ( `userid` bigint unsigned NOT NULL, `username` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `surname` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `passwd` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `autologin` int NOT NULL DEFAULT '0', `autologout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '15m', `lang` varchar(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'default', `refresh` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '30s', `theme` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'default', `attempt_failed` int NOT NULL DEFAULT '0', `attempt_ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `attempt_clock` int NOT NULL DEFAULT '0', `rows_per_page` int NOT NULL DEFAULT '50', `timezone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'default', `roleid` bigint unsigned DEFAULT NULL, `userdirectoryid` bigint unsigned DEFAULT NULL, `ts_provisioned` int NOT NULL DEFAULT '0', PRIMARY KEY (`userid`), UNIQUE KEY `users_1` (`username`), KEY `users_2` (`userdirectoryid`), KEY `c_users_1` (`roleid`), CONSTRAINT `c_users_1` FOREIGN KEY (`roleid`) REFERENCES `role` (`roleid`) ON DELETE CASCADE, CONSTRAINT `c_users_2` FOREIGN KEY (`userdirectoryid`) REFERENCES `userdirectory` (`userdirectoryid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'Admin','Zabbix','Administrator','$2y$10$92nDno4n0Zm7Ej7Jfsz8WukBfgSS/U0QkIuu8WkJPihXBb2A1UrEK','',1,'0','default','30s','default',0,'',0,50,'default',3,NULL,0),(2,'guest','','','$2y$10$89otZrRNmde97rIyzclecuk6LwKAsHN0BcvoOKGjbT.BwMBfm7G06','',0,'15m','default','30s','default',0,'',0,50,'default',4,NULL,0); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users_groups` -- DROP TABLE IF EXISTS `users_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `users_groups` ( `id` bigint unsigned NOT NULL, `usrgrpid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_groups_1` (`usrgrpid`,`userid`), KEY `users_groups_2` (`userid`), CONSTRAINT `c_users_groups_1` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE, CONSTRAINT `c_users_groups_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users_groups` -- LOCK TABLES `users_groups` WRITE; /*!40000 ALTER TABLE `users_groups` DISABLE KEYS */; INSERT INTO `users_groups` VALUES (4,7,1),(2,8,2),(3,9,2),(5,13,1),(6,13,2); /*!40000 ALTER TABLE `users_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `usrgrp` -- DROP TABLE IF EXISTS `usrgrp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `usrgrp` ( `usrgrpid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `gui_access` int NOT NULL DEFAULT '0', `users_status` int NOT NULL DEFAULT '0', `debug_mode` int NOT NULL DEFAULT '0', `userdirectoryid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`usrgrpid`), UNIQUE KEY `usrgrp_1` (`name`), KEY `usrgrp_2` (`userdirectoryid`), CONSTRAINT `c_usrgrp_2` FOREIGN KEY (`userdirectoryid`) REFERENCES `userdirectory` (`userdirectoryid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `usrgrp` -- LOCK TABLES `usrgrp` WRITE; /*!40000 ALTER TABLE `usrgrp` DISABLE KEYS */; INSERT INTO `usrgrp` VALUES (7,'Zabbix administrators',0,0,0,NULL),(8,'Guests',0,0,0,NULL),(9,'Disabled',0,1,0,NULL),(11,'Enabled debug mode',0,0,1,NULL),(12,'No access to the frontend',3,0,0,NULL),(13,'Internal',1,0,0,NULL); /*!40000 ALTER TABLE `usrgrp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `valuemap` -- DROP TABLE IF EXISTS `valuemap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `valuemap` ( `valuemapid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`valuemapid`), UNIQUE KEY `valuemap_1` (`hostid`,`name`), CONSTRAINT `c_valuemap_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `valuemap` -- LOCK TABLES `valuemap` WRITE; /*!40000 ALTER TABLE `valuemap` DISABLE KEYS */; /*!40000 ALTER TABLE `valuemap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `valuemap_mapping` -- DROP TABLE IF EXISTS `valuemap_mapping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `valuemap_mapping` ( `valuemap_mappingid` bigint unsigned NOT NULL, `valuemapid` bigint unsigned NOT NULL, `value` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `newvalue` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `type` int NOT NULL DEFAULT '0', `sortorder` int NOT NULL DEFAULT '0', PRIMARY KEY (`valuemap_mappingid`), UNIQUE KEY `valuemap_mapping_1` (`valuemapid`,`value`,`type`), CONSTRAINT `c_valuemap_mapping_1` FOREIGN KEY (`valuemapid`) REFERENCES `valuemap` (`valuemapid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `valuemap_mapping` -- LOCK TABLES `valuemap_mapping` WRITE; /*!40000 ALTER TABLE `valuemap_mapping` DISABLE KEYS */; /*!40000 ALTER TABLE `valuemap_mapping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget` -- DROP TABLE IF EXISTS `widget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `widget` ( `widgetid` bigint unsigned NOT NULL, `type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `x` int NOT NULL DEFAULT '0', `y` int NOT NULL DEFAULT '0', `width` int NOT NULL DEFAULT '1', `height` int NOT NULL DEFAULT '2', `view_mode` int NOT NULL DEFAULT '0', `dashboard_pageid` bigint unsigned NOT NULL, PRIMARY KEY (`widgetid`), KEY `widget_1` (`dashboard_pageid`), CONSTRAINT `c_widget_1` FOREIGN KEY (`dashboard_pageid`) REFERENCES `dashboard_page` (`dashboard_pageid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget` -- LOCK TABLES `widget` WRITE; /*!40000 ALTER TABLE `widget` DISABLE KEYS */; INSERT INTO `widget` VALUES (1,'tophosts','Top hosts by CPU utilization',0,0,8,4,0,1),(2,'item','Performance',8,0,3,2,1,1),(3,'systeminfo','',11,0,9,4,0,1),(4,'clock','Local time',20,0,4,4,1,1),(5,'svggraph','',8,2,3,2,1,1),(6,'hostavail','',0,4,7,2,0,1),(7,'problemsbysv','Problems by severity',7,4,10,2,0,1),(8,'geomap','',17,4,7,7,0,1),(9,'problems','Current problems',0,6,17,5,0,1),(10,'problems','Zabbix server problems',0,0,20,4,0,2),(11,'clock','Local time',20,0,4,4,1,2),(12,'svggraph','Values processed per second',0,4,8,5,0,2),(13,'svggraph','Utilization of data collectors',8,4,8,5,0,2),(14,'svggraph','Utilization of internal processes',16,4,8,5,0,2),(15,'svggraph','Cache usage',0,9,8,5,0,2),(16,'svggraph','Value cache effectiveness',8,9,8,5,0,2),(17,'svggraph','Queue size',16,9,8,5,0,2),(400,'map','',0,0,24,4,0,57),(401,'item','',5,1,4,3,0,58),(402,'item','',16,2,4,3,0,58),(403,'item','',12,0,1,2,0,58),(404,'item','s',10,4,4,3,0,58),(405,'item','',5,5,4,3,0,58),(406,'item','',10,9,1,2,0,58),(407,'item','',4,1,4,3,0,59),(408,'item','',11,1,1,2,0,59),(409,'item','',15,1,4,3,0,59),(410,'item','',10,5,4,3,0,59),(411,'item','',3,5,4,3,0,59),(412,'item','',17,4,1,2,0,59),(413,'item','',3,0,4,3,0,61),(414,'item','',8,1,4,3,0,61),(415,'item','',14,1,4,3,0,61),(416,'item','',5,4,4,3,0,61),(417,'item','',9,4,4,3,0,61),(418,'item','',14,6,4,3,0,61),(419,'item','',18,5,4,3,0,61),(420,'item','',3,9,4,3,0,61),(421,'item','',7,8,4,3,0,61),(422,'item','',11,9,4,3,0,61),(423,'item','',16,10,4,3,0,61),(424,'item','',18,8,4,2,0,61),(425,'item','',1,6,4,3,0,61),(426,'item','',0,0,4,3,0,62),(427,'item','',5,0,4,3,0,62),(428,'item','',10,1,4,3,0,62),(429,'item','',14,1,4,3,0,62),(430,'item','',19,1,4,3,0,62),(431,'item','',2,4,1,2,0,62),(432,'item','',5,3,4,3,0,62),(433,'item','',9,4,4,3,0,62),(434,'item','',13,5,4,3,0,62),(435,'item','',17,4,4,3,0,62),(436,'item','',1,8,4,3,0,62),(437,'item','',6,8,4,3,0,62),(438,'item','',10,8,4,3,0,62),(439,'item','',14,9,4,3,0,62),(440,'item','',3,1,4,3,0,64),(441,'item','',8,1,4,3,0,64),(442,'item','',12,1,4,3,0,64),(443,'item','',16,1,4,3,0,64),(444,'item','',20,1,1,2,0,64),(445,'item','',6,5,4,3,0,64),(446,'item','',1,1,1,2,0,65),(447,'item','',3,1,4,3,0,65),(448,'item','',9,1,4,3,0,65),(449,'item','',14,2,4,3,0,65),(450,'item','',18,2,4,3,0,65),(451,'item','',22,2,2,3,0,65),(452,'item','',1,0,4,3,0,67),(453,'item','',6,0,4,3,0,67),(454,'item','',11,0,1,2,0,67),(455,'item','',13,0,4,3,0,67),(456,'item','',17,1,4,3,0,67),(457,'item','',21,1,3,3,0,67),(458,'item','',1,3,1,2,0,67),(459,'item','',2,3,4,3,0,67),(460,'item','',7,3,1,2,0,67),(461,'item','',9,3,1,2,0,67),(462,'item','',1,1,4,3,0,68),(463,'item','',5,2,4,3,0,68),(464,'item','',9,1,4,3,0,68),(465,'item','',13,1,4,3,0,68),(466,'item','',17,1,4,3,0,68),(467,'item','',21,2,1,2,0,68),(468,'item','',3,6,4,3,0,68),(469,'item','',9,5,4,3,0,68),(470,'item','',14,5,4,3,0,68),(471,'item','',19,5,1,2,0,68),(472,'item','',0,0,4,3,0,70),(473,'item','',5,0,4,3,0,70),(474,'item','',11,0,1,2,0,70),(475,'item','',13,0,4,3,0,70),(476,'item','',2,0,4,3,0,71),(477,'item','',7,1,4,3,0,71),(478,'item','',12,1,4,3,0,71),(479,'item','',16,1,4,3,0,71),(480,'item','',0,0,4,3,0,73),(481,'item','',4,1,4,3,0,73),(482,'item','',9,1,4,3,0,73),(483,'item','',13,2,4,3,0,73),(484,'item','',0,0,4,3,0,74),(485,'item','',5,0,1,2,0,74),(486,'item','',8,0,4,3,0,74),(487,'item','',13,1,4,3,0,74),(488,'item','',1,0,4,3,0,76),(489,'item','',5,1,4,3,0,76),(490,'item','',10,1,4,3,0,76),(491,'item','',14,1,4,3,0,76),(492,'item','',18,1,4,3,0,76),(493,'item','',2,4,1,2,0,76),(494,'item','',1,0,1,2,0,77),(495,'item','',4,0,4,3,0,77),(496,'item','',9,0,1,2,0,77),(497,'item','',11,0,1,2,0,77),(498,'item','',12,0,1,2,0,77),(499,'item','',15,1,4,3,0,77),(500,'item','',1,0,4,3,0,79),(501,'item','',5,0,4,3,0,79),(502,'item','',11,0,4,3,0,79),(503,'item','',16,1,1,2,0,79),(504,'item','',1,1,1,2,0,80),(505,'item','',3,0,4,3,0,80),(506,'item','',7,0,1,2,0,80),(507,'item','',9,0,4,3,0,80),(508,'item','',0,0,4,3,0,82),(509,'item','',6,0,1,2,0,82),(510,'item','',7,0,4,3,0,82),(511,'item','',12,1,4,3,0,82),(512,'item','',1,1,4,3,0,83),(513,'item','',5,1,4,3,0,83),(514,'item','',11,1,1,2,0,83),(515,'item','',13,1,4,3,0,83),(516,'item','',1,0,4,3,0,85),(517,'item','',6,0,4,3,0,85),(518,'item','',11,1,4,3,0,85),(519,'item','',15,1,4,3,0,85),(520,'item','',0,0,4,3,0,86),(521,'item','',5,0,1,2,0,86),(522,'item','',8,0,1,2,0,86),(523,'item','',12,0,1,2,0,86),(524,'item','',3,1,4,3,0,88),(525,'item','',1,0,4,3,0,89),(526,'item','',3,1,4,3,0,90),(527,'item','',3,1,1,2,0,91),(528,'item','',3,0,1,2,0,92),(529,'item','',4,1,4,3,0,93),(530,'item','',2,0,1,2,0,94),(531,'item','',2,1,4,3,0,96),(532,'item','',2,1,1,2,0,98),(533,'item','',0,0,4,3,0,99),(534,'item','',2,1,4,3,0,100),(535,'item','',4,2,4,3,0,101),(536,'item','',2,0,4,3,0,102),(537,'item','',1,1,1,2,0,103),(538,'item','',3,2,4,3,0,104),(539,'item','',2,1,4,3,0,105),(540,'item','',3,1,4,3,0,110),(541,'item','',2,0,1,2,0,112); /*!40000 ALTER TABLE `widget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_field` -- DROP TABLE IF EXISTS `widget_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `widget_field` ( `widget_fieldid` bigint unsigned NOT NULL, `widgetid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value_int` int NOT NULL DEFAULT '0', `value_str` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value_groupid` bigint unsigned DEFAULT NULL, `value_hostid` bigint unsigned DEFAULT NULL, `value_itemid` bigint unsigned DEFAULT NULL, `value_graphid` bigint unsigned DEFAULT NULL, `value_sysmapid` bigint unsigned DEFAULT NULL, `value_serviceid` bigint unsigned DEFAULT NULL, `value_slaid` bigint unsigned DEFAULT NULL, `value_userid` bigint unsigned DEFAULT NULL, `value_actionid` bigint unsigned DEFAULT NULL, `value_mediatypeid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`widget_fieldid`), KEY `widget_field_1` (`widgetid`), KEY `widget_field_2` (`value_groupid`), KEY `widget_field_3` (`value_hostid`), KEY `widget_field_4` (`value_itemid`), KEY `widget_field_5` (`value_graphid`), KEY `widget_field_6` (`value_sysmapid`), KEY `widget_field_7` (`value_serviceid`), KEY `widget_field_8` (`value_slaid`), KEY `widget_field_9` (`value_userid`), KEY `widget_field_10` (`value_actionid`), KEY `widget_field_11` (`value_mediatypeid`), CONSTRAINT `c_widget_field_1` FOREIGN KEY (`widgetid`) REFERENCES `widget` (`widgetid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_10` FOREIGN KEY (`value_actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_11` FOREIGN KEY (`value_mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_2` FOREIGN KEY (`value_groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_3` FOREIGN KEY (`value_hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_4` FOREIGN KEY (`value_itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_5` FOREIGN KEY (`value_graphid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_6` FOREIGN KEY (`value_sysmapid`) REFERENCES `sysmaps` (`sysmapid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_7` FOREIGN KEY (`value_serviceid`) REFERENCES `services` (`serviceid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_8` FOREIGN KEY (`value_slaid`) REFERENCES `sla` (`slaid`) ON DELETE CASCADE, CONSTRAINT `c_widget_field_9` FOREIGN KEY (`value_userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widget_field` -- LOCK TABLES `widget_field` WRITE; /*!40000 ALTER TABLE `widget_field` DISABLE KEYS */; INSERT INTO `widget_field` VALUES (2,1,0,'column',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,1,1,'columns.name.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,1,0,'columns.data.0',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,1,1,'columns.item.0',0,'System name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,1,0,'columns.aggregate_function.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,1,1,'columns.base_color.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,1,1,'columns.name.1',0,'Utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,1,0,'columns.data.1',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,1,1,'columns.item.1',0,'CPU utilization',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,1,1,'columns.timeshift.1',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,1,0,'columns.aggregate_function.1',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,1,0,'columns.display.1',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,1,0,'columns.history.1',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,1,1,'columns.base_color.1',0,'4CAF50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,1,1,'columns.min.1',0,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,1,1,'columns.max.1',0,'100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,1,1,'columnsthresholds.color.1.0',0,'FFFF00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,1,1,'columnsthresholds.threshold.1.0',0,'50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,1,1,'columnsthresholds.color.1.1',0,'FF8000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(21,1,1,'columnsthresholds.threshold.1.1',0,'80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(22,1,1,'columnsthresholds.color.1.2',0,'FF4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,1,1,'columnsthresholds.threshold.1.2',0,'90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24,1,1,'columns.name.2',0,'1m avg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,1,0,'columns.data.2',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,1,1,'columns.item.2',0,'Load average (1m avg)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,1,1,'columns.timeshift.2',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,1,0,'columns.aggregate_function.2',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(29,1,0,'columns.display.2',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(30,1,0,'columns.history.2',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(31,1,1,'columns.base_color.2',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,1,1,'columns.name.3',0,'5m avg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,1,0,'columns.data.3',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,1,1,'columns.item.3',0,'Load average (5m avg)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(35,1,1,'columns.timeshift.3',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,1,0,'columns.aggregate_function.3',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,1,0,'columns.display.3',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(38,1,0,'columns.history.3',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,1,1,'columns.base_color.3',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(40,1,1,'columns.name.4',0,'15m avg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41,1,0,'columns.data.4',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(42,1,1,'columns.item.4',0,'Load average (15m avg)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(43,1,1,'columns.timeshift.4',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44,1,0,'columns.aggregate_function.4',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45,1,0,'columns.display.4',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(46,1,0,'columns.history.4',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,1,1,'columns.base_color.4',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(48,1,1,'columns.name.5',0,'Processes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(49,1,0,'columns.data.5',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(50,1,1,'columns.item.5',0,'Number of processes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(51,1,1,'columns.timeshift.5',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,1,0,'columns.aggregate_function.5',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(53,1,0,'columns.display.5',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(54,1,0,'columns.history.5',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55,1,1,'columns.base_color.5',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(57,2,0,'show',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58,2,0,'show',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(59,2,0,'show',4,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(60,2,0,'adv_conf',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(61,2,1,'description',0,'{HOST.NAME}\r\nValues per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(62,2,0,'units_show',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(63,2,0,'units_bold',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(64,2,0,'desc_bold',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(65,4,0,'time_bold',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(66,4,0,'time_sec',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(67,4,0,'time_size',40,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(68,4,0,'clock_type',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(69,4,0,'show',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70,4,0,'show',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(71,4,0,'adv_conf',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(72,5,1,'ds.hosts.0.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(73,5,1,'ds.items.0.0',0,'Zabbix server: Number of processed values per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(74,5,1,'ds.color.0',0,'90CAF9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(75,5,0,'graph_time',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(76,5,0,'lefty',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(77,5,0,'righty',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(78,5,0,'axisx',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(79,5,0,'legend',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(80,6,0,'interface_type',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81,7,0,'show_type',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83,8,1,'default_view',0,'56.95225,24.11301,11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(84,9,0,'show',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(85,9,0,'show_tags',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(87,12,0,'ds.transparency.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(88,12,0,'legend',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(89,12,0,'righty',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90,12,0,'show_problems',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(91,12,1,'ds.color.0',0,'00BFFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(92,12,1,'ds.hosts.0.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93,12,1,'ds.items.0.0',0,'*: Number of processed *values per second',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(94,12,1,'lefty_min',0,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(95,12,1,'problemhosts.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(96,13,0,'ds.transparency.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(97,13,0,'legend',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(98,13,0,'righty',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99,13,0,'show_problems',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100,13,1,'ds.color.0',0,'E57373',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(101,13,1,'ds.hosts.0.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(102,13,1,'ds.items.0.0',0,'*: Utilization of * data collector *',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103,13,1,'lefty_max',0,'100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(104,13,1,'lefty_min',0,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(105,13,1,'problemhosts.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(106,14,0,'ds.transparency.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(107,14,0,'legend',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(108,14,0,'righty',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(109,14,0,'show_problems',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(110,14,1,'ds.color.0',0,'E57373',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(111,14,1,'ds.hosts.0.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(112,14,1,'ds.items.0.0',0,'*: Utilization of * internal *',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(113,14,1,'lefty_max',0,'100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(114,14,1,'lefty_min',0,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(115,14,1,'problemhosts.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(116,15,0,'ds.fill.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(117,15,0,'ds.transparency.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(118,15,0,'ds.width.0',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119,15,0,'legend',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(120,15,0,'righty',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(121,15,0,'show_problems',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(122,15,1,'ds.color.0',0,'4DB6AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(123,15,1,'ds.hosts.0.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(124,15,1,'ds.items.0.0',0,'*cache*% used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(125,15,1,'lefty_max',0,'100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(126,15,1,'lefty_min',0,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(127,15,1,'problemhosts.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(128,16,0,'ds.transparency.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(129,16,0,'ds.transparency.1',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(130,16,0,'ds.width.0',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(131,16,0,'ds.width.1',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(132,16,0,'legend',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(133,16,0,'righty',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(134,16,0,'show_problems',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(135,16,1,'ds.color.0',0,'9CCC65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136,16,1,'ds.hosts.0.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137,16,1,'ds.hosts.1.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138,16,1,'ds.items.0.0',0,'Zabbix server: Value cache hits',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139,16,1,'ds.items.1.0',0,'Zabbix server: Value cache misses',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(140,16,1,'lefty_min',0,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(141,16,1,'problemhosts.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(142,17,0,'ds.fill.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(143,17,0,'ds.fill.1',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(144,17,0,'ds.fill.2',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(145,17,0,'ds.transparency.0',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(146,17,0,'ds.transparency.1',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,17,0,'ds.transparency.2',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(148,17,0,'ds.width.0',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(149,17,0,'ds.width.1',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(150,17,0,'ds.width.2',2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(151,17,0,'legend',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(152,17,0,'righty',0,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(153,17,0,'show_problems',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(154,17,1,'ds.color.0',0,'B0AF07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(155,17,1,'ds.color.1',0,'E53935',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,17,1,'ds.color.2',0,'0275B8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,17,1,'ds.hosts.0.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(158,17,1,'ds.hosts.1.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(159,17,1,'ds.hosts.2.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(160,17,1,'ds.items.0.0',0,'Zabbix server: Queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(161,17,1,'ds.items.1.0',0,'Zabbix server: Queue over 10 minutes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(162,17,1,'ds.items.2.0',0,'Zabbix server: Preprocessing queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(163,17,1,'lefty_min',0,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(164,17,1,'problemhosts.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1175,400,8,'sysmapid',0,'',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL),(1176,400,1,'reference',0,'NWLRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1177,17,1,'ds.hosts.3.0',0,'Zabbix server',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1178,17,1,'ds.items.3.0',0,'Zabbix server: LLD queue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1179,17,1,'ds.color.3',0,'524BBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1180,401,4,'itemid',0,'',NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1181,402,4,'itemid',0,'',NULL,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1182,403,4,'itemid',0,'',NULL,NULL,28,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1183,404,4,'itemid',0,'',NULL,NULL,31,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1184,404,0,'adv_conf',1,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1185,404,1,'description',0,'{ITEM.NAME}cdc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1186,405,4,'itemid',0,'',NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1187,406,4,'itemid',0,'',NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1188,407,4,'itemid',0,'',NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1189,408,4,'itemid',0,'',NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1190,409,4,'itemid',0,'',NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1191,410,4,'itemid',0,'',NULL,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1192,411,4,'itemid',0,'',NULL,NULL,28,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1193,412,4,'itemid',0,'',NULL,NULL,31,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1194,413,4,'itemid',0,'',NULL,NULL,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1195,414,4,'itemid',0,'',NULL,NULL,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1196,415,4,'itemid',0,'',NULL,NULL,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1197,416,4,'itemid',0,'',NULL,NULL,12,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1198,417,4,'itemid',0,'',NULL,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1199,418,4,'itemid',0,'',NULL,NULL,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1200,419,4,'itemid',0,'',NULL,NULL,41,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1201,420,4,'itemid',0,'',NULL,NULL,46,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1202,421,4,'itemid',0,'',NULL,NULL,51,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1203,422,4,'itemid',0,'',NULL,NULL,56,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1204,423,4,'itemid',0,'',NULL,NULL,62,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1205,424,4,'itemid',0,'',NULL,NULL,72,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1206,425,4,'itemid',0,'',NULL,NULL,76,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1207,426,4,'itemid',0,'',NULL,NULL,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1208,427,4,'itemid',0,'',NULL,NULL,12,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1209,428,4,'itemid',0,'',NULL,NULL,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1210,429,4,'itemid',0,'',NULL,NULL,12,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1211,430,4,'itemid',0,'',NULL,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1212,431,4,'itemid',0,'',NULL,NULL,24,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1213,432,4,'itemid',0,'',NULL,NULL,41,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1214,433,4,'itemid',0,'',NULL,NULL,46,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1215,434,4,'itemid',0,'',NULL,NULL,51,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1216,435,4,'itemid',0,'',NULL,NULL,56,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1217,436,4,'itemid',0,'',NULL,NULL,62,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1218,437,4,'itemid',0,'',NULL,NULL,68,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1219,438,4,'itemid',0,'',NULL,NULL,72,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1220,439,4,'itemid',0,'',NULL,NULL,76,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1221,440,4,'itemid',0,'',NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1222,441,4,'itemid',0,'',NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1223,442,4,'itemid',0,'',NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1224,443,4,'itemid',0,'',NULL,NULL,17,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1225,444,4,'itemid',0,'',NULL,NULL,34,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1226,445,4,'itemid',0,'',NULL,NULL,37,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1227,446,4,'itemid',0,'',NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1228,447,4,'itemid',0,'',NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1229,448,4,'itemid',0,'',NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1230,449,4,'itemid',0,'',NULL,NULL,17,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1231,450,4,'itemid',0,'',NULL,NULL,34,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1232,451,4,'itemid',0,'',NULL,NULL,37,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1233,452,4,'itemid',0,'',NULL,NULL,19,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1234,453,4,'itemid',0,'',NULL,NULL,19,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1235,454,4,'itemid',0,'',NULL,NULL,19,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1236,455,4,'itemid',0,'',NULL,NULL,23,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1237,456,4,'itemid',0,'',NULL,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1238,457,4,'itemid',0,'',NULL,NULL,45,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1239,458,4,'itemid',0,'',NULL,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1240,459,4,'itemid',0,'',NULL,NULL,55,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1241,460,4,'itemid',0,'',NULL,NULL,61,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1242,461,4,'itemid',0,'',NULL,NULL,67,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1243,462,4,'itemid',0,'',NULL,NULL,19,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1244,463,4,'itemid',0,'',NULL,NULL,19,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1245,464,4,'itemid',0,'',NULL,NULL,19,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1246,465,4,'itemid',0,'',NULL,NULL,23,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1247,466,4,'itemid',0,'',NULL,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1248,467,4,'itemid',0,'',NULL,NULL,45,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1249,468,4,'itemid',0,'',NULL,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1250,469,4,'itemid',0,'',NULL,NULL,55,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1251,470,4,'itemid',0,'',NULL,NULL,61,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1252,471,4,'itemid',0,'',NULL,NULL,67,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1253,472,4,'itemid',0,'',NULL,NULL,27,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1254,473,4,'itemid',0,'',NULL,NULL,27,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1255,474,4,'itemid',0,'',NULL,NULL,27,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1256,475,4,'itemid',0,'',NULL,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1257,476,4,'itemid',0,'',NULL,NULL,27,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1258,477,4,'itemid',0,'',NULL,NULL,27,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1259,478,4,'itemid',0,'',NULL,NULL,27,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1260,479,4,'itemid',0,'',NULL,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1261,480,4,'itemid',0,'',NULL,NULL,33,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1262,481,4,'itemid',0,'',NULL,NULL,33,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1263,482,4,'itemid',0,'',NULL,NULL,33,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1264,483,4,'itemid',0,'',NULL,NULL,36,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1265,484,4,'itemid',0,'',NULL,NULL,33,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1266,485,4,'itemid',0,'',NULL,NULL,33,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1267,486,4,'itemid',0,'',NULL,NULL,33,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1268,487,4,'itemid',0,'',NULL,NULL,36,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1269,488,4,'itemid',0,'',NULL,NULL,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1270,489,4,'itemid',0,'',NULL,NULL,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1271,490,4,'itemid',0,'',NULL,NULL,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1272,491,4,'itemid',0,'',NULL,NULL,44,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1273,492,4,'itemid',0,'',NULL,NULL,60,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1274,493,4,'itemid',0,'',NULL,NULL,66,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1275,494,4,'itemid',0,'',NULL,NULL,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1276,495,4,'itemid',0,'',NULL,NULL,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1277,496,4,'itemid',0,'',NULL,NULL,39,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1278,497,4,'itemid',0,'',NULL,NULL,44,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1279,498,4,'itemid',0,'',NULL,NULL,60,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1280,499,4,'itemid',0,'',NULL,NULL,66,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1281,500,4,'itemid',0,'',NULL,NULL,49,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1282,501,4,'itemid',0,'',NULL,NULL,49,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1283,502,4,'itemid',0,'',NULL,NULL,49,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1284,503,4,'itemid',0,'',NULL,NULL,54,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1285,504,4,'itemid',0,'',NULL,NULL,49,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1286,505,4,'itemid',0,'',NULL,NULL,49,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1287,506,4,'itemid',0,'',NULL,NULL,49,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1288,507,4,'itemid',0,'',NULL,NULL,54,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1289,508,4,'itemid',0,'',NULL,NULL,59,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1290,509,4,'itemid',0,'',NULL,NULL,59,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1291,510,4,'itemid',0,'',NULL,NULL,59,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1292,511,4,'itemid',0,'',NULL,NULL,65,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1293,512,4,'itemid',0,'',NULL,NULL,59,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1294,513,4,'itemid',0,'',NULL,NULL,59,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1295,514,4,'itemid',0,'',NULL,NULL,59,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1296,515,4,'itemid',0,'',NULL,NULL,65,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1297,516,4,'itemid',0,'',NULL,NULL,71,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1298,517,4,'itemid',0,'',NULL,NULL,71,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1299,518,4,'itemid',0,'',NULL,NULL,71,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1300,519,4,'itemid',0,'',NULL,NULL,75,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1301,520,4,'itemid',0,'',NULL,NULL,71,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1302,521,4,'itemid',0,'',NULL,NULL,71,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1303,522,4,'itemid',0,'',NULL,NULL,71,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1304,523,4,'itemid',0,'',NULL,NULL,75,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1305,524,4,'itemid',0,'',NULL,NULL,31,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1306,525,4,'itemid',0,'',NULL,NULL,31,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1307,526,4,'itemid',0,'',NULL,NULL,76,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1308,527,4,'itemid',0,'',NULL,NULL,76,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1309,528,4,'itemid',0,'',NULL,NULL,67,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1310,529,4,'itemid',0,'',NULL,NULL,67,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1311,530,4,'itemid',0,'',NULL,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1312,531,4,'itemid',0,'',NULL,NULL,36,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1313,532,4,'itemid',0,'',NULL,NULL,66,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1314,533,4,'itemid',0,'',NULL,NULL,66,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1315,534,4,'itemid',0,'',NULL,NULL,54,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1316,535,4,'itemid',0,'',NULL,NULL,54,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1317,536,4,'itemid',0,'',NULL,NULL,65,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1318,537,4,'itemid',0,'',NULL,NULL,65,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1319,538,4,'itemid',0,'',NULL,NULL,75,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1320,539,4,'itemid',0,'',NULL,NULL,75,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1321,540,4,'itemid',0,'',NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1322,541,4,'itemid',0,'',NULL,NULL,15,NULL,NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `widget_field` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2023-01-02 10:19:22